diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/worlds/diamond_world.csv b/worlds/diamond_world.csv index c978edb..367aea9 100644 --- a/worlds/diamond_world.csv +++ b/worlds/diamond_world.csv @@ -1,1025 +1,1025 @@ -50,25,25,17,25,15,18,15,26,14,15,11,16,10,14,13,23,12,12,8,12,7,9,9,16,9,10,9,15,10,15,15,28,14,14,10,14,9,11,9,16,9,9,7,11,8,11,10,19,10,11,8,13,8,11,10,17,10,12,10,17,11,16,16,31,16,16,11,16,9,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,4,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-18,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-11,-17,-17,-36,-18,-18,-12,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-17,-12,-21,-12,-16,-15,-30,-16,-19,-16,-30,-20,-30,-29,-59,-29,-29,-19,-29,-16,-19,-16,-29,-15,-17,-12,-21,-13,-19,-18,-37,-18,-19,-13,-21,-12,-16,-14,-28,-15,-17,-13,-24,-16,-24,-23,-47,-23,-24,-16,-26,-14,-18,-15,-28,-15,-17,-13,-24,-15,-22,-22,-44,-22,-24,-17,-27,-16,-22,-20,-40,-22,-26,-21,-39,-26,-40,-40,-82,-40,-40,-26,-40,-22,-26,-21,-39,-20,-22,-16,-26,-15,-21,-19,-37,-18,-18,-12,-20,-11,-15,-13,-26,-14,-16,-13,-23,-14,-21,-21,-42,-21,-22,-15,-23,-13,-16,-14,-28,-14,-16,-12,-20,-12,-18,-17,-35,-18,-19,-13,-22,-13,-17,-15,-30,-16,-20,-16,-29,-19,-28,-27,-54,-27,-27,-18,-28,-16,-20,-17,-31,-16,-18,-13,-22,-13,-19,-17,-34,-17,-18,-13,-21,-12,-17,-16,-31,-16,-19,-15,-27,-17,-26,-26,-53,-26,-27,-19,-30,-17,-22,-19,-36,-19,-23,-18,-33,-21,-31,-31,-62,-32,-34,-25,-42,-25,-35,-33,-64,-35,-43,-35,-64,-42,-64,-64,-129,-64,-64,-42,-64,-36,-44,-37,-67,-34,-37,-27,-45,-27,-36,-33,-65,-32,-33,-22,-35,-20,-25,-22,-43,-22,-25,-20,-35,-22,-33,-32,-65,-32,-33,-22,-35,-20,-25,-21,-40,-20,-22,-17,-29,-18,-26,-24,-48,-24,-26,-18,-30,-17,-22,-20,-39,-21,-25,-21,-39,-26,-39,-38,-77,-38,-39,-26,-39,-21,-26,-22,-40,-20,-22,-16,-27,-16,-23,-22,-44,-22,-22,-15,-23,-13,-16,-14,-26,-14,-16,-12,-21,-14,-21,-20,-41,-20,-21,-14,-23,-13,-17,-14,-27,-14,-17,-13,-23,-14,-21,-20,-41,-21,-22,-15,-25,-15,-21,-19,-37,-20,-24,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-24,-20,-38,-19,-21,-15,-26,-15,-21,-19,-38,-19,-19,-13,-22,-13,-17,-16,-31,-16,-19,-15,-27,-17,-25,-24,-49,-24,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-17,-10,-15,-14,-27,-14,-15,-10,-17,-9,-12,-11,-22,-12,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-13,-16,-13,-24,-12,-14,-10,-17,-10,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-8,-9,-7,-13,-8,-13,-13,-27,-13,-13,-9,-15,-8,-10,-8,-15,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,9,8,13,9,14,15,29,15,14,10,14,8,8,7,11,6,7,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,5,4,7,4,4,3,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,5,5,8,5,7,7,12,7,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,13,25,13,14,10,16,10,14,13,24,14,17,15,26,18,26,26,50 -26,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,11/2,10,6,6,9/2,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-9,-15/2,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-41,-20,-20,-25/2,-19,-10,-13,-10,-19,-19/2,-10,-15/2,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-10,-6,-9,-8,-17,-8,-8,-6,-10,-11/2,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-15,-15,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-21,-17,-31,-41/2,-32,-32,-64,-32,-32,-21,-32,-18,-22,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-19/2,-12,-11,-21,-21/2,-12,-19/2,-17,-11,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-19,-19/2,-10,-8,-14,-17/2,-12,-12,-24,-12,-13,-9,-15,-8,-10,-19/2,-19,-10,-12,-10,-19,-12,-19,-37/2,-38,-37/2,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-13/2,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-17,-11,-16,-16,-34,-33/2,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-13,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-9/2,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,7/2,4,4,9,5,4,3,5,3,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25 -26,14,27/2,9,13,8,9,8,13,7,15/2,6,9,6,8,7,11,6,13/2,4,6,4,5,5,9,5,6,5,9,6,9,8,15,8,15/2,6,8,5,6,5,8,5,5,4,7,4,11/2,5,10,6,11/2,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,17/2,6,8,5,11/2,5,8,4,9/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,4,4,5,4,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,4,4,7,4,7/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,1,1,1/2,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-6,-4,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-9,-19/2,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-12,-23/2,-8,-13,-7,-17/2,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-7,-12,-7,-21/2,-10,-20,-10,-25/2,-10,-20,-13,-20,-20,-41,-20,-39/2,-12,-19,-10,-13,-10,-19,-10,-21/2,-8,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-21/2,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-31/2,-15,-31,-16,-17,-12,-21,-12,-35/2,-16,-31,-17,-41/2,-17,-31,-20,-63/2,-32,-65,-32,-32,-21,-32,-18,-43/2,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-10,-25/2,-11,-20,-10,-12,-10,-18,-11,-16,-16,-32,-16,-16,-11,-17,-9,-23/2,-10,-19,-10,-21/2,-8,-15,-9,-25/2,-12,-24,-12,-13,-9,-15,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-12,-37/2,-18,-38,-18,-37/2,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-7,-12,-7,-19/2,-9,-18,-9,-11,-9,-17,-11,-33/2,-16,-35,-17,-33/2,-10,-16,-9,-23/2,-10,-18,-9,-10,-7,-13,-8,-21/2,-10,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,6,4,9/2,4,7,5,15/2,8,15,8,8,6,8,5,5,4,6,4,7/2,3,5,3,7/2,4,6,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,2,2,2,5/2,2,4,3,3,3,5,4,9/2,4,9,5,9/2,3,5,3,4,3,3,2,3,3,4,3,3,3,7,4,9/2,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,11/2,4,5,4,5,4,7,4,9/2,4,7,5,13/2,7,12,7,8,6,9,6,15/2,7,13,8,9,8,13,9,13,13,25 -18,10,10,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,7/2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-7/2,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-9/2,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-9,-9/2,-5,-4,-9,-5,-8,-8,-18,-17/2,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-11/2,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-12,-11,-20,-11,-13,-11,-20,-13,-21,-21,-43,-21,-21,-14,-21,-23/2,-14,-12,-22,-11,-12,-8,-14,-8,-11,-21/2,-21,-10,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-21,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-11/2,-10,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-11/2,-11,-7,-10,-10,-23,-11,-10,-6,-10,-6,-8,-6,-12,-6,-6,-4,-8,-9/2,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-9/2,-7,-7,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,5/2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,4,5/2,3,2,2,2,2,2,3,2,2,2,5,3,3,3,4,5/2,3,3,4,5/2,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,5,8,5,5,4,6,4,5,5,9,11/2,6,11/2,9,6,9,9,17 -26,13,13,9,25/2,7,8,7,13,7,8,6,17/2,5,6,6,11,6,6,5,7,5,6,5,10,6,6,6,19/2,6,9,9,14,8,8,6,17/2,6,7,6,8,5,5,4,7,5,6,5,11,6,6,4,13/2,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,15/2,4,5,4,7,4,4,3,9/2,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,11/2,4,6,5,9,5,5,4,11/2,4,4,3,5,3,4,4,11/2,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,3/2,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-6,-13,-7,-8,-6,-19/2,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-25/2,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-23/2,-7,-11,-11,-20,-10,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-39/2,-13,-20,-20,-41,-20,-20,-13,-39/2,-10,-12,-10,-20,-10,-10,-7,-12,-7,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-23/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-17,-8,-9,-6,-19/2,-6,-8,-7,-14,-7,-8,-7,-27/2,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-14,-14,-10,-31/2,-9,-12,-10,-19,-10,-12,-9,-33/2,-10,-16,-15,-31,-16,-17,-12,-43/2,-13,-18,-17,-31,-17,-20,-17,-63/2,-21,-32,-32,-65,-32,-32,-21,-65/2,-18,-22,-18,-33,-17,-18,-13,-43/2,-13,-18,-17,-32,-16,-16,-11,-17,-9,-12,-11,-20,-10,-12,-10,-18,-11,-17,-17,-32,-16,-16,-10,-33/2,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-12,-10,-39/2,-12,-19,-18,-39,-19,-19,-12,-19,-10,-13,-10,-20,-10,-11,-8,-27/2,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-16,-35,-17,-17,-11,-33/2,-9,-11,-10,-18,-9,-10,-7,-25/2,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-12,-12,-22,-10,-10,-7,-23/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-10,-5,-6,-6,-23/2,-8,-12,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,3,3,3,2,2,2,4,3,4,4,6,4,4,4,7,6,9,9,16,8,8,6,15/2,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,3,3,5,3,4,3,7/2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,5/2,2,2,2,4,3,4,3,5,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,7/2,2,3,3,7,4,5,4,5,3,4,4,5,3,3,3,9/2,3,4,5,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,24 -15,8,8,11/2,8,9/2,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,7/2,6,4,4,4,6,4,6,11/2,8,5,5,4,5,7/2,4,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22,-10,-10,-13/2,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-9,-11/2,-9,-8,-17,-8,-9,-13/2,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-35/2,-18,-23/2,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,7/2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,11/2,8,15/2,14 -18,10,19/2,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,9/2,4,6,4,4,4,7,4,4,4,6,4,13/2,6,10,5,5,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,3,2,3,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-5,-4,-9,-4,-5,-4,-10,-6,-19/2,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-13/2,-4,-6,-3,-9/2,-4,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-7,-6,-13,-6,-13/2,-4,-8,-4,-6,-5,-14,-6,-6,-4,-8,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-9,-9,-6,-10,-6,-15/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-10,-21,-10,-11,-8,-14,-8,-12,-11,-20,-11,-27/2,-11,-21,-14,-21,-21,-43,-21,-43/2,-14,-22,-12,-29/2,-12,-22,-11,-12,-8,-14,-8,-11,-11,-21,-10,-11,-7,-12,-6,-15/2,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-9,-5,-15/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-12,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-15/2,-5,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-3,-8,-4,-5,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-12,-6,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-13/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3,3,2,2,3/2,2,3,2,3,3,4,3,3,3,6,5,7,7,11,6,5,4,5,3,4,4,5,3,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,4,2,5/2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,10,6,17/2,8,16 -15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,11/2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-15/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-4,-4,-3,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-18,-18,-12,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-6,-5,-10,-6,-9,-9,-18,-8,-8,-11/2,-10,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-4,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-9/2,-9,-4,-5,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,7/2,5,4,5,5,8,5,6,5,8,5,7,7,13 -27,14,14,9,12,7,8,7,12,7,7,6,9,5,6,6,12,7,7,5,8,5,6,6,19/2,6,6,6,10,7,9,9,14,7,7,5,7,5,6,6,19/2,5,5,4,6,4,5,4,12,7,7,5,8,5,5,4,15/2,4,5,4,7,5,8,8,16,8,8,6,8,5,5,4,13/2,4,4,3,5,3,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,11/2,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-28,-14,-14,-9,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-20,-10,-11,-8,-14,-8,-11,-10,-21,-11,-14,-11,-20,-13,-20,-20,-38,-18,-18,-12,-18,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-10,-9,-21,-10,-11,-7,-11,-6,-8,-7,-27/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-18,-9,-9,-6,-10,-6,-8,-7,-29/2,-8,-9,-7,-12,-8,-12,-12,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-15,-8,-11,-10,-20,-10,-12,-9,-17,-11,-17,-17,-33,-16,-17,-12,-20,-12,-17,-16,-65/2,-18,-22,-18,-32,-21,-32,-32,-67,-33,-34,-22,-34,-18,-22,-18,-67/2,-16,-17,-12,-20,-12,-17,-16,-30,-15,-15,-10,-17,-10,-13,-11,-43/2,-12,-14,-11,-20,-13,-19,-18,-33,-16,-16,-10,-16,-9,-11,-10,-39/2,-10,-11,-8,-15,-9,-13,-12,-26,-13,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-19,-12,-19,-19,-40,-20,-20,-13,-20,-11,-13,-11,-21,-11,-12,-9,-16,-9,-13,-12,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-8,-15,-10,-15,-15,-34,-16,-16,-10,-16,-9,-11,-9,-17,-9,-10,-7,-13,-8,-12,-11,-20,-10,-10,-7,-11,-6,-9,-8,-15,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-22,-10,-10,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-9,-6,-9,-8,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,2,2,2,2,3,2,3,3,11/2,4,5,5,8,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,2,7/2,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,12,7,7,5,8,5,5,4,15/2,4,5,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 -15,8,8,5,7,4,5,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,6,4,4,5/2,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-11/2,-7,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-11/2,-11,-5,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,7,5,7,7,12 -16,9,9,6,7,4,5,5,8,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,3,3,6,4,4,3,6,4,11/2,6,8,4,9/2,3,5,3,7/2,3,5,3,3,3,4,3,7/2,3,7,4,4,3,5,3,3,3,4,3,3,3,5,4,5,5,9,5,6,4,5,3,4,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,6,4,7/2,2,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-5,-11,-6,-13/2,-4,-8,-5,-9,-9,-18,-9,-19/2,-6,-10,-6,-9,-9,-18,-10,-23/2,-9,-17,-11,-17,-17,-37,-18,-18,-12,-18,-10,-23/2,-10,-17,-8,-17/2,-6,-11,-6,-9,-8,-17,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-7,-6,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-12,-6,-6,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,1,1,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,9/2,5,9,5,11/2,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,7,4,5,4,6,4,7/2,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,7,5,7,7,13 -12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,5,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-13/2,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,10 -18,9,9,6,19/2,6,7,6,10,6,6,4,13/2,4,5,5,8,4,4,4,11/2,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,6,4,6,5,12,7,7,5,13/2,4,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-9,-9,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-13,-6,-7,-4,-15/2,-4,-4,-3,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-19/2,-5,-7,-7,-15,-8,-10,-8,-29/2,-9,-14,-13,-24,-12,-12,-8,-23/2,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-12,-5,-5,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-9,-9,-6,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-21,-10,-11,-8,-13,-8,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-45,-22,-22,-14,-43/2,-12,-14,-12,-20,-10,-11,-8,-25/2,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-13,-8,-12,-11,-20,-10,-10,-7,-12,-6,-8,-7,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-27/2,-8,-13,-13,-26,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-8,-6,-12,-6,-7,-5,-10,-6,-8,-8,-13,-6,-6,-4,-6,-3,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,4,11/2,4,6,6,11,6,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,8,5,5,4,13/2,4,4,4,5,3,4,4,11/2,4,6,5,9,5,6,4,13/2,4,5,5,8,5,5,5,8,6,8,8,15 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9 -15,8,17/2,6,8,5,6,5,8,4,9/2,4,6,4,4,4,7,4,9/2,4,4,3,7/2,3,6,4,9/2,4,5,4,5,6,10,6,11/2,4,5,3,4,4,5,3,7/2,3,4,3,3,3,6,4,7/2,2,3,2,5/2,3,4,3,7/2,3,5,4,9/2,4,10,5,5,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-4,-8,-4,-13/2,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-5,-11,-5,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-7,-11,-11,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-9/2,-2,-5,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-7,-7,-17,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-13/2,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-7,-10,-9,-18,-10,-23/2,-10,-18,-12,-18,-18,-36,-17,-17,-11,-18,-10,-23/2,-9,-17,-8,-9,-6,-11,-6,-19/2,-9,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-10,-10,-16,-8,-8,-5,-10,-5,-13/2,-6,-11,-5,-6,-4,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-10,-6,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-11/2,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-13/2,-6,-11,-5,-6,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,5,4,5,5,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,4,3,7/2,4,7,4,9/2,4,6,3,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,5,7,7,12 -15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,4,5,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-7/2,-7,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-33,-16,-16,-10,-16,-17/2,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-10,-9,-15,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-10,-13/2,-10,-10,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,9/2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11 -28,15,15,11,16,9,11,9,16,8,8,6,8,5,6,6,23/2,7,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,4,15/2,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,17,9,8,6,8,5,5,4,6,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-6,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-25/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-37/2,-9,-10,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-12,-12,-20,-10,-10,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-10,-41/2,-10,-11,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-20,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-10,-10,-41/2,-10,-10,-7,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-11,-9,-16,-10,-16,-16,-65/2,-16,-17,-12,-20,-12,-17,-16,-32,-17,-21,-18,-33,-22,-34,-34,-65,-32,-32,-21,-32,-17,-21,-18,-33,-17,-18,-13,-23,-13,-18,-17,-67/2,-16,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-19,-12,-18,-18,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-12,-26,-13,-14,-10,-17,-9,-12,-11,-22,-12,-15,-12,-22,-14,-22,-21,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-14,-8,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-10,-41/2,-10,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-9,-6,-9,-9,-9,-4,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,9,6,7,7,9,5,4,3,3,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,9,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,6,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,13,8,9,7,11,7,10,10,20 -15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,4,7,4,4,7/2,5,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,3,5/2,4,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-10,-17/2,-16,-11,-17,-17,-32,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-21/2,-18,-9,-9,-6,-9,-9/2,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-5,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-5,-5/2,-4,-5/2,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11 -15,8,17/2,6,8,5,13/2,6,8,5,5,4,5,3,4,4,6,4,9/2,4,6,4,5,4,7,4,9/2,4,5,4,11/2,6,10,5,5,4,6,4,4,3,4,3,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,7/2,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,4,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-6,-17/2,-8,-17,-9,-11,-9,-17,-11,-35/2,-18,-33,-16,-33/2,-10,-16,-8,-10,-8,-16,-8,-9,-7,-11,-6,-19/2,-9,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-7,-5,-9,-5,-13/2,-6,-10,-5,-13/2,-6,-11,-7,-11,-11,-18,-9,-9,-6,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-3,-5,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-5,-9,-5,-6,-5,-9,-4,-5,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,1,3,2,3,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,10,5,5,4,6,4,7/2,3,5,3,3,3,4,3,4,4,7,4,7/2,3,4,3,7/2,4,6,4,4,3,5,3,4,4,5,3,2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,6,6,11 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-15/2,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-4,-7/2,-7,-4,-7,-7,-12,-11/2,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8 -16,8,8,6,19/2,6,6,5,9,5,5,4,6,4,4,4,6,4,4,4,11/2,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,4,3,5,3,2,2,5/2,2,2,3,5,3,4,3,7/2,3,4,4,7,4,4,3,9/2,3,4,3,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,5/2,2,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,1,2,2,2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-23/2,-7,-11,-11,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-7,-7,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-5,-19/2,-6,-10,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-36,-18,-18,-12,-35/2,-10,-12,-10,-18,-9,-10,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-21/2,-6,-7,-6,-11,-5,-6,-5,-19/2,-6,-10,-10,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-12,-19,-9,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-3,-4,-4,-11,-5,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,3/2,1,0,0,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,1,1,6,4,4,2,5/2,2,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,5,4,13/2,5,7,7,12 -10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-4,-7/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,7 -13,7,7,5,7,4,5,4,7,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,3,2,3,2,5,3,5/2,2,3,2,2,2,4,3,3,3,3,2,7/2,4,4,3,3,2,3,2,2,2,1,1,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,3,2,5/2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-8,-5,-15/2,-7,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-15/2,-5,-9,-5,-7,-7,-15,-8,-19/2,-8,-14,-9,-15,-15,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,3,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,7/2,3,4,3,7/2,4,7,4,3,2,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5/2,3,5,3,5/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,3,3,2,2,2,3,2,3,3,4,3,7/2,3,5,4,5,5,8 -12,7,7,5,7,4,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,4,4,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,3/2,2,3/2,2,3/2,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -22,11,11,8,11,7,8,6,10,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,3,2,2,1,1,1,0,0,1/2,1,2,2,3,3,4,4,6,3,3,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,3,2,2,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-8,-6,-12,-8,-12,-12,-29,-14,-14,-9,-14,-8,-10,-8,-29/2,-7,-7,-5,-9,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-6,-11,-7,-12,-12,-23,-12,-13,-9,-16,-9,-13,-12,-51/2,-14,-16,-13,-25,-17,-26,-26,-43,-21,-22,-14,-22,-12,-15,-12,-47/2,-12,-12,-8,-14,-8,-12,-11,-25,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-11,-6,-9,-8,-15,-8,-10,-8,-16,-10,-15,-15,-24,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,1,1,1,2,3,2,3,2,3,2,3,2,3,2,3,2,-1,0,0,1,1,1,2,2,3/2,1,0,0,0,0,0,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,13/2,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,15/2,4,5,4,6,4,6,5,8,5,5,4,5,3,3,3,9/2,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,2,2,2,2,7/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,7,13 -13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-5/2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-12,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,4,5/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,11/2,4,6,4,4,3,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,7/2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,5/2,2,2,2,3/2,2,5,3,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,3/2,2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1/2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,1,1,1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-13/2,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-15,-10,-16,-16,-26,-13,-13,-9,-13,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-6,-9,-9,-13,-6,-6,-4,-7,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,3/2,2,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,3,4,3,7/2,3,5,3,7/2,3,5,4,5,5,10,6,11/2,4,6,4,7/2,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,5,3,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,4,4,8 -12,6,6,9/2,6,4,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-11/2,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-5/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,9/2,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6 -20,11,11,7,10,6,6,5,7,4,4,3,7/2,2,3,3,7,4,5,4,6,4,4,4,6,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,3,4,3,3,3,9/2,4,5,5,4,3,3,2,3,2,2,2,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-14,-11,-41/2,-13,-20,-21,-38,-19,-19,-12,-37/2,-10,-12,-10,-18,-9,-10,-7,-13,-7,-10,-10,-21,-10,-10,-6,-21/2,-6,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-18,-8,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,3,2,2,2,7/2,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,6,6,14,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,4,11/2,4,5,5,10 -13,7,7,5,6,4,4,4,5,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,2,3,2,2,2,3,3,4,7/2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-8,-13,-13,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-4,-8,-5,-8,-8,-11,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 -18,9,9,6,8,5,6,5,7,4,4,3,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,4,9/2,3,5,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,3,3,2,3,3,3,2,5/2,2,4,3,9/2,4,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,3/2,2,1,1,3/2,1,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-17/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-13,-20,-20,-35,-17,-17,-11,-16,-8,-21/2,-9,-17,-8,-9,-7,-12,-7,-19/2,-9,-19,-9,-19/2,-6,-10,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-12,-12,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,4,3,5,3,4,4,7,4,9/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,4,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,3/2,2,2,1,1,1,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,4,3,4,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,2,2,2,2,5/2,3,4,3,7/2,3,5,4,5,5,9 -17,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-8,-17/2,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-35,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-11/2,-11,-6,-8,-6,-12,-8,-12,-12,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,5/2,4,3,3,3,5,4,5,5,8 -33,17,16,11,16,9,10,8,14,8,8,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,7,7,25/2,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,7,5,7,7,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,3,11/2,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-25,-12,-11,-7,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-27,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-13,-7,-9,-8,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-46,-23,-23,-15,-23,-13,-16,-13,-25,-13,-14,-10,-18,-11,-15,-14,-28,-14,-14,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-14,-13,-51/2,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-31,-15,-15,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-9,-7,-13,-9,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-17,-34,-18,-20,-15,-25,-15,-21,-20,-40,-22,-26,-21,-39,-26,-40,-40,-70,-34,-34,-22,-34,-18,-22,-19,-35,-18,-19,-13,-22,-13,-18,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-13,-15,-12,-22,-14,-21,-20,-40,-20,-20,-13,-20,-11,-14,-12,-23,-12,-13,-10,-18,-11,-16,-15,-30,-15,-16,-11,-19,-11,-16,-14,-28,-15,-18,-15,-27,-17,-25,-25,-32,-15,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-10,-8,-16,-11,-17,-17,-36,-17,-17,-11,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,6,6,12,7,8,7,11,8,11,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,31/2,8,8,5,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,5,7,7,14 -17,9,8,6,9,5,6,9/2,8,4,4,7/2,5,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,3/2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-12,-11/2,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-10,-7,-12,-7,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-35,-17,-17,-11,-17,-9,-11,-9,-17,-17/2,-9,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-6,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,6,4,4,4,6,4,6,11/2,12,6,6,4,6,4,4,4,6,7/2,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,7 -16,8,8,6,9,5,11/2,4,8,4,9/2,4,5,4,5,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,5/2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,7/2,4,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3/2,2,1,1,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-5,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-3,-5,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-4,-8,-5,-8,-8,-16,-8,-19/2,-7,-12,-7,-10,-10,-19,-10,-13,-10,-20,-13,-39/2,-20,-36,-17,-17,-11,-17,-9,-23/2,-10,-18,-9,-9,-6,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-15/2,-6,-10,-6,-9,-9,-20,-10,-19/2,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-15/2,-5,-10,-5,-7,-6,-13,-7,-8,-7,-12,-8,-12,-12,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-2,0,1/2,0,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,3,2,3,4,6,4,9/2,4,6,4,11/2,5,12,6,13/2,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,9/2,4,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1,1,6,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,3,3,4,4,7 -11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,4,5/2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-2,-1/2,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,5/2,3,2,2,2,2,2,3,3,4,3,3,5/2,4,3,4,7/2,8,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,5/2,4,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -16,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,2,1,1,0,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-9/2,-2,-4,-5,-14,-7,-7,-4,-13/2,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-4,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-8,-7,-23,-11,-12,-8,-23/2,-6,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-11/2,-3,-4,-4,-6,-3,-3,-2,-11/2,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-7,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-8,-5,-8,-8,-17,-9,-10,-7,-12,-7,-11,-10,-19,-10,-12,-10,-20,-13,-20,-20,-37,-18,-18,-12,-37/2,-10,-12,-10,-18,-9,-9,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-10,-5,-6,-5,-12,-6,-7,-5,-10,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-7,-5,-10,-6,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-14,-7,-9,-7,-25/2,-8,-12,-12,-18,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,-1,-4,-1,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,5,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,3,4,3,4,4,11,6,6,4,11/2,4,4,4,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,2,5/2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,1,3/2,2,2,2,6,4,4,3,3,2,3,3,4,3,3,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,3,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,8 -9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -11,6,6,4,5,3,4,3,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-16,-8,-15/2,-4,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-8,-5,-7,-6,-13,-7,-17/2,-7,-13,-8,-13,-13,-24,-12,-12,-8,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-11/2,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-11/2,-6,-11,-5,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,1,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,5/2,3,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,5,3,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-11,-6,-7,-6,-10,-5,-5,-7/2,-7,-4,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4 -18,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,4,3,4,3,4,4,11/2,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,1,1,1,1,2,2,2,2,7/2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-7,-6,-26,-13,-13,-8,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-9,-6,-10,-10,-15,-7,-7,-4,-7,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-7,-7,-19,-10,-11,-8,-13,-8,-11,-10,-21,-11,-14,-12,-23,-15,-22,-22,-38,-19,-19,-12,-18,-10,-13,-11,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-9,-14,-8,-10,-8,-31/2,-8,-8,-6,-12,-7,-9,-9,-18,-9,-9,-6,-11,-6,-8,-6,-25/2,-6,-8,-7,-13,-8,-13,-13,-21,-10,-9,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-9/2,-5,-7/2,-7,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1/2,0,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3 -11,6,11/2,4,6,4,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-13,-13,-21,-10,-21/2,-6,-10,-5,-7,-6,-12,-6,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-7,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,0,0,1/2,0,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,2,3,2,3,2,2,2,5/2,3,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3 -9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-16,-15/2,-8,-9/2,-7,-7/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-5/2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2 -15,8,7,5,7,4,5,4,6,3,3,3,4,3,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-33/2,-10,-16,-16,-27,-13,-12,-8,-25/2,-7,-9,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-17/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-18,-8,-8,-5,-7,-3,-4,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,1,2,2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,7/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,5/2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -13,7,13/2,5,7,4,5,4,5,3,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-15,-7,-7,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-7,-5,-8,-5,-7,-7,-13,-7,-9,-8,-14,-9,-14,-15,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-15/2,-7,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,6,4,7/2,3,4,2,5/2,2,4,3,7/2,3,5,3,4,4,6,4,7/2,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,5/2,2,4,3,3,3,3,3,4,4,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4 -13,7,6,5,7,4,4,3,5,3,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-11/2,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-13/2,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-7/2,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,3/2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,6,4,4,3,4,5/2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -24,12,12,8,12,7,8,7,11,6,6,4,5,3,4,4,11/2,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,9/2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,1,1,1,1,1,1,2,1,1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-29,-14,-14,-9,-15,-8,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-45/2,-12,-13,-9,-16,-9,-13,-13,-26,-14,-17,-15,-28,-19,-29,-29,-46,-22,-22,-15,-23,-12,-15,-13,-24,-12,-14,-10,-18,-11,-15,-14,-55/2,-13,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-10,-15,-15,-33,-16,-15,-10,-15,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-23,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-16,-30,-14,-14,-8,-12,-6,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,11,6,7,5,8,5,6,6,10,6,6,4,6,4,6,6,21/2,6,6,4,5,3,4,4,7,4,5,4,5,3,4,3,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,17/2,5,5,4,6,4,5,4,6,3,3,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,13,7,7,6,9,5,6,5,9,5,6,4,6,4,4,4,11/2,4,4,3,3,2,2,2,2,2,2,2,4,3,4,4,6 -13,7,7,5,7,4,5,4,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-13/2,-6,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-11/2,-11,-11/2,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -13,7,7,5,7,4,5,4,6,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-3/2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-13/2,-7,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-13/2,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-26,-13,-13,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-6,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,1,1,3/2,1,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,7/2,4,6,3,3,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,2,2,5/2,2,4,3,4,3,6,4,4,3,4,3,7/2,3,3,2,2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,9/2,3,5,3,4,3,5,3,7/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3 -10,5,5,4,5,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1/2,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-5/2,-4,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-9/2,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -16,9,9,6,8,5,5,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,7/2,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-3,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-17,-8,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-8,-31/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-21/2,-6,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-10,-19,-9,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,2,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,1,2,1,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,4,3,4,3,9/2,3,4,4,6,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,9/2,3,4,3,3,2,3,2,7/2,2,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,4,3,9/2,3,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3 -10,11/2,6,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -12,6,13/2,4,6,4,4,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,2,2,3/2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-6,-15/2,-6,-12,-8,-12,-12,-25,-12,-25/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,1,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,7,4,7/2,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-11/2,-7,-6,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -21,11,11,7,10,6,7,5,8,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,9/2,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,0,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,3,2,2,2,7/2,2,3,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-18,-9,-9,-5,-8,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-21,-14,-22,-22,-44,-22,-22,-14,-22,-12,-14,-12,-43/2,-11,-12,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-9,-13,-13,-22,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-21,-10,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,11/2,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,3 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-7,-4,-6,-13/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-5,-4,-8,-9/2,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-11,-5,-6,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2 -13,7,13/2,4,7,4,9/2,4,6,4,7/2,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-27/2,-14,-29,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-15/2,-8,-16,-8,-17/2,-6,-9,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-13/2,-5,-9,-5,-8,-8,-14,-6,-13/2,-4,-6,-3,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-14,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,0,0,1/2,0,4,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,6,4,7/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,5/2,3,6,4,7/2,3,3,2,2,2,3,2,2,2,2,2,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1 -11,6,6,4,6,7/2,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-21/2,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-11/2,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1 -18,9,9,6,17/2,5,6,5,7,4,4,3,9/2,3,3,3,6,4,4,2,5/2,2,2,2,4,2,2,1,1,1,1,0,1,1,1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,9/2,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-10,-4,-4,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-5,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-7,-12,-7,-11,-10,-18,-10,-12,-10,-39/2,-13,-20,-20,-43,-21,-20,-13,-20,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-10,-21,-10,-11,-7,-23/2,-6,-9,-8,-13,-7,-8,-6,-25/2,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-12,-6,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-21/2,-5,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,5,3,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,3,2,3,2,7/2,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-28,-27/2,-13,-17/2,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-14,-13/2,-7,-4,-7,-4,-5,-9/2,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-7/2,-5,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,5/2,4,5/2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1 -17,9,9,6,9,5,11/2,4,7,4,4,3,4,3,7/2,3,5,3,3,2,2,2,3/2,2,3,2,1,1,1,1,1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,3,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-5,-3,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-7,-4,-9/2,-4,-10,-5,-13/2,-5,-10,-6,-19/2,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-39/2,-20,-43,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-14,-8,-21/2,-10,-21,-10,-10,-6,-11,-6,-8,-7,-13,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,6,4,7/2,3,3,2,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,4,4,7,4,9/2,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,3,2,7/2,4,8,4,9/2,3,4,2,2,2,2,2,3/2,2,2,1,1,1,3,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1/2,0,0 -17,9,9,6,9,5,6,9/2,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,4,3,3,3,5,7/2,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-4,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-11/2,-16,-15/2,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-42,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-13,-15/2,-10,-10,-21,-10,-10,-6,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1/2,0 -32,17,17,12,17,10,12,10,18,10,10,8,12,7,9,8,15,8,9,7,10,6,8,7,12,6,6,5,7,5,6,6,12,6,6,4,5,3,3,3,4,2,2,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,3,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,4,4,6,3,3,2,2,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-6,-9,-9,-18,-9,-9,-7,-12,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-7,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-33,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-16,-16,-69/2,-17,-17,-11,-18,-9,-11,-9,-16,-8,-9,-7,-12,-7,-11,-10,-21,-10,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-11,-21,-11,-14,-11,-20,-13,-19,-19,-38,-19,-21,-16,-27,-16,-22,-21,-41,-22,-26,-21,-39,-26,-40,-40,-85,-42,-42,-28,-42,-23,-27,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-16,-14,-26,-14,-16,-13,-23,-15,-22,-22,-44,-21,-21,-14,-21,-11,-14,-12,-23,-12,-13,-10,-18,-11,-17,-17,-34,-17,-17,-12,-20,-11,-15,-13,-24,-13,-15,-13,-24,-15,-23,-22,-91/2,-22,-22,-14,-22,-12,-14,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-40,-20,-20,-13,-20,-11,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-41/2,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,4,6,4,5,5,8,5,7,7,25/2,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1 -16,9,9,6,9,6,7,6,10,6,6,9/2,7,4,5,9/2,8,9/2,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-15/2,-13,-7,-10,-10,-20,-11,-13,-10,-19,-25/2,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-10,-15/2,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-7,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-19,-9,-10,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,5/2,3,2,3,2,3,3,5,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,9,9,6,9,6,7,6,10,6,11/2,4,7,4,9/2,4,8,4,9/2,4,6,4,4,4,6,4,4,3,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,4,3,7/2,3,5,4,9/2,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-6,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-9,-19,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-39/2,-20,-42,-20,-41/2,-13,-21,-11,-27/2,-11,-21,-10,-21/2,-8,-13,-8,-11,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-22,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-15/2,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-11,-6,-7,-6,-10,-5,-11/2,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-19,-9,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,7,4,7/2,2,4,3,3,3,4,2,5/2,2,4,3,7/2,3,4,2,5/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,5/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0 -11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-28,-27/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-8,-5,-7,-6,-14,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,8,8,6,9,6,7,6,9,5,5,4,6,4,4,4,10,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,3,7,4,4,3,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-6,-19/2,-5,-6,-5,-11,-6,-7,-6,-21/2,-6,-9,-9,-20,-10,-10,-7,-25/2,-8,-11,-10,-19,-10,-12,-10,-20,-13,-21,-21,-43,-21,-20,-13,-41/2,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-12,-6,-8,-6,-11,-7,-11,-11,-23,-11,-10,-6,-21/2,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-12,-6,-7,-6,-21/2,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-11/2,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,7,4,4,3,7/2,2,3,3,4,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,2,2,3,3,4,3,5,5,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,1,2,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1/2,1,1,1,0 -10,5,5,4,5,7/2,4,4,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0 -12,6,13/2,5,6,4,9/2,4,6,4,4,3,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-27/2,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-7/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,5,3,3,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,-1 -10,11/2,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-7/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1 -17,9,8,6,8,5,5,5,8,5,5,3,4,3,3,3,10,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,2,3,3,4,4,8,5,5,3,4,2,2,2,7/2,2,2,2,2,1,1,0,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-5,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-10,-11,-8,-14,-8,-12,-10,-41/2,-11,-13,-11,-21,-13,-20,-20,-45,-22,-22,-14,-22,-12,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-25,-12,-13,-8,-13,-7,-9,-8,-29/2,-7,-8,-6,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-8,-6,-11,-7,-11,-11,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3/2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,4,3,5,5,8,4,4,3,4,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-5/2,0,0,0,0,0,-1,-1,-3 -9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-13/2,-10,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -10,5,5,3,4,3,3,3,5,3,3,2,3,2,5/2,2,6,4,7/2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-3/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-7,-11,-11,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-3,-5,-3,-11/2,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,0,1,1,1,1,1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,1,1,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,3,3,2,3,2,3/2,2,2,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -11,6,5,4,5,3,4,3,5,3,2,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,1,1,0,0,1/2,0,0,1,3,2,2,2,5/2,2,3,3,4,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-13,-6,-6,-4,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-10,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-32,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-17/2,-4,-6,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-6,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,3/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3/2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-2 -7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-5,-5,-10,-9/2,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -8,4,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,4,2,5/2,2,2,2,5/2,2,3,2,2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-23/2,-12,-27,-13,-13,-8,-13,-7,-17/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-7,-13/2,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-7,-4,-15/2,-7,-17,-8,-15/2,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,5,3,5/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,-1,0,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2 -7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-10,-21/2,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-16,-7,-7,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,0,0,1/2,1,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,1/2,0,1/2,0,1/2,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -13,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,6,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-18,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-11,-8,-15,-9,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-51,-25,-26,-17,-26,-14,-17,-13,-24,-12,-13,-10,-18,-11,-15,-14,-28,-13,-13,-9,-14,-8,-11,-10,-19,-9,-10,-8,-14,-9,-13,-13,-31,-15,-15,-10,-15,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-10,-43/2,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-31,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-5,-8,-4,-6,-6,-27/2,-6,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,11/2,4,4,3,4,3,3,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,1,1,1,1,1,1,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3 -7,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-11/2,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1 -6,3,3,3,4,3,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1/2,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-10,-5,-5,-3,-4,-2,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-13/2,-6,-11,-7,-21/2,-10,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-13/2,-6,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,5,3,5/2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,0,1,3/2,2,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1 -4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,3,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,3/2,2,3/2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1 -6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,1,4,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-18,-9,-9,-6,-17/2,-4,-6,-5,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,4,3,3,2,5/2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,5,3,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1/2,1,2,2,0,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,1,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-16,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1/2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-17/2,-9,-21,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,1,0,0,1/2,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,2,1,1/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-19,-9,-8,-5,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,0,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-7/2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,-1,1,1,1,0,-1,0,-1,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,-7,-3,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-16,-7,-7,-4,-6,-3,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-2,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-6,-25/2,-6,-8,-7,-14,-9,-15,-15,-36,-18,-18,-11,-17,-9,-11,-10,-37/2,-9,-9,-6,-10,-6,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-2,-11,-5,-5,-4,-7,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,1,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4 -3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-19,-9,-9,-11/2,-9,-5,-6,-5,-10,-9/2,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,3,3,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-8,-5,-9,-9,-22,-10,-21/2,-6,-11,-6,-7,-6,-12,-6,-11/2,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-14,-6,-13/2,-4,-7,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,0,0,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,-3,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-7/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-7,-12,-5,-5,-3,-11/2,-3,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-13,-6,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-3,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-10,-5,-6,-5,-21/2,-7,-12,-12,-31,-15,-15,-10,-31/2,-8,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-12,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,-1,0,0,0,-3/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,7,4,4,3,4,3,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,8,5,5,3,4,3,3,3,3,2,3,2,7/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,2,2,3/2,2,2,1,0,1,1,1,3/2,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-7/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-20,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-4,-6,-5/2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-13/2,-7,-13,-6,-5,-3,-6,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-7,-4,-6,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-31,-15,-15,-10,-16,-8,-21/2,-9,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-4,-11/2,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,6,4,7/2,3,4,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,8,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,5/2,2,3,2,7/2,3,5,3,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3 -4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-3,-6,-3,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-4,-3,-7,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-30,-15,-15,-10,-15,-8,-10,-17/2,-16,-8,-8,-6,-10,-6,-8,-15/2,-16,-8,-8,-5,-9,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-17,-8,-8,-11/2,-9,-9/2,-6,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-7/2,-5,-9/2,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3 -8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-2,-4,-4,-17/2,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-26,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-24,-11,-11,-7,-12,-6,-7,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-5,-10,-6,-10,-10,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-16,-13,-23,-15,-23,-23,-61,-30,-30,-20,-30,-16,-19,-15,-28,-14,-15,-11,-19,-11,-15,-14,-28,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-10,-11,-8,-13,-8,-11,-10,-19,-10,-12,-10,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-22,-10,-10,-6,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,1,0,0,12,7,7,5,8,5,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,4,13/2,4,4,3,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,5,3,3,3,4,3,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 -5,3,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-13/2,-8,-6,-11,-7,-11,-11,-30,-15,-15,-10,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3 -5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-5,-6,-2,-5/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-15/2,-6,-12,-8,-23/2,-11,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-9,-9,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-9,-6,-19/2,-10,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,3/2,1,1,1,1/2,0,7,4,4,3,5,3,4,3,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3/2,2,3/2,2,2,1,1,2,1,1,1,0,0,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,0,1,1,1,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-5/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-10,-5,-5,-3,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-13,-13,-34,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-17,-8,-8,-5,-17/2,-4,-5,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-4,-2,-9/2,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,8,4,4,3,5,3,3,3,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,0,1,1,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,9/2,3,3,2,4,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,3,6,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,0,0,0,0,1/2,1,2,2,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,2,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -2,1,1,1,2,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-4,-9,-6,-9,-9,-25,-12,-12,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-6,-4,-13/2,-7,-12,-6,-6,-4,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,7,4,7/2,3,4,3,3,2,4,2,2,2,1,1,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,1,1,2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,2,4,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,0,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-9,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-4,-6,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-7,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-41,-20,-20,-13,-20,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-9,-8,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-15,-7,-8,-6,-10,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-10,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,12,6,6,4,5,3,4,4,11/2,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,7/2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,9/2,3,3,3,4,3,4,4,5,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-7 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,3/2,2,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,2,2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 -2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-6,-3,-3,-2,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3,-3,-5,-2,-3,-2,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-11,-5,-9/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,1,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 -2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1/2,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-17/2,-8,-11/2,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,6,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,0,0,0,1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-19/2,-5,-7,-7,-16,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,5,3,3,2,7/2,2,3,2,5,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,2,2,3,3,5,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5 -1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-3,-2,-3,-1,-1,-1/2,-2,-1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-5/2,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 -1,1,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-4,-4,-9,-4,-11/2,-4,-8,-4,-6,-6,-11,-6,-7,-6,-10,-7,-11,-11,-28,-14,-14,-9,-14,-8,-19/2,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-8,-7,-15,-7,-7,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,1,1,1,9,5,11/2,4,6,4,7/2,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1/2,1,2,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4 -1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-11/2,-11,-6,-7,-6,-10,-7,-11,-10,-27,-13,-13,-17/2,-13,-7,-9,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4 -0,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-13,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-21,-55,-27,-28,-18,-28,-15,-18,-15,-28,-14,-14,-10,-17,-10,-14,-14,-55/2,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-14,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-39/2,-10,-10,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-30,-15,-15,-9,-14,-7,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,16,8,8,6,8,5,7,6,11,6,6,5,7,5,6,5,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,11/2,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,3,4,2,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-9/2,-2,-2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-9 -0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-21/2,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4 -0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-23/2,-12,-30,-15,-15,-9,-15,-8,-9,-7,-15,-7,-7,-5,-9,-5,-15/2,-7,-14,-6,-13/2,-4,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,5,3,4,4,5,3,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3 -0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-5,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2 --2,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-10,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-5,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-7,-4,-15/2,-4,-6,-5,-12,-6,-8,-7,-13,-9,-14,-14,-35,-17,-17,-11,-35/2,-9,-11,-9,-16,-8,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,11,6,6,4,6,4,5,4,6,4,4,4,11/2,4,4,4,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-1,-1,-3 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1 --2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-4,-3,-5,-5,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-7,-6,-12,-8,-12,-12,-29,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-8,-5,-8,-7,-15,-7,-15/2,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,9,5,11/2,4,6,4,4,4,6,4,7/2,3,5,4,9/2,4,7,4,4,3,3,2,3,3,4,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-9/2,-5,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-28,-27/2,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,5/2,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-19,-9,-8,-5,-8,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-22,-15,-23,-23,-55,-27,-26,-17,-26,-14,-17,-14,-51/2,-12,-13,-9,-16,-10,-15,-14,-26,-13,-13,-9,-14,-8,-11,-10,-37/2,-9,-10,-8,-14,-9,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-12,-7,-9,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,3,16,9,9,6,8,5,6,6,19/2,6,6,4,6,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-6,-11/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-30,-29/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-9,-5,-8,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-11/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-17/2,-7,-14,-9,-15,-15,-36,-18,-35/2,-11,-16,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-8,-17,-8,-17/2,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-8,-4,-11/2,-5,-10,-5,-13/2,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,2,2,3/2,2,0,1,3/2,2,2,2,2,2,11,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,5,4,5,3,4,3,4,3,4,4,5,4,11/2,5,7,4,9/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,3,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2 --4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-29,-14,-14,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,3/2,2,2,2,2,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,7/2,5,9/2,7,4,4,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 --8,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-7,-3,-4,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-19,-9,-9,-6,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-9,-6,-10,-10,-20,-9,-9,-6,-9,-5,-6,-4,-10,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-12,-6,-8,-6,-11,-7,-10,-10,-18,-9,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-14,-21,-22,-53,-26,-26,-17,-51/2,-14,-16,-13,-26,-13,-13,-9,-16,-9,-13,-12,-27,-13,-14,-9,-27/2,-8,-10,-9,-18,-9,-10,-8,-15,-9,-14,-14,-31,-15,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-8,-17,-8,-9,-6,-21/2,-6,-8,-7,-16,-8,-10,-8,-27/2,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,3/2,1,1,1,0,1,1,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,12,6,6,4,6,4,5,5,6,4,5,4,15/2,6,8,7,12,7,7,5,6,4,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,3,7,4,4,4,13/2,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,9/2,3,4,3,5,3,3,2,7/2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1/2,1,1,1,3,2,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4 --5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-13/2,-13,-7,-9,-7,-14,-9,-14,-14,-35,-17,-17,-11,-17,-9,-10,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-19/2,-10,-6,-10,-5,-7,-11/2,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-7/2,-5,-4,-10,-5,-6,-9/2,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-7,-4,-13/2,-7,-14,-7,-7,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-6,-9,-9,-20,-9,-9,-6,-10,-5,-11/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-10,-5,-6,-5,-10,-6,-19/2,-9,-18,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-43/2,-22,-52,-25,-25,-16,-26,-14,-16,-13,-25,-12,-27/2,-10,-16,-10,-27/2,-13,-26,-13,-27/2,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,3,17,9,9,6,9,6,7,6,10,6,13/2,5,7,5,6,6,12,6,13/2,4,6,4,5,5,6,4,5,4,6,5,7,7,12,6,13/2,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,9/2,4,7,4,9/2,4,6,4,6,6,10,6,13/2,5,6,4,4,3,5,3,7/2,3,4,3,7/2,3,6,3,3,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-9/2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-22,-22,-51,-25,-25,-16,-26,-14,-16,-13,-25,-12,-13,-19/2,-16,-10,-14,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-17/2,-18,-17/2,-9,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-8,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-10,-9/2,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3 --17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-15,-10,-15,-15,-61/2,-15,-16,-10,-16,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-19,-12,-19,-20,-39,-19,-18,-12,-18,-10,-12,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-30,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-11,-18,-10,-14,-13,-25,-13,-15,-12,-21,-13,-20,-19,-39,-20,-22,-16,-28,-17,-23,-22,-44,-24,-30,-25,-45,-30,-45,-45,-103,-51,-50,-33,-50,-27,-33,-28,-51,-26,-29,-21,-35,-21,-29,-28,-55,-27,-28,-19,-29,-17,-22,-19,-37,-19,-22,-17,-30,-19,-27,-26,-52,-26,-26,-17,-27,-15,-18,-15,-29,-15,-16,-11,-19,-11,-16,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,4,5,33,17,18,12,18,11,13,11,19,10,10,8,12,8,11,10,19,10,10,7,11,7,8,8,14,8,9,7,11,7,10,10,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,3,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-5,-9/2,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-19/2,-10,-15/2,-13,-8,-11,-10,-22,-12,-14,-12,-22,-14,-22,-22,-51,-25,-25,-16,-25,-13,-16,-27/2,-25,-25/2,-14,-10,-17,-10,-14,-27/2,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-9,-13,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-13/2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,17,9,10,7,10,6,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4 --8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-4,-7,-4,-15/2,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-8,-4,-5,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-15/2,-5,-8,-4,-13/2,-6,-11,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-22,-12,-29/2,-12,-22,-14,-43/2,-22,-51,-25,-25,-16,-25,-14,-33/2,-14,-25,-12,-27/2,-10,-18,-10,-29/2,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-10,-8,-15,-9,-27/2,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-3,-5,-5,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,18,10,19/2,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,5,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,7/2,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-5,-3,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-9/2,-8,-9/2,-6,-6,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-34,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-12,-13/2,-9,-9,-18,-17/2,-9,-6,-10,-5,-6,-11/2,-12,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,12,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3 --8,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-1,0,-3,-1,-1,0,0,0,0,0,2,1,1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-9,-5,-6,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-51,-25,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-35/2,-10,-15,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-15,-9,-14,-13,-25,-12,-13,-8,-13,-7,-8,-7,-14,-7,-7,-5,-19/2,-5,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,2,1,1,2,2,5/2,2,3,3,18,10,10,7,21/2,6,8,7,11,6,7,5,7,4,5,5,10,6,6,4,13/2,4,5,5,6,4,4,4,11/2,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,4,4,6,4,4,3,7/2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5 --4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-7/2,-6,-5,-12,-6,-7,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-8,-5,-8,-4,-5,-9/2,-9,-5,-6,-4,-8,-5,-7,-7,-14,-13/2,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,-1/2,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,1,1,2,2,2,2,2,2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2 --5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-9,-7,-14,-9,-14,-14,-35,-17,-33/2,-11,-17,-9,-23/2,-10,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,3,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,7/2,4,4,3,3,3,4,3,3,3,8,4,9/2,3,4,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3 --4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-29,-14,-14,-9,-14,-8,-10,-8,-14,-7,-8,-11/2,-10,-6,-8,-7,-16,-15/2,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-9/2,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,5/2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3 --8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-2,-3,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-20,-13,-20,-21,-54,-27,-27,-17,-26,-14,-18,-15,-55/2,-14,-15,-11,-19,-11,-15,-14,-29,-14,-14,-9,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-13,-27,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,18,10,10,7,11,6,7,6,11,6,6,4,6,4,5,5,10,6,6,4,6,4,4,4,13/2,4,4,3,5,4,5,5,11,6,6,4,4,3,3,3,4,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,2,2,2,2,5/2,2,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-27,-13,-14,-17/2,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-13/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,2,3,2,2,2,3,2,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 --4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-11,-29,-14,-29/2,-9,-14,-8,-19/2,-8,-14,-7,-7,-5,-10,-6,-15/2,-7,-15,-7,-7,-4,-7,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,2,2,2,2,3,2,5/2,2,10,6,6,4,7,4,9/2,4,7,4,4,3,4,3,4,3,6,4,7/2,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,7/2,2,3,2,2,2,3,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-3 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1/2,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-2 --6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-4,-2,-3,-2,-11/2,-4,-7,-7,-9,-4,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-2,0,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,0,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-7,-5,-17/2,-5,-7,-6,-11,-6,-8,-6,-25/2,-8,-12,-13,-36,-17,-17,-11,-17,-9,-11,-9,-18,-9,-9,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,2,1,1,1,2,2,3,3,12,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,9,5,5,3,7/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-4 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,7,4,4,3,5,3,4,3,5,3,3,5/2,4,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2 --4,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-8,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-10,-30,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3 --4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-19/2,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 --8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-22,-10,-10,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-55,-27,-27,-18,-28,-15,-18,-15,-28,-14,-15,-11,-18,-11,-15,-14,-53/2,-13,-13,-9,-14,-8,-10,-9,-17,-9,-11,-8,-15,-9,-13,-13,-23,-11,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-9,-5,-8,-7,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,21/2,6,5,4,5,3,4,4,6,3,3,2,3,3,4,4,12,6,6,4,5,3,3,3,4,3,3,2,2,1,1,0,-3/2,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-28,-13,-13,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,7/2,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,2,2,2,1,2,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-3,-1,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-12,-6,-11/2,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,3,2,5/2,2,2,2,2,2,8,4,9/2,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,7,4,4,3,3,2,5/2,2,2,2,3/2,1,2,1,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2 --2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,3,2,2,2,2,2,2,2,7,4,4,4,11/2,4,4,3,5,3,3,3,4,3,4,4,8,4,4,3,7/2,2,3,2,4,2,2,2,5/2,2,2,2,8,5,5,4,9/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-3 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,5,3,3,5/2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 -0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,1,1,1/2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,0,0,-1/2,-1,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,6,4,4,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,5,3,7/2,3,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,-1,-3 -0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3 --1,0,0,1,1,1,1,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,0,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-2,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-7,-9,-7,-14,-9,-14,-13,-41,-20,-21,-14,-21,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-7,-11,-10,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,1,8,5,5,3,4,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,0,1,1,1,0,0,0,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 -0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,1/2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-21/2,-11,-7,-11,-6,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,3/2,2,3/2,2,1,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 -0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,1,1,0,0,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,-1,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-25,-12,-25/2,-8,-13,-7,-8,-6,-13,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,3/2,1,5,3,5/2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-2,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 -0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,2,2,2,1,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,4,3,3,2,2,1,1,0,1,1,0,0,1/2,0,0,1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-5,-11,-7,-11,-10,-37,-18,-17,-11,-17,-9,-11,-9,-18,-9,-10,-7,-13,-7,-10,-10,-18,-9,-9,-6,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,5,3,3,3,9/2,3,3,3,5,3,3,2,3,2,3,3,7,4,3,2,3,2,2,2,4,2,2,1,1,1,1,1,4,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,2,2,5/2,2,2,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-8 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-24,-11,-11,-7,-11,-11/2,-7,-11/2,-11,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5 -0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,1,2,2,3/2,2,4,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-6,-5,-10,-6,-9,-9,-35,-17,-17,-11,-16,-8,-21/2,-8,-16,-8,-9,-7,-12,-7,-19/2,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-9,-5,-8,-8,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-13,-6,-11/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-3,-5,-5,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1/2,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,1,1,1,1,3/2,2,3,2,3/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-7 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-34,-33/2,-16,-21/2,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,2,3/2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --2,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,9/2,2,2,2,2,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-7,-7,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-19,-12,-18,-18,-69,-34,-33,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-13,-18,-17,-34,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-9,-16,-10,-16,-16,-63/2,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-26,-12,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-13,-13,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-35/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-8,-3,-3,-2,-3,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-9/2,-6,-9/2,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -0,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,-1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-2,-3,-2,-7/2,-4,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-19/2,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-8,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-6,-6,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,4,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1/2,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,-1,-2,-2,-6,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,2,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5 -1,1,2,2,3/2,2,2,1,2,2,2,2,3/2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,2,5/2,2,3,3,4,2,2,2,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,2,3,2,1,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,3,2,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-6,-3,-3,-2,-5/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-6,-5,-19/2,-6,-10,-10,-34,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-8,-8,-16,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-14,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,2,1,1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8 -1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,3/2,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 -1,1,3/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,0,1,3/2,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,3,2,3/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-5,-2,-7/2,-3,-7,-4,-6,-6,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,2,2,3,2,3,2,2,2,2,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,0,-2,-1,-2,-2,2,2,3/2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6 -1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-3/2,-4,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,3/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,3,4,4,4,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,1,1,3/2,2,2,1,1,0,-1,-1,2,1,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,-2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,3/2,1,1,1,0,0,0,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3/2,2,2,2,2,1,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-36,-17,-17,-11,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,1/2,0,0,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 -0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,1,2,1,1,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,2,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,4,2,5/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,1,1,3/2,2,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 --2,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,0,1,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,1,0,-1/2,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,2,2,-2,0,0,0,-1,0,0,1,2,1,1,1,3/2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,1,1,-5,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-4,-15/2,-4,-7,-7,-27,-13,-12,-8,-25/2,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-5,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,3/2,1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,1,1,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8 --1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-16,-15/2,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 --1,0,0,1,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-13/2,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,0,0,1/2,0,1,1,1/2,1,2,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,3/2,1,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-5/2,-2,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7 --1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,1/2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-22,-10,-10,-7,-11,-11/2,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-2,-4,-3,-5,-4,-11,-5,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,1,1,1,1,1/2,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7 --3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,5,3,4,4,6,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,1,3/2,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-19/2,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-44,-22,-22,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-22,-10,-10,-6,-9,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-21/2,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-8,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 --1,0,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-3/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-22,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 --2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-1,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,1,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,1,1,1,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,-2,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-4,-3/2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,2,2,2,3/2,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,2,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,1,0,0,1,1,0,0,-1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-27,-13,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-4,-15/2,-5,-8,-7,0,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-8,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-16,-7,-7,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,0,1,3/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-13/2,-6,-22,-10,-21/2,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,3/2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-20,-19/2,-10,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-3,-7 --4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,1,1,1,1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-22,-11,-11,-7,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-5,-10,-7,-11,-11,-38,-19,-19,-13,-20,-10,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-7,-6,-21/2,-5,-6,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,7/2,2,3,3,4,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-12,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-20,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 --2,0,-1/2,0,-1,0,1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,5/2,3,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,-1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-13/2,-7,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-13/2,-5,-9,-5,-13/2,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,2,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7 --5,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,1,1,1,1,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,3,2,2,1,1/2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-23,-11,-10,-6,-10,-5,-7,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-5,-21/2,-6,-10,-10,-37,-18,-18,-12,-35/2,-9,-11,-9,-18,-9,-10,-7,-25/2,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-10,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,7/2,3,4,3,5,3,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,2,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 --3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-13/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-3/2,0,-2,-1,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-35/2,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-19/2,-9,-18,-9,-19/2,-6,-10,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-9,-20,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,7/2,2,3,2,7/2,4,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1/2,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1/2,-2,-1,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-6,-10,-5,-6,-11/2,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,4,5/2,3,2,3,3,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 --10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-7,-7,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-5,-10,-6,-9,-9,-37/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-45,-22,-22,-14,-21,-11,-13,-10,-19,-9,-10,-7,-11,-7,-10,-9,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-9,-8,-15,-8,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-16,-9,-12,-10,-20,-11,-14,-11,-21,-14,-21,-21,-74,-37,-37,-24,-37,-20,-25,-21,-38,-19,-20,-14,-24,-14,-20,-19,-37,-18,-19,-13,-20,-11,-14,-12,-24,-13,-15,-12,-22,-14,-21,-21,-42,-21,-21,-13,-20,-11,-13,-10,-19,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-33,-16,-15,-10,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-10,-8,-16,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-9,-15,-8,-11,-10,-19,-10,-13,-11,-21,-14,-21,-21,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-1,0,0,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-12,-25 --4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-37,-18,-18,-12,-18,-10,-12,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-17/2,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-15/2,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-13/2,-10,-10,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-22,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-7,-4,-11/2,-5,-9,-5,-6,-5,-10,-6,-10,-10,-38,-18,-18,-12,-18,-10,-12,-10,-19,-9,-19/2,-7,-12,-7,-10,-9,-18,-8,-17/2,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-4,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-10,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3,3,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,0,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,1,1,1,0,1,2,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-11/2,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-13/2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 --3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-22,-10,-10,-7,-11,-5,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-4,-5,-5,-8,-4,-5,-5,-10,-6,-10,-10,-39,-19,-19,-12,-35/2,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-9,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-5,-4,-10,-5,-7,-6,-11,-7,-11,-11,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-5/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-4,-6,-6,0,0,0,1,3/2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6 --2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-16,-7,-7,-4,-7,-3,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,1,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8 --1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1/2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-13,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,0,0,1/2,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-25,-12,-12,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-42,-20,-20,-13,-20,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,-2,-1,-1,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,0,0,0,0,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-5,-5,-11 --1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-3/2,-2,-2,0,0,0,0,0,0,0,0,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,-3,-1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-14,-6,-13/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6 --1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4 --2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,0,0,0,1,3/2,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-1,0,-1,0,-3/2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1/2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-13,-8,-25/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,-1,0,0,0,1/2,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,2,1,1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-16,-7,-7,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-11,-6,-7,-6,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,-1,0,0,1,0,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-7 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-4,-4,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,-1,-2,-2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,3/2,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-3,-1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,-1,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-30,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-48,-24,-24,-16,-24,-13,-15,-12,-23,-11,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-5,-9,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,7/2,2,2,1,0,1,1,1,0,1,1,1,2,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-1,0,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-16 --3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-24,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-3/2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8 --4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,3,2,1,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-5/2,-2,-1,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-5,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-25,-12,-25/2,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-11/2,-4,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-7,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,1,1,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-7/2,-4,-8 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-9/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-28,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-19/2,-6,-8,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,-1,0,0,0,-1,0,1,1,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,1,1,1,1,3/2,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,1,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1/2,0,-1,-1,-1,-1,-2,-2,-7/2,-2,-4,-4,-9 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,1/2,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,-1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,2,2,2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-13,-6,-6,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-9/2,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,3/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5 --9,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,0,-1,3,2,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-6,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-21,-10,-10,-6,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-37,-18,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,0,0,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1/2,0,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --5,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-13,-6,-11/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-9/2,-4,-23,-11,-11,-7,-11,-6,-15/2,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-11/2,-5,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,0,1,0,-1/2,0,-3,-1,-1,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-4,-3,3,2,2,2,5/2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-6,-18,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-14,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-34,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-6,-23/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-5,-8,-8,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-8,-8,-11,-5,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,0,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7 --4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,-1/2,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-22,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-5,-5,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 --7,-3,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-17,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-17/2,-8,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,0,1,2,2,3/2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,-3/2,-1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-5/2,-2,-6 --6,-5/2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-10,-9/2,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-15/2,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6 --13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-3,-3,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-36,-17,-17,-11,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-17,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-17,-17,-11,-17,-9,-11,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-66,-32,-32,-21,-33,-18,-21,-17,-31,-16,-17,-12,-20,-12,-17,-16,-32,-16,-16,-11,-17,-9,-12,-10,-20,-11,-13,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-33,-16,-15,-10,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-45/2,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-12,-19,-19,-27,-13,-14,-9,-15,-8,-10,-8,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-3,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 --6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,2,2,2,2,2,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-10,-16,-8,-10,-8,-15,-15/2,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-15/2,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-13,-6,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7 --6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-34,-16,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-17/2,-9,-14,-7,-7,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-3,-4,-5/2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-23,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,3,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,2,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,0,0,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-1,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-5,-20,-9,-9,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-6,-36,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-17,-8,-8,-5,-8,-4,-6,-5,-7,-3,-4,-3,-11/2,-3,-4,-3,-10,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-14,-7,-7,-4,-15/2,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-8 --3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 --5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,4,2,2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-5,-3,-4,-4,-26,-13,-13,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 --4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,0,0,-1,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,1,1,1/2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-25,-12,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-5,-43,-21,-20,-13,-20,-11,-13,-11,-20,-10,-11,-7,-12,-7,-10,-10,-19,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-4,-11,-5,-5,-4,-7,-4,-6,-5,-19/2,-5,-6,-5,-9,-6,-10,-10,-20,-9,-9,-6,-9,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-5,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,1,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-23,-11,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-11,-5,-11/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3 --9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,1,1,1,1,0,0,5,3,3,2,7/2,2,3,3,5,3,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-37,-18,-18,-12,-18,-9,-11,-9,-17,-8,-8,-6,-21/2,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,1,1,-1,0,0,0,-1/2,0,0,1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,-3,-1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6 --6,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-9/2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-23,-11,-11,-7,-11,-6,-7,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4 --9,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-3,-5,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-15/2,-7,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-4,-4,-34,-16,-16,-10,-17,-9,-11,-9,-16,-8,-17/2,-6,-9,-5,-7,-7,-15,-7,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-17/2,-8,-19,-9,-9,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6 --8,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-33,-16,-16,-10,-16,-17/2,-10,-8,-15,-15/2,-8,-11/2,-9,-5,-7,-7,-14,-13/2,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-13/2,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-7 --17,-8,-8,-5,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,13/2,4,4,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-8,-8,-31/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-39/2,-10,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-15,-14,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-18,-12,-18,-18,-36,-18,-18,-12,-18,-10,-12,-9,-17,-9,-10,-7,-12,-7,-9,-8,-33/2,-8,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-67,-33,-32,-21,-32,-18,-22,-18,-33,-16,-17,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-19,-12,-17,-17,-36,-18,-18,-12,-19,-10,-12,-10,-18,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-11,-25,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-21/2,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-9,-7,-14,-9,-14,-13,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-7,-3,-2,-1,-1,0,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-15 --8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-12,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-34,-33/2,-16,-21/2,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,3,2,2,2,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-4,-8,-5,-15/2,-8,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-36,-18,-35/2,-12,-17,-9,-11,-9,-18,-9,-19/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-8 --7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-11/2,-6,-7/2,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-26,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --13,-6,-5,-3,-9/2,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-23,-11,-12,-8,-23/2,-6,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-16,-7,-7,-4,-15/2,-4,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-42,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-12,-8,-27/2,-8,-11,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-24,-12,-12,-8,-12,-6,-8,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8 --8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-14,-13/2,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-9,-4,-4,-5/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --11,-5,-9/2,-2,-4,-2,-2,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-4,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7 --10,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-19/2,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-18,-17/2,-8,-5,-8,-4,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --19,-9,-8,-5,-8,-4,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-7,-8,-6,-12,-8,-13,-13,-30,-15,-15,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-17,-8,-9,-6,-10,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-8,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-21,-10,-11,-8,-13,-7,-10,-9,-37/2,-10,-12,-10,-19,-12,-19,-19,-36,-18,-18,-11,-17,-9,-10,-8,-33/2,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-9,-24,-11,-11,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-10,-10,-64,-31,-31,-21,-32,-17,-20,-17,-63/2,-16,-16,-11,-19,-11,-16,-15,-29,-14,-15,-10,-17,-9,-12,-10,-39/2,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-16,-9,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-13,-13,-29,-14,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-12 --10,-9/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-9/2,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-15/2,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,2,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-20,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-8,-7,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-11,-6,-7,-6,-10,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-42,-20,-41/2,-13,-21,-11,-13,-11,-20,-10,-10,-7,-12,-7,-21/2,-10,-20,-9,-9,-6,-11,-6,-8,-6,-12,-6,-15/2,-6,-12,-7,-10,-10,-21,-10,-21/2,-6,-10,-5,-13/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,1/2,1,0,0,1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8 --9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-34,-16,-16,-21/2,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-17/2,-5,-8,-9,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-17/2,-5,-8,-8,-15,-7,-8,-6,-19/2,-6,-8,-8,-14,-7,-9,-7,-14,-9,-14,-14,-30,-14,-14,-9,-29/2,-8,-9,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-9,-5,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-16,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-13,-13,-9,-14,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-11,-8,-27/2,-8,-11,-10,-18,-9,-11,-9,-35/2,-12,-18,-18,-38,-19,-19,-12,-18,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-16,-8,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-23/2,-8,-12,-12,-25,-12,-12,-8,-23/2,-6,-7,-6,-13,-6,-7,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-10,-61,-30,-30,-20,-61/2,-16,-20,-17,-30,-15,-16,-12,-39/2,-12,-16,-15,-30,-15,-15,-10,-33/2,-9,-11,-10,-20,-10,-12,-9,-33/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-18,-9,-10,-7,-25/2,-7,-10,-9,-17,-8,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-7,-6,-11,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-25/2,-8,-13,-13,-29,-14,-14,-9,-27/2,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,1,1,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-11 --11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-11/2,-14,-6,-6,-4,-7,-7/2,-5,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-5,-8,-9,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-40,-20,-20,-13,-20,-21/2,-13,-11,-20,-10,-10,-15/2,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-12,-6,-11/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-19/2,-8,-15,-10,-15,-15,-31,-15,-29/2,-9,-14,-8,-19/2,-8,-15,-7,-15/2,-6,-9,-5,-15/2,-7,-15,-7,-8,-5,-9,-5,-13/2,-6,-11,-5,-6,-5,-9,-6,-17/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-27/2,-14,-28,-13,-13,-9,-15,-8,-19/2,-8,-16,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-10,-6,-9,-9,-17,-8,-17/2,-6,-9,-5,-7,-6,-13,-6,-15/2,-6,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-23/2,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-17/2,-6,-10,-5,-7,-7,-13,-6,-15/2,-6,-11,-7,-21/2,-10,-23,-11,-11,-7,-12,-6,-15/2,-6,-10,-5,-6,-4,-8,-4,-13/2,-6,-14,-6,-6,-4,-8,-5,-7,-6,-13,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-25/2,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-8,-8,-15,-7,-15/2,-5,-9,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-59/2,-20,-30,-16,-20,-17,-31,-16,-33/2,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-23/2,-10,-20,-10,-23/2,-9,-16,-10,-31/2,-15,-31,-15,-16,-10,-16,-8,-21/2,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-18,-9,-19/2,-6,-10,-5,-13/2,-6,-13,-7,-8,-6,-10,-6,-19/2,-10,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-13/2,-6,-12,-6,-13/2,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-15/2,-9,-8,-15,-7,-8,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-6,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-11,-8,-13,-15/2,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-12,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-7,-7,-13,-7,-8,-6,-11,-7,-11,-11,-23,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-9/2,-7,-6,-14,-13/2,-7,-9/2,-8,-5,-7,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-11,-11/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-30,-20,-30,-16,-20,-17,-31,-31/2,-16,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-16,-10,-16,-15,-31,-15,-15,-10,-16,-8,-10,-9,-17,-17/2,-9,-7,-12,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-5,-7,-7,-15,-8,-9,-7,-13,-8,-13,-13,-27,-14,-15,-11,-19,-11,-16,-15,-29,-16,-20,-17,-32,-21,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-13,-22,-13,-18,-17,-33,-16,-17,-12,-19,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-37,-18,-18,-12,-20,-11,-13,-11,-20,-10,-12,-10,-18,-11,-16,-15,-31,-15,-16,-12,-20,-12,-16,-15,-29,-16,-20,-16,-30,-20,-30,-30,-61,-30,-30,-19,-29,-16,-19,-16,-29,-15,-16,-11,-18,-11,-15,-14,-28,-14,-14,-10,-17,-10,-13,-11,-22,-11,-13,-10,-19,-12,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-8,-15,-9,-14,-13,-27,-14,-15,-11,-19,-11,-15,-14,-29,-16,-20,-16,-30,-20,-30,-31,-127/2,-31,-30,-20,-30,-16,-18,-15,-27,-13,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-11,-7,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-18,-9,-10,-7,-12,-7,-11,-11,-23,-12,-15,-12,-21,-14,-22,-22,-122,-60,-60,-40,-61,-33,-40,-34,-62,-32,-34,-24,-40,-24,-34,-32,-63,-32,-33,-22,-35,-20,-25,-22,-41,-22,-25,-20,-36,-23,-35,-34,-68,-34,-34,-22,-33,-18,-22,-19,-35,-18,-20,-15,-25,-16,-23,-22,-44,-22,-24,-17,-27,-16,-21,-18,-35,-19,-22,-18,-34,-22,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-17,-11,-18,-10,-14,-13,-26,-14,-16,-13,-23,-14,-21,-20,-41,-20,-20,-14,-22,-12,-15,-13,-24,-13,-15,-12,-21,-13,-18,-18,-36,-18,-19,-14,-23,-14,-20,-19,-38,-21,-25,-21,-39,-26,-40,-40,-81,-40,-41,-27,-41,-23,-28,-23,-42,-21,-22,-16,-26,-16,-22,-20,-39,-19,-20,-14,-24,-14,-18,-16,-31,-16,-19,-15,-26,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-24,-12,-14,-11,-19,-12,-17,-16,-33,-16,-17,-12,-21,-12,-15,-14,-27,-14,-16,-12,-22,-14,-22,-22,-44,-22,-22,-15,-23,-12,-15,-13,-24,-12,-13,-9,-16,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,4,7,4,3,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --17,-8,-8,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-8,-10,-8,-14,-9,-14,-14,-30,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-8,-15,-19/2,-14,-15,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-11/2,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-17,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-15/2,-11,-10,-22,-11,-12,-8,-13,-7,-10,-17/2,-17,-9,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-13/2,-10,-11/2,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-11,-13/2,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-40,-20,-20,-13,-20,-11,-13,-11,-20,-10,-10,-15/2,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-7,-12,-6,-8,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-19/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-8,-5,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-8,-4,-11/2,-4,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-15/2,-6,-10,-6,-15/2,-7,-14,-8,-19/2,-8,-14,-9,-29/2,-14,-30,-15,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-5,-4,-9,-4,-11/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-9,-8,-15,-10,-29/2,-14,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,3,2,3,2,3,3,4,4,7,4,7/2,3,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,2,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-33/2,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-23/2,-9,-17,-11,-33/2,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-8,-23/2,-10,-22,-11,-12,-8,-13,-7,-19/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-19/2,-6,-10,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-19/2,-9,-19,-10,-13,-10,-19,-12,-39/2,-20,-41,-20,-20,-13,-20,-11,-13,-11,-20,-10,-21/2,-8,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-17/2,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-23/2,-7,-12,-6,-15/2,-6,-11,-6,-13/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-21/2,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-12 --11,-5,-5,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-40,-19,-19,-13,-20,-21/2,-13,-11,-20,-10,-11,-15/2,-13,-15/2,-10,-19/2,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-11/2,-7,-6,-12,-11/2,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-12,-6,-6,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-9/2,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-4,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7 --17,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-10,-8,-31/2,-10,-15,-15,-32,-15,-15,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-9,-9,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-14,-9,-15,-15,-32,-16,-16,-10,-29/2,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-13,-6,-6,-4,-15/2,-4,-5,-5,-11,-6,-7,-5,-19/2,-6,-8,-7,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-7,-7,-13,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-32,-16,-16,-10,-29/2,-8,-9,-7,-14,-7,-7,-5,-17/2,-5,-7,-6,-14,-7,-7,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,4,2,2,2,7/2,3,4,4,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-5,-21/2,-6,-10,-10,-60,-30,-30,-20,-59/2,-16,-20,-17,-31,-15,-16,-12,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-12,-9,-16,-10,-16,-16,-33,-16,-16,-10,-33/2,-9,-11,-10,-19,-9,-10,-7,-25/2,-8,-11,-11,-21,-11,-12,-8,-27/2,-7,-9,-8,-18,-9,-11,-8,-31/2,-10,-14,-14,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-23/2,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-6,-21/2,-6,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-41,-20,-20,-13,-41/2,-11,-14,-11,-21,-11,-12,-8,-14,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-25/2,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-6,-21/2,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,5/2,2,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,1,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,1,2,2,2,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3/2,1,0,0,2,2,2,2,3/2,2,2,2,3,2,1,1,1,1,0,0,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11 --9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,1/2,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-6,-11,-11/2,-6,-4,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-15/2,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-6,-6,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-4,-13/2,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-6,-4,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,1,-2,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-40,-19,-19,-12,-19,-10,-13,-11,-20,-10,-11,-8,-14,-8,-21/2,-10,-20,-10,-10,-6,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-21/2,-7,-11,-6,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-13/2,-5,-10,-6,-19/2,-9,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-6,-4,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-8,-4,-5,-4,-6,-4,-6,-6,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-13/2,-6,-12,-6,-17/2,-7,-13,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,4,3,3,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,2,2,2,2,1,1,1/2,1,1,1,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8 --9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-17/2,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-16,-33,-16,-16,-10,-16,-9,-11,-9,-18,-9,-10,-7,-11,-7,-10,-9,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-32,-16,-16,-10,-15,-8,-10,-8,-31/2,-8,-8,-6,-10,-5,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-21/2,-5,-6,-5,-10,-6,-9,-8,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-11,-5,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-34,-17,-17,-11,-16,-8,-10,-8,-29/2,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,3/2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,3,4,4,8,4,4,3,5,3,2,2,5/2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-6,-12,-7,-11,-11,-59,-29,-30,-20,-30,-17,-21,-17,-32,-16,-16,-11,-19,-11,-15,-14,-29,-14,-15,-10,-16,-9,-12,-10,-19,-10,-11,-8,-15,-10,-15,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-9,-10,-7,-13,-8,-11,-10,-22,-11,-11,-7,-12,-7,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-11,-9,-33/2,-8,-8,-6,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-12,-6,-8,-7,-29/2,-7,-8,-6,-11,-7,-10,-10,-17,-9,-10,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-18,-12,-19,-19,-41,-20,-20,-13,-20,-11,-14,-12,-45/2,-11,-12,-9,-15,-8,-11,-10,-18,-9,-10,-7,-12,-6,-8,-7,-29/2,-8,-9,-7,-14,-9,-13,-12,-24,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-3,-1,0,1,1,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,1/2,1,1,1,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-21,-10,-10,-6,-10,-5,-7,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,3/2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-4,-2,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-13/2,-7,-19,-9,-19/2,-6,-9,-4,-11/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,3,5,3,7/2,3,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-5,-10,-6,-21/2,-10,-22,-10,-21/2,-6,-11,-6,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,2,2,1,1,2,2,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,4,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-7 --6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-5/2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-14,-7,-7,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-24,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-9/2,-8,-15/2,-16,-15/2,-8,-9/2,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --10,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-20,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-7,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-15,-7,-7,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-23/2,-6,-7,-5,-11,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,-1,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-4,-5,-4,-15/2,-4,-7,-7,-41,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-11,-8,-25/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-11,-7,-11,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-7,-5,-17/2,-4,-6,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-12,-8,-25/2,-7,-9,-7,-16,-8,-8,-6,-10,-5,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,0,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,3/2,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,1,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-6,-7/2,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-25,-12,-12,-15/2,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-7/2,-7,-5,-8,-8,-16,-15/2,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-4,-11/2,-4,-9,-4,-7/2,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-21,-10,-9,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3,3,6,3,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3,3,0,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-35,-17,-16,-10,-17,-9,-11,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-7,-11,-11,-22,-11,-11,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3/2,1,2,1,1/2,0,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,1,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-14,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-32,-31/2,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-4,-3,-6,-4,-6,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 --15,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-16,-10,-15,-15,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-10,-7,-11,-11,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-9,-5,-7,-7,-15,-8,-9,-8,-15,-10,-15,-14,-30,-14,-14,-9,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-8,-8,-31/2,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-24,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-38,-18,-18,-11,-17,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-35/2,-8,-8,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1/2,1,2,2,2,2,3,3,4,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-63,-31,-30,-19,-29,-15,-18,-15,-28,-14,-16,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-18,-11,-17,-17,-32,-15,-15,-10,-15,-8,-10,-9,-17,-8,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-7,-12,-7,-10,-9,-18,-10,-12,-9,-17,-11,-16,-16,-33,-16,-16,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-10,-10,-43/2,-10,-11,-8,-14,-8,-11,-11,-22,-12,-15,-12,-22,-14,-20,-20,-41,-20,-20,-13,-20,-11,-13,-10,-18,-9,-10,-8,-14,-8,-12,-11,-45/2,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-6,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-5/2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,2,2,2,1,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-13/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,2,2,3,5/2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-31,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-16,-8,-8,-9/2,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-7,-4,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-5 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-15/2,-8,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,4,3,4,3,5,3,3,2,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-32,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-8,-4,-9/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-11,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-11/2,-6,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,2,2,3/2,2,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1/2,0,1,1,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,1,3,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-2,-3,-3,-6 --5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,1,3,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-4,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,2,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,1,2,2,2,2,7/2,3,4,4,6,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,7/2,3,4,3,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-5,-34,-16,-16,-10,-31/2,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-7,-3,-4,-3,-9,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-11,-6,-8,-6,-23/2,-8,-12,-12,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,4,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 --4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-19,-9,-9,-5,-9,-9/2,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,0,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3,3,5,3,5/2,2,3,2,3/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,3/2,2,0,0,1/2,1,0,0,1/2,1,0,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,2,1,1,0,1,0,0,0,1/2,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-6 --10,-5,-5,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-6,-5,-9,-6,-10,-10,-25,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-8,-8,-26,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,0,1,1,1,1,3/2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,7/2,2,3,2,3,2,3,4,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-40,-19,-19,-12,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-3,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-13,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-25,-12,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,4,2,2,2,2,2,3,3,9/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-13 --5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-21,-10,-10,-6,-9,-5,-6,-9/2,-9,-4,-4,-5/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-6,-5,-15,-7,-15/2,-4,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-16,-8,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-23,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-5,-3,-4,-4,-13,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-5,-7,-3,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,2,2,3/2,2,2,2,3/2,1,3,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3/2,1,1,2,3/2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-6 --9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-23,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,-1,0,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,0,1,1,1,2,2,2,3,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-31,-15,-15,-10,-31/2,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-6,-5,-8,-4,-4,-4,-15/2,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-7,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,7/2,3,4,3,5,3,3,2,7/2,2,3,3,3,2,2,2,7/2,3,4,4,2,2,2,2,5/2,2,1,1,3,2,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-19,-9,-9,-6,-10,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-5,-3,-5,-4,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-3,-7 --8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-28,-14,-27/2,-9,-14,-7,-17/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-13/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-11,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,7/2,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-5/2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-4,-2,-2,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-5/2,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,-1/2,-1,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-9,-8,-15,-10,-15,-15,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-33/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-40,-20,-20,-13,-20,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-11,-23,-11,-12,-8,-13,-7,-10,-9,-17,-8,-9,-7,-13,-8,-12,-11,-45/2,-11,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-44,-22,-22,-15,-23,-13,-16,-13,-25,-12,-13,-10,-17,-10,-13,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-9,-37/2,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-9,-4,-4,-2,-3,-1,0,1,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-54,-26,-26,-17,-26,-14,-17,-13,-24,-12,-13,-9,-16,-9,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-41/2,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-59/2,-14,-14,-10,-16,-9,-11,-10,-20,-10,-11,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-11,-23,-12,-15,-12,-21,-14,-22,-22,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-10,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-9,-9,-6,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-6,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,1,1,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-11/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 --8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-10,-6,-10,-5,-6,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1/2,-4,-2,-2,-1/2,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-15,-7,-8,-5,-7,-7/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-10,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-19/2,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-12,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1/2,1,-4,-2,-3/2,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-6,-11,-6,-7,-5,-10,-6,-21/2,-10,-15,-7,-15/2,-5,-7,-4,-9/2,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,4,3,3,3,5,3,7/2,3,4,3,9/2,4,1,1,1,1,2,2,2,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-5,-3,-5,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,1,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-10,-9/2,-4,-3,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-5,-4,-17/2,-5,-8,-8,-9,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,3,3,4,2,2,1,1,1,2,2,1,1,1,1,3/2,2,2,1,2,2,2,1,1/2,0,0,1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-28,-13,-13,-8,-13,-7,-9,-7,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-7,-16,-7,-7,-4,-15/2,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-11,-6,-7,-6,-23/2,-7,-11,-11,-17,-8,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-3,-3,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,5/2,2,3,3,4,3,4,3,5,4,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-11/2,-5,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,0,0,0,0,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,2,2,2,1,2,2,2,2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-11/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,4,3,3,3,0,0,0,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 --3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,1/2,2,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,5/2,3,3,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-7,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-24,-11,-11,-7,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-16,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9/2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-31,-15,-15,-10,-15,-8,-10,-8,-14,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-19/2,-5,-6,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-6,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,1,1,0,-3/2,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,2,3,2,3,3,5,3,4,3,4,3,5,5,-1,0,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-6,-2,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,0,2,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-9,-6,-9,-8,-17 --2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9 --2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,2,2,3/2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-10,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-5,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,5/2,2,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-5/2,-1,-2,-3,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,1,0,0,0,0,1/2,1,2,2,3,2,2,2,7/2,2,3,3,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-14,-7,-7,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,2,2,2,3/2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,9/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-11,-5,-5,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-5,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-39,-19,-20,-13,-20,-11,-13,-11,-20,-10,-10,-7,-11,-6,-9,-8,-35/2,-8,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-22,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,3,5,3,3,3,5,4,5,4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-22 --2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-18,-8,-17/2,-6,-9,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,0,0,-4,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-7,-3,-4,-3,-7,-4,-7,-7,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,-4,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 --1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-3,-6,-2,-2,-1,-5/2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-20,-9,-9,-6,-10,-5,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,-6,-2,-2,-2,-7/2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-13/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,0,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-6,-5/2,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7 --3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-6,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-3,-1,-1,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-7/2,-4,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-6,-4,-7,-7,-8,-4,-7/2,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-10 --3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-5/2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-16,-15/2,-8,-9/2,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 --6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-6,-29,-14,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,0,0,1,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,1,1,2,2,3,2,3,2,7/2,2,2,2,3,3,4,4,-12,-6,-6,-3,-5,-2,-2,-1,-3/2,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-31,-15,-15,-10,-15,-8,-10,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-5,-4,-15/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-14,-9,-13,-13,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,0,0,0,1,1,1,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20 --3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11 --3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,-7,-3,-7/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,0,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-4,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-8,-4,-4,-3,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14 --2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-12 --4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-2,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-9/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-28,-14,-14,-9,-27/2,-7,-8,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,5/2,2,2,2,4,3,4,3,9/2,3,4,5,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-11/2,-3,-5,-4,-7,-3,-4,-4,-15/2,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-8,-7,-13,-7,-8,-6,-25/2,-8,-12,-12,-11,-5,-5,-4,-13/2,-3,-4,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,0,0,0,0,0,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-7/2,-7,-4,-7,-7,-15 --4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-6,-6,-28,-14,-27/2,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-11/2,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,5/2,2,2,2,2,3,4,3,7/2,3,6,4,11/2,6,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-11,-7,-11,-11,-23 --5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-9/2,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-7/2,-7,-9/2,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,6,4,6,6,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-11,-7,-11,-11,-23 --11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-7,-15,-8,-10,-8,-15,-10,-16,-16,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-12,-12,-59,-29,-29,-19,-28,-15,-19,-16,-30,-15,-17,-13,-22,-13,-18,-17,-34,-17,-17,-11,-18,-10,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-20,-10,-10,-7,-12,-7,-11,-10,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,5,5,9,6,9,10,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-53,-26,-26,-17,-25,-14,-17,-14,-27,-13,-14,-10,-17,-10,-13,-12,-23,-11,-12,-8,-12,-7,-9,-9,-18,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-11,-9,-18,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-9,-12,-11,-21,-11,-12,-10,-18,-11,-17,-17,-36,-17,-17,-11,-18,-9,-11,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-11,-14,-12,-22,-15,-23,-23,-21,-10,-11,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-10,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-13,-9,-16,-9,-12,-11,-23,-12,-15,-13,-24,-15,-23,-23,-46 --5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,3,5/2,3,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-10,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-26,-12,-12,-8,-12,-13/2,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-10,-9/2,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-9/2,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --5,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-7/2,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-15/2,-6,-11,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,2,2,4,3,7/2,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-26,-12,-12,-8,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-4,-9,-4,-5,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-3,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 --5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-5,-29,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,11/2,4,5,5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-26,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-16,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-11,-11,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3,2,1,1,1,1,1,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,2,2,0,0,0,1,3/2,2,2,2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-21/2,-7,-11,-11,-22 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-4,-7/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,2,2,2,2,1,1,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,3/2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,5/2,2,4,3,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-9/2,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,1,1,1,0,0,0,0,0,0,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 --2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-5,-5,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-7/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-15/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,3/2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-8,-31/2,-8,-9,-7,-12,-7,-9,-9,-17,-8,-8,-6,-10,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,4,4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-13,-6,-6,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-26,-12,-12,-8,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-17,-8,-8,-5,-9,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-5,-10,-6,-10,-11,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-6,-12,-6,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-7,-11,-11,-23 --1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-1,-5,-2,-5/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-15,-7,-15/2,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,5/2,2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-13 --1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-4,-3/2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --2,-1,-1,0,0,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-13,-6,-6,-4,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-1,-1,-1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-3,-3,-6,-5/2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-5/2,-4,-4,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,0,0,1/2,0,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,0,0,1/2,1,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,0,1,1,1,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-3/2,-1,-2,-1,-3,-3,-15,-7,-15/2,-5,-8,-4,-6,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-9/2,-4,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1/2,0,0,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-43/2,-10,-11,-7,-12,-7,-9,-9,-18,-9,-10,-7,-13,-8,-13,-12,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-8,-33,-16,-16,-10,-15,-8,-10,-9,-17,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-7,-4,-7,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-9,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,-1/2,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-9/2,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-3/2,-1,-4,-2,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12 -0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -0,1,1,1,1/2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,1,1,1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-3,-4,-4,1,1,0,0,1/2,0,0,0,1,1,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,-5,-2,-3,-2,-4,-2,-3,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-10,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13 -0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-12,-11/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-7 -0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,2,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-17,-8,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,3,2,2,2,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,3,2,2,2,2,2,2,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-19,-9,-9,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,3/2,1,1,1,1,1,1,0,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-2,-29,-14,-13,-8,-13,-7,-8,-6,-21/2,-4,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,1,1,1,4,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-18 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-18,-8,-8,-5,-8,-4,-9/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-3/2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-11/2,-6,-12 -0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,0,1,1,1,0,1/2,0,1/2,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10 --2,-1,-1,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-4,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,2,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-28,-13,-12,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-8,-8,-5,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-16,-8,-15/2,-5,-8,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-4,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-26,-12,-25/2,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-11/2,-6,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-5/2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-7/2,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-26,-12,-12,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 --8,-3,-3,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,7,4,4,3,4,2,2,2,2,1,1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-37,-18,-18,-12,-19,-10,-13,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-11,-8,-14,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-53,-26,-26,-17,-26,-14,-17,-14,-26,-13,-15,-11,-18,-10,-14,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-12,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-8,-8,-35/2,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-11,-23,-11,-12,-8,-13,-7,-9,-8,-17,-9,-11,-10,-19,-12,-18,-18,-37 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1/2,-1,0,0,-1/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,4,2,2,2,2,2,2,1,2,1,1,1/2,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-8,-18 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-1/2,-1,-1,0,-1,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,4,2,5/2,2,2,2,3/2,1,2,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-7,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-13/2,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-9,-9,-11/2,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-6,-4,-6,-11/2,-12 --3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,3,2,2,2,2,1,1,1,1,1,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-17/2,-4,-4,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-5,-11,-5,-6,-4,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,3,2,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-3,-1,-1,0,-1/2,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-20 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1/2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-21,-10,-10,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-3,-3,-5/2,-5,-3,-6,-6,-13 --2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-4,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-19,-9,-9,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-33,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-6,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-5,-4,-8,-5,-7,-7,-2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-12,-12,-25 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-3,-5,-3,-6,-6,-13 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-19,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-1,0,0,0,-1,0,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 -0,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-25,-12,-12,-8,-23/2,-6,-8,-7,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-4,-13/2,-4,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 -0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-15/2,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-23,-11,-21/2,-6,-11,-6,-7,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-19/2,-9,-19 -1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-22,-21/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-7/2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-7,-3,-4,-2,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-4,-4,-9,-9/2,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-8,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-28,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-45,-22,-22,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-9,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-38 -1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1/2,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-20 -2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,-2,-1,-3/2,-2,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,1,1,1,1,2,2,3/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,1/2,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-16 -2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-21/2,-6,-8,-6,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-3,-3,-13/2,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-30,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-4,-4,-4,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,0,1,1,1,3/2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-27 -2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 -2,2,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-25,-12,-23/2,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-21/2,-10,-22 -2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20 -3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-19/2,-5,-6,-4,-8,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-8,-6,-11,-6,-8,-8,-33/2,-9,-11,-9,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-8,-33/2,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-9,-9,-26,-12,-12,-7,-11,-6,-8,-6,-23/2,-6,-6,-4,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1/2,0,0,0,-2,-1,-3,-3,-45,-22,-22,-14,-22,-12,-14,-12,-43/2,-10,-11,-8,-13,-7,-10,-9,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,0,1,1,1,2,2,2,1,1/2,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-15,-7,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-16,-8,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 -2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-24,-12,-12,-15/2,-12,-6,-7,-6,-11,-5,-5,-4,-7,-7/2,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-8,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-12,-8,-23/2,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-3/2,-2,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-4,-11/2,-6,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-24,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1/2,0,0,1,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-10,-12,-10,-37/2,-12,-18,-18,-35,-17,-17,-11,-35/2,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-9,-4,-4,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-22,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-43,-21,-20,-13,-41/2,-11,-13,-11,-19,-9,-10,-7,-12,-7,-9,-9,-16,-7,-7,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-9,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-7,-25/2,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-12,-6,-8,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-9/2,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-28,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-3,-5/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-10,-21/2,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-19/2,-9,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-11,-6,-7,-6,-10,-6,-21/2,-10,-22,-10,-10,-6,-11,-6,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-42,-20,-20,-13,-20,-11,-13,-10,-18,-9,-19/2,-7,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-7,-4,-11/2,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-18,-9,-19/2,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-9/2,-6,-4,-8,-5,-8,-15/2,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-15/2,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-6,-11,-13/2,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-11,-11/2,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-41,-20,-20,-13,-20,-10,-12,-10,-18,-9,-9,-13/2,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-13/2,-14,-7,-7,-5,-7,-4,-6,-5,-11,-11/2,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-11,-14,-12,-23,-15,-23,-23,-46,-23,-23,-15,-23,-12,-15,-13,-25,-13,-15,-11,-20,-12,-18,-18,-36,-18,-19,-13,-21,-12,-16,-15,-29,-15,-17,-14,-25,-16,-25,-24,-49,-24,-25,-17,-26,-15,-19,-16,-30,-16,-18,-14,-24,-15,-22,-21,-42,-21,-23,-17,-28,-17,-23,-21,-41,-22,-26,-21,-39,-25,-37,-37,-71,-35,-34,-22,-34,-18,-22,-18,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-16,-11,-19,-11,-14,-12,-24,-12,-14,-11,-20,-13,-19,-18,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,4,6,5,7,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-2,-3,-4,-83,-41,-41,-27,-42,-23,-28,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-17,-15,-28,-15,-17,-14,-25,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-25,-13,-15,-12,-21,-13,-19,-18,-37,-18,-19,-14,-23,-13,-17,-15,-29,-15,-18,-15,-27,-18,-27,-27,-55,-27,-27,-18,-28,-15,-19,-15,-28,-14,-16,-12,-21,-13,-19,-18,-35,-17,-18,-12,-20,-11,-15,-13,-25,-13,-15,-11,-19,-12,-17,-17,-35,-17,-17,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-15,-14,-29,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,-24,-12,-12,-8,-12,-7,-10,-9,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-38,-19,-20,-14,-22,-12,-16,-14,-27,-14,-15,-11,-20,-13,-19,-18,-36,-18,-19,-14,-24,-15,-21,-20,-39,-21,-26,-22,-40,-27,-41,-41,-83 -1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-11/2,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-17/2,-18,-17/2,-8,-5,-9,-9/2,-6,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-3/2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-23,-11,-12,-7,-12,-6,-8,-6,-12,-6,-7,-11/2,-10,-6,-9,-9,-18,-9,-9,-13/2,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-9,-4,-5,-9/2,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-10,-6,-21/2,-11,-23,-11,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-15,-8,-17/2,-6,-12,-8,-23/2,-12,-25,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-21/2,-10,-20,-10,-11,-8,-13,-8,-21/2,-10,-20,-10,-25/2,-10,-19,-12,-37/2,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-15,-7,-8,-5,-8,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-9,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1,2,3,2,2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-17/2,-7,-13,-8,-13,-13,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-8,-4,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-20,-20,-41 -1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-9/2,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-23,-11,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-6,-7/2,-5,-4,-9,-9/2,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-7/2,-6,-3,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27 -1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-10,-11,-24,-11,-11,-7,-23/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-7,-15,-7,-8,-6,-23/2,-7,-11,-11,-25,-12,-12,-8,-23/2,-6,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-9,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-41,-20,-20,-13,-39/2,-11,-14,-11,-22,-11,-11,-8,-27/2,-8,-11,-11,-20,-10,-10,-6,-21/2,-6,-8,-7,-15,-8,-10,-8,-27/2,-8,-12,-11,-24,-11,-11,-7,-23/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-9,-6,-21/2,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-26,-13,-13,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-6,-19/2,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-5,-11,-5,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-11/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-41 -1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-11/2,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-10,-11/2,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,3/2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-13/2,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-11/2,-5,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-28,-14,-14,-9,-13,-7,-17/2,-7,-15,-7,-7,-5,-8,-5,-8,-7,-12,-6,-7,-5,-7,-4,-11/2,-5,-10,-5,-6,-4,-9,-5,-15/2,-7,-16,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,0,1,1,1,2,2,3/2,1,2,2,3/2,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-7,-4,-13/2,-6,-13,-7,-9,-7,-14,-9,-27/2,-13,-27 -1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-5/2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -2,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-25,-12,-12,-7,-11,-6,-8,-6,-25/2,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-11,-6,-8,-7,-27/2,-7,-8,-6,-12,-7,-11,-11,-25,-12,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-9,-17,-11,-17,-16,-38,-18,-18,-12,-18,-10,-12,-9,-33/2,-8,-9,-6,-10,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-5,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,11/2,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,9/2,3,3,3,4,3,3,2,0,0,0,0,0,1,1,2,5/2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-43,-21,-21,-14,-22,-12,-15,-12,-22,-11,-12,-8,-14,-8,-12,-11,-19,-9,-10,-7,-12,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-10,-8,-33/2,-8,-10,-7,-12,-7,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-27/2,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-13,-7,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,0,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,0,0,0,1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,0,0,-1/2,0,0,1,2,2,2,2,-1,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-8,-8,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-20,-41 -2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,1/2,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-22,-21/2,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-11/2,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-21 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-6,-17/2,-8,-21,-10,-19/2,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1/2,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-24,-12,-23/2,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-11/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,0,1/2,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-11/2,-15,-7,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,1/2,0,0,1,0,1,1,1,0,0,0,1,2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-17/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,1,1,0,0,1/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-30,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-4,-4,-10,-5,-6,-4,-17/2,-6,-9,-9,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-11,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27 -3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,3,3,2,3,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,5/2,2,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,3/2,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-5,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-13/2,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-11,-6,-7,-6,-11,-7,-11,-11,-23 -4,3,3,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,2,3/2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-9/2,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22 -7,4,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,0,1,1,1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,1,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-7,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-11,-6,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-8,-10,-8,-14,-9,-14,-14,-36,-17,-17,-11,-18,-10,-12,-10,-19,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-9,-16,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,3,11/2,3,2,2,2,2,3,3,4,3,3,2,3,2,1,1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-48,-23,-23,-15,-24,-13,-15,-12,-23,-12,-13,-9,-15,-9,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-8,-35/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-11,-7,-12,-7,-11,-10,-20,-11,-13,-11,-20,-14,-22,-22,-45 -4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 -4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-4,-2,-9/2,-4,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-6,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-11/2,-6,-4,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-7/2,-5,-7/2,-7,-9/2,-7,-8,-17 -4,2,2,2,7/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,1/2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,4,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,1,1/2,1,2,2,0,0,0,1,1,1,0,0,-2,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,3,4,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-12,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5/2,-1,-2,-3,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-11,-6,-7,-6,-23/2,-8,-13,-13,-27 -3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-3/2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -3,2,5/2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,2,2,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,5/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-3,-5,-5,-9,-5,-6,-4,-8,-5,-9,-9,-20 -3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,-18,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -6,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-23,-11,-10,-6,-10,-5,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-11,-9,-17,-9,-10,-7,-12,-7,-9,-8,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,-1,-7/2,-2,-2,-2,-4,-2,-4,-5,-5,-2,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-2,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-35 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-11/2,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-11/2,-9,-9,-18 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3,3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,1/2,1,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,1,1,1,1,1,1,1/2,0,0,0,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-11,-6,-13/2,-5,-10,-5,-6,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-10,-21 -3,2,3,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,7/2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,7/2,3,4,4,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,6,4,4,3,3,2,2,2,2,1,1,1,3/2,1,0,0,2,1,1,1,1,1,2,2,0,1,1,1,3/2,1,1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,2,2,3/2,1,0,0,2,2,2,1,1,1,0,0,0,1,1,1,3/2,2,2,2,0,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-28,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-2,-3,-3,-14,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -4,5/2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1,-3,-2,-3,-2,-18,-8,-8,-5,-9,-9/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19 -6,4,7/2,3,4,2,5/2,2,3,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,7/2,3,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3/2,1,2,1,1/2,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-13,-7,-8,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-8,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-14,-6,-6,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-7,-19/2,-8,-14,-9,-14,-14,-29 -6,4,4,3,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-2,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-13,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-9,-15/2,-14,-9,-14,-14,-28 -12,7,7,5,6,4,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,2,1,1,0,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,2,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-15,-7,-8,-5,-8,-4,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,0,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-9,-6,-9,-9,-50,-24,-24,-15,-23,-12,-15,-12,-23,-12,-13,-9,-15,-9,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-15,-9,-13,-13,-27,-13,-14,-9,-15,-8,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-5,-9,-9,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-12,-13,-9,-16,-10,-14,-14,-28,-15,-18,-15,-28,-18,-28,-28,-57 -6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,6,4,4,5/2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-8,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-28 -6,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,3,2,7/2,4,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,6,4,7/2,2,4,3,7/2,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,-1/2,-2,0,0,0,-2,0,0,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-9/2,-9,-6,-9,-9,-19 -6,4,4,3,5,3,4,4,4,3,3,3,4,3,4,3,5,3,3,2,5/2,2,1,1,1,1,1,1,3/2,2,2,2,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,5/2,2,4,4,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,7,4,3,2,3,2,3,3,6,4,4,3,9/2,3,3,2,3,2,3,2,3,2,2,2,3,2,1,1,1/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,0,-3,-1,-2,-1,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-7/2,-2,-4,-4,-25,-12,-11,-7,-21/2,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,0,1,1,1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-14,-6,-6,-4,-13/2,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-13,-7,-9,-8,-15,-10,-15,-15,-30 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,5/2,1,1,2,1,2,1,1,1,2,2,2,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -4,3,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,3,2,2,3/2,1,2,1,1,1,3,2,2,1,2,2,3/2,2,5,3,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,1,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,2,2,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-3/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-17,-8,-15/2,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-3/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,1/2,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21 -3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,3/2,1,1,1,1,1,3/2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,7,4,5,4,5,3,3,2,3,2,3,2,3,2,1,1,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,1,1,0,1,1,1,5,3,3,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,0,0,0,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,6,4,4,3,4,2,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-28,-13,-13,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-27/2,-7,-8,-7,-14,-9,-15,-15,-32 -3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,1/2,0,1/2,0,1/2,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-5,-2,-3,-2,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-2,-1/2,-1,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-17 -4,3,3,2,2,2,5/2,2,4,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,4,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,2,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,2,4,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-6,-3,-3,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,0,-2,0,-1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-19 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 -6,4,4,3,7/2,3,4,3,4,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,1,1,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,7/2,3,4,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,-1,-8,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-2,-2,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-17,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,3/2,2,2,2,3,2,2,1,1,1,1,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-7,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,3,3,3,2,3,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,5,3,4,3,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,-1,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-13/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3/2,0,-2,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-4,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,3,2,3/2,1,2,2,3/2,2,1,1,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,0,0,1,1,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 -8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,4,6,6,8,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,9/2,3,4,3,4,2,2,2,3,2,1,1,1,1,2,2,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-31,-15,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,-1,-7/2,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-11,-21,-13,-20,-20,-42 -4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,1,1,2,3/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,1/2,0,1/2,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 -4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,4,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,5/2,2,4,2,5/2,2,1,1,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-11,-7,-11,-11,-23 -3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,2,1,0,0,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 -4,2,2,2,5/2,2,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,7/2,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,9/2,2,2,2,4,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,3,6,4,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3/2,1,1,1,5,3,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-18,-9,-9,-6,-17/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-3,-2,-4,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-27 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 -3,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,3,4,3,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,6,3,3,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,4,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-12,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-5/2,-3,-7,-3,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,1,-1,0,1/2,0,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-11,-7,-11,-11,-22 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,3,2,2,3/2,2,2,2,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-13/2,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,3/2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-9/2,-6,-5,-10,-6,-10,-10,-20 -6,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,7/2,2,2,2,4,3,5,5,9,5,5,4,5,3,2,2,5/2,2,2,2,2,2,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,3,4,4,9,5,5,4,7,5,6,5,15/2,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,7,4,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-27,-13,-13,-9,-14,-7,-9,-8,-29/2,-7,-7,-5,-8,-4,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-22,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1/2,1,2,2,2,2,2,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,2,2,3,2,3,2,3,2,3,2,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-10,-6,-9,-8,-35/2,-10,-12,-10,-18,-12,-19,-19,-40 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,5/2,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-7/2,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1,-3,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,3,6,4,7/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,3,2,5/2,3,6,4,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,3,5,3,3,2,3,2,3,2,3,2,3,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-15/2,-6,-11,-8,-25/2,-12,-26 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,3,3,5/2,3,3,4,3,3,2,3,2,2,5/2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21 -6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9/2,4,5,5,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,3,3,4,3,3,2,3,2,3,3,2,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-23,-11,-12,-8,-25/2,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,1,3/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-9/2,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-20,-10,-10,-6,-21/2,-5,-6,-5,-8,-4,-5,-4,-13/2,-4,-5,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,2,2,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-19,-10,-12,-10,-18,-12,-18,-18,-38 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-5/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-25 -4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-15/2,-8,-23,-11,-23/2,-8,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,-1,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,2,2,3/2,2,3,2,5/2,2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-17/2,-9,-16,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-13/2,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-19/2,-9,-18,-10,-12,-10,-18,-12,-37/2,-19,-39 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,7/2,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-9,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-11,-13/2,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-39 -7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,6,6,10,7,9,9,33/2,9,10,7,10,6,7,6,10,5,5,4,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,3,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,0,0,1,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-10,-6,-9,-9,-18,-9,-11,-9,-16,-10,-16,-16,-46,-22,-22,-14,-22,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-42,-20,-20,-13,-20,-11,-13,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-8,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,4,-19,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-8,-10,-8,-16,-11,-18,-18,-34,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-28,-14,-14,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-14,-11,-20,-13,-19,-19,-38,-19,-21,-15,-24,-14,-20,-19,-39,-21,-25,-21,-38,-25,-38,-39,-79 -4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-3/2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-11/2,-7,-6,-11,-5,-5,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,1/2,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-9,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-39 -5,3,5/2,2,2,2,3/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,5/2,2,5,3,7/2,4,5,4,9/2,5,9,5,5,4,5,3,3,3,5,3,7/2,3,3,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,3,7,4,4,3,4,3,4,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-6,-15/2,-6,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-20,-10,-10,-6,-10,-5,-7,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,0,0,0,1,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-9,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1/2,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27 -5,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,5,3,2,2,5/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,1/2,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-6,-9,-9,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,1/2,1,1,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,2,2,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-17/2,-4,-5,-4,-9,-4,-4,-3,-13/2,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-8,-18,-9,-10,-6,-21/2,-6,-8,-7,-13,-7,-8,-6,-21/2,-6,-10,-9,-20,-10,-10,-7,-25/2,-7,-10,-10,-19,-10,-13,-10,-39/2,-13,-20,-20,-42 -3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,3/2,0,1,1,1,1,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-7,-11/2,-10,-7,-11,-11,-23 -4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,2,2,3,2,3/2,2,2,2,5/2,3,4,3,3,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,2,1,1/2,0,1,1,2,2,1,1,3/2,1,1,1,3/2,1,2,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-7/2,-4,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,1,1,1,3/2,2,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-12,-6,-6,-4,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-3,-6,-3,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-17/2,-7,-13,-8,-27/2,-14,-29 -3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24 -5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,2,3,2,3,3,9/2,3,4,3,5,4,5,5,5,3,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,2,5/2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-2,0,0,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-1,0,0,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,2,2,6,3,3,2,2,2,2,2,5/2,2,1,1,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-4,-5,-4,-9,-6,-9,-10,-20,-9,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-24,-12,-13,-9,-15,-9,-12,-11,-45/2,-12,-14,-12,-22,-14,-22,-22,-44 -3,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-7,-6,-11,-7,-11,-11,-23 -3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,2,2,2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-13,-8,-25/2,-12,-26 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19 -3,2,3,2,3,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,4,4,6,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-15/2,-4,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,5,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-8,-8,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-10,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-8,-16,-9,-11,-9,-33/2,-10,-16,-16,-33 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,3,2,5/2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-13/2,-7,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-4,-3,-8,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-8,-19/2,-8,-14,-9,-14,-14,-29 -2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,3,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1/2,0,1/2,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-13/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-28 -3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,17/2,4,4,3,5,3,3,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-33/2,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,11/2,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-4,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-2,-1,-2,0,0,0,0,1,2,2,3,2,2,2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-3,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-19,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-14,-15,-11,-18,-11,-15,-14,-27,-14,-17,-14,-27,-18,-27,-28,-57 -2,2,2,1,2,2,2,2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-13,-7,-8,-7,-13,-9,-14,-14,-29 -2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,5/2,2,2,2,3/2,2,3,2,3,3,3,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-12,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,0,0,0,1,1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1/2,0,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-2,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-8,-5,-9,-5,-15/2,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-30 -2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 -3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,7/2,2,3,3,2,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,5/2,2,2,3,1,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,1,2,1,1,1,2,2,2,2,-4,-2,-2,0,-1/2,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,0,-1/2,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-9/2,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,0,1,1,1,1/2,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,3,2,3,2,3,3,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-2,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-16,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-16,-11,-17,-17,-34 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-10,-10,-20 -2,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,3/2,1,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,1,1,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-5,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-12,-15/2,-12,-12,-24 -1,1,1,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,-1,0,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,0,1,1,1,1/2,0,0,1,1,1,1,0,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-11,-7,-11,-11,-20,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,7/2,2,3,2,3,3,4,4,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,2,2,3/2,1,1,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-21/2,-6,-7,-5,-10,-6,-9,-9,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-22,-11,-12,-9,-15,-8,-11,-10,-20,-11,-13,-11,-22,-15,-23,-23,-46 -1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1/2,1,1,1,1,1,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-8,-4,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-25 -1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,5/2,2,4,2,3/2,1,2,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,1,1,1,2,2,3,2,2,1,1,1,3/2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-5,-9,-5,-6,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 -0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1/2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,1/2,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,7/2,2,3,3,5,3,3,2,5/2,2,2,1,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,-6,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-12,-6,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3,-13/2,-4,-6,-6,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-17,-8,-7,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,1,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,2,2,5,3,3,2,3,2,3,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,2,1,0,0,-1/2,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,0,-1/2,0,0,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-7,-25/2,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-40 --1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1/2,0,0,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-26 --3,-1,-1,0,-1,0,1/2,0,0,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,7/2,4,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,4,2,5/2,2,4,3,3,3,5,3,2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-11,-7,-21/2,-10,-20,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-5/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-15,-7,-13/2,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3,3,-6,-2,-2,-1,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-9,-9,-9,-4,-9/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-19,-19,-39 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,4,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-11,-11/2,-6,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-8,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-11,-13,-10,-19,-25/2,-19,-19,-38 --7,-3,-2,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,4,7,4,5,5,8,5,7,7,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,8,4,4,3,5,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-10,-13,-11,-21,-14,-22,-22,-40,-20,-20,-13,-21,-11,-14,-11,-20,-10,-11,-7,-12,-7,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-9,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,0,1,1,1,1,1,2,2,3,4,7,4,3,2,3,2,2,2,3,2,3,3,5,4,5,5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-18,-9,-9,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-9,-4,-5,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-10,-18,-11,-17,-17,-34,-17,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-38,-38,-77 --3,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,3,5/2,4,3,3,3,3,2,3,3,4,3,3,2,4,3,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,3,6,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1/2,0,0,-2,-1,-1,-1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-2,-4,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-9/2,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-19,-19,-38 --3,-1,-1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-3,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,5/2,2,4,2,2,2,4,3,3,3,3,2,2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-4,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-14,-6,-13/2,-4,-7,-3,-3,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-12,-7,-9,-9,-19,-10,-25/2,-10,-18,-12,-19,-19,-39 --2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 --4,-1,-1,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,3,-5,-2,-2,-1,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,5,3,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,3,2,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-6,-25/2,-8,-13,-13,-23,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-11/2,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,7/2,2,3,3,4,3,3,2,5/2,2,3,3,7,4,4,3,7/2,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-5,-19/2,-6,-10,-10,-12,-6,-6,-4,-11/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-7,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-8,-17,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-39/2,-13,-20,-20,-41 --2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-9/2,-9,-9/2,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,4,3,3,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,5,3,7/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-17/2,-7,-14,-9,-14,-14,-29 --3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1/2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1/2,0,1/2,1,1,2,2,2,3/2,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,1,0,0,0,1,1,1,4,2,2,2,3,2,2,2,5/2,2,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,-6,-2,-1,0,0,1,1,1,3/2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,2,2,2,1,0,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,1,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-29,-14,-14,-9,-13,-7,-8,-7,-29/2,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-3,-4,-4,-8,-5,-8,-8,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,3,3,4,4,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,0,1,2,2,3,3,4,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,-1/2,0,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-8,-6,-12,-8,-12,-13,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-3,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-8,-7,-27/2,-7,-8,-6,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-12,-15,-13,-24,-16,-24,-23,-47 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,3,2,3/2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,5,3,7/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,3,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-27/2,-14,-28 --1,0,0,0,0,1/2,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-4,-2,-2,-1,-2,0,0,-1/2,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-13/2,-10,-10,-21 --3,-1,-1,0,-1,0,0,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,2,2,5/2,2,2,1,0,0,0,1,3/2,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,-4,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,3,2,3,3,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,3,-1,0,0,0,1/2,0,0,1,3,2,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-14,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-6,-6,-11,-5,-6,-5,-9,-6,-9,-8,-16,-8,-8,-6,-23/2,-6,-9,-9,-16,-9,-11,-9,-18,-12,-18,-18,-37 --1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23 --2,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1/2,1,-3,-1,-1,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,2,2,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,-1,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-21/2,-7,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,4,3,7/2,3,1,1,1/2,0,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-11/2,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-11/2,-6,-13,-6,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-14,-8,-19/2,-8,-15,-10,-16,-16,-33 --2,0,0,0,-1,0,0,1,1,1,0,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-13/2,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,2,2,2,3,5/2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-15,-15,-32 --6,-2,-2,-1,-2,0,1,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-39/2,-10,-11,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-45,-22,-22,-14,-22,-12,-14,-11,-20,-10,-11,-8,-14,-8,-12,-11,-21,-11,-12,-8,-14,-8,-11,-9,-18,-9,-11,-9,-16,-10,-15,-14,-29,-14,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-27,-13,-12,-8,-12,-6,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-6,-29/2,-7,-7,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,2,1,1,1,1,1,1,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15/2,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,11/2,3,3,2,2,2,3,3,4,3,3,3,6,4,5,5,1,1,1,1,2,1,1,1,0,1,1,2,3,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-8,-15,-10,-17,-17,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-31,-15,-16,-12,-20,-12,-17,-15,-30,-16,-20,-16,-30,-20,-30,-31,-63 --2,0,0,0,0,1/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-32 --2,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,-1,-1,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-25,-12,-23/2,-7,-12,-6,-7,-6,-11,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-11/2,-4,-9,-5,-15/2,-8,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-2,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,0,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-9/2,-2,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-9,-16,-10,-16,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-7,-9/2,-8,-4,-6,-6,-11,-6,-8,-6,-12,-15/2,-12,-12,-25 --3,-1,0,0,-1/2,0,0,1,0,0,0,0,1/2,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,-1/2,0,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-27/2,-9,-14,-14,-30,-14,-14,-9,-13,-7,-9,-7,-12,-6,-6,-4,-8,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-10,-6,-19/2,-4,-5,-4,-7,-3,-4,-2,-4,-3,-5,-5,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,2,3,2,1,1,1,1,1,1,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,2,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,1,1,1,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-11/2,-4,-6,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-9,-21,-11,-12,-8,-27/2,-8,-10,-10,-19,-10,-12,-10,-41/2,-13,-20,-20,-41 --2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-11,-5,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-5,-12,-6,-7,-9/2,-8,-9/2,-6,-6,-11,-6,-7,-6,-12,-8,-12,-12,-24 --3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24,-11,-11,-7,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,3,5,3,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-6,-12,-6,-11/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-6,-17/2,-8,-17,-8,-19/2,-6,-12,-7,-19/2,-8,-16,-8,-10,-9,-17,-11,-16,-16,-33 --2,-1/2,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-21/2,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-16,-8,-8,-6,-11,-6,-8,-8,-15,-8,-10,-8,-15,-10,-15,-15,-30 --5,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-7,-3,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-6,-6,-25/2,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-8,-14,-8,-11,-10,-41/2,-11,-13,-11,-20,-13,-21,-21,-44,-22,-22,-14,-22,-12,-14,-11,-39/2,-10,-10,-7,-12,-7,-11,-11,-21,-10,-10,-7,-12,-7,-10,-8,-33/2,-8,-10,-8,-14,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-6,-8,-8,-16,-8,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-29,-14,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-15,-7,-8,-5,-9,-5,-6,-5,-19/2,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1/2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,4,4,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,3,3,2,2,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,7/2,2,2,2,4,3,4,4,8,4,4,2,2,1,1,1,3/2,1,1,1,2,2,3,3,6,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,1,1/2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-16,-9,-11,-10,-39/2,-10,-12,-9,-17,-10,-15,-15,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-17,-31,-20,-30,-29,-59 --2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24,-12,-12,-15/2,-12,-6,-7,-11/2,-10,-5,-5,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-16,-16,-32 --2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,1,-1,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,-1,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-6,-12,-8,-27/2,-14,-28,-14,-14,-9,-14,-7,-9,-7,-12,-6,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-3,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-10,-10,-22,-11,-11,-8,-14,-8,-21/2,-10,-21,-11,-27/2,-11,-20,-13,-39/2,-19,-39 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-7,-7,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-3/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-13/2,-12,-6,-8,-8,-17,-9,-11,-9,-16,-21/2,-16,-16,-33 --2,0,0,0,-1/2,0,-1,-1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-7,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-39/2,-13,-20,-20,-42,-20,-20,-13,-41/2,-11,-14,-11,-20,-10,-10,-7,-12,-7,-10,-10,-22,-11,-11,-8,-25/2,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-8,-12,-7,-9,-8,-16,-8,-8,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-21/2,-6,-9,-8,-14,-7,-8,-7,-27/2,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-15/2,-4,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-10,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,3,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,6,5,9,5,5,4,9/2,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,7/2,2,3,2,3,2,2,2,7/2,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-15/2,-4,-6,-5,-13,-7,-8,-6,-25/2,-8,-13,-13,-27,-13,-14,-9,-27/2,-7,-9,-7,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-9,-7,-15,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-23/2,-6,-8,-7,-15,-8,-10,-8,-15,-9,-14,-14,-29,-14,-14,-10,-16,-9,-11,-10,-21,-11,-12,-10,-35/2,-11,-16,-16,-32,-16,-18,-13,-43/2,-12,-17,-15,-31,-17,-20,-16,-61/2,-20,-30,-30,-60 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-11,-6,-7,-6,-14,-7,-8,-6,-12,-7,-10,-10,-21,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-21/2,-20,-13,-20,-20,-40 --2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-6,-11,-6,-19/2,-10,-19,-10,-21/2,-8,-14,-8,-21/2,-10,-20,-11,-27/2,-11,-20,-13,-20,-21,-42,-20,-41/2,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-12,-6,-17/2,-8,-15,-8,-19/2,-8,-14,-8,-12,-12,-25,-12,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-12,-7,-19/2,-9,-18,-9,-19/2,-7,-11,-6,-8,-8,-14,-7,-17/2,-7,-14,-8,-25/2,-12,-27,-13,-25/2,-8,-12,-6,-17/2,-7,-12,-6,-6,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-7,-4,-13/2,-6,-12,-6,-13/2,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,4,11/2,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,2,2,4,2,5/2,2,3,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,3,4,3,9/2,5,9,5,4,3,3,2,3,2,2,2,3/2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,3/2,1,2,1,1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,1,1,1,1,1,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-9,-14,-7,-17/2,-7,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-15,-7,-8,-5,-8,-5,-7,-7,-13,-7,-9,-7,-12,-8,-12,-12,-26,-12,-25/2,-8,-12,-7,-9,-8,-15,-8,-17/2,-6,-11,-6,-19/2,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-21/2,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-23/2,-10,-21,-11,-25/2,-10,-18,-11,-33/2,-16,-33,-16,-17,-12,-22,-13,-35/2,-16,-31,-17,-20,-16,-31,-20,-30,-30,-60 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-17/2,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-10,-19,-10,-11,-8,-14,-8,-10,-10,-20,-11,-14,-11,-20,-13,-21,-21,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-15/2,-15,-8,-10,-8,-14,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-11,-6,-8,-15/2,-15,-15/2,-9,-7,-14,-17/2,-13,-25/2,-26,-25/2,-12,-8,-12,-6,-8,-7,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-17/2,-18,-8,-8,-11/2,-9,-9/2,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,5,5,9,5,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,2,2,2,2,2,3/2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-13/2,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-13/2,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-15/2,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-12,-10,-20,-21/2,-12,-19/2,-18,-11,-16,-16,-33,-16,-17,-12,-21,-25/2,-17,-16,-31,-17,-20,-16,-31,-20,-30,-30,-61 --5,-2,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-4,-8,-5,-9,-10,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-7,-5,-10,-7,-11,-11,-22,-11,-12,-8,-14,-8,-11,-9,-18,-10,-12,-10,-19,-12,-19,-18,-37,-18,-18,-12,-18,-10,-13,-11,-20,-10,-11,-8,-15,-9,-13,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-7,-11,-11,-22,-11,-11,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-15,-16,-12,-20,-11,-15,-14,-28,-15,-19,-15,-28,-18,-28,-29,-59,-29,-29,-19,-29,-15,-18,-15,-27,-14,-15,-11,-18,-11,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-16,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-16,-10,-14,-14,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-34,-17,-17,-12,-19,-10,-13,-11,-21,-11,-13,-10,-17,-10,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-28,-56,-28,-28,-18,-28,-15,-18,-15,-27,-13,-14,-10,-16,-10,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-11,-8,-15,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-32,-16,-16,-11,-17,-9,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-11,-7,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-29,-16,-19,-16,-29,-19,-30,-30,-60,-30,-30,-20,-31,-17,-21,-17,-32,-16,-16,-11,-19,-11,-16,-15,-30,-15,-15,-11,-18,-10,-12,-11,-21,-11,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-9,-7,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-16,-9,-13,-12,-25,-13,-16,-13,-23,-15,-24,-24,-49,-24,-25,-17,-26,-14,-17,-15,-28,-14,-16,-12,-20,-12,-17,-16,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-20,-16,-29,-19,-28,-27,-55,-27,-28,-19,-31,-17,-22,-19,-37,-19,-22,-17,-29,-18,-27,-26,-53,-27,-28,-20,-32,-19,-26,-24,-48,-26,-31,-25,-46,-31,-47,-47,-94,-47,-47,-31,-48,-26,-31,-26,-47,-24,-26,-19,-31,-18,-25,-24,-47,-23,-24,-16,-25,-14,-19,-17,-32,-17,-19,-15,-28,-17,-25,-25,-50,-25,-25,-17,-27,-15,-18,-15,-28,-14,-16,-12,-21,-12,-17,-16,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-16,-30,-20,-30,-30,-62,-30,-30,-19,-29,-16,-20,-16,-30,-15,-16,-12,-20,-12,-16,-15,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-11,-20,-13,-19,-19,-40,-20,-20,-13,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-14,-14,-28,-14,-14,-9,-15,-9,-12,-10,-20,-11,-13,-11,-20,-13,-20,-20,-41,-20,-21,-14,-22,-12,-14,-12,-22,-11,-13,-10,-17,-10,-15,-14,-29,-15,-16,-11,-19,-11,-14,-13,-25,-13,-16,-13,-23,-14,-21,-20,-41,-20,-21,-14,-23,-12,-15,-13,-25,-13,-14,-10,-18,-11,-17,-16,-32,-16,-18,-13,-21,-13,-19,-18,-35,-19,-23,-18,-33,-22,-33,-33,-67,-33,-34,-23,-35,-19,-23,-20,-37,-19,-21,-16,-27,-16,-22,-21,-41,-21,-22,-16,-26,-15,-20,-18,-35,-19,-22,-18,-33,-22,-33,-32,-65,-32,-33,-22,-35,-20,-26,-23,-43,-23,-26,-20,-35,-23,-34,-33,-67,-34,-36,-26,-42,-25,-35,-33,-64,-35,-41,-34,-62,-41,-61,-61,-123 --2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-5/2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-17/2,-14,-14,-28,-14,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-15/2,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-23/2,-24,-13,-15,-12,-22,-15,-23,-23,-46,-23,-23,-15,-24,-13,-15,-12,-23,-23/2,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-7,-5,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-15/2,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-17/2,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-19/2,-18,-9,-10,-7,-13,-7,-10,-10,-20,-10,-10,-7,-13,-7,-10,-17/2,-17,-9,-10,-17/2,-16,-21/2,-16,-16,-32,-16,-16,-11,-17,-10,-13,-11,-21,-11,-12,-9,-17,-11,-16,-16,-33,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-13/2,-4,-9,-5,-15/2,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-9,-7,-13,-8,-27/2,-14,-28,-14,-27/2,-9,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-14,-9,-29/2,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-15,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-4,-11/2,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-8,-15,-8,-19/2,-8,-14,-9,-13,-13,-27,-13,-27/2,-10,-15,-8,-21/2,-9,-18,-9,-11,-8,-15,-9,-27/2,-13,-26,-13,-27/2,-10,-16,-9,-25/2,-12,-24,-13,-15,-12,-22,-14,-22,-22,-46,-22,-45/2,-15,-24,-13,-31/2,-12,-23,-12,-25/2,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-25/2,-12,-25,-12,-12,-8,-12,-6,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-29/2,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-11,-5,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-21/2,-8,-16,-10,-16,-16,-33,-16,-33/2,-11,-18,-10,-23/2,-10,-17,-9,-10,-7,-12,-7,-21/2,-10,-21,-10,-10,-7,-13,-7,-19/2,-8,-17,-9,-21/2,-9,-17,-11,-16,-16,-32,-16,-16,-11,-18,-10,-13,-11,-21,-11,-12,-9,-17,-11,-33/2,-16,-34,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --1,0,0,0,0,1,1,1,0,0,0,1/2,0,1/2,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20,-19/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-3,-6,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-3,-5,-4,-10,-9/2,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-6,-8,-15/2,-15,-8,-9,-8,-14,-9,-14,-14,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-10,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-5,-10,-6,-10,-10,-22,-21/2,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-13/2,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-12,-6,-8,-7,-13,-13/2,-7,-6,-11,-7,-10,-10,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 --2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-10,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-15/2,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-27/2,-9,-14,-14,-29,-14,-14,-9,-27/2,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-13/2,-3,-4,-3,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-27,-13,-14,-9,-27/2,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-5,-8,-8,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-31/2,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-15,-7,-7,-5,-17/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-9,-8,-15,-8,-9,-7,-27/2,-9,-14,-14,-28,-14,-15,-10,-16,-9,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-22,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-29/2,-8,-12,-11,-22,-11,-11,-7,-12,-7,-9,-8,-15,-7,-8,-6,-25/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-6,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-15,-8,-10,-8,-29/2,-10,-15,-15,-33,-16,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-17/2,-4,-6,-5,-11,-5,-6,-4,-13/2,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-4,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-5,-19/2,-6,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-15,-15,-33,-16,-16,-11,-35/2,-10,-12,-10,-17,-8,-9,-7,-25/2,-8,-11,-10,-21,-10,-11,-8,-25/2,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-31,-15,-16,-11,-35/2,-10,-13,-11,-19,-10,-11,-9,-17,-11,-16,-15,-34,-17,-18,-13,-22,-13,-18,-16,-31,-17,-20,-16,-30,-20,-30,-30,-61 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-6,-9,-5,-6,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-34 --2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-5,-13/2,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-7,-4,-5,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-11/2,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-17/2,-8,-15,-8,-9,-7,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-23,-11,-12,-8,-14,-8,-12,-11,-21,-11,-27/2,-11,-21,-13,-20,-20,-41 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-5,-9,-9/2,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-19/2,-12,-9,-17,-11,-17,-17,-35 --5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,-1,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-5,-19/2,-5,-6,-4,-7,-4,-5,-5,-12,-6,-7,-5,-8,-4,-6,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-29,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-6,-25/2,-6,-8,-6,-12,-8,-13,-13,-25,-12,-12,-8,-12,-6,-7,-6,-23/2,-6,-7,-5,-9,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-33/2,-8,-9,-6,-11,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-8,-17,-8,-8,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-27/2,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-35/2,-9,-10,-8,-14,-8,-12,-12,-28,-14,-14,-9,-15,-9,-12,-11,-22,-12,-14,-12,-23,-15,-22,-22,-46,-22,-22,-15,-23,-12,-15,-12,-22,-11,-11,-8,-13,-8,-11,-10,-24,-11,-11,-7,-12,-7,-9,-8,-15,-8,-9,-7,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-10,-6,-9,-9,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-16,-34,-16,-15,-9,-14,-7,-9,-7,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-18,-9,-9,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-23/2,-6,-6,-5,-9,-6,-9,-9,-23,-11,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-15,-15,-33,-16,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-35/2,-10,-12,-10,-18,-11,-17,-17,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-9,-16,-10,-15,-15,-34,-17,-18,-13,-22,-13,-18,-17,-33,-18,-21,-17,-31,-21,-32,-32,-64 --2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-7/2,-7,-4,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-16,-10,-16,-16,-33 --2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-8,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-7,-7,-5,-7,-4,-5,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-8,-4,-5,-5,-13,-6,-13/2,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-16,-8,-17/2,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-18,-9,-9,-7,-12,-7,-9,-9,-18,-9,-11,-9,-17,-11,-17,-17,-35 --1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-6,-3,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-13/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-4,-6,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26 --3,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-19,-9,-9,-6,-19/2,-5,-6,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-21/2,-6,-10,-10,-19,-9,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-13,-6,-7,-5,-9,-5,-7,-7,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-12,-6,-6,-4,-11/2,-3,-5,-4,-9,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-7,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-10,-6,-21/2,-5,-6,-5,-11,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-25/2,-7,-10,-10,-21,-11,-13,-11,-21,-14,-21,-21,-43 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-5,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-26 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-5/2,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-5/2,-2,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-7,-3,-7/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-25/2,-13,-26,-12,-25/2,-8,-12,-6,-8,-7,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-12,-6,-6,-4,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-9,-17,-11,-35/2,-17,-35 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-9/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-23/2,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --6,-3,-3,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-3,-6,-6,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-7,-13,-6,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-27,-13,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11,-5,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-8,-17,-9,-12,-10,-18,-11,-17,-17,-29,-14,-14,-9,-14,-7,-9,-7,-12,-6,-7,-5,-10,-6,-8,-7,-29/2,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-30,-14,-14,-9,-15,-8,-11,-9,-17,-9,-10,-8,-14,-9,-13,-12,-51/2,-13,-14,-10,-17,-10,-13,-12,-24,-13,-15,-13,-24,-16,-24,-24,-47,-23,-23,-15,-22,-12,-15,-13,-24,-12,-13,-9,-14,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-9,-8,-17,-9,-10,-7,-13,-8,-12,-12,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-10,-15,-8,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-23/2,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-7,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-29/2,-7,-8,-5,-8,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-9,-16,-10,-16,-15,-32,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-7,-13,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-29,-14,-15,-10,-16,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-59/2,-14,-15,-11,-18,-11,-15,-14,-28,-16,-20,-17,-31,-20,-31,-31,-64 --2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-8,-4,-4,-7/2,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,-32 --2,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,0,1,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,3,2,2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,1,1,1,-2,0,-1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-3,-1,-3/2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-23,-11,-23/2,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-11,-5,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-5,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-3/2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-11,-7,-11,-11,-23 --3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-9,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-5/2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-7/2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-19/2,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-5,-6,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-13,-7,-8,-7,-27/2,-9,-14,-14,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-9,-5,-7,-6,-11,-7,-11,-11,-18,-9,-9,-6,-19/2,-5,-7,-6,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-36 --1,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,0,0,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-17/2,-7,-13,-8,-25/2,-13,-27 --1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --2,-1,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,1,1,2,2,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-4,-5,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-20,-9,-9,-6,-10,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-11,-17,-17,-28,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-15/2,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-25/2,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-31/2,-8,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-14,-11,-21,-14,-22,-22,-45 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-4,-8,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-24 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,-2,0,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-7/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 --2,0,0,0,1/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1/2,0,0,0,1,1,2,2,3/2,1,0,0,-6,-2,-2,-2,-7/2,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-17,-8,-8,-5,-9,-4,-5,-4,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-12,-8,-23/2,-6,-7,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-4,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-12,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-13/2,-4,-5,-5,-13,-6,-7,-5,-17/2,-4,-6,-5,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-9,-9,-19,-9,-10,-7,-13,-7,-9,-8,-17,-9,-12,-10,-35/2,-11,-17,-17,-36 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-13,-8,-25/2,-13,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-11,-7,-10,-10,-21,-10,-9,-6,-10,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-19/2,-6,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-17/2,-8,-17,-9,-21/2,-8,-16,-10,-33/2,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-5,-3,-5,-9/2,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-9/2,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-16,-17/2,-10,-8,-16,-10,-16,-16,-33 --2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-37/2,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-8,-4,-4,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-13,-8,-12,-12,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-12,-7,-11,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-10,-16,-16,-34,-17,-17,-11,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-7,-8,-6,-12,-7,-10,-9,-37/2,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-24,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-25,-25,-42,-20,-20,-13,-19,-10,-13,-10,-19,-9,-10,-7,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-6,-8,-7,-15,-7,-7,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-25,-12,-13,-9,-15,-9,-13,-12,-24,-12,-14,-11,-20,-13,-20,-20,-42,-21,-21,-14,-21,-11,-14,-11,-20,-10,-11,-9,-16,-10,-14,-13,-25,-12,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-11,-17,-18,-37,-19,-20,-14,-22,-12,-16,-14,-26,-13,-15,-12,-22,-14,-20,-19,-38,-19,-20,-15,-25,-15,-20,-18,-34,-18,-22,-18,-33,-22,-33,-33,-66 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-4,-3,-6,-4,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-13/2,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 --1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-6,-2,-5/2,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-4,-3,-6,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-8,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-11/2,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-8,-15/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-15/2,-6,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-19/2,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-11/2,-11,-7,-10,-10,-22 -0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-11/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,1/2,0,0,0,3,2,2,2,3/2,2,2,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-11,-6,-7,-6,-21/2,-7,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-23/2,-7,-10,-9,-18,-10,-12,-10,-35/2,-11,-17,-17,-34 -1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-2,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,1/2,0,1,1,1/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,1/2,1,0,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 -1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-3/2,-1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-13/2,-10,-10,-21 -1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,1,1,1,2,2,2,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,4,3,3,2,3,2,2,1,1/2,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-13,-6,-6,-4,-6,-3,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-14,-7,-8,-7,-27/2,-7,-8,-6,-10,-5,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-25/2,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-15,-7,-8,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-9,-9,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-8,-13,-8,-12,-11,-43/2,-12,-14,-11,-21,-13,-20,-20,-40 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-11,-6,-7,-11/2,-11,-7,-10,-10,-21 -2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-1,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1/2,0,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-4,-4,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-4,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-11,-23 -2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-8,-17 -2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,3/2,1,0,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-3,-4,-4,-15/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-15/2,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-8,-9,-8,-15,-9,-14,-14,-29 -2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-5,-4,-9,-5,-8,-8,-18 -3,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-1,0,0,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1/2,0,1,1,0,0,-1,0,1/2,0,2,2,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-9/2,-4,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-6,-13,-8,-12,-12,-25 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 -4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-4,-7,-7,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-12,-8,-12,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-12,-12,-33,-16,-15,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-27/2,-6,-7,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-7,-13,-7,-9,-7,-13,-8,-11,-11,-23,-12,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23 -3,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-17,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-19,-9,-9,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-9,-4,-5,-3,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-7,-8,-6,-12,-8,-13,-13,-26 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15 -3,2,2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,3,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-19/2,-9,-19 -3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-3/2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-5,-3,-7,-4,-5,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-17 -5,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-4,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,7/2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-10,-5,-7,-6,-21/2,-5,-5,-4,-7,-4,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-15/2,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-11,-17,-17,-34 -4,5/2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-7/2,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18 -5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-11,-22 -5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-13,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-11/2,-9,-9,-18 -8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-3,-2,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,0,-1/2,0,0,0,-1,0,1,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,7/2,2,3,3,4,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,1,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-8,-8,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-8,-4,-5,-4,-17/2,-6,-9,-9,-25,-12,-12,-7,-19/2,-5,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-17/2,-5,-8,-8,-14,-7,-7,-4,-15/2,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-23/2,-6,-9,-8,-19,-10,-12,-9,-33/2,-10,-16,-16,-33 -6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-11/2,-16,-8,-8,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 -8,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,3,4,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-17/2,-8,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,4,2,2,2,2,2,5/2,3,5,3,3,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-25,-12,-23/2,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-11/2,-4,-7,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-11,-6,-17/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-16,-32 -8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-5/2,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-24,-23/2,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-9,-10,-8,-15,-10,-15,-15,-31 -15,8,8,5,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-17,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-11,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,1,1,1,2,2,4,3,3,3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-37,-18,-19,-13,-20,-11,-13,-11,-22,-11,-13,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-9,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-31/2,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-15,-7,-8,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-49,-24,-23,-15,-23,-13,-16,-13,-24,-12,-13,-10,-17,-10,-13,-12,-24,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-30,-15,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-11,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-16,-9,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-10,-9,-19,-10,-11,-9,-17,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-15,-30,-15,-17,-12,-20,-12,-16,-15,-31,-17,-20,-17,-32,-21,-31,-31,-62 -8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-8,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-17/2,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-9,-9,-24,-23/2,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -7,4,9/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-8,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,-1,-2,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,5/2,2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-10,-5,-5,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-5,-9,-5,-6,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,2,2,7/2,2,3,3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-14,-7,-7,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-26,-13,-13,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-7,-16,-8,-10,-8,-29/2,-10,-15,-15,-30 -4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1/2,0,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-11/2,-6,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-21 -4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,0,1,1,1,2,2,2,2,5/2,2,2,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-7,-5,-8,-8,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,3/2,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,-5,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-4,-4,-4,-8,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-27,-13,-13,-9,-14,-7,-8,-6,-25/2,-6,-6,-4,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-15,-10,-16,-16,-33 -4,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -3,2,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,1,1,1/2,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,1,2,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19 -2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,1,2,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 -3,2,2,2,5/2,2,2,2,4,2,2,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,-1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-2,-11/2,-3,-5,-5,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,1,1/2,1,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,2,2,2,2,1,1,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,1,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7/2,3,4,4,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,1,3/2,2,2,2,2,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-3,-3,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-21/2,-7,-11,-11,-24 -2,1,1,1,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-15 -2,1,1,1,2,2,3/2,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,-2,0,0,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-2,-3,-2,-4,-2,-4,-5,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,3/2,2,2,2,2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-6,-6,-15,-7,-15/2,-4,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-19/2,-10,-21 -2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,2,3,5/2,4,3,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,1/2,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-13/2,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20 -3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,1,1/2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5/2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-23/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-13,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-8,-5,-9,-5,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-40 -2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1/2,-1,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-2,-1,-2,-1,-3,-3/2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-20 -2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,1,1,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,7/2,3,4,3,4,4,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-13/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,1,1,0,0,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-10,-6,-19/2,-10,-20 -2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,0,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,9/2,4,5,5,0,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-16,-7,-7,-4,-6,-3,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-2,-3,-2,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-21 -2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,-1/2,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-3,-5,-5,-12 -2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,1,1,2,2,2,2,2,1,2,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,4,3,4,4,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 -1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,2,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,3,2,2,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,2,3,7,4,3,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,3,5,3,4,3,5,3,3,3,7,4,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,2,2,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-5,-10,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-6,-11,-7,-12,-12,-26 -1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,1/2,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-14 -1,1,1,1,2,2,3/2,2,0,0,1/2,1,2,2,2,2,0,1,1,1,0,1,3/2,2,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,2,1,1,1,0,1,3/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,3,2,5/2,2,5,3,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,9/2,4,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-5,-8,-8,-17 -1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,0,1,1,1,0,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-7/2,-6,-6,-13 -0,0,0,0,1/2,1,2,2,0,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1/2,0,0,0,-3,-1,-1,0,-1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,2,3/2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,2,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,4,3,7/2,3,4,4,7,4,4,3,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,3,3,2,4,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,-1,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-3/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,0,1,1,1,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,6,4,9/2,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,5,5,7,4,9/2,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-1,0,1/2,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-5,-13,-6,-13/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-11,-23 --2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,0,1,0,1,1,2,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,4,7,4,4,7/2,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,7/2,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-1,0,0,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-11/2,-10,-6,-10,-11,-23 --5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,1,1,2,2,2,1,1,1,2,2,5/2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,3,3,4,4,6,3,3,3,4,3,4,5,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,4,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,1,2,2,2,2,4,3,4,4,7,4,5,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,4,5,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,4,4,7,5,6,5,8,5,7,7,27/2,7,7,5,8,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,3,5,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-11,-6,-8,-7,-15,-8,-10,-9,-17,-11,-18,-18,-29,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-14,-14,-59/2,-14,-15,-10,-16,-9,-12,-10,-20,-10,-12,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-47 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,5/2,3,5/2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,5,3,4,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,3/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,1,1,1,0,1,3/2,2,2,1,1/2,0,2,2,3/2,1,1,1,3/2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,2,2,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,7,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,7/2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,4,6,4,5,5,7,4,9/2,4,5,3,7/2,3,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-16 --3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,0,0,0,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,3/2,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,7/2,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,4,4,11/2,4,6,6,6,4,4,3,7/2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,5,4,13/2,4,6,6,8,5,5,3,4,3,3,3,4,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-5,-4,-6,-3,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-25 --1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,2,3/2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,3,0,0,0,1,1,1,1/2,0,2,1,1,1,2,2,3/2,2,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,2,2,0,0,0,1,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16 --3,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,4,3,3,2,3,2,2,2,3/2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,2,5/2,1,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,15/2,4,5,4,6,4,6,7,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13/2,4,4,4,7,5,8,8,11,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,5,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-20,-9,-9,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-3,-14,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-31 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,5,5,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 --2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,4,9/2,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,1,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-8,-18 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,3/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 --2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,2,7/2,2,2,2,4,2,2,2,3/2,2,2,1,3,2,2,1,1/2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,0,0,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,5,3,3,2,7/2,2,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,7/2,3,4,4,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,5,5,6,4,4,3,9/2,3,3,3,5,3,4,3,4,3,4,4,4,2,2,2,7/2,2,3,3,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,5/2,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,2,2,2,3/2,1,1,1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-17/2,-4,-6,-6,-12,-6,-8,-6,-25/2,-8,-13,-13,-26 --1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,3/2,2,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,3,2,3,5/2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1/2,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-16 --2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,1,1,1,1,1,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,2,1,1/2,1,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,1,1,3/2,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,3,3,9/2,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,7/2,3,4,2,2,2,4,2,2,2,3,2,7/2,4,8,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,7/2,3,3,2,7/2,4,4,3,3,3,4,3,4,4,7,4,9/2,4,7,5,7,7,11,6,6,4,5,3,7/2,3,5,3,7/2,2,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-2,-6,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1/2,0,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-9/2,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-12,-7,-11,-11,-23 --4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,3/2,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,4,4,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,11/2,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,3,3,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9/2,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,5/2,2,2,3,5,3,4,4,8,5,5,4,7,5,8,8,6,4,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,16,9,9,6,8,5,7,6,10,6,7,5,8,5,6,5,17/2,4,4,3,5,4,5,5,9,6,7,6,10,7,9,9,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,17/2,5,6,4,6,4,5,5,10,6,7,6,10,7,10,11,19,10,10,7,9,5,5,4,7,4,5,4,5,3,4,4,15/2,4,4,3,4,3,4,3,5,3,3,2,3,2,2,1,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,7/2,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-14,-9,-14,-14,-28,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-6,-21,-10,-10,-6,-10,-5,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-14,-9,-14,-13,-25,-12,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-45/2,-11,-12,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-22,-22,-46 --1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1/2,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,3/2,1,2,1,1/2,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,10,5,5,4,6,3,3,3,5,3,7/2,2,4,3,3,3,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-25 -0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,5/2,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18 -0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,2,3,3,3,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,-1,0,-1,0,-1,0,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,2,2,4,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,0,0,0,1,3/2,2,2,1,2,2,2,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,4,3,9/2,4,5,5,5,3,3,3,9/2,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,8,5,6,4,13/2,4,6,6,12,7,7,5,6,4,5,4,6,4,4,4,11/2,4,5,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,5,7,7,11,6,6,4,11/2,3,3,2,5,3,3,3,9/2,3,3,3,6,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-21,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-14,-6,-6,-4,-11/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-9,-8,-15,-10,-15,-15,-30 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-18 -0,0,1/2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,2,1,1,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,3,2,5/2,3,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,5,3,4,3,4,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,4,3,5,4,11/2,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,5,3,7/2,3,4,3,7/2,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,4,7,5,6,6,8,5,5,4,5,3,3,2,4,2,5/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24 -1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,2,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,5,3,3,3,4,5/2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -1,1,1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,2,2,1,1,1,1,0,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,9/2,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,9/2,3,4,3,4,3,3,3,7,4,4,3,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,1,3,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,1,2,2,2,2,3,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,5,7,7,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,10,7,9,9,17,9,10,7,11,6,7,6,11,6,7,6,9,6,7,6,9,5,5,4,5,4,5,5,9,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,4,2,2,1,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-32,-15,-15,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20,-10,-11,-7,-12,-6,-8,-6,-25/2,-6,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-43/2,-12,-14,-11,-21,-14,-21,-21,-42 -1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,11/2,10,11/2,6,4,6,4,4,4,6,4,4,7/2,5,7/2,4,4,6,3,3,5/2,4,3,3,3,6,4,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,9/2,5,4,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,3,5/2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,2,2,3/2,1,1,1,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,3/2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,3,2,5/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,5,3,7/2,3,3,2,7/2,4,5,3,7/2,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,13/2,6,11,6,13/2,4,7,4,5,4,7,4,9/2,4,6,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,13/2,6,11,6,13/2,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,7,4,11/2,5,7,4,11/2,5,8,6,15/2,7,9,5,5,4,5,3,7/2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3/2,2,1,1,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-22,-10,-21/2,-6,-10,-5,-6,-5,-11,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-27/2,-14,-28 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,6,11/2,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,11/2,9,5,6,4,6,4,4,4,6,4,4,7/2,5,4,5,9/2,8,9/2,5,4,6,7/2,4,4,6,4,4,4,6,9/2,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,2,2,2,2,0,0,0,1,3/2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,6,3,3,2,5/2,2,2,1,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-13/2,-4,-6,-6,10,6,6,4,11/2,4,4,3,5,3,3,2,7/2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,5,3,4,3,9/2,3,4,4,6,4,4,3,9/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,4,6,6,12,7,7,5,13/2,4,6,6,11,6,6,5,17/2,6,9,9,16,9,9,6,8,5,6,5,10,6,6,5,15/2,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,13,7,7,6,9,6,7,6,10,6,6,6,19/2,7,10,10,13,7,7,5,7,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,7/2,3,4,3,3,2,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-12,-11,-33,-16,-16,-10,-33/2,-9,-11,-9,-17,-8,-9,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-19,-9,-9,-6,-17/2,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-8,-27/2,-8,-11,-10,-19,-10,-13,-11,-20,-13,-20,-20,-41 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,3/2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,7/2,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-22,-10,-10,-6,-11,-6,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1/2,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,10,6,11/2,4,6,4,4,3,5,3,7/2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,5/2,2,3,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,9,5,5,4,6,4,5,5,7,4,9/2,4,6,4,13/2,6,11,6,7,5,6,4,5,5,9,6,13/2,5,8,6,17/2,8,16,8,17/2,6,9,6,13/2,6,9,5,11/2,4,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,10,7,19/2,9,16,9,9,7,10,6,13/2,6,10,6,13/2,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,13/2,6,10,7,21/2,10,13,7,15/2,5,7,4,5,4,7,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-23/2,-11,-33,-16,-16,-10,-17,-9,-21/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-9,-5,-7,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-3,-4,-3,-8,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-6,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,11,6,6,4,6,4,4,3,5,3,4,5/2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,11/2,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,11/2,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,9/2,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,9,13/2,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,8,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-33,-16,-16,-10,-17,-9,-10,-9,-17,-17/2,-10,-7,-12,-7,-10,-9,-19,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-7/2,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-9/2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-13,-13/2,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 --1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,1,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,11/2,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,3,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,3,4,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,10,8,13,8,11,11,20,12,14,12,20,14,20,20,26,13,13,9,12,7,7,6,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-8,-9,-6,-11,-7,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-68,-33,-33,-22,-34,-19,-23,-19,-34,-17,-19,-14,-24,-15,-21,-20,-39,-19,-20,-14,-22,-12,-16,-14,-26,-14,-16,-13,-23,-14,-21,-21,-42,-20,-20,-13,-21,-11,-13,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-14,-9,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-11,-9,-18,-9,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-11,-17,-17,-34,-16,-16,-11,-17,-9,-11,-10,-19,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-12,-14,-11,-19,-12,-17,-17,-34,-17,-18,-12,-20,-12,-16,-15,-29,-16,-19,-16,-29,-19,-28,-28,-58,-29,-29,-19,-29,-16,-20,-17,-32,-16,-18,-13,-23,-14,-19,-18,-35,-18,-19,-13,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-27,-27,-54,-27,-28,-19,-30,-17,-22,-19,-35,-18,-20,-15,-26,-16,-24,-23,-46,-23,-24,-17,-28,-17,-23,-21,-41,-22,-26,-22,-40,-26,-40,-40,-80 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,11,6,6,9/2,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,5/2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,7,9/2,6,6,10,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-9/2,-10,-5,-7,-6,-11,-7,-11,-11,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-6,-8,-13/2,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-15/2,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-8,-15,-15/2,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-10,-11/2,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-9,-17,-17/2,-10,-7,-12,-8,-12,-11,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-39 -0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,9/2,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,9/2,4,8,4,9/2,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,1,1,1,1/2,0,0,0,1/2,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,4,4,6,4,5,5,9,5,11/2,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,11/2,6,10,6,7,6,10,7,21/2,10,14,8,8,5,7,4,9/2,4,5,3,3,2,4,2,5/2,2,4,2,2,2,3,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-10,-5,-7,-6,-12,-7,-11,-11,-33,-16,-16,-10,-16,-8,-21/2,-9,-16,-8,-9,-6,-11,-6,-19/2,-9,-20,-10,-10,-6,-10,-6,-15/2,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-6,-9,-5,-6,-6,-12,-6,-13/2,-5,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-14,-8,-19/2,-8,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-15/2,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-21/2,-9,-16,-8,-19/2,-7,-12,-8,-23/2,-11,-22,-11,-23/2,-8,-14,-8,-11,-10,-21,-11,-13,-11,-20,-13,-19,-19,-39 -0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,7/2,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,8,9/2,5,4,5,3,4,3,4,3,3,2,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,9/2,5,4,7,5,7,7,10,6,6,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-6,-3,-4,-7/2,-8,-9/2,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-14,-7,-9,-7,-13,-8,-13,-13,-26 -0,1,1,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,7/2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3/2,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,3,2,2,2,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,13/2,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,11/2,4,6,5,8,5,5,4,13/2,4,6,6,11,6,7,6,19/2,7,10,10,15,8,8,6,8,5,5,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-5,-7,-6,-23/2,-8,-12,-12,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-23/2,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-22,-10,-10,-6,-19/2,-5,-6,-5,-9,-4,-5,-3,-11/2,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-15,-8,-10,-8,-29/2,-9,-14,-14,-30,-15,-15,-10,-15,-8,-9,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-15,-8,-9,-7,-27/2,-8,-12,-12,-29,-14,-14,-10,-31/2,-8,-10,-9,-16,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-27/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-13,-20,-20,-40 -0,1,1,1,0,1,1,1,0,0,0,1/2,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,6,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1/2,0,0,1,1,1,-1,0,1,1,0,0,1/2,1,0,0,1/2,0,1,1,3/2,1,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,7,4,4,3,5,3,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,3,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,9/2,5,8,4,9/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,4,4,6,4,4,4,7,4,9/2,4,7,5,7,7,10,5,5,4,6,4,4,3,3,2,3,2,3,2,3/2,1,4,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-9/2,-4,-7,-4,-15/2,-8,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-8,-4,-6,-5,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-14,-6,-6,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-13,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-19/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-20,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-11/2,-4,-9,-5,-15/2,-7,-15,-7,-15/2,-6,-9,-5,-15/2,-6,-14,-7,-9,-7,-14,-9,-27/2,-13,-27 -0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,0,0,0,1,1,1,-1,0,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,3,2,3,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-6,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-5,-8,-8,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-4,-6,-5,-12,-6,-7,-6,-11,-7,-10,-10,-22 --1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,9,5,5,4,5,3,4,4,13/2,4,4,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,9/2,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,7,7,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,6,6,8,5,5,5,8,5,6,6,21/2,6,8,7,12,8,11,11,15,8,8,5,7,4,4,4,11/2,3,3,2,3,2,2,2,6,3,3,2,2,2,2,1,1/2,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-16,-16,-10,-16,-8,-10,-8,-31/2,-8,-9,-7,-12,-7,-9,-8,-20,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-3,-4,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-11,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-18,-9,-9,-6,-9,-5,-8,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-18,-9,-10,-7,-11,-6,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-12,-24,-12,-12,-9,-15,-9,-12,-11,-22,-12,-14,-11,-21,-13,-20,-20,-40 -0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,1,0,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-11/2,-10,-6,-10,-10,-21 -0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,6,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,1,1,1,1,1,1,1,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,-1,0,0,1,0,0,0,1,2,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,7/2,4,7,4,5,4,8,5,7,7,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-19,-9,-9,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-13/2,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-23 -0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,5/2,5,3,4,7/2,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -0,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,1,1,1,1,2,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-3,8,5,5,4,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,2,2,2,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,2,2,2,0,0,0,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,4,4,11/2,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,8,5,6,5,9,6,8,8,12,7,7,5,7,4,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,-2,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-5,-3,-6,-6,-24,-12,-12,-7,-21/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-3,-9,-4,-5,-4,-17/2,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-7,-14,-9,-13,-13,-28 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-3/2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,4,5/2,2,2,3,2,2,2,5,3,4,7/2,6,4,5,5,8,9/2,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-3/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-4,-8,-5,-8,-8,-17 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,9/2,3,5,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,5/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,3,4,3,7/2,3,5,4,5,5,7,4,9/2,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,3,3,6,4,9/2,4,7,5,13/2,6,10,6,11/2,4,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,-1,0,0,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-1,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-17,-8,-17/2,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-14,-7,-15/2,-6,-10,-6,-15/2,-7,-13,-7,-8,-6,-12,-8,-23/2,-12,-24 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,5,3,4,3,5,3,3,2,3,5/2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1/2,0,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,10,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,0,0,0,0,-1,0,0,0,0,1,2,2,4,3,4,4,15/2,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,8,4,4,3,5,3,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-6,12,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,10,5,5,4,6,4,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,5,6,5,8,5,7,7,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,11/2,3,3,2,3,2,3,3,5,3,4,4,6,5,7,8,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,11,18,10,10,7,9,5,6,5,8,4,4,3,4,3,3,2,7/2,2,2,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-39,-19,-19,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-32,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-11,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-15,-23,-23,-47 -0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,1,0,1,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-2,-1,-2,-2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,5/2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5/2,4,3,4,3,4,3,4,4,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24 -0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,3,2,2,2,4,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,1,1,3/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-5/2,-2,7,4,7/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,1,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,3,4,3,7/2,3,4,3,9/2,4,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,3,3,6,4,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,11/2,4,6,4,4,3,5,3,5/2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,0,0,0,0,0,0,1/2,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-23/2,-12,-25 -0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,3/2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-4,-5,-7/2,-7,-5,-8,-8,-17 --1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,-1,1,1,2,2,3/2,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,7,4,4,3,4,3,3,2,4,2,2,2,7/2,2,3,3,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,2,2,0,1,1,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,4,3,3,3,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,9/2,3,4,5,7,4,4,3,4,3,4,4,6,4,4,3,7/2,2,3,3,8,5,5,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,11,6,6,4,11/2,4,4,3,6,3,3,2,7/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-1,0,0,0,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-20,-10,-10,-6,-21/2,-6,-7,-5,-9,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-13,-13,-27 -0,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1/2,1,3,2,2,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,-1,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,3,3,3,2,2,2,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,4,3,4,4,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,8,4,9/2,3,4,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-13,-6,-11/2,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-20 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1/2,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,5/2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,11/2,7,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 -0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,2,2,9/2,3,3,2,3,3,4,4,2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,6,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,8,4,4,3,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3/2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,19/2,6,6,6,10,7,10,9,12,7,7,5,6,4,4,3,9/2,2,2,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34 -0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-11/2,-9,-9,-18 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,3,2,2,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,4,3,7/2,4,1,1,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,8,4,9/2,3,4,3,3,3,3,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-3,-7,-3,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15 -0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,5/2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,4,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,5/2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,3,5,4,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,13/2,4,5,5,7,4,4,4,11/2,4,4,4,5,3,3,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,8,6,8,9,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-17,-8,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-27 -1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,5/2,4,3,4,7/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,4,5,4,9/2,4,5,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,1,1,3/2,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-4,-3,-7,-4,-13/2,-6,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-11/2,-6,-11,-6,-8,-6,-12,-8,-25/2,-12,-26 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,5/2,3,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,5,7/2,4,4,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,9/2,6,4,4,7/2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-25 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,0,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,9/2,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,-1,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,9/2,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,6,4,4,4,7,5,7,7,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,15/2,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,5,9,6,8,8,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,29/2,8,8,6,10,6,7,6,10,6,7,5,8,6,8,8,14,8,9,7,11,7,9,9,17,10,11,9,16,11,16,17,25,13,13,9,13,7,8,7,11,6,5,4,5,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-12,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-31,-15,-16,-11,-17,-9,-11,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-25,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-11,-11,-7,-12,-7,-9,-8,-17,-9,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-10,-14,-13,-27,-14,-17,-14,-26,-17,-25,-25,-50 -1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,1,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,7/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-13/2,-12,-6,-6,-3,-5,-5/2,-3,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-7/2,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-13/2,-8,-7,-13,-8,-12,-12,-25 -1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,1,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,7/2,4,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,4,3,7/2,2,4,2,5/2,2,5,3,7/2,3,5,4,5,5,1,1,1/2,0,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,4,7/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-12,-12,-25 -1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,1,1,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,5/2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1,1,2,2,2,2,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,2,2,2,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,0,0,1,1,1,0,-1,0,-1,-1,3,2,1,1,1,1,2,2,4,2,2,2,5/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,0,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,1,1,1,2,2,4,3,3,2,7/2,3,4,3,2,2,2,2,5/2,2,2,1,2,2,2,2,5/2,2,2,3,4,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,5,3,3,3,9/2,4,5,5,0,1,1,1,1/2,1,1,2,2,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,4,8,4,4,3,9/2,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,13,7,8,6,8,5,5,4,6,4,4,3,3,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-4,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-26 -1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,0,1,1,1,0,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1/2,0,0,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,9/2,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 -0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,1,0,1,1,1,1,1,1,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,0,1,1,1/2,0,2,2,2,1,2,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,3,3,2,3,2,3,2,5/2,2,4,3,7/2,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,-1/2,-1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-17 -0,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,2,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,-1/2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-2,-3,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-7,-7,-14 --2,0,0,1,1,1,2,2,5/2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,-4,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,1,1/2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,5/2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,7/2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,0,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,7,4,4,3,4,2,2,2,7/2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,11/2,4,4,3,5,3,4,4,2,2,2,1,1,1,2,2,7/2,2,2,2,3,2,3,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,10,5,5,4,6,4,6,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,4,13/2,4,4,3,4,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-2,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-24,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-15,-7,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-8,-4,-6,-6,-25/2,-6,-8,-6,-12,-8,-12,-12,-26 -0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,1,1,2,2,2,2,5/2,2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,0,0,1/2,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,5,3,4,3,3,2,5/2,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,3,3,5,3,4,4,6,4,11/2,6,7,4,9/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,1,1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-3,-7,-4,-7,-7,-15 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,9/2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11 --1,0,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,3/2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,3/2,2,2,2,2,2,2,1,1/2,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,3,3,4,3,3,2,2,1,1,0,-1,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,7/2,3,4,3,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,2,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,4,6,4,5,4,13/2,4,6,7,10,6,6,4,11/2,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1/2,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,9/2,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,1,0,0,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,1,1,0,0,0,0,1/2,1,0,1,1,1,2,2,2,2,3,2,1,1,-1,0,1/2,1,0,1,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,2,1,2,2,5/2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,3,3,3,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-3/2,-2,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-5,-8,-8,-17 --2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,3/2,1,1,-1,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-16 --5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3,3,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,13/2,4,3,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,11,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,13/2,4,4,4,6,4,5,5,9,6,7,6,9,6,9,9,15,8,8,5,7,4,5,4,5,3,4,3,5,3,3,3,5,3,3,2,3,2,1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-4,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-24,-12,-12,-8,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-5,-4,-9,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-8,-33/2,-8,-9,-6,-10,-5,-7,-7,-14,-7,-9,-8,-16,-10,-16,-16,-33 --2,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,5,3,4,7/2,5,4,5,5,8,5,5,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-3/2,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 --3,-1,-1,0,-1,0,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,0,-1,0,1,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,5,3,5/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,3,4,2,5/2,2,3,3,4,4,5,3,4,4,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,3/2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17 --2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --3,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,7/2,3,4,4,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,4,11/2,4,6,6,11,6,6,4,11/2,3,3,3,3,2,2,2,5/2,2,3,3,1,1,1,1,2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-2,-2,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1/2,0,0,-1,-2,-1,-2,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-4,-3,-8,-4,-5,-4,-17/2,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --2,-1,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,1,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,7/2,3,4,2,5/2,2,4,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,9,5,9/2,3,5,3,3,3,4,2,5/2,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-12,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-14 --1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,1,1,2,2,2,3/2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1/2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,9/2,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-13 --2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,1,1,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,5,3,3,2,3,2,1,1,1/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,15/2,5,6,6,10,7,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,1,1,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-25 -0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-6,-6,-13 -0,1,1,1,-1,0,1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,7/2,4,6,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,4,5,4,9/2,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-7,-7,-15 -0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-12 --1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-3,-1,-1,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,9/2,3,4,4,9,5,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,3,4,3,3,2,5/2,2,3,3,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,5,8,5,6,5,17/2,6,8,9,15,8,7,5,13/2,4,5,4,8,4,4,3,7/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-9/2,-3,-5,-5,-2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,11/2,5,4,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-5,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14 --2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,5,3,4,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,11/2,5,10,6,11/2,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,4,3,7/2,3,5,4,9/2,4,9,5,11/2,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,15/2,5,8,5,11/2,4,7,4,4,3,4,3,3,3,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-11/2,-5,-12,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-15,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,7/2,5,4,6,5,10,6,6,4,6,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,4,5/2,3,2,4,5/2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,7/2,4,4,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,0,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,4,5,5,8,5,5,3,4,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,6,8,9,35/2,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,9,5,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,9,9,16,9,11,9,15,11,16,16,27,14,15,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,2,1,0,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-6,-9,-9,-37,-18,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-14,-8,-12,-12,-47/2,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-16,-11,-17,-17,-32,-15,-15,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-16,-9,-12,-10,-19,-10,-13,-10,-19,-12,-18,-17,-35,-17,-18,-12,-20,-11,-13,-11,-22,-11,-13,-10,-17,-10,-14,-13,-26,-13,-13,-9,-15,-8,-11,-9,-18,-9,-11,-9,-16,-10,-16,-16,-33,-16,-17,-11,-17,-9,-12,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-16,-11,-17,-10,-13,-12,-24,-12,-14,-11,-21,-14,-21,-21,-43 --2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,5/2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,3,3,6,4,4,3,4,5/2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,5/2,3,5/2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-9/2,-9,-9/2,-6,-9/2,-9,-11/2,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,3,7/2,3,4,3,7/2,3,3,2,3,3,4,3,3,3,6,4,4,3,4,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,4,5,4,5,5,9,6,13/2,6,8,6,17/2,8,14,8,15/2,6,8,5,5,4,8,5,5,4,5,4,9/2,4,6,4,4,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,6,4,7/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,2,2,3/2,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-11/2,-4,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-13/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 -0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,9/2,6,6,10,6,6,4,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-11/2,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-14 --1,0,0,0,0,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,6,4,4,3,7/2,3,4,4,4,3,3,2,3,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,9/2,3,4,5,10,6,6,4,13/2,4,5,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,3,3,3,2,2,2,7/2,3,4,4,6,4,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,9,5,6,4,11/2,4,6,6,10,6,6,6,19/2,6,9,9,14,8,8,5,13/2,4,4,4,8,5,5,4,5,4,5,4,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,5,3,3,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-5/2,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-19,-9,-8,-5,-17/2,-4,-6,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-9,-9,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22 -0,1/2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-11/2,-12 -1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,7/2,4,7,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,3,3,2,2,2,3,3,7,4,9/2,3,4,3,9/2,4,8,5,5,4,8,5,7,7,9,5,5,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,4,3,3,2,3,2,3/2,2,2,1,1,1,1,1,1,1,4,2,5/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-14 -1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,3/2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 -1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-3,-1,-1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,1,1,1,1,2,3,2,3,3,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,-1,0,1,1,2,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,2,-1,0,0,0,0,1,1,1,3/2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,1,1,1,1,2,2,5,3,3,2,3,2,3,3,9/2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,4,2,2,2,2,2,2,2,9/2,3,4,3,5,4,5,4,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,10,6,6,5,8,5,6,6,23/2,7,8,7,11,7,10,10,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,7/2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,1,1/2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-2,-1,-1,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-6,-6,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21 -1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,3/2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,1,1/2,0,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,3/2,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,3,2,7/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,3,3,3,3,2,7/2,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,7/2,4,6,4,4,4,6,4,13/2,6,8,4,9/2,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,5/2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-11/2,-6,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-11/2,-6,-12 -2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,5,3,3,3,5,4,5,5,6,7/2,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,-1,1,1,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,0,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,3/2,1,1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,-1,0,0,1,2,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-3/2,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,5,3,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,11,6,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,9/2,3,3,3,6,4,4,3,9/2,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,0,0,0,0,-3/2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-11/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-8,-8,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,5/2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,6,7/2,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-4,-4,-8 -2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,1,0,1,3/2,1,1,1,2,2,1,1,2,2,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,2,2,3/2,2,2,2,5/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,0,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,5,3,3,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,7/2,3,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,2,4,3,7/2,4,10,5,5,4,5,3,3,3,5,3,5/2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,7,4,4,3,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,9/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,3/2,1,2,2,3/2,1,0,0,0,0,-1,0,-3/2,-2,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-13,-6,-11/2,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-12 -2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,2,3/2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1/2,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,4,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,9,5,5,7/2,4,3,3,3,4,5/2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,5/2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,4,4,7/2,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12 -3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,3,-1,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,10,5,5,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,7/2,2,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,2,4,2,2,2,3,2,3,3,6,4,5,5,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,17,9,9,6,9,6,7,6,11,6,6,4,6,4,4,4,15/2,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,23/2,6,7,5,8,5,6,6,11,7,8,7,13,9,13,13,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7/2,2,2,1,1,1,0,0,0,0,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,1,1,1,1,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-23,-11,-11,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-12,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-9,-23,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1/2,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,3/2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12 -3,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,1,2,5/2,2,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,5,3,3,2,3,2,3/2,2,3,2,2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,9,5,11/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,5,5,8,6,8,8,8,4,9/2,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,-1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-13/2,-6,-10,-4,-9/2,-2,-5,-2,-7/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-9/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13 -3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,3/2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,6,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9 -6,4,4,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,5/2,2,2,3,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,5/2,2,3,3,7,4,3,2,3,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,-1,-1,2,2,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,-1/2,0,0,-1,-1,0,-1,0,-3/2,-1,-2,-1,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,-1,6,3,3,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,3,3,2,7/2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,4,4,5,3,4,3,9/2,3,4,4,6,4,4,3,5,4,5,5,6,4,4,4,11/2,4,4,4,6,4,6,5,17/2,6,8,8,8,5,5,4,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-13,-6,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-7,-7,-14 -4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,5,5,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 -6,4,4,3,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,5/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,5/2,2,3,2,3/2,1,2,2,2,2,2,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,0,0,-5,-2,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,0,0,1/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,5/2,2,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,3,2,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,5,5,5,3,7/2,3,5,3,4,3,5,4,5,4,7,5,7,7,7,4,9/2,4,4,3,7/2,3,5,3,4,3,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-6,-3,-9/2,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 -6,3,3,5/2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,3/2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,3/2,2,2,2,3/2,2,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1/2,0,1/2,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-10 -10,6,6,4,5,3,4,3,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,11/2,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,3,3,3,4,2,2,1,1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,1,1,1,0,0,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,-1,0,0,1,1,1,0,0,1/2,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,4,3,5,5,8,5,5,3,4,3,3,3,6,3,3,2,3,2,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,8,5,5,4,6,4,6,5,9,6,8,7,12,8,12,12,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,1,2,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,4,3,3,3,4,3,3,2,5/2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-4,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-19 -6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,5,3,3,3,4,3,4,7/2,6,4,5,4,7,5,7,7,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-9/2,-10 -8,4,9/2,3,4,3,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,7/2,3,4,2,5/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,0,-1/2,0,-1,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,5,3,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,11/2,4,7,5,7,7,9,5,11/2,4,6,4,4,4,5,3,7/2,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-11 -7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,3/2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1/2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,5/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-8 -11,6,6,4,11/2,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,7/2,2,2,2,3,2,3,2,3,3,4,4,3,2,2,2,3/2,1,1,1,3,2,3,2,3,3,4,4,5,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-2,-2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1/2,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,-7,-3,-3,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,2,2,2,2,3,3,4,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,5,3,3,3,9/2,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,9/2,3,4,4,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,3,3,4,3,3,3,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,12,7,7,5,15/2,5,6,5,8,4,4,3,9/2,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,1,1,2,0,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,1,4,3,3,2,2,2,2,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-15 -8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,3,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,9,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,3,2,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,7/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,5,4,5,4,10,5,5,4,5,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,13/2,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,5,7,4,9/2,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,4,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,4,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,4,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,9/2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-5/2,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-5,-4,-8,-5,-7,-7,-15 -21,11,12,9,13,8,9,8,13,7,7,5,7,5,6,5,9,5,5,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,6,6,10,6,6,4,6,3,3,2,3,2,2,2,2,2,3,3,6,3,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,18,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,10,17,12,18,18,25,13,13,9,12,7,8,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,4,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,5,3,3,2,3,2,3,2,3,2,1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-19/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-21,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,9/2,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,-1/2,-2,-2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,13/2,10,10,13,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 -12,7,7,5,8,5,11/2,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,2,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,9/2,4,6,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,7/2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,7/2,3,4,3,7/2,3,4,3,9/2,4,10,5,5,4,6,4,7/2,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,5,4,5,4,11/2,5,8,5,6,5,8,6,10,10,14,8,15/2,5,6,4,5,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,0,0,1/2,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-15 -8,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,3,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,2,2,3,3,4,7/2,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,9/2,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 -12,7,7,5,15/2,4,5,4,7,4,4,3,9/2,3,4,4,5,3,4,3,7/2,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,6,4,4,3,7/2,3,4,3,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,5,5,8,4,4,3,5,3,3,2,4,3,3,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,0,0,1,1,0,0,-1/2,0,0,-1,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,-7,-3,-4,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,1,1,2,2,2,2,4,3,3,2,5/2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,1,3/2,2,2,1,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,11/2,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,10,6,6,4,11/2,3,3,3,5,3,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,5/2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,14,7,7,5,7,4,5,5,8,5,5,4,5,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,2,2,2,2,3/2,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-17 -7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,3/2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,2,5/2,6,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,8,9/2,4,3,5,3,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-10 -8,5,5,4,6,4,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,2,2,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,6,4,9/2,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,1,1/2,1,2,1,1/2,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,4,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,3,7,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,4,3,3,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,10,6,11/2,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,-1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13 -7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,3,2,3,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,5/2,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-11 -13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,11/2,3,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,9/2,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,2,2,2,3/2,1,1,1,0,0,-1,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,0,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-2,5,3,3,2,3,2,3,2,7/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,7,4,4,3,5,3,3,3,5,4,5,4,7,5,6,6,13,7,7,5,6,4,4,4,13/2,4,4,3,4,3,3,3,8,5,5,4,5,3,3,3,9/2,3,3,3,4,3,5,5,4,3,3,2,2,2,3,3,11/2,4,4,3,5,3,4,4,10,5,5,4,6,4,6,6,21/2,6,8,6,10,7,10,11,16,9,9,7,10,6,7,6,17/2,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,4,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-21/2,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-5,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-12,-7,-11,-11,-22 -8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,5/2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,2,2,2,3/2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12 -9,5,5,4,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,3,3,4,2,5/2,3,4,3,3,3,4,3,4,4,5,3,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,4,9/2,4,7,4,4,3,5,3,3,2,2,2,3/2,2,2,2,2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,5/2,2,3,2,3/2,1,1,1,1/2,0,0,0,1/2,0,2,1,1,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,0,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,3/2,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,4,3,3,2,4,2,2,2,4,3,4,3,5,3,4,4,9,5,5,4,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,7/2,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,7/2,3,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,3/2,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-6,-6,-12,-5,-5,-3,-7,-3,-4,-3,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14 -8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,5/2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,7/2,4,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,-1/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,4,6,4,6,6,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1/2,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11 -13,7,6,4,13/2,4,5,5,8,5,5,4,13/2,4,5,5,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,13/2,4,4,4,8,5,6,5,7,4,5,5,9,5,5,4,6,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,7/2,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,1,1,1,2,2,5,3,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,2,1,1,1,3/2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,3,4,4,5,3,3,3,9/2,4,5,5,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,10,6,7,6,10,7,10,9,13,7,7,5,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1/2,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1/2,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-9,-9,-6,-17/2,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-9,-6,-9,-9,-19 -9,5,4,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,6,7/2,4,3,5,3,4,7/2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,1,1,1,0,0,0,0,0,-1/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,5/2,3,5/2,3,7/2,7,4,5,4,7,5,7,6,8,5,5,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,3/2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,1/2,1,1,0,0,0,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 -13,7,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,7/2,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,5,3,5/2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1/2,1,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,11,6,6,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,4,3,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,7/2,3,4,3,4,5,9,6,13/2,5,9,6,9,9,11,6,6,4,6,3,3,2,5,3,3,2,4,3,3,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-7,-7,-16,-8,-15/2,-5,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-5,-4,-8,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-9/2,-4,-7,-5,-8,-8,-17 -13,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,5/2,4,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1/2,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,7/2,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,4,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,9/2,8,5,6,5,8,6,8,17/2,10,6,6,4,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,1,1,1,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-15/2,-16 -24,13,13,9,12,7,9,8,14,8,9,7,10,6,7,6,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,8,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,11/2,4,4,3,5,3,4,4,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,5,7,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,6,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,20,10,10,7,9,5,6,5,8,4,4,3,5,4,5,5,19/2,6,6,4,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,7,6,9,6,9,9,17,10,11,9,15,11,16,16,18,9,9,6,8,5,5,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,0,0,0,0,0,1,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-6,-13,-7,-8,-7,-13,-9,-15,-15,-28,-14,-14,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-9,-18,-9,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-8,-35/2,-8,-9,-6,-11,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-33 -13,7,7,5,7,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -14,8,15/2,6,8,5,11/2,5,8,5,5,4,5,4,9/2,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,4,5,5,8,4,9/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-1,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,3/2,1,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4,3,7/2,3,6,4,7/2,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,4,4,5,4,11/2,6,11,6,11/2,4,6,4,4,3,5,3,3,2,4,3,7/2,4,6,4,7/2,3,3,2,3,3,3,2,3,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,5,9,5,6,5,8,6,9,9,10,6,11/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-8,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18 -10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,7/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,6,5,7,7,8,9/2,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -15,8,8,6,17/2,5,6,6,8,4,4,4,11/2,4,5,5,7,4,4,3,9/2,4,5,5,6,4,4,4,13/2,4,6,6,11,6,6,4,9/2,3,3,2,5,3,3,3,4,3,3,3,5,3,4,4,11/2,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,6,4,4,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,6,4,4,3,7/2,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,12,7,7,5,13/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,4,3,4,4,11/2,4,6,6,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,12,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-4,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-19/2,-6,-10,-10,-20,-10,-10,-6,-21/2,-6,-8,-7,-13,-6,-6,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22 -9,5,5,4,6,7/2,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,8,5,5,7/2,5,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,5,3,3,2,4,2,2,2,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,7/2,3,5,3,3,3,5,3,4,4,6,4,7/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,4,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,6,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,10,6,11/2,4,6,4,4,4,5,3,7/2,3,4,3,7/2,3,6,4,7/2,2,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,7/2,3,5,3,3,2,3,2,7/2,4,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,0,1,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-4,-3,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-17/2,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17 -11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,5/2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,5/2,4,4,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,6,4,6,4,6,5,17/2,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,10,5,5,4,6,4,5,5,17/2,5,6,5,9,6,9,9,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,11/2,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-5/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,5/2,2,2,2,2,2,3,3,8,5,5,3,4,3,3,3,11/2,3,3,2,3,2,3,3,5,3,2,2,2,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,2,7/2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,4,4,4,9,5,5,4,6,4,6,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,7,6,21/2,6,7,6,9,6,8,8,11,6,7,6,10,6,8,8,27/2,8,10,9,15,11,16,16,18,9,9,6,8,5,5,4,15/2,4,5,4,7,5,6,6,6,4,4,3,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-16,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-9,-6,-9,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-7,-6,-27/2,-7,-8,-6,-10,-6,-8,-7,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-20,-10,-10,-6,-10,-6,-8,-7,-27/2,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-6,-8,-8,-19,-9,-10,-6,-10,-6,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30 -12,13/2,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,6,7/2,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-9/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -14,8,15/2,6,7,4,11/2,5,7,4,5,4,6,4,5,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,10,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,3/2,2,1,1,1,1,-1,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,5,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,6,4,9/2,4,7,5,13/2,6,12,6,13/2,4,7,4,9/2,4,6,4,7/2,3,5,3,7/2,3,6,4,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,9/2,4,5,4,9/2,4,6,4,9/2,4,6,4,11/2,5,8,5,5,4,6,4,6,5,9,6,13/2,6,10,7,21/2,10,12,6,6,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-22,-10,-21/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-10,-20 -12,13/2,6,5,6,4,4,4,6,4,4,7/2,5,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,3,4,3,4,7/2,5,3,4,4,6,4,6,6,10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,7,4,4,3,5,7/2,5,4,7,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-5/2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -22,12,12,8,23/2,6,7,6,11,6,7,6,17/2,6,8,7,11,6,6,5,7,4,5,5,8,5,6,5,17/2,6,9,9,17,9,9,6,19/2,6,7,6,7,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,8,5,6,5,17/2,6,8,8,14,7,7,5,15/2,4,5,5,7,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,9/2,3,3,3,4,3,3,2,7/2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,5/2,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,2,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,2,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,1,2,2,2,2,4,3,3,2,7/2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,7/2,2,3,3,7,4,5,4,6,4,5,5,9,5,6,6,19/2,6,9,9,18,9,9,6,9,5,5,4,7,4,4,4,11/2,4,5,4,8,4,4,4,11/2,4,4,4,7,4,4,4,6,5,7,7,10,6,6,4,13/2,4,5,5,8,5,6,5,15/2,6,8,7,12,7,7,5,15/2,5,6,6,12,7,9,8,14,10,15,15,17,9,9,6,8,5,5,4,8,5,6,5,7,5,6,6,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,1,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-9,-9,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-7,-7,-16,-8,-10,-8,-31/2,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-9,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-10,-7,-23/2,-6,-9,-8,-16,-8,-10,-8,-31/2,-10,-15,-15,-31 -15,8,8,6,8,9/2,5,4,8,9/2,5,4,6,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,5,3,3,3,4,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,7/2,4,4,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-9/2,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-10,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -22,12,12,8,11,6,15/2,6,11,6,13/2,5,8,5,7,7,11,6,13/2,5,7,4,11/2,6,9,6,13/2,5,8,6,17/2,9,17,9,9,6,10,6,13/2,5,7,4,5,4,6,4,11/2,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,17/2,8,15,8,8,6,8,5,11/2,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,2,1,1,1,3,2,2,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,1,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,4,7,4,9/2,4,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,4,9/2,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,27/2,14,16,8,17/2,6,8,5,11/2,4,8,5,5,4,6,4,6,5,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-13/2,-4,-6,-3,-5,-4,-6,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-10,-6,-19/2,-10,-21,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-7,-7,-13,-6,-13/2,-4,-7,-4,-5,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-19/2,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-15/2,-7,-13,-7,-17/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-8,-15,-10,-15,-15,-32,-16,-31/2,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-14,-7,-17/2,-7,-13,-8,-25/2,-12,-26,-13,-13,-8,-14,-7,-17/2,-7,-15,-7,-8,-6,-11,-6,-19/2,-9,-19,-9,-9,-6,-12,-7,-19/2,-8,-16,-8,-21/2,-8,-16,-10,-31/2,-15,-31 -21,11,11,8,11,7,8,13/2,11,6,6,5,8,5,7,13/2,11,6,6,5,7,9/2,6,6,10,6,7,11/2,9,6,9,9,17,9,9,6,9,11/2,6,5,8,9/2,5,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,5/2,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,3/2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,7/2,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-14,-7,-8,-7,-14,-7,-8,-6,-11,-13/2,-10,-9,-19,-9,-9,-6,-12,-7,-9,-8,-17,-9,-10,-8,-16,-10,-16,-15,-31 -41,21,21,14,21,13,16,14,24,13,13,10,16,10,14,13,23,12,12,9,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,13,8,10,9,15,11,16,16,31,16,16,11,16,9,10,8,13,7,8,6,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,7,12,8,11,10,18,9,9,7,10,6,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,0,1,1,2,2,2,3,5,3,4,4,6,4,6,6,21/2,6,7,5,8,5,6,5,9,5,6,5,7,5,8,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,12,12,22,11,11,8,12,7,7,6,10,6,7,5,8,6,8,7,13,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,24,13,13,9,13,7,8,6,10,6,7,5,8,5,6,6,11,6,7,5,8,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,22,11,11,8,11,7,9,8,13,7,7,5,8,6,8,7,13,7,6,4,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,6,5,8,5,7,7,13,8,9,8,13,9,12,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,21,12,13,10,17,11,16,16,31,16,17,12,18,11,13,11,20,11,13,10,17,11,16,15,28,15,15,11,18,11,15,14,27,16,19,16,28,19,27,27,28,15,15,10,15,8,9,7,12,7,7,5,8,6,8,8,15,8,9,7,10,6,7,6,11,7,8,7,11,7,10,10,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,9,16,11,17,17,33,17,18,13,19,11,13,11,20,11,13,10,16,10,13,13,24,13,14,10,16,10,12,11,19,10,11,9,14,9,13,13,24,13,13,9,12,7,8,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-11,-6,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-8,-8,-6,-11,-6,-8,-8,-16,-9,-11,-9,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-17,-35,-18,-19,-14,-24,-14,-19,-18,-35,-19,-23,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-23,-19,-35,-17,-18,-13,-22,-13,-18,-16,-32,-16,-17,-12,-19,-11,-14,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-17,-17,-11,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-18,-12,-18,-19,-39,-19,-20,-13,-21,-12,-15,-13,-25,-13,-14,-10,-18,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-18,-38,-19,-19,-12,-19,-10,-13,-11,-21,-11,-12,-10,-18,-11,-16,-15,-31,-16,-17,-13,-22,-13,-18,-16,-32,-17,-21,-18,-33,-21,-32,-32,-64 -21,11,11,8,11,7,8,7,12,7,7,11/2,8,6,8,7,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,9/2,7,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,4,5/2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,9/2,5,4,6,4,5,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,17/2,14,10,14,14,15,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,17,9,10,7,10,6,7,6,10,6,7,6,8,5,7,7,13,7,7,5,9,11/2,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,5/2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-13/2,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-16,-33/2,-34,-33/2,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-11/2,-9,-5,-6,-11/2,-11,-6,-7,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-9,-9,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-15/2,-8,-6,-11,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -21,11,23/2,8,11,7,8,7,12,7,15/2,6,8,6,8,7,12,6,6,5,8,5,11/2,5,9,5,5,4,7,4,11/2,6,9,5,11/2,4,5,4,9/2,4,6,4,4,3,4,3,9/2,4,6,4,9/2,4,5,3,4,4,7,5,6,5,8,6,17/2,8,16,9,9,6,9,5,11/2,4,6,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,5,5,9,5,5,4,5,3,7/2,3,3,2,3,2,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,4,8,4,4,3,6,4,5,5,8,5,6,5,8,5,6,6,11,6,13/2,5,6,4,4,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,4,6,4,13/2,7,13,7,7,5,7,4,9/2,4,5,3,4,3,4,3,7/2,4,6,4,7/2,3,5,3,4,4,6,4,7/2,3,5,4,5,5,10,6,11/2,4,6,4,5,4,7,4,4,3,5,4,9/2,4,7,4,5,4,4,3,7/2,3,5,4,9/2,4,6,4,13/2,7,11,6,11/2,4,6,4,9/2,4,7,4,9/2,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,9/2,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,13/2,6,9,6,8,8,16,9,9,6,10,6,15/2,6,11,6,7,6,10,6,8,8,15,8,8,6,10,6,17/2,8,13,8,9,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,4,11/2,6,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,5,8,6,17/2,9,17,9,19/2,7,10,6,15/2,6,10,6,7,6,8,5,7,7,13,7,7,5,9,6,13/2,6,10,6,6,5,8,5,7,7,13,7,13/2,4,7,4,5,4,6,3,3,3,3,2,3,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-8,-4,-11/2,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-9,-16,-10,-33/2,-17,-33,-16,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-17/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-10,-7,-10,-5,-7,-6,-12,-6,-13/2,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,4,3,4,4,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,5/2,3,3,5,3,3,5/2,4,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,5/2,3,2,3,3,4,3,3,2,4,5/2,3,3,4,5/2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,4,3,4,7/2,5,3,4,3,3,2,3,3,4,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,9/2,7,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,5/2,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,7,5,7,9/2,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -20,11,11,8,23/2,7,8,7,12,7,8,6,17/2,6,7,7,13,7,7,5,15/2,4,5,5,9,5,6,5,15/2,5,7,6,9,5,5,4,5,4,5,5,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,15,8,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,3,3,2,2,2,9/2,3,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,3,2,1,1,1,1,1,1,2,1,1,0,-1/2,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-2,0,0,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,4,3,3,3,5,3,4,4,6,4,4,3,7/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,5,4,5,5,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,6,4,13/2,4,6,7,12,6,6,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,4,3,9/2,3,4,4,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,10,6,6,4,11/2,4,4,4,7,4,5,4,11/2,4,4,4,7,4,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,12,6,6,5,15/2,5,6,5,11,6,6,5,17/2,6,8,8,17,9,10,7,19/2,6,8,7,12,7,8,6,10,7,9,9,15,8,8,6,21/2,7,9,8,12,7,9,8,14,9,13,13,14,8,8,5,7,4,4,4,8,5,5,4,6,4,6,5,9,5,5,4,11/2,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,15/2,6,8,8,17,9,9,7,10,6,8,7,11,6,6,5,8,5,7,6,12,7,8,6,17/2,5,6,6,8,5,5,4,13/2,5,7,7,13,7,7,5,13/2,4,5,4,6,3,3,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3/2,1,0,0,1,1,2,2,5/2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-4,-5,-4,-9,-6,-10,-10,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-33/2,-10,-16,-17,-32,-16,-16,-10,-33/2,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-19/2,-6,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-10,-5,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-16,-8,-8,-6,-10,-6,-9,-8,-15,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,7/2,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,9/2,6,5,8,6,8,8,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -13,7,8,6,8,5,11/2,5,9,5,11/2,4,6,4,9/2,4,8,5,5,3,5,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,4,3,7/2,4,6,4,4,4,6,4,6,6,11,6,13/2,5,7,4,9/2,4,4,3,3,3,5,3,4,4,6,4,7/2,3,5,3,7/2,3,5,3,5/2,2,3,2,7/2,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,5/2,2,4,3,7/2,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,5,3,7/2,3,6,4,11/2,5,9,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,3,5,3,4,3,6,4,11/2,6,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,7,4,7/2,3,4,3,3,3,6,4,7/2,3,5,3,7/2,4,9,5,5,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,12,6,13/2,5,8,5,6,5,9,5,6,5,8,5,7,6,10,6,11/2,4,7,4,11/2,5,8,5,13/2,6,10,7,9,9,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,6,6,12,6,13/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,8,5,5,4,5,3,4,4,6,4,7/2,3,5,4,11/2,6,10,6,11/2,4,4,3,7/2,3,4,2,2,2,2,2,3/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,3,2,2,2,1,1,3/2,1,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-9,-5,-13/2,-5,-11,-7,-11,-11,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20 -11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,6,7/2,4,3,5,3,4,9/2,10,11/2,6,4,7,4,5,9/2,8,9/2,5,4,7,9/2,6,11/2,8,9/2,4,3,5,4,5,9/2,7,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17 -20,11,11,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,4,3,3,3,4,3,5,5,17/2,5,6,6,10,7,10,9,17,9,10,7,10,6,6,5,15/2,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,2,2,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,9/2,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,11/2,3,3,2,3,3,4,4,5,3,4,3,5,3,4,3,5,3,3,3,5,4,5,5,12,6,6,4,6,4,4,3,9/2,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,12,7,7,5,6,4,5,4,13/2,4,4,4,6,4,5,4,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,13/2,4,6,5,8,6,9,9,11,6,6,4,6,4,4,4,15/2,4,5,4,6,4,4,4,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,13,7,7,5,8,5,6,5,17/2,5,5,4,7,5,8,8,17,9,10,7,11,7,9,8,13,7,8,6,9,6,9,9,13,7,7,5,8,5,7,7,25/2,7,8,7,12,8,12,13,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,7,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,5,13,7,7,5,6,4,4,4,13/2,4,6,5,8,5,7,7,14,8,8,6,8,5,5,4,11/2,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-9,-18,-12,-18,-18,-30,-15,-15,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-35/2,-9,-11,-9,-16,-10,-16,-15,-31 -11,6,6,4,6,4,5,4,7,4,5,4,5,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,2,2,3/2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,6,4,4,5/2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16 -12,6,13/2,4,7,4,5,4,8,5,5,4,5,4,5,4,6,4,7/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,3,2,2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,6,4,7/2,3,3,2,2,2,2,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,4,3,3,3,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,7/2,3,4,3,3,3,6,4,11/2,6,6,4,7/2,2,3,2,5/2,2,5,3,3,3,3,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,3,6,4,4,3,5,3,7/2,4,5,3,4,3,5,3,4,4,9,5,6,4,7,4,5,4,8,5,5,4,5,4,11/2,6,9,5,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,8,8,9,5,11/2,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,7/2,3,6,4,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,9/2,3,5,3,3,3,4,2,2,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-9/2,-5,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-11/2,-4,-8,-5,-8,-8,-17 -9,5,5,4,6,7/2,4,7/2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,9/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,5/2,3,3,3,2,3,2,4,3,3,3,7,4,5,7/2,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,7/2,5,3,4,3,4,3,3,2,3,2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,3,4,4,5,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 -15,8,8,6,17/2,5,6,5,10,5,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,2,2,2,2,7/2,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,4,4,8,5,5,4,11/2,4,4,4,7,4,4,3,5,3,4,3,3,2,3,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,2,2,2,2,5/2,2,3,3,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,5/2,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,9/2,3,4,5,9,5,5,4,5,3,4,3,3,2,3,2,7/2,2,3,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,9/2,3,4,4,5,3,4,4,13/2,5,7,7,6,4,4,3,4,3,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,8,4,4,3,5,3,3,3,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,4,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,5,5,4,13/2,4,6,6,11,6,6,5,15/2,5,6,5,8,5,6,5,8,6,9,9,11,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,9/2,4,5,5,12,7,7,5,7,5,6,5,6,4,4,3,5,3,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,11/2,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,5/2,2,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-6,-8,-6,-23/2,-8,-12,-12,-18,-9,-9,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-20 -10,11/2,6,4,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1/2,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,7/2,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,3,5/2,4,5/2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,7/2,8,4,4,3,5,3,4,3,4,3,3,5/2,4,5/2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 -13,7,15/2,6,8,5,11/2,5,9,5,5,4,5,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,3,5,4,11/2,5,9,5,11/2,4,7,4,9/2,4,7,4,9/2,3,5,4,5,5,6,4,4,3,5,3,4,3,3,2,5/2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,3,3,8,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,9/2,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,7,5,15/2,8,10,6,11/2,4,6,4,7/2,3,5,3,4,3,4,3,4,3,5,3,7/2,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,3,3,4,3,9/2,4,10,5,5,4,6,4,5,4,6,4,7/2,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-5,-9,-6,-19/2,-10,-15,-7,-15/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-16 -13,7,7,5,7,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1/2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,10,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -24,13,13,9,14,8,10,8,13,7,7,6,9,6,7,6,19/2,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,5,8,6,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,25/2,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,5,4,6,6,0,1,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,4,6,6,13,7,8,6,8,5,6,5,7,4,4,3,5,3,3,3,9/2,3,4,3,4,3,4,4,7,4,5,4,5,4,6,6,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,19/2,6,6,5,7,5,6,6,12,7,8,6,10,7,10,11,7,4,3,2,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,14,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,10,11,8,12,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,13,8,11,10,17,10,11,9,15,10,13,13,20,11,11,8,11,6,7,5,8,5,5,4,6,4,5,4,15/2,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,15,8,9,6,9,5,6,5,7,4,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,9,5,4,3,4,3,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-19/2,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-33/2,-8,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-18,-28,-14,-14,-9,-13,-7,-9,-8,-15,-7,-8,-5,-8,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-16,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-4,-5,-4,-7,-4,-7,-6,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-15,-10,-15,-15,-30 -13,7,7,5,8,5,6,5,7,4,4,3,5,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,7/2,5,3,4,3,5,3,4,4,7,4,4,7/2,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,5/2,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,7,9/2,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,3/2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-13,-6,-7,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-15 -13,7,15/2,6,8,5,6,5,7,4,4,3,6,4,4,3,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,9/2,4,5,3,7/2,3,5,3,4,4,7,4,9/2,4,5,4,9/2,4,6,4,4,4,6,4,5,5,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,0,1,3/2,2,2,2,2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,3,2,7/2,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,2,2,2,2,3,2,3,3,5,3,7/2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,13/2,4,7,4,9/2,4,5,3,3,2,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,8,5,5,3,5,3,7/2,3,5,3,5/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,4,2,5/2,2,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,3,8,4,9/2,3,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,1,1,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-9,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -9,5,5,4,6,4,4,4,6,7/2,4,3,4,3,3,5/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,4,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9 -14,7,7,5,8,5,6,5,9,5,5,4,11/2,4,4,3,4,3,4,3,5,3,4,4,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,13/2,4,6,5,6,4,4,3,4,3,3,2,3,2,3,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,7/2,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,-1,0,1,1,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,7,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,4,13/2,4,6,6,5,3,3,2,2,2,2,1,3,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,15/2,6,8,8,11,6,7,5,7,4,5,4,5,3,3,2,7/2,3,4,4,4,3,3,3,9/2,3,3,3,5,3,3,3,9/2,4,5,5,7,4,4,3,9/2,3,4,4,4,2,2,2,7/2,2,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,7/2,3,4,4,10,5,5,4,11/2,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,4,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,5/2,2,2,2,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1/2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-5/2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-3,-3,-8 -10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,7/2,3,4,3,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,3,2,2,2,5/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,-1,-1,-2,0,-1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,4,3,3,3,6,4,4,3,4,3,9/2,5,4,3,3,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,3,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,6,4,7/2,3,4,2,5/2,2,3,2,7/2,3,3,2,2,2,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,2,5/2,2,4,2,5/2,2,3,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,2,1,1,2,2,2,2,3/2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-3,-8,-4,-5,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 -9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,4,3,3,3,6,7/2,3,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,7/2,6,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,4,5,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,1,1,2,2,3,2,3,2,3,2,3,2,3,2,3,3,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,3,3,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,2,2,5/2,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,9/2,3,4,4,6,4,5,5,-2,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,7/2,2,2,2,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,4,5,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,4,3,3,3,4,3,3,3,11/2,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,6,4,5,5,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,6,9,9,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-19/2,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-6,-11,-7,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-3,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,5/2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9 -10,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,7/2,4,3,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,3,5,4,5,4,7,4,4,3,4,3,7/2,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,1,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,3,2,3,3,-2,0,0,0,0,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,2,4,3,3,3,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,4,2,2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,7/2,3,6,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,3,7/2,4,5,3,4,4,6,4,6,6,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,7,4,4,3,4,3,7/2,3,5,3,3,2,4,3,3,3,3,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,3,2,4,3,3,3,5,3,7/2,3,5,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,4,3,9/2,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,7/2,3,6,4,4,3,3,2,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-10 -9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,1,1/2,0,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-4,-4,-8 -15,8,8,6,15/2,4,5,5,8,4,4,4,11/2,4,5,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,3,7,4,4,4,11/2,4,6,5,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,0,0,1,1,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,2,2,2,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,3/2,2,2,1,0,1,1,2,5/2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,5,5,-3,-1,-1,0,1/2,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,2,5,3,4,3,7/2,2,2,2,2,2,2,1,1,1,1,2,4,3,3,3,4,3,5,5,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,17/2,6,8,8,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,3,2,1,1,1,1,1,1,2,2,10,6,6,4,13/2,4,4,4,7,4,5,4,5,3,4,4,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,6,4,5,4,7,5,7,7,10,5,5,4,6,4,5,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,2,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,5,3,3,2,5/2,2,1,1,0,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-3,-13/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-6,-11,-7,-10,-10,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-7,-16 -10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,5/2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1/2,1,1,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 -15,8,8,6,8,5,5,4,7,4,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,5,3,5/2,2,3,2,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,4,5,4,11/2,5,10,6,6,4,5,3,7/2,3,4,3,3,2,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,2,2,5/2,2,3,2,5/2,2,3,3,4,4,-2,0,0,0,0,1,3/2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,6,4,9/2,4,8,5,11/2,5,8,6,8,8,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,2,2,2,2,1,1,3/2,2,10,6,6,4,6,4,4,3,6,4,7/2,2,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,7/2,3,5,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,4,3,6,4,5,5,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,7,4,7/2,3,3,2,5/2,2,4,2,2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,1,1,1,2,2,1,1,1,1,-1,0,0,0,-4,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-7,-5,-10,-6,-10,-10,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-13/2,-7,-15 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,5/2,4,3,6,4,4,3,4,5/2,3,5/2,4,5/2,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,11/2,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,2,3/2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,10,6,6,4,6,4,4,3,5,3,3,2,3,5/2,3,3,5,3,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-10,-5,-6,-5,-10,-6,-10,-10,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-14 -28,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,5,7,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,4,4,6,4,6,6,21/2,6,6,4,6,4,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,4,6,7,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,2,2,2,2,2,2,2,2,4,3,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,8,5,7,7,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,3,3,6,4,5,4,7,5,6,6,25/2,7,8,6,8,5,6,5,8,5,6,5,9,6,8,8,14,8,8,7,11,7,9,8,14,8,9,8,14,10,15,15,6,3,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,7,4,3,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,20,10,10,7,10,6,6,5,7,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,6,4,4,3,5,4,5,4,7,4,5,5,8,6,8,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-4,-19/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-13,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-2,-6,-4,-6,-6,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-10,-7,-12,-7,-9,-8,-15,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-12,-14,-12,-22,-14,-21,-21,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-13,-14,-29 -15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,3,5/2,4,3,6,4,4,3,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,5/2,3,2,4,3,4,4,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -15,8,8,6,8,5,6,5,8,5,11/2,4,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,4,3,4,3,9/2,4,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,9/2,3,5,3,7/2,3,5,3,7/2,3,5,4,5,4,8,4,9/2,4,6,4,11/2,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,2,2,11,6,11/2,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,4,9/2,4,6,4,6,6,9,5,5,4,5,3,7/2,4,5,3,7/2,3,3,2,7/2,3,6,4,7/2,3,3,2,2,2,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,7/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-12,-6,-11/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-10,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -11,6,6,4,6,4,4,7/2,6,4,4,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,3,4,4,5,3,4,4,6,4,6,6,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,8,8,6,17/2,5,6,5,10,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,13/2,4,5,5,8,5,5,4,9/2,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,7/2,3,4,3,6,3,3,2,7/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1/2,0,0,1,-1,0,1,1,1,1,1,2,4,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,3,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,17/2,6,9,9,4,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,7/2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,11,6,6,4,6,3,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,2,4,3,3,2,7/2,3,4,3,8,5,5,3,4,3,3,3,6,4,4,4,13/2,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,7,4,4,3,7/2,2,3,3,6,4,4,3,9/2,3,4,4,5,3,3,2,7/2,2,2,1,2,2,2,1,1,1,1,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,5,4,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,0,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-11,-6,-7,-6,-23/2,-7,-10,-10,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13 -10,5,5,4,5,3,4,3,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,11/2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -12,7,7,5,6,4,5,4,7,4,9/2,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,5/2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,3,3,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,0,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,3/2,2,3,2,3/2,2,1,1,3/2,1,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,2,3/2,1,4,3,3,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,7,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,6,3,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3/2,1,1,2,3/2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1/2,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -21,11,11,7,10,6,8,7,11,6,6,4,6,4,6,6,8,5,5,4,6,4,5,4,15/2,5,6,5,7,4,5,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,3,4,3,4,4,15/2,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,2,1,1,1,4,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,9/2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,19/2,6,8,7,11,8,11,11,8,4,4,3,5,3,3,3,9/2,3,3,2,3,2,2,1,4,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,2,2,2,7/2,2,2,1,1,1,1,1,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,11/2,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,6,7,13,7,7,5,6,4,4,4,13/2,4,4,3,3,2,3,3,8,5,5,3,4,3,4,4,11/2,4,4,3,5,4,5,5,6,3,3,2,3,2,2,2,5/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,3,4,4,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,1,1,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-11,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13 -12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,3,2,2,3/2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,7/2,4,4,6,9/2,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 -13,7,7,5,6,4,9/2,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,3,4,2,5/2,2,1,1,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,7/2,3,5,3,3,2,2,2,5/2,2,4,3,3,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,4,9/2,4,7,5,7,7,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,3,2,2,3/2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,6,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,3,3,6,7/2,4,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -16,9,9,6,17/2,5,6,5,8,5,5,4,11/2,4,5,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,4,2,2,2,7/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,2,5/2,2,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,3,3,6,4,4,3,9/2,3,3,3,7,4,4,3,7/2,2,3,2,4,3,3,2,3,2,2,2,6,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,11/2,4,4,4,8,4,4,4,11/2,4,5,4,7,4,5,4,5,4,5,4,6,4,4,4,15/2,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,5/2,2,3,3,7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,9,5,4,3,9/2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,4,3,4,4,11/2,4,5,5,9,5,6,4,11/2,4,4,3,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,3,3,3,2,2,2,7/2,3,4,4,5,3,3,2,5/2,2,2,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,0,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 -10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,3,5/2,3,3,4,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,5/2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -14,8,8,6,8,5,11/2,4,7,4,9/2,4,5,4,9/2,4,7,4,9/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,4,5,3,3,2,3,2,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,2,1,1,3/2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,5/2,2,4,3,3,3,8,4,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,3,4,3,4,4,6,4,4,4,7,5,6,6,6,4,7/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3,2,2,2,5/2,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,3,2,3,2,2,2,3,3,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,3,2,7/2,4,6,4,4,3,4,3,7/2,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,7/2,4,5,3,3,2,3,2,5/2,3,5,3,7/2,3,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -14,8,8,6,8,5,6,9/2,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,5/2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,8,4,4,3,4,3,4,4,7,4,4,4,5,7/2,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,9/2,6,6,6,4,4,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,3,5/2,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-2,-3,-5/2,-6 -27,14,15,10,15,9,10,8,13,7,7,6,9,6,8,8,27/2,8,8,5,7,5,6,6,10,6,6,5,7,5,7,7,10,6,6,4,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,3,3,4,3,4,4,11,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,3,3,2,2,2,3,2,3,2,3,2,3,2,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,6,4,5,5,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,11/2,4,4,3,3,2,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,5,4,5,5,15,8,9,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,7,12,8,12,12,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,4,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,21/2,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -14,8,8,6,8,5,6,5,7,4,4,7/2,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,3,2,3,3,5,3,3,5/2,3,2,3,3,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,3,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,4,3,6,4,4,3,3,2,5/2,2,5,3,3,3,3,2,7/2,4,10,6,11/2,4,6,4,9/2,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,7/2,4,6,4,5,4,7,5,7,7,6,4,7/2,3,4,3,3,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,3,2,3,3,5,4,9/2,4,6,4,5,5,9,5,9/2,4,5,3,4,4,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5 -11,6,6,9/2,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3 -18,10,10,7,21/2,6,7,5,7,4,4,4,6,4,5,5,8,4,4,3,9/2,4,5,5,6,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,2,2,2,2,1,3,2,1,1,1,1,1,2,4,2,2,2,3/2,1,0,0,2,1,1,1,2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,9/2,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,12,7,7,5,13/2,4,5,4,8,5,5,4,13/2,4,6,6,8,5,5,4,11/2,4,4,4,8,5,5,5,8,6,8,8,7,4,4,3,9/2,3,4,3,5,3,4,3,7/2,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,4,3,7/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,3,6,4,4,4,13/2,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,0,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,1,0,1,1,1,1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-3,-2,-5 -11,6,6,5,7,4,5,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,5/2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,9/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3 -15,8,8,6,9,5,6,5,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,4,3,3,2,2,2,2,1,2,2,3/2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,5/2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,5,10,6,11/2,4,6,4,4,4,7,4,9/2,4,6,4,5,5,6,4,7/2,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,1,1,1,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,3,2,3,2,5/2,2,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,7/2,3,5,3,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-6,-4,-11/2,-6,0,1,1,1,0,0,1/2,1,0,0,0,1,1,1,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4 -14,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,4,3,3,2,3,2,2,3/2,2,2,2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,7/2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4 -26,14,14,10,14,8,8,6,21/2,6,6,4,6,4,6,6,12,6,6,5,7,4,5,5,17/2,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,9/2,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,6,4,5,5,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,9/2,3,3,2,2,2,3,3,1,1,1,1,1,1,2,2,5/2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,15/2,5,6,5,9,6,8,8,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,5,17/2,5,6,5,9,7,11,11,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,9/2,2,2,2,3,2,2,2,6,4,5,4,6,4,4,4,13/2,4,4,3,5,4,5,6,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,7/2,2,3,3,6,5,7,7,9,5,5,4,6,4,5,5,17/2,5,5,4,7,4,5,5,7,4,4,3,5,3,4,4,15/2,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,6,4,4,3,3,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-8,-4,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,6,4,6,13/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,4,3,3,3,4,3,3,2,3,2,3,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 -18,10,10,7,10,6,13/2,5,7,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,4,6,4,7/2,3,4,3,4,3,6,4,7/2,3,4,3,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,9/2,4,9,5,5,4,6,4,4,4,5,3,7/2,3,4,3,9/2,4,6,4,4,3,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,4,3,4,3,7/2,3,3,2,2,2,2,2,5/2,2,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,3,2,5/2,2,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-2,-4,-2,-3,-3,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1/2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,29/2,8,10,8,11,6,7,6,17/2,6,7,6,10,6,6,4,11/2,4,5,5,9,5,6,4,11/2,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,5,3,4,4,6,4,6,6,8,5,5,4,9/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,5/2,2,3,3,2,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,7,5,6,5,17/2,6,9,9,16,9,9,6,17/2,5,6,5,8,5,5,4,13/2,4,6,6,9,5,5,4,7,5,6,6,11,7,8,6,19/2,7,10,10,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,7,4,4,3,9/2,3,3,3,5,3,3,2,7/2,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,5,5,10,5,5,4,11/2,4,4,3,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,6,4,4,4,11/2,4,6,6,12,7,7,5,13/2,4,5,4,8,5,5,4,6,4,5,5,7,4,5,4,11/2,4,4,4,8,5,5,4,15/2,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,9/2,3,3,3,8,5,5,4,11/2,4,4,4,7,4,5,4,11/2,4,6,6,7,4,5,4,5,3,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-1,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-9,-9,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6 -18,10,10,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,9/2,7,5,7,7,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,5/2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,5/2,3,2,4,5/2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,14,8,19/2,8,12,7,7,6,9,6,7,6,10,6,11/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,5,3,4,4,6,4,11/2,6,9,5,5,4,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,0,1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,3,4,2,5/2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,11/2,4,7,5,13/2,6,11,6,6,4,6,4,9/2,4,7,4,11/2,5,8,6,9,9,16,8,17/2,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,6,15/2,6,10,7,19/2,10,11,6,6,4,5,3,7/2,3,4,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,5,4,11/2,5,10,6,11/2,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,9/2,4,6,4,9/2,4,7,4,9/2,4,5,3,4,4,8,5,11/2,4,8,5,7,7,11,6,6,4,7,4,5,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,9/2,4,6,4,11/2,5,7,4,9/2,4,5,3,4,3,5,3,4,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-5 -26,14,14,10,14,8,10,8,12,7,7,6,9,6,7,6,10,6,6,4,6,4,5,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,9,5,5,4,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,2,2,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,6,7,6,10,7,10,10,11,6,6,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,5,4,6,11/2,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-17/2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -52,27,27,18,26,14,16,13,23,12,13,10,15,10,13,12,23,12,13,9,14,9,11,9,16,9,9,7,10,7,10,9,17,9,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,16,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1/2,1,1,1,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,11,11,22,11,11,7,10,6,7,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,6,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,15,9,11,10,18,12,17,17,20,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,9,7,10,10,18,10,11,8,12,8,10,9,15,9,11,9,15,10,15,14,21,11,11,8,11,7,8,7,13,7,7,6,9,6,9,9,17,9,9,6,9,6,8,7,13,7,7,6,9,6,9,8,15,8,7,5,7,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-3,-3,0,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-6,-5,-11,-7,-12,-12,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-7,-31/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15/2,-3,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10 -27,14,14,9,13,15/2,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,5/2,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,4,7/2,5,7/2,4,4,8,5,6,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,9/2,6,4,4,4,7,4,4,7/2,5,7/2,5,5,9,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,9/2,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4 -27,14,27/2,9,13,8,17/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,9/2,3,5,3,7/2,3,4,2,2,2,3,2,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,4,3,7/2,4,6,4,6,6,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,7/2,2,4,2,5/2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,3,2,5/2,3,5,3,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,0,1,1,1,2,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,3,3,5,3,3,2,4,3,3,3,5,3,5/2,2,2,2,5/2,3,4,3,7/2,4,6,4,11/2,6,10,6,11/2,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,9/2,4,5,4,9/2,4,8,5,13/2,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,7/2,3,3,2,5/2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,7,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,9/2,4,5,4,6,6,10,5,5,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,5,4,5,3,3,3,6,4,4,3,5,4,11/2,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,15/2,8,12,6,6,5,7,4,9/2,4,7,4,9/2,4,4,3,9/2,5,9,5,11/2,4,5,4,9/2,4,6,4,4,3,6,4,5,5,9,5,9/2,4,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-3,-6,-6,-14,-6,-6,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 -18,9,9,6,9,11/2,6,5,8,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,2,4,5/2,3,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,4,3,4,3,5,7/2,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,5/2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,5,7,7,6,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,7/2,3,3,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,3,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,7/2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 -26,13,13,9,27/2,8,9,8,12,7,7,6,17/2,6,7,6,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,9/2,3,4,3,3,2,2,2,3,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,3,3,9/2,3,3,3,4,3,3,3,6,5,7,7,9,5,5,4,5,3,4,3,4,2,2,2,7/2,2,3,3,6,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,5,3,3,3,9/2,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,9/2,2,2,2,5,3,3,2,3,2,2,2,5,3,2,2,5/2,2,3,3,4,3,4,3,5,4,6,6,10,6,6,4,13/2,4,6,5,6,4,4,4,11/2,4,4,4,7,4,5,4,11/2,4,5,5,9,6,7,6,19/2,7,10,10,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,9/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,11/2,4,5,4,7,4,4,4,11/2,4,5,4,9,5,5,4,9/2,3,3,3,6,4,4,3,9/2,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,9/2,4,5,5,9,5,6,4,13/2,4,6,5,6,4,5,4,6,4,5,5,10,5,5,4,11/2,3,3,3,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,5,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,3,4,2,2,1,1,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-9/2,-3,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-1,-3 -15,8,8,6,8,5,6,5,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -19,10,19/2,7,10,6,13/2,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,0,1,3/2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,7/2,3,4,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3/2,2,2,2,2,2,6,4,7/2,3,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,3,3,2,3,2,4,3,4,3,6,4,4,3,4,3,9/2,4,8,4,4,3,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,6,3,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,4,2,2,2,3,2,5/2,3,4,3,3,3,3,2,7/2,4,3,2,5/2,2,3,2,7/2,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,9/2,3,5,3,4,4,6,4,4,3,6,4,11/2,5,10,6,11/2,4,5,3,4,4,5,3,4,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,1,1,1,1,2,2,5/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-11/2,-6,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-2 -16,17/2,8,6,9,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -29,15,15,10,14,8,10,8,27/2,8,8,6,10,6,8,7,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,9,5,5,4,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,1,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,7/2,2,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,5,5,17/2,5,6,4,6,5,7,7,11,6,6,4,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,11/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,15/2,4,4,4,6,4,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,9,6,9,9,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,4,3,3,2,3,3,4,4,15/2,5,6,5,7,5,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,3,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,9/2,3,3,3,4,3,5,6,10,5,5,4,6,4,5,5,19/2,6,6,5,7,5,7,7,16,9,9,6,9,5,6,5,17/2,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3/2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3/2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,5,3,3,2,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-4,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,4,2,2,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,-1,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2 -16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,6,7/2,4,5/2,4,2,2,2,3,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,3,2,3,2,2,2,3,2,3,7/2,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,3,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1 -17,9,9,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,5,5,4,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,2,0,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,5/2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,0,0,1/2,0,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,7/2,4,5,3,7/2,3,4,3,9/2,4,5,3,7/2,2,4,2,2,2,3,2,2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,3,2,4,3,7/2,3,5,3,7/2,4,5,4,5,5,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,3,2,5/2,2,3,2,2,2,4,3,7/2,3,4,3,4,4,4,3,7/2,3,3,2,3,3,5,3,3,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,6,4,4,3,4,3,7/2,3,6,4,4,3,4,3,9/2,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,2,3,2,5/2,2,4,3,4,4,6,3,3,3,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,1,1,1,1,0,1,3/2,2,3,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-9/2,-4,4,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1 -13,7,7,5,6,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0 -20,11,11,8,21/2,6,8,7,12,7,8,6,9,6,7,6,10,6,6,4,11/2,4,4,3,5,3,3,3,9/2,4,5,5,6,4,4,3,9/2,3,3,3,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,5,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,4,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,1,2,2,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,6,3,3,2,3,2,2,2,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,3/2,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,7/2,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,11/2,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,13/2,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,11/2,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,7/2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,1,1,3/2,2,2,1,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,-1,-1,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,5,3,2,2,3/2,2,2,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-2,0,0,0,-3/2,0,0,0,2,1,1,1,2,1,1,1,0 -13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,5/2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1 -18,9,9,7,9,6,7,6,11,6,7,5,8,5,7,6,10,6,11/2,4,5,3,4,4,5,3,4,4,6,4,11/2,5,6,4,4,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,2,5/2,2,4,3,4,4,3,2,2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,3/2,1,6,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,1,1,1,1,0,1,3/2,2,1,1,3/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,9/2,5,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,3,2,5/2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,7,4,5,4,5,4,11/2,5,8,5,5,3,4,3,3,2,4,2,5/2,2,3,2,3,3,7,4,7/2,2,4,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,-1/2,0,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,0,0,0,1,0,0,1/2,0,0,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,1,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,4,2,5/2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,2,2,2 -17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,10,6,6,4,5,3,4,4,5,3,4,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,2,4,3,3,3,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,5/2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,0,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,4,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2 -32,17,17,12,18,11,13,11,18,10,10,8,12,8,11,10,39/2,10,11,8,11,7,8,7,11,6,7,5,8,6,9,9,10,6,6,4,5,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,3,5,4,5,5,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,9/2,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,3,4,4,11/2,4,4,4,6,4,5,5,8,5,5,5,8,6,8,7,5,3,4,3,4,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,2,3,3,5,3,3,2,3,2,3,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,7,4,4,3,4,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,11/2,4,4,3,3,3,4,4,6,4,4,3,4,3,4,4,8,5,6,5,7,4,5,5,8,4,4,3,5,3,4,4,17/2,5,6,5,8,5,6,6,11,6,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,8,6,9,6,8,8,29/2,8,8,6,8,5,6,5,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,15/2,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,1,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,6,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,3,2,3,2,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-18,-8,-8,-5,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-10,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,4 -17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,6,3,3,5/2,3,5/2,3,3,5,3,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -17,9,19/2,7,10,6,15/2,6,10,6,6,5,7,5,13/2,6,10,6,6,4,7,4,5,4,6,4,4,3,5,4,11/2,5,6,3,3,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,7/2,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,1,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,1,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,3/2,1,5,3,3,2,3,2,3/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,3/2,2,1,1,2,2,4,3,3,2,3,2,3/2,1,1,1,1,1,1,1,2,2,4,3,3,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,2,2,3/2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,2,2,5/2,3,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,3,3,5,4,9/2,5,4,3,3,2,3,2,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,1,1,1,1,1,6,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,5,3,7/2,2,3,2,3,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,5,7,4,11/2,5,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,7/2,3,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,5/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,1,1,1,0,1,3/2,1,1,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,3,2,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2 -12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,5/2,4,5/2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-2,-3,-3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -19,10,11,8,23/2,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,7,5,6,5,6,4,4,4,11/2,4,6,6,7,4,4,3,9/2,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,2,1,1,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,2,2,2,2,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,3,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,4,4,3,4,3,5,4,6,6,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3/2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,4,3,9/2,3,4,5,7,4,3,2,3,2,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,4,5,5,8,5,6,4,13/2,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,13/2,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,7/2,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-2,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,2,2,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,3 -12,13/2,7,5,7,4,5,4,7,4,4,4,5,7/2,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,10,5,5,4,5,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,2,3/2,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2 -15,8,8,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,3,5,4,9/2,4,6,3,3,3,5,4,5,4,6,4,7/2,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3,2,3,2,3,3,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,3,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,1,1,1,1,2,2,5/2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,9/2,4,6,3,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,4,6,4,4,3,5,4,11/2,5,13,7,7,5,6,4,9/2,4,6,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,5/2,3,6,4,7/2,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-4,-4,3,2,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3 -13,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,1,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,3,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,7/2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,5/2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,4 -24,13,13,9,12,8,10,8,29/2,8,9,7,10,6,8,7,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,7/2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,9/2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,5,3,4,3,5,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,6,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,2,7,4,4,3,3,2,3,3,4,3,4,4,7,5,6,6,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,3,4,4,15/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,13/2,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,11,6,7,6,9,6,8,8,22,11,11,7,10,6,8,6,21/2,6,7,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,5,4,5,5,6,4,4,3,4,2,2,2,5/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,3,3,9/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,3,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,0,2,1,1,1,0,1,1,1,1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-4,-6,-6,4,3,3,2,2,2,2,1,1/2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,1,1,2,1,1,1,3/2,1,1,1,2,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,3,5,3,4,4,7 -13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,13,7,7,9/2,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 -15,8,17/2,6,8,5,13/2,6,10,5,5,4,6,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,5/2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,3,2,3,3,2,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,4,3,7/2,3,1,1,2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,5,3,3,3,5,4,5,4,6,3,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,5,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,11/2,6,15,8,8,5,7,4,5,4,6,4,9/2,4,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,4,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,3,3,4,2,5/2,3,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,2,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-3,-2,-3,-3,3,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,2,2,4 -12,7,7,5,7,4,5,9/2,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,12,7,7,9/2,6,7/2,4,7/2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3 -20,11,11,8,12,7,9,7,12,7,7,5,15/2,5,6,6,12,6,6,4,13/2,4,5,5,7,4,5,4,11/2,4,5,5,7,4,4,3,9/2,3,3,3,5,3,4,3,4,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,9/2,3,4,4,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,6,4,4,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,3,4,2,2,2,2,2,2,1,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,3,2,3,2,3,2,2,2,0,1,1,1,3/2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,5,3,3,2,7/2,2,3,3,5,3,4,3,5,3,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,2,5,3,3,2,7/2,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,3,9/2,3,4,5,10,6,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,9,5,4,3,9/2,4,5,5,10,6,6,5,17/2,6,8,8,21,11,11,7,9,6,7,6,9,5,6,5,8,5,6,6,10,6,6,5,7,4,4,4,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,4,3,5,4,5,5,5,3,3,2,5/2,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,3,2,7/2,3,4,4,7,4,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,3/2,2,2,2,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-14,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-3,-1,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,3,2,2,2,3/2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,4,3,3,3,9/2,3,3,3,5 -14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,5/2,3,2,3,7/2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,6,6,14,15/2,8,5,6,4,5,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,3,5/2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,4 -20,10,10,7,10,6,15/2,6,11,6,7,5,8,5,13/2,6,11,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,4,4,7,4,5,4,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,2,3,2,3,2,3,2,7/2,4,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,5/2,2,1,1,2,2,3,2,3,3,4,3,3,3,6,4,7/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,2,4,3,3,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,2,2,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,0,1,1,1,2,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,7/2,3,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,3,2,3,2,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,5,4,5,5,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,4,4,3,5,5,9,5,6,5,8,6,8,8,20,10,21/2,7,9,5,6,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,7/2,4,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,5,5,4,2,5/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,7/2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,5,3,3,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,7,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,1,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,5,3,7/2,3,5,4,9/2,4,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,1,1,3/2,2,1,1,1,1,2,2,2,1,1,1,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -20,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,3,2,3,3,4,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,5,4,7,4,4,7/2,5,7/2,5,5,8,5,6,5,8,6,8,8,20,10,10,7,9,5,6,6,10,11/2,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,5/2,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3/2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,7/2,4,3,5,3,4,4,6,4,4,3,5,4,5,9/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,3,2,2,2,4,3,3,3,5 -39,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,21,11,11,8,11,6,7,6,10,6,7,5,8,6,8,8,27/2,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,3,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-8,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,0,-1,0,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,7,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,8,9,8,13,9,14,14,38,20,20,14,20,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,23/2,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,6,9,6,7,6,11,6,7,6,9,6,8,8,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,5,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,8,8,8,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-26,-13,-13,-8,-13,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-8,-8,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,4,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,5,9 -20,11,11,8,11,13/2,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,3,2,4,3,4,3,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,5/2,4,5/2,3,3,4,3,4,7/2,6,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,1/2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,1,1,1,1,1,1,0,1/2,0,1/2,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,4,3,4,4,6,7/2,4,5/2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,5,7/2,5,5,5,3,3,3,4,5/2,3,5/2,3,2,3,5/2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,4,5,4,7,9/2,5,9/2,7,5,8,8,20,11,11,8,10,6,7,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,5/2,4,5/2,3,5/2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,7/2,5,4,5,5,5,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,3,3,5 -21,11,11,8,11,6,15/2,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,5,3,3,3,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,3,2,4,3,7/2,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,3,3,5,3,4,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,4,2,5/2,2,3,2,3,3,4,3,4,3,6,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,1,1,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,5/2,3,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,4,3,4,4,5,3,7/2,2,3,2,3,3,5,3,7/2,3,5,3,7/2,4,7,4,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,5,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,3,7,4,9/2,4,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,11/2,5,11,6,6,4,5,4,5,5,8,5,11/2,5,7,5,8,8,21,11,11,8,10,6,8,7,10,6,6,5,8,5,13/2,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,4,3,3,2,3,2,5/2,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,4,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,5,3,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,3,2,3/2,1,1,1,3/2,2,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,3/2,2,3,2,3,3,5 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,9/2,8,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,3,5/2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,7/2,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,3/2,2,3/2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3 -21,11,12,8,23/2,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,13/2,4,5,4,6,3,3,3,4,3,5,5,9,5,4,3,9/2,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,4,4,4,3,4,3,9/2,4,5,5,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,8,4,4,3,7/2,2,3,2,2,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,0,0,0,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,3,2,3,2,3,2,3,3,1,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3/2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,7,4,4,3,3,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,13/2,4,5,5,12,7,7,5,6,4,5,5,9,5,6,5,9,6,8,8,24,12,12,8,23/2,7,8,7,11,6,7,5,15/2,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,5,3,3,3,4,3,4,5,6,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,4,3,3,2,7/2,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,7/2,2,3,2,3,2,2,2,4,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,7/2,3,4,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,2,2,2,3/2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,9/2,4,6,6,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3/2,2,2,2,3 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,7/2,8,4,4,3,4,3,4,3,5,3,4,7/2,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,5/2,4,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2 -15,8,8,6,8,5,11/2,5,9,5,11/2,4,6,4,5,5,9,5,6,4,5,3,4,3,6,3,3,3,4,3,3,3,6,4,7/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,3,3,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,5/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,10,5,5,4,5,4,9/2,4,6,4,9/2,4,7,5,13/2,7,18,9,9,6,9,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,4,5,3,7/2,4,6,4,7/2,3,4,3,7/2,4,7,4,4,3,5,3,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,6,4,4,3,3,2,3,3,4,2,5/2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,0,-1,0,1,1,0,1,3/2,2,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,4,4,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2 -14,7,7,5,7,4,5,4,8,9/2,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-2,-1/2,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,13/2,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,2 -25,13,13,9,13,7,8,7,25/2,7,8,6,10,7,9,8,15,8,7,5,7,4,5,5,9,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,3,8,5,5,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,4,8,5,5,4,5,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,8,4,4,3,4,3,3,2,5/2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,7/2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,3,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,1,1,1,1,1,1,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,1,1,6,3,3,2,2,2,2,2,5/2,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,8,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,17,9,10,7,10,6,7,6,19/2,6,6,4,6,4,6,6,15,8,8,6,9,5,6,6,21/2,6,8,7,12,8,12,12,29,15,14,10,14,8,10,8,29/2,8,8,6,8,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,4,3,3,3,9/2,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,1,1,2,2,2,1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,5,3,3,2,3,2,1,1,1,1,2,2,3,2,3,3,5,3,3,2,2,1,1,1,3/2,2,2,2,3,3,4,4,2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,4,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3 -14,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,9/2,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,16,17/2,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,6,5,9,5,5,4,5,3,7/2,4,5,3,7/2,2,4,3,7/2,3,6,4,4,3,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,1,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,5,3,7/2,2,4,3,3,3,5,3,4,3,5,4,9/2,4,11,6,6,4,6,4,4,4,8,4,9/2,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,13/2,6,10,5,5,4,5,4,5,5,8,5,5,3,5,3,7/2,3,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,3,3,2,3,2,3,2,7/2,3,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,6,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,7/2,3,3,2,3,3,4,3,3,2,2,2,3,3,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,0,0,1,0,0,-1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,5/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2 -11,6,6,9/2,6,4,5,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,9,5,5,7/2,5,3,4,7/2,7,4,4,7/2,5,4,5,4,8,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -18,9,9,6,19/2,6,6,5,9,5,5,4,13/2,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,7/2,2,3,3,9,5,5,3,4,3,3,3,4,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,3,7/2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,0,2,2,2,2,5/2,2,4,4,7,4,4,3,7/2,2,3,2,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,7/2,3,4,4,7,4,4,3,5,3,4,4,5,3,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,1,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,7/2,2,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,3,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,5/2,2,2,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,6,6,14,8,8,6,15/2,5,6,5,11,6,6,5,17/2,6,7,7,14,7,7,5,15/2,5,6,5,10,6,7,6,19/2,7,10,10,25,13,13,9,13,8,9,8,13,7,8,6,8,5,6,6,11,6,6,4,13/2,4,5,4,7,4,5,4,11/2,4,6,5,10,5,5,4,11/2,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,9/2,3,4,3,5,3,3,3,9/2,3,4,3,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,5,7,4,4,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-3/2,0,0,0,0,1,1,1,3/2,2,2,1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,7/2,2,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,3/2,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,4 -12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,8,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,11/2,6,11/2,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -17,9,17/2,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,3,3,9,5,9/2,4,4,3,3,2,3,2,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,4,3,3,3,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,3,7/2,4,6,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,4,2,2,2,3,2,5/2,2,2,2,2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,7/2,3,5,4,11/2,6,14,8,8,5,7,5,6,6,11,6,13/2,5,8,5,7,7,13,7,13/2,5,7,5,6,6,10,6,7,6,10,7,10,9,25,13,25/2,8,13,8,9,8,13,7,15/2,5,8,5,13/2,6,10,6,11/2,4,6,4,9/2,4,8,5,5,4,6,4,6,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,7/2,3,6,3,3,2,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,1/2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,7/2,4,4,2,5/2,2,3,2,5/2,2,4,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,7/2,2,3,2,2,2,3,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4 -16,17/2,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,9,5,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,14,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,12,13/2,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,25/2,12,8,12,7,9,8,13,7,7,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,1,1,1,0,1/2,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,35/2,10,10,7,9,5,6,5,8,5,5,4,5,4,5,5,16,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,4,5,4,5,3,3,2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,3,4,4,8,5,6,5,9,6,9,9,11,6,6,4,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,6,5,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,0,0,0,0,-3/2,0,0,1,2,1,1,1,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,19/2,6,6,5,8,5,7,7,12,7,9,7,12,8,10,10,26,14,14,10,14,9,11,9,16,9,10,8,13,9,13,12,23,12,13,10,16,10,12,11,20,11,13,11,18,12,18,17,47,24,24,16,24,13,15,12,20,11,11,8,13,8,10,10,35/2,9,9,7,10,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,4,5,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,17/2,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,7/2,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,5,5,9,5,4,3,4,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,4,4,6,3,3,3,4,2,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-3,-3,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,7,4,5,4,5,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,5,6,5,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7 -16,9,9,6,9,11/2,6,11/2,9,5,6,5,7,5,6,5,10,6,6,4,5,3,3,3,5,3,3,5/2,3,5/2,3,3,9,5,5,3,5,3,3,3,3,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,6,4,4,5/2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,1,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1/2,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,5/2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,6,7,6,10,7,10,19/2,25,13,13,9,13,7,8,7,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,3,5/2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,4,3,5,3,4,4,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4 -17,9,19/2,7,10,6,13/2,6,10,6,6,5,7,5,6,5,10,6,11/2,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,9,5,5,3,5,3,7/2,3,3,2,2,2,2,2,5/2,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,4,4,3,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,5,3,7/2,4,6,4,11/2,5,7,4,7/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3,3,3,2,7/2,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,7,5,13/2,6,15,8,8,6,8,5,6,6,9,5,6,5,8,6,15/2,7,12,7,15/2,6,9,6,15/2,7,12,7,8,7,11,8,21/2,10,27,14,14,10,13,8,17/2,7,11,6,7,5,8,5,13/2,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,9/2,4,6,4,7/2,3,4,3,4,3,6,3,3,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,0,0,1/2,0,1,1,1,1,-1,0,1/2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-3/2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,0,0,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,4,4,3,7/2,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5 -13,7,7,5,7,4,5,9/2,8,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,9/2,7,5,6,6,10,6,6,5,9,6,8,8,20,11,11,7,10,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,7,4,4,3,4,3,4,3,4,5/2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -20,11,11,8,21/2,6,7,6,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,4,3,5,4,5,5,10,6,6,4,11/2,4,4,3,4,2,2,2,3,2,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,6,4,4,4,13/2,5,7,7,8,4,4,3,9/2,3,4,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,1,1,1,1,1,1,2,5/2,2,2,2,5,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,11/2,4,6,5,6,3,3,2,7/2,2,2,2,5,3,4,3,4,3,4,4,3,2,2,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,18,9,9,6,19/2,6,7,7,10,6,7,6,9,6,9,9,14,8,9,7,10,7,9,9,16,9,10,8,14,10,14,13,33,17,17,11,31/2,9,10,8,13,7,8,6,19/2,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,-1,0,1,1,1,1,0,0,-1,0,0,1,1,1,2,2,4,3,3,2,2,2,2,2,4,3,3,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,11/2,4,6,6,9,5,5,4,9/2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-2,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-1,0,0,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,7/2,2,3,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,6,6,5,3,3,3,5,3,4,4,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,4,4,6,4,4,4,11/2,4,6,6,7,4,5,4,11/2,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,4,4,5,3,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,5/2,2,3,3,3,2,3,2,7/2,3,4,3,5 -13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,5/2,3,3,5,3,4,3,4,5/2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,6,10,6,7,6,9,13/2,9,9,21,11,11,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,5/2,3,5/2,3,2,3,3,3,2,3,2,4,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3 -18,10,19/2,7,9,6,7,6,10,6,6,5,7,4,11/2,5,10,6,6,4,6,4,9/2,4,6,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,5/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,6,3,3,3,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,4,4,7,5,13/2,6,14,8,15/2,6,8,5,13/2,6,9,6,13/2,5,8,5,7,7,12,7,7,5,9,6,15/2,7,13,8,9,8,13,9,12,12,28,14,14,9,13,8,17/2,7,12,7,7,5,8,5,7,6,12,6,13/2,4,7,4,5,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,5/2,2,3,2,3,3,3,2,7/2,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1/2,0,1,1,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,4,3,7/2,3,5,4,9/2,4,5,3,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,4,3,4,3,9/2,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,3,2,7/2,4,4,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4 -17,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,9,11/2,6,5,8,5,7,7,11,6,7,5,8,5,7,7,12,7,9,7,12,8,11,11,26,13,13,17/2,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,5/2,4,3,4,3,4,3,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,5/2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4 -33,17,18,12,18,10,12,10,33/2,9,10,7,10,7,9,8,18,10,10,7,9,6,7,6,21/2,6,8,6,10,6,8,8,14,7,7,5,8,5,6,4,13/2,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,7/2,2,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15/2,4,5,4,7,5,8,8,14,8,8,6,8,5,5,4,9/2,3,4,3,4,3,4,4,3,2,1,1,1,1,2,2,3/2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,3,2,3,2,3,2,2,2,3/2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,5/2,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,2,7/2,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,13/2,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,8,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,23/2,7,8,6,10,7,11,11,23,12,12,9,13,8,11,10,17,10,11,8,13,9,13,13,21,11,12,9,14,9,13,12,45/2,13,15,12,20,14,21,21,48,24,24,16,24,13,15,12,41/2,11,12,9,14,9,11,11,21,11,12,9,13,8,9,8,27/2,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,19/2,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,9/2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,6,4,5,5,8,4,4,3,4,3,3,3,9/2,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,15/2,4,5,4,7,5,8,8,12,6,6,4,5,3,2,2,5/2,2,1,1,1,1,1,1,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,5,4,6,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,17/2,5,6,5,7,5,6,5,7,4,3,2,3,2,3,3,5,3,3,3,5,4,5,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6 -18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,7/2,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,5/2,3,2,2,2,3,2,3,3,2,3/2,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,7/2,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,11/2,8,8,12,7,7,6,9,6,8,7,13,8,9,7,12,8,12,12,27,14,14,10,14,8,9,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,9/2,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -21,11,23/2,8,11,7,8,7,10,6,13/2,5,6,4,11/2,5,11,6,13/2,4,6,4,5,5,8,5,11/2,4,7,5,6,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,6,3,3,3,3,2,2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,7/2,3,5,4,11/2,6,9,5,5,4,6,4,7/2,3,3,2,5/2,2,3,2,3,3,3,2,2,1,2,2,3/2,1,2,1,1,1,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,-1,0,0,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,3,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,9/2,4,6,4,5,5,8,4,9/2,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,17/2,6,9,6,15/2,7,12,7,15/2,6,9,6,9,9,15,8,9,7,11,7,10,9,16,9,21/2,8,14,10,14,14,32,16,33/2,12,16,9,21/2,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,8,5,11/2,5,7,5,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,7/2,2,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,4,5,3,4,4,8,5,5,3,4,3,7/2,4,6,4,4,3,6,4,9/2,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,4,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,4,3,3,2,3,2,3,3,5,3,3,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4 -18,19/2,10,7,9,11/2,6,6,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,5,5,7/2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3/2,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,7,11/2,8,5,7,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,9/2,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,5/2,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1/2,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,31/2,9,10,9,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,8,13,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,5,8,4,4,3,3,2,2,2,5,3,4,3,7/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,6,4,4,3,7/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,3,2,3,3,4,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,15/2,4,4,3,5,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,1,1,3/2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,5/2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,9/2,4,5,5,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,13/2,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,25/2,8,12,12,23,12,13,9,13,8,10,9,18,10,12,9,29/2,10,13,12,22,12,13,10,16,10,13,13,24,14,16,13,21,14,21,21,47,24,24,16,24,14,16,14,22,12,13,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,8,7,11,7,10,9,14,7,7,5,15/2,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,11/2,4,5,5,7,4,5,4,6,4,6,5,10,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,13/2,4,6,6,10,5,5,4,5,3,3,3,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-14,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,-1,-2,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,3,3,9/2,3,4,4,9,5,5,4,11/2,4,4,3,3,2,3,2,7/2,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,5,7,7,10,6,6,4,13/2,4,4,4,8,5,5,5,8,5,7,7,11,6,6,4,11/2,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,13/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,4,3,7/2,2,3,3,4,3,3,3,11/2,4,5,5,7,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4 -21,11,11,8,10,6,7,6,10,6,6,4,7,9/2,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,7/2,5,3,3,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,5/2,3,2,3,2,2,5/2,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,4,5,9/2,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,9,6,9,6,7,13/2,12,7,8,6,10,7,9,9,16,9,9,7,11,7,9,9,16,19/2,11,9,15,10,14,14,32,16,16,11,16,19/2,11,9,15,8,9,13/2,10,6,8,15/2,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,6,10,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,5/2,3,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1/2,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,7/2,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,3,2,4,3,3,5/2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,15,9,21/2,9,15,8,17/2,6,10,6,8,8,15,8,17/2,6,9,5,6,6,10,6,13/2,6,9,6,17/2,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,7/2,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,5,4,7,5,13/2,7,13,7,13/2,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-3/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3,3,4,2,2,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,7/2,2,4,3,3,3,5,3,4,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,13/2,6,12,6,13/2,5,7,5,6,6,10,6,6,5,7,5,13/2,6,13,7,7,5,7,5,13/2,6,12,7,8,7,12,8,12,12,22,12,25/2,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,27/2,10,17,11,14,13,24,14,31/2,13,22,15,21,21,47,24,24,16,24,14,16,13,23,12,25/2,9,14,9,12,11,20,11,11,8,11,7,17/2,7,12,7,8,6,10,7,9,9,15,8,7,5,7,5,6,5,9,5,11/2,4,7,4,11/2,6,10,6,6,4,6,4,11/2,5,8,5,11/2,4,6,4,13/2,6,10,6,13/2,4,7,4,4,4,7,4,4,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,3,5,3,7/2,3,4,2,5/2,2,4,3,7/2,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,10,6,11/2,4,5,3,7/2,3,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,2,1,1/2,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-6,-3,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,7/2,3,4,3,5,5,8,4,4,3,4,3,7/2,3,4,3,3,3,4,3,3,3,6,3,3,2,4,3,7/2,3,5,3,7/2,4,6,4,13/2,6,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,13/2,6,11,6,6,4,6,4,9/2,4,7,4,9/2,4,7,5,7,7,12,6,13/2,4,6,4,4,3,5,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,4,3,7/2,3,5,4,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,2,2,3,2,5/2,2,3,2,3,3,4 -31,16,16,11,15,9,10,9,15,8,8,6,10,13/2,9,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,8,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,5/2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,5/2,3,7/2,6,4,5,4,7,5,6,7,13,7,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,3/2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,6,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,5/2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,7,6,12,7,8,7,12,8,12,12,22,12,12,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,21/2,17,11,14,13,24,14,16,13,22,15,22,22,47,24,24,16,24,14,16,13,23,12,13,9,14,9,12,11,19,10,11,8,11,7,8,7,13,7,8,6,10,7,9,8,15,8,8,5,7,5,6,5,9,5,6,9/2,7,9/2,6,6,10,6,6,4,6,4,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,7,4,4,4,7,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3,5,3,4,3,4,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4 -60,31,31,21,30,17,20,17,30,16,17,13,20,13,17,16,31,16,17,12,17,10,12,11,20,11,12,10,17,12,17,17,32,16,16,11,15,9,11,9,15,8,9,6,9,6,9,8,15,8,9,7,11,7,9,8,13,8,9,8,14,10,14,13,25,13,14,10,14,8,10,9,17,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,13,51/2,14,14,10,15,9,11,10,17,10,11,8,13,8,10,10,18,10,10,7,11,7,8,7,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,13,10,15,9,10,9,16,9,10,7,11,7,10,10,18,9,9,7,10,6,7,6,9,5,6,5,8,6,8,8,15,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,3,4,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,2,2,3,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,39/2,10,10,8,12,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,10,6,8,8,15,9,11,10,17,12,18,19,37,19,19,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,12,22,13,15,12,21,14,21,21,40,21,22,15,23,14,17,14,25,14,16,13,22,14,20,19,37,20,21,16,25,16,22,21,41,23,27,23,41,28,42,42,92,46,46,31,46,26,31,26,47,25,26,19,31,19,26,24,44,23,23,16,23,14,17,14,25,14,16,13,22,14,20,20,38,19,19,13,19,11,14,12,20,11,11,8,13,8,11,11,21,11,12,9,13,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,10,12,10,17,9,10,8,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,19,10,11,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,8,29/2,8,8,6,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,7,13,8,9,8,14,9,13,13,25,13,13,9,14,8,9,7,12,7,7,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,5,7,4,5,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,4,5,4,7 -31,16,16,11,16,9,10,9,16,9,9,7,11,7,9,9,16,17/2,9,6,9,11/2,6,6,11,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,5,4,5,9/2,8,5,5,4,6,4,5,4,7,4,5,5,7,5,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,7,9/2,6,6,9,5,5,4,6,4,5,4,7,9/2,5,5,8,6,8,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,5/2,4,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,5,5,10,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,7/2,5,7/2,4,4,8,5,6,5,9,13/2,10,10,19,10,10,7,11,13/2,8,7,12,7,7,6,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,11,20,11,11,8,12,7,9,15/2,13,15/2,8,7,12,8,11,10,19,10,11,17/2,13,8,11,11,21,12,14,12,21,15,22,22,47,24,24,16,24,14,16,14,24,13,14,10,16,10,14,12,23,12,12,8,12,7,9,8,13,8,9,7,11,15/2,10,10,20,10,10,7,10,6,7,6,11,6,6,5,7,9/2,6,6,11,6,6,5,7,9/2,6,5,8,5,6,9/2,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,8,5,6,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,7/2,5,3,4,7/2,6,4,4,7/2,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,5/2,4 -31,16,16,11,16,9,21/2,9,16,9,9,7,11,7,19/2,9,16,8,17/2,6,9,6,13/2,6,11,6,7,6,9,6,9,9,17,9,17/2,6,8,5,6,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,4,4,6,4,5,5,7,5,8,8,14,8,8,6,8,5,11/2,5,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,9/2,4,6,4,13/2,6,11,6,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,4,4,7,4,9/2,3,5,4,9/2,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,11/2,5,9,5,11/2,4,7,4,11/2,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,15/2,7,13,7,15/2,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,5,4,6,5,7,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,8,4,7/2,3,4,3,3,3,5,3,5/2,2,4,2,5/2,2,5,3,5/2,2,2,2,3/2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,5,5,10,6,6,5,6,4,9/2,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,8,4,4,3,4,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,6,5,9,6,19/2,10,19,10,10,7,11,6,15/2,6,12,7,7,6,8,5,7,7,13,7,15/2,6,8,5,7,7,11,7,8,7,11,8,11,11,20,10,21/2,8,12,7,17/2,7,13,8,17/2,7,12,8,11,10,19,10,23/2,9,13,8,11,11,22,13,15,13,22,15,22,22,47,24,24,16,24,14,33/2,14,24,13,27/2,10,16,10,27/2,12,23,12,12,8,12,7,9,8,13,8,9,7,11,8,21/2,10,20,10,10,7,10,6,7,6,11,6,6,5,6,4,6,6,11,6,13/2,4,7,4,11/2,5,9,5,11/2,4,8,6,8,8,15,8,9,6,8,5,6,5,9,5,11/2,4,8,5,6,6,11,6,13/2,5,6,4,11/2,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,7/2,2,3,2,7/2,4,7,4,9/2,4,5,4,9/2,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,5,3,3,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,4,3,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,13,7,7,5,7,4,5,4,7,4,9/2,3,4,3,4,4,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,4,5,5,8,4,9/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3 -21,11,11,8,11,13/2,8,6,11,6,6,5,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,7/2,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,5/2,4,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,32,17,17,23/2,17,10,12,10,16,9,10,7,11,7,9,8,16,8,8,6,8,5,7,6,9,11/2,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,5/2,5,3,3,3,4,3,4,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,5/2,3,5/2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,5/2,3,3,4,5/2,2,2,3,5/2,3,3,6,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -30,15,15,11,16,9,11,9,16,9,9,7,21/2,7,10,9,16,9,9,6,9,6,7,6,10,6,6,5,9,6,9,9,17,9,10,7,19/2,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,5,4,13/2,5,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,13/2,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,11/2,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,5,4,7,5,8,8,12,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,9,5,6,4,13/2,4,5,5,8,5,5,4,15/2,6,8,8,14,8,8,6,15/2,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,4,3,4,3,5,4,6,6,7,4,4,3,3,2,3,3,5,3,3,2,5/2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,4,3,4,4,11/2,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,11/2,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,4,5,5,9,6,7,6,9,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,11,7,10,10,19,10,10,7,21/2,6,8,7,13,7,8,6,21/2,7,10,10,19,11,12,9,29/2,10,13,12,22,13,15,13,22,15,22,22,49,25,25,17,25,14,16,14,24,13,13,10,31/2,10,12,12,24,12,12,8,25/2,8,10,8,14,8,9,7,21/2,7,10,10,19,10,10,7,19/2,6,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,6,5,9,5,5,4,7,5,6,6,11,6,6,4,11/2,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,9/2,3,4,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3 -17,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,6,11/2,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,8,5,5,7/2,5,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,5/2,4,4,4,5/2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,7/2,4,7/2,5,4,6,6,12,13/2,6,9/2,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,6,4,4,4,7,9/2,6,6,11,6,6,4,6,4,5,4,8,9/2,5,4,6,9/2,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,9,6,7,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 -21,11,11,8,12,7,15/2,6,11,6,13/2,5,7,5,7,7,12,6,13/2,5,7,4,11/2,5,8,5,5,4,6,4,13/2,6,13,7,7,5,6,4,9/2,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,4,11/2,5,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,5,7,4,9/2,4,5,3,4,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,2,3,5,3,7/2,2,3,2,3,3,5,3,4,3,5,4,11/2,6,9,5,5,4,6,4,9/2,4,6,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,3,3,6,4,4,4,5,4,6,6,10,6,11/2,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,5,3,4,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,9/2,4,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,3,4,4,6,4,4,4,6,5,7,7,15,8,15/2,5,8,5,6,5,8,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,4,4,6,4,9/2,4,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,15/2,7,12,7,8,6,10,7,9,8,15,9,10,9,15,10,31/2,16,33,17,35/2,12,17,10,23/2,10,17,9,19/2,7,11,7,9,8,17,9,17/2,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,5,4,11/2,6,12,6,13/2,5,6,4,5,4,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,7/2,3,6,4,7/2,3,5,4,9/2,4,8,5,5,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,2,3,2,3,3,6,4,7/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,2,4,3,3,2,4,3,3,3,4,3,7/2,3,6,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,4,3,7/2,3,4,3,5,5,8,5,5,4,4,3,4,3,5,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3 -18,9,9,7,10,6,7,6,9,5,5,4,6,4,6,6,11,6,6,9/2,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,5/2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,11/2,9,6,8,7,13,8,9,8,13,9,13,27/2,28,15,15,10,14,8,10,8,14,8,8,6,9,6,8,7,14,7,7,5,8,5,6,5,9,5,6,4,7,9/2,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,3,5/2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -31,16,16,11,16,9,11,9,31/2,8,8,6,10,7,10,9,19,10,11,8,12,7,9,8,13,8,9,7,11,7,10,10,20,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,15/2,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,15/2,5,6,5,7,5,6,6,8,4,4,3,4,3,4,3,9/2,3,4,3,5,4,5,5,7,4,4,2,2,2,2,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,11/2,4,5,5,8,6,8,7,14,7,7,5,7,4,5,5,17/2,5,6,4,6,4,5,4,8,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,9,5,6,4,6,4,5,5,17/2,5,6,5,9,7,10,11,22,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,5,6,6,19/2,6,7,7,12,8,12,11,18,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,11,9,14,9,13,12,45/2,13,16,14,24,16,24,24,50,26,26,18,26,15,17,14,49/2,13,14,10,16,10,13,12,24,13,13,9,14,9,11,9,16,9,10,7,11,7,10,10,19,10,10,8,12,7,9,7,12,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,7,18,9,9,6,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,5,7,4,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,3,3,2,7/2,2,2,2,4,3,3,3,9,5,5,4,5,4,5,4,7,4,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,3,2,3,3,9/2,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,11/2,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,3,3,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,2,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,11/2,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,13/2,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,15/2,4,5,4,6,4,5,5,7,4,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5 -17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,11/2,10,6,6,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,5/2,4,3,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,3,3,3,2,3,3,4,3,5,4,8,4,4,3,4,3,3,3,5,3,4,5/2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,13/2,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,6,10,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,9,8,13,9,13,13,27,14,14,10,14,8,9,8,14,15/2,8,6,9,6,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,5/2,4,3,3,3,4,3,3,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -18,10,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,11,6,13/2,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,5,3,7/2,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,7/2,3,3,2,2,2,2,2,3,3,6,3,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,7/2,2,4,3,7/2,3,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,4,4,5,3,4,3,4,3,7/2,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,5/2,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,4,2,5/2,2,3,2,3,2,4,2,5/2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,3,3,2,3,3,4,3,5,5,9,5,9/2,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,5/2,2,5,3,4,3,4,3,7/2,3,6,4,4,3,6,4,6,7,13,7,13/2,4,6,4,9/2,4,7,4,4,4,5,4,9/2,4,7,4,4,3,6,4,4,4,6,4,9/2,4,7,5,7,7,11,6,6,5,6,4,11/2,5,8,5,6,5,6,4,6,6,11,6,13/2,6,9,6,15/2,7,14,8,19/2,8,15,10,29/2,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,7,14,8,15/2,6,8,5,7,6,9,5,11/2,4,6,4,6,6,12,6,6,5,7,4,11/2,4,7,4,7/2,3,4,3,7/2,3,5,3,7/2,2,4,3,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,7/2,3,5,4,9/2,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,7,4,7/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,3,3,2,3,3,6,4,7/2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-5/2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,4,2,2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3 -14,8,8,6,8,5,5,9/2,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,7/2,5,5,9,5,5,3,5,3,3,3,4,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,3/2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,7,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -22,12,12,9,13,8,9,7,13,7,8,6,17/2,6,8,7,13,7,8,6,17/2,5,6,6,10,6,6,5,15/2,5,6,6,13,7,7,5,7,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,2,2,2,3,2,2,2,7/2,3,4,5,12,6,6,4,11/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,3,3,6,4,4,2,5/2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,13/2,4,5,5,6,4,4,3,5,3,4,4,8,4,4,4,11/2,4,4,4,6,4,5,4,6,4,6,6,8,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,7/2,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,9/2,3,4,4,5,3,2,2,2,2,2,2,5,3,3,3,4,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,10,5,5,4,6,3,3,3,6,3,3,2,3,3,4,4,5,3,3,2,3,3,4,4,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,7,4,5,4,13/2,5,7,8,15,8,8,6,8,5,5,5,8,5,6,5,7,5,6,6,9,5,6,4,11/2,4,4,4,6,4,5,4,15/2,6,8,8,12,7,7,5,7,4,5,5,9,5,6,5,17/2,6,7,7,14,8,8,6,21/2,7,10,9,16,10,12,10,18,12,17,17,35,18,18,12,18,11,13,11,18,10,10,8,12,8,10,9,17,9,10,7,19/2,6,7,7,12,6,6,5,15/2,6,8,7,15,8,8,6,15/2,5,6,5,7,4,5,4,11/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,3,3,4,3,4,4,13,7,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,5,3,4,3,4,3,4,5,9,5,4,3,4,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,3,4,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,3,4,4,3,2,2,2,2,2,3,3,4,2,2,2,7/2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,3,2,2,2,3,2,3,3,3,2,2,2,7/2,3,4,4,4,3,3,2,7/2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,2,2,2,7/2,2,2,2,5,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,4 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,5/2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,7/2,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,9/2,7,5,6,6,10,6,8,7,12,8,11,11,22,12,12,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,8,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,5/2,4,5/2,3,3,6,7/2,3,3,4,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3 -19,10,10,7,11,7,8,6,11,6,13/2,5,8,5,7,6,12,7,7,5,8,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,9/2,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,4,4,10,6,11/2,4,4,3,4,4,5,3,7/2,3,4,3,7/2,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,5/2,3,5,3,3,2,3,2,7/2,3,5,3,4,3,5,3,4,4,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,7/2,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,5,3,3,3,5,3,5/2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,5,3,7/2,3,4,2,5/2,3,5,3,3,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,4,3,7/2,3,5,4,5,5,9,5,9/2,3,5,3,3,2,5,3,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,6,4,4,3,4,3,7/2,3,6,4,4,4,6,4,13/2,7,12,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,9/2,4,7,4,5,4,6,4,4,4,6,4,9/2,4,7,5,13/2,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,13/2,6,13,7,15/2,6,10,6,8,8,14,8,21/2,9,16,11,31/2,16,31,16,31/2,10,15,9,11,9,15,8,17/2,7,10,6,17/2,8,14,8,15/2,6,8,5,13/2,6,10,6,6,5,8,5,13/2,6,13,7,13/2,4,6,4,9/2,4,6,4,4,3,5,3,3,3,5,3,7/2,2,4,3,4,3,5,3,7/2,2,3,2,7/2,4,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,3,4,4,2,2,3/2,2,2,2,3/2,2,3,2,3,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,7/2,3,5,3,4,3,9,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3 -18,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,5,4,5,5,9,5,4,3,4,3,3,2,4,5/2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,8,6,10,6,8,8,14,8,10,17/2,15,10,15,15,30,15,15,10,15,9,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,5/2,3,5/2,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,5/2,3,2,2,2,5,3,4,3,4,3,4,3,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,5,8,5,6,5,15/2,4,5,4,6,4,4,3,5,3,4,4,7,5,7,7,19,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,19/2,6,6,4,6,4,4,4,6,4,5,4,6,4,5,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,4,4,15/2,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,16,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,25/2,7,7,5,6,4,5,5,8,5,6,5,8,6,9,9,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,5,4,5,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,3,5,3,4,4,6,4,5,5,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,21/2,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,16,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,11,22,11,11,8,11,7,8,8,14,7,7,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,11,11,19,10,10,7,10,6,8,7,12,7,8,7,12,8,12,12,45/2,12,13,10,16,10,14,13,24,14,17,15,26,18,27,27,57,29,29,19,28,16,19,16,28,15,16,12,19,12,15,13,24,13,13,10,15,9,11,10,18,10,11,9,14,9,12,11,21,11,10,7,10,6,8,7,11,6,7,5,8,5,5,5,8,5,5,3,4,3,3,3,6,4,4,4,7,5,7,6,18,9,9,6,8,5,6,5,8,5,5,4,5,4,6,6,19/2,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,13/2,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,5,7,7,3,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,16,8,8,6,9,5,6,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,10,6,6,5,7,4,5,4,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6 -18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,6,11,6,6,9/2,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,7,10,13/2,8,7,13,7,7,11/2,8,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,7,6,11,6,13/2,5,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,4,9/2,4,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,3,6,4,7/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,3,4,4,9,5,9/2,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,4,11/2,6,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,3,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,1/2,0,0,0,0,1,2,2,3/2,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,4,3,5,4,9/2,5,9,5,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,4,6,4,5,5,12,6,6,4,7,4,5,4,7,4,4,3,4,3,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,6,6,10,6,11/2,4,6,4,5,4,8,5,11/2,4,7,5,7,7,12,7,7,6,10,6,17/2,8,13,8,19/2,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,13/2,6,12,6,13/2,5,6,4,5,4,6,4,4,3,5,3,4,4,4,3,7/2,2,2,2,2,2,5,3,3,3,4,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,3,2,7/2,4,4,3,7/2,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,7,4,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-5,-2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,2,2,5/2,2,2,2,3,3,9,5,9/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4 -14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,4,5/2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,2,3/2,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,6,4,4,3,4,3,4,9/2,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3 -21,11,10,7,10,6,7,6,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,15/2,5,6,5,7,4,4,3,4,3,4,3,4,3,3,2,7/2,2,3,2,4,3,4,4,11/2,4,5,5,13,7,7,5,6,4,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,7/2,2,3,2,5,3,4,3,7/2,3,4,4,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,9/2,3,4,4,9,5,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,4,3,4,4,7,4,4,3,5,3,3,2,5,3,4,3,7/2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,3,2,3,2,7/2,2,3,3,0,0,0,0,0,0,0,0,1,1,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,6,4,4,4,11/2,4,5,5,8,5,5,3,4,3,3,3,5,3,2,2,5/2,2,3,3,7,4,4,3,3,2,3,2,3,2,3,3,11/2,4,4,4,3,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,11/2,4,5,5,13,7,7,5,15/2,4,5,5,7,4,4,3,5,4,5,5,9,5,6,4,11/2,4,4,4,9,5,6,4,13/2,5,7,7,12,7,7,5,15/2,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,21/2,7,9,9,16,9,11,10,17,12,17,17,34,17,17,12,17,10,11,9,17,9,10,8,23/2,8,10,9,15,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,11,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,4,3,9/2,4,5,5,8,5,5,4,9/2,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3/2,2,3,3,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-1,0,0,0,1/2,1,1,1,-6,-2,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,7/2,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,4,10,5,5,4,9/2,3,3,2,5,3,2,2,2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,3,2,7/2,3,4,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,7/2,2,2,2,4,3,4,3,9/2,3,3,3,5 -13,7,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,5,7/2,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,11/2,9,5,5,4,6,7/2,4,4,6,4,4,3,5,7/2,5,9/2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -16,8,8,6,7,4,11/2,5,8,5,5,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,4,3,3,3,4,3,4,4,11,6,11/2,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,8,4,4,3,5,3,4,4,5,3,7/2,3,4,3,7/2,4,4,3,7/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,7/2,3,3,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,7/2,3,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,3,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,5,3,7/2,4,6,4,4,3,6,4,11/2,5,10,6,13/2,4,7,4,5,5,8,5,11/2,4,7,5,13/2,6,10,6,13/2,5,8,5,7,7,12,7,9,8,13,9,27/2,13,26,14,14,9,13,8,9,7,12,7,7,6,9,6,15/2,7,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,5,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,8,4,9/2,4,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,2,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,-2,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,4,3,3,3,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,5/2,2,2,2,3/2,1,1,1,1/2,0,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,5/2,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -14,7,7,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,5/2,3,7/2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,9/2,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,6,7/2,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 -24,12,12,8,12,7,8,7,11,6,7,6,9,6,8,7,15,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,8,5,5,4,13/2,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,9/2,4,5,5,8,6,8,8,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,7,4,4,3,5,4,5,5,19/2,6,6,5,9,6,8,8,14,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,2,2,2,7/2,2,2,2,4,3,4,4,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,11/2,4,4,4,6,4,6,5,6,3,3,3,4,3,4,4,11/2,4,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,6,16,9,9,7,10,6,7,6,9,5,6,5,7,5,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,6,8,8,19,10,10,7,10,6,8,7,25/2,8,9,7,12,8,11,11,18,10,10,8,12,8,10,10,39/2,12,14,12,21,14,21,21,42,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,17,9,10,8,12,7,9,8,27/2,8,8,6,10,7,9,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,12,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,3,3,4,4,11/2,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,6,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,11,6,6,4,6,4,5,4,13/2,4,4,3,4,3,4,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,6,3,3,3,4,2,2,2,5/2,2,2,1,1,1,1,2,-1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,1,1,3/2,2,2,1,1,1,1,2,4,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,1,1,1/2,0,0,0,0,1,1,2,7,4,4,3,4,2,2,2,7/2,2,2,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,9,5,6,4,6,4,4,3,5,3,3,2,3,2,3,4,8,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,9/2,2,2,2,2,1,1,1,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,5,5,8 -13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,4,7/2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,9/2,5,4,7,5,7,13/2,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,11/2,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,5/2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5 -15,8,8,6,8,5,6,5,8,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,6,4,9/2,4,6,4,11/2,6,10,6,6,4,5,3,7/2,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,6,6,11,6,6,4,6,4,4,4,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,5,3,4,3,5,3,3,3,4,3,3,3,3,3,4,4,6,4,5,4,6,4,11/2,6,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,3,2,5,3,4,3,4,2,2,2,3,2,3/2,2,2,2,5/2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,3,9/2,4,6,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,4,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,5,3,4,3,3,2,3,3,4,2,2,2,4,3,9/2,4,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,13/2,5,6,4,11/2,5,8,5,11/2,4,8,6,8,7,12,7,7,6,9,6,15/2,7,13,8,9,8,14,10,27/2,14,26,14,27/2,9,13,8,17/2,7,13,7,7,6,8,6,8,7,12,6,6,5,8,5,5,5,9,5,5,4,7,4,11/2,5,10,5,5,4,5,3,3,3,6,4,7/2,3,4,3,4,4,7,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,5/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,4,4,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,3,3,7,4,9/2,3,4,3,7/2,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,7/2,4,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,4,2,2,2,2,1,1,1,3,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,3/2,2,2,2,3/2,2,3,2,3,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6 -13,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,7/2,5,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,11/2,6,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,21,11,11,15/2,11,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,7/2,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,2,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6 -22,11,11,8,21/2,6,8,6,11,6,7,5,15/2,5,6,5,10,6,6,4,13/2,4,6,5,8,5,6,5,9,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,6,4,5,4,7,5,7,8,15,8,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,6,4,11/2,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,3,3,5,3,3,2,3,3,4,4,7,4,4,4,11/2,4,4,4,12,7,8,6,17/2,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,11/2,4,4,3,7,4,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,7,4,5,4,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,3,6,4,4,3,9/2,3,4,3,5,3,3,3,4,3,5,5,0,0,0,1,3/2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,5/2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,5,4,6,6,8,5,5,4,11/2,4,4,3,5,3,3,2,3,2,3,4,5,3,3,2,3,2,2,2,6,4,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,3,2,7/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,3,3,5,4,5,6,13,7,7,5,8,5,5,4,6,4,4,4,13/2,4,6,6,12,6,6,5,15/2,5,6,6,10,6,6,6,19/2,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,37/2,10,12,10,18,10,10,7,11,7,10,10,17,9,9,6,17/2,5,6,6,12,7,8,6,17/2,6,8,7,13,7,7,5,13/2,4,5,4,7,4,5,4,11/2,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,11/2,4,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,7/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,9/2,4,5,5,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,3,3,9,5,6,4,11/2,4,4,4,6,4,4,3,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,4,-1,0,0,1,1,1,1,1,0,1,1,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,4,4,6,4,6,6,11 -15,8,8,5,8,9/2,6,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,2,2,2,3,2,3,5/2,3,3,4,7/2,5,3,4,3,4,5/2,3,3,4,3,3,5/2,3,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,8,5,5,4,6,7/2,4,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,3,4,3,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,5/2,4,7/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,5/2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,4,5,7/2,4,4,7,4,4,4,7,9/2,6,6,11,6,6,4,7,4,5,4,7,4,5,4,7,5,7,13/2,11,6,7,11/2,8,11/2,7,7,12,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,7/2,6,7/2,4,3,4,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,3,4,3,5,5,8 -22,11,21/2,7,11,6,15/2,6,10,6,11/2,4,6,4,11/2,5,10,6,11/2,4,6,4,5,5,8,5,11/2,5,8,5,7,7,12,6,13/2,5,7,4,9/2,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,9/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,3,3,4,3,3,3,4,3,9/2,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,7,4,4,3,5,3,4,4,12,7,7,5,8,4,9/2,4,7,4,4,3,5,3,4,4,5,3,7/2,3,5,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,6,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,3,3,2,2,2,2,3,7,4,9/2,4,4,3,3,3,5,3,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,7/2,4,6,4,7/2,3,4,3,4,4,6,4,5,4,6,4,13/2,7,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,4,3,7/2,3,5,3,4,3,5,4,9/2,4,7,4,9/2,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,5,3,4,4,5,3,7/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,5,4,6,4,6,6,11,6,13/2,5,7,5,6,6,10,6,13/2,6,10,6,17/2,8,16,8,8,6,10,6,15/2,6,11,6,15/2,6,10,7,10,9,16,9,10,8,12,8,21/2,10,17,10,23/2,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,6,10,6,6,5,7,5,13/2,6,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,9,5,5,3,5,3,7/2,3,5,3,7/2,4,6,4,6,5,9,5,5,4,6,4,9/2,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,7/2,4,8,4,9/2,4,5,3,3,3,5,3,3,3,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,0,1,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-4,-4,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,4,4,-1,0,1,1,1,1,1,1,0,1,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,3,5,3,4,4,6,5,7,7,12 -21,11,10,7,11,6,7,6,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,9/2,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,9/2,8,4,4,7/2,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,4,8,5,5,4,7,5,7,7,12,6,6,5,6,4,4,4,7,4,4,7/2,5,3,4,4,6,3,3,5/2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,9/2,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,11/2,9,6,8,8,16,17/2,9,6,10,6,8,13/2,11,6,7,6,10,7,10,9,17,9,10,8,12,8,10,19/2,17,10,12,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,9,9,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,12 -41,21,22,15,23,14,17,14,25,13,14,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,12,8,12,12,45/2,12,12,9,13,8,10,9,16,9,9,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,14,10,14,13,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,7,6,9,5,5,4,7,5,7,8,29/2,8,8,6,9,5,6,6,10,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,7,6,9,6,7,7,13,7,8,7,11,8,12,12,22,12,12,8,12,7,8,6,10,6,6,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,5,13,7,7,5,8,5,6,5,8,5,5,3,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,6,5,8,6,8,8,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,11,8,12,12,12,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,7,7,27/2,8,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,10,21,11,11,7,10,6,7,7,12,7,8,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,9,15,10,15,16,31,16,16,11,17,10,13,12,22,12,14,12,20,13,18,18,35,18,19,14,23,14,18,17,32,18,21,18,32,22,33,33,67,34,34,22,32,18,21,18,32,17,18,13,20,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,12,22,12,12,9,13,8,9,8,14,8,8,6,10,7,10,10,19,10,10,7,11,7,9,8,15,9,10,8,12,8,11,10,17,9,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,6,5,7,7,25/2,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,2,2,2,1,1,1,2,2,4,3,3,3,5,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,9,9,14,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,7,5,6,5,8,5,7,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,24 -21,11,12,8,12,7,9,8,13,7,8,6,9,6,8,15/2,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,6,6,5,7,9/2,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,12,13/2,6,4,6,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,5,7,7,7,4,4,3,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,17,10,11,10,17,12,17,17,34,18,18,12,17,10,11,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,6,11/2,9,11/2,6,5,7,5,7,6,12,6,6,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,8,4,4,3,5,3,3,3,4,5/2,3,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,6,4,6,7,13 -22,12,23/2,8,12,7,17/2,8,13,7,15/2,6,9,6,8,8,13,7,15/2,6,9,5,11/2,5,9,5,5,4,7,5,13/2,6,12,6,6,4,7,4,11/2,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,5/2,2,4,3,4,4,13,7,6,4,6,4,5,4,6,4,9/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,6,4,9/2,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,7/2,4,5,3,4,4,7,5,7,7,7,4,4,3,6,4,4,4,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,4,6,4,5,4,7,4,9/2,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,16,9,9,7,9,6,15/2,7,12,7,8,7,11,7,10,10,19,10,21/2,8,12,8,21/2,10,17,10,11,10,17,12,35/2,18,34,18,18,12,17,10,11,10,17,9,9,7,10,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,7,5,7,6,12,6,13/2,5,7,5,6,5,8,5,5,4,6,4,11/2,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,4,7/2,3,3,2,5/2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,4,3,5,3,4,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-2,-4,-2,-7/2,-4,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,3,2,3,2,7/2,4,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,1,3/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,4,5,5,7,4,9/2,4,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,13/2,7,13 -15,8,8,6,8,5,6,11/2,9,5,5,4,7,9/2,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,7/2,5,5,9,5,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,7/2,5,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,5/2,4,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9 -22,12,12,8,25/2,8,9,8,12,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,6,6,14,7,7,5,15/2,5,6,5,8,5,6,4,13/2,4,5,5,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,4,13,7,7,5,7,4,5,5,6,4,4,4,6,4,4,4,6,4,4,4,11/2,4,4,4,6,4,4,4,13/2,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,9/2,3,4,3,5,3,4,3,7/2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,4,3,2,2,2,2,2,2,1,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,2,4,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,4,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,3,3,8,5,5,3,4,3,3,3,6,4,5,5,8,6,8,8,7,4,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,9/2,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,4,6,4,4,4,13/2,4,6,6,14,7,7,5,13/2,4,6,5,6,4,4,4,6,4,6,5,9,5,6,4,13/2,4,6,6,9,5,6,6,19/2,6,9,9,17,9,9,7,11,7,9,8,13,7,8,6,21/2,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,35,18,18,12,18,11,13,11,18,10,10,8,23/2,8,10,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,12,6,6,4,13/2,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,3,3,2,7/2,3,4,3,6,3,3,2,3,2,3,2,4,2,2,2,3,3,4,4,6,4,4,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,4,5,4,9,5,6,4,11/2,4,4,3,4,3,3,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,3/2,2,2,1,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,1/2,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,9/2,4,5,5,9,5,6,4,13/2,4,5,5,8,5,6,5,15/2,5,7,7,13 -13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,5,3,4,7/2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,5,7/2,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,6,7/2,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,10,6,6,5,7,9/2,6,5,8,5,5,4,6,9/2,6,6,12,7,7,5,8,5,7,6,11,13/2,8,6,10,7,10,10,20,11,11,15/2,11,7,8,6,11,6,6,5,7,5,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,5/2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8 -17,9,9,7,10,6,13/2,6,8,5,5,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,9/2,5,9,5,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,6,4,7/2,2,4,3,7/2,3,5,4,9/2,4,7,5,6,6,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,7,4,3,2,4,3,3,3,3,2,3,2,4,3,4,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,4,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,7,7,13,7,15/2,6,8,5,13/2,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,19/2,8,13,9,25/2,12,25,13,13,9,13,8,9,7,13,7,7,5,8,5,7,7,11,6,13/2,5,6,4,9/2,4,7,4,5,4,5,4,5,5,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,9/2,5,9,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,5,5,8,5,5,4,5,3,7/2,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,3,3,4,3,7/2,3,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,1,3/2,1,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,4,3,4,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10 -15,8,8,6,8,5,6,5,8,5,5,4,7,9/2,6,11/2,9,5,5,4,5,3,4,7/2,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,4,4,4,6,9/2,6,6,12,13/2,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,13/2,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8 -26,14,14,10,14,8,10,8,27/2,8,8,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,10,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,7,5,8,8,14,8,8,6,9,5,6,5,17/2,5,6,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,6,5,15/2,4,4,3,4,3,5,5,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,3,4,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,1,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,4,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,1,1,1,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,4,5,4,9,5,5,4,6,4,5,5,17/2,5,6,5,9,6,8,8,8,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,10,6,6,4,6,4,4,3,9/2,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,21,11,12,8,12,8,10,9,16,9,10,8,12,8,12,11,20,11,12,9,13,9,12,12,22,12,14,11,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,13,9,12,11,16,9,9,7,10,6,8,6,21/2,6,7,5,8,6,8,8,15,8,9,6,9,5,6,6,19/2,6,6,5,9,6,7,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,6,4,4,4,13/2,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,3,3,3,4,3,4,4,13/2,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,4,4,5,3,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1,1,1,2,3,2,3,2,7/2,2,3,3,4,3,3,3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,5,5,17/2,5,5,4,7,5,7,7,14 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,7,4,4,7/2,5,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,5,5,7/2,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,12,13/2,7,5,7,5,6,5,9,5,6,9/2,7,5,7,6,11,6,7,5,7,5,7,7,12,7,8,13/2,11,15/2,11,11,20,11,11,15/2,11,6,7,6,11,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8 -16,9,9,6,8,5,11/2,5,8,5,11/2,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,5,3,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,6,4,4,3,6,4,4,3,4,3,7/2,4,5,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,6,4,4,3,5,3,7/2,3,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,9/2,4,6,4,6,6,6,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,11/2,4,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,6,4,4,3,6,4,13/2,6,13,7,7,5,8,5,13/2,6,9,5,11/2,4,7,5,7,7,12,7,7,6,8,6,15/2,8,14,8,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,6,4,5,4,7,4,5,4,6,4,11/2,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,2,2,3,3,4,2,5/2,2,4,3,4,4,8,4,4,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,3,2,3/2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,7,4,4,3,2,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,2,2,2,3,3,3,2,2,2,3,2,5/2,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,9/2,4,8 -12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,9/2,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,9/2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,7/2,5,5,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,5,5,7,4,4,7/2,6,4,5,5,10,6,6,5,7,5,6,6,11,13/2,7,6,10,7,10,10,18,19/2,10,7,10,6,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,7/2,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 -20,10,10,7,11,7,8,6,10,6,7,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,7,7,6,4,4,4,11/2,4,4,4,7,4,5,4,6,4,5,5,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,10,6,6,4,13/2,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,4,2,5/2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,3,9/2,3,4,4,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,4,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,4,2,2,2,5/2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,1/2,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,3,2,2,2,3,2,2,2,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,15/2,5,6,6,9,5,5,4,5,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,4,9/2,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,4,11/2,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,5,8,5,5,4,7,5,8,8,17,9,9,7,21/2,6,8,7,11,6,6,5,17/2,6,8,8,16,9,10,7,11,7,10,10,19,11,12,10,33/2,11,16,16,29,15,15,10,31/2,9,11,9,16,9,9,7,21/2,7,9,8,14,8,8,6,8,5,6,5,9,5,6,5,17/2,6,7,7,14,7,7,5,7,4,5,4,7,4,5,4,15/2,5,6,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,11/2,4,5,5,6,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,11/2,4,5,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,7/2,2,3,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,8,4,4,3,7/2,2,3,2,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,11/2,4,4,4,7,4,5,4,13/2,4,6,6,11 -13,7,7,5,7,9/2,5,4,7,4,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,5,3,3,3,5,7/2,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,5/2,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,5/2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,2,5/2,4,3,4,4,7,4,4,3,3,2,3,3,4,5/2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,9/2,6,5,8,9/2,5,4,6,4,6,6,11,6,7,5,8,5,7,7,12,7,8,13/2,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,9/2,8 -18,10,19/2,7,10,6,13/2,6,9,5,11/2,4,6,4,13/2,6,12,6,13/2,4,6,4,4,4,7,4,4,4,6,4,6,6,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,5,3,7/2,3,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,4,4,7,4,9/2,4,5,3,4,4,7,4,7/2,3,4,3,4,4,6,4,9/2,4,5,4,5,5,6,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,5/2,3,5,3,7/2,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,0,0,0,0,0,0,4,3,3,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,9/2,4,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,5/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,1,1,1,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,13/2,6,8,5,5,4,5,3,4,4,6,4,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,7/2,4,6,4,5,5,9,5,5,4,4,3,4,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,6,6,13,7,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,7,5,7,7,15,8,17/2,6,10,6,15/2,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,19/2,9,16,9,11,9,15,10,14,14,25,13,27/2,9,13,8,10,8,14,8,8,6,10,6,17/2,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,13/2,4,6,4,9/2,4,7,4,9/2,4,6,4,11/2,5,9,5,9/2,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,13/2,4,6,4,5,4,7,4,9/2,4,5,3,4,4,7,4,5,4,6,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,3,5,3,7/2,3,4,3,9/2,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,1,3,2,1,1,1,1,1/2,1,1,1,1/2,1,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,3,7,4,7/2,3,4,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,4,3,4,3,4,4,6,4,9/2,4,7,5,7,6,11 -18,10,10,7,10,6,6,11/2,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,5,7,4,4,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,1/2,0,0,0,0,0,0,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,2,1,2,2,2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,13/2,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,15,8,8,6,9,6,7,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,10,9,16,9,11,9,14,10,14,14,24,13,13,9,13,8,9,8,13,15/2,8,6,9,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,7/2,5,7/2,5,9/2,8,9/2,5,4,6,4,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1/2,0,1/2,0,1,3,2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11 -34,18,18,12,17,10,13,11,20,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,8,9,7,11,7,10,10,11,6,7,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,5,9,6,7,7,13,7,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,5,3,4,3,3,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,25/2,7,8,6,8,5,7,7,12,7,8,6,9,7,10,10,11,6,6,4,6,4,6,5,9,5,6,5,8,5,6,6,19/2,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3/2,1,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,8,4,4,3,5,3,3,2,3,2,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,15,8,9,6,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,15,8,9,6,9,6,8,7,13,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,7,8,6,10,7,11,11,23,12,12,8,11,6,7,6,11,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,11,7,8,7,12,8,12,13,29,15,16,12,18,11,13,11,20,11,12,10,17,11,16,15,57/2,15,16,12,18,12,16,15,29,16,18,15,26,18,27,27,47,24,24,16,23,13,16,13,23,13,14,11,18,11,15,14,53/2,14,14,10,14,9,11,10,18,10,11,9,15,10,13,13,22,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,9,7,10,6,8,8,15,8,9,7,12,9,13,13,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,7,10,10,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,6,10,7,9,9,19,10,11,8,11,7,8,7,12,7,7,5,8,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,-1,-7/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,3,2,2,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,4,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5/2,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,4,4,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,21/2,6,6,4,6,4,6,6,11,7,8,7,11,8,11,11,21 -18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,1,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,15,8,9,7,10,6,7,6,11,6,7,6,9,6,9,17/2,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,15/2,9,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,9/2,5,9/2,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,2,2,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,3/2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,13/2,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,11/2,5,6,4,7/2,3,4,2,5/2,2,4,3,3,3,3,2,7/2,4,6,4,7/2,3,5,3,3,3,5,3,7/2,3,4,3,9/2,4,10,6,11/2,4,6,4,7/2,3,4,3,7/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,12,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,5,5,7,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,6,3,3,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,3,3,3,2,7/2,4,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,7/2,3,3,2,3,3,6,4,4,3,5,4,9/2,4,7,4,4,4,7,5,7,7,9,5,5,4,6,4,4,3,6,3,3,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,4,9/2,4,7,4,9/2,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,9/2,4,6,4,6,6,14,8,15/2,5,7,4,5,5,7,4,5,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,5,4,8,6,8,8,15,8,9,7,10,6,7,6,11,6,7,6,10,7,19/2,9,16,9,9,7,10,7,9,9,16,9,11,9,15,10,29/2,15,26,14,14,10,14,8,19/2,8,13,8,17/2,7,11,7,9,9,16,8,8,6,8,5,6,6,11,6,13/2,6,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,9/2,4,8,5,11/2,4,6,4,11/2,5,8,5,5,4,7,5,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,3,3,7,4,4,3,4,3,7/2,4,5,3,7/2,4,6,4,6,6,10,6,11/2,4,7,4,9/2,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,3,2,2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,3/2,1,2,2,3/2,2,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,3,2,2,2,2,2,3/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,1,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,2,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,3,2,3,2,5/2,3,6,3,3,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,7,4,9/2,4,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,12 -13,7,7,5,7,9/2,6,5,8,9/2,5,4,6,4,5,5,8,4,4,3,5,3,4,7/2,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,3,4,7/2,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,7/2,5,3,3,5/2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,7/2,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,7/2,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,7/2,4,7/2,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,3,2,3,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,7/2,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,5/2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,5,5,9 -20,10,10,7,21/2,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,15/2,5,6,5,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,4,4,11/2,4,4,3,6,4,4,3,9/2,4,5,5,12,6,6,4,11/2,3,3,3,4,3,4,4,11/2,4,5,5,8,4,4,3,5,3,4,4,4,3,3,3,9/2,3,4,4,6,3,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,9/2,3,4,4,6,4,5,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,9/2,4,5,5,4,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,3,2,3,3,4,3,4,4,3,2,2,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,5/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,1,1,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,3,4,4,5,3,4,3,5,4,5,5,6,4,4,4,13/2,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,11/2,4,5,4,8,5,5,4,9/2,3,4,4,8,5,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,5,4,15/2,5,7,7,10,6,6,4,13/2,4,6,5,8,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,5,10,6,6,4,13/2,4,5,5,9,5,6,5,17/2,6,9,9,17,9,10,7,21/2,6,8,7,12,7,8,7,23/2,8,10,10,18,10,10,8,13,8,10,10,18,10,12,10,33/2,12,17,17,30,16,16,11,16,9,11,9,16,9,9,7,12,8,11,10,18,9,9,6,19/2,6,8,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,15/2,5,6,6,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,13/2,4,6,6,10,5,5,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,8,5,5,4,6,4,5,5,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,11/2,4,4,3,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,2,5/2,2,3,3,1,1,1,1,3/2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,1,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,3,2,2,1,1/2,0,0,0,2,2,2,1,1/2,0,0,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,1,0,0,0,0,1/2,0,0,0,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,7,4,4,3,9/2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,4,11/2,4,4,4,5,3,4,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,6,4,13/2,5,7,7,13 -12,6,6,5,7,4,5,9/2,7,4,4,4,6,4,4,9/2,8,4,4,3,5,3,4,7/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,3,3,4,3,3,2,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,6,7/2,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,5,8,5,5,9/2,8,5,6,6,11,6,6,5,8,5,6,6,11,13/2,8,6,10,15/2,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,7/2,4,3,4,3,4,4,6,7/2,4,3,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,9 -16,8,8,6,10,6,7,6,10,6,11/2,4,7,4,11/2,6,10,6,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,7/2,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,9/2,3,4,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,11,6,6,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,9/2,4,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,7/2,2,4,2,5/2,2,5,3,3,3,3,2,7/2,4,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,1,6,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3,4,3,2,2,2,2,2,3/2,1,2,1,1,1,0,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,5,3,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,1,2,5/2,2,3,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,2,5/2,2,4,2,5/2,2,2,2,7/2,4,4,3,3,3,4,3,4,4,5,3,7/2,4,6,4,6,6,12,7,7,5,7,4,9/2,4,6,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,3,6,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,11/2,5,9,5,11/2,4,6,4,4,4,7,4,5,4,6,4,13/2,7,15,8,15/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,7,6,10,6,17/2,8,15,8,17/2,6,11,7,17/2,8,14,8,10,8,14,10,14,14,24,12,12,9,13,8,9,7,14,8,8,6,9,6,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,14,8,15/2,5,7,4,5,5,8,4,9/2,4,5,3,4,4,8,4,9/2,4,5,4,5,5,7,4,5,4,8,6,8,8,12,6,13/2,5,7,4,5,4,7,4,9/2,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,4,3,6,4,5,5,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,9/2,4,7,5,7,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,1,1,1,3,2,2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,4,2,5/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,1,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,2,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,-1,0,0,1,0,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,7,4,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12 -15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,4,2,2,2,4,3,3,5/2,3,5/2,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,7/2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,9,5,5,4,5,7/2,4,4,6,4,5,4,6,4,6,13/2,14,8,8,5,7,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,6,4,5,9/2,7,5,7,7,12,7,7,11/2,8,5,6,6,10,6,7,6,9,6,8,8,14,15/2,8,6,10,6,8,15/2,13,8,9,8,13,9,13,13,22,11,11,8,12,7,9,7,12,7,8,6,9,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,9/2,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,8,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,7,5,7,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,3/2,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 -27,14,14,10,14,8,10,9,31/2,8,8,6,10,7,9,8,16,8,8,6,9,6,7,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,6,8,4,4,3,4,3,4,4,11/2,4,4,4,6,5,7,7,14,7,7,5,6,4,4,4,11/2,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,3,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,15/2,4,5,5,8,6,8,7,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,9,5,4,3,4,3,3,3,9/2,2,2,2,3,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,6,4,6,6,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,2,2,5/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5/2,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,11/2,4,4,3,4,3,5,5,6,4,5,4,6,4,6,5,17/2,5,6,5,9,6,9,9,22,12,12,8,12,7,8,6,21/2,6,7,5,8,5,7,7,13,7,6,4,6,4,5,5,8,5,6,5,7,5,8,8,16,9,9,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,10,6,7,6,21/2,6,8,7,12,8,12,12,26,13,13,9,14,8,10,8,27/2,8,8,6,10,6,7,7,12,7,7,5,8,5,6,6,23/2,7,8,7,12,8,12,13,23,12,12,9,14,8,10,10,35/2,10,10,8,14,10,14,14,25,13,14,11,17,11,15,14,25,14,17,14,24,16,24,24,42,22,22,15,21,12,14,12,45/2,12,14,11,18,11,15,14,25,13,13,9,12,7,9,8,27/2,8,9,7,12,8,11,11,23,12,12,8,12,7,9,8,25/2,6,6,5,7,5,6,6,14,8,9,7,10,6,8,7,13,8,9,7,12,9,13,13,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,9,7,10,6,7,6,21/2,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,17/2,5,6,4,6,4,6,6,15,8,9,7,10,6,8,7,25/2,8,9,7,12,8,11,11,16,9,9,7,10,6,7,6,21/2,6,6,5,7,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,6,3,3,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,0,0,0,0,0,0,1/2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,8,6,9,6,7,6,23/2,7,8,6,10,7,11,11,20 -15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,10,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,9/2,5,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,13/2,8,8,14,8,10,8,14,19/2,14,14,24,13,13,9,12,7,8,7,13,7,8,13/2,10,7,9,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,13/2,13,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,9/2,8,5,5,4,7,5,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,7/2,6,7/2,4,3,4,3,4,4,8,5,5,4,6,4,5,9/2,8,5,6,9/2,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,4,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,3/2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,7/2,4,4,7,4,5,4,6,4,6,6,11 -18,10,10,7,10,6,7,6,10,6,6,5,7,5,13/2,6,11,6,11/2,4,6,4,4,4,6,4,9/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,9,5,9/2,3,4,3,3,3,3,2,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,7/2,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,4,9/2,4,5,3,7/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,5,3,4,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,5,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,3,2,3,3,4,3,7/2,4,6,4,9/2,4,6,5,7,7,14,8,15/2,6,8,5,11/2,5,8,5,11/2,4,6,4,5,5,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,11,6,6,4,7,4,11/2,5,8,5,11/2,5,8,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,8,5,5,5,8,6,17/2,8,16,8,8,6,10,6,15/2,6,12,7,15/2,6,10,7,9,9,16,9,9,7,12,8,19/2,9,16,10,23/2,10,16,11,16,16,29,15,15,10,15,9,21/2,9,15,8,19/2,8,12,8,10,9,17,9,17/2,6,9,6,13/2,6,10,6,6,5,8,6,15/2,8,15,8,9,6,8,5,11/2,5,8,4,9/2,4,6,4,11/2,5,9,5,11/2,4,7,4,11/2,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,5,4,6,4,11/2,5,10,6,6,5,6,4,5,5,7,4,5,4,6,4,11/2,6,11,6,6,4,6,4,5,4,7,4,9/2,4,5,4,9/2,4,9,5,6,5,6,4,11/2,5,9,6,13/2,5,8,6,8,8,10,6,11/2,4,6,4,9/2,4,7,4,9/2,4,4,3,3,3,5,3,3,2,3,2,3,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,5,3,5/2,2,3,2,3/2,1,2,1,1/2,0,1,1,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,9/2,4,8,5,5,4,6,4,5,5,8,5,11/2,4,7,5,7,7,12 -15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,2,3,3,3,2,3,2,2,2,2,2,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,3,4,4,3,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,4,3,5,4,6,6,12,13/2,6,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,6,10,6,6,9/2,6,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,8,11/2,7,7,13,7,8,6,10,6,8,8,13,8,10,8,13,9,13,13,24,13,13,9,12,7,9,8,13,7,8,6,10,6,8,8,14,15/2,8,5,8,5,6,5,8,5,5,4,7,5,6,13/2,12,7,7,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,5,4,6,4,4,4,8,9/2,5,9/2,8,11/2,8,8,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,9/2,5,4,5,4,5,9/2,8,5,6,9/2,7,5,7,7,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,5/2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,5/2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,6,10 -25,13,13,9,27/2,8,10,8,14,8,9,7,10,7,9,8,15,8,9,6,19/2,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,5,4,6,6,9,5,4,3,9/2,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,4,3,4,3,5,4,5,4,8,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,3,3,17,9,8,6,17/2,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,5,3,3,2,7/2,3,4,4,8,5,5,4,5,3,4,4,8,5,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,6,4,4,3,7/2,2,3,3,4,2,2,2,7/2,2,3,3,5,3,3,3,5,3,4,4,4,3,4,4,7,5,8,8,5,3,3,2,2,2,2,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,5,3,3,2,2,2,2,2,5/2,2,2,2,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,4,3,9/2,3,4,4,8,5,6,5,8,6,8,9,21,11,12,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,8,23/2,7,8,7,12,7,7,6,17/2,6,8,8,16,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,12,22,12,12,8,25/2,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,33/2,10,14,13,22,13,15,13,45/2,16,23,23,42,22,22,15,43/2,12,15,13,22,12,14,10,33/2,10,14,13,23,12,13,9,13,8,10,8,14,8,9,7,11,8,11,11,21,11,12,8,12,7,8,6,10,6,7,5,8,5,7,7,12,7,7,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,12,8,12,7,8,7,12,7,8,6,19/2,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,8,8,16,8,8,6,8,5,6,6,10,6,7,6,17/2,6,8,7,13,7,8,6,9,6,7,7,14,8,9,7,12,8,11,11,14,8,8,6,9,5,6,5,10,6,6,4,13/2,4,4,4,7,4,5,4,11/2,4,4,3,5,3,4,3,7/2,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,3,2,1,1,1,1,1,1,1/2,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,6,3,3,2,3,2,2,1,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,-4,-1,-1,0,-1/2,0,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,4,5,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,17/2,6,8,9,17 -17,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,7/2,4,3,4,3,3,3,4,3,4,4,6,3,3,2,4,5/2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,5/2,3,2,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,5,7/2,5,9/2,6,4,4,3,4,5/2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,5,4,6,5,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,7/2,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,11/2,6,11/2,9,5,6,4,7,9/2,6,6,10,11/2,6,4,6,4,5,5,8,9/2,5,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,11/2,9,6,8,8,15,8,9,7,11,7,9,9,15,9,10,9,15,11,16,31/2,28,15,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,17/2,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,15/2,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,9/2,6,5,9,5,6,11/2,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,9/2,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,4,7,4,5,5,9,11/2,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-2,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,5/2,4,3,4,4,7,4,4,7/2,6,4,5,4,7,4,4,4,6,4,6,6,12 -24,12,12,9,14,8,19/2,8,14,8,17/2,6,10,7,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,7,5,8,5,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,11/2,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,17,9,9,6,8,5,6,5,10,6,11/2,4,7,4,11/2,5,9,5,11/2,4,6,4,5,4,8,4,9/2,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,4,4,7,4,5,4,6,4,6,6,9,5,11/2,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,4,7,5,15/2,7,4,2,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,3,2,3,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,7,5,6,5,7,6,17/2,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,13/2,5,7,4,11/2,5,10,6,7,6,9,6,19/2,10,19,10,10,7,12,7,8,7,11,6,7,5,8,6,8,8,15,8,17/2,6,9,6,7,7,13,7,8,7,12,8,25/2,12,25,13,13,9,14,8,9,8,13,7,8,6,10,6,17/2,8,15,8,8,6,9,6,15/2,7,11,6,15/2,7,12,8,23/2,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,12,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,45/2,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,27/2,13,23,12,25/2,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,21/2,8,11,6,7,6,10,6,13/2,5,8,5,7,7,12,7,15/2,6,10,6,15/2,7,12,7,17/2,8,12,8,25/2,12,24,12,12,9,13,8,17/2,8,13,7,8,6,9,6,8,8,13,7,15/2,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,13/2,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,15/2,7,13,8,9,7,11,8,21/2,11,14,8,17/2,6,8,5,5,5,9,5,5,4,6,4,4,4,8,4,9/2,4,5,3,7/2,3,5,3,7/2,3,4,3,3,3,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,7/2,4,7,4,7/2,2,4,2,3/2,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,5,3,5/2,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,0,0,-1,0,1/2,1,0,0,0,1,1,1,2,2,3,2,3/2,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,9/2,5,10,6,11/2,4,5,4,9/2,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,13/2,6,10,6,13/2,5,8,6,9,9,17 -24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,8,14,8,8,6,8,5,6,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,16,9,9,6,9,5,6,5,9,5,6,4,7,9/2,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,7/2,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,11/2,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,7,5,7,7,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,9/2,5,5,7,11/2,8,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,11/2,9,6,8,8,15,8,8,6,9,6,7,7,13,15/2,9,15/2,13,9,13,25/2,24,13,13,9,14,8,9,8,14,15/2,8,6,10,13/2,9,8,15,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,23/2,12,9,15,10,13,12,22,13,15,13,22,15,22,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,13,25/2,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,10,15/2,11,6,7,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,9,8,13,9,13,25/2,24,12,12,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,7,13,15/2,8,7,11,15/2,10,11,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,9/2,8,4,4,7/2,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,5/2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,5,3,2,2,3,2,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,1/2,0,0,0,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,3,2,3,3,5,3,4,5/2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17 -46,24,24,16,24,14,17,14,24,13,14,11,19,12,17,16,30,16,17,12,18,11,14,13,23,13,14,11,17,11,16,16,30,16,16,11,16,9,11,9,15,8,9,7,10,7,9,8,15,8,8,6,9,6,7,7,13,7,8,7,11,8,11,11,21,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,31,16,16,11,17,10,12,10,17,10,11,9,14,9,12,12,23,12,12,9,14,9,11,10,17,10,11,9,15,10,14,13,25,13,13,9,14,8,9,7,12,7,8,6,10,6,8,7,13,7,7,5,7,4,5,5,9,5,6,5,9,6,9,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,9,13,8,10,9,15,8,9,7,10,6,8,8,14,8,8,7,11,7,10,9,16,9,11,9,15,10,14,14,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,8,8,14,8,9,7,10,6,8,8,15,9,10,9,16,11,16,16,42,22,22,15,23,13,16,13,22,12,13,9,14,9,12,11,21,11,12,9,13,8,11,10,19,11,13,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,11,9,14,9,13,13,24,13,14,11,17,11,15,14,26,15,18,15,26,17,25,24,95/2,24,24,17,26,15,17,15,26,14,15,11,18,12,16,16,30,16,17,12,19,12,16,15,28,16,19,16,27,18,26,26,52,27,27,19,28,16,20,18,33,18,20,16,26,17,23,23,44,23,25,19,30,19,25,24,45,25,30,25,44,30,44,44,82,42,42,28,42,24,28,23,41,22,23,18,29,18,25,24,45,23,24,16,24,14,17,15,28,15,17,14,23,15,21,21,40,21,21,14,21,12,14,12,21,11,12,10,16,10,14,14,26,14,14,11,17,11,14,12,22,13,16,14,24,16,24,24,95/2,24,24,17,26,15,17,14,25,14,15,11,18,11,15,14,26,13,13,9,14,9,11,10,18,11,13,11,18,12,18,18,35,18,19,13,19,11,13,12,21,11,12,9,14,9,13,12,22,12,13,10,16,10,13,12,23,13,15,13,22,15,21,21,29,15,16,11,16,9,11,9,16,9,10,8,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,12,23,12,12,8,12,7,9,8,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,3,2,1,1,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,2,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,9,9,16,11,17,17,32 -23,12,13,9,12,7,9,7,12,7,8,6,10,7,9,9,16,9,9,7,9,6,8,7,12,7,7,6,9,6,9,8,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,9/2,8,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,9/2,6,4,4,7/2,5,3,3,3,3,5/2,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,16,9,9,6,9,11/2,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,5,7,5,6,11/2,9,11/2,6,5,8,11/2,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,8,9/2,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,9,22,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,11/2,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,9,11,10,17,9,10,8,14,9,12,12,22,12,13,10,16,10,13,25/2,23,13,16,13,23,16,23,23,42,22,22,15,22,12,14,12,21,23/2,12,19/2,15,10,13,25/2,23,12,12,9,13,8,9,8,15,8,9,7,12,8,11,11,21,11,11,8,11,13/2,8,7,11,6,6,11/2,8,6,8,8,14,8,8,6,9,6,8,13/2,11,7,8,7,13,9,12,12,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,13/2,11,6,6,5,8,5,7,7,12,7,7,11/2,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,6,5,6,4,6,6,12,6,6,4,7,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,7,4,5,9/2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,3/2,1,1,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,2,3,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,5,8,6,9,9,17 -23,12,13,9,12,7,17/2,7,12,7,15/2,6,11,7,9,9,16,9,9,7,9,6,8,7,11,6,7,5,9,6,9,8,15,8,17/2,6,8,5,11/2,5,7,4,5,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,5,3,3,3,3,2,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,4,2,2,2,3,2,3/2,1,1,1,3/2,2,2,2,2,2,17,9,9,6,9,6,13/2,6,9,6,13/2,5,7,5,13/2,6,12,6,13/2,5,7,5,6,6,9,6,13/2,5,9,6,7,7,13,7,15/2,5,8,5,5,4,7,4,9/2,4,6,4,9/2,4,6,4,7/2,3,3,2,3,3,5,3,4,3,4,3,5,5,11,6,11/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,8,5,11/2,4,6,4,5,5,8,5,5,5,8,6,17/2,9,22,12,12,8,13,8,17/2,7,12,7,7,5,7,5,6,6,12,6,6,5,8,5,13/2,6,10,6,13/2,6,9,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,8,6,9,6,15/2,7,13,8,19/2,8,14,9,13,13,24,13,13,9,13,8,19/2,8,14,8,17/2,6,10,6,17/2,8,15,8,9,7,10,6,17/2,8,14,8,19/2,8,14,10,14,14,27,14,14,10,14,9,11,10,16,9,21/2,8,14,9,25/2,12,22,12,25/2,10,16,10,27/2,13,23,13,16,13,23,16,23,23,42,22,22,15,22,12,29/2,12,22,12,25/2,10,16,10,27/2,13,24,12,25/2,9,13,8,9,8,15,8,9,7,12,8,23/2,11,21,11,21/2,8,10,6,15/2,7,11,6,13/2,6,8,6,15/2,8,15,8,8,6,10,6,15/2,6,11,7,8,7,13,9,25/2,12,24,12,25/2,9,13,8,19/2,8,13,7,8,6,10,6,17/2,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,19/2,7,10,6,8,7,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,6,13/2,6,9,5,6,5,6,4,6,6,12,6,6,4,7,4,11/2,5,7,4,5,4,7,5,7,7,12,6,13/2,4,7,4,11/2,5,7,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,5,3,3,2,2,2,3/2,2,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-3,-1,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,2,3,2,5/2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,5,3,4,4,7,5,6,5,8,6,19/2,9,17 -16,17/2,9,6,9,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,5,5,8,9/2,5,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,4,3,4,4,8,4,4,7/2,5,3,4,3,4,5/2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,12,7,7,5,6,4,5,4,7,4,5,4,5,7/2,4,4,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,15,8,9,6,9,11/2,6,5,8,5,5,4,5,4,5,5,8,4,4,7/2,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,9,6,7,6,10,13/2,9,9,17,9,9,6,9,6,7,6,10,6,6,5,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,13/2,9,8,15,8,9,7,11,7,10,9,16,9,11,9,16,11,16,16,29,15,15,10,15,9,10,9,15,8,8,13/2,11,7,10,9,16,9,9,6,9,11/2,6,6,10,6,6,5,8,6,8,8,14,15/2,7,5,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,6,4,7,9/2,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,8,4,4,4,6,4,6,5,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,7/2,5,7/2,5,5,9,5,5,7/2,5,3,4,4,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,7/2,4,4,6,5,7,13/2,12 -23,12,13,9,13,8,9,8,12,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,9/2,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,13/2,4,6,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,1,1,1,1,2,2,3/2,2,2,2,18,10,10,7,19/2,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,7,14,7,7,5,7,4,5,4,8,5,5,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,9/2,4,5,6,11,6,6,4,5,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,9,5,6,5,17/2,6,7,7,5,3,3,2,7/2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,3,3,4,3,4,3,9/2,3,4,4,9,5,5,4,9/2,3,3,3,5,3,2,2,5/2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,4,3,4,3,9/2,4,5,5,9,5,6,5,15/2,5,6,6,10,6,7,6,19/2,7,10,10,23,12,13,9,27/2,8,10,8,12,7,7,5,8,5,7,7,12,7,7,5,15/2,5,6,6,9,5,6,5,17/2,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,12,7,7,6,9,6,8,7,13,8,9,8,14,9,13,13,26,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,21/2,7,9,8,14,8,10,8,29/2,10,15,15,27,14,14,10,29/2,9,12,10,16,9,10,8,14,9,12,12,22,12,13,10,16,10,14,13,23,13,16,14,47/2,16,24,24,43,22,22,15,45/2,13,15,13,22,12,13,10,31/2,10,13,13,24,12,12,9,13,8,10,9,14,8,10,8,25/2,8,11,11,21,11,11,8,21/2,6,8,7,12,7,7,6,17/2,6,8,8,16,9,9,7,11,7,8,7,12,7,9,8,25/2,9,13,13,24,13,13,9,14,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,21/2,8,11,11,19,10,10,7,19/2,6,8,7,11,6,7,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,11,8,12,12,16,9,9,6,19/2,6,7,6,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,5,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,3,2,2,2,5/2,2,2,2,5,3,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-3,-1,-1,0,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,3,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,3,6,4,4,3,5,3,4,4,8,5,6,6,19/2,7,10,9,17 -13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,11/2,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,3,3,4,3,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,9/2,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,15/2,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,4,6,4,6,5,7,4,4,7/2,5,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,11/2,8,5,6,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,7,4,4,7/2,6,4,5,5,9,5,6,9/2,7,4,5,5,8,5,6,5,8,11/2,8,8,13,7,8,11/2,8,5,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,12,6,6,4,6,4,5,9/2,7,4,4,7/2,5,4,5,9/2,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,5,4,6,7/2,4,3,5,3,4,9/2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,11/2,10 -16,9,9,7,9,6,13/2,6,8,5,11/2,5,7,5,7,7,12,6,13/2,4,6,4,4,4,7,4,5,4,6,4,11/2,5,11,6,6,4,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,9/2,4,9,5,11/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,1,1/2,0,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,12,6,13/2,4,7,4,5,4,7,4,9/2,4,5,4,9/2,4,10,6,11/2,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,11/2,4,6,4,7/2,3,6,4,4,3,4,3,4,4,4,2,5/2,2,2,2,5/2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,6,4,9/2,4,6,4,11/2,5,4,2,5/2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,7,4,7/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,8,5,5,4,6,4,5,5,8,5,11/2,5,7,5,15/2,8,17,9,19/2,7,10,6,7,6,8,5,11/2,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,13/2,6,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,10,7,9,9,18,10,19/2,7,10,6,8,7,11,6,6,5,7,5,13/2,6,11,6,7,5,8,5,13/2,6,10,6,15/2,6,10,7,21/2,10,20,10,21/2,7,11,7,17/2,7,12,7,8,6,10,6,17/2,8,16,9,10,8,12,8,21/2,10,16,9,11,9,17,12,33/2,16,30,16,31/2,11,15,9,10,9,15,8,17/2,6,11,7,9,9,16,9,9,7,9,6,15/2,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,6,8,5,5,4,7,5,6,6,11,6,13/2,5,8,5,6,6,10,6,7,6,9,6,19/2,9,15,8,17/2,6,9,5,6,5,10,5,5,4,6,4,11/2,5,10,5,5,4,5,4,5,5,7,4,11/2,5,8,6,15/2,8,15,8,7,5,8,5,6,5,9,5,5,4,6,4,11/2,5,9,5,5,4,6,4,11/2,5,8,5,11/2,5,8,6,8,8,11,6,13/2,5,7,5,6,5,7,4,5,4,6,4,11/2,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,0,0,1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,11/2,6,4,5,3,4,7/2,6,7/2,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,6,13/2,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,9/2,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,11/2,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,11/2,7,6,10,5,5,4,6,4,6,5,10,11/2,6,9/2,7,9/2,6,5,9,5,6,5,9,6,9,9,17,9,9,6,10,6,7,6,10,6,7,5,8,11/2,8,7,14,8,8,13/2,10,7,9,8,14,8,10,8,15,10,14,14,25,13,13,9,13,8,9,8,13,7,7,11/2,9,6,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,9/2,8,4,4,7/2,5,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,7,7,10,6,6,9/2,6,4,5,4,6,4,4,4,6,4,5,5,8,9/2,5,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,11/2,10 -24,13,13,9,12,7,8,8,27/2,8,8,7,11,7,10,9,18,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,14,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,5,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,9,5,5,3,4,3,4,4,11/2,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,15/2,5,6,5,8,6,8,8,4,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,6,4,4,3,3,2,2,2,9/2,3,4,3,4,3,5,5,9,5,5,4,7,4,5,4,15/2,4,5,4,7,5,6,5,12,7,7,5,8,6,8,7,25/2,7,8,7,11,8,11,11,27,14,14,10,14,8,10,8,27/2,8,8,6,9,6,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,9,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,29,15,16,11,16,9,11,10,33/2,9,9,7,10,7,9,9,17,9,10,8,12,7,9,8,31/2,9,11,9,16,11,16,16,30,16,16,11,16,10,12,10,37/2,10,11,8,13,9,12,12,25,13,14,11,18,11,14,14,51/2,14,17,14,24,16,24,24,44,22,22,15,22,13,15,13,22,12,13,10,15,9,12,12,25,13,14,10,14,8,10,9,15,9,10,8,14,9,13,13,20,11,11,8,12,7,8,8,27/2,8,8,6,10,6,8,8,18,10,10,7,11,7,9,8,29/2,8,10,8,14,10,14,14,22,11,11,8,11,7,8,8,14,8,8,6,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,8,13,7,8,6,8,5,7,6,23/2,7,8,7,11,8,12,12,18,10,10,7,10,6,8,7,23/2,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,15/2,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,15/2,4,4,3,3,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,7,4,5,4,5,3,3,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,7,4,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,9/2,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,13/2,4,5,5,9,6,9,9,18 -13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,7,4,5,4,6,9/2,6,6,15,8,8,6,8,5,6,5,8,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,15/2,8,6,10,6,8,8,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,12,7,7,11/2,8,5,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,5/2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,10 -13,7,15/2,5,7,4,5,4,8,5,5,4,6,4,11/2,6,9,5,6,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,9,5,4,3,5,3,3,3,4,2,5/2,2,4,3,7/2,3,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,11,6,6,4,6,4,9/2,4,7,4,4,3,4,3,7/2,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,3,5,3,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,3,2,4,3,7/2,4,6,4,4,3,3,2,3,3,4,3,7/2,3,5,4,9/2,4,6,4,7/2,2,3,2,5/2,2,4,3,3,2,2,2,7/2,3,5,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3,3,2,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,3,2,7/2,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,8,17/2,6,8,5,11/2,5,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,5,3,7/2,3,5,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,6,6,9,5,11/2,4,6,4,5,5,8,5,13/2,6,9,6,17/2,8,17,9,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,10,6,6,5,7,4,11/2,6,10,6,7,6,10,7,19/2,9,17,9,19/2,7,9,6,15/2,6,11,6,7,5,8,6,15/2,7,15,8,17/2,6,10,6,17/2,8,15,9,10,9,14,10,14,14,25,13,13,9,13,8,9,7,13,7,8,6,9,6,8,7,14,8,8,6,8,5,13/2,6,9,5,6,5,8,6,8,8,12,6,13/2,5,7,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,11/2,5,9,6,13/2,5,9,6,17/2,8,13,7,7,5,7,4,11/2,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,5,4,6,5,7,7,13,7,15/2,6,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,15/2,8,11,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,5,5,8,5,5,3,5,3,4,4,5,3,4,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,5,3,7/2,3,4,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,5,3,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,1,1,1,2,2,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,0,0,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,6,3,3,2,2,2,5/2,2,3,2,2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,4,3,3,3,5,3,4,4,6,4,5,5,10 -10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,9/2,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,3,5/2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,8,5,5,7/2,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,7/2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,3,5,4,5,5,13,7,7,5,6,4,4,4,6,7/2,4,3,4,3,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,7/2,4,3,5,7/2,5,5,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,9/2,8,5,6,5,8,6,8,7,13,7,8,11/2,7,5,6,5,9,5,6,4,6,9/2,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,9/2,5,4,7,5,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10,11/2,6,4,6,7/2,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,4,2,2,1,2,2,2,1,2,2,2,2,2,3/2,2,1,1,1,0,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,9/2,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,5/2,2,3,3,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,12,6,6,5,7,4,5,4,9,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,11/2,4,6,6,12,6,6,4,11/2,4,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,7/2,3,4,3,3,2,3,2,7/2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,4,3,3,2,2,1,1,1,4,3,3,2,7/2,3,4,3,3,2,2,2,4,3,4,3,5,3,3,2,7/2,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,8,4,4,3,9/2,4,5,5,9,5,5,4,13/2,4,5,5,8,5,6,5,15/2,6,8,8,21,11,10,7,21/2,6,7,6,8,5,6,4,13/2,4,6,6,8,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,7,6,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,22,12,12,8,25/2,7,8,7,12,7,7,6,9,6,7,7,12,7,7,6,9,6,8,7,14,8,9,8,13,9,12,12,21,11,11,8,12,7,9,7,14,8,8,6,10,7,9,9,18,10,10,8,13,8,11,10,18,11,13,11,18,12,18,18,30,16,16,11,15,9,10,9,17,9,10,7,11,7,10,9,16,9,9,7,11,7,9,8,13,7,8,7,11,7,10,10,15,8,8,6,17/2,5,6,5,10,6,6,5,7,5,6,6,14,8,8,6,17/2,5,6,6,11,6,7,6,21/2,7,10,10,15,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,6,5,8,6,9,9,16,8,8,6,17/2,5,6,6,8,5,6,5,15/2,6,8,7,11,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,7,9,5,6,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,2,2,2,5/2,2,2,2,8,4,4,3,9/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,5,3,3,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,0,1,1,1,1/2,1,1,1,2,2,2,1,1/2,1,2,2,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,5/2,2,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,2,3,2,3,3,7,4,4,3,7/2,3,4,3,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,7,4,3,2,3,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,11 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,5/2,3,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,8,4,4,7/2,5,3,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,3,2,3,2,3,2,4,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,2,2,5/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,3,2,4,3,4,3,6,4,4,3,4,3,4,7/2,6,4,4,7/2,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,5,9/2,7,5,7,7,14,8,8,11/2,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,19,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,11/2,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,7/2,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,3,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7 -12,7,7,5,6,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,5,11/2,4,5,3,7/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,5,3,3,3,6,4,7/2,3,4,3,4,4,6,3,3,3,5,3,4,4,6,3,3,3,4,3,7/2,4,8,4,9/2,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,11,6,13/2,5,7,4,4,4,8,4,4,3,4,3,7/2,4,6,4,7/2,3,3,2,3,3,5,3,7/2,3,6,4,11/2,6,11,6,5,4,5,3,4,4,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,7/2,3,5,3,7/2,2,3,3,4,4,7,4,4,3,5,3,7/2,4,7,4,5,4,6,4,11/2,5,7,4,4,3,4,2,5/2,2,3,2,3,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,5,3,4,4,6,4,13/2,7,5,3,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,7,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,3,3,4,4,8,4,9/2,3,4,3,4,4,7,4,4,3,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,6,5,7,5,15/2,8,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,13,7,15/2,6,8,5,6,5,8,5,11/2,5,7,5,13/2,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,13/2,6,9,6,15/2,7,11,6,13/2,5,8,5,13/2,6,12,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,17/2,7,11,7,9,8,14,8,21/2,9,15,10,31/2,16,26,14,27/2,9,13,8,10,8,14,8,9,7,10,6,17/2,8,14,8,8,6,9,6,7,6,11,6,15/2,6,9,6,17/2,8,13,7,15/2,6,8,5,11/2,5,9,5,6,5,7,5,6,6,11,6,13/2,5,6,4,6,6,10,6,7,6,9,6,17/2,8,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,6,4,7,4,11/2,5,8,5,5,5,7,5,7,7,14,8,15/2,5,7,5,6,5,8,4,9/2,4,6,4,11/2,5,9,5,6,4,6,4,9/2,4,8,5,6,5,8,6,17/2,9,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,11/2,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,5,3,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,3/2,2,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,11/2,6,10 -12,6,6,9/2,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,10,6,6,9/2,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,10,11/2,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,13/2,6,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,10,6,8,15/2,13,8,10,8,14,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,7,13,7,7,11/2,8,5,7,6,11,6,7,6,9,6,8,8,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,9/2,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,8,6,9,9,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,3,5/2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,4,5/2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9 -22,12,12,8,11,7,9,8,14,8,8,6,9,6,8,8,15,8,9,6,9,6,7,6,9,5,6,5,7,5,6,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,19/2,6,6,4,6,4,5,5,8,5,5,5,8,5,7,6,14,7,7,5,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,19,10,9,6,9,6,7,6,10,6,6,4,6,4,6,6,19/2,6,6,5,7,5,7,7,12,7,9,7,12,8,11,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,7,6,11,8,12,12,11,6,7,5,8,5,5,5,8,5,5,4,6,4,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,11/2,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,14,10,14,14,31,16,16,11,17,10,11,9,16,8,8,6,9,6,8,7,25/2,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,41/2,11,11,8,12,8,10,9,16,10,12,10,17,12,17,17,33,17,17,12,18,11,13,11,20,11,12,9,15,9,12,12,22,12,13,9,14,9,12,11,21,12,14,12,20,13,18,18,34,18,18,13,19,11,14,12,20,11,12,9,15,10,14,14,26,14,15,12,20,13,17,16,30,17,19,16,28,19,29,29,49,25,26,18,26,15,17,14,24,13,14,11,18,11,14,13,25,13,13,9,14,9,11,11,20,11,12,10,17,11,16,16,24,12,12,8,11,7,8,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,10,9,16,9,10,8,14,10,15,15,25,13,14,10,14,8,10,9,15,8,9,7,10,7,9,9,33/2,9,10,8,12,7,9,9,16,9,10,8,13,9,13,13,25,13,14,10,14,8,10,9,16,9,9,7,12,8,10,9,16,9,10,7,11,8,11,10,19,11,12,10,17,12,17,17,25,13,13,9,14,8,9,8,14,8,8,7,11,8,11,11,41/2,10,10,7,11,7,9,8,15,8,9,7,11,7,10,10,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,15/2,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,9/2,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,2,2,2,2,1,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,2,2,3,3,4,2,2,2,2,2,3,3,9,5,5,4,6,4,5,4,6,4,4,3,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17 -11,6,6,9/2,6,4,5,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,10,5,5,4,5,7/2,4,7/2,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,13/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,16,17/2,8,6,9,11/2,6,5,9,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,13/2,10,7,9,9,16,9,10,9,15,10,15,15,26,27/2,14,10,14,8,9,8,13,7,8,6,10,6,8,7,14,15/2,8,11/2,8,5,6,6,11,6,7,6,9,6,9,9,13,7,6,9/2,6,4,5,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,7,6,9,13/2,9,9,14,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,5/2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,9 -11,6,6,5,6,4,5,4,7,4,9/2,4,6,4,5,5,8,5,11/2,4,6,4,5,4,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,5,3,4,4,8,4,9/2,4,5,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,1/2,1,10,5,5,4,6,4,9/2,4,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,9/2,4,6,4,6,6,10,6,11/2,4,5,3,3,3,4,2,5/2,2,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,8,4,9/2,4,5,3,7/2,4,6,4,4,3,4,3,7/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,4,5,5,7,4,5,4,5,3,7/2,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,13/2,7,7,4,9/2,4,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,5/2,2,2,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,7/2,4,5,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,4,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,9/2,4,7,4,5,4,5,4,5,5,8,5,11/2,5,8,6,15/2,8,17,9,17/2,6,9,6,13/2,6,9,5,11/2,4,5,4,9/2,4,7,4,7/2,3,4,3,3,3,6,4,9/2,4,5,4,5,6,13,7,15/2,6,8,5,6,5,7,4,5,4,8,5,13/2,6,12,6,13/2,5,7,5,6,5,9,6,13/2,6,9,6,9,9,17,9,19/2,6,9,6,15/2,6,11,6,13/2,5,8,5,13/2,6,12,7,15/2,6,8,5,7,6,11,7,8,7,10,7,9,9,19,10,10,7,11,7,8,7,12,7,15/2,6,8,6,8,8,15,8,9,7,10,7,9,9,16,9,21/2,9,16,11,31/2,16,27,14,14,10,14,8,9,8,14,8,17/2,6,10,6,8,7,15,8,17/2,6,8,5,7,7,11,6,15/2,6,10,7,9,9,13,7,13/2,5,6,4,5,4,6,4,9/2,4,5,4,11/2,6,10,6,6,4,6,4,11/2,5,9,5,11/2,5,8,6,17/2,8,14,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,9,5,6,4,7,4,11/2,5,8,5,11/2,4,8,5,7,7,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,11/2,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,19/2,10,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,6,4,5,5,9,5,11/2,4,6,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,7,4,7/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,2,1,-1,0,-1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,5/2,2,2,2,5/2,2,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,3,7/2,4,6,4,9/2,4,5,4,11/2,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,4,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,5/2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,6,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,7/2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,6,4,5,4,5,3,4,3,6,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,5,7,7,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,6,9/2,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,23/2,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,9/2,6,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,11/2,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,7/2,5,4,7,9/2,5,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,7/2,5,5,6,4,4,3,4,3,3,5/2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,5/2,3,3,4,3,4,3,4,3,4,4,7 -12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,11/2,4,4,4,7,4,4,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,11,6,6,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,13/2,5,7,7,10,6,6,4,5,3,4,4,4,3,3,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,7,5,7,6,7,4,5,4,11/2,4,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,7,8,9,5,5,4,9/2,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,2,2,2,2,4,3,3,3,8,4,4,3,9/2,3,4,3,4,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,7/2,2,3,3,3,2,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,13/2,4,6,5,9,5,6,6,19/2,6,9,9,18,9,9,7,10,6,6,5,10,6,6,4,13/2,4,6,5,8,4,4,3,9/2,3,4,4,7,4,5,4,13/2,5,7,7,15,8,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,6,6,9,6,7,6,9,6,9,10,19,10,10,7,10,6,8,7,13,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,21/2,8,11,11,20,10,10,7,11,7,8,7,13,7,8,6,21/2,7,9,8,18,10,10,8,23/2,8,10,9,16,10,12,10,17,12,18,18,30,16,16,10,29/2,8,10,8,15,9,10,8,23/2,8,10,9,17,9,9,7,11,7,9,8,12,7,8,7,23/2,8,10,10,14,7,7,5,15/2,5,6,5,7,4,4,4,6,4,6,6,10,6,6,4,13/2,4,6,6,9,5,6,5,17/2,6,9,10,16,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,10,6,6,5,15/2,5,6,6,9,6,7,6,9,6,8,8,16,8,8,6,17/2,5,6,5,9,5,6,5,7,5,6,6,10,6,7,5,8,5,7,6,11,7,8,7,23/2,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,15/2,5,6,5,10,6,6,5,15/2,6,8,7,9,5,6,4,11/2,4,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,7/2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,6,4,4,3,3,2,3,3,2,1,1,1,3/2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,4,3,3,2,5/2,2,2,3,4,3,3,2,2,2,2,2,4,2,2,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,6,6,11 -7,4,5,7/2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,6,10,6,8,13/2,10,7,11,11,18,10,10,13/2,9,5,6,5,9,11/2,6,5,7,5,6,11/2,10,6,6,9/2,7,9/2,6,5,8,5,5,4,7,5,6,6,9,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,6,6,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,7/2,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,6,7/2,4,3,5,3,4,4,6,4,5,4,5,3,4,4,7,9/2,5,9/2,8,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,7/2,5,4,8,5,5,7/2,5,3,4,7/2,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,1,0,1,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,4,4,7 -9,5,6,4,5,3,4,4,6,4,9/2,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,2,1,1,1,8,4,4,3,5,3,4,3,5,3,7/2,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,5,7,4,9/2,3,4,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,3,5,3,5/2,2,4,3,3,3,5,3,4,4,5,4,6,6,7,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,2,2,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,3,5,3,7/2,3,3,2,2,2,3,2,5/2,2,3,2,3,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,5,4,5,4,5,4,8,5,11/2,4,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,7/2,3,5,3,4,4,6,4,6,6,11,6,13/2,5,8,5,11/2,5,7,4,5,4,6,4,11/2,5,10,5,5,4,6,4,5,5,7,4,11/2,4,7,5,15/2,8,14,8,15/2,5,7,5,6,5,10,5,5,4,6,4,11/2,5,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,9,9,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,13,8,19/2,8,13,9,27/2,14,23,12,25/2,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,12,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,8,5,5,4,6,4,5,5,8,5,5,4,8,6,15/2,8,12,7,7,5,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,11/2,4,6,4,5,5,7,4,5,4,8,5,6,6,12,6,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,6,4,11/2,5,9,6,13/2,6,10,7,9,9,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,9/2,4,6,4,11/2,6,6,4,4,3,4,3,3,3,3,2,3,2,3,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,2,2,2,2,2,7,4,7/2,2,3,2,3,3,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,6,4,4,3,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,-2,0,-1/2,0,0,1,3/2,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,3/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,2,4,3,4,3,5,3,3,3,4,3,3,3,6,4,7/2,3,5,3,4,4,5,3,7/2,3,5,4,5,5,10 -8,5,5,4,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,5/2,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,7/2,6,7/2,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,7/2,5,7/2,4,4,7,9/2,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,7,4,5,4,5,7/2,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,9/2,5,9/2,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,8,6,8,11/2,7,7,12,7,8,7,12,17/2,12,13,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,12,7,7,5,8,5,6,5,9,11/2,6,5,8,5,7,7,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,5,7/2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9 -14,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,5,3,3,3,4,3,3,2,3,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,11/2,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,9/2,2,2,2,3,2,1,1,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,11,6,7,5,8,5,6,5,15/2,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,5,8,6,8,7,11,6,5,4,5,3,4,4,13/2,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,6,5,8,5,6,6,19/2,6,6,5,8,5,7,7,11,6,5,4,5,3,4,4,13/2,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,17/2,6,7,6,10,7,10,10,13,7,7,5,8,5,5,4,15/2,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,4,4,12,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,14,8,9,7,10,6,8,6,21/2,6,6,4,6,4,6,6,10,6,7,6,9,6,7,7,13,7,8,6,10,7,11,11,20,11,11,7,10,6,8,7,13,7,7,5,8,6,8,7,9,5,6,4,6,4,5,4,15/2,4,5,5,8,6,8,9,19,10,10,7,10,6,8,8,27/2,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,25/2,7,8,7,12,9,13,13,24,12,12,9,13,8,10,8,14,8,8,7,11,7,8,8,16,9,9,7,10,6,8,7,25/2,7,8,7,12,9,13,13,28,14,14,10,15,9,11,9,16,9,10,8,12,8,11,11,24,13,13,10,15,10,13,12,43/2,13,16,13,23,16,23,23,39,20,20,14,20,11,13,11,20,11,12,9,15,9,12,11,22,12,12,9,13,8,10,9,33/2,9,10,8,13,9,12,12,19,10,11,8,11,7,8,6,21/2,6,7,5,8,6,8,7,12,7,7,5,8,6,8,7,25/2,7,8,7,13,9,13,13,19,10,10,7,11,7,8,6,10,6,7,6,9,6,7,7,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,23/2,6,6,5,8,6,8,8,15,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,23,12,12,8,12,7,8,8,27/2,8,8,6,9,6,9,8,16,9,9,7,10,6,8,7,23/2,6,7,6,9,6,8,8,10,5,5,3,4,3,3,3,11/2,4,4,3,4,3,3,3,10,5,5,4,6,4,4,4,11/2,3,3,3,4,3,4,3,13,7,6,4,6,4,5,4,13/2,4,4,4,6,4,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,10,5,5,4,6,4,4,3,5,3,4,3,5,3,3,3,1,1,1,1,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,3,3,5,3,3,2,2,2,2,2,7/2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,8,5,6,5,17/2,5,6,5,9,6,9,9,17 -8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,7/2,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,7/2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,7/2,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,7/2,4,4,8,9/2,5,4,6,5,7,7,11,6,6,9/2,6,4,5,9/2,8,4,4,3,5,7/2,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,8,9/2,5,4,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,15/2,16,8,8,6,9,5,6,5,9,5,6,5,7,5,6,13/2,13,7,8,6,9,6,8,7,12,15/2,9,8,13,9,13,13,22,12,12,8,12,7,8,7,11,6,7,11/2,9,11/2,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,3,5,4,5,4,7,4,5,9/2,7,5,8,15/2,11,6,6,4,7,4,5,4,6,4,4,7/2,5,7/2,4,4,9,5,5,4,6,4,5,4,8,9/2,5,4,6,4,6,6,10,6,6,9/2,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,7/2,5,4,5,5,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10 -9,5,6,4,5,4,9/2,4,7,4,5,4,5,4,5,4,7,4,7/2,2,4,3,7/2,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,7/2,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,7/2,3,6,4,11/2,5,7,4,7/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,11/2,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,4,3,6,4,9/2,4,5,3,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,5,9,5,11/2,4,7,4,11/2,5,6,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,15/2,6,7,5,6,5,9,5,9/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,13,7,13/2,4,7,4,11/2,5,9,5,5,4,6,4,11/2,6,10,6,6,5,6,4,11/2,5,9,5,6,5,8,6,9,9,16,8,17/2,6,8,5,13/2,6,9,5,6,4,7,5,6,5,10,6,6,5,6,4,11/2,5,8,5,5,5,8,6,17/2,8,18,10,19/2,6,10,6,7,6,11,6,7,6,9,6,15/2,8,15,8,17/2,6,10,6,17/2,8,14,9,11,9,15,10,15,15,26,14,14,10,14,8,19/2,8,13,7,8,6,10,6,8,8,14,8,15/2,6,8,5,7,6,10,6,13/2,6,9,6,8,8,13,7,7,5,8,5,11/2,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,11/2,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,8,5,5,4,6,4,11/2,5,10,6,6,5,7,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,7,4,5,5,10,6,7,6,10,7,10,10,15,8,17/2,6,8,5,13/2,6,9,5,5,4,6,4,11/2,6,11,6,11/2,4,6,4,5,5,8,4,9/2,4,6,4,6,6,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,8,5,5,4,4,3,7/2,3,4,3,3,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,7,4,4,3,4,3,3,3,3,2,3,2,4,3,3,3,1,1,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,1,0,0,0,0,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,-3,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,4,2,5/2,2,3,2,2,2,4,3,7/2,4,6,3,3,3,5,3,4,4,5,3,4,3,4,3,3,3,8,4,4,3,5,3,4,4,6,4,9/2,4,6,4,6,6,11 -8,9/2,5,4,4,3,4,3,5,3,4,3,4,3,4,7/2,6,3,3,2,3,2,3,5/2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,5/2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,7/2,5,4,5,6,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,6,4,5,9/2,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,6,5,7,5,8,8,13,7,7,5,7,4,5,9/2,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,11/2,8,5,6,5,9,5,6,5,8,5,6,13/2,13,7,7,5,8,5,7,7,12,7,9,15/2,12,8,12,12,22,11,11,8,11,13/2,8,13/2,11,6,7,5,8,5,7,6,11,6,6,9/2,6,4,5,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,7/2,5,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,7/2,5,5,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,1,1,1,1/2,0,0,0,0,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9 -13,7,8,6,15/2,4,5,5,8,5,5,4,6,4,6,6,9,5,4,3,9/2,3,3,3,7,4,4,3,9/2,4,5,5,7,4,4,3,9/2,3,4,3,3,2,2,2,9/2,4,5,5,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,9/2,2,2,2,4,3,3,2,5/2,2,2,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,9/2,3,4,3,6,4,4,4,11/2,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,7,4,4,4,11/2,4,4,4,6,4,5,4,7,5,6,6,11,6,5,4,5,3,4,3,7,4,4,4,11/2,4,6,5,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,13,7,7,5,7,5,6,5,8,5,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,8,5,6,4,13/2,4,6,5,10,6,6,5,15/2,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,5,7,7,10,6,6,4,11/2,4,4,4,7,4,5,4,6,4,6,6,9,5,6,4,11/2,4,4,4,7,4,4,4,6,5,7,7,11,6,7,5,8,5,6,6,9,5,6,4,13/2,4,6,6,12,7,7,5,8,5,7,7,11,7,8,6,21/2,8,11,11,18,10,10,7,11,7,9,8,11,6,6,5,15/2,5,6,6,9,5,6,4,11/2,4,6,5,9,5,6,5,17/2,6,8,9,18,9,9,6,9,6,7,6,12,7,7,6,17/2,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,25/2,9,14,14,21,11,11,8,25/2,7,8,7,14,8,8,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,12,8,12,12,25,13,13,9,25/2,8,9,8,16,9,10,8,13,8,11,11,22,12,13,9,14,9,11,11,20,12,14,12,43/2,15,22,22,38,20,20,13,37/2,11,13,11,18,10,11,8,27/2,8,11,10,18,10,10,7,21/2,6,8,7,15,9,10,8,25/2,8,12,11,19,10,10,8,23/2,7,8,7,10,6,7,5,8,5,7,7,12,7,8,6,17/2,6,7,7,12,7,8,7,11,8,12,12,18,10,10,7,19/2,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,17/2,6,7,6,12,7,7,6,9,6,9,9,16,9,9,7,10,6,7,7,12,7,8,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,21,11,11,8,12,7,9,8,12,7,7,6,9,6,7,7,14,8,8,6,15/2,5,6,6,10,6,6,5,15/2,5,7,7,12,6,6,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,9,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,3,10,6,6,4,13/2,4,4,3,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,10,6,6,4,11/2,4,4,4,4,3,3,2,7/2,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,4,3,3,2,5/2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,7,4,3,2,3,2,2,2,6,4,4,3,5,4,5,5,8,5,5,4,11/2,4,4,3,5,3,4,3,9/2,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,11/2,4,4,4,10,5,5,4,11/2,4,4,4,9,5,6,5,15/2,6,8,8,15 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,5,6,5,8,4,4,7/2,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,6,5,6,4,5,9/2,8,5,5,4,6,4,6,6,9,5,6,4,7,9/2,6,5,9,11/2,6,5,8,6,9,9,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,11/2,6,6,11,6,7,6,9,6,8,8,15,8,9,13/2,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,12,7,9,7,12,7,7,6,9,6,7,7,12,7,7,5,7,9/2,6,5,10,6,7,5,8,6,8,8,13,7,7,11/2,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,9/2,8,9/2,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,9/2,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,7/2,4,4,7,4,4,3,5,7/2,5,5,8,4,4,3,4,5/2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,5/2,4,3,4,7/2,6,3,3,3,4,3,3,5/2,4,3,3,5/2,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,10 -13,7,7,5,7,4,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,4,3,7/2,3,6,4,4,3,5,3,4,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,8,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,5,9,5,9/2,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,3,3,3,5,4,5,5,7,4,5,4,6,4,11/2,5,8,5,6,5,8,6,9,9,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,5,5,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,6,6,10,6,11/2,4,7,4,9/2,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,9/2,4,6,4,9/2,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,5,7,7,10,6,6,5,8,5,11/2,5,8,5,6,5,6,4,6,6,12,6,13/2,5,7,5,13/2,6,12,7,15/2,6,10,7,10,10,19,10,10,7,10,6,15/2,6,11,6,13/2,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,18,10,19/2,7,9,6,7,6,12,7,7,5,9,6,15/2,8,13,7,8,6,10,6,17/2,8,13,8,9,7,12,9,13,13,21,11,23/2,8,12,7,17/2,7,12,7,7,5,9,6,15/2,7,12,7,7,5,9,6,8,7,11,7,8,7,11,8,11,11,22,12,25/2,8,12,8,19/2,9,16,9,10,8,13,8,23/2,11,21,11,12,9,13,8,23/2,11,20,12,27/2,12,20,14,20,20,36,19,19,13,18,10,25/2,10,18,10,10,8,13,8,10,10,18,10,19/2,7,10,6,8,7,14,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,9,6,13/2,5,8,5,13/2,7,12,7,7,5,8,5,13/2,6,12,7,8,7,11,8,23/2,11,19,10,10,7,10,6,15/2,6,11,6,7,6,8,6,8,7,13,7,7,5,8,5,6,6,11,6,13/2,6,9,6,9,9,16,9,9,7,10,6,15/2,6,11,7,8,6,9,6,8,8,15,8,8,6,9,6,15/2,7,14,8,19/2,8,14,9,13,13,21,11,11,8,11,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,15/2,5,7,5,6,6,10,6,11/2,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,8,5,5,3,5,3,4,3,4,2,5/2,2,3,2,3,3,11,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,7/2,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,9,5,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,7,4,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,8,4,4,3,5,3,7/2,3,6,4,4,3,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,8,5,5,4,8,5,7,7,14 -12,7,7,5,6,4,4,4,6,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,9/2,4,7/2,5,3,4,4,6,4,4,3,5,7/2,4,5,9,5,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,9/2,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,7,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,13/2,11,6,6,5,7,5,6,6,10,11/2,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,10,7,9,6,7,6,11,13/2,7,5,9,6,7,7,13,7,8,6,10,6,8,8,13,8,9,15/2,13,9,13,13,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,9,6,7,7,11,7,8,7,11,8,11,11,22,12,12,8,12,8,10,9,16,9,10,8,13,17/2,12,11,21,11,12,9,13,17/2,12,11,20,12,14,12,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,13/2,8,7,13,8,9,7,12,8,11,11,19,10,10,7,11,6,7,6,9,11/2,6,5,7,5,6,13/2,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,6,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,6,11/2,9,6,9,9,16,9,9,7,10,6,8,13/2,11,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,13,9,13,13,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,5,7,5,6,6,10,6,6,4,6,4,6,6,11,6,6,4,6,7/2,4,4,6,4,4,3,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,3,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,7/2,3,2,3,2,3,3,4,3,3,3,5,7/2,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,6,4,4,4,8,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,9/2,8,5,5,4,7,5,7,7,13 -23,12,12,8,12,7,8,7,11,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,23/2,6,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,6,5,7,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,14,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,7,6,10,7,11,11,43/2,11,10,7,10,6,7,6,10,6,7,5,8,6,9,9,16,9,9,7,12,8,11,10,19,11,12,10,18,12,18,18,23,12,13,9,13,8,9,7,12,7,8,6,10,6,8,8,15,8,9,7,11,7,8,7,13,7,8,7,12,8,11,10,19,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,9,8,13,8,9,7,12,9,13,13,20,11,11,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,11,7,10,10,41/2,11,11,7,10,6,8,7,13,7,8,7,12,8,10,10,18,10,10,7,11,7,10,10,18,11,13,11,18,12,18,19,36,19,19,13,19,11,12,10,18,10,11,9,15,10,14,13,24,13,13,10,15,9,12,11,20,11,13,11,18,12,18,17,65/2,17,17,12,17,10,13,12,21,12,14,11,18,12,16,15,29,15,16,12,19,12,16,15,28,16,18,15,25,17,25,25,40,20,20,14,21,13,16,14,24,13,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,23,15,22,22,85/2,22,22,16,24,14,17,15,26,14,16,13,22,14,20,19,36,19,21,16,25,16,22,21,40,23,27,23,40,27,40,40,70,36,36,25,37,21,25,21,37,20,21,15,24,15,19,18,34,18,18,13,20,12,14,12,22,12,14,12,21,14,20,20,75/2,19,19,13,20,12,14,12,20,11,13,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,13,21,14,21,21,36,19,19,13,19,11,14,12,21,11,12,9,14,9,11,11,20,11,11,8,13,8,11,11,20,11,12,10,17,11,16,16,63/2,16,17,12,17,10,13,12,21,11,12,10,16,10,13,13,24,13,14,10,16,10,14,14,27,15,18,15,25,17,25,25,41,21,21,14,21,12,14,12,21,11,12,9,14,9,12,11,19,10,10,7,11,7,8,7,11,7,8,7,11,8,11,11,21,11,11,7,9,5,6,5,8,5,6,5,7,5,6,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,20,10,10,7,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,16,8,8,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,13/2,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,7,4,5,4,5,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,2,3,2,3,2,3,3,4,5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,7,5,8,5,6,6,10,6,6,5,7,5,8,8,14,8,8,6,8,5,5,5,8,5,6,5,9,6,9,8,31/2,8,8,6,8,5,7,6,11,6,7,5,8,6,9,9,16,9,10,7,11,7,8,8,14,8,9,7,12,9,13,13,25 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,19,10,10,7,10,6,6,11/2,10,6,6,5,8,6,8,7,12,7,7,11/2,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,13/2,9,6,7,6,11,13/2,8,6,10,6,8,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,20,10,10,7,11,7,8,7,13,7,7,11/2,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,12,7,9,8,14,8,8,7,12,8,10,10,18,10,11,8,13,9,12,11,21,12,14,12,21,14,21,21,36,19,19,13,19,11,13,11,19,21/2,11,8,13,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,11,15/2,10,10,20,10,10,7,11,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,7,13,8,9,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,6,10,6,6,11/2,9,6,9,9,17,9,9,13/2,9,6,7,13/2,11,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,13/2,8,13/2,11,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,9,5,4,7/2,5,7/2,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,4,5/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,9/2,4,8,4,4,3,4,3,3,2,4,3,3,2,4,3,7/2,4,7,4,9/2,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,3,3,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,9/2,4,9,5,5,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,9/2,4,7,4,7/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,13/2,6,11,6,11/2,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,11/2,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,8,5,11/2,4,6,4,5,5,6,4,4,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,6,4,9/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,13/2,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,11/2,4,7,4,5,5,10,6,7,6,10,7,10,10,19,10,21/2,7,10,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,15/2,6,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,15/2,6,10,6,17/2,8,16,9,9,7,10,7,9,8,14,8,19/2,8,14,9,13,13,20,10,21/2,7,10,6,17/2,7,13,7,15/2,6,9,6,15/2,8,13,7,8,6,9,6,8,7,13,8,9,8,13,9,25/2,12,23,12,12,8,12,7,9,8,14,8,17/2,7,12,8,10,10,18,10,11,8,14,9,12,11,22,12,29/2,12,21,14,21,21,36,19,19,13,19,11,13,11,20,11,11,8,13,8,11,10,18,10,19/2,7,10,6,8,7,11,6,7,6,11,8,21/2,10,20,11,11,8,12,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,10,6,7,7,13,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,11,6,7,5,8,5,7,7,11,6,13/2,5,7,5,6,6,10,6,13/2,6,9,6,19/2,10,18,10,10,7,10,6,15/2,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,15,8,19/2,8,13,9,27/2,14,21,11,23/2,8,11,6,15/2,6,11,6,13/2,5,8,5,13/2,6,10,6,11/2,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,7/2,3,5,3,4,3,4,3,3,3,5,3,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,10,6,11/2,4,5,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,9,5,9/2,4,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,3/2,1,0,0,0,0,4,2,5/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,1,1,2,2,-5,-2,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,7/2,3,5,4,9/2,4,8,5,5,4,5,3,7/2,3,5,3,4,3,5,4,11/2,5,8,4,4,3,5,3,4,4,7,4,4,3,5,4,11/2,5,9,5,5,4,7,4,5,5,8,5,5,4,7,5,8,8,14 -9,5,5,4,5,3,3,3,4,3,3,2,3,3,4,7/2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,4,3,3,3,5,7/2,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,5/2,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,7/2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,11/2,8,5,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,8,5,6,4,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,13/2,9,9,14,15/2,8,5,7,9/2,6,5,9,5,6,4,6,4,6,6,10,11/2,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,16,8,8,6,8,5,6,11/2,10,6,6,5,9,6,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,9/2,8,6,8,15/2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,9/2,7,4,5,5,9,6,7,5,9,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,5/2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,7/2,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10 -13,7,7,5,15/2,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,11/2,4,6,5,10,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,3,8,4,4,3,5,4,5,4,7,4,4,3,9/2,3,4,4,5,3,3,2,7/2,3,4,4,5,3,3,3,9/2,4,5,5,10,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,4,5,3,4,3,9/2,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,5,4,7,5,6,6,11,6,6,4,11/2,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,15/2,5,6,6,12,7,8,7,23/2,8,12,11,13,7,7,5,7,4,5,5,8,5,6,4,13/2,4,6,6,9,5,6,4,13/2,4,5,5,6,4,4,3,5,4,5,6,11,6,7,5,15/2,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,13/2,4,4,3,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,13,7,7,5,13/2,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,15/2,5,6,6,10,6,7,6,21/2,7,10,11,22,12,12,8,23/2,7,8,6,11,6,7,6,19/2,6,8,8,13,7,8,6,17/2,6,7,6,11,7,8,6,10,7,10,10,17,9,9,7,11,6,7,6,12,7,7,6,19/2,7,10,10,16,9,10,7,11,7,9,9,14,8,10,8,27/2,10,14,14,20,10,10,7,21/2,6,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,8,13,9,12,12,24,13,13,9,25/2,8,9,8,15,9,10,8,13,8,11,10,19,11,12,9,14,9,13,12,23,13,15,13,22,15,22,22,38,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,19,10,11,8,23/2,7,8,8,12,7,8,6,21/2,7,10,10,22,12,12,8,25/2,7,8,7,13,7,8,6,19/2,6,9,9,15,8,8,6,10,6,8,7,14,8,10,8,13,9,12,12,20,11,11,8,25/2,7,8,7,13,7,8,6,17/2,6,7,7,13,7,7,6,17/2,5,6,6,11,6,7,6,21/2,8,11,11,19,10,10,7,21/2,6,8,7,13,7,8,6,9,6,9,8,15,9,10,8,23/2,8,10,9,15,9,10,8,29/2,10,14,14,23,12,12,8,12,7,8,7,11,6,6,5,17/2,6,7,7,11,6,6,4,13/2,4,5,4,7,4,5,4,13/2,4,6,6,12,6,6,5,7,4,4,3,6,3,3,2,7/2,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,10,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,1,1,0,0,0,1,1,1,3,2,1,1,1/2,0,0,0,4,3,3,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,1,1,1,2,2,2,1,1,1,2,2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,9/2,3,3,3,6,4,4,4,11/2,4,4,4,9,5,5,4,9/2,3,4,3,6,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,15/2,6,8,8,14 -8,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,3,3,3,4,5/2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,7/2,5,3,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,5/2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,9/2,5,4,5,7/2,4,4,7,4,5,4,6,9/2,6,6,10,6,6,9/2,7,4,4,4,7,4,5,4,6,4,6,6,9,5,6,9/2,7,9/2,6,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,8,8,11/2,8,5,6,5,9,5,6,5,8,5,7,6,11,13/2,7,11/2,8,6,8,7,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,13,7,7,11/2,8,5,7,13/2,11,6,7,5,7,9/2,5,5,8,5,5,4,6,9/2,6,6,13,7,7,5,8,5,5,9/2,8,9/2,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,5,9/2,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,6,9,11/2,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,9/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,2,3/2,1,1,1,1,1,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8 -9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,3,4,2,5/2,2,2,2,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,2,4,2,5/2,2,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,3,3,2,5/2,2,5,3,5/2,2,4,3,7/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,4,4,2,5/2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,3,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,5,3,3,2,4,3,3,3,4,3,7/2,4,6,4,5,5,9,5,5,3,5,3,4,4,5,3,7/2,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,8,8,11,6,6,4,6,4,9/2,4,7,4,9/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,4,3,7/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,7/2,3,6,4,5,4,7,5,7,7,8,5,5,4,6,4,7/2,3,5,3,3,2,3,3,4,4,5,3,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,4,3,7/2,3,6,4,4,3,5,4,5,5,7,4,4,3,6,4,5,5,8,5,11/2,5,8,6,17/2,8,16,9,9,6,8,5,13/2,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,11/2,4,8,6,15/2,8,13,7,7,5,8,5,11/2,5,9,5,6,5,7,5,7,7,11,6,7,5,8,5,13/2,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,11/2,6,8,5,11/2,4,7,5,13/2,6,12,7,7,5,7,5,13/2,6,10,6,7,6,10,7,10,9,18,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,14,8,9,7,10,7,9,9,17,10,11,9,16,11,16,16,29,15,29/2,10,15,9,21/2,9,16,9,9,7,10,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,15/2,8,17,9,9,7,10,6,13/2,6,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,15/2,6,10,7,10,9,16,9,9,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,6,6,5,6,4,5,4,8,5,11/2,5,8,6,8,8,13,7,7,5,7,4,11/2,5,10,6,13/2,5,8,5,7,7,11,6,13/2,5,9,6,15/2,7,12,7,15/2,6,11,8,11,11,16,9,9,6,8,5,6,5,9,5,11/2,4,7,4,11/2,6,8,5,5,3,5,3,7/2,4,5,3,7/2,3,5,4,9/2,5,10,6,11/2,4,5,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,8,5,5,4,5,3,7/2,4,5,3,7/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,2,2,2,1,1,1,1/2,0,2,1,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,2,2,2,2,2,5/2,2,6,3,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,5,3,7/2,4,6,4,9/2,4,6,4,6,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,5/2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,5,8,5,5,9/2,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,9/2,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,7/2,4,4,6,9/2,6,6,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,15/2,14,8,8,11/2,8,5,6,5,9,5,5,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,11/2,11,6,6,5,6,4,6,5,9,5,6,5,9,6,9,8,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,9/2,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,10,14,7,7,5,7,4,5,5,8,9/2,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,7/2,4,4,6,4,6,5,9 -15,8,8,6,8,5,6,6,19/2,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,6,6,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,6,5,11,6,5,4,5,3,4,4,11/2,4,4,3,3,3,4,4,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,1,1,2,2,3,2,3,2,7/2,2,3,3,5,4,5,5,9,5,5,4,5,3,4,4,15/2,4,4,3,4,3,3,3,7,4,5,4,6,4,4,4,15/2,4,5,4,5,4,5,5,11,6,6,4,5,3,4,4,11/2,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,9/2,3,3,3,4,3,4,4,12,6,6,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,8,5,6,6,15,8,8,6,10,6,8,8,27/2,8,9,7,12,9,13,13,19,10,10,7,11,7,8,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,15/2,4,5,5,8,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,6,7,6,11,8,11,10,13,7,8,6,8,5,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,17/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,15/2,5,6,5,7,5,7,7,10,6,6,4,6,4,6,6,23/2,7,8,8,14,10,14,13,25,13,13,9,13,8,10,9,31/2,9,10,8,12,7,9,9,14,8,8,6,9,6,8,7,12,7,9,7,12,8,11,11,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,11,18,10,10,7,11,7,10,10,35/2,10,11,9,15,10,15,15,22,12,12,9,13,8,10,8,27/2,8,8,6,10,7,9,9,19,10,11,8,13,8,10,9,31/2,9,11,9,16,11,15,14,28,15,15,11,16,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,15,10,13,13,25,14,16,14,24,16,24,25,46,24,24,17,25,14,17,14,25,13,14,11,17,11,14,13,24,13,13,9,14,9,11,10,35/2,10,11,9,15,10,13,12,26,14,14,10,15,9,10,8,14,8,9,7,12,8,11,11,22,12,13,9,14,8,10,9,31/2,9,11,9,16,11,15,14,27,14,15,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,6,8,5,6,6,11,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,12,8,11,10,18,10,11,8,12,8,10,10,37/2,10,12,10,18,12,18,17,24,12,12,8,12,7,9,8,13,8,9,7,11,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,4,13,7,8,6,8,5,6,5,17/2,5,5,3,4,3,3,3,6,4,4,3,4,3,3,2,7/2,2,3,2,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,4,2,2,1,1,1,1,1,3/2,1,0,0,0,0,0,0,9,5,6,4,6,4,4,4,13/2,4,4,3,4,3,4,3,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,2,2,3/2,2,2,2,4,3,4,4,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,11/2,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,13/2,4,4,3,5,4,6,6,9,5,5,4,7,4,5,5,17/2,5,6,5,8,5,6,6,12,6,6,5,7,5,6,5,17/2,5,6,6,10,7,10,9,17 -9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,15/2,11,6,6,9/2,7,4,5,4,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,15/2,8,5,7,5,6,5,8,5,6,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,10,6,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,9,6,8,15/2,14,8,9,8,13,9,13,27/2,25,13,13,9,14,8,10,8,14,15/2,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,11/2,7,7,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,11/2,10,11/2,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9 -10,6,11/2,4,5,3,4,4,7,4,4,4,6,4,9/2,4,8,4,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,2,2,0,1,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,4,3,3,3,5,3,7/2,3,6,4,11/2,6,8,5,11/2,4,6,4,9/2,4,7,4,5,4,5,4,9/2,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,7,4,5,4,7,4,5,5,10,6,6,4,5,4,9/2,4,6,4,4,4,5,4,5,5,8,5,11/2,4,6,4,9/2,4,6,4,9/2,3,4,3,9/2,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,13/2,6,9,5,9/2,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,6,4,4,3,3,2,3,3,6,4,4,4,5,4,5,5,9,5,9/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,7,4,5,4,5,4,9/2,4,8,5,6,5,10,7,19/2,9,15,8,17/2,6,8,5,6,5,9,5,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,11/2,5,8,5,7,7,11,6,13/2,5,8,5,11/2,5,8,5,11/2,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,11/2,5,9,5,11/2,4,7,5,6,6,12,7,7,5,8,5,13/2,6,10,6,7,6,10,7,19/2,9,16,9,9,7,9,6,7,6,10,6,7,6,10,6,17/2,8,13,7,15/2,6,10,6,17/2,8,15,9,10,9,15,10,29/2,15,28,14,29/2,10,16,9,21/2,9,15,8,9,7,11,7,9,8,16,9,9,7,9,6,15/2,6,12,7,15/2,6,9,6,8,8,16,9,19/2,6,9,6,13/2,6,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,13/2,6,10,7,19/2,10,17,9,9,6,9,6,13/2,6,11,6,7,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,11/2,5,7,5,15/2,8,14,8,15/2,6,8,5,6,5,9,5,11/2,4,7,5,13/2,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,23/2,11,15,8,8,6,7,5,6,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,4,9/2,4,6,4,4,4,6,4,9/2,4,8,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,7,4,9/2,3,5,3,7/2,4,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,7/2,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,8,4,4,3,4,3,7/2,3,6,4,4,4,6,4,11/2,6,10 -9,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,9/2,7,4,4,3,5,3,4,3,6,7/2,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,8,9/2,5,4,6,9/2,6,7,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,4,8,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,7/2,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,10,6,6,9/2,6,4,4,4,7,4,4,7/2,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,11/2,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,23,12,12,8,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,11/2,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,11/2,8,5,6,5,7,4,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,9/2,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,9/2,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,11/2,9,6,9,9,12,6,6,9/2,6,4,4,4,7,4,4,4,6,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8 -15,8,8,6,8,5,7,6,9,5,5,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,11/2,4,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,0,1,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,9/2,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,15/2,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,17/2,6,7,6,13,7,8,6,21/2,8,11,11,21,11,11,8,12,7,8,6,12,7,8,6,9,6,8,7,13,7,8,6,15/2,4,5,5,8,5,6,4,13/2,4,6,6,13,7,8,6,8,5,5,5,8,5,6,4,13/2,4,6,5,8,5,6,4,13/2,4,5,5,7,4,5,5,17/2,6,8,8,12,6,6,4,11/2,4,4,3,6,4,4,3,4,3,3,3,8,5,5,4,5,4,5,4,8,5,6,5,15/2,5,6,6,11,6,6,4,6,4,5,5,7,4,4,3,5,4,6,6,10,6,6,5,15/2,5,6,6,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,10,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,9,9,14,8,8,6,9,6,7,6,9,5,6,5,17/2,6,8,8,14,8,8,6,19/2,6,8,7,12,7,9,8,25/2,8,12,12,17,9,9,7,10,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,19/2,6,8,7,13,8,9,7,12,8,11,11,21,11,11,8,23/2,7,9,8,13,7,8,7,23/2,8,10,10,18,10,10,8,12,8,10,10,19,11,13,11,39/2,14,20,20,39,20,20,14,21,12,14,11,21,11,12,9,29/2,9,12,11,21,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,23,12,13,9,13,7,8,7,12,7,8,6,21/2,7,10,10,18,10,10,8,23/2,7,8,7,12,7,8,8,27/2,9,13,13,23,12,12,8,23/2,7,8,7,14,8,8,6,9,6,7,7,14,8,8,6,8,5,7,6,10,6,8,6,21/2,7,10,10,20,11,11,8,11,7,9,8,12,7,7,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,15,10,14,14,20,10,10,7,19/2,6,7,6,11,6,6,5,17/2,6,7,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,5/2,2,3,3,9,5,5,4,11/2,4,4,4,7,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,6,4,4,3,9/2,3,3,3,3,2,3,3,4,3,3,3,6,4,4,3,9/2,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,0,0,0,1,3/2,2,2,1,1,1,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,9/2,4,5,5,8,4,4,3,7/2,3,4,4,4,3,3,3,11/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,12 -10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,3,4,5/2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,4,6,7/2,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,9/2,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,5,9,6,8,8,14,15/2,8,5,7,4,5,9/2,8,5,5,4,7,9/2,6,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,15/2,8,11/2,8,5,6,11/2,9,5,6,5,8,5,7,7,12,7,7,11/2,8,11/2,7,7,13,8,9,8,13,9,13,13,25,13,13,9,13,8,9,15/2,14,15/2,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,11/2,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,9,5,6,6,10,7,9,9,14,7,7,5,7,4,5,4,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,5/2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,7/2,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8 -14,8,15/2,6,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,5/2,2,3,2,5/2,2,3,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,3,3,4,3,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,8,4,9/2,4,5,3,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,3,4,3,4,4,6,4,4,4,7,5,13/2,6,12,6,13/2,5,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,8,5,7,6,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,15/2,6,9,6,15/2,7,12,7,7,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,12,7,7,5,7,4,11/2,4,7,4,9/2,4,6,4,9/2,4,8,5,5,4,6,4,9/2,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,5,3,4,4,7,4,11/2,4,6,4,13/2,6,10,6,6,4,6,4,5,4,8,4,9/2,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,7,8,7,12,8,12,12,20,10,21/2,7,10,6,7,6,11,6,13/2,5,9,6,15/2,7,12,7,7,5,8,5,6,5,9,5,11/2,5,8,6,8,8,14,8,15/2,5,7,4,11/2,5,9,5,6,5,7,5,7,7,12,7,15/2,6,8,6,15/2,7,12,7,17/2,7,12,8,11,11,16,8,8,6,9,6,13/2,6,10,6,6,5,8,6,8,8,14,8,15/2,6,8,5,7,6,11,6,15/2,6,11,8,21/2,10,19,10,21/2,7,11,7,17/2,8,12,7,8,7,10,7,9,9,18,10,21/2,8,12,8,10,10,18,11,13,11,18,13,19,19,35,18,37/2,13,18,10,25/2,10,19,10,11,8,14,9,23/2,11,20,11,11,8,12,8,19/2,8,15,9,10,8,12,8,11,11,21,11,11,8,11,6,15/2,6,11,6,7,6,10,7,19/2,10,17,9,10,7,10,6,15/2,7,12,7,8,7,12,9,13,13,20,10,21/2,8,10,6,15/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,6,8,5,6,5,9,6,7,6,9,6,9,9,19,10,21/2,7,10,6,8,7,12,6,13/2,5,8,5,7,7,14,8,15/2,6,9,6,7,7,12,7,17/2,8,13,9,13,13,20,10,21/2,7,10,6,7,6,11,6,6,5,8,5,13/2,6,10,6,11/2,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,4,3,7/2,4,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,9/2,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3/2,2,3,2,3,3,2,2,3/2,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,9/2,3,4,3,4,3,5,3,7/2,3,5,3,4,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,3,4,4,9,5,11/2,4,7,4,11/2,5,8,4,9/2,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,5,3,4,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,9,5,6,9/2,6,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,5/2,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,7/2,5,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,4,6,9/2,6,6,11,6,6,5,7,5,6,5,8,5,6,9/2,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,12,7,7,5,7,9/2,6,9/2,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,4,4,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,7,8,7,12,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,9/2,6,5,8,5,6,5,7,5,7,7,12,7,7,11/2,8,11/2,7,7,12,7,8,7,11,8,11,11,16,8,8,6,9,11/2,6,6,10,6,6,5,8,6,8,7,13,7,7,5,8,5,6,6,10,6,8,13/2,11,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,9,9,17,19/2,10,8,12,8,10,19/2,17,10,12,21/2,18,25/2,18,18,34,35/2,18,12,18,10,12,10,18,10,11,8,13,8,11,11,20,11,11,8,12,15/2,9,8,14,8,9,7,11,8,11,11,20,11,11,8,11,13/2,8,7,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,17/2,12,12,20,10,10,15/2,10,6,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,17/2,12,12,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,9/2,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,5/2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,4,4,6,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,8,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11 -26,14,14,10,15,9,11,9,16,9,9,7,10,6,8,8,31/2,8,8,6,8,5,6,6,10,6,7,5,8,6,9,9,11,6,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,11,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,4,6,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,4,3,4,4,7,5,7,7,8,5,5,3,4,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,8,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,15/2,4,5,4,5,4,5,5,8,5,5,4,7,5,8,8,15,8,8,6,9,5,6,5,8,5,6,5,7,4,5,5,17/2,5,6,5,8,6,8,7,13,8,9,7,12,8,12,12,21,11,12,9,13,8,10,8,14,8,9,8,14,9,13,13,24,13,14,10,15,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,11,13,11,18,10,11,9,14,9,12,12,43/2,11,11,8,12,7,9,8,15,8,9,7,12,8,12,12,22,12,12,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,6,9,6,8,8,16,9,11,9,16,11,15,15,20,11,11,8,12,7,8,7,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,18,10,10,7,11,7,8,7,13,8,9,7,11,7,10,10,35/2,10,10,8,12,8,11,11,20,12,14,12,21,14,21,21,37,19,19,13,20,12,14,12,20,11,13,10,16,10,14,13,49/2,13,14,10,15,9,11,10,18,10,12,10,16,11,15,15,25,13,14,10,16,10,12,10,18,10,11,9,15,10,13,12,45/2,12,13,9,14,9,11,11,20,12,14,12,21,14,21,21,31,16,16,11,16,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,16,10,12,11,19,11,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,13,11,18,12,18,17,33,18,20,15,24,15,20,19,36,20,23,19,34,23,34,34,66,34,34,23,35,20,24,20,35,19,21,16,25,16,22,20,38,19,19,13,20,12,14,13,23,13,14,12,20,14,20,20,38,20,20,14,21,12,15,13,23,13,14,11,18,12,16,16,63/2,16,16,12,18,11,14,13,25,14,17,14,25,16,23,23,38,20,20,14,20,11,13,11,20,11,12,9,15,10,14,13,47/2,13,14,10,15,9,12,11,21,12,13,11,18,12,17,17,38,19,19,13,20,11,13,11,20,11,13,10,16,10,14,14,26,14,14,10,15,10,13,12,22,13,15,13,22,15,22,23,37,19,19,14,21,12,15,12,21,11,12,9,14,9,11,10,37/2,10,11,8,12,7,9,8,15,9,10,8,12,8,11,10,16,9,9,6,9,5,6,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,16,9,9,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,6,4,4,3,5,4,5,5,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,6,6,10,5,5,4,6,4,6,6,23/2,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,29/2,8,9,7,10,6,8,7,12,7,8,7,12,8,12,11,21 -14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,5,5,6,7/2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,5/2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,9/2,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,13/2,12,13/2,6,5,7,9/2,5,9/2,8,5,5,4,5,7/2,4,4,8,4,4,7/2,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,6,11/2,9,6,8,8,14,15/2,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,11/2,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,13/2,8,7,11,6,7,6,10,7,10,10,17,10,11,8,13,8,11,10,19,11,12,10,18,12,18,18,34,18,18,25/2,18,11,13,11,18,10,11,17/2,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,8,7,14,8,9,8,13,9,13,13,20,11,11,8,11,6,7,6,11,6,7,11/2,8,6,8,7,12,7,8,6,8,5,7,6,11,6,7,6,10,7,9,9,20,21/2,10,7,11,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,11/2,7,7,12,7,8,7,12,8,12,12,20,10,10,8,11,7,8,7,12,13/2,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,5/2,3,2,3,3,4,3,3,3,4,3,3,3,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,6,11 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,5,5,3,4,3,7/2,3,7,4,5,4,5,4,5,5,6,4,7/2,2,4,3,3,3,4,3,7/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,4,4,6,4,11/2,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,4,3,6,4,7/2,2,3,2,7/2,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,3,4,3,9/2,5,9,5,5,4,5,3,7/2,3,4,3,3,3,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,7,5,13/2,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,15/2,6,9,6,7,6,12,7,8,7,12,8,12,12,22,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,11/2,5,9,5,11/2,4,6,4,6,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,11/2,4,6,4,5,5,10,6,6,5,9,6,9,8,11,6,7,5,7,4,5,5,8,5,5,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,5,4,6,5,7,7,11,6,13/2,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,13/2,6,12,7,17/2,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,13/2,6,9,6,17/2,8,15,8,17/2,6,10,6,7,6,10,6,7,6,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,19/2,6,10,6,7,6,11,6,6,5,8,6,15/2,8,13,7,8,6,8,5,13/2,6,11,6,15/2,6,10,7,21/2,11,19,10,21/2,8,12,7,17/2,8,12,7,15/2,6,10,7,11,11,18,10,11,9,13,8,23/2,11,20,11,13,11,19,13,39/2,20,36,19,19,13,19,11,13,11,19,10,23/2,9,14,9,12,11,21,11,11,8,12,7,17/2,8,13,8,17/2,7,11,8,11,11,22,12,23/2,8,12,7,9,7,14,8,9,7,10,7,10,10,18,10,10,7,11,7,17/2,8,15,9,10,8,14,10,14,14,22,12,12,8,12,7,8,7,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,7,11,6,15/2,6,10,7,10,10,22,12,23/2,8,11,7,8,7,12,7,7,6,10,6,17/2,8,14,8,17/2,6,8,6,15/2,7,12,7,9,8,12,8,25/2,13,21,11,11,8,12,7,17/2,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,13/2,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,7/2,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,7/2,4,6,3,3,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,7,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,-1/2,0,0,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,4,3,3,3,4,3,3,3,4,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,9/2,4,8,5,5,4,5,4,9/2,4,7,4,5,4,7,5,15/2,7,12 -11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,5,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,9/2,7,5,6,5,9,11/2,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,6,4,4,7/2,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,9/2,5,4,6,5,7,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,4,5,5,9,11/2,6,5,9,13/2,10,10,16,17/2,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,14,8,8,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,11/2,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,6,8,8,14,8,8,13/2,10,13/2,9,8,14,8,10,8,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,10,7,9,17/2,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,17/2,8,6,9,11/2,7,11/2,10,6,7,5,8,6,8,7,13,7,8,11/2,8,5,6,6,11,7,8,6,10,15/2,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,9/2,6,4,5,5,8,5,6,5,8,11/2,8,8,16,17/2,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,6,4,6,5,9,6,7,6,10,7,10,10,16,9,9,13/2,10,6,6,5,10,11/2,6,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,5/2,3,3,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,7/2,5,3,4,7/2,6,4,6,6,10 -18,10,10,7,19/2,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,11/2,4,4,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,6,4,11/2,4,5,5,8,5,5,4,13/2,4,6,6,11,6,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7/2,3,4,5,7,4,4,3,9/2,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,7/2,2,3,3,5,3,4,3,9/2,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,7/2,3,4,4,5,3,4,3,4,3,3,3,7,4,5,4,13/2,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,11/2,4,4,4,6,4,4,3,9/2,4,5,5,8,5,5,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,9,6,8,8,16,9,9,7,21/2,7,9,8,15,9,10,8,27/2,10,14,14,26,13,13,9,13,8,9,8,13,7,8,6,19/2,6,8,8,15,8,8,6,15/2,5,6,6,9,5,6,5,15/2,5,7,7,14,8,8,6,15/2,5,6,5,9,5,6,5,15/2,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,13,7,7,5,8,5,7,6,10,6,6,4,13/2,4,6,6,9,5,5,4,13/2,4,4,4,7,5,6,5,15/2,5,7,7,13,7,7,5,15/2,5,6,6,11,6,7,6,9,6,8,7,11,6,7,5,8,5,7,7,15,9,10,8,29/2,10,15,15,25,13,14,10,29/2,8,9,8,14,8,9,7,21/2,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,19/2,7,10,10,17,9,10,7,21/2,6,8,7,13,7,8,6,10,6,8,8,16,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,22,12,12,8,11,7,9,8,13,7,8,6,9,6,9,9,15,8,9,6,19/2,6,8,7,14,8,9,7,12,8,12,12,22,12,12,9,14,8,10,9,14,8,9,8,13,9,12,12,22,12,12,10,31/2,10,13,12,22,13,15,13,22,15,23,23,43,22,22,15,45/2,13,16,14,23,12,13,10,33/2,10,14,13,24,12,12,8,25/2,8,10,9,15,8,9,8,25/2,8,12,12,25,13,14,10,27/2,8,10,8,16,9,10,8,13,9,12,11,21,11,11,8,12,8,10,9,17,10,11,10,33/2,11,16,16,27,14,14,10,29/2,9,11,9,16,9,9,7,23/2,8,10,10,16,9,9,7,21/2,6,8,7,13,8,9,8,25/2,8,12,12,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,8,15,9,10,9,31/2,11,16,16,26,14,14,10,31/2,9,10,8,15,8,9,7,10,7,9,8,13,7,8,6,8,5,7,6,10,6,6,5,15/2,6,8,7,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,3,9,5,5,4,9/2,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,6,6,13,7,7,5,7,4,4,3,5,3,3,3,9/2,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,9/2,3,4,4,11,6,7,5,15/2,5,6,5,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,16 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,9,11/2,6,5,9,13/2,10,19/2,16,9,9,6,9,5,6,5,9,5,6,5,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,11/2,8,8,14,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,17/2,10,9,15,8,9,7,10,7,9,17/2,15,8,8,6,8,5,7,6,10,11/2,6,5,8,6,8,8,16,17/2,9,6,9,11/2,7,11/2,10,6,6,5,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,7,5,6,6,11,6,6,5,7,9/2,6,5,9,11/2,6,6,10,7,10,10,17,9,9,7,10,6,6,5,10,11/2,6,5,6,9/2,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,6,3,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,6,7/2,4,3,4,3,4,7/2,6,4,4,7/2,6,4,6,6,11 -15,8,17/2,6,8,5,11/2,5,8,5,11/2,4,7,5,6,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,2,4,3,3,3,6,4,7/2,2,4,3,3,3,5,4,9/2,4,6,4,6,5,10,6,11/2,4,5,3,3,3,6,4,4,3,4,3,4,3,5,3,7/2,3,4,3,4,4,6,4,4,4,6,4,13/2,7,14,8,15/2,5,7,4,11/2,5,8,5,6,5,7,5,13/2,7,14,8,8,6,9,6,7,7,13,8,9,7,11,8,12,12,21,11,23/2,8,12,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,7,5,6,4,6,5,8,5,5,5,7,5,13/2,6,12,6,6,4,6,4,5,4,7,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,5,11/2,5,8,5,7,7,11,6,13/2,5,7,5,6,5,7,4,4,3,6,4,9/2,4,9,5,5,4,6,4,9/2,4,7,4,5,4,7,5,13/2,6,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,8,5,7,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,25/2,12,22,12,23/2,8,12,7,15/2,7,12,7,15/2,6,8,6,15/2,7,14,8,8,6,9,5,6,6,10,6,13/2,6,8,6,17/2,8,15,8,9,6,10,6,7,6,10,6,13/2,5,8,5,7,6,13,7,13/2,5,8,5,6,6,11,7,8,7,12,8,23/2,12,20,11,11,7,10,6,7,6,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,8,5,13/2,6,11,7,8,6,10,7,21/2,10,19,10,10,8,12,7,8,7,12,7,15/2,6,11,7,10,10,19,10,11,8,12,8,21/2,10,18,10,25/2,11,19,13,19,19,36,19,19,13,20,12,27/2,12,20,11,12,9,14,9,12,11,19,10,21/2,8,10,7,9,8,13,7,8,7,11,8,11,11,21,11,11,8,12,7,9,7,14,8,17/2,6,10,7,9,9,16,9,19/2,7,10,6,8,7,14,8,9,8,14,10,27/2,14,24,12,25/2,9,14,8,10,8,13,7,15/2,6,10,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,12,8,21/2,10,20,10,21/2,8,11,7,8,7,11,6,13/2,5,9,6,8,7,14,8,17/2,6,9,6,8,7,12,7,8,7,13,9,13,13,24,12,25/2,9,13,7,8,7,13,7,8,6,8,6,15/2,7,10,6,6,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,4,3,4,3,5,3,5/2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,7,4,4,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,5,3,5/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,3,4,4,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,4,3,4,3,7/2,4,5,3,4,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,4,9,5,5,4,6,4,4,4,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,8,6,8,8,15 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,5/2,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,6,4,5,5,8,5,5,9/2,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,9/2,6,4,6,5,8,5,5,9/2,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,9/2,6,4,6,5,9,5,6,9/2,7,5,6,6,10,6,6,5,7,5,7,7,12,7,8,7,11,8,12,12,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,13/2,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,7,10,19/2,18,10,10,15/2,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,11,18,10,10,7,10,13/2,8,7,12,7,8,7,11,8,11,10,19,10,10,7,11,13/2,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,13,15/2,9,8,13,9,12,13,23,12,12,9,13,8,9,8,12,7,8,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,4,5/2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,3/2,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,7/2,5,4,5,5,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,7,7,14 -27,14,14,10,16,9,11,9,31/2,8,9,7,10,6,8,8,17,9,9,7,10,6,7,6,10,6,7,5,8,6,9,9,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,13,7,8,6,8,5,6,6,21/2,6,7,5,8,5,7,7,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,9/2,3,3,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,3,3,5,3,3,3,6,4,4,3,4,3,4,4,15/2,4,5,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,9,16,9,9,6,8,5,6,6,19/2,6,6,4,6,4,6,6,10,6,6,5,7,5,6,6,19/2,6,7,6,11,8,11,11,23,12,12,8,12,8,10,8,29/2,8,10,8,12,8,12,11,25,13,14,11,17,10,13,12,43/2,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,8,11,6,7,6,11,6,7,5,8,6,9,9,16,9,9,7,10,6,8,8,29/2,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,7,11,8,11,11,19,10,11,8,11,7,9,9,16,9,9,7,11,7,10,10,18,10,11,9,14,9,13,12,22,13,15,13,23,16,23,22,39,20,20,13,19,11,14,12,20,11,11,8,13,9,12,11,24,13,13,9,14,8,10,10,35/2,10,11,9,15,10,14,14,27,14,14,10,15,9,12,10,18,10,10,7,11,7,10,10,20,11,12,9,14,9,11,10,18,11,13,11,18,13,19,19,35,18,17,12,17,10,12,10,18,10,10,8,13,9,12,12,22,12,13,10,15,9,11,10,18,10,12,10,17,12,17,17,35,18,18,13,20,12,15,13,23,13,14,11,18,12,17,17,34,18,19,15,24,15,19,18,67/2,19,23,19,34,23,33,33,64,33,33,23,34,19,23,20,35,19,21,16,25,16,22,20,34,17,17,12,18,11,14,13,47/2,13,15,12,20,13,19,19,36,19,19,13,20,12,14,12,45/2,12,14,10,16,11,15,14,28,15,16,11,17,10,13,12,23,13,15,13,22,15,23,23,44,23,23,16,24,14,16,14,47/2,12,13,10,16,10,14,14,25,13,14,10,15,9,12,11,41/2,12,14,11,18,12,18,18,36,19,19,13,18,10,12,11,19,10,11,8,13,9,12,12,26,14,15,11,17,11,14,12,22,13,15,13,23,16,23,22,43,22,22,15,21,12,15,12,43/2,12,12,9,13,9,12,11,18,10,10,7,11,7,8,8,14,8,8,7,11,7,10,10,19,10,9,6,9,6,7,6,9,5,5,4,5,4,5,5,7,4,5,4,6,4,4,4,15/2,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,5/2,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,6,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,2,2,4,3,3,3,11/2,4,4,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,5,8,5,5,4,5,4,5,5,10,5,5,3,4,3,4,4,11/2,3,3,3,4,3,5,5,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,26 -15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,7,13/2,12,13/2,7,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,10,11/2,6,4,6,4,5,9/2,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,5,9,5,6,4,7,5,6,6,11,6,6,5,8,5,7,7,13,8,9,8,13,9,13,13,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,11/2,7,6,10,6,6,9/2,7,9/2,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,11/2,7,6,10,6,7,6,10,7,10,10,20,10,10,15/2,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,9,14,9,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,13,11,20,11,12,9,14,9,12,11,19,10,10,7,10,13/2,8,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,9,6,9,8,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,25,13,13,9,14,8,9,8,14,15/2,8,6,10,6,8,8,14,8,8,6,9,11/2,7,7,12,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,11/2,7,7,15,8,9,7,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,7,9,15/2,12,7,7,5,8,5,7,7,10,6,6,9/2,6,4,5,5,8,5,5,4,7,9/2,6,6,11,6,5,4,5,7/2,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1/2,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,7/2,4,4,5,4,6,11/2,11,6,6,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,7/2,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,9/2,8,5,5,5,8,11/2,8,8,15 -18,10,19/2,7,10,6,7,6,11,6,13/2,5,7,5,13/2,6,12,6,13/2,5,6,4,9/2,4,7,4,5,4,6,4,6,6,9,5,5,4,4,3,4,4,6,4,4,3,4,3,9/2,5,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,11,6,6,4,5,4,9/2,4,5,3,7/2,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,5,3,7/2,2,5,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,6,4,7/2,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,13/2,6,10,6,6,4,6,4,9/2,4,7,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,4,4,7,4,11/2,5,8,6,15/2,8,15,8,8,6,8,5,7,6,10,6,13/2,6,8,6,8,8,16,9,10,7,11,7,10,9,14,8,19/2,8,14,10,29/2,14,26,14,27/2,10,14,8,19/2,8,14,8,9,7,11,7,17/2,8,15,8,17/2,6,8,5,6,6,9,6,13/2,5,8,5,7,7,13,7,8,6,8,5,11/2,5,8,4,9/2,4,6,4,6,6,10,6,6,5,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,15,8,17/2,6,8,5,6,5,8,5,5,4,6,4,5,5,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,7,5,8,8,14,8,15/2,6,8,5,6,6,11,6,13/2,5,8,6,15/2,8,13,7,15/2,6,10,6,8,8,15,9,21/2,9,16,11,15,15,26,14,27/2,9,14,8,19/2,8,14,8,8,6,9,6,17/2,8,15,8,17/2,6,9,6,15/2,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,15/2,7,12,7,7,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,24,12,12,8,12,7,17/2,8,12,7,15/2,6,9,6,17/2,8,15,8,17/2,6,10,6,8,7,12,7,17/2,7,11,8,23/2,12,23,12,25/2,9,13,8,19/2,8,16,9,10,8,13,8,23/2,12,23,12,27/2,10,16,10,13,12,22,13,31/2,13,22,15,22,22,43,22,22,15,22,13,15,13,23,13,14,11,17,11,14,13,23,12,12,8,12,8,10,9,16,9,21/2,8,14,9,13,13,24,13,27/2,10,14,8,10,9,16,9,19/2,7,11,7,10,10,18,10,10,8,12,8,19/2,9,16,9,21/2,9,15,10,31/2,16,31,16,16,11,16,9,11,10,16,9,19/2,8,12,8,10,10,17,9,19/2,7,10,6,17/2,8,14,8,9,7,12,8,25/2,12,24,12,25/2,8,12,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,21/2,9,16,11,31/2,15,29,15,29/2,10,15,9,21/2,9,15,8,8,6,9,6,17/2,8,12,7,7,5,7,4,11/2,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,4,3,4,3,7,4,4,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,13/2,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,7/2,4,7,4,7/2,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,9,5,5,4,6,4,9/2,4,7,4,4,3,5,4,9/2,4,8,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,17 -15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,11/2,10,11/2,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,9/2,5,7/2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,9/2,9,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,5/2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,11/2,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,9/2,6,7,13,7,7,5,7,9/2,6,5,8,5,5,5,7,5,7,7,14,8,8,6,9,6,8,15/2,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,8,5,5,5,7,5,7,7,13,7,8,11/2,7,9/2,5,5,7,4,4,7/2,5,4,5,5,9,5,6,4,6,4,5,9/2,8,9/2,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,9,5,6,4,7,5,6,13/2,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,22,12,12,8,12,7,8,7,11,13/2,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,15/2,11,11,20,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,11/2,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,17/2,14,17/2,11,10,18,21/2,12,11,18,12,18,18,35,18,18,25/2,18,11,13,11,19,11,12,9,14,9,12,11,19,10,10,7,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,15,8,9,7,10,13/2,8,8,14,8,9,8,13,9,13,13,26,14,14,19/2,14,8,9,8,14,8,8,13/2,10,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,10,10,20,10,10,7,10,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,15/2,9,8,12,7,7,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,9/2,7,5,7,13/2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,12,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,7/2,6,7/2,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,4,5,9/2,8,11/2,8,8,15 -25,13,14,10,29/2,8,10,8,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,10,6,6,5,8,6,9,9,13,7,8,6,15/2,5,6,6,8,5,6,5,7,5,7,6,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,15/2,5,6,5,9,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,5,3,3,3,5,3,4,4,4,3,3,3,11/2,4,6,6,10,5,5,4,5,3,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,15/2,5,7,7,12,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,6,5,17/2,6,9,9,14,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,6,10,6,6,4,13/2,4,6,6,10,6,7,6,21/2,8,12,12,23,12,12,8,12,7,9,8,13,8,9,8,25/2,8,12,12,24,13,13,10,31/2,10,13,12,22,12,14,12,21,14,21,21,39,20,20,14,41/2,12,15,13,21,11,12,10,31/2,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,23/2,8,10,10,19,10,10,8,23/2,7,8,7,12,7,7,5,8,6,8,8,15,8,8,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,13,9,13,8,9,8,12,7,7,6,9,6,8,8,16,8,8,6,19/2,6,8,7,13,7,8,6,21/2,7,10,11,21,11,11,8,23/2,7,9,8,16,9,9,7,11,8,11,11,20,11,12,9,14,9,12,11,20,12,14,12,43/2,14,21,21,40,20,20,14,39/2,12,14,12,19,10,11,8,27/2,9,12,12,21,11,12,8,25/2,8,10,9,16,9,11,9,29/2,10,14,14,24,13,14,10,29/2,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,27/2,8,10,9,18,10,12,10,37/2,12,18,18,35,18,18,12,37/2,10,12,10,19,10,11,9,14,9,12,12,22,12,13,9,14,9,11,10,17,10,11,10,33/2,11,16,16,33,17,18,12,18,11,14,12,23,13,14,11,37/2,12,17,17,34,18,19,14,47/2,15,20,18,32,18,21,18,32,22,32,32,62,32,32,22,65/2,19,23,20,33,18,19,15,24,15,20,19,34,18,18,13,39/2,12,16,14,24,14,16,13,43/2,14,19,19,36,19,19,14,41/2,12,14,12,22,12,13,10,15,10,14,14,27,14,15,11,35/2,11,14,13,24,14,17,14,24,16,23,23,46,24,24,16,49/2,14,17,14,24,13,14,11,17,11,15,14,26,14,14,10,29/2,9,12,11,20,11,13,10,17,12,17,17,35,18,18,12,35/2,10,12,10,20,11,11,8,27/2,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,23,15,22,22,43,22,22,15,43/2,12,15,13,21,11,12,9,27/2,9,12,11,18,10,10,7,21/2,6,8,7,13,8,9,8,25/2,8,12,11,19,10,10,7,21/2,6,8,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,4,4,8,5,5,4,6,4,5,5,10,6,6,4,13/2,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,9/2,3,4,4,4,3,3,3,9/2,3,4,5,8,5,5,3,4,3,3,3,6,4,4,3,3,2,2,2,5,3,3,3,9/2,3,4,3,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,7/2,2,3,3,7,4,4,3,9/2,2,2,2,5,3,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,7/2,3,4,3,6,4,4,4,11/2,4,5,5,7,4,5,4,11/2,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,9,20,10,10,7,9,6,7,6,10,6,6,4,13/2,4,6,5,8,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,12,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,6,12,7,8,6,10,7,9,8,12,7,8,7,25/2,9,14,14,26 -17,9,10,7,10,6,7,6,11,6,7,11/2,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,9/2,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,6,6,9,11/2,6,11/2,8,6,8,8,16,9,9,7,10,7,9,8,15,9,10,9,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,8,5,6,6,9,11/2,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,7,5,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,7,15/2,15,8,8,6,8,5,6,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,10,6,8,7,11,6,7,5,8,11/2,7,7,12,7,7,6,9,6,7,6,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,22,12,12,17/2,13,8,10,8,15,9,10,8,12,8,12,12,23,12,13,10,16,10,13,12,21,12,14,12,22,15,22,22,42,22,22,15,22,13,15,13,22,12,13,10,16,10,14,13,23,12,13,9,14,17/2,11,10,16,19/2,11,9,14,19/2,13,13,24,13,13,9,14,8,9,8,15,8,9,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,12,10,16,11,16,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,17,9,10,7,11,7,10,9,16,9,11,9,16,21/2,15,15,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,11/2,6,5,8,6,8,8,13,7,7,5,7,9/2,6,9/2,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,3,2,2,2,4,3,3,7/2,6,7/2,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,9,5,6,5,9,7,10,10,18 -25,13,14,10,15,9,10,9,16,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,11/2,4,7,5,7,6,12,7,7,5,7,4,11/2,5,8,5,6,5,8,6,15/2,8,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,8,5,5,4,6,4,9/2,4,6,4,9/2,3,4,3,4,4,9,5,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,5,4,5,3,4,4,7,4,4,3,4,3,7/2,4,7,4,4,3,5,4,9/2,4,8,5,11/2,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,13/2,5,8,5,6,5,10,6,6,5,9,6,17/2,8,14,8,8,6,9,6,13/2,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,11/2,5,9,6,13/2,6,10,7,11,11,21,11,11,8,11,7,9,8,13,8,9,8,12,8,12,12,23,12,27/2,10,15,10,25/2,12,23,13,15,13,21,14,43/2,22,40,21,21,14,21,12,29/2,12,21,12,13,10,16,10,27/2,12,22,12,12,9,12,7,17/2,8,13,8,17/2,7,11,7,10,10,18,10,10,7,10,6,7,6,12,7,8,6,9,6,8,8,14,8,8,6,9,6,15/2,7,12,7,9,7,12,8,12,12,23,12,25/2,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,17/2,7,12,8,11,11,22,12,12,8,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,27/2,12,21,14,41/2,20,40,20,41/2,14,20,12,27/2,12,20,11,11,9,14,9,12,11,21,11,12,9,14,8,21/2,9,17,10,21/2,8,14,10,27/2,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,18,10,11,8,12,8,19/2,9,17,10,12,10,18,12,35/2,18,34,17,17,12,18,10,12,10,19,10,23/2,9,14,9,13,13,24,13,27/2,10,15,9,11,10,18,10,23/2,10,17,12,17,17,32,17,35/2,12,19,11,27/2,12,22,12,27/2,11,18,12,17,17,33,18,19,14,23,14,37/2,17,31,18,43/2,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,39/2,15,24,15,20,19,34,18,19,13,20,12,31/2,14,24,14,31/2,12,21,14,39/2,19,36,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,29/2,14,24,14,17,14,23,16,23,23,46,24,47/2,16,24,14,17,14,25,14,15,11,17,11,15,14,26,14,14,10,15,9,12,11,20,11,25/2,10,18,12,35/2,18,35,18,18,12,18,10,12,11,19,10,23/2,9,14,9,13,13,25,13,27/2,10,16,10,14,13,23,13,31/2,13,23,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,23/2,11,19,10,21/2,8,12,7,17/2,8,14,8,9,7,12,8,23/2,11,20,10,10,7,10,6,15/2,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,7/2,4,5,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,6,4,7/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,5,5,9,5,11/2,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,11,8,21/2,10,19,10,10,7,10,6,7,6,10,6,11/2,4,6,4,11/2,5,8,5,5,4,5,3,7/2,3,6,4,4,3,6,4,11/2,6,12,7,7,5,7,4,11/2,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,17/2,8,14,10,27/2,14,26 -25,13,14,10,15,9,10,9,16,9,10,7,11,7,10,9,16,8,8,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,9/2,7,5,7,13/2,12,7,7,5,7,9/2,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,9,11/2,6,11/2,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,11,7,9,8,14,8,9,8,12,8,12,12,23,12,13,10,15,10,13,12,23,13,15,13,21,29/2,22,22,41,21,21,14,21,12,14,12,21,12,13,10,16,10,13,12,22,12,12,9,12,7,8,15/2,13,15/2,8,7,11,7,10,10,18,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,15/2,8,7,12,8,11,11,22,12,12,17/2,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,40,21,21,14,20,12,14,12,20,11,12,9,14,9,12,11,21,11,12,9,14,8,10,9,17,10,11,9,14,10,14,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,19,10,11,8,12,8,10,9,17,10,12,10,18,12,18,17,33,17,17,12,17,10,12,11,19,21/2,12,9,15,10,13,13,24,13,14,10,15,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,19,11,14,12,21,12,13,11,18,12,17,17,33,18,19,14,22,14,18,17,31,18,22,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,19,29/2,23,29/2,19,18,34,18,19,13,20,12,15,14,24,14,16,25/2,21,14,20,19,37,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,14,27/2,24,14,16,14,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,11,18,11,15,14,26,14,14,10,15,9,12,11,20,11,12,10,18,12,18,18,34,18,18,12,18,10,12,11,19,21/2,12,9,14,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,22,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,12,11,20,21/2,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,15/2,11,13/2,8,6,10,6,6,9/2,7,4,5,5,8,9/2,5,4,6,4,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,9,8,14,10,14,14,26 -50,26,27,19,28,16,20,17,30,16,18,13,21,13,18,17,31,16,16,11,16,10,12,10,18,10,11,9,16,10,14,14,27,14,15,10,15,9,11,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,10,9,16,9,11,9,16,10,14,14,27,14,14,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,13,7,7,5,8,5,7,7,12,7,7,5,8,6,8,8,14,8,9,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,12,8,11,11,21,11,12,9,14,9,11,10,18,10,12,10,16,11,15,15,28,15,15,11,17,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,8,10,10,18,11,13,11,20,14,21,21,41,21,21,15,22,13,17,15,27,15,17,14,24,16,23,23,44,23,25,19,30,19,25,23,44,25,29,24,42,28,42,42,82,41,41,27,40,23,28,23,41,22,24,18,30,19,25,23,44,23,23,16,24,14,16,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,17,11,16,15,28,15,15,11,18,11,14,13,23,13,15,13,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,12,20,13,18,17,32,17,17,12,18,11,15,14,25,14,16,13,22,15,21,21,42,22,23,16,25,15,18,16,28,15,17,13,22,15,22,21,41,22,23,17,27,17,22,21,39,22,26,22,39,27,40,40,80,41,41,27,40,22,26,22,39,21,23,17,28,17,23,22,42,22,23,17,26,16,20,18,32,18,21,17,28,18,26,25,48,25,26,18,27,16,20,17,31,17,18,14,24,15,20,19,37,20,21,15,24,15,19,17,32,19,23,19,34,23,34,33,65,33,33,22,33,19,24,21,37,20,22,17,29,19,26,25,47,25,26,18,28,17,21,19,34,19,22,19,33,22,32,32,62,32,33,23,36,21,26,23,41,22,25,20,34,23,33,33,64,34,36,27,43,26,35,33,62,35,42,35,62,42,62,62,123,62,62,42,62,35,43,36,65,34,37,28,45,28,37,35,67,35,36,26,40,23,29,26,48,26,30,24,41,27,38,37,73,37,38,26,38,22,26,22,40,22,24,19,31,20,28,27,52,27,29,21,34,21,28,26,48,27,31,26,46,31,45,45,89,45,46,31,47,27,33,28,49,26,28,21,35,22,30,28,52,27,27,19,29,18,23,21,38,21,24,20,34,23,34,34,67,34,35,24,36,20,24,20,36,20,22,17,27,18,26,25,48,25,26,19,31,19,26,24,46,26,30,25,43,29,43,43,85,43,43,29,43,24,29,24,43,23,24,18,28,17,22,21,39,20,21,15,23,14,17,15,26,15,17,14,24,16,22,21,41,21,21,14,21,12,14,11,19,10,11,8,13,8,9,8,15,8,9,7,10,6,8,7,11,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,10,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,8,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,10,10,18,11,13,11,20,13,19,19,37,19,20,14,20,12,14,12,20,11,11,8,12,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,13,8,11,10,17,10,11,9,14,9,12,12,22,12,14,11,17,11,15,14,26,15,17,15,26,18,26,26,50 +50,26,26,18,26,15,18,16,29,16,17,13,20,13,17,16,30,16,16,11,15,9,12,10,18,10,11,8,13,9,12,12,24,12,12,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,7,12,7,9,8,14,9,13,13,26,14,15,11,18,12,16,15,29,17,20,17,29,19,28,28,55,28,29,20,29,16,19,16,27,15,16,12,18,12,16,15,29,15,14,10,14,9,11,9,16,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,7,7,12,7,7,5,8,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,11,10,18,10,10,8,12,8,12,11,21,11,12,9,13,8,10,9,17,10,12,10,18,12,17,17,33,17,17,12,18,11,13,11,20,11,13,10,16,11,15,15,29,16,17,13,20,13,18,17,32,18,21,18,32,22,33,33,66,33,33,23,34,19,23,19,34,18,20,16,27,17,23,22,43,23,24,17,26,15,19,17,31,17,20,16,28,19,27,27,52,27,27,19,28,16,19,16,28,15,17,13,21,14,19,18,33,18,19,14,23,14,18,17,32,18,21,17,30,20,30,30,59,30,31,21,31,18,21,18,31,17,18,13,21,13,17,16,29,15,15,10,15,9,11,10,17,10,11,9,16,11,15,15,28,15,15,10,14,9,11,9,16,9,10,8,14,9,13,12,23,12,13,10,16,10,14,14,26,15,19,16,29,20,29,29,56,29,29,20,30,17,21,17,30,17,19,15,24,15,21,20,39,20,21,14,21,13,16,14,26,15,17,14,24,16,23,23,44,23,23,16,24,14,18,16,30,17,19,16,28,19,27,26,51,27,28,21,33,21,28,27,51,29,34,28,50,34,50,50,98,50,50,34,51,29,36,31,56,30,33,25,40,26,36,34,66,35,37,27,42,25,33,30,57,32,37,31,55,37,54,54,107,54,55,38,59,34,42,37,68,37,42,33,57,37,53,52,102,53,57,42,69,42,57,53,102,57,68,56,100,67,100,100,199,100,100,67,101,57,68,57,102,53,57,43,70,43,58,54,104,53,55,39,60,35,44,39,73,40,46,36,62,40,58,56,110,56,56,39,59,34,42,36,64,34,38,29,47,30,42,40,76,39,41,29,46,27,35,32,59,33,38,31,54,36,54,54,106,54,54,36,54,30,36,30,52,28,30,23,37,23,31,29,55,28,29,21,32,19,25,23,42,23,26,21,37,25,36,35,68,35,35,24,36,21,26,23,41,22,24,19,32,20,28,26,50,26,27,19,30,18,24,23,43,24,28,23,40,26,38,37,72,37,37,25,38,22,26,22,39,21,23,17,28,17,23,21,40,21,21,15,22,13,17,15,27,15,17,14,23,15,21,20,39,20,21,14,21,13,16,15,27,15,17,14,23,15,21,20,39,20,21,16,25,16,21,20,37,21,25,21,38,26,39,39,76,39,39,26,39,23,28,24,42,23,25,19,32,21,30,29,55,29,30,22,34,20,26,24,44,24,28,23,39,26,37,37,72,37,37,26,40,23,28,25,45,24,27,21,36,23,33,32,62,32,34,25,41,25,34,32,60,34,41,34,61,41,61,62,123,62,62,42,63,35,42,35,63,33,35,26,43,27,37,34,65,33,34,24,37,22,27,24,43,24,27,21,36,24,34,33,65,33,34,24,36,21,25,21,38,21,23,18,29,18,25,24,46,24,26,19,29,18,23,21,38,22,26,21,37,25,37,37,73,37,36,24,36,21,25,21,38,20,22,17,29,18,25,24,46,24,24,17,27,16,21,19,34,19,21,17,28,19,27,26,51,26,27,18,27,16,19,16,29,16,17,13,21,14,19,18,35,19,20,14,22,14,18,17,31,18,21,18,31,22,33,33,65,33,32,22,32,18,21,18,32,17,19,15,24,15,21,19,36,19,19,13,19,11,14,13,23,13,15,12,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,19,10,11,8,12,7,9,9,16,9,10,9,15,10,15,15,28,15,16,12,20,13,17,15,28,16,19,16,27,18,26,26,50 +25,13,14,10,13,8,9,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,14,14,28,14,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,5,8,5,6,5,8,5,5,4,7,4,6,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,10,9,16,10,11,10,16,11,17,17,34,17,17,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,15,11,16,9,11,9,16,9,10,8,13,8,11,11,20,11,11,8,11,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,26,14,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,16,17,13,21,13,18,17,34,18,19,14,21,13,17,16,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,29,19,27,26,51,27,29,22,35,22,29,27,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,27,29,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,30,17,21,18,32,17,19,15,24,15,21,20,38,20,21,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,19,13,18,18,34,18,18,13,18,11,13,12,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,19,13,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,11,7,8,8,14,8,9,8,12,8,11,11,20,11,11,8,13,8,11,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,28,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,19,14,21,12,15,13,23,13,14,11,18,12,17,16,32,17,18,13,21,13,18,17,30,17,21,18,31,21,31,31,62,32,32,22,32,18,21,18,32,17,18,14,22,14,19,18,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,17,33,17,18,12,19,11,13,11,19,11,12,9,15,10,13,13,24,13,14,10,15,9,12,11,19,11,14,11,19,13,19,19,37,19,19,13,19,11,13,11,20,11,12,9,15,10,13,13,23,12,12,9,14,8,11,10,17,10,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,11,8,10,10,18,10,10,7,12,8,10,9,16,10,11,10,16,11,17,17,33,17,17,12,17,10,11,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +25,13,14,10,13,8,9,8,15,8,8,6,10,7,9,9,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,28,14,14,10,16,9,11,9,14,8,8,6,10,7,9,9,15,8,8,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,8,6,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,31,16,16,11,16,10,12,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,16,11,16,10,12,10,16,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,25,13,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,15,16,12,21,13,18,17,34,18,19,14,21,13,17,15,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,28,19,27,26,51,27,28,21,35,22,30,28,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,28,30,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,29,17,21,18,32,17,18,14,24,15,21,20,38,20,20,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,18,12,18,18,34,18,18,13,18,11,13,11,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,20,14,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,11,7,8,8,15,9,10,8,12,8,11,11,20,11,12,9,13,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,29,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,20,14,21,12,15,13,24,13,14,11,18,12,17,16,32,17,18,14,21,13,18,17,30,17,20,17,31,21,31,31,61,31,32,22,32,18,21,18,31,17,18,14,22,14,18,17,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,18,33,17,18,12,19,11,13,11,19,11,12,9,15,10,14,13,24,13,14,10,15,9,12,11,19,11,14,12,19,13,19,19,38,20,20,13,19,11,14,12,20,11,12,9,15,10,14,13,23,12,12,9,14,8,10,9,17,10,12,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,12,8,10,9,17,10,12,10,16,11,17,17,33,17,17,12,17,10,12,10,17,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,9,13,13,25 +17,9,10,7,9,6,7,6,10,6,6,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,6,9,6,6,5,7,5,7,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,11,6,8,6,11,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,20,10,11,8,11,7,8,7,11,6,7,6,9,6,8,7,14,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,17,33,17,17,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,10,14,9,12,10,19,11,13,11,19,13,19,19,36,19,19,14,20,12,15,13,24,13,15,12,19,13,18,18,34,18,19,14,24,15,20,19,34,20,23,20,35,23,34,34,67,34,34,23,34,20,23,20,35,19,20,15,24,15,20,19,36,18,19,14,20,12,15,14,25,14,16,13,22,14,20,20,37,19,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,14,10,16,10,12,11,20,12,13,11,19,13,19,18,36,19,19,13,18,11,13,11,17,10,11,8,13,8,11,10,19,10,10,8,11,7,9,8,15,8,10,8,12,8,12,12,23,12,12,9,12,8,9,8,14,8,9,7,11,7,9,9,18,10,10,7,11,7,8,8,15,8,10,8,14,10,14,13,25,13,13,9,14,8,10,8,13,8,8,6,10,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,7,13,8,9,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,10,20,10,11,8,12,8,10,8,15,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,16,9,10,8,12,8,12,11,21,12,12,10,15,9,12,11,20,12,14,12,21,14,21,21,41,21,22,15,22,12,14,12,21,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,8,9,8,12,8,12,12,22,12,12,8,13,8,9,8,13,8,8,6,10,7,9,9,17,9,9,7,10,6,8,8,13,8,9,8,13,9,13,13,26,14,14,9,13,8,10,8,14,8,9,7,10,7,10,9,16,9,9,6,9,6,7,6,12,7,8,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,7,5,8,5,7,6,12,7,8,7,11,8,12,12,22,12,12,8,12,7,9,7,12,7,8,6,8,6,7,7,13,7,7,5,7,4,6,5,8,5,6,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,4,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,6,6,10,6,6,6,10,7,9,9,17 +26,13,13,9,14,8,10,9,15,8,8,6,9,6,9,8,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,7,5,7,7,13,7,7,5,8,6,8,8,14,8,10,9,15,10,14,14,28,15,15,11,16,9,10,8,13,8,9,7,11,7,9,9,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,12,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,16,11,17,17,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,12,21,11,11,8,12,7,9,8,17,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,17,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,13,7,6,4,6,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,8,6,8,7,14,8,10,9,15,10,15,15,29,15,16,11,16,9,11,10,15,8,9,7,12,8,10,10,20,11,11,8,12,7,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,25,13,14,10,16,10,14,13,25,14,17,15,26,17,25,25,49,25,25,17,26,15,18,15,29,16,17,13,21,13,18,17,34,18,18,13,21,13,17,15,28,16,19,16,28,19,29,29,53,27,28,20,30,18,22,19,35,19,21,17,28,19,27,26,50,27,29,22,35,22,29,27,51,29,34,29,52,35,51,50,100,51,51,34,51,29,35,29,53,28,30,22,36,23,31,29,53,27,28,20,30,18,22,20,38,21,23,19,32,21,30,29,55,28,28,19,29,17,20,17,32,17,18,14,22,14,19,19,38,20,20,15,23,14,17,16,30,17,20,16,28,19,28,27,54,28,28,19,27,15,18,15,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,11,18,13,19,19,33,17,17,12,18,11,13,11,21,11,12,9,15,10,14,13,26,14,14,10,16,10,13,12,22,12,14,12,20,13,19,19,36,19,19,13,20,11,13,11,19,10,11,9,14,9,11,10,22,11,11,8,12,7,8,7,14,8,9,7,12,8,11,11,21,11,11,8,12,7,9,8,16,9,9,7,12,8,12,11,20,11,11,8,12,8,11,10,18,11,13,11,20,13,19,19,37,19,19,13,20,12,14,12,23,13,14,11,17,11,15,14,29,15,15,11,17,11,14,12,21,12,14,12,20,14,20,19,36,19,19,13,20,12,15,13,24,13,14,11,18,12,17,16,31,17,18,14,22,13,17,16,29,17,20,17,31,21,31,31,61,31,31,21,32,18,22,18,30,16,18,14,22,14,19,18,33,17,18,13,19,12,15,13,22,12,14,11,18,12,18,18,33,17,18,12,18,11,13,11,20,11,12,9,14,9,12,12,25,13,13,10,15,9,12,11,20,12,14,12,20,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,13,24,13,13,9,13,8,10,9,18,10,12,9,15,10,13,13,27,14,14,10,14,8,9,8,16,9,10,8,12,8,10,10,17,9,9,7,11,7,9,8,17,10,12,10,16,11,16,17,31,16,17,12,18,10,12,10,18,10,10,8,12,8,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,8,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,7,4,5,5,10,6,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,6,9,6,9,9,17,9,10,7,10,6,7,6,9,5,6,4,7,5,6,6,11,6,7,5,7,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,9,9,14,8,8,6,9,6,8,8,15,8,10,9,15,10,14,14,28,15,15,10,15,9,10,9,16,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,12,10,16,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,29,20,29,28,56,29,29,20,29,17,20,17,30,16,17,13,21,13,18,17,30,16,16,12,17,10,13,12,21,12,13,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,10,8,13,8,11,11,21,11,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,15,9,10,9,15,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,12,7,8,7,11,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,13,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,8,7,11,7,10,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,8,11,7,9,8,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15 +18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,5,4,5,5,9,5,6,4,6,4,5,5,9,6,7,6,10,7,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,6,4,6,6,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,8,7,10,7,11,11,20,11,12,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,6,5,8,6,9,9,14,8,8,6,9,6,7,6,10,6,7,6,10,7,11,11,17,9,10,8,11,7,10,10,18,10,12,10,18,12,17,17,34,18,18,12,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,15,9,11,10,19,11,14,12,19,13,19,19,36,19,19,13,20,12,14,13,24,13,15,12,20,13,18,18,33,18,20,15,23,15,20,18,35,20,24,20,35,24,35,34,67,34,34,23,35,20,24,20,35,19,20,15,25,16,21,20,36,19,20,14,21,12,15,14,25,14,16,13,22,14,20,19,37,19,19,13,19,11,13,12,21,11,12,9,15,10,13,12,24,13,14,10,15,9,12,11,21,12,14,11,19,13,18,18,35,18,18,12,18,10,12,10,18,10,10,8,12,8,10,10,20,10,10,8,12,8,10,9,14,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,13,9,14,14,24,13,14,9,14,8,10,8,13,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,13,8,9,8,14,10,14,13,26,14,14,9,13,8,9,8,15,9,10,8,11,8,11,10,19,10,10,8,12,7,9,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,10,9,17,9,10,8,13,8,11,11,21,11,12,9,15,9,12,11,20,12,14,12,21,14,21,21,42,21,21,15,21,12,14,12,20,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,9,10,8,14,9,12,12,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,17,9,9,7,11,7,8,7,13,8,9,8,13,9,12,13,25,13,14,10,14,8,10,8,15,8,8,6,11,7,9,9,17,9,10,7,9,6,8,7,12,7,8,6,10,7,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,11,20,11,11,8,11,7,8,7,12,7,7,5,8,5,6,6,13,7,8,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,3,3,4,4,4,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,10,7,10,10,18 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,8,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,4,7,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,15,8,9,7,10,6,9,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,8,12,8,11,10,18,10,10,8,12,8,9,9,16,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,13,10,17,11,15,15,27,15,16,12,20,13,17,16,29,17,20,17,29,20,29,29,56,28,28,19,29,17,20,17,29,16,17,13,21,13,18,17,31,16,17,12,18,11,13,12,21,12,14,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,17,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,6,7,7,12,7,8,7,11,8,12,12,21,11,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,11,7,8,7,12,8,12,11,22,12,12,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,9,7,11,7,9,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,17,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,11,7,8,8,13,8,9,7,12,8,11,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,7,10,11,21,11,11,8,12,7,9,7,13,7,7,6,9,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,7,7,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,11,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,15 +27,14,13,9,13,8,9,8,15,8,9,6,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,4,7,7,11,6,6,5,8,6,8,8,14,8,9,8,14,10,15,15,25,13,14,10,14,8,10,8,14,8,9,7,11,7,9,9,15,8,8,5,6,4,5,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,15,8,9,6,9,6,7,6,10,6,6,5,9,6,7,7,11,6,7,6,9,6,7,6,11,6,7,6,9,6,9,10,19,10,10,8,12,7,8,7,12,7,7,6,10,7,10,10,16,9,9,7,12,8,10,9,16,9,11,10,17,12,17,17,31,16,16,11,16,9,11,10,17,9,10,8,13,9,12,11,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,14,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,9,17,9,10,8,12,7,9,9,16,9,11,9,16,11,15,15,32,16,16,11,17,10,12,10,18,10,11,8,13,8,11,10,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,7,11,6,7,6,9,6,8,8,14,8,10,9,15,10,15,15,32,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,17,9,9,7,11,7,9,8,13,8,9,8,13,9,13,13,21,11,11,8,13,8,10,9,15,9,11,9,16,11,16,15,26,14,15,11,18,11,15,14,27,15,18,15,25,17,24,24,50,25,25,17,26,15,18,16,28,15,17,13,22,14,19,18,32,17,18,13,21,13,16,15,28,16,20,17,29,20,29,29,53,27,28,20,30,17,21,19,34,19,22,18,30,20,28,27,48,25,27,21,34,21,29,27,52,29,34,29,51,34,51,51,100,50,50,34,51,29,34,29,52,28,30,23,37,23,32,30,55,28,29,21,32,19,23,21,38,21,24,19,32,21,29,29,55,28,29,20,30,17,21,18,32,17,19,14,23,14,19,18,34,18,20,15,23,14,18,16,30,17,20,17,29,19,28,27,51,26,26,18,26,15,17,15,26,14,15,11,18,12,16,15,30,16,17,12,18,11,14,12,22,13,15,12,21,14,20,19,33,17,18,13,19,11,14,12,21,11,12,9,14,9,12,12,25,13,14,10,16,10,12,11,20,12,14,12,20,14,20,20,37,19,18,12,18,10,12,10,18,10,10,8,12,8,11,10,22,12,12,9,13,8,10,8,14,8,9,7,12,8,12,11,23,12,12,9,14,9,11,9,16,9,10,8,13,9,12,11,23,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,38,19,19,13,20,12,14,12,22,12,13,11,18,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,13,18,18,37,19,20,14,22,13,15,13,24,13,15,12,19,12,17,16,31,16,17,13,21,13,18,16,30,17,20,17,30,20,30,30,62,31,31,21,30,17,21,17,30,16,17,12,19,12,16,16,33,17,18,13,19,11,14,13,24,13,14,11,19,13,18,18,34,18,18,12,18,10,12,11,19,10,11,9,14,9,12,11,24,13,13,9,14,9,11,10,18,10,12,10,17,12,18,18,36,19,19,13,19,11,14,12,22,12,13,10,16,10,14,13,25,13,13,9,14,9,11,10,17,9,10,8,13,9,12,12,27,14,14,10,15,9,11,9,16,9,9,7,12,8,10,9,18,10,10,7,11,7,9,9,16,9,11,9,15,11,16,16,29,15,15,10,15,9,11,10,17,9,10,8,12,7,9,9,19,10,10,7,10,6,8,8,14,8,9,7,10,7,10,10,18,9,9,6,9,6,7,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,26 +14,8,7,5,7,4,5,5,8,5,5,4,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,4,5,4,5,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,11,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,12,10,16,11,15,14,25,14,15,11,18,11,15,15,27,16,18,15,27,18,27,27,52,26,26,18,27,15,18,16,27,15,16,12,19,12,17,16,29,15,16,11,17,10,12,11,20,11,13,10,17,11,16,15,29,15,15,11,16,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,12,8,10,9,16,9,11,9,15,10,15,14,27,14,14,10,14,8,9,8,14,8,9,6,10,7,9,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,10,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,16,9,11,9,16,11,16,16,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,9,17,9,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14 +15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,6,8,9,15,8,8,6,8,5,6,5,8,5,6,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,3,4,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,7,5,6,6,8,5,6,5,9,6,8,8,18,10,10,7,10,6,8,6,11,6,7,5,8,5,7,6,10,6,6,5,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,19,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,8,8,12,7,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,10,9,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,19,11,12,10,17,11,16,15,27,15,16,12,19,12,16,16,29,17,20,16,29,19,28,29,55,28,28,19,28,16,20,17,29,15,16,13,20,13,18,17,31,16,17,12,18,11,13,12,22,12,14,11,17,12,17,16,31,16,16,11,17,10,12,10,18,10,10,8,12,8,10,10,18,10,10,8,13,8,10,9,16,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,16,9,10,7,11,7,10,9,17,9,10,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,22,12,12,8,10,6,8,7,11,6,6,5,8,5,7,6,13,7,8,6,8,5,5,5,9,5,6,5,7,5,8,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,8,7,13,7,8,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,17,11,16,17,35,18,17,12,17,10,11,10,16,9,10,7,10,7,9,9,18,10,10,7,11,7,9,8,13,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,10,7,10,11,20,11,11,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,14 +12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,7,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,5,8,6,8,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,6,3,3,3,3,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,13,8,9,8,15,8,9,8,13,8,12,11,20,11,12,9,14,9,12,12,21,12,15,12,21,14,21,21,41,21,21,14,21,12,15,12,21,11,12,10,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,5,9,5,6,5,9,6,9,8,14,7,7,5,8,5,5,5,9,5,6,4,7,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,26,13,13,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,7,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,8,5,8,5,5,5,8,5,5,4,5,4,5,4,8,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10 +19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,5,4,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,4,4,3,3,3,4,3,4,4,8,5,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,12,8,11,11,22,11,11,8,11,7,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,9,9,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,7,5,7,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,8,14,8,8,6,9,6,8,8,12,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,8,5,5,4,5,3,4,3,7,4,4,4,6,4,6,5,9,5,6,5,8,5,7,6,12,7,9,7,12,8,12,11,22,12,12,8,12,7,8,7,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,5,11,6,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,17,17,32,17,17,12,18,11,13,11,18,10,11,8,13,9,13,13,21,11,12,9,14,9,11,11,20,11,13,11,18,12,18,19,36,19,19,13,20,12,15,13,24,13,15,12,20,13,19,18,32,17,19,14,23,15,20,19,34,19,23,19,33,23,34,34,66,33,33,23,34,19,23,19,34,18,20,15,24,15,20,19,36,19,19,14,21,13,16,14,25,14,16,12,20,14,20,19,35,18,18,12,18,11,13,11,20,11,12,9,14,9,12,11,21,11,12,9,14,9,12,11,18,10,12,10,18,12,17,17,34,18,18,12,18,11,13,11,19,10,11,8,12,8,11,10,19,10,10,8,12,7,8,7,14,8,10,8,14,9,13,13,22,12,12,8,12,7,9,7,14,8,8,6,10,7,9,8,16,9,9,7,11,7,8,7,14,8,10,8,14,10,14,13,26,14,14,9,13,8,9,8,12,7,8,6,9,6,9,8,16,8,8,6,8,5,6,5,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,16,9,9,7,10,6,7,7,13,7,8,7,12,8,12,12,26,14,14,10,14,9,11,9,16,9,10,7,11,8,11,11,18,10,11,8,12,7,9,9,16,9,9,7,12,8,11,11,24,13,13,9,14,9,11,10,17,10,11,8,13,9,12,11,20,11,12,9,14,9,12,11,19,11,13,11,18,13,19,19,42,21,21,14,20,12,14,12,19,10,10,8,12,8,11,11,22,12,12,9,13,8,11,10,16,9,10,8,14,10,14,13,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,9,8,15,8,9,7,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,6,10,7,10,9,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,14,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,4,3,2,2,2,2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16 +12,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,5,3,4,3,4,2,3,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,23,12,12,8,13,8,10,8,15,8,9,8,12,8,12,11,20,11,12,9,15,10,13,12,21,12,15,12,20,14,21,21,41,21,21,14,21,12,15,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,12,6,7,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,8,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,12,12,26,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,4,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,4,6,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,7,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10 +17,9,8,6,9,5,6,5,9,5,5,4,6,4,4,4,9,5,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,4,4,2,2,2,4,3,4,4,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,7,11,6,6,4,6,4,6,5,8,5,5,4,8,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,9,6,8,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,7,4,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,6,5,10,6,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,31,16,16,11,17,10,13,11,19,11,12,10,16,11,15,15,27,15,16,12,20,13,17,16,29,17,20,16,27,19,28,28,55,28,28,19,28,16,20,17,29,15,16,12,21,13,18,17,31,16,16,12,18,11,14,13,22,12,14,11,19,13,18,17,29,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,10,9,15,10,14,14,29,15,14,10,15,9,10,9,15,8,8,6,11,7,10,9,15,8,8,6,10,6,7,6,12,7,8,7,12,8,11,11,20,11,11,7,10,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,8,5,7,6,11,7,8,7,12,8,12,11,21,11,11,8,11,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,9,5,6,6,12,7,8,7,10,7,10,10,22,12,12,8,12,7,9,8,14,8,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,11,7,9,8,13,7,8,7,10,7,10,9,17,9,10,8,12,8,10,9,16,9,11,9,15,11,16,16,36,18,18,12,18,10,12,10,17,9,10,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,11,8,12,12,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,10,7,10,10,21,11,10,7,10,6,8,7,12,7,7,6,10,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,11,6,6,5,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +16,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,5,6,5,8,6,9,9,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,9,6,10,6,8,7,14,8,9,8,13,9,13,13,23,12,13,9,13,8,9,8,14,8,8,6,10,7,10,10,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,29,15,15,11,16,10,12,10,18,10,11,9,15,10,14,14,26,14,15,11,18,12,16,15,27,16,18,15,26,18,26,26,51,26,26,18,27,16,19,16,27,15,16,12,19,12,16,16,29,15,16,11,17,10,13,12,21,12,13,11,18,12,17,16,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,16,9,9,7,10,6,9,8,15,8,10,8,14,9,13,13,27,14,14,9,14,8,9,8,14,8,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,19,10,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,21,11,11,8,11,7,8,7,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,8,10,8,14,10,15,15,34,17,17,12,17,10,11,9,16,9,9,7,11,7,10,9,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,9,9,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,13 +29,15,14,10,14,8,9,8,14,8,9,7,10,6,8,7,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,17,9,9,7,10,6,7,5,8,5,5,5,8,5,7,7,12,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,11,6,6,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,4,7,4,4,4,6,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,16,16,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,9,16,9,9,6,8,5,6,5,7,4,4,4,6,4,5,4,13,7,7,5,7,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,6,9,9,10,6,6,4,5,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,12,19,10,10,7,10,6,8,7,13,8,9,7,11,8,11,11,21,11,12,9,14,9,11,10,17,10,11,9,16,11,16,16,34,18,18,13,19,11,12,10,18,10,10,8,12,8,11,10,19,10,10,7,11,7,8,7,13,8,9,8,13,9,12,12,25,13,13,9,12,7,8,7,11,7,8,6,10,6,8,8,15,9,10,8,12,8,10,10,18,10,12,10,17,11,16,16,34,18,18,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,11,8,12,8,10,9,15,9,10,8,13,9,12,11,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,18,18,33,17,17,12,17,10,11,9,15,8,9,7,11,7,10,9,17,9,9,7,11,7,9,8,14,8,10,8,13,9,12,11,20,11,11,8,13,8,10,9,15,9,10,8,14,10,14,14,28,15,16,12,19,12,16,15,28,16,19,16,27,18,25,25,44,22,22,15,23,13,16,14,24,13,14,11,19,13,18,18,34,18,20,15,23,14,18,17,32,18,21,17,29,20,29,29,56,29,30,21,33,19,24,21,38,21,23,18,30,19,26,25,49,26,28,20,32,20,27,25,47,27,32,27,47,32,48,49,98,49,49,33,50,28,33,28,49,26,28,21,34,22,30,29,55,28,29,21,32,19,24,22,40,22,25,20,33,21,30,30,50,26,26,18,26,15,18,15,27,15,16,12,20,13,17,16,30,16,17,13,20,12,15,14,26,15,17,15,26,17,25,25,52,26,26,18,27,15,17,14,24,13,15,11,18,12,16,15,27,14,15,11,16,10,12,11,19,11,13,11,19,13,19,18,36,19,19,13,20,12,14,12,21,11,12,9,14,9,12,12,22,12,13,10,15,9,12,12,22,13,15,12,20,14,20,20,38,20,20,14,21,12,14,12,20,11,11,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,10,8,14,9,13,13,24,13,13,10,15,9,11,10,17,9,10,8,12,8,11,11,22,12,12,9,14,9,11,10,18,11,13,11,18,12,17,17,39,20,20,14,21,12,15,13,23,12,13,10,16,10,14,14,27,14,15,11,16,10,12,11,19,11,13,10,17,12,18,18,34,18,18,13,20,12,14,12,21,12,14,11,18,12,16,16,30,16,17,13,20,13,17,16,29,16,19,16,27,18,27,27,65,33,33,22,33,19,22,18,32,17,18,13,21,13,18,17,32,17,17,12,18,11,13,12,21,12,14,12,20,13,19,19,32,17,17,12,18,10,12,11,19,10,11,9,14,9,12,11,20,11,11,8,12,8,10,9,16,9,11,9,16,11,16,16,36,19,19,13,19,11,14,12,21,12,13,10,17,11,15,14,26,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,28,15,15,10,15,9,11,9,15,8,9,7,11,8,11,10,19,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,29,15,15,10,14,8,10,9,15,9,10,8,12,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,14,7,7,5,8,5,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,23 +15,8,8,6,7,4,5,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,6,4,4,3,3,2,3,3,4,3,3,2,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,16,11,17,10,12,11,20,11,12,10,16,10,14,14,25,14,14,11,17,11,14,13,24,14,17,14,24,17,25,25,50,25,25,17,26,15,17,14,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,10,17,11,16,16,26,14,14,9,14,8,10,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,8,8,13,8,9,8,14,9,13,13,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,6,5,8,5,6,6,12,7,7,6,8,5,6,6,12,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,5,6,5,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,12,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,20,10,10,7,11,6,8,7,12,7,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,9,8,15,9,10,8,14,10,14,14,34,17,17,12,17,10,12,10,16,9,10,7,11,7,10,9,16,9,9,6,9,6,7,6,11,7,8,7,11,7,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,15,8,8,5,7,5,6,5,8,5,6,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,12 +15,8,8,6,7,5,6,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,9,14,8,8,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,10,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,6,4,6,5,10,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,24,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,9,15,10,15,15,30,16,16,11,18,10,12,11,20,11,12,10,17,11,14,14,26,14,14,11,17,11,15,14,25,15,18,15,25,17,26,26,50,26,26,18,27,15,18,15,25,13,14,11,18,12,16,15,29,15,16,11,17,10,13,12,22,12,14,11,18,12,16,16,26,14,14,9,14,8,10,9,14,8,8,7,11,7,9,9,16,9,10,7,11,7,9,8,13,8,10,8,14,10,14,13,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,18,10,10,7,11,7,8,7,12,6,6,5,8,5,6,6,12,7,8,6,8,5,6,6,12,7,8,6,10,7,10,11,21,11,12,8,11,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,7,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,6,4,7,5,7,7,12,6,6,5,7,5,6,6,9,5,6,6,9,6,9,9,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,10,9,15,9,10,8,15,10,14,15,35,18,17,12,18,10,12,10,16,9,10,7,12,8,10,9,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,11,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,16,8,8,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,4,6,4,5,5,6,4,4,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,6,6,11 +11,6,6,4,5,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,11,13,11,18,12,18,18,35,18,18,12,19,11,12,10,17,9,10,8,13,9,12,11,20,11,11,8,12,7,9,8,15,9,10,8,13,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,9,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,5,6,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,9,5,6,5,7,5,7,8,15,8,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,6,4,7,5,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,24,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,4,3,3,3,5,4,5,5,5,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,8 +16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,7,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,5,3,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,7,10,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,18,10,10,8,12,7,8,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,5,9,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,6,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,5,7,4,5,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,5,8,6,8,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,15,14,26,13,13,9,12,7,8,7,14,8,9,7,11,7,10,10,19,11,12,9,14,9,12,11,19,11,12,10,16,11,15,15,32,17,17,12,18,11,13,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,15,15,27,15,18,15,27,18,27,28,53,27,27,19,28,16,19,15,26,14,16,12,20,13,17,16,31,16,16,12,18,11,14,13,23,13,15,12,20,13,18,17,29,15,14,10,14,9,11,9,16,9,9,7,12,8,10,10,17,9,10,8,12,7,9,8,13,8,10,8,14,10,14,14,29,15,15,10,15,9,10,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,7,6,13,8,9,7,11,8,11,11,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,6,7,6,10,7,10,9,20,11,11,7,10,6,7,6,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,10,7,10,10,20,10,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,8,6,10,7,9,9,16,9,10,9,15,10,15,15,37,19,18,12,18,10,12,11,17,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,14,8,9,8,13,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,6,4,6,6,11,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,2,2,2,1,1,1,4,3,3,2,2,2,3,3,5,3,4,3,4,3,5,5,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,8,4,4,3,4,3,5,5,6,4,4,3,4,3,4,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,11 +9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,5,5,8,5,6,4,7,5,6,6,11,6,7,5,8,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,17,9,9,7,11,7,9,9,16,9,11,9,16,11,16,16,31,16,16,11,16,10,11,9,15,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,13,8,9,7,12,8,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,4,4,4,6,4,6,6,12,7,7,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,6,9,6,9,9,22,11,11,8,11,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7 +11,6,6,4,7,4,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,8,6,8,8,11,6,6,4,7,4,4,4,8,4,4,3,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,6,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,6,11,6,6,5,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,12,11,20,10,10,7,10,6,6,6,10,6,7,5,8,6,8,8,14,8,8,6,10,7,9,8,14,8,9,8,12,8,12,12,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,15,9,12,11,21,12,14,12,21,14,21,21,38,20,20,14,20,12,14,12,19,11,12,9,14,9,12,12,23,12,13,9,14,8,10,9,16,9,10,8,14,9,12,12,22,12,12,8,11,7,8,7,12,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,6,5,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,10,7,10,6,6,5,8,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,8,7,14,8,8,5,7,4,5,5,8,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,27,14,14,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,7,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,6,6,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,8,11,11,20,11,11,8,13,8,11,10,18,11,13,11,18,13,19,19,34,17,17,12,18,10,12,10,17,10,11,8,13,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,10,20,11,11,7,10,6,7,6,10,6,7,5,7,5,6,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,7,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,7 +18,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,7,5,8,5,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,5,6,5,8,6,9,9,12,7,7,5,7,5,6,6,10,6,7,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,11,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,16,9,9,6,8,5,6,5,8,5,6,5,8,5,6,6,7,4,5,4,7,5,7,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,10,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,10,6,8,7,12,9,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,6,8,7,14,8,8,6,9,5,6,5,9,5,6,5,8,6,9,9,18,9,9,6,9,6,7,6,10,6,7,6,9,7,10,10,16,9,10,7,11,7,10,10,18,10,12,10,17,12,18,18,31,16,16,11,16,9,11,10,17,9,10,8,14,9,12,11,23,12,13,10,16,10,12,11,20,11,13,11,20,13,19,19,37,19,20,14,20,12,16,14,26,14,16,13,21,14,20,19,36,19,20,15,24,15,20,18,33,19,22,19,34,23,34,34,62,32,32,22,32,18,21,18,32,17,18,14,23,15,20,19,39,20,20,14,20,12,15,13,24,13,15,12,20,13,18,18,36,19,19,13,18,11,13,11,18,10,11,9,14,9,11,11,22,12,12,9,13,8,10,9,16,9,11,9,16,11,15,15,34,17,17,12,17,10,12,10,18,10,11,8,12,8,11,11,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,23,12,11,8,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,30,15,15,10,15,9,10,8,14,8,8,7,11,7,9,8,12,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,15,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,9,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,9,17,9,10,8,12,7,9,8,14,8,9,8,14,9,13,13,24,13,13,9,12,8,10,9,15,8,9,7,11,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,18,18,43,22,22,15,21,12,14,12,22,12,13,10,16,10,13,12,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,13,22,12,12,9,13,8,9,8,14,7,7,5,8,5,7,7,15,8,8,6,8,5,7,7,12,7,9,8,13,9,12,12,23,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,18,9,9,7,10,6,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,6,8,5,6,5,8,5,5,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,7,7,4,5,4,5,3,3,3,4,2,2,2,2,2,2,2,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,7,5,6,6,10,6,7,5,8,5,7,7,12 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,7,4,5,4,7,4,4,3,5,4,5,4,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,7,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,13,7,7,6,9,6,7,6,11,6,7,6,11,8,11,11,20,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,13,8,11,10,18,10,12,11,19,13,19,19,34,18,18,12,18,10,12,10,18,10,10,8,13,8,11,11,21,11,11,8,11,7,9,8,13,8,9,7,11,7,10,10,20,11,11,7,10,6,7,6,10,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,10,6,7,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7 +11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,4,6,4,4,4,7,4,5,5,8,6,8,8,11,6,7,5,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,5,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,9,6,8,7,15,8,8,6,10,6,8,7,13,7,8,7,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,8,14,9,13,12,23,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,20,12,14,12,20,11,12,9,14,9,12,12,24,12,12,8,13,8,10,8,15,9,10,8,12,8,11,11,22,12,12,8,11,7,8,7,11,7,8,6,9,6,8,7,14,8,8,6,8,5,6,6,10,6,8,7,11,7,10,10,21,11,10,7,11,7,8,7,12,7,8,6,9,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,6,6,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,7,5,6,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,11,6,7,6,11,8,11,11,26,13,13,9,13,8,10,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,4,2,2,2,4,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,11,10,17,12,17,17,31,16,16,11,16,9,11,10,16,9,10,8,12,8,10,10,19,10,10,7,10,6,8,6,12,7,8,6,10,7,9,9,17,9,9,6,9,6,6,5,9,6,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,5,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,7,4,6,5,9,5,6,5,9,6,9,9,20,10,11,8,11,7,8,7,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,8,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,5,6,5,8,5,6,6,9,6,7,6,10,7,11,11,16,9,9,6,8,5,7,6,10,6,6,4,6,4,4,4,9,5,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,8,6,8,7,14,7,7,5,8,5,7,6,12,7,8,7,11,8,12,12,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,8,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,10,6,7,5,8,6,8,7,13,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,14,8,10,9,16,11,15,15,24,13,13,9,13,8,9,8,16,9,9,7,12,8,11,10,20,11,11,8,12,7,9,9,17,10,11,9,16,11,16,16,30,16,17,12,18,11,14,12,21,12,14,11,18,12,17,17,31,17,18,13,20,12,16,15,27,15,18,16,28,19,28,28,53,27,27,18,27,15,18,16,28,15,16,12,20,13,18,17,31,16,16,11,16,10,12,10,19,11,12,10,16,11,15,15,29,15,15,10,15,9,10,8,15,8,9,7,12,8,11,10,20,11,11,8,12,7,9,8,13,8,10,8,14,9,13,13,26,14,14,10,15,9,11,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,24,13,13,9,13,8,9,8,12,7,7,5,8,6,8,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,6,13,7,8,6,8,5,6,5,9,5,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,9,8,14,10,15,15,33,17,17,12,18,10,12,11,17,9,10,8,14,9,11,11,19,10,10,7,10,6,8,7,13,8,9,7,12,8,12,11,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,7,8,6,10,6,8,7,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,4,6,4,5,4,8,5,6,5,7,5,7,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,7,4,5,4,5,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,11 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,6,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,5,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,4,7,5,6,6,9,6,7,6,11,7,10,10,16,9,9,6,9,6,6,6,11,6,6,5,8,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,18,10,12,11,18,12,18,18,34,18,18,12,18,10,12,11,18,10,11,8,13,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,17,9,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,7,6,9,6,8,7,13,7,7,5,7,4,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,3,4,3,3,2,4,2,3,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,5,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,15,8,8,6,8,5,6,5,7,4,4,4,6,4,6,5,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,7,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,8,8,13,8,10,8,15,10,14,14,23,12,12,9,13,8,9,8,15,8,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,15,29,15,16,11,17,10,12,11,20,11,12,10,17,11,16,15,29,15,16,12,19,12,16,15,27,15,18,15,26,18,26,26,49,25,26,18,26,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,27,14,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,12,7,8,7,14,8,9,7,13,9,12,12,25,13,14,10,13,8,10,9,15,8,9,7,11,7,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,9,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,7,5,6,6,9,5,6,5,10,7,10,10,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,10,6,7,6,11,6,6,5,9,6,9,9,16,9,9,7,10,6,8,8,14,8,10,8,14,10,14,14,31,16,16,11,17,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,8,6,8,9,19,10,10,7,9,5,6,6,10,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,6,4,6,6,10 +11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,8,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,8,8,13,8,9,8,14,10,14,14,22,12,12,8,12,8,9,8,14,8,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,11,16,10,12,11,20,11,12,10,17,11,15,15,28,15,16,12,19,12,16,14,26,15,18,15,26,17,25,25,48,25,25,17,26,15,18,15,26,14,16,12,19,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,15,10,14,14,26,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,8,7,14,8,9,7,12,8,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,30,16,16,11,16,10,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,19,10,10,7,9,5,6,6,10,6,6,5,8,6,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,10 +20,10,10,7,10,6,8,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,8,8,8,5,5,4,6,4,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,7,7,12,7,7,6,10,7,9,9,17,9,10,8,12,8,10,10,18,10,12,11,19,13,19,19,25,13,13,9,13,8,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,5,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,20,11,11,8,12,8,10,9,16,9,11,9,14,9,12,12,22,12,12,9,15,10,13,12,23,13,16,13,22,15,21,21,27,14,15,11,16,9,11,10,17,9,10,8,12,8,11,10,19,10,11,8,12,7,9,9,16,9,10,8,13,9,12,12,24,13,13,9,13,8,9,8,13,7,8,6,9,6,9,9,17,9,10,7,10,7,9,8,14,8,10,8,14,10,15,15,32,16,16,11,17,10,13,12,21,12,13,10,16,10,13,12,23,12,12,8,11,7,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,15,8,9,7,12,8,11,11,20,11,12,9,13,9,12,11,21,12,14,12,20,13,19,19,35,18,18,12,18,11,13,11,20,11,12,10,17,11,15,14,26,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,26,14,14,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,17,12,18,11,15,14,26,15,18,15,27,18,26,26,42,22,22,15,23,13,16,14,24,13,15,12,19,12,17,16,31,16,16,12,18,11,15,14,26,15,18,16,28,19,27,27,54,28,28,19,29,17,22,19,34,18,20,16,27,18,26,25,49,26,28,21,34,21,28,26,50,28,33,28,50,33,49,49,94,48,48,32,48,27,31,26,46,24,26,19,31,20,27,25,47,24,25,18,27,16,19,17,31,17,20,16,26,17,25,25,49,25,26,18,26,15,18,16,28,15,16,12,18,12,16,15,28,15,16,12,18,11,15,14,25,14,16,13,22,15,22,22,47,24,23,16,23,13,16,14,25,14,15,12,19,12,16,15,28,15,15,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,16,11,15,9,10,9,16,9,10,8,13,9,12,11,21,11,12,9,13,8,11,10,19,11,13,11,19,13,19,19,43,22,22,15,22,13,16,14,25,13,14,11,18,11,15,13,24,13,13,9,14,8,10,9,15,8,9,7,12,8,11,11,20,10,10,7,10,6,7,7,12,7,8,7,11,8,11,10,19,10,11,8,12,8,11,10,19,11,12,10,18,12,17,17,24,13,13,10,15,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,10,7,9,9,16,9,11,10,17,11,16,16,30,16,16,11,17,10,13,11,20,11,11,9,14,9,13,12,23,12,13,10,17,10,13,12,23,13,16,14,26,18,26,26,59,30,30,21,32,18,22,19,33,18,19,14,23,14,19,18,34,18,19,13,20,12,14,13,23,13,15,12,19,13,19,19,36,19,19,13,19,11,13,11,18,10,11,9,14,9,12,12,23,12,13,10,15,9,11,10,19,11,13,10,17,12,17,16,37,19,19,13,19,11,13,11,19,10,10,7,11,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,8,11,11,20,11,11,7,10,6,7,7,12,7,8,6,9,6,7,6,11,6,7,5,8,5,7,6,11,7,9,8,14,10,15,15,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,9,9,18 +10,6,6,4,6,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,7,4,5,5,8,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,3,3,4,3,4,3,5,4,5,5,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,14,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,9,6,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,13,25,14,15,11,17,11,14,13,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,14,10,16,10,14,13,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,8,8,7,12,8,11,11,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,8,14,10,14,14,30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,8,6,8,8,11,6,6,5,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,10 +10,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,6,4,4,4,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,4,3,4,3,4,3,5,5,2,2,2,2,1,1,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,13,7,8,7,12,8,12,11,14,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,10,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,10,6,8,7,11,6,7,5,9,6,8,7,12,7,7,5,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,17,9,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,10,7,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,15,15,27,14,14,10,15,9,11,10,17,10,11,9,15,10,14,13,25,14,15,11,17,11,14,13,26,15,18,15,26,18,26,26,48,25,25,17,25,14,16,14,24,13,14,10,17,11,15,14,24,13,13,9,14,8,10,9,16,9,10,8,13,9,12,12,26,14,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,14,8,8,7,12,8,11,11,25,13,12,8,13,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,7,12,7,8,6,9,6,8,7,12,8,10,9,14,10,14,14,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,6,6,10 +7,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,4,3,3,3,6,3,3,3,4,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,4,4,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,7,7,5,7,4,6,5,8,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,7,12,7,8,7,11,7,10,10,17,10,10,8,12,8,10,9,18,10,13,11,18,12,18,18,33,17,17,12,17,10,11,9,17,9,10,7,12,8,10,10,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,9,18,10,10,7,9,6,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,4,6,5,8,5,6,4,7,4,6,5,8,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,12,6,7,6,8,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,6,4,4,4,8,4,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,13,7,7,5,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,3,3,4,3,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,6,8,7,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,10,5,5,4,5,4,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,13,7,7,6,9,6,7,7,10,6,7,6,10,7,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,15,21,11,11,8,12,7,9,8,13,8,9,7,11,7,9,9,18,10,10,7,10,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,25,13,14,11,18,11,15,14,26,15,18,16,28,19,27,27,49,25,25,17,26,14,16,13,25,13,14,11,17,11,15,14,25,13,14,10,14,8,10,9,16,9,10,8,14,9,13,13,28,15,15,10,14,8,9,8,15,8,9,7,11,7,8,8,15,8,8,6,9,6,8,7,14,8,9,7,12,8,12,12,26,13,13,9,14,8,9,8,14,8,8,6,10,7,9,9,17,9,9,7,10,6,7,7,11,6,7,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,7,6,10,5,5,4,6,4,4,4,5,3,4,4,6,4,5,5,11,6,6,5,8,5,7,6,9,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,10,6,6,4,6,4,6,5,10,6,7,6,9,6,9,8,17,9,9,7,10,6,7,6,12,7,7,6,10,6,8,8,12,7,7,6,10,6,7,7,12,7,9,9,16,11,16,15,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,21,11,11,7,10,6,8,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,8,21,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,6,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,2,3,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,11 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,5,8,5,6,5,8,6,8,9,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,7,10,7,9,8,15,9,11,9,16,11,16,16,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,4,3,5,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,4,7,5,6,5,9,6,9,9,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,5,3,4,3,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,6,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,5,6,5,8,5,7,7,10,6,6,5,9,5,6,6,10,6,7,6,10,7,10,10,15,8,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,8,12,8,11,10,18,11,13,11,19,13,19,19,34,18,18,12,19,11,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,7,10,9,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,8,7,10,6,7,5,8,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,9,5,6,5,7,5,6,6,9,5,6,4,7,4,5,4,7,4,5,4,5,4,6,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,3,3,3,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,6,6,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,15,8,7,5,7,5,6,5,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,7,7,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,5,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,13,7,8,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,9,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,30,15,15,11,16,9,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,7,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,5,4,4,4,5,3,3,3,4,3,5,5,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,5,4,5,5,7,4,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6 +10,6,6,5,7,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,11,6,5,4,5,3,4,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,16,9,9,6,8,5,6,6,10,6,6,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,11,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,8,6,10,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,10,6,8,8,14,8,9,7,10,6,7,7,12,7,7,6,10,7,10,10,15,8,8,6,10,7,9,9,16,9,10,9,15,11,16,16,24,13,13,9,14,8,10,8,14,8,9,7,12,8,11,10,18,10,11,8,12,7,9,9,16,9,11,10,17,11,16,16,29,15,15,11,17,10,12,10,18,10,12,9,15,10,14,14,27,15,16,12,20,12,16,15,28,16,20,17,29,19,28,28,54,27,27,18,26,15,17,15,26,14,15,11,17,11,15,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,14,30,16,16,11,17,10,11,9,16,9,9,7,11,7,9,9,14,8,8,6,9,6,8,8,14,8,10,8,13,9,13,13,28,15,15,11,16,9,11,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,11,8,11,11,28,15,15,10,15,9,10,8,14,8,9,7,11,7,9,9,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,13,7,8,6,8,5,5,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,9,7,10,6,7,6,10,6,6,4,6,4,5,4,11,6,7,5,8,5,6,6,11,6,7,6,10,6,8,8,21,11,11,8,13,8,10,8,14,8,9,7,10,7,9,9,16,9,9,7,11,7,8,8,14,9,11,9,16,11,16,16,31,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,11,7,9,8,15,9,10,8,13,9,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,6,8,8,21,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,4,3,5,5,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10 +5,3,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,11,7,9,8,15,9,11,9,16,11,15,15,29,15,15,10,14,8,10,8,14,8,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,6,6,5,8,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,5,6,5,8,6,8,8,8,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,5,8,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,9,10,8,13,8,10,9,17,10,12,10,18,12,17,17,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,5,6,6,10,6,7,6,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,9,5,5,4,6,4,6,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,6,4,5,3,4,4,6,4,4,3,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,13,7,6,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,10,7,10,10,18,9,9,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,5,12,6,6,5,8,5,6,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,4,6 +4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,7,4,5,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,13,8,9,8,14,9,13,13,24,12,12,9,13,8,9,8,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,14,7,7,5,8,5,6,5,7,4,4,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,6,5,8,5,7,7,9,5,5,4,6,4,4,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,4,5,5,11,6,6,5,8,5,6,6,9,5,6,6,10,7,10,10,9,5,6,4,6,4,4,4,5,3,3,2,3,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,7,5,6,6,9,5,5,4,7,4,5,5,8,5,5,4,5,4,5,4,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,9,9,12,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,6,8,7,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,7,11,8,11,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,22,22,40,21,21,14,21,12,14,12,20,11,11,8,12,8,11,10,20,11,11,7,10,6,8,7,12,7,8,7,11,7,10,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,10,6,7,6,10,7,10,10,21,11,11,7,10,6,7,6,12,7,7,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,8,5,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,5,8,6,8,8,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,5,4,5,4,5,5,6,4,5,4,6,4,6,7,10,5,5,4,6,4,4,3,7,4,4,3,4,3,3,3,8,4,4,3,4,3,5,5,7,4,5,4,6,4,6,5,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,7,6,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,6,8,7,13,7,8,6,8,5,7,6,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,4,5,4,9,5,5,4,6,4,6,6,16,9,9,6,9,6,7,6,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,7,4,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,13,8,9,8,13,7,7,6,8,6,7,7,12,7,7,5,7,4,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,7,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,7,4,5,5,8,5,6,5,8,6,9,9,7,4,5,4,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,6,5,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,7,10,10,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,10,10,19,10,11,9,14,9,12,11,20,12,14,11,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,12,8,10,9,16,9,9,6,9,6,8,7,11,7,8,6,9,6,9,9,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,18,9,9,6,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,4,6,4,4,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,6,5,8,5,7,7,20,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,13,7,7,5,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,9,5,6,6,10,6,7,6,11,8,11,11,17,9,9,7,9,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,7,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,4,2,2,2,3,3,4,4,6 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,10,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,7,12,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,19,13,19,19,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,9,9,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,9,6,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,6,5,9,5,6,5,7,5,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,5,6,3,3,3,3,2,3,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,13,7,7,5,8,5,6,5,9,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5 +7,4,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,5,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,3,2,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,6,8,8,14,8,10,9,16,11,16,16,13,7,7,5,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,11,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,7,5,8,5,7,6,11,7,8,7,12,9,14,14,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,18,10,10,7,10,6,8,7,11,7,8,6,10,7,9,8,14,8,9,7,10,6,8,7,12,7,9,8,14,10,14,15,20,11,11,8,12,7,8,7,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,7,12,7,8,7,12,8,11,11,17,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,11,13,11,18,12,18,19,32,17,17,12,17,10,12,10,18,10,11,9,14,9,13,12,23,12,12,9,14,9,11,11,20,11,13,11,18,13,19,19,33,17,17,12,19,11,14,12,22,12,14,11,19,13,18,18,34,18,19,14,23,15,20,19,36,21,25,21,37,25,37,37,69,35,35,23,33,19,22,18,31,16,17,12,19,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,12,17,16,36,18,18,13,19,11,13,11,18,10,10,8,12,8,11,11,21,12,13,10,15,9,12,11,19,11,12,10,16,11,16,16,32,17,17,12,17,10,11,9,15,8,9,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,24,13,13,9,13,8,10,9,15,8,9,7,10,6,8,7,12,7,8,6,10,6,8,7,13,8,9,8,13,9,13,13,36,19,19,13,20,11,13,11,19,10,11,8,12,8,11,10,18,10,10,7,9,6,7,7,12,7,7,6,10,6,8,8,10,6,6,5,7,5,6,6,10,6,7,6,9,6,8,7,12,7,8,6,10,6,8,7,13,8,9,7,11,7,10,10,16,9,9,7,10,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,6,4,5,4,7,5,8,8,24,13,13,9,14,9,11,10,17,9,10,8,12,8,11,11,20,11,11,8,13,9,12,12,22,13,15,12,21,14,20,20,30,15,15,11,16,10,12,10,17,9,10,8,12,8,11,11,20,11,11,8,13,8,10,9,15,9,10,8,12,8,12,12,23,12,12,8,12,7,9,8,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,7,6,9,6,9,9,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,7,12,7,8,6,10,6,8,7,13,7,8,7,12,8,10,10,11,6,7,5,7,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,6,10,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,6,7,5,8,5,7,6,10,6,6,5,8,5,7,7,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,4,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,5,9 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,16,8,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,8,12,8,11,10,19,11,13,11,19,13,20,20,36,19,19,12,18,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,7,6,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,5,12,7,7,5,7,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,5,3,3,3,3,3,4,3,5 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,5,3,4,4,5,3,4,4,5,4,6,5,6,3,3,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,4,7,4,5,5,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,8,8,12,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,5,7,4,5,4,7,4,4,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,7,6,10,7,11,11,17,9,9,6,10,6,7,6,11,6,7,6,9,6,7,7,13,7,6,5,7,5,6,6,11,7,8,7,10,7,10,11,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,8,13,8,11,10,20,12,14,12,20,14,21,21,38,20,20,13,19,11,13,11,17,9,9,7,10,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,10,7,10,9,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,7,20,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,4,3,5,3,3,3,6,3,2,2,3,2,2,2,4,3,4,3,4,3,5,5,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,8,12,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,4,5,5,6,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,5,3,3,3,3,3,4,4,6 +3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,5,3,3,3,4,3,3,3,5,4,4,4,6,5,7,7,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,3,5,3,3,3,5,4,4,4,7,4,5,4,6,4,4,4,7,4,5,5,8,6,8,8,12,6,6,5,7,4,5,4,8,5,5,4,7,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,15,15,28,14,14,10,14,8,9,8,13,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,5,8,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,14,8,8,6,8,5,5,4,8,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4 +3,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,5,3,4,4,7,5,7,7,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,10,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,5,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,13,7,8,6,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,5,4,7,4,5,4,7,5,7,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,8,5,7,7,12,7,8,7,12,9,13,13,22,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,23,12,13,9,14,9,12,11,23,13,16,13,23,16,23,23,44,22,22,15,21,12,14,12,20,11,11,8,12,8,10,10,18,9,9,7,10,7,9,8,13,8,9,7,12,8,11,10,21,11,10,7,10,6,7,6,10,5,5,4,6,4,6,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,10,6,6,5,8,5,6,5,9,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,5,6,5,9,5,5,4,6,4,4,4,9,5,5,4,7,5,8,8,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,6,4,5,4,6,4,4,3,5,3,3,3,5,4,5,5,7,4,4,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,12,8,12,12,17,9,9,7,10,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,8,5,6,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,5,14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,6 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,14,8,10,8,14,10,14,14,26,14,14,9,13,8,9,8,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,4,5,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,3,5,3,4,3,6,4,6,6,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,8,11,6,6,4,6,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,6,6,10,7,10,10,14,8,8,6,9,5,6,6,10,6,6,5,9,6,7,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,11,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,17,10,12,10,16,9,9,7,11,7,9,8,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,17,9,8,6,8,5,6,5,8,4,4,3,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,6,8,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,6,5,7,4,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,4,5,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,4,4,4,8,5,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,6,6,9,7,10,10,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,8,17,9,10,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,8,6,7,7,15,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 +2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,2,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,6,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,8,5,5,4,6,4,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,4,7,4,5,5,8,5,6,5,8,5,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,10,6,8,8,14,8,10,8,14,9,13,13,23,12,12,9,13,8,9,8,13,7,7,6,9,6,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,13,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,15,8,9,6,9,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,15,16,25,13,14,10,14,9,11,10,18,10,11,8,12,8,11,10,20,11,11,8,11,7,10,9,16,9,11,10,17,12,18,18,31,16,16,12,18,11,13,11,20,11,13,10,16,11,15,15,31,17,18,13,21,13,17,16,30,17,20,17,31,21,31,31,59,30,30,20,30,17,19,16,28,15,15,11,17,11,15,14,27,14,14,10,16,9,11,10,18,10,12,9,15,10,13,13,27,14,14,10,14,8,10,8,14,8,8,7,11,7,9,8,16,9,9,7,11,7,8,8,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,16,9,9,7,12,8,10,9,15,8,8,6,10,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,13,8,9,8,13,7,7,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,31,16,16,11,16,9,11,9,15,8,9,7,11,7,9,8,12,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,17,9,9,7,11,7,9,8,14,8,9,7,10,7,9,9,19,10,11,8,12,7,9,9,16,9,11,9,16,11,16,16,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,14,8,8,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,3,4,4,6,4,5,4,6,4,6,5,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,4,5,4,5,4,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,8,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,6,8,5,7,6,10,6,7,5,7,5,7,6,11,6,7,5,7,4,6,5,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,17,12,17,17,33,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,5,5,8,4,5,4,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,7,5,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,6,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,9,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,13,7,8,6,8,5,6,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,9,8,14,8,8,7,12,8,10,10,21,11,12,9,13,9,12,11,20,12,14,12,20,14,20,20,39,20,20,13,20,11,13,11,19,10,11,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,5,9,5,6,4,5,3,4,4,8,4,4,4,6,4,5,4,7,4,5,4,7,5,8,8,20,10,10,7,11,7,8,6,10,6,6,5,8,5,6,5,9,5,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,4,2,2,2,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,11,6,7,6,11,7,10,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,11,6,7,5,7,5,6,6,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,17,9,10,7,11,7,10,9,16,10,11,10,16,11,17,17,32,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,6,11,6,7,5,7,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4 +-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,4,3,4,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,6,6,10,7,9,9,10,5,5,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,4,6,4,5,5,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,9,5,6,4,6,4,4,4,7,4,5,5,8,6,8,7,12,7,8,6,9,6,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,7,4,5,4,8,5,5,5,8,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,6,5,7,7,12,7,7,5,8,6,8,7,12,7,8,7,11,8,11,12,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,8,14,8,9,8,14,10,15,15,26,13,13,9,14,8,10,9,17,9,10,8,12,8,11,11,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,15,29,15,16,12,19,12,17,16,28,16,19,16,28,19,28,29,55,28,28,19,28,16,18,15,27,15,16,12,18,11,15,14,27,14,14,10,15,9,11,10,17,9,10,8,14,9,13,12,23,12,12,8,12,7,8,7,14,8,9,7,12,8,10,9,15,8,9,7,10,7,9,8,16,9,10,8,13,9,13,13,25,13,13,9,14,8,9,8,16,9,9,7,10,6,8,8,14,8,9,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,11,8,11,7,8,7,13,7,8,6,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,10,10,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,13,7,7,5,6,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,7,6,12,7,7,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,9,8,14,10,15,15,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,4,4,5,3,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,18,9,9,7,10,6,7,6,12,6,7,6,8,5,7,7,13,7,7,6,8,6,7,6,11,6,8,6,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,11,8,11,10,20,11,11,8,13,8,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,12,10,18,10,11,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,6,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,10,6,6,5,7,4,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,7,6,9,5,5,4,7,4,6,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,6,5,8,6,9,9,9,5,4,3,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,4,4,7,4,5,5,8,6,8,7,13,7,8,6,8,6,8,7,13,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,7,7,12,6,6,5,6,4,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,9,11,9,17,9,10,8,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,11,21,11,12,10,16,11,16,15,30,16,17,13,19,12,16,15,29,17,20,16,28,19,28,28,53,27,27,18,27,15,18,15,27,14,15,11,18,11,15,14,27,14,14,10,15,9,11,10,16,9,10,8,14,9,12,12,22,12,12,8,13,7,8,8,13,7,8,7,11,7,10,9,16,9,10,7,10,7,9,8,16,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,8,11,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,9,8,16,9,10,7,10,6,8,8,14,8,10,9,15,11,16,16,19,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,8,6,8,8,13,7,6,5,7,4,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,8,5,6,5,8,6,9,9,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,9,6,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25,13,13,10,14,9,11,9,16,9,10,8,11,7,10,10,19,10,11,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,12,21,11,12,10,16,11,16,15,30,16,17,13,20,12,16,15,29,16,19,16,28,19,28,28,52,26,26,18,26,15,18,15,27,14,15,11,18,11,15,14,26,14,14,10,15,9,11,10,16,9,10,8,13,9,12,12,22,12,12,8,13,8,9,8,13,7,8,7,11,7,10,9,16,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,8,8,16,9,9,7,10,6,8,8,14,8,10,9,15,11,16,16,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,7 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,4,3,5,5,8,5,5,4,6,5,7,7,12,7,7,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,9,17,9,10,8,12,8,11,11,20,11,13,11,19,13,18,18,15,8,8,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,8,7,11,8,12,12,22,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,13,10,16,10,13,12,23,13,15,12,21,14,21,21,27,14,14,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,11,8,12,8,10,9,17,10,11,9,15,10,14,14,26,14,14,10,15,9,11,10,17,10,11,9,14,9,13,12,23,13,14,11,17,11,14,13,24,14,16,13,23,15,22,22,44,22,22,15,21,12,14,12,22,12,13,10,16,10,14,14,27,14,15,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,12,9,13,8,9,8,14,8,9,8,13,9,13,12,23,12,13,9,14,9,12,11,21,12,13,11,19,13,19,20,35,18,18,12,18,11,14,12,22,12,13,10,16,11,15,14,27,14,14,10,15,9,12,11,19,11,13,10,17,11,16,16,31,16,16,12,18,11,13,11,20,11,13,11,18,12,17,17,32,17,18,13,20,13,17,16,30,17,19,15,26,18,26,25,49,25,25,17,26,15,19,17,30,16,18,13,21,13,18,17,32,17,17,12,19,12,16,15,27,15,17,14,24,16,23,23,44,23,23,16,25,15,19,17,30,17,19,16,28,19,27,26,51,27,29,22,35,22,30,28,54,30,36,31,55,37,54,54,103,52,52,35,51,28,33,28,49,26,28,20,32,20,27,25,48,25,26,18,28,16,20,18,33,18,21,17,28,18,26,26,50,26,26,18,26,15,17,14,25,14,15,12,19,12,17,16,30,16,17,13,20,12,16,14,25,14,17,14,24,16,24,24,48,24,24,16,24,14,17,15,26,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,13,7,8,7,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,17,18,51,26,26,17,25,14,17,14,25,13,14,11,18,12,16,15,28,15,15,11,16,10,13,11,20,11,12,9,15,10,13,13,25,13,13,9,14,8,10,9,16,9,9,7,12,8,11,10,19,10,11,8,11,7,9,8,15,8,9,8,13,9,13,13,25,13,13,9,13,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,38,19,19,13,20,12,15,13,23,13,14,11,18,12,17,16,30,16,17,12,19,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,12,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,11,10,19,10,11,9,15,10,15,15,28,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,20,10,10,7,9,5,6,6,10,6,6,5,7,5,7,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,7,10,6,7,6,11,6,7,5,7,5,6,6,10,5,5,4,5,4,5,4,7,5,6,5,8,6,9,9,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,5,4,5,3,4,4,6,4,5,4,7,5,8,8,14,7,7,5,7,4,5,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,13,25,13,13,9,13,8,10,9,15,9,10,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,8,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,52,26,26,18,26,15,17,14,25,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,10,11,9,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,10,6,9,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,10,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,9,6,10,7,9,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,6,5,9,6,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,4,3,4,3,4,4,7 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,7,11,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,8,6,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,6,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,13,8,10,9,15,9,10,7,12,8,10,9,17,9,10,7,10,6,8,8,14,8,10,8,13,9,12,12,23,12,12,9,14,8,10,9,16,9,11,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,53,27,26,18,26,15,18,15,26,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,9,10,8,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,5,9,5,6,5,9,7,10,10,27,14,14,9,13,8,10,8,12,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,8,6,10,7,9,8,15,9,10,9,16,11,15,15,18,9,9,7,10,6,6,5,10,6,6,5,8,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,4,3,4,4,7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,6,3,3,3,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,4,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,7,5,7,6,11,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,9,6,7,6,10,6,7,5,8,6,7,7,12,6,7,5,7,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,7,8,6,11,7,10,10,17,9,10,8,12,8,11,10,19,11,13,11,19,13,19,19,36,18,18,12,18,10,12,10,18,10,10,7,12,8,10,9,17,9,10,7,10,6,7,6,12,6,7,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,7,5,6,6,10,6,7,6,11,8,10,10,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,1,3,2,3,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,11,8,12,12,14,7,7,5,6,4,4,4,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,7,6,13,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,10,9,16,9,9,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,14,8,9,7,12,8,11,10,17,9,10,7,10,7,9,8,15,9,10,8,12,8,12,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,15,25,13,14,11,18,11,15,14,27,15,18,16,28,19,27,27,54,27,27,18,26,15,17,14,26,14,15,11,17,11,14,13,25,13,13,9,14,9,11,9,17,9,10,8,14,9,13,13,25,13,13,9,12,7,8,7,13,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,8,13,9,13,13,24,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,12,6,6,4,6,4,5,5,10,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,12,7,7,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,11,11,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,14,8,8,6,10,6,8,8,14,8,10,9,16,11,15,15,19,10,10,7,10,6,6,5,11,6,7,5,8,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,8,6,9,9,13,7,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,3,3,3,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,3,3,5,3,4,3,4,3,4,4,8 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,8,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,8,7,11,7,9,8,16,9,10,9,16,11,15,15,31,16,15,10,15,9,10,8,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,8,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,6,6,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,5,6,5,9,5,6,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,9,7,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,13,8,10,10,19,11,12,10,19,13,18,18,37,19,18,12,18,10,12,10,19,10,11,8,12,8,10,9,17,9,10,7,10,6,7,6,12,7,7,6,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,4,4,6,4,6,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,3,4,4,6 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,8,4,5,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,5,9,5,5,5,7,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,31,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,10,5,5,4,6,4,5,5,10,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,3,4,4,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,11,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,7,10,6,6,5,9,6,7,6,9,6,8,8,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,26,14,14,10,14,8,9,7,12,7,7,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,5,7,7,13,8,9,7,12,8,11,11,23,12,12,9,14,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,8,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,8,8,14,8,9,8,14,10,14,14,25,13,13,9,13,8,10,9,15,9,10,8,12,8,11,10,17,9,10,7,11,7,8,8,14,8,9,7,12,8,11,11,24,13,13,10,15,9,12,10,18,10,12,10,16,11,15,15,27,15,16,12,18,11,15,15,28,16,18,15,27,18,27,27,56,29,29,19,28,16,19,16,28,15,15,11,17,11,14,14,26,14,14,10,15,9,10,9,16,9,11,9,14,9,13,12,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,8,17,9,10,7,10,6,8,7,12,7,9,8,13,9,14,14,23,12,13,9,13,7,8,7,12,7,8,6,9,6,9,9,16,9,9,7,11,7,8,7,12,7,7,6,10,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,7,6,10,6,7,5,8,5,6,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,19,10,11,8,11,7,8,7,11,6,7,6,10,7,9,8,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,5,3,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,5,3,4,3,4,3,5,5,10 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,5,3,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,15,10,15,15,30,16,16,10,15,9,11,9,15,8,8,6,9,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,5,5,3,5,3,4,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,5,4,5,5,8,5,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,17,17,11,17,10,12,10,16,9,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,9,6,7,6,9,7,10,10,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,2,2,2,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,24,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,8,8,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,1,1,1,1,1,1,0,0,3,2,1,1,0,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,4,7,5,6,5,8,6,8,8,6,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,1,1,1,1,0,0,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,10,6,6,4,6,4,6,6,12,7,7,5,7,5,6,6,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,9,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,11,6,7,5,8,5,7,7,16,9,9,7,10,6,7,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,11,13,11,19,10,11,8,13,9,12,11,20,11,11,8,11,7,9,8,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,8,5,5,4,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,5,4,6,6,11,6,5,3,4,3,3,3,6,4,4,4,6,4,4,4,9,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,15,8,8,6,8,5,5,5,7,4,5,4,7,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,3,7,4,5,4,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,24,12,12,8,13,8,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,7,4,4,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5 +1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,5,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,7,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,7,9,9,16,9,11,9,17,11,16,16,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,2,2,3,5,3,4,3,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,5,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,8,8,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,9,16,9,11,9,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,11,6,6,5,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,10,5,5,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,7,6,11,8,11,12,8,4,4,3,5,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,11,6,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,5,6,5,9,7,10,10,14,8,8,5,7,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,8,12,13,29,15,16,11,16,9,10,8,14,8,8,7,11,7,9,8,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,11,7,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,20,11,12,9,13,8,10,10,18,10,12,10,17,11,15,15,31,16,16,11,15,9,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,11,9,14,9,13,12,25,13,13,10,15,9,12,10,18,10,11,9,16,10,14,14,26,14,15,12,19,12,16,16,30,17,20,17,29,20,29,29,59,30,31,21,31,18,21,18,31,17,18,13,20,13,17,16,31,16,16,11,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,10,7,9,9,16,9,11,9,14,10,14,14,25,13,14,10,15,9,10,9,16,9,9,7,12,8,10,9,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,11,8,12,7,9,8,14,8,9,7,11,7,9,8,15,8,9,7,11,7,9,8,15,9,11,9,15,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,9,6,7,6,11,6,7,5,7,4,5,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,7,12,8,11,11,20,11,11,8,13,8,10,10,18,11,13,11,18,12,18,18,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,9,6,9,9,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,10,5,5,4,5,3,4,3,4,3,3,3,5,4,5,5,11,6,6,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,6,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,6,4,4,4,7,5,7,7,12 +1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,6,4,6,6,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,8,6,10,7,9,9,16,9,11,9,15,10,15,15,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,6,6,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,7,5,7,7,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,2,2,2,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,6,4,6,6,10,6,6,4,7,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,31,16,17,12,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,5,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,8,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,5,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,9,5,4,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,6,4,6,6,10,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,4,5,4,4,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,5,8,5,7,7,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,4,4,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,2,3,2,3,2,3,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,4,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,6 +0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,7,4,5,4,7,5,7,7,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,5,5,8,5,7,7,16,9,9,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,15,8,9,7,10,6,7,7,10,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,9,9,17,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,14,8,9,7,12,8,10,9,17,10,11,10,17,12,17,17,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,10,19,10,10,8,12,7,9,7,11,6,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,11,6,6,5,8,5,6,5,9,5,6,6,10,7,9,9,14,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,10,7,9,9,16,8,8,5,7,5,6,5,6,4,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,4,3,5,5,9 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,4,5,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,5,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,4,4,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,4,4,4,6,4,6,5,7,4,4,4,6,5,7,7,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,10,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,5,6,4,5,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,10,6,6,5,8,6,7,7,12,7,9,8,13,9,13,13,22,12,11,8,11,7,8,7,12,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,-1,0,0,1,2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,4,3,4,3,4,4,6,4,5,5,8,6,8,7,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,9,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,7,7,12,7,8,7,12,8,11,11,23,12,12,9,13,8,10,8,14,8,9,7,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,8,5,6,5,13,7,7,5,7,5,6,6,10,6,7,7,12,8,11,11,19,10,10,8,12,7,9,7,12,7,8,7,11,7,10,9,12,7,7,5,7,5,7,7,12,7,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,12,9,15,9,12,12,22,13,15,13,23,16,23,23,41,21,21,14,21,12,14,12,21,11,11,8,13,9,12,11,22,12,12,9,13,8,9,8,14,8,9,7,10,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,13,13,16,8,8,6,9,6,7,6,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,6,6,10,6,7,7,12,8,11,11,24,12,12,9,13,8,9,8,13,7,7,5,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,7,12,7,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,6,11,8,11,11,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,4,5,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,4,2,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14 +1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,10,6,7,6,9,6,7,7,12,7,9,8,13,9,13,13,22,12,12,8,12,7,8,7,12,6,6,5,7,5,7,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,9,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,5,3,3,3,5,3,4,3,5,3,3,2,3,2,3,4,8,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,7,8,6,10,6,8,8,14,8,10,9,14,10,14,15,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,13,7,7,6,9,5,6,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,5,5,8,4,4,3,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,5,9,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,3,2,2,2,3,2,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,5,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,3,2,2,2,2,3,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,9 +2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,1,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,0,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,6,6,11,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,5,5,4,6,4,5,5,11,6,7,6,10,7,9,9,22,11,11,8,12,7,9,8,13,7,8,6,10,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,6,10,7,10,9,15,8,8,6,10,6,7,7,10,6,6,5,8,6,8,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,9,7,12,8,11,10,19,11,13,11,20,14,20,20,35,18,18,12,17,10,11,10,17,9,9,7,11,7,9,9,18,10,10,7,11,6,7,6,12,7,7,5,8,6,9,9,17,9,9,6,8,5,7,6,11,6,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,5,7,7,10,5,5,4,6,4,5,5,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,12,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,6,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,3,3,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,3,2,3,2,2,2,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,2,2,5,3,3,2,2,2,2,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,3,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12 +2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,6,9,5,6,4,7,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,4,6,4,4,4,8,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,8,4,5,4,7,5,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,14,14,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,3,3,4,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,7,7,5,7,4,5,5,7,4,5,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,6,6,1,1,2,1,2,1,1,1,3,2,2,1,2,2,2,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,14,8,8,6,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,4,4,4,5,3,4,4,8,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,11,10,18,11,13,11,19,13,20,20,33,17,16,11,16,9,11,9,15,8,9,7,11,7,10,9,17,9,9,7,9,5,6,6,11,6,7,6,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,9,5,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,8,5,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,1,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,6,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,7,5,8,5,6,6,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,10,10,18,11,13,11,19,13,20,20,32,16,16,11,16,9,11,9,15,8,9,7,11,7,9,9,16,9,9,6,9,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +4,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,7,14,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,7,6,10,7,10,10,3,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,2,2,-11,-5,-5,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,0,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,26,14,14,10,14,8,10,8,13,7,8,6,9,6,8,7,12,6,6,5,7,5,7,7,12,7,8,7,12,8,11,10,19,10,10,7,11,7,9,8,14,8,9,7,10,7,10,10,18,9,9,7,10,7,9,8,15,9,10,8,14,9,13,13,27,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,14,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,7,10,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,9,11,9,15,10,15,15,43,22,22,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,10,15,9,12,11,19,11,12,9,15,10,14,14,26,14,14,10,15,9,11,10,19,10,11,9,14,9,13,12,22,12,12,9,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,16,10,12,11,19,10,11,8,13,9,12,11,21,11,12,9,14,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,18,11,14,13,23,13,15,13,23,15,22,21,41,22,23,17,27,17,23,21,39,22,26,22,39,26,38,38,61,31,32,22,33,19,23,20,35,19,20,15,24,15,20,19,35,18,18,12,18,11,13,11,20,11,13,11,18,12,16,15,29,15,15,10,15,9,11,10,17,10,11,8,13,9,13,13,24,13,13,9,14,9,12,11,19,11,14,12,20,13,19,19,20,11,11,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,8,7,11,8,11,11,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,16,10,13,11,20,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,21,11,11,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,5,7,7,12,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,26,14,14,10,15,9,12,10,18,10,11,9,15,10,13,12,23,12,12,9,13,8,11,10,17,10,12,10,18,12,17,17,31,16,15,10,15,9,11,10,17,9,10,7,11,8,11,10,19,10,10,7,11,6,7,6,11,6,7,6,10,7,11,11,20,10,10,7,9,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,22,12,12,8,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,11,8,11,10,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,2,2,1,1,1,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,9,6,8,7,12,8,11,11,22 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,6,5,10,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,10,7,10,10,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,7,5,6,6,12 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,3,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,6,5,10,6,6,4,5,4,5,5,9,5,6,5,7,5,8,8,15,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,9,17,9,10,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,16,9,9,6,8,5,6,6,9,5,6,5,7,5,8,7,13,7,8,5,7,5,6,6,11,7,8,7,10,7,11,11,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,8,5,6,5,10,6,7,6,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,4,6,6,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,4,7,5,6,6,12 +2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,5,7,7,12,6,7,5,7,5,6,5,9,6,6,5,8,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,14,22,11,11,8,12,7,8,7,13,7,7,6,8,6,8,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,5,4,5,4,8,5,6,5,7,5,8,8,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-3,-1,0,1,1,1,2,2,1,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,14,7,7,5,7,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,5,10,6,7,5,8,6,9,9,15,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,8,4,4,3,5,4,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,6,5,8,5,6,5,8,6,8,8,24,13,13,9,14,8,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,9,9,6,9,5,6,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,15,8,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,6,5,9,7,10,10,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,23,13,14,10,16,10,13,12,21,12,14,12,20,14,21,21,33,17,17,12,17,10,12,10,19,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,10,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,7,6,11,7,8,6,10,7,11,11,12,7,7,5,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,5,7,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,7,6,10,6,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,4,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,5,8,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,4,3,4,3,3,2,5,3,3,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,4,5,4,7,5,7,7,14 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,8,5,5,4,5,3,3,3,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,-1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,2,2,2,2,10,6,6,4,6,4,4,3,6,3,3,2,4,2,2,2,5,3,3,3,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,6,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,17,9,10,7,10,6,6,5,9,5,6,4,6,4,6,6,12,6,6,5,8,5,5,4,7,5,6,4,6,4,6,6,13,7,6,5,6,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,7,12,6,6,5,8,5,6,6,10,6,6,5,10,7,9,9,18,10,10,8,11,7,10,9,15,9,10,8,15,11,16,16,23,12,12,8,12,7,8,7,13,7,7,5,9,6,7,7,14,7,7,5,7,5,6,5,7,4,4,3,5,4,6,6,12,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,4,4,3,5,4,6,5,8,4,4,3,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,6,4,6,6,10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,16,9,9,7,10,6,8,8,13,8,9,8,13,9,14,14,20,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,7,5,6,4,5,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,9,5,4,3,4,3,3,2,2,2,2,2,2,2,2,3,1,1,2,2,3,2,3,3,4,3,3,3,4,3,5,6,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,3,4,4,8,5,5,5,8,5,7,7,6,3,3,2,3,2,3,2,3,2,1,1,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,6,6,10,6,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,5,5,4,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,11,6,6,5,7,5,6,6,12,7,9,8,13,9,12,12,28,15,15,10,14,8,10,8,14,8,9,7,11,7,9,8,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,20,10,10,7,9,5,6,6,10,6,7,6,9,6,7,7,16,8,8,6,8,5,6,6,10,6,7,6,10,7,9,8,19,10,10,7,11,7,8,6,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,6,11,7,8,6,10,7,10,11,20,11,11,8,13,8,10,9,16,9,10,9,15,10,14,14,29,15,15,11,17,11,14,13,23,13,16,14,24,16,24,24,35,18,18,12,17,10,12,10,18,10,11,9,14,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,19,10,10,7,11,7,8,7,11,6,7,6,10,7,9,9,13,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,14,13,26,14,14,9,13,8,9,7,12,7,8,6,10,6,8,7,11,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,7,7,5,8,6,8,7,13,8,9,8,13,9,12,12,21,11,10,7,10,6,7,6,10,6,6,5,7,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,5,4,5,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,7,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,8,5,6,6,10,7,10,9,17 +1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,10,6,8,7,13,8,9,8,13,9,13,13,19,10,10,7,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10 +2,1,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,9,5,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,9,5,6,4,7,5,6,5,11,6,6,5,6,4,5,5,7,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,13,7,8,6,9,6,7,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,9,8,14,8,10,8,15,10,15,15,22,12,12,8,10,6,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,7,4,5,4,7,4,5,5,12,6,6,4,7,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,6,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,4,3,4,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,2,2,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,9,5,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,7,7,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,7,11,7,8,7,12,8,12,12,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9 +2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,5,4,6,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,13,7,8,6,9,6,7,6,9,5,6,4,6,4,6,6,10,5,5,4,6,4,6,6,11,6,7,6,10,7,11,11,18,10,11,8,12,7,8,7,13,7,8,7,12,8,12,12,23,12,12,9,14,9,12,11,18,10,12,11,19,13,19,19,29,15,15,10,14,8,10,8,13,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,10,6,7,5,8,5,7,6,16,9,9,6,8,5,5,4,9,5,6,5,7,5,8,8,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,3,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,12,7,7,5,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,5,6,5,9,6,9,9,17,9,9,6,8,5,6,5,7,4,5,4,6,4,4,4,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,16 +2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,4,8,5,5,5,8,5,7,7,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,19,10,10,7,9,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,5,4,5,4,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,7,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,4,5,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,11 +3,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,3,4,3,6,3,3,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,4,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,17,9,8,6,9,5,6,5,8,5,5,4,5,4,6,5,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,6,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,7,10,10,16,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,18,12,18,18,26,14,14,9,13,7,8,7,12,7,8,6,8,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,8,5,5,4,8,5,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,5,4,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,6,4,6,5,10,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,3,3,4,4,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,3,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,2,3,3,4,3,3,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,7,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,17,12,18,18,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,3,4,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,3,2,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,4,5,5,9,5,6,5,9,6,8,8,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,9,5,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,8,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,10,9,15,10,15,15,31,16,15,10,14,8,9,8,14,8,8,6,10,7,10,9,17,9,9,7,11,7,8,7,12,7,8,7,11,7,10,9,20,11,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,20,13,19,19,42,21,21,14,20,12,14,12,21,11,12,9,14,9,13,12,22,12,12,9,14,9,11,9,16,9,10,8,14,9,13,12,27,14,14,10,14,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,7,11,8,11,11,21,11,12,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,29,16,17,12,19,11,14,13,24,14,16,13,21,14,20,20,38,20,21,16,25,15,20,18,34,19,22,19,33,23,34,34,49,25,26,18,26,15,17,15,26,14,14,10,16,10,13,12,22,11,11,8,12,7,9,8,14,8,9,7,10,7,10,9,25,13,14,10,14,8,10,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,11,10,18,10,12,9,15,10,14,13,20,10,10,7,9,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,14,8,8,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,16,11,15,15,31,16,16,11,16,10,12,11,19,10,10,7,11,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,8,13,9,12,11,15,8,9,7,10,6,7,6,10,6,7,6,10,7,10,10,18,10,10,8,13,8,10,9,17,10,11,9,15,10,15,15,27,14,14,10,15,9,10,8,14,8,8,6,9,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,5,3,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,5,4,7,5,7,6,11,6,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,7,5,7,8,14,8,8,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,7,8,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,9,8,13,9,14,14,28 +2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,17,9,8,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,11,7,10,10,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,26,14,14,10,14,8,9,8,14,8,8,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,7,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,7,5,7,6,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,15 +2,2,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,6,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,3,5,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,9,9,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,9,5,6,5,6,4,4,4,7,4,5,4,7,5,6,5,12,6,6,4,7,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,7,6,12,7,8,7,11,8,11,11,24,13,13,9,13,8,9,8,12,7,7,6,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,12,9,14,9,12,11,19,11,12,11,18,12,18,19,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,4,3,4,4,9,5,4,3,5,3,4,4,4,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,6,3,3,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,5,6,5,7,5,7,6,9,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,6,4,4,3,3,2,2,2,3,2,3,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,5,8,5,5,3,4,3,3,2,4,3,3,2,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,2,4,3,4,4,6,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,16 +1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,5,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,13,9,14,14,20,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,10,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,5,4,6,6,11 +1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,12,7,7,5,7,4,4,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,6,4,5,5,8,5,7,6,10,7,10,10,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,6,8,7,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,12,8,11,11,19,10,10,8,12,8,10,9,14,8,9,7,12,8,12,12,24,13,14,10,16,10,14,13,23,13,15,12,21,14,21,21,31,16,16,11,16,9,11,9,17,9,10,7,10,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,13,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,5,11,7,8,7,11,8,11,10,20,11,11,8,12,7,9,8,12,7,8,6,9,6,7,7,10,5,5,4,6,4,4,4,8,5,5,4,5,4,5,5,11,6,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,6,6,5,7,4,5,4,8,4,4,3,5,4,5,5,10,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,3,5,4,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,4,3,6,3,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,8,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,17 +0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,5,3,4,4,9,5,5,4,5,4,5,4,5,4,4,4,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,9,8,14,8,9,8,13,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,8,5,5,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,11 +-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,2,2,2,2,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,7,4,5,4,4,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,6,5,6,4,6,5,8,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,7,5,6,5,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,23,12,12,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,11,10,19,11,12,10,18,12,18,18,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,9,5,4,4,5,3,4,3,4,3,4,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,7,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,5,6,6,9,5,6,5,7,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,4,8,5,5,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,13 +-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,10,5,5,4,6,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,5,8,5,5,4,5,3,4,4,4,3,3,3,5,4,5,5,8,5,5,5,8,6,8,8,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,0,-1,-1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,13,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,13,7,8,6,9,6,7,7,13,8,9,8,13,9,13,13,29,15,16,11,16,9,11,9,16,9,9,7,10,6,8,8,14,8,9,7,10,6,8,7,12,7,8,7,11,7,9,9,19,10,10,7,11,7,9,8,14,8,9,7,10,6,8,8,18,10,10,8,13,8,10,10,18,10,12,10,18,12,18,18,41,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,24,13,14,10,15,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,13,8,10,9,16,9,10,8,12,8,10,10,20,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,24,13,13,9,14,9,11,9,16,9,10,8,13,8,11,11,18,10,10,8,12,8,11,10,18,10,12,10,16,11,16,16,30,16,16,12,18,11,14,12,21,12,14,11,19,13,18,17,31,17,18,14,22,14,19,17,32,18,22,18,32,22,32,32,43,22,22,15,22,13,15,13,22,12,12,9,13,9,12,11,22,12,12,8,11,7,8,7,12,7,7,6,10,7,10,9,21,11,11,8,12,7,9,8,13,7,7,6,9,6,9,9,15,8,9,7,10,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,4,3,4,4,7,5,6,6,14,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,10,6,8,8,14,8,9,8,14,10,14,15,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,15,8,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,8,6,8,5,5,5,8,5,6,5,7,5,6,6,13,7,8,6,9,6,7,6,11,7,8,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,14,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,9,7,12,8,10,9,16,9,11,9,16,11,16,16,19,10,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,3,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,7,7,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,7,5,8,5,5,5,8,5,5,4,7,5,6,5,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,8,7,11,8,12,12,24 +-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,9,5,6,4,5,4,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,2,3,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,7,10,11,23,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,14,8,8,6,9,6,7,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,7,6,9,5,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,18,12,18,18,24,12,13,9,12,7,9,7,12,7,7,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,5,8,6,8,9,16,9,9,6,9,6,7,6,9,5,6,4,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,7,5,6,5,10,6,7,6,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,5,4,6,5,9,5,4,3,5,3,3,3,5,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,6,9,6,7,7,13,7,8,7,13,9,12,13,27,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,7,10,6,8,7,11,6,7,6,10,7,9,9,15,8,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,11,6,6,5,9,6,8,8,17,9,9,6,9,6,8,7,10,6,6,5,8,6,8,8,12,7,8,6,8,5,7,7,12,7,8,6,11,8,11,11,20,11,11,8,12,8,10,8,15,9,10,8,12,8,12,12,21,12,13,10,15,9,12,11,22,13,15,13,22,15,22,22,27,14,15,10,14,8,10,8,14,8,8,6,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,10,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,6,4,5,4,8,5,5,4,6,5,7,7,11,6,7,5,8,5,6,6,12,7,8,7,11,7,10,11,13,7,7,5,7,4,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,4,5,4,5,5,9,5,5,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,4,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,5,4,8,5,7,7,14,8,8,5,7,5,6,6,8,5,5,4,7,5,7,7,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,10,11,8,12,8,10,9,18,10,12,10,18,12,18,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,4,6,4,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,2,2,2,1,1,1,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,17,9,10,7,10,6,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,6,6,11,6,6,5,8,6,9,9,15,8,8,6,9,5,5,4,7,4,4,4,6,4,6,6,13,7,7,6,9,6,8,7,13,8,9,8,13,9,14,14,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,11,7,10,10,19,10,10,8,12,7,9,7,12,7,8,6,10,7,10,9,17,10,11,8,13,8,11,11,19,11,13,11,18,13,19,19,39,20,20,14,20,12,14,12,20,11,11,9,14,9,12,12,24,13,13,9,14,8,10,9,17,10,11,9,14,9,13,13,23,12,12,9,13,8,10,9,16,9,10,8,12,8,11,10,20,11,12,9,13,8,10,9,14,8,10,8,13,9,13,12,24,12,12,8,12,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,18,10,12,9,15,10,15,15,30,16,16,12,18,11,13,12,21,12,14,11,18,12,17,17,30,16,18,13,21,13,18,16,32,18,22,18,32,22,32,32,39,20,20,14,20,11,13,11,19,10,11,9,14,9,12,11,22,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,9,9,14,8,9,7,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,9,7,10,6,8,7,11,7,8,7,11,8,11,11,18,9,9,7,10,6,8,7,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,14,8,9,7,10,7,9,8,17,10,12,10,16,11,15,15,17,9,9,6,9,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,6,4,5,5,8,6,8,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,4,4,6,4,5,5,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,7,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,4,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,12,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,6,5,9,6,6,6,9,6,10,10,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,7,9,8,16,9,9,6,9,6,7,6,12,7,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,6,10,6,7,6,9,6,9,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,13,7,7,6,8,6,7,7,12,7,8,6,11,8,11,11,21,11,11,8,12,8,9,8,14,8,9,7,12,8,12,11,21,11,12,9,15,9,12,11,22,12,15,12,22,15,22,22,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,6,4,4,4,7,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,16 +-3,-1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,6,4,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,12,7,8,7,12,7,8,7,11,7,9,9,17,9,10,8,13,9,12,11,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,9,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,38,20,20,14,20,12,14,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,9,8,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,12,6,6,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,7,11,7,8,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,17,9,9,7,10,6,6,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,8,6,8,9,16,9,9,7,10,6,8,7,11,6,7,5,9,6,9,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,6,4,4,4,6,4,4,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,7,9,9,17,9,10,8,13,8,11,10,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,22,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,8,14,8,9,7,11,8,11,11,19,10,11,8,13,8,11,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,20,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,31,18,21,18,32,22,32,32,37,19,19,13,20,11,13,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,11,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,9,16,9,9,7,10,6,7,6,11,6,7,5,9,6,8,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,4,4,3,5,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,23,12,13,9,13,8,9,7,12,7,8,7,11,7,10,9,16,9,10,8,12,8,10,9,15,9,10,8,14,9,13,13,24,12,12,9,13,7,8,7,12,7,7,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,12,23,12,12,9,13,8,10,9,16,9,9,7,12,8,11,11,20,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,27,15,18,15,26,18,26,26,52,27,27,18,26,15,19,16,29,16,17,14,23,15,22,21,40,21,21,15,24,15,19,17,31,17,20,16,28,19,27,27,53,27,27,19,28,16,20,17,30,17,19,15,24,15,21,21,40,21,23,17,26,16,22,21,39,22,26,22,40,27,39,39,76,39,39,27,40,23,28,23,41,22,23,18,29,19,26,24,46,24,24,17,26,16,20,17,31,17,19,15,25,17,24,24,47,24,24,17,25,15,18,15,27,15,17,13,22,15,21,21,40,21,22,16,26,16,22,21,41,23,28,23,40,27,39,39,76,38,38,26,39,23,28,24,44,23,25,19,31,20,27,26,50,26,28,20,31,18,23,21,38,21,24,19,32,21,30,30,59,30,31,22,33,20,26,23,43,23,26,21,35,23,33,32,62,33,35,26,42,26,35,33,63,35,42,35,63,42,62,62,73,37,37,25,37,21,26,22,38,20,22,17,27,17,24,23,45,23,24,17,26,16,20,18,32,18,20,16,28,19,27,27,53,27,27,19,29,17,21,18,31,17,18,14,22,14,18,17,33,17,18,13,21,13,16,15,28,16,19,16,28,19,28,28,55,28,28,19,28,16,20,17,31,17,18,14,22,14,20,19,36,19,19,14,22,14,18,16,29,16,18,14,24,16,23,23,44,23,23,16,25,15,19,16,29,16,18,14,23,15,20,20,38,20,21,15,23,14,19,18,33,18,21,17,30,20,29,28,54,28,28,19,28,16,19,15,26,14,15,11,18,12,16,15,29,15,15,11,17,10,13,12,21,12,13,10,15,10,14,14,27,14,14,10,14,9,11,9,16,9,10,8,12,8,11,11,20,11,11,8,13,8,11,11,21,12,15,13,23,16,23,23,44,22,22,15,22,13,16,14,25,14,15,12,19,12,17,17,32,17,18,13,20,12,15,14,25,14,17,14,23,16,23,23,45,23,23,16,23,14,17,15,26,14,15,12,19,13,18,17,32,17,18,13,20,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,13,12,21,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,8,10,9,17,9,9,6,7,4,5,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,9,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,14,8,10,8,14,8,9,7,11,8,11,11,20,11,11,8,12,7,9,8,14,8,9,8,13,9,12,11,21,11,12,9,14,9,11,10,17,10,11,8,13,9,13,12,23,12,13,10,17,11,14,13,24,13,15,13,22,15,21,21,41,21,22,15,23,13,16,13,23,12,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,22,14,20,20,38,19,19,13,20,11,13,11,20,11,11,9,14,10,14,13,25,13,14,11,17,10,13,12,23,13,16,14,24,16,24,24,46 +-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12,6,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,8,9,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,10,9,15,9,10,8,13,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,16,9,10,8,13,9,13,13,24,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,11,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,30,16,16,12,17,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,19,13,19,11,13,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,9,16,9,10,8,12,8,10,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,19,10,11,8,12,8,10,9,17,10,11,9,15,10,15,15,28,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,12,8,12,8,9,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,5,9,6,6,5,7,5,7,6,12,6,7,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,13,9,12,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,15,9,10,8,12,9,13,13,23,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,12,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,31,16,16,12,18,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,18,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,28,14,14,10,15,9,10,9,16,9,10,8,12,8,10,9,18,10,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,15,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,7,9,6,8,7,11,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,13,9,12,12,24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,12,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,4,3,4,3,4,3,4,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,9,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,8,6,9,6,8,7,14,8,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,12,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,7,5,8,6,7,7,14,8,8,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,26,14,14,10,14,8,10,8,15,8,8,6,10,7,9,9,16,8,9,6,9,6,7,6,10,6,7,6,8,6,9,9,16,8,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,9,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,18,10,10,8,11,7,9,8,13,8,9,7,12,8,11,11,21,11,11,8,12,8,9,8,15,8,10,8,12,8,12,12,21,11,12,9,15,9,12,12,21,12,15,12,22,15,21,21,25,13,12,8,12,7,8,8,13,7,8,6,10,6,8,8,16,8,9,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,6,8,6,7,6,12,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,6,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,4,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,11,7,10,10,13,7,7,5,7,4,5,4,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,9,5,6,5,9,6,8,8,16 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,18,9,9,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,26,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,21,11,12,9,13,8,11,10,17,10,11,9,15,10,14,14,28,15,15,11,16,9,11,10,15,9,10,8,12,8,12,12,22,12,13,9,14,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,12,14,12,22,12,12,9,15,10,13,12,23,12,13,9,14,9,11,9,15,8,9,7,12,8,12,12,23,12,13,9,13,8,9,8,15,9,10,8,12,8,12,11,21,11,12,9,14,9,12,12,21,12,14,12,20,14,20,20,37,19,20,14,20,12,15,13,21,11,12,10,16,11,15,14,27,14,14,10,16,10,12,11,20,11,12,10,17,11,16,16,32,17,17,12,18,11,14,12,22,12,14,11,18,12,18,17,30,16,18,13,21,13,18,17,31,18,21,18,32,21,31,31,37,19,18,12,18,11,13,11,19,11,12,9,14,9,12,11,23,12,12,9,14,8,10,9,16,9,11,9,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,11,7,10,9,18,10,10,7,11,7,8,8,15,9,10,9,16,11,15,15,27,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,22,12,12,9,13,8,9,8,13,7,8,6,10,7,10,10,19,10,11,8,12,8,10,9,17,9,10,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,9,7,10,6,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,5,7,7,10,6,7,5,8,5,7,7,10,6,7,7,12,9,13,13,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,9,17,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,10,10,16,9,10,7,11,7,9,8,15,9,10,9,16,11,15,15,19,10,10,7,10,6,7,6,12,7,7,5,7,5,6,5,10,5,5,4,6,4,5,5,7,5,6,5,8,5,7,6,9,5,5,4,5,3,4,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,5,5,4,6,4,5,4,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,14,7,7,5,8,6,8,7,11,6,7,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,7,7,5,8,5,6,6,13,8,9,7,12,8,12,12,24 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,11,6,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,7,6,9,6,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,7,12,8,12,12,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,8,16,8,8,6,9,6,7,6,12,7,7,6,10,6,9,9,18,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,21,11,10,7,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,7,9,5,6,5,9,5,5,4,7,4,6,5,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,9,6,6,6,10,7,9,9,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,-2,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,4,2,2,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,13,7,6,4,7,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,6,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,8,16,9,9,7,9,5,6,6,11,6,6,5,9,6,8,9,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,15,8,8,6,10,7,9,9,15,9,10,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,19,10,10,7,11,7,9,8,14,8,8,7,11,7,10,10,21,11,12,8,12,8,10,9,14,8,9,7,12,8,12,12,20,11,12,9,14,9,12,12,21,12,14,12,22,15,21,21,25,13,12,8,13,8,10,8,13,7,8,6,9,6,8,8,16,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,11,6,7,6,11,6,6,5,8,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,9,7,10,10,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,8,6,8,5,6,6,11,7,8,7,12,8,11,11,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,4,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,16 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,7,4,6,6,11,6,7,5,7,4,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,5,5,9,5,6,5,8,5,7,8,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,13,7,7,6,9,6,8,7,13,8,9,8,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,6,9,6,8,7,12,7,7,6,9,6,8,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,4,4,4,5,4,5,5,10,6,6,4,7,4,5,5,9,6,6,5,8,6,8,8,18,9,9,7,10,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,-2,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,6,5,7,5,6,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,7,7,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,7,4,5,4,6,4,4,4,6,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,18,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,8,6,10,6,8,8,14,8,9,7,12,8,12,12,25,13,13,10,15,9,11,10,17,9,10,7,11,7,9,9,19,10,11,8,13,8,10,9,16,9,11,9,16,11,15,15,28,14,14,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,12,9,15,9,12,11,20,11,13,11,19,13,20,20,38,19,19,13,20,12,14,12,20,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,12,12,8,12,7,9,8,15,8,9,7,11,7,10,10,24,13,14,11,17,11,14,13,23,13,15,12,21,14,21,20,38,19,19,13,20,12,15,13,22,12,14,11,17,11,15,14,29,15,16,11,16,10,13,11,20,11,12,9,15,10,14,14,32,17,18,13,19,11,13,11,20,11,13,11,18,12,17,17,29,16,17,13,20,13,18,17,32,18,21,18,31,21,30,30,35,18,18,12,18,11,13,11,20,11,12,9,15,9,12,11,24,13,13,9,13,8,10,8,14,8,9,8,13,9,12,12,30,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,10,14,8,9,8,14,8,9,7,10,7,10,10,16,9,9,7,11,7,9,8,13,8,9,7,12,8,11,11,20,10,10,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,12,7,9,8,15,9,10,8,14,10,15,15,31,16,16,11,17,10,12,10,17,9,10,8,12,7,9,9,16,9,9,7,11,7,8,7,12,7,8,6,10,7,9,8,13,7,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,9,8,14,8,9,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,24,13,14,10,15,9,10,9,16,9,10,8,12,8,10,9,19,10,11,8,12,8,11,10,18,10,12,10,17,11,16,16,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,8,5,6,5,8,5,7,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,5,5,9,5,4,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,7,7,12,7,8,7,11,8,11,12,24,13,13,9,14,8,10,8,14,8,8,6,9,6,9,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,11,11,22,12,12,8,11,7,8,8,14,8,9,7,11,7,9,9,14,8,8,6,9,6,7,6,11,7,9,8,13,9,13,13,25 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,20,10,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,20,10,11,8,11,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,17,9,10,7,10,6,7,6,11,6,7,6,10,7,9,9,15,8,9,7,11,7,10,9,17,10,11,10,17,11,16,16,18,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,6,9,9,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,7,5,7,7,13 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,5,6,6,10,6,6,5,6,4,6,5,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,7,5,6,6,9,5,6,4,7,5,6,6,14,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,21,11,12,8,11,7,8,7,12,7,7,6,9,6,8,8,16,9,9,6,9,6,7,6,11,6,7,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,6,10,7,10,10,16,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,19,10,10,7,10,6,7,7,12,6,6,5,8,5,6,6,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,17,9,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,6,9,5,6,5,8,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,5,4,6,6,9,5,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,5,7,5,8,8,13,7,8,6,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,4,6,4,6,7,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,13,7,7,5,6,4,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,14 +-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,8,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,4,5,5,7,4,5,4,5,4,5,5,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,15,8,9,6,9,5,6,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,7,7,14,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,4,3,5,5,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,4,3,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,9,7,10,6,8,8,15,9,10,8,14,10,14,14,26,13,13,9,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,6,8,5,6,6,9,5,6,5,8,6,8,9,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,17,9,9,7,11,7,9,9,15,9,10,9,16,11,15,15,24,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,19,10,10,7,10,6,7,7,13,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,7,11,7,10,10,20,11,12,9,13,9,12,11,22,13,15,13,22,15,21,21,23,12,12,9,13,8,9,8,13,7,8,6,8,6,8,7,15,8,8,6,8,5,6,6,9,5,6,5,8,6,9,9,22,12,12,8,12,7,9,7,10,6,7,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,5,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,16,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,7,7,14,8,10,8,14,9,12,12,13,7,8,6,8,5,5,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,5,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,5,8,5,6,6,8,5,5,5,8,6,8,8,18,9,9,7,10,6,6,5,11,6,6,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,5,4,7,5,7,6,10,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,17 +-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,9,6,6,6,10,7,10,10,15,8,8,6,9,6,7,6,10,6,6,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,6,4,7,5,7,7,13,7,7,5,8,5,5,5,9,5,5,4,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,14,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,13,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,14,9,13,13,20,11,11,8,12,7,9,8,13,7,8,6,9,6,9,9,16,9,9,6,9,5,6,6,11,7,8,6,9,6,9,9,17,9,9,7,10,6,7,6,12,7,7,6,9,6,9,9,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,18,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,5,7,7,18,10,10,7,10,6,8,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,10,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,5,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,15 +-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,13,9,12,12,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,17,17,18,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,9,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,10,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,6,14,8,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,14 +-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,17,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,15,8,7,5,7,4,4,4,6,3,3,3,4,3,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,7,6,11,7,10,10,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,23,12,13,9,14,8,10,9,15,9,10,8,14,9,13,12,22,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,22,13,15,13,22,12,13,10,15,9,12,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,12,12,21,11,11,8,13,8,9,8,14,8,9,8,14,9,13,13,24,13,14,11,17,11,14,13,24,14,16,13,23,16,23,22,36,19,19,13,20,12,14,12,21,12,13,10,16,11,15,15,28,15,15,11,16,10,12,11,21,12,13,10,17,11,16,16,29,15,15,11,16,10,13,11,20,11,13,10,17,11,15,15,28,15,17,13,20,13,17,17,32,18,22,18,32,22,32,32,35,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,7,9,8,15,9,10,8,12,8,12,12,31,16,17,12,18,10,12,11,19,10,11,8,13,9,12,11,20,11,11,8,12,8,10,9,17,10,12,10,16,10,14,14,23,12,12,9,14,8,9,8,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,31,16,16,11,16,9,10,8,13,7,8,6,9,6,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,17,9,9,7,11,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,13,9,13,13,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,6,10,7,10,10,28,14,14,10,14,8,10,8,14,8,10,8,13,8,11,11,20,11,12,9,13,8,10,10,18,11,13,11,18,12,18,18,19,10,10,7,10,6,7,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,4,7,7,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,8,5,6,5,7,5,8,8,9,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,9,7,12,7,7,6,10,7,9,8,14,8,9,7,11,7,9,8,14,8,9,8,14,10,14,14,27 +-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,17,17,18,9,9,7,10,6,6,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,6,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,7,4,6,6,11,6,7,5,7,5,6,6,9,6,7,6,9,7,10,10,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,10,6,6,4,5,3,4,3,4,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,12,7,8,6,9,6,7,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,6,9,6,7,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,16,9,10,8,12,8,10,10,16,10,12,10,17,12,18,18,18,9,9,7,10,6,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,17,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,9,5,6,5,9,7,10,10,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,5,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,12,7,7,5,6,4,4,4,5,3,3,2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,8,8,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,5,10,5,5,4,5,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,5,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,8,5,7,7,13,8,9,7,12,8,12,12,26,13,13,9,13,8,9,8,12,7,8,6,9,6,7,7,13,7,7,5,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,6,8,7,13,8,9,7,12,8,12,12,21,11,10,7,10,6,7,6,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,12,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,18,10,10,8,13,8,11,10,17,10,12,10,18,13,19,19,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,7,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,5,5,9,5,6,5,8,5,7,7,18,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,6,5,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,14,8,8,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,10,6,7,6,10,8,12,12,12,6,6,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,2,2,2,2,3,3,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,7,12,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,17 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,8,5,5,4,5,4,5,4,8,5,6,5,7,5,7,7,16,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,8,5,7,6,10,6,7,6,11,8,11,11,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,5,4,6,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,5,9,5,6,5,7,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,21,11,11,8,10,6,8,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,7,6,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,13,7,8,6,10,6,8,8,13,8,9,8,13,9,14,14,15,8,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,5,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,5,8,5,5,4,7,5,6,5,8,5,6,5,8,6,9,9,9,5,4,3,5,3,3,3,5,3,2,2,3,2,2,2,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,7,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,5,3,3,2,2,2,3,3,4,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,3,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,4,6,4,4,4,7,5,8,8,17,9,9,6,9,6,7,6,9,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,8,8,14,8,10,9,15,10,15,15,34,18,18,12,17,10,11,9,16,9,9,7,10,7,9,9,15,8,9,7,10,6,8,8,14,8,9,7,11,8,11,11,18,9,9,6,9,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,28,14,14,10,15,9,10,8,14,8,10,8,13,8,11,11,18,10,10,8,13,8,10,9,16,9,11,9,15,10,13,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,10,21,11,12,10,16,10,13,12,22,12,14,12,21,15,22,22,25,13,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,8,5,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,15,8,9,7,10,6,8,7,12,7,7,6,10,7,10,9,12,7,7,5,7,5,6,5,8,5,5,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,6,7,6,10,6,6,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,7,5,8,5,6,5,8,5,6,5,9,6,9,9,17,9,9,7,11,7,8,7,12,7,8,6,9,5,6,6,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,5,6,6,10,6,7,5,8,6,8,8,13,7,8,7,11,7,9,8,15,9,10,8,14,10,15,15,16,8,8,6,8,5,6,5,7,4,4,4,6,4,5,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,5,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,3,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,5,5,9,6,8,8,17,9,9,6,8,5,7,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22 +-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,7,4,4,3,4,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,6,4,7,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,12,6,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,8,7,5,7,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,3,4,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,5,8,5,6,6,10,7,10,9,22,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,14,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,7,4,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,5,4,6,4,4,3,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,7,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11 +-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,2,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,11,6,5,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,14,8,9,7,10,6,8,7,14,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,17,9,8,6,8,5,6,6,12,7,7,6,10,7,9,9,16,9,9,7,10,6,7,6,13,8,10,8,14,10,14,13,24,13,13,9,14,8,10,8,12,7,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,8,7,13,8,9,7,11,7,9,9,17,9,10,8,12,8,11,10,19,11,13,11,18,12,18,18,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,9,6,7,6,9,6,9,9,15,8,8,6,10,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,7,11,6,6,5,8,6,8,7,13,8,10,8,14,10,14,14,17,9,9,6,9,5,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,8,6,9,5,6,5,8,4,4,3,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,18 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,7,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,20,10,11,8,10,6,7,6,9,5,6,5,7,4,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,12,6,7,5,8,5,7,7,13,8,9,7,12,8,12,12,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,11,6,6,5,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,4,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,3,3,4,4,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,5,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,29,15,15,10,14,8,10,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,10,6,6,6,10,6,8,8,16,8,8,6,8,5,7,6,11,6,7,5,9,6,9,8,16,9,9,6,10,6,7,7,12,7,8,7,12,8,12,12,22,12,12,8,13,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,11,7,10,9,17,9,10,7,11,7,10,9,18,10,12,10,17,12,17,17,24,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,14,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,5,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,4,6,6,9,5,6,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,28,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,9,6,6,6,9,6,8,8,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,10,6,7,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,5,4,5,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,8,5,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,14,10,14,14,16,8,9,6,9,5,6,5,8,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,6,6,9,6,9,9,17 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,2,2,3,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,9,5,6,5,7,5,8,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,-3,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,18,9,9,7,10,6,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,20,11,13,11,20,13,19,19,55,28,28,19,28,16,19,16,28,15,16,12,20,13,18,17,33,17,18,12,18,11,14,12,22,12,14,11,17,11,16,16,30,16,16,11,17,10,12,11,20,11,12,9,15,10,13,12,23,12,13,10,15,9,12,11,21,12,14,12,22,15,22,22,41,21,22,15,22,13,15,13,23,12,13,10,16,10,12,11,21,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,37,19,19,13,19,12,15,13,23,13,15,12,21,14,20,20,38,20,21,15,24,15,19,18,34,19,23,19,33,22,33,32,45,23,23,16,25,14,17,14,25,14,15,11,17,10,13,12,23,12,12,8,12,7,9,8,15,9,10,9,15,10,14,14,27,14,13,9,13,8,9,8,13,7,7,6,9,6,9,8,15,8,9,6,9,5,6,5,9,5,6,5,9,6,8,8,16,8,8,5,7,4,5,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,6,10,7,10,10,30,15,15,11,16,10,12,10,17,9,9,7,11,7,9,9,17,9,9,6,8,5,6,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,10,9,15,10,14,14,25,13,14,10,14,8,9,8,14,8,9,8,13,8,11,11,20,11,12,9,14,8,10,9,17,9,10,8,14,10,14,14,26,14,14,10,14,9,12,11,19,11,12,10,16,11,15,15,28,15,16,12,19,12,16,16,30,17,20,16,28,19,28,27,31,16,16,11,15,9,11,10,17,10,11,8,13,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,7,9,8,15,8,7,5,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,6,6,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,15,8,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,5,5,8,5,7,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,7,11,7,9,8,15,8,9,8,13,9,12,12,25,13,13,9,12,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,16,9,9,6,9,6,8,8,14,8,9,7,12,8,11,10,18,10,11,8,13,8,10,9,16,10,12,10,18,12,18,17,33 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,5,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,9,17,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,6,6,11,7,8,7,11,8,11,12,21,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,23,12,12,9,13,8,9,8,13,7,8,6,9,6,7,6,12,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,9,5,6,4,5,4,5,5,7,4,5,4,7,5,6,6,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,10,18,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,12,20,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,24,12,12,9,14,8,10,8,13,7,8,6,9,6,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,8,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,4,8,5,5,4,6,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,2,4,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,13,8,9,7,12,8,12,12,16,9,9,6,10,6,7,6,9,5,6,4,6,4,5,4,8,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,5,5,8,4,4,3,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,13 +-2,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,-1,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,7,4,5,4,5,4,5,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,7,4,5,5,11,6,7,6,10,7,10,10,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,6,7,6,11,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,8,12,7,9,8,13,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,11,18,12,18,18,24,13,13,9,14,8,10,8,14,8,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,5,5,8,5,7,7,15,8,8,5,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,5,5,8,6,9,9,13,7,7,5,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,13,7,7,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,10,7,9,9,15,9,11,9,16,11,16,16,16,9,9,6,8,5,6,6,10,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,7,6,10,7,10,10,19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,4,3,5,4,5,6,8,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,11 +-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,2,2,2,3,4,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,4,3,3,3,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,5,3,4,5,6,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,22,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,7,11,7,8,8,14,8,9,8,13,9,13,13,17,9,9,7,9,5,6,6,9,5,5,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,3,6,4,6,5,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,10,5,5,4,5,3,4,3,5,3,4,3,6,4,5,5,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,4,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14 +-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,10,6,6,4,7,4,5,5,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,7,7,12,7,7,5,6,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,5,4,4,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,1,1,2,1,1,1,2,1,1,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,3,6,4,6,5,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,4,3,5,4,5,4,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,7,8,4,4,3,5,4,5,5,10,6,7,7,12,8,12,11,34,18,18,12,17,10,12,10,18,10,11,8,13,8,10,9,22,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,14,8,8,6,10,6,7,6,11,6,7,6,9,6,8,7,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,6,13,7,8,6,10,6,8,7,12,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,23,13,14,10,16,10,13,12,22,13,15,12,20,14,20,20,26,14,14,10,15,9,10,8,14,8,9,7,10,6,8,7,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,15,8,8,6,9,5,6,5,7,4,5,4,5,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,10,16,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,9,5,6,5,8,5,7,6,10,6,6,5,9,7,10,10,15,8,8,6,8,5,7,6,10,6,6,5,9,6,9,8,19,10,11,8,13,8,10,9,16,10,12,10,17,12,18,18,17,9,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,5,10,6,7,5,8,5,6,6,11,7,8,7,12,8,11,11,21 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,7,5,7,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,4,4,6,4,4,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,11,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12 +-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,20,11,11,7,10,6,7,6,10,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,6,4,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,8,6,8,8,13,7,8,6,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,16,8,8,6,9,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,5,12,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,5,3,4,4,5,3,3,3,5,3,4,3,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,13 +0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,12,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,5,4,9,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,6,10 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,4,6,5,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,2,1,1,1,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,5,3,3,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,11,6,5,4,5,3,3,3,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,10,6,7,6,10,7,10,9,24,12,12,9,13,8,9,8,13,7,8,6,10,7,9,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,15,8,9,6,9,6,7,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,7,8,6,10,7,9,9,15,8,9,7,10,6,7,6,12,7,9,7,12,8,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,20,10,10,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,6,4,4,3,5,4,5,5,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,5,10,6,7,6,9,6,7,7,14,8,8,6,9,6,8,7,11,7,8,7,12,9,13,13,14,7,7,5,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,9,9,17 +0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,6,7,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,4,5,9,6,7,6,9,6,8,8,21,11,12,8,12,7,9,7,12,7,8,6,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,9,13,7,8,6,9,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,12,8,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,8,5,8,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,9,6,7,6,10,6,7,6,11,8,12,12,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16 +-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,16,9,10,7,11,7,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16 +-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,7,5,8,8,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,6,4,6,6,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,3,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,1,1,1,0,0,0,1,1,1,2,2,2,1,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,16,9,9,6,8,5,7,6,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,5,9,5,6,4,6,4,6,6,12,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,39,20,21,14,21,12,15,12,21,11,12,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,15,10,14,14,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,23,12,13,10,15,9,11,10,19,11,12,10,17,11,16,16,31,16,17,13,21,13,17,15,27,15,18,15,27,18,27,28,32,17,17,12,17,10,12,10,18,10,10,7,11,7,9,8,15,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,7,4,4,3,3,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,5,5,11,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,13,7,8,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,6,4,4,4,7,5,6,6,13,7,7,5,7,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,7,14,8,10,8,13,8,11,11,24,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,22,12,13,10,16,10,14,13,23,13,15,12,21,14,21,21,21,11,11,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,6,4,5,3,3,3,5,3,4,3,5,4,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,6,7,7,4,4,3,4,2,2,2,2,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,1,6,4,4,3,3,2,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,2,2,3,3,5,3,3,2,3,3,4,4,7,5,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,15,15,30 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,6,8,5,6,6,10,6,6,5,8,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,4,4,8,5,6,6,9,6,9,9,13,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,14,8,10,8,14,10,14,15,17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,6,8,7,12,7,8,7,11,8,11,11,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,4,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,8,8,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,4,3,4,4,6,4,5,4,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,6,4,6,4,4,4,9,5,6,6,10,7,10,9,14,7,7,5,9,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,15,9,10,8,15,10,15,16,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,8,5,7,7,8,4,4,3,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,5,4,8,5,6,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,12,6,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,16 +0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,7,5,6,6,15,8,9,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,7,4,5,5,8,5,7,7,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,7,6,11,7,8,6,11,8,11,12,14,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,6,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,11 +-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,6,5,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,7,4,4,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,4,10,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,6,10,7,10,9,24,13,13,9,14,8,9,8,12,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,5,9,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,11,7,8,7,12,8,11,11,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,17,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,4,3,7,4,4,3,5,4,5,4,7,4,4,4,6,4,5,4,9,5,6,5,9,6,9,8,14,7,7,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,7,10,6,8,8,14,8,9,7,12,9,13,14,12,7,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,6,3,3,2,3,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,8,5,5,4,7,5,6,6,8,5,6,5,9,6,9,9,17 +0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,9,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,7,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,4,4,6,4,6,6,10 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,4,3,4,3,5,4,5,4,6,3,3,2,4,3,4,4,7,4,4,4,7,5,8,7,19,10,11,8,11,7,8,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,13,9,14,14,18,10,10,7,10,6,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,7,6,11,7,8,7,10,7,11,11,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,6,5,7,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,14,8,9,7,10,6,8,8,14,8,9,8,12,9,13,13,17,9,9,6,9,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12 +-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,2,3,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,3,2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,10,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,5,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,9,5,6,5,7,5,6,5,9,6,7,6,9,7,10,10,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,8,14,8,9,7,12,8,12,11,18,9,9,6,9,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,13,13,26,14,14,10,16,10,12,10,18,10,12,9,15,10,13,13,26,14,16,12,19,12,16,14,26,14,16,13,23,16,24,24,32,16,16,11,16,9,11,9,16,9,10,8,12,7,9,9,16,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,6,4,4,4,6,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,5,5,4,6,4,6,6,10,6,8,7,12,8,11,11,20,11,11,8,12,7,9,7,12,7,8,7,11,7,10,10,22,12,13,10,15,9,12,10,18,10,12,10,18,13,19,19,17,9,9,6,8,5,7,6,10,6,6,5,7,4,5,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,2,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,23 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,19,10,9,6,9,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,8,10,8,13,9,14,14,18,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,7,5,7,7,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,6,9,6,7,6,10,6,7,6,11,8,11,11,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,7,5,7,7,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,7,5,8,8,13,7,7,5,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,7,13,7,8,5,7,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,6,9,5,6,5,10,7,10,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,16,11,16,16,21,11,11,8,11,7,8,7,11,6,6,5,9,6,8,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,3,2,2,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,7,6,12,7,8,7,13,9,12,13,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,7,5,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,18,10,10,7,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,11,8,10,11,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,2,2,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,8,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,6,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,6,6,9,6,7,6,10,7,10,10,31,16,16,11,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,9,6,7,6,13,7,8,6,10,7,10,10,18,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,6,9,6,8,7,11,7,8,6,10,7,10,10,19,10,10,7,11,7,9,8,12,7,8,6,9,6,8,8,15,8,9,7,10,7,9,8,12,7,9,8,13,9,13,13,24,13,13,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,10,16,10,13,13,25,14,17,14,24,16,24,23,32,16,16,11,16,9,11,10,16,9,9,7,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,6,10,7,10,10,18,9,9,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,10,7,10,10,18,10,11,8,12,7,9,9,18,11,13,11,19,13,19,19,16,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,5,5,9,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22 +-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,9,5,6,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,16,9,9,6,10,6,7,7,11,6,7,6,10,6,9,9,17,9,10,7,11,7,9,9,17,10,11,9,16,11,16,16,22,11,11,8,11,7,8,7,11,6,7,5,8,6,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,12,7,7,6,8,5,7,6,12,7,9,8,13,9,13,13,11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,1,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,6,9,7,10,10,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,13,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,11,7,8,7,11,8,12,12,23 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,14,8,8,5,7,4,5,4,8,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,8,7,11,8,12,12,23 +-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,5,4,6,7,14,8,8,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,14,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,6,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,9,6,8,8,16,9,9,7,12,7,9,9,16,9,10,8,14,9,13,12,23,12,13,10,15,9,12,12,22,12,14,11,19,13,18,18,62,31,31,21,31,18,22,19,33,17,18,14,22,14,18,17,32,17,18,13,20,12,16,14,26,15,17,13,22,15,22,22,43,22,23,16,24,14,17,15,26,14,16,12,19,12,16,16,30,16,16,12,18,11,14,13,23,13,15,13,22,14,20,20,38,20,20,14,20,12,14,13,23,12,13,10,17,11,14,13,24,13,13,10,16,10,12,11,20,11,13,11,19,13,19,18,35,18,19,13,19,12,15,13,24,14,16,13,21,14,20,20,40,22,24,18,30,19,25,24,45,26,31,26,45,30,45,45,65,33,32,22,32,18,21,18,32,17,18,13,21,13,17,16,31,16,17,12,17,10,13,12,21,11,12,9,15,10,13,13,25,13,12,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,8,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,11,13,11,19,12,17,17,32,16,16,11,15,9,10,9,15,8,9,7,11,7,9,8,15,8,8,6,10,6,7,6,11,7,8,7,12,9,13,13,24,13,13,9,14,9,12,11,19,11,12,9,15,10,14,14,27,15,17,13,21,13,18,17,32,19,23,19,34,23,35,35,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,6,6,11,7,8,6,10,7,10,10,18,9,9,6,9,5,5,4,5,3,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-3,-1,-1,0,0,1,1,1,0,1,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,4,5,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,13,7,8,7,11,8,11,10,19,11,12,9,14,9,11,10,19,11,13,12,21,15,22,22,44 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,32,16,16,11,16,10,12,10,17,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,11,13,10,16,10,13,12,23,13,16,13,23,16,23,23,33,17,17,11,16,9,11,9,17,9,10,7,11,7,9,9,16,8,9,6,9,6,7,6,11,6,7,5,8,6,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,7,13,7,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,11,7,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,12,12,23 +-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,5,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,10,32,17,17,11,16,10,12,10,16,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,10,8,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,7,10,7,10,10,20,11,13,10,16,10,14,13,22,13,16,13,23,15,22,23,33,17,17,11,16,9,11,9,17,9,10,8,12,8,10,9,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,2,2,3,5,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,5,3,4,4,5,4,5,5,10,6,6,4,7,4,5,4,7,4,5,4,6,4,6,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,9,5,6,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,12,8,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,9,6,7,6,11,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,3,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,22,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,9,7,11,7,9,9,15,9,11,9,15,10,15,15,23,12,12,8,11,6,8,6,12,6,7,6,8,6,7,7,10,6,6,4,6,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,6,4,4,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,8,6,7,6,11,7,8,7,11,8,12,12,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,2,4,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,5,4,8,6,8,8,16 +-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,2,2,4,3,5,5,7,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,9,5,5,3,4,3,4,4,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,13,7,6,4,6,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,32,16,16,11,16,10,12,10,16,9,10,8,12,8,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,9,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,12,8,11,11,20,11,11,8,12,7,9,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,11,8,11,7,8,7,14,8,9,7,10,7,10,11,20,11,13,10,16,10,14,13,22,13,15,13,22,15,23,23,35,18,18,12,16,9,11,9,17,9,10,8,12,8,11,10,15,8,8,6,9,6,7,7,11,6,6,5,7,5,7,7,12,7,7,5,6,4,5,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,7,5,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,10,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,5,7,7,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,9,10,8,12,8,10,9,16,9,11,9,16,11,17,17,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,7,5,7,5,7,6,9,6,7,6,11,8,12,12,24 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,4,5,4,7,5,7,7,14 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,2,2,4,3,3,2,3,2,2,2,2,2,2,3,7,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,22,12,12,8,11,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,7,10,7,10,9,16,9,10,9,15,11,16,16,24,12,12,8,11,6,7,6,12,7,8,6,9,6,8,7,11,6,6,4,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,2,1,0,0,1,1,1,1,2,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,7,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,12,7,8,6,8,5,7,7,12,7,8,7,11,8,12,12,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,5,5,6,4,6,5,8,6,8,9,17 +-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,19,10,10,7,9,6,7,6,10,6,7,5,8,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,14,7,7,5,8,5,5,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,6,8,6,8,8,14,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,8,14 +-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,4,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,33,17,17,12,17,10,12,10,18,10,11,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,8,7,11,8,11,11,19,11,12,9,14,9,13,13,24,14,16,13,23,16,23,23,35,18,17,12,17,10,12,10,16,9,10,8,13,8,11,11,16,9,9,6,9,6,7,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,6,4,5,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,8,8,18,10,11,8,12,8,11,10,18,10,12,10,17,12,17,17,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,3,3,6,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,8,5,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,8,7,11,8,12,13,25 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,13,8,9,8,13,9,12,12,19,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,5,7,7,13 +-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,4,3,4,3,6,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,20,10,10,7,11,6,7,6,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,4,3,5,4,6,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,13,7,8,5,7,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,8,14,8,9,8,14,9,13,13,21,11,11,8,10,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,5,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,8,5,6,6,11,6,7,6,11,7,10,10,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,4,5,4,6,5,7,7,14 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,5,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,4,3,5,4,6,6,10 +-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,4,4,6,4,6,6,7,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,9,5,6,5,8,5,6,6,9,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,13,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,5,5,10,5,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,7,6,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,8,16,9,11,9,16,11,16,16,27,14,14,10,14,8,8,7,13,7,8,6,10,6,8,8,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,11,6,6,4,4,3,4,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,6,6,14,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,5,3,4,4,6,4,5,5,8,6,9,9,16 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,11,6,6,4,5,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,5,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,3,3,5,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,5,3,3,3,4,2,3,3,4,3,3,3,5,4,6,6,10 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,3,2,2,2,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,24,12,12,9,13,8,9,8,12,7,8,6,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,15,8,8,5,7,5,6,5,8,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,13,9,14,14,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,13,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,4,7,5,7,7,13 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,8,7,12,8,13,13,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,5,3,4,4,7,5,7,7,12 +-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,1,1,2,2,3,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,6,4,5,5,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,16,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,9,6,9,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,10,6,7,5,8,5,6,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,8,15,9,11,9,15,10,15,16,44,23,23,16,24,14,17,14,24,13,14,11,17,11,14,13,24,13,13,9,12,7,9,8,13,7,8,7,12,8,11,11,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,27,14,13,9,13,8,9,8,13,7,7,6,9,6,8,8,15,8,8,6,8,5,7,7,12,7,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,8,7,12,8,10,10,18,10,10,8,12,8,11,11,20,12,14,12,21,15,22,23,41,21,21,14,21,13,16,14,24,13,14,10,15,10,13,12,22,12,12,8,11,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,11,6,5,4,5,3,3,3,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,7,6,11,6,7,6,11,7,10,10,14,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,22,11,11,8,12,7,9,8,13,7,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,11,7,10,10,17,9,10,8,12,7,9,9,16,9,10,8,14,9,12,12,22,12,12,9,14,9,12,11,21,12,13,11,18,12,18,18,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,7,7,5,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,4,3,4,3,-2,0,0,1,1,1,2,2,4,3,4,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,16,8,8,6,9,6,7,6,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,13,7,8,6,8,6,7,7,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,4,3,5,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,4,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,6,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,13,13,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,4,4,3,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,17,9,9,6,9,6,7,6,10,6,6,5,7,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,4,5,4,7,5,8,8,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8 +-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,3,4,3,4,3,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,26,13,13,9,14,8,9,8,15,8,8,6,10,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,7,7,11,7,9,8,13,9,14,14,27,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,14,7,7,5,8,5,7,6,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,8,5,6,5,7,5,7,6,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,8,5,5,3,4,3,4,3,5,3,3,3,5,4,5,5,12,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,8,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,12,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,7,5,8,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,5,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,1,0,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,2,2,1,1,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,3,4,3,4,4,7 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,1,1,1,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,21,11,10,7,10,6,7,6,12,6,6,5,8,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,13,7,8,6,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,4,6,4,6,6,10,6,7,6,11,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,6,6,5,7,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,3,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,9 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,7,6,10,6,6,4,7,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,19,10,11,7,11,6,8,7,11,6,7,6,8,6,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,8,5,5,4,5,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8 +-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,0,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,3,3,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,4,6,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,10,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,10,9,15,10,14,14,36,18,18,12,18,10,12,10,18,10,11,8,12,8,10,9,17,9,9,6,9,6,7,7,12,7,9,7,12,8,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,8,21,11,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,7,5,7,5,6,5,8,5,6,5,8,6,8,9,13,7,8,6,9,6,7,6,10,6,7,5,8,6,8,8,16,9,10,7,11,7,10,9,16,9,11,10,17,12,19,19,35,18,18,13,20,12,14,12,21,12,13,10,15,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,10,6,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,8,4,4,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,7,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,16,9,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,10,15,15,15,8,8,5,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,4,3,4,2,2,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,-2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,7,6,9,6,8,8,15 +-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,6,8,8,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,4,4,4,5,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,6,5,9,5,6,6,10,7,11,11,20,10,10,8,11,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9 +-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,9,5,6,4,5,3,4,3,5,3,3,3,4,3,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,9,5,6,6,9,6,9,9,23,12,12,8,11,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,6,4,7,5,6,5,10,6,6,5,9,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,10 +-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,5,7,5,8,8,19,10,10,7,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8 +-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,4,4,6,5,7,7,9,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,7,14,8,9,7,12,9,13,13,32,16,16,11,16,9,10,9,16,9,10,8,12,8,10,9,17,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,20,10,10,7,11,7,8,7,10,6,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,7,17,9,10,7,10,6,8,7,9,5,6,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,5,7,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,9,15,9,11,9,16,11,16,16,33,17,17,12,18,10,12,11,19,10,11,9,14,9,11,10,19,10,10,7,10,6,7,7,10,6,7,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,5,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,5,7,7,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,17,9,9,6,9,5,6,5,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,13 +-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,5,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,9,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,6,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,5,4,6,4,6,5,9,6,7,6,10,7,10,10,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,5,5,7,5,8,8,10,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,13,7,8,7,13,9,12,12,30,16,16,11,15,9,11,9,15,9,10,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,6,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,7,15,8,8,6,8,5,6,6,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,7,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,15,9,10,9,15,10,15,15,32,17,17,12,18,10,12,10,17,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,8,7,13,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,13,9,12,12,29,15,16,11,15,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,6,9,6,9,8,15,9,10,9,15,10,15,15,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,18,9,9,6,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,11,6,7,6,8,6,8,7,13,8,9,8,13,9,14,14,17,9,9,6,9,5,6,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-24,-11,-11,-7,-11,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,7,6,11,8,11,12,30,16,16,11,17,10,12,10,18,10,10,7,10,7,9,8,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,9,13,8,10,9,16,9,11,9,14,9,12,12,23,12,12,9,14,9,11,10,18,10,12,10,17,11,16,16,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,11,12,9,14,9,13,13,24,13,15,13,22,15,23,23,57,29,29,20,29,17,20,16,28,15,17,13,20,13,18,17,32,17,17,12,18,11,14,13,23,13,14,12,20,13,19,18,34,17,17,12,18,11,13,11,19,10,11,8,13,9,12,12,22,12,12,8,12,8,10,9,15,8,9,7,12,9,13,13,28,14,14,10,14,9,11,10,17,9,9,7,11,7,10,9,17,9,10,7,10,7,9,8,15,8,9,7,12,8,11,11,22,12,12,9,13,8,10,8,14,8,10,8,14,9,13,13,24,13,15,11,18,12,17,16,30,17,20,17,29,20,29,29,63,32,31,21,31,18,21,17,29,15,16,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,14,10,14,14,26,13,13,9,13,8,9,8,13,8,9,7,11,7,9,9,17,9,9,6,9,6,7,6,9,6,7,6,9,6,9,9,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,9,7,10,10,25,13,13,9,14,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,10,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,9,6,9,6,9,8,15,8,9,7,12,8,12,12,27,14,13,9,13,8,10,8,14,8,8,6,9,6,9,9,16,9,9,6,9,6,8,8,14,8,9,8,14,10,14,14,28,15,16,11,17,10,13,12,21,12,14,11,19,13,18,17,32,17,18,13,20,13,17,15,28,16,19,16,27,18,27,27,33,17,17,12,17,10,11,10,17,9,9,7,10,6,8,8,15,8,8,6,9,5,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,6,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,6,5,7,4,5,5,7,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,4,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,6,7,5,8,5,6,6,11,7,8,8,14,10,14,14,27 +-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,9,17,9,9,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,5,7,7,15,8,8,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,16,9,10,9,15,10,15,15,32,16,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,4,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,5,3,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,3,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,10,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,30,16,16,11,15,9,10,9,15,8,9,7,11,7,9,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,15,8,8,5,8,5,6,5,9,5,6,4,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,6,4,6,6,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,8,6,11,7,10,9,16,9,10,9,15,10,15,15,33,17,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,4,4,5,4,6,6,14,8,8,6,7,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,18,9,9,6,10,6,6,6,10,6,6,4,6,4,6,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,7,4,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,12,6,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,8,5,7,6,11,6,7,6,10,7,11,11,23,12,11,8,11,6,8,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,4,2,3,3,5,3,4,4,5,4,6,6,10 +-13,-6,-6,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,3,2,3,2,3,2,3,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,13,7,8,6,8,5,6,6,12,7,7,6,10,7,10,10,11,6,7,5,8,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,7,6,11,6,7,5,8,6,8,7,13,7,8,7,12,9,13,13,31,16,16,11,16,10,12,10,16,9,10,8,12,8,10,9,17,9,10,7,10,6,7,7,14,8,9,7,12,8,11,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,16,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,7,12,8,10,9,17,10,11,9,15,11,16,16,35,18,18,12,16,9,11,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,5,5,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,3,2,3,2,3,2,3,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,4,4,5,3,4,4,6,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,5,8,6,8,7,11,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,5,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,12,7,9,9,16,9,11,9,14,10,15,15,20,10,10,7,11,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,4,4,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,3,3,3,3,2,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,15 +-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,5,5,7,5,8,8,18,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,12,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +-10,-4,-4,-3,-6,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,4,4,6,4,4,3,4,2,2,2,5,3,3,3,5,4,5,5,12,7,7,5,7,5,6,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,9,6,7,6,9,6,9,9,21,11,11,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,7,5,6,6,11,6,7,6,8,6,8,8,13,7,8,6,7,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,12,7,9,7,11,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,5,10,6,6,4,7,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,4,5,4,6,6,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,6,4,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,8,6,9,6,7,6,12,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,11 +-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,11,7,8,6,10,6,6,4,7,4,6,5,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,4,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,10 +-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,9,5,5,3,4,3,3,3,6,4,4,4,7,5,8,8,19,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,5,8,6,8,8,15,8,9,6,9,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,13,7,8,6,10,7,9,8,14,8,10,8,13,9,13,13,33,17,17,12,17,10,12,10,18,10,11,9,14,9,11,10,21,11,12,8,12,7,9,9,16,9,10,8,14,9,12,11,19,10,10,7,11,7,8,6,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,9,5,6,5,7,5,8,8,20,10,10,7,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,7,7,16,9,9,6,8,5,7,6,10,6,7,6,9,6,9,9,18,10,11,8,13,8,11,10,18,10,12,11,19,13,19,19,40,20,20,14,20,11,13,11,18,10,11,8,13,8,10,9,19,10,10,7,10,6,7,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,7,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,4,6,4,5,4,6,4,4,3,5,4,6,6,16,9,9,6,8,5,6,5,9,5,5,4,7,4,5,4,8,5,5,3,4,3,4,4,7,4,5,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,7,12,7,9,8,13,9,12,12,21,11,11,8,11,7,9,8,14,8,9,7,12,8,12,11,19,10,11,8,13,8,11,10,18,10,12,10,18,12,18,17,24,12,12,8,11,7,8,7,12,7,8,6,9,6,8,8,10,6,6,5,7,4,5,4,6,4,5,4,7,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,5,9,5,5,4,6,4,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,9,17 +-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,9 +-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,12,8,11,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,13,7,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,12,8,12,12,25,13,13,9,13,7,8,7,11,6,6,5,9,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,3,3,2,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,4,5,5,10 +-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,11,6,7,6,9,6,7,6,11,6,7,6,11,8,11,12,27,14,14,10,16,9,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,12,7,8,6,10,7,10,9,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,8,14,10,15,15,34,17,17,11,16,9,11,9,15,8,9,7,11,7,8,7,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,5,5,12,7,7,5,8,5,6,5,8,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,17,9,10,7,10,6,8,7,10,6,6,5,7,5,7,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,10,7,10,7,9,8,14,8,9,8,14,10,15,15,22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,6,4,5,4,8,4,5,4,8,5,7,8,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,22,11,11,8,11,6,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,7,5,7,4,5,5,7,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,14,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,9,5,6,6,11,6,7,6,11,7,10,10,26,14,14,10,15,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,5,6,4,5,5,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,4,12,6,6,5,8,5,5,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,5,8,5,6,6,16,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,3,4,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,6,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,5,6,6,15,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-34,-17,-17,-11,-16,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,4,7,4,5,5,8,5,7,7,5,3,3,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,9,6,9,8,15,9,10,8,13,9,12,12,23,12,13,9,14,8,10,8,14,8,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,18,10,10,7,11,6,7,6,11,6,7,6,9,6,9,9,17,9,9,7,11,7,8,7,13,7,8,7,12,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,11,20,11,11,8,11,7,8,7,12,7,8,7,11,8,11,11,20,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,49,25,25,17,24,13,15,13,22,12,13,10,16,10,14,13,24,13,13,9,14,9,11,10,19,11,13,10,17,11,15,15,27,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,16,9,9,7,12,7,9,9,16,8,8,6,9,6,8,8,14,8,8,6,10,7,9,9,27,14,15,11,17,10,12,11,20,11,12,10,17,11,15,14,27,14,15,11,17,11,14,14,26,15,17,14,25,17,26,26,61,31,31,21,31,17,20,16,27,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,14,8,9,7,11,7,10,9,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,7,12,8,12,12,10,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,29,15,16,11,16,9,11,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,11,17,10,12,10,18,10,12,10,17,11,15,15,28,15,15,11,18,12,16,15,29,16,18,15,26,18,26,26,39,20,19,13,19,11,13,11,19,10,11,8,12,8,10,10,18,10,10,7,11,7,8,6,10,6,6,5,9,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,4,6,4,5,4,6,4,6,5,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,3,5,4,6,6,8,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,7,5,7,5,7,6,11,6,7,5,8,6,8,8,15 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,8,7,11,8,11,11,26,13,13,9,13,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,8,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,21,11,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +-18,-9,-9,-5,-9,-4,-5,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,4,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,13,7,8,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,7,5,7,6,12,7,8,6,9,6,8,7,13,7,8,7,12,8,11,11,27,14,14,9,14,8,9,7,13,7,8,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,10,7,9,9,16,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,16,9,9,6,9,6,7,7,12,7,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,14,14,34,17,17,11,17,10,11,9,15,8,8,6,10,7,9,8,14,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,7,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,7,17,9,9,6,9,5,6,5,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,7,11,7,10,9,16,9,10,9,15,10,15,15,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,7,5,6,4,4,4,6,4,4,4,5,4,6,6,12,6,6,5,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,10,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,10,6,6,4,5,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,5,8,5,6,6,11,7,8,6,10,7,9,9,17,9,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,6,15,8,8,6,8,5,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,30,16,16,11,16,9,10,8,15,8,9,7,11,7,9,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,6,9,9,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,19,10,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,10,7,10,7,9,8,16,9,11,9,16,11,16,16,40,20,19,13,18,10,12,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,11,7,8,6,10,7,10,9,21,11,10,7,10,6,7,6,12,7,8,6,9,6,8,8,12,7,7,5,8,5,7,6,10,6,7,6,10,7,10,11,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,20,11,11,8,12,8,11,10,18,11,13,11,18,12,18,18,28,14,14,10,14,8,10,9,14,8,9,7,10,6,8,7,14,7,7,5,7,4,5,5,7,4,5,4,7,5,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,6,5,8,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,5,3,3,3,4,3,4,4,3,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,9 +-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,12,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,7,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,18,9,9,6,9,5,6,6,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6 +-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,5,7,7,13,7,8,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,9,6,8,7,12,7,9,7,13,9,12,12,25,13,13,9,13,8,9,7,12,7,8,6,9,6,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,10,6,6,5,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,6,4,6,6,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,8,10,8,14,10,14,14,32,16,16,11,16,9,11,9,14,8,9,7,10,7,9,8,12,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,9,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,10,7,10,6,8,8,15,9,11,9,16,11,16,16,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,12,6,6,4,7,4,5,5,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,11,6,6,4,5,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8 +-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,6,7,7,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,12,7,7,6,9,6,7,7,12,7,9,7,13,9,12,12,30,15,15,10,15,9,10,8,13,7,8,6,9,6,8,7,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,2,3,2,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,7,15,8,9,7,10,6,8,8,14,8,10,8,15,10,14,14,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8 +-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,8,8,6,10,6,8,7,12,7,9,7,12,8,12,11,23,12,12,8,12,7,9,8,13,7,8,6,10,6,7,7,14,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,16,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,10,8,12,8,10,9,16,9,10,8,13,9,14,14,24,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,11,7,8,8,14,8,9,7,10,7,10,9,20,10,10,7,11,7,8,8,14,8,9,7,12,8,11,10,19,11,12,9,14,9,12,12,22,13,15,13,22,15,21,21,42,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,19,10,11,8,12,7,9,9,16,9,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,13,8,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,9,10,8,12,8,10,9,17,9,9,7,11,7,8,8,14,8,9,8,13,9,12,11,27,14,14,10,15,9,11,10,18,10,11,9,15,10,14,14,22,12,12,9,15,10,13,12,22,13,15,13,23,15,22,22,57,29,28,19,27,15,18,15,25,13,14,11,18,11,14,13,21,11,11,8,12,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,6,5,8,6,9,9,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,6,4,6,6,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,21,11,11,8,11,7,8,7,11,6,7,6,9,6,9,8,14,8,8,6,9,5,6,6,10,6,7,5,8,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,9,7,11,7,9,9,16,9,10,9,15,10,14,14,31,16,17,12,17,10,12,10,16,9,10,8,13,9,12,11,17,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,27,14,14,10,15,9,11,10,18,10,11,9,15,10,13,13,27,14,15,11,18,11,15,14,26,15,18,15,27,18,26,26,48,24,24,16,23,13,15,13,22,12,12,9,14,9,12,12,21,11,11,8,11,7,9,8,13,8,9,8,13,9,12,12,24,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,3,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,8,5,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14 +-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,32,16,16,11,15,9,10,8,14,8,8,6,10,6,8,8,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,4,5,5,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,9,13,8,9,8,13,7,7,5,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8 +-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,5,6,4,5,5,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,7,12,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,9,9,7,9,5,6,5,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,18,9,9,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,11,7,10,9,15,9,11,9,16,11,16,16,38,19,19,13,18,10,12,10,17,9,10,8,12,8,10,9,14,8,8,6,8,5,7,6,11,6,6,5,8,6,8,7,12,6,6,5,6,4,4,4,6,4,4,3,5,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,12,7,8,7,10,7,10,10,21,11,11,8,11,7,8,7,10,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,9,5,6,6,11,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,17,9,10,8,13,8,11,10,18,10,12,10,18,12,18,18,33,17,17,11,16,9,10,9,16,8,8,6,11,7,8,8,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,4,5,5,7,4,4,4,7,5,6,6,12,6,6,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,9 +-18,-8,-8,-5,-8,-4,-6,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,4,6,5,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,12,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,5,4,4,4,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,6,9,6,7,6,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,11,7,9,8,15,9,10,9,15,10,15,15,28,15,15,10,14,8,9,8,13,7,7,6,9,6,7,7,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8 +-33,-16,-16,-10,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-5,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,8,5,6,5,10,6,6,4,6,4,6,6,15,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,16,9,9,6,9,6,7,7,13,8,9,8,13,9,14,14,26,13,13,9,14,8,10,9,13,7,8,6,10,6,8,8,17,9,10,8,12,7,9,8,14,8,8,7,11,7,10,9,20,11,11,8,12,7,8,7,12,7,8,7,11,7,9,9,17,10,11,8,13,8,11,10,19,11,14,12,20,14,21,21,39,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,18,10,10,7,10,7,9,8,14,8,9,8,14,10,14,13,25,13,14,10,14,8,9,8,15,8,9,7,12,8,10,10,18,10,10,7,10,6,8,7,14,8,10,8,14,10,14,13,25,13,14,10,14,9,11,9,15,9,10,8,12,7,9,9,17,9,9,7,10,6,8,8,12,7,9,8,13,9,12,12,26,14,14,10,14,9,11,10,17,9,10,8,13,9,13,12,21,11,12,9,15,10,13,12,22,13,15,13,22,15,22,22,55,28,28,19,28,16,19,16,27,14,15,11,18,11,14,13,21,11,12,8,12,8,10,9,16,9,9,7,10,7,9,9,19,10,9,6,9,6,7,6,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,9,7,10,6,8,8,17,10,12,10,16,11,16,15,31,16,16,11,16,9,11,9,15,9,10,8,12,8,10,10,18,10,10,8,12,7,9,9,14,8,10,9,15,10,14,14,28,15,15,11,16,10,12,11,19,10,11,9,14,9,13,13,25,13,14,11,18,11,15,14,26,15,18,15,26,18,26,26,50,26,26,18,26,14,16,13,23,12,13,10,16,10,13,12,23,12,12,8,12,7,8,7,15,9,10,8,12,8,11,11,21,11,11,8,12,7,9,8,13,7,8,6,10,7,9,8,13,7,7,5,8,5,7,7,11,6,7,6,9,6,8,8,17,9,9,7,10,6,6,5,10,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,5,4,7,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,6,6,9,6,10,10,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,6,7,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,8,7,13,8,10,8,13,9,14,14,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,36,19,19,13,19,11,13,11,18,10,10,8,12,8,10,9,15,8,8,6,9,6,7,6,11,6,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,8,11,10,21,11,11,8,11,6,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,8,13,7,8,6,10,7,9,9,17,9,10,8,12,8,11,10,18,10,12,10,17,12,18,18,33,17,17,12,18,10,11,9,16,9,9,7,11,7,9,8,16,8,8,6,8,5,6,6,10,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-4,-6,-6,-14,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,12,7,8,6,8,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,12,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,13,7,8,7,10,7,9,9,17,9,10,8,12,7,8,7,14,8,9,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,11,7,10,9,17,9,10,8,13,8,11,10,20,12,14,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,18,10,10,7,11,7,8,8,14,8,10,8,14,9,13,13,25,13,14,10,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,28,19,28,16,18,15,26,14,14,11,17,11,14,13,22,12,12,9,13,8,10,9,15,8,8,6,10,7,10,10,19,10,10,7,10,6,6,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,12,9,16,11,16,15,31,16,16,11,16,9,11,9,15,8,9,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,10,9,14,10,14,14,27,14,14,10,16,10,12,11,18,10,12,9,15,10,14,13,25,14,15,11,18,12,16,15,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,4,5,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,14,8,9,7,11,7,9,9,17,9,10,8,11,7,8,7,13,8,9,7,11,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,13,8,11,10,20,11,13,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,13,8,11,10,19,10,10,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,13,9,13,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,13,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,27,18,27,16,18,15,26,14,15,11,17,11,14,13,23,12,12,9,13,8,10,9,15,8,9,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,11,9,16,11,16,16,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,10,17,9,9,7,11,7,9,8,15,8,10,9,14,10,14,14,27,14,14,10,15,9,12,11,18,10,12,9,15,10,14,13,25,14,15,11,17,11,15,14,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,5,7,5,7,7,13 +-70,-35,-35,-23,-34,-19,-23,-19,-35,-17,-18,-12,-20,-11,-15,-14,-28,-14,-14,-9,-13,-7,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-19,-19,-40,-20,-20,-13,-20,-11,-13,-10,-19,-9,-9,-6,-11,-6,-9,-9,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-9,-8,-15,-9,-14,-14,-28,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-5,-7,-7,-15,-7,-6,-3,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,1,1,1,1,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,8,8,15,8,9,8,13,9,12,11,20,12,15,13,23,16,23,24,47,24,25,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,13,9,14,8,10,8,14,8,8,7,11,7,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,31,16,17,12,18,11,14,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,14,12,22,13,15,13,22,15,21,21,41,21,21,15,22,13,17,15,27,15,16,12,19,12,17,17,32,17,19,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,34,19,23,19,34,18,20,15,25,16,22,20,38,20,20,14,22,13,16,14,24,14,16,13,21,14,19,19,37,19,20,14,22,13,16,14,24,13,15,12,19,12,16,16,30,16,17,13,21,13,17,16,31,18,21,17,30,20,30,30,58,30,30,21,31,18,21,18,32,17,19,15,24,15,20,19,36,19,19,13,20,12,15,14,25,14,16,13,22,14,20,20,38,20,21,15,22,13,17,15,27,15,17,14,24,16,22,21,40,21,23,17,28,17,23,21,40,23,27,23,40,27,41,42,104,53,54,37,55,31,38,32,56,29,31,23,38,23,31,29,56,29,29,21,32,19,24,21,37,21,24,20,34,22,32,31,61,31,31,21,31,18,22,19,33,17,18,14,22,14,19,18,34,18,18,13,21,13,18,17,32,18,21,17,30,20,28,28,54,28,28,19,29,17,20,17,30,16,18,14,24,15,21,20,37,19,20,15,24,15,19,17,31,18,21,17,29,19,27,27,53,27,27,19,29,17,22,19,35,19,22,17,28,18,26,26,51,27,29,21,34,21,27,25,48,27,31,26,45,30,45,45,88,45,45,30,45,26,31,26,46,24,26,20,32,20,26,24,45,23,24,17,27,16,20,17,31,17,20,16,26,17,23,23,44,23,23,16,24,14,17,14,25,14,16,12,20,13,17,17,32,17,18,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,35,20,23,20,35,19,21,17,28,18,24,23,45,23,24,17,26,16,20,18,34,19,23,19,33,22,32,32,64,33,33,23,34,20,24,21,37,20,23,18,31,20,28,27,51,27,30,22,36,22,29,27,52,29,34,28,49,33,49,49,98,49,49,33,49,28,33,28,50,27,29,21,34,21,28,26,49,25,26,18,28,16,20,18,33,18,20,16,27,18,26,25,49,25,26,18,26,15,18,15,27,15,16,13,22,14,20,19,36,19,19,13,20,12,15,13,24,13,15,12,21,14,21,21,42,22,22,15,23,14,17,15,27,15,16,12,20,13,18,17,31,16,17,12,19,12,17,16,29,16,18,15,26,18,26,25,49,25,25,17,25,14,17,15,27,15,17,14,23,15,21,20,39,21,22,17,27,17,23,22,41,23,28,23,41,28,41,40,79,40,41,28,41,24,29,24,43,23,25,18,29,18,24,22,41,21,21,14,21,13,16,14,24,13,14,11,19,13,18,18,34,17,17,12,18,11,13,11,20,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,19,11,12,10,18,12,16,16,30,16,16,11,15,9,11,9,15,8,9,7,12,7,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,10,9,16,9,9,7,10,6,8,7,13,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,26 +-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,8,7,12,8,12,12,24,12,13,9,13,8,9,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,16,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,9,8,14,8,8,6,10,7,9,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,10,11,8,11,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,15,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,11,7,10,9,16,9,11,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,15,11,18,11,14,13,25,14,16,14,23,16,23,23,45,23,23,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,17,12,17,17,34,18,18,12,18,10,12,10,18,10,11,9,15,10,13,12,23,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,26,14,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,25,17,25,14,17,15,25,14,15,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,8,14,8,8,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,8,13,9,14,13,25,13,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,21,14,21,20,40,21,21,14,21,12,15,12,22,12,13,10,15,10,13,12,21,11,11,8,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,7,6,11,6,6,5,8,6,7,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,13 +-35,-17,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,5,7,5,6,6,10,6,7,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,8,14,8,8,7,11,7,10,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,20,10,10,7,11,7,8,7,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,16,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,18,10,10,8,12,8,10,9,18,10,10,8,11,7,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,14,11,18,11,14,13,25,14,17,14,24,16,23,23,45,23,24,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,18,10,12,10,19,11,12,9,15,10,13,12,22,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,27,15,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,24,17,25,14,17,15,25,13,14,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,13,7,8,7,11,7,9,9,16,9,9,7,10,7,9,9,16,9,10,8,13,9,14,13,24,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,19,10,11,9,13,9,12,11,20,12,14,12,21,14,20,20,41,21,21,14,20,12,14,12,22,12,12,9,16,10,13,12,21,11,11,7,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,9,5,6,4,5,3,4,4,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,7,13 +-23,-11,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,5,10,6,6,5,8,5,7,6,11,6,7,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,20,10,11,7,11,6,8,7,12,6,7,6,9,6,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,35,18,18,13,19,11,13,11,20,10,11,8,14,8,11,10,20,11,11,8,12,7,9,8,13,8,8,7,12,8,12,11,21,11,11,8,11,7,8,7,12,7,7,6,8,6,7,6,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,6,8,6,7,6,11,6,7,6,10,7,9,9,18,9,9,7,10,6,7,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,6,12,7,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,5,8,5,6,6,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,12,24,12,12,8,12,7,9,8,13,8,8,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,8,8,13,8,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,17,9,9,7,11,6,7,7,12,6,7,6,10,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,11,6,7,6,9,7,10,9,16,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,14,14,10,14,8,9,8,15,8,8,7,11,7,9,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,12,6,6,5,7,4,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,3,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,5,9 +-35,-17,-17,-11,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-9,-6,-9,-9,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,7,5,7,6,10,6,8,7,11,8,11,12,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,7,5,6,6,8,5,5,5,8,6,8,8,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,6,11,7,8,7,11,7,10,10,20,11,11,7,10,6,8,7,14,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,10,17,12,17,17,33,17,17,12,17,10,12,10,17,9,10,8,13,8,11,11,20,11,11,7,10,6,8,7,13,7,8,7,11,7,9,9,20,11,11,7,10,6,7,7,11,7,8,6,10,7,9,9,16,9,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,15,10,15,9,11,10,17,9,10,8,12,8,10,9,18,10,10,7,11,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,9,7,12,8,11,11,21,11,12,9,14,9,12,11,21,12,14,12,20,14,21,21,53,27,27,19,28,16,20,17,29,16,17,13,20,13,17,15,30,16,16,12,18,11,14,12,19,11,13,11,18,12,17,17,30,15,15,11,16,10,12,10,18,10,10,8,12,8,10,9,17,9,10,8,12,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,12,8,10,9,16,9,11,9,14,9,13,13,25,13,14,10,14,8,10,9,18,10,12,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,14,24,16,23,22,45,23,24,16,24,14,16,13,23,12,13,10,17,11,14,13,25,13,14,10,14,9,11,9,18,10,11,9,14,9,12,12,24,13,13,9,12,7,8,7,13,8,9,7,11,7,10,9,16,9,9,7,10,7,9,9,17,10,11,9,16,11,17,17,36,19,19,13,18,11,13,11,19,10,11,9,14,9,13,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,16,16,32,17,17,12,17,10,13,11,19,11,12,10,16,11,15,14,27,15,16,12,18,11,15,14,27,15,17,14,25,17,25,25,48,24,24,16,24,14,17,15,24,13,14,11,17,11,15,14,25,13,14,10,16,9,11,10,17,10,11,9,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,9,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,21,11,11,8,12,7,9,8,13,8,9,7,12,8,10,10,16,9,9,7,10,7,9,9,16,9,11,9,14,10,14,14,23,12,12,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,20,41,21,20,14,20,12,14,12,21,12,13,10,16,10,13,12,20,11,11,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,8,5,5,5,9,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,6,4,4,4,6,4,4,4,6,4,5,4,6,4,6,6,12 +-19,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,6,6,6,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,31,16,16,11,16,10,12,10,16,9,10,7,11,7,10,9,17,9,9,7,11,7,8,7,11,7,8,7,11,7,10,10,17,9,9,7,9,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,5,9,5,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,9,8,15,8,9,6,10,6,8,8,14,8,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,11,6,7,5,8,6,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,9,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,12,7,8,7,11,6,7,6,9,6,7,7,13,7,7,5,6,4,4,4,8,5,6,5,7,5,6,6,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,10,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,5,6,5,8,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,14,10,15,15,38,19,19,13,19,11,14,12,19,10,11,8,12,8,11,10,20,11,11,8,13,8,9,8,14,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,6,11,6,6,5,9,6,8,7,14,8,8,6,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,10,7,10,9,17,9,10,7,12,8,10,10,17,10,12,10,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,7,12,7,9,9,17,9,10,7,9,6,7,6,13,7,8,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,25,13,13,9,13,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,10,6,8,7,13,7,8,7,11,8,12,12,21,11,12,8,12,7,9,8,13,7,8,7,11,7,10,9,18,10,10,8,12,8,10,10,18,10,12,10,17,12,17,17,32,16,16,11,16,10,12,10,17,9,10,8,11,7,10,9,16,9,10,7,11,7,8,7,11,7,8,6,10,7,10,9,17,9,9,6,9,5,6,6,11,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,6,4,6,6,10,6,7,6,10,7,10,9,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,13,7,8,6,9,6,8,7,13,8,10,8,13,9,13,13,27,14,14,10,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8 +-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,12,7,7,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,6,6,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,7,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,12,9,13,13,32,16,16,11,16,9,11,10,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,7,12,7,8,7,11,8,10,10,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,6,5,9,5,5,4,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,10,6,6,6,9,6,8,8,15,8,9,6,10,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,6,9,8,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,7,6,9,6,6,5,8,6,8,8,14,8,8,6,8,5,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-32,-15,-15,-10,-16,-8,-9,-7,-14,-7,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,21,11,11,8,11,6,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,7,12,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,10,6,8,8,14,8,10,9,16,11,16,16,33,17,16,11,16,10,12,10,17,9,10,7,11,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,9,9,21,11,11,8,12,7,8,7,12,7,8,7,11,7,10,10,17,9,9,7,11,7,10,9,16,9,11,9,16,11,15,15,26,14,14,10,15,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,11,7,8,6,10,6,7,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,7,6,9,7,10,10,22,12,13,10,15,9,12,11,20,12,14,12,22,15,21,21,58,29,29,20,30,17,20,17,29,15,16,12,18,11,15,14,29,15,16,12,18,11,14,12,22,12,14,12,20,13,18,18,32,17,17,11,16,9,11,10,18,10,10,7,11,7,10,9,16,8,8,6,9,6,8,8,14,8,10,9,15,10,15,15,27,14,13,9,13,8,9,8,14,8,9,7,12,8,10,10,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,16,9,10,9,15,10,14,14,26,14,14,11,17,11,14,14,26,15,17,14,25,17,24,23,46,23,23,16,23,13,16,14,24,13,14,10,16,10,13,13,25,13,13,9,14,9,11,10,18,10,11,9,14,10,14,14,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,11,7,10,9,17,10,12,10,18,12,18,18,38,19,19,13,20,12,14,11,19,11,12,9,14,9,13,13,22,12,13,10,15,9,12,11,20,11,13,11,18,12,17,17,32,17,17,12,18,11,13,12,21,12,13,10,15,10,14,14,28,15,16,12,19,12,16,14,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,13,10,15,10,14,13,24,13,13,9,13,8,10,9,16,9,10,9,15,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,11,7,10,10,17,9,9,6,9,6,7,7,13,8,9,7,12,8,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,7,10,10,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,7,9,8,14,8,9,8,13,9,12,12,19,10,10,8,12,8,10,10,18,11,13,11,19,13,19,19,41,21,21,14,20,11,13,11,18,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,10,6,8,7,12,7,8,6,10,6,8,8,15,8,8,6,8,5,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,5,7,7,12 +-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,5,7,6,11,7,8,7,12,8,11,11,31,16,15,11,16,9,11,9,16,8,9,7,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,12,24,12,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,20,11,11,8,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,7,12,7,7,6,9,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,14,9,13,13,25,13,13,9,13,8,9,8,13,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,7 +-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,11,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,5,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,33,17,16,11,17,10,11,10,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,13,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,9,13,13,25,13,14,10,14,8,9,8,15,8,8,6,9,6,8,8,14,8,8,6,8,5,7,6,11,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,6,12,7,8,7,11,8,11,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,15,9,10,9,15,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,7,5,6,6,9,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,6,10,6,8,6,10,7,10,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,6,4,5,3,4,4,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,7 +-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,25,13,12,9,13,8,9,7,13,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,6,4,5,5,9,6,6,5,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,7,7,12,7,7,6,8,5,7,7,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,13,7,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,6,4,5,4,6,4,5,5,6,4,5,4,6,4,5,5,7,4,5,4,6,4,6,6,14,7,7,5,6,4,5,4,8,5,6,5,7,5,6,6,12,7,7,5,6,4,4,4,7,4,5,5,8,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,8,12,7,8,6,12,7,7,5,8,5,7,7,11,6,7,5,7,4,5,4,9,5,6,5,8,5,6,6,15,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,12,7,8,7,11,8,11,11,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,41,21,20,14,20,12,14,11,20,11,11,8,12,8,10,9,18,10,10,7,11,7,8,7,15,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,11,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,19,10,9,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,30,15,15,11,16,9,11,9,18,10,11,8,12,8,10,9,16,9,9,7,10,6,7,6,13,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,14,8,8,7,11,7,10,10,17,9,10,7,10,6,8,8,15,9,10,8,14,9,13,13,23,12,13,9,14,8,10,9,17,9,10,8,14,9,12,11,20,11,12,9,13,8,11,10,18,10,12,10,17,11,16,16,32,17,17,11,16,9,11,10,16,9,9,7,10,6,8,8,17,9,9,6,9,6,8,7,10,6,7,6,10,7,10,10,16,9,9,6,8,5,5,5,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,9,13,7,7,5,8,5,7,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,7,7,11,7,8,7,12,9,13,13,29,15,15,10,14,8,9,7,12,7,8,6,10,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,5,7,7,10,6,6,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,5,5,10 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,4,4,3,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,5,4,5,5,7,4,5,4,5,3,4,3,6,4,4,4,5,4,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,25,13,13,9,13,8,9,7,13,7,7,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,7,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,5,10,6,6,4,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,6,9,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,6,5,9,5,6,5,10,7,10,10,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,4,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,6,8,6,11,8,11,11,34,18,18,12,18,10,12,10,17,9,10,7,11,7,8,8,15,8,8,6,9,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,6,9,6,8,7,13,7,8,7,12,8,12,12,26,14,14,10,14,8,9,8,15,8,8,6,10,7,9,8,15,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,8,5,7,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,15,9,10,8,15,10,14,14,26,14,14,9,13,8,10,8,13,7,8,6,9,6,7,7,13,7,8,6,7,5,6,5,8,5,6,5,9,6,8,8,12,6,6,5,6,4,5,4,8,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,6,5,6,4,6,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,7,4,4,3,5,4,6,6,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,8,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,32,17,17,11,17,10,11,10,16,9,9,7,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,6,7,7,12,7,8,7,11,8,11,11,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,8,5,7,6,12,7,7,6,10,7,10,10,19,10,10,8,12,7,9,8,14,8,8,7,11,7,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,10,14,14,24,13,13,9,12,7,9,7,12,7,7,5,8,6,7,7,12,6,7,5,7,5,6,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +-33,-16,-15,-10,-15,-8,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-8,-8,-5,-9,-4,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,2,3,3,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,11,8,12,12,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,13,7,7,5,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,6,10,6,8,7,13,8,9,7,11,7,10,10,19,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,6,9,6,8,8,14,8,9,7,12,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,9,9,16,9,9,7,11,7,10,10,19,11,12,10,16,11,16,16,36,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,9,7,12,8,10,9,25,13,12,8,12,7,8,7,12,7,7,6,10,7,10,10,18,10,10,7,11,7,9,9,17,10,11,9,16,11,17,17,22,11,11,8,11,7,8,7,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,6,8,8,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,18,10,11,9,14,9,11,10,19,11,13,11,18,12,18,19,62,31,31,21,32,18,20,17,29,15,16,12,19,12,16,14,26,14,14,10,15,9,12,11,20,12,14,11,19,13,18,18,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,19,10,11,8,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,17,9,9,6,9,6,7,7,13,8,9,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,8,7,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,21,47,24,24,17,25,14,17,15,27,14,15,11,17,11,14,14,26,14,14,10,16,10,12,10,18,10,12,10,17,11,15,15,26,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,16,9,9,7,11,7,10,10,19,11,12,10,17,12,17,17,40,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,24,13,14,10,15,9,11,10,18,11,13,11,20,13,19,19,36,19,19,14,22,13,16,14,25,14,15,12,19,12,17,17,33,18,19,14,21,12,15,14,25,14,17,14,24,16,24,25,45,23,23,15,22,13,16,14,24,13,14,11,17,11,14,12,22,12,12,9,13,8,9,8,15,9,10,9,15,10,15,15,20,11,11,8,11,7,9,8,14,8,9,7,11,8,11,11,22,12,13,9,14,9,11,9,16,9,11,9,14,9,12,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,18,10,12,10,16,11,15,15,21,11,12,9,13,8,9,8,15,8,9,7,11,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,20,13,19,18,43,22,22,15,21,12,14,12,22,12,12,9,15,10,13,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,11,11,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,14,8,8,6,10,6,8,7,13,8,9,7,11,7,10,9,19,10,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,6,10,7,10,10,17,9,9,6,9,5,6,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,13 +-16,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,9,6,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,32,16,16,11,17,10,11,9,15,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,8,12,7,9,8,13,8,8,6,10,7,9,9,17,10,10,8,11,7,8,8,13,8,9,8,13,9,13,13,23,12,12,8,12,7,9,8,12,7,8,6,9,6,7,7,12,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,5,9,5,6,4,7,4,5,5,9,5,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,4,4,5,3,4,3,6,4,4,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,33,17,17,12,17,10,12,10,16,8,8,6,10,6,8,8,14,8,8,6,9,5,6,6,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,5,4,5,4,7,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,25,13,13,9,14,8,9,8,15,8,8,6,10,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,20,10,10,8,12,7,9,8,14,8,8,7,10,7,10,9,18,10,11,8,12,7,9,8,14,8,10,8,13,9,14,14,23,12,12,8,12,7,9,8,12,7,8,6,8,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,9,6,8,8,12,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,5,4,6,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,7,10,10,23,12,12,8,11,7,8,7,12,7,7,6,8,5,7,6,12,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,5,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,3,3,4,2,3,2,4,3,3,3,5,3,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,5,4,7,5,6,5,8,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,5,4,7,5,6,6,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-16,-8,-8,-5,-8,-4,-5,-3,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,5,7,7,9,5,5,4,6,4,5,4,6,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,7,5,8,5,7,7,9,5,6,4,6,4,5,5,9,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,11,6,7,5,8,5,7,6,12,7,8,6,10,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,6,10,7,11,11,36,18,18,12,18,10,12,10,17,9,10,7,10,7,9,9,15,8,9,6,9,6,8,7,13,8,9,7,12,8,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,7,8,7,12,8,12,12,26,14,14,10,15,9,10,8,16,9,10,7,11,7,9,9,14,8,8,6,8,5,6,5,10,6,6,5,9,6,9,9,15,8,8,6,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,6,12,7,8,6,10,7,9,9,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,12,7,8,7,11,8,11,10,21,11,12,9,14,8,10,9,16,9,10,8,12,8,11,10,20,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,24,13,13,9,14,8,10,9,13,7,7,5,8,6,8,7,13,7,7,5,7,4,5,4,8,5,7,6,10,7,9,9,14,8,8,6,8,5,5,5,9,5,6,5,8,6,8,7,11,6,6,5,8,5,6,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,11,11,25,13,13,9,12,7,9,8,13,7,8,6,10,6,8,7,13,7,8,6,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,3,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,9,5,6,5,7,4,5,5,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,4,4,4,5,4,5,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,7,7,22,11,11,8,11,6,7,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,6,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,12,7,7,6,8,5,6,6,9,5,6,5,7,5,7,6,12,7,7,5,8,5,6,5,10,6,6,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,7,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,6,4,4,3,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,4,3,5,4,6,5,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,28,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,5,8,5,6,5,9,5,6,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,5,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,3,5,3,4,3,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,7,11,6,6,4,7,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,9,5,6,4,7,4,5,5,10,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,8,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,5,3,4,4,8,5,6,6,10,6,6,4,7,4,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,4,6,4,4,4,7,4,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,4,4,5,4,5,6,12,7,7,5,7,4,5,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,25,13,12,8,12,7,8,6,11,6,7,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,4,5,4,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,5,5,7,5,7,7,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,4,7,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,4,4,4,6,4,5,5,8,6,8,8,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,7,5,8,5,6,5,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,22,11,11,7,10,6,7,6,11,6,7,6,9,6,8,8,12,7,7,5,7,5,6,6,11,7,8,6,10,7,9,8,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,16,9,9,7,10,7,9,8,14,8,9,7,12,8,12,12,15,8,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,4,5,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,12,45,23,23,16,23,13,14,11,19,10,11,8,13,8,11,11,20,11,11,8,12,7,9,9,16,9,9,7,12,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,7,6,13,7,8,6,8,5,7,6,10,6,7,6,11,7,10,10,23,12,12,8,11,7,8,7,12,7,8,6,10,6,8,8,15,8,8,5,7,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,7,6,10,6,6,5,8,5,7,7,10,6,7,6,9,6,8,8,14,8,9,8,13,9,13,13,30,16,16,11,15,9,11,10,18,10,11,8,13,8,11,11,18,10,10,7,9,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,12,7,9,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,11,11,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,25,13,14,10,16,9,11,10,18,10,12,9,15,9,12,12,26,14,14,10,15,9,12,11,20,11,13,11,19,13,18,18,30,16,16,11,17,10,12,10,16,9,9,7,11,7,10,9,14,8,8,6,9,5,6,5,8,5,6,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,9,6,7,6,10,6,6,5,7,5,8,8,12,7,7,5,7,5,6,6,10,6,6,5,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,15,8,9,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,15,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,6,9,6,7,6,11,6,6,5,8,6,8,8,12,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,10,6,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,2,8,5,5,3,4,3,4,3,5,4,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,5,5,10 +-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,25,13,13,9,13,7,8,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,5,8,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,14,8,8,6,9,6,7,6,10,6,7,6,9,6,7,7,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,2,3,3,4,3,7,4,5,4,4,3,4,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,8,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,10,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,28,15,15,10,14,8,8,7,13,7,7,6,9,6,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,5,3,4,4,7,5,6,6,14,8,8,5,7,5,6,5,7,5,6,5,7,5,6,5,9,5,6,4,5,3,4,4,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,6,5,9,6,8,8,19,10,10,7,10,6,8,7,12,7,7,5,9,6,8,7,11,6,7,5,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,8,6,8,7,15,8,9,7,10,6,8,7,11,7,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,4,3,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,6,5,10,6,6,5,6,4,6,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7 +-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,22,12,12,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,5,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,6,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,10,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,4,9,5,5,4,6,4,5,4,4,3,3,3,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,5,5,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,9,7,10,10,12,6,6,4,6,4,4,3,6,4,5,4,6,4,5,5,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,7,5,6,5,8,6,9,10,37,19,18,12,18,10,11,9,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,7,5,7,4,4,4,6,4,4,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,11,8,11,11,26,14,14,9,13,8,9,8,15,8,9,7,11,7,10,9,15,8,8,6,10,6,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,9,9,22,11,11,8,11,7,8,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,9,9,19,10,11,8,12,7,9,9,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,17,10,12,10,16,11,16,16,27,14,13,9,13,8,9,8,14,7,7,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,5,5,9,6,8,8,15,8,8,5,7,4,5,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,5,5,4,6,4,6,6,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,14,7,7,5,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,2,2,2,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9 +-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,6,6,24,12,12,8,12,7,8,6,12,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,5,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,4,4,8,5,5,5,7,5,7,7,17,9,9,6,9,5,6,5,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,6,4,4,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,4,5,6,4,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,6,6,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,7,5,7,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,11,6,6,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,12,7,7,6,9,6,9,9,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,9,35,18,17,12,17,10,11,9,17,9,9,7,10,6,8,8,16,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,6,4,7,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,8,6,9,9,22,12,12,8,11,7,8,7,12,7,7,5,9,6,8,7,11,6,7,5,7,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,7,9,8,14,8,9,7,11,8,11,10,20,11,12,9,13,8,10,10,18,10,12,9,16,11,16,16,26,13,13,9,13,7,8,7,13,7,8,6,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,7,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,5,7,4,5,4,8,5,7,7,14,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,6,7,9,5,4,3,5,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,8,6,8,8,34,18,17,12,17,10,11,9,16,9,9,7,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,9,6,9,9,22,11,11,8,11,7,8,7,12,7,7,5,8,6,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,8,13,8,9,7,11,7,10,10,19,10,11,8,13,8,10,10,18,10,11,9,16,11,16,16,26,13,13,9,13,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,7,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,9,5,5,3,5,3,4,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-20,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,9,7,10,10,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,24,13,13,9,13,8,9,7,12,7,7,6,9,6,7,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,7,6,11,6,6,5,7,5,7,7,13,7,8,6,10,6,7,7,12,7,8,7,11,8,12,12,27,14,15,11,17,10,13,11,19,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,10,8,14,9,13,13,25,13,14,10,15,9,10,9,15,8,9,7,10,7,10,9,17,9,10,8,14,9,11,11,20,11,12,10,17,12,17,17,20,11,11,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,9,6,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,18,10,11,8,12,7,9,8,15,9,11,9,15,11,16,16,67,34,33,22,33,19,22,19,33,17,18,13,20,12,16,15,29,15,15,11,17,10,12,11,20,11,12,9,15,10,14,14,26,13,13,9,14,8,9,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,8,8,15,8,9,7,11,8,11,11,33,17,18,12,18,11,13,11,18,10,10,8,12,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,11,6,6,5,8,6,9,9,16,9,10,8,13,8,11,11,20,11,13,11,18,12,18,18,46,24,24,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,14,10,16,10,13,11,20,11,13,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,10,8,13,9,14,14,26,14,14,11,17,10,12,11,20,11,12,10,17,12,17,17,42,21,21,14,20,12,14,12,21,11,12,10,16,10,14,14,27,14,15,11,16,10,12,11,21,12,14,12,20,13,19,18,34,18,18,13,19,11,14,12,21,12,13,10,17,11,16,16,32,17,19,14,23,14,18,17,32,18,21,17,30,20,30,30,50,26,26,17,25,14,16,14,24,13,14,10,16,10,14,13,25,13,13,9,14,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,11,9,15,10,14,13,27,14,14,10,16,10,12,10,18,10,10,7,11,7,10,10,18,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,22,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,20,11,11,9,14,9,12,11,20,12,14,12,21,14,20,20,35,18,18,13,20,12,14,12,20,11,11,8,11,7,10,9,16,9,9,6,9,6,7,7,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,16,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,9,9,16 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,34,18,17,12,17,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,17,9,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,9,5,6,6,11,6,7,6,9,6,9,9,22,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,11,9,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,6,8,5,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,6,4,6,5,7,4,4,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,16,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,14,8,8,6,8,5,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,6,4,6,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,7,5,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,12,10,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,7,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,24,12,12,8,12,7,8,7,12,6,7,5,8,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,5,4,5,4,12,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,6,9,5,6,5,7,4,6,5,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,6,5,8,5,5,4,7,5,6,6,12,6,7,6,8,6,7,6,12,7,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,6 +-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,5,4,6,4,6,6,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,5,8,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,8,5,7,6,10,6,7,6,9,6,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,6,7,6,10,7,10,9,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,8,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,35,18,18,12,18,11,13,11,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,9,8,14,8,9,7,10,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,16,8,8,6,8,5,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,23,12,12,8,12,7,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,6,7,7,10,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,18,10,12,10,16,11,16,16,27,14,14,10,14,8,9,8,13,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,9,7,10,6,7,6,10,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,7,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,8,5,7,7,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,4,3,4,3,5,4,5,5,8 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,20,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5 +-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,5,3,3,2,4,3,4,3,6,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,7,4,5,4,7,4,5,5,9,5,6,4,5,3,4,4,5,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,25,13,13,9,13,8,9,8,12,7,7,6,9,6,8,7,13,7,8,5,7,5,6,5,8,5,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,13,7,7,5,8,5,5,4,6,3,3,2,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,6,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,16,9,9,7,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,10,7,10,6,7,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,6,4,6,5,11,6,6,4,7,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,5,3,4,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,22,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,12,6,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,5,7,4,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,7,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,3,3,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,3,3,5,3,4,4,13,7,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,3,3,4,3,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,7,6,10,7,9,9,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,9,39,20,20,13,19,11,13,11,18,10,10,7,11,7,9,9,21,11,12,9,13,8,9,8,13,7,8,7,11,7,10,10,18,9,9,7,10,6,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,20,11,11,8,11,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,6,5,8,5,7,7,14,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,25,13,14,10,15,9,10,9,16,9,9,7,10,6,8,8,13,7,8,6,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,8,14,8,8,7,11,8,11,11,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,9,18,10,10,7,10,6,8,7,12,7,7,6,10,7,10,9,20,11,11,8,13,8,10,8,14,8,8,6,10,7,10,10,18,10,11,8,12,8,11,10,18,11,13,11,18,12,18,17,27,14,14,10,15,9,11,9,16,8,8,6,9,6,8,7,12,7,7,5,8,5,7,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,10,6,7,6,9,6,7,7,13,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,19,10,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,5,5,8,6,8,8,9,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,4,5,9 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,21,11,11,7,11,6,7,6,10,6,6,4,6,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,9,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,4,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,2,8,4,4,3,5,3,4,3,4,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,3,3,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,23,12,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,12,6,6,4,6,4,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,10,7,10,10,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,7 +-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,18,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,9,5,5,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,29,15,14,10,14,8,10,9,15,8,8,6,10,6,8,8,17,9,9,7,10,6,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,5,7,7,13,7,7,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,5,3,4,4,6,4,5,5,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,20,10,10,7,11,7,8,7,13,7,7,5,8,5,7,6,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,11,6,7,6,10,7,9,8,14,8,9,8,13,9,13,13,21,11,12,8,12,7,9,7,13,7,8,6,8,5,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,5,8,5,7,7,11,6,6,5,8,5,5,5,8,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,11,6,7,5,8,5,6,6,10,6,7,5,8,6,8,9,15,8,9,6,9,6,7,6,9,5,6,5,8,5,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,6,4,4,4,5,4,6,6,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,4,5,5,8,5,5,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,3,2,2,2,3,2,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,6,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,4,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,4,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,5,3,4,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,27,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,4,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,11,6,7,5,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,10,6,6,5,8,6,8,7,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,5,9 +-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,8,5,7,7,26,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,6,6,18,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,3,5,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,9,5,5,4,7,5,6,5,9,6,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8 +-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,5,4,6,6,7,4,4,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,3,4,4,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,5,4,5,6,16,9,9,6,8,5,6,5,9,6,7,6,9,6,9,8,15,8,8,6,8,5,7,7,12,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,8,15,9,10,8,13,9,14,14,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,10,9,17,10,11,9,15,10,14,14,51,26,26,17,25,15,18,15,27,15,16,12,19,12,15,14,25,13,13,9,14,8,10,9,16,9,11,9,14,10,14,13,21,11,10,7,10,6,7,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,8,8,14,8,9,7,11,8,12,12,20,11,11,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,5,7,7,15,8,9,6,9,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,6,10,7,10,10,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,11,7,10,9,17,9,10,8,13,9,12,12,24,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,12,9,13,13,29,15,15,11,16,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,11,7,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,36,18,18,12,18,10,12,11,19,10,10,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,11,7,10,10,18,10,10,7,9,6,7,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,10,6,7,5,8,5,7,6,11,7,8,6,10,7,9,9,16,9,9,6,9,6,8,8,14,8,10,8,14,10,15,15,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,6,5,7,4,5,5,8,4,4,3,5,4,6,6,10,6,7,6,10,7,9,9,6,3,3,3,4,3,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,8,15 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,6,5,7,5,7,7,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,8,7,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,11,6,6,4,6,4,4,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,2,4,3,3,3,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,6,4,5,4,7,4,5,4,4,3,4,4,8,5,5,4,5,3,4,5,8,5,6,5,8,5,7,7,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,8,8,12,6,6,4,7,4,4,3,6,4,4,3,5,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,5,7,7,11,6,6,4,7,4,4,3,5,3,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,3,3,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,8,6,11,7,10,10,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,4,4,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,5,5,4,6,4,4,3,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,4,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,7,8,6,10,7,9,9,29,15,16,11,16,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,8,7,10,6,7,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,12,7,7,5,8,5,5,4,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,5,7,4,5,4,7,5,7,7,24,12,12,8,12,7,8,7,14,8,8,6,8,5,6,6,12,7,7,5,8,5,7,7,10,6,7,6,10,7,10,9,16,9,9,6,9,6,7,6,11,6,7,5,7,5,6,5,10,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,4,5,5,7,4,4,3,5,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,5,8,5,6,6,13,8,9,7,12,8,11,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,10 +-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,4,4,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,7,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,3,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,13,7,8,6,7,5,6,5,9,5,6,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,7,4,4,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,6,6,20,11,11,7,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,8,5,6,5,7,4,4,4,6,4,6,5,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,9,6,9,9,19,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,8,4,4,4,6,4,4,4,8,5,5,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,6,4,5,5,9,5,6,4,6,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,2,2,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,2,2,3,6,4,4,4,5,3,4,4,8 +-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,6,7,7,12,6,7,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,7,4,4,4,5,4,5,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,9,6,9,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,3,5,3,4,3,5,3,4,4,8 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,3,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,2,2,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,9,5,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,6,4,4,4,6,4,5,4,6,4,5,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,5,7,5,6,6,10,6,8,7,11,8,11,11,17,9,9,6,9,5,6,5,7,4,5,4,5,4,5,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,13,9,13,13,39,20,20,14,21,12,14,12,21,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,15,8,8,6,10,7,9,9,21,11,10,7,10,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,10,7,9,9,35,18,18,13,20,11,13,11,20,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,9,13,13,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,19,10,10,8,12,7,9,7,12,7,7,5,8,5,7,7,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,15,8,9,7,11,7,10,10,18,10,11,9,16,11,16,15,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,14,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,8,5,5,4,5,4,5,5,10,6,6,5,9,6,8,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,8,5,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,16,9,9,6,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,14 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,20,10,10,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,7,4,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,11,6,6,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,4,3,4,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,26,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,14,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,24,12,12,9,13,8,9,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,10,6,6,5,8,5,6,6,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,5,3,3,3,4,2,2,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,5,4,5,5,9 +-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,20,10,10,7,11,6,7,6,12,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,12,7,7,5,7,4,4,4,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,6,5,10,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,38,19,19,13,20,11,13,11,19,10,11,9,14,9,12,11,20,11,11,8,12,7,8,7,13,7,8,7,11,7,9,9,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,20,11,12,9,13,8,11,10,18,10,10,8,12,7,9,8,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,9,14,8,10,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,10,6,8,7,14,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,20,10,10,7,10,6,8,7,9,5,6,5,8,5,7,7,10,5,5,4,6,4,5,4,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,4,5,6,11 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,2,8,5,5,4,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,23,12,12,8,12,7,8,7,14,8,8,6,9,6,8,7,13,7,7,6,8,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,6,4,7,5,6,6,10,6,7,6,9,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,7,4,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,6,5,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-5,-12,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,7,11,6,6,5,6,4,5,5,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,19,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,7,5,6,5,8,6,8,8,34,17,17,12,18,10,12,11,20,11,12,9,13,8,11,10,19,10,10,8,11,7,8,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,12,7,8,6,9,6,8,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,14,8,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,19,10,10,7,10,6,8,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,4,6,6,10 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,5,5,7,5,7,7,12,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,6,8,8,34,17,17,12,18,10,12,11,19,10,11,9,13,8,11,10,19,10,10,8,11,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,13,7,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,10 +-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,19,10,10,8,12,7,8,7,12,7,7,6,10,6,8,7,13,7,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,10,6,7,6,10,6,6,5,8,6,9,9,17,9,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,24,12,12,9,13,8,9,8,13,7,7,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,9,8,14,10,14,14,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,11,21,11,12,9,14,8,10,9,16,9,11,9,16,11,16,16,31,16,16,11,16,9,10,9,15,8,8,6,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,6,8,8,15,8,9,7,11,7,10,10,19,11,13,11,18,13,19,19,72,36,36,25,37,21,24,20,34,18,19,15,24,15,20,19,35,18,19,13,20,12,15,13,24,13,15,12,20,13,18,18,34,18,18,13,20,12,15,13,22,12,12,9,15,10,14,13,25,14,15,11,17,10,13,12,22,12,13,11,18,12,17,17,34,18,18,12,18,10,12,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,16,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,68,34,34,23,35,20,24,20,34,18,19,15,24,15,21,20,39,20,21,15,22,13,17,15,28,16,18,14,23,15,21,20,39,20,20,13,19,11,13,11,18,10,12,9,15,9,12,12,22,12,12,9,15,9,11,10,19,11,12,10,16,11,15,15,30,16,16,11,15,9,10,8,14,8,8,7,11,7,10,10,18,10,10,8,13,8,11,11,21,12,13,11,19,13,20,20,38,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,13,24,14,17,14,24,17,26,26,56,29,29,20,29,17,20,17,31,17,18,13,21,13,17,16,29,15,15,11,17,10,12,11,19,10,11,9,14,9,12,12,23,12,12,8,12,7,9,9,16,9,9,7,11,7,10,9,16,9,10,7,11,7,10,9,16,9,11,9,15,11,16,16,30,16,16,11,17,11,14,12,22,12,13,10,16,11,15,14,27,14,15,11,16,10,13,12,22,13,15,12,20,13,18,18,35,18,18,13,19,11,14,12,22,12,13,11,18,12,17,17,32,17,17,12,18,11,14,13,23,13,16,14,24,16,23,23,38,19,19,13,20,12,15,13,23,12,13,10,15,10,14,13,24,13,14,10,15,9,10,9,16,9,11,9,16,11,15,14,27,14,14,10,16,10,13,11,20,11,12,9,15,10,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,28,15,15,10,15,9,10,8,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,11,7,8,6,10,7,9,9,18,9,9,6,8,5,6,5,7,4,4,3,4,3,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,7,10,10,18 +-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,19,11,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,20,10,11,8,12,7,9,8,15,9,10,8,12,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,7,12,7,9,8,13,9,14,14,28,15,15,10,15,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,7,4,5,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,9,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,3,3,3,4,4,6,4,4,4,6,4,6,5,9 +-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,4,3,13,7,8,6,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,5,7,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,18,10,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,19,10,11,8,12,8,10,9,15,9,10,8,12,8,12,11,20,10,10,7,10,6,6,5,10,6,6,5,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,14,14,10,16,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,6,8,7,11,6,6,5,8,6,8,7,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,10,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,11,11,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,5,3,4,4,6,4,6,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,5,4,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,24,13,13,9,12,7,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,6,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,24,12,12,8,12,7,8,7,12,7,7,6,8,6,7,7,13,7,8,6,8,6,7,6,10,6,7,6,8,6,8,8,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,6,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,12,6,7,5,7,4,6,5,8,5,6,5,8,6,9,9,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-9,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,14,7,7,5,8,5,6,5,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,8,8,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,8,8,17,9,8,6,8,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,35,18,18,12,18,11,13,11,17,9,10,8,12,8,11,10,20,10,10,7,11,7,8,7,14,8,8,7,11,7,9,9,19,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,6,10,6,8,7,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,9,5,6,5,9,6,9,9,35,18,18,12,18,10,12,10,18,10,11,8,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,19,10,10,7,10,6,6,5,11,6,7,6,9,6,7,6,12,7,7,5,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,6,10,7,10,11,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,13,8,10,8,14,10,15,15,29,15,16,11,16,9,11,9,15,8,8,6,10,7,9,9,15,8,8,6,8,5,6,6,9,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,5,9,6,7,6,9,6,8,8,17,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,9,5,6,5,8,5,7,7,16,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,5,4,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,10,6,6,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,4,2,2,2,4,3,3,3,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,6,4,4,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,4,3,4,4,7,4,4,3,5,4,5,5,12,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,24,12,12,8,13,7,8,7,12,7,8,6,9,6,8,7,15,8,7,5,8,5,6,5,10,6,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,23,12,12,8,13,8,9,7,13,7,8,6,8,6,8,7,13,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,6,5,10,6,8,7,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,7,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,8,4,4,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6 +-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,10,6,7,5,8,5,7,6,13,7,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,7,6,11,6,7,5,8,5,6,5,9,5,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-6,-9,-9,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,8,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,3,11,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,8,4,4,3,5,4,5,5,8,5,5,4,5,4,6,6,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,15,8,8,6,9,5,6,5,9,5,6,5,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,5,9,6,8,8,12,6,6,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,9,6,7,7,18,9,9,7,10,6,7,6,10,6,6,4,6,4,6,5,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,7,6,10,7,10,9,34,18,18,13,19,11,13,11,18,10,11,8,12,8,11,11,22,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,16,9,10,7,11,7,8,7,13,8,9,8,13,9,12,12,17,9,10,7,10,6,6,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,5,3,3,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,34,18,18,13,19,11,12,10,18,10,11,9,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,8,13,8,11,11,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,6,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,5,6,5,9,5,6,5,9,7,10,10,19,10,10,8,12,7,9,7,12,7,7,6,10,7,10,9,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,29,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,13,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,13,7,8,6,8,5,5,5,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,6,5,9,6,9,9,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,11,7,9,9,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,13,9,13,13,20,11,11,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,7,5,6,4,5,5,8,5,6,5,7,5,6,6,15,8,8,6,9,5,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,13,7,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3,3,4,3,4,5,9 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,7,4,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,4,3,3,3,6,4,4,4,6,4,5,5,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,5 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,3,8,5,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,6,4,4,4,6,4,5,5,19,10,11,8,10,6,8,7,11,6,6,5,7,5,6,6,12,7,8,6,8,5,6,5,9,5,6,5,8,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,11,6,6,4,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,4,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,8,12,7,7,6,11,6,7,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,7,4,5,5,9,5,6,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,12,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,4,5,3,4,4,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,23,12,12,8,12,7,9,8,13,7,7,5,8,6,8,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,5,10,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,23,12,13,9,14,8,9,7,12,7,7,5,8,6,8,7,13,7,8,6,9,5,6,6,12,7,7,6,10,7,9,9,14,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,10,6,7,5,8,5,7,7,11,6,7,5,8,5,7,7,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,14,8,8,5,7,5,6,6,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,8,5,7,6,10,7,11,11,14,8,8,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,8,4,4,3,4,3,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,6 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3 +0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,6,3,3,3,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,5,3,3,3,4,3,4,3,5,4,6,6,8,4,4,3,3,2,3,3,3,2,2,2,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,6,5,19,10,10,7,11,7,8,7,12,7,7,5,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,6,9,6,8,8,15,8,8,6,7,4,5,4,8,5,5,4,5,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,5,6,5,6,4,6,6,20,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,9,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,3,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,5,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3 +0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,7,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,13,7,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,5,4,4,3,5,4,5,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,16,9,9,6,9,6,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,2,2,2,1,1,1,1,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,3,3,4,3,4,5,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,10,6,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,22,12,12,9,13,8,9,8,13,7,7,5,8,5,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,7,7,10,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,7,6,11,6,7,6,10,7,9,9,35,18,19,13,19,11,14,12,20,11,12,9,15,10,13,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,14,27,14,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,10,8,13,9,14,14,24,13,13,9,12,7,8,7,11,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,4,4,3,3,2,3,3,5,4,5,4,7,5,7,7,14,8,8,6,10,6,7,7,12,7,9,7,12,8,11,11,36,19,19,13,19,11,14,12,21,11,12,8,12,8,11,10,18,10,10,7,11,7,9,8,13,7,8,7,12,8,12,12,19,10,9,6,8,5,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,18,9,9,7,10,6,8,8,14,8,8,7,11,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,18,12,17,17,34,17,17,11,16,9,11,10,17,9,9,7,11,6,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,19,10,11,8,12,7,9,7,12,7,8,6,9,6,9,9,16,9,9,7,10,6,8,8,15,9,11,9,15,11,16,16,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,6,13,7,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,22,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,4,5,4,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,4 +0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,14,8,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,10,6,5,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,5,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,4,6,6,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,8,5,7,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,19,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,7,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,9,6,7,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,4,5,13,7,7,5,7,4,4,4,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,4,2,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,5,5,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,6,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,3,3,5,4,4,4,5,4,5,5,13,7,7,5,8,5,6,5,8,4,5,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,6,3,3,2,2,2,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 +1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,1,2,1,1,1,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,4,6,4,5,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,14,7,7,5,6,4,5,5,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,20,11,11,8,11,7,9,8,13,7,8,6,8,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,9,5,5,4,7,4,5,5,9,5,6,5,8,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,3,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,10,6,6,5,7,4,5,4,8,5,5,5,8,5,7,7,20,10,10,7,11,7,8,7,11,6,6,5,8,5,6,5,11,6,6,5,8,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,5,5,11,6,6,4,6,4,5,5,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,11,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,6,9,5,6,5,8,6,9,9,12,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,5,3,4,3,4,3,4,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,8,4,4,3,3,2,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,5,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,12,6,6,4,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,4,4,8,4,4,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,4,5,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,5,7,4,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,2,3,3,5,3,3,2,3,3,4,4,17,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,5,8,6,8,8,25,13,13,9,14,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,9,7,11,7,10,10,20,10,10,7,10,6,7,7,12,7,7,5,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,6,3,3,2,3,2,3,3,6,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,23,12,12,9,14,8,9,8,14,8,8,6,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,6,9,5,5,3,4,3,4,4,6,4,4,3,5,4,6,6,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,13,7,8,6,10,6,8,7,13,8,9,8,13,9,13,12,24,13,13,9,12,7,8,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,9,6,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,6,9,6,7,7,12,7,8,7,11,7,10,10,16,8,8,6,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,4,4,3,5,4,5,5,10,5,5,4,5,3,3,2,2,1,1,1,0,0,0,1,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,5,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,2,3,3,4,4,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,3,3,4,3,5,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,9,6,7,6,9,5,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,4,5,4,5,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,3,4,3,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,4,5,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2 +1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,12,7,8,7,13,7,7,6,9,6,9,9,14,8,8,6,10,6,7,7,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,6,10,5,5,4,6,5,7,7,11,6,7,6,11,7,10,10,19,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,6,9,6,7,6,10,7,10,9,21,11,11,8,12,7,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,6,9,6,7,6,12,7,9,7,12,8,12,11,18,9,9,6,8,5,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,9,9,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,5,11,6,6,5,8,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,3,4,4,6,4,4,4,14,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,4,3,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,4,5,4,4,4,6,4,4,4,6,4,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,4,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-3,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,6,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,8,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,17,9,9,7,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,10,7,10,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,7,10,10,17,9,8,6,8,5,6,5,10,6,6,4,5,4,5,4,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,12,7,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,7,5,6,4,5,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,9,16,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,9,6,9,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,13,7,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,7,7,6,8,5,7,6,10,6,7,6,11,7,10,10,16,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,8,5,6,5,9,6,8,8,10,5,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,26,13,13,9,14,8,10,8,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,9,8,14,9,13,13,41,21,20,14,20,12,15,13,22,12,14,11,18,12,16,15,29,15,16,11,16,9,11,10,18,10,12,10,18,12,17,17,32,17,17,12,19,11,14,12,21,11,12,9,14,9,12,12,23,12,13,10,16,10,13,12,21,12,13,10,17,12,17,17,31,16,16,10,14,8,10,8,13,8,9,7,11,7,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,9,17,9,9,6,9,6,8,7,12,7,8,6,9,6,8,7,13,7,8,6,10,7,9,8,14,8,10,9,16,11,17,17,39,20,19,13,19,11,14,12,20,11,12,9,15,9,12,11,20,11,12,9,13,8,11,10,18,10,11,9,14,10,14,14,26,14,14,10,15,9,10,8,14,8,8,6,9,6,7,6,11,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,25,13,12,8,12,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,11,7,10,10,20,11,11,8,11,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,19,11,14,12,20,13,19,19,31,16,16,11,16,9,10,8,13,7,7,6,9,6,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,21,11,11,8,11,7,8,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,10,8,12,7,9,9,16,9,11,10,18,12,18,18,26,14,14,10,14,8,10,9,16,9,9,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,9,7,12,8,11,11,21,11,12,8,12,7,9,7,12,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,23,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,2,2,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,9,7,10,6,8,7,11,6,7,5,7,5,6,6,12,7,7,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,4,7,4,4,4,6,4,5,4,8,5,6,5,9,6,9,9,20,10,10,7,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,6,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,7,5,6,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,8,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,4,4,8,5,6,5,9,7,10,10,21,11,11,8,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,2,2,2,2,2,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,5,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,4,3,4,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,5,6,5,8,6,8,8,23,12,12,8,12,7,9,7,13,7,8,6,10,6,8,8,16,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,7,11,6,7,5,8,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,15,8,7,5,6,4,5,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,8,7,12,8,12,12,16,8,8,6,8,5,5,4,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,3,3,2,3,3,4,3,4,4,13,7,8,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,6,7,6,10,7,10,10,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,13,7,6,4,6,4,5,5,7,4,4,3,4,3,4,3,6,3,3,2,2,2,3,3,2,2,2,2,4,3,4,4,13,7,7,5,6,4,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,7,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,11,6,6,4,5,3,4,3,6,3,3,3,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,18,10,10,7,9,6,7,6,9,5,6,5,8,5,6,6,11,6,7,5,6,4,5,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,4,3,4,3,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0 +1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,4,3,4,3,4,4,6,3,3,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,15,8,8,6,9,5,6,5,9,5,5,4,5,3,4,3,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,7,4,5,4,5,4,6,6,10,6,6,5,8,6,9,9,30,15,15,10,14,8,10,9,15,8,9,7,10,7,9,8,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,7,12,8,11,11,17,9,9,6,8,5,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,14,8,8,5,7,4,5,5,8,4,4,3,5,4,5,5,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,24,13,13,9,14,8,10,9,15,8,8,6,10,6,8,8,11,6,7,5,7,4,5,4,7,4,5,4,7,5,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,5,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,14,14,18,9,9,7,10,6,7,6,10,6,6,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,2,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,10,6,7,7,12,7,9,7,12,8,11,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,5,4,6,5,7,7,15,8,7,5,7,5,6,5,8,5,5,4,5,3,4,3,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,12,7,7,5,6,4,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3 +0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,5,7,4,5,4,8,5,6,5,8,6,8,7,13,7,6,5,7,5,6,5,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,9,5,4,3,5,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,5,5,8,6,8,9,11,6,6,4,7,4,4,4,7,4,4,3,4,3,3,3,6,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,9,5,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,5,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-2,0,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-5,-3,-4,-4,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,8,5,5,4,6,4,4,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,8,8,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,8,5,6,5,7,5,7,6,11,6,6,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,5,6,6,12,7,8,7,12,8,11,11,20,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,7,4,5,4,7,5,8,8,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,7,6,11,6,7,6,11,8,12,12,15,8,8,6,8,5,5,4,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,3,4,3,4,4,11,6,6,4,5,3,4,3,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6 +1,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,5,3,4,3,4,3,5,4,7,4,4,4,5,4,5,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-3,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,6,4,4,3,5,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,6,5,7,7,22,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,8,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,9,5,6,5,7,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,8,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,10,6,6,6,10,7,11,11,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,3,4,3,4,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,5,7,7,12,6,6,5,8,5,5,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,4,3,3,2,3,3,9,5,6,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,5,7,7,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,18,9,9,6,9,6,6,6,10,6,6,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,5,3,4,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,6,6,10,7,10,10,14,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,4,4,4,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-9,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-7,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,10,5,5,3,4,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,2,1,1,1,1,1,1,2,3,2,3,2,6,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,6,4,4,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,40,21,21,14,21,12,15,13,23,12,13,10,15,9,12,11,21,11,12,9,13,8,9,8,15,9,11,9,15,10,15,15,23,12,12,8,12,7,9,8,14,8,9,7,11,7,9,9,16,9,9,7,11,7,10,10,18,10,12,11,19,13,19,18,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,8,10,9,17,10,12,11,19,13,19,19,34,17,17,11,16,9,11,10,17,9,9,7,11,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,8,5,6,6,10,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,13,8,11,11,20,11,13,11,20,14,20,19,26,13,13,9,13,7,8,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,6,5,9,6,7,6,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,8,5,7,7,12,7,7,5,6,4,5,4,6,4,5,4,6,4,6,6,15,8,9,6,9,6,8,7,13,7,8,6,9,6,9,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,23,12,12,9,14,8,9,8,14,8,8,7,11,7,10,9,16,9,9,6,9,6,7,7,12,7,7,6,10,7,9,9,20,10,10,7,9,5,6,5,9,5,4,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,5,4,6,6,16,8,8,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-13 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,9,5,6,4,5,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,21,11,11,8,11,7,8,7,13,7,7,6,8,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,10,14,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,5,3,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,9,5,6,4,6,4,4,3,5,3,2,2,4,2,2,2,5,3,2,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,22,12,12,8,12,7,8,7,14,8,8,6,8,6,8,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,8,6,10,7,10,10,16,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,5,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,5,5,8,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,4,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,11,6,6,4,6,4,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-7 +0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,16,9,9,6,9,5,6,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,2,2,3,3,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,25,13,13,9,14,8,10,9,16,9,9,7,10,7,9,8,14,8,8,6,9,6,7,6,12,7,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,6,12,7,9,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,11,6,7,5,8,5,6,5,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,6,9,6,8,7,10,6,8,7,12,8,11,11,24,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,7,8,6,10,7,9,8,15,9,10,8,14,9,13,13,16,8,8,6,8,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,7,13,7,8,6,8,5,6,5,6,4,4,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,15,8,8,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,3,5,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,3,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,5,10,6,6,5,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,20,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,6,4,6,4,4,3,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,4,5,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,6,6,4,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,12,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,5,8,8,12,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,11,7,8,6,11,8,11,10,11,6,6,4,5,4,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,1,1,1,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,5,6,11,6,6,4,6,4,5,4,7,4,3,2,3,2,3,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,7,4,5,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,36,19,19,13,20,12,14,12,21,11,11,8,13,8,10,9,20,11,11,8,13,8,10,9,16,9,11,9,14,9,13,13,24,12,12,9,13,8,10,8,14,8,8,6,9,6,9,9,14,8,8,6,10,7,10,9,17,10,12,10,18,12,18,18,29,15,16,11,16,9,11,9,15,9,10,8,12,8,10,9,18,9,9,6,9,6,7,7,12,7,8,7,11,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,9,16,9,10,9,15,10,15,16,33,17,17,12,18,10,12,10,17,10,11,8,13,8,11,10,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,7,15,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,11,6,6,5,8,6,8,8,18,10,10,8,12,8,11,11,20,11,13,11,19,13,19,19,21,11,11,8,11,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,7,5,7,8,16,8,8,6,9,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,6,5,8,5,6,5,9,6,9,8,18,9,9,6,8,5,5,4,7,4,5,4,5,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,9,8,12,7,8,6,9,6,7,7,12,7,9,8,13,9,13,13,20,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,8,6,9,6,7,6,11,7,8,6,10,6,8,8,16,9,9,6,9,5,6,5,8,5,6,5,7,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,4,3,4,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,20,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,13,7,7,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,11,6,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,4,4,6,4,5,5,5,3,4,3,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,24,12,12,9,13,8,10,8,13,7,7,5,8,5,7,6,13,7,8,6,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,9,8,14,8,8,6,9,5,6,5,8,5,6,5,6,4,6,6,12,7,7,5,9,6,8,8,13,8,10,8,14,10,14,14,14,7,7,5,6,4,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,13,7,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,7,7,20,10,10,7,11,7,8,7,11,6,6,5,7,4,6,5,11,6,6,5,7,4,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,8,4,5,4,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,12,8,12,11,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,3,3,4,4,7,4,4,3,4,3,5,5,8,5,5,5,8,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,4,6,6,10,6,6,4,6,4,4,3,7,4,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,34,17,17,12,18,11,13,11,18,10,10,8,12,7,9,9,18,10,10,7,11,7,9,8,13,8,9,8,13,9,12,12,22,11,11,8,12,7,9,7,13,7,8,6,8,6,8,8,15,8,9,7,11,7,9,9,17,10,12,10,16,11,16,16,29,15,15,11,16,9,11,9,16,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,11,7,8,7,12,8,12,11,19,10,11,8,11,7,8,8,14,8,9,7,11,7,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,16,16,32,16,16,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,5,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,7,7,13,8,9,7,12,8,12,12,21,11,12,8,12,7,9,7,12,7,8,7,11,7,10,10,19,10,11,8,13,8,11,10,18,11,13,11,20,13,19,19,18,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,18,9,9,6,8,5,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,13,7,8,7,12,8,12,12,21,11,11,8,11,7,9,8,13,7,8,6,10,7,9,9,14,8,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,6,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,4,4,10,5,5,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,4,2,3,2,3,2,3,2,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,23,12,12,8,12,7,9,7,12,7,7,6,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,6,7,6,11,6,7,5,8,5,7,7,12,6,7,5,7,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,8,8,6,10,6,8,7,13,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,4,8,5,6,4,7,4,6,6,10,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,7,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,9,5,5,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,4,3,4,3,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,11,12,9,14,9,11,10,19,11,12,10,16,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,15,8,8,6,10,6,6,5,9,5,6,5,8,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,13,7,8,6,11,7,10,10,18,10,11,8,14,9,12,11,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,7,5,6,6,12,7,7,6,8,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,10,6,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-6,-4,-6,-6,-14 +1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,10,5,5,3,5,3,4,3,4,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,33,17,18,12,17,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,11,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,10,11,8,14,9,11,10,19,11,12,10,17,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,9,9,15,8,8,6,9,6,6,5,9,5,6,5,7,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,14,8,8,6,11,7,10,10,18,10,11,8,14,9,11,10,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,7,5,7,6,12,7,7,6,8,5,7,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-10,-5,-7,-6,-11,-7,-12,-12,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-9,-14,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-11,-23,-12,-13,-9,-15,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-38,-18,-18,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-1,-1,0,0,0,0,1,1,1,2,2,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,6,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,9,5,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,5,3,4,4,7,6,9,9,17,9,10,7,10,6,7,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,7,6,11,6,7,6,10,7,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,8,11,10,19,10,11,8,13,8,11,11,21,12,14,12,22,15,22,21,66,33,33,23,34,19,22,19,33,18,19,15,25,16,21,20,38,20,20,14,21,12,15,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,19,12,16,16,30,16,17,13,20,12,16,15,28,16,18,15,25,17,25,25,49,25,25,17,26,15,17,15,26,14,15,11,17,11,15,14,26,14,15,11,17,10,13,12,22,12,14,11,19,13,18,18,34,18,18,12,18,11,13,11,19,11,13,10,17,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,30,21,31,31,62,31,31,21,32,18,21,18,32,17,19,14,23,15,21,20,39,20,21,15,24,14,18,16,30,16,18,15,25,17,24,24,46,24,24,16,23,13,16,14,24,13,15,12,20,13,18,17,33,18,19,14,21,13,17,15,27,15,17,14,24,16,23,23,44,23,23,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,11,17,11,14,13,24,13,15,12,20,14,20,20,39,20,21,15,22,13,16,14,25,14,16,12,20,13,18,17,33,18,19,14,22,14,19,18,34,20,24,21,37,25,38,38,34,18,18,12,18,11,14,12,21,11,12,9,15,9,12,11,20,11,11,8,12,7,9,8,14,8,9,7,10,7,10,10,19,10,11,8,13,8,9,8,15,8,9,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,8,10,9,16,9,9,7,10,7,9,8,15,8,9,7,11,7,8,7,13,8,9,8,13,9,12,12,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,14,27,14,15,11,18,11,14,12,22,13,16,13,23,15,22,22,44,22,22,15,21,12,15,12,21,11,11,8,11,7,9,8,13,7,7,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-13,-27 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,7,11,6,8,7,13,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,9,7,10,7,9,8,15,9,10,9,15,11,16,16,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,11,20,10,11,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,8,11,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13 +0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,2,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,13,7,7,6,9,6,8,8,13,7,8,6,9,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,8,16,9,10,9,15,11,16,16,32,17,17,12,17,10,12,10,17,9,10,8,12,8,11,11,19,10,10,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,9,7,10,6,8,8,15,8,9,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-2,-3,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,4,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,7,4,4,4,6,4,6,6,10,6,6,4,7,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,6,8,6,8,7,13,7,7,6,9,6,7,6,11,6,7,5,9,6,8,8,16,8,8,6,8,5,6,6,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,5,7,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,4,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,8,13,9,13,13,12,6,6,5,7,4,6,5,8,4,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,8,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,2,1,1,0,1,1,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,6,4,4,3,3,2,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,5,5,10,6,6,5,7,5,7,7,10,6,8,7,11,8,11,11,33,17,17,12,17,10,11,10,18,10,10,8,12,8,11,10,20,10,10,7,10,6,7,7,14,8,8,7,11,7,10,10,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,9,13,7,8,6,9,6,7,7,14,8,8,6,9,6,7,7,13,8,9,7,11,7,10,10,18,9,9,7,10,6,7,7,10,6,6,5,8,6,8,8,14,8,9,7,10,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,18,10,12,10,17,9,10,8,12,8,10,10,18,10,11,8,12,7,9,8,15,8,9,7,12,8,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,10,7,9,8,15,9,10,8,12,8,12,12,23,12,11,7,10,6,7,7,11,6,6,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,10,11,18,10,10,7,11,7,9,8,12,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,17,10,13,11,19,13,19,19,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,5,5,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,11,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,8,8,12,6,6,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,6,6,5,8,6,8,7,12,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,6,4,6,6,11,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,12,7,9,8,14,10,14,14,12,6,6,5,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,6,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,8,4,5,4,6,4,5,5,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,9,9,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,5,6,6,10,6,8,7,12,8,12,12,10,6,6,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,4,2,3,3,4,3,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,5,4,6,4,6,5,9,5,5,4,7,4,5,4,7,4,4,4,6,4,4,4,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,4,11,6,6,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,3,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,3,3,6,4,4,4,6,4,5,5,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,34,17,17,12,18,10,11,9,16,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,10,6,8,8,14,8,8,6,10,7,10,10,13,7,8,6,9,6,8,7,12,7,9,8,14,10,14,14,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,9,7,12,8,11,11,17,9,9,7,11,7,8,7,12,7,7,6,10,7,10,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,16,16,11,17,10,11,9,16,9,9,7,12,8,11,10,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,21,11,12,8,12,7,9,7,12,7,7,5,8,6,8,8,17,9,10,7,10,7,9,8,14,8,9,8,13,9,12,12,23,12,12,8,11,6,7,6,10,6,6,5,7,5,7,7,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,11,11,9,14,9,11,10,18,11,13,11,20,14,20,20,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,16,9,10,7,11,7,9,8,14,8,10,8,13,9,12,12,18,9,9,6,8,5,6,5,9,5,6,5,7,4,5,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,6,5,7,5,7,7,10,5,5,4,4,3,4,3,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,19,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,4,4,3,5,4,5,4,7,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,6,5,9,5,6,6,10,7,10,10,18,9,9,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,5,6,4,6,4,6,6,12,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,10,6,6,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,10,6,7,7,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,4,3,4,3,6,4,4,3,4,3,4,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,10,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,4,4,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,5,6,5,8,6,8,9,22,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,15,8,8,6,9,6,7,6,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,10,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,7,6,10,6,8,7,11,8,11,11,20,11,11,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,11,7,9,8,14,9,13,13,14,7,7,5,6,4,5,5,7,4,4,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,7,4,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,5,5,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,4,5,4,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,4,7,5,6,5,9,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,5,6,5,8,5,5,5,7,5,7,7,12,7,7,5,7,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,8,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,10,6,8,7,11,8,11,11,12,6,6,4,5,3,4,3,5,3,3,2,4,3,4,4,6,3,3,3,3,3,4,3,5,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,7,4,5,5,9,5,6,5,8,6,8,8,9,5,5,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,6,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,11,6,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9 +-3,-1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,2,2,4,3,3,3,4,3,5,5,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,6,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,2,2,2,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,11,6,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,7,6,9,6,8,8,14,8,10,8,14,9,13,13,35,18,18,12,18,11,13,11,18,10,11,8,13,8,10,10,18,10,10,7,11,7,8,8,14,8,9,8,14,9,12,12,21,11,11,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,6,7,6,10,6,7,6,10,7,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,11,15,8,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,10,17,9,10,8,12,7,9,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,9,9,20,10,10,7,11,6,7,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,15,8,9,8,13,9,13,13,26,13,13,9,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,7,12,7,7,6,9,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,19,13,18,18,19,10,10,7,9,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15,8,9,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,15,8,8,5,7,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-9,-19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,5,3,3,2,4,3,3,3,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,6,4,5,4,8,5,6,5,7,5,7,7,10,6,6,5,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,8,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,4,4,4,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,6,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-6 +-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,1,1,2,2,2,2,2,2,2,2,2,2,2,3,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,6,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,4,6,4,6,6,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,5,5,11,6,6,4,6,3,3,3,6,4,4,4,6,4,6,5,6,4,5,4,6,4,4,4,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,9,5,5,3,4,3,3,3,7,4,5,4,6,5,7,7,9,5,6,5,8,5,7,6,9,5,6,6,10,7,11,11,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,7,5,6,6,16,8,8,6,9,5,6,5,8,4,4,3,6,4,5,5,9,5,6,4,5,3,4,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,5,8,4,4,3,4,2,2,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,8,6,8,8,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,6,4,6,7,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-2,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6 +-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,5,8,5,7,6,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,6,11,7,10,10,27,14,13,9,12,7,8,7,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,7,6,9,6,9,9,12,7,7,5,8,5,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,10,6,6,4,5,3,4,4,8,5,5,4,7,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,24,12,12,9,13,8,9,7,11,6,6,4,6,4,5,5,12,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,18,10,10,7,9,5,6,6,10,6,6,4,5,4,5,4,10,6,6,5,7,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,12,7,7,5,6,4,4,3,5,3,4,3,5,3,4,3,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,5,9,6,7,6,11,8,12,12,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,5,7,7,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,4,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,1,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,3,4,3,3,3,3,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,5,8,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,8,6,8,8,8,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,7,5,7,8,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,0,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,2,2,3,2,2,2,4,3,3,3,-5,-2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,8,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,8,8,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,9,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,4,5,5,11,6,7,6,10,7,10,10,9,5,6,4,6,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,4,3,3,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,16,9,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,7,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,6,4,4,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,5,8,5,5,4,6,4,5,5,10,6,7,6,8,6,8,8,22,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,7,5,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,11,6,6,4,7,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,10,7,10,10,5,3,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,8,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,20,11,11,7,10,6,7,6,10,6,6,4,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,10,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,1,1,1,2,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,11,6,7,6,9,6,8,8,15,9,11,9,16,11,15,15,40,20,20,13,19,11,12,10,18,10,10,8,12,8,10,10,19,10,10,7,10,6,8,7,11,6,7,6,11,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,14,8,9,7,10,6,8,7,13,8,9,7,11,8,11,11,17,9,9,6,9,6,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,8,8,14,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,10,17,12,17,17,40,20,20,13,19,11,13,11,19,10,11,8,13,8,10,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,6,10,6,7,5,8,5,7,7,26,14,14,10,15,9,11,10,17,9,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,8,7,11,8,11,11,20,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,11,10,19,11,14,12,20,13,19,19,17,9,9,6,9,5,6,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,8,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,11,8,12,8,10,9,16,9,11,10,18,12,18,18,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,5,3,2,1,1,1,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25 +-3,-1,-2,-1,-2,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,7,10,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,10,6,6,5,7,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-7,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,11,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,9,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,6,7,11,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,0,-1,0,-1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,8,4,5,4,5,4,5,5,8,5,6,5,7,5,8,8,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,-8,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,4,3,3,3,4,3,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,10,5,5,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,6,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,20,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,8,5,6,5,8,6,8,7,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,9,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,3,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,3,4,3,3,2,1,1,2,2,3,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,15,8,8,6,7,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,3,2,2,2,5,3,3,3,5,3,4,5,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,14,8,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,3,2,4,3,3,3,4,2,2,2,3,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,4,7,4,4,4,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,8,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,4,5,5,8,5,5,4,7,5,8,8,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,5,8,6,8,7,8,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,5,7,5,8,8,14,8,9,7,12,9,13,13,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,6,5,8,5,7,7,12,7,9,7,12,8,11,11,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,1,1,1,0,-1,0,1,1,1,1,1,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,5,3,3,2,4,3,4,3,5,4,4,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,2,1,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,3,3,3,4,3,4,3,4,3,5,4,5,5,14,8,8,5,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,4,8,5,6,5,7,5,8,8,8,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,-1,0,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,4,5,4,6,6,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,8,5,5,3,4,3,4,3,7,4,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,7,4,5,4,5,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,8,4,4,3,4,3,5,5,9,6,7,6,10,6,8,8,14,7,7,5,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,9,5,6,5,8,6,9,10,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,7,4,4,4,6,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,3,2,1,1,1,1,2,2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 +2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,4,4,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,4,6,4,5,5,8,5,5,4,8,6,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,7,5,7,7,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-5,-11 +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,4,5,5,8,5,5,4,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,7,7,2,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,9,5,6,4,6,4,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,5,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,4,4,7,5,6,5,8,6,9,9,25,13,13,9,14,9,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,18,10,10,7,10,6,8,7,13,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,20,10,10,7,9,6,7,6,10,6,6,5,9,6,7,7,12,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,5,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,5,5,10,6,6,5,8,5,7,7,13,8,10,8,14,10,14,14,21,11,11,8,11,6,6,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,5,5,8,6,8,8,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,8,5,5,4,7,5,6,6,14,8,8,6,10,6,7,6,11,6,7,6,9,6,7,7,12,7,7,5,7,5,7,7,12,7,8,7,12,9,13,13,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,1,1,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,6,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,6,4,5,5,7,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,2,2,5,3,4,4,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,8,8,12,6,6,4,7,4,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,8,5,6,5,7,5,8,8,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-11 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,11,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,5,4,6,6,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-5,-3,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,5,3,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,11,6,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,5,8,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,4,4,6,4,6,5,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,10,6,7,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,5,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,5,6,6,4,4,3,4,3,3,2,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,9,9,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,1,0,0,0,1,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,7,11,6,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,3,2,3,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,1,1,1,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,9,9,22,12,12,9,13,8,10,8,14,8,8,6,9,6,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,15,8,8,6,10,6,7,7,12,7,7,6,9,6,7,6,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,16,9,9,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,11,8,12,12,18,10,10,7,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,13,7,6,4,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,7,7,12,7,9,7,12,8,10,10,0,0,0,0,-1,0,0,0,-1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,6,6,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,1,2,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,5,4,6,4,4,4,6,5,7,7,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,10,6,6,4,6,4,4,4,8,5,5,3,5,3,4,4,9,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,10,6,6,4,7,4,4,4,8,5,5,4,6,4,5,4,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,6,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,5,3,4,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,8,4,4,3,4,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,4,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,23,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,9,6,8,8,13,7,8,6,8,5,6,5,7,4,4,3,4,3,4,4,10,5,5,4,6,4,4,4,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,10,5,5,4,6,4,6,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,4,6,4,6,6,12,7,7,5,8,5,7,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,13,7,7,5,6,4,5,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,7,4,4,4,6,4,6,6,11,6,7,5,8,5,6,6,12,7,7,6,10,7,9,9,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-7,-4,-6,-6,-14 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,4,3,4,2,3,2,3,2,3,2,3,2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,8,5,5,4,7,5,6,6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,2,2,2,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,8,5,6,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,8,8,13,7,8,6,8,5,6,5,10,6,6,5,7,5,7,7,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,13,9,13,7,8,7,13,7,8,6,10,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-25,-12,-13,-8,-13,-7,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-22,-11,-12,-8,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,2,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,16,8,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,6,7,6,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,13,19,19,47,24,24,16,24,14,16,13,23,12,13,10,17,11,15,15,29,15,15,10,15,9,12,11,19,11,12,10,16,11,15,15,30,16,16,11,15,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,26,13,13,9,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,7,11,8,11,10,19,11,13,10,17,12,17,18,29,15,15,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,13,9,14,9,11,10,17,10,12,10,16,11,15,15,28,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,11,8,11,12,23,12,11,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,10,15,15,28,14,14,10,14,8,10,9,15,9,10,8,14,9,13,12,22,11,11,8,12,8,10,9,17,10,12,10,18,12,17,17,40,21,21,15,22,13,15,13,22,12,13,9,14,9,13,12,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,21,11,11,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,6,9,6,8,7,12,7,9,8,14,10,14,13,25,13,14,10,14,8,9,7,12,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,27,14,15,11,16,10,12,10,18,10,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,10,9,15,10,15,15,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,1,1,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-24 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,10,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,6,5,10,7,9,9,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-7,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,5,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,8,6,8,7,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,10,7,10,10,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,5,5,8,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 +0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7 +0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-5,-4,-7,-4,-5,-4,-8,-5,-9,-9,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,1,1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,3,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,9,5,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,7,7,11,7,8,6,10,7,10,10,25,13,13,9,14,8,9,8,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,5,10,6,6,5,9,6,9,10,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,22,12,12,8,11,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,6,4,5,4,8,5,6,5,8,5,7,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,4,7,5,8,8,13,7,8,6,8,5,5,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,5,8,6,8,8,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11 +1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,5,4,5,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,4,3,3,3,7,4,4,4,7,5,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,5,8,5,5,4,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,1,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,7,7,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-9,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,1,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,29,15,15,10,15,9,10,8,14,8,9,7,10,7,10,9,17,9,9,6,9,6,7,6,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,5,8,5,6,5,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,10,7,9,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,6,4,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,6,11,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,14,7,7,5,7,4,5,4,6,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,11,10,21,11,11,8,11,7,8,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,7,5,6,5,7,5,7,7,17,9,9,7,9,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,3,2,2,3,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,5,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6 +1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4 +0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-3,-11,-5,-6,-4,-6,-3,-4,-3,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,3,2,2,1,0,0,0,0,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,9,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,13,7,7,5,6,4,5,4,8,5,5,4,5,4,5,5,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,6,4,6,7,13,7,8,6,8,5,6,5,7,4,4,3,5,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,5,7,7,17,9,8,6,8,5,5,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,6,4,4,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,4,6,4,6,6,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-8 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,4,2,3,2,3,2,3,2,3,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,5,4,4,4,6,4,6,6,14,7,7,5,8,5,5,4,8,4,4,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,4,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,4,5,9,5,6,4,5,4,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,11,6,5,4,5,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,1,1,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,2,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,1,1,1,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,3,2,2,1,1,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,4,5,5,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,4,5,4,5,5,7,4,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,6,4,4,3,3,3,4,4,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,3,6,4,4,3,5,4,5,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,3,2,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,3,5,3,4,3,5,3,4,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 +-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-5,-10,-6,-9,-9,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,3,4,3,5,6,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,11,9,15,10,15,15,35,18,18,13,19,11,13,11,18,10,11,8,12,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,22,11,11,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,8,6,9,5,6,6,10,6,6,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,12,6,6,4,6,4,6,5,9,5,6,4,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,11,27,14,14,10,16,9,11,9,16,9,9,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,4,5,4,12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,6,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,5,4,6,5,7,7,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,12,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,4,6,4,5,5,9,5,6,5,8,6,8,9,20,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,4,4,5,4,5,5,13,7,6,5,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,0,0,0,0,0,1,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,10,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,10,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,8,8,6,8,5,5,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,9,6,9,9,12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,5,5,6,4,4,4,6,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,4,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,5,3,3,3,4,3,3,3,8,5,5,3,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,4,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,5,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,9,5,5,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,5,6,5,7,5,8,8,19,10,10,7,10,6,8,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,6,5,11,6,6,4,7,4,5,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,8,8,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,3,2,2,2,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,4,4,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,17,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,2,1,1,1,5,3,3,3,5,3,4,3,5,3,4,3,5,4,6,6,15,8,9,6,9,5,6,5,8,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,12,9,13,13,32,17,17,11,16,10,12,10,17,9,10,7,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,11,6,7,5,7,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,22,12,12,8,11,7,8,7,11,7,8,6,10,6,8,8,10,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,3,3,3,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,8,4,4,3,6,4,4,4,8,5,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-3,-6,-3,-5,-5,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,6,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,13,7,7,5,8,5,5,5,7,4,5,4,6,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,5,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,7,6,12,7,8,7,12,9,13,13,29,15,16,11,16,9,10,8,16,9,9,7,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,6,6,10,6,7,6,10,7,11,11,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,9,5,6,6,10,7,9,9,16,8,8,6,9,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,8,4,4,3,5,4,5,5,9,5,6,5,8,6,9,9,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17 +-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,5,4,5,4,8,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,3,3,2,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,4,4,4,6,4,5,4,6,4,6,6,12,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,6,9,5,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,4,3,6,4,4,4,8,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,7,4,5,4,6,4,5,4,7,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-8,-5,-7,-7,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,11,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,7,5,8,8,25,13,13,9,13,7,8,6,10,6,6,5,7,5,6,6,11,6,7,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,10,7,9,9,18,10,10,8,12,8,11,11,21,12,15,13,23,16,23,23,53,27,26,18,26,15,17,14,24,13,14,11,17,11,14,14,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,28,14,14,10,15,9,11,10,19,10,11,8,13,9,12,11,21,11,12,9,15,9,12,11,19,11,14,12,21,14,20,20,35,18,18,12,16,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,9,9,18,9,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,9,16,11,17,17,32,17,17,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,20,11,11,8,12,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,10,10,18,10,12,10,17,11,16,15,44,22,22,15,23,13,16,13,22,12,12,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-7,-16,-8,-10,-8,-16,-11,-17,-17,-34 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,7,4,4,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,13,9,12,12,28,14,14,10,14,8,10,8,13,7,8,6,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,12,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,6,5,9,5,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,4,4,4,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,4,6,4,6,5,10,6,6,4,7,4,5,5,7,4,4,4,6,4,6,6,12,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3,-3,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,15,8,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,9,8,14,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,8,6,8,7,15,8,9,7,10,6,7,7,11,6,6,5,8,6,9,9,18,10,10,7,10,6,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,6,9,5,6,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,6,6,4,6,4,4,3,3,2,2,2,4,3,4,4,7,4,4,4,6,4,5,4,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,6,10,7,9,9,24,13,13,9,12,7,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,9,5,5,4,5,4,5,4,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,14,8,8,5,7,4,5,5,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,4,5,3,4,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,6,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,8,6,10,7,10,10,21,11,10,7,10,6,8,6,11,6,6,4,6,4,6,5,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,7,5,6,5,9,6,9,9,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,8,7,17,9,9,6,8,5,6,6,9,5,5,4,7,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,9,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,7,6,9,6,9,9,17,10,12,10,17,11,16,16,34,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,19,10,11,8,12,7,9,8,14,8,8,7,11,7,10,10,21,11,11,7,10,6,7,6,10,6,7,6,10,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,6,5,7,5,8,8,15,8,8,5,7,4,4,3,4,3,4,3,5,3,4,4,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,19,10,11,8,11,6,7,6,11,6,6,5,8,5,7,6,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,5,10,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,5,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,5,3,4,3,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,10,21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,7,5,6,5,10,6,6,4,6,4,6,5,7,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,3,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,5,3,3,2,3,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,7,16,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,8,6,9,6,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,5,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-5,-5,-12 +-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,1,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,7,7,10,6,7,6,11,8,12,12,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,4,3,3,3,4,3,3,3,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,7,4,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,6,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,8,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,10,8,13,9,14,14,25,13,14,10,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,5,4,6,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,20,10,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,8,13,9,13,13,24,13,13,9,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,5,8,5,7,7,13,7,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-10,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,2,3,3,5,3,3,3,5,4,5,5,3,2,2,2,4,3,4,4,6,3,3,3,4,3,5,5,8,5,5,5,8,5,7,7,12,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,26,15,18,15,27,18,26,26,46,24,24,16,23,14,17,15,26,14,15,11,17,11,14,14,26,14,14,10,16,10,13,11,20,11,13,11,18,12,17,16,28,14,14,10,15,9,12,10,18,10,11,9,14,9,12,12,23,12,13,10,15,9,12,11,21,12,14,11,19,13,19,19,32,16,16,11,17,10,12,10,17,9,10,8,12,8,11,11,22,11,11,8,11,7,9,8,13,7,8,7,11,7,10,10,24,12,12,9,13,8,9,7,12,7,7,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,11,7,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,6,6,13,7,8,6,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,7,13,8,10,9,16,11,16,16,37,19,19,13,19,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,10,6,6,5,9,5,6,4,6,5,7,7,10,6,6,4,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,4,6,3,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-13,-6,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-10,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-10,-13,-10,-19,-13,-20,-20,-42 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,4,7,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 +-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,9,5,6,5,9,5,6,5,9,6,7,7,14,8,8,7,10,6,8,8,15,9,10,9,15,10,15,15,26,14,14,9,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,7,7,11,7,8,6,11,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,14,7,7,5,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,6,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,6,4,4,4,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,10,6,8,7,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,12,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-6,-3,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,9,5,5,4,6,5,8,8,16,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,19,10,11,8,12,8,10,10,18,9,9,7,10,7,9,8,12,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,10,8,13,9,12,12,22,12,12,9,13,8,9,7,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,10,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,11,6,7,5,8,5,6,5,9,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,7,5,8,5,5,4,7,4,4,3,4,3,5,5,6,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,20,10,10,7,11,6,7,6,12,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,7,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-3,-2,-3,-2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-5,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,4,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,6,6,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,14,8,10,9,14,10,14,15,26,13,13,9,14,8,10,8,15,8,9,7,10,7,9,9,14,8,8,6,8,5,6,6,10,6,6,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,13,7,8,6,8,5,6,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,7,4,5,4,7,5,8,8,15,8,8,6,7,5,6,5,10,5,5,4,6,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,5,3,4,3,4,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,5,10,6,6,5,7,5,6,5,9,5,6,6,9,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,6,6,5,9,6,9,9,15,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,12,7,7,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,7,9,6,6,6,9,6,6,5,7,5,6,6,9,5,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,7,5,6,5,9,5,5,4,5,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,6,5,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 +-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,1,1,2,3,2,3,3,5,4,6,6,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,21,11,10,7,10,6,7,6,10,6,6,5,8,5,6,6,13,7,8,6,10,6,8,7,13,7,8,6,10,7,11,11,19,10,11,8,13,8,11,10,17,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,47,24,24,16,24,14,17,15,26,14,15,11,18,12,16,15,24,12,12,9,13,8,11,10,17,10,11,9,15,11,16,16,29,15,15,11,17,10,12,10,18,10,11,9,14,10,14,14,22,12,12,9,15,9,12,11,20,11,12,10,17,12,17,17,31,16,17,12,17,10,11,10,17,9,10,8,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,12,23,12,11,8,11,7,9,8,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,9,16,8,8,6,9,6,8,8,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,5,8,5,6,5,8,5,5,5,8,6,8,9,16,9,10,8,12,8,10,9,17,10,12,10,17,11,16,16,33,17,17,12,17,10,12,10,18,10,11,8,12,7,9,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,14,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,13,7,7,6,8,5,7,6,11,7,8,6,10,7,9,9,17,9,10,8,11,7,10,9,17,10,12,10,17,12,18,18,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,9,6,9,6,8,7,11,7,8,6,10,7,11,11,20,10,10,7,12,7,8,7,13,7,8,6,9,7,10,9,15,8,8,6,11,7,9,8,14,8,8,7,11,8,12,12,21,11,12,8,11,7,8,7,11,6,7,6,8,6,8,7,12,6,6,5,8,5,6,6,9,6,7,6,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,9,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,6,4,4,4,8,5,5,4,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-13,-27 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,7,5,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,15,10,15,9,10,8,14,8,9,7,10,7,9,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,10,10,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-5,-4,-10,-5,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-27,-13,-12,-8,-12,-6,-8,-6,-12,-5,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,7,6,10,6,8,7,11,8,11,11,20,11,11,8,12,8,10,9,17,9,10,8,14,9,13,13,25,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,49,25,26,18,26,15,17,14,24,13,15,11,18,11,15,14,26,13,13,9,14,9,11,10,17,10,11,9,16,11,17,17,30,16,16,11,17,10,11,10,18,10,11,9,14,10,14,13,22,12,13,10,16,10,12,11,20,11,13,10,17,12,17,17,32,17,17,12,17,10,11,10,16,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,7,10,6,7,7,13,8,9,7,12,8,12,13,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,7,4,5,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,5,5,8,6,8,9,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-14,-7,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 +-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-4,-3,-6,-3,-5,-5,-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,6,5,8,5,7,7,14,8,8,6,8,6,7,6,12,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,10,12,10,18,12,18,18,33,17,17,12,18,10,12,10,16,9,10,8,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,10,9,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,8,12,7,8,7,11,6,7,6,8,6,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,11,11,22,11,11,8,11,6,8,6,11,6,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-13,-13,-26 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,4,3,6,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,17,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,49,25,25,17,26,15,18,14,24,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,17,10,12,10,17,11,16,16,31,16,16,11,17,10,12,10,18,10,12,9,15,10,14,13,23,12,13,10,15,9,12,11,20,11,12,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,7,13,9,12,12,22,12,12,8,13,7,8,7,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,10,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,8,6,8,5,5,5,8,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-11,-7,-11,-10,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-40 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,16,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,50,25,25,17,26,15,18,14,25,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,18,10,12,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,12,9,15,10,13,13,23,12,13,10,15,9,12,11,20,11,13,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,22,12,12,8,13,8,9,8,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,7,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-13,-10,-19,-13,-20,-20,-40 +-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,7,6,10,7,11,11,22,12,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,17,12,19,12,16,15,28,16,19,15,26,18,27,27,53,27,27,19,29,17,20,17,31,17,18,13,20,13,17,17,32,17,17,12,18,11,14,13,25,14,16,13,23,16,24,24,46,24,25,17,26,15,19,17,31,17,20,16,28,19,28,27,53,28,30,22,36,22,30,28,52,30,36,30,53,36,53,53,106,54,54,36,54,30,36,30,53,28,30,22,36,22,30,28,53,27,28,20,32,19,24,21,38,21,24,19,33,21,30,30,58,29,29,20,29,17,21,18,31,17,18,14,23,15,21,21,40,21,21,15,23,14,18,16,30,17,19,16,28,18,26,26,51,26,27,19,28,16,20,17,30,16,17,13,22,14,19,17,32,17,18,13,21,13,16,14,26,15,18,15,26,17,25,25,49,25,25,18,27,16,21,19,34,19,21,16,26,17,24,24,46,24,26,19,30,18,24,23,43,24,29,24,43,29,44,44,86,43,43,29,42,24,28,23,41,22,23,17,28,17,23,21,40,21,21,15,23,14,17,14,25,14,16,13,22,15,21,21,40,21,21,15,24,14,18,16,28,16,18,14,23,15,20,20,38,20,21,16,25,15,20,19,35,20,23,19,33,22,33,33,64,33,33,23,34,19,23,20,35,19,20,16,26,16,22,21,40,21,22,16,25,15,20,18,34,19,23,19,32,21,31,31,61,32,33,23,35,21,26,23,41,22,25,20,34,22,31,30,58,31,33,24,38,23,30,28,52,29,34,28,50,34,50,50,99,50,51,34,51,29,35,29,51,27,28,21,33,20,26,24,46,24,24,17,27,16,20,17,30,17,19,16,28,18,26,26,50,25,25,17,26,15,19,16,29,15,16,12,20,13,17,17,32,17,17,12,19,12,15,14,27,15,17,14,24,16,22,22,42,22,22,15,22,13,15,12,21,11,12,10,16,10,14,13,23,12,13,10,16,10,13,12,22,13,15,13,22,14,20,20,39,20,20,14,21,13,16,14,25,14,16,12,20,13,19,19,36,19,21,16,25,16,21,20,38,21,25,21,37,25,38,38,74,38,38,26,38,22,26,22,39,21,22,17,27,17,22,20,37,19,20,15,24,15,19,17,30,17,20,16,27,18,26,26,50,26,26,18,27,16,19,16,27,15,17,13,22,14,19,18,34,18,18,13,21,13,16,15,27,15,18,15,26,18,26,26,50,25,25,17,25,14,16,14,24,13,14,11,19,12,16,15,28,15,16,11,17,10,13,12,23,13,16,14,24,16,23,23,46,24,24,17,25,15,18,16,28,16,18,15,25,16,23,22,43,23,25,19,30,18,24,22,42,23,27,22,39,26,38,38,76,38,38,26,38,22,26,23,41,22,24,18,29,18,24,23,44,23,24,17,25,15,18,16,29,16,17,14,23,15,22,21,41,21,22,15,22,13,15,13,23,13,14,11,19,13,18,17,32,17,18,13,20,12,16,15,27,15,18,15,27,19,28,28,56,29,29,20,29,17,20,17,30,16,17,12,19,12,15,14,25,13,13,10,15,10,13,12,22,12,13,11,18,12,17,17,32,16,16,11,16,9,11,9,16,9,10,8,13,9,12,12,22,12,12,9,14,9,12,11,19,11,13,11,18,12,17,16,30,16,16,11,15,9,11,9,15,8,8,6,8,5,5,4,6,3,2,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-8,-16,-8,-10,-9,-17,-11,-17,-17,-34,-17,-18,-12,-19,-10,-13,-11,-21,-11,-13,-10,-19,-12,-18,-18,-38,-20,-22,-16,-27,-16,-23,-21,-42,-23,-27,-23,-42,-27,-40,-40,-81 +-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,13,9,13,8,10,9,16,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,27,18,27,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,11,9,16,9,10,8,12,8,11,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,11,7,8,8,13,8,10,8,14,9,13,13,25,13,13,10,14,9,11,10,17,10,11,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,21,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,32,17,17,12,18,10,12,10,18,10,11,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,17,12,18,11,13,12,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,18,15,26,14,14,11,17,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,8,11,11,20,11,13,11,19,13,20,20,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,14,8,9,7,12,8,10,10,17,9,9,7,11,7,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,6,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,8,8,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-20,-13,-20,-20,-40 +-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,10,7,10,6,8,7,14,8,9,7,12,8,12,12,23,12,12,9,13,8,10,9,17,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,26,18,26,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,10,9,16,9,10,8,12,8,12,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,13,27,14,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,13,8,10,8,14,9,13,13,25,13,14,10,14,9,11,10,17,9,10,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,8,11,11,20,11,12,9,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,12,10,16,11,17,17,32,16,16,11,18,10,12,10,19,11,12,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,17,15,26,14,14,11,18,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,9,12,11,20,12,14,11,20,14,20,20,38,20,20,13,19,11,14,11,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,13,7,8,7,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,7,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,19,13,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,11,7,8,7,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,7,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,0,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-21,-11,-14,-11,-20,-13,-20,-20,-41 +-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,7,4,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,7,5,7,4,6,5,10,6,7,6,9,6,9,9,16,9,9,6,9,6,7,6,12,7,7,6,10,7,10,10,18,10,11,8,12,8,11,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,11,8,13,8,11,10,19,10,10,8,11,7,8,8,13,7,8,7,12,8,11,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,6,5,9,6,7,6,10,6,9,9,17,9,9,6,9,6,7,7,12,6,7,6,10,6,9,8,15,8,9,7,10,6,8,8,14,8,10,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,7,7,14,8,8,6,9,5,6,6,9,5,6,5,8,6,7,7,13,7,8,6,8,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,14,8,11,10,18,10,12,10,17,12,17,18,34,17,17,12,18,10,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,7,6,10,6,7,6,10,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,8,8,15,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,8,6,10,6,9,8,16,8,8,6,10,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-27 +-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,4,4,6,5,7,7,10,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,16,8,8,6,9,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,8,14,8,9,8,13,9,13,13,24,12,12,9,13,8,10,9,17,10,11,9,15,10,14,14,27,14,15,11,18,12,16,15,26,15,18,15,26,18,26,26,52,26,26,18,27,16,19,16,27,15,16,12,20,13,17,15,28,15,15,11,16,10,13,11,18,10,12,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,9,7,12,8,12,11,20,11,12,9,14,8,10,9,15,9,10,8,14,9,13,13,27,14,15,11,16,9,11,9,16,9,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,10,9,17,10,11,9,14,9,13,12,22,12,13,9,14,9,12,11,20,12,14,12,22,15,22,21,42,22,22,15,22,13,15,12,20,11,11,9,14,9,12,11,21,11,11,8,11,7,8,7,14,8,9,7,12,8,10,10,21,11,12,8,12,7,8,7,13,8,9,7,12,8,11,10,20,11,11,8,12,8,10,9,18,10,11,9,16,11,16,16,33,17,17,12,17,10,13,11,19,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,16,9,11,9,16,11,16,16,31,16,17,12,17,10,13,11,19,11,13,11,18,12,16,15,31,17,18,13,20,12,16,15,27,15,17,14,25,17,25,26,50,25,25,17,26,15,18,15,26,14,15,11,18,11,14,13,25,13,13,9,14,9,11,10,15,9,11,9,15,10,14,14,24,13,13,9,14,9,11,9,16,9,9,7,11,7,10,9,15,8,9,7,11,7,8,8,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,19,11,13,11,20,14,20,19,38,20,20,14,20,12,14,11,20,11,11,9,14,9,11,11,21,11,12,8,12,8,10,9,17,9,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,8,9,7,12,8,10,9,17,9,10,7,10,6,8,8,15,9,10,8,14,10,14,13,26,14,14,9,13,8,10,8,13,7,8,6,10,7,9,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,11,22,12,13,10,15,9,12,12,21,12,13,11,19,13,19,20,38,19,19,13,20,12,14,12,20,11,12,9,14,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,12,12,21,11,11,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,15,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,15,8,8,6,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,4,6,4,6,6,9,5,6,5,8,6,8,8,16,8,7,5,6,4,5,4,7,4,5,4,5,3,3,3,3,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-20,-10,-11,-7,-12,-7,-10,-9,-21,-11,-13,-11,-20,-13,-20,-20,-41 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,11,9,15,8,9,7,11,7,10,9,16,9,9,6,9,6,7,6,10,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,9,6,6,5,8,6,8,8,16,8,9,6,9,6,7,5,9,5,5,4,7,4,5,5,10,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,24,12,12,9,13,8,9,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,5,4,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,8,15,10,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,9,5,5,4,7,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,11,6,7,5,8,5,7,7,11,7,8,7,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,12,22,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-22 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,18,11,13,11,17,9,10,8,12,8,12,11,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,8,8,14,8,8,6,10,6,7,6,11,7,8,6,10,7,9,9,19,10,10,7,11,7,8,6,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,9,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,14,8,8,6,7,4,5,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,7,5,8,7,13,7,8,6,9,6,7,7,12,7,8,7,10,7,10,10,22,12,12,8,12,7,8,7,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,21,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,21,11,12,9,13,8,10,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,11,7,10,10,16,9,9,7,9,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,9,13,13,26,14,14,10,14,8,10,8,13,7,8,6,10,6,8,7,15,8,8,6,8,5,6,6,12,7,8,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,6,11,7,8,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,9,13,8,10,9,14,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,10,7,10,10,20,10,10,7,10,6,8,6,10,6,6,5,7,5,6,6,8,5,6,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-8,-7,-12,-8,-12,-13,-27 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,15,9,10,8,15,10,15,15,30,15,15,10,15,9,10,9,14,8,8,6,10,7,10,9,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,4,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,6,9,6,7,6,12,7,7,5,7,4,5,5,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,9,5,5,5,8,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,3,5,3,4,3,5,4,6,6,8,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,16,9,10,7,11,7,10,9,16,9,10,8,13,9,13,13,25,13,14,10,14,9,11,9,16,9,9,7,12,8,10,9,17,9,10,7,11,7,8,8,14,8,9,8,14,10,14,14,25,13,14,10,15,9,11,9,16,9,11,9,15,10,14,14,26,14,15,11,18,11,15,14,26,15,18,15,25,17,25,26,53,27,27,18,27,15,17,14,25,13,14,11,18,12,16,15,27,14,15,11,16,10,12,10,18,10,12,10,17,11,16,16,27,14,14,9,13,8,9,8,14,8,9,7,11,8,11,11,20,10,10,7,11,7,9,9,16,9,10,9,15,10,14,13,27,14,13,9,13,8,9,8,15,8,9,7,11,7,9,8,17,9,9,7,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,15,9,10,9,16,9,10,8,13,8,11,11,21,11,12,9,14,9,11,11,20,12,14,12,21,14,21,21,40,20,20,13,19,11,14,12,20,11,12,9,13,8,11,10,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,15,15,32,17,17,12,19,11,14,12,20,11,12,9,13,8,11,11,21,11,12,9,14,9,11,9,16,9,11,10,17,12,17,17,32,17,17,12,17,10,12,10,18,10,12,9,15,11,16,16,32,17,18,13,20,12,16,14,26,15,18,16,28,19,27,27,53,27,27,19,28,16,18,15,26,14,14,10,16,10,13,12,25,13,14,10,16,10,12,10,18,10,12,10,17,11,15,15,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,14,7,7,5,8,5,7,7,12,7,8,7,13,9,12,12,22,11,11,7,10,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,15,9,12,12,22,13,15,13,22,15,21,20,39,20,19,13,19,11,14,12,20,11,12,9,13,8,11,11,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,9,15,10,14,14,27,14,14,10,15,9,10,8,13,7,8,6,10,7,10,10,15,8,9,7,11,7,9,8,14,8,9,8,13,9,12,12,21,11,12,8,12,7,9,8,15,8,9,7,11,8,11,10,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,21,14,21,12,14,12,20,11,11,9,14,9,13,12,23,12,12,8,12,7,9,8,14,8,9,8,13,8,11,11,23,12,12,8,12,7,9,8,13,7,8,6,9,6,9,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,30,16,16,11,15,9,10,8,14,8,8,7,11,7,9,8,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,28,14,14,10,14,8,9,8,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,10,9,15,10,15,14,28,14,14,10,15,9,10,8,14,8,8,6,9,6,7,7,13,7,8,6,9,5,6,6,10,6,7,6,9,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20 +-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,3,6,4,4,3,5,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,15,15,30,15,15,11,15,9,10,9,15,8,8,7,10,7,10,9,16,8,8,6,10,6,7,6,12,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,5,11,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,12,7,8,6,9,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,8,5,6,5,6,4,6,6,11,6,6,4,6,4,4,4,7,5,6,4,7,5,6,6,10,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,19,10,10,7,10,6,7,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,17,9,10,8,12,7,9,8,14,8,10,9,16,11,16,15,29,15,15,11,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,7,5,6,5,8,5,6,4,7,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,6,5,7,4,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,8,6,9,6,7,7,13,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,6,5,8,6,8,8,16,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,11,23,12,12,8,12,7,9,7,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,8,5,6,6,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21 +-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,6,4,5,5,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,6,4,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,4,3,4,5,5,3,3,3,4,3,3,3,7,4,4,3,5,4,5,6,10,6,6,5,8,5,7,7,11,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,17,17,36,18,18,12,18,10,12,10,18,10,11,8,12,8,11,11,19,10,11,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,10,7,11,7,9,8,16,9,9,7,10,6,7,6,12,7,7,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,6,9,5,6,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,13,7,8,6,9,5,6,5,11,6,7,6,10,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,12,7,7,6,10,7,10,9,18,9,9,7,10,6,6,5,10,6,6,5,9,6,8,8,13,7,8,6,8,5,6,6,11,6,7,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,6,8,8,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,27,14,14,10,14,8,10,9,14,8,8,6,9,6,8,8,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,5,4,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,5,11,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,6,6,10,6,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,7,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,4,2,2,3,6,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,5,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,9,15,10,14,15,30,16,16,11,16,9,11,9,15,9,10,7,11,7,10,9,17,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,17,9,8,6,8,5,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,7,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,21,11,12,8,12,7,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,12,7,7,5,6,4,6,5,10,6,6,6,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,14,8,10,9,16,11,16,15,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,7,5,6,5,6,4,6,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,12,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,7,4,5,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,12,22,12,12,8,11,7,9,8,12,7,8,6,9,6,8,8,14,8,8,6,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,9,17,9,9,6,9,5,6,6,9,5,6,5,7,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,9,6,6,5,8,6,7,7,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,17,9,10,7,10,6,8,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,8,9,7,10,6,8,8,13,8,10,8,15,10,15,14,27,14,14,10,14,8,10,9,15,8,9,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18 +-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-2,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,6,6,5,3,3,3,4,3,4,3,5,3,4,4,6,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,15,15,28,15,15,10,14,8,10,8,13,7,8,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,10,8,14,10,15,15,23,12,12,9,13,8,10,9,15,9,10,8,14,9,13,13,24,13,14,10,16,10,14,13,23,13,16,14,25,17,26,26,54,28,28,20,30,17,20,17,31,17,18,14,22,14,19,17,32,17,17,12,18,11,14,13,24,13,15,12,19,12,17,16,29,15,15,10,14,8,9,8,14,8,9,7,12,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,16,11,15,15,21,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,10,18,10,11,9,16,10,14,14,26,14,14,9,13,8,9,8,13,7,8,6,10,7,10,10,18,10,10,8,13,9,12,12,22,13,15,12,20,14,20,20,38,19,19,13,19,11,13,11,20,11,12,9,14,9,12,12,23,12,13,10,15,9,11,10,17,10,11,9,14,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,9,6,9,9,16,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,34,17,17,12,17,10,12,10,16,9,10,8,12,8,11,10,19,10,11,8,13,8,10,10,18,10,12,10,18,12,17,17,30,16,16,12,18,11,13,11,19,11,12,10,16,11,15,15,29,16,17,13,20,12,16,15,28,16,19,15,26,18,26,27,51,26,26,18,27,15,17,14,25,13,14,11,18,11,15,14,26,14,14,10,14,8,10,9,17,10,11,9,15,10,14,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,9,16,9,9,7,11,7,8,7,12,7,8,7,11,8,11,11,24,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,12,6,6,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,12,8,12,7,9,9,16,9,10,8,13,9,13,12,23,12,12,9,14,9,12,11,21,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,22,12,13,9,14,9,12,11,21,11,11,8,13,8,10,8,14,8,10,8,13,9,12,12,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,9,17,9,9,7,11,7,9,9,17,9,10,8,14,10,14,14,24,12,12,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,20,11,11,8,13,8,10,9,15,8,9,7,11,7,10,10,19,11,12,9,14,9,11,10,18,11,13,11,19,13,20,20,38,20,20,14,20,12,15,13,23,12,13,10,17,11,14,13,24,13,13,9,13,8,9,8,13,7,8,7,12,8,11,11,22,12,12,8,11,7,9,8,13,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,17,11,15,15,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,8,7,12,7,8,6,9,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,7,10,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36 +-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,7,5,8,8,14,8,8,5,8,5,6,5,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,15,15,11,16,9,11,9,16,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,15,8,8,6,7,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,7,5,7,8,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,8,14,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,6,9,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18 +-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,14,14,28,15,15,11,16,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,16,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,5,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,6,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,6,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,21,11,10,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,7,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,6,6,5,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,4,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,6,9,5,6,6,10,7,9,8,16,8,8,5,8,5,6,5,9,5,5,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-9,-19 +0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,6,4,4,4,6,4,6,5,9,5,6,5,7,4,6,5,9,6,6,6,9,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,6,5,9,5,6,5,8,5,7,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,5,5,6,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,8,4,4,4,6,4,5,5,8,4,5,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,5,4,4,3,5,4,4,3,5,4,5,5,7,4,4,3,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,4,4,4,7,5,6,4,7,5,7,8,13,7,7,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,5,6,5,8,6,9,9,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,14,8,8,6,10,6,8,7,14,8,9,8,14,10,15,15,30,15,15,11,16,10,12,10,18,10,10,7,11,7,10,10,18,10,10,7,10,6,8,7,14,8,9,7,12,8,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,9,14,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,8,6,11,6,7,5,8,5,7,7,11,6,7,5,8,5,6,5,10,6,6,5,8,6,8,7,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,10,6,7,5,8,6,8,8,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,10,7,10,6,7,7,12,7,8,6,10,7,10,9,16,9,9,7,10,6,8,8,16,9,10,9,15,10,15,15,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,6,9,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,9,7,12,8,11,11,22,12,12,9,13,8,9,7,13,7,8,6,9,6,8,8,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,5,6,5,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,12,7,9,8,12,7,7,5,8,6,8,8,14,7,7,5,7,4,5,4,7,5,6,5,8,5,7,7,14,7,7,5,6,4,4,4,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,3,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,7,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,6,6,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,11,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,8,7,11,8,12,11,22,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,7,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,6,5,7,4,5,5,8,5,6,5,8,6,8,9,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,6,4,4,4,8,5,5,4,5,4,6,6,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,5,8,5,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,4,4,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,8,4,4,3,6,4,4,3,6,4,4,3,4,3,5,5,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,4,7,5,6,6,10,5,5,4,6,4,4,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,6,5,9,6,7,6,10,7,11,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,6,5,7,5,6,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,9,6,8,8,14,7,7,5,8,5,7,6,10,6,6,5,8,6,8,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,11,8,13,8,10,9,16,10,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,12,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,20,10,10,7,11,7,8,6,10,6,7,6,9,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,8,7,16,8,8,6,9,5,6,5,8,5,5,4,7,5,7,7,15,8,9,7,10,6,8,7,12,7,8,7,13,9,14,14,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,7,11,6,7,5,7,5,6,6,11,7,8,6,10,7,9,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,24,12,12,8,12,7,8,7,12,7,8,6,9,6,8,8,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,19,10,11,8,12,7,9,8,14,8,10,8,13,8,11,11,19,10,10,8,12,8,11,10,18,10,12,10,18,12,18,18,38,19,19,13,20,11,12,10,17,10,11,8,13,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,13,7,8,6,10,7,9,8,14,8,9,7,12,8,12,12,28,15,15,10,14,8,10,9,16,9,10,7,11,7,9,9,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,6,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,13,7,7,5,7,4,5,5,9,5,6,5,7,5,6,6,15,8,9,7,10,6,7,6,11,6,7,6,9,6,7,7,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,10,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,11,7,10,10,20,10,10,7,9,5,6,5,8,4,4,3,5,4,6,6,8,5,5,3,4,3,4,4,7,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-25 +-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,12,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,9,6,7,6,10,6,8,7,11,8,11,12,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,5,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,5,6,4,5,5,8,5,6,5,9,6,9,9,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,15,8,8,5,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,24,12,12,9,13,7,8,6,12,7,7,6,9,6,8,7,14,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,4,3,5,3,4,3,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,9,5,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,19,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,6,5,8,5,5,5,8,6,8,8,13,7,8,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,6,9,6,9,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,6,5,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,10,7,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,9,9,14,8,8,6,9,5,6,6,11,6,7,6,10,7,9,8,17,9,10,8,12,8,10,9,13,8,10,9,16,11,16,16,28,15,15,11,16,9,11,9,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,14,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,6,12,7,9,7,12,8,12,12,18,10,10,7,9,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,7,5,6,5,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,14,31,16,16,11,16,9,10,8,16,9,9,7,12,8,11,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,9,5,6,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,5,5,8,6,9,9,12,7,7,5,6,4,5,4,6,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,12,7,8,6,10,7,10,10,26,14,14,9,13,8,9,7,14,8,9,7,10,6,8,7,11,6,6,5,8,5,6,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,7,4,5,4,9,5,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,7,10,6,7,6,10,7,10,11,18,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,5,8,5,7,7,13,7,7,5,6,4,4,3,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,7,5,8,5,7,6,9,6,7,6,11,8,11,11,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,6,4,4,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,10,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,4,4,9,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,6,7,6,9,6,9,9,21,11,11,7,11,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,4,6,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,7,5,7,7,18,10,10,6,9,5,6,5,9,5,6,5,7,4,6,5,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,4,6,6,8,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,13,8,10,8,15,10,15,15,27,14,14,10,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,10,6,7,6,9,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,11,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,19,10,10,7,10,6,7,6,10,6,7,5,9,6,8,7,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,7,13,9,12,12,30,15,15,10,15,9,10,8,15,8,8,6,10,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,5,8,5,6,5,9,5,6,4,6,4,4,4,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,26,14,14,9,13,7,8,7,12,7,8,6,9,6,8,7,10,5,5,4,6,4,5,4,8,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,8,9,7,10,6,8,7,13,8,9,7,12,8,12,12,29,15,15,10,14,8,10,8,15,8,8,6,10,7,9,9,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,6,9,6,7,6,10,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,9,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,5,4,5,6,12,6,6,4,5,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,9,6,9,8,15,9,11,9,16,11,17,17,28,14,14,10,14,8,10,9,17,9,10,8,12,8,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,14,26,14,14,10,14,9,11,10,18,10,11,8,13,9,12,12,22,12,13,10,15,10,14,14,26,15,18,15,27,19,28,28,51,26,25,17,25,14,16,13,23,12,13,9,14,9,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,15,30,16,16,11,17,10,12,10,17,9,10,8,13,8,11,10,19,10,11,8,13,8,11,10,19,11,12,10,18,12,18,19,27,14,15,10,15,9,11,9,15,8,9,7,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,8,12,7,9,8,15,8,9,7,12,9,13,13,24,13,13,10,16,10,12,11,21,12,14,12,20,14,20,20,29,15,15,11,17,10,12,10,17,9,9,7,11,7,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,10,11,8,12,7,8,7,13,7,8,6,10,7,10,10,18,10,10,8,13,8,10,10,18,10,11,9,14,10,14,14,35,18,18,12,17,10,12,11,19,10,11,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,10,9,15,10,15,15,28,15,15,11,16,10,12,11,19,10,11,8,13,9,12,12,23,13,14,10,16,10,13,12,22,13,15,13,22,15,23,23,56,28,28,19,29,17,20,17,30,16,17,13,20,13,17,16,31,16,16,12,18,11,13,12,21,11,12,10,16,10,14,14,27,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,24,13,14,10,15,9,12,11,21,11,12,10,16,11,15,15,20,11,12,9,13,8,10,8,14,8,8,7,11,7,8,8,14,8,9,7,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,12,7,7,6,10,7,11,11,20,11,12,9,15,9,12,11,20,11,12,10,17,11,16,16,49,25,25,17,25,14,16,13,22,12,12,9,14,9,11,10,18,10,10,7,11,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,10,6,6,5,8,5,5,4,6,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,8,6,8,9,25,13,13,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,9,7,12,8,10,10,18,11,13,11,18,13,19,19,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,13,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,8,6,8,5,7,6,10,6,8,7,11,8,11,10,22,12,12,9,13,8,9,8,13,7,7,5,6,4,5,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,2,2,2,2,4,3,4,3,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-7,-12,-7,-11,-10,-21,-11,-13,-11,-21,-13,-20,-20,-42 +0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,14,8,10,8,14,10,15,15,26,14,13,9,13,8,9,7,12,7,7,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,7,4,4,4,5,4,6,5,10,6,6,4,7,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,7,6,12,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,11,6,7,6,8,6,8,8,11,6,6,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,6,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,17,9,10,7,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,9,6,8,8,14,8,10,8,15,10,15,15,26,14,14,9,14,8,9,8,12,7,8,6,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,8,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,7,7,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,10,5,5,4,7,5,6,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,5,4,6,5,10,6,6,4,6,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,6,8,5,6,6,12,7,8,7,11,8,12,12,29,15,15,10,16,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,12,7,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,10,6,7,6,8,6,8,8,11,6,6,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,24,12,12,9,13,7,8,7,12,7,7,5,8,5,7,6,10,6,6,5,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,5,4,6,4,6,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,3,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 +0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,6,9,5,5,4,7,5,7,7,12,7,7,5,6,4,5,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,12,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,15,9,11,9,16,11,16,15,26,14,14,10,14,8,10,8,13,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,7,6,8,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,7,7,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,6,10,6,7,5,8,5,5,5,9,5,6,4,6,4,5,4,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,6,8,7,18,9,9,6,9,5,6,5,10,6,6,4,6,4,6,5,10,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,12,12,28,15,15,11,16,10,12,10,15,8,8,6,10,7,9,9,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,5,6,6,8,5,6,5,7,5,6,6,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,12,12,8,12,7,9,8,13,7,8,6,9,5,6,6,11,6,7,5,7,5,6,5,8,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-11,-23 +0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,7,9,6,7,6,9,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,4,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12 +0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,3,2,3,2,3,2,3,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,6,4,5,5,7,5,6,5,7,5,7,7,17,9,9,6,9,5,6,5,9,5,6,5,7,4,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-7,-15 +-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,17,9,10,7,10,6,7,6,9,5,6,4,7,4,6,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-6,-13 +-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,8,5,7,6,11,7,8,6,10,7,11,11,18,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,9,8,14,8,8,7,11,7,9,9,17,10,11,8,13,8,11,10,17,10,12,10,16,11,15,15,28,15,15,10,15,9,11,9,16,9,9,6,9,6,7,7,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,10,7,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,11,19,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,3,3,3,4,3,4,4,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,8,11,11,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,12,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,7,5,8,6,8,7,11,6,7,5,7,4,5,5,9,5,6,5,9,6,7,7,15,8,9,6,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,10,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,26,14,14,10,15,9,10,9,15,8,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,7,10,10,16,9,9,7,10,6,8,7,11,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,9,5,6,5,8,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,1,1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,6,5,7,5,6,6,9,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,11,6,6,5,7,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,9,16,8,8,6,9,5,6,6,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,3,4,4,9,5,5,3,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,4,4,8,5,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,3,5,3,2,2,4,3,4,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,6,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,18,10,10,7,10,6,6,6,9,5,6,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,9,5,6,4,5,3,4,3,4,3,4,3,3,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,2,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,4,3,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,12,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,7,7,5,7,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,5,3,3,2,4,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,4,5,5,6,4,4,4,6,4,5,5,9,5,6,4,6,5,7,7,14,7,7,5,8,5,7,7,11,6,7,6,9,6,8,7,12,7,7,6,10,7,9,8,14,8,9,7,12,8,12,12,18,9,9,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,13,7,7,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,13,7,7,5,6,4,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,7,4,5,5,8,6,8,8,22,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,11,7,8,7,13,7,7,5,8,5,6,5,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,3,2,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,9,5,5,3,4,3,3,2,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,4,3,3,3,5,4,5,5,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-1,-1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,6,11,6,7,5,8,5,7,7,12,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,4,7,5,7,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,5,5,3,4,3,3,2,2,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,9,6,8,7,11,6,7,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-5,-2,-2,-1,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,6,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,27,14,14,10,16,9,11,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,11,20,11,13,11,19,13,20,20,28,14,14,9,13,8,9,7,12,7,8,6,9,6,8,7,12,7,7,6,9,6,7,7,12,7,8,6,10,7,10,9,13,7,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,10,7,11,11,24,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,6,5,9,6,9,9,17,9,10,8,12,7,9,8,14,8,10,8,13,9,13,13,23,12,12,8,11,7,8,6,10,6,7,5,8,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,16,8,8,5,7,4,5,5,8,5,5,4,7,4,5,5,8,5,5,4,7,5,7,7,12,7,8,7,11,7,10,10,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,11,6,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,9,7,12,8,10,9,17,10,11,9,15,10,15,15,32,17,17,11,16,10,12,10,17,9,10,8,12,8,10,9,16,8,8,6,8,5,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,13,7,7,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,3,4,3,3,3,4,3,3,3,5,3,4,4,17,9,9,6,8,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,4,6,6,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,5,3,3,2,3,2,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-13,-27 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,20,10,10,7,10,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 +-3,-1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,6,12,7,8,7,11,8,12,12,15,8,8,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,5,7,7,13,7,8,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,5,3,4,4,6,3,3,2,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,21,11,10,7,11,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,6,4,5,5,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,5,6,11,6,5,4,5,3,4,4,6,4,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,10,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,4,5,5,9,5,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,15,8,7,5,8,5,6,5,9,5,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,5,6,4,4,3,5,4,5,5,9,5,6,5,8,6,8,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,14,8,8,6,10,6,7,5,8,5,5,4,6,4,5,5,11,6,5,4,5,4,5,4,7,4,4,3,4,3,5,5,10,5,5,3,4,3,4,3,6,4,5,4,6,4,6,6,10,6,7,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,3,8,5,5,4,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,4,3,4,3,4,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,8,5,6,5,7,5,6,6,22,12,12,8,12,7,9,8,13,7,8,6,8,5,7,6,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,12,7,7,5,6,4,5,5,9,5,5,4,5,4,5,5,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,14,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14 +-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,4,4,5,3,4,3,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,4,14,8,8,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,6,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8 +-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,7,5,8,8,15,8,7,5,7,5,6,5,8,5,6,5,7,5,6,5,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,12,8,11,11,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,7,5,6,5,8,5,5,5,8,6,9,9,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,3,4,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,6,10,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,17,9,9,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,11,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,9,5,5,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,5,4,6,5,7,7,12,7,9,8,14,10,14,13,25,13,13,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,7,12,7,7,6,10,7,10,10,24,13,13,9,12,7,9,8,14,8,9,7,12,8,12,12,24,13,13,10,15,9,11,10,19,11,13,11,19,13,20,20,19,10,10,7,11,6,7,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,9,5,6,6,10,6,7,6,9,6,8,8,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,15,10,15,15,15,8,8,6,9,5,5,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,5,8,6,8,8,31,16,16,11,17,10,11,9,16,9,10,7,11,7,9,9,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,7,5,6,6,10,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,9,8,14,8,8,6,9,6,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,8,5,5,4,5,4,5,5,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,10,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,11,6,6,4,7,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,18,10,10,7,10,6,7,6,9,5,6,4,7,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,8,5,5,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,9,6,9,9,17,9,9,6,8,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,16,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,7,13,8,10,8,13,9,14,14,12,7,7,5,8,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,4,2,2,2,3,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,21,11,12,8,12,7,8,6,10,6,6,5,8,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,12,12,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,18,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +-2,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,8,7,12,8,12,12,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,12,11,23,12,13,10,15,9,12,11,20,11,13,11,20,13,19,19,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,4,3,6,4,4,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,6,8,8,16,9,9,6,8,5,5,5,8,5,6,5,8,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,8,13,8,10,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,7,5,7,7,13,7,7,5,8,5,5,4,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,6,4,4,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,32,16,16,11,16,9,10,8,15,8,8,6,10,6,8,7,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,21,11,11,8,12,7,9,8,11,6,6,5,8,5,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,4,4,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,8,8,14,8,9,8,14,9,13,13,11,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,5,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,4,3,4,4,21,11,11,8,11,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,15,8,8,6,8,5,6,5,8,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-10 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,14,9,12,11,21,12,14,11,20,14,20,19,16,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,13,8,10,9,14,10,14,14,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,8,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,13,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,7,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,6,4,4,4,8,5,5,3,5,3,4,3,4,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,1,0,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,21,12,12,9,14,9,12,11,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,14,8,10,9,14,10,14,14,14,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,13,9,12,13,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,4,4,3,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,5,4,7,5,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,4,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,20,11,11,7,10,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,7,6,10,7,10,9,17,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,20,11,11,8,13,9,12,11,21,12,15,12,21,15,22,22,42,21,21,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,21,21,40,21,22,15,23,14,18,16,28,15,17,13,22,14,20,19,37,20,21,16,25,16,22,21,39,22,27,22,39,26,38,37,28,14,14,10,15,9,10,8,14,8,8,6,10,6,7,6,11,6,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,5,4,7,5,8,8,14,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,28,15,15,10,14,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,8,7,11,8,12,12,22,12,13,10,17,11,14,14,26,15,18,15,27,18,27,27,27,14,14,10,15,9,11,9,15,8,8,6,10,7,9,9,16,9,9,6,8,5,7,6,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,6,5,9,5,5,4,7,4,5,5,8,5,6,5,9,7,10,10,20,11,11,8,12,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,7,6,10,7,11,11,21,11,11,8,11,7,8,6,10,6,7,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,60,30,30,21,31,17,20,17,29,16,17,13,22,14,18,17,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,21,11,11,8,13,8,9,8,13,7,7,5,8,5,7,7,12,7,8,6,10,6,8,8,15,8,9,7,12,8,12,12,24,13,14,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,13,9,14,9,12,11,21,12,14,11,19,12,17,17,33,17,17,12,17,10,11,10,17,9,10,8,13,9,13,12,23,12,13,10,16,10,13,12,22,13,15,13,24,16,24,24,42,21,21,14,21,12,14,11,18,10,10,7,11,7,10,10,18,10,10,7,10,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,9,6,7,6,9,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,11,11,42,22,22,15,22,13,15,13,24,13,14,10,16,10,13,12,21,11,12,9,14,9,11,10,18,10,11,9,16,11,15,15,30,15,15,11,16,10,12,11,19,10,11,8,13,8,11,10,19,10,11,8,11,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,3,3,4,3,3,3,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-16,-33 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,4,4,5,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,12,14,12,20,14,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,6,9,6,8,7,14,8,10,8,14,10,14,14,14,8,8,6,8,5,6,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,13,9,12,13,22,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-16 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,5,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,10,6,6,5,6,4,6,6,11,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,12,8,10,10,20,12,14,11,19,13,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,10,6,6,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,5,9,6,8,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,17,9,9,6,9,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,13,22,12,12,8,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 +0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,6,7,7,14,8,10,8,13,9,13,13,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,10,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,20,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11 +0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,3,2,2,1,0,0,0,-1,12,6,6,5,7,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,3,3,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,5,8,5,7,7,10,6,6,4,6,4,6,6,12,7,9,7,12,8,12,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,12,12,8,12,7,9,8,15,9,10,8,12,8,11,11,20,11,11,8,12,8,11,10,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,14,7,7,5,6,4,4,3,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,13,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,4,6,6,30,16,16,11,16,9,11,9,14,8,8,6,10,7,9,9,18,9,9,6,9,5,6,5,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,5,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,9,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,6,12,7,8,7,13,9,13,13,21,11,10,7,10,6,7,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,5,7,7,21,11,12,8,12,7,8,7,11,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-8,-17 +0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,9,5,6,5,7,5,7,6,11,6,7,5,7,5,7,6,12,7,8,6,11,8,11,11,9,5,5,4,5,3,4,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,4,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,11,6,5,4,6,4,4,3,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9 +0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,8,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,5,9,6,7,6,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,9,13,13,11,6,6,4,6,4,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,9,9,10,6,6,4,6,4,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,6,4,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,4,4,5,4,6,6,10,6,6,5,6,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,14,7,7,5,7,4,5,5,7,4,4,3,6,4,6,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,6,5,11,6,7,5,6,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,2,1,0,1,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-3,-5,-5,-10 +1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,7,4,5,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,11,6,7,5,7,5,7,6,11,7,8,6,10,7,11,11,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,5,8,6,7,7,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,1,1,1,0,1,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,1,0,0,0,0,13,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,7,4,3,2,3,2,3,3,4,3,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,8,6,8,8,14,8,9,7,12,9,13,13,24,12,12,8,11,7,8,7,12,6,6,5,7,5,7,7,12,7,7,6,9,6,7,6,10,6,6,5,9,7,10,10,22,12,12,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,10,17,12,17,18,16,8,8,6,9,5,6,5,7,4,4,3,3,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,12,14,8,8,6,9,5,6,5,9,5,6,5,7,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,31,16,16,11,17,10,12,10,16,9,9,7,10,7,9,9,19,10,11,8,11,6,7,6,10,6,6,5,8,5,6,6,9,5,4,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,9,5,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,6,10,6,8,7,11,7,10,10,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,14,10,14,14,18,9,9,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,6,5,7,4,5,5,13,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,4,5,5,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,7,16,9,9,6,9,5,6,6,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,10,6,6,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,9,10,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,0,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,8,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,5,5,9,5,5,4,7,5,8,8,14,7,7,5,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,7,5,6,6,12,7,8,6,9,5,6,6,12,7,8,6,11,7,10,10,9,5,6,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,7,4,4,4,6,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8 +1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,0,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,10,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,4,3,7,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,7,6,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,6,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,4,2,2,2,1,1,2,2,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,5,7,4,5,4,7,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,11,8,11,11,9,5,6,4,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,6,4,4,3,5,3,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,8,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,2,2,1,1,2,2,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,3,3,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,4,4,4,7,5,6,6,5,3,4,3,4,3,3,3,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,7,4,4,3,5,3,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,14,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,7,8,5,5,4,6,4,6,6,11,6,7,6,10,7,9,9,16,9,10,7,11,7,10,10,18,10,11,9,16,11,16,16,27,14,14,10,14,8,8,7,11,6,6,5,8,5,7,7,12,7,7,5,8,5,5,5,8,5,6,5,9,6,9,9,20,11,11,8,12,8,10,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,10,18,10,12,11,19,13,19,19,16,9,9,6,8,5,5,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,6,4,6,6,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,3,2,3,2,3,3,10,6,6,4,5,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,5,9,6,7,6,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,5,5,15,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,8,8,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,38,20,20,14,20,12,14,12,20,11,12,9,14,9,11,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,4,7,7,9,5,6,4,6,4,5,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,7,10,10,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,7,11,7,8,8,14,8,10,8,14,10,14,14,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,14,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,14,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,20,10,10,7,10,6,8,7,13,7,8,6,10,6,8,8,14,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,4,5,3,3,3,4,3,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-6,-9,-9,-19 +0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,3,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,11,6,6,5,6,4,5,5,8,4,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,3,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,6,4,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,6,3,3,3,4,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,6,6,5,3,3,2,4,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,2,1,1,1,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,10,6,6,5,7,5,7,6,11,7,8,6,10,7,10,10,15,8,8,6,8,5,5,4,8,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,11,7,8,6,10,7,11,11,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,3,7,4,4,4,6,4,5,4,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,5,3,3,3,4,3,3,3,3,2,3,3,4,3,5,5,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-11 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,13,7,8,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,3,3,3,4,3,6,4,4,4,6,4,6,6,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,3,3,2,3,2,3,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,5,3,3,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,15,8,9,6,9,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,3,4,3,5,4,5,4,2,2,2,1,1,1,2,2,2,2,2,2,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,9,8,13,9,13,12,18,10,10,7,9,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,6,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,13,8,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,5,3,2,2,2,2,2,2,4,3,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,3,2,3,3,4,4,7,4,5,4,5,4,6,6,7,4,4,3,3,2,3,2,3,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,28,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,13,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,4,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,9,9,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,5,4,6,5,7,7,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,4,4,7,5,6,6,14,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,4,3,5,5,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,8,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,8,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,2,1,1,1,1,1,1,1,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,4,3,4,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,8,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,-3,-1,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,12,7,9,7,12,8,12,12,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,3,5,3,2,2,2,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,11,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,5,3,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,5,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,12,7,7,5,8,5,6,5,10,6,6,4,7,5,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,8,5,7,7,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,5,4,6,5,5,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,4,2,2,2,2,2,2,2,5,3,4,3,5,4,6,6,5,3,4,3,3,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15 +3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,5,3,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,4,3,3,2,2,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,9,9,19,10,11,8,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,18,10,11,8,12,8,11,11,20,12,14,12,21,15,22,22,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,9,10,9,15,10,13,13,25,13,14,10,16,10,13,13,24,14,16,13,23,15,21,21,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,4,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,11,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,5,5,8,6,9,9,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,47,24,23,15,22,13,15,12,21,12,13,10,15,10,13,12,21,11,11,8,11,6,7,6,11,6,7,6,11,8,11,10,19,10,10,8,12,7,9,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,7,10,10,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,16,8,8,6,8,5,6,5,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,4,19,10,11,8,11,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,14,9,12,12,23,12,13,9,13,8,9,8,14,8,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-9,-8,-15,-10,-16,-16,-33 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,6,8,6,7,7,12,7,8,7,12,8,11,11,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,1,1,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,5,5,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,7,6,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,8,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,6,8,7,12,7,8,7,12,8,11,11,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,1,1,2,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,5,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,7,8,6,8,5,6,6,11,6,6,4,7,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,5,5,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,4,6,6,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,17,9,9,6,9,5,6,5,8,5,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,2,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,4,3,3,2,2,2,2,1,1,1,1,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,11,8,12,12,13,7,7,5,8,5,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,7,12,8,11,11,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,5,7,7,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,25,13,13,9,13,8,9,7,12,7,8,6,9,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,4,3,3,2,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,3,3,7,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,1,1,1,2,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16 +2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,4,5,4,5,4,7,4,5,4,7,5,7,7,1,1,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,4,3,3,2,2,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,4,6,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,3,4,3,5,3,4,3,4,3,4,5,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,18,10,10,7,9,6,7,6,9,5,6,5,7,4,5,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,3,2,2,2,3,3,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,3,6,4,6,5,8,4,4,3,5,3,4,3,4,3,3,2,3,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11 +2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,2,2,2,1,1,1,2,2,3,2,2,2,2,2,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10 +2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,8,6,10,6,8,8,14,8,9,8,13,9,14,14,18,9,9,6,9,5,6,6,10,6,6,5,7,5,6,5,7,4,4,3,5,4,6,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,12,7,8,6,9,6,8,8,14,8,9,8,13,9,12,12,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,7,5,3,4,3,4,3,3,2,2,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,6,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,5,3,3,2,3,2,2,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,29,15,14,10,14,8,10,8,14,8,8,6,9,6,8,7,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,1,1,0,0,0,0,0,0,0,1,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,5,3,4,3,4,3,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19 +2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3,5,3,4,3,5,4,5,5,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +3,2,2,1,0,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,7,5,6,5,8,5,7,7,10,5,5,4,6,4,4,4,9,5,5,4,6,4,6,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,9,7,10,10,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,19,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,4,4,12,7,7,5,8,5,5,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,3,3,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,6,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,8,5,5,4,6,4,5,4,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,7,4,4,4,6,4,5,5,9,5,6,4,6,4,5,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-4,-2,-4,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,4,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,4,2,3,3,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,6,4,4,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,17,9,9,7,10,6,7,6,9,5,6,5,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,10,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,5,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,4,3,4,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,6,6,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,16,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14 +4,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,3,5,3,3,3,5,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,11,8,12,13,18,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,18,10,11,8,12,8,10,9,16,9,11,9,16,11,16,17,25,13,14,10,14,8,10,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,9,22,11,11,8,11,7,8,6,10,6,6,5,7,5,7,7,14,8,8,7,11,7,10,9,17,10,12,10,16,11,16,16,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,5,8,6,8,7,3,2,2,2,2,2,2,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,8,4,4,3,3,2,2,2,3,2,3,3,5,4,5,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,31,16,17,12,17,10,13,11,20,11,11,9,14,9,11,11,20,11,11,8,11,6,7,6,10,6,7,5,8,6,8,7,17,9,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,9,8,18,9,9,7,10,6,7,6,11,6,6,4,5,3,4,4,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,6,4,6,6,14,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,5,8,6,8,8,13,7,7,5,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,11,7,9,8,13,7,7,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,4,7,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,8,19,10,10,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,10,6,6,4,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-13,-14,-29 +2,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,5,9,5,6,5,9,6,9,9,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +2,1,1,1,2,2,2,1,0,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,5,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,5,11,6,7,5,7,5,6,6,10,6,6,5,9,7,10,10,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,9,5,6,4,6,4,5,4,8,5,6,5,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,6,9,5,6,5,9,7,10,10,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,17,9,10,7,10,6,8,7,12,6,6,5,8,5,7,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-7,-4,-7,-7,-15 +2,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,5,4,5,4,6,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,5,4,5,5,7,4,5,4,7,5,7,7,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7,4,4,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-3,-5,-3,-5,-5,-11 +2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,4,8,5,5,4,6,4,4,4,7,4,5,5,8,6,9,9,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,8,5,7,6,11,6,7,6,10,7,11,11,17,9,8,6,8,5,6,6,10,6,6,5,7,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,10,7,11,11,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,3,4,4,6,4,4,4,4,3,3,2,2,2,3,3,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-2,-4,-4,19,10,10,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,3,3,3,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,4,3,7,4,4,4,6,4,6,6,10,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-9,-9,-19 +2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,4,3,3,3,3,3,4,3,8,4,4,3,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,5,6,4,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,7,5,6,6,9,5,6,5,8,6,9,9,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,6,4,6,4,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,4,3,5,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15 +3,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,13,7,8,6,8,5,6,6,10,6,7,6,10,7,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,24,12,12,8,12,7,8,7,13,7,7,6,9,6,8,8,15,8,9,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,7,8,6,9,6,7,7,13,7,8,6,10,7,9,9,16,9,11,9,15,10,15,15,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,1,0,0,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,28,15,15,11,16,10,12,10,17,9,9,7,11,7,9,8,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,5,8,5,5,4,6,4,5,4,7,4,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,4,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,5,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,9,5,5,4,7,5,7,7,9,5,5,4,6,3,3,3,4,2,2,2,3,2,3,4,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-13,-6,-7,-5,-10,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,4,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,6,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,8,6,10,7,10,10,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,7,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,3,2,2,2,3,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,5,3,4,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,-1,0,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,14,8,7,5,7,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,6,9,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,3,2,3,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,5,6,5,10,6,6,5,8,5,7,7,14,8,8,7,11,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,8,6,10,7,10,9,16,9,9,7,10,6,7,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,8,7,9,5,6,5,8,6,8,7,13,7,7,6,9,6,9,8,15,9,10,8,14,9,13,13,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,3,2,3,2,3,2,3,2,2,1,1,1,2,1,1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,26,13,13,9,14,8,10,9,15,8,8,6,9,6,7,7,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,8,5,6,5,8,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,6,7,11,6,7,5,7,4,5,4,6,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-30 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-4,-5,-4,-9,-4,-6,-4,-9,-6,-9,-9,-19 +1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,11,7,10,9,16,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,8,6,8,6,8,8,13,8,9,8,14,10,14,13,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,14,9,14,8,10,9,14,8,8,6,9,6,8,8,14,8,8,6,7,5,6,6,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,8,6,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,1,1,1,2,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,25,13,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,7,5,6,6,9,5,5,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,6,7,5,7,5,6,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,10,6,7,7,12,8,12,11,21,11,12,9,14,9,11,10,18,10,11,9,14,10,14,14,27,14,14,10,16,10,14,13,24,14,16,13,23,16,23,23,44,23,23,16,24,14,17,14,24,13,14,10,16,10,14,13,25,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,26,14,14,10,15,9,11,9,16,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,23,13,15,13,23,16,23,23,45,23,23,16,23,13,15,12,21,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,20,12,14,12,20,13,19,19,37,19,19,14,21,12,15,14,25,14,15,12,19,13,18,17,33,17,18,14,22,13,17,16,29,16,19,15,26,17,25,25,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,9,5,4,3,4,2,2,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-8,50,25,25,17,25,14,16,13,22,12,13,10,16,10,12,11,21,11,11,8,11,7,8,7,13,8,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,7,5,8,5,7,7,13,8,9,7,11,8,12,12,22,11,11,8,12,7,8,7,12,7,7,5,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,8,15,8,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,7,5,7,7,13,7,7,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,4,7,5,7,7,12,7,7,5,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-9,-12,-11,-22,-11,-13,-10,-19,-11,-16,-16,-32,-16,-17,-12,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-28,-28,-58 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,11,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,22,11,11,8,12,7,8,6,11,6,7,5,8,5,7,6,13,7,8,6,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,12,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,8,8,15,9,10,8,14,9,13,13,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,6,5,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,4,7,4,5,4,6,4,5,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,13,7,7,6,8,5,6,5,9,5,6,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,10,6,9,9,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,3,2,3,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,6,5,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,7,6,9,6,8,7,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,7,7,12,7,9,7,12,8,12,12,22,12,12,8,11,6,7,6,10,6,6,5,8,5,7,6,14,7,7,5,8,5,7,7,10,6,7,6,10,7,10,10,19,10,11,8,12,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,6,8,8,16,9,11,9,14,9,13,13,0,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,3,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,13,9,13,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,6,4,5,5,9,5,6,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,8,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-8,-6,-12,-8,-12,-13,-27 +2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-7,-15 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,5,3,3,2,4,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,7,5,7,7,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,3,2,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14 +3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,3,3,6,4,5,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,9,6,7,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,13,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,8,8,7,11,7,8,8,14,8,9,7,11,8,11,11,22,12,12,8,12,7,8,6,10,6,6,4,6,4,6,6,14,8,8,6,9,6,8,7,12,7,7,6,9,6,9,9,17,9,9,6,8,5,6,6,10,6,7,6,9,6,8,8,13,7,8,6,10,6,8,8,14,8,10,8,13,9,12,11,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,1,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,26,13,13,9,13,7,8,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,3,2,3,2,3,2,3,3,4,3,4,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,7,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,5,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-13,-13,-26 +2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,3,3,3,3,3,4,4,7,4,4,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,5,6,4,4,3,4,3,3,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,13,7,8,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,4,6,4,6,6,13,7,8,5,8,5,5,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,15,8,8,6,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,5,8,5,5,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,11,6,6,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,4,6,4,4,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,5,4,6,6,6,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,9,5,6,5,8,5,6,6,8,5,5,5,8,6,8,7,17,9,9,6,9,5,5,4,8,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,5,5,6,4,4,3,5,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,5,7,7,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,16,8,8,6,8,5,5,4,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,2,2,2,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,5,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,1,1,0,0,0,0,0,1,1,1,0,0,0,0,4,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,3,2,3,2,5,3,3,2,3,3,4,4,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16 +4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,4,3,3,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,7,4,5,5,7,5,8,8,16,9,9,6,9,5,6,6,9,5,6,4,6,4,4,5,8,4,4,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,3,4,4,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,2,3,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,2,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,9,5,6,4,6,4,4,4,8,4,4,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,0,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-12 +11,6,6,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,3,5,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,2,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,6,5,7,7,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,7,7,13,8,9,8,13,9,13,13,29,15,15,10,15,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,6,5,7,5,8,8,19,10,10,7,10,6,8,8,14,8,8,6,10,6,8,8,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,25,13,12,8,12,7,8,6,10,5,5,4,6,4,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,11,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,6,7,6,11,8,11,11,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,25,13,12,8,12,7,9,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,3,4,5,16,9,9,6,8,5,5,4,7,4,5,4,6,4,4,4,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,10,5,5,4,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,3,2,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,4,3,5,5,6,4,4,3,4,3,4,3,5,3,3,2,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,13,7,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,9,5,5,4,5,3,3,3,4,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,3,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,5,6,5,8,6,8,7,16,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,6,4,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +8,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,2,2,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,7,4,5,4,6,4,5,4,7,4,5,4,5,4,5,5,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,3,6,4,5,4,6,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,6,6,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,9,5,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7 +6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +11,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,0,0,0,1,1,1,2,2,4,2,2,2,3,2,3,3,7,4,5,4,5,3,3,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,8,5,6,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,8,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,7,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,13,7,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,3,2,1,1,1,1,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,1,1,1,1,1,2,7,4,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,2,6,4,4,3,3,3,4,4,6,4,5,4,7,5,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,5,5,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12 +6,4,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,4,5,3,4,4,11,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,5,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,7,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,7,4,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7 +6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +11,6,5,4,5,3,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,2,1,1,1,1,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,5,3,4,4,6,4,6,6,17,9,8,6,8,5,6,6,10,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,13,7,8,6,9,5,6,5,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,5,10,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,9,5,5,4,5,3,4,3,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,7,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,3,2,3,3,4,3,4,4,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,5,3,3,2,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-2,-2,-6 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,5,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,7,4,4,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,8,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,7,2,2,2,1,2,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,5,5,4,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,2,2,2,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,7,4,4,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,7,4,5,4,7,5,7,7,2,2,2,1,2,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +17,9,9,6,7,4,4,4,6,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,1,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,5,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,8,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,6,8,8,14,8,10,8,14,10,14,13,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,14,7,7,5,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,14,7,7,5,7,4,5,5,8,5,5,4,5,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,5,9,5,4,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,11,6,6,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,6,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,3,3,6,5,7,7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,5,3,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 +9,5,5,3,4,3,3,3,4,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,3,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,7,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +10,5,5,3,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,8,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,0,0,0,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +10,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,0,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,5,5,9,5,5,4,6,4,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,9,5,4,3,4,3,3,2,4,3,3,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,5,3,3,2,3,2,2,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,6,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,5,3,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,4,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,0,0,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,4,3,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,5,10,6,6,5,7,5,6,6,10,6,7,6,11,7,10,10,6,3,2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,9,5,5,4,6,4,4,3,4,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,6,4,6,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 +7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,5,3,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,5,3,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,2,2,2,4,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,2,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +10,5,5,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,12,7,7,5,6,4,4,4,7,4,4,4,6,4,6,5,7,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,5,4,5,5,9,5,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,5,7,7,6,3,3,2,3,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,5,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,2,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,2,3,3,4,3,4,4,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,2,1,1,1,1,1,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,16,8,8,6,9,6,8,7,12,7,8,6,10,6,8,7,13,7,7,5,8,5,7,7,12,7,7,6,10,7,11,11,7,4,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,1,1,1,1,1,0,0,-1,0,-1,0,4,3,3,2,3,2,2,2,2,1,1,1,0,0,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-3,-3,-12,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,1,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,3,4,4,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,3,2,1,1,1,1,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 +8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8 +8,4,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,13,7,7,5,7,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,-7,-3,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9 +6,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +8,5,5,3,4,3,4,3,3,2,2,2,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,4,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,9,5,6,4,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,4,3,3,3,14,8,8,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,4,3,4,3,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,9,5,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,-1,-1,0,0,0,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,1,1,1,1,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-11 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,12,6,6,5,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-3,-3,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-8 +12,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,21,11,10,7,10,6,7,7,12,7,7,5,8,5,6,6,11,6,7,5,7,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,5,3,3,3,4,3,5,5,8,5,6,5,9,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,9,5,3,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,9,5,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-7,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-12,-12,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,5,5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-4,-4,-9 +9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,14,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,5,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,5,3,2,2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-6,-4,-8,-5,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-3,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,7,7,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8 +14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,5,3,4,3,4,3,4,3,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,7,5,7,7,11,6,6,5,7,5,6,5,6,4,5,4,6,4,6,6,11,6,6,4,6,4,6,6,10,6,6,5,9,6,8,8,4,3,3,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,6,3,3,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-3,-1,0,0,0,1,1,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,4,3,5,5,8,4,4,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10 +14,8,8,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,4,3,4,3,4,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3,3,4,3,4,3,5,3,4,4,5,4,6,6,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,6,4,4,3,5,3,4,4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +14,8,8,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,19,10,10,7,9,6,7,6,10,6,6,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +26,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,36,19,19,13,20,12,14,12,20,11,12,9,14,9,12,11,19,10,11,8,11,7,8,8,14,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,3,4,4,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,5,6,11,6,7,5,8,5,7,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,9,16,9,10,9,15,10,15,15,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,9,5,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-6,-12,-8,-12,-12,-24,-12,-12,-7,-11,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-22,-22,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,0,1,1,1,0,1,1,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,8,8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-8,-9,-7,-13,-8,-13,-14,-29 +14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-4,-3,-6,-4,-6,-6,-14 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,6,4,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,6,5,8,5,6,5,7,5,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-7,-4,-6,-6,-14 +10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9 +15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,5,5,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,6,5,7,4,5,4,7,5,8,8,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-9,-4,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,3,4,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13 +9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7 +12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,14,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,-1,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9 +11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8 +20,10,10,7,9,6,7,6,9,5,5,4,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,11,6,7,5,7,4,5,4,5,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,21,11,11,8,11,6,7,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,7,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,1,1,1,1,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-2,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-7,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-14,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15 +11,6,6,4,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,3,3,3,3,4,4,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7 +13,7,7,4,5,3,4,4,5,3,3,3,3,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,13,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,3,2,3,3,3,3,4,4,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-4,-4,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6 +16,8,8,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,3,3,3,4,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,3,2,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,0,1,1,1,2,2,2,1,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,5,3,3,3,4,3,5,5,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11 +10,6,6,4,5,3,4,3,5,3,3,3,4,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7 +14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,1,1,2,2,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-5,-5,-11 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,5,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +27,14,14,10,14,8,9,8,13,7,7,5,8,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,6,5,9,5,6,6,10,7,9,9,18,9,9,6,8,5,5,5,8,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,5,5,12,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,4,5,5,8,6,8,8,28,14,14,9,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,6,9,6,7,6,9,5,6,5,9,6,8,7,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,5,3,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-16,-11,-17,-17,-17,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,7,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,5,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-2,2,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-21 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,15,8,8,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,15,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,0,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,0,0,0,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,5,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +19,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,6,4,5,4,6,5,7,7,14,7,7,5,6,4,4,3,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,5,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12 +12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,13,7,6,4,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +25,13,13,9,12,7,9,8,14,8,8,6,9,6,7,7,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,3,7,4,4,3,4,3,3,3,6,4,5,5,8,5,7,7,22,11,11,8,11,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,1,1,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,2,2,2,1,1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-7,-14,-9,-13,-13,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,-2,-2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +14,8,7,5,7,4,5,5,8,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,13,7,7,5,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,4,3,3,2,5,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10 +14,8,7,5,8,5,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,3,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +24,13,13,9,13,8,9,8,11,6,6,5,8,5,7,7,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,5,3,4,4,8,5,7,7,20,10,10,7,10,6,7,6,8,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-10,-5,-7,-6,-12,-7,-11,-11,-11,-5,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-2,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16 +16,9,9,6,9,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +23,12,12,8,13,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,19,10,10,7,10,6,6,5,9,5,6,4,5,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-6,-6,-10,-5,-6,-5,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +23,12,12,8,12,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +44,22,22,15,21,12,13,11,18,10,10,7,11,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,9,6,7,6,11,6,7,6,10,6,8,8,14,8,8,7,11,7,9,8,15,9,11,10,17,12,17,17,32,17,17,12,18,10,12,11,19,11,12,9,15,9,12,11,21,11,11,8,13,8,9,8,13,7,8,6,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,35,18,19,13,19,11,12,10,17,9,10,7,10,6,8,7,12,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,4,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,2,2,3,3,4,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,3,3,3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-6,-11,-7,-12,-12,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-11,-12,-9,-15,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-23,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,1,1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-15,-15,-30 +23,12,12,8,11,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,7,9,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +23,12,12,8,12,7,8,6,10,6,6,5,7,5,6,5,9,5,6,5,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,17,9,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,12,6,7,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +26,13,13,9,14,8,8,7,11,6,6,5,7,4,5,5,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,9,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,5,8,5,7,7,18,10,10,7,11,6,7,6,10,5,5,4,6,4,4,4,7,4,3,2,3,2,3,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,3,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,3,2,3,2,3,4,4,3,3,3,4,2,2,2,4,2,2,2,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15 +16,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,11,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +20,10,10,7,10,6,6,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,7,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 +18,9,9,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +32,16,16,11,15,9,10,8,14,8,8,6,9,6,7,6,13,7,7,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,11,6,7,5,7,4,5,5,9,6,7,6,11,7,10,10,22,12,12,8,12,7,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,1,0,0,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-14,-9,-15,-15,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,1,1,1,1,2,2,2,1,1,1,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18 +18,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-7,-4,-7,-8,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +20,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,7,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,11,6,6,5,6,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-6,-5,-9,-5,-8,-9,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 +16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +27,14,14,9,13,8,9,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,6,10,7,10,10,19,10,9,6,9,5,6,5,8,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,0,0,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +24,12,12,8,12,7,8,7,10,6,6,5,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,4,4,10,6,6,4,5,3,4,3,5,3,4,4,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,6,4,7,5,6,6,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-11,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 +23,12,12,8,12,7,8,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,4,4,10,5,5,4,5,3,4,3,5,3,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +44,22,22,15,22,13,16,13,23,12,13,9,13,8,10,9,17,9,10,7,11,7,8,7,11,6,7,6,9,6,9,8,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,10,18,10,11,8,12,7,9,8,13,8,9,7,11,7,10,9,20,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,7,6,10,6,8,7,11,7,10,10,25,13,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-9,-19,-10,-13,-11,-20,-13,-21,-21,-26,-12,-12,-8,-13,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,6,3,3,3,4,3,3,3,4,2,2,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,3,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-12,-25 +23,12,12,8,12,7,9,8,12,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-12 +24,12,12,9,12,7,9,8,13,7,8,5,8,5,6,5,10,6,6,5,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +27,14,14,10,14,8,10,9,15,8,9,6,9,6,7,6,13,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,6,6,5,7,5,7,6,13,7,7,5,8,5,5,5,10,6,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,16,9,9,6,9,6,7,6,8,5,5,4,6,4,6,5,8,5,5,3,4,2,2,2,4,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-17,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,4,3,3,3,4,3,3,2,2,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +22,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,11,6,6,5,7,4,4,4,7,4,4,4,7,5,6,5,11,6,6,5,6,4,4,4,8,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-6,-4,-6,-5,-11,-5,-6,-5,-11,-7,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,6,4,5,4,7,4,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +40,21,21,14,20,12,14,12,22,12,12,9,13,8,11,10,19,10,10,7,11,7,9,8,15,8,9,8,13,8,11,10,20,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,12,10,16,11,17,17,28,15,15,11,16,9,11,10,17,9,10,7,11,7,8,8,17,9,10,7,10,6,8,7,12,7,8,6,10,7,9,9,20,11,11,7,10,6,8,7,13,7,8,6,9,6,9,8,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,25,13,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,1,1,1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-7,-10,-10,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 +23,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,12,6,6,5,7,4,5,5,9,5,5,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,12,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,4,6,4,6,6,14,8,7,5,8,5,5,5,8,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,7,7,11,6,7,6,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-16 +23,12,12,8,12,7,9,8,13,7,7,5,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,6,11,6,6,4,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,6,6,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,7,14,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-13 +40,21,21,15,22,13,15,13,22,12,12,9,15,10,13,12,23,12,12,8,12,7,8,7,15,8,9,7,11,7,10,10,20,10,10,7,11,7,9,8,13,8,9,7,11,7,10,10,17,9,9,7,10,7,10,9,15,9,10,9,15,10,15,15,28,15,15,11,16,9,11,9,17,9,9,7,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,5,7,7,11,6,7,6,11,8,12,12,24,12,12,8,12,7,9,8,13,7,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,8,4,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-12,-7,-11,-11,-24 +27,14,14,10,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,11,8,11,6,7,6,12,6,7,5,7,5,6,6,11,6,6,5,7,4,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-12,-12,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +39,20,20,14,22,13,15,13,22,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,12,7,8,7,13,7,8,6,10,7,9,9,17,9,10,7,10,6,8,8,15,9,10,9,14,10,14,15,28,15,16,11,16,9,10,9,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-11,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +39,20,20,14,21,12,15,13,22,12,13,10,16,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,15,9,10,9,14,10,14,15,29,15,16,11,16,9,10,9,16,9,9,7,10,6,8,8,15,8,9,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +77,39,38,25,37,21,24,20,35,19,20,15,23,14,19,18,33,17,18,12,18,10,12,11,19,11,12,10,16,11,16,15,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-13,-14,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-13,-10,-19,-12,-19,-19,-39,-19,-19,-13,-21,-12,-15,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-18,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-37,-37,-55,-27,-28,-18,-28,-15,-18,-14,-26,-13,-15,-11,-19,-11,-16,-15,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-13,-27,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-21,-44,-21,-21,-14,-21,-11,-14,-12,-24,-12,-14,-10,-18,-11,-16,-15,-31,-15,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-18,-12,-18,-17,-35,-17,-18,-12,-18,-10,-13,-11,-20,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-10,-16,-9,-13,-12,-24,-12,-14,-11,-21,-13,-20,-20,-40,-20,-20,-13,-19,-10,-12,-10,-19,-9,-10,-7,-13,-8,-11,-11,-22,-11,-11,-8,-14,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-37,-18,-19,-12,-19,-11,-14,-12,-24,-12,-14,-10,-17,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-24,-13,-16,-13,-25,-16,-25,-24,-49,-24,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-35,-17,-18,-12,-19,-10,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-24,-13,-15,-12,-21,-13,-19,-19,-38,-19,-19,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-12,-12,-24,-12,-13,-9,-16,-9,-13,-12,-25,-14,-17,-14,-26,-17,-25,-25,-50 +39,20,19,13,19,11,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-7,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-7,-6,-14,-6,-7,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-24 +38,19,19,13,19,11,12,11,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-24 +25,13,13,9,13,7,8,8,12,7,7,6,8,6,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-18,-8,-9,-6,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 +37,19,18,12,18,10,12,11,17,9,10,8,12,8,11,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-20,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-20,-13,-20,-20,-27,-13,-13,-8,-13,-7,-9,-7,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-5,-4,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-11,-6,-7,-5,-10,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-19,-9,-9,-6,-10,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-9,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-12,-12,-24 +21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +25,13,12,8,12,7,8,7,13,7,8,6,9,6,8,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-2,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,1,1,0,1,0,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-8,-5,-8,-7,-15,-7,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16 +21,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +37,19,20,14,20,11,13,11,19,10,10,8,12,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,9,6,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,5,3,3,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,3,2,1,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-21,-11,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-13,-20,-20,-27,-13,-13,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-11,-23 +20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-11,-6,-10,-10,-13,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,6,4,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-6,-11,-6,-8,-6,-12,-7,-11,-11,-14,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-14,-6,-6,-4,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12 +17,9,9,6,9,5,6,6,9,5,5,4,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-5,-2,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +27,14,14,10,14,8,10,9,14,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,7,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,2,1,1,1,0,1,1,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +23,12,12,8,12,7,9,8,12,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +21,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10 +40,20,20,13,19,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,7,5,6,4,5,5,9,5,5,4,5,3,3,2,2,2,2,2,2,1,0,0,-1,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,12,7,7,5,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,1,1,1,0,-1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-6,-3,-3,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-20,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-8,-11,-10,-21,-11,-14,-12,-22,-14,-22,-22,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-7,-11,-10,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-10,-6,-10,-10,-24,-11,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-19 +20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +20,11,11,7,10,6,8,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10 +14,8,8,6,8,5,6,5,7,4,5,4,5,4,4,4,8,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-4,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +21,11,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,0,0,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-4,-6,-4,-8,-5,-8,-8,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6 +13,7,7,5,8,5,5,5,8,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +24,13,13,9,14,8,10,8,13,7,7,5,8,5,7,7,15,8,8,6,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-3,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5 +14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-6,-5,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6 +11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-5 +18,9,9,7,10,6,7,7,11,6,6,5,8,5,6,6,11,6,7,5,8,5,5,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,5,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,1,1,2,1,1,0,1,1,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-6,-8,-6,-12,-7,-11,-11,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,3,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-4,-9 +12,6,6,5,7,4,5,5,8,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5 +16,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,4,6,5,9,5,5,4,6,4,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-4,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8 +16,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7 +31,16,17,12,17,10,11,10,17,9,10,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,5,3,3,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-21,-20,-28,-13,-13,-8,-12,-6,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-14,-9,-15,-15,-27,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-29,-14,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-14 +16,9,9,6,9,5,6,5,9,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-2,-3,-7 +17,9,9,6,9,5,6,5,8,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-3,-1,-1,0,-1,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-7 +12,6,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4 +17,9,10,7,10,6,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-16,-8,-8,-5,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7 +10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +11,6,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +17,9,9,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,6,4,4,4,6,4,6,5,11,6,6,4,5,3,4,3,5,3,3,2,2,2,2,2,7,4,4,2,2,1,1,1,0,1,1,1,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,3,2,3,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,2,3,3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-3,-3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,4,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4 +8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +18,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,5,3,4,3,5,3,4,3,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,1,1,1,1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,7,4,4,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,5,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,0,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,0,0,0,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-2,0,0,0,-2,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,4,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-12,-6,-6,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +13,7,7,5,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,2,2,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1 +11,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,2,2,3,2,2,1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +10,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +18,10,10,7,10,6,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,3,4,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,3,4,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-8,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-9,-21,-10,-9,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-7,-5,-9,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,1,1,0,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,7,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 +15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-5,-7,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +28,14,14,9,13,7,8,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-18,-48,-23,-23,-15,-24,-13,-16,-13,-23,-12,-13,-9,-15,-9,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-10,-7,-12,-7,-11,-10,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,16,8,8,6,8,5,5,4,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-13,-9,-14,-14,-26,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-8,-16,-8,-10,-8,-14,-8,-12,-11,-23,-11,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-10,-8,-16,-10,-16,-16,-35,-17,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 +15,8,7,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 +15,8,7,5,8,5,5,4,7,4,4,3,5,3,4,3,6,3,3,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +11,6,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +16,9,9,6,8,5,5,5,7,4,4,3,4,3,4,4,7,4,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-5,-12,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +12,6,6,4,5,3,4,4,5,3,4,3,3,2,2,2,6,3,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,5,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +17,9,9,6,9,5,6,5,8,4,4,3,5,3,4,3,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,3,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-23,-11,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,2,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +10,6,6,4,5,3,4,4,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-2,-2,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2 +11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,0,-2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,1,1,1,1,2,2,2,1,0,1,1,1,0,0,-1,-1,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-2,-5 +7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 +10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-3,-1,-2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5 +10,6,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,4,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4 +19,10,9,6,9,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,5,3,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-18,-9,-9,-6,-10,-5,-7,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-17,-8,-8,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,8,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4 +10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-8,-7,-11,-5,-6,-4,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3,-3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-12,-5,-5,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,4,3,4,3,3,3,3,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3 +13,7,7,5,7,4,5,4,6,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-11,-17,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,2,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,8,5,5,4,5,3,3,3,4,2,2,2,2,1,1,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-7 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +9,5,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-7,-11,-5,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3 +7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,7,4,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-5 +8,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 +11,6,6,4,5,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,6,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +21,11,12,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-11,-6,-9,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-12,-7,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-33,-16,-16,-10,-16,-8,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,15,8,8,5,7,4,4,3,5,3,3,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-9,-14,-13,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-9,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9 +11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-4,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-2,-2,-4,-2,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-4,-3,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-6,-4,-6,-7,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-10,-5,-5,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,6,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,6,6,4,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,1,2,2,2,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3 +9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +16,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,-5,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-18,-8,-8,-5,-8,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-8,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-5,-8,-3,-3,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,1,1,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1 +23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,13,7,7,5,7,5,6,5,8,5,5,5,8,6,8,7,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,1,1,1,0,0,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-4,-5,-4,-9,-5,-8,-8,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-6,-10,-10,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-21,-10,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-37,-18,-17,-11,-17,-9,-10,-8,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,6,3,3,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-12,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,8,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3 +12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-8,-19,-9,-9,-6,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-4,-7,-4,-7,-8,-20,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,8,8,6,8,5,5,5,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-24,-12,-12,-8,-12,-6,-7,-5,-10,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,2,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +12,6,6,4,7,4,4,4,8,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1 +11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +20,11,11,8,11,7,8,7,12,7,7,6,10,6,8,8,14,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-7,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-12,-12,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-35,-17,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-11,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1 +12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +14,8,8,5,7,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1 +12,7,7,5,6,4,5,4,8,4,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-20,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,2,3,2,2,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-8,-7,-14,-9,-14,-13,-36,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,6,5,8,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-14,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-4,-5,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,5,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,3,4,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-13,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-6,-11,-6,-9,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0 +42,22,22,15,21,12,14,12,20,11,11,9,14,8,10,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-9,-17,-8,-9,-7,-13,-8,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-15,-15,-22,-11,-11,-7,-10,-6,-8,-7,-13,-6,-7,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-18,-17,-35,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-14,-14,-29,-15,-16,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-27,-55,-27,-27,-18,-27,-15,-18,-15,-27,-14,-15,-11,-19,-12,-17,-16,-31,-15,-16,-11,-18,-10,-13,-11,-21,-11,-12,-10,-18,-11,-17,-16,-33,-16,-16,-11,-17,-9,-12,-10,-20,-10,-11,-8,-14,-9,-13,-13,-26,-13,-13,-9,-15,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-11,-18,-11,-15,-14,-27,-15,-18,-15,-27,-17,-25,-25,-76,-37,-37,-24,-36,-20,-24,-19,-35,-18,-19,-13,-22,-13,-19,-17,-34,-17,-17,-11,-17,-9,-11,-9,-18,-9,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-37,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-12,-10,-19,-9,-10,-7,-13,-8,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-12,-15,-13,-24,-16,-24,-24,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,0,1,1,1,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,-1,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3,2,2,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-11,-11,-23,-11,-12,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0 +21,11,11,8,11,7,8,6,10,6,6,5,7,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-5,-10,-5,-5,-3,-6,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-4,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-5,-5,-10,-6,-7,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-6,-14,-7,-8,-7,-14,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-10,-5,-7,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-4,-9,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-6,-5,-10,-6,-8,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-6,-5,-8,-4,-4,-3,-6,-4,-5,-4,-10,-5,-5,-3,-5,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-4,-4,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-25,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0 +20,10,10,7,10,6,7,6,9,5,5,4,6,4,6,5,10,5,5,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-14,-9,-14,-8,-10,-8,-13,-7,-8,-6,-10,-6,-8,-7,-17,-8,-8,-5,-8,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-10,-6,-10,-5,-7,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-17,-8,-9,-6,-10,-6,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-8,-6,-12,-8,-12,-12,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-6,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0 +13,7,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-7,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-7,-5,-8,-8,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1 +10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1 +17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-6,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-7,-4,-6,-5,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-36,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-7,-11,-6,-9,-8,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-8,-13,-13,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +10,6,6,4,5,3,3,3,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2 +8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1 +10,6,6,4,5,3,3,3,6,3,3,2,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +16,8,8,5,7,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-8,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-31,-15,-16,-10,-16,-8,-10,-9,-17,-8,-8,-5,-9,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-6,-7,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-40,-20,-20,-13,-21,-11,-14,-11,-21,-10,-10,-7,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3 +8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +8,4,4,3,4,3,4,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-5,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-8,-5,-8,-4,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,2,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0 +7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0 +6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0 +11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-16,-8,-8,-5,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,3,3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,1,1,2,2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1 +4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-19,-9,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0 +5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0 +9,5,6,5,7,5,6,5,8,5,5,4,7,5,6,6,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,4,3,5,5,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-6,-9,-9,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-29,-14,-14,-9,-14,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-37,-18,-19,-12,-19,-10,-12,-10,-18,-9,-9,-7,-12,-7,-11,-10,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,1,1,2,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0 +5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0 +4,3,3,3,3,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-10,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-9,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,2,3,2,2,1,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-3,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,0,0,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-8,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,1,1,1,1,1,1,1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-2,0,0,0,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,-1,0,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-13,-6,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,1,1,1,0,0,0,1,1,1,1,0,0,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3 +7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-9,-4,-4,-2,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,2,3,3,5,3,3,3,5,4,6,6,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-5,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-15,-7,-8,-5,-6,-3,-4,-3,-8,-4,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2 +6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-9,-5,-8,-4,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,4,2,2,2,3,2,3,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3 +4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3 +5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,1,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,4 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 +8,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-26,-12,-12,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-3,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,1,1,1,1,1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-5,-8,-8,-13,-6,-7,-5,-8,-5,-8,-7,-13,-7,-8,-7,-14,-9,-14,-13,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-14,-7,-7,-5,-8,-4,-6,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,0,1,1,2,3,2,3,3,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,3,2,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-2,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,9 +5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6 +8,4,4,3,4,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-5,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,4,3,5,5,8 +8,4,4,3,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8 +14,8,8,5,7,4,4,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-34,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-20,-9,-9,-6,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-8,-10,-9,-17,-11,-18,-18,-38,-18,-18,-12,-18,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-27,-51,-25,-25,-16,-25,-13,-16,-13,-25,-12,-12,-8,-14,-8,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-30,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-9,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-23,-11,-12,-8,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,3,3,4,4,7,4,5,5,9,6,9,9,16,8,8,6,8,5,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-5,-7,-4,-5,-4,-6,-3,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,3,4,4,8 +6,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6 +9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-9,-9,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,-2,0,0,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8 +6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5 +7,4,4,3,3,2,2,2,4,2,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-3,-5,-5,-14,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-5,-2,-3,-3,-9,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,2,1,1,2,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +9,5,6,4,6,4,5,4,6,3,3,2,2,2,2,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-4,-7,-7,-22,-11,-11,-7,-11,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-6,-6,-15,-7,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-16,-15,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,2,2,2,1,1,1,2,2,4,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9 +5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5 +6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4 +8,4,4,3,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-7,-7,-4,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6 +5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6 +10,5,5,4,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,3,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-3,-3,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-8,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-17,-11,-16,-16,-36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,8,4,4,3,4,2,2,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,0,0,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,5,4,5,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-12,-6,-6,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5 +5,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5 +7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +14,8,8,5,7,5,6,5,8,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,3,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,8,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8 +8,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-2,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +10,6,6,4,6,4,5,4,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-5,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-5,-4,-6,-4,-6,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,6,4,4,3,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +16,9,9,6,8,5,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-10,-5,-6,-5,-10,-7,-11,-11,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,6,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,1,2,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,-4,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,-1,0,1,1,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,-1,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6 +15,8,9,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,2,2,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +29,15,15,10,15,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,3,2,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-10,-30,-14,-14,-9,-15,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,4,3,3,2,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-13,-11,-20,-13,-21,-21,-56,-27,-27,-18,-28,-15,-18,-15,-27,-13,-14,-9,-14,-8,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-9,-14,-14,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,9,5,5,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,3,5,4,5,4,7,5,6,5,8,6,9,9,16 +15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,5,5,9 +15,8,8,6,8,5,6,5,6,4,4,3,4,3,4,3,6,3,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-3,-4,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9 +11,6,6,4,6,4,4,4,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,4,7 +17,9,9,6,8,5,6,5,6,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-4,-16,-8,-8,-5,-8,-4,-5,-3,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-17,-8,-7,-4,-7,-4,-5,-4,-10,-5,-5,-3,-6,-4,-6,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-11,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,6,4,4,3,4,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,-1,4,3,3,2,3,2,3,3,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,5,4,6,6,11 +10,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,3,4,4,7 +13,7,6,4,6,4,4,4,5,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-12,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,3,5,3,3,3,4,3,5,5,8 +12,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +21,11,10,7,10,6,7,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-33,-16,-16,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-9,-8,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-9,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,6,6,12 +11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7 +12,6,6,4,7,4,4,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,8 +9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7 +15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,2,2,2,2,2,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,-1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,5,5,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13 +10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9 +14,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-10,-5,-6,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +13,7,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +25,13,13,8,11,6,7,6,9,5,5,4,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-8,-27,-13,-12,-8,-12,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-12,-12,-24,-13,-15,-12,-22,-14,-22,-21,-45,-22,-21,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-15,-8,-9,-7,-14,-9,-14,-14,-22,-10,-10,-6,-10,-5,-7,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,6,6,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 +13,7,7,5,6,4,4,4,5,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,12 +14,7,7,5,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-25,-12,-12,-7,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,13 +11,6,6,4,5,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +18,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-16,-8,-9,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,3,2,3,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,9,8,15 +11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,9 +15,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-9,-5,-6,-6,-13,-7,-8,-6,-11,-7,-12,-12,-25,-12,-12,-8,-11,-6,-8,-7,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5,-2,-1,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,12 +14,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12 +27,14,14,9,13,8,9,7,12,7,8,6,9,6,7,6,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-28,-14,-14,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-11,-24,-12,-12,-9,-15,-9,-12,-12,-24,-13,-16,-13,-23,-15,-23,-23,-45,-22,-22,-14,-22,-12,-15,-13,-24,-12,-14,-10,-17,-10,-15,-14,-27,-13,-13,-9,-15,-8,-11,-9,-18,-9,-10,-8,-14,-8,-12,-12,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-7,-13,-7,-9,-8,-16,-8,-10,-8,-15,-9,-13,-13,-28,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-7,-14,-9,-14,-14,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,2,2,2,2,1,1,1,2,2,2,2,6,4,4,3,3,2,1,1,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,8,6,9,6,7,6,11,6,7,6,10,7,11,11,22 +15,8,8,6,8,5,5,4,7,4,5,4,5,4,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,3,4,4,8,4,5,4,6,4,5,4,7,4,4,4,6,5,7,7,13 +18,10,10,7,9,5,6,5,8,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-6,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,8,6,8,8,16 +15,8,8,6,8,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-9,-5,-7,-6,-14,-6,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,14 +26,13,13,9,13,8,9,7,11,6,6,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,2,2,2,2,2,2,4,2,2,2,2,2,3,3,6,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-8,-11,-11,-22,-11,-11,-8,-14,-8,-12,-11,-23,-12,-15,-12,-23,-15,-23,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-12,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-16,-8,-9,-7,-14,-9,-14,-14,-27,-13,-13,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-9,-7,-14,-9,-14,-14,-28,-13,-13,-8,-13,-7,-8,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,7,6,9,6,8,7,11,7,8,7,12,9,13,13,25 +18,9,9,6,9,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-6,-7,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-15,-8,-10,-8,-13,-8,-13,-13,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-6,-4,-6,-6,-14,-7,-7,-5,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,4,3,4,3,4,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,5,9,6,7,6,12,7,8,7,13,9,14,14,26 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-8,-9,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,13,9,13,13,26 +50,25,25,17,24,13,15,12,21,11,11,8,12,8,10,9,17,9,9,7,10,6,6,5,9,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,3,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-8,-7,-13,-9,-14,-15,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-10,-7,-12,-7,-10,-10,-21,-10,-10,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-39,-19,-20,-13,-21,-11,-14,-12,-22,-11,-13,-9,-16,-10,-15,-15,-30,-15,-15,-11,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-26,-53,-27,-28,-19,-30,-17,-21,-18,-34,-18,-20,-15,-27,-17,-24,-23,-45,-23,-24,-18,-30,-18,-26,-24,-48,-26,-32,-26,-47,-31,-46,-46,-94,-46,-46,-31,-47,-25,-30,-25,-46,-23,-25,-19,-32,-20,-28,-26,-51,-25,-26,-18,-28,-16,-21,-19,-36,-19,-22,-17,-29,-19,-28,-27,-54,-27,-27,-18,-28,-15,-19,-16,-30,-15,-17,-13,-23,-14,-21,-20,-40,-20,-21,-14,-23,-13,-18,-16,-32,-17,-19,-15,-28,-18,-28,-28,-57,-28,-27,-18,-27,-15,-18,-15,-27,-14,-15,-10,-17,-10,-14,-13,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-10,-8,-14,-9,-13,-12,-25,-13,-14,-11,-19,-11,-16,-15,-29,-16,-19,-16,-30,-19,-29,-29,-58,-28,-28,-19,-29,-15,-18,-15,-28,-14,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-5,-5,-3,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,8,16,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,13,7,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,4,6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,3,3,4,4,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,11,11,20,11,12,9,15,9,12,12,22,13,16,14,25,17,25,25,50 diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/worlds/diamond_world.csv b/worlds/diamond_world.csv index c978edb..367aea9 100644 --- a/worlds/diamond_world.csv +++ b/worlds/diamond_world.csv @@ -1,1025 +1,1025 @@ -50,25,25,17,25,15,18,15,26,14,15,11,16,10,14,13,23,12,12,8,12,7,9,9,16,9,10,9,15,10,15,15,28,14,14,10,14,9,11,9,16,9,9,7,11,8,11,10,19,10,11,8,13,8,11,10,17,10,12,10,17,11,16,16,31,16,16,11,16,9,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,4,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-18,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-11,-17,-17,-36,-18,-18,-12,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-17,-12,-21,-12,-16,-15,-30,-16,-19,-16,-30,-20,-30,-29,-59,-29,-29,-19,-29,-16,-19,-16,-29,-15,-17,-12,-21,-13,-19,-18,-37,-18,-19,-13,-21,-12,-16,-14,-28,-15,-17,-13,-24,-16,-24,-23,-47,-23,-24,-16,-26,-14,-18,-15,-28,-15,-17,-13,-24,-15,-22,-22,-44,-22,-24,-17,-27,-16,-22,-20,-40,-22,-26,-21,-39,-26,-40,-40,-82,-40,-40,-26,-40,-22,-26,-21,-39,-20,-22,-16,-26,-15,-21,-19,-37,-18,-18,-12,-20,-11,-15,-13,-26,-14,-16,-13,-23,-14,-21,-21,-42,-21,-22,-15,-23,-13,-16,-14,-28,-14,-16,-12,-20,-12,-18,-17,-35,-18,-19,-13,-22,-13,-17,-15,-30,-16,-20,-16,-29,-19,-28,-27,-54,-27,-27,-18,-28,-16,-20,-17,-31,-16,-18,-13,-22,-13,-19,-17,-34,-17,-18,-13,-21,-12,-17,-16,-31,-16,-19,-15,-27,-17,-26,-26,-53,-26,-27,-19,-30,-17,-22,-19,-36,-19,-23,-18,-33,-21,-31,-31,-62,-32,-34,-25,-42,-25,-35,-33,-64,-35,-43,-35,-64,-42,-64,-64,-129,-64,-64,-42,-64,-36,-44,-37,-67,-34,-37,-27,-45,-27,-36,-33,-65,-32,-33,-22,-35,-20,-25,-22,-43,-22,-25,-20,-35,-22,-33,-32,-65,-32,-33,-22,-35,-20,-25,-21,-40,-20,-22,-17,-29,-18,-26,-24,-48,-24,-26,-18,-30,-17,-22,-20,-39,-21,-25,-21,-39,-26,-39,-38,-77,-38,-39,-26,-39,-21,-26,-22,-40,-20,-22,-16,-27,-16,-23,-22,-44,-22,-22,-15,-23,-13,-16,-14,-26,-14,-16,-12,-21,-14,-21,-20,-41,-20,-21,-14,-23,-13,-17,-14,-27,-14,-17,-13,-23,-14,-21,-20,-41,-21,-22,-15,-25,-15,-21,-19,-37,-20,-24,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-24,-20,-38,-19,-21,-15,-26,-15,-21,-19,-38,-19,-19,-13,-22,-13,-17,-16,-31,-16,-19,-15,-27,-17,-25,-24,-49,-24,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-17,-10,-15,-14,-27,-14,-15,-10,-17,-9,-12,-11,-22,-12,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-13,-16,-13,-24,-12,-14,-10,-17,-10,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-8,-9,-7,-13,-8,-13,-13,-27,-13,-13,-9,-15,-8,-10,-8,-15,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,9,8,13,9,14,15,29,15,14,10,14,8,8,7,11,6,7,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,5,4,7,4,4,3,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,5,5,8,5,7,7,12,7,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,13,25,13,14,10,16,10,14,13,24,14,17,15,26,18,26,26,50 -26,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,11/2,10,6,6,9/2,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-9,-15/2,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-41,-20,-20,-25/2,-19,-10,-13,-10,-19,-19/2,-10,-15/2,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-10,-6,-9,-8,-17,-8,-8,-6,-10,-11/2,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-15,-15,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-21,-17,-31,-41/2,-32,-32,-64,-32,-32,-21,-32,-18,-22,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-19/2,-12,-11,-21,-21/2,-12,-19/2,-17,-11,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-19,-19/2,-10,-8,-14,-17/2,-12,-12,-24,-12,-13,-9,-15,-8,-10,-19/2,-19,-10,-12,-10,-19,-12,-19,-37/2,-38,-37/2,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-13/2,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-17,-11,-16,-16,-34,-33/2,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-13,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-9/2,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,7/2,4,4,9,5,4,3,5,3,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25 -26,14,27/2,9,13,8,9,8,13,7,15/2,6,9,6,8,7,11,6,13/2,4,6,4,5,5,9,5,6,5,9,6,9,8,15,8,15/2,6,8,5,6,5,8,5,5,4,7,4,11/2,5,10,6,11/2,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,17/2,6,8,5,11/2,5,8,4,9/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,4,4,5,4,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,4,4,7,4,7/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,1,1,1/2,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-6,-4,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-9,-19/2,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-12,-23/2,-8,-13,-7,-17/2,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-7,-12,-7,-21/2,-10,-20,-10,-25/2,-10,-20,-13,-20,-20,-41,-20,-39/2,-12,-19,-10,-13,-10,-19,-10,-21/2,-8,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-21/2,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-31/2,-15,-31,-16,-17,-12,-21,-12,-35/2,-16,-31,-17,-41/2,-17,-31,-20,-63/2,-32,-65,-32,-32,-21,-32,-18,-43/2,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-10,-25/2,-11,-20,-10,-12,-10,-18,-11,-16,-16,-32,-16,-16,-11,-17,-9,-23/2,-10,-19,-10,-21/2,-8,-15,-9,-25/2,-12,-24,-12,-13,-9,-15,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-12,-37/2,-18,-38,-18,-37/2,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-7,-12,-7,-19/2,-9,-18,-9,-11,-9,-17,-11,-33/2,-16,-35,-17,-33/2,-10,-16,-9,-23/2,-10,-18,-9,-10,-7,-13,-8,-21/2,-10,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,6,4,9/2,4,7,5,15/2,8,15,8,8,6,8,5,5,4,6,4,7/2,3,5,3,7/2,4,6,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,2,2,2,5/2,2,4,3,3,3,5,4,9/2,4,9,5,9/2,3,5,3,4,3,3,2,3,3,4,3,3,3,7,4,9/2,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,11/2,4,5,4,5,4,7,4,9/2,4,7,5,13/2,7,12,7,8,6,9,6,15/2,7,13,8,9,8,13,9,13,13,25 -18,10,10,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,7/2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-7/2,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-9/2,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-9,-9/2,-5,-4,-9,-5,-8,-8,-18,-17/2,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-11/2,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-12,-11,-20,-11,-13,-11,-20,-13,-21,-21,-43,-21,-21,-14,-21,-23/2,-14,-12,-22,-11,-12,-8,-14,-8,-11,-21/2,-21,-10,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-21,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-11/2,-10,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-11/2,-11,-7,-10,-10,-23,-11,-10,-6,-10,-6,-8,-6,-12,-6,-6,-4,-8,-9/2,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-9/2,-7,-7,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,5/2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,4,5/2,3,2,2,2,2,2,3,2,2,2,5,3,3,3,4,5/2,3,3,4,5/2,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,5,8,5,5,4,6,4,5,5,9,11/2,6,11/2,9,6,9,9,17 -26,13,13,9,25/2,7,8,7,13,7,8,6,17/2,5,6,6,11,6,6,5,7,5,6,5,10,6,6,6,19/2,6,9,9,14,8,8,6,17/2,6,7,6,8,5,5,4,7,5,6,5,11,6,6,4,13/2,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,15/2,4,5,4,7,4,4,3,9/2,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,11/2,4,6,5,9,5,5,4,11/2,4,4,3,5,3,4,4,11/2,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,3/2,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-6,-13,-7,-8,-6,-19/2,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-25/2,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-23/2,-7,-11,-11,-20,-10,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-39/2,-13,-20,-20,-41,-20,-20,-13,-39/2,-10,-12,-10,-20,-10,-10,-7,-12,-7,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-23/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-17,-8,-9,-6,-19/2,-6,-8,-7,-14,-7,-8,-7,-27/2,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-14,-14,-10,-31/2,-9,-12,-10,-19,-10,-12,-9,-33/2,-10,-16,-15,-31,-16,-17,-12,-43/2,-13,-18,-17,-31,-17,-20,-17,-63/2,-21,-32,-32,-65,-32,-32,-21,-65/2,-18,-22,-18,-33,-17,-18,-13,-43/2,-13,-18,-17,-32,-16,-16,-11,-17,-9,-12,-11,-20,-10,-12,-10,-18,-11,-17,-17,-32,-16,-16,-10,-33/2,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-12,-10,-39/2,-12,-19,-18,-39,-19,-19,-12,-19,-10,-13,-10,-20,-10,-11,-8,-27/2,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-16,-35,-17,-17,-11,-33/2,-9,-11,-10,-18,-9,-10,-7,-25/2,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-12,-12,-22,-10,-10,-7,-23/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-10,-5,-6,-6,-23/2,-8,-12,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,3,3,3,2,2,2,4,3,4,4,6,4,4,4,7,6,9,9,16,8,8,6,15/2,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,3,3,5,3,4,3,7/2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,5/2,2,2,2,4,3,4,3,5,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,7/2,2,3,3,7,4,5,4,5,3,4,4,5,3,3,3,9/2,3,4,5,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,24 -15,8,8,11/2,8,9/2,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,7/2,6,4,4,4,6,4,6,11/2,8,5,5,4,5,7/2,4,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22,-10,-10,-13/2,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-9,-11/2,-9,-8,-17,-8,-9,-13/2,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-35/2,-18,-23/2,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,7/2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,11/2,8,15/2,14 -18,10,19/2,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,9/2,4,6,4,4,4,7,4,4,4,6,4,13/2,6,10,5,5,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,3,2,3,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-5,-4,-9,-4,-5,-4,-10,-6,-19/2,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-13/2,-4,-6,-3,-9/2,-4,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-7,-6,-13,-6,-13/2,-4,-8,-4,-6,-5,-14,-6,-6,-4,-8,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-9,-9,-6,-10,-6,-15/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-10,-21,-10,-11,-8,-14,-8,-12,-11,-20,-11,-27/2,-11,-21,-14,-21,-21,-43,-21,-43/2,-14,-22,-12,-29/2,-12,-22,-11,-12,-8,-14,-8,-11,-11,-21,-10,-11,-7,-12,-6,-15/2,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-9,-5,-15/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-12,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-15/2,-5,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-3,-8,-4,-5,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-12,-6,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-13/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3,3,2,2,3/2,2,3,2,3,3,4,3,3,3,6,5,7,7,11,6,5,4,5,3,4,4,5,3,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,4,2,5/2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,10,6,17/2,8,16 -15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,11/2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-15/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-4,-4,-3,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-18,-18,-12,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-6,-5,-10,-6,-9,-9,-18,-8,-8,-11/2,-10,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-4,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-9/2,-9,-4,-5,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,7/2,5,4,5,5,8,5,6,5,8,5,7,7,13 -27,14,14,9,12,7,8,7,12,7,7,6,9,5,6,6,12,7,7,5,8,5,6,6,19/2,6,6,6,10,7,9,9,14,7,7,5,7,5,6,6,19/2,5,5,4,6,4,5,4,12,7,7,5,8,5,5,4,15/2,4,5,4,7,5,8,8,16,8,8,6,8,5,5,4,13/2,4,4,3,5,3,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,11/2,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-28,-14,-14,-9,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-20,-10,-11,-8,-14,-8,-11,-10,-21,-11,-14,-11,-20,-13,-20,-20,-38,-18,-18,-12,-18,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-10,-9,-21,-10,-11,-7,-11,-6,-8,-7,-27/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-18,-9,-9,-6,-10,-6,-8,-7,-29/2,-8,-9,-7,-12,-8,-12,-12,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-15,-8,-11,-10,-20,-10,-12,-9,-17,-11,-17,-17,-33,-16,-17,-12,-20,-12,-17,-16,-65/2,-18,-22,-18,-32,-21,-32,-32,-67,-33,-34,-22,-34,-18,-22,-18,-67/2,-16,-17,-12,-20,-12,-17,-16,-30,-15,-15,-10,-17,-10,-13,-11,-43/2,-12,-14,-11,-20,-13,-19,-18,-33,-16,-16,-10,-16,-9,-11,-10,-39/2,-10,-11,-8,-15,-9,-13,-12,-26,-13,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-19,-12,-19,-19,-40,-20,-20,-13,-20,-11,-13,-11,-21,-11,-12,-9,-16,-9,-13,-12,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-8,-15,-10,-15,-15,-34,-16,-16,-10,-16,-9,-11,-9,-17,-9,-10,-7,-13,-8,-12,-11,-20,-10,-10,-7,-11,-6,-9,-8,-15,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-22,-10,-10,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-9,-6,-9,-8,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,2,2,2,2,3,2,3,3,11/2,4,5,5,8,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,2,7/2,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,12,7,7,5,8,5,5,4,15/2,4,5,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 -15,8,8,5,7,4,5,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,6,4,4,5/2,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-11/2,-7,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-11/2,-11,-5,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,7,5,7,7,12 -16,9,9,6,7,4,5,5,8,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,3,3,6,4,4,3,6,4,11/2,6,8,4,9/2,3,5,3,7/2,3,5,3,3,3,4,3,7/2,3,7,4,4,3,5,3,3,3,4,3,3,3,5,4,5,5,9,5,6,4,5,3,4,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,6,4,7/2,2,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-5,-11,-6,-13/2,-4,-8,-5,-9,-9,-18,-9,-19/2,-6,-10,-6,-9,-9,-18,-10,-23/2,-9,-17,-11,-17,-17,-37,-18,-18,-12,-18,-10,-23/2,-10,-17,-8,-17/2,-6,-11,-6,-9,-8,-17,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-7,-6,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-12,-6,-6,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,1,1,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,9/2,5,9,5,11/2,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,7,4,5,4,6,4,7/2,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,7,5,7,7,13 -12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,5,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-13/2,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,10 -18,9,9,6,19/2,6,7,6,10,6,6,4,13/2,4,5,5,8,4,4,4,11/2,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,6,4,6,5,12,7,7,5,13/2,4,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-9,-9,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-13,-6,-7,-4,-15/2,-4,-4,-3,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-19/2,-5,-7,-7,-15,-8,-10,-8,-29/2,-9,-14,-13,-24,-12,-12,-8,-23/2,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-12,-5,-5,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-9,-9,-6,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-21,-10,-11,-8,-13,-8,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-45,-22,-22,-14,-43/2,-12,-14,-12,-20,-10,-11,-8,-25/2,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-13,-8,-12,-11,-20,-10,-10,-7,-12,-6,-8,-7,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-27/2,-8,-13,-13,-26,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-8,-6,-12,-6,-7,-5,-10,-6,-8,-8,-13,-6,-6,-4,-6,-3,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,4,11/2,4,6,6,11,6,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,8,5,5,4,13/2,4,4,4,5,3,4,4,11/2,4,6,5,9,5,6,4,13/2,4,5,5,8,5,5,5,8,6,8,8,15 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9 -15,8,17/2,6,8,5,6,5,8,4,9/2,4,6,4,4,4,7,4,9/2,4,4,3,7/2,3,6,4,9/2,4,5,4,5,6,10,6,11/2,4,5,3,4,4,5,3,7/2,3,4,3,3,3,6,4,7/2,2,3,2,5/2,3,4,3,7/2,3,5,4,9/2,4,10,5,5,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-4,-8,-4,-13/2,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-5,-11,-5,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-7,-11,-11,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-9/2,-2,-5,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-7,-7,-17,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-13/2,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-7,-10,-9,-18,-10,-23/2,-10,-18,-12,-18,-18,-36,-17,-17,-11,-18,-10,-23/2,-9,-17,-8,-9,-6,-11,-6,-19/2,-9,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-10,-10,-16,-8,-8,-5,-10,-5,-13/2,-6,-11,-5,-6,-4,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-10,-6,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-11/2,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-13/2,-6,-11,-5,-6,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,5,4,5,5,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,4,3,7/2,4,7,4,9/2,4,6,3,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,5,7,7,12 -15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,4,5,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-7/2,-7,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-33,-16,-16,-10,-16,-17/2,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-10,-9,-15,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-10,-13/2,-10,-10,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,9/2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11 -28,15,15,11,16,9,11,9,16,8,8,6,8,5,6,6,23/2,7,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,4,15/2,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,17,9,8,6,8,5,5,4,6,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-6,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-25/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-37/2,-9,-10,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-12,-12,-20,-10,-10,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-10,-41/2,-10,-11,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-20,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-10,-10,-41/2,-10,-10,-7,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-11,-9,-16,-10,-16,-16,-65/2,-16,-17,-12,-20,-12,-17,-16,-32,-17,-21,-18,-33,-22,-34,-34,-65,-32,-32,-21,-32,-17,-21,-18,-33,-17,-18,-13,-23,-13,-18,-17,-67/2,-16,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-19,-12,-18,-18,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-12,-26,-13,-14,-10,-17,-9,-12,-11,-22,-12,-15,-12,-22,-14,-22,-21,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-14,-8,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-10,-41/2,-10,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-9,-6,-9,-9,-9,-4,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,9,6,7,7,9,5,4,3,3,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,9,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,6,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,13,8,9,7,11,7,10,10,20 -15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,4,7,4,4,7/2,5,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,3,5/2,4,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-10,-17/2,-16,-11,-17,-17,-32,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-21/2,-18,-9,-9,-6,-9,-9/2,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-5,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-5,-5/2,-4,-5/2,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11 -15,8,17/2,6,8,5,13/2,6,8,5,5,4,5,3,4,4,6,4,9/2,4,6,4,5,4,7,4,9/2,4,5,4,11/2,6,10,5,5,4,6,4,4,3,4,3,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,7/2,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,4,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-6,-17/2,-8,-17,-9,-11,-9,-17,-11,-35/2,-18,-33,-16,-33/2,-10,-16,-8,-10,-8,-16,-8,-9,-7,-11,-6,-19/2,-9,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-7,-5,-9,-5,-13/2,-6,-10,-5,-13/2,-6,-11,-7,-11,-11,-18,-9,-9,-6,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-3,-5,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-5,-9,-5,-6,-5,-9,-4,-5,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,1,3,2,3,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,10,5,5,4,6,4,7/2,3,5,3,3,3,4,3,4,4,7,4,7/2,3,4,3,7/2,4,6,4,4,3,5,3,4,4,5,3,2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,6,6,11 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-15/2,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-4,-7/2,-7,-4,-7,-7,-12,-11/2,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8 -16,8,8,6,19/2,6,6,5,9,5,5,4,6,4,4,4,6,4,4,4,11/2,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,4,3,5,3,2,2,5/2,2,2,3,5,3,4,3,7/2,3,4,4,7,4,4,3,9/2,3,4,3,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,5/2,2,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,1,2,2,2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-23/2,-7,-11,-11,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-7,-7,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-5,-19/2,-6,-10,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-36,-18,-18,-12,-35/2,-10,-12,-10,-18,-9,-10,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-21/2,-6,-7,-6,-11,-5,-6,-5,-19/2,-6,-10,-10,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-12,-19,-9,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-3,-4,-4,-11,-5,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,3/2,1,0,0,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,1,1,6,4,4,2,5/2,2,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,5,4,13/2,5,7,7,12 -10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-4,-7/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,7 -13,7,7,5,7,4,5,4,7,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,3,2,3,2,5,3,5/2,2,3,2,2,2,4,3,3,3,3,2,7/2,4,4,3,3,2,3,2,2,2,1,1,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,3,2,5/2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-8,-5,-15/2,-7,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-15/2,-5,-9,-5,-7,-7,-15,-8,-19/2,-8,-14,-9,-15,-15,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,3,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,7/2,3,4,3,7/2,4,7,4,3,2,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5/2,3,5,3,5/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,3,3,2,2,2,3,2,3,3,4,3,7/2,3,5,4,5,5,8 -12,7,7,5,7,4,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,4,4,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,3/2,2,3/2,2,3/2,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -22,11,11,8,11,7,8,6,10,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,3,2,2,1,1,1,0,0,1/2,1,2,2,3,3,4,4,6,3,3,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,3,2,2,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-8,-6,-12,-8,-12,-12,-29,-14,-14,-9,-14,-8,-10,-8,-29/2,-7,-7,-5,-9,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-6,-11,-7,-12,-12,-23,-12,-13,-9,-16,-9,-13,-12,-51/2,-14,-16,-13,-25,-17,-26,-26,-43,-21,-22,-14,-22,-12,-15,-12,-47/2,-12,-12,-8,-14,-8,-12,-11,-25,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-11,-6,-9,-8,-15,-8,-10,-8,-16,-10,-15,-15,-24,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,1,1,1,2,3,2,3,2,3,2,3,2,3,2,3,2,-1,0,0,1,1,1,2,2,3/2,1,0,0,0,0,0,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,13/2,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,15/2,4,5,4,6,4,6,5,8,5,5,4,5,3,3,3,9/2,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,2,2,2,2,7/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,7,13 -13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-5/2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-12,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,4,5/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,11/2,4,6,4,4,3,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,7/2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,5/2,2,2,2,3/2,2,5,3,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,3/2,2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1/2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,1,1,1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-13/2,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-15,-10,-16,-16,-26,-13,-13,-9,-13,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-6,-9,-9,-13,-6,-6,-4,-7,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,3/2,2,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,3,4,3,7/2,3,5,3,7/2,3,5,4,5,5,10,6,11/2,4,6,4,7/2,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,5,3,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,4,4,8 -12,6,6,9/2,6,4,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-11/2,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-5/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,9/2,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6 -20,11,11,7,10,6,6,5,7,4,4,3,7/2,2,3,3,7,4,5,4,6,4,4,4,6,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,3,4,3,3,3,9/2,4,5,5,4,3,3,2,3,2,2,2,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-14,-11,-41/2,-13,-20,-21,-38,-19,-19,-12,-37/2,-10,-12,-10,-18,-9,-10,-7,-13,-7,-10,-10,-21,-10,-10,-6,-21/2,-6,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-18,-8,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,3,2,2,2,7/2,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,6,6,14,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,4,11/2,4,5,5,10 -13,7,7,5,6,4,4,4,5,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,2,3,2,2,2,3,3,4,7/2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-8,-13,-13,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-4,-8,-5,-8,-8,-11,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 -18,9,9,6,8,5,6,5,7,4,4,3,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,4,9/2,3,5,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,3,3,2,3,3,3,2,5/2,2,4,3,9/2,4,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,3/2,2,1,1,3/2,1,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-17/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-13,-20,-20,-35,-17,-17,-11,-16,-8,-21/2,-9,-17,-8,-9,-7,-12,-7,-19/2,-9,-19,-9,-19/2,-6,-10,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-12,-12,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,4,3,5,3,4,4,7,4,9/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,4,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,3/2,2,2,1,1,1,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,4,3,4,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,2,2,2,2,5/2,3,4,3,7/2,3,5,4,5,5,9 -17,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-8,-17/2,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-35,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-11/2,-11,-6,-8,-6,-12,-8,-12,-12,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,5/2,4,3,3,3,5,4,5,5,8 -33,17,16,11,16,9,10,8,14,8,8,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,7,7,25/2,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,7,5,7,7,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,3,11/2,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-25,-12,-11,-7,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-27,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-13,-7,-9,-8,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-46,-23,-23,-15,-23,-13,-16,-13,-25,-13,-14,-10,-18,-11,-15,-14,-28,-14,-14,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-14,-13,-51/2,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-31,-15,-15,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-9,-7,-13,-9,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-17,-34,-18,-20,-15,-25,-15,-21,-20,-40,-22,-26,-21,-39,-26,-40,-40,-70,-34,-34,-22,-34,-18,-22,-19,-35,-18,-19,-13,-22,-13,-18,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-13,-15,-12,-22,-14,-21,-20,-40,-20,-20,-13,-20,-11,-14,-12,-23,-12,-13,-10,-18,-11,-16,-15,-30,-15,-16,-11,-19,-11,-16,-14,-28,-15,-18,-15,-27,-17,-25,-25,-32,-15,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-10,-8,-16,-11,-17,-17,-36,-17,-17,-11,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,6,6,12,7,8,7,11,8,11,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,31/2,8,8,5,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,5,7,7,14 -17,9,8,6,9,5,6,9/2,8,4,4,7/2,5,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,3/2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-12,-11/2,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-10,-7,-12,-7,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-35,-17,-17,-11,-17,-9,-11,-9,-17,-17/2,-9,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-6,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,6,4,4,4,6,4,6,11/2,12,6,6,4,6,4,4,4,6,7/2,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,7 -16,8,8,6,9,5,11/2,4,8,4,9/2,4,5,4,5,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,5/2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,7/2,4,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3/2,2,1,1,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-5,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-3,-5,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-4,-8,-5,-8,-8,-16,-8,-19/2,-7,-12,-7,-10,-10,-19,-10,-13,-10,-20,-13,-39/2,-20,-36,-17,-17,-11,-17,-9,-23/2,-10,-18,-9,-9,-6,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-15/2,-6,-10,-6,-9,-9,-20,-10,-19/2,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-15/2,-5,-10,-5,-7,-6,-13,-7,-8,-7,-12,-8,-12,-12,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-2,0,1/2,0,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,3,2,3,4,6,4,9/2,4,6,4,11/2,5,12,6,13/2,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,9/2,4,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1,1,6,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,3,3,4,4,7 -11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,4,5/2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-2,-1/2,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,5/2,3,2,2,2,2,2,3,3,4,3,3,5/2,4,3,4,7/2,8,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,5/2,4,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -16,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,2,1,1,0,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-9/2,-2,-4,-5,-14,-7,-7,-4,-13/2,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-4,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-8,-7,-23,-11,-12,-8,-23/2,-6,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-11/2,-3,-4,-4,-6,-3,-3,-2,-11/2,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-7,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-8,-5,-8,-8,-17,-9,-10,-7,-12,-7,-11,-10,-19,-10,-12,-10,-20,-13,-20,-20,-37,-18,-18,-12,-37/2,-10,-12,-10,-18,-9,-9,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-10,-5,-6,-5,-12,-6,-7,-5,-10,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-7,-5,-10,-6,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-14,-7,-9,-7,-25/2,-8,-12,-12,-18,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,-1,-4,-1,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,5,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,3,4,3,4,4,11,6,6,4,11/2,4,4,4,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,2,5/2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,1,3/2,2,2,2,6,4,4,3,3,2,3,3,4,3,3,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,3,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,8 -9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -11,6,6,4,5,3,4,3,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-16,-8,-15/2,-4,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-8,-5,-7,-6,-13,-7,-17/2,-7,-13,-8,-13,-13,-24,-12,-12,-8,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-11/2,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-11/2,-6,-11,-5,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,1,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,5/2,3,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,5,3,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-11,-6,-7,-6,-10,-5,-5,-7/2,-7,-4,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4 -18,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,4,3,4,3,4,4,11/2,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,1,1,1,1,2,2,2,2,7/2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-7,-6,-26,-13,-13,-8,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-9,-6,-10,-10,-15,-7,-7,-4,-7,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-7,-7,-19,-10,-11,-8,-13,-8,-11,-10,-21,-11,-14,-12,-23,-15,-22,-22,-38,-19,-19,-12,-18,-10,-13,-11,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-9,-14,-8,-10,-8,-31/2,-8,-8,-6,-12,-7,-9,-9,-18,-9,-9,-6,-11,-6,-8,-6,-25/2,-6,-8,-7,-13,-8,-13,-13,-21,-10,-9,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-9/2,-5,-7/2,-7,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1/2,0,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3 -11,6,11/2,4,6,4,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-13,-13,-21,-10,-21/2,-6,-10,-5,-7,-6,-12,-6,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-7,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,0,0,1/2,0,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,2,3,2,3,2,2,2,5/2,3,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3 -9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-16,-15/2,-8,-9/2,-7,-7/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-5/2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2 -15,8,7,5,7,4,5,4,6,3,3,3,4,3,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-33/2,-10,-16,-16,-27,-13,-12,-8,-25/2,-7,-9,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-17/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-18,-8,-8,-5,-7,-3,-4,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,1,2,2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,7/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,5/2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -13,7,13/2,5,7,4,5,4,5,3,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-15,-7,-7,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-7,-5,-8,-5,-7,-7,-13,-7,-9,-8,-14,-9,-14,-15,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-15/2,-7,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,6,4,7/2,3,4,2,5/2,2,4,3,7/2,3,5,3,4,4,6,4,7/2,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,5/2,2,4,3,3,3,3,3,4,4,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4 -13,7,6,5,7,4,4,3,5,3,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-11/2,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-13/2,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-7/2,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,3/2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,6,4,4,3,4,5/2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -24,12,12,8,12,7,8,7,11,6,6,4,5,3,4,4,11/2,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,9/2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,1,1,1,1,1,1,2,1,1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-29,-14,-14,-9,-15,-8,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-45/2,-12,-13,-9,-16,-9,-13,-13,-26,-14,-17,-15,-28,-19,-29,-29,-46,-22,-22,-15,-23,-12,-15,-13,-24,-12,-14,-10,-18,-11,-15,-14,-55/2,-13,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-10,-15,-15,-33,-16,-15,-10,-15,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-23,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-16,-30,-14,-14,-8,-12,-6,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,11,6,7,5,8,5,6,6,10,6,6,4,6,4,6,6,21/2,6,6,4,5,3,4,4,7,4,5,4,5,3,4,3,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,17/2,5,5,4,6,4,5,4,6,3,3,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,13,7,7,6,9,5,6,5,9,5,6,4,6,4,4,4,11/2,4,4,3,3,2,2,2,2,2,2,2,4,3,4,4,6 -13,7,7,5,7,4,5,4,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-13/2,-6,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-11/2,-11,-11/2,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -13,7,7,5,7,4,5,4,6,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-3/2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-13/2,-7,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-13/2,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-26,-13,-13,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-6,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,1,1,3/2,1,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,7/2,4,6,3,3,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,2,2,5/2,2,4,3,4,3,6,4,4,3,4,3,7/2,3,3,2,2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,9/2,3,5,3,4,3,5,3,7/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3 -10,5,5,4,5,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1/2,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-5/2,-4,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-9/2,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -16,9,9,6,8,5,5,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,7/2,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-3,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-17,-8,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-8,-31/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-21/2,-6,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-10,-19,-9,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,2,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,1,2,1,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,4,3,4,3,9/2,3,4,4,6,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,9/2,3,4,3,3,2,3,2,7/2,2,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,4,3,9/2,3,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3 -10,11/2,6,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -12,6,13/2,4,6,4,4,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,2,2,3/2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-6,-15/2,-6,-12,-8,-12,-12,-25,-12,-25/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,1,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,7,4,7/2,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-11/2,-7,-6,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -21,11,11,7,10,6,7,5,8,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,9/2,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,0,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,3,2,2,2,7/2,2,3,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-18,-9,-9,-5,-8,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-21,-14,-22,-22,-44,-22,-22,-14,-22,-12,-14,-12,-43/2,-11,-12,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-9,-13,-13,-22,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-21,-10,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,11/2,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,3 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-7,-4,-6,-13/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-5,-4,-8,-9/2,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-11,-5,-6,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2 -13,7,13/2,4,7,4,9/2,4,6,4,7/2,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-27/2,-14,-29,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-15/2,-8,-16,-8,-17/2,-6,-9,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-13/2,-5,-9,-5,-8,-8,-14,-6,-13/2,-4,-6,-3,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-14,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,0,0,1/2,0,4,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,6,4,7/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,5/2,3,6,4,7/2,3,3,2,2,2,3,2,2,2,2,2,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1 -11,6,6,4,6,7/2,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-21/2,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-11/2,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1 -18,9,9,6,17/2,5,6,5,7,4,4,3,9/2,3,3,3,6,4,4,2,5/2,2,2,2,4,2,2,1,1,1,1,0,1,1,1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,9/2,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-10,-4,-4,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-5,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-7,-12,-7,-11,-10,-18,-10,-12,-10,-39/2,-13,-20,-20,-43,-21,-20,-13,-20,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-10,-21,-10,-11,-7,-23/2,-6,-9,-8,-13,-7,-8,-6,-25/2,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-12,-6,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-21/2,-5,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,5,3,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,3,2,3,2,7/2,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-28,-27/2,-13,-17/2,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-14,-13/2,-7,-4,-7,-4,-5,-9/2,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-7/2,-5,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,5/2,4,5/2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1 -17,9,9,6,9,5,11/2,4,7,4,4,3,4,3,7/2,3,5,3,3,2,2,2,3/2,2,3,2,1,1,1,1,1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,3,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-5,-3,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-7,-4,-9/2,-4,-10,-5,-13/2,-5,-10,-6,-19/2,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-39/2,-20,-43,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-14,-8,-21/2,-10,-21,-10,-10,-6,-11,-6,-8,-7,-13,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,6,4,7/2,3,3,2,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,4,4,7,4,9/2,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,3,2,7/2,4,8,4,9/2,3,4,2,2,2,2,2,3/2,2,2,1,1,1,3,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1/2,0,0 -17,9,9,6,9,5,6,9/2,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,4,3,3,3,5,7/2,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-4,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-11/2,-16,-15/2,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-42,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-13,-15/2,-10,-10,-21,-10,-10,-6,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1/2,0 -32,17,17,12,17,10,12,10,18,10,10,8,12,7,9,8,15,8,9,7,10,6,8,7,12,6,6,5,7,5,6,6,12,6,6,4,5,3,3,3,4,2,2,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,3,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,4,4,6,3,3,2,2,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-6,-9,-9,-18,-9,-9,-7,-12,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-7,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-33,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-16,-16,-69/2,-17,-17,-11,-18,-9,-11,-9,-16,-8,-9,-7,-12,-7,-11,-10,-21,-10,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-11,-21,-11,-14,-11,-20,-13,-19,-19,-38,-19,-21,-16,-27,-16,-22,-21,-41,-22,-26,-21,-39,-26,-40,-40,-85,-42,-42,-28,-42,-23,-27,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-16,-14,-26,-14,-16,-13,-23,-15,-22,-22,-44,-21,-21,-14,-21,-11,-14,-12,-23,-12,-13,-10,-18,-11,-17,-17,-34,-17,-17,-12,-20,-11,-15,-13,-24,-13,-15,-13,-24,-15,-23,-22,-91/2,-22,-22,-14,-22,-12,-14,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-40,-20,-20,-13,-20,-11,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-41/2,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,4,6,4,5,5,8,5,7,7,25/2,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1 -16,9,9,6,9,6,7,6,10,6,6,9/2,7,4,5,9/2,8,9/2,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-15/2,-13,-7,-10,-10,-20,-11,-13,-10,-19,-25/2,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-10,-15/2,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-7,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-19,-9,-10,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,5/2,3,2,3,2,3,3,5,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,9,9,6,9,6,7,6,10,6,11/2,4,7,4,9/2,4,8,4,9/2,4,6,4,4,4,6,4,4,3,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,4,3,7/2,3,5,4,9/2,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-6,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-9,-19,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-39/2,-20,-42,-20,-41/2,-13,-21,-11,-27/2,-11,-21,-10,-21/2,-8,-13,-8,-11,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-22,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-15/2,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-11,-6,-7,-6,-10,-5,-11/2,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-19,-9,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,7,4,7/2,2,4,3,3,3,4,2,5/2,2,4,3,7/2,3,4,2,5/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,5/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0 -11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-28,-27/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-8,-5,-7,-6,-14,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,8,8,6,9,6,7,6,9,5,5,4,6,4,4,4,10,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,3,7,4,4,3,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-6,-19/2,-5,-6,-5,-11,-6,-7,-6,-21/2,-6,-9,-9,-20,-10,-10,-7,-25/2,-8,-11,-10,-19,-10,-12,-10,-20,-13,-21,-21,-43,-21,-20,-13,-41/2,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-12,-6,-8,-6,-11,-7,-11,-11,-23,-11,-10,-6,-21/2,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-12,-6,-7,-6,-21/2,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-11/2,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,7,4,4,3,7/2,2,3,3,4,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,2,2,3,3,4,3,5,5,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,1,2,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1/2,1,1,1,0 -10,5,5,4,5,7/2,4,4,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0 -12,6,13/2,5,6,4,9/2,4,6,4,4,3,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-27/2,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-7/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,5,3,3,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,-1 -10,11/2,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-7/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1 -17,9,8,6,8,5,5,5,8,5,5,3,4,3,3,3,10,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,2,3,3,4,4,8,5,5,3,4,2,2,2,7/2,2,2,2,2,1,1,0,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-5,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-10,-11,-8,-14,-8,-12,-10,-41/2,-11,-13,-11,-21,-13,-20,-20,-45,-22,-22,-14,-22,-12,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-25,-12,-13,-8,-13,-7,-9,-8,-29/2,-7,-8,-6,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-8,-6,-11,-7,-11,-11,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3/2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,4,3,5,5,8,4,4,3,4,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-5/2,0,0,0,0,0,-1,-1,-3 -9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-13/2,-10,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -10,5,5,3,4,3,3,3,5,3,3,2,3,2,5/2,2,6,4,7/2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-3/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-7,-11,-11,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-3,-5,-3,-11/2,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,0,1,1,1,1,1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,1,1,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,3,3,2,3,2,3/2,2,2,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -11,6,5,4,5,3,4,3,5,3,2,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,1,1,0,0,1/2,0,0,1,3,2,2,2,5/2,2,3,3,4,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-13,-6,-6,-4,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-10,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-32,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-17/2,-4,-6,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-6,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,3/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3/2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-2 -7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-5,-5,-10,-9/2,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -8,4,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,4,2,5/2,2,2,2,5/2,2,3,2,2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-23/2,-12,-27,-13,-13,-8,-13,-7,-17/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-7,-13/2,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-7,-4,-15/2,-7,-17,-8,-15/2,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,5,3,5/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,-1,0,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2 -7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-10,-21/2,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-16,-7,-7,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,0,0,1/2,1,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,1/2,0,1/2,0,1/2,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -13,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,6,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-18,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-11,-8,-15,-9,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-51,-25,-26,-17,-26,-14,-17,-13,-24,-12,-13,-10,-18,-11,-15,-14,-28,-13,-13,-9,-14,-8,-11,-10,-19,-9,-10,-8,-14,-9,-13,-13,-31,-15,-15,-10,-15,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-10,-43/2,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-31,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-5,-8,-4,-6,-6,-27/2,-6,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,11/2,4,4,3,4,3,3,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,1,1,1,1,1,1,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3 -7,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-11/2,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1 -6,3,3,3,4,3,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1/2,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-10,-5,-5,-3,-4,-2,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-13/2,-6,-11,-7,-21/2,-10,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-13/2,-6,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,5,3,5/2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,0,1,3/2,2,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1 -4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,3,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,3/2,2,3/2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1 -6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,1,4,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-18,-9,-9,-6,-17/2,-4,-6,-5,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,4,3,3,2,5/2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,5,3,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1/2,1,2,2,0,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,1,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-16,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1/2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-17/2,-9,-21,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,1,0,0,1/2,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,2,1,1/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-19,-9,-8,-5,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,0,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-7/2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,-1,1,1,1,0,-1,0,-1,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,-7,-3,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-16,-7,-7,-4,-6,-3,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-2,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-6,-25/2,-6,-8,-7,-14,-9,-15,-15,-36,-18,-18,-11,-17,-9,-11,-10,-37/2,-9,-9,-6,-10,-6,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-2,-11,-5,-5,-4,-7,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,1,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4 -3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-19,-9,-9,-11/2,-9,-5,-6,-5,-10,-9/2,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,3,3,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-8,-5,-9,-9,-22,-10,-21/2,-6,-11,-6,-7,-6,-12,-6,-11/2,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-14,-6,-13/2,-4,-7,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,0,0,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,-3,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-7/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-7,-12,-5,-5,-3,-11/2,-3,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-13,-6,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-3,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-10,-5,-6,-5,-21/2,-7,-12,-12,-31,-15,-15,-10,-31/2,-8,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-12,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,-1,0,0,0,-3/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,7,4,4,3,4,3,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,8,5,5,3,4,3,3,3,3,2,3,2,7/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,2,2,3/2,2,2,1,0,1,1,1,3/2,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-7/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-20,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-4,-6,-5/2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-13/2,-7,-13,-6,-5,-3,-6,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-7,-4,-6,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-31,-15,-15,-10,-16,-8,-21/2,-9,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-4,-11/2,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,6,4,7/2,3,4,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,8,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,5/2,2,3,2,7/2,3,5,3,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3 -4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-3,-6,-3,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-4,-3,-7,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-30,-15,-15,-10,-15,-8,-10,-17/2,-16,-8,-8,-6,-10,-6,-8,-15/2,-16,-8,-8,-5,-9,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-17,-8,-8,-11/2,-9,-9/2,-6,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-7/2,-5,-9/2,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3 -8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-2,-4,-4,-17/2,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-26,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-24,-11,-11,-7,-12,-6,-7,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-5,-10,-6,-10,-10,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-16,-13,-23,-15,-23,-23,-61,-30,-30,-20,-30,-16,-19,-15,-28,-14,-15,-11,-19,-11,-15,-14,-28,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-10,-11,-8,-13,-8,-11,-10,-19,-10,-12,-10,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-22,-10,-10,-6,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,1,0,0,12,7,7,5,8,5,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,4,13/2,4,4,3,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,5,3,3,3,4,3,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 -5,3,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-13/2,-8,-6,-11,-7,-11,-11,-30,-15,-15,-10,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3 -5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-5,-6,-2,-5/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-15/2,-6,-12,-8,-23/2,-11,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-9,-9,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-9,-6,-19/2,-10,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,3/2,1,1,1,1/2,0,7,4,4,3,5,3,4,3,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3/2,2,3/2,2,2,1,1,2,1,1,1,0,0,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,0,1,1,1,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-5/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-10,-5,-5,-3,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-13,-13,-34,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-17,-8,-8,-5,-17/2,-4,-5,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-4,-2,-9/2,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,8,4,4,3,5,3,3,3,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,0,1,1,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,9/2,3,3,2,4,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,3,6,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,0,0,0,0,1/2,1,2,2,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,2,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -2,1,1,1,2,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-4,-9,-6,-9,-9,-25,-12,-12,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-6,-4,-13/2,-7,-12,-6,-6,-4,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,7,4,7/2,3,4,3,3,2,4,2,2,2,1,1,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,1,1,2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,2,4,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,0,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-9,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-4,-6,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-7,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-41,-20,-20,-13,-20,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-9,-8,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-15,-7,-8,-6,-10,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-10,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,12,6,6,4,5,3,4,4,11/2,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,7/2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,9/2,3,3,3,4,3,4,4,5,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-7 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,3/2,2,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,2,2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 -2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-6,-3,-3,-2,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3,-3,-5,-2,-3,-2,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-11,-5,-9/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,1,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 -2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1/2,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-17/2,-8,-11/2,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,6,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,0,0,0,1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-19/2,-5,-7,-7,-16,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,5,3,3,2,7/2,2,3,2,5,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,2,2,3,3,5,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5 -1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-3,-2,-3,-1,-1,-1/2,-2,-1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-5/2,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 -1,1,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-4,-4,-9,-4,-11/2,-4,-8,-4,-6,-6,-11,-6,-7,-6,-10,-7,-11,-11,-28,-14,-14,-9,-14,-8,-19/2,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-8,-7,-15,-7,-7,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,1,1,1,9,5,11/2,4,6,4,7/2,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1/2,1,2,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4 -1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-11/2,-11,-6,-7,-6,-10,-7,-11,-10,-27,-13,-13,-17/2,-13,-7,-9,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4 -0,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-13,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-21,-55,-27,-28,-18,-28,-15,-18,-15,-28,-14,-14,-10,-17,-10,-14,-14,-55/2,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-14,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-39/2,-10,-10,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-30,-15,-15,-9,-14,-7,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,16,8,8,6,8,5,7,6,11,6,6,5,7,5,6,5,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,11/2,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,3,4,2,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-9/2,-2,-2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-9 -0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-21/2,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4 -0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-23/2,-12,-30,-15,-15,-9,-15,-8,-9,-7,-15,-7,-7,-5,-9,-5,-15/2,-7,-14,-6,-13/2,-4,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,5,3,4,4,5,3,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3 -0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-5,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2 --2,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-10,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-5,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-7,-4,-15/2,-4,-6,-5,-12,-6,-8,-7,-13,-9,-14,-14,-35,-17,-17,-11,-35/2,-9,-11,-9,-16,-8,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,11,6,6,4,6,4,5,4,6,4,4,4,11/2,4,4,4,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-1,-1,-3 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1 --2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-4,-3,-5,-5,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-7,-6,-12,-8,-12,-12,-29,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-8,-5,-8,-7,-15,-7,-15/2,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,9,5,11/2,4,6,4,4,4,6,4,7/2,3,5,4,9/2,4,7,4,4,3,3,2,3,3,4,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-9/2,-5,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-28,-27/2,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,5/2,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-19,-9,-8,-5,-8,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-22,-15,-23,-23,-55,-27,-26,-17,-26,-14,-17,-14,-51/2,-12,-13,-9,-16,-10,-15,-14,-26,-13,-13,-9,-14,-8,-11,-10,-37/2,-9,-10,-8,-14,-9,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-12,-7,-9,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,3,16,9,9,6,8,5,6,6,19/2,6,6,4,6,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-6,-11/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-30,-29/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-9,-5,-8,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-11/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-17/2,-7,-14,-9,-15,-15,-36,-18,-35/2,-11,-16,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-8,-17,-8,-17/2,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-8,-4,-11/2,-5,-10,-5,-13/2,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,2,2,3/2,2,0,1,3/2,2,2,2,2,2,11,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,5,4,5,3,4,3,4,3,4,4,5,4,11/2,5,7,4,9/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,3,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2 --4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-29,-14,-14,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,3/2,2,2,2,2,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,7/2,5,9/2,7,4,4,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 --8,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-7,-3,-4,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-19,-9,-9,-6,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-9,-6,-10,-10,-20,-9,-9,-6,-9,-5,-6,-4,-10,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-12,-6,-8,-6,-11,-7,-10,-10,-18,-9,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-14,-21,-22,-53,-26,-26,-17,-51/2,-14,-16,-13,-26,-13,-13,-9,-16,-9,-13,-12,-27,-13,-14,-9,-27/2,-8,-10,-9,-18,-9,-10,-8,-15,-9,-14,-14,-31,-15,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-8,-17,-8,-9,-6,-21/2,-6,-8,-7,-16,-8,-10,-8,-27/2,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,3/2,1,1,1,0,1,1,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,12,6,6,4,6,4,5,5,6,4,5,4,15/2,6,8,7,12,7,7,5,6,4,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,3,7,4,4,4,13/2,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,9/2,3,4,3,5,3,3,2,7/2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1/2,1,1,1,3,2,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4 --5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-13/2,-13,-7,-9,-7,-14,-9,-14,-14,-35,-17,-17,-11,-17,-9,-10,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-19/2,-10,-6,-10,-5,-7,-11/2,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-7/2,-5,-4,-10,-5,-6,-9/2,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-7,-4,-13/2,-7,-14,-7,-7,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-6,-9,-9,-20,-9,-9,-6,-10,-5,-11/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-10,-5,-6,-5,-10,-6,-19/2,-9,-18,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-43/2,-22,-52,-25,-25,-16,-26,-14,-16,-13,-25,-12,-27/2,-10,-16,-10,-27/2,-13,-26,-13,-27/2,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,3,17,9,9,6,9,6,7,6,10,6,13/2,5,7,5,6,6,12,6,13/2,4,6,4,5,5,6,4,5,4,6,5,7,7,12,6,13/2,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,9/2,4,7,4,9/2,4,6,4,6,6,10,6,13/2,5,6,4,4,3,5,3,7/2,3,4,3,7/2,3,6,3,3,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-9/2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-22,-22,-51,-25,-25,-16,-26,-14,-16,-13,-25,-12,-13,-19/2,-16,-10,-14,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-17/2,-18,-17/2,-9,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-8,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-10,-9/2,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3 --17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-15,-10,-15,-15,-61/2,-15,-16,-10,-16,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-19,-12,-19,-20,-39,-19,-18,-12,-18,-10,-12,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-30,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-11,-18,-10,-14,-13,-25,-13,-15,-12,-21,-13,-20,-19,-39,-20,-22,-16,-28,-17,-23,-22,-44,-24,-30,-25,-45,-30,-45,-45,-103,-51,-50,-33,-50,-27,-33,-28,-51,-26,-29,-21,-35,-21,-29,-28,-55,-27,-28,-19,-29,-17,-22,-19,-37,-19,-22,-17,-30,-19,-27,-26,-52,-26,-26,-17,-27,-15,-18,-15,-29,-15,-16,-11,-19,-11,-16,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,4,5,33,17,18,12,18,11,13,11,19,10,10,8,12,8,11,10,19,10,10,7,11,7,8,8,14,8,9,7,11,7,10,10,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,3,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-5,-9/2,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-19/2,-10,-15/2,-13,-8,-11,-10,-22,-12,-14,-12,-22,-14,-22,-22,-51,-25,-25,-16,-25,-13,-16,-27/2,-25,-25/2,-14,-10,-17,-10,-14,-27/2,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-9,-13,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-13/2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,17,9,10,7,10,6,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4 --8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-4,-7,-4,-15/2,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-8,-4,-5,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-15/2,-5,-8,-4,-13/2,-6,-11,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-22,-12,-29/2,-12,-22,-14,-43/2,-22,-51,-25,-25,-16,-25,-14,-33/2,-14,-25,-12,-27/2,-10,-18,-10,-29/2,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-10,-8,-15,-9,-27/2,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-3,-5,-5,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,18,10,19/2,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,5,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,7/2,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-5,-3,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-9/2,-8,-9/2,-6,-6,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-34,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-12,-13/2,-9,-9,-18,-17/2,-9,-6,-10,-5,-6,-11/2,-12,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,12,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3 --8,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-1,0,-3,-1,-1,0,0,0,0,0,2,1,1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-9,-5,-6,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-51,-25,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-35/2,-10,-15,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-15,-9,-14,-13,-25,-12,-13,-8,-13,-7,-8,-7,-14,-7,-7,-5,-19/2,-5,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,2,1,1,2,2,5/2,2,3,3,18,10,10,7,21/2,6,8,7,11,6,7,5,7,4,5,5,10,6,6,4,13/2,4,5,5,6,4,4,4,11/2,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,4,4,6,4,4,3,7/2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5 --4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-7/2,-6,-5,-12,-6,-7,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-8,-5,-8,-4,-5,-9/2,-9,-5,-6,-4,-8,-5,-7,-7,-14,-13/2,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,-1/2,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,1,1,2,2,2,2,2,2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2 --5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-9,-7,-14,-9,-14,-14,-35,-17,-33/2,-11,-17,-9,-23/2,-10,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,3,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,7/2,4,4,3,3,3,4,3,3,3,8,4,9/2,3,4,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3 --4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-29,-14,-14,-9,-14,-8,-10,-8,-14,-7,-8,-11/2,-10,-6,-8,-7,-16,-15/2,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-9/2,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,5/2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3 --8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-2,-3,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-20,-13,-20,-21,-54,-27,-27,-17,-26,-14,-18,-15,-55/2,-14,-15,-11,-19,-11,-15,-14,-29,-14,-14,-9,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-13,-27,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,18,10,10,7,11,6,7,6,11,6,6,4,6,4,5,5,10,6,6,4,6,4,4,4,13/2,4,4,3,5,4,5,5,11,6,6,4,4,3,3,3,4,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,2,2,2,2,5/2,2,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-27,-13,-14,-17/2,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-13/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,2,3,2,2,2,3,2,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 --4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-11,-29,-14,-29/2,-9,-14,-8,-19/2,-8,-14,-7,-7,-5,-10,-6,-15/2,-7,-15,-7,-7,-4,-7,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,2,2,2,2,3,2,5/2,2,10,6,6,4,7,4,9/2,4,7,4,4,3,4,3,4,3,6,4,7/2,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,7/2,2,3,2,2,2,3,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-3 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1/2,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-2 --6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-4,-2,-3,-2,-11/2,-4,-7,-7,-9,-4,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-2,0,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,0,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-7,-5,-17/2,-5,-7,-6,-11,-6,-8,-6,-25/2,-8,-12,-13,-36,-17,-17,-11,-17,-9,-11,-9,-18,-9,-9,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,2,1,1,1,2,2,3,3,12,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,9,5,5,3,7/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-4 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,7,4,4,3,5,3,4,3,5,3,3,5/2,4,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2 --4,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-8,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-10,-30,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3 --4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-19/2,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 --8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-22,-10,-10,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-55,-27,-27,-18,-28,-15,-18,-15,-28,-14,-15,-11,-18,-11,-15,-14,-53/2,-13,-13,-9,-14,-8,-10,-9,-17,-9,-11,-8,-15,-9,-13,-13,-23,-11,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-9,-5,-8,-7,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,21/2,6,5,4,5,3,4,4,6,3,3,2,3,3,4,4,12,6,6,4,5,3,3,3,4,3,3,2,2,1,1,0,-3/2,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-28,-13,-13,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,7/2,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,2,2,2,1,2,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-3,-1,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-12,-6,-11/2,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,3,2,5/2,2,2,2,2,2,8,4,9/2,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,7,4,4,3,3,2,5/2,2,2,2,3/2,1,2,1,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2 --2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,3,2,2,2,2,2,2,2,7,4,4,4,11/2,4,4,3,5,3,3,3,4,3,4,4,8,4,4,3,7/2,2,3,2,4,2,2,2,5/2,2,2,2,8,5,5,4,9/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-3 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,5,3,3,5/2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 -0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,1,1,1/2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,0,0,-1/2,-1,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,6,4,4,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,5,3,7/2,3,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,-1,-3 -0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3 --1,0,0,1,1,1,1,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,0,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-2,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-7,-9,-7,-14,-9,-14,-13,-41,-20,-21,-14,-21,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-7,-11,-10,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,1,8,5,5,3,4,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,0,1,1,1,0,0,0,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 -0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,1/2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-21/2,-11,-7,-11,-6,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,3/2,2,3/2,2,1,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 -0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,1,1,0,0,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,-1,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-25,-12,-25/2,-8,-13,-7,-8,-6,-13,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,3/2,1,5,3,5/2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-2,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 -0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,2,2,2,1,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,4,3,3,2,2,1,1,0,1,1,0,0,1/2,0,0,1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-5,-11,-7,-11,-10,-37,-18,-17,-11,-17,-9,-11,-9,-18,-9,-10,-7,-13,-7,-10,-10,-18,-9,-9,-6,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,5,3,3,3,9/2,3,3,3,5,3,3,2,3,2,3,3,7,4,3,2,3,2,2,2,4,2,2,1,1,1,1,1,4,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,2,2,5/2,2,2,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-8 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-24,-11,-11,-7,-11,-11/2,-7,-11/2,-11,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5 -0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,1,2,2,3/2,2,4,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-6,-5,-10,-6,-9,-9,-35,-17,-17,-11,-16,-8,-21/2,-8,-16,-8,-9,-7,-12,-7,-19/2,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-9,-5,-8,-8,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-13,-6,-11/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-3,-5,-5,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1/2,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,1,1,1,1,3/2,2,3,2,3/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-7 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-34,-33/2,-16,-21/2,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,2,3/2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --2,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,9/2,2,2,2,2,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-7,-7,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-19,-12,-18,-18,-69,-34,-33,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-13,-18,-17,-34,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-9,-16,-10,-16,-16,-63/2,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-26,-12,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-13,-13,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-35/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-8,-3,-3,-2,-3,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-9/2,-6,-9/2,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -0,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,-1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-2,-3,-2,-7/2,-4,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-19/2,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-8,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-6,-6,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,4,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1/2,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,-1,-2,-2,-6,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,2,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5 -1,1,2,2,3/2,2,2,1,2,2,2,2,3/2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,2,5/2,2,3,3,4,2,2,2,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,2,3,2,1,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,3,2,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-6,-3,-3,-2,-5/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-6,-5,-19/2,-6,-10,-10,-34,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-8,-8,-16,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-14,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,2,1,1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8 -1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,3/2,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 -1,1,3/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,0,1,3/2,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,3,2,3/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-5,-2,-7/2,-3,-7,-4,-6,-6,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,2,2,3,2,3,2,2,2,2,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,0,-2,-1,-2,-2,2,2,3/2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6 -1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-3/2,-4,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,3/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,3,4,4,4,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,1,1,3/2,2,2,1,1,0,-1,-1,2,1,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,-2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,3/2,1,1,1,0,0,0,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3/2,2,2,2,2,1,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-36,-17,-17,-11,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,1/2,0,0,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 -0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,1,2,1,1,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,2,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,4,2,5/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,1,1,3/2,2,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 --2,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,0,1,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,1,0,-1/2,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,2,2,-2,0,0,0,-1,0,0,1,2,1,1,1,3/2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,1,1,-5,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-4,-15/2,-4,-7,-7,-27,-13,-12,-8,-25/2,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-5,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,3/2,1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,1,1,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8 --1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-16,-15/2,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 --1,0,0,1,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-13/2,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,0,0,1/2,0,1,1,1/2,1,2,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,3/2,1,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-5/2,-2,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7 --1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,1/2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-22,-10,-10,-7,-11,-11/2,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-2,-4,-3,-5,-4,-11,-5,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,1,1,1,1,1/2,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7 --3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,5,3,4,4,6,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,1,3/2,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-19/2,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-44,-22,-22,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-22,-10,-10,-6,-9,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-21/2,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-8,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 --1,0,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-3/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-22,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 --2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-1,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,1,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,1,1,1,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,-2,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-4,-3/2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,2,2,2,3/2,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,2,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,1,0,0,1,1,0,0,-1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-27,-13,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-4,-15/2,-5,-8,-7,0,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-8,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-16,-7,-7,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,0,1,3/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-13/2,-6,-22,-10,-21/2,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,3/2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-20,-19/2,-10,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-3,-7 --4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,1,1,1,1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-22,-11,-11,-7,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-5,-10,-7,-11,-11,-38,-19,-19,-13,-20,-10,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-7,-6,-21/2,-5,-6,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,7/2,2,3,3,4,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-12,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-20,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 --2,0,-1/2,0,-1,0,1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,5/2,3,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,-1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-13/2,-7,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-13/2,-5,-9,-5,-13/2,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,2,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7 --5,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,1,1,1,1,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,3,2,2,1,1/2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-23,-11,-10,-6,-10,-5,-7,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-5,-21/2,-6,-10,-10,-37,-18,-18,-12,-35/2,-9,-11,-9,-18,-9,-10,-7,-25/2,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-10,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,7/2,3,4,3,5,3,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,2,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 --3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-13/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-3/2,0,-2,-1,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-35/2,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-19/2,-9,-18,-9,-19/2,-6,-10,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-9,-20,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,7/2,2,3,2,7/2,4,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1/2,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1/2,-2,-1,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-6,-10,-5,-6,-11/2,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,4,5/2,3,2,3,3,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 --10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-7,-7,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-5,-10,-6,-9,-9,-37/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-45,-22,-22,-14,-21,-11,-13,-10,-19,-9,-10,-7,-11,-7,-10,-9,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-9,-8,-15,-8,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-16,-9,-12,-10,-20,-11,-14,-11,-21,-14,-21,-21,-74,-37,-37,-24,-37,-20,-25,-21,-38,-19,-20,-14,-24,-14,-20,-19,-37,-18,-19,-13,-20,-11,-14,-12,-24,-13,-15,-12,-22,-14,-21,-21,-42,-21,-21,-13,-20,-11,-13,-10,-19,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-33,-16,-15,-10,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-10,-8,-16,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-9,-15,-8,-11,-10,-19,-10,-13,-11,-21,-14,-21,-21,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-1,0,0,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-12,-25 --4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-37,-18,-18,-12,-18,-10,-12,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-17/2,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-15/2,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-13/2,-10,-10,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-22,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-7,-4,-11/2,-5,-9,-5,-6,-5,-10,-6,-10,-10,-38,-18,-18,-12,-18,-10,-12,-10,-19,-9,-19/2,-7,-12,-7,-10,-9,-18,-8,-17/2,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-4,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-10,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3,3,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,0,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,1,1,1,0,1,2,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-11/2,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-13/2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 --3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-22,-10,-10,-7,-11,-5,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-4,-5,-5,-8,-4,-5,-5,-10,-6,-10,-10,-39,-19,-19,-12,-35/2,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-9,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-5,-4,-10,-5,-7,-6,-11,-7,-11,-11,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-5/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-4,-6,-6,0,0,0,1,3/2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6 --2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-16,-7,-7,-4,-7,-3,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,1,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8 --1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1/2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-13,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,0,0,1/2,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-25,-12,-12,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-42,-20,-20,-13,-20,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,-2,-1,-1,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,0,0,0,0,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-5,-5,-11 --1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-3/2,-2,-2,0,0,0,0,0,0,0,0,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,-3,-1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-14,-6,-13/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6 --1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4 --2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,0,0,0,1,3/2,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-1,0,-1,0,-3/2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1/2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-13,-8,-25/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,-1,0,0,0,1/2,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,2,1,1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-16,-7,-7,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-11,-6,-7,-6,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,-1,0,0,1,0,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-7 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-4,-4,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,-1,-2,-2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,3/2,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-3,-1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,-1,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-30,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-48,-24,-24,-16,-24,-13,-15,-12,-23,-11,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-5,-9,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,7/2,2,2,1,0,1,1,1,0,1,1,1,2,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-1,0,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-16 --3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-24,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-3/2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8 --4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,3,2,1,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-5/2,-2,-1,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-5,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-25,-12,-25/2,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-11/2,-4,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-7,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,1,1,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-7/2,-4,-8 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-9/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-28,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-19/2,-6,-8,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,-1,0,0,0,-1,0,1,1,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,1,1,1,1,3/2,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,1,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1/2,0,-1,-1,-1,-1,-2,-2,-7/2,-2,-4,-4,-9 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,1/2,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,-1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,2,2,2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-13,-6,-6,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-9/2,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,3/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5 --9,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,0,-1,3,2,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-6,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-21,-10,-10,-6,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-37,-18,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,0,0,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1/2,0,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --5,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-13,-6,-11/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-9/2,-4,-23,-11,-11,-7,-11,-6,-15/2,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-11/2,-5,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,0,1,0,-1/2,0,-3,-1,-1,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-4,-3,3,2,2,2,5/2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-6,-18,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-14,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-34,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-6,-23/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-5,-8,-8,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-8,-8,-11,-5,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,0,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7 --4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,-1/2,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-22,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-5,-5,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 --7,-3,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-17,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-17/2,-8,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,0,1,2,2,3/2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,-3/2,-1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-5/2,-2,-6 --6,-5/2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-10,-9/2,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-15/2,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6 --13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-3,-3,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-36,-17,-17,-11,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-17,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-17,-17,-11,-17,-9,-11,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-66,-32,-32,-21,-33,-18,-21,-17,-31,-16,-17,-12,-20,-12,-17,-16,-32,-16,-16,-11,-17,-9,-12,-10,-20,-11,-13,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-33,-16,-15,-10,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-45/2,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-12,-19,-19,-27,-13,-14,-9,-15,-8,-10,-8,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-3,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 --6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,2,2,2,2,2,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-10,-16,-8,-10,-8,-15,-15/2,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-15/2,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-13,-6,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7 --6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-34,-16,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-17/2,-9,-14,-7,-7,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-3,-4,-5/2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-23,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,3,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,2,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,0,0,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-1,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-5,-20,-9,-9,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-6,-36,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-17,-8,-8,-5,-8,-4,-6,-5,-7,-3,-4,-3,-11/2,-3,-4,-3,-10,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-14,-7,-7,-4,-15/2,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-8 --3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 --5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,4,2,2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-5,-3,-4,-4,-26,-13,-13,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 --4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,0,0,-1,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,1,1,1/2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-25,-12,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-5,-43,-21,-20,-13,-20,-11,-13,-11,-20,-10,-11,-7,-12,-7,-10,-10,-19,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-4,-11,-5,-5,-4,-7,-4,-6,-5,-19/2,-5,-6,-5,-9,-6,-10,-10,-20,-9,-9,-6,-9,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-5,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,1,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-23,-11,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-11,-5,-11/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3 --9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,1,1,1,1,0,0,5,3,3,2,7/2,2,3,3,5,3,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-37,-18,-18,-12,-18,-9,-11,-9,-17,-8,-8,-6,-21/2,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,1,1,-1,0,0,0,-1/2,0,0,1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,-3,-1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6 --6,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-9/2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-23,-11,-11,-7,-11,-6,-7,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4 --9,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-3,-5,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-15/2,-7,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-4,-4,-34,-16,-16,-10,-17,-9,-11,-9,-16,-8,-17/2,-6,-9,-5,-7,-7,-15,-7,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-17/2,-8,-19,-9,-9,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6 --8,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-33,-16,-16,-10,-16,-17/2,-10,-8,-15,-15/2,-8,-11/2,-9,-5,-7,-7,-14,-13/2,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-13/2,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-7 --17,-8,-8,-5,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,13/2,4,4,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-8,-8,-31/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-39/2,-10,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-15,-14,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-18,-12,-18,-18,-36,-18,-18,-12,-18,-10,-12,-9,-17,-9,-10,-7,-12,-7,-9,-8,-33/2,-8,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-67,-33,-32,-21,-32,-18,-22,-18,-33,-16,-17,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-19,-12,-17,-17,-36,-18,-18,-12,-19,-10,-12,-10,-18,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-11,-25,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-21/2,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-9,-7,-14,-9,-14,-13,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-7,-3,-2,-1,-1,0,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-15 --8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-12,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-34,-33/2,-16,-21/2,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,3,2,2,2,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-4,-8,-5,-15/2,-8,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-36,-18,-35/2,-12,-17,-9,-11,-9,-18,-9,-19/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-8 --7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-11/2,-6,-7/2,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-26,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --13,-6,-5,-3,-9/2,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-23,-11,-12,-8,-23/2,-6,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-16,-7,-7,-4,-15/2,-4,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-42,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-12,-8,-27/2,-8,-11,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-24,-12,-12,-8,-12,-6,-8,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8 --8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-14,-13/2,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-9,-4,-4,-5/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --11,-5,-9/2,-2,-4,-2,-2,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-4,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7 --10,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-19/2,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-18,-17/2,-8,-5,-8,-4,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --19,-9,-8,-5,-8,-4,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-7,-8,-6,-12,-8,-13,-13,-30,-15,-15,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-17,-8,-9,-6,-10,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-8,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-21,-10,-11,-8,-13,-7,-10,-9,-37/2,-10,-12,-10,-19,-12,-19,-19,-36,-18,-18,-11,-17,-9,-10,-8,-33/2,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-9,-24,-11,-11,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-10,-10,-64,-31,-31,-21,-32,-17,-20,-17,-63/2,-16,-16,-11,-19,-11,-16,-15,-29,-14,-15,-10,-17,-9,-12,-10,-39/2,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-16,-9,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-13,-13,-29,-14,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-12 --10,-9/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-9/2,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-15/2,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,2,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-20,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-8,-7,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-11,-6,-7,-6,-10,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-42,-20,-41/2,-13,-21,-11,-13,-11,-20,-10,-10,-7,-12,-7,-21/2,-10,-20,-9,-9,-6,-11,-6,-8,-6,-12,-6,-15/2,-6,-12,-7,-10,-10,-21,-10,-21/2,-6,-10,-5,-13/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,1/2,1,0,0,1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8 --9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-34,-16,-16,-21/2,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-17/2,-5,-8,-9,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-17/2,-5,-8,-8,-15,-7,-8,-6,-19/2,-6,-8,-8,-14,-7,-9,-7,-14,-9,-14,-14,-30,-14,-14,-9,-29/2,-8,-9,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-9,-5,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-16,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-13,-13,-9,-14,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-11,-8,-27/2,-8,-11,-10,-18,-9,-11,-9,-35/2,-12,-18,-18,-38,-19,-19,-12,-18,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-16,-8,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-23/2,-8,-12,-12,-25,-12,-12,-8,-23/2,-6,-7,-6,-13,-6,-7,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-10,-61,-30,-30,-20,-61/2,-16,-20,-17,-30,-15,-16,-12,-39/2,-12,-16,-15,-30,-15,-15,-10,-33/2,-9,-11,-10,-20,-10,-12,-9,-33/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-18,-9,-10,-7,-25/2,-7,-10,-9,-17,-8,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-7,-6,-11,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-25/2,-8,-13,-13,-29,-14,-14,-9,-27/2,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,1,1,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-11 --11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-11/2,-14,-6,-6,-4,-7,-7/2,-5,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-5,-8,-9,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-40,-20,-20,-13,-20,-21/2,-13,-11,-20,-10,-10,-15/2,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-12,-6,-11/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-19/2,-8,-15,-10,-15,-15,-31,-15,-29/2,-9,-14,-8,-19/2,-8,-15,-7,-15/2,-6,-9,-5,-15/2,-7,-15,-7,-8,-5,-9,-5,-13/2,-6,-11,-5,-6,-5,-9,-6,-17/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-27/2,-14,-28,-13,-13,-9,-15,-8,-19/2,-8,-16,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-10,-6,-9,-9,-17,-8,-17/2,-6,-9,-5,-7,-6,-13,-6,-15/2,-6,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-23/2,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-17/2,-6,-10,-5,-7,-7,-13,-6,-15/2,-6,-11,-7,-21/2,-10,-23,-11,-11,-7,-12,-6,-15/2,-6,-10,-5,-6,-4,-8,-4,-13/2,-6,-14,-6,-6,-4,-8,-5,-7,-6,-13,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-25/2,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-8,-8,-15,-7,-15/2,-5,-9,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-59/2,-20,-30,-16,-20,-17,-31,-16,-33/2,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-23/2,-10,-20,-10,-23/2,-9,-16,-10,-31/2,-15,-31,-15,-16,-10,-16,-8,-21/2,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-18,-9,-19/2,-6,-10,-5,-13/2,-6,-13,-7,-8,-6,-10,-6,-19/2,-10,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-13/2,-6,-12,-6,-13/2,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-15/2,-9,-8,-15,-7,-8,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-6,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-11,-8,-13,-15/2,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-12,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-7,-7,-13,-7,-8,-6,-11,-7,-11,-11,-23,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-9/2,-7,-6,-14,-13/2,-7,-9/2,-8,-5,-7,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-11,-11/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-30,-20,-30,-16,-20,-17,-31,-31/2,-16,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-16,-10,-16,-15,-31,-15,-15,-10,-16,-8,-10,-9,-17,-17/2,-9,-7,-12,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-5,-7,-7,-15,-8,-9,-7,-13,-8,-13,-13,-27,-14,-15,-11,-19,-11,-16,-15,-29,-16,-20,-17,-32,-21,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-13,-22,-13,-18,-17,-33,-16,-17,-12,-19,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-37,-18,-18,-12,-20,-11,-13,-11,-20,-10,-12,-10,-18,-11,-16,-15,-31,-15,-16,-12,-20,-12,-16,-15,-29,-16,-20,-16,-30,-20,-30,-30,-61,-30,-30,-19,-29,-16,-19,-16,-29,-15,-16,-11,-18,-11,-15,-14,-28,-14,-14,-10,-17,-10,-13,-11,-22,-11,-13,-10,-19,-12,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-8,-15,-9,-14,-13,-27,-14,-15,-11,-19,-11,-15,-14,-29,-16,-20,-16,-30,-20,-30,-31,-127/2,-31,-30,-20,-30,-16,-18,-15,-27,-13,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-11,-7,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-18,-9,-10,-7,-12,-7,-11,-11,-23,-12,-15,-12,-21,-14,-22,-22,-122,-60,-60,-40,-61,-33,-40,-34,-62,-32,-34,-24,-40,-24,-34,-32,-63,-32,-33,-22,-35,-20,-25,-22,-41,-22,-25,-20,-36,-23,-35,-34,-68,-34,-34,-22,-33,-18,-22,-19,-35,-18,-20,-15,-25,-16,-23,-22,-44,-22,-24,-17,-27,-16,-21,-18,-35,-19,-22,-18,-34,-22,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-17,-11,-18,-10,-14,-13,-26,-14,-16,-13,-23,-14,-21,-20,-41,-20,-20,-14,-22,-12,-15,-13,-24,-13,-15,-12,-21,-13,-18,-18,-36,-18,-19,-14,-23,-14,-20,-19,-38,-21,-25,-21,-39,-26,-40,-40,-81,-40,-41,-27,-41,-23,-28,-23,-42,-21,-22,-16,-26,-16,-22,-20,-39,-19,-20,-14,-24,-14,-18,-16,-31,-16,-19,-15,-26,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-24,-12,-14,-11,-19,-12,-17,-16,-33,-16,-17,-12,-21,-12,-15,-14,-27,-14,-16,-12,-22,-14,-22,-22,-44,-22,-22,-15,-23,-12,-15,-13,-24,-12,-13,-9,-16,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,4,7,4,3,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --17,-8,-8,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-8,-10,-8,-14,-9,-14,-14,-30,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-8,-15,-19/2,-14,-15,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-11/2,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-17,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-15/2,-11,-10,-22,-11,-12,-8,-13,-7,-10,-17/2,-17,-9,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-13/2,-10,-11/2,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-11,-13/2,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-40,-20,-20,-13,-20,-11,-13,-11,-20,-10,-10,-15/2,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-7,-12,-6,-8,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-19/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-8,-5,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-8,-4,-11/2,-4,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-15/2,-6,-10,-6,-15/2,-7,-14,-8,-19/2,-8,-14,-9,-29/2,-14,-30,-15,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-5,-4,-9,-4,-11/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-9,-8,-15,-10,-29/2,-14,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,3,2,3,2,3,3,4,4,7,4,7/2,3,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,2,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-33/2,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-23/2,-9,-17,-11,-33/2,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-8,-23/2,-10,-22,-11,-12,-8,-13,-7,-19/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-19/2,-6,-10,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-19/2,-9,-19,-10,-13,-10,-19,-12,-39/2,-20,-41,-20,-20,-13,-20,-11,-13,-11,-20,-10,-21/2,-8,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-17/2,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-23/2,-7,-12,-6,-15/2,-6,-11,-6,-13/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-21/2,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-12 --11,-5,-5,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-40,-19,-19,-13,-20,-21/2,-13,-11,-20,-10,-11,-15/2,-13,-15/2,-10,-19/2,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-11/2,-7,-6,-12,-11/2,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-12,-6,-6,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-9/2,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-4,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7 --17,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-10,-8,-31/2,-10,-15,-15,-32,-15,-15,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-9,-9,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-14,-9,-15,-15,-32,-16,-16,-10,-29/2,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-13,-6,-6,-4,-15/2,-4,-5,-5,-11,-6,-7,-5,-19/2,-6,-8,-7,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-7,-7,-13,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-32,-16,-16,-10,-29/2,-8,-9,-7,-14,-7,-7,-5,-17/2,-5,-7,-6,-14,-7,-7,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,4,2,2,2,7/2,3,4,4,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-5,-21/2,-6,-10,-10,-60,-30,-30,-20,-59/2,-16,-20,-17,-31,-15,-16,-12,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-12,-9,-16,-10,-16,-16,-33,-16,-16,-10,-33/2,-9,-11,-10,-19,-9,-10,-7,-25/2,-8,-11,-11,-21,-11,-12,-8,-27/2,-7,-9,-8,-18,-9,-11,-8,-31/2,-10,-14,-14,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-23/2,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-6,-21/2,-6,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-41,-20,-20,-13,-41/2,-11,-14,-11,-21,-11,-12,-8,-14,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-25/2,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-6,-21/2,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,5/2,2,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,1,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,1,2,2,2,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3/2,1,0,0,2,2,2,2,3/2,2,2,2,3,2,1,1,1,1,0,0,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11 --9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,1/2,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-6,-11,-11/2,-6,-4,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-15/2,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-6,-6,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-4,-13/2,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-6,-4,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,1,-2,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-40,-19,-19,-12,-19,-10,-13,-11,-20,-10,-11,-8,-14,-8,-21/2,-10,-20,-10,-10,-6,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-21/2,-7,-11,-6,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-13/2,-5,-10,-6,-19/2,-9,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-6,-4,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-8,-4,-5,-4,-6,-4,-6,-6,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-13/2,-6,-12,-6,-17/2,-7,-13,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,4,3,3,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,2,2,2,2,1,1,1/2,1,1,1,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8 --9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-17/2,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-16,-33,-16,-16,-10,-16,-9,-11,-9,-18,-9,-10,-7,-11,-7,-10,-9,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-32,-16,-16,-10,-15,-8,-10,-8,-31/2,-8,-8,-6,-10,-5,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-21/2,-5,-6,-5,-10,-6,-9,-8,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-11,-5,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-34,-17,-17,-11,-16,-8,-10,-8,-29/2,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,3/2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,3,4,4,8,4,4,3,5,3,2,2,5/2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-6,-12,-7,-11,-11,-59,-29,-30,-20,-30,-17,-21,-17,-32,-16,-16,-11,-19,-11,-15,-14,-29,-14,-15,-10,-16,-9,-12,-10,-19,-10,-11,-8,-15,-10,-15,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-9,-10,-7,-13,-8,-11,-10,-22,-11,-11,-7,-12,-7,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-11,-9,-33/2,-8,-8,-6,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-12,-6,-8,-7,-29/2,-7,-8,-6,-11,-7,-10,-10,-17,-9,-10,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-18,-12,-19,-19,-41,-20,-20,-13,-20,-11,-14,-12,-45/2,-11,-12,-9,-15,-8,-11,-10,-18,-9,-10,-7,-12,-6,-8,-7,-29/2,-8,-9,-7,-14,-9,-13,-12,-24,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-3,-1,0,1,1,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,1/2,1,1,1,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-21,-10,-10,-6,-10,-5,-7,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,3/2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-4,-2,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-13/2,-7,-19,-9,-19/2,-6,-9,-4,-11/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,3,5,3,7/2,3,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-5,-10,-6,-21/2,-10,-22,-10,-21/2,-6,-11,-6,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,2,2,1,1,2,2,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,4,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-7 --6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-5/2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-14,-7,-7,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-24,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-9/2,-8,-15/2,-16,-15/2,-8,-9/2,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --10,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-20,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-7,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-15,-7,-7,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-23/2,-6,-7,-5,-11,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,-1,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-4,-5,-4,-15/2,-4,-7,-7,-41,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-11,-8,-25/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-11,-7,-11,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-7,-5,-17/2,-4,-6,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-12,-8,-25/2,-7,-9,-7,-16,-8,-8,-6,-10,-5,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,0,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,3/2,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,1,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-6,-7/2,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-25,-12,-12,-15/2,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-7/2,-7,-5,-8,-8,-16,-15/2,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-4,-11/2,-4,-9,-4,-7/2,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-21,-10,-9,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3,3,6,3,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3,3,0,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-35,-17,-16,-10,-17,-9,-11,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-7,-11,-11,-22,-11,-11,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3/2,1,2,1,1/2,0,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,1,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-14,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-32,-31/2,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-4,-3,-6,-4,-6,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 --15,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-16,-10,-15,-15,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-10,-7,-11,-11,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-9,-5,-7,-7,-15,-8,-9,-8,-15,-10,-15,-14,-30,-14,-14,-9,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-8,-8,-31/2,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-24,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-38,-18,-18,-11,-17,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-35/2,-8,-8,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1/2,1,2,2,2,2,3,3,4,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-63,-31,-30,-19,-29,-15,-18,-15,-28,-14,-16,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-18,-11,-17,-17,-32,-15,-15,-10,-15,-8,-10,-9,-17,-8,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-7,-12,-7,-10,-9,-18,-10,-12,-9,-17,-11,-16,-16,-33,-16,-16,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-10,-10,-43/2,-10,-11,-8,-14,-8,-11,-11,-22,-12,-15,-12,-22,-14,-20,-20,-41,-20,-20,-13,-20,-11,-13,-10,-18,-9,-10,-8,-14,-8,-12,-11,-45/2,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-6,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-5/2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,2,2,2,1,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-13/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,2,2,3,5/2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-31,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-16,-8,-8,-9/2,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-7,-4,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-5 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-15/2,-8,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,4,3,4,3,5,3,3,2,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-32,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-8,-4,-9/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-11,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-11/2,-6,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,2,2,3/2,2,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1/2,0,1,1,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,1,3,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-2,-3,-3,-6 --5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,1,3,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-4,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,2,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,1,2,2,2,2,7/2,3,4,4,6,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,7/2,3,4,3,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-5,-34,-16,-16,-10,-31/2,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-7,-3,-4,-3,-9,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-11,-6,-8,-6,-23/2,-8,-12,-12,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,4,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 --4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-19,-9,-9,-5,-9,-9/2,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,0,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3,3,5,3,5/2,2,3,2,3/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,3/2,2,0,0,1/2,1,0,0,1/2,1,0,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,2,1,1,0,1,0,0,0,1/2,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-6 --10,-5,-5,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-6,-5,-9,-6,-10,-10,-25,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-8,-8,-26,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,0,1,1,1,1,3/2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,7/2,2,3,2,3,2,3,4,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-40,-19,-19,-12,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-3,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-13,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-25,-12,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,4,2,2,2,2,2,3,3,9/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-13 --5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-21,-10,-10,-6,-9,-5,-6,-9/2,-9,-4,-4,-5/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-6,-5,-15,-7,-15/2,-4,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-16,-8,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-23,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-5,-3,-4,-4,-13,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-5,-7,-3,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,2,2,3/2,2,2,2,3/2,1,3,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3/2,1,1,2,3/2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-6 --9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-23,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,-1,0,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,0,1,1,1,2,2,2,3,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-31,-15,-15,-10,-31/2,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-6,-5,-8,-4,-4,-4,-15/2,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-7,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,7/2,3,4,3,5,3,3,2,7/2,2,3,3,3,2,2,2,7/2,3,4,4,2,2,2,2,5/2,2,1,1,3,2,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-19,-9,-9,-6,-10,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-5,-3,-5,-4,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-3,-7 --8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-28,-14,-27/2,-9,-14,-7,-17/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-13/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-11,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,7/2,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-5/2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-4,-2,-2,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-5/2,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,-1/2,-1,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-9,-8,-15,-10,-15,-15,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-33/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-40,-20,-20,-13,-20,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-11,-23,-11,-12,-8,-13,-7,-10,-9,-17,-8,-9,-7,-13,-8,-12,-11,-45/2,-11,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-44,-22,-22,-15,-23,-13,-16,-13,-25,-12,-13,-10,-17,-10,-13,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-9,-37/2,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-9,-4,-4,-2,-3,-1,0,1,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-54,-26,-26,-17,-26,-14,-17,-13,-24,-12,-13,-9,-16,-9,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-41/2,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-59/2,-14,-14,-10,-16,-9,-11,-10,-20,-10,-11,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-11,-23,-12,-15,-12,-21,-14,-22,-22,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-10,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-9,-9,-6,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-6,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,1,1,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-11/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 --8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-10,-6,-10,-5,-6,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1/2,-4,-2,-2,-1/2,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-15,-7,-8,-5,-7,-7/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-10,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-19/2,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-12,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1/2,1,-4,-2,-3/2,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-6,-11,-6,-7,-5,-10,-6,-21/2,-10,-15,-7,-15/2,-5,-7,-4,-9/2,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,4,3,3,3,5,3,7/2,3,4,3,9/2,4,1,1,1,1,2,2,2,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-5,-3,-5,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,1,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-10,-9/2,-4,-3,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-5,-4,-17/2,-5,-8,-8,-9,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,3,3,4,2,2,1,1,1,2,2,1,1,1,1,3/2,2,2,1,2,2,2,1,1/2,0,0,1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-28,-13,-13,-8,-13,-7,-9,-7,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-7,-16,-7,-7,-4,-15/2,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-11,-6,-7,-6,-23/2,-7,-11,-11,-17,-8,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-3,-3,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,5/2,2,3,3,4,3,4,3,5,4,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-11/2,-5,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,0,0,0,0,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,2,2,2,1,2,2,2,2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-11/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,4,3,3,3,0,0,0,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 --3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,1/2,2,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,5/2,3,3,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-7,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-24,-11,-11,-7,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-16,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9/2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-31,-15,-15,-10,-15,-8,-10,-8,-14,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-19/2,-5,-6,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-6,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,1,1,0,-3/2,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,2,3,2,3,3,5,3,4,3,4,3,5,5,-1,0,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-6,-2,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,0,2,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-9,-6,-9,-8,-17 --2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9 --2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,2,2,3/2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-10,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-5,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,5/2,2,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-5/2,-1,-2,-3,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,1,0,0,0,0,1/2,1,2,2,3,2,2,2,7/2,2,3,3,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-14,-7,-7,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,2,2,2,3/2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,9/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-11,-5,-5,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-5,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-39,-19,-20,-13,-20,-11,-13,-11,-20,-10,-10,-7,-11,-6,-9,-8,-35/2,-8,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-22,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,3,5,3,3,3,5,4,5,4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-22 --2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-18,-8,-17/2,-6,-9,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,0,0,-4,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-7,-3,-4,-3,-7,-4,-7,-7,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,-4,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 --1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-3,-6,-2,-2,-1,-5/2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-20,-9,-9,-6,-10,-5,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,-6,-2,-2,-2,-7/2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-13/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,0,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-6,-5/2,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7 --3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-6,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-3,-1,-1,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-7/2,-4,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-6,-4,-7,-7,-8,-4,-7/2,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-10 --3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-5/2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-16,-15/2,-8,-9/2,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 --6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-6,-29,-14,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,0,0,1,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,1,1,2,2,3,2,3,2,7/2,2,2,2,3,3,4,4,-12,-6,-6,-3,-5,-2,-2,-1,-3/2,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-31,-15,-15,-10,-15,-8,-10,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-5,-4,-15/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-14,-9,-13,-13,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,0,0,0,1,1,1,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20 --3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11 --3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,-7,-3,-7/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,0,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-4,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-8,-4,-4,-3,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14 --2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-12 --4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-2,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-9/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-28,-14,-14,-9,-27/2,-7,-8,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,5/2,2,2,2,4,3,4,3,9/2,3,4,5,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-11/2,-3,-5,-4,-7,-3,-4,-4,-15/2,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-8,-7,-13,-7,-8,-6,-25/2,-8,-12,-12,-11,-5,-5,-4,-13/2,-3,-4,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,0,0,0,0,0,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-7/2,-7,-4,-7,-7,-15 --4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-6,-6,-28,-14,-27/2,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-11/2,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,5/2,2,2,2,2,3,4,3,7/2,3,6,4,11/2,6,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-11,-7,-11,-11,-23 --5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-9/2,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-7/2,-7,-9/2,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,6,4,6,6,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-11,-7,-11,-11,-23 --11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-7,-15,-8,-10,-8,-15,-10,-16,-16,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-12,-12,-59,-29,-29,-19,-28,-15,-19,-16,-30,-15,-17,-13,-22,-13,-18,-17,-34,-17,-17,-11,-18,-10,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-20,-10,-10,-7,-12,-7,-11,-10,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,5,5,9,6,9,10,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-53,-26,-26,-17,-25,-14,-17,-14,-27,-13,-14,-10,-17,-10,-13,-12,-23,-11,-12,-8,-12,-7,-9,-9,-18,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-11,-9,-18,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-9,-12,-11,-21,-11,-12,-10,-18,-11,-17,-17,-36,-17,-17,-11,-18,-9,-11,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-11,-14,-12,-22,-15,-23,-23,-21,-10,-11,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-10,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-13,-9,-16,-9,-12,-11,-23,-12,-15,-13,-24,-15,-23,-23,-46 --5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,3,5/2,3,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-10,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-26,-12,-12,-8,-12,-13/2,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-10,-9/2,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-9/2,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --5,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-7/2,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-15/2,-6,-11,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,2,2,4,3,7/2,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-26,-12,-12,-8,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-4,-9,-4,-5,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-3,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 --5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-5,-29,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,11/2,4,5,5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-26,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-16,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-11,-11,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3,2,1,1,1,1,1,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,2,2,0,0,0,1,3/2,2,2,2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-21/2,-7,-11,-11,-22 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-4,-7/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,2,2,2,2,1,1,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,3/2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,5/2,2,4,3,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-9/2,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,1,1,1,0,0,0,0,0,0,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 --2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-5,-5,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-7/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-15/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,3/2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-8,-31/2,-8,-9,-7,-12,-7,-9,-9,-17,-8,-8,-6,-10,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,4,4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-13,-6,-6,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-26,-12,-12,-8,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-17,-8,-8,-5,-9,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-5,-10,-6,-10,-11,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-6,-12,-6,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-7,-11,-11,-23 --1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-1,-5,-2,-5/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-15,-7,-15/2,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,5/2,2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-13 --1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-4,-3/2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --2,-1,-1,0,0,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-13,-6,-6,-4,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-1,-1,-1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-3,-3,-6,-5/2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-5/2,-4,-4,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,0,0,1/2,0,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,0,0,1/2,1,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,0,1,1,1,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-3/2,-1,-2,-1,-3,-3,-15,-7,-15/2,-5,-8,-4,-6,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-9/2,-4,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1/2,0,0,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-43/2,-10,-11,-7,-12,-7,-9,-9,-18,-9,-10,-7,-13,-8,-13,-12,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-8,-33,-16,-16,-10,-15,-8,-10,-9,-17,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-7,-4,-7,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-9,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,-1/2,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-9/2,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-3/2,-1,-4,-2,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12 -0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -0,1,1,1,1/2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,1,1,1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-3,-4,-4,1,1,0,0,1/2,0,0,0,1,1,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,-5,-2,-3,-2,-4,-2,-3,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-10,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13 -0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-12,-11/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-7 -0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,2,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-17,-8,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,3,2,2,2,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,3,2,2,2,2,2,2,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-19,-9,-9,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,3/2,1,1,1,1,1,1,0,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-2,-29,-14,-13,-8,-13,-7,-8,-6,-21/2,-4,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,1,1,1,4,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-18 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-18,-8,-8,-5,-8,-4,-9/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-3/2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-11/2,-6,-12 -0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,0,1,1,1,0,1/2,0,1/2,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10 --2,-1,-1,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-4,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,2,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-28,-13,-12,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-8,-8,-5,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-16,-8,-15/2,-5,-8,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-4,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-26,-12,-25/2,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-11/2,-6,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-5/2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-7/2,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-26,-12,-12,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 --8,-3,-3,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,7,4,4,3,4,2,2,2,2,1,1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-37,-18,-18,-12,-19,-10,-13,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-11,-8,-14,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-53,-26,-26,-17,-26,-14,-17,-14,-26,-13,-15,-11,-18,-10,-14,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-12,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-8,-8,-35/2,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-11,-23,-11,-12,-8,-13,-7,-9,-8,-17,-9,-11,-10,-19,-12,-18,-18,-37 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1/2,-1,0,0,-1/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,4,2,2,2,2,2,2,1,2,1,1,1/2,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-8,-18 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-1/2,-1,-1,0,-1,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,4,2,5/2,2,2,2,3/2,1,2,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-7,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-13/2,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-9,-9,-11/2,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-6,-4,-6,-11/2,-12 --3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,3,2,2,2,2,1,1,1,1,1,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-17/2,-4,-4,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-5,-11,-5,-6,-4,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,3,2,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-3,-1,-1,0,-1/2,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-20 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1/2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-21,-10,-10,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-3,-3,-5/2,-5,-3,-6,-6,-13 --2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-4,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-19,-9,-9,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-33,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-6,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-5,-4,-8,-5,-7,-7,-2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-12,-12,-25 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-3,-5,-3,-6,-6,-13 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-19,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-1,0,0,0,-1,0,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 -0,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-25,-12,-12,-8,-23/2,-6,-8,-7,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-4,-13/2,-4,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 -0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-15/2,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-23,-11,-21/2,-6,-11,-6,-7,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-19/2,-9,-19 -1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-22,-21/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-7/2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-7,-3,-4,-2,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-4,-4,-9,-9/2,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-8,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-28,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-45,-22,-22,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-9,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-38 -1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1/2,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-20 -2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,-2,-1,-3/2,-2,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,1,1,1,1,2,2,3/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,1/2,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-16 -2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-21/2,-6,-8,-6,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-3,-3,-13/2,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-30,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-4,-4,-4,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,0,1,1,1,3/2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-27 -2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 -2,2,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-25,-12,-23/2,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-21/2,-10,-22 -2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20 -3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-19/2,-5,-6,-4,-8,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-8,-6,-11,-6,-8,-8,-33/2,-9,-11,-9,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-8,-33/2,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-9,-9,-26,-12,-12,-7,-11,-6,-8,-6,-23/2,-6,-6,-4,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1/2,0,0,0,-2,-1,-3,-3,-45,-22,-22,-14,-22,-12,-14,-12,-43/2,-10,-11,-8,-13,-7,-10,-9,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,0,1,1,1,2,2,2,1,1/2,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-15,-7,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-16,-8,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 -2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-24,-12,-12,-15/2,-12,-6,-7,-6,-11,-5,-5,-4,-7,-7/2,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-8,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-12,-8,-23/2,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-3/2,-2,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-4,-11/2,-6,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-24,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1/2,0,0,1,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-10,-12,-10,-37/2,-12,-18,-18,-35,-17,-17,-11,-35/2,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-9,-4,-4,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-22,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-43,-21,-20,-13,-41/2,-11,-13,-11,-19,-9,-10,-7,-12,-7,-9,-9,-16,-7,-7,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-9,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-7,-25/2,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-12,-6,-8,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-9/2,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-28,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-3,-5/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-10,-21/2,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-19/2,-9,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-11,-6,-7,-6,-10,-6,-21/2,-10,-22,-10,-10,-6,-11,-6,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-42,-20,-20,-13,-20,-11,-13,-10,-18,-9,-19/2,-7,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-7,-4,-11/2,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-18,-9,-19/2,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-9/2,-6,-4,-8,-5,-8,-15/2,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-15/2,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-6,-11,-13/2,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-11,-11/2,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-41,-20,-20,-13,-20,-10,-12,-10,-18,-9,-9,-13/2,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-13/2,-14,-7,-7,-5,-7,-4,-6,-5,-11,-11/2,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-11,-14,-12,-23,-15,-23,-23,-46,-23,-23,-15,-23,-12,-15,-13,-25,-13,-15,-11,-20,-12,-18,-18,-36,-18,-19,-13,-21,-12,-16,-15,-29,-15,-17,-14,-25,-16,-25,-24,-49,-24,-25,-17,-26,-15,-19,-16,-30,-16,-18,-14,-24,-15,-22,-21,-42,-21,-23,-17,-28,-17,-23,-21,-41,-22,-26,-21,-39,-25,-37,-37,-71,-35,-34,-22,-34,-18,-22,-18,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-16,-11,-19,-11,-14,-12,-24,-12,-14,-11,-20,-13,-19,-18,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,4,6,5,7,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-2,-3,-4,-83,-41,-41,-27,-42,-23,-28,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-17,-15,-28,-15,-17,-14,-25,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-25,-13,-15,-12,-21,-13,-19,-18,-37,-18,-19,-14,-23,-13,-17,-15,-29,-15,-18,-15,-27,-18,-27,-27,-55,-27,-27,-18,-28,-15,-19,-15,-28,-14,-16,-12,-21,-13,-19,-18,-35,-17,-18,-12,-20,-11,-15,-13,-25,-13,-15,-11,-19,-12,-17,-17,-35,-17,-17,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-15,-14,-29,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,-24,-12,-12,-8,-12,-7,-10,-9,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-38,-19,-20,-14,-22,-12,-16,-14,-27,-14,-15,-11,-20,-13,-19,-18,-36,-18,-19,-14,-24,-15,-21,-20,-39,-21,-26,-22,-40,-27,-41,-41,-83 -1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-11/2,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-17/2,-18,-17/2,-8,-5,-9,-9/2,-6,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-3/2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-23,-11,-12,-7,-12,-6,-8,-6,-12,-6,-7,-11/2,-10,-6,-9,-9,-18,-9,-9,-13/2,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-9,-4,-5,-9/2,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-10,-6,-21/2,-11,-23,-11,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-15,-8,-17/2,-6,-12,-8,-23/2,-12,-25,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-21/2,-10,-20,-10,-11,-8,-13,-8,-21/2,-10,-20,-10,-25/2,-10,-19,-12,-37/2,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-15,-7,-8,-5,-8,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-9,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1,2,3,2,2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-17/2,-7,-13,-8,-13,-13,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-8,-4,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-20,-20,-41 -1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-9/2,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-23,-11,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-6,-7/2,-5,-4,-9,-9/2,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-7/2,-6,-3,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27 -1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-10,-11,-24,-11,-11,-7,-23/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-7,-15,-7,-8,-6,-23/2,-7,-11,-11,-25,-12,-12,-8,-23/2,-6,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-9,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-41,-20,-20,-13,-39/2,-11,-14,-11,-22,-11,-11,-8,-27/2,-8,-11,-11,-20,-10,-10,-6,-21/2,-6,-8,-7,-15,-8,-10,-8,-27/2,-8,-12,-11,-24,-11,-11,-7,-23/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-9,-6,-21/2,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-26,-13,-13,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-6,-19/2,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-5,-11,-5,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-11/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-41 -1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-11/2,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-10,-11/2,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,3/2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-13/2,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-11/2,-5,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-28,-14,-14,-9,-13,-7,-17/2,-7,-15,-7,-7,-5,-8,-5,-8,-7,-12,-6,-7,-5,-7,-4,-11/2,-5,-10,-5,-6,-4,-9,-5,-15/2,-7,-16,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,0,1,1,1,2,2,3/2,1,2,2,3/2,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-7,-4,-13/2,-6,-13,-7,-9,-7,-14,-9,-27/2,-13,-27 -1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-5/2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -2,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-25,-12,-12,-7,-11,-6,-8,-6,-25/2,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-11,-6,-8,-7,-27/2,-7,-8,-6,-12,-7,-11,-11,-25,-12,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-9,-17,-11,-17,-16,-38,-18,-18,-12,-18,-10,-12,-9,-33/2,-8,-9,-6,-10,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-5,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,11/2,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,9/2,3,3,3,4,3,3,2,0,0,0,0,0,1,1,2,5/2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-43,-21,-21,-14,-22,-12,-15,-12,-22,-11,-12,-8,-14,-8,-12,-11,-19,-9,-10,-7,-12,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-10,-8,-33/2,-8,-10,-7,-12,-7,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-27/2,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-13,-7,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,0,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,0,0,0,1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,0,0,-1/2,0,0,1,2,2,2,2,-1,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-8,-8,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-20,-41 -2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,1/2,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-22,-21/2,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-11/2,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-21 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-6,-17/2,-8,-21,-10,-19/2,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1/2,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-24,-12,-23/2,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-11/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,0,1/2,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-11/2,-15,-7,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,1/2,0,0,1,0,1,1,1,0,0,0,1,2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-17/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,1,1,0,0,1/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-30,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-4,-4,-10,-5,-6,-4,-17/2,-6,-9,-9,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-11,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27 -3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,3,3,2,3,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,5/2,2,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,3/2,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-5,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-13/2,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-11,-6,-7,-6,-11,-7,-11,-11,-23 -4,3,3,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,2,3/2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-9/2,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22 -7,4,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,0,1,1,1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,1,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-7,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-11,-6,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-8,-10,-8,-14,-9,-14,-14,-36,-17,-17,-11,-18,-10,-12,-10,-19,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-9,-16,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,3,11/2,3,2,2,2,2,3,3,4,3,3,2,3,2,1,1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-48,-23,-23,-15,-24,-13,-15,-12,-23,-12,-13,-9,-15,-9,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-8,-35/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-11,-7,-12,-7,-11,-10,-20,-11,-13,-11,-20,-14,-22,-22,-45 -4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 -4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-4,-2,-9/2,-4,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-6,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-11/2,-6,-4,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-7/2,-5,-7/2,-7,-9/2,-7,-8,-17 -4,2,2,2,7/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,1/2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,4,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,1,1/2,1,2,2,0,0,0,1,1,1,0,0,-2,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,3,4,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-12,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5/2,-1,-2,-3,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-11,-6,-7,-6,-23/2,-8,-13,-13,-27 -3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-3/2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -3,2,5/2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,2,2,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,5/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-3,-5,-5,-9,-5,-6,-4,-8,-5,-9,-9,-20 -3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,-18,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -6,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-23,-11,-10,-6,-10,-5,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-11,-9,-17,-9,-10,-7,-12,-7,-9,-8,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,-1,-7/2,-2,-2,-2,-4,-2,-4,-5,-5,-2,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-2,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-35 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-11/2,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-11/2,-9,-9,-18 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3,3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,1/2,1,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,1,1,1,1,1,1,1/2,0,0,0,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-11,-6,-13/2,-5,-10,-5,-6,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-10,-21 -3,2,3,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,7/2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,7/2,3,4,4,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,6,4,4,3,3,2,2,2,2,1,1,1,3/2,1,0,0,2,1,1,1,1,1,2,2,0,1,1,1,3/2,1,1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,2,2,3/2,1,0,0,2,2,2,1,1,1,0,0,0,1,1,1,3/2,2,2,2,0,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-28,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-2,-3,-3,-14,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -4,5/2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1,-3,-2,-3,-2,-18,-8,-8,-5,-9,-9/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19 -6,4,7/2,3,4,2,5/2,2,3,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,7/2,3,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3/2,1,2,1,1/2,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-13,-7,-8,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-8,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-14,-6,-6,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-7,-19/2,-8,-14,-9,-14,-14,-29 -6,4,4,3,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-2,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-13,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-9,-15/2,-14,-9,-14,-14,-28 -12,7,7,5,6,4,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,2,1,1,0,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,2,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-15,-7,-8,-5,-8,-4,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,0,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-9,-6,-9,-9,-50,-24,-24,-15,-23,-12,-15,-12,-23,-12,-13,-9,-15,-9,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-15,-9,-13,-13,-27,-13,-14,-9,-15,-8,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-5,-9,-9,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-12,-13,-9,-16,-10,-14,-14,-28,-15,-18,-15,-28,-18,-28,-28,-57 -6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,6,4,4,5/2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-8,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-28 -6,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,3,2,7/2,4,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,6,4,7/2,2,4,3,7/2,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,-1/2,-2,0,0,0,-2,0,0,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-9/2,-9,-6,-9,-9,-19 -6,4,4,3,5,3,4,4,4,3,3,3,4,3,4,3,5,3,3,2,5/2,2,1,1,1,1,1,1,3/2,2,2,2,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,5/2,2,4,4,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,7,4,3,2,3,2,3,3,6,4,4,3,9/2,3,3,2,3,2,3,2,3,2,2,2,3,2,1,1,1/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,0,-3,-1,-2,-1,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-7/2,-2,-4,-4,-25,-12,-11,-7,-21/2,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,0,1,1,1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-14,-6,-6,-4,-13/2,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-13,-7,-9,-8,-15,-10,-15,-15,-30 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,5/2,1,1,2,1,2,1,1,1,2,2,2,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -4,3,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,3,2,2,3/2,1,2,1,1,1,3,2,2,1,2,2,3/2,2,5,3,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,1,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,2,2,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-3/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-17,-8,-15/2,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-3/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,1/2,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21 -3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,3/2,1,1,1,1,1,3/2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,7,4,5,4,5,3,3,2,3,2,3,2,3,2,1,1,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,1,1,0,1,1,1,5,3,3,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,0,0,0,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,6,4,4,3,4,2,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-28,-13,-13,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-27/2,-7,-8,-7,-14,-9,-15,-15,-32 -3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,1/2,0,1/2,0,1/2,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-5,-2,-3,-2,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-2,-1/2,-1,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-17 -4,3,3,2,2,2,5/2,2,4,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,4,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,2,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,2,4,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-6,-3,-3,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,0,-2,0,-1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-19 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 -6,4,4,3,7/2,3,4,3,4,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,1,1,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,7/2,3,4,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,-1,-8,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-2,-2,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-17,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,3/2,2,2,2,3,2,2,1,1,1,1,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-7,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,3,3,3,2,3,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,5,3,4,3,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,-1,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-13/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3/2,0,-2,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-4,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,3,2,3/2,1,2,2,3/2,2,1,1,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,0,0,1,1,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 -8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,4,6,6,8,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,9/2,3,4,3,4,2,2,2,3,2,1,1,1,1,2,2,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-31,-15,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,-1,-7/2,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-11,-21,-13,-20,-20,-42 -4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,1,1,2,3/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,1/2,0,1/2,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 -4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,4,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,5/2,2,4,2,5/2,2,1,1,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-11,-7,-11,-11,-23 -3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,2,1,0,0,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 -4,2,2,2,5/2,2,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,7/2,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,9/2,2,2,2,4,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,3,6,4,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3/2,1,1,1,5,3,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-18,-9,-9,-6,-17/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-3,-2,-4,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-27 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 -3,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,3,4,3,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,6,3,3,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,4,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-12,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-5/2,-3,-7,-3,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,1,-1,0,1/2,0,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-11,-7,-11,-11,-22 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,3,2,2,3/2,2,2,2,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-13/2,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,3/2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-9/2,-6,-5,-10,-6,-10,-10,-20 -6,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,7/2,2,2,2,4,3,5,5,9,5,5,4,5,3,2,2,5/2,2,2,2,2,2,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,3,4,4,9,5,5,4,7,5,6,5,15/2,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,7,4,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-27,-13,-13,-9,-14,-7,-9,-8,-29/2,-7,-7,-5,-8,-4,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-22,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1/2,1,2,2,2,2,2,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,2,2,3,2,3,2,3,2,3,2,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-10,-6,-9,-8,-35/2,-10,-12,-10,-18,-12,-19,-19,-40 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,5/2,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-7/2,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1,-3,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,3,6,4,7/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,3,2,5/2,3,6,4,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,3,5,3,3,2,3,2,3,2,3,2,3,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-15/2,-6,-11,-8,-25/2,-12,-26 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,3,3,5/2,3,3,4,3,3,2,3,2,2,5/2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21 -6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9/2,4,5,5,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,3,3,4,3,3,2,3,2,3,3,2,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-23,-11,-12,-8,-25/2,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,1,3/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-9/2,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-20,-10,-10,-6,-21/2,-5,-6,-5,-8,-4,-5,-4,-13/2,-4,-5,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,2,2,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-19,-10,-12,-10,-18,-12,-18,-18,-38 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-5/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-25 -4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-15/2,-8,-23,-11,-23/2,-8,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,-1,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,2,2,3/2,2,3,2,5/2,2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-17/2,-9,-16,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-13/2,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-19/2,-9,-18,-10,-12,-10,-18,-12,-37/2,-19,-39 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,7/2,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-9,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-11,-13/2,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-39 -7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,6,6,10,7,9,9,33/2,9,10,7,10,6,7,6,10,5,5,4,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,3,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,0,0,1,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-10,-6,-9,-9,-18,-9,-11,-9,-16,-10,-16,-16,-46,-22,-22,-14,-22,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-42,-20,-20,-13,-20,-11,-13,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-8,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,4,-19,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-8,-10,-8,-16,-11,-18,-18,-34,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-28,-14,-14,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-14,-11,-20,-13,-19,-19,-38,-19,-21,-15,-24,-14,-20,-19,-39,-21,-25,-21,-38,-25,-38,-39,-79 -4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-3/2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-11/2,-7,-6,-11,-5,-5,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,1/2,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-9,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-39 -5,3,5/2,2,2,2,3/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,5/2,2,5,3,7/2,4,5,4,9/2,5,9,5,5,4,5,3,3,3,5,3,7/2,3,3,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,3,7,4,4,3,4,3,4,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-6,-15/2,-6,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-20,-10,-10,-6,-10,-5,-7,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,0,0,0,1,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-9,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1/2,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27 -5,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,5,3,2,2,5/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,1/2,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-6,-9,-9,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,1/2,1,1,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,2,2,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-17/2,-4,-5,-4,-9,-4,-4,-3,-13/2,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-8,-18,-9,-10,-6,-21/2,-6,-8,-7,-13,-7,-8,-6,-21/2,-6,-10,-9,-20,-10,-10,-7,-25/2,-7,-10,-10,-19,-10,-13,-10,-39/2,-13,-20,-20,-42 -3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,3/2,0,1,1,1,1,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-7,-11/2,-10,-7,-11,-11,-23 -4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,2,2,3,2,3/2,2,2,2,5/2,3,4,3,3,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,2,1,1/2,0,1,1,2,2,1,1,3/2,1,1,1,3/2,1,2,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-7/2,-4,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,1,1,1,3/2,2,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-12,-6,-6,-4,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-3,-6,-3,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-17/2,-7,-13,-8,-27/2,-14,-29 -3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24 -5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,2,3,2,3,3,9/2,3,4,3,5,4,5,5,5,3,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,2,5/2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-2,0,0,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-1,0,0,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,2,2,6,3,3,2,2,2,2,2,5/2,2,1,1,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-4,-5,-4,-9,-6,-9,-10,-20,-9,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-24,-12,-13,-9,-15,-9,-12,-11,-45/2,-12,-14,-12,-22,-14,-22,-22,-44 -3,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-7,-6,-11,-7,-11,-11,-23 -3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,2,2,2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-13,-8,-25/2,-12,-26 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19 -3,2,3,2,3,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,4,4,6,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-15/2,-4,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,5,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-8,-8,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-10,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-8,-16,-9,-11,-9,-33/2,-10,-16,-16,-33 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,3,2,5/2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-13/2,-7,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-4,-3,-8,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-8,-19/2,-8,-14,-9,-14,-14,-29 -2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,3,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1/2,0,1/2,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-13/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-28 -3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,17/2,4,4,3,5,3,3,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-33/2,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,11/2,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-4,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-2,-1,-2,0,0,0,0,1,2,2,3,2,2,2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-3,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-19,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-14,-15,-11,-18,-11,-15,-14,-27,-14,-17,-14,-27,-18,-27,-28,-57 -2,2,2,1,2,2,2,2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-13,-7,-8,-7,-13,-9,-14,-14,-29 -2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,5/2,2,2,2,3/2,2,3,2,3,3,3,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-12,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,0,0,0,1,1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1/2,0,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-2,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-8,-5,-9,-5,-15/2,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-30 -2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 -3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,7/2,2,3,3,2,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,5/2,2,2,3,1,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,1,2,1,1,1,2,2,2,2,-4,-2,-2,0,-1/2,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,0,-1/2,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-9/2,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,0,1,1,1,1/2,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,3,2,3,2,3,3,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-2,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-16,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-16,-11,-17,-17,-34 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-10,-10,-20 -2,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,3/2,1,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,1,1,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-5,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-12,-15/2,-12,-12,-24 -1,1,1,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,-1,0,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,0,1,1,1,1/2,0,0,1,1,1,1,0,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-11,-7,-11,-11,-20,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,7/2,2,3,2,3,3,4,4,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,2,2,3/2,1,1,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-21/2,-6,-7,-5,-10,-6,-9,-9,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-22,-11,-12,-9,-15,-8,-11,-10,-20,-11,-13,-11,-22,-15,-23,-23,-46 -1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1/2,1,1,1,1,1,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-8,-4,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-25 -1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,5/2,2,4,2,3/2,1,2,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,1,1,1,2,2,3,2,2,1,1,1,3/2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-5,-9,-5,-6,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 -0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1/2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,1/2,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,7/2,2,3,3,5,3,3,2,5/2,2,2,1,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,-6,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-12,-6,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3,-13/2,-4,-6,-6,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-17,-8,-7,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,1,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,2,2,5,3,3,2,3,2,3,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,2,1,0,0,-1/2,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,0,-1/2,0,0,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-7,-25/2,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-40 --1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1/2,0,0,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-26 --3,-1,-1,0,-1,0,1/2,0,0,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,7/2,4,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,4,2,5/2,2,4,3,3,3,5,3,2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-11,-7,-21/2,-10,-20,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-5/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-15,-7,-13/2,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3,3,-6,-2,-2,-1,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-9,-9,-9,-4,-9/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-19,-19,-39 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,4,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-11,-11/2,-6,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-8,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-11,-13,-10,-19,-25/2,-19,-19,-38 --7,-3,-2,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,4,7,4,5,5,8,5,7,7,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,8,4,4,3,5,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-10,-13,-11,-21,-14,-22,-22,-40,-20,-20,-13,-21,-11,-14,-11,-20,-10,-11,-7,-12,-7,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-9,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,0,1,1,1,1,1,2,2,3,4,7,4,3,2,3,2,2,2,3,2,3,3,5,4,5,5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-18,-9,-9,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-9,-4,-5,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-10,-18,-11,-17,-17,-34,-17,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-38,-38,-77 --3,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,3,5/2,4,3,3,3,3,2,3,3,4,3,3,2,4,3,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,3,6,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1/2,0,0,-2,-1,-1,-1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-2,-4,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-9/2,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-19,-19,-38 --3,-1,-1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-3,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,5/2,2,4,2,2,2,4,3,3,3,3,2,2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-4,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-14,-6,-13/2,-4,-7,-3,-3,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-12,-7,-9,-9,-19,-10,-25/2,-10,-18,-12,-19,-19,-39 --2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 --4,-1,-1,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,3,-5,-2,-2,-1,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,5,3,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,3,2,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-6,-25/2,-8,-13,-13,-23,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-11/2,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,7/2,2,3,3,4,3,3,2,5/2,2,3,3,7,4,4,3,7/2,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-5,-19/2,-6,-10,-10,-12,-6,-6,-4,-11/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-7,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-8,-17,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-39/2,-13,-20,-20,-41 --2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-9/2,-9,-9/2,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,4,3,3,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,5,3,7/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-17/2,-7,-14,-9,-14,-14,-29 --3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1/2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1/2,0,1/2,1,1,2,2,2,3/2,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,1,0,0,0,1,1,1,4,2,2,2,3,2,2,2,5/2,2,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,-6,-2,-1,0,0,1,1,1,3/2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,2,2,2,1,0,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,1,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-29,-14,-14,-9,-13,-7,-8,-7,-29/2,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-3,-4,-4,-8,-5,-8,-8,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,3,3,4,4,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,0,1,2,2,3,3,4,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,-1/2,0,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-8,-6,-12,-8,-12,-13,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-3,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-8,-7,-27/2,-7,-8,-6,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-12,-15,-13,-24,-16,-24,-23,-47 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,3,2,3/2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,5,3,7/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,3,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-27/2,-14,-28 --1,0,0,0,0,1/2,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-4,-2,-2,-1,-2,0,0,-1/2,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-13/2,-10,-10,-21 --3,-1,-1,0,-1,0,0,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,2,2,5/2,2,2,1,0,0,0,1,3/2,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,-4,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,3,2,3,3,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,3,-1,0,0,0,1/2,0,0,1,3,2,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-14,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-6,-6,-11,-5,-6,-5,-9,-6,-9,-8,-16,-8,-8,-6,-23/2,-6,-9,-9,-16,-9,-11,-9,-18,-12,-18,-18,-37 --1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23 --2,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1/2,1,-3,-1,-1,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,2,2,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,-1,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-21/2,-7,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,4,3,7/2,3,1,1,1/2,0,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-11/2,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-11/2,-6,-13,-6,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-14,-8,-19/2,-8,-15,-10,-16,-16,-33 --2,0,0,0,-1,0,0,1,1,1,0,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-13/2,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,2,2,2,3,5/2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-15,-15,-32 --6,-2,-2,-1,-2,0,1,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-39/2,-10,-11,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-45,-22,-22,-14,-22,-12,-14,-11,-20,-10,-11,-8,-14,-8,-12,-11,-21,-11,-12,-8,-14,-8,-11,-9,-18,-9,-11,-9,-16,-10,-15,-14,-29,-14,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-27,-13,-12,-8,-12,-6,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-6,-29/2,-7,-7,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,2,1,1,1,1,1,1,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15/2,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,11/2,3,3,2,2,2,3,3,4,3,3,3,6,4,5,5,1,1,1,1,2,1,1,1,0,1,1,2,3,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-8,-15,-10,-17,-17,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-31,-15,-16,-12,-20,-12,-17,-15,-30,-16,-20,-16,-30,-20,-30,-31,-63 --2,0,0,0,0,1/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-32 --2,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,-1,-1,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-25,-12,-23/2,-7,-12,-6,-7,-6,-11,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-11/2,-4,-9,-5,-15/2,-8,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-2,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,0,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-9/2,-2,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-9,-16,-10,-16,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-7,-9/2,-8,-4,-6,-6,-11,-6,-8,-6,-12,-15/2,-12,-12,-25 --3,-1,0,0,-1/2,0,0,1,0,0,0,0,1/2,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,-1/2,0,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-27/2,-9,-14,-14,-30,-14,-14,-9,-13,-7,-9,-7,-12,-6,-6,-4,-8,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-10,-6,-19/2,-4,-5,-4,-7,-3,-4,-2,-4,-3,-5,-5,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,2,3,2,1,1,1,1,1,1,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,2,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,1,1,1,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-11/2,-4,-6,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-9,-21,-11,-12,-8,-27/2,-8,-10,-10,-19,-10,-12,-10,-41/2,-13,-20,-20,-41 --2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-11,-5,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-5,-12,-6,-7,-9/2,-8,-9/2,-6,-6,-11,-6,-7,-6,-12,-8,-12,-12,-24 --3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24,-11,-11,-7,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,3,5,3,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-6,-12,-6,-11/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-6,-17/2,-8,-17,-8,-19/2,-6,-12,-7,-19/2,-8,-16,-8,-10,-9,-17,-11,-16,-16,-33 --2,-1/2,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-21/2,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-16,-8,-8,-6,-11,-6,-8,-8,-15,-8,-10,-8,-15,-10,-15,-15,-30 --5,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-7,-3,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-6,-6,-25/2,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-8,-14,-8,-11,-10,-41/2,-11,-13,-11,-20,-13,-21,-21,-44,-22,-22,-14,-22,-12,-14,-11,-39/2,-10,-10,-7,-12,-7,-11,-11,-21,-10,-10,-7,-12,-7,-10,-8,-33/2,-8,-10,-8,-14,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-6,-8,-8,-16,-8,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-29,-14,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-15,-7,-8,-5,-9,-5,-6,-5,-19/2,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1/2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,4,4,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,3,3,2,2,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,7/2,2,2,2,4,3,4,4,8,4,4,2,2,1,1,1,3/2,1,1,1,2,2,3,3,6,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,1,1/2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-16,-9,-11,-10,-39/2,-10,-12,-9,-17,-10,-15,-15,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-17,-31,-20,-30,-29,-59 --2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24,-12,-12,-15/2,-12,-6,-7,-11/2,-10,-5,-5,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-16,-16,-32 --2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,1,-1,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,-1,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-6,-12,-8,-27/2,-14,-28,-14,-14,-9,-14,-7,-9,-7,-12,-6,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-3,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-10,-10,-22,-11,-11,-8,-14,-8,-21/2,-10,-21,-11,-27/2,-11,-20,-13,-39/2,-19,-39 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-7,-7,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-3/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-13/2,-12,-6,-8,-8,-17,-9,-11,-9,-16,-21/2,-16,-16,-33 --2,0,0,0,-1/2,0,-1,-1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-7,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-39/2,-13,-20,-20,-42,-20,-20,-13,-41/2,-11,-14,-11,-20,-10,-10,-7,-12,-7,-10,-10,-22,-11,-11,-8,-25/2,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-8,-12,-7,-9,-8,-16,-8,-8,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-21/2,-6,-9,-8,-14,-7,-8,-7,-27/2,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-15/2,-4,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-10,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,3,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,6,5,9,5,5,4,9/2,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,7/2,2,3,2,3,2,2,2,7/2,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-15/2,-4,-6,-5,-13,-7,-8,-6,-25/2,-8,-13,-13,-27,-13,-14,-9,-27/2,-7,-9,-7,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-9,-7,-15,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-23/2,-6,-8,-7,-15,-8,-10,-8,-15,-9,-14,-14,-29,-14,-14,-10,-16,-9,-11,-10,-21,-11,-12,-10,-35/2,-11,-16,-16,-32,-16,-18,-13,-43/2,-12,-17,-15,-31,-17,-20,-16,-61/2,-20,-30,-30,-60 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-11,-6,-7,-6,-14,-7,-8,-6,-12,-7,-10,-10,-21,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-21/2,-20,-13,-20,-20,-40 --2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-6,-11,-6,-19/2,-10,-19,-10,-21/2,-8,-14,-8,-21/2,-10,-20,-11,-27/2,-11,-20,-13,-20,-21,-42,-20,-41/2,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-12,-6,-17/2,-8,-15,-8,-19/2,-8,-14,-8,-12,-12,-25,-12,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-12,-7,-19/2,-9,-18,-9,-19/2,-7,-11,-6,-8,-8,-14,-7,-17/2,-7,-14,-8,-25/2,-12,-27,-13,-25/2,-8,-12,-6,-17/2,-7,-12,-6,-6,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-7,-4,-13/2,-6,-12,-6,-13/2,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,4,11/2,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,2,2,4,2,5/2,2,3,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,3,4,3,9/2,5,9,5,4,3,3,2,3,2,2,2,3/2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,3/2,1,2,1,1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,1,1,1,1,1,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-9,-14,-7,-17/2,-7,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-15,-7,-8,-5,-8,-5,-7,-7,-13,-7,-9,-7,-12,-8,-12,-12,-26,-12,-25/2,-8,-12,-7,-9,-8,-15,-8,-17/2,-6,-11,-6,-19/2,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-21/2,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-23/2,-10,-21,-11,-25/2,-10,-18,-11,-33/2,-16,-33,-16,-17,-12,-22,-13,-35/2,-16,-31,-17,-20,-16,-31,-20,-30,-30,-60 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-17/2,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-10,-19,-10,-11,-8,-14,-8,-10,-10,-20,-11,-14,-11,-20,-13,-21,-21,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-15/2,-15,-8,-10,-8,-14,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-11,-6,-8,-15/2,-15,-15/2,-9,-7,-14,-17/2,-13,-25/2,-26,-25/2,-12,-8,-12,-6,-8,-7,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-17/2,-18,-8,-8,-11/2,-9,-9/2,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,5,5,9,5,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,2,2,2,2,2,3/2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-13/2,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-13/2,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-15/2,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-12,-10,-20,-21/2,-12,-19/2,-18,-11,-16,-16,-33,-16,-17,-12,-21,-25/2,-17,-16,-31,-17,-20,-16,-31,-20,-30,-30,-61 --5,-2,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-4,-8,-5,-9,-10,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-7,-5,-10,-7,-11,-11,-22,-11,-12,-8,-14,-8,-11,-9,-18,-10,-12,-10,-19,-12,-19,-18,-37,-18,-18,-12,-18,-10,-13,-11,-20,-10,-11,-8,-15,-9,-13,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-7,-11,-11,-22,-11,-11,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-15,-16,-12,-20,-11,-15,-14,-28,-15,-19,-15,-28,-18,-28,-29,-59,-29,-29,-19,-29,-15,-18,-15,-27,-14,-15,-11,-18,-11,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-16,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-16,-10,-14,-14,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-34,-17,-17,-12,-19,-10,-13,-11,-21,-11,-13,-10,-17,-10,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-28,-56,-28,-28,-18,-28,-15,-18,-15,-27,-13,-14,-10,-16,-10,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-11,-8,-15,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-32,-16,-16,-11,-17,-9,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-11,-7,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-29,-16,-19,-16,-29,-19,-30,-30,-60,-30,-30,-20,-31,-17,-21,-17,-32,-16,-16,-11,-19,-11,-16,-15,-30,-15,-15,-11,-18,-10,-12,-11,-21,-11,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-9,-7,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-16,-9,-13,-12,-25,-13,-16,-13,-23,-15,-24,-24,-49,-24,-25,-17,-26,-14,-17,-15,-28,-14,-16,-12,-20,-12,-17,-16,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-20,-16,-29,-19,-28,-27,-55,-27,-28,-19,-31,-17,-22,-19,-37,-19,-22,-17,-29,-18,-27,-26,-53,-27,-28,-20,-32,-19,-26,-24,-48,-26,-31,-25,-46,-31,-47,-47,-94,-47,-47,-31,-48,-26,-31,-26,-47,-24,-26,-19,-31,-18,-25,-24,-47,-23,-24,-16,-25,-14,-19,-17,-32,-17,-19,-15,-28,-17,-25,-25,-50,-25,-25,-17,-27,-15,-18,-15,-28,-14,-16,-12,-21,-12,-17,-16,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-16,-30,-20,-30,-30,-62,-30,-30,-19,-29,-16,-20,-16,-30,-15,-16,-12,-20,-12,-16,-15,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-11,-20,-13,-19,-19,-40,-20,-20,-13,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-14,-14,-28,-14,-14,-9,-15,-9,-12,-10,-20,-11,-13,-11,-20,-13,-20,-20,-41,-20,-21,-14,-22,-12,-14,-12,-22,-11,-13,-10,-17,-10,-15,-14,-29,-15,-16,-11,-19,-11,-14,-13,-25,-13,-16,-13,-23,-14,-21,-20,-41,-20,-21,-14,-23,-12,-15,-13,-25,-13,-14,-10,-18,-11,-17,-16,-32,-16,-18,-13,-21,-13,-19,-18,-35,-19,-23,-18,-33,-22,-33,-33,-67,-33,-34,-23,-35,-19,-23,-20,-37,-19,-21,-16,-27,-16,-22,-21,-41,-21,-22,-16,-26,-15,-20,-18,-35,-19,-22,-18,-33,-22,-33,-32,-65,-32,-33,-22,-35,-20,-26,-23,-43,-23,-26,-20,-35,-23,-34,-33,-67,-34,-36,-26,-42,-25,-35,-33,-64,-35,-41,-34,-62,-41,-61,-61,-123 --2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-5/2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-17/2,-14,-14,-28,-14,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-15/2,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-23/2,-24,-13,-15,-12,-22,-15,-23,-23,-46,-23,-23,-15,-24,-13,-15,-12,-23,-23/2,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-7,-5,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-15/2,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-17/2,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-19/2,-18,-9,-10,-7,-13,-7,-10,-10,-20,-10,-10,-7,-13,-7,-10,-17/2,-17,-9,-10,-17/2,-16,-21/2,-16,-16,-32,-16,-16,-11,-17,-10,-13,-11,-21,-11,-12,-9,-17,-11,-16,-16,-33,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-13/2,-4,-9,-5,-15/2,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-9,-7,-13,-8,-27/2,-14,-28,-14,-27/2,-9,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-14,-9,-29/2,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-15,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-4,-11/2,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-8,-15,-8,-19/2,-8,-14,-9,-13,-13,-27,-13,-27/2,-10,-15,-8,-21/2,-9,-18,-9,-11,-8,-15,-9,-27/2,-13,-26,-13,-27/2,-10,-16,-9,-25/2,-12,-24,-13,-15,-12,-22,-14,-22,-22,-46,-22,-45/2,-15,-24,-13,-31/2,-12,-23,-12,-25/2,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-25/2,-12,-25,-12,-12,-8,-12,-6,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-29/2,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-11,-5,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-21/2,-8,-16,-10,-16,-16,-33,-16,-33/2,-11,-18,-10,-23/2,-10,-17,-9,-10,-7,-12,-7,-21/2,-10,-21,-10,-10,-7,-13,-7,-19/2,-8,-17,-9,-21/2,-9,-17,-11,-16,-16,-32,-16,-16,-11,-18,-10,-13,-11,-21,-11,-12,-9,-17,-11,-33/2,-16,-34,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --1,0,0,0,0,1,1,1,0,0,0,1/2,0,1/2,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20,-19/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-3,-6,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-3,-5,-4,-10,-9/2,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-6,-8,-15/2,-15,-8,-9,-8,-14,-9,-14,-14,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-10,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-5,-10,-6,-10,-10,-22,-21/2,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-13/2,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-12,-6,-8,-7,-13,-13/2,-7,-6,-11,-7,-10,-10,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 --2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-10,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-15/2,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-27/2,-9,-14,-14,-29,-14,-14,-9,-27/2,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-13/2,-3,-4,-3,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-27,-13,-14,-9,-27/2,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-5,-8,-8,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-31/2,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-15,-7,-7,-5,-17/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-9,-8,-15,-8,-9,-7,-27/2,-9,-14,-14,-28,-14,-15,-10,-16,-9,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-22,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-29/2,-8,-12,-11,-22,-11,-11,-7,-12,-7,-9,-8,-15,-7,-8,-6,-25/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-6,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-15,-8,-10,-8,-29/2,-10,-15,-15,-33,-16,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-17/2,-4,-6,-5,-11,-5,-6,-4,-13/2,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-4,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-5,-19/2,-6,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-15,-15,-33,-16,-16,-11,-35/2,-10,-12,-10,-17,-8,-9,-7,-25/2,-8,-11,-10,-21,-10,-11,-8,-25/2,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-31,-15,-16,-11,-35/2,-10,-13,-11,-19,-10,-11,-9,-17,-11,-16,-15,-34,-17,-18,-13,-22,-13,-18,-16,-31,-17,-20,-16,-30,-20,-30,-30,-61 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-6,-9,-5,-6,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-34 --2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-5,-13/2,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-7,-4,-5,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-11/2,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-17/2,-8,-15,-8,-9,-7,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-23,-11,-12,-8,-14,-8,-12,-11,-21,-11,-27/2,-11,-21,-13,-20,-20,-41 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-5,-9,-9/2,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-19/2,-12,-9,-17,-11,-17,-17,-35 --5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,-1,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-5,-19/2,-5,-6,-4,-7,-4,-5,-5,-12,-6,-7,-5,-8,-4,-6,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-29,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-6,-25/2,-6,-8,-6,-12,-8,-13,-13,-25,-12,-12,-8,-12,-6,-7,-6,-23/2,-6,-7,-5,-9,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-33/2,-8,-9,-6,-11,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-8,-17,-8,-8,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-27/2,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-35/2,-9,-10,-8,-14,-8,-12,-12,-28,-14,-14,-9,-15,-9,-12,-11,-22,-12,-14,-12,-23,-15,-22,-22,-46,-22,-22,-15,-23,-12,-15,-12,-22,-11,-11,-8,-13,-8,-11,-10,-24,-11,-11,-7,-12,-7,-9,-8,-15,-8,-9,-7,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-10,-6,-9,-9,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-16,-34,-16,-15,-9,-14,-7,-9,-7,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-18,-9,-9,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-23/2,-6,-6,-5,-9,-6,-9,-9,-23,-11,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-15,-15,-33,-16,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-35/2,-10,-12,-10,-18,-11,-17,-17,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-9,-16,-10,-15,-15,-34,-17,-18,-13,-22,-13,-18,-17,-33,-18,-21,-17,-31,-21,-32,-32,-64 --2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-7/2,-7,-4,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-16,-10,-16,-16,-33 --2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-8,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-7,-7,-5,-7,-4,-5,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-8,-4,-5,-5,-13,-6,-13/2,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-16,-8,-17/2,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-18,-9,-9,-7,-12,-7,-9,-9,-18,-9,-11,-9,-17,-11,-17,-17,-35 --1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-6,-3,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-13/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-4,-6,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26 --3,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-19,-9,-9,-6,-19/2,-5,-6,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-21/2,-6,-10,-10,-19,-9,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-13,-6,-7,-5,-9,-5,-7,-7,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-12,-6,-6,-4,-11/2,-3,-5,-4,-9,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-7,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-10,-6,-21/2,-5,-6,-5,-11,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-25/2,-7,-10,-10,-21,-11,-13,-11,-21,-14,-21,-21,-43 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-5,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-26 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-5/2,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-5/2,-2,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-7,-3,-7/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-25/2,-13,-26,-12,-25/2,-8,-12,-6,-8,-7,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-12,-6,-6,-4,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-9,-17,-11,-35/2,-17,-35 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-9/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-23/2,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --6,-3,-3,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-3,-6,-6,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-7,-13,-6,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-27,-13,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11,-5,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-8,-17,-9,-12,-10,-18,-11,-17,-17,-29,-14,-14,-9,-14,-7,-9,-7,-12,-6,-7,-5,-10,-6,-8,-7,-29/2,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-30,-14,-14,-9,-15,-8,-11,-9,-17,-9,-10,-8,-14,-9,-13,-12,-51/2,-13,-14,-10,-17,-10,-13,-12,-24,-13,-15,-13,-24,-16,-24,-24,-47,-23,-23,-15,-22,-12,-15,-13,-24,-12,-13,-9,-14,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-9,-8,-17,-9,-10,-7,-13,-8,-12,-12,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-10,-15,-8,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-23/2,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-7,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-29/2,-7,-8,-5,-8,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-9,-16,-10,-16,-15,-32,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-7,-13,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-29,-14,-15,-10,-16,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-59/2,-14,-15,-11,-18,-11,-15,-14,-28,-16,-20,-17,-31,-20,-31,-31,-64 --2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-8,-4,-4,-7/2,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,-32 --2,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,0,1,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,3,2,2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,1,1,1,-2,0,-1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-3,-1,-3/2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-23,-11,-23/2,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-11,-5,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-5,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-3/2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-11,-7,-11,-11,-23 --3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-9,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-5/2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-7/2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-19/2,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-5,-6,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-13,-7,-8,-7,-27/2,-9,-14,-14,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-9,-5,-7,-6,-11,-7,-11,-11,-18,-9,-9,-6,-19/2,-5,-7,-6,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-36 --1,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,0,0,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-17/2,-7,-13,-8,-25/2,-13,-27 --1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --2,-1,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,1,1,2,2,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-4,-5,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-20,-9,-9,-6,-10,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-11,-17,-17,-28,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-15/2,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-25/2,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-31/2,-8,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-14,-11,-21,-14,-22,-22,-45 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-4,-8,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-24 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,-2,0,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-7/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 --2,0,0,0,1/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1/2,0,0,0,1,1,2,2,3/2,1,0,0,-6,-2,-2,-2,-7/2,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-17,-8,-8,-5,-9,-4,-5,-4,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-12,-8,-23/2,-6,-7,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-4,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-12,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-13/2,-4,-5,-5,-13,-6,-7,-5,-17/2,-4,-6,-5,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-9,-9,-19,-9,-10,-7,-13,-7,-9,-8,-17,-9,-12,-10,-35/2,-11,-17,-17,-36 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-13,-8,-25/2,-13,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-11,-7,-10,-10,-21,-10,-9,-6,-10,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-19/2,-6,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-17/2,-8,-17,-9,-21/2,-8,-16,-10,-33/2,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-5,-3,-5,-9/2,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-9/2,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-16,-17/2,-10,-8,-16,-10,-16,-16,-33 --2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-37/2,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-8,-4,-4,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-13,-8,-12,-12,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-12,-7,-11,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-10,-16,-16,-34,-17,-17,-11,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-7,-8,-6,-12,-7,-10,-9,-37/2,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-24,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-25,-25,-42,-20,-20,-13,-19,-10,-13,-10,-19,-9,-10,-7,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-6,-8,-7,-15,-7,-7,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-25,-12,-13,-9,-15,-9,-13,-12,-24,-12,-14,-11,-20,-13,-20,-20,-42,-21,-21,-14,-21,-11,-14,-11,-20,-10,-11,-9,-16,-10,-14,-13,-25,-12,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-11,-17,-18,-37,-19,-20,-14,-22,-12,-16,-14,-26,-13,-15,-12,-22,-14,-20,-19,-38,-19,-20,-15,-25,-15,-20,-18,-34,-18,-22,-18,-33,-22,-33,-33,-66 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-4,-3,-6,-4,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-13/2,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 --1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-6,-2,-5/2,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-4,-3,-6,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-8,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-11/2,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-8,-15/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-15/2,-6,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-19/2,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-11/2,-11,-7,-10,-10,-22 -0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-11/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,1/2,0,0,0,3,2,2,2,3/2,2,2,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-11,-6,-7,-6,-21/2,-7,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-23/2,-7,-10,-9,-18,-10,-12,-10,-35/2,-11,-17,-17,-34 -1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-2,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,1/2,0,1,1,1/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,1/2,1,0,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 -1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-3/2,-1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-13/2,-10,-10,-21 -1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,1,1,1,2,2,2,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,4,3,3,2,3,2,2,1,1/2,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-13,-6,-6,-4,-6,-3,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-14,-7,-8,-7,-27/2,-7,-8,-6,-10,-5,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-25/2,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-15,-7,-8,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-9,-9,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-8,-13,-8,-12,-11,-43/2,-12,-14,-11,-21,-13,-20,-20,-40 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-11,-6,-7,-11/2,-11,-7,-10,-10,-21 -2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-1,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1/2,0,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-4,-4,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-4,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-11,-23 -2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-8,-17 -2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,3/2,1,0,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-3,-4,-4,-15/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-15/2,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-8,-9,-8,-15,-9,-14,-14,-29 -2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-5,-4,-9,-5,-8,-8,-18 -3,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-1,0,0,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1/2,0,1,1,0,0,-1,0,1/2,0,2,2,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-9/2,-4,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-6,-13,-8,-12,-12,-25 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 -4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-4,-7,-7,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-12,-8,-12,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-12,-12,-33,-16,-15,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-27/2,-6,-7,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-7,-13,-7,-9,-7,-13,-8,-11,-11,-23,-12,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23 -3,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-17,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-19,-9,-9,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-9,-4,-5,-3,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-7,-8,-6,-12,-8,-13,-13,-26 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15 -3,2,2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,3,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-19/2,-9,-19 -3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-3/2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-5,-3,-7,-4,-5,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-17 -5,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-4,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,7/2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-10,-5,-7,-6,-21/2,-5,-5,-4,-7,-4,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-15/2,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-11,-17,-17,-34 -4,5/2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-7/2,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18 -5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-11,-22 -5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-13,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-11/2,-9,-9,-18 -8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-3,-2,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,0,-1/2,0,0,0,-1,0,1,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,7/2,2,3,3,4,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,1,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-8,-8,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-8,-4,-5,-4,-17/2,-6,-9,-9,-25,-12,-12,-7,-19/2,-5,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-17/2,-5,-8,-8,-14,-7,-7,-4,-15/2,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-23/2,-6,-9,-8,-19,-10,-12,-9,-33/2,-10,-16,-16,-33 -6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-11/2,-16,-8,-8,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 -8,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,3,4,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-17/2,-8,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,4,2,2,2,2,2,5/2,3,5,3,3,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-25,-12,-23/2,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-11/2,-4,-7,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-11,-6,-17/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-16,-32 -8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-5/2,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-24,-23/2,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-9,-10,-8,-15,-10,-15,-15,-31 -15,8,8,5,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-17,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-11,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,1,1,1,2,2,4,3,3,3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-37,-18,-19,-13,-20,-11,-13,-11,-22,-11,-13,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-9,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-31/2,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-15,-7,-8,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-49,-24,-23,-15,-23,-13,-16,-13,-24,-12,-13,-10,-17,-10,-13,-12,-24,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-30,-15,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-11,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-16,-9,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-10,-9,-19,-10,-11,-9,-17,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-15,-30,-15,-17,-12,-20,-12,-16,-15,-31,-17,-20,-17,-32,-21,-31,-31,-62 -8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-8,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-17/2,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-9,-9,-24,-23/2,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -7,4,9/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-8,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,-1,-2,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,5/2,2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-10,-5,-5,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-5,-9,-5,-6,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,2,2,7/2,2,3,3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-14,-7,-7,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-26,-13,-13,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-7,-16,-8,-10,-8,-29/2,-10,-15,-15,-30 -4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1/2,0,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-11/2,-6,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-21 -4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,0,1,1,1,2,2,2,2,5/2,2,2,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-7,-5,-8,-8,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,3/2,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,-5,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-4,-4,-4,-8,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-27,-13,-13,-9,-14,-7,-8,-6,-25/2,-6,-6,-4,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-15,-10,-16,-16,-33 -4,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -3,2,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,1,1,1/2,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,1,2,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19 -2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,1,2,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 -3,2,2,2,5/2,2,2,2,4,2,2,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,-1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-2,-11/2,-3,-5,-5,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,1,1/2,1,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,2,2,2,2,1,1,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,1,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7/2,3,4,4,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,1,3/2,2,2,2,2,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-3,-3,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-21/2,-7,-11,-11,-24 -2,1,1,1,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-15 -2,1,1,1,2,2,3/2,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,-2,0,0,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-2,-3,-2,-4,-2,-4,-5,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,3/2,2,2,2,2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-6,-6,-15,-7,-15/2,-4,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-19/2,-10,-21 -2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,2,3,5/2,4,3,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,1/2,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-13/2,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20 -3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,1,1/2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5/2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-23/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-13,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-8,-5,-9,-5,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-40 -2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1/2,-1,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-2,-1,-2,-1,-3,-3/2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-20 -2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,1,1,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,7/2,3,4,3,4,4,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-13/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,1,1,0,0,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-10,-6,-19/2,-10,-20 -2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,0,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,9/2,4,5,5,0,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-16,-7,-7,-4,-6,-3,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-2,-3,-2,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-21 -2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,-1/2,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-3,-5,-5,-12 -2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,1,1,2,2,2,2,2,1,2,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,4,3,4,4,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 -1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,2,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,3,2,2,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,2,3,7,4,3,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,3,5,3,4,3,5,3,3,3,7,4,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,2,2,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-5,-10,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-6,-11,-7,-12,-12,-26 -1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,1/2,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-14 -1,1,1,1,2,2,3/2,2,0,0,1/2,1,2,2,2,2,0,1,1,1,0,1,3/2,2,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,2,1,1,1,0,1,3/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,3,2,5/2,2,5,3,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,9/2,4,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-5,-8,-8,-17 -1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,0,1,1,1,0,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-7/2,-6,-6,-13 -0,0,0,0,1/2,1,2,2,0,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1/2,0,0,0,-3,-1,-1,0,-1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,2,3/2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,2,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,4,3,7/2,3,4,4,7,4,4,3,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,3,3,2,4,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,-1,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-3/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,0,1,1,1,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,6,4,9/2,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,5,5,7,4,9/2,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-1,0,1/2,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-5,-13,-6,-13/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-11,-23 --2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,0,1,0,1,1,2,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,4,7,4,4,7/2,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,7/2,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-1,0,0,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-11/2,-10,-6,-10,-11,-23 --5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,1,1,2,2,2,1,1,1,2,2,5/2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,3,3,4,4,6,3,3,3,4,3,4,5,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,4,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,1,2,2,2,2,4,3,4,4,7,4,5,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,4,5,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,4,4,7,5,6,5,8,5,7,7,27/2,7,7,5,8,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,3,5,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-11,-6,-8,-7,-15,-8,-10,-9,-17,-11,-18,-18,-29,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-14,-14,-59/2,-14,-15,-10,-16,-9,-12,-10,-20,-10,-12,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-47 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,5/2,3,5/2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,5,3,4,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,3/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,1,1,1,0,1,3/2,2,2,1,1/2,0,2,2,3/2,1,1,1,3/2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,2,2,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,7,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,7/2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,4,6,4,5,5,7,4,9/2,4,5,3,7/2,3,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-16 --3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,0,0,0,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,3/2,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,7/2,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,4,4,11/2,4,6,6,6,4,4,3,7/2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,5,4,13/2,4,6,6,8,5,5,3,4,3,3,3,4,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-5,-4,-6,-3,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-25 --1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,2,3/2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,3,0,0,0,1,1,1,1/2,0,2,1,1,1,2,2,3/2,2,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,2,2,0,0,0,1,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16 --3,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,4,3,3,2,3,2,2,2,3/2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,2,5/2,1,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,15/2,4,5,4,6,4,6,7,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13/2,4,4,4,7,5,8,8,11,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,5,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-20,-9,-9,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-3,-14,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-31 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,5,5,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 --2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,4,9/2,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,1,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-8,-18 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,3/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 --2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,2,7/2,2,2,2,4,2,2,2,3/2,2,2,1,3,2,2,1,1/2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,0,0,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,5,3,3,2,7/2,2,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,7/2,3,4,4,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,5,5,6,4,4,3,9/2,3,3,3,5,3,4,3,4,3,4,4,4,2,2,2,7/2,2,3,3,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,5/2,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,2,2,2,3/2,1,1,1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-17/2,-4,-6,-6,-12,-6,-8,-6,-25/2,-8,-13,-13,-26 --1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,3/2,2,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,3,2,3,5/2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1/2,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-16 --2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,1,1,1,1,1,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,2,1,1/2,1,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,1,1,3/2,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,3,3,9/2,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,7/2,3,4,2,2,2,4,2,2,2,3,2,7/2,4,8,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,7/2,3,3,2,7/2,4,4,3,3,3,4,3,4,4,7,4,9/2,4,7,5,7,7,11,6,6,4,5,3,7/2,3,5,3,7/2,2,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-2,-6,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1/2,0,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-9/2,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-12,-7,-11,-11,-23 --4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,3/2,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,4,4,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,11/2,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,3,3,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9/2,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,5/2,2,2,3,5,3,4,4,8,5,5,4,7,5,8,8,6,4,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,16,9,9,6,8,5,7,6,10,6,7,5,8,5,6,5,17/2,4,4,3,5,4,5,5,9,6,7,6,10,7,9,9,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,17/2,5,6,4,6,4,5,5,10,6,7,6,10,7,10,11,19,10,10,7,9,5,5,4,7,4,5,4,5,3,4,4,15/2,4,4,3,4,3,4,3,5,3,3,2,3,2,2,1,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,7/2,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-14,-9,-14,-14,-28,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-6,-21,-10,-10,-6,-10,-5,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-14,-9,-14,-13,-25,-12,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-45/2,-11,-12,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-22,-22,-46 --1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1/2,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,3/2,1,2,1,1/2,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,10,5,5,4,6,3,3,3,5,3,7/2,2,4,3,3,3,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-25 -0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,5/2,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18 -0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,2,3,3,3,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,-1,0,-1,0,-1,0,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,2,2,4,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,0,0,0,1,3/2,2,2,1,2,2,2,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,4,3,9/2,4,5,5,5,3,3,3,9/2,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,8,5,6,4,13/2,4,6,6,12,7,7,5,6,4,5,4,6,4,4,4,11/2,4,5,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,5,7,7,11,6,6,4,11/2,3,3,2,5,3,3,3,9/2,3,3,3,6,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-21,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-14,-6,-6,-4,-11/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-9,-8,-15,-10,-15,-15,-30 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-18 -0,0,1/2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,2,1,1,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,3,2,5/2,3,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,5,3,4,3,4,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,4,3,5,4,11/2,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,5,3,7/2,3,4,3,7/2,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,4,7,5,6,6,8,5,5,4,5,3,3,2,4,2,5/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24 -1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,2,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,5,3,3,3,4,5/2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -1,1,1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,2,2,1,1,1,1,0,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,9/2,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,9/2,3,4,3,4,3,3,3,7,4,4,3,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,1,3,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,1,2,2,2,2,3,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,5,7,7,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,10,7,9,9,17,9,10,7,11,6,7,6,11,6,7,6,9,6,7,6,9,5,5,4,5,4,5,5,9,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,4,2,2,1,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-32,-15,-15,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20,-10,-11,-7,-12,-6,-8,-6,-25/2,-6,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-43/2,-12,-14,-11,-21,-14,-21,-21,-42 -1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,11/2,10,11/2,6,4,6,4,4,4,6,4,4,7/2,5,7/2,4,4,6,3,3,5/2,4,3,3,3,6,4,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,9/2,5,4,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,3,5/2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,2,2,3/2,1,1,1,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,3/2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,3,2,5/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,5,3,7/2,3,3,2,7/2,4,5,3,7/2,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,13/2,6,11,6,13/2,4,7,4,5,4,7,4,9/2,4,6,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,13/2,6,11,6,13/2,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,7,4,11/2,5,7,4,11/2,5,8,6,15/2,7,9,5,5,4,5,3,7/2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3/2,2,1,1,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-22,-10,-21/2,-6,-10,-5,-6,-5,-11,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-27/2,-14,-28 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,6,11/2,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,11/2,9,5,6,4,6,4,4,4,6,4,4,7/2,5,4,5,9/2,8,9/2,5,4,6,7/2,4,4,6,4,4,4,6,9/2,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,2,2,2,2,0,0,0,1,3/2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,6,3,3,2,5/2,2,2,1,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-13/2,-4,-6,-6,10,6,6,4,11/2,4,4,3,5,3,3,2,7/2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,5,3,4,3,9/2,3,4,4,6,4,4,3,9/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,4,6,6,12,7,7,5,13/2,4,6,6,11,6,6,5,17/2,6,9,9,16,9,9,6,8,5,6,5,10,6,6,5,15/2,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,13,7,7,6,9,6,7,6,10,6,6,6,19/2,7,10,10,13,7,7,5,7,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,7/2,3,4,3,3,2,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-12,-11,-33,-16,-16,-10,-33/2,-9,-11,-9,-17,-8,-9,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-19,-9,-9,-6,-17/2,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-8,-27/2,-8,-11,-10,-19,-10,-13,-11,-20,-13,-20,-20,-41 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,3/2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,7/2,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-22,-10,-10,-6,-11,-6,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1/2,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,10,6,11/2,4,6,4,4,3,5,3,7/2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,5/2,2,3,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,9,5,5,4,6,4,5,5,7,4,9/2,4,6,4,13/2,6,11,6,7,5,6,4,5,5,9,6,13/2,5,8,6,17/2,8,16,8,17/2,6,9,6,13/2,6,9,5,11/2,4,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,10,7,19/2,9,16,9,9,7,10,6,13/2,6,10,6,13/2,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,13/2,6,10,7,21/2,10,13,7,15/2,5,7,4,5,4,7,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-23/2,-11,-33,-16,-16,-10,-17,-9,-21/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-9,-5,-7,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-3,-4,-3,-8,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-6,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,11,6,6,4,6,4,4,3,5,3,4,5/2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,11/2,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,11/2,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,9/2,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,9,13/2,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,8,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-33,-16,-16,-10,-17,-9,-10,-9,-17,-17/2,-10,-7,-12,-7,-10,-9,-19,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-7/2,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-9/2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-13,-13/2,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 --1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,1,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,11/2,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,3,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,3,4,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,10,8,13,8,11,11,20,12,14,12,20,14,20,20,26,13,13,9,12,7,7,6,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-8,-9,-6,-11,-7,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-68,-33,-33,-22,-34,-19,-23,-19,-34,-17,-19,-14,-24,-15,-21,-20,-39,-19,-20,-14,-22,-12,-16,-14,-26,-14,-16,-13,-23,-14,-21,-21,-42,-20,-20,-13,-21,-11,-13,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-14,-9,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-11,-9,-18,-9,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-11,-17,-17,-34,-16,-16,-11,-17,-9,-11,-10,-19,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-12,-14,-11,-19,-12,-17,-17,-34,-17,-18,-12,-20,-12,-16,-15,-29,-16,-19,-16,-29,-19,-28,-28,-58,-29,-29,-19,-29,-16,-20,-17,-32,-16,-18,-13,-23,-14,-19,-18,-35,-18,-19,-13,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-27,-27,-54,-27,-28,-19,-30,-17,-22,-19,-35,-18,-20,-15,-26,-16,-24,-23,-46,-23,-24,-17,-28,-17,-23,-21,-41,-22,-26,-22,-40,-26,-40,-40,-80 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,11,6,6,9/2,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,5/2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,7,9/2,6,6,10,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-9/2,-10,-5,-7,-6,-11,-7,-11,-11,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-6,-8,-13/2,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-15/2,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-8,-15,-15/2,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-10,-11/2,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-9,-17,-17/2,-10,-7,-12,-8,-12,-11,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-39 -0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,9/2,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,9/2,4,8,4,9/2,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,1,1,1,1/2,0,0,0,1/2,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,4,4,6,4,5,5,9,5,11/2,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,11/2,6,10,6,7,6,10,7,21/2,10,14,8,8,5,7,4,9/2,4,5,3,3,2,4,2,5/2,2,4,2,2,2,3,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-10,-5,-7,-6,-12,-7,-11,-11,-33,-16,-16,-10,-16,-8,-21/2,-9,-16,-8,-9,-6,-11,-6,-19/2,-9,-20,-10,-10,-6,-10,-6,-15/2,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-6,-9,-5,-6,-6,-12,-6,-13/2,-5,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-14,-8,-19/2,-8,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-15/2,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-21/2,-9,-16,-8,-19/2,-7,-12,-8,-23/2,-11,-22,-11,-23/2,-8,-14,-8,-11,-10,-21,-11,-13,-11,-20,-13,-19,-19,-39 -0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,7/2,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,8,9/2,5,4,5,3,4,3,4,3,3,2,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,9/2,5,4,7,5,7,7,10,6,6,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-6,-3,-4,-7/2,-8,-9/2,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-14,-7,-9,-7,-13,-8,-13,-13,-26 -0,1,1,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,7/2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3/2,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,3,2,2,2,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,13/2,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,11/2,4,6,5,8,5,5,4,13/2,4,6,6,11,6,7,6,19/2,7,10,10,15,8,8,6,8,5,5,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-5,-7,-6,-23/2,-8,-12,-12,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-23/2,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-22,-10,-10,-6,-19/2,-5,-6,-5,-9,-4,-5,-3,-11/2,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-15,-8,-10,-8,-29/2,-9,-14,-14,-30,-15,-15,-10,-15,-8,-9,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-15,-8,-9,-7,-27/2,-8,-12,-12,-29,-14,-14,-10,-31/2,-8,-10,-9,-16,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-27/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-13,-20,-20,-40 -0,1,1,1,0,1,1,1,0,0,0,1/2,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,6,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1/2,0,0,1,1,1,-1,0,1,1,0,0,1/2,1,0,0,1/2,0,1,1,3/2,1,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,7,4,4,3,5,3,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,3,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,9/2,5,8,4,9/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,4,4,6,4,4,4,7,4,9/2,4,7,5,7,7,10,5,5,4,6,4,4,3,3,2,3,2,3,2,3/2,1,4,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-9/2,-4,-7,-4,-15/2,-8,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-8,-4,-6,-5,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-14,-6,-6,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-13,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-19/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-20,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-11/2,-4,-9,-5,-15/2,-7,-15,-7,-15/2,-6,-9,-5,-15/2,-6,-14,-7,-9,-7,-14,-9,-27/2,-13,-27 -0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,0,0,0,1,1,1,-1,0,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,3,2,3,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-6,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-5,-8,-8,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-4,-6,-5,-12,-6,-7,-6,-11,-7,-10,-10,-22 --1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,9,5,5,4,5,3,4,4,13/2,4,4,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,9/2,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,7,7,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,6,6,8,5,5,5,8,5,6,6,21/2,6,8,7,12,8,11,11,15,8,8,5,7,4,4,4,11/2,3,3,2,3,2,2,2,6,3,3,2,2,2,2,1,1/2,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-16,-16,-10,-16,-8,-10,-8,-31/2,-8,-9,-7,-12,-7,-9,-8,-20,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-3,-4,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-11,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-18,-9,-9,-6,-9,-5,-8,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-18,-9,-10,-7,-11,-6,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-12,-24,-12,-12,-9,-15,-9,-12,-11,-22,-12,-14,-11,-21,-13,-20,-20,-40 -0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,1,0,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-11/2,-10,-6,-10,-10,-21 -0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,6,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,1,1,1,1,1,1,1,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,-1,0,0,1,0,0,0,1,2,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,7/2,4,7,4,5,4,8,5,7,7,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-19,-9,-9,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-13/2,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-23 -0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,5/2,5,3,4,7/2,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -0,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,1,1,1,1,2,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-3,8,5,5,4,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,2,2,2,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,2,2,2,0,0,0,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,4,4,11/2,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,8,5,6,5,9,6,8,8,12,7,7,5,7,4,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,-2,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-5,-3,-6,-6,-24,-12,-12,-7,-21/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-3,-9,-4,-5,-4,-17/2,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-7,-14,-9,-13,-13,-28 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-3/2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,4,5/2,2,2,3,2,2,2,5,3,4,7/2,6,4,5,5,8,9/2,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-3/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-4,-8,-5,-8,-8,-17 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,9/2,3,5,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,5/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,3,4,3,7/2,3,5,4,5,5,7,4,9/2,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,3,3,6,4,9/2,4,7,5,13/2,6,10,6,11/2,4,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,-1,0,0,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-1,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-17,-8,-17/2,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-14,-7,-15/2,-6,-10,-6,-15/2,-7,-13,-7,-8,-6,-12,-8,-23/2,-12,-24 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,5,3,4,3,5,3,3,2,3,5/2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1/2,0,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,10,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,0,0,0,0,-1,0,0,0,0,1,2,2,4,3,4,4,15/2,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,8,4,4,3,5,3,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-6,12,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,10,5,5,4,6,4,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,5,6,5,8,5,7,7,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,11/2,3,3,2,3,2,3,3,5,3,4,4,6,5,7,8,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,11,18,10,10,7,9,5,6,5,8,4,4,3,4,3,3,2,7/2,2,2,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-39,-19,-19,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-32,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-11,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-15,-23,-23,-47 -0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,1,0,1,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-2,-1,-2,-2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,5/2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5/2,4,3,4,3,4,3,4,4,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24 -0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,3,2,2,2,4,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,1,1,3/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-5/2,-2,7,4,7/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,1,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,3,4,3,7/2,3,4,3,9/2,4,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,3,3,6,4,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,11/2,4,6,4,4,3,5,3,5/2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,0,0,0,0,0,0,1/2,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-23/2,-12,-25 -0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,3/2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-4,-5,-7/2,-7,-5,-8,-8,-17 --1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,-1,1,1,2,2,3/2,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,7,4,4,3,4,3,3,2,4,2,2,2,7/2,2,3,3,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,2,2,0,1,1,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,4,3,3,3,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,9/2,3,4,5,7,4,4,3,4,3,4,4,6,4,4,3,7/2,2,3,3,8,5,5,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,11,6,6,4,11/2,4,4,3,6,3,3,2,7/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-1,0,0,0,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-20,-10,-10,-6,-21/2,-6,-7,-5,-9,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-13,-13,-27 -0,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1/2,1,3,2,2,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,-1,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,3,3,3,2,2,2,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,4,3,4,4,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,8,4,9/2,3,4,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-13,-6,-11/2,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-20 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1/2,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,5/2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,11/2,7,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 -0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,2,2,9/2,3,3,2,3,3,4,4,2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,6,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,8,4,4,3,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3/2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,19/2,6,6,6,10,7,10,9,12,7,7,5,6,4,4,3,9/2,2,2,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34 -0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-11/2,-9,-9,-18 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,3,2,2,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,4,3,7/2,4,1,1,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,8,4,9/2,3,4,3,3,3,3,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-3,-7,-3,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15 -0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,5/2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,4,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,5/2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,3,5,4,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,13/2,4,5,5,7,4,4,4,11/2,4,4,4,5,3,3,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,8,6,8,9,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-17,-8,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-27 -1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,5/2,4,3,4,7/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,4,5,4,9/2,4,5,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,1,1,3/2,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-4,-3,-7,-4,-13/2,-6,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-11/2,-6,-11,-6,-8,-6,-12,-8,-25/2,-12,-26 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,5/2,3,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,5,7/2,4,4,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,9/2,6,4,4,7/2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-25 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,0,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,9/2,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,-1,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,9/2,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,6,4,4,4,7,5,7,7,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,15/2,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,5,9,6,8,8,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,29/2,8,8,6,10,6,7,6,10,6,7,5,8,6,8,8,14,8,9,7,11,7,9,9,17,10,11,9,16,11,16,17,25,13,13,9,13,7,8,7,11,6,5,4,5,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-12,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-31,-15,-16,-11,-17,-9,-11,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-25,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-11,-11,-7,-12,-7,-9,-8,-17,-9,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-10,-14,-13,-27,-14,-17,-14,-26,-17,-25,-25,-50 -1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,1,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,7/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-13/2,-12,-6,-6,-3,-5,-5/2,-3,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-7/2,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-13/2,-8,-7,-13,-8,-12,-12,-25 -1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,1,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,7/2,4,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,4,3,7/2,2,4,2,5/2,2,5,3,7/2,3,5,4,5,5,1,1,1/2,0,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,4,7/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-12,-12,-25 -1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,1,1,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,5/2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1,1,2,2,2,2,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,2,2,2,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,0,0,1,1,1,0,-1,0,-1,-1,3,2,1,1,1,1,2,2,4,2,2,2,5/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,0,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,1,1,1,2,2,4,3,3,2,7/2,3,4,3,2,2,2,2,5/2,2,2,1,2,2,2,2,5/2,2,2,3,4,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,5,3,3,3,9/2,4,5,5,0,1,1,1,1/2,1,1,2,2,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,4,8,4,4,3,9/2,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,13,7,8,6,8,5,5,4,6,4,4,3,3,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-4,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-26 -1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,0,1,1,1,0,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1/2,0,0,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,9/2,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 -0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,1,0,1,1,1,1,1,1,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,0,1,1,1/2,0,2,2,2,1,2,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,3,3,2,3,2,3,2,5/2,2,4,3,7/2,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,-1/2,-1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-17 -0,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,2,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,-1/2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-2,-3,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-7,-7,-14 --2,0,0,1,1,1,2,2,5/2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,-4,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,1,1/2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,5/2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,7/2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,0,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,7,4,4,3,4,2,2,2,7/2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,11/2,4,4,3,5,3,4,4,2,2,2,1,1,1,2,2,7/2,2,2,2,3,2,3,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,10,5,5,4,6,4,6,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,4,13/2,4,4,3,4,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-2,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-24,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-15,-7,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-8,-4,-6,-6,-25/2,-6,-8,-6,-12,-8,-12,-12,-26 -0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,1,1,2,2,2,2,5/2,2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,0,0,1/2,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,5,3,4,3,3,2,5/2,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,3,3,5,3,4,4,6,4,11/2,6,7,4,9/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,1,1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-3,-7,-4,-7,-7,-15 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,9/2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11 --1,0,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,3/2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,3/2,2,2,2,2,2,2,1,1/2,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,3,3,4,3,3,2,2,1,1,0,-1,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,7/2,3,4,3,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,2,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,4,6,4,5,4,13/2,4,6,7,10,6,6,4,11/2,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1/2,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,9/2,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,1,0,0,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,1,1,0,0,0,0,1/2,1,0,1,1,1,2,2,2,2,3,2,1,1,-1,0,1/2,1,0,1,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,2,1,2,2,5/2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,3,3,3,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-3/2,-2,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-5,-8,-8,-17 --2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,3/2,1,1,-1,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-16 --5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3,3,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,13/2,4,3,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,11,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,13/2,4,4,4,6,4,5,5,9,6,7,6,9,6,9,9,15,8,8,5,7,4,5,4,5,3,4,3,5,3,3,3,5,3,3,2,3,2,1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-4,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-24,-12,-12,-8,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-5,-4,-9,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-8,-33/2,-8,-9,-6,-10,-5,-7,-7,-14,-7,-9,-8,-16,-10,-16,-16,-33 --2,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,5,3,4,7/2,5,4,5,5,8,5,5,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-3/2,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 --3,-1,-1,0,-1,0,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,0,-1,0,1,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,5,3,5/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,3,4,2,5/2,2,3,3,4,4,5,3,4,4,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,3/2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17 --2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --3,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,7/2,3,4,4,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,4,11/2,4,6,6,11,6,6,4,11/2,3,3,3,3,2,2,2,5/2,2,3,3,1,1,1,1,2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-2,-2,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1/2,0,0,-1,-2,-1,-2,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-4,-3,-8,-4,-5,-4,-17/2,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --2,-1,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,1,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,7/2,3,4,2,5/2,2,4,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,9,5,9/2,3,5,3,3,3,4,2,5/2,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-12,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-14 --1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,1,1,2,2,2,3/2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1/2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,9/2,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-13 --2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,1,1,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,5,3,3,2,3,2,1,1,1/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,15/2,5,6,6,10,7,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,1,1,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-25 -0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-6,-6,-13 -0,1,1,1,-1,0,1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,7/2,4,6,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,4,5,4,9/2,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-7,-7,-15 -0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-12 --1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-3,-1,-1,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,9/2,3,4,4,9,5,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,3,4,3,3,2,5/2,2,3,3,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,5,8,5,6,5,17/2,6,8,9,15,8,7,5,13/2,4,5,4,8,4,4,3,7/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-9/2,-3,-5,-5,-2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,11/2,5,4,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-5,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14 --2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,5,3,4,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,11/2,5,10,6,11/2,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,4,3,7/2,3,5,4,9/2,4,9,5,11/2,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,15/2,5,8,5,11/2,4,7,4,4,3,4,3,3,3,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-11/2,-5,-12,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-15,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,7/2,5,4,6,5,10,6,6,4,6,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,4,5/2,3,2,4,5/2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,7/2,4,4,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,0,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,4,5,5,8,5,5,3,4,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,6,8,9,35/2,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,9,5,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,9,9,16,9,11,9,15,11,16,16,27,14,15,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,2,1,0,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-6,-9,-9,-37,-18,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-14,-8,-12,-12,-47/2,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-16,-11,-17,-17,-32,-15,-15,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-16,-9,-12,-10,-19,-10,-13,-10,-19,-12,-18,-17,-35,-17,-18,-12,-20,-11,-13,-11,-22,-11,-13,-10,-17,-10,-14,-13,-26,-13,-13,-9,-15,-8,-11,-9,-18,-9,-11,-9,-16,-10,-16,-16,-33,-16,-17,-11,-17,-9,-12,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-16,-11,-17,-10,-13,-12,-24,-12,-14,-11,-21,-14,-21,-21,-43 --2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,5/2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,3,3,6,4,4,3,4,5/2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,5/2,3,5/2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-9/2,-9,-9/2,-6,-9/2,-9,-11/2,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,3,7/2,3,4,3,7/2,3,3,2,3,3,4,3,3,3,6,4,4,3,4,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,4,5,4,5,5,9,6,13/2,6,8,6,17/2,8,14,8,15/2,6,8,5,5,4,8,5,5,4,5,4,9/2,4,6,4,4,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,6,4,7/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,2,2,3/2,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-11/2,-4,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-13/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 -0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,9/2,6,6,10,6,6,4,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-11/2,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-14 --1,0,0,0,0,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,6,4,4,3,7/2,3,4,4,4,3,3,2,3,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,9/2,3,4,5,10,6,6,4,13/2,4,5,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,3,3,3,2,2,2,7/2,3,4,4,6,4,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,9,5,6,4,11/2,4,6,6,10,6,6,6,19/2,6,9,9,14,8,8,5,13/2,4,4,4,8,5,5,4,5,4,5,4,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,5,3,3,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-5/2,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-19,-9,-8,-5,-17/2,-4,-6,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-9,-9,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22 -0,1/2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-11/2,-12 -1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,7/2,4,7,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,3,3,2,2,2,3,3,7,4,9/2,3,4,3,9/2,4,8,5,5,4,8,5,7,7,9,5,5,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,4,3,3,2,3,2,3/2,2,2,1,1,1,1,1,1,1,4,2,5/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-14 -1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,3/2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 -1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-3,-1,-1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,1,1,1,1,2,3,2,3,3,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,-1,0,1,1,2,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,2,-1,0,0,0,0,1,1,1,3/2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,1,1,1,1,2,2,5,3,3,2,3,2,3,3,9/2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,4,2,2,2,2,2,2,2,9/2,3,4,3,5,4,5,4,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,10,6,6,5,8,5,6,6,23/2,7,8,7,11,7,10,10,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,7/2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,1,1/2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-2,-1,-1,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-6,-6,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21 -1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,3/2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,1,1/2,0,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,3/2,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,3,2,7/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,3,3,3,3,2,7/2,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,7/2,4,6,4,4,4,6,4,13/2,6,8,4,9/2,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,5/2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-11/2,-6,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-11/2,-6,-12 -2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,5,3,3,3,5,4,5,5,6,7/2,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,-1,1,1,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,0,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,3/2,1,1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,-1,0,0,1,2,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-3/2,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,5,3,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,11,6,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,9/2,3,3,3,6,4,4,3,9/2,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,0,0,0,0,-3/2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-11/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-8,-8,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,5/2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,6,7/2,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-4,-4,-8 -2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,1,0,1,3/2,1,1,1,2,2,1,1,2,2,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,2,2,3/2,2,2,2,5/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,0,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,5,3,3,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,7/2,3,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,2,4,3,7/2,4,10,5,5,4,5,3,3,3,5,3,5/2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,7,4,4,3,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,9/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,3/2,1,2,2,3/2,1,0,0,0,0,-1,0,-3/2,-2,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-13,-6,-11/2,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-12 -2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,2,3/2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1/2,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,4,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,9,5,5,7/2,4,3,3,3,4,5/2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,5/2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,4,4,7/2,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12 -3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,3,-1,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,10,5,5,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,7/2,2,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,2,4,2,2,2,3,2,3,3,6,4,5,5,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,17,9,9,6,9,6,7,6,11,6,6,4,6,4,4,4,15/2,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,23/2,6,7,5,8,5,6,6,11,7,8,7,13,9,13,13,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7/2,2,2,1,1,1,0,0,0,0,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,1,1,1,1,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-23,-11,-11,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-12,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-9,-23,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1/2,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,3/2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12 -3,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,1,2,5/2,2,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,5,3,3,2,3,2,3/2,2,3,2,2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,9,5,11/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,5,5,8,6,8,8,8,4,9/2,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,-1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-13/2,-6,-10,-4,-9/2,-2,-5,-2,-7/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-9/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13 -3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,3/2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,6,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9 -6,4,4,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,5/2,2,2,3,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,5/2,2,3,3,7,4,3,2,3,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,-1,-1,2,2,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,-1/2,0,0,-1,-1,0,-1,0,-3/2,-1,-2,-1,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,-1,6,3,3,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,3,3,2,7/2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,4,4,5,3,4,3,9/2,3,4,4,6,4,4,3,5,4,5,5,6,4,4,4,11/2,4,4,4,6,4,6,5,17/2,6,8,8,8,5,5,4,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-13,-6,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-7,-7,-14 -4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,5,5,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 -6,4,4,3,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,5/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,5/2,2,3,2,3/2,1,2,2,2,2,2,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,0,0,-5,-2,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,0,0,1/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,5/2,2,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,3,2,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,5,5,5,3,7/2,3,5,3,4,3,5,4,5,4,7,5,7,7,7,4,9/2,4,4,3,7/2,3,5,3,4,3,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-6,-3,-9/2,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 -6,3,3,5/2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,3/2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,3/2,2,2,2,3/2,2,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1/2,0,1/2,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-10 -10,6,6,4,5,3,4,3,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,11/2,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,3,3,3,4,2,2,1,1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,1,1,1,0,0,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,-1,0,0,1,1,1,0,0,1/2,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,4,3,5,5,8,5,5,3,4,3,3,3,6,3,3,2,3,2,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,8,5,5,4,6,4,6,5,9,6,8,7,12,8,12,12,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,1,2,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,4,3,3,3,4,3,3,2,5/2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-4,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-19 -6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,5,3,3,3,4,3,4,7/2,6,4,5,4,7,5,7,7,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-9/2,-10 -8,4,9/2,3,4,3,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,7/2,3,4,2,5/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,0,-1/2,0,-1,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,5,3,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,11/2,4,7,5,7,7,9,5,11/2,4,6,4,4,4,5,3,7/2,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-11 -7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,3/2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1/2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,5/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-8 -11,6,6,4,11/2,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,7/2,2,2,2,3,2,3,2,3,3,4,4,3,2,2,2,3/2,1,1,1,3,2,3,2,3,3,4,4,5,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-2,-2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1/2,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,-7,-3,-3,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,2,2,2,2,3,3,4,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,5,3,3,3,9/2,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,9/2,3,4,4,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,3,3,4,3,3,3,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,12,7,7,5,15/2,5,6,5,8,4,4,3,9/2,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,1,1,2,0,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,1,4,3,3,2,2,2,2,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-15 -8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,3,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,9,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,3,2,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,7/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,5,4,5,4,10,5,5,4,5,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,13/2,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,5,7,4,9/2,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,4,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,4,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,4,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,9/2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-5/2,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-5,-4,-8,-5,-7,-7,-15 -21,11,12,9,13,8,9,8,13,7,7,5,7,5,6,5,9,5,5,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,6,6,10,6,6,4,6,3,3,2,3,2,2,2,2,2,3,3,6,3,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,18,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,10,17,12,18,18,25,13,13,9,12,7,8,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,4,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,5,3,3,2,3,2,3,2,3,2,1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-19/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-21,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,9/2,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,-1/2,-2,-2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,13/2,10,10,13,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 -12,7,7,5,8,5,11/2,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,2,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,9/2,4,6,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,7/2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,7/2,3,4,3,7/2,3,4,3,9/2,4,10,5,5,4,6,4,7/2,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,5,4,5,4,11/2,5,8,5,6,5,8,6,10,10,14,8,15/2,5,6,4,5,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,0,0,1/2,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-15 -8,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,3,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,2,2,3,3,4,7/2,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,9/2,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 -12,7,7,5,15/2,4,5,4,7,4,4,3,9/2,3,4,4,5,3,4,3,7/2,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,6,4,4,3,7/2,3,4,3,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,5,5,8,4,4,3,5,3,3,2,4,3,3,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,0,0,1,1,0,0,-1/2,0,0,-1,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,-7,-3,-4,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,1,1,2,2,2,2,4,3,3,2,5/2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,1,3/2,2,2,1,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,11/2,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,10,6,6,4,11/2,3,3,3,5,3,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,5/2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,14,7,7,5,7,4,5,5,8,5,5,4,5,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,2,2,2,2,3/2,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-17 -7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,3/2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,2,5/2,6,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,8,9/2,4,3,5,3,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-10 -8,5,5,4,6,4,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,2,2,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,6,4,9/2,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,1,1/2,1,2,1,1/2,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,4,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,3,7,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,4,3,3,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,10,6,11/2,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,-1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13 -7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,3,2,3,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,5/2,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-11 -13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,11/2,3,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,9/2,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,2,2,2,3/2,1,1,1,0,0,-1,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,0,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-2,5,3,3,2,3,2,3,2,7/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,7,4,4,3,5,3,3,3,5,4,5,4,7,5,6,6,13,7,7,5,6,4,4,4,13/2,4,4,3,4,3,3,3,8,5,5,4,5,3,3,3,9/2,3,3,3,4,3,5,5,4,3,3,2,2,2,3,3,11/2,4,4,3,5,3,4,4,10,5,5,4,6,4,6,6,21/2,6,8,6,10,7,10,11,16,9,9,7,10,6,7,6,17/2,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,4,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-21/2,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-5,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-12,-7,-11,-11,-22 -8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,5/2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,2,2,2,3/2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12 -9,5,5,4,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,3,3,4,2,5/2,3,4,3,3,3,4,3,4,4,5,3,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,4,9/2,4,7,4,4,3,5,3,3,2,2,2,3/2,2,2,2,2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,5/2,2,3,2,3/2,1,1,1,1/2,0,0,0,1/2,0,2,1,1,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,0,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,3/2,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,4,3,3,2,4,2,2,2,4,3,4,3,5,3,4,4,9,5,5,4,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,7/2,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,7/2,3,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,3/2,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-6,-6,-12,-5,-5,-3,-7,-3,-4,-3,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14 -8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,5/2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,7/2,4,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,-1/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,4,6,4,6,6,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1/2,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11 -13,7,6,4,13/2,4,5,5,8,5,5,4,13/2,4,5,5,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,13/2,4,4,4,8,5,6,5,7,4,5,5,9,5,5,4,6,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,7/2,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,1,1,1,2,2,5,3,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,2,1,1,1,3/2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,3,4,4,5,3,3,3,9/2,4,5,5,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,10,6,7,6,10,7,10,9,13,7,7,5,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1/2,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1/2,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-9,-9,-6,-17/2,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-9,-6,-9,-9,-19 -9,5,4,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,6,7/2,4,3,5,3,4,7/2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,1,1,1,0,0,0,0,0,-1/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,5/2,3,5/2,3,7/2,7,4,5,4,7,5,7,6,8,5,5,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,3/2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,1/2,1,1,0,0,0,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 -13,7,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,7/2,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,5,3,5/2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1/2,1,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,11,6,6,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,4,3,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,7/2,3,4,3,4,5,9,6,13/2,5,9,6,9,9,11,6,6,4,6,3,3,2,5,3,3,2,4,3,3,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-7,-7,-16,-8,-15/2,-5,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-5,-4,-8,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-9/2,-4,-7,-5,-8,-8,-17 -13,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,5/2,4,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1/2,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,7/2,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,4,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,9/2,8,5,6,5,8,6,8,17/2,10,6,6,4,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,1,1,1,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-15/2,-16 -24,13,13,9,12,7,9,8,14,8,9,7,10,6,7,6,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,8,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,11/2,4,4,3,5,3,4,4,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,5,7,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,6,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,20,10,10,7,9,5,6,5,8,4,4,3,5,4,5,5,19/2,6,6,4,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,7,6,9,6,9,9,17,10,11,9,15,11,16,16,18,9,9,6,8,5,5,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,0,0,0,0,0,1,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-6,-13,-7,-8,-7,-13,-9,-15,-15,-28,-14,-14,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-9,-18,-9,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-8,-35/2,-8,-9,-6,-11,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-33 -13,7,7,5,7,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -14,8,15/2,6,8,5,11/2,5,8,5,5,4,5,4,9/2,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,4,5,5,8,4,9/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-1,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,3/2,1,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4,3,7/2,3,6,4,7/2,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,4,4,5,4,11/2,6,11,6,11/2,4,6,4,4,3,5,3,3,2,4,3,7/2,4,6,4,7/2,3,3,2,3,3,3,2,3,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,5,9,5,6,5,8,6,9,9,10,6,11/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-8,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18 -10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,7/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,6,5,7,7,8,9/2,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -15,8,8,6,17/2,5,6,6,8,4,4,4,11/2,4,5,5,7,4,4,3,9/2,4,5,5,6,4,4,4,13/2,4,6,6,11,6,6,4,9/2,3,3,2,5,3,3,3,4,3,3,3,5,3,4,4,11/2,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,6,4,4,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,6,4,4,3,7/2,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,12,7,7,5,13/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,4,3,4,4,11/2,4,6,6,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,12,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-4,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-19/2,-6,-10,-10,-20,-10,-10,-6,-21/2,-6,-8,-7,-13,-6,-6,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22 -9,5,5,4,6,7/2,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,8,5,5,7/2,5,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,5,3,3,2,4,2,2,2,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,7/2,3,5,3,3,3,5,3,4,4,6,4,7/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,4,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,6,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,10,6,11/2,4,6,4,4,4,5,3,7/2,3,4,3,7/2,3,6,4,7/2,2,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,7/2,3,5,3,3,2,3,2,7/2,4,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,0,1,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-4,-3,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-17/2,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17 -11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,5/2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,5/2,4,4,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,6,4,6,4,6,5,17/2,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,10,5,5,4,6,4,5,5,17/2,5,6,5,9,6,9,9,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,11/2,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-5/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,5/2,2,2,2,2,2,3,3,8,5,5,3,4,3,3,3,11/2,3,3,2,3,2,3,3,5,3,2,2,2,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,2,7/2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,4,4,4,9,5,5,4,6,4,6,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,7,6,21/2,6,7,6,9,6,8,8,11,6,7,6,10,6,8,8,27/2,8,10,9,15,11,16,16,18,9,9,6,8,5,5,4,15/2,4,5,4,7,5,6,6,6,4,4,3,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-16,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-9,-6,-9,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-7,-6,-27/2,-7,-8,-6,-10,-6,-8,-7,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-20,-10,-10,-6,-10,-6,-8,-7,-27/2,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-6,-8,-8,-19,-9,-10,-6,-10,-6,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30 -12,13/2,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,6,7/2,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-9/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -14,8,15/2,6,7,4,11/2,5,7,4,5,4,6,4,5,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,10,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,3/2,2,1,1,1,1,-1,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,5,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,6,4,9/2,4,7,5,13/2,6,12,6,13/2,4,7,4,9/2,4,6,4,7/2,3,5,3,7/2,3,6,4,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,9/2,4,5,4,9/2,4,6,4,9/2,4,6,4,11/2,5,8,5,5,4,6,4,6,5,9,6,13/2,6,10,7,21/2,10,12,6,6,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-22,-10,-21/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-10,-20 -12,13/2,6,5,6,4,4,4,6,4,4,7/2,5,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,3,4,3,4,7/2,5,3,4,4,6,4,6,6,10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,7,4,4,3,5,7/2,5,4,7,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-5/2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -22,12,12,8,23/2,6,7,6,11,6,7,6,17/2,6,8,7,11,6,6,5,7,4,5,5,8,5,6,5,17/2,6,9,9,17,9,9,6,19/2,6,7,6,7,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,8,5,6,5,17/2,6,8,8,14,7,7,5,15/2,4,5,5,7,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,9/2,3,3,3,4,3,3,2,7/2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,5/2,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,2,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,2,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,1,2,2,2,2,4,3,3,2,7/2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,7/2,2,3,3,7,4,5,4,6,4,5,5,9,5,6,6,19/2,6,9,9,18,9,9,6,9,5,5,4,7,4,4,4,11/2,4,5,4,8,4,4,4,11/2,4,4,4,7,4,4,4,6,5,7,7,10,6,6,4,13/2,4,5,5,8,5,6,5,15/2,6,8,7,12,7,7,5,15/2,5,6,6,12,7,9,8,14,10,15,15,17,9,9,6,8,5,5,4,8,5,6,5,7,5,6,6,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,1,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-9,-9,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-7,-7,-16,-8,-10,-8,-31/2,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-9,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-10,-7,-23/2,-6,-9,-8,-16,-8,-10,-8,-31/2,-10,-15,-15,-31 -15,8,8,6,8,9/2,5,4,8,9/2,5,4,6,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,5,3,3,3,4,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,7/2,4,4,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-9/2,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-10,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -22,12,12,8,11,6,15/2,6,11,6,13/2,5,8,5,7,7,11,6,13/2,5,7,4,11/2,6,9,6,13/2,5,8,6,17/2,9,17,9,9,6,10,6,13/2,5,7,4,5,4,6,4,11/2,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,17/2,8,15,8,8,6,8,5,11/2,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,2,1,1,1,3,2,2,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,1,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,4,7,4,9/2,4,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,4,9/2,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,27/2,14,16,8,17/2,6,8,5,11/2,4,8,5,5,4,6,4,6,5,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-13/2,-4,-6,-3,-5,-4,-6,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-10,-6,-19/2,-10,-21,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-7,-7,-13,-6,-13/2,-4,-7,-4,-5,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-19/2,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-15/2,-7,-13,-7,-17/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-8,-15,-10,-15,-15,-32,-16,-31/2,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-14,-7,-17/2,-7,-13,-8,-25/2,-12,-26,-13,-13,-8,-14,-7,-17/2,-7,-15,-7,-8,-6,-11,-6,-19/2,-9,-19,-9,-9,-6,-12,-7,-19/2,-8,-16,-8,-21/2,-8,-16,-10,-31/2,-15,-31 -21,11,11,8,11,7,8,13/2,11,6,6,5,8,5,7,13/2,11,6,6,5,7,9/2,6,6,10,6,7,11/2,9,6,9,9,17,9,9,6,9,11/2,6,5,8,9/2,5,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,5/2,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,3/2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,7/2,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-14,-7,-8,-7,-14,-7,-8,-6,-11,-13/2,-10,-9,-19,-9,-9,-6,-12,-7,-9,-8,-17,-9,-10,-8,-16,-10,-16,-15,-31 -41,21,21,14,21,13,16,14,24,13,13,10,16,10,14,13,23,12,12,9,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,13,8,10,9,15,11,16,16,31,16,16,11,16,9,10,8,13,7,8,6,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,7,12,8,11,10,18,9,9,7,10,6,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,0,1,1,2,2,2,3,5,3,4,4,6,4,6,6,21/2,6,7,5,8,5,6,5,9,5,6,5,7,5,8,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,12,12,22,11,11,8,12,7,7,6,10,6,7,5,8,6,8,7,13,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,24,13,13,9,13,7,8,6,10,6,7,5,8,5,6,6,11,6,7,5,8,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,22,11,11,8,11,7,9,8,13,7,7,5,8,6,8,7,13,7,6,4,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,6,5,8,5,7,7,13,8,9,8,13,9,12,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,21,12,13,10,17,11,16,16,31,16,17,12,18,11,13,11,20,11,13,10,17,11,16,15,28,15,15,11,18,11,15,14,27,16,19,16,28,19,27,27,28,15,15,10,15,8,9,7,12,7,7,5,8,6,8,8,15,8,9,7,10,6,7,6,11,7,8,7,11,7,10,10,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,9,16,11,17,17,33,17,18,13,19,11,13,11,20,11,13,10,16,10,13,13,24,13,14,10,16,10,12,11,19,10,11,9,14,9,13,13,24,13,13,9,12,7,8,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-11,-6,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-8,-8,-6,-11,-6,-8,-8,-16,-9,-11,-9,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-17,-35,-18,-19,-14,-24,-14,-19,-18,-35,-19,-23,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-23,-19,-35,-17,-18,-13,-22,-13,-18,-16,-32,-16,-17,-12,-19,-11,-14,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-17,-17,-11,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-18,-12,-18,-19,-39,-19,-20,-13,-21,-12,-15,-13,-25,-13,-14,-10,-18,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-18,-38,-19,-19,-12,-19,-10,-13,-11,-21,-11,-12,-10,-18,-11,-16,-15,-31,-16,-17,-13,-22,-13,-18,-16,-32,-17,-21,-18,-33,-21,-32,-32,-64 -21,11,11,8,11,7,8,7,12,7,7,11/2,8,6,8,7,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,9/2,7,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,4,5/2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,9/2,5,4,6,4,5,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,17/2,14,10,14,14,15,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,17,9,10,7,10,6,7,6,10,6,7,6,8,5,7,7,13,7,7,5,9,11/2,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,5/2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-13/2,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-16,-33/2,-34,-33/2,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-11/2,-9,-5,-6,-11/2,-11,-6,-7,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-9,-9,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-15/2,-8,-6,-11,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -21,11,23/2,8,11,7,8,7,12,7,15/2,6,8,6,8,7,12,6,6,5,8,5,11/2,5,9,5,5,4,7,4,11/2,6,9,5,11/2,4,5,4,9/2,4,6,4,4,3,4,3,9/2,4,6,4,9/2,4,5,3,4,4,7,5,6,5,8,6,17/2,8,16,9,9,6,9,5,11/2,4,6,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,5,5,9,5,5,4,5,3,7/2,3,3,2,3,2,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,4,8,4,4,3,6,4,5,5,8,5,6,5,8,5,6,6,11,6,13/2,5,6,4,4,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,4,6,4,13/2,7,13,7,7,5,7,4,9/2,4,5,3,4,3,4,3,7/2,4,6,4,7/2,3,5,3,4,4,6,4,7/2,3,5,4,5,5,10,6,11/2,4,6,4,5,4,7,4,4,3,5,4,9/2,4,7,4,5,4,4,3,7/2,3,5,4,9/2,4,6,4,13/2,7,11,6,11/2,4,6,4,9/2,4,7,4,9/2,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,9/2,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,13/2,6,9,6,8,8,16,9,9,6,10,6,15/2,6,11,6,7,6,10,6,8,8,15,8,8,6,10,6,17/2,8,13,8,9,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,4,11/2,6,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,5,8,6,17/2,9,17,9,19/2,7,10,6,15/2,6,10,6,7,6,8,5,7,7,13,7,7,5,9,6,13/2,6,10,6,6,5,8,5,7,7,13,7,13/2,4,7,4,5,4,6,3,3,3,3,2,3,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-8,-4,-11/2,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-9,-16,-10,-33/2,-17,-33,-16,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-17/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-10,-7,-10,-5,-7,-6,-12,-6,-13/2,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,4,3,4,4,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,5/2,3,3,5,3,3,5/2,4,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,5/2,3,2,3,3,4,3,3,2,4,5/2,3,3,4,5/2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,4,3,4,7/2,5,3,4,3,3,2,3,3,4,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,9/2,7,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,5/2,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,7,5,7,9/2,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -20,11,11,8,23/2,7,8,7,12,7,8,6,17/2,6,7,7,13,7,7,5,15/2,4,5,5,9,5,6,5,15/2,5,7,6,9,5,5,4,5,4,5,5,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,15,8,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,3,3,2,2,2,9/2,3,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,3,2,1,1,1,1,1,1,2,1,1,0,-1/2,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-2,0,0,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,4,3,3,3,5,3,4,4,6,4,4,3,7/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,5,4,5,5,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,6,4,13/2,4,6,7,12,6,6,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,4,3,9/2,3,4,4,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,10,6,6,4,11/2,4,4,4,7,4,5,4,11/2,4,4,4,7,4,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,12,6,6,5,15/2,5,6,5,11,6,6,5,17/2,6,8,8,17,9,10,7,19/2,6,8,7,12,7,8,6,10,7,9,9,15,8,8,6,21/2,7,9,8,12,7,9,8,14,9,13,13,14,8,8,5,7,4,4,4,8,5,5,4,6,4,6,5,9,5,5,4,11/2,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,15/2,6,8,8,17,9,9,7,10,6,8,7,11,6,6,5,8,5,7,6,12,7,8,6,17/2,5,6,6,8,5,5,4,13/2,5,7,7,13,7,7,5,13/2,4,5,4,6,3,3,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3/2,1,0,0,1,1,2,2,5/2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-4,-5,-4,-9,-6,-10,-10,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-33/2,-10,-16,-17,-32,-16,-16,-10,-33/2,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-19/2,-6,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-10,-5,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-16,-8,-8,-6,-10,-6,-9,-8,-15,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,7/2,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,9/2,6,5,8,6,8,8,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -13,7,8,6,8,5,11/2,5,9,5,11/2,4,6,4,9/2,4,8,5,5,3,5,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,4,3,7/2,4,6,4,4,4,6,4,6,6,11,6,13/2,5,7,4,9/2,4,4,3,3,3,5,3,4,4,6,4,7/2,3,5,3,7/2,3,5,3,5/2,2,3,2,7/2,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,5/2,2,4,3,7/2,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,5,3,7/2,3,6,4,11/2,5,9,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,3,5,3,4,3,6,4,11/2,6,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,7,4,7/2,3,4,3,3,3,6,4,7/2,3,5,3,7/2,4,9,5,5,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,12,6,13/2,5,8,5,6,5,9,5,6,5,8,5,7,6,10,6,11/2,4,7,4,11/2,5,8,5,13/2,6,10,7,9,9,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,6,6,12,6,13/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,8,5,5,4,5,3,4,4,6,4,7/2,3,5,4,11/2,6,10,6,11/2,4,4,3,7/2,3,4,2,2,2,2,2,3/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,3,2,2,2,1,1,3/2,1,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-9,-5,-13/2,-5,-11,-7,-11,-11,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20 -11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,6,7/2,4,3,5,3,4,9/2,10,11/2,6,4,7,4,5,9/2,8,9/2,5,4,7,9/2,6,11/2,8,9/2,4,3,5,4,5,9/2,7,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17 -20,11,11,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,4,3,3,3,4,3,5,5,17/2,5,6,6,10,7,10,9,17,9,10,7,10,6,6,5,15/2,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,2,2,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,9/2,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,11/2,3,3,2,3,3,4,4,5,3,4,3,5,3,4,3,5,3,3,3,5,4,5,5,12,6,6,4,6,4,4,3,9/2,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,12,7,7,5,6,4,5,4,13/2,4,4,4,6,4,5,4,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,13/2,4,6,5,8,6,9,9,11,6,6,4,6,4,4,4,15/2,4,5,4,6,4,4,4,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,13,7,7,5,8,5,6,5,17/2,5,5,4,7,5,8,8,17,9,10,7,11,7,9,8,13,7,8,6,9,6,9,9,13,7,7,5,8,5,7,7,25/2,7,8,7,12,8,12,13,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,7,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,5,13,7,7,5,6,4,4,4,13/2,4,6,5,8,5,7,7,14,8,8,6,8,5,5,4,11/2,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-9,-18,-12,-18,-18,-30,-15,-15,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-35/2,-9,-11,-9,-16,-10,-16,-15,-31 -11,6,6,4,6,4,5,4,7,4,5,4,5,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,2,2,3/2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,6,4,4,5/2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16 -12,6,13/2,4,7,4,5,4,8,5,5,4,5,4,5,4,6,4,7/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,3,2,2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,6,4,7/2,3,3,2,2,2,2,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,4,3,3,3,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,7/2,3,4,3,3,3,6,4,11/2,6,6,4,7/2,2,3,2,5/2,2,5,3,3,3,3,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,3,6,4,4,3,5,3,7/2,4,5,3,4,3,5,3,4,4,9,5,6,4,7,4,5,4,8,5,5,4,5,4,11/2,6,9,5,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,8,8,9,5,11/2,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,7/2,3,6,4,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,9/2,3,5,3,3,3,4,2,2,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-9/2,-5,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-11/2,-4,-8,-5,-8,-8,-17 -9,5,5,4,6,7/2,4,7/2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,9/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,5/2,3,3,3,2,3,2,4,3,3,3,7,4,5,7/2,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,7/2,5,3,4,3,4,3,3,2,3,2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,3,4,4,5,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 -15,8,8,6,17/2,5,6,5,10,5,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,2,2,2,2,7/2,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,4,4,8,5,5,4,11/2,4,4,4,7,4,4,3,5,3,4,3,3,2,3,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,2,2,2,2,5/2,2,3,3,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,5/2,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,9/2,3,4,5,9,5,5,4,5,3,4,3,3,2,3,2,7/2,2,3,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,9/2,3,4,4,5,3,4,4,13/2,5,7,7,6,4,4,3,4,3,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,8,4,4,3,5,3,3,3,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,4,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,5,5,4,13/2,4,6,6,11,6,6,5,15/2,5,6,5,8,5,6,5,8,6,9,9,11,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,9/2,4,5,5,12,7,7,5,7,5,6,5,6,4,4,3,5,3,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,11/2,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,5/2,2,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-6,-8,-6,-23/2,-8,-12,-12,-18,-9,-9,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-20 -10,11/2,6,4,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1/2,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,7/2,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,3,5/2,4,5/2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,7/2,8,4,4,3,5,3,4,3,4,3,3,5/2,4,5/2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 -13,7,15/2,6,8,5,11/2,5,9,5,5,4,5,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,3,5,4,11/2,5,9,5,11/2,4,7,4,9/2,4,7,4,9/2,3,5,4,5,5,6,4,4,3,5,3,4,3,3,2,5/2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,3,3,8,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,9/2,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,7,5,15/2,8,10,6,11/2,4,6,4,7/2,3,5,3,4,3,4,3,4,3,5,3,7/2,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,3,3,4,3,9/2,4,10,5,5,4,6,4,5,4,6,4,7/2,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-5,-9,-6,-19/2,-10,-15,-7,-15/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-16 -13,7,7,5,7,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1/2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,10,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -24,13,13,9,14,8,10,8,13,7,7,6,9,6,7,6,19/2,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,5,8,6,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,25/2,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,5,4,6,6,0,1,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,4,6,6,13,7,8,6,8,5,6,5,7,4,4,3,5,3,3,3,9/2,3,4,3,4,3,4,4,7,4,5,4,5,4,6,6,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,19/2,6,6,5,7,5,6,6,12,7,8,6,10,7,10,11,7,4,3,2,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,14,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,10,11,8,12,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,13,8,11,10,17,10,11,9,15,10,13,13,20,11,11,8,11,6,7,5,8,5,5,4,6,4,5,4,15/2,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,15,8,9,6,9,5,6,5,7,4,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,9,5,4,3,4,3,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-19/2,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-33/2,-8,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-18,-28,-14,-14,-9,-13,-7,-9,-8,-15,-7,-8,-5,-8,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-16,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-4,-5,-4,-7,-4,-7,-6,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-15,-10,-15,-15,-30 -13,7,7,5,8,5,6,5,7,4,4,3,5,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,7/2,5,3,4,3,5,3,4,4,7,4,4,7/2,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,5/2,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,7,9/2,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,3/2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-13,-6,-7,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-15 -13,7,15/2,6,8,5,6,5,7,4,4,3,6,4,4,3,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,9/2,4,5,3,7/2,3,5,3,4,4,7,4,9/2,4,5,4,9/2,4,6,4,4,4,6,4,5,5,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,0,1,3/2,2,2,2,2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,3,2,7/2,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,2,2,2,2,3,2,3,3,5,3,7/2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,13/2,4,7,4,9/2,4,5,3,3,2,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,8,5,5,3,5,3,7/2,3,5,3,5/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,4,2,5/2,2,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,3,8,4,9/2,3,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,1,1,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-9,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -9,5,5,4,6,4,4,4,6,7/2,4,3,4,3,3,5/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,4,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9 -14,7,7,5,8,5,6,5,9,5,5,4,11/2,4,4,3,4,3,4,3,5,3,4,4,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,13/2,4,6,5,6,4,4,3,4,3,3,2,3,2,3,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,7/2,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,-1,0,1,1,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,7,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,4,13/2,4,6,6,5,3,3,2,2,2,2,1,3,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,15/2,6,8,8,11,6,7,5,7,4,5,4,5,3,3,2,7/2,3,4,4,4,3,3,3,9/2,3,3,3,5,3,3,3,9/2,4,5,5,7,4,4,3,9/2,3,4,4,4,2,2,2,7/2,2,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,7/2,3,4,4,10,5,5,4,11/2,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,4,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,5/2,2,2,2,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1/2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-5/2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-3,-3,-8 -10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,7/2,3,4,3,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,3,2,2,2,5/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,-1,-1,-2,0,-1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,4,3,3,3,6,4,4,3,4,3,9/2,5,4,3,3,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,3,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,6,4,7/2,3,4,2,5/2,2,3,2,7/2,3,3,2,2,2,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,2,5/2,2,4,2,5/2,2,3,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,2,1,1,2,2,2,2,3/2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-3,-8,-4,-5,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 -9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,4,3,3,3,6,7/2,3,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,7/2,6,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,4,5,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,1,1,2,2,3,2,3,2,3,2,3,2,3,2,3,3,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,3,3,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,2,2,5/2,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,9/2,3,4,4,6,4,5,5,-2,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,7/2,2,2,2,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,4,5,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,4,3,3,3,4,3,3,3,11/2,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,6,4,5,5,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,6,9,9,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-19/2,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-6,-11,-7,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-3,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,5/2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9 -10,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,7/2,4,3,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,3,5,4,5,4,7,4,4,3,4,3,7/2,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,1,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,3,2,3,3,-2,0,0,0,0,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,2,4,3,3,3,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,4,2,2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,7/2,3,6,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,3,7/2,4,5,3,4,4,6,4,6,6,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,7,4,4,3,4,3,7/2,3,5,3,3,2,4,3,3,3,3,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,3,2,4,3,3,3,5,3,7/2,3,5,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,4,3,9/2,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,7/2,3,6,4,4,3,3,2,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-10 -9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,1,1/2,0,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-4,-4,-8 -15,8,8,6,15/2,4,5,5,8,4,4,4,11/2,4,5,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,3,7,4,4,4,11/2,4,6,5,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,0,0,1,1,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,2,2,2,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,3/2,2,2,1,0,1,1,2,5/2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,5,5,-3,-1,-1,0,1/2,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,2,5,3,4,3,7/2,2,2,2,2,2,2,1,1,1,1,2,4,3,3,3,4,3,5,5,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,17/2,6,8,8,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,3,2,1,1,1,1,1,1,2,2,10,6,6,4,13/2,4,4,4,7,4,5,4,5,3,4,4,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,6,4,5,4,7,5,7,7,10,5,5,4,6,4,5,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,2,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,5,3,3,2,5/2,2,1,1,0,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-3,-13/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-6,-11,-7,-10,-10,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-7,-16 -10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,5/2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1/2,1,1,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 -15,8,8,6,8,5,5,4,7,4,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,5,3,5/2,2,3,2,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,4,5,4,11/2,5,10,6,6,4,5,3,7/2,3,4,3,3,2,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,2,2,5/2,2,3,2,5/2,2,3,3,4,4,-2,0,0,0,0,1,3/2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,6,4,9/2,4,8,5,11/2,5,8,6,8,8,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,2,2,2,2,1,1,3/2,2,10,6,6,4,6,4,4,3,6,4,7/2,2,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,7/2,3,5,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,4,3,6,4,5,5,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,7,4,7/2,3,3,2,5/2,2,4,2,2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,1,1,1,2,2,1,1,1,1,-1,0,0,0,-4,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-7,-5,-10,-6,-10,-10,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-13/2,-7,-15 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,5/2,4,3,6,4,4,3,4,5/2,3,5/2,4,5/2,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,11/2,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,2,3/2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,10,6,6,4,6,4,4,3,5,3,3,2,3,5/2,3,3,5,3,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-10,-5,-6,-5,-10,-6,-10,-10,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-14 -28,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,5,7,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,4,4,6,4,6,6,21/2,6,6,4,6,4,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,4,6,7,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,2,2,2,2,2,2,2,2,4,3,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,8,5,7,7,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,3,3,6,4,5,4,7,5,6,6,25/2,7,8,6,8,5,6,5,8,5,6,5,9,6,8,8,14,8,8,7,11,7,9,8,14,8,9,8,14,10,15,15,6,3,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,7,4,3,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,20,10,10,7,10,6,6,5,7,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,6,4,4,3,5,4,5,4,7,4,5,5,8,6,8,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-4,-19/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-13,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-2,-6,-4,-6,-6,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-10,-7,-12,-7,-9,-8,-15,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-12,-14,-12,-22,-14,-21,-21,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-13,-14,-29 -15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,3,5/2,4,3,6,4,4,3,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,5/2,3,2,4,3,4,4,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -15,8,8,6,8,5,6,5,8,5,11/2,4,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,4,3,4,3,9/2,4,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,9/2,3,5,3,7/2,3,5,3,7/2,3,5,4,5,4,8,4,9/2,4,6,4,11/2,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,2,2,11,6,11/2,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,4,9/2,4,6,4,6,6,9,5,5,4,5,3,7/2,4,5,3,7/2,3,3,2,7/2,3,6,4,7/2,3,3,2,2,2,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,7/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-12,-6,-11/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-10,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -11,6,6,4,6,4,4,7/2,6,4,4,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,3,4,4,5,3,4,4,6,4,6,6,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,8,8,6,17/2,5,6,5,10,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,13/2,4,5,5,8,5,5,4,9/2,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,7/2,3,4,3,6,3,3,2,7/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1/2,0,0,1,-1,0,1,1,1,1,1,2,4,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,3,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,17/2,6,9,9,4,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,7/2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,11,6,6,4,6,3,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,2,4,3,3,2,7/2,3,4,3,8,5,5,3,4,3,3,3,6,4,4,4,13/2,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,7,4,4,3,7/2,2,3,3,6,4,4,3,9/2,3,4,4,5,3,3,2,7/2,2,2,1,2,2,2,1,1,1,1,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,5,4,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,0,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-11,-6,-7,-6,-23/2,-7,-10,-10,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13 -10,5,5,4,5,3,4,3,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,11/2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -12,7,7,5,6,4,5,4,7,4,9/2,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,5/2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,3,3,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,0,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,3/2,2,3,2,3/2,2,1,1,3/2,1,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,2,3/2,1,4,3,3,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,7,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,6,3,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3/2,1,1,2,3/2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1/2,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -21,11,11,7,10,6,8,7,11,6,6,4,6,4,6,6,8,5,5,4,6,4,5,4,15/2,5,6,5,7,4,5,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,3,4,3,4,4,15/2,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,2,1,1,1,4,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,9/2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,19/2,6,8,7,11,8,11,11,8,4,4,3,5,3,3,3,9/2,3,3,2,3,2,2,1,4,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,2,2,2,7/2,2,2,1,1,1,1,1,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,11/2,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,6,7,13,7,7,5,6,4,4,4,13/2,4,4,3,3,2,3,3,8,5,5,3,4,3,4,4,11/2,4,4,3,5,4,5,5,6,3,3,2,3,2,2,2,5/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,3,4,4,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,1,1,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-11,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13 -12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,3,2,2,3/2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,7/2,4,4,6,9/2,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 -13,7,7,5,6,4,9/2,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,3,4,2,5/2,2,1,1,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,7/2,3,5,3,3,2,2,2,5/2,2,4,3,3,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,4,9/2,4,7,5,7,7,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,3,2,2,3/2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,6,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,3,3,6,7/2,4,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -16,9,9,6,17/2,5,6,5,8,5,5,4,11/2,4,5,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,4,2,2,2,7/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,2,5/2,2,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,3,3,6,4,4,3,9/2,3,3,3,7,4,4,3,7/2,2,3,2,4,3,3,2,3,2,2,2,6,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,11/2,4,4,4,8,4,4,4,11/2,4,5,4,7,4,5,4,5,4,5,4,6,4,4,4,15/2,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,5/2,2,3,3,7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,9,5,4,3,9/2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,4,3,4,4,11/2,4,5,5,9,5,6,4,11/2,4,4,3,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,3,3,3,2,2,2,7/2,3,4,4,5,3,3,2,5/2,2,2,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,0,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 -10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,3,5/2,3,3,4,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,5/2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -14,8,8,6,8,5,11/2,4,7,4,9/2,4,5,4,9/2,4,7,4,9/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,4,5,3,3,2,3,2,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,2,1,1,3/2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,5/2,2,4,3,3,3,8,4,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,3,4,3,4,4,6,4,4,4,7,5,6,6,6,4,7/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3,2,2,2,5/2,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,3,2,3,2,2,2,3,3,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,3,2,7/2,4,6,4,4,3,4,3,7/2,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,7/2,4,5,3,3,2,3,2,5/2,3,5,3,7/2,3,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -14,8,8,6,8,5,6,9/2,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,5/2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,8,4,4,3,4,3,4,4,7,4,4,4,5,7/2,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,9/2,6,6,6,4,4,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,3,5/2,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-2,-3,-5/2,-6 -27,14,15,10,15,9,10,8,13,7,7,6,9,6,8,8,27/2,8,8,5,7,5,6,6,10,6,6,5,7,5,7,7,10,6,6,4,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,3,3,4,3,4,4,11,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,3,3,2,2,2,3,2,3,2,3,2,3,2,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,6,4,5,5,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,11/2,4,4,3,3,2,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,5,4,5,5,15,8,9,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,7,12,8,12,12,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,4,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,21/2,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -14,8,8,6,8,5,6,5,7,4,4,7/2,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,3,2,3,3,5,3,3,5/2,3,2,3,3,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,3,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,4,3,6,4,4,3,3,2,5/2,2,5,3,3,3,3,2,7/2,4,10,6,11/2,4,6,4,9/2,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,7/2,4,6,4,5,4,7,5,7,7,6,4,7/2,3,4,3,3,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,3,2,3,3,5,4,9/2,4,6,4,5,5,9,5,9/2,4,5,3,4,4,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5 -11,6,6,9/2,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3 -18,10,10,7,21/2,6,7,5,7,4,4,4,6,4,5,5,8,4,4,3,9/2,4,5,5,6,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,2,2,2,2,1,3,2,1,1,1,1,1,2,4,2,2,2,3/2,1,0,0,2,1,1,1,2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,9/2,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,12,7,7,5,13/2,4,5,4,8,5,5,4,13/2,4,6,6,8,5,5,4,11/2,4,4,4,8,5,5,5,8,6,8,8,7,4,4,3,9/2,3,4,3,5,3,4,3,7/2,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,4,3,7/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,3,6,4,4,4,13/2,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,0,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,1,0,1,1,1,1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-3,-2,-5 -11,6,6,5,7,4,5,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,5/2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,9/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3 -15,8,8,6,9,5,6,5,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,4,3,3,2,2,2,2,1,2,2,3/2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,5/2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,5,10,6,11/2,4,6,4,4,4,7,4,9/2,4,6,4,5,5,6,4,7/2,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,1,1,1,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,3,2,3,2,5/2,2,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,7/2,3,5,3,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-6,-4,-11/2,-6,0,1,1,1,0,0,1/2,1,0,0,0,1,1,1,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4 -14,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,4,3,3,2,3,2,2,3/2,2,2,2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,7/2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4 -26,14,14,10,14,8,8,6,21/2,6,6,4,6,4,6,6,12,6,6,5,7,4,5,5,17/2,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,9/2,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,6,4,5,5,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,9/2,3,3,2,2,2,3,3,1,1,1,1,1,1,2,2,5/2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,15/2,5,6,5,9,6,8,8,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,5,17/2,5,6,5,9,7,11,11,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,9/2,2,2,2,3,2,2,2,6,4,5,4,6,4,4,4,13/2,4,4,3,5,4,5,6,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,7/2,2,3,3,6,5,7,7,9,5,5,4,6,4,5,5,17/2,5,5,4,7,4,5,5,7,4,4,3,5,3,4,4,15/2,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,6,4,4,3,3,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-8,-4,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,6,4,6,13/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,4,3,3,3,4,3,3,2,3,2,3,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 -18,10,10,7,10,6,13/2,5,7,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,4,6,4,7/2,3,4,3,4,3,6,4,7/2,3,4,3,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,9/2,4,9,5,5,4,6,4,4,4,5,3,7/2,3,4,3,9/2,4,6,4,4,3,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,4,3,4,3,7/2,3,3,2,2,2,2,2,5/2,2,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,3,2,5/2,2,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-2,-4,-2,-3,-3,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1/2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,29/2,8,10,8,11,6,7,6,17/2,6,7,6,10,6,6,4,11/2,4,5,5,9,5,6,4,11/2,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,5,3,4,4,6,4,6,6,8,5,5,4,9/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,5/2,2,3,3,2,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,7,5,6,5,17/2,6,9,9,16,9,9,6,17/2,5,6,5,8,5,5,4,13/2,4,6,6,9,5,5,4,7,5,6,6,11,7,8,6,19/2,7,10,10,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,7,4,4,3,9/2,3,3,3,5,3,3,2,7/2,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,5,5,10,5,5,4,11/2,4,4,3,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,6,4,4,4,11/2,4,6,6,12,7,7,5,13/2,4,5,4,8,5,5,4,6,4,5,5,7,4,5,4,11/2,4,4,4,8,5,5,4,15/2,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,9/2,3,3,3,8,5,5,4,11/2,4,4,4,7,4,5,4,11/2,4,6,6,7,4,5,4,5,3,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-1,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-9,-9,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6 -18,10,10,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,9/2,7,5,7,7,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,5/2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,5/2,3,2,4,5/2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,14,8,19/2,8,12,7,7,6,9,6,7,6,10,6,11/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,5,3,4,4,6,4,11/2,6,9,5,5,4,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,0,1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,3,4,2,5/2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,11/2,4,7,5,13/2,6,11,6,6,4,6,4,9/2,4,7,4,11/2,5,8,6,9,9,16,8,17/2,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,6,15/2,6,10,7,19/2,10,11,6,6,4,5,3,7/2,3,4,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,5,4,11/2,5,10,6,11/2,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,9/2,4,6,4,9/2,4,7,4,9/2,4,5,3,4,4,8,5,11/2,4,8,5,7,7,11,6,6,4,7,4,5,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,9/2,4,6,4,11/2,5,7,4,9/2,4,5,3,4,3,5,3,4,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-5 -26,14,14,10,14,8,10,8,12,7,7,6,9,6,7,6,10,6,6,4,6,4,5,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,9,5,5,4,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,2,2,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,6,7,6,10,7,10,10,11,6,6,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,5,4,6,11/2,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-17/2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -52,27,27,18,26,14,16,13,23,12,13,10,15,10,13,12,23,12,13,9,14,9,11,9,16,9,9,7,10,7,10,9,17,9,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,16,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1/2,1,1,1,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,11,11,22,11,11,7,10,6,7,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,6,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,15,9,11,10,18,12,17,17,20,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,9,7,10,10,18,10,11,8,12,8,10,9,15,9,11,9,15,10,15,14,21,11,11,8,11,7,8,7,13,7,7,6,9,6,9,9,17,9,9,6,9,6,8,7,13,7,7,6,9,6,9,8,15,8,7,5,7,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-3,-3,0,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-6,-5,-11,-7,-12,-12,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-7,-31/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15/2,-3,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10 -27,14,14,9,13,15/2,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,5/2,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,4,7/2,5,7/2,4,4,8,5,6,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,9/2,6,4,4,4,7,4,4,7/2,5,7/2,5,5,9,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,9/2,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4 -27,14,27/2,9,13,8,17/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,9/2,3,5,3,7/2,3,4,2,2,2,3,2,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,4,3,7/2,4,6,4,6,6,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,7/2,2,4,2,5/2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,3,2,5/2,3,5,3,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,0,1,1,1,2,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,3,3,5,3,3,2,4,3,3,3,5,3,5/2,2,2,2,5/2,3,4,3,7/2,4,6,4,11/2,6,10,6,11/2,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,9/2,4,5,4,9/2,4,8,5,13/2,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,7/2,3,3,2,5/2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,7,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,9/2,4,5,4,6,6,10,5,5,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,5,4,5,3,3,3,6,4,4,3,5,4,11/2,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,15/2,8,12,6,6,5,7,4,9/2,4,7,4,9/2,4,4,3,9/2,5,9,5,11/2,4,5,4,9/2,4,6,4,4,3,6,4,5,5,9,5,9/2,4,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-3,-6,-6,-14,-6,-6,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 -18,9,9,6,9,11/2,6,5,8,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,2,4,5/2,3,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,4,3,4,3,5,7/2,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,5/2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,5,7,7,6,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,7/2,3,3,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,3,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,7/2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 -26,13,13,9,27/2,8,9,8,12,7,7,6,17/2,6,7,6,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,9/2,3,4,3,3,2,2,2,3,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,3,3,9/2,3,3,3,4,3,3,3,6,5,7,7,9,5,5,4,5,3,4,3,4,2,2,2,7/2,2,3,3,6,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,5,3,3,3,9/2,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,9/2,2,2,2,5,3,3,2,3,2,2,2,5,3,2,2,5/2,2,3,3,4,3,4,3,5,4,6,6,10,6,6,4,13/2,4,6,5,6,4,4,4,11/2,4,4,4,7,4,5,4,11/2,4,5,5,9,6,7,6,19/2,7,10,10,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,9/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,11/2,4,5,4,7,4,4,4,11/2,4,5,4,9,5,5,4,9/2,3,3,3,6,4,4,3,9/2,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,9/2,4,5,5,9,5,6,4,13/2,4,6,5,6,4,5,4,6,4,5,5,10,5,5,4,11/2,3,3,3,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,5,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,3,4,2,2,1,1,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-9/2,-3,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-1,-3 -15,8,8,6,8,5,6,5,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -19,10,19/2,7,10,6,13/2,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,0,1,3/2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,7/2,3,4,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3/2,2,2,2,2,2,6,4,7/2,3,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,3,3,2,3,2,4,3,4,3,6,4,4,3,4,3,9/2,4,8,4,4,3,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,6,3,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,4,2,2,2,3,2,5/2,3,4,3,3,3,3,2,7/2,4,3,2,5/2,2,3,2,7/2,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,9/2,3,5,3,4,4,6,4,4,3,6,4,11/2,5,10,6,11/2,4,5,3,4,4,5,3,4,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,1,1,1,1,2,2,5/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-11/2,-6,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-2 -16,17/2,8,6,9,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -29,15,15,10,14,8,10,8,27/2,8,8,6,10,6,8,7,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,9,5,5,4,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,1,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,7/2,2,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,5,5,17/2,5,6,4,6,5,7,7,11,6,6,4,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,11/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,15/2,4,4,4,6,4,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,9,6,9,9,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,4,3,3,2,3,3,4,4,15/2,5,6,5,7,5,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,3,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,9/2,3,3,3,4,3,5,6,10,5,5,4,6,4,5,5,19/2,6,6,5,7,5,7,7,16,9,9,6,9,5,6,5,17/2,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3/2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3/2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,5,3,3,2,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-4,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,4,2,2,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,-1,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2 -16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,6,7/2,4,5/2,4,2,2,2,3,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,3,2,3,2,2,2,3,2,3,7/2,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,3,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1 -17,9,9,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,5,5,4,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,2,0,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,5/2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,0,0,1/2,0,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,7/2,4,5,3,7/2,3,4,3,9/2,4,5,3,7/2,2,4,2,2,2,3,2,2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,3,2,4,3,7/2,3,5,3,7/2,4,5,4,5,5,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,3,2,5/2,2,3,2,2,2,4,3,7/2,3,4,3,4,4,4,3,7/2,3,3,2,3,3,5,3,3,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,6,4,4,3,4,3,7/2,3,6,4,4,3,4,3,9/2,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,2,3,2,5/2,2,4,3,4,4,6,3,3,3,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,1,1,1,1,0,1,3/2,2,3,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-9/2,-4,4,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1 -13,7,7,5,6,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0 -20,11,11,8,21/2,6,8,7,12,7,8,6,9,6,7,6,10,6,6,4,11/2,4,4,3,5,3,3,3,9/2,4,5,5,6,4,4,3,9/2,3,3,3,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,5,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,4,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,1,2,2,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,6,3,3,2,3,2,2,2,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,3/2,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,7/2,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,11/2,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,13/2,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,11/2,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,7/2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,1,1,3/2,2,2,1,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,-1,-1,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,5,3,2,2,3/2,2,2,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-2,0,0,0,-3/2,0,0,0,2,1,1,1,2,1,1,1,0 -13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,5/2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1 -18,9,9,7,9,6,7,6,11,6,7,5,8,5,7,6,10,6,11/2,4,5,3,4,4,5,3,4,4,6,4,11/2,5,6,4,4,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,2,5/2,2,4,3,4,4,3,2,2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,3/2,1,6,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,1,1,1,1,0,1,3/2,2,1,1,3/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,9/2,5,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,3,2,5/2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,7,4,5,4,5,4,11/2,5,8,5,5,3,4,3,3,2,4,2,5/2,2,3,2,3,3,7,4,7/2,2,4,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,-1/2,0,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,0,0,0,1,0,0,1/2,0,0,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,1,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,4,2,5/2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,2,2,2 -17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,10,6,6,4,5,3,4,4,5,3,4,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,2,4,3,3,3,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,5/2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,0,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,4,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2 -32,17,17,12,18,11,13,11,18,10,10,8,12,8,11,10,39/2,10,11,8,11,7,8,7,11,6,7,5,8,6,9,9,10,6,6,4,5,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,3,5,4,5,5,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,9/2,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,3,4,4,11/2,4,4,4,6,4,5,5,8,5,5,5,8,6,8,7,5,3,4,3,4,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,2,3,3,5,3,3,2,3,2,3,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,7,4,4,3,4,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,11/2,4,4,3,3,3,4,4,6,4,4,3,4,3,4,4,8,5,6,5,7,4,5,5,8,4,4,3,5,3,4,4,17/2,5,6,5,8,5,6,6,11,6,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,8,6,9,6,8,8,29/2,8,8,6,8,5,6,5,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,15/2,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,1,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,6,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,3,2,3,2,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-18,-8,-8,-5,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-10,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,4 -17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,6,3,3,5/2,3,5/2,3,3,5,3,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -17,9,19/2,7,10,6,15/2,6,10,6,6,5,7,5,13/2,6,10,6,6,4,7,4,5,4,6,4,4,3,5,4,11/2,5,6,3,3,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,7/2,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,1,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,1,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,3/2,1,5,3,3,2,3,2,3/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,3/2,2,1,1,2,2,4,3,3,2,3,2,3/2,1,1,1,1,1,1,1,2,2,4,3,3,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,2,2,3/2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,2,2,5/2,3,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,3,3,5,4,9/2,5,4,3,3,2,3,2,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,1,1,1,1,1,6,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,5,3,7/2,2,3,2,3,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,5,7,4,11/2,5,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,7/2,3,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,5/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,1,1,1,0,1,3/2,1,1,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,3,2,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2 -12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,5/2,4,5/2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-2,-3,-3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -19,10,11,8,23/2,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,7,5,6,5,6,4,4,4,11/2,4,6,6,7,4,4,3,9/2,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,2,1,1,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,2,2,2,2,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,3,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,4,4,3,4,3,5,4,6,6,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3/2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,4,3,9/2,3,4,5,7,4,3,2,3,2,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,4,5,5,8,5,6,4,13/2,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,13/2,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,7/2,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-2,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,2,2,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,3 -12,13/2,7,5,7,4,5,4,7,4,4,4,5,7/2,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,10,5,5,4,5,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,2,3/2,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2 -15,8,8,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,3,5,4,9/2,4,6,3,3,3,5,4,5,4,6,4,7/2,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3,2,3,2,3,3,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,3,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,1,1,1,1,2,2,5/2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,9/2,4,6,3,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,4,6,4,4,3,5,4,11/2,5,13,7,7,5,6,4,9/2,4,6,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,5/2,3,6,4,7/2,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-4,-4,3,2,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3 -13,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,1,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,3,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,7/2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,5/2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,4 -24,13,13,9,12,8,10,8,29/2,8,9,7,10,6,8,7,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,7/2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,9/2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,5,3,4,3,5,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,6,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,2,7,4,4,3,3,2,3,3,4,3,4,4,7,5,6,6,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,3,4,4,15/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,13/2,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,11,6,7,6,9,6,8,8,22,11,11,7,10,6,8,6,21/2,6,7,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,5,4,5,5,6,4,4,3,4,2,2,2,5/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,3,3,9/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,3,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,0,2,1,1,1,0,1,1,1,1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-4,-6,-6,4,3,3,2,2,2,2,1,1/2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,1,1,2,1,1,1,3/2,1,1,1,2,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,3,5,3,4,4,7 -13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,13,7,7,9/2,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 -15,8,17/2,6,8,5,13/2,6,10,5,5,4,6,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,5/2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,3,2,3,3,2,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,4,3,7/2,3,1,1,2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,5,3,3,3,5,4,5,4,6,3,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,5,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,11/2,6,15,8,8,5,7,4,5,4,6,4,9/2,4,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,4,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,3,3,4,2,5/2,3,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,2,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-3,-2,-3,-3,3,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,2,2,4 -12,7,7,5,7,4,5,9/2,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,12,7,7,9/2,6,7/2,4,7/2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3 -20,11,11,8,12,7,9,7,12,7,7,5,15/2,5,6,6,12,6,6,4,13/2,4,5,5,7,4,5,4,11/2,4,5,5,7,4,4,3,9/2,3,3,3,5,3,4,3,4,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,9/2,3,4,4,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,6,4,4,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,3,4,2,2,2,2,2,2,1,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,3,2,3,2,3,2,2,2,0,1,1,1,3/2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,5,3,3,2,7/2,2,3,3,5,3,4,3,5,3,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,2,5,3,3,2,7/2,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,3,9/2,3,4,5,10,6,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,9,5,4,3,9/2,4,5,5,10,6,6,5,17/2,6,8,8,21,11,11,7,9,6,7,6,9,5,6,5,8,5,6,6,10,6,6,5,7,4,4,4,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,4,3,5,4,5,5,5,3,3,2,5/2,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,3,2,7/2,3,4,4,7,4,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,3/2,2,2,2,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-14,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-3,-1,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,3,2,2,2,3/2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,4,3,3,3,9/2,3,3,3,5 -14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,5/2,3,2,3,7/2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,6,6,14,15/2,8,5,6,4,5,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,3,5/2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,4 -20,10,10,7,10,6,15/2,6,11,6,7,5,8,5,13/2,6,11,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,4,4,7,4,5,4,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,2,3,2,3,2,3,2,7/2,4,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,5/2,2,1,1,2,2,3,2,3,3,4,3,3,3,6,4,7/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,2,4,3,3,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,2,2,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,0,1,1,1,2,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,7/2,3,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,3,2,3,2,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,5,4,5,5,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,4,4,3,5,5,9,5,6,5,8,6,8,8,20,10,21/2,7,9,5,6,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,7/2,4,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,5,5,4,2,5/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,7/2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,5,3,3,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,7,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,1,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,5,3,7/2,3,5,4,9/2,4,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,1,1,3/2,2,1,1,1,1,2,2,2,1,1,1,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -20,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,3,2,3,3,4,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,5,4,7,4,4,7/2,5,7/2,5,5,8,5,6,5,8,6,8,8,20,10,10,7,9,5,6,6,10,11/2,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,5/2,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3/2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,7/2,4,3,5,3,4,4,6,4,4,3,5,4,5,9/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,3,2,2,2,4,3,3,3,5 -39,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,21,11,11,8,11,6,7,6,10,6,7,5,8,6,8,8,27/2,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,3,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-8,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,0,-1,0,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,7,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,8,9,8,13,9,14,14,38,20,20,14,20,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,23/2,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,6,9,6,7,6,11,6,7,6,9,6,8,8,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,5,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,8,8,8,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-26,-13,-13,-8,-13,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-8,-8,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,4,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,5,9 -20,11,11,8,11,13/2,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,3,2,4,3,4,3,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,5/2,4,5/2,3,3,4,3,4,7/2,6,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,1/2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,1,1,1,1,1,1,0,1/2,0,1/2,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,4,3,4,4,6,7/2,4,5/2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,5,7/2,5,5,5,3,3,3,4,5/2,3,5/2,3,2,3,5/2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,4,5,4,7,9/2,5,9/2,7,5,8,8,20,11,11,8,10,6,7,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,5/2,4,5/2,3,5/2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,7/2,5,4,5,5,5,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,3,3,5 -21,11,11,8,11,6,15/2,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,5,3,3,3,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,3,2,4,3,7/2,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,3,3,5,3,4,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,4,2,5/2,2,3,2,3,3,4,3,4,3,6,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,1,1,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,5/2,3,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,4,3,4,4,5,3,7/2,2,3,2,3,3,5,3,7/2,3,5,3,7/2,4,7,4,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,5,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,3,7,4,9/2,4,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,11/2,5,11,6,6,4,5,4,5,5,8,5,11/2,5,7,5,8,8,21,11,11,8,10,6,8,7,10,6,6,5,8,5,13/2,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,4,3,3,2,3,2,5/2,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,4,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,5,3,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,3,2,3/2,1,1,1,3/2,2,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,3/2,2,3,2,3,3,5 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,9/2,8,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,3,5/2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,7/2,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,3/2,2,3/2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3 -21,11,12,8,23/2,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,13/2,4,5,4,6,3,3,3,4,3,5,5,9,5,4,3,9/2,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,4,4,4,3,4,3,9/2,4,5,5,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,8,4,4,3,7/2,2,3,2,2,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,0,0,0,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,3,2,3,2,3,2,3,3,1,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3/2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,7,4,4,3,3,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,13/2,4,5,5,12,7,7,5,6,4,5,5,9,5,6,5,9,6,8,8,24,12,12,8,23/2,7,8,7,11,6,7,5,15/2,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,5,3,3,3,4,3,4,5,6,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,4,3,3,2,7/2,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,7/2,2,3,2,3,2,2,2,4,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,7/2,3,4,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,2,2,2,3/2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,9/2,4,6,6,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3/2,2,2,2,3 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,7/2,8,4,4,3,4,3,4,3,5,3,4,7/2,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,5/2,4,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2 -15,8,8,6,8,5,11/2,5,9,5,11/2,4,6,4,5,5,9,5,6,4,5,3,4,3,6,3,3,3,4,3,3,3,6,4,7/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,3,3,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,5/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,10,5,5,4,5,4,9/2,4,6,4,9/2,4,7,5,13/2,7,18,9,9,6,9,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,4,5,3,7/2,4,6,4,7/2,3,4,3,7/2,4,7,4,4,3,5,3,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,6,4,4,3,3,2,3,3,4,2,5/2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,0,-1,0,1,1,0,1,3/2,2,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,4,4,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2 -14,7,7,5,7,4,5,4,8,9/2,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-2,-1/2,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,13/2,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,2 -25,13,13,9,13,7,8,7,25/2,7,8,6,10,7,9,8,15,8,7,5,7,4,5,5,9,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,3,8,5,5,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,4,8,5,5,4,5,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,8,4,4,3,4,3,3,2,5/2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,7/2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,3,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,1,1,1,1,1,1,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,1,1,6,3,3,2,2,2,2,2,5/2,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,8,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,17,9,10,7,10,6,7,6,19/2,6,6,4,6,4,6,6,15,8,8,6,9,5,6,6,21/2,6,8,7,12,8,12,12,29,15,14,10,14,8,10,8,29/2,8,8,6,8,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,4,3,3,3,9/2,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,1,1,2,2,2,1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,5,3,3,2,3,2,1,1,1,1,2,2,3,2,3,3,5,3,3,2,2,1,1,1,3/2,2,2,2,3,3,4,4,2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,4,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3 -14,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,9/2,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,16,17/2,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,6,5,9,5,5,4,5,3,7/2,4,5,3,7/2,2,4,3,7/2,3,6,4,4,3,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,1,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,5,3,7/2,2,4,3,3,3,5,3,4,3,5,4,9/2,4,11,6,6,4,6,4,4,4,8,4,9/2,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,13/2,6,10,5,5,4,5,4,5,5,8,5,5,3,5,3,7/2,3,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,3,3,2,3,2,3,2,7/2,3,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,6,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,7/2,3,3,2,3,3,4,3,3,2,2,2,3,3,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,0,0,1,0,0,-1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,5/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2 -11,6,6,9/2,6,4,5,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,9,5,5,7/2,5,3,4,7/2,7,4,4,7/2,5,4,5,4,8,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -18,9,9,6,19/2,6,6,5,9,5,5,4,13/2,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,7/2,2,3,3,9,5,5,3,4,3,3,3,4,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,3,7/2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,0,2,2,2,2,5/2,2,4,4,7,4,4,3,7/2,2,3,2,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,7/2,3,4,4,7,4,4,3,5,3,4,4,5,3,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,1,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,7/2,2,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,3,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,5/2,2,2,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,6,6,14,8,8,6,15/2,5,6,5,11,6,6,5,17/2,6,7,7,14,7,7,5,15/2,5,6,5,10,6,7,6,19/2,7,10,10,25,13,13,9,13,8,9,8,13,7,8,6,8,5,6,6,11,6,6,4,13/2,4,5,4,7,4,5,4,11/2,4,6,5,10,5,5,4,11/2,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,9/2,3,4,3,5,3,3,3,9/2,3,4,3,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,5,7,4,4,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-3/2,0,0,0,0,1,1,1,3/2,2,2,1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,7/2,2,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,3/2,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,4 -12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,8,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,11/2,6,11/2,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -17,9,17/2,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,3,3,9,5,9/2,4,4,3,3,2,3,2,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,4,3,3,3,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,3,7/2,4,6,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,4,2,2,2,3,2,5/2,2,2,2,2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,7/2,3,5,4,11/2,6,14,8,8,5,7,5,6,6,11,6,13/2,5,8,5,7,7,13,7,13/2,5,7,5,6,6,10,6,7,6,10,7,10,9,25,13,25/2,8,13,8,9,8,13,7,15/2,5,8,5,13/2,6,10,6,11/2,4,6,4,9/2,4,8,5,5,4,6,4,6,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,7/2,3,6,3,3,2,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,1/2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,7/2,4,4,2,5/2,2,3,2,5/2,2,4,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,7/2,2,3,2,2,2,3,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4 -16,17/2,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,9,5,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,14,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,12,13/2,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,25/2,12,8,12,7,9,8,13,7,7,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,1,1,1,0,1/2,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,35/2,10,10,7,9,5,6,5,8,5,5,4,5,4,5,5,16,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,4,5,4,5,3,3,2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,3,4,4,8,5,6,5,9,6,9,9,11,6,6,4,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,6,5,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,0,0,0,0,-3/2,0,0,1,2,1,1,1,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,19/2,6,6,5,8,5,7,7,12,7,9,7,12,8,10,10,26,14,14,10,14,9,11,9,16,9,10,8,13,9,13,12,23,12,13,10,16,10,12,11,20,11,13,11,18,12,18,17,47,24,24,16,24,13,15,12,20,11,11,8,13,8,10,10,35/2,9,9,7,10,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,4,5,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,17/2,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,7/2,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,5,5,9,5,4,3,4,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,4,4,6,3,3,3,4,2,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-3,-3,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,7,4,5,4,5,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,5,6,5,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7 -16,9,9,6,9,11/2,6,11/2,9,5,6,5,7,5,6,5,10,6,6,4,5,3,3,3,5,3,3,5/2,3,5/2,3,3,9,5,5,3,5,3,3,3,3,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,6,4,4,5/2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,1,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1/2,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,5/2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,6,7,6,10,7,10,19/2,25,13,13,9,13,7,8,7,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,3,5/2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,4,3,5,3,4,4,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4 -17,9,19/2,7,10,6,13/2,6,10,6,6,5,7,5,6,5,10,6,11/2,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,9,5,5,3,5,3,7/2,3,3,2,2,2,2,2,5/2,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,4,4,3,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,5,3,7/2,4,6,4,11/2,5,7,4,7/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3,3,3,2,7/2,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,7,5,13/2,6,15,8,8,6,8,5,6,6,9,5,6,5,8,6,15/2,7,12,7,15/2,6,9,6,15/2,7,12,7,8,7,11,8,21/2,10,27,14,14,10,13,8,17/2,7,11,6,7,5,8,5,13/2,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,9/2,4,6,4,7/2,3,4,3,4,3,6,3,3,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,0,0,1/2,0,1,1,1,1,-1,0,1/2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-3/2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,0,0,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,4,4,3,7/2,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5 -13,7,7,5,7,4,5,9/2,8,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,9/2,7,5,6,6,10,6,6,5,9,6,8,8,20,11,11,7,10,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,7,4,4,3,4,3,4,3,4,5/2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -20,11,11,8,21/2,6,7,6,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,4,3,5,4,5,5,10,6,6,4,11/2,4,4,3,4,2,2,2,3,2,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,6,4,4,4,13/2,5,7,7,8,4,4,3,9/2,3,4,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,1,1,1,1,1,1,2,5/2,2,2,2,5,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,11/2,4,6,5,6,3,3,2,7/2,2,2,2,5,3,4,3,4,3,4,4,3,2,2,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,18,9,9,6,19/2,6,7,7,10,6,7,6,9,6,9,9,14,8,9,7,10,7,9,9,16,9,10,8,14,10,14,13,33,17,17,11,31/2,9,10,8,13,7,8,6,19/2,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,-1,0,1,1,1,1,0,0,-1,0,0,1,1,1,2,2,4,3,3,2,2,2,2,2,4,3,3,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,11/2,4,6,6,9,5,5,4,9/2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-2,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-1,0,0,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,7/2,2,3,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,6,6,5,3,3,3,5,3,4,4,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,4,4,6,4,4,4,11/2,4,6,6,7,4,5,4,11/2,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,4,4,5,3,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,5/2,2,3,3,3,2,3,2,7/2,3,4,3,5 -13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,5/2,3,3,5,3,4,3,4,5/2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,6,10,6,7,6,9,13/2,9,9,21,11,11,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,5/2,3,5/2,3,2,3,3,3,2,3,2,4,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3 -18,10,19/2,7,9,6,7,6,10,6,6,5,7,4,11/2,5,10,6,6,4,6,4,9/2,4,6,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,5/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,6,3,3,3,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,4,4,7,5,13/2,6,14,8,15/2,6,8,5,13/2,6,9,6,13/2,5,8,5,7,7,12,7,7,5,9,6,15/2,7,13,8,9,8,13,9,12,12,28,14,14,9,13,8,17/2,7,12,7,7,5,8,5,7,6,12,6,13/2,4,7,4,5,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,5/2,2,3,2,3,3,3,2,7/2,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1/2,0,1,1,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,4,3,7/2,3,5,4,9/2,4,5,3,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,4,3,4,3,9/2,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,3,2,7/2,4,4,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4 -17,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,9,11/2,6,5,8,5,7,7,11,6,7,5,8,5,7,7,12,7,9,7,12,8,11,11,26,13,13,17/2,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,5/2,4,3,4,3,4,3,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,5/2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4 -33,17,18,12,18,10,12,10,33/2,9,10,7,10,7,9,8,18,10,10,7,9,6,7,6,21/2,6,8,6,10,6,8,8,14,7,7,5,8,5,6,4,13/2,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,7/2,2,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15/2,4,5,4,7,5,8,8,14,8,8,6,8,5,5,4,9/2,3,4,3,4,3,4,4,3,2,1,1,1,1,2,2,3/2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,3,2,3,2,3,2,2,2,3/2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,5/2,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,2,7/2,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,13/2,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,8,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,23/2,7,8,6,10,7,11,11,23,12,12,9,13,8,11,10,17,10,11,8,13,9,13,13,21,11,12,9,14,9,13,12,45/2,13,15,12,20,14,21,21,48,24,24,16,24,13,15,12,41/2,11,12,9,14,9,11,11,21,11,12,9,13,8,9,8,27/2,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,19/2,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,9/2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,6,4,5,5,8,4,4,3,4,3,3,3,9/2,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,15/2,4,5,4,7,5,8,8,12,6,6,4,5,3,2,2,5/2,2,1,1,1,1,1,1,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,5,4,6,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,17/2,5,6,5,7,5,6,5,7,4,3,2,3,2,3,3,5,3,3,3,5,4,5,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6 -18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,7/2,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,5/2,3,2,2,2,3,2,3,3,2,3/2,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,7/2,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,11/2,8,8,12,7,7,6,9,6,8,7,13,8,9,7,12,8,12,12,27,14,14,10,14,8,9,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,9/2,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -21,11,23/2,8,11,7,8,7,10,6,13/2,5,6,4,11/2,5,11,6,13/2,4,6,4,5,5,8,5,11/2,4,7,5,6,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,6,3,3,3,3,2,2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,7/2,3,5,4,11/2,6,9,5,5,4,6,4,7/2,3,3,2,5/2,2,3,2,3,3,3,2,2,1,2,2,3/2,1,2,1,1,1,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,-1,0,0,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,3,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,9/2,4,6,4,5,5,8,4,9/2,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,17/2,6,9,6,15/2,7,12,7,15/2,6,9,6,9,9,15,8,9,7,11,7,10,9,16,9,21/2,8,14,10,14,14,32,16,33/2,12,16,9,21/2,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,8,5,11/2,5,7,5,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,7/2,2,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,4,5,3,4,4,8,5,5,3,4,3,7/2,4,6,4,4,3,6,4,9/2,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,4,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,4,3,3,2,3,2,3,3,5,3,3,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4 -18,19/2,10,7,9,11/2,6,6,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,5,5,7/2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3/2,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,7,11/2,8,5,7,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,9/2,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,5/2,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1/2,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,31/2,9,10,9,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,8,13,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,5,8,4,4,3,3,2,2,2,5,3,4,3,7/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,6,4,4,3,7/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,3,2,3,3,4,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,15/2,4,4,3,5,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,1,1,3/2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,5/2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,9/2,4,5,5,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,13/2,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,25/2,8,12,12,23,12,13,9,13,8,10,9,18,10,12,9,29/2,10,13,12,22,12,13,10,16,10,13,13,24,14,16,13,21,14,21,21,47,24,24,16,24,14,16,14,22,12,13,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,8,7,11,7,10,9,14,7,7,5,15/2,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,11/2,4,5,5,7,4,5,4,6,4,6,5,10,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,13/2,4,6,6,10,5,5,4,5,3,3,3,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-14,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,-1,-2,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,3,3,9/2,3,4,4,9,5,5,4,11/2,4,4,3,3,2,3,2,7/2,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,5,7,7,10,6,6,4,13/2,4,4,4,8,5,5,5,8,5,7,7,11,6,6,4,11/2,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,13/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,4,3,7/2,2,3,3,4,3,3,3,11/2,4,5,5,7,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4 -21,11,11,8,10,6,7,6,10,6,6,4,7,9/2,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,7/2,5,3,3,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,5/2,3,2,3,2,2,5/2,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,4,5,9/2,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,9,6,9,6,7,13/2,12,7,8,6,10,7,9,9,16,9,9,7,11,7,9,9,16,19/2,11,9,15,10,14,14,32,16,16,11,16,19/2,11,9,15,8,9,13/2,10,6,8,15/2,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,6,10,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,5/2,3,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1/2,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,7/2,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,3,2,4,3,3,5/2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,15,9,21/2,9,15,8,17/2,6,10,6,8,8,15,8,17/2,6,9,5,6,6,10,6,13/2,6,9,6,17/2,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,7/2,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,5,4,7,5,13/2,7,13,7,13/2,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-3/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3,3,4,2,2,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,7/2,2,4,3,3,3,5,3,4,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,13/2,6,12,6,13/2,5,7,5,6,6,10,6,6,5,7,5,13/2,6,13,7,7,5,7,5,13/2,6,12,7,8,7,12,8,12,12,22,12,25/2,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,27/2,10,17,11,14,13,24,14,31/2,13,22,15,21,21,47,24,24,16,24,14,16,13,23,12,25/2,9,14,9,12,11,20,11,11,8,11,7,17/2,7,12,7,8,6,10,7,9,9,15,8,7,5,7,5,6,5,9,5,11/2,4,7,4,11/2,6,10,6,6,4,6,4,11/2,5,8,5,11/2,4,6,4,13/2,6,10,6,13/2,4,7,4,4,4,7,4,4,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,3,5,3,7/2,3,4,2,5/2,2,4,3,7/2,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,10,6,11/2,4,5,3,7/2,3,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,2,1,1/2,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-6,-3,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,7/2,3,4,3,5,5,8,4,4,3,4,3,7/2,3,4,3,3,3,4,3,3,3,6,3,3,2,4,3,7/2,3,5,3,7/2,4,6,4,13/2,6,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,13/2,6,11,6,6,4,6,4,9/2,4,7,4,9/2,4,7,5,7,7,12,6,13/2,4,6,4,4,3,5,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,4,3,7/2,3,5,4,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,2,2,3,2,5/2,2,3,2,3,3,4 -31,16,16,11,15,9,10,9,15,8,8,6,10,13/2,9,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,8,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,5/2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,5/2,3,7/2,6,4,5,4,7,5,6,7,13,7,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,3/2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,6,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,5/2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,7,6,12,7,8,7,12,8,12,12,22,12,12,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,21/2,17,11,14,13,24,14,16,13,22,15,22,22,47,24,24,16,24,14,16,13,23,12,13,9,14,9,12,11,19,10,11,8,11,7,8,7,13,7,8,6,10,7,9,8,15,8,8,5,7,5,6,5,9,5,6,9/2,7,9/2,6,6,10,6,6,4,6,4,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,7,4,4,4,7,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3,5,3,4,3,4,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4 -60,31,31,21,30,17,20,17,30,16,17,13,20,13,17,16,31,16,17,12,17,10,12,11,20,11,12,10,17,12,17,17,32,16,16,11,15,9,11,9,15,8,9,6,9,6,9,8,15,8,9,7,11,7,9,8,13,8,9,8,14,10,14,13,25,13,14,10,14,8,10,9,17,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,13,51/2,14,14,10,15,9,11,10,17,10,11,8,13,8,10,10,18,10,10,7,11,7,8,7,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,13,10,15,9,10,9,16,9,10,7,11,7,10,10,18,9,9,7,10,6,7,6,9,5,6,5,8,6,8,8,15,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,3,4,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,2,2,3,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,39/2,10,10,8,12,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,10,6,8,8,15,9,11,10,17,12,18,19,37,19,19,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,12,22,13,15,12,21,14,21,21,40,21,22,15,23,14,17,14,25,14,16,13,22,14,20,19,37,20,21,16,25,16,22,21,41,23,27,23,41,28,42,42,92,46,46,31,46,26,31,26,47,25,26,19,31,19,26,24,44,23,23,16,23,14,17,14,25,14,16,13,22,14,20,20,38,19,19,13,19,11,14,12,20,11,11,8,13,8,11,11,21,11,12,9,13,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,10,12,10,17,9,10,8,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,19,10,11,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,8,29/2,8,8,6,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,7,13,8,9,8,14,9,13,13,25,13,13,9,14,8,9,7,12,7,7,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,5,7,4,5,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,4,5,4,7 -31,16,16,11,16,9,10,9,16,9,9,7,11,7,9,9,16,17/2,9,6,9,11/2,6,6,11,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,5,4,5,9/2,8,5,5,4,6,4,5,4,7,4,5,5,7,5,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,7,9/2,6,6,9,5,5,4,6,4,5,4,7,9/2,5,5,8,6,8,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,5/2,4,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,5,5,10,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,7/2,5,7/2,4,4,8,5,6,5,9,13/2,10,10,19,10,10,7,11,13/2,8,7,12,7,7,6,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,11,20,11,11,8,12,7,9,15/2,13,15/2,8,7,12,8,11,10,19,10,11,17/2,13,8,11,11,21,12,14,12,21,15,22,22,47,24,24,16,24,14,16,14,24,13,14,10,16,10,14,12,23,12,12,8,12,7,9,8,13,8,9,7,11,15/2,10,10,20,10,10,7,10,6,7,6,11,6,6,5,7,9/2,6,6,11,6,6,5,7,9/2,6,5,8,5,6,9/2,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,8,5,6,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,7/2,5,3,4,7/2,6,4,4,7/2,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,5/2,4 -31,16,16,11,16,9,21/2,9,16,9,9,7,11,7,19/2,9,16,8,17/2,6,9,6,13/2,6,11,6,7,6,9,6,9,9,17,9,17/2,6,8,5,6,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,4,4,6,4,5,5,7,5,8,8,14,8,8,6,8,5,11/2,5,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,9/2,4,6,4,13/2,6,11,6,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,4,4,7,4,9/2,3,5,4,9/2,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,11/2,5,9,5,11/2,4,7,4,11/2,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,15/2,7,13,7,15/2,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,5,4,6,5,7,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,8,4,7/2,3,4,3,3,3,5,3,5/2,2,4,2,5/2,2,5,3,5/2,2,2,2,3/2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,5,5,10,6,6,5,6,4,9/2,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,8,4,4,3,4,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,6,5,9,6,19/2,10,19,10,10,7,11,6,15/2,6,12,7,7,6,8,5,7,7,13,7,15/2,6,8,5,7,7,11,7,8,7,11,8,11,11,20,10,21/2,8,12,7,17/2,7,13,8,17/2,7,12,8,11,10,19,10,23/2,9,13,8,11,11,22,13,15,13,22,15,22,22,47,24,24,16,24,14,33/2,14,24,13,27/2,10,16,10,27/2,12,23,12,12,8,12,7,9,8,13,8,9,7,11,8,21/2,10,20,10,10,7,10,6,7,6,11,6,6,5,6,4,6,6,11,6,13/2,4,7,4,11/2,5,9,5,11/2,4,8,6,8,8,15,8,9,6,8,5,6,5,9,5,11/2,4,8,5,6,6,11,6,13/2,5,6,4,11/2,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,7/2,2,3,2,7/2,4,7,4,9/2,4,5,4,9/2,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,5,3,3,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,4,3,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,13,7,7,5,7,4,5,4,7,4,9/2,3,4,3,4,4,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,4,5,5,8,4,9/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3 -21,11,11,8,11,13/2,8,6,11,6,6,5,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,7/2,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,5/2,4,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,32,17,17,23/2,17,10,12,10,16,9,10,7,11,7,9,8,16,8,8,6,8,5,7,6,9,11/2,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,5/2,5,3,3,3,4,3,4,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,5/2,3,5/2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,5/2,3,3,4,5/2,2,2,3,5/2,3,3,6,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -30,15,15,11,16,9,11,9,16,9,9,7,21/2,7,10,9,16,9,9,6,9,6,7,6,10,6,6,5,9,6,9,9,17,9,10,7,19/2,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,5,4,13/2,5,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,13/2,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,11/2,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,5,4,7,5,8,8,12,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,9,5,6,4,13/2,4,5,5,8,5,5,4,15/2,6,8,8,14,8,8,6,15/2,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,4,3,4,3,5,4,6,6,7,4,4,3,3,2,3,3,5,3,3,2,5/2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,4,3,4,4,11/2,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,11/2,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,4,5,5,9,6,7,6,9,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,11,7,10,10,19,10,10,7,21/2,6,8,7,13,7,8,6,21/2,7,10,10,19,11,12,9,29/2,10,13,12,22,13,15,13,22,15,22,22,49,25,25,17,25,14,16,14,24,13,13,10,31/2,10,12,12,24,12,12,8,25/2,8,10,8,14,8,9,7,21/2,7,10,10,19,10,10,7,19/2,6,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,6,5,9,5,5,4,7,5,6,6,11,6,6,4,11/2,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,9/2,3,4,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3 -17,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,6,11/2,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,8,5,5,7/2,5,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,5/2,4,4,4,5/2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,7/2,4,7/2,5,4,6,6,12,13/2,6,9/2,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,6,4,4,4,7,9/2,6,6,11,6,6,4,6,4,5,4,8,9/2,5,4,6,9/2,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,9,6,7,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 -21,11,11,8,12,7,15/2,6,11,6,13/2,5,7,5,7,7,12,6,13/2,5,7,4,11/2,5,8,5,5,4,6,4,13/2,6,13,7,7,5,6,4,9/2,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,4,11/2,5,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,5,7,4,9/2,4,5,3,4,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,2,3,5,3,7/2,2,3,2,3,3,5,3,4,3,5,4,11/2,6,9,5,5,4,6,4,9/2,4,6,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,3,3,6,4,4,4,5,4,6,6,10,6,11/2,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,5,3,4,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,9/2,4,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,3,4,4,6,4,4,4,6,5,7,7,15,8,15/2,5,8,5,6,5,8,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,4,4,6,4,9/2,4,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,15/2,7,12,7,8,6,10,7,9,8,15,9,10,9,15,10,31/2,16,33,17,35/2,12,17,10,23/2,10,17,9,19/2,7,11,7,9,8,17,9,17/2,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,5,4,11/2,6,12,6,13/2,5,6,4,5,4,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,7/2,3,6,4,7/2,3,5,4,9/2,4,8,5,5,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,2,3,2,3,3,6,4,7/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,2,4,3,3,2,4,3,3,3,4,3,7/2,3,6,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,4,3,7/2,3,4,3,5,5,8,5,5,4,4,3,4,3,5,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3 -18,9,9,7,10,6,7,6,9,5,5,4,6,4,6,6,11,6,6,9/2,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,5/2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,11/2,9,6,8,7,13,8,9,8,13,9,13,27/2,28,15,15,10,14,8,10,8,14,8,8,6,9,6,8,7,14,7,7,5,8,5,6,5,9,5,6,4,7,9/2,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,3,5/2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -31,16,16,11,16,9,11,9,31/2,8,8,6,10,7,10,9,19,10,11,8,12,7,9,8,13,8,9,7,11,7,10,10,20,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,15/2,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,15/2,5,6,5,7,5,6,6,8,4,4,3,4,3,4,3,9/2,3,4,3,5,4,5,5,7,4,4,2,2,2,2,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,11/2,4,5,5,8,6,8,7,14,7,7,5,7,4,5,5,17/2,5,6,4,6,4,5,4,8,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,9,5,6,4,6,4,5,5,17/2,5,6,5,9,7,10,11,22,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,5,6,6,19/2,6,7,7,12,8,12,11,18,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,11,9,14,9,13,12,45/2,13,16,14,24,16,24,24,50,26,26,18,26,15,17,14,49/2,13,14,10,16,10,13,12,24,13,13,9,14,9,11,9,16,9,10,7,11,7,10,10,19,10,10,8,12,7,9,7,12,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,7,18,9,9,6,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,5,7,4,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,3,3,2,7/2,2,2,2,4,3,3,3,9,5,5,4,5,4,5,4,7,4,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,3,2,3,3,9/2,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,11/2,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,3,3,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,2,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,11/2,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,13/2,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,15/2,4,5,4,6,4,5,5,7,4,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5 -17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,11/2,10,6,6,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,5/2,4,3,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,3,3,3,2,3,3,4,3,5,4,8,4,4,3,4,3,3,3,5,3,4,5/2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,13/2,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,6,10,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,9,8,13,9,13,13,27,14,14,10,14,8,9,8,14,15/2,8,6,9,6,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,5/2,4,3,3,3,4,3,3,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -18,10,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,11,6,13/2,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,5,3,7/2,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,7/2,3,3,2,2,2,2,2,3,3,6,3,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,7/2,2,4,3,7/2,3,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,4,4,5,3,4,3,4,3,7/2,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,5/2,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,4,2,5/2,2,3,2,3,2,4,2,5/2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,3,3,2,3,3,4,3,5,5,9,5,9/2,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,5/2,2,5,3,4,3,4,3,7/2,3,6,4,4,3,6,4,6,7,13,7,13/2,4,6,4,9/2,4,7,4,4,4,5,4,9/2,4,7,4,4,3,6,4,4,4,6,4,9/2,4,7,5,7,7,11,6,6,5,6,4,11/2,5,8,5,6,5,6,4,6,6,11,6,13/2,6,9,6,15/2,7,14,8,19/2,8,15,10,29/2,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,7,14,8,15/2,6,8,5,7,6,9,5,11/2,4,6,4,6,6,12,6,6,5,7,4,11/2,4,7,4,7/2,3,4,3,7/2,3,5,3,7/2,2,4,3,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,7/2,3,5,4,9/2,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,7,4,7/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,3,3,2,3,3,6,4,7/2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-5/2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,4,2,2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3 -14,8,8,6,8,5,5,9/2,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,7/2,5,5,9,5,5,3,5,3,3,3,4,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,3/2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,7,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -22,12,12,9,13,8,9,7,13,7,8,6,17/2,6,8,7,13,7,8,6,17/2,5,6,6,10,6,6,5,15/2,5,6,6,13,7,7,5,7,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,2,2,2,3,2,2,2,7/2,3,4,5,12,6,6,4,11/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,3,3,6,4,4,2,5/2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,13/2,4,5,5,6,4,4,3,5,3,4,4,8,4,4,4,11/2,4,4,4,6,4,5,4,6,4,6,6,8,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,7/2,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,9/2,3,4,4,5,3,2,2,2,2,2,2,5,3,3,3,4,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,10,5,5,4,6,3,3,3,6,3,3,2,3,3,4,4,5,3,3,2,3,3,4,4,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,7,4,5,4,13/2,5,7,8,15,8,8,6,8,5,5,5,8,5,6,5,7,5,6,6,9,5,6,4,11/2,4,4,4,6,4,5,4,15/2,6,8,8,12,7,7,5,7,4,5,5,9,5,6,5,17/2,6,7,7,14,8,8,6,21/2,7,10,9,16,10,12,10,18,12,17,17,35,18,18,12,18,11,13,11,18,10,10,8,12,8,10,9,17,9,10,7,19/2,6,7,7,12,6,6,5,15/2,6,8,7,15,8,8,6,15/2,5,6,5,7,4,5,4,11/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,3,3,4,3,4,4,13,7,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,5,3,4,3,4,3,4,5,9,5,4,3,4,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,3,4,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,3,4,4,3,2,2,2,2,2,3,3,4,2,2,2,7/2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,3,2,2,2,3,2,3,3,3,2,2,2,7/2,3,4,4,4,3,3,2,7/2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,2,2,2,7/2,2,2,2,5,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,4 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,5/2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,7/2,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,9/2,7,5,6,6,10,6,8,7,12,8,11,11,22,12,12,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,8,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,5/2,4,5/2,3,3,6,7/2,3,3,4,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3 -19,10,10,7,11,7,8,6,11,6,13/2,5,8,5,7,6,12,7,7,5,8,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,9/2,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,4,4,10,6,11/2,4,4,3,4,4,5,3,7/2,3,4,3,7/2,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,5/2,3,5,3,3,2,3,2,7/2,3,5,3,4,3,5,3,4,4,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,7/2,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,5,3,3,3,5,3,5/2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,5,3,7/2,3,4,2,5/2,3,5,3,3,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,4,3,7/2,3,5,4,5,5,9,5,9/2,3,5,3,3,2,5,3,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,6,4,4,3,4,3,7/2,3,6,4,4,4,6,4,13/2,7,12,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,9/2,4,7,4,5,4,6,4,4,4,6,4,9/2,4,7,5,13/2,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,13/2,6,13,7,15/2,6,10,6,8,8,14,8,21/2,9,16,11,31/2,16,31,16,31/2,10,15,9,11,9,15,8,17/2,7,10,6,17/2,8,14,8,15/2,6,8,5,13/2,6,10,6,6,5,8,5,13/2,6,13,7,13/2,4,6,4,9/2,4,6,4,4,3,5,3,3,3,5,3,7/2,2,4,3,4,3,5,3,7/2,2,3,2,7/2,4,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,3,4,4,2,2,3/2,2,2,2,3/2,2,3,2,3,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,7/2,3,5,3,4,3,9,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3 -18,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,5,4,5,5,9,5,4,3,4,3,3,2,4,5/2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,8,6,10,6,8,8,14,8,10,17/2,15,10,15,15,30,15,15,10,15,9,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,5/2,3,5/2,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,5/2,3,2,2,2,5,3,4,3,4,3,4,3,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,5,8,5,6,5,15/2,4,5,4,6,4,4,3,5,3,4,4,7,5,7,7,19,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,19/2,6,6,4,6,4,4,4,6,4,5,4,6,4,5,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,4,4,15/2,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,16,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,25/2,7,7,5,6,4,5,5,8,5,6,5,8,6,9,9,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,5,4,5,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,3,5,3,4,4,6,4,5,5,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,21/2,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,16,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,11,22,11,11,8,11,7,8,8,14,7,7,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,11,11,19,10,10,7,10,6,8,7,12,7,8,7,12,8,12,12,45/2,12,13,10,16,10,14,13,24,14,17,15,26,18,27,27,57,29,29,19,28,16,19,16,28,15,16,12,19,12,15,13,24,13,13,10,15,9,11,10,18,10,11,9,14,9,12,11,21,11,10,7,10,6,8,7,11,6,7,5,8,5,5,5,8,5,5,3,4,3,3,3,6,4,4,4,7,5,7,6,18,9,9,6,8,5,6,5,8,5,5,4,5,4,6,6,19/2,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,13/2,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,5,7,7,3,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,16,8,8,6,9,5,6,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,10,6,6,5,7,4,5,4,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6 -18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,6,11,6,6,9/2,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,7,10,13/2,8,7,13,7,7,11/2,8,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,7,6,11,6,13/2,5,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,4,9/2,4,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,3,6,4,7/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,3,4,4,9,5,9/2,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,4,11/2,6,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,3,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,1/2,0,0,0,0,1,2,2,3/2,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,4,3,5,4,9/2,5,9,5,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,4,6,4,5,5,12,6,6,4,7,4,5,4,7,4,4,3,4,3,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,6,6,10,6,11/2,4,6,4,5,4,8,5,11/2,4,7,5,7,7,12,7,7,6,10,6,17/2,8,13,8,19/2,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,13/2,6,12,6,13/2,5,6,4,5,4,6,4,4,3,5,3,4,4,4,3,7/2,2,2,2,2,2,5,3,3,3,4,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,3,2,7/2,4,4,3,7/2,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,7,4,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-5,-2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,2,2,5/2,2,2,2,3,3,9,5,9/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4 -14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,4,5/2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,2,3/2,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,6,4,4,3,4,3,4,9/2,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3 -21,11,10,7,10,6,7,6,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,15/2,5,6,5,7,4,4,3,4,3,4,3,4,3,3,2,7/2,2,3,2,4,3,4,4,11/2,4,5,5,13,7,7,5,6,4,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,7/2,2,3,2,5,3,4,3,7/2,3,4,4,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,9/2,3,4,4,9,5,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,4,3,4,4,7,4,4,3,5,3,3,2,5,3,4,3,7/2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,3,2,3,2,7/2,2,3,3,0,0,0,0,0,0,0,0,1,1,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,6,4,4,4,11/2,4,5,5,8,5,5,3,4,3,3,3,5,3,2,2,5/2,2,3,3,7,4,4,3,3,2,3,2,3,2,3,3,11/2,4,4,4,3,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,11/2,4,5,5,13,7,7,5,15/2,4,5,5,7,4,4,3,5,4,5,5,9,5,6,4,11/2,4,4,4,9,5,6,4,13/2,5,7,7,12,7,7,5,15/2,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,21/2,7,9,9,16,9,11,10,17,12,17,17,34,17,17,12,17,10,11,9,17,9,10,8,23/2,8,10,9,15,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,11,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,4,3,9/2,4,5,5,8,5,5,4,9/2,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3/2,2,3,3,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-1,0,0,0,1/2,1,1,1,-6,-2,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,7/2,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,4,10,5,5,4,9/2,3,3,2,5,3,2,2,2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,3,2,7/2,3,4,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,7/2,2,2,2,4,3,4,3,9/2,3,3,3,5 -13,7,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,5,7/2,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,11/2,9,5,5,4,6,7/2,4,4,6,4,4,3,5,7/2,5,9/2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -16,8,8,6,7,4,11/2,5,8,5,5,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,4,3,3,3,4,3,4,4,11,6,11/2,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,8,4,4,3,5,3,4,4,5,3,7/2,3,4,3,7/2,4,4,3,7/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,7/2,3,3,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,7/2,3,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,3,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,5,3,7/2,4,6,4,4,3,6,4,11/2,5,10,6,13/2,4,7,4,5,5,8,5,11/2,4,7,5,13/2,6,10,6,13/2,5,8,5,7,7,12,7,9,8,13,9,27/2,13,26,14,14,9,13,8,9,7,12,7,7,6,9,6,15/2,7,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,5,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,8,4,9/2,4,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,2,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,-2,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,4,3,3,3,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,5/2,2,2,2,3/2,1,1,1,1/2,0,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,5/2,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -14,7,7,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,5/2,3,7/2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,9/2,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,6,7/2,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 -24,12,12,8,12,7,8,7,11,6,7,6,9,6,8,7,15,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,8,5,5,4,13/2,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,9/2,4,5,5,8,6,8,8,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,7,4,4,3,5,4,5,5,19/2,6,6,5,9,6,8,8,14,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,2,2,2,7/2,2,2,2,4,3,4,4,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,11/2,4,4,4,6,4,6,5,6,3,3,3,4,3,4,4,11/2,4,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,6,16,9,9,7,10,6,7,6,9,5,6,5,7,5,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,6,8,8,19,10,10,7,10,6,8,7,25/2,8,9,7,12,8,11,11,18,10,10,8,12,8,10,10,39/2,12,14,12,21,14,21,21,42,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,17,9,10,8,12,7,9,8,27/2,8,8,6,10,7,9,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,12,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,3,3,4,4,11/2,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,6,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,11,6,6,4,6,4,5,4,13/2,4,4,3,4,3,4,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,6,3,3,3,4,2,2,2,5/2,2,2,1,1,1,1,2,-1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,1,1,3/2,2,2,1,1,1,1,2,4,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,1,1,1/2,0,0,0,0,1,1,2,7,4,4,3,4,2,2,2,7/2,2,2,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,9,5,6,4,6,4,4,3,5,3,3,2,3,2,3,4,8,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,9/2,2,2,2,2,1,1,1,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,5,5,8 -13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,4,7/2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,9/2,5,4,7,5,7,13/2,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,11/2,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,5/2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5 -15,8,8,6,8,5,6,5,8,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,6,4,9/2,4,6,4,11/2,6,10,6,6,4,5,3,7/2,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,6,6,11,6,6,4,6,4,4,4,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,5,3,4,3,5,3,3,3,4,3,3,3,3,3,4,4,6,4,5,4,6,4,11/2,6,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,3,2,5,3,4,3,4,2,2,2,3,2,3/2,2,2,2,5/2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,3,9/2,4,6,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,4,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,5,3,4,3,3,2,3,3,4,2,2,2,4,3,9/2,4,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,13/2,5,6,4,11/2,5,8,5,11/2,4,8,6,8,7,12,7,7,6,9,6,15/2,7,13,8,9,8,14,10,27/2,14,26,14,27/2,9,13,8,17/2,7,13,7,7,6,8,6,8,7,12,6,6,5,8,5,5,5,9,5,5,4,7,4,11/2,5,10,5,5,4,5,3,3,3,6,4,7/2,3,4,3,4,4,7,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,5/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,4,4,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,3,3,7,4,9/2,3,4,3,7/2,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,7/2,4,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,4,2,2,2,2,1,1,1,3,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,3/2,2,2,2,3/2,2,3,2,3,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6 -13,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,7/2,5,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,11/2,6,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,21,11,11,15/2,11,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,7/2,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,2,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6 -22,11,11,8,21/2,6,8,6,11,6,7,5,15/2,5,6,5,10,6,6,4,13/2,4,6,5,8,5,6,5,9,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,6,4,5,4,7,5,7,8,15,8,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,6,4,11/2,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,3,3,5,3,3,2,3,3,4,4,7,4,4,4,11/2,4,4,4,12,7,8,6,17/2,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,11/2,4,4,3,7,4,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,7,4,5,4,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,3,6,4,4,3,9/2,3,4,3,5,3,3,3,4,3,5,5,0,0,0,1,3/2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,5/2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,5,4,6,6,8,5,5,4,11/2,4,4,3,5,3,3,2,3,2,3,4,5,3,3,2,3,2,2,2,6,4,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,3,2,7/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,3,3,5,4,5,6,13,7,7,5,8,5,5,4,6,4,4,4,13/2,4,6,6,12,6,6,5,15/2,5,6,6,10,6,6,6,19/2,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,37/2,10,12,10,18,10,10,7,11,7,10,10,17,9,9,6,17/2,5,6,6,12,7,8,6,17/2,6,8,7,13,7,7,5,13/2,4,5,4,7,4,5,4,11/2,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,11/2,4,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,7/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,9/2,4,5,5,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,3,3,9,5,6,4,11/2,4,4,4,6,4,4,3,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,4,-1,0,0,1,1,1,1,1,0,1,1,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,4,4,6,4,6,6,11 -15,8,8,5,8,9/2,6,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,2,2,2,3,2,3,5/2,3,3,4,7/2,5,3,4,3,4,5/2,3,3,4,3,3,5/2,3,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,8,5,5,4,6,7/2,4,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,3,4,3,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,5/2,4,7/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,5/2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,4,5,7/2,4,4,7,4,4,4,7,9/2,6,6,11,6,6,4,7,4,5,4,7,4,5,4,7,5,7,13/2,11,6,7,11/2,8,11/2,7,7,12,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,7/2,6,7/2,4,3,4,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,3,4,3,5,5,8 -22,11,21/2,7,11,6,15/2,6,10,6,11/2,4,6,4,11/2,5,10,6,11/2,4,6,4,5,5,8,5,11/2,5,8,5,7,7,12,6,13/2,5,7,4,9/2,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,9/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,3,3,4,3,3,3,4,3,9/2,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,7,4,4,3,5,3,4,4,12,7,7,5,8,4,9/2,4,7,4,4,3,5,3,4,4,5,3,7/2,3,5,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,6,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,3,3,2,2,2,2,3,7,4,9/2,4,4,3,3,3,5,3,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,7/2,4,6,4,7/2,3,4,3,4,4,6,4,5,4,6,4,13/2,7,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,4,3,7/2,3,5,3,4,3,5,4,9/2,4,7,4,9/2,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,5,3,4,4,5,3,7/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,5,4,6,4,6,6,11,6,13/2,5,7,5,6,6,10,6,13/2,6,10,6,17/2,8,16,8,8,6,10,6,15/2,6,11,6,15/2,6,10,7,10,9,16,9,10,8,12,8,21/2,10,17,10,23/2,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,6,10,6,6,5,7,5,13/2,6,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,9,5,5,3,5,3,7/2,3,5,3,7/2,4,6,4,6,5,9,5,5,4,6,4,9/2,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,7/2,4,8,4,9/2,4,5,3,3,3,5,3,3,3,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,0,1,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-4,-4,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,4,4,-1,0,1,1,1,1,1,1,0,1,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,3,5,3,4,4,6,5,7,7,12 -21,11,10,7,11,6,7,6,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,9/2,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,9/2,8,4,4,7/2,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,4,8,5,5,4,7,5,7,7,12,6,6,5,6,4,4,4,7,4,4,7/2,5,3,4,4,6,3,3,5/2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,9/2,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,11/2,9,6,8,8,16,17/2,9,6,10,6,8,13/2,11,6,7,6,10,7,10,9,17,9,10,8,12,8,10,19/2,17,10,12,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,9,9,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,12 -41,21,22,15,23,14,17,14,25,13,14,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,12,8,12,12,45/2,12,12,9,13,8,10,9,16,9,9,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,14,10,14,13,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,7,6,9,5,5,4,7,5,7,8,29/2,8,8,6,9,5,6,6,10,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,7,6,9,6,7,7,13,7,8,7,11,8,12,12,22,12,12,8,12,7,8,6,10,6,6,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,5,13,7,7,5,8,5,6,5,8,5,5,3,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,6,5,8,6,8,8,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,11,8,12,12,12,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,7,7,27/2,8,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,10,21,11,11,7,10,6,7,7,12,7,8,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,9,15,10,15,16,31,16,16,11,17,10,13,12,22,12,14,12,20,13,18,18,35,18,19,14,23,14,18,17,32,18,21,18,32,22,33,33,67,34,34,22,32,18,21,18,32,17,18,13,20,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,12,22,12,12,9,13,8,9,8,14,8,8,6,10,7,10,10,19,10,10,7,11,7,9,8,15,9,10,8,12,8,11,10,17,9,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,6,5,7,7,25/2,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,2,2,2,1,1,1,2,2,4,3,3,3,5,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,9,9,14,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,7,5,6,5,8,5,7,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,24 -21,11,12,8,12,7,9,8,13,7,8,6,9,6,8,15/2,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,6,6,5,7,9/2,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,12,13/2,6,4,6,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,5,7,7,7,4,4,3,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,17,10,11,10,17,12,17,17,34,18,18,12,17,10,11,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,6,11/2,9,11/2,6,5,7,5,7,6,12,6,6,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,8,4,4,3,5,3,3,3,4,5/2,3,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,6,4,6,7,13 -22,12,23/2,8,12,7,17/2,8,13,7,15/2,6,9,6,8,8,13,7,15/2,6,9,5,11/2,5,9,5,5,4,7,5,13/2,6,12,6,6,4,7,4,11/2,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,5/2,2,4,3,4,4,13,7,6,4,6,4,5,4,6,4,9/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,6,4,9/2,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,7/2,4,5,3,4,4,7,5,7,7,7,4,4,3,6,4,4,4,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,4,6,4,5,4,7,4,9/2,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,16,9,9,7,9,6,15/2,7,12,7,8,7,11,7,10,10,19,10,21/2,8,12,8,21/2,10,17,10,11,10,17,12,35/2,18,34,18,18,12,17,10,11,10,17,9,9,7,10,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,7,5,7,6,12,6,13/2,5,7,5,6,5,8,5,5,4,6,4,11/2,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,4,7/2,3,3,2,5/2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,4,3,5,3,4,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-2,-4,-2,-7/2,-4,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,3,2,3,2,7/2,4,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,1,3/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,4,5,5,7,4,9/2,4,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,13/2,7,13 -15,8,8,6,8,5,6,11/2,9,5,5,4,7,9/2,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,7/2,5,5,9,5,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,7/2,5,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,5/2,4,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9 -22,12,12,8,25/2,8,9,8,12,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,6,6,14,7,7,5,15/2,5,6,5,8,5,6,4,13/2,4,5,5,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,4,13,7,7,5,7,4,5,5,6,4,4,4,6,4,4,4,6,4,4,4,11/2,4,4,4,6,4,4,4,13/2,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,9/2,3,4,3,5,3,4,3,7/2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,4,3,2,2,2,2,2,2,1,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,2,4,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,4,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,3,3,8,5,5,3,4,3,3,3,6,4,5,5,8,6,8,8,7,4,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,9/2,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,4,6,4,4,4,13/2,4,6,6,14,7,7,5,13/2,4,6,5,6,4,4,4,6,4,6,5,9,5,6,4,13/2,4,6,6,9,5,6,6,19/2,6,9,9,17,9,9,7,11,7,9,8,13,7,8,6,21/2,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,35,18,18,12,18,11,13,11,18,10,10,8,23/2,8,10,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,12,6,6,4,13/2,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,3,3,2,7/2,3,4,3,6,3,3,2,3,2,3,2,4,2,2,2,3,3,4,4,6,4,4,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,4,5,4,9,5,6,4,11/2,4,4,3,4,3,3,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,3/2,2,2,1,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,1/2,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,9/2,4,5,5,9,5,6,4,13/2,4,5,5,8,5,6,5,15/2,5,7,7,13 -13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,5,3,4,7/2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,5,7/2,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,6,7/2,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,10,6,6,5,7,9/2,6,5,8,5,5,4,6,9/2,6,6,12,7,7,5,8,5,7,6,11,13/2,8,6,10,7,10,10,20,11,11,15/2,11,7,8,6,11,6,6,5,7,5,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,5/2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8 -17,9,9,7,10,6,13/2,6,8,5,5,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,9/2,5,9,5,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,6,4,7/2,2,4,3,7/2,3,5,4,9/2,4,7,5,6,6,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,7,4,3,2,4,3,3,3,3,2,3,2,4,3,4,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,4,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,7,7,13,7,15/2,6,8,5,13/2,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,19/2,8,13,9,25/2,12,25,13,13,9,13,8,9,7,13,7,7,5,8,5,7,7,11,6,13/2,5,6,4,9/2,4,7,4,5,4,5,4,5,5,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,9/2,5,9,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,5,5,8,5,5,4,5,3,7/2,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,3,3,4,3,7/2,3,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,1,3/2,1,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,4,3,4,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10 -15,8,8,6,8,5,6,5,8,5,5,4,7,9/2,6,11/2,9,5,5,4,5,3,4,7/2,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,4,4,4,6,9/2,6,6,12,13/2,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,13/2,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8 -26,14,14,10,14,8,10,8,27/2,8,8,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,10,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,7,5,8,8,14,8,8,6,9,5,6,5,17/2,5,6,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,6,5,15/2,4,4,3,4,3,5,5,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,3,4,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,1,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,4,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,1,1,1,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,4,5,4,9,5,5,4,6,4,5,5,17/2,5,6,5,9,6,8,8,8,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,10,6,6,4,6,4,4,3,9/2,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,21,11,12,8,12,8,10,9,16,9,10,8,12,8,12,11,20,11,12,9,13,9,12,12,22,12,14,11,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,13,9,12,11,16,9,9,7,10,6,8,6,21/2,6,7,5,8,6,8,8,15,8,9,6,9,5,6,6,19/2,6,6,5,9,6,7,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,6,4,4,4,13/2,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,3,3,3,4,3,4,4,13/2,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,4,4,5,3,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1,1,1,2,3,2,3,2,7/2,2,3,3,4,3,3,3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,5,5,17/2,5,5,4,7,5,7,7,14 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,7,4,4,7/2,5,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,5,5,7/2,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,12,13/2,7,5,7,5,6,5,9,5,6,9/2,7,5,7,6,11,6,7,5,7,5,7,7,12,7,8,13/2,11,15/2,11,11,20,11,11,15/2,11,6,7,6,11,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8 -16,9,9,6,8,5,11/2,5,8,5,11/2,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,5,3,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,6,4,4,3,6,4,4,3,4,3,7/2,4,5,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,6,4,4,3,5,3,7/2,3,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,9/2,4,6,4,6,6,6,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,11/2,4,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,6,4,4,3,6,4,13/2,6,13,7,7,5,8,5,13/2,6,9,5,11/2,4,7,5,7,7,12,7,7,6,8,6,15/2,8,14,8,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,6,4,5,4,7,4,5,4,6,4,11/2,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,2,2,3,3,4,2,5/2,2,4,3,4,4,8,4,4,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,3,2,3/2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,7,4,4,3,2,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,2,2,2,3,3,3,2,2,2,3,2,5/2,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,9/2,4,8 -12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,9/2,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,9/2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,7/2,5,5,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,5,5,7,4,4,7/2,6,4,5,5,10,6,6,5,7,5,6,6,11,13/2,7,6,10,7,10,10,18,19/2,10,7,10,6,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,7/2,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 -20,10,10,7,11,7,8,6,10,6,7,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,7,7,6,4,4,4,11/2,4,4,4,7,4,5,4,6,4,5,5,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,10,6,6,4,13/2,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,4,2,5/2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,3,9/2,3,4,4,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,4,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,4,2,2,2,5/2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,1/2,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,3,2,2,2,3,2,2,2,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,15/2,5,6,6,9,5,5,4,5,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,4,9/2,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,4,11/2,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,5,8,5,5,4,7,5,8,8,17,9,9,7,21/2,6,8,7,11,6,6,5,17/2,6,8,8,16,9,10,7,11,7,10,10,19,11,12,10,33/2,11,16,16,29,15,15,10,31/2,9,11,9,16,9,9,7,21/2,7,9,8,14,8,8,6,8,5,6,5,9,5,6,5,17/2,6,7,7,14,7,7,5,7,4,5,4,7,4,5,4,15/2,5,6,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,11/2,4,5,5,6,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,11/2,4,5,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,7/2,2,3,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,8,4,4,3,7/2,2,3,2,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,11/2,4,4,4,7,4,5,4,13/2,4,6,6,11 -13,7,7,5,7,9/2,5,4,7,4,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,5,3,3,3,5,7/2,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,5/2,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,5/2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,2,5/2,4,3,4,4,7,4,4,3,3,2,3,3,4,5/2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,9/2,6,5,8,9/2,5,4,6,4,6,6,11,6,7,5,8,5,7,7,12,7,8,13/2,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,9/2,8 -18,10,19/2,7,10,6,13/2,6,9,5,11/2,4,6,4,13/2,6,12,6,13/2,4,6,4,4,4,7,4,4,4,6,4,6,6,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,5,3,7/2,3,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,4,4,7,4,9/2,4,5,3,4,4,7,4,7/2,3,4,3,4,4,6,4,9/2,4,5,4,5,5,6,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,5/2,3,5,3,7/2,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,0,0,0,0,0,0,4,3,3,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,9/2,4,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,5/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,1,1,1,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,13/2,6,8,5,5,4,5,3,4,4,6,4,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,7/2,4,6,4,5,5,9,5,5,4,4,3,4,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,6,6,13,7,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,7,5,7,7,15,8,17/2,6,10,6,15/2,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,19/2,9,16,9,11,9,15,10,14,14,25,13,27/2,9,13,8,10,8,14,8,8,6,10,6,17/2,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,13/2,4,6,4,9/2,4,7,4,9/2,4,6,4,11/2,5,9,5,9/2,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,13/2,4,6,4,5,4,7,4,9/2,4,5,3,4,4,7,4,5,4,6,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,3,5,3,7/2,3,4,3,9/2,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,1,3,2,1,1,1,1,1/2,1,1,1,1/2,1,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,3,7,4,7/2,3,4,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,4,3,4,3,4,4,6,4,9/2,4,7,5,7,6,11 -18,10,10,7,10,6,6,11/2,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,5,7,4,4,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,1/2,0,0,0,0,0,0,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,2,1,2,2,2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,13/2,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,15,8,8,6,9,6,7,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,10,9,16,9,11,9,14,10,14,14,24,13,13,9,13,8,9,8,13,15/2,8,6,9,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,7/2,5,7/2,5,9/2,8,9/2,5,4,6,4,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1/2,0,1/2,0,1,3,2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11 -34,18,18,12,17,10,13,11,20,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,8,9,7,11,7,10,10,11,6,7,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,5,9,6,7,7,13,7,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,5,3,4,3,3,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,25/2,7,8,6,8,5,7,7,12,7,8,6,9,7,10,10,11,6,6,4,6,4,6,5,9,5,6,5,8,5,6,6,19/2,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3/2,1,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,8,4,4,3,5,3,3,2,3,2,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,15,8,9,6,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,15,8,9,6,9,6,8,7,13,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,7,8,6,10,7,11,11,23,12,12,8,11,6,7,6,11,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,11,7,8,7,12,8,12,13,29,15,16,12,18,11,13,11,20,11,12,10,17,11,16,15,57/2,15,16,12,18,12,16,15,29,16,18,15,26,18,27,27,47,24,24,16,23,13,16,13,23,13,14,11,18,11,15,14,53/2,14,14,10,14,9,11,10,18,10,11,9,15,10,13,13,22,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,9,7,10,6,8,8,15,8,9,7,12,9,13,13,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,7,10,10,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,6,10,7,9,9,19,10,11,8,11,7,8,7,12,7,7,5,8,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,-1,-7/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,3,2,2,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,4,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5/2,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,4,4,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,21/2,6,6,4,6,4,6,6,11,7,8,7,11,8,11,11,21 -18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,1,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,15,8,9,7,10,6,7,6,11,6,7,6,9,6,9,17/2,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,15/2,9,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,9/2,5,9/2,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,2,2,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,3/2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,13/2,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,11/2,5,6,4,7/2,3,4,2,5/2,2,4,3,3,3,3,2,7/2,4,6,4,7/2,3,5,3,3,3,5,3,7/2,3,4,3,9/2,4,10,6,11/2,4,6,4,7/2,3,4,3,7/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,12,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,5,5,7,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,6,3,3,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,3,3,3,2,7/2,4,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,7/2,3,3,2,3,3,6,4,4,3,5,4,9/2,4,7,4,4,4,7,5,7,7,9,5,5,4,6,4,4,3,6,3,3,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,4,9/2,4,7,4,9/2,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,9/2,4,6,4,6,6,14,8,15/2,5,7,4,5,5,7,4,5,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,5,4,8,6,8,8,15,8,9,7,10,6,7,6,11,6,7,6,10,7,19/2,9,16,9,9,7,10,7,9,9,16,9,11,9,15,10,29/2,15,26,14,14,10,14,8,19/2,8,13,8,17/2,7,11,7,9,9,16,8,8,6,8,5,6,6,11,6,13/2,6,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,9/2,4,8,5,11/2,4,6,4,11/2,5,8,5,5,4,7,5,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,3,3,7,4,4,3,4,3,7/2,4,5,3,7/2,4,6,4,6,6,10,6,11/2,4,7,4,9/2,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,3,2,2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,3/2,1,2,2,3/2,2,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,3,2,2,2,2,2,3/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,1,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,2,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,3,2,3,2,5/2,3,6,3,3,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,7,4,9/2,4,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,12 -13,7,7,5,7,9/2,6,5,8,9/2,5,4,6,4,5,5,8,4,4,3,5,3,4,7/2,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,3,4,7/2,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,7/2,5,3,3,5/2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,7/2,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,7/2,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,7/2,4,7/2,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,3,2,3,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,7/2,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,5/2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,5,5,9 -20,10,10,7,21/2,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,15/2,5,6,5,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,4,4,11/2,4,4,3,6,4,4,3,9/2,4,5,5,12,6,6,4,11/2,3,3,3,4,3,4,4,11/2,4,5,5,8,4,4,3,5,3,4,4,4,3,3,3,9/2,3,4,4,6,3,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,9/2,3,4,4,6,4,5,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,9/2,4,5,5,4,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,3,2,3,3,4,3,4,4,3,2,2,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,5/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,1,1,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,3,4,4,5,3,4,3,5,4,5,5,6,4,4,4,13/2,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,11/2,4,5,4,8,5,5,4,9/2,3,4,4,8,5,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,5,4,15/2,5,7,7,10,6,6,4,13/2,4,6,5,8,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,5,10,6,6,4,13/2,4,5,5,9,5,6,5,17/2,6,9,9,17,9,10,7,21/2,6,8,7,12,7,8,7,23/2,8,10,10,18,10,10,8,13,8,10,10,18,10,12,10,33/2,12,17,17,30,16,16,11,16,9,11,9,16,9,9,7,12,8,11,10,18,9,9,6,19/2,6,8,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,15/2,5,6,6,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,13/2,4,6,6,10,5,5,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,8,5,5,4,6,4,5,5,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,11/2,4,4,3,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,2,5/2,2,3,3,1,1,1,1,3/2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,1,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,3,2,2,1,1/2,0,0,0,2,2,2,1,1/2,0,0,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,1,0,0,0,0,1/2,0,0,0,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,7,4,4,3,9/2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,4,11/2,4,4,4,5,3,4,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,6,4,13/2,5,7,7,13 -12,6,6,5,7,4,5,9/2,7,4,4,4,6,4,4,9/2,8,4,4,3,5,3,4,7/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,3,3,4,3,3,2,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,6,7/2,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,5,8,5,5,9/2,8,5,6,6,11,6,6,5,8,5,6,6,11,13/2,8,6,10,15/2,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,7/2,4,3,4,3,4,4,6,7/2,4,3,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,9 -16,8,8,6,10,6,7,6,10,6,11/2,4,7,4,11/2,6,10,6,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,7/2,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,9/2,3,4,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,11,6,6,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,9/2,4,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,7/2,2,4,2,5/2,2,5,3,3,3,3,2,7/2,4,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,1,6,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3,4,3,2,2,2,2,2,3/2,1,2,1,1,1,0,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,5,3,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,1,2,5/2,2,3,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,2,5/2,2,4,2,5/2,2,2,2,7/2,4,4,3,3,3,4,3,4,4,5,3,7/2,4,6,4,6,6,12,7,7,5,7,4,9/2,4,6,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,3,6,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,11/2,5,9,5,11/2,4,6,4,4,4,7,4,5,4,6,4,13/2,7,15,8,15/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,7,6,10,6,17/2,8,15,8,17/2,6,11,7,17/2,8,14,8,10,8,14,10,14,14,24,12,12,9,13,8,9,7,14,8,8,6,9,6,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,14,8,15/2,5,7,4,5,5,8,4,9/2,4,5,3,4,4,8,4,9/2,4,5,4,5,5,7,4,5,4,8,6,8,8,12,6,13/2,5,7,4,5,4,7,4,9/2,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,4,3,6,4,5,5,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,9/2,4,7,5,7,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,1,1,1,3,2,2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,4,2,5/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,1,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,2,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,-1,0,0,1,0,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,7,4,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12 -15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,4,2,2,2,4,3,3,5/2,3,5/2,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,7/2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,9,5,5,4,5,7/2,4,4,6,4,5,4,6,4,6,13/2,14,8,8,5,7,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,6,4,5,9/2,7,5,7,7,12,7,7,11/2,8,5,6,6,10,6,7,6,9,6,8,8,14,15/2,8,6,10,6,8,15/2,13,8,9,8,13,9,13,13,22,11,11,8,12,7,9,7,12,7,8,6,9,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,9/2,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,8,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,7,5,7,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,3/2,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 -27,14,14,10,14,8,10,9,31/2,8,8,6,10,7,9,8,16,8,8,6,9,6,7,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,6,8,4,4,3,4,3,4,4,11/2,4,4,4,6,5,7,7,14,7,7,5,6,4,4,4,11/2,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,3,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,15/2,4,5,5,8,6,8,7,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,9,5,4,3,4,3,3,3,9/2,2,2,2,3,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,6,4,6,6,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,2,2,5/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5/2,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,11/2,4,4,3,4,3,5,5,6,4,5,4,6,4,6,5,17/2,5,6,5,9,6,9,9,22,12,12,8,12,7,8,6,21/2,6,7,5,8,5,7,7,13,7,6,4,6,4,5,5,8,5,6,5,7,5,8,8,16,9,9,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,10,6,7,6,21/2,6,8,7,12,8,12,12,26,13,13,9,14,8,10,8,27/2,8,8,6,10,6,7,7,12,7,7,5,8,5,6,6,23/2,7,8,7,12,8,12,13,23,12,12,9,14,8,10,10,35/2,10,10,8,14,10,14,14,25,13,14,11,17,11,15,14,25,14,17,14,24,16,24,24,42,22,22,15,21,12,14,12,45/2,12,14,11,18,11,15,14,25,13,13,9,12,7,9,8,27/2,8,9,7,12,8,11,11,23,12,12,8,12,7,9,8,25/2,6,6,5,7,5,6,6,14,8,9,7,10,6,8,7,13,8,9,7,12,9,13,13,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,9,7,10,6,7,6,21/2,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,17/2,5,6,4,6,4,6,6,15,8,9,7,10,6,8,7,25/2,8,9,7,12,8,11,11,16,9,9,7,10,6,7,6,21/2,6,6,5,7,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,6,3,3,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,0,0,0,0,0,0,1/2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,8,6,9,6,7,6,23/2,7,8,6,10,7,11,11,20 -15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,10,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,9/2,5,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,13/2,8,8,14,8,10,8,14,19/2,14,14,24,13,13,9,12,7,8,7,13,7,8,13/2,10,7,9,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,13/2,13,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,9/2,8,5,5,4,7,5,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,7/2,6,7/2,4,3,4,3,4,4,8,5,5,4,6,4,5,9/2,8,5,6,9/2,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,4,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,3/2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,7/2,4,4,7,4,5,4,6,4,6,6,11 -18,10,10,7,10,6,7,6,10,6,6,5,7,5,13/2,6,11,6,11/2,4,6,4,4,4,6,4,9/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,9,5,9/2,3,4,3,3,3,3,2,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,7/2,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,4,9/2,4,5,3,7/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,5,3,4,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,5,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,3,2,3,3,4,3,7/2,4,6,4,9/2,4,6,5,7,7,14,8,15/2,6,8,5,11/2,5,8,5,11/2,4,6,4,5,5,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,11,6,6,4,7,4,11/2,5,8,5,11/2,5,8,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,8,5,5,5,8,6,17/2,8,16,8,8,6,10,6,15/2,6,12,7,15/2,6,10,7,9,9,16,9,9,7,12,8,19/2,9,16,10,23/2,10,16,11,16,16,29,15,15,10,15,9,21/2,9,15,8,19/2,8,12,8,10,9,17,9,17/2,6,9,6,13/2,6,10,6,6,5,8,6,15/2,8,15,8,9,6,8,5,11/2,5,8,4,9/2,4,6,4,11/2,5,9,5,11/2,4,7,4,11/2,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,5,4,6,4,11/2,5,10,6,6,5,6,4,5,5,7,4,5,4,6,4,11/2,6,11,6,6,4,6,4,5,4,7,4,9/2,4,5,4,9/2,4,9,5,6,5,6,4,11/2,5,9,6,13/2,5,8,6,8,8,10,6,11/2,4,6,4,9/2,4,7,4,9/2,4,4,3,3,3,5,3,3,2,3,2,3,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,5,3,5/2,2,3,2,3/2,1,2,1,1/2,0,1,1,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,9/2,4,8,5,5,4,6,4,5,5,8,5,11/2,4,7,5,7,7,12 -15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,2,3,3,3,2,3,2,2,2,2,2,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,3,4,4,3,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,4,3,5,4,6,6,12,13/2,6,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,6,10,6,6,9/2,6,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,8,11/2,7,7,13,7,8,6,10,6,8,8,13,8,10,8,13,9,13,13,24,13,13,9,12,7,9,8,13,7,8,6,10,6,8,8,14,15/2,8,5,8,5,6,5,8,5,5,4,7,5,6,13/2,12,7,7,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,5,4,6,4,4,4,8,9/2,5,9/2,8,11/2,8,8,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,9/2,5,4,5,4,5,9/2,8,5,6,9/2,7,5,7,7,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,5/2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,5/2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,6,10 -25,13,13,9,27/2,8,10,8,14,8,9,7,10,7,9,8,15,8,9,6,19/2,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,5,4,6,6,9,5,4,3,9/2,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,4,3,4,3,5,4,5,4,8,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,3,3,17,9,8,6,17/2,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,5,3,3,2,7/2,3,4,4,8,5,5,4,5,3,4,4,8,5,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,6,4,4,3,7/2,2,3,3,4,2,2,2,7/2,2,3,3,5,3,3,3,5,3,4,4,4,3,4,4,7,5,8,8,5,3,3,2,2,2,2,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,5,3,3,2,2,2,2,2,5/2,2,2,2,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,4,3,9/2,3,4,4,8,5,6,5,8,6,8,9,21,11,12,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,8,23/2,7,8,7,12,7,7,6,17/2,6,8,8,16,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,12,22,12,12,8,25/2,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,33/2,10,14,13,22,13,15,13,45/2,16,23,23,42,22,22,15,43/2,12,15,13,22,12,14,10,33/2,10,14,13,23,12,13,9,13,8,10,8,14,8,9,7,11,8,11,11,21,11,12,8,12,7,8,6,10,6,7,5,8,5,7,7,12,7,7,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,12,8,12,7,8,7,12,7,8,6,19/2,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,8,8,16,8,8,6,8,5,6,6,10,6,7,6,17/2,6,8,7,13,7,8,6,9,6,7,7,14,8,9,7,12,8,11,11,14,8,8,6,9,5,6,5,10,6,6,4,13/2,4,4,4,7,4,5,4,11/2,4,4,3,5,3,4,3,7/2,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,3,2,1,1,1,1,1,1,1/2,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,6,3,3,2,3,2,2,1,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,-4,-1,-1,0,-1/2,0,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,4,5,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,17/2,6,8,9,17 -17,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,7/2,4,3,4,3,3,3,4,3,4,4,6,3,3,2,4,5/2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,5/2,3,2,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,5,7/2,5,9/2,6,4,4,3,4,5/2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,5,4,6,5,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,7/2,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,11/2,6,11/2,9,5,6,4,7,9/2,6,6,10,11/2,6,4,6,4,5,5,8,9/2,5,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,11/2,9,6,8,8,15,8,9,7,11,7,9,9,15,9,10,9,15,11,16,31/2,28,15,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,17/2,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,15/2,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,9/2,6,5,9,5,6,11/2,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,9/2,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,4,7,4,5,5,9,11/2,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-2,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,5/2,4,3,4,4,7,4,4,7/2,6,4,5,4,7,4,4,4,6,4,6,6,12 -24,12,12,9,14,8,19/2,8,14,8,17/2,6,10,7,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,7,5,8,5,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,11/2,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,17,9,9,6,8,5,6,5,10,6,11/2,4,7,4,11/2,5,9,5,11/2,4,6,4,5,4,8,4,9/2,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,4,4,7,4,5,4,6,4,6,6,9,5,11/2,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,4,7,5,15/2,7,4,2,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,3,2,3,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,7,5,6,5,7,6,17/2,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,13/2,5,7,4,11/2,5,10,6,7,6,9,6,19/2,10,19,10,10,7,12,7,8,7,11,6,7,5,8,6,8,8,15,8,17/2,6,9,6,7,7,13,7,8,7,12,8,25/2,12,25,13,13,9,14,8,9,8,13,7,8,6,10,6,17/2,8,15,8,8,6,9,6,15/2,7,11,6,15/2,7,12,8,23/2,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,12,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,45/2,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,27/2,13,23,12,25/2,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,21/2,8,11,6,7,6,10,6,13/2,5,8,5,7,7,12,7,15/2,6,10,6,15/2,7,12,7,17/2,8,12,8,25/2,12,24,12,12,9,13,8,17/2,8,13,7,8,6,9,6,8,8,13,7,15/2,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,13/2,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,15/2,7,13,8,9,7,11,8,21/2,11,14,8,17/2,6,8,5,5,5,9,5,5,4,6,4,4,4,8,4,9/2,4,5,3,7/2,3,5,3,7/2,3,4,3,3,3,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,7/2,4,7,4,7/2,2,4,2,3/2,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,5,3,5/2,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,0,0,-1,0,1/2,1,0,0,0,1,1,1,2,2,3,2,3/2,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,9/2,5,10,6,11/2,4,5,4,9/2,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,13/2,6,10,6,13/2,5,8,6,9,9,17 -24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,8,14,8,8,6,8,5,6,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,16,9,9,6,9,5,6,5,9,5,6,4,7,9/2,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,7/2,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,11/2,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,7,5,7,7,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,9/2,5,5,7,11/2,8,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,11/2,9,6,8,8,15,8,8,6,9,6,7,7,13,15/2,9,15/2,13,9,13,25/2,24,13,13,9,14,8,9,8,14,15/2,8,6,10,13/2,9,8,15,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,23/2,12,9,15,10,13,12,22,13,15,13,22,15,22,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,13,25/2,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,10,15/2,11,6,7,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,9,8,13,9,13,25/2,24,12,12,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,7,13,15/2,8,7,11,15/2,10,11,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,9/2,8,4,4,7/2,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,5/2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,5,3,2,2,3,2,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,1/2,0,0,0,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,3,2,3,3,5,3,4,5/2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17 -46,24,24,16,24,14,17,14,24,13,14,11,19,12,17,16,30,16,17,12,18,11,14,13,23,13,14,11,17,11,16,16,30,16,16,11,16,9,11,9,15,8,9,7,10,7,9,8,15,8,8,6,9,6,7,7,13,7,8,7,11,8,11,11,21,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,31,16,16,11,17,10,12,10,17,10,11,9,14,9,12,12,23,12,12,9,14,9,11,10,17,10,11,9,15,10,14,13,25,13,13,9,14,8,9,7,12,7,8,6,10,6,8,7,13,7,7,5,7,4,5,5,9,5,6,5,9,6,9,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,9,13,8,10,9,15,8,9,7,10,6,8,8,14,8,8,7,11,7,10,9,16,9,11,9,15,10,14,14,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,8,8,14,8,9,7,10,6,8,8,15,9,10,9,16,11,16,16,42,22,22,15,23,13,16,13,22,12,13,9,14,9,12,11,21,11,12,9,13,8,11,10,19,11,13,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,11,9,14,9,13,13,24,13,14,11,17,11,15,14,26,15,18,15,26,17,25,24,95/2,24,24,17,26,15,17,15,26,14,15,11,18,12,16,16,30,16,17,12,19,12,16,15,28,16,19,16,27,18,26,26,52,27,27,19,28,16,20,18,33,18,20,16,26,17,23,23,44,23,25,19,30,19,25,24,45,25,30,25,44,30,44,44,82,42,42,28,42,24,28,23,41,22,23,18,29,18,25,24,45,23,24,16,24,14,17,15,28,15,17,14,23,15,21,21,40,21,21,14,21,12,14,12,21,11,12,10,16,10,14,14,26,14,14,11,17,11,14,12,22,13,16,14,24,16,24,24,95/2,24,24,17,26,15,17,14,25,14,15,11,18,11,15,14,26,13,13,9,14,9,11,10,18,11,13,11,18,12,18,18,35,18,19,13,19,11,13,12,21,11,12,9,14,9,13,12,22,12,13,10,16,10,13,12,23,13,15,13,22,15,21,21,29,15,16,11,16,9,11,9,16,9,10,8,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,12,23,12,12,8,12,7,9,8,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,3,2,1,1,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,2,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,9,9,16,11,17,17,32 -23,12,13,9,12,7,9,7,12,7,8,6,10,7,9,9,16,9,9,7,9,6,8,7,12,7,7,6,9,6,9,8,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,9/2,8,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,9/2,6,4,4,7/2,5,3,3,3,3,5/2,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,16,9,9,6,9,11/2,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,5,7,5,6,11/2,9,11/2,6,5,8,11/2,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,8,9/2,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,9,22,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,11/2,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,9,11,10,17,9,10,8,14,9,12,12,22,12,13,10,16,10,13,25/2,23,13,16,13,23,16,23,23,42,22,22,15,22,12,14,12,21,23/2,12,19/2,15,10,13,25/2,23,12,12,9,13,8,9,8,15,8,9,7,12,8,11,11,21,11,11,8,11,13/2,8,7,11,6,6,11/2,8,6,8,8,14,8,8,6,9,6,8,13/2,11,7,8,7,13,9,12,12,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,13/2,11,6,6,5,8,5,7,7,12,7,7,11/2,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,6,5,6,4,6,6,12,6,6,4,7,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,7,4,5,9/2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,3/2,1,1,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,2,3,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,5,8,6,9,9,17 -23,12,13,9,12,7,17/2,7,12,7,15/2,6,11,7,9,9,16,9,9,7,9,6,8,7,11,6,7,5,9,6,9,8,15,8,17/2,6,8,5,11/2,5,7,4,5,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,5,3,3,3,3,2,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,4,2,2,2,3,2,3/2,1,1,1,3/2,2,2,2,2,2,17,9,9,6,9,6,13/2,6,9,6,13/2,5,7,5,13/2,6,12,6,13/2,5,7,5,6,6,9,6,13/2,5,9,6,7,7,13,7,15/2,5,8,5,5,4,7,4,9/2,4,6,4,9/2,4,6,4,7/2,3,3,2,3,3,5,3,4,3,4,3,5,5,11,6,11/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,8,5,11/2,4,6,4,5,5,8,5,5,5,8,6,17/2,9,22,12,12,8,13,8,17/2,7,12,7,7,5,7,5,6,6,12,6,6,5,8,5,13/2,6,10,6,13/2,6,9,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,8,6,9,6,15/2,7,13,8,19/2,8,14,9,13,13,24,13,13,9,13,8,19/2,8,14,8,17/2,6,10,6,17/2,8,15,8,9,7,10,6,17/2,8,14,8,19/2,8,14,10,14,14,27,14,14,10,14,9,11,10,16,9,21/2,8,14,9,25/2,12,22,12,25/2,10,16,10,27/2,13,23,13,16,13,23,16,23,23,42,22,22,15,22,12,29/2,12,22,12,25/2,10,16,10,27/2,13,24,12,25/2,9,13,8,9,8,15,8,9,7,12,8,23/2,11,21,11,21/2,8,10,6,15/2,7,11,6,13/2,6,8,6,15/2,8,15,8,8,6,10,6,15/2,6,11,7,8,7,13,9,25/2,12,24,12,25/2,9,13,8,19/2,8,13,7,8,6,10,6,17/2,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,19/2,7,10,6,8,7,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,6,13/2,6,9,5,6,5,6,4,6,6,12,6,6,4,7,4,11/2,5,7,4,5,4,7,5,7,7,12,6,13/2,4,7,4,11/2,5,7,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,5,3,3,2,2,2,3/2,2,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-3,-1,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,2,3,2,5/2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,5,3,4,4,7,5,6,5,8,6,19/2,9,17 -16,17/2,9,6,9,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,5,5,8,9/2,5,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,4,3,4,4,8,4,4,7/2,5,3,4,3,4,5/2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,12,7,7,5,6,4,5,4,7,4,5,4,5,7/2,4,4,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,15,8,9,6,9,11/2,6,5,8,5,5,4,5,4,5,5,8,4,4,7/2,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,9,6,7,6,10,13/2,9,9,17,9,9,6,9,6,7,6,10,6,6,5,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,13/2,9,8,15,8,9,7,11,7,10,9,16,9,11,9,16,11,16,16,29,15,15,10,15,9,10,9,15,8,8,13/2,11,7,10,9,16,9,9,6,9,11/2,6,6,10,6,6,5,8,6,8,8,14,15/2,7,5,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,6,4,7,9/2,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,8,4,4,4,6,4,6,5,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,7/2,5,7/2,5,5,9,5,5,7/2,5,3,4,4,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,7/2,4,4,6,5,7,13/2,12 -23,12,13,9,13,8,9,8,12,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,9/2,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,13/2,4,6,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,1,1,1,1,2,2,3/2,2,2,2,18,10,10,7,19/2,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,7,14,7,7,5,7,4,5,4,8,5,5,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,9/2,4,5,6,11,6,6,4,5,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,9,5,6,5,17/2,6,7,7,5,3,3,2,7/2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,3,3,4,3,4,3,9/2,3,4,4,9,5,5,4,9/2,3,3,3,5,3,2,2,5/2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,4,3,4,3,9/2,4,5,5,9,5,6,5,15/2,5,6,6,10,6,7,6,19/2,7,10,10,23,12,13,9,27/2,8,10,8,12,7,7,5,8,5,7,7,12,7,7,5,15/2,5,6,6,9,5,6,5,17/2,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,12,7,7,6,9,6,8,7,13,8,9,8,14,9,13,13,26,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,21/2,7,9,8,14,8,10,8,29/2,10,15,15,27,14,14,10,29/2,9,12,10,16,9,10,8,14,9,12,12,22,12,13,10,16,10,14,13,23,13,16,14,47/2,16,24,24,43,22,22,15,45/2,13,15,13,22,12,13,10,31/2,10,13,13,24,12,12,9,13,8,10,9,14,8,10,8,25/2,8,11,11,21,11,11,8,21/2,6,8,7,12,7,7,6,17/2,6,8,8,16,9,9,7,11,7,8,7,12,7,9,8,25/2,9,13,13,24,13,13,9,14,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,21/2,8,11,11,19,10,10,7,19/2,6,8,7,11,6,7,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,11,8,12,12,16,9,9,6,19/2,6,7,6,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,5,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,3,2,2,2,5/2,2,2,2,5,3,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-3,-1,-1,0,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,3,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,3,6,4,4,3,5,3,4,4,8,5,6,6,19/2,7,10,9,17 -13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,11/2,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,3,3,4,3,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,9/2,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,15/2,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,4,6,4,6,5,7,4,4,7/2,5,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,11/2,8,5,6,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,7,4,4,7/2,6,4,5,5,9,5,6,9/2,7,4,5,5,8,5,6,5,8,11/2,8,8,13,7,8,11/2,8,5,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,12,6,6,4,6,4,5,9/2,7,4,4,7/2,5,4,5,9/2,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,5,4,6,7/2,4,3,5,3,4,9/2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,11/2,10 -16,9,9,7,9,6,13/2,6,8,5,11/2,5,7,5,7,7,12,6,13/2,4,6,4,4,4,7,4,5,4,6,4,11/2,5,11,6,6,4,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,9/2,4,9,5,11/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,1,1/2,0,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,12,6,13/2,4,7,4,5,4,7,4,9/2,4,5,4,9/2,4,10,6,11/2,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,11/2,4,6,4,7/2,3,6,4,4,3,4,3,4,4,4,2,5/2,2,2,2,5/2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,6,4,9/2,4,6,4,11/2,5,4,2,5/2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,7,4,7/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,8,5,5,4,6,4,5,5,8,5,11/2,5,7,5,15/2,8,17,9,19/2,7,10,6,7,6,8,5,11/2,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,13/2,6,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,10,7,9,9,18,10,19/2,7,10,6,8,7,11,6,6,5,7,5,13/2,6,11,6,7,5,8,5,13/2,6,10,6,15/2,6,10,7,21/2,10,20,10,21/2,7,11,7,17/2,7,12,7,8,6,10,6,17/2,8,16,9,10,8,12,8,21/2,10,16,9,11,9,17,12,33/2,16,30,16,31/2,11,15,9,10,9,15,8,17/2,6,11,7,9,9,16,9,9,7,9,6,15/2,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,6,8,5,5,4,7,5,6,6,11,6,13/2,5,8,5,6,6,10,6,7,6,9,6,19/2,9,15,8,17/2,6,9,5,6,5,10,5,5,4,6,4,11/2,5,10,5,5,4,5,4,5,5,7,4,11/2,5,8,6,15/2,8,15,8,7,5,8,5,6,5,9,5,5,4,6,4,11/2,5,9,5,5,4,6,4,11/2,5,8,5,11/2,5,8,6,8,8,11,6,13/2,5,7,5,6,5,7,4,5,4,6,4,11/2,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,0,0,1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,11/2,6,4,5,3,4,7/2,6,7/2,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,6,13/2,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,9/2,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,11/2,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,11/2,7,6,10,5,5,4,6,4,6,5,10,11/2,6,9/2,7,9/2,6,5,9,5,6,5,9,6,9,9,17,9,9,6,10,6,7,6,10,6,7,5,8,11/2,8,7,14,8,8,13/2,10,7,9,8,14,8,10,8,15,10,14,14,25,13,13,9,13,8,9,8,13,7,7,11/2,9,6,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,9/2,8,4,4,7/2,5,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,7,7,10,6,6,9/2,6,4,5,4,6,4,4,4,6,4,5,5,8,9/2,5,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,11/2,10 -24,13,13,9,12,7,8,8,27/2,8,8,7,11,7,10,9,18,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,14,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,5,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,9,5,5,3,4,3,4,4,11/2,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,15/2,5,6,5,8,6,8,8,4,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,6,4,4,3,3,2,2,2,9/2,3,4,3,4,3,5,5,9,5,5,4,7,4,5,4,15/2,4,5,4,7,5,6,5,12,7,7,5,8,6,8,7,25/2,7,8,7,11,8,11,11,27,14,14,10,14,8,10,8,27/2,8,8,6,9,6,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,9,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,29,15,16,11,16,9,11,10,33/2,9,9,7,10,7,9,9,17,9,10,8,12,7,9,8,31/2,9,11,9,16,11,16,16,30,16,16,11,16,10,12,10,37/2,10,11,8,13,9,12,12,25,13,14,11,18,11,14,14,51/2,14,17,14,24,16,24,24,44,22,22,15,22,13,15,13,22,12,13,10,15,9,12,12,25,13,14,10,14,8,10,9,15,9,10,8,14,9,13,13,20,11,11,8,12,7,8,8,27/2,8,8,6,10,6,8,8,18,10,10,7,11,7,9,8,29/2,8,10,8,14,10,14,14,22,11,11,8,11,7,8,8,14,8,8,6,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,8,13,7,8,6,8,5,7,6,23/2,7,8,7,11,8,12,12,18,10,10,7,10,6,8,7,23/2,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,15/2,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,15/2,4,4,3,3,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,7,4,5,4,5,3,3,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,7,4,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,9/2,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,13/2,4,5,5,9,6,9,9,18 -13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,7,4,5,4,6,9/2,6,6,15,8,8,6,8,5,6,5,8,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,15/2,8,6,10,6,8,8,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,12,7,7,11/2,8,5,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,5/2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,10 -13,7,15/2,5,7,4,5,4,8,5,5,4,6,4,11/2,6,9,5,6,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,9,5,4,3,5,3,3,3,4,2,5/2,2,4,3,7/2,3,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,11,6,6,4,6,4,9/2,4,7,4,4,3,4,3,7/2,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,3,5,3,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,3,2,4,3,7/2,4,6,4,4,3,3,2,3,3,4,3,7/2,3,5,4,9/2,4,6,4,7/2,2,3,2,5/2,2,4,3,3,2,2,2,7/2,3,5,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3,3,2,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,3,2,7/2,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,8,17/2,6,8,5,11/2,5,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,5,3,7/2,3,5,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,6,6,9,5,11/2,4,6,4,5,5,8,5,13/2,6,9,6,17/2,8,17,9,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,10,6,6,5,7,4,11/2,6,10,6,7,6,10,7,19/2,9,17,9,19/2,7,9,6,15/2,6,11,6,7,5,8,6,15/2,7,15,8,17/2,6,10,6,17/2,8,15,9,10,9,14,10,14,14,25,13,13,9,13,8,9,7,13,7,8,6,9,6,8,7,14,8,8,6,8,5,13/2,6,9,5,6,5,8,6,8,8,12,6,13/2,5,7,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,11/2,5,9,6,13/2,5,9,6,17/2,8,13,7,7,5,7,4,11/2,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,5,4,6,5,7,7,13,7,15/2,6,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,15/2,8,11,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,5,5,8,5,5,3,5,3,4,4,5,3,4,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,5,3,7/2,3,4,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,5,3,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,1,1,1,2,2,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,0,0,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,6,3,3,2,2,2,5/2,2,3,2,2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,4,3,3,3,5,3,4,4,6,4,5,5,10 -10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,9/2,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,3,5/2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,8,5,5,7/2,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,7/2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,3,5,4,5,5,13,7,7,5,6,4,4,4,6,7/2,4,3,4,3,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,7/2,4,3,5,7/2,5,5,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,9/2,8,5,6,5,8,6,8,7,13,7,8,11/2,7,5,6,5,9,5,6,4,6,9/2,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,9/2,5,4,7,5,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10,11/2,6,4,6,7/2,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,4,2,2,1,2,2,2,1,2,2,2,2,2,3/2,2,1,1,1,0,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,9/2,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,5/2,2,3,3,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,12,6,6,5,7,4,5,4,9,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,11/2,4,6,6,12,6,6,4,11/2,4,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,7/2,3,4,3,3,2,3,2,7/2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,4,3,3,2,2,1,1,1,4,3,3,2,7/2,3,4,3,3,2,2,2,4,3,4,3,5,3,3,2,7/2,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,8,4,4,3,9/2,4,5,5,9,5,5,4,13/2,4,5,5,8,5,6,5,15/2,6,8,8,21,11,10,7,21/2,6,7,6,8,5,6,4,13/2,4,6,6,8,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,7,6,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,22,12,12,8,25/2,7,8,7,12,7,7,6,9,6,7,7,12,7,7,6,9,6,8,7,14,8,9,8,13,9,12,12,21,11,11,8,12,7,9,7,14,8,8,6,10,7,9,9,18,10,10,8,13,8,11,10,18,11,13,11,18,12,18,18,30,16,16,11,15,9,10,9,17,9,10,7,11,7,10,9,16,9,9,7,11,7,9,8,13,7,8,7,11,7,10,10,15,8,8,6,17/2,5,6,5,10,6,6,5,7,5,6,6,14,8,8,6,17/2,5,6,6,11,6,7,6,21/2,7,10,10,15,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,6,5,8,6,9,9,16,8,8,6,17/2,5,6,6,8,5,6,5,15/2,6,8,7,11,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,7,9,5,6,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,2,2,2,5/2,2,2,2,8,4,4,3,9/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,5,3,3,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,0,1,1,1,1/2,1,1,1,2,2,2,1,1/2,1,2,2,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,5/2,2,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,2,3,2,3,3,7,4,4,3,7/2,3,4,3,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,7,4,3,2,3,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,11 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,5/2,3,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,8,4,4,7/2,5,3,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,3,2,3,2,3,2,4,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,2,2,5/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,3,2,4,3,4,3,6,4,4,3,4,3,4,7/2,6,4,4,7/2,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,5,9/2,7,5,7,7,14,8,8,11/2,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,19,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,11/2,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,7/2,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,3,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7 -12,7,7,5,6,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,5,11/2,4,5,3,7/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,5,3,3,3,6,4,7/2,3,4,3,4,4,6,3,3,3,5,3,4,4,6,3,3,3,4,3,7/2,4,8,4,9/2,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,11,6,13/2,5,7,4,4,4,8,4,4,3,4,3,7/2,4,6,4,7/2,3,3,2,3,3,5,3,7/2,3,6,4,11/2,6,11,6,5,4,5,3,4,4,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,7/2,3,5,3,7/2,2,3,3,4,4,7,4,4,3,5,3,7/2,4,7,4,5,4,6,4,11/2,5,7,4,4,3,4,2,5/2,2,3,2,3,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,5,3,4,4,6,4,13/2,7,5,3,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,7,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,3,3,4,4,8,4,9/2,3,4,3,4,4,7,4,4,3,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,6,5,7,5,15/2,8,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,13,7,15/2,6,8,5,6,5,8,5,11/2,5,7,5,13/2,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,13/2,6,9,6,15/2,7,11,6,13/2,5,8,5,13/2,6,12,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,17/2,7,11,7,9,8,14,8,21/2,9,15,10,31/2,16,26,14,27/2,9,13,8,10,8,14,8,9,7,10,6,17/2,8,14,8,8,6,9,6,7,6,11,6,15/2,6,9,6,17/2,8,13,7,15/2,6,8,5,11/2,5,9,5,6,5,7,5,6,6,11,6,13/2,5,6,4,6,6,10,6,7,6,9,6,17/2,8,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,6,4,7,4,11/2,5,8,5,5,5,7,5,7,7,14,8,15/2,5,7,5,6,5,8,4,9/2,4,6,4,11/2,5,9,5,6,4,6,4,9/2,4,8,5,6,5,8,6,17/2,9,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,11/2,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,5,3,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,3/2,2,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,11/2,6,10 -12,6,6,9/2,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,10,6,6,9/2,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,10,11/2,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,13/2,6,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,10,6,8,15/2,13,8,10,8,14,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,7,13,7,7,11/2,8,5,7,6,11,6,7,6,9,6,8,8,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,9/2,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,8,6,9,9,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,3,5/2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,4,5/2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9 -22,12,12,8,11,7,9,8,14,8,8,6,9,6,8,8,15,8,9,6,9,6,7,6,9,5,6,5,7,5,6,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,19/2,6,6,4,6,4,5,5,8,5,5,5,8,5,7,6,14,7,7,5,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,19,10,9,6,9,6,7,6,10,6,6,4,6,4,6,6,19/2,6,6,5,7,5,7,7,12,7,9,7,12,8,11,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,7,6,11,8,12,12,11,6,7,5,8,5,5,5,8,5,5,4,6,4,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,11/2,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,14,10,14,14,31,16,16,11,17,10,11,9,16,8,8,6,9,6,8,7,25/2,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,41/2,11,11,8,12,8,10,9,16,10,12,10,17,12,17,17,33,17,17,12,18,11,13,11,20,11,12,9,15,9,12,12,22,12,13,9,14,9,12,11,21,12,14,12,20,13,18,18,34,18,18,13,19,11,14,12,20,11,12,9,15,10,14,14,26,14,15,12,20,13,17,16,30,17,19,16,28,19,29,29,49,25,26,18,26,15,17,14,24,13,14,11,18,11,14,13,25,13,13,9,14,9,11,11,20,11,12,10,17,11,16,16,24,12,12,8,11,7,8,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,10,9,16,9,10,8,14,10,15,15,25,13,14,10,14,8,10,9,15,8,9,7,10,7,9,9,33/2,9,10,8,12,7,9,9,16,9,10,8,13,9,13,13,25,13,14,10,14,8,10,9,16,9,9,7,12,8,10,9,16,9,10,7,11,8,11,10,19,11,12,10,17,12,17,17,25,13,13,9,14,8,9,8,14,8,8,7,11,8,11,11,41/2,10,10,7,11,7,9,8,15,8,9,7,11,7,10,10,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,15/2,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,9/2,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,2,2,2,2,1,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,2,2,3,3,4,2,2,2,2,2,3,3,9,5,5,4,6,4,5,4,6,4,4,3,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17 -11,6,6,9/2,6,4,5,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,10,5,5,4,5,7/2,4,7/2,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,13/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,16,17/2,8,6,9,11/2,6,5,9,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,13/2,10,7,9,9,16,9,10,9,15,10,15,15,26,27/2,14,10,14,8,9,8,13,7,8,6,10,6,8,7,14,15/2,8,11/2,8,5,6,6,11,6,7,6,9,6,9,9,13,7,6,9/2,6,4,5,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,7,6,9,13/2,9,9,14,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,5/2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,9 -11,6,6,5,6,4,5,4,7,4,9/2,4,6,4,5,5,8,5,11/2,4,6,4,5,4,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,5,3,4,4,8,4,9/2,4,5,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,1/2,1,10,5,5,4,6,4,9/2,4,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,9/2,4,6,4,6,6,10,6,11/2,4,5,3,3,3,4,2,5/2,2,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,8,4,9/2,4,5,3,7/2,4,6,4,4,3,4,3,7/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,4,5,5,7,4,5,4,5,3,7/2,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,13/2,7,7,4,9/2,4,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,5/2,2,2,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,7/2,4,5,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,4,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,9/2,4,7,4,5,4,5,4,5,5,8,5,11/2,5,8,6,15/2,8,17,9,17/2,6,9,6,13/2,6,9,5,11/2,4,5,4,9/2,4,7,4,7/2,3,4,3,3,3,6,4,9/2,4,5,4,5,6,13,7,15/2,6,8,5,6,5,7,4,5,4,8,5,13/2,6,12,6,13/2,5,7,5,6,5,9,6,13/2,6,9,6,9,9,17,9,19/2,6,9,6,15/2,6,11,6,13/2,5,8,5,13/2,6,12,7,15/2,6,8,5,7,6,11,7,8,7,10,7,9,9,19,10,10,7,11,7,8,7,12,7,15/2,6,8,6,8,8,15,8,9,7,10,7,9,9,16,9,21/2,9,16,11,31/2,16,27,14,14,10,14,8,9,8,14,8,17/2,6,10,6,8,7,15,8,17/2,6,8,5,7,7,11,6,15/2,6,10,7,9,9,13,7,13/2,5,6,4,5,4,6,4,9/2,4,5,4,11/2,6,10,6,6,4,6,4,11/2,5,9,5,11/2,5,8,6,17/2,8,14,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,9,5,6,4,7,4,11/2,5,8,5,11/2,4,8,5,7,7,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,11/2,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,19/2,10,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,6,4,5,5,9,5,11/2,4,6,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,7,4,7/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,2,1,-1,0,-1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,5/2,2,2,2,5/2,2,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,3,7/2,4,6,4,9/2,4,5,4,11/2,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,4,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,5/2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,6,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,7/2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,6,4,5,4,5,3,4,3,6,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,5,7,7,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,6,9/2,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,23/2,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,9/2,6,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,11/2,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,7/2,5,4,7,9/2,5,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,7/2,5,5,6,4,4,3,4,3,3,5/2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,5/2,3,3,4,3,4,3,4,3,4,4,7 -12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,11/2,4,4,4,7,4,4,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,11,6,6,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,13/2,5,7,7,10,6,6,4,5,3,4,4,4,3,3,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,7,5,7,6,7,4,5,4,11/2,4,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,7,8,9,5,5,4,9/2,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,2,2,2,2,4,3,3,3,8,4,4,3,9/2,3,4,3,4,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,7/2,2,3,3,3,2,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,13/2,4,6,5,9,5,6,6,19/2,6,9,9,18,9,9,7,10,6,6,5,10,6,6,4,13/2,4,6,5,8,4,4,3,9/2,3,4,4,7,4,5,4,13/2,5,7,7,15,8,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,6,6,9,6,7,6,9,6,9,10,19,10,10,7,10,6,8,7,13,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,21/2,8,11,11,20,10,10,7,11,7,8,7,13,7,8,6,21/2,7,9,8,18,10,10,8,23/2,8,10,9,16,10,12,10,17,12,18,18,30,16,16,10,29/2,8,10,8,15,9,10,8,23/2,8,10,9,17,9,9,7,11,7,9,8,12,7,8,7,23/2,8,10,10,14,7,7,5,15/2,5,6,5,7,4,4,4,6,4,6,6,10,6,6,4,13/2,4,6,6,9,5,6,5,17/2,6,9,10,16,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,10,6,6,5,15/2,5,6,6,9,6,7,6,9,6,8,8,16,8,8,6,17/2,5,6,5,9,5,6,5,7,5,6,6,10,6,7,5,8,5,7,6,11,7,8,7,23/2,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,15/2,5,6,5,10,6,6,5,15/2,6,8,7,9,5,6,4,11/2,4,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,7/2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,6,4,4,3,3,2,3,3,2,1,1,1,3/2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,4,3,3,2,5/2,2,2,3,4,3,3,2,2,2,2,2,4,2,2,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,6,6,11 -7,4,5,7/2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,6,10,6,8,13/2,10,7,11,11,18,10,10,13/2,9,5,6,5,9,11/2,6,5,7,5,6,11/2,10,6,6,9/2,7,9/2,6,5,8,5,5,4,7,5,6,6,9,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,6,6,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,7/2,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,6,7/2,4,3,5,3,4,4,6,4,5,4,5,3,4,4,7,9/2,5,9/2,8,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,7/2,5,4,8,5,5,7/2,5,3,4,7/2,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,1,0,1,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,4,4,7 -9,5,6,4,5,3,4,4,6,4,9/2,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,2,1,1,1,8,4,4,3,5,3,4,3,5,3,7/2,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,5,7,4,9/2,3,4,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,3,5,3,5/2,2,4,3,3,3,5,3,4,4,5,4,6,6,7,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,2,2,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,3,5,3,7/2,3,3,2,2,2,3,2,5/2,2,3,2,3,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,5,4,5,4,5,4,8,5,11/2,4,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,7/2,3,5,3,4,4,6,4,6,6,11,6,13/2,5,8,5,11/2,5,7,4,5,4,6,4,11/2,5,10,5,5,4,6,4,5,5,7,4,11/2,4,7,5,15/2,8,14,8,15/2,5,7,5,6,5,10,5,5,4,6,4,11/2,5,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,9,9,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,13,8,19/2,8,13,9,27/2,14,23,12,25/2,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,12,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,8,5,5,4,6,4,5,5,8,5,5,4,8,6,15/2,8,12,7,7,5,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,11/2,4,6,4,5,5,7,4,5,4,8,5,6,6,12,6,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,6,4,11/2,5,9,6,13/2,6,10,7,9,9,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,9/2,4,6,4,11/2,6,6,4,4,3,4,3,3,3,3,2,3,2,3,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,2,2,2,2,2,7,4,7/2,2,3,2,3,3,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,6,4,4,3,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,-2,0,-1/2,0,0,1,3/2,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,3/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,2,4,3,4,3,5,3,3,3,4,3,3,3,6,4,7/2,3,5,3,4,4,5,3,7/2,3,5,4,5,5,10 -8,5,5,4,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,5/2,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,7/2,6,7/2,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,7/2,5,7/2,4,4,7,9/2,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,7,4,5,4,5,7/2,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,9/2,5,9/2,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,8,6,8,11/2,7,7,12,7,8,7,12,17/2,12,13,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,12,7,7,5,8,5,6,5,9,11/2,6,5,8,5,7,7,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,5,7/2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9 -14,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,5,3,3,3,4,3,3,2,3,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,11/2,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,9/2,2,2,2,3,2,1,1,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,11,6,7,5,8,5,6,5,15/2,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,5,8,6,8,7,11,6,5,4,5,3,4,4,13/2,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,6,5,8,5,6,6,19/2,6,6,5,8,5,7,7,11,6,5,4,5,3,4,4,13/2,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,17/2,6,7,6,10,7,10,10,13,7,7,5,8,5,5,4,15/2,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,4,4,12,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,14,8,9,7,10,6,8,6,21/2,6,6,4,6,4,6,6,10,6,7,6,9,6,7,7,13,7,8,6,10,7,11,11,20,11,11,7,10,6,8,7,13,7,7,5,8,6,8,7,9,5,6,4,6,4,5,4,15/2,4,5,5,8,6,8,9,19,10,10,7,10,6,8,8,27/2,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,25/2,7,8,7,12,9,13,13,24,12,12,9,13,8,10,8,14,8,8,7,11,7,8,8,16,9,9,7,10,6,8,7,25/2,7,8,7,12,9,13,13,28,14,14,10,15,9,11,9,16,9,10,8,12,8,11,11,24,13,13,10,15,10,13,12,43/2,13,16,13,23,16,23,23,39,20,20,14,20,11,13,11,20,11,12,9,15,9,12,11,22,12,12,9,13,8,10,9,33/2,9,10,8,13,9,12,12,19,10,11,8,11,7,8,6,21/2,6,7,5,8,6,8,7,12,7,7,5,8,6,8,7,25/2,7,8,7,13,9,13,13,19,10,10,7,11,7,8,6,10,6,7,6,9,6,7,7,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,23/2,6,6,5,8,6,8,8,15,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,23,12,12,8,12,7,8,8,27/2,8,8,6,9,6,9,8,16,9,9,7,10,6,8,7,23/2,6,7,6,9,6,8,8,10,5,5,3,4,3,3,3,11/2,4,4,3,4,3,3,3,10,5,5,4,6,4,4,4,11/2,3,3,3,4,3,4,3,13,7,6,4,6,4,5,4,13/2,4,4,4,6,4,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,10,5,5,4,6,4,4,3,5,3,4,3,5,3,3,3,1,1,1,1,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,3,3,5,3,3,2,2,2,2,2,7/2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,8,5,6,5,17/2,5,6,5,9,6,9,9,17 -8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,7/2,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,7/2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,7/2,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,7/2,4,4,8,9/2,5,4,6,5,7,7,11,6,6,9/2,6,4,5,9/2,8,4,4,3,5,7/2,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,8,9/2,5,4,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,15/2,16,8,8,6,9,5,6,5,9,5,6,5,7,5,6,13/2,13,7,8,6,9,6,8,7,12,15/2,9,8,13,9,13,13,22,12,12,8,12,7,8,7,11,6,7,11/2,9,11/2,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,3,5,4,5,4,7,4,5,9/2,7,5,8,15/2,11,6,6,4,7,4,5,4,6,4,4,7/2,5,7/2,4,4,9,5,5,4,6,4,5,4,8,9/2,5,4,6,4,6,6,10,6,6,9/2,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,7/2,5,4,5,5,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10 -9,5,6,4,5,4,9/2,4,7,4,5,4,5,4,5,4,7,4,7/2,2,4,3,7/2,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,7/2,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,7/2,3,6,4,11/2,5,7,4,7/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,11/2,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,4,3,6,4,9/2,4,5,3,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,5,9,5,11/2,4,7,4,11/2,5,6,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,15/2,6,7,5,6,5,9,5,9/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,13,7,13/2,4,7,4,11/2,5,9,5,5,4,6,4,11/2,6,10,6,6,5,6,4,11/2,5,9,5,6,5,8,6,9,9,16,8,17/2,6,8,5,13/2,6,9,5,6,4,7,5,6,5,10,6,6,5,6,4,11/2,5,8,5,5,5,8,6,17/2,8,18,10,19/2,6,10,6,7,6,11,6,7,6,9,6,15/2,8,15,8,17/2,6,10,6,17/2,8,14,9,11,9,15,10,15,15,26,14,14,10,14,8,19/2,8,13,7,8,6,10,6,8,8,14,8,15/2,6,8,5,7,6,10,6,13/2,6,9,6,8,8,13,7,7,5,8,5,11/2,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,11/2,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,8,5,5,4,6,4,11/2,5,10,6,6,5,7,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,7,4,5,5,10,6,7,6,10,7,10,10,15,8,17/2,6,8,5,13/2,6,9,5,5,4,6,4,11/2,6,11,6,11/2,4,6,4,5,5,8,4,9/2,4,6,4,6,6,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,8,5,5,4,4,3,7/2,3,4,3,3,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,7,4,4,3,4,3,3,3,3,2,3,2,4,3,3,3,1,1,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,1,0,0,0,0,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,-3,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,4,2,5/2,2,3,2,2,2,4,3,7/2,4,6,3,3,3,5,3,4,4,5,3,4,3,4,3,3,3,8,4,4,3,5,3,4,4,6,4,9/2,4,6,4,6,6,11 -8,9/2,5,4,4,3,4,3,5,3,4,3,4,3,4,7/2,6,3,3,2,3,2,3,5/2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,5/2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,7/2,5,4,5,6,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,6,4,5,9/2,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,6,5,7,5,8,8,13,7,7,5,7,4,5,9/2,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,11/2,8,5,6,5,9,5,6,5,8,5,6,13/2,13,7,7,5,8,5,7,7,12,7,9,15/2,12,8,12,12,22,11,11,8,11,13/2,8,13/2,11,6,7,5,8,5,7,6,11,6,6,9/2,6,4,5,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,7/2,5,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,7/2,5,5,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,1,1,1,1/2,0,0,0,0,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9 -13,7,8,6,15/2,4,5,5,8,5,5,4,6,4,6,6,9,5,4,3,9/2,3,3,3,7,4,4,3,9/2,4,5,5,7,4,4,3,9/2,3,4,3,3,2,2,2,9/2,4,5,5,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,9/2,2,2,2,4,3,3,2,5/2,2,2,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,9/2,3,4,3,6,4,4,4,11/2,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,7,4,4,4,11/2,4,4,4,6,4,5,4,7,5,6,6,11,6,5,4,5,3,4,3,7,4,4,4,11/2,4,6,5,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,13,7,7,5,7,5,6,5,8,5,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,8,5,6,4,13/2,4,6,5,10,6,6,5,15/2,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,5,7,7,10,6,6,4,11/2,4,4,4,7,4,5,4,6,4,6,6,9,5,6,4,11/2,4,4,4,7,4,4,4,6,5,7,7,11,6,7,5,8,5,6,6,9,5,6,4,13/2,4,6,6,12,7,7,5,8,5,7,7,11,7,8,6,21/2,8,11,11,18,10,10,7,11,7,9,8,11,6,6,5,15/2,5,6,6,9,5,6,4,11/2,4,6,5,9,5,6,5,17/2,6,8,9,18,9,9,6,9,6,7,6,12,7,7,6,17/2,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,25/2,9,14,14,21,11,11,8,25/2,7,8,7,14,8,8,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,12,8,12,12,25,13,13,9,25/2,8,9,8,16,9,10,8,13,8,11,11,22,12,13,9,14,9,11,11,20,12,14,12,43/2,15,22,22,38,20,20,13,37/2,11,13,11,18,10,11,8,27/2,8,11,10,18,10,10,7,21/2,6,8,7,15,9,10,8,25/2,8,12,11,19,10,10,8,23/2,7,8,7,10,6,7,5,8,5,7,7,12,7,8,6,17/2,6,7,7,12,7,8,7,11,8,12,12,18,10,10,7,19/2,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,17/2,6,7,6,12,7,7,6,9,6,9,9,16,9,9,7,10,6,7,7,12,7,8,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,21,11,11,8,12,7,9,8,12,7,7,6,9,6,7,7,14,8,8,6,15/2,5,6,6,10,6,6,5,15/2,5,7,7,12,6,6,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,9,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,3,10,6,6,4,13/2,4,4,3,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,10,6,6,4,11/2,4,4,4,4,3,3,2,7/2,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,4,3,3,2,5/2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,7,4,3,2,3,2,2,2,6,4,4,3,5,4,5,5,8,5,5,4,11/2,4,4,3,5,3,4,3,9/2,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,11/2,4,4,4,10,5,5,4,11/2,4,4,4,9,5,6,5,15/2,6,8,8,15 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,5,6,5,8,4,4,7/2,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,6,5,6,4,5,9/2,8,5,5,4,6,4,6,6,9,5,6,4,7,9/2,6,5,9,11/2,6,5,8,6,9,9,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,11/2,6,6,11,6,7,6,9,6,8,8,15,8,9,13/2,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,12,7,9,7,12,7,7,6,9,6,7,7,12,7,7,5,7,9/2,6,5,10,6,7,5,8,6,8,8,13,7,7,11/2,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,9/2,8,9/2,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,9/2,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,7/2,4,4,7,4,4,3,5,7/2,5,5,8,4,4,3,4,5/2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,5/2,4,3,4,7/2,6,3,3,3,4,3,3,5/2,4,3,3,5/2,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,10 -13,7,7,5,7,4,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,4,3,7/2,3,6,4,4,3,5,3,4,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,8,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,5,9,5,9/2,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,3,3,3,5,4,5,5,7,4,5,4,6,4,11/2,5,8,5,6,5,8,6,9,9,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,5,5,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,6,6,10,6,11/2,4,7,4,9/2,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,9/2,4,6,4,9/2,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,5,7,7,10,6,6,5,8,5,11/2,5,8,5,6,5,6,4,6,6,12,6,13/2,5,7,5,13/2,6,12,7,15/2,6,10,7,10,10,19,10,10,7,10,6,15/2,6,11,6,13/2,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,18,10,19/2,7,9,6,7,6,12,7,7,5,9,6,15/2,8,13,7,8,6,10,6,17/2,8,13,8,9,7,12,9,13,13,21,11,23/2,8,12,7,17/2,7,12,7,7,5,9,6,15/2,7,12,7,7,5,9,6,8,7,11,7,8,7,11,8,11,11,22,12,25/2,8,12,8,19/2,9,16,9,10,8,13,8,23/2,11,21,11,12,9,13,8,23/2,11,20,12,27/2,12,20,14,20,20,36,19,19,13,18,10,25/2,10,18,10,10,8,13,8,10,10,18,10,19/2,7,10,6,8,7,14,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,9,6,13/2,5,8,5,13/2,7,12,7,7,5,8,5,13/2,6,12,7,8,7,11,8,23/2,11,19,10,10,7,10,6,15/2,6,11,6,7,6,8,6,8,7,13,7,7,5,8,5,6,6,11,6,13/2,6,9,6,9,9,16,9,9,7,10,6,15/2,6,11,7,8,6,9,6,8,8,15,8,8,6,9,6,15/2,7,14,8,19/2,8,14,9,13,13,21,11,11,8,11,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,15/2,5,7,5,6,6,10,6,11/2,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,8,5,5,3,5,3,4,3,4,2,5/2,2,3,2,3,3,11,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,7/2,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,9,5,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,7,4,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,8,4,4,3,5,3,7/2,3,6,4,4,3,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,8,5,5,4,8,5,7,7,14 -12,7,7,5,6,4,4,4,6,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,9/2,4,7/2,5,3,4,4,6,4,4,3,5,7/2,4,5,9,5,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,9/2,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,7,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,13/2,11,6,6,5,7,5,6,6,10,11/2,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,10,7,9,6,7,6,11,13/2,7,5,9,6,7,7,13,7,8,6,10,6,8,8,13,8,9,15/2,13,9,13,13,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,9,6,7,7,11,7,8,7,11,8,11,11,22,12,12,8,12,8,10,9,16,9,10,8,13,17/2,12,11,21,11,12,9,13,17/2,12,11,20,12,14,12,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,13/2,8,7,13,8,9,7,12,8,11,11,19,10,10,7,11,6,7,6,9,11/2,6,5,7,5,6,13/2,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,6,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,6,11/2,9,6,9,9,16,9,9,7,10,6,8,13/2,11,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,13,9,13,13,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,5,7,5,6,6,10,6,6,4,6,4,6,6,11,6,6,4,6,7/2,4,4,6,4,4,3,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,3,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,7/2,3,2,3,2,3,3,4,3,3,3,5,7/2,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,6,4,4,4,8,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,9/2,8,5,5,4,7,5,7,7,13 -23,12,12,8,12,7,8,7,11,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,23/2,6,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,6,5,7,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,14,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,7,6,10,7,11,11,43/2,11,10,7,10,6,7,6,10,6,7,5,8,6,9,9,16,9,9,7,12,8,11,10,19,11,12,10,18,12,18,18,23,12,13,9,13,8,9,7,12,7,8,6,10,6,8,8,15,8,9,7,11,7,8,7,13,7,8,7,12,8,11,10,19,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,9,8,13,8,9,7,12,9,13,13,20,11,11,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,11,7,10,10,41/2,11,11,7,10,6,8,7,13,7,8,7,12,8,10,10,18,10,10,7,11,7,10,10,18,11,13,11,18,12,18,19,36,19,19,13,19,11,12,10,18,10,11,9,15,10,14,13,24,13,13,10,15,9,12,11,20,11,13,11,18,12,18,17,65/2,17,17,12,17,10,13,12,21,12,14,11,18,12,16,15,29,15,16,12,19,12,16,15,28,16,18,15,25,17,25,25,40,20,20,14,21,13,16,14,24,13,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,23,15,22,22,85/2,22,22,16,24,14,17,15,26,14,16,13,22,14,20,19,36,19,21,16,25,16,22,21,40,23,27,23,40,27,40,40,70,36,36,25,37,21,25,21,37,20,21,15,24,15,19,18,34,18,18,13,20,12,14,12,22,12,14,12,21,14,20,20,75/2,19,19,13,20,12,14,12,20,11,13,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,13,21,14,21,21,36,19,19,13,19,11,14,12,21,11,12,9,14,9,11,11,20,11,11,8,13,8,11,11,20,11,12,10,17,11,16,16,63/2,16,17,12,17,10,13,12,21,11,12,10,16,10,13,13,24,13,14,10,16,10,14,14,27,15,18,15,25,17,25,25,41,21,21,14,21,12,14,12,21,11,12,9,14,9,12,11,19,10,10,7,11,7,8,7,11,7,8,7,11,8,11,11,21,11,11,7,9,5,6,5,8,5,6,5,7,5,6,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,20,10,10,7,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,16,8,8,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,13/2,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,7,4,5,4,5,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,2,3,2,3,2,3,3,4,5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,7,5,8,5,6,6,10,6,6,5,7,5,8,8,14,8,8,6,8,5,5,5,8,5,6,5,9,6,9,8,31/2,8,8,6,8,5,7,6,11,6,7,5,8,6,9,9,16,9,10,7,11,7,8,8,14,8,9,7,12,9,13,13,25 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,19,10,10,7,10,6,6,11/2,10,6,6,5,8,6,8,7,12,7,7,11/2,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,13/2,9,6,7,6,11,13/2,8,6,10,6,8,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,20,10,10,7,11,7,8,7,13,7,7,11/2,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,12,7,9,8,14,8,8,7,12,8,10,10,18,10,11,8,13,9,12,11,21,12,14,12,21,14,21,21,36,19,19,13,19,11,13,11,19,21/2,11,8,13,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,11,15/2,10,10,20,10,10,7,11,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,7,13,8,9,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,6,10,6,6,11/2,9,6,9,9,17,9,9,13/2,9,6,7,13/2,11,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,13/2,8,13/2,11,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,9,5,4,7/2,5,7/2,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,4,5/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,9/2,4,8,4,4,3,4,3,3,2,4,3,3,2,4,3,7/2,4,7,4,9/2,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,3,3,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,9/2,4,9,5,5,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,9/2,4,7,4,7/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,13/2,6,11,6,11/2,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,11/2,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,8,5,11/2,4,6,4,5,5,6,4,4,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,6,4,9/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,13/2,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,11/2,4,7,4,5,5,10,6,7,6,10,7,10,10,19,10,21/2,7,10,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,15/2,6,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,15/2,6,10,6,17/2,8,16,9,9,7,10,7,9,8,14,8,19/2,8,14,9,13,13,20,10,21/2,7,10,6,17/2,7,13,7,15/2,6,9,6,15/2,8,13,7,8,6,9,6,8,7,13,8,9,8,13,9,25/2,12,23,12,12,8,12,7,9,8,14,8,17/2,7,12,8,10,10,18,10,11,8,14,9,12,11,22,12,29/2,12,21,14,21,21,36,19,19,13,19,11,13,11,20,11,11,8,13,8,11,10,18,10,19/2,7,10,6,8,7,11,6,7,6,11,8,21/2,10,20,11,11,8,12,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,10,6,7,7,13,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,11,6,7,5,8,5,7,7,11,6,13/2,5,7,5,6,6,10,6,13/2,6,9,6,19/2,10,18,10,10,7,10,6,15/2,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,15,8,19/2,8,13,9,27/2,14,21,11,23/2,8,11,6,15/2,6,11,6,13/2,5,8,5,13/2,6,10,6,11/2,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,7/2,3,5,3,4,3,4,3,3,3,5,3,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,10,6,11/2,4,5,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,9,5,9/2,4,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,3/2,1,0,0,0,0,4,2,5/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,1,1,2,2,-5,-2,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,7/2,3,5,4,9/2,4,8,5,5,4,5,3,7/2,3,5,3,4,3,5,4,11/2,5,8,4,4,3,5,3,4,4,7,4,4,3,5,4,11/2,5,9,5,5,4,7,4,5,5,8,5,5,4,7,5,8,8,14 -9,5,5,4,5,3,3,3,4,3,3,2,3,3,4,7/2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,4,3,3,3,5,7/2,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,5/2,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,7/2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,11/2,8,5,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,8,5,6,4,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,13/2,9,9,14,15/2,8,5,7,9/2,6,5,9,5,6,4,6,4,6,6,10,11/2,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,16,8,8,6,8,5,6,11/2,10,6,6,5,9,6,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,9/2,8,6,8,15/2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,9/2,7,4,5,5,9,6,7,5,9,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,5/2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,7/2,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10 -13,7,7,5,15/2,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,11/2,4,6,5,10,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,3,8,4,4,3,5,4,5,4,7,4,4,3,9/2,3,4,4,5,3,3,2,7/2,3,4,4,5,3,3,3,9/2,4,5,5,10,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,4,5,3,4,3,9/2,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,5,4,7,5,6,6,11,6,6,4,11/2,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,15/2,5,6,6,12,7,8,7,23/2,8,12,11,13,7,7,5,7,4,5,5,8,5,6,4,13/2,4,6,6,9,5,6,4,13/2,4,5,5,6,4,4,3,5,4,5,6,11,6,7,5,15/2,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,13/2,4,4,3,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,13,7,7,5,13/2,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,15/2,5,6,6,10,6,7,6,21/2,7,10,11,22,12,12,8,23/2,7,8,6,11,6,7,6,19/2,6,8,8,13,7,8,6,17/2,6,7,6,11,7,8,6,10,7,10,10,17,9,9,7,11,6,7,6,12,7,7,6,19/2,7,10,10,16,9,10,7,11,7,9,9,14,8,10,8,27/2,10,14,14,20,10,10,7,21/2,6,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,8,13,9,12,12,24,13,13,9,25/2,8,9,8,15,9,10,8,13,8,11,10,19,11,12,9,14,9,13,12,23,13,15,13,22,15,22,22,38,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,19,10,11,8,23/2,7,8,8,12,7,8,6,21/2,7,10,10,22,12,12,8,25/2,7,8,7,13,7,8,6,19/2,6,9,9,15,8,8,6,10,6,8,7,14,8,10,8,13,9,12,12,20,11,11,8,25/2,7,8,7,13,7,8,6,17/2,6,7,7,13,7,7,6,17/2,5,6,6,11,6,7,6,21/2,8,11,11,19,10,10,7,21/2,6,8,7,13,7,8,6,9,6,9,8,15,9,10,8,23/2,8,10,9,15,9,10,8,29/2,10,14,14,23,12,12,8,12,7,8,7,11,6,6,5,17/2,6,7,7,11,6,6,4,13/2,4,5,4,7,4,5,4,13/2,4,6,6,12,6,6,5,7,4,4,3,6,3,3,2,7/2,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,10,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,1,1,0,0,0,1,1,1,3,2,1,1,1/2,0,0,0,4,3,3,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,1,1,1,2,2,2,1,1,1,2,2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,9/2,3,3,3,6,4,4,4,11/2,4,4,4,9,5,5,4,9/2,3,4,3,6,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,15/2,6,8,8,14 -8,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,3,3,3,4,5/2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,7/2,5,3,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,5/2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,9/2,5,4,5,7/2,4,4,7,4,5,4,6,9/2,6,6,10,6,6,9/2,7,4,4,4,7,4,5,4,6,4,6,6,9,5,6,9/2,7,9/2,6,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,8,8,11/2,8,5,6,5,9,5,6,5,8,5,7,6,11,13/2,7,11/2,8,6,8,7,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,13,7,7,11/2,8,5,7,13/2,11,6,7,5,7,9/2,5,5,8,5,5,4,6,9/2,6,6,13,7,7,5,8,5,5,9/2,8,9/2,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,5,9/2,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,6,9,11/2,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,9/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,2,3/2,1,1,1,1,1,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8 -9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,3,4,2,5/2,2,2,2,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,2,4,2,5/2,2,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,3,3,2,5/2,2,5,3,5/2,2,4,3,7/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,4,4,2,5/2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,3,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,5,3,3,2,4,3,3,3,4,3,7/2,4,6,4,5,5,9,5,5,3,5,3,4,4,5,3,7/2,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,8,8,11,6,6,4,6,4,9/2,4,7,4,9/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,4,3,7/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,7/2,3,6,4,5,4,7,5,7,7,8,5,5,4,6,4,7/2,3,5,3,3,2,3,3,4,4,5,3,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,4,3,7/2,3,6,4,4,3,5,4,5,5,7,4,4,3,6,4,5,5,8,5,11/2,5,8,6,17/2,8,16,9,9,6,8,5,13/2,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,11/2,4,8,6,15/2,8,13,7,7,5,8,5,11/2,5,9,5,6,5,7,5,7,7,11,6,7,5,8,5,13/2,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,11/2,6,8,5,11/2,4,7,5,13/2,6,12,7,7,5,7,5,13/2,6,10,6,7,6,10,7,10,9,18,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,14,8,9,7,10,7,9,9,17,10,11,9,16,11,16,16,29,15,29/2,10,15,9,21/2,9,16,9,9,7,10,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,15/2,8,17,9,9,7,10,6,13/2,6,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,15/2,6,10,7,10,9,16,9,9,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,6,6,5,6,4,5,4,8,5,11/2,5,8,6,8,8,13,7,7,5,7,4,11/2,5,10,6,13/2,5,8,5,7,7,11,6,13/2,5,9,6,15/2,7,12,7,15/2,6,11,8,11,11,16,9,9,6,8,5,6,5,9,5,11/2,4,7,4,11/2,6,8,5,5,3,5,3,7/2,4,5,3,7/2,3,5,4,9/2,5,10,6,11/2,4,5,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,8,5,5,4,5,3,7/2,4,5,3,7/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,2,2,2,1,1,1,1/2,0,2,1,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,2,2,2,2,2,5/2,2,6,3,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,5,3,7/2,4,6,4,9/2,4,6,4,6,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,5/2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,5,8,5,5,9/2,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,9/2,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,7/2,4,4,6,9/2,6,6,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,15/2,14,8,8,11/2,8,5,6,5,9,5,5,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,11/2,11,6,6,5,6,4,6,5,9,5,6,5,9,6,9,8,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,9/2,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,10,14,7,7,5,7,4,5,5,8,9/2,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,7/2,4,4,6,4,6,5,9 -15,8,8,6,8,5,6,6,19/2,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,6,6,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,6,5,11,6,5,4,5,3,4,4,11/2,4,4,3,3,3,4,4,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,1,1,2,2,3,2,3,2,7/2,2,3,3,5,4,5,5,9,5,5,4,5,3,4,4,15/2,4,4,3,4,3,3,3,7,4,5,4,6,4,4,4,15/2,4,5,4,5,4,5,5,11,6,6,4,5,3,4,4,11/2,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,9/2,3,3,3,4,3,4,4,12,6,6,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,8,5,6,6,15,8,8,6,10,6,8,8,27/2,8,9,7,12,9,13,13,19,10,10,7,11,7,8,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,15/2,4,5,5,8,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,6,7,6,11,8,11,10,13,7,8,6,8,5,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,17/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,15/2,5,6,5,7,5,7,7,10,6,6,4,6,4,6,6,23/2,7,8,8,14,10,14,13,25,13,13,9,13,8,10,9,31/2,9,10,8,12,7,9,9,14,8,8,6,9,6,8,7,12,7,9,7,12,8,11,11,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,11,18,10,10,7,11,7,10,10,35/2,10,11,9,15,10,15,15,22,12,12,9,13,8,10,8,27/2,8,8,6,10,7,9,9,19,10,11,8,13,8,10,9,31/2,9,11,9,16,11,15,14,28,15,15,11,16,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,15,10,13,13,25,14,16,14,24,16,24,25,46,24,24,17,25,14,17,14,25,13,14,11,17,11,14,13,24,13,13,9,14,9,11,10,35/2,10,11,9,15,10,13,12,26,14,14,10,15,9,10,8,14,8,9,7,12,8,11,11,22,12,13,9,14,8,10,9,31/2,9,11,9,16,11,15,14,27,14,15,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,6,8,5,6,6,11,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,12,8,11,10,18,10,11,8,12,8,10,10,37/2,10,12,10,18,12,18,17,24,12,12,8,12,7,9,8,13,8,9,7,11,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,4,13,7,8,6,8,5,6,5,17/2,5,5,3,4,3,3,3,6,4,4,3,4,3,3,2,7/2,2,3,2,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,4,2,2,1,1,1,1,1,3/2,1,0,0,0,0,0,0,9,5,6,4,6,4,4,4,13/2,4,4,3,4,3,4,3,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,2,2,3/2,2,2,2,4,3,4,4,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,11/2,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,13/2,4,4,3,5,4,6,6,9,5,5,4,7,4,5,5,17/2,5,6,5,8,5,6,6,12,6,6,5,7,5,6,5,17/2,5,6,6,10,7,10,9,17 -9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,15/2,11,6,6,9/2,7,4,5,4,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,15/2,8,5,7,5,6,5,8,5,6,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,10,6,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,9,6,8,15/2,14,8,9,8,13,9,13,27/2,25,13,13,9,14,8,10,8,14,15/2,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,11/2,7,7,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,11/2,10,11/2,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9 -10,6,11/2,4,5,3,4,4,7,4,4,4,6,4,9/2,4,8,4,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,2,2,0,1,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,4,3,3,3,5,3,7/2,3,6,4,11/2,6,8,5,11/2,4,6,4,9/2,4,7,4,5,4,5,4,9/2,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,7,4,5,4,7,4,5,5,10,6,6,4,5,4,9/2,4,6,4,4,4,5,4,5,5,8,5,11/2,4,6,4,9/2,4,6,4,9/2,3,4,3,9/2,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,13/2,6,9,5,9/2,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,6,4,4,3,3,2,3,3,6,4,4,4,5,4,5,5,9,5,9/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,7,4,5,4,5,4,9/2,4,8,5,6,5,10,7,19/2,9,15,8,17/2,6,8,5,6,5,9,5,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,11/2,5,8,5,7,7,11,6,13/2,5,8,5,11/2,5,8,5,11/2,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,11/2,5,9,5,11/2,4,7,5,6,6,12,7,7,5,8,5,13/2,6,10,6,7,6,10,7,19/2,9,16,9,9,7,9,6,7,6,10,6,7,6,10,6,17/2,8,13,7,15/2,6,10,6,17/2,8,15,9,10,9,15,10,29/2,15,28,14,29/2,10,16,9,21/2,9,15,8,9,7,11,7,9,8,16,9,9,7,9,6,15/2,6,12,7,15/2,6,9,6,8,8,16,9,19/2,6,9,6,13/2,6,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,13/2,6,10,7,19/2,10,17,9,9,6,9,6,13/2,6,11,6,7,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,11/2,5,7,5,15/2,8,14,8,15/2,6,8,5,6,5,9,5,11/2,4,7,5,13/2,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,23/2,11,15,8,8,6,7,5,6,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,4,9/2,4,6,4,4,4,6,4,9/2,4,8,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,7,4,9/2,3,5,3,7/2,4,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,7/2,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,8,4,4,3,4,3,7/2,3,6,4,4,4,6,4,11/2,6,10 -9,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,9/2,7,4,4,3,5,3,4,3,6,7/2,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,8,9/2,5,4,6,9/2,6,7,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,4,8,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,7/2,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,10,6,6,9/2,6,4,4,4,7,4,4,7/2,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,11/2,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,23,12,12,8,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,11/2,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,11/2,8,5,6,5,7,4,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,9/2,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,9/2,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,11/2,9,6,9,9,12,6,6,9/2,6,4,4,4,7,4,4,4,6,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8 -15,8,8,6,8,5,7,6,9,5,5,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,11/2,4,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,0,1,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,9/2,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,15/2,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,17/2,6,7,6,13,7,8,6,21/2,8,11,11,21,11,11,8,12,7,8,6,12,7,8,6,9,6,8,7,13,7,8,6,15/2,4,5,5,8,5,6,4,13/2,4,6,6,13,7,8,6,8,5,5,5,8,5,6,4,13/2,4,6,5,8,5,6,4,13/2,4,5,5,7,4,5,5,17/2,6,8,8,12,6,6,4,11/2,4,4,3,6,4,4,3,4,3,3,3,8,5,5,4,5,4,5,4,8,5,6,5,15/2,5,6,6,11,6,6,4,6,4,5,5,7,4,4,3,5,4,6,6,10,6,6,5,15/2,5,6,6,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,10,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,9,9,14,8,8,6,9,6,7,6,9,5,6,5,17/2,6,8,8,14,8,8,6,19/2,6,8,7,12,7,9,8,25/2,8,12,12,17,9,9,7,10,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,19/2,6,8,7,13,8,9,7,12,8,11,11,21,11,11,8,23/2,7,9,8,13,7,8,7,23/2,8,10,10,18,10,10,8,12,8,10,10,19,11,13,11,39/2,14,20,20,39,20,20,14,21,12,14,11,21,11,12,9,29/2,9,12,11,21,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,23,12,13,9,13,7,8,7,12,7,8,6,21/2,7,10,10,18,10,10,8,23/2,7,8,7,12,7,8,8,27/2,9,13,13,23,12,12,8,23/2,7,8,7,14,8,8,6,9,6,7,7,14,8,8,6,8,5,7,6,10,6,8,6,21/2,7,10,10,20,11,11,8,11,7,9,8,12,7,7,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,15,10,14,14,20,10,10,7,19/2,6,7,6,11,6,6,5,17/2,6,7,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,5/2,2,3,3,9,5,5,4,11/2,4,4,4,7,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,6,4,4,3,9/2,3,3,3,3,2,3,3,4,3,3,3,6,4,4,3,9/2,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,0,0,0,1,3/2,2,2,1,1,1,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,9/2,4,5,5,8,4,4,3,7/2,3,4,4,4,3,3,3,11/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,12 -10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,3,4,5/2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,4,6,7/2,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,9/2,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,5,9,6,8,8,14,15/2,8,5,7,4,5,9/2,8,5,5,4,7,9/2,6,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,15/2,8,11/2,8,5,6,11/2,9,5,6,5,8,5,7,7,12,7,7,11/2,8,11/2,7,7,13,8,9,8,13,9,13,13,25,13,13,9,13,8,9,15/2,14,15/2,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,11/2,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,9,5,6,6,10,7,9,9,14,7,7,5,7,4,5,4,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,5/2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,7/2,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8 -14,8,15/2,6,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,5/2,2,3,2,5/2,2,3,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,3,3,4,3,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,8,4,9/2,4,5,3,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,3,4,3,4,4,6,4,4,4,7,5,13/2,6,12,6,13/2,5,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,8,5,7,6,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,15/2,6,9,6,15/2,7,12,7,7,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,12,7,7,5,7,4,11/2,4,7,4,9/2,4,6,4,9/2,4,8,5,5,4,6,4,9/2,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,5,3,4,4,7,4,11/2,4,6,4,13/2,6,10,6,6,4,6,4,5,4,8,4,9/2,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,7,8,7,12,8,12,12,20,10,21/2,7,10,6,7,6,11,6,13/2,5,9,6,15/2,7,12,7,7,5,8,5,6,5,9,5,11/2,5,8,6,8,8,14,8,15/2,5,7,4,11/2,5,9,5,6,5,7,5,7,7,12,7,15/2,6,8,6,15/2,7,12,7,17/2,7,12,8,11,11,16,8,8,6,9,6,13/2,6,10,6,6,5,8,6,8,8,14,8,15/2,6,8,5,7,6,11,6,15/2,6,11,8,21/2,10,19,10,21/2,7,11,7,17/2,8,12,7,8,7,10,7,9,9,18,10,21/2,8,12,8,10,10,18,11,13,11,18,13,19,19,35,18,37/2,13,18,10,25/2,10,19,10,11,8,14,9,23/2,11,20,11,11,8,12,8,19/2,8,15,9,10,8,12,8,11,11,21,11,11,8,11,6,15/2,6,11,6,7,6,10,7,19/2,10,17,9,10,7,10,6,15/2,7,12,7,8,7,12,9,13,13,20,10,21/2,8,10,6,15/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,6,8,5,6,5,9,6,7,6,9,6,9,9,19,10,21/2,7,10,6,8,7,12,6,13/2,5,8,5,7,7,14,8,15/2,6,9,6,7,7,12,7,17/2,8,13,9,13,13,20,10,21/2,7,10,6,7,6,11,6,6,5,8,5,13/2,6,10,6,11/2,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,4,3,7/2,4,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,9/2,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3/2,2,3,2,3,3,2,2,3/2,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,9/2,3,4,3,4,3,5,3,7/2,3,5,3,4,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,3,4,4,9,5,11/2,4,7,4,11/2,5,8,4,9/2,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,5,3,4,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,9,5,6,9/2,6,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,5/2,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,7/2,5,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,4,6,9/2,6,6,11,6,6,5,7,5,6,5,8,5,6,9/2,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,12,7,7,5,7,9/2,6,9/2,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,4,4,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,7,8,7,12,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,9/2,6,5,8,5,6,5,7,5,7,7,12,7,7,11/2,8,11/2,7,7,12,7,8,7,11,8,11,11,16,8,8,6,9,11/2,6,6,10,6,6,5,8,6,8,7,13,7,7,5,8,5,6,6,10,6,8,13/2,11,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,9,9,17,19/2,10,8,12,8,10,19/2,17,10,12,21/2,18,25/2,18,18,34,35/2,18,12,18,10,12,10,18,10,11,8,13,8,11,11,20,11,11,8,12,15/2,9,8,14,8,9,7,11,8,11,11,20,11,11,8,11,13/2,8,7,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,17/2,12,12,20,10,10,15/2,10,6,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,17/2,12,12,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,9/2,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,5/2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,4,4,6,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,8,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11 -26,14,14,10,15,9,11,9,16,9,9,7,10,6,8,8,31/2,8,8,6,8,5,6,6,10,6,7,5,8,6,9,9,11,6,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,11,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,4,6,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,4,3,4,4,7,5,7,7,8,5,5,3,4,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,8,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,15/2,4,5,4,5,4,5,5,8,5,5,4,7,5,8,8,15,8,8,6,9,5,6,5,8,5,6,5,7,4,5,5,17/2,5,6,5,8,6,8,7,13,8,9,7,12,8,12,12,21,11,12,9,13,8,10,8,14,8,9,8,14,9,13,13,24,13,14,10,15,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,11,13,11,18,10,11,9,14,9,12,12,43/2,11,11,8,12,7,9,8,15,8,9,7,12,8,12,12,22,12,12,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,6,9,6,8,8,16,9,11,9,16,11,15,15,20,11,11,8,12,7,8,7,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,18,10,10,7,11,7,8,7,13,8,9,7,11,7,10,10,35/2,10,10,8,12,8,11,11,20,12,14,12,21,14,21,21,37,19,19,13,20,12,14,12,20,11,13,10,16,10,14,13,49/2,13,14,10,15,9,11,10,18,10,12,10,16,11,15,15,25,13,14,10,16,10,12,10,18,10,11,9,15,10,13,12,45/2,12,13,9,14,9,11,11,20,12,14,12,21,14,21,21,31,16,16,11,16,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,16,10,12,11,19,11,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,13,11,18,12,18,17,33,18,20,15,24,15,20,19,36,20,23,19,34,23,34,34,66,34,34,23,35,20,24,20,35,19,21,16,25,16,22,20,38,19,19,13,20,12,14,13,23,13,14,12,20,14,20,20,38,20,20,14,21,12,15,13,23,13,14,11,18,12,16,16,63/2,16,16,12,18,11,14,13,25,14,17,14,25,16,23,23,38,20,20,14,20,11,13,11,20,11,12,9,15,10,14,13,47/2,13,14,10,15,9,12,11,21,12,13,11,18,12,17,17,38,19,19,13,20,11,13,11,20,11,13,10,16,10,14,14,26,14,14,10,15,10,13,12,22,13,15,13,22,15,22,23,37,19,19,14,21,12,15,12,21,11,12,9,14,9,11,10,37/2,10,11,8,12,7,9,8,15,9,10,8,12,8,11,10,16,9,9,6,9,5,6,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,16,9,9,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,6,4,4,3,5,4,5,5,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,6,6,10,5,5,4,6,4,6,6,23/2,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,29/2,8,9,7,10,6,8,7,12,7,8,7,12,8,12,11,21 -14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,5,5,6,7/2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,5/2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,9/2,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,13/2,12,13/2,6,5,7,9/2,5,9/2,8,5,5,4,5,7/2,4,4,8,4,4,7/2,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,6,11/2,9,6,8,8,14,15/2,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,11/2,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,13/2,8,7,11,6,7,6,10,7,10,10,17,10,11,8,13,8,11,10,19,11,12,10,18,12,18,18,34,18,18,25/2,18,11,13,11,18,10,11,17/2,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,8,7,14,8,9,8,13,9,13,13,20,11,11,8,11,6,7,6,11,6,7,11/2,8,6,8,7,12,7,8,6,8,5,7,6,11,6,7,6,10,7,9,9,20,21/2,10,7,11,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,11/2,7,7,12,7,8,7,12,8,12,12,20,10,10,8,11,7,8,7,12,13/2,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,5/2,3,2,3,3,4,3,3,3,4,3,3,3,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,6,11 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,5,5,3,4,3,7/2,3,7,4,5,4,5,4,5,5,6,4,7/2,2,4,3,3,3,4,3,7/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,4,4,6,4,11/2,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,4,3,6,4,7/2,2,3,2,7/2,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,3,4,3,9/2,5,9,5,5,4,5,3,7/2,3,4,3,3,3,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,7,5,13/2,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,15/2,6,9,6,7,6,12,7,8,7,12,8,12,12,22,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,11/2,5,9,5,11/2,4,6,4,6,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,11/2,4,6,4,5,5,10,6,6,5,9,6,9,8,11,6,7,5,7,4,5,5,8,5,5,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,5,4,6,5,7,7,11,6,13/2,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,13/2,6,12,7,17/2,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,13/2,6,9,6,17/2,8,15,8,17/2,6,10,6,7,6,10,6,7,6,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,19/2,6,10,6,7,6,11,6,6,5,8,6,15/2,8,13,7,8,6,8,5,13/2,6,11,6,15/2,6,10,7,21/2,11,19,10,21/2,8,12,7,17/2,8,12,7,15/2,6,10,7,11,11,18,10,11,9,13,8,23/2,11,20,11,13,11,19,13,39/2,20,36,19,19,13,19,11,13,11,19,10,23/2,9,14,9,12,11,21,11,11,8,12,7,17/2,8,13,8,17/2,7,11,8,11,11,22,12,23/2,8,12,7,9,7,14,8,9,7,10,7,10,10,18,10,10,7,11,7,17/2,8,15,9,10,8,14,10,14,14,22,12,12,8,12,7,8,7,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,7,11,6,15/2,6,10,7,10,10,22,12,23/2,8,11,7,8,7,12,7,7,6,10,6,17/2,8,14,8,17/2,6,8,6,15/2,7,12,7,9,8,12,8,25/2,13,21,11,11,8,12,7,17/2,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,13/2,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,7/2,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,7/2,4,6,3,3,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,7,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,-1/2,0,0,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,4,3,3,3,4,3,3,3,4,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,9/2,4,8,5,5,4,5,4,9/2,4,7,4,5,4,7,5,15/2,7,12 -11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,5,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,9/2,7,5,6,5,9,11/2,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,6,4,4,7/2,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,9/2,5,4,6,5,7,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,4,5,5,9,11/2,6,5,9,13/2,10,10,16,17/2,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,14,8,8,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,11/2,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,6,8,8,14,8,8,13/2,10,13/2,9,8,14,8,10,8,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,10,7,9,17/2,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,17/2,8,6,9,11/2,7,11/2,10,6,7,5,8,6,8,7,13,7,8,11/2,8,5,6,6,11,7,8,6,10,15/2,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,9/2,6,4,5,5,8,5,6,5,8,11/2,8,8,16,17/2,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,6,4,6,5,9,6,7,6,10,7,10,10,16,9,9,13/2,10,6,6,5,10,11/2,6,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,5/2,3,3,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,7/2,5,3,4,7/2,6,4,6,6,10 -18,10,10,7,19/2,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,11/2,4,4,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,6,4,11/2,4,5,5,8,5,5,4,13/2,4,6,6,11,6,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7/2,3,4,5,7,4,4,3,9/2,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,7/2,2,3,3,5,3,4,3,9/2,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,7/2,3,4,4,5,3,4,3,4,3,3,3,7,4,5,4,13/2,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,11/2,4,4,4,6,4,4,3,9/2,4,5,5,8,5,5,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,9,6,8,8,16,9,9,7,21/2,7,9,8,15,9,10,8,27/2,10,14,14,26,13,13,9,13,8,9,8,13,7,8,6,19/2,6,8,8,15,8,8,6,15/2,5,6,6,9,5,6,5,15/2,5,7,7,14,8,8,6,15/2,5,6,5,9,5,6,5,15/2,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,13,7,7,5,8,5,7,6,10,6,6,4,13/2,4,6,6,9,5,5,4,13/2,4,4,4,7,5,6,5,15/2,5,7,7,13,7,7,5,15/2,5,6,6,11,6,7,6,9,6,8,7,11,6,7,5,8,5,7,7,15,9,10,8,29/2,10,15,15,25,13,14,10,29/2,8,9,8,14,8,9,7,21/2,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,19/2,7,10,10,17,9,10,7,21/2,6,8,7,13,7,8,6,10,6,8,8,16,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,22,12,12,8,11,7,9,8,13,7,8,6,9,6,9,9,15,8,9,6,19/2,6,8,7,14,8,9,7,12,8,12,12,22,12,12,9,14,8,10,9,14,8,9,8,13,9,12,12,22,12,12,10,31/2,10,13,12,22,13,15,13,22,15,23,23,43,22,22,15,45/2,13,16,14,23,12,13,10,33/2,10,14,13,24,12,12,8,25/2,8,10,9,15,8,9,8,25/2,8,12,12,25,13,14,10,27/2,8,10,8,16,9,10,8,13,9,12,11,21,11,11,8,12,8,10,9,17,10,11,10,33/2,11,16,16,27,14,14,10,29/2,9,11,9,16,9,9,7,23/2,8,10,10,16,9,9,7,21/2,6,8,7,13,8,9,8,25/2,8,12,12,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,8,15,9,10,9,31/2,11,16,16,26,14,14,10,31/2,9,10,8,15,8,9,7,10,7,9,8,13,7,8,6,8,5,7,6,10,6,6,5,15/2,6,8,7,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,3,9,5,5,4,9/2,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,6,6,13,7,7,5,7,4,4,3,5,3,3,3,9/2,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,9/2,3,4,4,11,6,7,5,15/2,5,6,5,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,16 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,9,11/2,6,5,9,13/2,10,19/2,16,9,9,6,9,5,6,5,9,5,6,5,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,11/2,8,8,14,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,17/2,10,9,15,8,9,7,10,7,9,17/2,15,8,8,6,8,5,7,6,10,11/2,6,5,8,6,8,8,16,17/2,9,6,9,11/2,7,11/2,10,6,6,5,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,7,5,6,6,11,6,6,5,7,9/2,6,5,9,11/2,6,6,10,7,10,10,17,9,9,7,10,6,6,5,10,11/2,6,5,6,9/2,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,6,3,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,6,7/2,4,3,4,3,4,7/2,6,4,4,7/2,6,4,6,6,11 -15,8,17/2,6,8,5,11/2,5,8,5,11/2,4,7,5,6,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,2,4,3,3,3,6,4,7/2,2,4,3,3,3,5,4,9/2,4,6,4,6,5,10,6,11/2,4,5,3,3,3,6,4,4,3,4,3,4,3,5,3,7/2,3,4,3,4,4,6,4,4,4,6,4,13/2,7,14,8,15/2,5,7,4,11/2,5,8,5,6,5,7,5,13/2,7,14,8,8,6,9,6,7,7,13,8,9,7,11,8,12,12,21,11,23/2,8,12,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,7,5,6,4,6,5,8,5,5,5,7,5,13/2,6,12,6,6,4,6,4,5,4,7,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,5,11/2,5,8,5,7,7,11,6,13/2,5,7,5,6,5,7,4,4,3,6,4,9/2,4,9,5,5,4,6,4,9/2,4,7,4,5,4,7,5,13/2,6,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,8,5,7,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,25/2,12,22,12,23/2,8,12,7,15/2,7,12,7,15/2,6,8,6,15/2,7,14,8,8,6,9,5,6,6,10,6,13/2,6,8,6,17/2,8,15,8,9,6,10,6,7,6,10,6,13/2,5,8,5,7,6,13,7,13/2,5,8,5,6,6,11,7,8,7,12,8,23/2,12,20,11,11,7,10,6,7,6,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,8,5,13/2,6,11,7,8,6,10,7,21/2,10,19,10,10,8,12,7,8,7,12,7,15/2,6,11,7,10,10,19,10,11,8,12,8,21/2,10,18,10,25/2,11,19,13,19,19,36,19,19,13,20,12,27/2,12,20,11,12,9,14,9,12,11,19,10,21/2,8,10,7,9,8,13,7,8,7,11,8,11,11,21,11,11,8,12,7,9,7,14,8,17/2,6,10,7,9,9,16,9,19/2,7,10,6,8,7,14,8,9,8,14,10,27/2,14,24,12,25/2,9,14,8,10,8,13,7,15/2,6,10,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,12,8,21/2,10,20,10,21/2,8,11,7,8,7,11,6,13/2,5,9,6,8,7,14,8,17/2,6,9,6,8,7,12,7,8,7,13,9,13,13,24,12,25/2,9,13,7,8,7,13,7,8,6,8,6,15/2,7,10,6,6,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,4,3,4,3,5,3,5/2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,7,4,4,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,5,3,5/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,3,4,4,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,4,3,4,3,7/2,4,5,3,4,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,4,9,5,5,4,6,4,4,4,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,8,6,8,8,15 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,5/2,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,6,4,5,5,8,5,5,9/2,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,9/2,6,4,6,5,8,5,5,9/2,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,9/2,6,4,6,5,9,5,6,9/2,7,5,6,6,10,6,6,5,7,5,7,7,12,7,8,7,11,8,12,12,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,13/2,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,7,10,19/2,18,10,10,15/2,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,11,18,10,10,7,10,13/2,8,7,12,7,8,7,11,8,11,10,19,10,10,7,11,13/2,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,13,15/2,9,8,13,9,12,13,23,12,12,9,13,8,9,8,12,7,8,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,4,5/2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,3/2,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,7/2,5,4,5,5,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,7,7,14 -27,14,14,10,16,9,11,9,31/2,8,9,7,10,6,8,8,17,9,9,7,10,6,7,6,10,6,7,5,8,6,9,9,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,13,7,8,6,8,5,6,6,21/2,6,7,5,8,5,7,7,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,9/2,3,3,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,3,3,5,3,3,3,6,4,4,3,4,3,4,4,15/2,4,5,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,9,16,9,9,6,8,5,6,6,19/2,6,6,4,6,4,6,6,10,6,6,5,7,5,6,6,19/2,6,7,6,11,8,11,11,23,12,12,8,12,8,10,8,29/2,8,10,8,12,8,12,11,25,13,14,11,17,10,13,12,43/2,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,8,11,6,7,6,11,6,7,5,8,6,9,9,16,9,9,7,10,6,8,8,29/2,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,7,11,8,11,11,19,10,11,8,11,7,9,9,16,9,9,7,11,7,10,10,18,10,11,9,14,9,13,12,22,13,15,13,23,16,23,22,39,20,20,13,19,11,14,12,20,11,11,8,13,9,12,11,24,13,13,9,14,8,10,10,35/2,10,11,9,15,10,14,14,27,14,14,10,15,9,12,10,18,10,10,7,11,7,10,10,20,11,12,9,14,9,11,10,18,11,13,11,18,13,19,19,35,18,17,12,17,10,12,10,18,10,10,8,13,9,12,12,22,12,13,10,15,9,11,10,18,10,12,10,17,12,17,17,35,18,18,13,20,12,15,13,23,13,14,11,18,12,17,17,34,18,19,15,24,15,19,18,67/2,19,23,19,34,23,33,33,64,33,33,23,34,19,23,20,35,19,21,16,25,16,22,20,34,17,17,12,18,11,14,13,47/2,13,15,12,20,13,19,19,36,19,19,13,20,12,14,12,45/2,12,14,10,16,11,15,14,28,15,16,11,17,10,13,12,23,13,15,13,22,15,23,23,44,23,23,16,24,14,16,14,47/2,12,13,10,16,10,14,14,25,13,14,10,15,9,12,11,41/2,12,14,11,18,12,18,18,36,19,19,13,18,10,12,11,19,10,11,8,13,9,12,12,26,14,15,11,17,11,14,12,22,13,15,13,23,16,23,22,43,22,22,15,21,12,15,12,43/2,12,12,9,13,9,12,11,18,10,10,7,11,7,8,8,14,8,8,7,11,7,10,10,19,10,9,6,9,6,7,6,9,5,5,4,5,4,5,5,7,4,5,4,6,4,4,4,15/2,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,5/2,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,6,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,2,2,4,3,3,3,11/2,4,4,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,5,8,5,5,4,5,4,5,5,10,5,5,3,4,3,4,4,11/2,3,3,3,4,3,5,5,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,26 -15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,7,13/2,12,13/2,7,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,10,11/2,6,4,6,4,5,9/2,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,5,9,5,6,4,7,5,6,6,11,6,6,5,8,5,7,7,13,8,9,8,13,9,13,13,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,11/2,7,6,10,6,6,9/2,7,9/2,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,11/2,7,6,10,6,7,6,10,7,10,10,20,10,10,15/2,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,9,14,9,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,13,11,20,11,12,9,14,9,12,11,19,10,10,7,10,13/2,8,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,9,6,9,8,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,25,13,13,9,14,8,9,8,14,15/2,8,6,10,6,8,8,14,8,8,6,9,11/2,7,7,12,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,11/2,7,7,15,8,9,7,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,7,9,15/2,12,7,7,5,8,5,7,7,10,6,6,9/2,6,4,5,5,8,5,5,4,7,9/2,6,6,11,6,5,4,5,7/2,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1/2,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,7/2,4,4,5,4,6,11/2,11,6,6,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,7/2,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,9/2,8,5,5,5,8,11/2,8,8,15 -18,10,19/2,7,10,6,7,6,11,6,13/2,5,7,5,13/2,6,12,6,13/2,5,6,4,9/2,4,7,4,5,4,6,4,6,6,9,5,5,4,4,3,4,4,6,4,4,3,4,3,9/2,5,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,11,6,6,4,5,4,9/2,4,5,3,7/2,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,5,3,7/2,2,5,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,6,4,7/2,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,13/2,6,10,6,6,4,6,4,9/2,4,7,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,4,4,7,4,11/2,5,8,6,15/2,8,15,8,8,6,8,5,7,6,10,6,13/2,6,8,6,8,8,16,9,10,7,11,7,10,9,14,8,19/2,8,14,10,29/2,14,26,14,27/2,10,14,8,19/2,8,14,8,9,7,11,7,17/2,8,15,8,17/2,6,8,5,6,6,9,6,13/2,5,8,5,7,7,13,7,8,6,8,5,11/2,5,8,4,9/2,4,6,4,6,6,10,6,6,5,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,15,8,17/2,6,8,5,6,5,8,5,5,4,6,4,5,5,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,7,5,8,8,14,8,15/2,6,8,5,6,6,11,6,13/2,5,8,6,15/2,8,13,7,15/2,6,10,6,8,8,15,9,21/2,9,16,11,15,15,26,14,27/2,9,14,8,19/2,8,14,8,8,6,9,6,17/2,8,15,8,17/2,6,9,6,15/2,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,15/2,7,12,7,7,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,24,12,12,8,12,7,17/2,8,12,7,15/2,6,9,6,17/2,8,15,8,17/2,6,10,6,8,7,12,7,17/2,7,11,8,23/2,12,23,12,25/2,9,13,8,19/2,8,16,9,10,8,13,8,23/2,12,23,12,27/2,10,16,10,13,12,22,13,31/2,13,22,15,22,22,43,22,22,15,22,13,15,13,23,13,14,11,17,11,14,13,23,12,12,8,12,8,10,9,16,9,21/2,8,14,9,13,13,24,13,27/2,10,14,8,10,9,16,9,19/2,7,11,7,10,10,18,10,10,8,12,8,19/2,9,16,9,21/2,9,15,10,31/2,16,31,16,16,11,16,9,11,10,16,9,19/2,8,12,8,10,10,17,9,19/2,7,10,6,17/2,8,14,8,9,7,12,8,25/2,12,24,12,25/2,8,12,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,21/2,9,16,11,31/2,15,29,15,29/2,10,15,9,21/2,9,15,8,8,6,9,6,17/2,8,12,7,7,5,7,4,11/2,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,4,3,4,3,7,4,4,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,13/2,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,7/2,4,7,4,7/2,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,9,5,5,4,6,4,9/2,4,7,4,4,3,5,4,9/2,4,8,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,17 -15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,11/2,10,11/2,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,9/2,5,7/2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,9/2,9,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,5/2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,11/2,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,9/2,6,7,13,7,7,5,7,9/2,6,5,8,5,5,5,7,5,7,7,14,8,8,6,9,6,8,15/2,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,8,5,5,5,7,5,7,7,13,7,8,11/2,7,9/2,5,5,7,4,4,7/2,5,4,5,5,9,5,6,4,6,4,5,9/2,8,9/2,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,9,5,6,4,7,5,6,13/2,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,22,12,12,8,12,7,8,7,11,13/2,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,15/2,11,11,20,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,11/2,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,17/2,14,17/2,11,10,18,21/2,12,11,18,12,18,18,35,18,18,25/2,18,11,13,11,19,11,12,9,14,9,12,11,19,10,10,7,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,15,8,9,7,10,13/2,8,8,14,8,9,8,13,9,13,13,26,14,14,19/2,14,8,9,8,14,8,8,13/2,10,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,10,10,20,10,10,7,10,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,15/2,9,8,12,7,7,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,9/2,7,5,7,13/2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,12,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,7/2,6,7/2,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,4,5,9/2,8,11/2,8,8,15 -25,13,14,10,29/2,8,10,8,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,10,6,6,5,8,6,9,9,13,7,8,6,15/2,5,6,6,8,5,6,5,7,5,7,6,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,15/2,5,6,5,9,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,5,3,3,3,5,3,4,4,4,3,3,3,11/2,4,6,6,10,5,5,4,5,3,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,15/2,5,7,7,12,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,6,5,17/2,6,9,9,14,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,6,10,6,6,4,13/2,4,6,6,10,6,7,6,21/2,8,12,12,23,12,12,8,12,7,9,8,13,8,9,8,25/2,8,12,12,24,13,13,10,31/2,10,13,12,22,12,14,12,21,14,21,21,39,20,20,14,41/2,12,15,13,21,11,12,10,31/2,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,23/2,8,10,10,19,10,10,8,23/2,7,8,7,12,7,7,5,8,6,8,8,15,8,8,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,13,9,13,8,9,8,12,7,7,6,9,6,8,8,16,8,8,6,19/2,6,8,7,13,7,8,6,21/2,7,10,11,21,11,11,8,23/2,7,9,8,16,9,9,7,11,8,11,11,20,11,12,9,14,9,12,11,20,12,14,12,43/2,14,21,21,40,20,20,14,39/2,12,14,12,19,10,11,8,27/2,9,12,12,21,11,12,8,25/2,8,10,9,16,9,11,9,29/2,10,14,14,24,13,14,10,29/2,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,27/2,8,10,9,18,10,12,10,37/2,12,18,18,35,18,18,12,37/2,10,12,10,19,10,11,9,14,9,12,12,22,12,13,9,14,9,11,10,17,10,11,10,33/2,11,16,16,33,17,18,12,18,11,14,12,23,13,14,11,37/2,12,17,17,34,18,19,14,47/2,15,20,18,32,18,21,18,32,22,32,32,62,32,32,22,65/2,19,23,20,33,18,19,15,24,15,20,19,34,18,18,13,39/2,12,16,14,24,14,16,13,43/2,14,19,19,36,19,19,14,41/2,12,14,12,22,12,13,10,15,10,14,14,27,14,15,11,35/2,11,14,13,24,14,17,14,24,16,23,23,46,24,24,16,49/2,14,17,14,24,13,14,11,17,11,15,14,26,14,14,10,29/2,9,12,11,20,11,13,10,17,12,17,17,35,18,18,12,35/2,10,12,10,20,11,11,8,27/2,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,23,15,22,22,43,22,22,15,43/2,12,15,13,21,11,12,9,27/2,9,12,11,18,10,10,7,21/2,6,8,7,13,8,9,8,25/2,8,12,11,19,10,10,7,21/2,6,8,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,4,4,8,5,5,4,6,4,5,5,10,6,6,4,13/2,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,9/2,3,4,4,4,3,3,3,9/2,3,4,5,8,5,5,3,4,3,3,3,6,4,4,3,3,2,2,2,5,3,3,3,9/2,3,4,3,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,7/2,2,3,3,7,4,4,3,9/2,2,2,2,5,3,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,7/2,3,4,3,6,4,4,4,11/2,4,5,5,7,4,5,4,11/2,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,9,20,10,10,7,9,6,7,6,10,6,6,4,13/2,4,6,5,8,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,12,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,6,12,7,8,6,10,7,9,8,12,7,8,7,25/2,9,14,14,26 -17,9,10,7,10,6,7,6,11,6,7,11/2,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,9/2,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,6,6,9,11/2,6,11/2,8,6,8,8,16,9,9,7,10,7,9,8,15,9,10,9,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,8,5,6,6,9,11/2,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,7,5,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,7,15/2,15,8,8,6,8,5,6,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,10,6,8,7,11,6,7,5,8,11/2,7,7,12,7,7,6,9,6,7,6,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,22,12,12,17/2,13,8,10,8,15,9,10,8,12,8,12,12,23,12,13,10,16,10,13,12,21,12,14,12,22,15,22,22,42,22,22,15,22,13,15,13,22,12,13,10,16,10,14,13,23,12,13,9,14,17/2,11,10,16,19/2,11,9,14,19/2,13,13,24,13,13,9,14,8,9,8,15,8,9,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,12,10,16,11,16,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,17,9,10,7,11,7,10,9,16,9,11,9,16,21/2,15,15,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,11/2,6,5,8,6,8,8,13,7,7,5,7,9/2,6,9/2,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,3,2,2,2,4,3,3,7/2,6,7/2,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,9,5,6,5,9,7,10,10,18 -25,13,14,10,15,9,10,9,16,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,11/2,4,7,5,7,6,12,7,7,5,7,4,11/2,5,8,5,6,5,8,6,15/2,8,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,8,5,5,4,6,4,9/2,4,6,4,9/2,3,4,3,4,4,9,5,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,5,4,5,3,4,4,7,4,4,3,4,3,7/2,4,7,4,4,3,5,4,9/2,4,8,5,11/2,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,13/2,5,8,5,6,5,10,6,6,5,9,6,17/2,8,14,8,8,6,9,6,13/2,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,11/2,5,9,6,13/2,6,10,7,11,11,21,11,11,8,11,7,9,8,13,8,9,8,12,8,12,12,23,12,27/2,10,15,10,25/2,12,23,13,15,13,21,14,43/2,22,40,21,21,14,21,12,29/2,12,21,12,13,10,16,10,27/2,12,22,12,12,9,12,7,17/2,8,13,8,17/2,7,11,7,10,10,18,10,10,7,10,6,7,6,12,7,8,6,9,6,8,8,14,8,8,6,9,6,15/2,7,12,7,9,7,12,8,12,12,23,12,25/2,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,17/2,7,12,8,11,11,22,12,12,8,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,27/2,12,21,14,41/2,20,40,20,41/2,14,20,12,27/2,12,20,11,11,9,14,9,12,11,21,11,12,9,14,8,21/2,9,17,10,21/2,8,14,10,27/2,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,18,10,11,8,12,8,19/2,9,17,10,12,10,18,12,35/2,18,34,17,17,12,18,10,12,10,19,10,23/2,9,14,9,13,13,24,13,27/2,10,15,9,11,10,18,10,23/2,10,17,12,17,17,32,17,35/2,12,19,11,27/2,12,22,12,27/2,11,18,12,17,17,33,18,19,14,23,14,37/2,17,31,18,43/2,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,39/2,15,24,15,20,19,34,18,19,13,20,12,31/2,14,24,14,31/2,12,21,14,39/2,19,36,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,29/2,14,24,14,17,14,23,16,23,23,46,24,47/2,16,24,14,17,14,25,14,15,11,17,11,15,14,26,14,14,10,15,9,12,11,20,11,25/2,10,18,12,35/2,18,35,18,18,12,18,10,12,11,19,10,23/2,9,14,9,13,13,25,13,27/2,10,16,10,14,13,23,13,31/2,13,23,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,23/2,11,19,10,21/2,8,12,7,17/2,8,14,8,9,7,12,8,23/2,11,20,10,10,7,10,6,15/2,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,7/2,4,5,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,6,4,7/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,5,5,9,5,11/2,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,11,8,21/2,10,19,10,10,7,10,6,7,6,10,6,11/2,4,6,4,11/2,5,8,5,5,4,5,3,7/2,3,6,4,4,3,6,4,11/2,6,12,7,7,5,7,4,11/2,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,17/2,8,14,10,27/2,14,26 -25,13,14,10,15,9,10,9,16,9,10,7,11,7,10,9,16,8,8,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,9/2,7,5,7,13/2,12,7,7,5,7,9/2,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,9,11/2,6,11/2,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,11,7,9,8,14,8,9,8,12,8,12,12,23,12,13,10,15,10,13,12,23,13,15,13,21,29/2,22,22,41,21,21,14,21,12,14,12,21,12,13,10,16,10,13,12,22,12,12,9,12,7,8,15/2,13,15/2,8,7,11,7,10,10,18,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,15/2,8,7,12,8,11,11,22,12,12,17/2,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,40,21,21,14,20,12,14,12,20,11,12,9,14,9,12,11,21,11,12,9,14,8,10,9,17,10,11,9,14,10,14,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,19,10,11,8,12,8,10,9,17,10,12,10,18,12,18,17,33,17,17,12,17,10,12,11,19,21/2,12,9,15,10,13,13,24,13,14,10,15,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,19,11,14,12,21,12,13,11,18,12,17,17,33,18,19,14,22,14,18,17,31,18,22,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,19,29/2,23,29/2,19,18,34,18,19,13,20,12,15,14,24,14,16,25/2,21,14,20,19,37,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,14,27/2,24,14,16,14,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,11,18,11,15,14,26,14,14,10,15,9,12,11,20,11,12,10,18,12,18,18,34,18,18,12,18,10,12,11,19,21/2,12,9,14,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,22,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,12,11,20,21/2,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,15/2,11,13/2,8,6,10,6,6,9/2,7,4,5,5,8,9/2,5,4,6,4,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,9,8,14,10,14,14,26 -50,26,27,19,28,16,20,17,30,16,18,13,21,13,18,17,31,16,16,11,16,10,12,10,18,10,11,9,16,10,14,14,27,14,15,10,15,9,11,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,10,9,16,9,11,9,16,10,14,14,27,14,14,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,13,7,7,5,8,5,7,7,12,7,7,5,8,6,8,8,14,8,9,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,12,8,11,11,21,11,12,9,14,9,11,10,18,10,12,10,16,11,15,15,28,15,15,11,17,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,8,10,10,18,11,13,11,20,14,21,21,41,21,21,15,22,13,17,15,27,15,17,14,24,16,23,23,44,23,25,19,30,19,25,23,44,25,29,24,42,28,42,42,82,41,41,27,40,23,28,23,41,22,24,18,30,19,25,23,44,23,23,16,24,14,16,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,17,11,16,15,28,15,15,11,18,11,14,13,23,13,15,13,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,12,20,13,18,17,32,17,17,12,18,11,15,14,25,14,16,13,22,15,21,21,42,22,23,16,25,15,18,16,28,15,17,13,22,15,22,21,41,22,23,17,27,17,22,21,39,22,26,22,39,27,40,40,80,41,41,27,40,22,26,22,39,21,23,17,28,17,23,22,42,22,23,17,26,16,20,18,32,18,21,17,28,18,26,25,48,25,26,18,27,16,20,17,31,17,18,14,24,15,20,19,37,20,21,15,24,15,19,17,32,19,23,19,34,23,34,33,65,33,33,22,33,19,24,21,37,20,22,17,29,19,26,25,47,25,26,18,28,17,21,19,34,19,22,19,33,22,32,32,62,32,33,23,36,21,26,23,41,22,25,20,34,23,33,33,64,34,36,27,43,26,35,33,62,35,42,35,62,42,62,62,123,62,62,42,62,35,43,36,65,34,37,28,45,28,37,35,67,35,36,26,40,23,29,26,48,26,30,24,41,27,38,37,73,37,38,26,38,22,26,22,40,22,24,19,31,20,28,27,52,27,29,21,34,21,28,26,48,27,31,26,46,31,45,45,89,45,46,31,47,27,33,28,49,26,28,21,35,22,30,28,52,27,27,19,29,18,23,21,38,21,24,20,34,23,34,34,67,34,35,24,36,20,24,20,36,20,22,17,27,18,26,25,48,25,26,19,31,19,26,24,46,26,30,25,43,29,43,43,85,43,43,29,43,24,29,24,43,23,24,18,28,17,22,21,39,20,21,15,23,14,17,15,26,15,17,14,24,16,22,21,41,21,21,14,21,12,14,11,19,10,11,8,13,8,9,8,15,8,9,7,10,6,8,7,11,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,10,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,8,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,10,10,18,11,13,11,20,13,19,19,37,19,20,14,20,12,14,12,20,11,11,8,12,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,13,8,11,10,17,10,11,9,14,9,12,12,22,12,14,11,17,11,15,14,26,15,17,15,26,18,26,26,50 +50,26,26,18,26,15,18,16,29,16,17,13,20,13,17,16,30,16,16,11,15,9,12,10,18,10,11,8,13,9,12,12,24,12,12,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,7,12,7,9,8,14,9,13,13,26,14,15,11,18,12,16,15,29,17,20,17,29,19,28,28,55,28,29,20,29,16,19,16,27,15,16,12,18,12,16,15,29,15,14,10,14,9,11,9,16,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,7,7,12,7,7,5,8,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,11,10,18,10,10,8,12,8,12,11,21,11,12,9,13,8,10,9,17,10,12,10,18,12,17,17,33,17,17,12,18,11,13,11,20,11,13,10,16,11,15,15,29,16,17,13,20,13,18,17,32,18,21,18,32,22,33,33,66,33,33,23,34,19,23,19,34,18,20,16,27,17,23,22,43,23,24,17,26,15,19,17,31,17,20,16,28,19,27,27,52,27,27,19,28,16,19,16,28,15,17,13,21,14,19,18,33,18,19,14,23,14,18,17,32,18,21,17,30,20,30,30,59,30,31,21,31,18,21,18,31,17,18,13,21,13,17,16,29,15,15,10,15,9,11,10,17,10,11,9,16,11,15,15,28,15,15,10,14,9,11,9,16,9,10,8,14,9,13,12,23,12,13,10,16,10,14,14,26,15,19,16,29,20,29,29,56,29,29,20,30,17,21,17,30,17,19,15,24,15,21,20,39,20,21,14,21,13,16,14,26,15,17,14,24,16,23,23,44,23,23,16,24,14,18,16,30,17,19,16,28,19,27,26,51,27,28,21,33,21,28,27,51,29,34,28,50,34,50,50,98,50,50,34,51,29,36,31,56,30,33,25,40,26,36,34,66,35,37,27,42,25,33,30,57,32,37,31,55,37,54,54,107,54,55,38,59,34,42,37,68,37,42,33,57,37,53,52,102,53,57,42,69,42,57,53,102,57,68,56,100,67,100,100,199,100,100,67,101,57,68,57,102,53,57,43,70,43,58,54,104,53,55,39,60,35,44,39,73,40,46,36,62,40,58,56,110,56,56,39,59,34,42,36,64,34,38,29,47,30,42,40,76,39,41,29,46,27,35,32,59,33,38,31,54,36,54,54,106,54,54,36,54,30,36,30,52,28,30,23,37,23,31,29,55,28,29,21,32,19,25,23,42,23,26,21,37,25,36,35,68,35,35,24,36,21,26,23,41,22,24,19,32,20,28,26,50,26,27,19,30,18,24,23,43,24,28,23,40,26,38,37,72,37,37,25,38,22,26,22,39,21,23,17,28,17,23,21,40,21,21,15,22,13,17,15,27,15,17,14,23,15,21,20,39,20,21,14,21,13,16,15,27,15,17,14,23,15,21,20,39,20,21,16,25,16,21,20,37,21,25,21,38,26,39,39,76,39,39,26,39,23,28,24,42,23,25,19,32,21,30,29,55,29,30,22,34,20,26,24,44,24,28,23,39,26,37,37,72,37,37,26,40,23,28,25,45,24,27,21,36,23,33,32,62,32,34,25,41,25,34,32,60,34,41,34,61,41,61,62,123,62,62,42,63,35,42,35,63,33,35,26,43,27,37,34,65,33,34,24,37,22,27,24,43,24,27,21,36,24,34,33,65,33,34,24,36,21,25,21,38,21,23,18,29,18,25,24,46,24,26,19,29,18,23,21,38,22,26,21,37,25,37,37,73,37,36,24,36,21,25,21,38,20,22,17,29,18,25,24,46,24,24,17,27,16,21,19,34,19,21,17,28,19,27,26,51,26,27,18,27,16,19,16,29,16,17,13,21,14,19,18,35,19,20,14,22,14,18,17,31,18,21,18,31,22,33,33,65,33,32,22,32,18,21,18,32,17,19,15,24,15,21,19,36,19,19,13,19,11,14,13,23,13,15,12,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,19,10,11,8,12,7,9,9,16,9,10,9,15,10,15,15,28,15,16,12,20,13,17,15,28,16,19,16,27,18,26,26,50 +25,13,14,10,13,8,9,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,14,14,28,14,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,5,8,5,6,5,8,5,5,4,7,4,6,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,10,9,16,10,11,10,16,11,17,17,34,17,17,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,15,11,16,9,11,9,16,9,10,8,13,8,11,11,20,11,11,8,11,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,26,14,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,16,17,13,21,13,18,17,34,18,19,14,21,13,17,16,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,29,19,27,26,51,27,29,22,35,22,29,27,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,27,29,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,30,17,21,18,32,17,19,15,24,15,21,20,38,20,21,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,19,13,18,18,34,18,18,13,18,11,13,12,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,19,13,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,11,7,8,8,14,8,9,8,12,8,11,11,20,11,11,8,13,8,11,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,28,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,19,14,21,12,15,13,23,13,14,11,18,12,17,16,32,17,18,13,21,13,18,17,30,17,21,18,31,21,31,31,62,32,32,22,32,18,21,18,32,17,18,14,22,14,19,18,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,17,33,17,18,12,19,11,13,11,19,11,12,9,15,10,13,13,24,13,14,10,15,9,12,11,19,11,14,11,19,13,19,19,37,19,19,13,19,11,13,11,20,11,12,9,15,10,13,13,23,12,12,9,14,8,11,10,17,10,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,11,8,10,10,18,10,10,7,12,8,10,9,16,10,11,10,16,11,17,17,33,17,17,12,17,10,11,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +25,13,14,10,13,8,9,8,15,8,8,6,10,7,9,9,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,28,14,14,10,16,9,11,9,14,8,8,6,10,7,9,9,15,8,8,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,8,6,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,31,16,16,11,16,10,12,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,16,11,16,10,12,10,16,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,25,13,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,15,16,12,21,13,18,17,34,18,19,14,21,13,17,15,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,28,19,27,26,51,27,28,21,35,22,30,28,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,28,30,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,29,17,21,18,32,17,18,14,24,15,21,20,38,20,20,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,18,12,18,18,34,18,18,13,18,11,13,11,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,20,14,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,11,7,8,8,15,9,10,8,12,8,11,11,20,11,12,9,13,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,29,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,20,14,21,12,15,13,24,13,14,11,18,12,17,16,32,17,18,14,21,13,18,17,30,17,20,17,31,21,31,31,61,31,32,22,32,18,21,18,31,17,18,14,22,14,18,17,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,18,33,17,18,12,19,11,13,11,19,11,12,9,15,10,14,13,24,13,14,10,15,9,12,11,19,11,14,12,19,13,19,19,38,20,20,13,19,11,14,12,20,11,12,9,15,10,14,13,23,12,12,9,14,8,10,9,17,10,12,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,12,8,10,9,17,10,12,10,16,11,17,17,33,17,17,12,17,10,12,10,17,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,9,13,13,25 +17,9,10,7,9,6,7,6,10,6,6,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,6,9,6,6,5,7,5,7,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,11,6,8,6,11,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,20,10,11,8,11,7,8,7,11,6,7,6,9,6,8,7,14,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,17,33,17,17,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,10,14,9,12,10,19,11,13,11,19,13,19,19,36,19,19,14,20,12,15,13,24,13,15,12,19,13,18,18,34,18,19,14,24,15,20,19,34,20,23,20,35,23,34,34,67,34,34,23,34,20,23,20,35,19,20,15,24,15,20,19,36,18,19,14,20,12,15,14,25,14,16,13,22,14,20,20,37,19,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,14,10,16,10,12,11,20,12,13,11,19,13,19,18,36,19,19,13,18,11,13,11,17,10,11,8,13,8,11,10,19,10,10,8,11,7,9,8,15,8,10,8,12,8,12,12,23,12,12,9,12,8,9,8,14,8,9,7,11,7,9,9,18,10,10,7,11,7,8,8,15,8,10,8,14,10,14,13,25,13,13,9,14,8,10,8,13,8,8,6,10,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,7,13,8,9,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,10,20,10,11,8,12,8,10,8,15,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,16,9,10,8,12,8,12,11,21,12,12,10,15,9,12,11,20,12,14,12,21,14,21,21,41,21,22,15,22,12,14,12,21,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,8,9,8,12,8,12,12,22,12,12,8,13,8,9,8,13,8,8,6,10,7,9,9,17,9,9,7,10,6,8,8,13,8,9,8,13,9,13,13,26,14,14,9,13,8,10,8,14,8,9,7,10,7,10,9,16,9,9,6,9,6,7,6,12,7,8,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,7,5,8,5,7,6,12,7,8,7,11,8,12,12,22,12,12,8,12,7,9,7,12,7,8,6,8,6,7,7,13,7,7,5,7,4,6,5,8,5,6,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,4,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,6,6,10,6,6,6,10,7,9,9,17 +26,13,13,9,14,8,10,9,15,8,8,6,9,6,9,8,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,7,5,7,7,13,7,7,5,8,6,8,8,14,8,10,9,15,10,14,14,28,15,15,11,16,9,10,8,13,8,9,7,11,7,9,9,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,12,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,16,11,17,17,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,12,21,11,11,8,12,7,9,8,17,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,17,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,13,7,6,4,6,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,8,6,8,7,14,8,10,9,15,10,15,15,29,15,16,11,16,9,11,10,15,8,9,7,12,8,10,10,20,11,11,8,12,7,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,25,13,14,10,16,10,14,13,25,14,17,15,26,17,25,25,49,25,25,17,26,15,18,15,29,16,17,13,21,13,18,17,34,18,18,13,21,13,17,15,28,16,19,16,28,19,29,29,53,27,28,20,30,18,22,19,35,19,21,17,28,19,27,26,50,27,29,22,35,22,29,27,51,29,34,29,52,35,51,50,100,51,51,34,51,29,35,29,53,28,30,22,36,23,31,29,53,27,28,20,30,18,22,20,38,21,23,19,32,21,30,29,55,28,28,19,29,17,20,17,32,17,18,14,22,14,19,19,38,20,20,15,23,14,17,16,30,17,20,16,28,19,28,27,54,28,28,19,27,15,18,15,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,11,18,13,19,19,33,17,17,12,18,11,13,11,21,11,12,9,15,10,14,13,26,14,14,10,16,10,13,12,22,12,14,12,20,13,19,19,36,19,19,13,20,11,13,11,19,10,11,9,14,9,11,10,22,11,11,8,12,7,8,7,14,8,9,7,12,8,11,11,21,11,11,8,12,7,9,8,16,9,9,7,12,8,12,11,20,11,11,8,12,8,11,10,18,11,13,11,20,13,19,19,37,19,19,13,20,12,14,12,23,13,14,11,17,11,15,14,29,15,15,11,17,11,14,12,21,12,14,12,20,14,20,19,36,19,19,13,20,12,15,13,24,13,14,11,18,12,17,16,31,17,18,14,22,13,17,16,29,17,20,17,31,21,31,31,61,31,31,21,32,18,22,18,30,16,18,14,22,14,19,18,33,17,18,13,19,12,15,13,22,12,14,11,18,12,18,18,33,17,18,12,18,11,13,11,20,11,12,9,14,9,12,12,25,13,13,10,15,9,12,11,20,12,14,12,20,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,13,24,13,13,9,13,8,10,9,18,10,12,9,15,10,13,13,27,14,14,10,14,8,9,8,16,9,10,8,12,8,10,10,17,9,9,7,11,7,9,8,17,10,12,10,16,11,16,17,31,16,17,12,18,10,12,10,18,10,10,8,12,8,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,8,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,7,4,5,5,10,6,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,6,9,6,9,9,17,9,10,7,10,6,7,6,9,5,6,4,7,5,6,6,11,6,7,5,7,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,9,9,14,8,8,6,9,6,8,8,15,8,10,9,15,10,14,14,28,15,15,10,15,9,10,9,16,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,12,10,16,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,29,20,29,28,56,29,29,20,29,17,20,17,30,16,17,13,21,13,18,17,30,16,16,12,17,10,13,12,21,12,13,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,10,8,13,8,11,11,21,11,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,15,9,10,9,15,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,12,7,8,7,11,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,13,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,8,7,11,7,10,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,8,11,7,9,8,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15 +18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,5,4,5,5,9,5,6,4,6,4,5,5,9,6,7,6,10,7,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,6,4,6,6,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,8,7,10,7,11,11,20,11,12,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,6,5,8,6,9,9,14,8,8,6,9,6,7,6,10,6,7,6,10,7,11,11,17,9,10,8,11,7,10,10,18,10,12,10,18,12,17,17,34,18,18,12,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,15,9,11,10,19,11,14,12,19,13,19,19,36,19,19,13,20,12,14,13,24,13,15,12,20,13,18,18,33,18,20,15,23,15,20,18,35,20,24,20,35,24,35,34,67,34,34,23,35,20,24,20,35,19,20,15,25,16,21,20,36,19,20,14,21,12,15,14,25,14,16,13,22,14,20,19,37,19,19,13,19,11,13,12,21,11,12,9,15,10,13,12,24,13,14,10,15,9,12,11,21,12,14,11,19,13,18,18,35,18,18,12,18,10,12,10,18,10,10,8,12,8,10,10,20,10,10,8,12,8,10,9,14,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,13,9,14,14,24,13,14,9,14,8,10,8,13,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,13,8,9,8,14,10,14,13,26,14,14,9,13,8,9,8,15,9,10,8,11,8,11,10,19,10,10,8,12,7,9,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,10,9,17,9,10,8,13,8,11,11,21,11,12,9,15,9,12,11,20,12,14,12,21,14,21,21,42,21,21,15,21,12,14,12,20,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,9,10,8,14,9,12,12,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,17,9,9,7,11,7,8,7,13,8,9,8,13,9,12,13,25,13,14,10,14,8,10,8,15,8,8,6,11,7,9,9,17,9,10,7,9,6,8,7,12,7,8,6,10,7,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,11,20,11,11,8,11,7,8,7,12,7,7,5,8,5,6,6,13,7,8,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,3,3,4,4,4,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,10,7,10,10,18 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,8,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,4,7,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,15,8,9,7,10,6,9,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,8,12,8,11,10,18,10,10,8,12,8,9,9,16,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,13,10,17,11,15,15,27,15,16,12,20,13,17,16,29,17,20,17,29,20,29,29,56,28,28,19,29,17,20,17,29,16,17,13,21,13,18,17,31,16,17,12,18,11,13,12,21,12,14,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,17,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,6,7,7,12,7,8,7,11,8,12,12,21,11,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,11,7,8,7,12,8,12,11,22,12,12,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,9,7,11,7,9,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,17,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,11,7,8,8,13,8,9,7,12,8,11,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,7,10,11,21,11,11,8,12,7,9,7,13,7,7,6,9,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,7,7,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,11,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,15 +27,14,13,9,13,8,9,8,15,8,9,6,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,4,7,7,11,6,6,5,8,6,8,8,14,8,9,8,14,10,15,15,25,13,14,10,14,8,10,8,14,8,9,7,11,7,9,9,15,8,8,5,6,4,5,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,15,8,9,6,9,6,7,6,10,6,6,5,9,6,7,7,11,6,7,6,9,6,7,6,11,6,7,6,9,6,9,10,19,10,10,8,12,7,8,7,12,7,7,6,10,7,10,10,16,9,9,7,12,8,10,9,16,9,11,10,17,12,17,17,31,16,16,11,16,9,11,10,17,9,10,8,13,9,12,11,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,14,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,9,17,9,10,8,12,7,9,9,16,9,11,9,16,11,15,15,32,16,16,11,17,10,12,10,18,10,11,8,13,8,11,10,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,7,11,6,7,6,9,6,8,8,14,8,10,9,15,10,15,15,32,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,17,9,9,7,11,7,9,8,13,8,9,8,13,9,13,13,21,11,11,8,13,8,10,9,15,9,11,9,16,11,16,15,26,14,15,11,18,11,15,14,27,15,18,15,25,17,24,24,50,25,25,17,26,15,18,16,28,15,17,13,22,14,19,18,32,17,18,13,21,13,16,15,28,16,20,17,29,20,29,29,53,27,28,20,30,17,21,19,34,19,22,18,30,20,28,27,48,25,27,21,34,21,29,27,52,29,34,29,51,34,51,51,100,50,50,34,51,29,34,29,52,28,30,23,37,23,32,30,55,28,29,21,32,19,23,21,38,21,24,19,32,21,29,29,55,28,29,20,30,17,21,18,32,17,19,14,23,14,19,18,34,18,20,15,23,14,18,16,30,17,20,17,29,19,28,27,51,26,26,18,26,15,17,15,26,14,15,11,18,12,16,15,30,16,17,12,18,11,14,12,22,13,15,12,21,14,20,19,33,17,18,13,19,11,14,12,21,11,12,9,14,9,12,12,25,13,14,10,16,10,12,11,20,12,14,12,20,14,20,20,37,19,18,12,18,10,12,10,18,10,10,8,12,8,11,10,22,12,12,9,13,8,10,8,14,8,9,7,12,8,12,11,23,12,12,9,14,9,11,9,16,9,10,8,13,9,12,11,23,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,38,19,19,13,20,12,14,12,22,12,13,11,18,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,13,18,18,37,19,20,14,22,13,15,13,24,13,15,12,19,12,17,16,31,16,17,13,21,13,18,16,30,17,20,17,30,20,30,30,62,31,31,21,30,17,21,17,30,16,17,12,19,12,16,16,33,17,18,13,19,11,14,13,24,13,14,11,19,13,18,18,34,18,18,12,18,10,12,11,19,10,11,9,14,9,12,11,24,13,13,9,14,9,11,10,18,10,12,10,17,12,18,18,36,19,19,13,19,11,14,12,22,12,13,10,16,10,14,13,25,13,13,9,14,9,11,10,17,9,10,8,13,9,12,12,27,14,14,10,15,9,11,9,16,9,9,7,12,8,10,9,18,10,10,7,11,7,9,9,16,9,11,9,15,11,16,16,29,15,15,10,15,9,11,10,17,9,10,8,12,7,9,9,19,10,10,7,10,6,8,8,14,8,9,7,10,7,10,10,18,9,9,6,9,6,7,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,26 +14,8,7,5,7,4,5,5,8,5,5,4,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,4,5,4,5,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,11,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,12,10,16,11,15,14,25,14,15,11,18,11,15,15,27,16,18,15,27,18,27,27,52,26,26,18,27,15,18,16,27,15,16,12,19,12,17,16,29,15,16,11,17,10,12,11,20,11,13,10,17,11,16,15,29,15,15,11,16,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,12,8,10,9,16,9,11,9,15,10,15,14,27,14,14,10,14,8,9,8,14,8,9,6,10,7,9,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,10,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,16,9,11,9,16,11,16,16,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,9,17,9,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14 +15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,6,8,9,15,8,8,6,8,5,6,5,8,5,6,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,3,4,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,7,5,6,6,8,5,6,5,9,6,8,8,18,10,10,7,10,6,8,6,11,6,7,5,8,5,7,6,10,6,6,5,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,19,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,8,8,12,7,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,10,9,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,19,11,12,10,17,11,16,15,27,15,16,12,19,12,16,16,29,17,20,16,29,19,28,29,55,28,28,19,28,16,20,17,29,15,16,13,20,13,18,17,31,16,17,12,18,11,13,12,22,12,14,11,17,12,17,16,31,16,16,11,17,10,12,10,18,10,10,8,12,8,10,10,18,10,10,8,13,8,10,9,16,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,16,9,10,7,11,7,10,9,17,9,10,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,22,12,12,8,10,6,8,7,11,6,6,5,8,5,7,6,13,7,8,6,8,5,5,5,9,5,6,5,7,5,8,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,8,7,13,7,8,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,17,11,16,17,35,18,17,12,17,10,11,10,16,9,10,7,10,7,9,9,18,10,10,7,11,7,9,8,13,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,10,7,10,11,20,11,11,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,14 +12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,7,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,5,8,6,8,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,6,3,3,3,3,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,13,8,9,8,15,8,9,8,13,8,12,11,20,11,12,9,14,9,12,12,21,12,15,12,21,14,21,21,41,21,21,14,21,12,15,12,21,11,12,10,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,5,9,5,6,5,9,6,9,8,14,7,7,5,8,5,5,5,9,5,6,4,7,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,26,13,13,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,7,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,8,5,8,5,5,5,8,5,5,4,5,4,5,4,8,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10 +19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,5,4,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,4,4,3,3,3,4,3,4,4,8,5,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,12,8,11,11,22,11,11,8,11,7,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,9,9,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,7,5,7,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,8,14,8,8,6,9,6,8,8,12,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,8,5,5,4,5,3,4,3,7,4,4,4,6,4,6,5,9,5,6,5,8,5,7,6,12,7,9,7,12,8,12,11,22,12,12,8,12,7,8,7,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,5,11,6,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,17,17,32,17,17,12,18,11,13,11,18,10,11,8,13,9,13,13,21,11,12,9,14,9,11,11,20,11,13,11,18,12,18,19,36,19,19,13,20,12,15,13,24,13,15,12,20,13,19,18,32,17,19,14,23,15,20,19,34,19,23,19,33,23,34,34,66,33,33,23,34,19,23,19,34,18,20,15,24,15,20,19,36,19,19,14,21,13,16,14,25,14,16,12,20,14,20,19,35,18,18,12,18,11,13,11,20,11,12,9,14,9,12,11,21,11,12,9,14,9,12,11,18,10,12,10,18,12,17,17,34,18,18,12,18,11,13,11,19,10,11,8,12,8,11,10,19,10,10,8,12,7,8,7,14,8,10,8,14,9,13,13,22,12,12,8,12,7,9,7,14,8,8,6,10,7,9,8,16,9,9,7,11,7,8,7,14,8,10,8,14,10,14,13,26,14,14,9,13,8,9,8,12,7,8,6,9,6,9,8,16,8,8,6,8,5,6,5,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,16,9,9,7,10,6,7,7,13,7,8,7,12,8,12,12,26,14,14,10,14,9,11,9,16,9,10,7,11,8,11,11,18,10,11,8,12,7,9,9,16,9,9,7,12,8,11,11,24,13,13,9,14,9,11,10,17,10,11,8,13,9,12,11,20,11,12,9,14,9,12,11,19,11,13,11,18,13,19,19,42,21,21,14,20,12,14,12,19,10,10,8,12,8,11,11,22,12,12,9,13,8,11,10,16,9,10,8,14,10,14,13,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,9,8,15,8,9,7,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,6,10,7,10,9,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,14,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,4,3,2,2,2,2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16 +12,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,5,3,4,3,4,2,3,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,23,12,12,8,13,8,10,8,15,8,9,8,12,8,12,11,20,11,12,9,15,10,13,12,21,12,15,12,20,14,21,21,41,21,21,14,21,12,15,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,12,6,7,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,8,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,12,12,26,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,4,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,4,6,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,7,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10 +17,9,8,6,9,5,6,5,9,5,5,4,6,4,4,4,9,5,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,4,4,2,2,2,4,3,4,4,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,7,11,6,6,4,6,4,6,5,8,5,5,4,8,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,9,6,8,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,7,4,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,6,5,10,6,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,31,16,16,11,17,10,13,11,19,11,12,10,16,11,15,15,27,15,16,12,20,13,17,16,29,17,20,16,27,19,28,28,55,28,28,19,28,16,20,17,29,15,16,12,21,13,18,17,31,16,16,12,18,11,14,13,22,12,14,11,19,13,18,17,29,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,10,9,15,10,14,14,29,15,14,10,15,9,10,9,15,8,8,6,11,7,10,9,15,8,8,6,10,6,7,6,12,7,8,7,12,8,11,11,20,11,11,7,10,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,8,5,7,6,11,7,8,7,12,8,12,11,21,11,11,8,11,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,9,5,6,6,12,7,8,7,10,7,10,10,22,12,12,8,12,7,9,8,14,8,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,11,7,9,8,13,7,8,7,10,7,10,9,17,9,10,8,12,8,10,9,16,9,11,9,15,11,16,16,36,18,18,12,18,10,12,10,17,9,10,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,11,8,12,12,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,10,7,10,10,21,11,10,7,10,6,8,7,12,7,7,6,10,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,11,6,6,5,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +16,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,5,6,5,8,6,9,9,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,9,6,10,6,8,7,14,8,9,8,13,9,13,13,23,12,13,9,13,8,9,8,14,8,8,6,10,7,10,10,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,29,15,15,11,16,10,12,10,18,10,11,9,15,10,14,14,26,14,15,11,18,12,16,15,27,16,18,15,26,18,26,26,51,26,26,18,27,16,19,16,27,15,16,12,19,12,16,16,29,15,16,11,17,10,13,12,21,12,13,11,18,12,17,16,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,16,9,9,7,10,6,9,8,15,8,10,8,14,9,13,13,27,14,14,9,14,8,9,8,14,8,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,19,10,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,21,11,11,8,11,7,8,7,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,8,10,8,14,10,15,15,34,17,17,12,17,10,11,9,16,9,9,7,11,7,10,9,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,9,9,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,13 +29,15,14,10,14,8,9,8,14,8,9,7,10,6,8,7,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,17,9,9,7,10,6,7,5,8,5,5,5,8,5,7,7,12,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,11,6,6,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,4,7,4,4,4,6,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,16,16,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,9,16,9,9,6,8,5,6,5,7,4,4,4,6,4,5,4,13,7,7,5,7,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,6,9,9,10,6,6,4,5,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,12,19,10,10,7,10,6,8,7,13,8,9,7,11,8,11,11,21,11,12,9,14,9,11,10,17,10,11,9,16,11,16,16,34,18,18,13,19,11,12,10,18,10,10,8,12,8,11,10,19,10,10,7,11,7,8,7,13,8,9,8,13,9,12,12,25,13,13,9,12,7,8,7,11,7,8,6,10,6,8,8,15,9,10,8,12,8,10,10,18,10,12,10,17,11,16,16,34,18,18,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,11,8,12,8,10,9,15,9,10,8,13,9,12,11,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,18,18,33,17,17,12,17,10,11,9,15,8,9,7,11,7,10,9,17,9,9,7,11,7,9,8,14,8,10,8,13,9,12,11,20,11,11,8,13,8,10,9,15,9,10,8,14,10,14,14,28,15,16,12,19,12,16,15,28,16,19,16,27,18,25,25,44,22,22,15,23,13,16,14,24,13,14,11,19,13,18,18,34,18,20,15,23,14,18,17,32,18,21,17,29,20,29,29,56,29,30,21,33,19,24,21,38,21,23,18,30,19,26,25,49,26,28,20,32,20,27,25,47,27,32,27,47,32,48,49,98,49,49,33,50,28,33,28,49,26,28,21,34,22,30,29,55,28,29,21,32,19,24,22,40,22,25,20,33,21,30,30,50,26,26,18,26,15,18,15,27,15,16,12,20,13,17,16,30,16,17,13,20,12,15,14,26,15,17,15,26,17,25,25,52,26,26,18,27,15,17,14,24,13,15,11,18,12,16,15,27,14,15,11,16,10,12,11,19,11,13,11,19,13,19,18,36,19,19,13,20,12,14,12,21,11,12,9,14,9,12,12,22,12,13,10,15,9,12,12,22,13,15,12,20,14,20,20,38,20,20,14,21,12,14,12,20,11,11,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,10,8,14,9,13,13,24,13,13,10,15,9,11,10,17,9,10,8,12,8,11,11,22,12,12,9,14,9,11,10,18,11,13,11,18,12,17,17,39,20,20,14,21,12,15,13,23,12,13,10,16,10,14,14,27,14,15,11,16,10,12,11,19,11,13,10,17,12,18,18,34,18,18,13,20,12,14,12,21,12,14,11,18,12,16,16,30,16,17,13,20,13,17,16,29,16,19,16,27,18,27,27,65,33,33,22,33,19,22,18,32,17,18,13,21,13,18,17,32,17,17,12,18,11,13,12,21,12,14,12,20,13,19,19,32,17,17,12,18,10,12,11,19,10,11,9,14,9,12,11,20,11,11,8,12,8,10,9,16,9,11,9,16,11,16,16,36,19,19,13,19,11,14,12,21,12,13,10,17,11,15,14,26,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,28,15,15,10,15,9,11,9,15,8,9,7,11,8,11,10,19,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,29,15,15,10,14,8,10,9,15,9,10,8,12,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,14,7,7,5,8,5,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,23 +15,8,8,6,7,4,5,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,6,4,4,3,3,2,3,3,4,3,3,2,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,16,11,17,10,12,11,20,11,12,10,16,10,14,14,25,14,14,11,17,11,14,13,24,14,17,14,24,17,25,25,50,25,25,17,26,15,17,14,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,10,17,11,16,16,26,14,14,9,14,8,10,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,8,8,13,8,9,8,14,9,13,13,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,6,5,8,5,6,6,12,7,7,6,8,5,6,6,12,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,5,6,5,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,12,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,20,10,10,7,11,6,8,7,12,7,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,9,8,15,9,10,8,14,10,14,14,34,17,17,12,17,10,12,10,16,9,10,7,11,7,10,9,16,9,9,6,9,6,7,6,11,7,8,7,11,7,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,15,8,8,5,7,5,6,5,8,5,6,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,12 +15,8,8,6,7,5,6,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,9,14,8,8,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,10,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,6,4,6,5,10,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,24,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,9,15,10,15,15,30,16,16,11,18,10,12,11,20,11,12,10,17,11,14,14,26,14,14,11,17,11,15,14,25,15,18,15,25,17,26,26,50,26,26,18,27,15,18,15,25,13,14,11,18,12,16,15,29,15,16,11,17,10,13,12,22,12,14,11,18,12,16,16,26,14,14,9,14,8,10,9,14,8,8,7,11,7,9,9,16,9,10,7,11,7,9,8,13,8,10,8,14,10,14,13,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,18,10,10,7,11,7,8,7,12,6,6,5,8,5,6,6,12,7,8,6,8,5,6,6,12,7,8,6,10,7,10,11,21,11,12,8,11,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,7,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,6,4,7,5,7,7,12,6,6,5,7,5,6,6,9,5,6,6,9,6,9,9,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,10,9,15,9,10,8,15,10,14,15,35,18,17,12,18,10,12,10,16,9,10,7,12,8,10,9,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,11,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,16,8,8,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,4,6,4,5,5,6,4,4,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,6,6,11 +11,6,6,4,5,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,11,13,11,18,12,18,18,35,18,18,12,19,11,12,10,17,9,10,8,13,9,12,11,20,11,11,8,12,7,9,8,15,9,10,8,13,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,9,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,5,6,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,9,5,6,5,7,5,7,8,15,8,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,6,4,7,5,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,24,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,4,3,3,3,5,4,5,5,5,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,8 +16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,7,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,5,3,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,7,10,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,18,10,10,8,12,7,8,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,5,9,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,6,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,5,7,4,5,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,5,8,6,8,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,15,14,26,13,13,9,12,7,8,7,14,8,9,7,11,7,10,10,19,11,12,9,14,9,12,11,19,11,12,10,16,11,15,15,32,17,17,12,18,11,13,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,15,15,27,15,18,15,27,18,27,28,53,27,27,19,28,16,19,15,26,14,16,12,20,13,17,16,31,16,16,12,18,11,14,13,23,13,15,12,20,13,18,17,29,15,14,10,14,9,11,9,16,9,9,7,12,8,10,10,17,9,10,8,12,7,9,8,13,8,10,8,14,10,14,14,29,15,15,10,15,9,10,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,7,6,13,8,9,7,11,8,11,11,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,6,7,6,10,7,10,9,20,11,11,7,10,6,7,6,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,10,7,10,10,20,10,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,8,6,10,7,9,9,16,9,10,9,15,10,15,15,37,19,18,12,18,10,12,11,17,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,14,8,9,8,13,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,6,4,6,6,11,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,2,2,2,1,1,1,4,3,3,2,2,2,3,3,5,3,4,3,4,3,5,5,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,8,4,4,3,4,3,5,5,6,4,4,3,4,3,4,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,11 +9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,5,5,8,5,6,4,7,5,6,6,11,6,7,5,8,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,17,9,9,7,11,7,9,9,16,9,11,9,16,11,16,16,31,16,16,11,16,10,11,9,15,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,13,8,9,7,12,8,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,4,4,4,6,4,6,6,12,7,7,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,6,9,6,9,9,22,11,11,8,11,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7 +11,6,6,4,7,4,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,8,6,8,8,11,6,6,4,7,4,4,4,8,4,4,3,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,6,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,6,11,6,6,5,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,12,11,20,10,10,7,10,6,6,6,10,6,7,5,8,6,8,8,14,8,8,6,10,7,9,8,14,8,9,8,12,8,12,12,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,15,9,12,11,21,12,14,12,21,14,21,21,38,20,20,14,20,12,14,12,19,11,12,9,14,9,12,12,23,12,13,9,14,8,10,9,16,9,10,8,14,9,12,12,22,12,12,8,11,7,8,7,12,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,6,5,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,10,7,10,6,6,5,8,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,8,7,14,8,8,5,7,4,5,5,8,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,27,14,14,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,7,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,6,6,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,8,11,11,20,11,11,8,13,8,11,10,18,11,13,11,18,13,19,19,34,17,17,12,18,10,12,10,17,10,11,8,13,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,10,20,11,11,7,10,6,7,6,10,6,7,5,7,5,6,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,7,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,7 +18,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,7,5,8,5,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,5,6,5,8,6,9,9,12,7,7,5,7,5,6,6,10,6,7,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,11,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,16,9,9,6,8,5,6,5,8,5,6,5,8,5,6,6,7,4,5,4,7,5,7,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,10,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,10,6,8,7,12,9,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,6,8,7,14,8,8,6,9,5,6,5,9,5,6,5,8,6,9,9,18,9,9,6,9,6,7,6,10,6,7,6,9,7,10,10,16,9,10,7,11,7,10,10,18,10,12,10,17,12,18,18,31,16,16,11,16,9,11,10,17,9,10,8,14,9,12,11,23,12,13,10,16,10,12,11,20,11,13,11,20,13,19,19,37,19,20,14,20,12,16,14,26,14,16,13,21,14,20,19,36,19,20,15,24,15,20,18,33,19,22,19,34,23,34,34,62,32,32,22,32,18,21,18,32,17,18,14,23,15,20,19,39,20,20,14,20,12,15,13,24,13,15,12,20,13,18,18,36,19,19,13,18,11,13,11,18,10,11,9,14,9,11,11,22,12,12,9,13,8,10,9,16,9,11,9,16,11,15,15,34,17,17,12,17,10,12,10,18,10,11,8,12,8,11,11,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,23,12,11,8,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,30,15,15,10,15,9,10,8,14,8,8,7,11,7,9,8,12,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,15,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,9,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,9,17,9,10,8,12,7,9,8,14,8,9,8,14,9,13,13,24,13,13,9,12,8,10,9,15,8,9,7,11,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,18,18,43,22,22,15,21,12,14,12,22,12,13,10,16,10,13,12,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,13,22,12,12,9,13,8,9,8,14,7,7,5,8,5,7,7,15,8,8,6,8,5,7,7,12,7,9,8,13,9,12,12,23,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,18,9,9,7,10,6,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,6,8,5,6,5,8,5,5,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,7,7,4,5,4,5,3,3,3,4,2,2,2,2,2,2,2,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,7,5,6,6,10,6,7,5,8,5,7,7,12 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,7,4,5,4,7,4,4,3,5,4,5,4,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,7,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,13,7,7,6,9,6,7,6,11,6,7,6,11,8,11,11,20,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,13,8,11,10,18,10,12,11,19,13,19,19,34,18,18,12,18,10,12,10,18,10,10,8,13,8,11,11,21,11,11,8,11,7,9,8,13,8,9,7,11,7,10,10,20,11,11,7,10,6,7,6,10,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,10,6,7,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7 +11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,4,6,4,4,4,7,4,5,5,8,6,8,8,11,6,7,5,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,5,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,9,6,8,7,15,8,8,6,10,6,8,7,13,7,8,7,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,8,14,9,13,12,23,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,20,12,14,12,20,11,12,9,14,9,12,12,24,12,12,8,13,8,10,8,15,9,10,8,12,8,11,11,22,12,12,8,11,7,8,7,11,7,8,6,9,6,8,7,14,8,8,6,8,5,6,6,10,6,8,7,11,7,10,10,21,11,10,7,11,7,8,7,12,7,8,6,9,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,6,6,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,7,5,6,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,11,6,7,6,11,8,11,11,26,13,13,9,13,8,10,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,4,2,2,2,4,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,11,10,17,12,17,17,31,16,16,11,16,9,11,10,16,9,10,8,12,8,10,10,19,10,10,7,10,6,8,6,12,7,8,6,10,7,9,9,17,9,9,6,9,6,6,5,9,6,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,5,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,7,4,6,5,9,5,6,5,9,6,9,9,20,10,11,8,11,7,8,7,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,8,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,5,6,5,8,5,6,6,9,6,7,6,10,7,11,11,16,9,9,6,8,5,7,6,10,6,6,4,6,4,4,4,9,5,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,8,6,8,7,14,7,7,5,8,5,7,6,12,7,8,7,11,8,12,12,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,8,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,10,6,7,5,8,6,8,7,13,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,14,8,10,9,16,11,15,15,24,13,13,9,13,8,9,8,16,9,9,7,12,8,11,10,20,11,11,8,12,7,9,9,17,10,11,9,16,11,16,16,30,16,17,12,18,11,14,12,21,12,14,11,18,12,17,17,31,17,18,13,20,12,16,15,27,15,18,16,28,19,28,28,53,27,27,18,27,15,18,16,28,15,16,12,20,13,18,17,31,16,16,11,16,10,12,10,19,11,12,10,16,11,15,15,29,15,15,10,15,9,10,8,15,8,9,7,12,8,11,10,20,11,11,8,12,7,9,8,13,8,10,8,14,9,13,13,26,14,14,10,15,9,11,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,24,13,13,9,13,8,9,8,12,7,7,5,8,6,8,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,6,13,7,8,6,8,5,6,5,9,5,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,9,8,14,10,15,15,33,17,17,12,18,10,12,11,17,9,10,8,14,9,11,11,19,10,10,7,10,6,8,7,13,8,9,7,12,8,12,11,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,7,8,6,10,6,8,7,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,4,6,4,5,4,8,5,6,5,7,5,7,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,7,4,5,4,5,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,11 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,6,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,5,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,4,7,5,6,6,9,6,7,6,11,7,10,10,16,9,9,6,9,6,6,6,11,6,6,5,8,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,18,10,12,11,18,12,18,18,34,18,18,12,18,10,12,11,18,10,11,8,13,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,17,9,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,7,6,9,6,8,7,13,7,7,5,7,4,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,3,4,3,3,2,4,2,3,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,5,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,15,8,8,6,8,5,6,5,7,4,4,4,6,4,6,5,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,7,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,8,8,13,8,10,8,15,10,14,14,23,12,12,9,13,8,9,8,15,8,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,15,29,15,16,11,17,10,12,11,20,11,12,10,17,11,16,15,29,15,16,12,19,12,16,15,27,15,18,15,26,18,26,26,49,25,26,18,26,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,27,14,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,12,7,8,7,14,8,9,7,13,9,12,12,25,13,14,10,13,8,10,9,15,8,9,7,11,7,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,9,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,7,5,6,6,9,5,6,5,10,7,10,10,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,10,6,7,6,11,6,6,5,9,6,9,9,16,9,9,7,10,6,8,8,14,8,10,8,14,10,14,14,31,16,16,11,17,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,8,6,8,9,19,10,10,7,9,5,6,6,10,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,6,4,6,6,10 +11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,8,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,8,8,13,8,9,8,14,10,14,14,22,12,12,8,12,8,9,8,14,8,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,11,16,10,12,11,20,11,12,10,17,11,15,15,28,15,16,12,19,12,16,14,26,15,18,15,26,17,25,25,48,25,25,17,26,15,18,15,26,14,16,12,19,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,15,10,14,14,26,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,8,7,14,8,9,7,12,8,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,30,16,16,11,16,10,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,19,10,10,7,9,5,6,6,10,6,6,5,8,6,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,10 +20,10,10,7,10,6,8,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,8,8,8,5,5,4,6,4,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,7,7,12,7,7,6,10,7,9,9,17,9,10,8,12,8,10,10,18,10,12,11,19,13,19,19,25,13,13,9,13,8,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,5,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,20,11,11,8,12,8,10,9,16,9,11,9,14,9,12,12,22,12,12,9,15,10,13,12,23,13,16,13,22,15,21,21,27,14,15,11,16,9,11,10,17,9,10,8,12,8,11,10,19,10,11,8,12,7,9,9,16,9,10,8,13,9,12,12,24,13,13,9,13,8,9,8,13,7,8,6,9,6,9,9,17,9,10,7,10,7,9,8,14,8,10,8,14,10,15,15,32,16,16,11,17,10,13,12,21,12,13,10,16,10,13,12,23,12,12,8,11,7,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,15,8,9,7,12,8,11,11,20,11,12,9,13,9,12,11,21,12,14,12,20,13,19,19,35,18,18,12,18,11,13,11,20,11,12,10,17,11,15,14,26,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,26,14,14,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,17,12,18,11,15,14,26,15,18,15,27,18,26,26,42,22,22,15,23,13,16,14,24,13,15,12,19,12,17,16,31,16,16,12,18,11,15,14,26,15,18,16,28,19,27,27,54,28,28,19,29,17,22,19,34,18,20,16,27,18,26,25,49,26,28,21,34,21,28,26,50,28,33,28,50,33,49,49,94,48,48,32,48,27,31,26,46,24,26,19,31,20,27,25,47,24,25,18,27,16,19,17,31,17,20,16,26,17,25,25,49,25,26,18,26,15,18,16,28,15,16,12,18,12,16,15,28,15,16,12,18,11,15,14,25,14,16,13,22,15,22,22,47,24,23,16,23,13,16,14,25,14,15,12,19,12,16,15,28,15,15,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,16,11,15,9,10,9,16,9,10,8,13,9,12,11,21,11,12,9,13,8,11,10,19,11,13,11,19,13,19,19,43,22,22,15,22,13,16,14,25,13,14,11,18,11,15,13,24,13,13,9,14,8,10,9,15,8,9,7,12,8,11,11,20,10,10,7,10,6,7,7,12,7,8,7,11,8,11,10,19,10,11,8,12,8,11,10,19,11,12,10,18,12,17,17,24,13,13,10,15,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,10,7,9,9,16,9,11,10,17,11,16,16,30,16,16,11,17,10,13,11,20,11,11,9,14,9,13,12,23,12,13,10,17,10,13,12,23,13,16,14,26,18,26,26,59,30,30,21,32,18,22,19,33,18,19,14,23,14,19,18,34,18,19,13,20,12,14,13,23,13,15,12,19,13,19,19,36,19,19,13,19,11,13,11,18,10,11,9,14,9,12,12,23,12,13,10,15,9,11,10,19,11,13,10,17,12,17,16,37,19,19,13,19,11,13,11,19,10,10,7,11,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,8,11,11,20,11,11,7,10,6,7,7,12,7,8,6,9,6,7,6,11,6,7,5,8,5,7,6,11,7,9,8,14,10,15,15,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,9,9,18 +10,6,6,4,6,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,7,4,5,5,8,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,3,3,4,3,4,3,5,4,5,5,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,14,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,9,6,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,13,25,14,15,11,17,11,14,13,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,14,10,16,10,14,13,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,8,8,7,12,8,11,11,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,8,14,10,14,14,30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,8,6,8,8,11,6,6,5,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,10 +10,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,6,4,4,4,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,4,3,4,3,4,3,5,5,2,2,2,2,1,1,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,13,7,8,7,12,8,12,11,14,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,10,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,10,6,8,7,11,6,7,5,9,6,8,7,12,7,7,5,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,17,9,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,10,7,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,15,15,27,14,14,10,15,9,11,10,17,10,11,9,15,10,14,13,25,14,15,11,17,11,14,13,26,15,18,15,26,18,26,26,48,25,25,17,25,14,16,14,24,13,14,10,17,11,15,14,24,13,13,9,14,8,10,9,16,9,10,8,13,9,12,12,26,14,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,14,8,8,7,12,8,11,11,25,13,12,8,13,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,7,12,7,8,6,9,6,8,7,12,8,10,9,14,10,14,14,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,6,6,10 +7,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,4,3,3,3,6,3,3,3,4,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,4,4,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,7,7,5,7,4,6,5,8,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,7,12,7,8,7,11,7,10,10,17,10,10,8,12,8,10,9,18,10,13,11,18,12,18,18,33,17,17,12,17,10,11,9,17,9,10,7,12,8,10,10,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,9,18,10,10,7,9,6,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,4,6,5,8,5,6,4,7,4,6,5,8,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,12,6,7,6,8,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,6,4,4,4,8,4,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,13,7,7,5,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,3,3,4,3,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,6,8,7,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,10,5,5,4,5,4,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,13,7,7,6,9,6,7,7,10,6,7,6,10,7,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,15,21,11,11,8,12,7,9,8,13,8,9,7,11,7,9,9,18,10,10,7,10,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,25,13,14,11,18,11,15,14,26,15,18,16,28,19,27,27,49,25,25,17,26,14,16,13,25,13,14,11,17,11,15,14,25,13,14,10,14,8,10,9,16,9,10,8,14,9,13,13,28,15,15,10,14,8,9,8,15,8,9,7,11,7,8,8,15,8,8,6,9,6,8,7,14,8,9,7,12,8,12,12,26,13,13,9,14,8,9,8,14,8,8,6,10,7,9,9,17,9,9,7,10,6,7,7,11,6,7,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,7,6,10,5,5,4,6,4,4,4,5,3,4,4,6,4,5,5,11,6,6,5,8,5,7,6,9,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,10,6,6,4,6,4,6,5,10,6,7,6,9,6,9,8,17,9,9,7,10,6,7,6,12,7,7,6,10,6,8,8,12,7,7,6,10,6,7,7,12,7,9,9,16,11,16,15,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,21,11,11,7,10,6,8,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,8,21,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,6,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,2,3,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,11 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,5,8,5,6,5,8,6,8,9,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,7,10,7,9,8,15,9,11,9,16,11,16,16,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,4,3,5,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,4,7,5,6,5,9,6,9,9,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,5,3,4,3,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,6,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,5,6,5,8,5,7,7,10,6,6,5,9,5,6,6,10,6,7,6,10,7,10,10,15,8,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,8,12,8,11,10,18,11,13,11,19,13,19,19,34,18,18,12,19,11,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,7,10,9,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,8,7,10,6,7,5,8,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,9,5,6,5,7,5,6,6,9,5,6,4,7,4,5,4,7,4,5,4,5,4,6,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,3,3,3,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,6,6,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,15,8,7,5,7,5,6,5,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,7,7,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,5,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,13,7,8,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,9,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,30,15,15,11,16,9,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,7,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,5,4,4,4,5,3,3,3,4,3,5,5,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,5,4,5,5,7,4,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6 +10,6,6,5,7,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,11,6,5,4,5,3,4,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,16,9,9,6,8,5,6,6,10,6,6,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,11,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,8,6,10,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,10,6,8,8,14,8,9,7,10,6,7,7,12,7,7,6,10,7,10,10,15,8,8,6,10,7,9,9,16,9,10,9,15,11,16,16,24,13,13,9,14,8,10,8,14,8,9,7,12,8,11,10,18,10,11,8,12,7,9,9,16,9,11,10,17,11,16,16,29,15,15,11,17,10,12,10,18,10,12,9,15,10,14,14,27,15,16,12,20,12,16,15,28,16,20,17,29,19,28,28,54,27,27,18,26,15,17,15,26,14,15,11,17,11,15,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,14,30,16,16,11,17,10,11,9,16,9,9,7,11,7,9,9,14,8,8,6,9,6,8,8,14,8,10,8,13,9,13,13,28,15,15,11,16,9,11,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,11,8,11,11,28,15,15,10,15,9,10,8,14,8,9,7,11,7,9,9,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,13,7,8,6,8,5,5,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,9,7,10,6,7,6,10,6,6,4,6,4,5,4,11,6,7,5,8,5,6,6,11,6,7,6,10,6,8,8,21,11,11,8,13,8,10,8,14,8,9,7,10,7,9,9,16,9,9,7,11,7,8,8,14,9,11,9,16,11,16,16,31,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,11,7,9,8,15,9,10,8,13,9,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,6,8,8,21,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,4,3,5,5,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10 +5,3,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,11,7,9,8,15,9,11,9,16,11,15,15,29,15,15,10,14,8,10,8,14,8,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,6,6,5,8,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,5,6,5,8,6,8,8,8,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,5,8,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,9,10,8,13,8,10,9,17,10,12,10,18,12,17,17,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,5,6,6,10,6,7,6,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,9,5,5,4,6,4,6,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,6,4,5,3,4,4,6,4,4,3,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,13,7,6,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,10,7,10,10,18,9,9,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,5,12,6,6,5,8,5,6,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,4,6 +4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,7,4,5,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,13,8,9,8,14,9,13,13,24,12,12,9,13,8,9,8,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,14,7,7,5,8,5,6,5,7,4,4,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,6,5,8,5,7,7,9,5,5,4,6,4,4,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,4,5,5,11,6,6,5,8,5,6,6,9,5,6,6,10,7,10,10,9,5,6,4,6,4,4,4,5,3,3,2,3,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,7,5,6,6,9,5,5,4,7,4,5,5,8,5,5,4,5,4,5,4,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,9,9,12,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,6,8,7,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,7,11,8,11,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,22,22,40,21,21,14,21,12,14,12,20,11,11,8,12,8,11,10,20,11,11,7,10,6,8,7,12,7,8,7,11,7,10,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,10,6,7,6,10,7,10,10,21,11,11,7,10,6,7,6,12,7,7,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,8,5,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,5,8,6,8,8,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,5,4,5,4,5,5,6,4,5,4,6,4,6,7,10,5,5,4,6,4,4,3,7,4,4,3,4,3,3,3,8,4,4,3,4,3,5,5,7,4,5,4,6,4,6,5,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,7,6,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,6,8,7,13,7,8,6,8,5,7,6,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,4,5,4,9,5,5,4,6,4,6,6,16,9,9,6,9,6,7,6,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,7,4,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,13,8,9,8,13,7,7,6,8,6,7,7,12,7,7,5,7,4,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,7,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,7,4,5,5,8,5,6,5,8,6,9,9,7,4,5,4,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,6,5,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,7,10,10,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,10,10,19,10,11,9,14,9,12,11,20,12,14,11,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,12,8,10,9,16,9,9,6,9,6,8,7,11,7,8,6,9,6,9,9,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,18,9,9,6,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,4,6,4,4,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,6,5,8,5,7,7,20,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,13,7,7,5,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,9,5,6,6,10,6,7,6,11,8,11,11,17,9,9,7,9,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,7,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,4,2,2,2,3,3,4,4,6 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,10,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,7,12,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,19,13,19,19,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,9,9,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,9,6,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,6,5,9,5,6,5,7,5,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,5,6,3,3,3,3,2,3,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,13,7,7,5,8,5,6,5,9,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5 +7,4,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,5,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,3,2,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,6,8,8,14,8,10,9,16,11,16,16,13,7,7,5,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,11,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,7,5,8,5,7,6,11,7,8,7,12,9,14,14,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,18,10,10,7,10,6,8,7,11,7,8,6,10,7,9,8,14,8,9,7,10,6,8,7,12,7,9,8,14,10,14,15,20,11,11,8,12,7,8,7,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,7,12,7,8,7,12,8,11,11,17,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,11,13,11,18,12,18,19,32,17,17,12,17,10,12,10,18,10,11,9,14,9,13,12,23,12,12,9,14,9,11,11,20,11,13,11,18,13,19,19,33,17,17,12,19,11,14,12,22,12,14,11,19,13,18,18,34,18,19,14,23,15,20,19,36,21,25,21,37,25,37,37,69,35,35,23,33,19,22,18,31,16,17,12,19,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,12,17,16,36,18,18,13,19,11,13,11,18,10,10,8,12,8,11,11,21,12,13,10,15,9,12,11,19,11,12,10,16,11,16,16,32,17,17,12,17,10,11,9,15,8,9,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,24,13,13,9,13,8,10,9,15,8,9,7,10,6,8,7,12,7,8,6,10,6,8,7,13,8,9,8,13,9,13,13,36,19,19,13,20,11,13,11,19,10,11,8,12,8,11,10,18,10,10,7,9,6,7,7,12,7,7,6,10,6,8,8,10,6,6,5,7,5,6,6,10,6,7,6,9,6,8,7,12,7,8,6,10,6,8,7,13,8,9,7,11,7,10,10,16,9,9,7,10,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,6,4,5,4,7,5,8,8,24,13,13,9,14,9,11,10,17,9,10,8,12,8,11,11,20,11,11,8,13,9,12,12,22,13,15,12,21,14,20,20,30,15,15,11,16,10,12,10,17,9,10,8,12,8,11,11,20,11,11,8,13,8,10,9,15,9,10,8,12,8,12,12,23,12,12,8,12,7,9,8,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,7,6,9,6,9,9,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,7,12,7,8,6,10,6,8,7,13,7,8,7,12,8,10,10,11,6,7,5,7,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,6,10,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,6,7,5,8,5,7,6,10,6,6,5,8,5,7,7,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,4,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,5,9 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,16,8,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,8,12,8,11,10,19,11,13,11,19,13,20,20,36,19,19,12,18,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,7,6,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,5,12,7,7,5,7,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,5,3,3,3,3,3,4,3,5 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,5,3,4,4,5,3,4,4,5,4,6,5,6,3,3,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,4,7,4,5,5,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,8,8,12,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,5,7,4,5,4,7,4,4,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,7,6,10,7,11,11,17,9,9,6,10,6,7,6,11,6,7,6,9,6,7,7,13,7,6,5,7,5,6,6,11,7,8,7,10,7,10,11,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,8,13,8,11,10,20,12,14,12,20,14,21,21,38,20,20,13,19,11,13,11,17,9,9,7,10,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,10,7,10,9,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,7,20,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,4,3,5,3,3,3,6,3,2,2,3,2,2,2,4,3,4,3,4,3,5,5,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,8,12,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,4,5,5,6,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,5,3,3,3,3,3,4,4,6 +3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,5,3,3,3,4,3,3,3,5,4,4,4,6,5,7,7,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,3,5,3,3,3,5,4,4,4,7,4,5,4,6,4,4,4,7,4,5,5,8,6,8,8,12,6,6,5,7,4,5,4,8,5,5,4,7,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,15,15,28,14,14,10,14,8,9,8,13,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,5,8,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,14,8,8,6,8,5,5,4,8,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4 +3,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,5,3,4,4,7,5,7,7,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,10,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,5,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,13,7,8,6,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,5,4,7,4,5,4,7,5,7,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,8,5,7,7,12,7,8,7,12,9,13,13,22,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,23,12,13,9,14,9,12,11,23,13,16,13,23,16,23,23,44,22,22,15,21,12,14,12,20,11,11,8,12,8,10,10,18,9,9,7,10,7,9,8,13,8,9,7,12,8,11,10,21,11,10,7,10,6,7,6,10,5,5,4,6,4,6,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,10,6,6,5,8,5,6,5,9,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,5,6,5,9,5,5,4,6,4,4,4,9,5,5,4,7,5,8,8,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,6,4,5,4,6,4,4,3,5,3,3,3,5,4,5,5,7,4,4,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,12,8,12,12,17,9,9,7,10,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,8,5,6,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,5,14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,6 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,14,8,10,8,14,10,14,14,26,14,14,9,13,8,9,8,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,4,5,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,3,5,3,4,3,6,4,6,6,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,8,11,6,6,4,6,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,6,6,10,7,10,10,14,8,8,6,9,5,6,6,10,6,6,5,9,6,7,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,11,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,17,10,12,10,16,9,9,7,11,7,9,8,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,17,9,8,6,8,5,6,5,8,4,4,3,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,6,8,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,6,5,7,4,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,4,5,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,4,4,4,8,5,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,6,6,9,7,10,10,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,8,17,9,10,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,8,6,7,7,15,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 +2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,2,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,6,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,8,5,5,4,6,4,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,4,7,4,5,5,8,5,6,5,8,5,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,10,6,8,8,14,8,10,8,14,9,13,13,23,12,12,9,13,8,9,8,13,7,7,6,9,6,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,13,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,15,8,9,6,9,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,15,16,25,13,14,10,14,9,11,10,18,10,11,8,12,8,11,10,20,11,11,8,11,7,10,9,16,9,11,10,17,12,18,18,31,16,16,12,18,11,13,11,20,11,13,10,16,11,15,15,31,17,18,13,21,13,17,16,30,17,20,17,31,21,31,31,59,30,30,20,30,17,19,16,28,15,15,11,17,11,15,14,27,14,14,10,16,9,11,10,18,10,12,9,15,10,13,13,27,14,14,10,14,8,10,8,14,8,8,7,11,7,9,8,16,9,9,7,11,7,8,8,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,16,9,9,7,12,8,10,9,15,8,8,6,10,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,13,8,9,8,13,7,7,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,31,16,16,11,16,9,11,9,15,8,9,7,11,7,9,8,12,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,17,9,9,7,11,7,9,8,14,8,9,7,10,7,9,9,19,10,11,8,12,7,9,9,16,9,11,9,16,11,16,16,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,14,8,8,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,3,4,4,6,4,5,4,6,4,6,5,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,4,5,4,5,4,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,8,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,6,8,5,7,6,10,6,7,5,7,5,7,6,11,6,7,5,7,4,6,5,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,17,12,17,17,33,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,5,5,8,4,5,4,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,7,5,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,6,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,9,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,13,7,8,6,8,5,6,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,9,8,14,8,8,7,12,8,10,10,21,11,12,9,13,9,12,11,20,12,14,12,20,14,20,20,39,20,20,13,20,11,13,11,19,10,11,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,5,9,5,6,4,5,3,4,4,8,4,4,4,6,4,5,4,7,4,5,4,7,5,8,8,20,10,10,7,11,7,8,6,10,6,6,5,8,5,6,5,9,5,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,4,2,2,2,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,11,6,7,6,11,7,10,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,11,6,7,5,7,5,6,6,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,17,9,10,7,11,7,10,9,16,10,11,10,16,11,17,17,32,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,6,11,6,7,5,7,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4 +-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,4,3,4,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,6,6,10,7,9,9,10,5,5,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,4,6,4,5,5,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,9,5,6,4,6,4,4,4,7,4,5,5,8,6,8,7,12,7,8,6,9,6,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,7,4,5,4,8,5,5,5,8,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,6,5,7,7,12,7,7,5,8,6,8,7,12,7,8,7,11,8,11,12,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,8,14,8,9,8,14,10,15,15,26,13,13,9,14,8,10,9,17,9,10,8,12,8,11,11,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,15,29,15,16,12,19,12,17,16,28,16,19,16,28,19,28,29,55,28,28,19,28,16,18,15,27,15,16,12,18,11,15,14,27,14,14,10,15,9,11,10,17,9,10,8,14,9,13,12,23,12,12,8,12,7,8,7,14,8,9,7,12,8,10,9,15,8,9,7,10,7,9,8,16,9,10,8,13,9,13,13,25,13,13,9,14,8,9,8,16,9,9,7,10,6,8,8,14,8,9,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,11,8,11,7,8,7,13,7,8,6,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,10,10,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,13,7,7,5,6,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,7,6,12,7,7,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,9,8,14,10,15,15,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,4,4,5,3,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,18,9,9,7,10,6,7,6,12,6,7,6,8,5,7,7,13,7,7,6,8,6,7,6,11,6,8,6,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,11,8,11,10,20,11,11,8,13,8,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,12,10,18,10,11,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,6,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,10,6,6,5,7,4,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,7,6,9,5,5,4,7,4,6,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,6,5,8,6,9,9,9,5,4,3,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,4,4,7,4,5,5,8,6,8,7,13,7,8,6,8,6,8,7,13,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,7,7,12,6,6,5,6,4,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,9,11,9,17,9,10,8,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,11,21,11,12,10,16,11,16,15,30,16,17,13,19,12,16,15,29,17,20,16,28,19,28,28,53,27,27,18,27,15,18,15,27,14,15,11,18,11,15,14,27,14,14,10,15,9,11,10,16,9,10,8,14,9,12,12,22,12,12,8,13,7,8,8,13,7,8,7,11,7,10,9,16,9,10,7,10,7,9,8,16,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,8,11,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,9,8,16,9,10,7,10,6,8,8,14,8,10,9,15,11,16,16,19,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,8,6,8,8,13,7,6,5,7,4,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,8,5,6,5,8,6,9,9,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,9,6,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25,13,13,10,14,9,11,9,16,9,10,8,11,7,10,10,19,10,11,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,12,21,11,12,10,16,11,16,15,30,16,17,13,20,12,16,15,29,16,19,16,28,19,28,28,52,26,26,18,26,15,18,15,27,14,15,11,18,11,15,14,26,14,14,10,15,9,11,10,16,9,10,8,13,9,12,12,22,12,12,8,13,8,9,8,13,7,8,7,11,7,10,9,16,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,8,8,16,9,9,7,10,6,8,8,14,8,10,9,15,11,16,16,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,7 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,4,3,5,5,8,5,5,4,6,5,7,7,12,7,7,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,9,17,9,10,8,12,8,11,11,20,11,13,11,19,13,18,18,15,8,8,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,8,7,11,8,12,12,22,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,13,10,16,10,13,12,23,13,15,12,21,14,21,21,27,14,14,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,11,8,12,8,10,9,17,10,11,9,15,10,14,14,26,14,14,10,15,9,11,10,17,10,11,9,14,9,13,12,23,13,14,11,17,11,14,13,24,14,16,13,23,15,22,22,44,22,22,15,21,12,14,12,22,12,13,10,16,10,14,14,27,14,15,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,12,9,13,8,9,8,14,8,9,8,13,9,13,12,23,12,13,9,14,9,12,11,21,12,13,11,19,13,19,20,35,18,18,12,18,11,14,12,22,12,13,10,16,11,15,14,27,14,14,10,15,9,12,11,19,11,13,10,17,11,16,16,31,16,16,12,18,11,13,11,20,11,13,11,18,12,17,17,32,17,18,13,20,13,17,16,30,17,19,15,26,18,26,25,49,25,25,17,26,15,19,17,30,16,18,13,21,13,18,17,32,17,17,12,19,12,16,15,27,15,17,14,24,16,23,23,44,23,23,16,25,15,19,17,30,17,19,16,28,19,27,26,51,27,29,22,35,22,30,28,54,30,36,31,55,37,54,54,103,52,52,35,51,28,33,28,49,26,28,20,32,20,27,25,48,25,26,18,28,16,20,18,33,18,21,17,28,18,26,26,50,26,26,18,26,15,17,14,25,14,15,12,19,12,17,16,30,16,17,13,20,12,16,14,25,14,17,14,24,16,24,24,48,24,24,16,24,14,17,15,26,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,13,7,8,7,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,17,18,51,26,26,17,25,14,17,14,25,13,14,11,18,12,16,15,28,15,15,11,16,10,13,11,20,11,12,9,15,10,13,13,25,13,13,9,14,8,10,9,16,9,9,7,12,8,11,10,19,10,11,8,11,7,9,8,15,8,9,8,13,9,13,13,25,13,13,9,13,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,38,19,19,13,20,12,15,13,23,13,14,11,18,12,17,16,30,16,17,12,19,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,12,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,11,10,19,10,11,9,15,10,15,15,28,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,20,10,10,7,9,5,6,6,10,6,6,5,7,5,7,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,7,10,6,7,6,11,6,7,5,7,5,6,6,10,5,5,4,5,4,5,4,7,5,6,5,8,6,9,9,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,5,4,5,3,4,4,6,4,5,4,7,5,8,8,14,7,7,5,7,4,5,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,13,25,13,13,9,13,8,10,9,15,9,10,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,8,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,52,26,26,18,26,15,17,14,25,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,10,11,9,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,10,6,9,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,10,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,9,6,10,7,9,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,6,5,9,6,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,4,3,4,3,4,4,7 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,7,11,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,8,6,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,6,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,13,8,10,9,15,9,10,7,12,8,10,9,17,9,10,7,10,6,8,8,14,8,10,8,13,9,12,12,23,12,12,9,14,8,10,9,16,9,11,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,53,27,26,18,26,15,18,15,26,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,9,10,8,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,5,9,5,6,5,9,7,10,10,27,14,14,9,13,8,10,8,12,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,8,6,10,7,9,8,15,9,10,9,16,11,15,15,18,9,9,7,10,6,6,5,10,6,6,5,8,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,4,3,4,4,7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,6,3,3,3,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,4,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,7,5,7,6,11,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,9,6,7,6,10,6,7,5,8,6,7,7,12,6,7,5,7,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,7,8,6,11,7,10,10,17,9,10,8,12,8,11,10,19,11,13,11,19,13,19,19,36,18,18,12,18,10,12,10,18,10,10,7,12,8,10,9,17,9,10,7,10,6,7,6,12,6,7,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,7,5,6,6,10,6,7,6,11,8,10,10,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,1,3,2,3,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,11,8,12,12,14,7,7,5,6,4,4,4,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,7,6,13,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,10,9,16,9,9,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,14,8,9,7,12,8,11,10,17,9,10,7,10,7,9,8,15,9,10,8,12,8,12,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,15,25,13,14,11,18,11,15,14,27,15,18,16,28,19,27,27,54,27,27,18,26,15,17,14,26,14,15,11,17,11,14,13,25,13,13,9,14,9,11,9,17,9,10,8,14,9,13,13,25,13,13,9,12,7,8,7,13,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,8,13,9,13,13,24,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,12,6,6,4,6,4,5,5,10,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,12,7,7,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,11,11,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,14,8,8,6,10,6,8,8,14,8,10,9,16,11,15,15,19,10,10,7,10,6,6,5,11,6,7,5,8,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,8,6,9,9,13,7,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,3,3,3,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,3,3,5,3,4,3,4,3,4,4,8 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,8,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,8,7,11,7,9,8,16,9,10,9,16,11,15,15,31,16,15,10,15,9,10,8,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,8,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,6,6,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,5,6,5,9,5,6,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,9,7,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,13,8,10,10,19,11,12,10,19,13,18,18,37,19,18,12,18,10,12,10,19,10,11,8,12,8,10,9,17,9,10,7,10,6,7,6,12,7,7,6,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,4,4,6,4,6,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,3,4,4,6 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,8,4,5,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,5,9,5,5,5,7,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,31,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,10,5,5,4,6,4,5,5,10,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,3,4,4,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,11,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,7,10,6,6,5,9,6,7,6,9,6,8,8,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,26,14,14,10,14,8,9,7,12,7,7,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,5,7,7,13,8,9,7,12,8,11,11,23,12,12,9,14,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,8,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,8,8,14,8,9,8,14,10,14,14,25,13,13,9,13,8,10,9,15,9,10,8,12,8,11,10,17,9,10,7,11,7,8,8,14,8,9,7,12,8,11,11,24,13,13,10,15,9,12,10,18,10,12,10,16,11,15,15,27,15,16,12,18,11,15,15,28,16,18,15,27,18,27,27,56,29,29,19,28,16,19,16,28,15,15,11,17,11,14,14,26,14,14,10,15,9,10,9,16,9,11,9,14,9,13,12,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,8,17,9,10,7,10,6,8,7,12,7,9,8,13,9,14,14,23,12,13,9,13,7,8,7,12,7,8,6,9,6,9,9,16,9,9,7,11,7,8,7,12,7,7,6,10,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,7,6,10,6,7,5,8,5,6,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,19,10,11,8,11,7,8,7,11,6,7,6,10,7,9,8,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,5,3,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,5,3,4,3,4,3,5,5,10 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,5,3,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,15,10,15,15,30,16,16,10,15,9,11,9,15,8,8,6,9,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,5,5,3,5,3,4,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,5,4,5,5,8,5,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,17,17,11,17,10,12,10,16,9,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,9,6,7,6,9,7,10,10,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,2,2,2,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,24,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,8,8,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,1,1,1,1,1,1,0,0,3,2,1,1,0,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,4,7,5,6,5,8,6,8,8,6,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,1,1,1,1,0,0,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,10,6,6,4,6,4,6,6,12,7,7,5,7,5,6,6,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,9,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,11,6,7,5,8,5,7,7,16,9,9,7,10,6,7,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,11,13,11,19,10,11,8,13,9,12,11,20,11,11,8,11,7,9,8,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,8,5,5,4,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,5,4,6,6,11,6,5,3,4,3,3,3,6,4,4,4,6,4,4,4,9,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,15,8,8,6,8,5,5,5,7,4,5,4,7,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,3,7,4,5,4,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,24,12,12,8,13,8,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,7,4,4,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5 +1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,5,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,7,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,7,9,9,16,9,11,9,17,11,16,16,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,2,2,3,5,3,4,3,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,5,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,8,8,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,9,16,9,11,9,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,11,6,6,5,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,10,5,5,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,7,6,11,8,11,12,8,4,4,3,5,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,11,6,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,5,6,5,9,7,10,10,14,8,8,5,7,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,8,12,13,29,15,16,11,16,9,10,8,14,8,8,7,11,7,9,8,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,11,7,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,20,11,12,9,13,8,10,10,18,10,12,10,17,11,15,15,31,16,16,11,15,9,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,11,9,14,9,13,12,25,13,13,10,15,9,12,10,18,10,11,9,16,10,14,14,26,14,15,12,19,12,16,16,30,17,20,17,29,20,29,29,59,30,31,21,31,18,21,18,31,17,18,13,20,13,17,16,31,16,16,11,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,10,7,9,9,16,9,11,9,14,10,14,14,25,13,14,10,15,9,10,9,16,9,9,7,12,8,10,9,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,11,8,12,7,9,8,14,8,9,7,11,7,9,8,15,8,9,7,11,7,9,8,15,9,11,9,15,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,9,6,7,6,11,6,7,5,7,4,5,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,7,12,8,11,11,20,11,11,8,13,8,10,10,18,11,13,11,18,12,18,18,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,9,6,9,9,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,10,5,5,4,5,3,4,3,4,3,3,3,5,4,5,5,11,6,6,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,6,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,6,4,4,4,7,5,7,7,12 +1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,6,4,6,6,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,8,6,10,7,9,9,16,9,11,9,15,10,15,15,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,6,6,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,7,5,7,7,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,2,2,2,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,6,4,6,6,10,6,6,4,7,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,31,16,17,12,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,5,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,8,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,5,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,9,5,4,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,6,4,6,6,10,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,4,5,4,4,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,5,8,5,7,7,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,4,4,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,2,3,2,3,2,3,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,4,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,6 +0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,7,4,5,4,7,5,7,7,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,5,5,8,5,7,7,16,9,9,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,15,8,9,7,10,6,7,7,10,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,9,9,17,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,14,8,9,7,12,8,10,9,17,10,11,10,17,12,17,17,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,10,19,10,10,8,12,7,9,7,11,6,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,11,6,6,5,8,5,6,5,9,5,6,6,10,7,9,9,14,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,10,7,9,9,16,8,8,5,7,5,6,5,6,4,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,4,3,5,5,9 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,4,5,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,5,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,4,4,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,4,4,4,6,4,6,5,7,4,4,4,6,5,7,7,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,10,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,5,6,4,5,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,10,6,6,5,8,6,7,7,12,7,9,8,13,9,13,13,22,12,11,8,11,7,8,7,12,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,-1,0,0,1,2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,4,3,4,3,4,4,6,4,5,5,8,6,8,7,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,9,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,7,7,12,7,8,7,12,8,11,11,23,12,12,9,13,8,10,8,14,8,9,7,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,8,5,6,5,13,7,7,5,7,5,6,6,10,6,7,7,12,8,11,11,19,10,10,8,12,7,9,7,12,7,8,7,11,7,10,9,12,7,7,5,7,5,7,7,12,7,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,12,9,15,9,12,12,22,13,15,13,23,16,23,23,41,21,21,14,21,12,14,12,21,11,11,8,13,9,12,11,22,12,12,9,13,8,9,8,14,8,9,7,10,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,13,13,16,8,8,6,9,6,7,6,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,6,6,10,6,7,7,12,8,11,11,24,12,12,9,13,8,9,8,13,7,7,5,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,7,12,7,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,6,11,8,11,11,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,4,5,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,4,2,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14 +1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,10,6,7,6,9,6,7,7,12,7,9,8,13,9,13,13,22,12,12,8,12,7,8,7,12,6,6,5,7,5,7,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,9,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,5,3,3,3,5,3,4,3,5,3,3,2,3,2,3,4,8,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,7,8,6,10,6,8,8,14,8,10,9,14,10,14,15,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,13,7,7,6,9,5,6,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,5,5,8,4,4,3,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,5,9,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,3,2,2,2,3,2,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,5,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,3,2,2,2,2,3,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,9 +2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,1,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,0,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,6,6,11,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,5,5,4,6,4,5,5,11,6,7,6,10,7,9,9,22,11,11,8,12,7,9,8,13,7,8,6,10,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,6,10,7,10,9,15,8,8,6,10,6,7,7,10,6,6,5,8,6,8,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,9,7,12,8,11,10,19,11,13,11,20,14,20,20,35,18,18,12,17,10,11,10,17,9,9,7,11,7,9,9,18,10,10,7,11,6,7,6,12,7,7,5,8,6,9,9,17,9,9,6,8,5,7,6,11,6,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,5,7,7,10,5,5,4,6,4,5,5,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,12,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,6,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,3,3,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,3,2,3,2,2,2,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,2,2,5,3,3,2,2,2,2,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,3,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12 +2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,6,9,5,6,4,7,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,4,6,4,4,4,8,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,8,4,5,4,7,5,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,14,14,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,3,3,4,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,7,7,5,7,4,5,5,7,4,5,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,6,6,1,1,2,1,2,1,1,1,3,2,2,1,2,2,2,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,14,8,8,6,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,4,4,4,5,3,4,4,8,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,11,10,18,11,13,11,19,13,20,20,33,17,16,11,16,9,11,9,15,8,9,7,11,7,10,9,17,9,9,7,9,5,6,6,11,6,7,6,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,9,5,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,8,5,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,1,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,6,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,7,5,8,5,6,6,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,10,10,18,11,13,11,19,13,20,20,32,16,16,11,16,9,11,9,15,8,9,7,11,7,9,9,16,9,9,6,9,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +4,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,7,14,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,7,6,10,7,10,10,3,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,2,2,-11,-5,-5,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,0,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,26,14,14,10,14,8,10,8,13,7,8,6,9,6,8,7,12,6,6,5,7,5,7,7,12,7,8,7,12,8,11,10,19,10,10,7,11,7,9,8,14,8,9,7,10,7,10,10,18,9,9,7,10,7,9,8,15,9,10,8,14,9,13,13,27,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,14,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,7,10,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,9,11,9,15,10,15,15,43,22,22,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,10,15,9,12,11,19,11,12,9,15,10,14,14,26,14,14,10,15,9,11,10,19,10,11,9,14,9,13,12,22,12,12,9,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,16,10,12,11,19,10,11,8,13,9,12,11,21,11,12,9,14,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,18,11,14,13,23,13,15,13,23,15,22,21,41,22,23,17,27,17,23,21,39,22,26,22,39,26,38,38,61,31,32,22,33,19,23,20,35,19,20,15,24,15,20,19,35,18,18,12,18,11,13,11,20,11,13,11,18,12,16,15,29,15,15,10,15,9,11,10,17,10,11,8,13,9,13,13,24,13,13,9,14,9,12,11,19,11,14,12,20,13,19,19,20,11,11,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,8,7,11,8,11,11,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,16,10,13,11,20,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,21,11,11,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,5,7,7,12,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,26,14,14,10,15,9,12,10,18,10,11,9,15,10,13,12,23,12,12,9,13,8,11,10,17,10,12,10,18,12,17,17,31,16,15,10,15,9,11,10,17,9,10,7,11,8,11,10,19,10,10,7,11,6,7,6,11,6,7,6,10,7,11,11,20,10,10,7,9,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,22,12,12,8,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,11,8,11,10,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,2,2,1,1,1,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,9,6,8,7,12,8,11,11,22 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,6,5,10,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,10,7,10,10,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,7,5,6,6,12 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,3,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,6,5,10,6,6,4,5,4,5,5,9,5,6,5,7,5,8,8,15,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,9,17,9,10,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,16,9,9,6,8,5,6,6,9,5,6,5,7,5,8,7,13,7,8,5,7,5,6,6,11,7,8,7,10,7,11,11,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,8,5,6,5,10,6,7,6,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,4,6,6,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,4,7,5,6,6,12 +2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,5,7,7,12,6,7,5,7,5,6,5,9,6,6,5,8,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,14,22,11,11,8,12,7,8,7,13,7,7,6,8,6,8,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,5,4,5,4,8,5,6,5,7,5,8,8,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-3,-1,0,1,1,1,2,2,1,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,14,7,7,5,7,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,5,10,6,7,5,8,6,9,9,15,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,8,4,4,3,5,4,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,6,5,8,5,6,5,8,6,8,8,24,13,13,9,14,8,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,9,9,6,9,5,6,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,15,8,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,6,5,9,7,10,10,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,23,13,14,10,16,10,13,12,21,12,14,12,20,14,21,21,33,17,17,12,17,10,12,10,19,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,10,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,7,6,11,7,8,6,10,7,11,11,12,7,7,5,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,5,7,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,7,6,10,6,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,4,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,5,8,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,4,3,4,3,3,2,5,3,3,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,4,5,4,7,5,7,7,14 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,8,5,5,4,5,3,3,3,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,-1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,2,2,2,2,10,6,6,4,6,4,4,3,6,3,3,2,4,2,2,2,5,3,3,3,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,6,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,17,9,10,7,10,6,6,5,9,5,6,4,6,4,6,6,12,6,6,5,8,5,5,4,7,5,6,4,6,4,6,6,13,7,6,5,6,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,7,12,6,6,5,8,5,6,6,10,6,6,5,10,7,9,9,18,10,10,8,11,7,10,9,15,9,10,8,15,11,16,16,23,12,12,8,12,7,8,7,13,7,7,5,9,6,7,7,14,7,7,5,7,5,6,5,7,4,4,3,5,4,6,6,12,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,4,4,3,5,4,6,5,8,4,4,3,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,6,4,6,6,10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,16,9,9,7,10,6,8,8,13,8,9,8,13,9,14,14,20,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,7,5,6,4,5,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,9,5,4,3,4,3,3,2,2,2,2,2,2,2,2,3,1,1,2,2,3,2,3,3,4,3,3,3,4,3,5,6,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,3,4,4,8,5,5,5,8,5,7,7,6,3,3,2,3,2,3,2,3,2,1,1,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,6,6,10,6,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,5,5,4,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,11,6,6,5,7,5,6,6,12,7,9,8,13,9,12,12,28,15,15,10,14,8,10,8,14,8,9,7,11,7,9,8,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,20,10,10,7,9,5,6,6,10,6,7,6,9,6,7,7,16,8,8,6,8,5,6,6,10,6,7,6,10,7,9,8,19,10,10,7,11,7,8,6,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,6,11,7,8,6,10,7,10,11,20,11,11,8,13,8,10,9,16,9,10,9,15,10,14,14,29,15,15,11,17,11,14,13,23,13,16,14,24,16,24,24,35,18,18,12,17,10,12,10,18,10,11,9,14,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,19,10,10,7,11,7,8,7,11,6,7,6,10,7,9,9,13,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,14,13,26,14,14,9,13,8,9,7,12,7,8,6,10,6,8,7,11,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,7,7,5,8,6,8,7,13,8,9,8,13,9,12,12,21,11,10,7,10,6,7,6,10,6,6,5,7,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,5,4,5,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,7,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,8,5,6,6,10,7,10,9,17 +1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,10,6,8,7,13,8,9,8,13,9,13,13,19,10,10,7,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10 +2,1,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,9,5,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,9,5,6,4,7,5,6,5,11,6,6,5,6,4,5,5,7,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,13,7,8,6,9,6,7,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,9,8,14,8,10,8,15,10,15,15,22,12,12,8,10,6,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,7,4,5,4,7,4,5,5,12,6,6,4,7,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,6,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,4,3,4,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,2,2,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,9,5,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,7,7,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,7,11,7,8,7,12,8,12,12,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9 +2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,5,4,6,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,13,7,8,6,9,6,7,6,9,5,6,4,6,4,6,6,10,5,5,4,6,4,6,6,11,6,7,6,10,7,11,11,18,10,11,8,12,7,8,7,13,7,8,7,12,8,12,12,23,12,12,9,14,9,12,11,18,10,12,11,19,13,19,19,29,15,15,10,14,8,10,8,13,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,10,6,7,5,8,5,7,6,16,9,9,6,8,5,5,4,9,5,6,5,7,5,8,8,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,3,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,12,7,7,5,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,5,6,5,9,6,9,9,17,9,9,6,8,5,6,5,7,4,5,4,6,4,4,4,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,16 +2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,4,8,5,5,5,8,5,7,7,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,19,10,10,7,9,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,5,4,5,4,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,7,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,4,5,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,11 +3,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,3,4,3,6,3,3,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,4,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,17,9,8,6,9,5,6,5,8,5,5,4,5,4,6,5,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,6,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,7,10,10,16,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,18,12,18,18,26,14,14,9,13,7,8,7,12,7,8,6,8,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,8,5,5,4,8,5,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,5,4,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,6,4,6,5,10,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,3,3,4,4,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,3,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,2,3,3,4,3,3,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,7,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,17,12,18,18,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,3,4,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,3,2,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,4,5,5,9,5,6,5,9,6,8,8,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,9,5,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,8,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,10,9,15,10,15,15,31,16,15,10,14,8,9,8,14,8,8,6,10,7,10,9,17,9,9,7,11,7,8,7,12,7,8,7,11,7,10,9,20,11,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,20,13,19,19,42,21,21,14,20,12,14,12,21,11,12,9,14,9,13,12,22,12,12,9,14,9,11,9,16,9,10,8,14,9,13,12,27,14,14,10,14,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,7,11,8,11,11,21,11,12,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,29,16,17,12,19,11,14,13,24,14,16,13,21,14,20,20,38,20,21,16,25,15,20,18,34,19,22,19,33,23,34,34,49,25,26,18,26,15,17,15,26,14,14,10,16,10,13,12,22,11,11,8,12,7,9,8,14,8,9,7,10,7,10,9,25,13,14,10,14,8,10,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,11,10,18,10,12,9,15,10,14,13,20,10,10,7,9,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,14,8,8,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,16,11,15,15,31,16,16,11,16,10,12,11,19,10,10,7,11,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,8,13,9,12,11,15,8,9,7,10,6,7,6,10,6,7,6,10,7,10,10,18,10,10,8,13,8,10,9,17,10,11,9,15,10,15,15,27,14,14,10,15,9,10,8,14,8,8,6,9,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,5,3,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,5,4,7,5,7,6,11,6,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,7,5,7,8,14,8,8,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,7,8,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,9,8,13,9,14,14,28 +2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,17,9,8,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,11,7,10,10,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,26,14,14,10,14,8,9,8,14,8,8,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,7,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,7,5,7,6,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,15 +2,2,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,6,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,3,5,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,9,9,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,9,5,6,5,6,4,4,4,7,4,5,4,7,5,6,5,12,6,6,4,7,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,7,6,12,7,8,7,11,8,11,11,24,13,13,9,13,8,9,8,12,7,7,6,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,12,9,14,9,12,11,19,11,12,11,18,12,18,19,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,4,3,4,4,9,5,4,3,5,3,4,4,4,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,6,3,3,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,5,6,5,7,5,7,6,9,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,6,4,4,3,3,2,2,2,3,2,3,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,5,8,5,5,3,4,3,3,2,4,3,3,2,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,2,4,3,4,4,6,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,16 +1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,5,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,13,9,14,14,20,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,10,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,5,4,6,6,11 +1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,12,7,7,5,7,4,4,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,6,4,5,5,8,5,7,6,10,7,10,10,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,6,8,7,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,12,8,11,11,19,10,10,8,12,8,10,9,14,8,9,7,12,8,12,12,24,13,14,10,16,10,14,13,23,13,15,12,21,14,21,21,31,16,16,11,16,9,11,9,17,9,10,7,10,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,13,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,5,11,7,8,7,11,8,11,10,20,11,11,8,12,7,9,8,12,7,8,6,9,6,7,7,10,5,5,4,6,4,4,4,8,5,5,4,5,4,5,5,11,6,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,6,6,5,7,4,5,4,8,4,4,3,5,4,5,5,10,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,3,5,4,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,4,3,6,3,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,8,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,17 +0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,5,3,4,4,9,5,5,4,5,4,5,4,5,4,4,4,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,9,8,14,8,9,8,13,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,8,5,5,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,11 +-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,2,2,2,2,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,7,4,5,4,4,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,6,5,6,4,6,5,8,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,7,5,6,5,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,23,12,12,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,11,10,19,11,12,10,18,12,18,18,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,9,5,4,4,5,3,4,3,4,3,4,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,7,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,5,6,6,9,5,6,5,7,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,4,8,5,5,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,13 +-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,10,5,5,4,6,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,5,8,5,5,4,5,3,4,4,4,3,3,3,5,4,5,5,8,5,5,5,8,6,8,8,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,0,-1,-1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,13,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,13,7,8,6,9,6,7,7,13,8,9,8,13,9,13,13,29,15,16,11,16,9,11,9,16,9,9,7,10,6,8,8,14,8,9,7,10,6,8,7,12,7,8,7,11,7,9,9,19,10,10,7,11,7,9,8,14,8,9,7,10,6,8,8,18,10,10,8,13,8,10,10,18,10,12,10,18,12,18,18,41,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,24,13,14,10,15,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,13,8,10,9,16,9,10,8,12,8,10,10,20,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,24,13,13,9,14,9,11,9,16,9,10,8,13,8,11,11,18,10,10,8,12,8,11,10,18,10,12,10,16,11,16,16,30,16,16,12,18,11,14,12,21,12,14,11,19,13,18,17,31,17,18,14,22,14,19,17,32,18,22,18,32,22,32,32,43,22,22,15,22,13,15,13,22,12,12,9,13,9,12,11,22,12,12,8,11,7,8,7,12,7,7,6,10,7,10,9,21,11,11,8,12,7,9,8,13,7,7,6,9,6,9,9,15,8,9,7,10,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,4,3,4,4,7,5,6,6,14,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,10,6,8,8,14,8,9,8,14,10,14,15,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,15,8,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,8,6,8,5,5,5,8,5,6,5,7,5,6,6,13,7,8,6,9,6,7,6,11,7,8,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,14,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,9,7,12,8,10,9,16,9,11,9,16,11,16,16,19,10,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,3,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,7,7,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,7,5,8,5,5,5,8,5,5,4,7,5,6,5,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,8,7,11,8,12,12,24 +-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,9,5,6,4,5,4,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,2,3,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,7,10,11,23,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,14,8,8,6,9,6,7,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,7,6,9,5,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,18,12,18,18,24,12,13,9,12,7,9,7,12,7,7,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,5,8,6,8,9,16,9,9,6,9,6,7,6,9,5,6,4,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,7,5,6,5,10,6,7,6,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,5,4,6,5,9,5,4,3,5,3,3,3,5,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,6,9,6,7,7,13,7,8,7,13,9,12,13,27,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,7,10,6,8,7,11,6,7,6,10,7,9,9,15,8,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,11,6,6,5,9,6,8,8,17,9,9,6,9,6,8,7,10,6,6,5,8,6,8,8,12,7,8,6,8,5,7,7,12,7,8,6,11,8,11,11,20,11,11,8,12,8,10,8,15,9,10,8,12,8,12,12,21,12,13,10,15,9,12,11,22,13,15,13,22,15,22,22,27,14,15,10,14,8,10,8,14,8,8,6,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,10,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,6,4,5,4,8,5,5,4,6,5,7,7,11,6,7,5,8,5,6,6,12,7,8,7,11,7,10,11,13,7,7,5,7,4,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,4,5,4,5,5,9,5,5,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,4,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,5,4,8,5,7,7,14,8,8,5,7,5,6,6,8,5,5,4,7,5,7,7,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,10,11,8,12,8,10,9,18,10,12,10,18,12,18,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,4,6,4,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,2,2,2,1,1,1,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,17,9,10,7,10,6,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,6,6,11,6,6,5,8,6,9,9,15,8,8,6,9,5,5,4,7,4,4,4,6,4,6,6,13,7,7,6,9,6,8,7,13,8,9,8,13,9,14,14,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,11,7,10,10,19,10,10,8,12,7,9,7,12,7,8,6,10,7,10,9,17,10,11,8,13,8,11,11,19,11,13,11,18,13,19,19,39,20,20,14,20,12,14,12,20,11,11,9,14,9,12,12,24,13,13,9,14,8,10,9,17,10,11,9,14,9,13,13,23,12,12,9,13,8,10,9,16,9,10,8,12,8,11,10,20,11,12,9,13,8,10,9,14,8,10,8,13,9,13,12,24,12,12,8,12,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,18,10,12,9,15,10,15,15,30,16,16,12,18,11,13,12,21,12,14,11,18,12,17,17,30,16,18,13,21,13,18,16,32,18,22,18,32,22,32,32,39,20,20,14,20,11,13,11,19,10,11,9,14,9,12,11,22,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,9,9,14,8,9,7,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,9,7,10,6,8,7,11,7,8,7,11,8,11,11,18,9,9,7,10,6,8,7,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,14,8,9,7,10,7,9,8,17,10,12,10,16,11,15,15,17,9,9,6,9,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,6,4,5,5,8,6,8,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,4,4,6,4,5,5,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,7,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,4,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,12,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,6,5,9,6,6,6,9,6,10,10,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,7,9,8,16,9,9,6,9,6,7,6,12,7,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,6,10,6,7,6,9,6,9,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,13,7,7,6,8,6,7,7,12,7,8,6,11,8,11,11,21,11,11,8,12,8,9,8,14,8,9,7,12,8,12,11,21,11,12,9,15,9,12,11,22,12,15,12,22,15,22,22,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,6,4,4,4,7,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,16 +-3,-1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,6,4,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,12,7,8,7,12,7,8,7,11,7,9,9,17,9,10,8,13,9,12,11,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,9,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,38,20,20,14,20,12,14,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,9,8,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,12,6,6,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,7,11,7,8,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,17,9,9,7,10,6,6,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,8,6,8,9,16,9,9,7,10,6,8,7,11,6,7,5,9,6,9,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,6,4,4,4,6,4,4,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,7,9,9,17,9,10,8,13,8,11,10,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,22,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,8,14,8,9,7,11,8,11,11,19,10,11,8,13,8,11,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,20,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,31,18,21,18,32,22,32,32,37,19,19,13,20,11,13,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,11,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,9,16,9,9,7,10,6,7,6,11,6,7,5,9,6,8,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,4,4,3,5,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,23,12,13,9,13,8,9,7,12,7,8,7,11,7,10,9,16,9,10,8,12,8,10,9,15,9,10,8,14,9,13,13,24,12,12,9,13,7,8,7,12,7,7,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,12,23,12,12,9,13,8,10,9,16,9,9,7,12,8,11,11,20,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,27,15,18,15,26,18,26,26,52,27,27,18,26,15,19,16,29,16,17,14,23,15,22,21,40,21,21,15,24,15,19,17,31,17,20,16,28,19,27,27,53,27,27,19,28,16,20,17,30,17,19,15,24,15,21,21,40,21,23,17,26,16,22,21,39,22,26,22,40,27,39,39,76,39,39,27,40,23,28,23,41,22,23,18,29,19,26,24,46,24,24,17,26,16,20,17,31,17,19,15,25,17,24,24,47,24,24,17,25,15,18,15,27,15,17,13,22,15,21,21,40,21,22,16,26,16,22,21,41,23,28,23,40,27,39,39,76,38,38,26,39,23,28,24,44,23,25,19,31,20,27,26,50,26,28,20,31,18,23,21,38,21,24,19,32,21,30,30,59,30,31,22,33,20,26,23,43,23,26,21,35,23,33,32,62,33,35,26,42,26,35,33,63,35,42,35,63,42,62,62,73,37,37,25,37,21,26,22,38,20,22,17,27,17,24,23,45,23,24,17,26,16,20,18,32,18,20,16,28,19,27,27,53,27,27,19,29,17,21,18,31,17,18,14,22,14,18,17,33,17,18,13,21,13,16,15,28,16,19,16,28,19,28,28,55,28,28,19,28,16,20,17,31,17,18,14,22,14,20,19,36,19,19,14,22,14,18,16,29,16,18,14,24,16,23,23,44,23,23,16,25,15,19,16,29,16,18,14,23,15,20,20,38,20,21,15,23,14,19,18,33,18,21,17,30,20,29,28,54,28,28,19,28,16,19,15,26,14,15,11,18,12,16,15,29,15,15,11,17,10,13,12,21,12,13,10,15,10,14,14,27,14,14,10,14,9,11,9,16,9,10,8,12,8,11,11,20,11,11,8,13,8,11,11,21,12,15,13,23,16,23,23,44,22,22,15,22,13,16,14,25,14,15,12,19,12,17,17,32,17,18,13,20,12,15,14,25,14,17,14,23,16,23,23,45,23,23,16,23,14,17,15,26,14,15,12,19,13,18,17,32,17,18,13,20,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,13,12,21,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,8,10,9,17,9,9,6,7,4,5,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,9,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,14,8,10,8,14,8,9,7,11,8,11,11,20,11,11,8,12,7,9,8,14,8,9,8,13,9,12,11,21,11,12,9,14,9,11,10,17,10,11,8,13,9,13,12,23,12,13,10,17,11,14,13,24,13,15,13,22,15,21,21,41,21,22,15,23,13,16,13,23,12,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,22,14,20,20,38,19,19,13,20,11,13,11,20,11,11,9,14,10,14,13,25,13,14,11,17,10,13,12,23,13,16,14,24,16,24,24,46 +-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12,6,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,8,9,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,10,9,15,9,10,8,13,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,16,9,10,8,13,9,13,13,24,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,11,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,30,16,16,12,17,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,19,13,19,11,13,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,9,16,9,10,8,12,8,10,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,19,10,11,8,12,8,10,9,17,10,11,9,15,10,15,15,28,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,12,8,12,8,9,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,5,9,6,6,5,7,5,7,6,12,6,7,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,13,9,12,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,15,9,10,8,12,9,13,13,23,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,12,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,31,16,16,12,18,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,18,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,28,14,14,10,15,9,10,9,16,9,10,8,12,8,10,9,18,10,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,15,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,7,9,6,8,7,11,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,13,9,12,12,24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,12,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,4,3,4,3,4,3,4,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,9,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,8,6,9,6,8,7,14,8,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,12,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,7,5,8,6,7,7,14,8,8,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,26,14,14,10,14,8,10,8,15,8,8,6,10,7,9,9,16,8,9,6,9,6,7,6,10,6,7,6,8,6,9,9,16,8,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,9,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,18,10,10,8,11,7,9,8,13,8,9,7,12,8,11,11,21,11,11,8,12,8,9,8,15,8,10,8,12,8,12,12,21,11,12,9,15,9,12,12,21,12,15,12,22,15,21,21,25,13,12,8,12,7,8,8,13,7,8,6,10,6,8,8,16,8,9,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,6,8,6,7,6,12,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,6,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,4,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,11,7,10,10,13,7,7,5,7,4,5,4,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,9,5,6,5,9,6,8,8,16 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,18,9,9,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,26,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,21,11,12,9,13,8,11,10,17,10,11,9,15,10,14,14,28,15,15,11,16,9,11,10,15,9,10,8,12,8,12,12,22,12,13,9,14,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,12,14,12,22,12,12,9,15,10,13,12,23,12,13,9,14,9,11,9,15,8,9,7,12,8,12,12,23,12,13,9,13,8,9,8,15,9,10,8,12,8,12,11,21,11,12,9,14,9,12,12,21,12,14,12,20,14,20,20,37,19,20,14,20,12,15,13,21,11,12,10,16,11,15,14,27,14,14,10,16,10,12,11,20,11,12,10,17,11,16,16,32,17,17,12,18,11,14,12,22,12,14,11,18,12,18,17,30,16,18,13,21,13,18,17,31,18,21,18,32,21,31,31,37,19,18,12,18,11,13,11,19,11,12,9,14,9,12,11,23,12,12,9,14,8,10,9,16,9,11,9,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,11,7,10,9,18,10,10,7,11,7,8,8,15,9,10,9,16,11,15,15,27,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,22,12,12,9,13,8,9,8,13,7,8,6,10,7,10,10,19,10,11,8,12,8,10,9,17,9,10,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,9,7,10,6,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,5,7,7,10,6,7,5,8,5,7,7,10,6,7,7,12,9,13,13,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,9,17,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,10,10,16,9,10,7,11,7,9,8,15,9,10,9,16,11,15,15,19,10,10,7,10,6,7,6,12,7,7,5,7,5,6,5,10,5,5,4,6,4,5,5,7,5,6,5,8,5,7,6,9,5,5,4,5,3,4,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,5,5,4,6,4,5,4,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,14,7,7,5,8,6,8,7,11,6,7,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,7,7,5,8,5,6,6,13,8,9,7,12,8,12,12,24 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,11,6,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,7,6,9,6,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,7,12,8,12,12,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,8,16,8,8,6,9,6,7,6,12,7,7,6,10,6,9,9,18,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,21,11,10,7,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,7,9,5,6,5,9,5,5,4,7,4,6,5,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,9,6,6,6,10,7,9,9,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,-2,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,4,2,2,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,13,7,6,4,7,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,6,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,8,16,9,9,7,9,5,6,6,11,6,6,5,9,6,8,9,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,15,8,8,6,10,7,9,9,15,9,10,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,19,10,10,7,11,7,9,8,14,8,8,7,11,7,10,10,21,11,12,8,12,8,10,9,14,8,9,7,12,8,12,12,20,11,12,9,14,9,12,12,21,12,14,12,22,15,21,21,25,13,12,8,13,8,10,8,13,7,8,6,9,6,8,8,16,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,11,6,7,6,11,6,6,5,8,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,9,7,10,10,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,8,6,8,5,6,6,11,7,8,7,12,8,11,11,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,4,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,16 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,7,4,6,6,11,6,7,5,7,4,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,5,5,9,5,6,5,8,5,7,8,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,13,7,7,6,9,6,8,7,13,8,9,8,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,6,9,6,8,7,12,7,7,6,9,6,8,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,4,4,4,5,4,5,5,10,6,6,4,7,4,5,5,9,6,6,5,8,6,8,8,18,9,9,7,10,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,-2,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,6,5,7,5,6,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,7,7,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,7,4,5,4,6,4,4,4,6,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,18,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,8,6,10,6,8,8,14,8,9,7,12,8,12,12,25,13,13,10,15,9,11,10,17,9,10,7,11,7,9,9,19,10,11,8,13,8,10,9,16,9,11,9,16,11,15,15,28,14,14,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,12,9,15,9,12,11,20,11,13,11,19,13,20,20,38,19,19,13,20,12,14,12,20,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,12,12,8,12,7,9,8,15,8,9,7,11,7,10,10,24,13,14,11,17,11,14,13,23,13,15,12,21,14,21,20,38,19,19,13,20,12,15,13,22,12,14,11,17,11,15,14,29,15,16,11,16,10,13,11,20,11,12,9,15,10,14,14,32,17,18,13,19,11,13,11,20,11,13,11,18,12,17,17,29,16,17,13,20,13,18,17,32,18,21,18,31,21,30,30,35,18,18,12,18,11,13,11,20,11,12,9,15,9,12,11,24,13,13,9,13,8,10,8,14,8,9,8,13,9,12,12,30,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,10,14,8,9,8,14,8,9,7,10,7,10,10,16,9,9,7,11,7,9,8,13,8,9,7,12,8,11,11,20,10,10,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,12,7,9,8,15,9,10,8,14,10,15,15,31,16,16,11,17,10,12,10,17,9,10,8,12,7,9,9,16,9,9,7,11,7,8,7,12,7,8,6,10,7,9,8,13,7,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,9,8,14,8,9,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,24,13,14,10,15,9,10,9,16,9,10,8,12,8,10,9,19,10,11,8,12,8,11,10,18,10,12,10,17,11,16,16,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,8,5,6,5,8,5,7,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,5,5,9,5,4,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,7,7,12,7,8,7,11,8,11,12,24,13,13,9,14,8,10,8,14,8,8,6,9,6,9,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,11,11,22,12,12,8,11,7,8,8,14,8,9,7,11,7,9,9,14,8,8,6,9,6,7,6,11,7,9,8,13,9,13,13,25 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,20,10,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,20,10,11,8,11,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,17,9,10,7,10,6,7,6,11,6,7,6,10,7,9,9,15,8,9,7,11,7,10,9,17,10,11,10,17,11,16,16,18,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,6,9,9,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,7,5,7,7,13 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,5,6,6,10,6,6,5,6,4,6,5,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,7,5,6,6,9,5,6,4,7,5,6,6,14,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,21,11,12,8,11,7,8,7,12,7,7,6,9,6,8,8,16,9,9,6,9,6,7,6,11,6,7,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,6,10,7,10,10,16,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,19,10,10,7,10,6,7,7,12,6,6,5,8,5,6,6,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,17,9,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,6,9,5,6,5,8,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,5,4,6,6,9,5,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,5,7,5,8,8,13,7,8,6,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,4,6,4,6,7,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,13,7,7,5,6,4,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,14 +-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,8,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,4,5,5,7,4,5,4,5,4,5,5,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,15,8,9,6,9,5,6,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,7,7,14,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,4,3,5,5,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,4,3,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,9,7,10,6,8,8,15,9,10,8,14,10,14,14,26,13,13,9,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,6,8,5,6,6,9,5,6,5,8,6,8,9,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,17,9,9,7,11,7,9,9,15,9,10,9,16,11,15,15,24,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,19,10,10,7,10,6,7,7,13,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,7,11,7,10,10,20,11,12,9,13,9,12,11,22,13,15,13,22,15,21,21,23,12,12,9,13,8,9,8,13,7,8,6,8,6,8,7,15,8,8,6,8,5,6,6,9,5,6,5,8,6,9,9,22,12,12,8,12,7,9,7,10,6,7,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,5,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,16,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,7,7,14,8,10,8,14,9,12,12,13,7,8,6,8,5,5,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,5,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,5,8,5,6,6,8,5,5,5,8,6,8,8,18,9,9,7,10,6,6,5,11,6,6,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,5,4,7,5,7,6,10,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,17 +-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,9,6,6,6,10,7,10,10,15,8,8,6,9,6,7,6,10,6,6,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,6,4,7,5,7,7,13,7,7,5,8,5,5,5,9,5,5,4,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,14,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,13,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,14,9,13,13,20,11,11,8,12,7,9,8,13,7,8,6,9,6,9,9,16,9,9,6,9,5,6,6,11,7,8,6,9,6,9,9,17,9,9,7,10,6,7,6,12,7,7,6,9,6,9,9,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,18,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,5,7,7,18,10,10,7,10,6,8,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,10,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,5,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,15 +-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,13,9,12,12,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,17,17,18,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,9,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,10,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,6,14,8,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,14 +-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,17,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,15,8,7,5,7,4,4,4,6,3,3,3,4,3,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,7,6,11,7,10,10,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,23,12,13,9,14,8,10,9,15,9,10,8,14,9,13,12,22,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,22,13,15,13,22,12,13,10,15,9,12,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,12,12,21,11,11,8,13,8,9,8,14,8,9,8,14,9,13,13,24,13,14,11,17,11,14,13,24,14,16,13,23,16,23,22,36,19,19,13,20,12,14,12,21,12,13,10,16,11,15,15,28,15,15,11,16,10,12,11,21,12,13,10,17,11,16,16,29,15,15,11,16,10,13,11,20,11,13,10,17,11,15,15,28,15,17,13,20,13,17,17,32,18,22,18,32,22,32,32,35,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,7,9,8,15,9,10,8,12,8,12,12,31,16,17,12,18,10,12,11,19,10,11,8,13,9,12,11,20,11,11,8,12,8,10,9,17,10,12,10,16,10,14,14,23,12,12,9,14,8,9,8,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,31,16,16,11,16,9,10,8,13,7,8,6,9,6,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,17,9,9,7,11,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,13,9,13,13,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,6,10,7,10,10,28,14,14,10,14,8,10,8,14,8,10,8,13,8,11,11,20,11,12,9,13,8,10,10,18,11,13,11,18,12,18,18,19,10,10,7,10,6,7,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,4,7,7,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,8,5,6,5,7,5,8,8,9,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,9,7,12,7,7,6,10,7,9,8,14,8,9,7,11,7,9,8,14,8,9,8,14,10,14,14,27 +-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,17,17,18,9,9,7,10,6,6,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,6,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,7,4,6,6,11,6,7,5,7,5,6,6,9,6,7,6,9,7,10,10,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,10,6,6,4,5,3,4,3,4,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,12,7,8,6,9,6,7,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,6,9,6,7,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,16,9,10,8,12,8,10,10,16,10,12,10,17,12,18,18,18,9,9,7,10,6,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,17,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,9,5,6,5,9,7,10,10,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,5,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,12,7,7,5,6,4,4,4,5,3,3,2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,8,8,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,5,10,5,5,4,5,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,5,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,8,5,7,7,13,8,9,7,12,8,12,12,26,13,13,9,13,8,9,8,12,7,8,6,9,6,7,7,13,7,7,5,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,6,8,7,13,8,9,7,12,8,12,12,21,11,10,7,10,6,7,6,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,12,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,18,10,10,8,13,8,11,10,17,10,12,10,18,13,19,19,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,7,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,5,5,9,5,6,5,8,5,7,7,18,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,6,5,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,14,8,8,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,10,6,7,6,10,8,12,12,12,6,6,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,2,2,2,2,3,3,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,7,12,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,17 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,8,5,5,4,5,4,5,4,8,5,6,5,7,5,7,7,16,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,8,5,7,6,10,6,7,6,11,8,11,11,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,5,4,6,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,5,9,5,6,5,7,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,21,11,11,8,10,6,8,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,7,6,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,13,7,8,6,10,6,8,8,13,8,9,8,13,9,14,14,15,8,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,5,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,5,8,5,5,4,7,5,6,5,8,5,6,5,8,6,9,9,9,5,4,3,5,3,3,3,5,3,2,2,3,2,2,2,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,7,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,5,3,3,2,2,2,3,3,4,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,3,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,4,6,4,4,4,7,5,8,8,17,9,9,6,9,6,7,6,9,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,8,8,14,8,10,9,15,10,15,15,34,18,18,12,17,10,11,9,16,9,9,7,10,7,9,9,15,8,9,7,10,6,8,8,14,8,9,7,11,8,11,11,18,9,9,6,9,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,28,14,14,10,15,9,10,8,14,8,10,8,13,8,11,11,18,10,10,8,13,8,10,9,16,9,11,9,15,10,13,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,10,21,11,12,10,16,10,13,12,22,12,14,12,21,15,22,22,25,13,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,8,5,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,15,8,9,7,10,6,8,7,12,7,7,6,10,7,10,9,12,7,7,5,7,5,6,5,8,5,5,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,6,7,6,10,6,6,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,7,5,8,5,6,5,8,5,6,5,9,6,9,9,17,9,9,7,11,7,8,7,12,7,8,6,9,5,6,6,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,5,6,6,10,6,7,5,8,6,8,8,13,7,8,7,11,7,9,8,15,9,10,8,14,10,15,15,16,8,8,6,8,5,6,5,7,4,4,4,6,4,5,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,5,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,3,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,5,5,9,6,8,8,17,9,9,6,8,5,7,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22 +-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,7,4,4,3,4,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,6,4,7,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,12,6,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,8,7,5,7,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,3,4,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,5,8,5,6,6,10,7,10,9,22,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,14,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,7,4,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,5,4,6,4,4,3,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,7,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11 +-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,2,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,11,6,5,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,14,8,9,7,10,6,8,7,14,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,17,9,8,6,8,5,6,6,12,7,7,6,10,7,9,9,16,9,9,7,10,6,7,6,13,8,10,8,14,10,14,13,24,13,13,9,14,8,10,8,12,7,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,8,7,13,8,9,7,11,7,9,9,17,9,10,8,12,8,11,10,19,11,13,11,18,12,18,18,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,9,6,7,6,9,6,9,9,15,8,8,6,10,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,7,11,6,6,5,8,6,8,7,13,8,10,8,14,10,14,14,17,9,9,6,9,5,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,8,6,9,5,6,5,8,4,4,3,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,18 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,7,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,20,10,11,8,10,6,7,6,9,5,6,5,7,4,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,12,6,7,5,8,5,7,7,13,8,9,7,12,8,12,12,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,11,6,6,5,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,4,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,3,3,4,4,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,5,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,29,15,15,10,14,8,10,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,10,6,6,6,10,6,8,8,16,8,8,6,8,5,7,6,11,6,7,5,9,6,9,8,16,9,9,6,10,6,7,7,12,7,8,7,12,8,12,12,22,12,12,8,13,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,11,7,10,9,17,9,10,7,11,7,10,9,18,10,12,10,17,12,17,17,24,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,14,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,5,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,4,6,6,9,5,6,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,28,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,9,6,6,6,9,6,8,8,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,10,6,7,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,5,4,5,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,8,5,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,14,10,14,14,16,8,9,6,9,5,6,5,8,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,6,6,9,6,9,9,17 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,2,2,3,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,9,5,6,5,7,5,8,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,-3,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,18,9,9,7,10,6,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,20,11,13,11,20,13,19,19,55,28,28,19,28,16,19,16,28,15,16,12,20,13,18,17,33,17,18,12,18,11,14,12,22,12,14,11,17,11,16,16,30,16,16,11,17,10,12,11,20,11,12,9,15,10,13,12,23,12,13,10,15,9,12,11,21,12,14,12,22,15,22,22,41,21,22,15,22,13,15,13,23,12,13,10,16,10,12,11,21,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,37,19,19,13,19,12,15,13,23,13,15,12,21,14,20,20,38,20,21,15,24,15,19,18,34,19,23,19,33,22,33,32,45,23,23,16,25,14,17,14,25,14,15,11,17,10,13,12,23,12,12,8,12,7,9,8,15,9,10,9,15,10,14,14,27,14,13,9,13,8,9,8,13,7,7,6,9,6,9,8,15,8,9,6,9,5,6,5,9,5,6,5,9,6,8,8,16,8,8,5,7,4,5,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,6,10,7,10,10,30,15,15,11,16,10,12,10,17,9,9,7,11,7,9,9,17,9,9,6,8,5,6,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,10,9,15,10,14,14,25,13,14,10,14,8,9,8,14,8,9,8,13,8,11,11,20,11,12,9,14,8,10,9,17,9,10,8,14,10,14,14,26,14,14,10,14,9,12,11,19,11,12,10,16,11,15,15,28,15,16,12,19,12,16,16,30,17,20,16,28,19,28,27,31,16,16,11,15,9,11,10,17,10,11,8,13,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,7,9,8,15,8,7,5,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,6,6,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,15,8,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,5,5,8,5,7,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,7,11,7,9,8,15,8,9,8,13,9,12,12,25,13,13,9,12,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,16,9,9,6,9,6,8,8,14,8,9,7,12,8,11,10,18,10,11,8,13,8,10,9,16,10,12,10,18,12,18,17,33 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,5,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,9,17,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,6,6,11,7,8,7,11,8,11,12,21,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,23,12,12,9,13,8,9,8,13,7,8,6,9,6,7,6,12,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,9,5,6,4,5,4,5,5,7,4,5,4,7,5,6,6,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,10,18,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,12,20,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,24,12,12,9,14,8,10,8,13,7,8,6,9,6,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,8,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,4,8,5,5,4,6,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,2,4,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,13,8,9,7,12,8,12,12,16,9,9,6,10,6,7,6,9,5,6,4,6,4,5,4,8,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,5,5,8,4,4,3,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,13 +-2,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,-1,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,7,4,5,4,5,4,5,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,7,4,5,5,11,6,7,6,10,7,10,10,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,6,7,6,11,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,8,12,7,9,8,13,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,11,18,12,18,18,24,13,13,9,14,8,10,8,14,8,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,5,5,8,5,7,7,15,8,8,5,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,5,5,8,6,9,9,13,7,7,5,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,13,7,7,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,10,7,9,9,15,9,11,9,16,11,16,16,16,9,9,6,8,5,6,6,10,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,7,6,10,7,10,10,19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,4,3,5,4,5,6,8,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,11 +-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,2,2,2,3,4,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,4,3,3,3,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,5,3,4,5,6,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,22,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,7,11,7,8,8,14,8,9,8,13,9,13,13,17,9,9,7,9,5,6,6,9,5,5,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,3,6,4,6,5,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,10,5,5,4,5,3,4,3,5,3,4,3,6,4,5,5,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,4,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14 +-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,10,6,6,4,7,4,5,5,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,7,7,12,7,7,5,6,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,5,4,4,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,1,1,2,1,1,1,2,1,1,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,3,6,4,6,5,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,4,3,5,4,5,4,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,7,8,4,4,3,5,4,5,5,10,6,7,7,12,8,12,11,34,18,18,12,17,10,12,10,18,10,11,8,13,8,10,9,22,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,14,8,8,6,10,6,7,6,11,6,7,6,9,6,8,7,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,6,13,7,8,6,10,6,8,7,12,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,23,13,14,10,16,10,13,12,22,13,15,12,20,14,20,20,26,14,14,10,15,9,10,8,14,8,9,7,10,6,8,7,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,15,8,8,6,9,5,6,5,7,4,5,4,5,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,10,16,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,9,5,6,5,8,5,7,6,10,6,6,5,9,7,10,10,15,8,8,6,8,5,7,6,10,6,6,5,9,6,9,8,19,10,11,8,13,8,10,9,16,10,12,10,17,12,18,18,17,9,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,5,10,6,7,5,8,5,6,6,11,7,8,7,12,8,11,11,21 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,7,5,7,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,4,4,6,4,4,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,11,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12 +-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,20,11,11,7,10,6,7,6,10,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,6,4,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,8,6,8,8,13,7,8,6,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,16,8,8,6,9,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,5,12,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,5,3,4,4,5,3,3,3,5,3,4,3,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,13 +0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,12,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,5,4,9,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,6,10 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,4,6,5,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,2,1,1,1,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,5,3,3,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,11,6,5,4,5,3,3,3,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,10,6,7,6,10,7,10,9,24,12,12,9,13,8,9,8,13,7,8,6,10,7,9,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,15,8,9,6,9,6,7,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,7,8,6,10,7,9,9,15,8,9,7,10,6,7,6,12,7,9,7,12,8,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,20,10,10,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,6,4,4,3,5,4,5,5,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,5,10,6,7,6,9,6,7,7,14,8,8,6,9,6,8,7,11,7,8,7,12,9,13,13,14,7,7,5,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,9,9,17 +0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,6,7,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,4,5,9,6,7,6,9,6,8,8,21,11,12,8,12,7,9,7,12,7,8,6,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,9,13,7,8,6,9,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,12,8,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,8,5,8,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,9,6,7,6,10,6,7,6,11,8,12,12,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16 +-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,16,9,10,7,11,7,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16 +-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,7,5,8,8,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,6,4,6,6,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,3,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,1,1,1,0,0,0,1,1,1,2,2,2,1,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,16,9,9,6,8,5,7,6,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,5,9,5,6,4,6,4,6,6,12,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,39,20,21,14,21,12,15,12,21,11,12,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,15,10,14,14,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,23,12,13,10,15,9,11,10,19,11,12,10,17,11,16,16,31,16,17,13,21,13,17,15,27,15,18,15,27,18,27,28,32,17,17,12,17,10,12,10,18,10,10,7,11,7,9,8,15,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,7,4,4,3,3,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,5,5,11,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,13,7,8,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,6,4,4,4,7,5,6,6,13,7,7,5,7,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,7,14,8,10,8,13,8,11,11,24,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,22,12,13,10,16,10,14,13,23,13,15,12,21,14,21,21,21,11,11,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,6,4,5,3,3,3,5,3,4,3,5,4,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,6,7,7,4,4,3,4,2,2,2,2,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,1,6,4,4,3,3,2,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,2,2,3,3,5,3,3,2,3,3,4,4,7,5,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,15,15,30 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,6,8,5,6,6,10,6,6,5,8,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,4,4,8,5,6,6,9,6,9,9,13,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,14,8,10,8,14,10,14,15,17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,6,8,7,12,7,8,7,11,8,11,11,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,4,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,8,8,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,4,3,4,4,6,4,5,4,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,6,4,6,4,4,4,9,5,6,6,10,7,10,9,14,7,7,5,9,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,15,9,10,8,15,10,15,16,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,8,5,7,7,8,4,4,3,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,5,4,8,5,6,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,12,6,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,16 +0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,7,5,6,6,15,8,9,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,7,4,5,5,8,5,7,7,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,7,6,11,7,8,6,11,8,11,12,14,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,6,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,11 +-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,6,5,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,7,4,4,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,4,10,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,6,10,7,10,9,24,13,13,9,14,8,9,8,12,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,5,9,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,11,7,8,7,12,8,11,11,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,17,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,4,3,7,4,4,3,5,4,5,4,7,4,4,4,6,4,5,4,9,5,6,5,9,6,9,8,14,7,7,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,7,10,6,8,8,14,8,9,7,12,9,13,14,12,7,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,6,3,3,2,3,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,8,5,5,4,7,5,6,6,8,5,6,5,9,6,9,9,17 +0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,9,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,7,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,4,4,6,4,6,6,10 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,4,3,4,3,5,4,5,4,6,3,3,2,4,3,4,4,7,4,4,4,7,5,8,7,19,10,11,8,11,7,8,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,13,9,14,14,18,10,10,7,10,6,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,7,6,11,7,8,7,10,7,11,11,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,6,5,7,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,14,8,9,7,10,6,8,8,14,8,9,8,12,9,13,13,17,9,9,6,9,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12 +-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,2,3,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,3,2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,10,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,5,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,9,5,6,5,7,5,6,5,9,6,7,6,9,7,10,10,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,8,14,8,9,7,12,8,12,11,18,9,9,6,9,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,13,13,26,14,14,10,16,10,12,10,18,10,12,9,15,10,13,13,26,14,16,12,19,12,16,14,26,14,16,13,23,16,24,24,32,16,16,11,16,9,11,9,16,9,10,8,12,7,9,9,16,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,6,4,4,4,6,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,5,5,4,6,4,6,6,10,6,8,7,12,8,11,11,20,11,11,8,12,7,9,7,12,7,8,7,11,7,10,10,22,12,13,10,15,9,12,10,18,10,12,10,18,13,19,19,17,9,9,6,8,5,7,6,10,6,6,5,7,4,5,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,2,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,23 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,19,10,9,6,9,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,8,10,8,13,9,14,14,18,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,7,5,7,7,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,6,9,6,7,6,10,6,7,6,11,8,11,11,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,7,5,7,7,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,7,5,8,8,13,7,7,5,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,7,13,7,8,5,7,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,6,9,5,6,5,10,7,10,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,16,11,16,16,21,11,11,8,11,7,8,7,11,6,6,5,9,6,8,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,3,2,2,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,7,6,12,7,8,7,13,9,12,13,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,7,5,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,18,10,10,7,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,11,8,10,11,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,2,2,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,8,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,6,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,6,6,9,6,7,6,10,7,10,10,31,16,16,11,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,9,6,7,6,13,7,8,6,10,7,10,10,18,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,6,9,6,8,7,11,7,8,6,10,7,10,10,19,10,10,7,11,7,9,8,12,7,8,6,9,6,8,8,15,8,9,7,10,7,9,8,12,7,9,8,13,9,13,13,24,13,13,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,10,16,10,13,13,25,14,17,14,24,16,24,23,32,16,16,11,16,9,11,10,16,9,9,7,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,6,10,7,10,10,18,9,9,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,10,7,10,10,18,10,11,8,12,7,9,9,18,11,13,11,19,13,19,19,16,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,5,5,9,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22 +-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,9,5,6,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,16,9,9,6,10,6,7,7,11,6,7,6,10,6,9,9,17,9,10,7,11,7,9,9,17,10,11,9,16,11,16,16,22,11,11,8,11,7,8,7,11,6,7,5,8,6,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,12,7,7,6,8,5,7,6,12,7,9,8,13,9,13,13,11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,1,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,6,9,7,10,10,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,13,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,11,7,8,7,11,8,12,12,23 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,14,8,8,5,7,4,5,4,8,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,8,7,11,8,12,12,23 +-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,5,4,6,7,14,8,8,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,14,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,6,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,9,6,8,8,16,9,9,7,12,7,9,9,16,9,10,8,14,9,13,12,23,12,13,10,15,9,12,12,22,12,14,11,19,13,18,18,62,31,31,21,31,18,22,19,33,17,18,14,22,14,18,17,32,17,18,13,20,12,16,14,26,15,17,13,22,15,22,22,43,22,23,16,24,14,17,15,26,14,16,12,19,12,16,16,30,16,16,12,18,11,14,13,23,13,15,13,22,14,20,20,38,20,20,14,20,12,14,13,23,12,13,10,17,11,14,13,24,13,13,10,16,10,12,11,20,11,13,11,19,13,19,18,35,18,19,13,19,12,15,13,24,14,16,13,21,14,20,20,40,22,24,18,30,19,25,24,45,26,31,26,45,30,45,45,65,33,32,22,32,18,21,18,32,17,18,13,21,13,17,16,31,16,17,12,17,10,13,12,21,11,12,9,15,10,13,13,25,13,12,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,8,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,11,13,11,19,12,17,17,32,16,16,11,15,9,10,9,15,8,9,7,11,7,9,8,15,8,8,6,10,6,7,6,11,7,8,7,12,9,13,13,24,13,13,9,14,9,12,11,19,11,12,9,15,10,14,14,27,15,17,13,21,13,18,17,32,19,23,19,34,23,35,35,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,6,6,11,7,8,6,10,7,10,10,18,9,9,6,9,5,5,4,5,3,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-3,-1,-1,0,0,1,1,1,0,1,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,4,5,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,13,7,8,7,11,8,11,10,19,11,12,9,14,9,11,10,19,11,13,12,21,15,22,22,44 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,32,16,16,11,16,10,12,10,17,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,11,13,10,16,10,13,12,23,13,16,13,23,16,23,23,33,17,17,11,16,9,11,9,17,9,10,7,11,7,9,9,16,8,9,6,9,6,7,6,11,6,7,5,8,6,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,7,13,7,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,11,7,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,12,12,23 +-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,5,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,10,32,17,17,11,16,10,12,10,16,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,10,8,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,7,10,7,10,10,20,11,13,10,16,10,14,13,22,13,16,13,23,15,22,23,33,17,17,11,16,9,11,9,17,9,10,8,12,8,10,9,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,2,2,3,5,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,5,3,4,4,5,4,5,5,10,6,6,4,7,4,5,4,7,4,5,4,6,4,6,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,9,5,6,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,12,8,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,9,6,7,6,11,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,3,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,22,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,9,7,11,7,9,9,15,9,11,9,15,10,15,15,23,12,12,8,11,6,8,6,12,6,7,6,8,6,7,7,10,6,6,4,6,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,6,4,4,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,8,6,7,6,11,7,8,7,11,8,12,12,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,2,4,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,5,4,8,6,8,8,16 +-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,2,2,4,3,5,5,7,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,9,5,5,3,4,3,4,4,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,13,7,6,4,6,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,32,16,16,11,16,10,12,10,16,9,10,8,12,8,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,9,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,12,8,11,11,20,11,11,8,12,7,9,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,11,8,11,7,8,7,14,8,9,7,10,7,10,11,20,11,13,10,16,10,14,13,22,13,15,13,22,15,23,23,35,18,18,12,16,9,11,9,17,9,10,8,12,8,11,10,15,8,8,6,9,6,7,7,11,6,6,5,7,5,7,7,12,7,7,5,6,4,5,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,7,5,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,10,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,5,7,7,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,9,10,8,12,8,10,9,16,9,11,9,16,11,17,17,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,7,5,7,5,7,6,9,6,7,6,11,8,12,12,24 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,4,5,4,7,5,7,7,14 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,2,2,4,3,3,2,3,2,2,2,2,2,2,3,7,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,22,12,12,8,11,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,7,10,7,10,9,16,9,10,9,15,11,16,16,24,12,12,8,11,6,7,6,12,7,8,6,9,6,8,7,11,6,6,4,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,2,1,0,0,1,1,1,1,2,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,7,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,12,7,8,6,8,5,7,7,12,7,8,7,11,8,12,12,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,5,5,6,4,6,5,8,6,8,9,17 +-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,19,10,10,7,9,6,7,6,10,6,7,5,8,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,14,7,7,5,8,5,5,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,6,8,6,8,8,14,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,8,14 +-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,4,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,33,17,17,12,17,10,12,10,18,10,11,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,8,7,11,8,11,11,19,11,12,9,14,9,13,13,24,14,16,13,23,16,23,23,35,18,17,12,17,10,12,10,16,9,10,8,13,8,11,11,16,9,9,6,9,6,7,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,6,4,5,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,8,8,18,10,11,8,12,8,11,10,18,10,12,10,17,12,17,17,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,3,3,6,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,8,5,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,8,7,11,8,12,13,25 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,13,8,9,8,13,9,12,12,19,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,5,7,7,13 +-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,4,3,4,3,6,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,20,10,10,7,11,6,7,6,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,4,3,5,4,6,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,13,7,8,5,7,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,8,14,8,9,8,14,9,13,13,21,11,11,8,10,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,5,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,8,5,6,6,11,6,7,6,11,7,10,10,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,4,5,4,6,5,7,7,14 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,5,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,4,3,5,4,6,6,10 +-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,4,4,6,4,6,6,7,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,9,5,6,5,8,5,6,6,9,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,13,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,5,5,10,5,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,7,6,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,8,16,9,11,9,16,11,16,16,27,14,14,10,14,8,8,7,13,7,8,6,10,6,8,8,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,11,6,6,4,4,3,4,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,6,6,14,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,5,3,4,4,6,4,5,5,8,6,9,9,16 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,11,6,6,4,5,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,5,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,3,3,5,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,5,3,3,3,4,2,3,3,4,3,3,3,5,4,6,6,10 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,3,2,2,2,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,24,12,12,9,13,8,9,8,12,7,8,6,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,15,8,8,5,7,5,6,5,8,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,13,9,14,14,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,13,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,4,7,5,7,7,13 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,8,7,12,8,13,13,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,5,3,4,4,7,5,7,7,12 +-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,1,1,2,2,3,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,6,4,5,5,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,16,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,9,6,9,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,10,6,7,5,8,5,6,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,8,15,9,11,9,15,10,15,16,44,23,23,16,24,14,17,14,24,13,14,11,17,11,14,13,24,13,13,9,12,7,9,8,13,7,8,7,12,8,11,11,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,27,14,13,9,13,8,9,8,13,7,7,6,9,6,8,8,15,8,8,6,8,5,7,7,12,7,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,8,7,12,8,10,10,18,10,10,8,12,8,11,11,20,12,14,12,21,15,22,23,41,21,21,14,21,13,16,14,24,13,14,10,15,10,13,12,22,12,12,8,11,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,11,6,5,4,5,3,3,3,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,7,6,11,6,7,6,11,7,10,10,14,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,22,11,11,8,12,7,9,8,13,7,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,11,7,10,10,17,9,10,8,12,7,9,9,16,9,10,8,14,9,12,12,22,12,12,9,14,9,12,11,21,12,13,11,18,12,18,18,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,7,7,5,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,4,3,4,3,-2,0,0,1,1,1,2,2,4,3,4,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,16,8,8,6,9,6,7,6,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,13,7,8,6,8,6,7,7,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,4,3,5,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,4,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,6,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,13,13,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,4,4,3,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,17,9,9,6,9,6,7,6,10,6,6,5,7,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,4,5,4,7,5,8,8,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8 +-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,3,4,3,4,3,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,26,13,13,9,14,8,9,8,15,8,8,6,10,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,7,7,11,7,9,8,13,9,14,14,27,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,14,7,7,5,8,5,7,6,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,8,5,6,5,7,5,7,6,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,8,5,5,3,4,3,4,3,5,3,3,3,5,4,5,5,12,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,8,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,12,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,7,5,8,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,5,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,1,0,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,2,2,1,1,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,3,4,3,4,4,7 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,1,1,1,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,21,11,10,7,10,6,7,6,12,6,6,5,8,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,13,7,8,6,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,4,6,4,6,6,10,6,7,6,11,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,6,6,5,7,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,3,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,9 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,7,6,10,6,6,4,7,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,19,10,11,7,11,6,8,7,11,6,7,6,8,6,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,8,5,5,4,5,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8 +-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,0,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,3,3,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,4,6,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,10,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,10,9,15,10,14,14,36,18,18,12,18,10,12,10,18,10,11,8,12,8,10,9,17,9,9,6,9,6,7,7,12,7,9,7,12,8,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,8,21,11,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,7,5,7,5,6,5,8,5,6,5,8,6,8,9,13,7,8,6,9,6,7,6,10,6,7,5,8,6,8,8,16,9,10,7,11,7,10,9,16,9,11,10,17,12,19,19,35,18,18,13,20,12,14,12,21,12,13,10,15,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,10,6,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,8,4,4,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,7,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,16,9,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,10,15,15,15,8,8,5,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,4,3,4,2,2,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,-2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,7,6,9,6,8,8,15 +-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,6,8,8,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,4,4,4,5,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,6,5,9,5,6,6,10,7,11,11,20,10,10,8,11,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9 +-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,9,5,6,4,5,3,4,3,5,3,3,3,4,3,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,9,5,6,6,9,6,9,9,23,12,12,8,11,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,6,4,7,5,6,5,10,6,6,5,9,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,10 +-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,5,7,5,8,8,19,10,10,7,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8 +-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,4,4,6,5,7,7,9,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,7,14,8,9,7,12,9,13,13,32,16,16,11,16,9,10,9,16,9,10,8,12,8,10,9,17,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,20,10,10,7,11,7,8,7,10,6,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,7,17,9,10,7,10,6,8,7,9,5,6,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,5,7,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,9,15,9,11,9,16,11,16,16,33,17,17,12,18,10,12,11,19,10,11,9,14,9,11,10,19,10,10,7,10,6,7,7,10,6,7,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,5,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,5,7,7,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,17,9,9,6,9,5,6,5,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,13 +-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,5,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,9,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,6,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,5,4,6,4,6,5,9,6,7,6,10,7,10,10,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,5,5,7,5,8,8,10,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,13,7,8,7,13,9,12,12,30,16,16,11,15,9,11,9,15,9,10,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,6,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,7,15,8,8,6,8,5,6,6,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,7,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,15,9,10,9,15,10,15,15,32,17,17,12,18,10,12,10,17,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,8,7,13,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,13,9,12,12,29,15,16,11,15,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,6,9,6,9,8,15,9,10,9,15,10,15,15,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,18,9,9,6,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,11,6,7,6,8,6,8,7,13,8,9,8,13,9,14,14,17,9,9,6,9,5,6,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-24,-11,-11,-7,-11,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,7,6,11,8,11,12,30,16,16,11,17,10,12,10,18,10,10,7,10,7,9,8,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,9,13,8,10,9,16,9,11,9,14,9,12,12,23,12,12,9,14,9,11,10,18,10,12,10,17,11,16,16,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,11,12,9,14,9,13,13,24,13,15,13,22,15,23,23,57,29,29,20,29,17,20,16,28,15,17,13,20,13,18,17,32,17,17,12,18,11,14,13,23,13,14,12,20,13,19,18,34,17,17,12,18,11,13,11,19,10,11,8,13,9,12,12,22,12,12,8,12,8,10,9,15,8,9,7,12,9,13,13,28,14,14,10,14,9,11,10,17,9,9,7,11,7,10,9,17,9,10,7,10,7,9,8,15,8,9,7,12,8,11,11,22,12,12,9,13,8,10,8,14,8,10,8,14,9,13,13,24,13,15,11,18,12,17,16,30,17,20,17,29,20,29,29,63,32,31,21,31,18,21,17,29,15,16,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,14,10,14,14,26,13,13,9,13,8,9,8,13,8,9,7,11,7,9,9,17,9,9,6,9,6,7,6,9,6,7,6,9,6,9,9,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,9,7,10,10,25,13,13,9,14,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,10,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,9,6,9,6,9,8,15,8,9,7,12,8,12,12,27,14,13,9,13,8,10,8,14,8,8,6,9,6,9,9,16,9,9,6,9,6,8,8,14,8,9,8,14,10,14,14,28,15,16,11,17,10,13,12,21,12,14,11,19,13,18,17,32,17,18,13,20,13,17,15,28,16,19,16,27,18,27,27,33,17,17,12,17,10,11,10,17,9,9,7,10,6,8,8,15,8,8,6,9,5,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,6,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,6,5,7,4,5,5,7,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,4,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,6,7,5,8,5,6,6,11,7,8,8,14,10,14,14,27 +-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,9,17,9,9,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,5,7,7,15,8,8,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,16,9,10,9,15,10,15,15,32,16,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,4,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,5,3,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,3,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,10,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,30,16,16,11,15,9,10,9,15,8,9,7,11,7,9,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,15,8,8,5,8,5,6,5,9,5,6,4,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,6,4,6,6,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,8,6,11,7,10,9,16,9,10,9,15,10,15,15,33,17,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,4,4,5,4,6,6,14,8,8,6,7,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,18,9,9,6,10,6,6,6,10,6,6,4,6,4,6,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,7,4,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,12,6,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,8,5,7,6,11,6,7,6,10,7,11,11,23,12,11,8,11,6,8,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,4,2,3,3,5,3,4,4,5,4,6,6,10 +-13,-6,-6,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,3,2,3,2,3,2,3,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,13,7,8,6,8,5,6,6,12,7,7,6,10,7,10,10,11,6,7,5,8,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,7,6,11,6,7,5,8,6,8,7,13,7,8,7,12,9,13,13,31,16,16,11,16,10,12,10,16,9,10,8,12,8,10,9,17,9,10,7,10,6,7,7,14,8,9,7,12,8,11,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,16,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,7,12,8,10,9,17,10,11,9,15,11,16,16,35,18,18,12,16,9,11,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,5,5,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,3,2,3,2,3,2,3,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,4,4,5,3,4,4,6,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,5,8,6,8,7,11,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,5,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,12,7,9,9,16,9,11,9,14,10,15,15,20,10,10,7,11,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,4,4,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,3,3,3,3,2,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,15 +-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,5,5,7,5,8,8,18,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,12,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +-10,-4,-4,-3,-6,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,4,4,6,4,4,3,4,2,2,2,5,3,3,3,5,4,5,5,12,7,7,5,7,5,6,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,9,6,7,6,9,6,9,9,21,11,11,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,7,5,6,6,11,6,7,6,8,6,8,8,13,7,8,6,7,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,12,7,9,7,11,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,5,10,6,6,4,7,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,4,5,4,6,6,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,6,4,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,8,6,9,6,7,6,12,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,11 +-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,11,7,8,6,10,6,6,4,7,4,6,5,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,4,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,10 +-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,9,5,5,3,4,3,3,3,6,4,4,4,7,5,8,8,19,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,5,8,6,8,8,15,8,9,6,9,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,13,7,8,6,10,7,9,8,14,8,10,8,13,9,13,13,33,17,17,12,17,10,12,10,18,10,11,9,14,9,11,10,21,11,12,8,12,7,9,9,16,9,10,8,14,9,12,11,19,10,10,7,11,7,8,6,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,9,5,6,5,7,5,8,8,20,10,10,7,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,7,7,16,9,9,6,8,5,7,6,10,6,7,6,9,6,9,9,18,10,11,8,13,8,11,10,18,10,12,11,19,13,19,19,40,20,20,14,20,11,13,11,18,10,11,8,13,8,10,9,19,10,10,7,10,6,7,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,7,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,4,6,4,5,4,6,4,4,3,5,4,6,6,16,9,9,6,8,5,6,5,9,5,5,4,7,4,5,4,8,5,5,3,4,3,4,4,7,4,5,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,7,12,7,9,8,13,9,12,12,21,11,11,8,11,7,9,8,14,8,9,7,12,8,12,11,19,10,11,8,13,8,11,10,18,10,12,10,18,12,18,17,24,12,12,8,11,7,8,7,12,7,8,6,9,6,8,8,10,6,6,5,7,4,5,4,6,4,5,4,7,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,5,9,5,5,4,6,4,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,9,17 +-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,9 +-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,12,8,11,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,13,7,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,12,8,12,12,25,13,13,9,13,7,8,7,11,6,6,5,9,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,3,3,2,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,4,5,5,10 +-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,11,6,7,6,9,6,7,6,11,6,7,6,11,8,11,12,27,14,14,10,16,9,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,12,7,8,6,10,7,10,9,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,8,14,10,15,15,34,17,17,11,16,9,11,9,15,8,9,7,11,7,8,7,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,5,5,12,7,7,5,8,5,6,5,8,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,17,9,10,7,10,6,8,7,10,6,6,5,7,5,7,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,10,7,10,7,9,8,14,8,9,8,14,10,15,15,22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,6,4,5,4,8,4,5,4,8,5,7,8,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,22,11,11,8,11,6,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,7,5,7,4,5,5,7,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,14,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,9,5,6,6,11,6,7,6,11,7,10,10,26,14,14,10,15,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,5,6,4,5,5,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,4,12,6,6,5,8,5,5,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,5,8,5,6,6,16,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,3,4,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,6,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,5,6,6,15,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-34,-17,-17,-11,-16,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,4,7,4,5,5,8,5,7,7,5,3,3,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,9,6,9,8,15,9,10,8,13,9,12,12,23,12,13,9,14,8,10,8,14,8,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,18,10,10,7,11,6,7,6,11,6,7,6,9,6,9,9,17,9,9,7,11,7,8,7,13,7,8,7,12,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,11,20,11,11,8,11,7,8,7,12,7,8,7,11,8,11,11,20,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,49,25,25,17,24,13,15,13,22,12,13,10,16,10,14,13,24,13,13,9,14,9,11,10,19,11,13,10,17,11,15,15,27,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,16,9,9,7,12,7,9,9,16,8,8,6,9,6,8,8,14,8,8,6,10,7,9,9,27,14,15,11,17,10,12,11,20,11,12,10,17,11,15,14,27,14,15,11,17,11,14,14,26,15,17,14,25,17,26,26,61,31,31,21,31,17,20,16,27,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,14,8,9,7,11,7,10,9,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,7,12,8,12,12,10,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,29,15,16,11,16,9,11,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,11,17,10,12,10,18,10,12,10,17,11,15,15,28,15,15,11,18,12,16,15,29,16,18,15,26,18,26,26,39,20,19,13,19,11,13,11,19,10,11,8,12,8,10,10,18,10,10,7,11,7,8,6,10,6,6,5,9,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,4,6,4,5,4,6,4,6,5,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,3,5,4,6,6,8,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,7,5,7,5,7,6,11,6,7,5,8,6,8,8,15 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,8,7,11,8,11,11,26,13,13,9,13,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,8,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,21,11,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +-18,-9,-9,-5,-9,-4,-5,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,4,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,13,7,8,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,7,5,7,6,12,7,8,6,9,6,8,7,13,7,8,7,12,8,11,11,27,14,14,9,14,8,9,7,13,7,8,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,10,7,9,9,16,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,16,9,9,6,9,6,7,7,12,7,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,14,14,34,17,17,11,17,10,11,9,15,8,8,6,10,7,9,8,14,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,7,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,7,17,9,9,6,9,5,6,5,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,7,11,7,10,9,16,9,10,9,15,10,15,15,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,7,5,6,4,4,4,6,4,4,4,5,4,6,6,12,6,6,5,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,10,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,10,6,6,4,5,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,5,8,5,6,6,11,7,8,6,10,7,9,9,17,9,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,6,15,8,8,6,8,5,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,30,16,16,11,16,9,10,8,15,8,9,7,11,7,9,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,6,9,9,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,19,10,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,10,7,10,7,9,8,16,9,11,9,16,11,16,16,40,20,19,13,18,10,12,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,11,7,8,6,10,7,10,9,21,11,10,7,10,6,7,6,12,7,8,6,9,6,8,8,12,7,7,5,8,5,7,6,10,6,7,6,10,7,10,11,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,20,11,11,8,12,8,11,10,18,11,13,11,18,12,18,18,28,14,14,10,14,8,10,9,14,8,9,7,10,6,8,7,14,7,7,5,7,4,5,5,7,4,5,4,7,5,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,6,5,8,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,5,3,3,3,4,3,4,4,3,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,9 +-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,12,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,7,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,18,9,9,6,9,5,6,6,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6 +-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,5,7,7,13,7,8,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,9,6,8,7,12,7,9,7,13,9,12,12,25,13,13,9,13,8,9,7,12,7,8,6,9,6,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,10,6,6,5,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,6,4,6,6,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,8,10,8,14,10,14,14,32,16,16,11,16,9,11,9,14,8,9,7,10,7,9,8,12,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,9,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,10,7,10,6,8,8,15,9,11,9,16,11,16,16,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,12,6,6,4,7,4,5,5,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,11,6,6,4,5,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8 +-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,6,7,7,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,12,7,7,6,9,6,7,7,12,7,9,7,13,9,12,12,30,15,15,10,15,9,10,8,13,7,8,6,9,6,8,7,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,2,3,2,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,7,15,8,9,7,10,6,8,8,14,8,10,8,15,10,14,14,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8 +-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,8,8,6,10,6,8,7,12,7,9,7,12,8,12,11,23,12,12,8,12,7,9,8,13,7,8,6,10,6,7,7,14,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,16,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,10,8,12,8,10,9,16,9,10,8,13,9,14,14,24,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,11,7,8,8,14,8,9,7,10,7,10,9,20,10,10,7,11,7,8,8,14,8,9,7,12,8,11,10,19,11,12,9,14,9,12,12,22,13,15,13,22,15,21,21,42,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,19,10,11,8,12,7,9,9,16,9,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,13,8,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,9,10,8,12,8,10,9,17,9,9,7,11,7,8,8,14,8,9,8,13,9,12,11,27,14,14,10,15,9,11,10,18,10,11,9,15,10,14,14,22,12,12,9,15,10,13,12,22,13,15,13,23,15,22,22,57,29,28,19,27,15,18,15,25,13,14,11,18,11,14,13,21,11,11,8,12,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,6,5,8,6,9,9,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,6,4,6,6,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,21,11,11,8,11,7,8,7,11,6,7,6,9,6,9,8,14,8,8,6,9,5,6,6,10,6,7,5,8,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,9,7,11,7,9,9,16,9,10,9,15,10,14,14,31,16,17,12,17,10,12,10,16,9,10,8,13,9,12,11,17,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,27,14,14,10,15,9,11,10,18,10,11,9,15,10,13,13,27,14,15,11,18,11,15,14,26,15,18,15,27,18,26,26,48,24,24,16,23,13,15,13,22,12,12,9,14,9,12,12,21,11,11,8,11,7,9,8,13,8,9,8,13,9,12,12,24,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,3,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,8,5,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14 +-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,32,16,16,11,15,9,10,8,14,8,8,6,10,6,8,8,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,4,5,5,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,9,13,8,9,8,13,7,7,5,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8 +-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,5,6,4,5,5,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,7,12,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,9,9,7,9,5,6,5,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,18,9,9,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,11,7,10,9,15,9,11,9,16,11,16,16,38,19,19,13,18,10,12,10,17,9,10,8,12,8,10,9,14,8,8,6,8,5,7,6,11,6,6,5,8,6,8,7,12,6,6,5,6,4,4,4,6,4,4,3,5,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,12,7,8,7,10,7,10,10,21,11,11,8,11,7,8,7,10,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,9,5,6,6,11,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,17,9,10,8,13,8,11,10,18,10,12,10,18,12,18,18,33,17,17,11,16,9,10,9,16,8,8,6,11,7,8,8,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,4,5,5,7,4,4,4,7,5,6,6,12,6,6,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,9 +-18,-8,-8,-5,-8,-4,-6,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,4,6,5,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,12,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,5,4,4,4,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,6,9,6,7,6,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,11,7,9,8,15,9,10,9,15,10,15,15,28,15,15,10,14,8,9,8,13,7,7,6,9,6,7,7,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8 +-33,-16,-16,-10,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-5,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,8,5,6,5,10,6,6,4,6,4,6,6,15,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,16,9,9,6,9,6,7,7,13,8,9,8,13,9,14,14,26,13,13,9,14,8,10,9,13,7,8,6,10,6,8,8,17,9,10,8,12,7,9,8,14,8,8,7,11,7,10,9,20,11,11,8,12,7,8,7,12,7,8,7,11,7,9,9,17,10,11,8,13,8,11,10,19,11,14,12,20,14,21,21,39,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,18,10,10,7,10,7,9,8,14,8,9,8,14,10,14,13,25,13,14,10,14,8,9,8,15,8,9,7,12,8,10,10,18,10,10,7,10,6,8,7,14,8,10,8,14,10,14,13,25,13,14,10,14,9,11,9,15,9,10,8,12,7,9,9,17,9,9,7,10,6,8,8,12,7,9,8,13,9,12,12,26,14,14,10,14,9,11,10,17,9,10,8,13,9,13,12,21,11,12,9,15,10,13,12,22,13,15,13,22,15,22,22,55,28,28,19,28,16,19,16,27,14,15,11,18,11,14,13,21,11,12,8,12,8,10,9,16,9,9,7,10,7,9,9,19,10,9,6,9,6,7,6,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,9,7,10,6,8,8,17,10,12,10,16,11,16,15,31,16,16,11,16,9,11,9,15,9,10,8,12,8,10,10,18,10,10,8,12,7,9,9,14,8,10,9,15,10,14,14,28,15,15,11,16,10,12,11,19,10,11,9,14,9,13,13,25,13,14,11,18,11,15,14,26,15,18,15,26,18,26,26,50,26,26,18,26,14,16,13,23,12,13,10,16,10,13,12,23,12,12,8,12,7,8,7,15,9,10,8,12,8,11,11,21,11,11,8,12,7,9,8,13,7,8,6,10,7,9,8,13,7,7,5,8,5,7,7,11,6,7,6,9,6,8,8,17,9,9,7,10,6,6,5,10,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,5,4,7,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,6,6,9,6,10,10,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,6,7,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,8,7,13,8,10,8,13,9,14,14,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,36,19,19,13,19,11,13,11,18,10,10,8,12,8,10,9,15,8,8,6,9,6,7,6,11,6,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,8,11,10,21,11,11,8,11,6,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,8,13,7,8,6,10,7,9,9,17,9,10,8,12,8,11,10,18,10,12,10,17,12,18,18,33,17,17,12,18,10,11,9,16,9,9,7,11,7,9,8,16,8,8,6,8,5,6,6,10,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-4,-6,-6,-14,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,12,7,8,6,8,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,12,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,13,7,8,7,10,7,9,9,17,9,10,8,12,7,8,7,14,8,9,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,11,7,10,9,17,9,10,8,13,8,11,10,20,12,14,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,18,10,10,7,11,7,8,8,14,8,10,8,14,9,13,13,25,13,14,10,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,28,19,28,16,18,15,26,14,14,11,17,11,14,13,22,12,12,9,13,8,10,9,15,8,8,6,10,7,10,10,19,10,10,7,10,6,6,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,12,9,16,11,16,15,31,16,16,11,16,9,11,9,15,8,9,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,10,9,14,10,14,14,27,14,14,10,16,10,12,11,18,10,12,9,15,10,14,13,25,14,15,11,18,12,16,15,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,4,5,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,14,8,9,7,11,7,9,9,17,9,10,8,11,7,8,7,13,8,9,7,11,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,13,8,11,10,20,11,13,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,13,8,11,10,19,10,10,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,13,9,13,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,13,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,27,18,27,16,18,15,26,14,15,11,17,11,14,13,23,12,12,9,13,8,10,9,15,8,9,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,11,9,16,11,16,16,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,10,17,9,9,7,11,7,9,8,15,8,10,9,14,10,14,14,27,14,14,10,15,9,12,11,18,10,12,9,15,10,14,13,25,14,15,11,17,11,15,14,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,5,7,5,7,7,13 +-70,-35,-35,-23,-34,-19,-23,-19,-35,-17,-18,-12,-20,-11,-15,-14,-28,-14,-14,-9,-13,-7,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-19,-19,-40,-20,-20,-13,-20,-11,-13,-10,-19,-9,-9,-6,-11,-6,-9,-9,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-9,-8,-15,-9,-14,-14,-28,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-5,-7,-7,-15,-7,-6,-3,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,1,1,1,1,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,8,8,15,8,9,8,13,9,12,11,20,12,15,13,23,16,23,24,47,24,25,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,13,9,14,8,10,8,14,8,8,7,11,7,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,31,16,17,12,18,11,14,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,14,12,22,13,15,13,22,15,21,21,41,21,21,15,22,13,17,15,27,15,16,12,19,12,17,17,32,17,19,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,34,19,23,19,34,18,20,15,25,16,22,20,38,20,20,14,22,13,16,14,24,14,16,13,21,14,19,19,37,19,20,14,22,13,16,14,24,13,15,12,19,12,16,16,30,16,17,13,21,13,17,16,31,18,21,17,30,20,30,30,58,30,30,21,31,18,21,18,32,17,19,15,24,15,20,19,36,19,19,13,20,12,15,14,25,14,16,13,22,14,20,20,38,20,21,15,22,13,17,15,27,15,17,14,24,16,22,21,40,21,23,17,28,17,23,21,40,23,27,23,40,27,41,42,104,53,54,37,55,31,38,32,56,29,31,23,38,23,31,29,56,29,29,21,32,19,24,21,37,21,24,20,34,22,32,31,61,31,31,21,31,18,22,19,33,17,18,14,22,14,19,18,34,18,18,13,21,13,18,17,32,18,21,17,30,20,28,28,54,28,28,19,29,17,20,17,30,16,18,14,24,15,21,20,37,19,20,15,24,15,19,17,31,18,21,17,29,19,27,27,53,27,27,19,29,17,22,19,35,19,22,17,28,18,26,26,51,27,29,21,34,21,27,25,48,27,31,26,45,30,45,45,88,45,45,30,45,26,31,26,46,24,26,20,32,20,26,24,45,23,24,17,27,16,20,17,31,17,20,16,26,17,23,23,44,23,23,16,24,14,17,14,25,14,16,12,20,13,17,17,32,17,18,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,35,20,23,20,35,19,21,17,28,18,24,23,45,23,24,17,26,16,20,18,34,19,23,19,33,22,32,32,64,33,33,23,34,20,24,21,37,20,23,18,31,20,28,27,51,27,30,22,36,22,29,27,52,29,34,28,49,33,49,49,98,49,49,33,49,28,33,28,50,27,29,21,34,21,28,26,49,25,26,18,28,16,20,18,33,18,20,16,27,18,26,25,49,25,26,18,26,15,18,15,27,15,16,13,22,14,20,19,36,19,19,13,20,12,15,13,24,13,15,12,21,14,21,21,42,22,22,15,23,14,17,15,27,15,16,12,20,13,18,17,31,16,17,12,19,12,17,16,29,16,18,15,26,18,26,25,49,25,25,17,25,14,17,15,27,15,17,14,23,15,21,20,39,21,22,17,27,17,23,22,41,23,28,23,41,28,41,40,79,40,41,28,41,24,29,24,43,23,25,18,29,18,24,22,41,21,21,14,21,13,16,14,24,13,14,11,19,13,18,18,34,17,17,12,18,11,13,11,20,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,19,11,12,10,18,12,16,16,30,16,16,11,15,9,11,9,15,8,9,7,12,7,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,10,9,16,9,9,7,10,6,8,7,13,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,26 +-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,8,7,12,8,12,12,24,12,13,9,13,8,9,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,16,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,9,8,14,8,8,6,10,7,9,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,10,11,8,11,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,15,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,11,7,10,9,16,9,11,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,15,11,18,11,14,13,25,14,16,14,23,16,23,23,45,23,23,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,17,12,17,17,34,18,18,12,18,10,12,10,18,10,11,9,15,10,13,12,23,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,26,14,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,25,17,25,14,17,15,25,14,15,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,8,14,8,8,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,8,13,9,14,13,25,13,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,21,14,21,20,40,21,21,14,21,12,15,12,22,12,13,10,15,10,13,12,21,11,11,8,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,7,6,11,6,6,5,8,6,7,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,13 +-35,-17,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,5,7,5,6,6,10,6,7,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,8,14,8,8,7,11,7,10,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,20,10,10,7,11,7,8,7,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,16,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,18,10,10,8,12,8,10,9,18,10,10,8,11,7,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,14,11,18,11,14,13,25,14,17,14,24,16,23,23,45,23,24,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,18,10,12,10,19,11,12,9,15,10,13,12,22,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,27,15,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,24,17,25,14,17,15,25,13,14,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,13,7,8,7,11,7,9,9,16,9,9,7,10,7,9,9,16,9,10,8,13,9,14,13,24,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,19,10,11,9,13,9,12,11,20,12,14,12,21,14,20,20,41,21,21,14,20,12,14,12,22,12,12,9,16,10,13,12,21,11,11,7,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,9,5,6,4,5,3,4,4,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,7,13 +-23,-11,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,5,10,6,6,5,8,5,7,6,11,6,7,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,20,10,11,7,11,6,8,7,12,6,7,6,9,6,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,35,18,18,13,19,11,13,11,20,10,11,8,14,8,11,10,20,11,11,8,12,7,9,8,13,8,8,7,12,8,12,11,21,11,11,8,11,7,8,7,12,7,7,6,8,6,7,6,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,6,8,6,7,6,11,6,7,6,10,7,9,9,18,9,9,7,10,6,7,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,6,12,7,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,5,8,5,6,6,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,12,24,12,12,8,12,7,9,8,13,8,8,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,8,8,13,8,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,17,9,9,7,11,6,7,7,12,6,7,6,10,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,11,6,7,6,9,7,10,9,16,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,14,14,10,14,8,9,8,15,8,8,7,11,7,9,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,12,6,6,5,7,4,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,3,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,5,9 +-35,-17,-17,-11,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-9,-6,-9,-9,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,7,5,7,6,10,6,8,7,11,8,11,12,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,7,5,6,6,8,5,5,5,8,6,8,8,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,6,11,7,8,7,11,7,10,10,20,11,11,7,10,6,8,7,14,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,10,17,12,17,17,33,17,17,12,17,10,12,10,17,9,10,8,13,8,11,11,20,11,11,7,10,6,8,7,13,7,8,7,11,7,9,9,20,11,11,7,10,6,7,7,11,7,8,6,10,7,9,9,16,9,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,15,10,15,9,11,10,17,9,10,8,12,8,10,9,18,10,10,7,11,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,9,7,12,8,11,11,21,11,12,9,14,9,12,11,21,12,14,12,20,14,21,21,53,27,27,19,28,16,20,17,29,16,17,13,20,13,17,15,30,16,16,12,18,11,14,12,19,11,13,11,18,12,17,17,30,15,15,11,16,10,12,10,18,10,10,8,12,8,10,9,17,9,10,8,12,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,12,8,10,9,16,9,11,9,14,9,13,13,25,13,14,10,14,8,10,9,18,10,12,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,14,24,16,23,22,45,23,24,16,24,14,16,13,23,12,13,10,17,11,14,13,25,13,14,10,14,9,11,9,18,10,11,9,14,9,12,12,24,13,13,9,12,7,8,7,13,8,9,7,11,7,10,9,16,9,9,7,10,7,9,9,17,10,11,9,16,11,17,17,36,19,19,13,18,11,13,11,19,10,11,9,14,9,13,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,16,16,32,17,17,12,17,10,13,11,19,11,12,10,16,11,15,14,27,15,16,12,18,11,15,14,27,15,17,14,25,17,25,25,48,24,24,16,24,14,17,15,24,13,14,11,17,11,15,14,25,13,14,10,16,9,11,10,17,10,11,9,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,9,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,21,11,11,8,12,7,9,8,13,8,9,7,12,8,10,10,16,9,9,7,10,7,9,9,16,9,11,9,14,10,14,14,23,12,12,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,20,41,21,20,14,20,12,14,12,21,12,13,10,16,10,13,12,20,11,11,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,8,5,5,5,9,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,6,4,4,4,6,4,4,4,6,4,5,4,6,4,6,6,12 +-19,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,6,6,6,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,31,16,16,11,16,10,12,10,16,9,10,7,11,7,10,9,17,9,9,7,11,7,8,7,11,7,8,7,11,7,10,10,17,9,9,7,9,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,5,9,5,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,9,8,15,8,9,6,10,6,8,8,14,8,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,11,6,7,5,8,6,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,9,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,12,7,8,7,11,6,7,6,9,6,7,7,13,7,7,5,6,4,4,4,8,5,6,5,7,5,6,6,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,10,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,5,6,5,8,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,14,10,15,15,38,19,19,13,19,11,14,12,19,10,11,8,12,8,11,10,20,11,11,8,13,8,9,8,14,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,6,11,6,6,5,9,6,8,7,14,8,8,6,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,10,7,10,9,17,9,10,7,12,8,10,10,17,10,12,10,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,7,12,7,9,9,17,9,10,7,9,6,7,6,13,7,8,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,25,13,13,9,13,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,10,6,8,7,13,7,8,7,11,8,12,12,21,11,12,8,12,7,9,8,13,7,8,7,11,7,10,9,18,10,10,8,12,8,10,10,18,10,12,10,17,12,17,17,32,16,16,11,16,10,12,10,17,9,10,8,11,7,10,9,16,9,10,7,11,7,8,7,11,7,8,6,10,7,10,9,17,9,9,6,9,5,6,6,11,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,6,4,6,6,10,6,7,6,10,7,10,9,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,13,7,8,6,9,6,8,7,13,8,10,8,13,9,13,13,27,14,14,10,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8 +-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,12,7,7,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,6,6,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,7,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,12,9,13,13,32,16,16,11,16,9,11,10,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,7,12,7,8,7,11,8,10,10,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,6,5,9,5,5,4,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,10,6,6,6,9,6,8,8,15,8,9,6,10,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,6,9,8,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,7,6,9,6,6,5,8,6,8,8,14,8,8,6,8,5,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-32,-15,-15,-10,-16,-8,-9,-7,-14,-7,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,21,11,11,8,11,6,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,7,12,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,10,6,8,8,14,8,10,9,16,11,16,16,33,17,16,11,16,10,12,10,17,9,10,7,11,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,9,9,21,11,11,8,12,7,8,7,12,7,8,7,11,7,10,10,17,9,9,7,11,7,10,9,16,9,11,9,16,11,15,15,26,14,14,10,15,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,11,7,8,6,10,6,7,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,7,6,9,7,10,10,22,12,13,10,15,9,12,11,20,12,14,12,22,15,21,21,58,29,29,20,30,17,20,17,29,15,16,12,18,11,15,14,29,15,16,12,18,11,14,12,22,12,14,12,20,13,18,18,32,17,17,11,16,9,11,10,18,10,10,7,11,7,10,9,16,8,8,6,9,6,8,8,14,8,10,9,15,10,15,15,27,14,13,9,13,8,9,8,14,8,9,7,12,8,10,10,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,16,9,10,9,15,10,14,14,26,14,14,11,17,11,14,14,26,15,17,14,25,17,24,23,46,23,23,16,23,13,16,14,24,13,14,10,16,10,13,13,25,13,13,9,14,9,11,10,18,10,11,9,14,10,14,14,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,11,7,10,9,17,10,12,10,18,12,18,18,38,19,19,13,20,12,14,11,19,11,12,9,14,9,13,13,22,12,13,10,15,9,12,11,20,11,13,11,18,12,17,17,32,17,17,12,18,11,13,12,21,12,13,10,15,10,14,14,28,15,16,12,19,12,16,14,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,13,10,15,10,14,13,24,13,13,9,13,8,10,9,16,9,10,9,15,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,11,7,10,10,17,9,9,6,9,6,7,7,13,8,9,7,12,8,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,7,10,10,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,7,9,8,14,8,9,8,13,9,12,12,19,10,10,8,12,8,10,10,18,11,13,11,19,13,19,19,41,21,21,14,20,11,13,11,18,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,10,6,8,7,12,7,8,6,10,6,8,8,15,8,8,6,8,5,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,5,7,7,12 +-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,5,7,6,11,7,8,7,12,8,11,11,31,16,15,11,16,9,11,9,16,8,9,7,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,12,24,12,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,20,11,11,8,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,7,12,7,7,6,9,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,14,9,13,13,25,13,13,9,13,8,9,8,13,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,7 +-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,11,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,5,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,33,17,16,11,17,10,11,10,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,13,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,9,13,13,25,13,14,10,14,8,9,8,15,8,8,6,9,6,8,8,14,8,8,6,8,5,7,6,11,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,6,12,7,8,7,11,8,11,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,15,9,10,9,15,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,7,5,6,6,9,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,6,10,6,8,6,10,7,10,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,6,4,5,3,4,4,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,7 +-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,25,13,12,9,13,8,9,7,13,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,6,4,5,5,9,6,6,5,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,7,7,12,7,7,6,8,5,7,7,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,13,7,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,6,4,5,4,6,4,5,5,6,4,5,4,6,4,5,5,7,4,5,4,6,4,6,6,14,7,7,5,6,4,5,4,8,5,6,5,7,5,6,6,12,7,7,5,6,4,4,4,7,4,5,5,8,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,8,12,7,8,6,12,7,7,5,8,5,7,7,11,6,7,5,7,4,5,4,9,5,6,5,8,5,6,6,15,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,12,7,8,7,11,8,11,11,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,41,21,20,14,20,12,14,11,20,11,11,8,12,8,10,9,18,10,10,7,11,7,8,7,15,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,11,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,19,10,9,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,30,15,15,11,16,9,11,9,18,10,11,8,12,8,10,9,16,9,9,7,10,6,7,6,13,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,14,8,8,7,11,7,10,10,17,9,10,7,10,6,8,8,15,9,10,8,14,9,13,13,23,12,13,9,14,8,10,9,17,9,10,8,14,9,12,11,20,11,12,9,13,8,11,10,18,10,12,10,17,11,16,16,32,17,17,11,16,9,11,10,16,9,9,7,10,6,8,8,17,9,9,6,9,6,8,7,10,6,7,6,10,7,10,10,16,9,9,6,8,5,5,5,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,9,13,7,7,5,8,5,7,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,7,7,11,7,8,7,12,9,13,13,29,15,15,10,14,8,9,7,12,7,8,6,10,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,5,7,7,10,6,6,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,5,5,10 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,4,4,3,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,5,4,5,5,7,4,5,4,5,3,4,3,6,4,4,4,5,4,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,25,13,13,9,13,8,9,7,13,7,7,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,7,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,5,10,6,6,4,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,6,9,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,6,5,9,5,6,5,10,7,10,10,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,4,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,6,8,6,11,8,11,11,34,18,18,12,18,10,12,10,17,9,10,7,11,7,8,8,15,8,8,6,9,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,6,9,6,8,7,13,7,8,7,12,8,12,12,26,14,14,10,14,8,9,8,15,8,8,6,10,7,9,8,15,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,8,5,7,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,15,9,10,8,15,10,14,14,26,14,14,9,13,8,10,8,13,7,8,6,9,6,7,7,13,7,8,6,7,5,6,5,8,5,6,5,9,6,8,8,12,6,6,5,6,4,5,4,8,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,6,5,6,4,6,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,7,4,4,3,5,4,6,6,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,8,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,32,17,17,11,17,10,11,10,16,9,9,7,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,6,7,7,12,7,8,7,11,8,11,11,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,8,5,7,6,12,7,7,6,10,7,10,10,19,10,10,8,12,7,9,8,14,8,8,7,11,7,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,10,14,14,24,13,13,9,12,7,9,7,12,7,7,5,8,6,7,7,12,6,7,5,7,5,6,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +-33,-16,-15,-10,-15,-8,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-8,-8,-5,-9,-4,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,2,3,3,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,11,8,12,12,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,13,7,7,5,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,6,10,6,8,7,13,8,9,7,11,7,10,10,19,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,6,9,6,8,8,14,8,9,7,12,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,9,9,16,9,9,7,11,7,10,10,19,11,12,10,16,11,16,16,36,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,9,7,12,8,10,9,25,13,12,8,12,7,8,7,12,7,7,6,10,7,10,10,18,10,10,7,11,7,9,9,17,10,11,9,16,11,17,17,22,11,11,8,11,7,8,7,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,6,8,8,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,18,10,11,9,14,9,11,10,19,11,13,11,18,12,18,19,62,31,31,21,32,18,20,17,29,15,16,12,19,12,16,14,26,14,14,10,15,9,12,11,20,12,14,11,19,13,18,18,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,19,10,11,8,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,17,9,9,6,9,6,7,7,13,8,9,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,8,7,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,21,47,24,24,17,25,14,17,15,27,14,15,11,17,11,14,14,26,14,14,10,16,10,12,10,18,10,12,10,17,11,15,15,26,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,16,9,9,7,11,7,10,10,19,11,12,10,17,12,17,17,40,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,24,13,14,10,15,9,11,10,18,11,13,11,20,13,19,19,36,19,19,14,22,13,16,14,25,14,15,12,19,12,17,17,33,18,19,14,21,12,15,14,25,14,17,14,24,16,24,25,45,23,23,15,22,13,16,14,24,13,14,11,17,11,14,12,22,12,12,9,13,8,9,8,15,9,10,9,15,10,15,15,20,11,11,8,11,7,9,8,14,8,9,7,11,8,11,11,22,12,13,9,14,9,11,9,16,9,11,9,14,9,12,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,18,10,12,10,16,11,15,15,21,11,12,9,13,8,9,8,15,8,9,7,11,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,20,13,19,18,43,22,22,15,21,12,14,12,22,12,12,9,15,10,13,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,11,11,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,14,8,8,6,10,6,8,7,13,8,9,7,11,7,10,9,19,10,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,6,10,7,10,10,17,9,9,6,9,5,6,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,13 +-16,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,9,6,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,32,16,16,11,17,10,11,9,15,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,8,12,7,9,8,13,8,8,6,10,7,9,9,17,10,10,8,11,7,8,8,13,8,9,8,13,9,13,13,23,12,12,8,12,7,9,8,12,7,8,6,9,6,7,7,12,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,5,9,5,6,4,7,4,5,5,9,5,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,4,4,5,3,4,3,6,4,4,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,33,17,17,12,17,10,12,10,16,8,8,6,10,6,8,8,14,8,8,6,9,5,6,6,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,5,4,5,4,7,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,25,13,13,9,14,8,9,8,15,8,8,6,10,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,20,10,10,8,12,7,9,8,14,8,8,7,10,7,10,9,18,10,11,8,12,7,9,8,14,8,10,8,13,9,14,14,23,12,12,8,12,7,9,8,12,7,8,6,8,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,9,6,8,8,12,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,5,4,6,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,7,10,10,23,12,12,8,11,7,8,7,12,7,7,6,8,5,7,6,12,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,5,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,3,3,4,2,3,2,4,3,3,3,5,3,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,5,4,7,5,6,5,8,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,5,4,7,5,6,6,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-16,-8,-8,-5,-8,-4,-5,-3,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,5,7,7,9,5,5,4,6,4,5,4,6,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,7,5,8,5,7,7,9,5,6,4,6,4,5,5,9,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,11,6,7,5,8,5,7,6,12,7,8,6,10,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,6,10,7,11,11,36,18,18,12,18,10,12,10,17,9,10,7,10,7,9,9,15,8,9,6,9,6,8,7,13,8,9,7,12,8,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,7,8,7,12,8,12,12,26,14,14,10,15,9,10,8,16,9,10,7,11,7,9,9,14,8,8,6,8,5,6,5,10,6,6,5,9,6,9,9,15,8,8,6,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,6,12,7,8,6,10,7,9,9,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,12,7,8,7,11,8,11,10,21,11,12,9,14,8,10,9,16,9,10,8,12,8,11,10,20,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,24,13,13,9,14,8,10,9,13,7,7,5,8,6,8,7,13,7,7,5,7,4,5,4,8,5,7,6,10,7,9,9,14,8,8,6,8,5,5,5,9,5,6,5,8,6,8,7,11,6,6,5,8,5,6,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,11,11,25,13,13,9,12,7,9,8,13,7,8,6,10,6,8,7,13,7,8,6,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,3,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,9,5,6,5,7,4,5,5,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,4,4,4,5,4,5,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,7,7,22,11,11,8,11,6,7,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,6,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,12,7,7,6,8,5,6,6,9,5,6,5,7,5,7,6,12,7,7,5,8,5,6,5,10,6,6,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,7,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,6,4,4,3,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,4,3,5,4,6,5,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,28,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,5,8,5,6,5,9,5,6,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,5,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,3,5,3,4,3,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,7,11,6,6,4,7,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,9,5,6,4,7,4,5,5,10,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,8,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,5,3,4,4,8,5,6,6,10,6,6,4,7,4,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,4,6,4,4,4,7,4,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,4,4,5,4,5,6,12,7,7,5,7,4,5,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,25,13,12,8,12,7,8,6,11,6,7,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,4,5,4,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,5,5,7,5,7,7,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,4,7,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,4,4,4,6,4,5,5,8,6,8,8,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,7,5,8,5,6,5,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,22,11,11,7,10,6,7,6,11,6,7,6,9,6,8,8,12,7,7,5,7,5,6,6,11,7,8,6,10,7,9,8,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,16,9,9,7,10,7,9,8,14,8,9,7,12,8,12,12,15,8,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,4,5,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,12,45,23,23,16,23,13,14,11,19,10,11,8,13,8,11,11,20,11,11,8,12,7,9,9,16,9,9,7,12,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,7,6,13,7,8,6,8,5,7,6,10,6,7,6,11,7,10,10,23,12,12,8,11,7,8,7,12,7,8,6,10,6,8,8,15,8,8,5,7,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,7,6,10,6,6,5,8,5,7,7,10,6,7,6,9,6,8,8,14,8,9,8,13,9,13,13,30,16,16,11,15,9,11,10,18,10,11,8,13,8,11,11,18,10,10,7,9,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,12,7,9,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,11,11,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,25,13,14,10,16,9,11,10,18,10,12,9,15,9,12,12,26,14,14,10,15,9,12,11,20,11,13,11,19,13,18,18,30,16,16,11,17,10,12,10,16,9,9,7,11,7,10,9,14,8,8,6,9,5,6,5,8,5,6,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,9,6,7,6,10,6,6,5,7,5,8,8,12,7,7,5,7,5,6,6,10,6,6,5,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,15,8,9,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,15,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,6,9,6,7,6,11,6,6,5,8,6,8,8,12,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,10,6,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,2,8,5,5,3,4,3,4,3,5,4,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,5,5,10 +-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,25,13,13,9,13,7,8,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,5,8,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,14,8,8,6,9,6,7,6,10,6,7,6,9,6,7,7,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,2,3,3,4,3,7,4,5,4,4,3,4,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,8,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,10,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,28,15,15,10,14,8,8,7,13,7,7,6,9,6,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,5,3,4,4,7,5,6,6,14,8,8,5,7,5,6,5,7,5,6,5,7,5,6,5,9,5,6,4,5,3,4,4,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,6,5,9,6,8,8,19,10,10,7,10,6,8,7,12,7,7,5,9,6,8,7,11,6,7,5,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,8,6,8,7,15,8,9,7,10,6,8,7,11,7,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,4,3,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,6,5,10,6,6,5,6,4,6,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7 +-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,22,12,12,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,5,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,6,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,10,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,4,9,5,5,4,6,4,5,4,4,3,3,3,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,5,5,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,9,7,10,10,12,6,6,4,6,4,4,3,6,4,5,4,6,4,5,5,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,7,5,6,5,8,6,9,10,37,19,18,12,18,10,11,9,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,7,5,7,4,4,4,6,4,4,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,11,8,11,11,26,14,14,9,13,8,9,8,15,8,9,7,11,7,10,9,15,8,8,6,10,6,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,9,9,22,11,11,8,11,7,8,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,9,9,19,10,11,8,12,7,9,9,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,17,10,12,10,16,11,16,16,27,14,13,9,13,8,9,8,14,7,7,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,5,5,9,6,8,8,15,8,8,5,7,4,5,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,5,5,4,6,4,6,6,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,14,7,7,5,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,2,2,2,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9 +-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,6,6,24,12,12,8,12,7,8,6,12,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,5,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,4,4,8,5,5,5,7,5,7,7,17,9,9,6,9,5,6,5,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,6,4,4,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,4,5,6,4,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,6,6,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,7,5,7,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,11,6,6,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,12,7,7,6,9,6,9,9,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,9,35,18,17,12,17,10,11,9,17,9,9,7,10,6,8,8,16,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,6,4,7,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,8,6,9,9,22,12,12,8,11,7,8,7,12,7,7,5,9,6,8,7,11,6,7,5,7,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,7,9,8,14,8,9,7,11,8,11,10,20,11,12,9,13,8,10,10,18,10,12,9,16,11,16,16,26,13,13,9,13,7,8,7,13,7,8,6,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,7,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,5,7,4,5,4,8,5,7,7,14,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,6,7,9,5,4,3,5,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,8,6,8,8,34,18,17,12,17,10,11,9,16,9,9,7,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,9,6,9,9,22,11,11,8,11,7,8,7,12,7,7,5,8,6,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,8,13,8,9,7,11,7,10,10,19,10,11,8,13,8,10,10,18,10,11,9,16,11,16,16,26,13,13,9,13,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,7,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,9,5,5,3,5,3,4,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-20,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,9,7,10,10,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,24,13,13,9,13,8,9,7,12,7,7,6,9,6,7,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,7,6,11,6,6,5,7,5,7,7,13,7,8,6,10,6,7,7,12,7,8,7,11,8,12,12,27,14,15,11,17,10,13,11,19,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,10,8,14,9,13,13,25,13,14,10,15,9,10,9,15,8,9,7,10,7,10,9,17,9,10,8,14,9,11,11,20,11,12,10,17,12,17,17,20,11,11,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,9,6,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,18,10,11,8,12,7,9,8,15,9,11,9,15,11,16,16,67,34,33,22,33,19,22,19,33,17,18,13,20,12,16,15,29,15,15,11,17,10,12,11,20,11,12,9,15,10,14,14,26,13,13,9,14,8,9,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,8,8,15,8,9,7,11,8,11,11,33,17,18,12,18,11,13,11,18,10,10,8,12,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,11,6,6,5,8,6,9,9,16,9,10,8,13,8,11,11,20,11,13,11,18,12,18,18,46,24,24,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,14,10,16,10,13,11,20,11,13,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,10,8,13,9,14,14,26,14,14,11,17,10,12,11,20,11,12,10,17,12,17,17,42,21,21,14,20,12,14,12,21,11,12,10,16,10,14,14,27,14,15,11,16,10,12,11,21,12,14,12,20,13,19,18,34,18,18,13,19,11,14,12,21,12,13,10,17,11,16,16,32,17,19,14,23,14,18,17,32,18,21,17,30,20,30,30,50,26,26,17,25,14,16,14,24,13,14,10,16,10,14,13,25,13,13,9,14,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,11,9,15,10,14,13,27,14,14,10,16,10,12,10,18,10,10,7,11,7,10,10,18,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,22,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,20,11,11,9,14,9,12,11,20,12,14,12,21,14,20,20,35,18,18,13,20,12,14,12,20,11,11,8,11,7,10,9,16,9,9,6,9,6,7,7,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,16,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,9,9,16 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,34,18,17,12,17,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,17,9,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,9,5,6,6,11,6,7,6,9,6,9,9,22,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,11,9,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,6,8,5,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,6,4,6,5,7,4,4,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,16,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,14,8,8,6,8,5,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,6,4,6,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,7,5,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,12,10,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,7,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,24,12,12,8,12,7,8,7,12,6,7,5,8,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,5,4,5,4,12,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,6,9,5,6,5,7,4,6,5,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,6,5,8,5,5,4,7,5,6,6,12,6,7,6,8,6,7,6,12,7,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,6 +-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,5,4,6,4,6,6,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,5,8,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,8,5,7,6,10,6,7,6,9,6,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,6,7,6,10,7,10,9,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,8,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,35,18,18,12,18,11,13,11,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,9,8,14,8,9,7,10,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,16,8,8,6,8,5,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,23,12,12,8,12,7,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,6,7,7,10,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,18,10,12,10,16,11,16,16,27,14,14,10,14,8,9,8,13,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,9,7,10,6,7,6,10,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,7,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,8,5,7,7,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,4,3,4,3,5,4,5,5,8 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,20,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5 +-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,5,3,3,2,4,3,4,3,6,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,7,4,5,4,7,4,5,5,9,5,6,4,5,3,4,4,5,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,25,13,13,9,13,8,9,8,12,7,7,6,9,6,8,7,13,7,8,5,7,5,6,5,8,5,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,13,7,7,5,8,5,5,4,6,3,3,2,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,6,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,16,9,9,7,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,10,7,10,6,7,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,6,4,6,5,11,6,6,4,7,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,5,3,4,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,22,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,12,6,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,5,7,4,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,7,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,3,3,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,3,3,5,3,4,4,13,7,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,3,3,4,3,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,7,6,10,7,9,9,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,9,39,20,20,13,19,11,13,11,18,10,10,7,11,7,9,9,21,11,12,9,13,8,9,8,13,7,8,7,11,7,10,10,18,9,9,7,10,6,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,20,11,11,8,11,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,6,5,8,5,7,7,14,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,25,13,14,10,15,9,10,9,16,9,9,7,10,6,8,8,13,7,8,6,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,8,14,8,8,7,11,8,11,11,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,9,18,10,10,7,10,6,8,7,12,7,7,6,10,7,10,9,20,11,11,8,13,8,10,8,14,8,8,6,10,7,10,10,18,10,11,8,12,8,11,10,18,11,13,11,18,12,18,17,27,14,14,10,15,9,11,9,16,8,8,6,9,6,8,7,12,7,7,5,8,5,7,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,10,6,7,6,9,6,7,7,13,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,19,10,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,5,5,8,6,8,8,9,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,4,5,9 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,21,11,11,7,11,6,7,6,10,6,6,4,6,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,9,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,4,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,2,8,4,4,3,5,3,4,3,4,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,3,3,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,23,12,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,12,6,6,4,6,4,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,10,7,10,10,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,7 +-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,18,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,9,5,5,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,29,15,14,10,14,8,10,9,15,8,8,6,10,6,8,8,17,9,9,7,10,6,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,5,7,7,13,7,7,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,5,3,4,4,6,4,5,5,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,20,10,10,7,11,7,8,7,13,7,7,5,8,5,7,6,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,11,6,7,6,10,7,9,8,14,8,9,8,13,9,13,13,21,11,12,8,12,7,9,7,13,7,8,6,8,5,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,5,8,5,7,7,11,6,6,5,8,5,5,5,8,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,11,6,7,5,8,5,6,6,10,6,7,5,8,6,8,9,15,8,9,6,9,6,7,6,9,5,6,5,8,5,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,6,4,4,4,5,4,6,6,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,4,5,5,8,5,5,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,3,2,2,2,3,2,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,6,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,4,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,4,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,5,3,4,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,27,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,4,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,11,6,7,5,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,10,6,6,5,8,6,8,7,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,5,9 +-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,8,5,7,7,26,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,6,6,18,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,3,5,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,9,5,5,4,7,5,6,5,9,6,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8 +-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,5,4,6,6,7,4,4,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,3,4,4,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,5,4,5,6,16,9,9,6,8,5,6,5,9,6,7,6,9,6,9,8,15,8,8,6,8,5,7,7,12,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,8,15,9,10,8,13,9,14,14,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,10,9,17,10,11,9,15,10,14,14,51,26,26,17,25,15,18,15,27,15,16,12,19,12,15,14,25,13,13,9,14,8,10,9,16,9,11,9,14,10,14,13,21,11,10,7,10,6,7,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,8,8,14,8,9,7,11,8,12,12,20,11,11,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,5,7,7,15,8,9,6,9,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,6,10,7,10,10,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,11,7,10,9,17,9,10,8,13,9,12,12,24,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,12,9,13,13,29,15,15,11,16,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,11,7,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,36,18,18,12,18,10,12,11,19,10,10,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,11,7,10,10,18,10,10,7,9,6,7,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,10,6,7,5,8,5,7,6,11,7,8,6,10,7,9,9,16,9,9,6,9,6,8,8,14,8,10,8,14,10,15,15,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,6,5,7,4,5,5,8,4,4,3,5,4,6,6,10,6,7,6,10,7,9,9,6,3,3,3,4,3,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,8,15 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,6,5,7,5,7,7,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,8,7,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,11,6,6,4,6,4,4,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,2,4,3,3,3,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,6,4,5,4,7,4,5,4,4,3,4,4,8,5,5,4,5,3,4,5,8,5,6,5,8,5,7,7,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,8,8,12,6,6,4,7,4,4,3,6,4,4,3,5,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,5,7,7,11,6,6,4,7,4,4,3,5,3,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,3,3,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,8,6,11,7,10,10,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,4,4,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,5,5,4,6,4,4,3,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,4,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,7,8,6,10,7,9,9,29,15,16,11,16,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,8,7,10,6,7,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,12,7,7,5,8,5,5,4,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,5,7,4,5,4,7,5,7,7,24,12,12,8,12,7,8,7,14,8,8,6,8,5,6,6,12,7,7,5,8,5,7,7,10,6,7,6,10,7,10,9,16,9,9,6,9,6,7,6,11,6,7,5,7,5,6,5,10,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,4,5,5,7,4,4,3,5,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,5,8,5,6,6,13,8,9,7,12,8,11,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,10 +-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,4,4,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,7,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,3,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,13,7,8,6,7,5,6,5,9,5,6,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,7,4,4,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,6,6,20,11,11,7,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,8,5,6,5,7,4,4,4,6,4,6,5,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,9,6,9,9,19,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,8,4,4,4,6,4,4,4,8,5,5,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,6,4,5,5,9,5,6,4,6,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,2,2,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,2,2,3,6,4,4,4,5,3,4,4,8 +-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,6,7,7,12,6,7,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,7,4,4,4,5,4,5,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,9,6,9,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,3,5,3,4,3,5,3,4,4,8 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,3,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,2,2,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,9,5,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,6,4,4,4,6,4,5,4,6,4,5,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,5,7,5,6,6,10,6,8,7,11,8,11,11,17,9,9,6,9,5,6,5,7,4,5,4,5,4,5,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,13,9,13,13,39,20,20,14,21,12,14,12,21,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,15,8,8,6,10,7,9,9,21,11,10,7,10,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,10,7,9,9,35,18,18,13,20,11,13,11,20,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,9,13,13,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,19,10,10,8,12,7,9,7,12,7,7,5,8,5,7,7,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,15,8,9,7,11,7,10,10,18,10,11,9,16,11,16,15,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,14,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,8,5,5,4,5,4,5,5,10,6,6,5,9,6,8,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,8,5,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,16,9,9,6,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,14 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,20,10,10,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,7,4,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,11,6,6,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,4,3,4,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,26,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,14,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,24,12,12,9,13,8,9,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,10,6,6,5,8,5,6,6,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,5,3,3,3,4,2,2,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,5,4,5,5,9 +-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,20,10,10,7,11,6,7,6,12,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,12,7,7,5,7,4,4,4,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,6,5,10,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,38,19,19,13,20,11,13,11,19,10,11,9,14,9,12,11,20,11,11,8,12,7,8,7,13,7,8,7,11,7,9,9,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,20,11,12,9,13,8,11,10,18,10,10,8,12,7,9,8,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,9,14,8,10,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,10,6,8,7,14,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,20,10,10,7,10,6,8,7,9,5,6,5,8,5,7,7,10,5,5,4,6,4,5,4,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,4,5,6,11 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,2,8,5,5,4,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,23,12,12,8,12,7,8,7,14,8,8,6,9,6,8,7,13,7,7,6,8,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,6,4,7,5,6,6,10,6,7,6,9,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,7,4,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,6,5,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-5,-12,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,7,11,6,6,5,6,4,5,5,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,19,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,7,5,6,5,8,6,8,8,34,17,17,12,18,10,12,11,20,11,12,9,13,8,11,10,19,10,10,8,11,7,8,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,12,7,8,6,9,6,8,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,14,8,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,19,10,10,7,10,6,8,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,4,6,6,10 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,5,5,7,5,7,7,12,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,6,8,8,34,17,17,12,18,10,12,11,19,10,11,9,13,8,11,10,19,10,10,8,11,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,13,7,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,10 +-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,19,10,10,8,12,7,8,7,12,7,7,6,10,6,8,7,13,7,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,10,6,7,6,10,6,6,5,8,6,9,9,17,9,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,24,12,12,9,13,8,9,8,13,7,7,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,9,8,14,10,14,14,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,11,21,11,12,9,14,8,10,9,16,9,11,9,16,11,16,16,31,16,16,11,16,9,10,9,15,8,8,6,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,6,8,8,15,8,9,7,11,7,10,10,19,11,13,11,18,13,19,19,72,36,36,25,37,21,24,20,34,18,19,15,24,15,20,19,35,18,19,13,20,12,15,13,24,13,15,12,20,13,18,18,34,18,18,13,20,12,15,13,22,12,12,9,15,10,14,13,25,14,15,11,17,10,13,12,22,12,13,11,18,12,17,17,34,18,18,12,18,10,12,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,16,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,68,34,34,23,35,20,24,20,34,18,19,15,24,15,21,20,39,20,21,15,22,13,17,15,28,16,18,14,23,15,21,20,39,20,20,13,19,11,13,11,18,10,12,9,15,9,12,12,22,12,12,9,15,9,11,10,19,11,12,10,16,11,15,15,30,16,16,11,15,9,10,8,14,8,8,7,11,7,10,10,18,10,10,8,13,8,11,11,21,12,13,11,19,13,20,20,38,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,13,24,14,17,14,24,17,26,26,56,29,29,20,29,17,20,17,31,17,18,13,21,13,17,16,29,15,15,11,17,10,12,11,19,10,11,9,14,9,12,12,23,12,12,8,12,7,9,9,16,9,9,7,11,7,10,9,16,9,10,7,11,7,10,9,16,9,11,9,15,11,16,16,30,16,16,11,17,11,14,12,22,12,13,10,16,11,15,14,27,14,15,11,16,10,13,12,22,13,15,12,20,13,18,18,35,18,18,13,19,11,14,12,22,12,13,11,18,12,17,17,32,17,17,12,18,11,14,13,23,13,16,14,24,16,23,23,38,19,19,13,20,12,15,13,23,12,13,10,15,10,14,13,24,13,14,10,15,9,10,9,16,9,11,9,16,11,15,14,27,14,14,10,16,10,13,11,20,11,12,9,15,10,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,28,15,15,10,15,9,10,8,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,11,7,8,6,10,7,9,9,18,9,9,6,8,5,6,5,7,4,4,3,4,3,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,7,10,10,18 +-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,19,11,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,20,10,11,8,12,7,9,8,15,9,10,8,12,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,7,12,7,9,8,13,9,14,14,28,15,15,10,15,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,7,4,5,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,9,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,3,3,3,4,4,6,4,4,4,6,4,6,5,9 +-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,4,3,13,7,8,6,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,5,7,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,18,10,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,19,10,11,8,12,8,10,9,15,9,10,8,12,8,12,11,20,10,10,7,10,6,6,5,10,6,6,5,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,14,14,10,16,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,6,8,7,11,6,6,5,8,6,8,7,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,10,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,11,11,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,5,3,4,4,6,4,6,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,5,4,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,24,13,13,9,12,7,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,6,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,24,12,12,8,12,7,8,7,12,7,7,6,8,6,7,7,13,7,8,6,8,6,7,6,10,6,7,6,8,6,8,8,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,6,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,12,6,7,5,7,4,6,5,8,5,6,5,8,6,9,9,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-9,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,14,7,7,5,8,5,6,5,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,8,8,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,8,8,17,9,8,6,8,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,35,18,18,12,18,11,13,11,17,9,10,8,12,8,11,10,20,10,10,7,11,7,8,7,14,8,8,7,11,7,9,9,19,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,6,10,6,8,7,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,9,5,6,5,9,6,9,9,35,18,18,12,18,10,12,10,18,10,11,8,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,19,10,10,7,10,6,6,5,11,6,7,6,9,6,7,6,12,7,7,5,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,6,10,7,10,11,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,13,8,10,8,14,10,15,15,29,15,16,11,16,9,11,9,15,8,8,6,10,7,9,9,15,8,8,6,8,5,6,6,9,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,5,9,6,7,6,9,6,8,8,17,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,9,5,6,5,8,5,7,7,16,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,5,4,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,10,6,6,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,4,2,2,2,4,3,3,3,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,6,4,4,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,4,3,4,4,7,4,4,3,5,4,5,5,12,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,24,12,12,8,13,7,8,7,12,7,8,6,9,6,8,7,15,8,7,5,8,5,6,5,10,6,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,23,12,12,8,13,8,9,7,13,7,8,6,8,6,8,7,13,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,6,5,10,6,8,7,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,7,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,8,4,4,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6 +-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,10,6,7,5,8,5,7,6,13,7,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,7,6,11,6,7,5,8,5,6,5,9,5,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-6,-9,-9,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,8,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,3,11,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,8,4,4,3,5,4,5,5,8,5,5,4,5,4,6,6,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,15,8,8,6,9,5,6,5,9,5,6,5,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,5,9,6,8,8,12,6,6,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,9,6,7,7,18,9,9,7,10,6,7,6,10,6,6,4,6,4,6,5,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,7,6,10,7,10,9,34,18,18,13,19,11,13,11,18,10,11,8,12,8,11,11,22,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,16,9,10,7,11,7,8,7,13,8,9,8,13,9,12,12,17,9,10,7,10,6,6,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,5,3,3,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,34,18,18,13,19,11,12,10,18,10,11,9,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,8,13,8,11,11,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,6,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,5,6,5,9,5,6,5,9,7,10,10,19,10,10,8,12,7,9,7,12,7,7,6,10,7,10,9,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,29,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,13,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,13,7,8,6,8,5,5,5,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,6,5,9,6,9,9,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,11,7,9,9,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,13,9,13,13,20,11,11,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,7,5,6,4,5,5,8,5,6,5,7,5,6,6,15,8,8,6,9,5,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,13,7,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3,3,4,3,4,5,9 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,7,4,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,4,3,3,3,6,4,4,4,6,4,5,5,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,5 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,3,8,5,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,6,4,4,4,6,4,5,5,19,10,11,8,10,6,8,7,11,6,6,5,7,5,6,6,12,7,8,6,8,5,6,5,9,5,6,5,8,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,11,6,6,4,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,4,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,8,12,7,7,6,11,6,7,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,7,4,5,5,9,5,6,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,12,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,4,5,3,4,4,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,23,12,12,8,12,7,9,8,13,7,7,5,8,6,8,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,5,10,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,23,12,13,9,14,8,9,7,12,7,7,5,8,6,8,7,13,7,8,6,9,5,6,6,12,7,7,6,10,7,9,9,14,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,10,6,7,5,8,5,7,7,11,6,7,5,8,5,7,7,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,14,8,8,5,7,5,6,6,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,8,5,7,6,10,7,11,11,14,8,8,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,8,4,4,3,4,3,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,6 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3 +0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,6,3,3,3,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,5,3,3,3,4,3,4,3,5,4,6,6,8,4,4,3,3,2,3,3,3,2,2,2,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,6,5,19,10,10,7,11,7,8,7,12,7,7,5,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,6,9,6,8,8,15,8,8,6,7,4,5,4,8,5,5,4,5,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,5,6,5,6,4,6,6,20,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,9,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,3,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,5,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3 +0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,7,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,13,7,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,5,4,4,3,5,4,5,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,16,9,9,6,9,6,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,2,2,2,1,1,1,1,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,3,3,4,3,4,5,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,10,6,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,22,12,12,9,13,8,9,8,13,7,7,5,8,5,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,7,7,10,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,7,6,11,6,7,6,10,7,9,9,35,18,19,13,19,11,14,12,20,11,12,9,15,10,13,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,14,27,14,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,10,8,13,9,14,14,24,13,13,9,12,7,8,7,11,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,4,4,3,3,2,3,3,5,4,5,4,7,5,7,7,14,8,8,6,10,6,7,7,12,7,9,7,12,8,11,11,36,19,19,13,19,11,14,12,21,11,12,8,12,8,11,10,18,10,10,7,11,7,9,8,13,7,8,7,12,8,12,12,19,10,9,6,8,5,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,18,9,9,7,10,6,8,8,14,8,8,7,11,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,18,12,17,17,34,17,17,11,16,9,11,10,17,9,9,7,11,6,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,19,10,11,8,12,7,9,7,12,7,8,6,9,6,9,9,16,9,9,7,10,6,8,8,15,9,11,9,15,11,16,16,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,6,13,7,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,22,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,4,5,4,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,4 +0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,14,8,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,10,6,5,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,5,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,4,6,6,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,8,5,7,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,19,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,7,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,9,6,7,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,4,5,13,7,7,5,7,4,4,4,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,4,2,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,5,5,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,6,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,3,3,5,4,4,4,5,4,5,5,13,7,7,5,8,5,6,5,8,4,5,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,6,3,3,2,2,2,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 +1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,1,2,1,1,1,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,4,6,4,5,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,14,7,7,5,6,4,5,5,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,20,11,11,8,11,7,9,8,13,7,8,6,8,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,9,5,5,4,7,4,5,5,9,5,6,5,8,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,3,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,10,6,6,5,7,4,5,4,8,5,5,5,8,5,7,7,20,10,10,7,11,7,8,7,11,6,6,5,8,5,6,5,11,6,6,5,8,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,5,5,11,6,6,4,6,4,5,5,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,11,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,6,9,5,6,5,8,6,9,9,12,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,5,3,4,3,4,3,4,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,8,4,4,3,3,2,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,5,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,12,6,6,4,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,4,4,8,4,4,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,4,5,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,5,7,4,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,2,3,3,5,3,3,2,3,3,4,4,17,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,5,8,6,8,8,25,13,13,9,14,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,9,7,11,7,10,10,20,10,10,7,10,6,7,7,12,7,7,5,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,6,3,3,2,3,2,3,3,6,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,23,12,12,9,14,8,9,8,14,8,8,6,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,6,9,5,5,3,4,3,4,4,6,4,4,3,5,4,6,6,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,13,7,8,6,10,6,8,7,13,8,9,8,13,9,13,12,24,13,13,9,12,7,8,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,9,6,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,6,9,6,7,7,12,7,8,7,11,7,10,10,16,8,8,6,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,4,4,3,5,4,5,5,10,5,5,4,5,3,3,2,2,1,1,1,0,0,0,1,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,5,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,2,3,3,4,4,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,3,3,4,3,5,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,9,6,7,6,9,5,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,4,5,4,5,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,3,4,3,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,4,5,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2 +1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,12,7,8,7,13,7,7,6,9,6,9,9,14,8,8,6,10,6,7,7,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,6,10,5,5,4,6,5,7,7,11,6,7,6,11,7,10,10,19,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,6,9,6,7,6,10,7,10,9,21,11,11,8,12,7,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,6,9,6,7,6,12,7,9,7,12,8,12,11,18,9,9,6,8,5,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,9,9,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,5,11,6,6,5,8,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,3,4,4,6,4,4,4,14,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,4,3,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,4,5,4,4,4,6,4,4,4,6,4,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,4,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-3,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,6,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,8,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,17,9,9,7,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,10,7,10,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,7,10,10,17,9,8,6,8,5,6,5,10,6,6,4,5,4,5,4,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,12,7,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,7,5,6,4,5,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,9,16,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,9,6,9,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,13,7,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,7,7,6,8,5,7,6,10,6,7,6,11,7,10,10,16,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,8,5,6,5,9,6,8,8,10,5,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,26,13,13,9,14,8,10,8,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,9,8,14,9,13,13,41,21,20,14,20,12,15,13,22,12,14,11,18,12,16,15,29,15,16,11,16,9,11,10,18,10,12,10,18,12,17,17,32,17,17,12,19,11,14,12,21,11,12,9,14,9,12,12,23,12,13,10,16,10,13,12,21,12,13,10,17,12,17,17,31,16,16,10,14,8,10,8,13,8,9,7,11,7,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,9,17,9,9,6,9,6,8,7,12,7,8,6,9,6,8,7,13,7,8,6,10,7,9,8,14,8,10,9,16,11,17,17,39,20,19,13,19,11,14,12,20,11,12,9,15,9,12,11,20,11,12,9,13,8,11,10,18,10,11,9,14,10,14,14,26,14,14,10,15,9,10,8,14,8,8,6,9,6,7,6,11,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,25,13,12,8,12,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,11,7,10,10,20,11,11,8,11,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,19,11,14,12,20,13,19,19,31,16,16,11,16,9,10,8,13,7,7,6,9,6,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,21,11,11,8,11,7,8,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,10,8,12,7,9,9,16,9,11,10,18,12,18,18,26,14,14,10,14,8,10,9,16,9,9,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,9,7,12,8,11,11,21,11,12,8,12,7,9,7,12,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,23,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,2,2,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,9,7,10,6,8,7,11,6,7,5,7,5,6,6,12,7,7,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,4,7,4,4,4,6,4,5,4,8,5,6,5,9,6,9,9,20,10,10,7,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,6,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,7,5,6,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,8,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,4,4,8,5,6,5,9,7,10,10,21,11,11,8,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,2,2,2,2,2,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,5,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,4,3,4,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,5,6,5,8,6,8,8,23,12,12,8,12,7,9,7,13,7,8,6,10,6,8,8,16,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,7,11,6,7,5,8,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,15,8,7,5,6,4,5,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,8,7,12,8,12,12,16,8,8,6,8,5,5,4,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,3,3,2,3,3,4,3,4,4,13,7,8,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,6,7,6,10,7,10,10,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,13,7,6,4,6,4,5,5,7,4,4,3,4,3,4,3,6,3,3,2,2,2,3,3,2,2,2,2,4,3,4,4,13,7,7,5,6,4,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,7,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,11,6,6,4,5,3,4,3,6,3,3,3,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,18,10,10,7,9,6,7,6,9,5,6,5,8,5,6,6,11,6,7,5,6,4,5,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,4,3,4,3,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0 +1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,4,3,4,3,4,4,6,3,3,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,15,8,8,6,9,5,6,5,9,5,5,4,5,3,4,3,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,7,4,5,4,5,4,6,6,10,6,6,5,8,6,9,9,30,15,15,10,14,8,10,9,15,8,9,7,10,7,9,8,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,7,12,8,11,11,17,9,9,6,8,5,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,14,8,8,5,7,4,5,5,8,4,4,3,5,4,5,5,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,24,13,13,9,14,8,10,9,15,8,8,6,10,6,8,8,11,6,7,5,7,4,5,4,7,4,5,4,7,5,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,5,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,14,14,18,9,9,7,10,6,7,6,10,6,6,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,2,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,10,6,7,7,12,7,9,7,12,8,11,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,5,4,6,5,7,7,15,8,7,5,7,5,6,5,8,5,5,4,5,3,4,3,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,12,7,7,5,6,4,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3 +0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,5,7,4,5,4,8,5,6,5,8,6,8,7,13,7,6,5,7,5,6,5,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,9,5,4,3,5,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,5,5,8,6,8,9,11,6,6,4,7,4,4,4,7,4,4,3,4,3,3,3,6,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,9,5,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,5,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-2,0,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-5,-3,-4,-4,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,8,5,5,4,6,4,4,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,8,8,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,8,5,6,5,7,5,7,6,11,6,6,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,5,6,6,12,7,8,7,12,8,11,11,20,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,7,4,5,4,7,5,8,8,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,7,6,11,6,7,6,11,8,12,12,15,8,8,6,8,5,5,4,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,3,4,3,4,4,11,6,6,4,5,3,4,3,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6 +1,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,5,3,4,3,4,3,5,4,7,4,4,4,5,4,5,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-3,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,6,4,4,3,5,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,6,5,7,7,22,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,8,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,9,5,6,5,7,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,8,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,10,6,6,6,10,7,11,11,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,3,4,3,4,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,5,7,7,12,6,6,5,8,5,5,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,4,3,3,2,3,3,9,5,6,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,5,7,7,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,18,9,9,6,9,6,6,6,10,6,6,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,5,3,4,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,6,6,10,7,10,10,14,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,4,4,4,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-9,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-7,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,10,5,5,3,4,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,2,1,1,1,1,1,1,2,3,2,3,2,6,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,6,4,4,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,40,21,21,14,21,12,15,13,23,12,13,10,15,9,12,11,21,11,12,9,13,8,9,8,15,9,11,9,15,10,15,15,23,12,12,8,12,7,9,8,14,8,9,7,11,7,9,9,16,9,9,7,11,7,10,10,18,10,12,11,19,13,19,18,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,8,10,9,17,10,12,11,19,13,19,19,34,17,17,11,16,9,11,10,17,9,9,7,11,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,8,5,6,6,10,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,13,8,11,11,20,11,13,11,20,14,20,19,26,13,13,9,13,7,8,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,6,5,9,6,7,6,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,8,5,7,7,12,7,7,5,6,4,5,4,6,4,5,4,6,4,6,6,15,8,9,6,9,6,8,7,13,7,8,6,9,6,9,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,23,12,12,9,14,8,9,8,14,8,8,7,11,7,10,9,16,9,9,6,9,6,7,7,12,7,7,6,10,7,9,9,20,10,10,7,9,5,6,5,9,5,4,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,5,4,6,6,16,8,8,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-13 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,9,5,6,4,5,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,21,11,11,8,11,7,8,7,13,7,7,6,8,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,10,14,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,5,3,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,9,5,6,4,6,4,4,3,5,3,2,2,4,2,2,2,5,3,2,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,22,12,12,8,12,7,8,7,14,8,8,6,8,6,8,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,8,6,10,7,10,10,16,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,5,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,5,5,8,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,4,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,11,6,6,4,6,4,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-7 +0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,16,9,9,6,9,5,6,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,2,2,3,3,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,25,13,13,9,14,8,10,9,16,9,9,7,10,7,9,8,14,8,8,6,9,6,7,6,12,7,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,6,12,7,9,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,11,6,7,5,8,5,6,5,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,6,9,6,8,7,10,6,8,7,12,8,11,11,24,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,7,8,6,10,7,9,8,15,9,10,8,14,9,13,13,16,8,8,6,8,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,7,13,7,8,6,8,5,6,5,6,4,4,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,15,8,8,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,3,5,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,3,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,5,10,6,6,5,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,20,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,6,4,6,4,4,3,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,4,5,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,6,6,4,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,12,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,5,8,8,12,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,11,7,8,6,11,8,11,10,11,6,6,4,5,4,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,1,1,1,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,5,6,11,6,6,4,6,4,5,4,7,4,3,2,3,2,3,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,7,4,5,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,36,19,19,13,20,12,14,12,21,11,11,8,13,8,10,9,20,11,11,8,13,8,10,9,16,9,11,9,14,9,13,13,24,12,12,9,13,8,10,8,14,8,8,6,9,6,9,9,14,8,8,6,10,7,10,9,17,10,12,10,18,12,18,18,29,15,16,11,16,9,11,9,15,9,10,8,12,8,10,9,18,9,9,6,9,6,7,7,12,7,8,7,11,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,9,16,9,10,9,15,10,15,16,33,17,17,12,18,10,12,10,17,10,11,8,13,8,11,10,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,7,15,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,11,6,6,5,8,6,8,8,18,10,10,8,12,8,11,11,20,11,13,11,19,13,19,19,21,11,11,8,11,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,7,5,7,8,16,8,8,6,9,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,6,5,8,5,6,5,9,6,9,8,18,9,9,6,8,5,5,4,7,4,5,4,5,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,9,8,12,7,8,6,9,6,7,7,12,7,9,8,13,9,13,13,20,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,8,6,9,6,7,6,11,7,8,6,10,6,8,8,16,9,9,6,9,5,6,5,8,5,6,5,7,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,4,3,4,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,20,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,13,7,7,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,11,6,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,4,4,6,4,5,5,5,3,4,3,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,24,12,12,9,13,8,10,8,13,7,7,5,8,5,7,6,13,7,8,6,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,9,8,14,8,8,6,9,5,6,5,8,5,6,5,6,4,6,6,12,7,7,5,9,6,8,8,13,8,10,8,14,10,14,14,14,7,7,5,6,4,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,13,7,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,7,7,20,10,10,7,11,7,8,7,11,6,6,5,7,4,6,5,11,6,6,5,7,4,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,8,4,5,4,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,12,8,12,11,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,3,3,4,4,7,4,4,3,4,3,5,5,8,5,5,5,8,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,4,6,6,10,6,6,4,6,4,4,3,7,4,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,34,17,17,12,18,11,13,11,18,10,10,8,12,7,9,9,18,10,10,7,11,7,9,8,13,8,9,8,13,9,12,12,22,11,11,8,12,7,9,7,13,7,8,6,8,6,8,8,15,8,9,7,11,7,9,9,17,10,12,10,16,11,16,16,29,15,15,11,16,9,11,9,16,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,11,7,8,7,12,8,12,11,19,10,11,8,11,7,8,8,14,8,9,7,11,7,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,16,16,32,16,16,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,5,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,7,7,13,8,9,7,12,8,12,12,21,11,12,8,12,7,9,7,12,7,8,7,11,7,10,10,19,10,11,8,13,8,11,10,18,11,13,11,20,13,19,19,18,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,18,9,9,6,8,5,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,13,7,8,7,12,8,12,12,21,11,11,8,11,7,9,8,13,7,8,6,10,7,9,9,14,8,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,6,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,4,4,10,5,5,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,4,2,3,2,3,2,3,2,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,23,12,12,8,12,7,9,7,12,7,7,6,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,6,7,6,11,6,7,5,8,5,7,7,12,6,7,5,7,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,8,8,6,10,6,8,7,13,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,4,8,5,6,4,7,4,6,6,10,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,7,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,9,5,5,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,4,3,4,3,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,11,12,9,14,9,11,10,19,11,12,10,16,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,15,8,8,6,10,6,6,5,9,5,6,5,8,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,13,7,8,6,11,7,10,10,18,10,11,8,14,9,12,11,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,7,5,6,6,12,7,7,6,8,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,10,6,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-6,-4,-6,-6,-14 +1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,10,5,5,3,5,3,4,3,4,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,33,17,18,12,17,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,11,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,10,11,8,14,9,11,10,19,11,12,10,17,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,9,9,15,8,8,6,9,6,6,5,9,5,6,5,7,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,14,8,8,6,11,7,10,10,18,10,11,8,14,9,11,10,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,7,5,7,6,12,7,7,6,8,5,7,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-10,-5,-7,-6,-11,-7,-12,-12,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-9,-14,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-11,-23,-12,-13,-9,-15,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-38,-18,-18,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-1,-1,0,0,0,0,1,1,1,2,2,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,6,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,9,5,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,5,3,4,4,7,6,9,9,17,9,10,7,10,6,7,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,7,6,11,6,7,6,10,7,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,8,11,10,19,10,11,8,13,8,11,11,21,12,14,12,22,15,22,21,66,33,33,23,34,19,22,19,33,18,19,15,25,16,21,20,38,20,20,14,21,12,15,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,19,12,16,16,30,16,17,13,20,12,16,15,28,16,18,15,25,17,25,25,49,25,25,17,26,15,17,15,26,14,15,11,17,11,15,14,26,14,15,11,17,10,13,12,22,12,14,11,19,13,18,18,34,18,18,12,18,11,13,11,19,11,13,10,17,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,30,21,31,31,62,31,31,21,32,18,21,18,32,17,19,14,23,15,21,20,39,20,21,15,24,14,18,16,30,16,18,15,25,17,24,24,46,24,24,16,23,13,16,14,24,13,15,12,20,13,18,17,33,18,19,14,21,13,17,15,27,15,17,14,24,16,23,23,44,23,23,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,11,17,11,14,13,24,13,15,12,20,14,20,20,39,20,21,15,22,13,16,14,25,14,16,12,20,13,18,17,33,18,19,14,22,14,19,18,34,20,24,21,37,25,38,38,34,18,18,12,18,11,14,12,21,11,12,9,15,9,12,11,20,11,11,8,12,7,9,8,14,8,9,7,10,7,10,10,19,10,11,8,13,8,9,8,15,8,9,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,8,10,9,16,9,9,7,10,7,9,8,15,8,9,7,11,7,8,7,13,8,9,8,13,9,12,12,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,14,27,14,15,11,18,11,14,12,22,13,16,13,23,15,22,22,44,22,22,15,21,12,15,12,21,11,11,8,11,7,9,8,13,7,7,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-13,-27 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,7,11,6,8,7,13,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,9,7,10,7,9,8,15,9,10,9,15,11,16,16,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,11,20,10,11,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,8,11,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13 +0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,2,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,13,7,7,6,9,6,8,8,13,7,8,6,9,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,8,16,9,10,9,15,11,16,16,32,17,17,12,17,10,12,10,17,9,10,8,12,8,11,11,19,10,10,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,9,7,10,6,8,8,15,8,9,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-2,-3,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,4,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,7,4,4,4,6,4,6,6,10,6,6,4,7,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,6,8,6,8,7,13,7,7,6,9,6,7,6,11,6,7,5,9,6,8,8,16,8,8,6,8,5,6,6,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,5,7,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,4,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,8,13,9,13,13,12,6,6,5,7,4,6,5,8,4,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,8,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,2,1,1,0,1,1,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,6,4,4,3,3,2,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,5,5,10,6,6,5,7,5,7,7,10,6,8,7,11,8,11,11,33,17,17,12,17,10,11,10,18,10,10,8,12,8,11,10,20,10,10,7,10,6,7,7,14,8,8,7,11,7,10,10,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,9,13,7,8,6,9,6,7,7,14,8,8,6,9,6,7,7,13,8,9,7,11,7,10,10,18,9,9,7,10,6,7,7,10,6,6,5,8,6,8,8,14,8,9,7,10,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,18,10,12,10,17,9,10,8,12,8,10,10,18,10,11,8,12,7,9,8,15,8,9,7,12,8,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,10,7,9,8,15,9,10,8,12,8,12,12,23,12,11,7,10,6,7,7,11,6,6,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,10,11,18,10,10,7,11,7,9,8,12,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,17,10,13,11,19,13,19,19,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,5,5,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,11,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,8,8,12,6,6,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,6,6,5,8,6,8,7,12,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,6,4,6,6,11,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,12,7,9,8,14,10,14,14,12,6,6,5,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,6,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,8,4,5,4,6,4,5,5,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,9,9,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,5,6,6,10,6,8,7,12,8,12,12,10,6,6,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,4,2,3,3,4,3,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,5,4,6,4,6,5,9,5,5,4,7,4,5,4,7,4,4,4,6,4,4,4,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,4,11,6,6,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,3,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,3,3,6,4,4,4,6,4,5,5,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,34,17,17,12,18,10,11,9,16,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,10,6,8,8,14,8,8,6,10,7,10,10,13,7,8,6,9,6,8,7,12,7,9,8,14,10,14,14,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,9,7,12,8,11,11,17,9,9,7,11,7,8,7,12,7,7,6,10,7,10,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,16,16,11,17,10,11,9,16,9,9,7,12,8,11,10,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,21,11,12,8,12,7,9,7,12,7,7,5,8,6,8,8,17,9,10,7,10,7,9,8,14,8,9,8,13,9,12,12,23,12,12,8,11,6,7,6,10,6,6,5,7,5,7,7,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,11,11,9,14,9,11,10,18,11,13,11,20,14,20,20,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,16,9,10,7,11,7,9,8,14,8,10,8,13,9,12,12,18,9,9,6,8,5,6,5,9,5,6,5,7,4,5,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,6,5,7,5,7,7,10,5,5,4,4,3,4,3,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,19,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,4,4,3,5,4,5,4,7,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,6,5,9,5,6,6,10,7,10,10,18,9,9,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,5,6,4,6,4,6,6,12,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,10,6,6,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,10,6,7,7,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,4,3,4,3,6,4,4,3,4,3,4,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,10,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,4,4,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,5,6,5,8,6,8,9,22,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,15,8,8,6,9,6,7,6,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,10,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,7,6,10,6,8,7,11,8,11,11,20,11,11,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,11,7,9,8,14,9,13,13,14,7,7,5,6,4,5,5,7,4,4,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,7,4,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,5,5,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,4,5,4,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,4,7,5,6,5,9,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,5,6,5,8,5,5,5,7,5,7,7,12,7,7,5,7,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,8,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,10,6,8,7,11,8,11,11,12,6,6,4,5,3,4,3,5,3,3,2,4,3,4,4,6,3,3,3,3,3,4,3,5,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,7,4,5,5,9,5,6,5,8,6,8,8,9,5,5,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,6,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,11,6,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9 +-3,-1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,2,2,4,3,3,3,4,3,5,5,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,6,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,2,2,2,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,11,6,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,7,6,9,6,8,8,14,8,10,8,14,9,13,13,35,18,18,12,18,11,13,11,18,10,11,8,13,8,10,10,18,10,10,7,11,7,8,8,14,8,9,8,14,9,12,12,21,11,11,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,6,7,6,10,6,7,6,10,7,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,11,15,8,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,10,17,9,10,8,12,7,9,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,9,9,20,10,10,7,11,6,7,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,15,8,9,8,13,9,13,13,26,13,13,9,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,7,12,7,7,6,9,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,19,13,18,18,19,10,10,7,9,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15,8,9,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,15,8,8,5,7,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-9,-19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,5,3,3,2,4,3,3,3,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,6,4,5,4,8,5,6,5,7,5,7,7,10,6,6,5,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,8,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,4,4,4,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,6,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-6 +-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,1,1,2,2,2,2,2,2,2,2,2,2,2,3,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,6,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,4,6,4,6,6,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,5,5,11,6,6,4,6,3,3,3,6,4,4,4,6,4,6,5,6,4,5,4,6,4,4,4,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,9,5,5,3,4,3,3,3,7,4,5,4,6,5,7,7,9,5,6,5,8,5,7,6,9,5,6,6,10,7,11,11,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,7,5,6,6,16,8,8,6,9,5,6,5,8,4,4,3,6,4,5,5,9,5,6,4,5,3,4,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,5,8,4,4,3,4,2,2,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,8,6,8,8,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,6,4,6,7,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-2,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6 +-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,5,8,5,7,6,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,6,11,7,10,10,27,14,13,9,12,7,8,7,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,7,6,9,6,9,9,12,7,7,5,8,5,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,10,6,6,4,5,3,4,4,8,5,5,4,7,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,24,12,12,9,13,8,9,7,11,6,6,4,6,4,5,5,12,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,18,10,10,7,9,5,6,6,10,6,6,4,5,4,5,4,10,6,6,5,7,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,12,7,7,5,6,4,4,3,5,3,4,3,5,3,4,3,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,5,9,6,7,6,11,8,12,12,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,5,7,7,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,4,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,1,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,3,4,3,3,3,3,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,5,8,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,8,6,8,8,8,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,7,5,7,8,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,0,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,2,2,3,2,2,2,4,3,3,3,-5,-2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,8,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,8,8,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,9,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,4,5,5,11,6,7,6,10,7,10,10,9,5,6,4,6,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,4,3,3,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,16,9,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,7,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,6,4,4,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,5,8,5,5,4,6,4,5,5,10,6,7,6,8,6,8,8,22,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,7,5,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,11,6,6,4,7,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,10,7,10,10,5,3,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,8,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,20,11,11,7,10,6,7,6,10,6,6,4,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,10,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,1,1,1,2,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,11,6,7,6,9,6,8,8,15,9,11,9,16,11,15,15,40,20,20,13,19,11,12,10,18,10,10,8,12,8,10,10,19,10,10,7,10,6,8,7,11,6,7,6,11,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,14,8,9,7,10,6,8,7,13,8,9,7,11,8,11,11,17,9,9,6,9,6,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,8,8,14,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,10,17,12,17,17,40,20,20,13,19,11,13,11,19,10,11,8,13,8,10,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,6,10,6,7,5,8,5,7,7,26,14,14,10,15,9,11,10,17,9,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,8,7,11,8,11,11,20,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,11,10,19,11,14,12,20,13,19,19,17,9,9,6,9,5,6,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,8,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,11,8,12,8,10,9,16,9,11,10,18,12,18,18,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,5,3,2,1,1,1,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25 +-3,-1,-2,-1,-2,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,7,10,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,10,6,6,5,7,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-7,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,11,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,9,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,6,7,11,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,0,-1,0,-1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,8,4,5,4,5,4,5,5,8,5,6,5,7,5,8,8,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,-8,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,4,3,3,3,4,3,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,10,5,5,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,6,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,20,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,8,5,6,5,8,6,8,7,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,9,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,3,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,3,4,3,3,2,1,1,2,2,3,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,15,8,8,6,7,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,3,2,2,2,5,3,3,3,5,3,4,5,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,14,8,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,3,2,4,3,3,3,4,2,2,2,3,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,4,7,4,4,4,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,8,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,4,5,5,8,5,5,4,7,5,8,8,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,5,8,6,8,7,8,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,5,7,5,8,8,14,8,9,7,12,9,13,13,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,6,5,8,5,7,7,12,7,9,7,12,8,11,11,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,1,1,1,0,-1,0,1,1,1,1,1,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,5,3,3,2,4,3,4,3,5,4,4,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,2,1,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,3,3,3,4,3,4,3,4,3,5,4,5,5,14,8,8,5,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,4,8,5,6,5,7,5,8,8,8,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,-1,0,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,4,5,4,6,6,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,8,5,5,3,4,3,4,3,7,4,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,7,4,5,4,5,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,8,4,4,3,4,3,5,5,9,6,7,6,10,6,8,8,14,7,7,5,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,9,5,6,5,8,6,9,10,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,7,4,4,4,6,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,3,2,1,1,1,1,2,2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 +2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,4,4,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,4,6,4,5,5,8,5,5,4,8,6,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,7,5,7,7,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-5,-11 +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,4,5,5,8,5,5,4,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,7,7,2,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,9,5,6,4,6,4,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,5,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,4,4,7,5,6,5,8,6,9,9,25,13,13,9,14,9,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,18,10,10,7,10,6,8,7,13,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,20,10,10,7,9,6,7,6,10,6,6,5,9,6,7,7,12,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,5,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,5,5,10,6,6,5,8,5,7,7,13,8,10,8,14,10,14,14,21,11,11,8,11,6,6,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,5,5,8,6,8,8,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,8,5,5,4,7,5,6,6,14,8,8,6,10,6,7,6,11,6,7,6,9,6,7,7,12,7,7,5,7,5,7,7,12,7,8,7,12,9,13,13,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,1,1,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,6,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,6,4,5,5,7,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,2,2,5,3,4,4,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,8,8,12,6,6,4,7,4,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,8,5,6,5,7,5,8,8,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-11 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,11,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,5,4,6,6,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-5,-3,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,5,3,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,11,6,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,5,8,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,4,4,6,4,6,5,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,10,6,7,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,5,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,5,6,6,4,4,3,4,3,3,2,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,9,9,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,1,0,0,0,1,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,7,11,6,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,3,2,3,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,1,1,1,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,9,9,22,12,12,9,13,8,10,8,14,8,8,6,9,6,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,15,8,8,6,10,6,7,7,12,7,7,6,9,6,7,6,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,16,9,9,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,11,8,12,12,18,10,10,7,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,13,7,6,4,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,7,7,12,7,9,7,12,8,10,10,0,0,0,0,-1,0,0,0,-1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,6,6,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,1,2,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,5,4,6,4,4,4,6,5,7,7,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,10,6,6,4,6,4,4,4,8,5,5,3,5,3,4,4,9,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,10,6,6,4,7,4,4,4,8,5,5,4,6,4,5,4,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,6,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,5,3,4,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,8,4,4,3,4,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,4,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,23,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,9,6,8,8,13,7,8,6,8,5,6,5,7,4,4,3,4,3,4,4,10,5,5,4,6,4,4,4,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,10,5,5,4,6,4,6,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,4,6,4,6,6,12,7,7,5,8,5,7,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,13,7,7,5,6,4,5,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,7,4,4,4,6,4,6,6,11,6,7,5,8,5,6,6,12,7,7,6,10,7,9,9,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-7,-4,-6,-6,-14 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,4,3,4,2,3,2,3,2,3,2,3,2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,8,5,5,4,7,5,6,6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,2,2,2,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,8,5,6,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,8,8,13,7,8,6,8,5,6,5,10,6,6,5,7,5,7,7,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,13,9,13,7,8,7,13,7,8,6,10,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-25,-12,-13,-8,-13,-7,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-22,-11,-12,-8,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,2,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,16,8,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,6,7,6,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,13,19,19,47,24,24,16,24,14,16,13,23,12,13,10,17,11,15,15,29,15,15,10,15,9,12,11,19,11,12,10,16,11,15,15,30,16,16,11,15,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,26,13,13,9,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,7,11,8,11,10,19,11,13,10,17,12,17,18,29,15,15,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,13,9,14,9,11,10,17,10,12,10,16,11,15,15,28,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,11,8,11,12,23,12,11,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,10,15,15,28,14,14,10,14,8,10,9,15,9,10,8,14,9,13,12,22,11,11,8,12,8,10,9,17,10,12,10,18,12,17,17,40,21,21,15,22,13,15,13,22,12,13,9,14,9,13,12,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,21,11,11,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,6,9,6,8,7,12,7,9,8,14,10,14,13,25,13,14,10,14,8,9,7,12,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,27,14,15,11,16,10,12,10,18,10,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,10,9,15,10,15,15,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,1,1,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-24 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,10,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,6,5,10,7,9,9,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-7,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,5,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,8,6,8,7,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,10,7,10,10,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,5,5,8,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 +0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7 +0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-5,-4,-7,-4,-5,-4,-8,-5,-9,-9,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,1,1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,3,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,9,5,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,7,7,11,7,8,6,10,7,10,10,25,13,13,9,14,8,9,8,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,5,10,6,6,5,9,6,9,10,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,22,12,12,8,11,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,6,4,5,4,8,5,6,5,8,5,7,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,4,7,5,8,8,13,7,8,6,8,5,5,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,5,8,6,8,8,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11 +1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,5,4,5,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,4,3,3,3,7,4,4,4,7,5,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,5,8,5,5,4,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,1,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,7,7,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-9,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,1,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,29,15,15,10,15,9,10,8,14,8,9,7,10,7,10,9,17,9,9,6,9,6,7,6,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,5,8,5,6,5,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,10,7,9,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,6,4,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,6,11,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,14,7,7,5,7,4,5,4,6,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,11,10,21,11,11,8,11,7,8,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,7,5,6,5,7,5,7,7,17,9,9,7,9,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,3,2,2,3,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,5,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6 +1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4 +0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-3,-11,-5,-6,-4,-6,-3,-4,-3,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,3,2,2,1,0,0,0,0,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,9,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,13,7,7,5,6,4,5,4,8,5,5,4,5,4,5,5,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,6,4,6,7,13,7,8,6,8,5,6,5,7,4,4,3,5,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,5,7,7,17,9,8,6,8,5,5,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,6,4,4,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,4,6,4,6,6,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-8 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,4,2,3,2,3,2,3,2,3,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,5,4,4,4,6,4,6,6,14,7,7,5,8,5,5,4,8,4,4,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,4,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,4,5,9,5,6,4,5,4,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,11,6,5,4,5,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,1,1,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,2,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,1,1,1,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,3,2,2,1,1,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,4,5,5,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,4,5,4,5,5,7,4,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,6,4,4,3,3,3,4,4,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,3,6,4,4,3,5,4,5,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,3,2,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,3,5,3,4,3,5,3,4,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 +-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-5,-10,-6,-9,-9,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,3,4,3,5,6,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,11,9,15,10,15,15,35,18,18,13,19,11,13,11,18,10,11,8,12,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,22,11,11,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,8,6,9,5,6,6,10,6,6,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,12,6,6,4,6,4,6,5,9,5,6,4,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,11,27,14,14,10,16,9,11,9,16,9,9,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,4,5,4,12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,6,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,5,4,6,5,7,7,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,12,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,4,6,4,5,5,9,5,6,5,8,6,8,9,20,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,4,4,5,4,5,5,13,7,6,5,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,0,0,0,0,0,1,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,10,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,10,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,8,8,6,8,5,5,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,9,6,9,9,12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,5,5,6,4,4,4,6,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,4,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,5,3,3,3,4,3,3,3,8,5,5,3,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,4,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,5,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,9,5,5,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,5,6,5,7,5,8,8,19,10,10,7,10,6,8,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,6,5,11,6,6,4,7,4,5,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,8,8,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,3,2,2,2,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,4,4,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,17,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,2,1,1,1,5,3,3,3,5,3,4,3,5,3,4,3,5,4,6,6,15,8,9,6,9,5,6,5,8,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,12,9,13,13,32,17,17,11,16,10,12,10,17,9,10,7,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,11,6,7,5,7,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,22,12,12,8,11,7,8,7,11,7,8,6,10,6,8,8,10,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,3,3,3,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,8,4,4,3,6,4,4,4,8,5,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-3,-6,-3,-5,-5,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,6,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,13,7,7,5,8,5,5,5,7,4,5,4,6,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,5,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,7,6,12,7,8,7,12,9,13,13,29,15,16,11,16,9,10,8,16,9,9,7,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,6,6,10,6,7,6,10,7,11,11,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,9,5,6,6,10,7,9,9,16,8,8,6,9,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,8,4,4,3,5,4,5,5,9,5,6,5,8,6,9,9,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17 +-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,5,4,5,4,8,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,3,3,2,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,4,4,4,6,4,5,4,6,4,6,6,12,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,6,9,5,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,4,3,6,4,4,4,8,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,7,4,5,4,6,4,5,4,7,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-8,-5,-7,-7,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,11,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,7,5,8,8,25,13,13,9,13,7,8,6,10,6,6,5,7,5,6,6,11,6,7,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,10,7,9,9,18,10,10,8,12,8,11,11,21,12,15,13,23,16,23,23,53,27,26,18,26,15,17,14,24,13,14,11,17,11,14,14,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,28,14,14,10,15,9,11,10,19,10,11,8,13,9,12,11,21,11,12,9,15,9,12,11,19,11,14,12,21,14,20,20,35,18,18,12,16,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,9,9,18,9,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,9,16,11,17,17,32,17,17,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,20,11,11,8,12,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,10,10,18,10,12,10,17,11,16,15,44,22,22,15,23,13,16,13,22,12,12,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-7,-16,-8,-10,-8,-16,-11,-17,-17,-34 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,7,4,4,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,13,9,12,12,28,14,14,10,14,8,10,8,13,7,8,6,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,12,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,6,5,9,5,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,4,4,4,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,4,6,4,6,5,10,6,6,4,7,4,5,5,7,4,4,4,6,4,6,6,12,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3,-3,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,15,8,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,9,8,14,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,8,6,8,7,15,8,9,7,10,6,7,7,11,6,6,5,8,6,9,9,18,10,10,7,10,6,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,6,9,5,6,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,6,6,4,6,4,4,3,3,2,2,2,4,3,4,4,7,4,4,4,6,4,5,4,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,6,10,7,9,9,24,13,13,9,12,7,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,9,5,5,4,5,4,5,4,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,14,8,8,5,7,4,5,5,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,4,5,3,4,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,6,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,8,6,10,7,10,10,21,11,10,7,10,6,8,6,11,6,6,4,6,4,6,5,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,7,5,6,5,9,6,9,9,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,8,7,17,9,9,6,8,5,6,6,9,5,5,4,7,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,9,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,7,6,9,6,9,9,17,10,12,10,17,11,16,16,34,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,19,10,11,8,12,7,9,8,14,8,8,7,11,7,10,10,21,11,11,7,10,6,7,6,10,6,7,6,10,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,6,5,7,5,8,8,15,8,8,5,7,4,4,3,4,3,4,3,5,3,4,4,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,19,10,11,8,11,6,7,6,11,6,6,5,8,5,7,6,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,5,10,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,5,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,5,3,4,3,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,10,21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,7,5,6,5,10,6,6,4,6,4,6,5,7,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,3,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,5,3,3,2,3,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,7,16,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,8,6,9,6,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,5,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-5,-5,-12 +-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,1,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,7,7,10,6,7,6,11,8,12,12,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,4,3,3,3,4,3,3,3,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,7,4,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,6,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,8,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,10,8,13,9,14,14,25,13,14,10,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,5,4,6,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,20,10,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,8,13,9,13,13,24,13,13,9,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,5,8,5,7,7,13,7,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-10,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,2,3,3,5,3,3,3,5,4,5,5,3,2,2,2,4,3,4,4,6,3,3,3,4,3,5,5,8,5,5,5,8,5,7,7,12,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,26,15,18,15,27,18,26,26,46,24,24,16,23,14,17,15,26,14,15,11,17,11,14,14,26,14,14,10,16,10,13,11,20,11,13,11,18,12,17,16,28,14,14,10,15,9,12,10,18,10,11,9,14,9,12,12,23,12,13,10,15,9,12,11,21,12,14,11,19,13,19,19,32,16,16,11,17,10,12,10,17,9,10,8,12,8,11,11,22,11,11,8,11,7,9,8,13,7,8,7,11,7,10,10,24,12,12,9,13,8,9,7,12,7,7,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,11,7,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,6,6,13,7,8,6,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,7,13,8,10,9,16,11,16,16,37,19,19,13,19,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,10,6,6,5,9,5,6,4,6,5,7,7,10,6,6,4,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,4,6,3,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-13,-6,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-10,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-10,-13,-10,-19,-13,-20,-20,-42 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,4,7,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 +-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,9,5,6,5,9,5,6,5,9,6,7,7,14,8,8,7,10,6,8,8,15,9,10,9,15,10,15,15,26,14,14,9,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,7,7,11,7,8,6,11,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,14,7,7,5,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,6,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,6,4,4,4,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,10,6,8,7,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,12,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-6,-3,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,9,5,5,4,6,5,8,8,16,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,19,10,11,8,12,8,10,10,18,9,9,7,10,7,9,8,12,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,10,8,13,9,12,12,22,12,12,9,13,8,9,7,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,10,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,11,6,7,5,8,5,6,5,9,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,7,5,8,5,5,4,7,4,4,3,4,3,5,5,6,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,20,10,10,7,11,6,7,6,12,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,7,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-3,-2,-3,-2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-5,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,4,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,6,6,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,14,8,10,9,14,10,14,15,26,13,13,9,14,8,10,8,15,8,9,7,10,7,9,9,14,8,8,6,8,5,6,6,10,6,6,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,13,7,8,6,8,5,6,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,7,4,5,4,7,5,8,8,15,8,8,6,7,5,6,5,10,5,5,4,6,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,5,3,4,3,4,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,5,10,6,6,5,7,5,6,5,9,5,6,6,9,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,6,6,5,9,6,9,9,15,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,12,7,7,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,7,9,6,6,6,9,6,6,5,7,5,6,6,9,5,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,7,5,6,5,9,5,5,4,5,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,6,5,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 +-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,1,1,2,3,2,3,3,5,4,6,6,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,21,11,10,7,10,6,7,6,10,6,6,5,8,5,6,6,13,7,8,6,10,6,8,7,13,7,8,6,10,7,11,11,19,10,11,8,13,8,11,10,17,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,47,24,24,16,24,14,17,15,26,14,15,11,18,12,16,15,24,12,12,9,13,8,11,10,17,10,11,9,15,11,16,16,29,15,15,11,17,10,12,10,18,10,11,9,14,10,14,14,22,12,12,9,15,9,12,11,20,11,12,10,17,12,17,17,31,16,17,12,17,10,11,10,17,9,10,8,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,12,23,12,11,8,11,7,9,8,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,9,16,8,8,6,9,6,8,8,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,5,8,5,6,5,8,5,5,5,8,6,8,9,16,9,10,8,12,8,10,9,17,10,12,10,17,11,16,16,33,17,17,12,17,10,12,10,18,10,11,8,12,7,9,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,14,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,13,7,7,6,8,5,7,6,11,7,8,6,10,7,9,9,17,9,10,8,11,7,10,9,17,10,12,10,17,12,18,18,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,9,6,9,6,8,7,11,7,8,6,10,7,11,11,20,10,10,7,12,7,8,7,13,7,8,6,9,7,10,9,15,8,8,6,11,7,9,8,14,8,8,7,11,8,12,12,21,11,12,8,11,7,8,7,11,6,7,6,8,6,8,7,12,6,6,5,8,5,6,6,9,6,7,6,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,9,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,6,4,4,4,8,5,5,4,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-13,-27 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,7,5,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,15,10,15,9,10,8,14,8,9,7,10,7,9,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,10,10,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-5,-4,-10,-5,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-27,-13,-12,-8,-12,-6,-8,-6,-12,-5,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,7,6,10,6,8,7,11,8,11,11,20,11,11,8,12,8,10,9,17,9,10,8,14,9,13,13,25,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,49,25,26,18,26,15,17,14,24,13,15,11,18,11,15,14,26,13,13,9,14,9,11,10,17,10,11,9,16,11,17,17,30,16,16,11,17,10,11,10,18,10,11,9,14,10,14,13,22,12,13,10,16,10,12,11,20,11,13,10,17,12,17,17,32,17,17,12,17,10,11,10,16,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,7,10,6,7,7,13,8,9,7,12,8,12,13,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,7,4,5,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,5,5,8,6,8,9,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-14,-7,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 +-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-4,-3,-6,-3,-5,-5,-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,6,5,8,5,7,7,14,8,8,6,8,6,7,6,12,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,10,12,10,18,12,18,18,33,17,17,12,18,10,12,10,16,9,10,8,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,10,9,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,8,12,7,8,7,11,6,7,6,8,6,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,11,11,22,11,11,8,11,6,8,6,11,6,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-13,-13,-26 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,4,3,6,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,17,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,49,25,25,17,26,15,18,14,24,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,17,10,12,10,17,11,16,16,31,16,16,11,17,10,12,10,18,10,12,9,15,10,14,13,23,12,13,10,15,9,12,11,20,11,12,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,7,13,9,12,12,22,12,12,8,13,7,8,7,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,10,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,8,6,8,5,5,5,8,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-11,-7,-11,-10,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-40 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,16,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,50,25,25,17,26,15,18,14,25,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,18,10,12,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,12,9,15,10,13,13,23,12,13,10,15,9,12,11,20,11,13,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,22,12,12,8,13,8,9,8,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,7,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-13,-10,-19,-13,-20,-20,-40 +-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,7,6,10,7,11,11,22,12,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,17,12,19,12,16,15,28,16,19,15,26,18,27,27,53,27,27,19,29,17,20,17,31,17,18,13,20,13,17,17,32,17,17,12,18,11,14,13,25,14,16,13,23,16,24,24,46,24,25,17,26,15,19,17,31,17,20,16,28,19,28,27,53,28,30,22,36,22,30,28,52,30,36,30,53,36,53,53,106,54,54,36,54,30,36,30,53,28,30,22,36,22,30,28,53,27,28,20,32,19,24,21,38,21,24,19,33,21,30,30,58,29,29,20,29,17,21,18,31,17,18,14,23,15,21,21,40,21,21,15,23,14,18,16,30,17,19,16,28,18,26,26,51,26,27,19,28,16,20,17,30,16,17,13,22,14,19,17,32,17,18,13,21,13,16,14,26,15,18,15,26,17,25,25,49,25,25,18,27,16,21,19,34,19,21,16,26,17,24,24,46,24,26,19,30,18,24,23,43,24,29,24,43,29,44,44,86,43,43,29,42,24,28,23,41,22,23,17,28,17,23,21,40,21,21,15,23,14,17,14,25,14,16,13,22,15,21,21,40,21,21,15,24,14,18,16,28,16,18,14,23,15,20,20,38,20,21,16,25,15,20,19,35,20,23,19,33,22,33,33,64,33,33,23,34,19,23,20,35,19,20,16,26,16,22,21,40,21,22,16,25,15,20,18,34,19,23,19,32,21,31,31,61,32,33,23,35,21,26,23,41,22,25,20,34,22,31,30,58,31,33,24,38,23,30,28,52,29,34,28,50,34,50,50,99,50,51,34,51,29,35,29,51,27,28,21,33,20,26,24,46,24,24,17,27,16,20,17,30,17,19,16,28,18,26,26,50,25,25,17,26,15,19,16,29,15,16,12,20,13,17,17,32,17,17,12,19,12,15,14,27,15,17,14,24,16,22,22,42,22,22,15,22,13,15,12,21,11,12,10,16,10,14,13,23,12,13,10,16,10,13,12,22,13,15,13,22,14,20,20,39,20,20,14,21,13,16,14,25,14,16,12,20,13,19,19,36,19,21,16,25,16,21,20,38,21,25,21,37,25,38,38,74,38,38,26,38,22,26,22,39,21,22,17,27,17,22,20,37,19,20,15,24,15,19,17,30,17,20,16,27,18,26,26,50,26,26,18,27,16,19,16,27,15,17,13,22,14,19,18,34,18,18,13,21,13,16,15,27,15,18,15,26,18,26,26,50,25,25,17,25,14,16,14,24,13,14,11,19,12,16,15,28,15,16,11,17,10,13,12,23,13,16,14,24,16,23,23,46,24,24,17,25,15,18,16,28,16,18,15,25,16,23,22,43,23,25,19,30,18,24,22,42,23,27,22,39,26,38,38,76,38,38,26,38,22,26,23,41,22,24,18,29,18,24,23,44,23,24,17,25,15,18,16,29,16,17,14,23,15,22,21,41,21,22,15,22,13,15,13,23,13,14,11,19,13,18,17,32,17,18,13,20,12,16,15,27,15,18,15,27,19,28,28,56,29,29,20,29,17,20,17,30,16,17,12,19,12,15,14,25,13,13,10,15,10,13,12,22,12,13,11,18,12,17,17,32,16,16,11,16,9,11,9,16,9,10,8,13,9,12,12,22,12,12,9,14,9,12,11,19,11,13,11,18,12,17,16,30,16,16,11,15,9,11,9,15,8,8,6,8,5,5,4,6,3,2,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-8,-16,-8,-10,-9,-17,-11,-17,-17,-34,-17,-18,-12,-19,-10,-13,-11,-21,-11,-13,-10,-19,-12,-18,-18,-38,-20,-22,-16,-27,-16,-23,-21,-42,-23,-27,-23,-42,-27,-40,-40,-81 +-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,13,9,13,8,10,9,16,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,27,18,27,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,11,9,16,9,10,8,12,8,11,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,11,7,8,8,13,8,10,8,14,9,13,13,25,13,13,10,14,9,11,10,17,10,11,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,21,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,32,17,17,12,18,10,12,10,18,10,11,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,17,12,18,11,13,12,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,18,15,26,14,14,11,17,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,8,11,11,20,11,13,11,19,13,20,20,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,14,8,9,7,12,8,10,10,17,9,9,7,11,7,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,6,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,8,8,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-20,-13,-20,-20,-40 +-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,10,7,10,6,8,7,14,8,9,7,12,8,12,12,23,12,12,9,13,8,10,9,17,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,26,18,26,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,10,9,16,9,10,8,12,8,12,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,13,27,14,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,13,8,10,8,14,9,13,13,25,13,14,10,14,9,11,10,17,9,10,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,8,11,11,20,11,12,9,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,12,10,16,11,17,17,32,16,16,11,18,10,12,10,19,11,12,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,17,15,26,14,14,11,18,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,9,12,11,20,12,14,11,20,14,20,20,38,20,20,13,19,11,14,11,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,13,7,8,7,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,7,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,19,13,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,11,7,8,7,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,7,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,0,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-21,-11,-14,-11,-20,-13,-20,-20,-41 +-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,7,4,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,7,5,7,4,6,5,10,6,7,6,9,6,9,9,16,9,9,6,9,6,7,6,12,7,7,6,10,7,10,10,18,10,11,8,12,8,11,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,11,8,13,8,11,10,19,10,10,8,11,7,8,8,13,7,8,7,12,8,11,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,6,5,9,6,7,6,10,6,9,9,17,9,9,6,9,6,7,7,12,6,7,6,10,6,9,8,15,8,9,7,10,6,8,8,14,8,10,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,7,7,14,8,8,6,9,5,6,6,9,5,6,5,8,6,7,7,13,7,8,6,8,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,14,8,11,10,18,10,12,10,17,12,17,18,34,17,17,12,18,10,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,7,6,10,6,7,6,10,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,8,8,15,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,8,6,10,6,9,8,16,8,8,6,10,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-27 +-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,4,4,6,5,7,7,10,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,16,8,8,6,9,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,8,14,8,9,8,13,9,13,13,24,12,12,9,13,8,10,9,17,10,11,9,15,10,14,14,27,14,15,11,18,12,16,15,26,15,18,15,26,18,26,26,52,26,26,18,27,16,19,16,27,15,16,12,20,13,17,15,28,15,15,11,16,10,13,11,18,10,12,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,9,7,12,8,12,11,20,11,12,9,14,8,10,9,15,9,10,8,14,9,13,13,27,14,15,11,16,9,11,9,16,9,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,10,9,17,10,11,9,14,9,13,12,22,12,13,9,14,9,12,11,20,12,14,12,22,15,22,21,42,22,22,15,22,13,15,12,20,11,11,9,14,9,12,11,21,11,11,8,11,7,8,7,14,8,9,7,12,8,10,10,21,11,12,8,12,7,8,7,13,8,9,7,12,8,11,10,20,11,11,8,12,8,10,9,18,10,11,9,16,11,16,16,33,17,17,12,17,10,13,11,19,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,16,9,11,9,16,11,16,16,31,16,17,12,17,10,13,11,19,11,13,11,18,12,16,15,31,17,18,13,20,12,16,15,27,15,17,14,25,17,25,26,50,25,25,17,26,15,18,15,26,14,15,11,18,11,14,13,25,13,13,9,14,9,11,10,15,9,11,9,15,10,14,14,24,13,13,9,14,9,11,9,16,9,9,7,11,7,10,9,15,8,9,7,11,7,8,8,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,19,11,13,11,20,14,20,19,38,20,20,14,20,12,14,11,20,11,11,9,14,9,11,11,21,11,12,8,12,8,10,9,17,9,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,8,9,7,12,8,10,9,17,9,10,7,10,6,8,8,15,9,10,8,14,10,14,13,26,14,14,9,13,8,10,8,13,7,8,6,10,7,9,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,11,22,12,13,10,15,9,12,12,21,12,13,11,19,13,19,20,38,19,19,13,20,12,14,12,20,11,12,9,14,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,12,12,21,11,11,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,15,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,15,8,8,6,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,4,6,4,6,6,9,5,6,5,8,6,8,8,16,8,7,5,6,4,5,4,7,4,5,4,5,3,3,3,3,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-20,-10,-11,-7,-12,-7,-10,-9,-21,-11,-13,-11,-20,-13,-20,-20,-41 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,11,9,15,8,9,7,11,7,10,9,16,9,9,6,9,6,7,6,10,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,9,6,6,5,8,6,8,8,16,8,9,6,9,6,7,5,9,5,5,4,7,4,5,5,10,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,24,12,12,9,13,8,9,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,5,4,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,8,15,10,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,9,5,5,4,7,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,11,6,7,5,8,5,7,7,11,7,8,7,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,12,22,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-22 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,18,11,13,11,17,9,10,8,12,8,12,11,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,8,8,14,8,8,6,10,6,7,6,11,7,8,6,10,7,9,9,19,10,10,7,11,7,8,6,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,9,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,14,8,8,6,7,4,5,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,7,5,8,7,13,7,8,6,9,6,7,7,12,7,8,7,10,7,10,10,22,12,12,8,12,7,8,7,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,21,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,21,11,12,9,13,8,10,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,11,7,10,10,16,9,9,7,9,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,9,13,13,26,14,14,10,14,8,10,8,13,7,8,6,10,6,8,7,15,8,8,6,8,5,6,6,12,7,8,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,6,11,7,8,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,9,13,8,10,9,14,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,10,7,10,10,20,10,10,7,10,6,8,6,10,6,6,5,7,5,6,6,8,5,6,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-8,-7,-12,-8,-12,-13,-27 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,15,9,10,8,15,10,15,15,30,15,15,10,15,9,10,9,14,8,8,6,10,7,10,9,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,4,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,6,9,6,7,6,12,7,7,5,7,4,5,5,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,9,5,5,5,8,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,3,5,3,4,3,5,4,6,6,8,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,16,9,10,7,11,7,10,9,16,9,10,8,13,9,13,13,25,13,14,10,14,9,11,9,16,9,9,7,12,8,10,9,17,9,10,7,11,7,8,8,14,8,9,8,14,10,14,14,25,13,14,10,15,9,11,9,16,9,11,9,15,10,14,14,26,14,15,11,18,11,15,14,26,15,18,15,25,17,25,26,53,27,27,18,27,15,17,14,25,13,14,11,18,12,16,15,27,14,15,11,16,10,12,10,18,10,12,10,17,11,16,16,27,14,14,9,13,8,9,8,14,8,9,7,11,8,11,11,20,10,10,7,11,7,9,9,16,9,10,9,15,10,14,13,27,14,13,9,13,8,9,8,15,8,9,7,11,7,9,8,17,9,9,7,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,15,9,10,9,16,9,10,8,13,8,11,11,21,11,12,9,14,9,11,11,20,12,14,12,21,14,21,21,40,20,20,13,19,11,14,12,20,11,12,9,13,8,11,10,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,15,15,32,17,17,12,19,11,14,12,20,11,12,9,13,8,11,11,21,11,12,9,14,9,11,9,16,9,11,10,17,12,17,17,32,17,17,12,17,10,12,10,18,10,12,9,15,11,16,16,32,17,18,13,20,12,16,14,26,15,18,16,28,19,27,27,53,27,27,19,28,16,18,15,26,14,14,10,16,10,13,12,25,13,14,10,16,10,12,10,18,10,12,10,17,11,15,15,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,14,7,7,5,8,5,7,7,12,7,8,7,13,9,12,12,22,11,11,7,10,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,15,9,12,12,22,13,15,13,22,15,21,20,39,20,19,13,19,11,14,12,20,11,12,9,13,8,11,11,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,9,15,10,14,14,27,14,14,10,15,9,10,8,13,7,8,6,10,7,10,10,15,8,9,7,11,7,9,8,14,8,9,8,13,9,12,12,21,11,12,8,12,7,9,8,15,8,9,7,11,8,11,10,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,21,14,21,12,14,12,20,11,11,9,14,9,13,12,23,12,12,8,12,7,9,8,14,8,9,8,13,8,11,11,23,12,12,8,12,7,9,8,13,7,8,6,9,6,9,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,30,16,16,11,15,9,10,8,14,8,8,7,11,7,9,8,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,28,14,14,10,14,8,9,8,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,10,9,15,10,15,14,28,14,14,10,15,9,10,8,14,8,8,6,9,6,7,7,13,7,8,6,9,5,6,6,10,6,7,6,9,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20 +-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,3,6,4,4,3,5,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,15,15,30,15,15,11,15,9,10,9,15,8,8,7,10,7,10,9,16,8,8,6,10,6,7,6,12,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,5,11,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,12,7,8,6,9,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,8,5,6,5,6,4,6,6,11,6,6,4,6,4,4,4,7,5,6,4,7,5,6,6,10,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,19,10,10,7,10,6,7,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,17,9,10,8,12,7,9,8,14,8,10,9,16,11,16,15,29,15,15,11,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,7,5,6,5,8,5,6,4,7,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,6,5,7,4,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,8,6,9,6,7,7,13,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,6,5,8,6,8,8,16,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,11,23,12,12,8,12,7,9,7,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,8,5,6,6,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21 +-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,6,4,5,5,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,6,4,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,4,3,4,5,5,3,3,3,4,3,3,3,7,4,4,3,5,4,5,6,10,6,6,5,8,5,7,7,11,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,17,17,36,18,18,12,18,10,12,10,18,10,11,8,12,8,11,11,19,10,11,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,10,7,11,7,9,8,16,9,9,7,10,6,7,6,12,7,7,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,6,9,5,6,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,13,7,8,6,9,5,6,5,11,6,7,6,10,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,12,7,7,6,10,7,10,9,18,9,9,7,10,6,6,5,10,6,6,5,9,6,8,8,13,7,8,6,8,5,6,6,11,6,7,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,6,8,8,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,27,14,14,10,14,8,10,9,14,8,8,6,9,6,8,8,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,5,4,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,5,11,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,6,6,10,6,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,7,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,4,2,2,3,6,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,5,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,9,15,10,14,15,30,16,16,11,16,9,11,9,15,9,10,7,11,7,10,9,17,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,17,9,8,6,8,5,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,7,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,21,11,12,8,12,7,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,12,7,7,5,6,4,6,5,10,6,6,6,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,14,8,10,9,16,11,16,15,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,7,5,6,5,6,4,6,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,12,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,7,4,5,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,12,22,12,12,8,11,7,9,8,12,7,8,6,9,6,8,8,14,8,8,6,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,9,17,9,9,6,9,5,6,6,9,5,6,5,7,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,9,6,6,5,8,6,7,7,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,17,9,10,7,10,6,8,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,8,9,7,10,6,8,8,13,8,10,8,15,10,15,14,27,14,14,10,14,8,10,9,15,8,9,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18 +-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-2,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,6,6,5,3,3,3,4,3,4,3,5,3,4,4,6,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,15,15,28,15,15,10,14,8,10,8,13,7,8,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,10,8,14,10,15,15,23,12,12,9,13,8,10,9,15,9,10,8,14,9,13,13,24,13,14,10,16,10,14,13,23,13,16,14,25,17,26,26,54,28,28,20,30,17,20,17,31,17,18,14,22,14,19,17,32,17,17,12,18,11,14,13,24,13,15,12,19,12,17,16,29,15,15,10,14,8,9,8,14,8,9,7,12,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,16,11,15,15,21,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,10,18,10,11,9,16,10,14,14,26,14,14,9,13,8,9,8,13,7,8,6,10,7,10,10,18,10,10,8,13,9,12,12,22,13,15,12,20,14,20,20,38,19,19,13,19,11,13,11,20,11,12,9,14,9,12,12,23,12,13,10,15,9,11,10,17,10,11,9,14,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,9,6,9,9,16,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,34,17,17,12,17,10,12,10,16,9,10,8,12,8,11,10,19,10,11,8,13,8,10,10,18,10,12,10,18,12,17,17,30,16,16,12,18,11,13,11,19,11,12,10,16,11,15,15,29,16,17,13,20,12,16,15,28,16,19,15,26,18,26,27,51,26,26,18,27,15,17,14,25,13,14,11,18,11,15,14,26,14,14,10,14,8,10,9,17,10,11,9,15,10,14,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,9,16,9,9,7,11,7,8,7,12,7,8,7,11,8,11,11,24,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,12,6,6,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,12,8,12,7,9,9,16,9,10,8,13,9,13,12,23,12,12,9,14,9,12,11,21,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,22,12,13,9,14,9,12,11,21,11,11,8,13,8,10,8,14,8,10,8,13,9,12,12,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,9,17,9,9,7,11,7,9,9,17,9,10,8,14,10,14,14,24,12,12,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,20,11,11,8,13,8,10,9,15,8,9,7,11,7,10,10,19,11,12,9,14,9,11,10,18,11,13,11,19,13,20,20,38,20,20,14,20,12,15,13,23,12,13,10,17,11,14,13,24,13,13,9,13,8,9,8,13,7,8,7,12,8,11,11,22,12,12,8,11,7,9,8,13,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,17,11,15,15,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,8,7,12,7,8,6,9,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,7,10,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36 +-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,7,5,8,8,14,8,8,5,8,5,6,5,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,15,15,11,16,9,11,9,16,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,15,8,8,6,7,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,7,5,7,8,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,8,14,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,6,9,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18 +-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,14,14,28,15,15,11,16,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,16,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,5,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,6,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,6,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,21,11,10,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,7,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,6,6,5,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,4,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,6,9,5,6,6,10,7,9,8,16,8,8,5,8,5,6,5,9,5,5,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-9,-19 +0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,6,4,4,4,6,4,6,5,9,5,6,5,7,4,6,5,9,6,6,6,9,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,6,5,9,5,6,5,8,5,7,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,5,5,6,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,8,4,4,4,6,4,5,5,8,4,5,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,5,4,4,3,5,4,4,3,5,4,5,5,7,4,4,3,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,4,4,4,7,5,6,4,7,5,7,8,13,7,7,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,5,6,5,8,6,9,9,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,14,8,8,6,10,6,8,7,14,8,9,8,14,10,15,15,30,15,15,11,16,10,12,10,18,10,10,7,11,7,10,10,18,10,10,7,10,6,8,7,14,8,9,7,12,8,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,9,14,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,8,6,11,6,7,5,8,5,7,7,11,6,7,5,8,5,6,5,10,6,6,5,8,6,8,7,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,10,6,7,5,8,6,8,8,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,10,7,10,6,7,7,12,7,8,6,10,7,10,9,16,9,9,7,10,6,8,8,16,9,10,9,15,10,15,15,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,6,9,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,9,7,12,8,11,11,22,12,12,9,13,8,9,7,13,7,8,6,9,6,8,8,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,5,6,5,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,12,7,9,8,12,7,7,5,8,6,8,8,14,7,7,5,7,4,5,4,7,5,6,5,8,5,7,7,14,7,7,5,6,4,4,4,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,3,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,7,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,6,6,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,11,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,8,7,11,8,12,11,22,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,7,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,6,5,7,4,5,5,8,5,6,5,8,6,8,9,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,6,4,4,4,8,5,5,4,5,4,6,6,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,5,8,5,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,4,4,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,8,4,4,3,6,4,4,3,6,4,4,3,4,3,5,5,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,4,7,5,6,6,10,5,5,4,6,4,4,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,6,5,9,6,7,6,10,7,11,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,6,5,7,5,6,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,9,6,8,8,14,7,7,5,8,5,7,6,10,6,6,5,8,6,8,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,11,8,13,8,10,9,16,10,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,12,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,20,10,10,7,11,7,8,6,10,6,7,6,9,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,8,7,16,8,8,6,9,5,6,5,8,5,5,4,7,5,7,7,15,8,9,7,10,6,8,7,12,7,8,7,13,9,14,14,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,7,11,6,7,5,7,5,6,6,11,7,8,6,10,7,9,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,24,12,12,8,12,7,8,7,12,7,8,6,9,6,8,8,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,19,10,11,8,12,7,9,8,14,8,10,8,13,8,11,11,19,10,10,8,12,8,11,10,18,10,12,10,18,12,18,18,38,19,19,13,20,11,12,10,17,10,11,8,13,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,13,7,8,6,10,7,9,8,14,8,9,7,12,8,12,12,28,15,15,10,14,8,10,9,16,9,10,7,11,7,9,9,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,6,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,13,7,7,5,7,4,5,5,9,5,6,5,7,5,6,6,15,8,9,7,10,6,7,6,11,6,7,6,9,6,7,7,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,10,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,11,7,10,10,20,10,10,7,9,5,6,5,8,4,4,3,5,4,6,6,8,5,5,3,4,3,4,4,7,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-25 +-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,12,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,9,6,7,6,10,6,8,7,11,8,11,12,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,5,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,5,6,4,5,5,8,5,6,5,9,6,9,9,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,15,8,8,5,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,24,12,12,9,13,7,8,6,12,7,7,6,9,6,8,7,14,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,4,3,5,3,4,3,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,9,5,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,19,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,6,5,8,5,5,5,8,6,8,8,13,7,8,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,6,9,6,9,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,6,5,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,10,7,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,9,9,14,8,8,6,9,5,6,6,11,6,7,6,10,7,9,8,17,9,10,8,12,8,10,9,13,8,10,9,16,11,16,16,28,15,15,11,16,9,11,9,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,14,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,6,12,7,9,7,12,8,12,12,18,10,10,7,9,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,7,5,6,5,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,14,31,16,16,11,16,9,10,8,16,9,9,7,12,8,11,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,9,5,6,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,5,5,8,6,9,9,12,7,7,5,6,4,5,4,6,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,12,7,8,6,10,7,10,10,26,14,14,9,13,8,9,7,14,8,9,7,10,6,8,7,11,6,6,5,8,5,6,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,7,4,5,4,9,5,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,7,10,6,7,6,10,7,10,11,18,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,5,8,5,7,7,13,7,7,5,6,4,4,3,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,7,5,8,5,7,6,9,6,7,6,11,8,11,11,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,6,4,4,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,10,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,4,4,9,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,6,7,6,9,6,9,9,21,11,11,7,11,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,4,6,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,7,5,7,7,18,10,10,6,9,5,6,5,9,5,6,5,7,4,6,5,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,4,6,6,8,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,13,8,10,8,15,10,15,15,27,14,14,10,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,10,6,7,6,9,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,11,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,19,10,10,7,10,6,7,6,10,6,7,5,9,6,8,7,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,7,13,9,12,12,30,15,15,10,15,9,10,8,15,8,8,6,10,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,5,8,5,6,5,9,5,6,4,6,4,4,4,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,26,14,14,9,13,7,8,7,12,7,8,6,9,6,8,7,10,5,5,4,6,4,5,4,8,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,8,9,7,10,6,8,7,13,8,9,7,12,8,12,12,29,15,15,10,14,8,10,8,15,8,8,6,10,7,9,9,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,6,9,6,7,6,10,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,9,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,5,4,5,6,12,6,6,4,5,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,9,6,9,8,15,9,11,9,16,11,17,17,28,14,14,10,14,8,10,9,17,9,10,8,12,8,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,14,26,14,14,10,14,9,11,10,18,10,11,8,13,9,12,12,22,12,13,10,15,10,14,14,26,15,18,15,27,19,28,28,51,26,25,17,25,14,16,13,23,12,13,9,14,9,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,15,30,16,16,11,17,10,12,10,17,9,10,8,13,8,11,10,19,10,11,8,13,8,11,10,19,11,12,10,18,12,18,19,27,14,15,10,15,9,11,9,15,8,9,7,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,8,12,7,9,8,15,8,9,7,12,9,13,13,24,13,13,10,16,10,12,11,21,12,14,12,20,14,20,20,29,15,15,11,17,10,12,10,17,9,9,7,11,7,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,10,11,8,12,7,8,7,13,7,8,6,10,7,10,10,18,10,10,8,13,8,10,10,18,10,11,9,14,10,14,14,35,18,18,12,17,10,12,11,19,10,11,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,10,9,15,10,15,15,28,15,15,11,16,10,12,11,19,10,11,8,13,9,12,12,23,13,14,10,16,10,13,12,22,13,15,13,22,15,23,23,56,28,28,19,29,17,20,17,30,16,17,13,20,13,17,16,31,16,16,12,18,11,13,12,21,11,12,10,16,10,14,14,27,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,24,13,14,10,15,9,12,11,21,11,12,10,16,11,15,15,20,11,12,9,13,8,10,8,14,8,8,7,11,7,8,8,14,8,9,7,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,12,7,7,6,10,7,11,11,20,11,12,9,15,9,12,11,20,11,12,10,17,11,16,16,49,25,25,17,25,14,16,13,22,12,12,9,14,9,11,10,18,10,10,7,11,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,10,6,6,5,8,5,5,4,6,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,8,6,8,9,25,13,13,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,9,7,12,8,10,10,18,11,13,11,18,13,19,19,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,13,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,8,6,8,5,7,6,10,6,8,7,11,8,11,10,22,12,12,9,13,8,9,8,13,7,7,5,6,4,5,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,2,2,2,2,4,3,4,3,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-7,-12,-7,-11,-10,-21,-11,-13,-11,-21,-13,-20,-20,-42 +0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,14,8,10,8,14,10,15,15,26,14,13,9,13,8,9,7,12,7,7,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,7,4,4,4,5,4,6,5,10,6,6,4,7,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,7,6,12,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,11,6,7,6,8,6,8,8,11,6,6,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,6,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,17,9,10,7,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,9,6,8,8,14,8,10,8,15,10,15,15,26,14,14,9,14,8,9,8,12,7,8,6,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,8,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,7,7,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,10,5,5,4,7,5,6,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,5,4,6,5,10,6,6,4,6,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,6,8,5,6,6,12,7,8,7,11,8,12,12,29,15,15,10,16,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,12,7,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,10,6,7,6,8,6,8,8,11,6,6,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,24,12,12,9,13,7,8,7,12,7,7,5,8,5,7,6,10,6,6,5,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,5,4,6,4,6,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,3,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 +0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,6,9,5,5,4,7,5,7,7,12,7,7,5,6,4,5,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,12,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,15,9,11,9,16,11,16,15,26,14,14,10,14,8,10,8,13,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,7,6,8,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,7,7,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,6,10,6,7,5,8,5,5,5,9,5,6,4,6,4,5,4,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,6,8,7,18,9,9,6,9,5,6,5,10,6,6,4,6,4,6,5,10,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,12,12,28,15,15,11,16,10,12,10,15,8,8,6,10,7,9,9,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,5,6,6,8,5,6,5,7,5,6,6,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,12,12,8,12,7,9,8,13,7,8,6,9,5,6,6,11,6,7,5,7,5,6,5,8,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-11,-23 +0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,7,9,6,7,6,9,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,4,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12 +0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,3,2,3,2,3,2,3,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,6,4,5,5,7,5,6,5,7,5,7,7,17,9,9,6,9,5,6,5,9,5,6,5,7,4,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-7,-15 +-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,17,9,10,7,10,6,7,6,9,5,6,4,7,4,6,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-6,-13 +-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,8,5,7,6,11,7,8,6,10,7,11,11,18,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,9,8,14,8,8,7,11,7,9,9,17,10,11,8,13,8,11,10,17,10,12,10,16,11,15,15,28,15,15,10,15,9,11,9,16,9,9,6,9,6,7,7,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,10,7,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,11,19,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,3,3,3,4,3,4,4,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,8,11,11,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,12,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,7,5,8,6,8,7,11,6,7,5,7,4,5,5,9,5,6,5,9,6,7,7,15,8,9,6,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,10,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,26,14,14,10,15,9,10,9,15,8,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,7,10,10,16,9,9,7,10,6,8,7,11,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,9,5,6,5,8,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,1,1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,6,5,7,5,6,6,9,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,11,6,6,5,7,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,9,16,8,8,6,9,5,6,6,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,3,4,4,9,5,5,3,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,4,4,8,5,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,3,5,3,2,2,4,3,4,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,6,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,18,10,10,7,10,6,6,6,9,5,6,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,9,5,6,4,5,3,4,3,4,3,4,3,3,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,2,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,4,3,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,12,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,7,7,5,7,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,5,3,3,2,4,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,4,5,5,6,4,4,4,6,4,5,5,9,5,6,4,6,5,7,7,14,7,7,5,8,5,7,7,11,6,7,6,9,6,8,7,12,7,7,6,10,7,9,8,14,8,9,7,12,8,12,12,18,9,9,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,13,7,7,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,13,7,7,5,6,4,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,7,4,5,5,8,6,8,8,22,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,11,7,8,7,13,7,7,5,8,5,6,5,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,3,2,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,9,5,5,3,4,3,3,2,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,4,3,3,3,5,4,5,5,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-1,-1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,6,11,6,7,5,8,5,7,7,12,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,4,7,5,7,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,5,5,3,4,3,3,2,2,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,9,6,8,7,11,6,7,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-5,-2,-2,-1,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,6,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,27,14,14,10,16,9,11,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,11,20,11,13,11,19,13,20,20,28,14,14,9,13,8,9,7,12,7,8,6,9,6,8,7,12,7,7,6,9,6,7,7,12,7,8,6,10,7,10,9,13,7,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,10,7,11,11,24,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,6,5,9,6,9,9,17,9,10,8,12,7,9,8,14,8,10,8,13,9,13,13,23,12,12,8,11,7,8,6,10,6,7,5,8,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,16,8,8,5,7,4,5,5,8,5,5,4,7,4,5,5,8,5,5,4,7,5,7,7,12,7,8,7,11,7,10,10,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,11,6,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,9,7,12,8,10,9,17,10,11,9,15,10,15,15,32,17,17,11,16,10,12,10,17,9,10,8,12,8,10,9,16,8,8,6,8,5,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,13,7,7,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,3,4,3,3,3,4,3,3,3,5,3,4,4,17,9,9,6,8,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,4,6,6,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,5,3,3,2,3,2,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-13,-27 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,20,10,10,7,10,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 +-3,-1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,6,12,7,8,7,11,8,12,12,15,8,8,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,5,7,7,13,7,8,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,5,3,4,4,6,3,3,2,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,21,11,10,7,11,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,6,4,5,5,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,5,6,11,6,5,4,5,3,4,4,6,4,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,10,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,4,5,5,9,5,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,15,8,7,5,8,5,6,5,9,5,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,5,6,4,4,3,5,4,5,5,9,5,6,5,8,6,8,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,14,8,8,6,10,6,7,5,8,5,5,4,6,4,5,5,11,6,5,4,5,4,5,4,7,4,4,3,4,3,5,5,10,5,5,3,4,3,4,3,6,4,5,4,6,4,6,6,10,6,7,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,3,8,5,5,4,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,4,3,4,3,4,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,8,5,6,5,7,5,6,6,22,12,12,8,12,7,9,8,13,7,8,6,8,5,7,6,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,12,7,7,5,6,4,5,5,9,5,5,4,5,4,5,5,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,14,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14 +-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,4,4,5,3,4,3,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,4,14,8,8,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,6,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8 +-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,7,5,8,8,15,8,7,5,7,5,6,5,8,5,6,5,7,5,6,5,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,12,8,11,11,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,7,5,6,5,8,5,5,5,8,6,9,9,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,3,4,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,6,10,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,17,9,9,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,11,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,9,5,5,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,5,4,6,5,7,7,12,7,9,8,14,10,14,13,25,13,13,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,7,12,7,7,6,10,7,10,10,24,13,13,9,12,7,9,8,14,8,9,7,12,8,12,12,24,13,13,10,15,9,11,10,19,11,13,11,19,13,20,20,19,10,10,7,11,6,7,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,9,5,6,6,10,6,7,6,9,6,8,8,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,15,10,15,15,15,8,8,6,9,5,5,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,5,8,6,8,8,31,16,16,11,17,10,11,9,16,9,10,7,11,7,9,9,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,7,5,6,6,10,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,9,8,14,8,8,6,9,6,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,8,5,5,4,5,4,5,5,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,10,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,11,6,6,4,7,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,18,10,10,7,10,6,7,6,9,5,6,4,7,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,8,5,5,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,9,6,9,9,17,9,9,6,8,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,16,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,7,13,8,10,8,13,9,14,14,12,7,7,5,8,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,4,2,2,2,3,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,21,11,12,8,12,7,8,6,10,6,6,5,8,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,12,12,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,18,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +-2,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,8,7,12,8,12,12,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,12,11,23,12,13,10,15,9,12,11,20,11,13,11,20,13,19,19,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,4,3,6,4,4,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,6,8,8,16,9,9,6,8,5,5,5,8,5,6,5,8,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,8,13,8,10,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,7,5,7,7,13,7,7,5,8,5,5,4,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,6,4,4,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,32,16,16,11,16,9,10,8,15,8,8,6,10,6,8,7,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,21,11,11,8,12,7,9,8,11,6,6,5,8,5,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,4,4,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,8,8,14,8,9,8,14,9,13,13,11,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,5,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,4,3,4,4,21,11,11,8,11,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,15,8,8,6,8,5,6,5,8,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-10 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,14,9,12,11,21,12,14,11,20,14,20,19,16,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,13,8,10,9,14,10,14,14,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,8,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,13,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,7,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,6,4,4,4,8,5,5,3,5,3,4,3,4,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,1,0,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,21,12,12,9,14,9,12,11,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,14,8,10,9,14,10,14,14,14,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,13,9,12,13,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,4,4,3,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,5,4,7,5,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,4,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,20,11,11,7,10,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,7,6,10,7,10,9,17,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,20,11,11,8,13,9,12,11,21,12,15,12,21,15,22,22,42,21,21,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,21,21,40,21,22,15,23,14,18,16,28,15,17,13,22,14,20,19,37,20,21,16,25,16,22,21,39,22,27,22,39,26,38,37,28,14,14,10,15,9,10,8,14,8,8,6,10,6,7,6,11,6,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,5,4,7,5,8,8,14,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,28,15,15,10,14,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,8,7,11,8,12,12,22,12,13,10,17,11,14,14,26,15,18,15,27,18,27,27,27,14,14,10,15,9,11,9,15,8,8,6,10,7,9,9,16,9,9,6,8,5,7,6,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,6,5,9,5,5,4,7,4,5,5,8,5,6,5,9,7,10,10,20,11,11,8,12,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,7,6,10,7,11,11,21,11,11,8,11,7,8,6,10,6,7,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,60,30,30,21,31,17,20,17,29,16,17,13,22,14,18,17,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,21,11,11,8,13,8,9,8,13,7,7,5,8,5,7,7,12,7,8,6,10,6,8,8,15,8,9,7,12,8,12,12,24,13,14,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,13,9,14,9,12,11,21,12,14,11,19,12,17,17,33,17,17,12,17,10,11,10,17,9,10,8,13,9,13,12,23,12,13,10,16,10,13,12,22,13,15,13,24,16,24,24,42,21,21,14,21,12,14,11,18,10,10,7,11,7,10,10,18,10,10,7,10,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,9,6,7,6,9,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,11,11,42,22,22,15,22,13,15,13,24,13,14,10,16,10,13,12,21,11,12,9,14,9,11,10,18,10,11,9,16,11,15,15,30,15,15,11,16,10,12,11,19,10,11,8,13,8,11,10,19,10,11,8,11,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,3,3,4,3,3,3,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-16,-33 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,4,4,5,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,12,14,12,20,14,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,6,9,6,8,7,14,8,10,8,14,10,14,14,14,8,8,6,8,5,6,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,13,9,12,13,22,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-16 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,5,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,10,6,6,5,6,4,6,6,11,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,12,8,10,10,20,12,14,11,19,13,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,10,6,6,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,5,9,6,8,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,17,9,9,6,9,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,13,22,12,12,8,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 +0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,6,7,7,14,8,10,8,13,9,13,13,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,10,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,20,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11 +0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,3,2,2,1,0,0,0,-1,12,6,6,5,7,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,3,3,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,5,8,5,7,7,10,6,6,4,6,4,6,6,12,7,9,7,12,8,12,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,12,12,8,12,7,9,8,15,9,10,8,12,8,11,11,20,11,11,8,12,8,11,10,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,14,7,7,5,6,4,4,3,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,13,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,4,6,6,30,16,16,11,16,9,11,9,14,8,8,6,10,7,9,9,18,9,9,6,9,5,6,5,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,5,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,9,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,6,12,7,8,7,13,9,13,13,21,11,10,7,10,6,7,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,5,7,7,21,11,12,8,12,7,8,7,11,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-8,-17 +0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,9,5,6,5,7,5,7,6,11,6,7,5,7,5,7,6,12,7,8,6,11,8,11,11,9,5,5,4,5,3,4,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,4,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,11,6,5,4,6,4,4,3,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9 +0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,8,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,5,9,6,7,6,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,9,13,13,11,6,6,4,6,4,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,9,9,10,6,6,4,6,4,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,6,4,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,4,4,5,4,6,6,10,6,6,5,6,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,14,7,7,5,7,4,5,5,7,4,4,3,6,4,6,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,6,5,11,6,7,5,6,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,2,1,0,1,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-3,-5,-5,-10 +1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,7,4,5,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,11,6,7,5,7,5,7,6,11,7,8,6,10,7,11,11,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,5,8,6,7,7,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,1,1,1,0,1,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,1,0,0,0,0,13,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,7,4,3,2,3,2,3,3,4,3,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,8,6,8,8,14,8,9,7,12,9,13,13,24,12,12,8,11,7,8,7,12,6,6,5,7,5,7,7,12,7,7,6,9,6,7,6,10,6,6,5,9,7,10,10,22,12,12,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,10,17,12,17,18,16,8,8,6,9,5,6,5,7,4,4,3,3,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,12,14,8,8,6,9,5,6,5,9,5,6,5,7,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,31,16,16,11,17,10,12,10,16,9,9,7,10,7,9,9,19,10,11,8,11,6,7,6,10,6,6,5,8,5,6,6,9,5,4,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,9,5,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,6,10,6,8,7,11,7,10,10,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,14,10,14,14,18,9,9,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,6,5,7,4,5,5,13,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,4,5,5,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,7,16,9,9,6,9,5,6,6,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,10,6,6,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,9,10,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,0,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,8,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,5,5,9,5,5,4,7,5,8,8,14,7,7,5,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,7,5,6,6,12,7,8,6,9,5,6,6,12,7,8,6,11,7,10,10,9,5,6,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,7,4,4,4,6,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8 +1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,0,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,10,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,4,3,7,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,7,6,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,6,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,4,2,2,2,1,1,2,2,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,5,7,4,5,4,7,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,11,8,11,11,9,5,6,4,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,6,4,4,3,5,3,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,8,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,2,2,1,1,2,2,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,3,3,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,4,4,4,7,5,6,6,5,3,4,3,4,3,3,3,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,7,4,4,3,5,3,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,14,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,7,8,5,5,4,6,4,6,6,11,6,7,6,10,7,9,9,16,9,10,7,11,7,10,10,18,10,11,9,16,11,16,16,27,14,14,10,14,8,8,7,11,6,6,5,8,5,7,7,12,7,7,5,8,5,5,5,8,5,6,5,9,6,9,9,20,11,11,8,12,8,10,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,10,18,10,12,11,19,13,19,19,16,9,9,6,8,5,5,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,6,4,6,6,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,3,2,3,2,3,3,10,6,6,4,5,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,5,9,6,7,6,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,5,5,15,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,8,8,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,38,20,20,14,20,12,14,12,20,11,12,9,14,9,11,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,4,7,7,9,5,6,4,6,4,5,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,7,10,10,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,7,11,7,8,8,14,8,10,8,14,10,14,14,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,14,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,14,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,20,10,10,7,10,6,8,7,13,7,8,6,10,6,8,8,14,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,4,5,3,3,3,4,3,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-6,-9,-9,-19 +0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,3,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,11,6,6,5,6,4,5,5,8,4,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,3,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,6,4,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,6,3,3,3,4,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,6,6,5,3,3,2,4,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,2,1,1,1,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,10,6,6,5,7,5,7,6,11,7,8,6,10,7,10,10,15,8,8,6,8,5,5,4,8,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,11,7,8,6,10,7,11,11,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,3,7,4,4,4,6,4,5,4,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,5,3,3,3,4,3,3,3,3,2,3,3,4,3,5,5,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-11 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,13,7,8,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,3,3,3,4,3,6,4,4,4,6,4,6,6,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,3,3,2,3,2,3,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,5,3,3,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,15,8,9,6,9,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,3,4,3,5,4,5,4,2,2,2,1,1,1,2,2,2,2,2,2,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,9,8,13,9,13,12,18,10,10,7,9,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,6,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,13,8,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,5,3,2,2,2,2,2,2,4,3,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,3,2,3,3,4,4,7,4,5,4,5,4,6,6,7,4,4,3,3,2,3,2,3,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,28,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,13,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,4,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,9,9,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,5,4,6,5,7,7,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,4,4,7,5,6,6,14,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,4,3,5,5,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,8,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,8,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,2,1,1,1,1,1,1,1,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,4,3,4,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,8,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,-3,-1,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,12,7,9,7,12,8,12,12,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,3,5,3,2,2,2,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,11,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,5,3,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,5,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,12,7,7,5,8,5,6,5,10,6,6,4,7,5,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,8,5,7,7,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,5,4,6,5,5,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,4,2,2,2,2,2,2,2,5,3,4,3,5,4,6,6,5,3,4,3,3,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15 +3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,5,3,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,4,3,3,2,2,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,9,9,19,10,11,8,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,18,10,11,8,12,8,11,11,20,12,14,12,21,15,22,22,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,9,10,9,15,10,13,13,25,13,14,10,16,10,13,13,24,14,16,13,23,15,21,21,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,4,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,11,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,5,5,8,6,9,9,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,47,24,23,15,22,13,15,12,21,12,13,10,15,10,13,12,21,11,11,8,11,6,7,6,11,6,7,6,11,8,11,10,19,10,10,8,12,7,9,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,7,10,10,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,16,8,8,6,8,5,6,5,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,4,19,10,11,8,11,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,14,9,12,12,23,12,13,9,13,8,9,8,14,8,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-9,-8,-15,-10,-16,-16,-33 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,6,8,6,7,7,12,7,8,7,12,8,11,11,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,1,1,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,5,5,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,7,6,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,8,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,6,8,7,12,7,8,7,12,8,11,11,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,1,1,2,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,5,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,7,8,6,8,5,6,6,11,6,6,4,7,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,5,5,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,4,6,6,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,17,9,9,6,9,5,6,5,8,5,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,2,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,4,3,3,2,2,2,2,1,1,1,1,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,11,8,12,12,13,7,7,5,8,5,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,7,12,8,11,11,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,5,7,7,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,25,13,13,9,13,8,9,7,12,7,8,6,9,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,4,3,3,2,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,3,3,7,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,1,1,1,2,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16 +2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,4,5,4,5,4,7,4,5,4,7,5,7,7,1,1,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,4,3,3,2,2,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,4,6,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,3,4,3,5,3,4,3,4,3,4,5,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,18,10,10,7,9,6,7,6,9,5,6,5,7,4,5,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,3,2,2,2,3,3,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,3,6,4,6,5,8,4,4,3,5,3,4,3,4,3,3,2,3,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11 +2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,2,2,2,1,1,1,2,2,3,2,2,2,2,2,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10 +2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,8,6,10,6,8,8,14,8,9,8,13,9,14,14,18,9,9,6,9,5,6,6,10,6,6,5,7,5,6,5,7,4,4,3,5,4,6,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,12,7,8,6,9,6,8,8,14,8,9,8,13,9,12,12,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,7,5,3,4,3,4,3,3,2,2,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,6,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,5,3,3,2,3,2,2,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,29,15,14,10,14,8,10,8,14,8,8,6,9,6,8,7,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,1,1,0,0,0,0,0,0,0,1,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,5,3,4,3,4,3,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19 +2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3,5,3,4,3,5,4,5,5,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +3,2,2,1,0,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,7,5,6,5,8,5,7,7,10,5,5,4,6,4,4,4,9,5,5,4,6,4,6,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,9,7,10,10,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,19,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,4,4,12,7,7,5,8,5,5,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,3,3,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,6,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,8,5,5,4,6,4,5,4,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,7,4,4,4,6,4,5,5,9,5,6,4,6,4,5,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-4,-2,-4,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,4,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,4,2,3,3,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,6,4,4,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,17,9,9,7,10,6,7,6,9,5,6,5,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,10,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,5,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,4,3,4,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,6,6,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,16,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14 +4,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,3,5,3,3,3,5,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,11,8,12,13,18,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,18,10,11,8,12,8,10,9,16,9,11,9,16,11,16,17,25,13,14,10,14,8,10,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,9,22,11,11,8,11,7,8,6,10,6,6,5,7,5,7,7,14,8,8,7,11,7,10,9,17,10,12,10,16,11,16,16,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,5,8,6,8,7,3,2,2,2,2,2,2,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,8,4,4,3,3,2,2,2,3,2,3,3,5,4,5,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,31,16,17,12,17,10,13,11,20,11,11,9,14,9,11,11,20,11,11,8,11,6,7,6,10,6,7,5,8,6,8,7,17,9,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,9,8,18,9,9,7,10,6,7,6,11,6,6,4,5,3,4,4,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,6,4,6,6,14,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,5,8,6,8,8,13,7,7,5,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,11,7,9,8,13,7,7,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,4,7,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,8,19,10,10,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,10,6,6,4,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-13,-14,-29 +2,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,5,9,5,6,5,9,6,9,9,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +2,1,1,1,2,2,2,1,0,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,5,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,5,11,6,7,5,7,5,6,6,10,6,6,5,9,7,10,10,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,9,5,6,4,6,4,5,4,8,5,6,5,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,6,9,5,6,5,9,7,10,10,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,17,9,10,7,10,6,8,7,12,6,6,5,8,5,7,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-7,-4,-7,-7,-15 +2,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,5,4,5,4,6,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,5,4,5,5,7,4,5,4,7,5,7,7,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7,4,4,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-3,-5,-3,-5,-5,-11 +2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,4,8,5,5,4,6,4,4,4,7,4,5,5,8,6,9,9,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,8,5,7,6,11,6,7,6,10,7,11,11,17,9,8,6,8,5,6,6,10,6,6,5,7,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,10,7,11,11,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,3,4,4,6,4,4,4,4,3,3,2,2,2,3,3,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-2,-4,-4,19,10,10,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,3,3,3,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,4,3,7,4,4,4,6,4,6,6,10,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-9,-9,-19 +2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,4,3,3,3,3,3,4,3,8,4,4,3,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,5,6,4,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,7,5,6,6,9,5,6,5,8,6,9,9,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,6,4,6,4,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,4,3,5,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15 +3,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,13,7,8,6,8,5,6,6,10,6,7,6,10,7,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,24,12,12,8,12,7,8,7,13,7,7,6,9,6,8,8,15,8,9,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,7,8,6,9,6,7,7,13,7,8,6,10,7,9,9,16,9,11,9,15,10,15,15,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,1,0,0,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,28,15,15,11,16,10,12,10,17,9,9,7,11,7,9,8,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,5,8,5,5,4,6,4,5,4,7,4,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,4,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,5,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,9,5,5,4,7,5,7,7,9,5,5,4,6,3,3,3,4,2,2,2,3,2,3,4,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-13,-6,-7,-5,-10,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,4,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,6,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,8,6,10,7,10,10,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,7,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,3,2,2,2,3,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,5,3,4,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,-1,0,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,14,8,7,5,7,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,6,9,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,3,2,3,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,5,6,5,10,6,6,5,8,5,7,7,14,8,8,7,11,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,8,6,10,7,10,9,16,9,9,7,10,6,7,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,8,7,9,5,6,5,8,6,8,7,13,7,7,6,9,6,9,8,15,9,10,8,14,9,13,13,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,3,2,3,2,3,2,3,2,2,1,1,1,2,1,1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,26,13,13,9,14,8,10,9,15,8,8,6,9,6,7,7,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,8,5,6,5,8,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,6,7,11,6,7,5,7,4,5,4,6,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-30 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-4,-5,-4,-9,-4,-6,-4,-9,-6,-9,-9,-19 +1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,11,7,10,9,16,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,8,6,8,6,8,8,13,8,9,8,14,10,14,13,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,14,9,14,8,10,9,14,8,8,6,9,6,8,8,14,8,8,6,7,5,6,6,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,8,6,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,1,1,1,2,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,25,13,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,7,5,6,6,9,5,5,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,6,7,5,7,5,6,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,10,6,7,7,12,8,12,11,21,11,12,9,14,9,11,10,18,10,11,9,14,10,14,14,27,14,14,10,16,10,14,13,24,14,16,13,23,16,23,23,44,23,23,16,24,14,17,14,24,13,14,10,16,10,14,13,25,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,26,14,14,10,15,9,11,9,16,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,23,13,15,13,23,16,23,23,45,23,23,16,23,13,15,12,21,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,20,12,14,12,20,13,19,19,37,19,19,14,21,12,15,14,25,14,15,12,19,13,18,17,33,17,18,14,22,13,17,16,29,16,19,15,26,17,25,25,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,9,5,4,3,4,2,2,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-8,50,25,25,17,25,14,16,13,22,12,13,10,16,10,12,11,21,11,11,8,11,7,8,7,13,8,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,7,5,8,5,7,7,13,8,9,7,11,8,12,12,22,11,11,8,12,7,8,7,12,7,7,5,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,8,15,8,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,7,5,7,7,13,7,7,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,4,7,5,7,7,12,7,7,5,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-9,-12,-11,-22,-11,-13,-10,-19,-11,-16,-16,-32,-16,-17,-12,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-28,-28,-58 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,11,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,22,11,11,8,12,7,8,6,11,6,7,5,8,5,7,6,13,7,8,6,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,12,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,8,8,15,9,10,8,14,9,13,13,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,6,5,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,4,7,4,5,4,6,4,5,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,13,7,7,6,8,5,6,5,9,5,6,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,10,6,9,9,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,3,2,3,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,6,5,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,7,6,9,6,8,7,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,7,7,12,7,9,7,12,8,12,12,22,12,12,8,11,6,7,6,10,6,6,5,8,5,7,6,14,7,7,5,8,5,7,7,10,6,7,6,10,7,10,10,19,10,11,8,12,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,6,8,8,16,9,11,9,14,9,13,13,0,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,3,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,13,9,13,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,6,4,5,5,9,5,6,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,8,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-8,-6,-12,-8,-12,-13,-27 +2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-7,-15 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,5,3,3,2,4,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,7,5,7,7,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,3,2,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14 +3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,3,3,6,4,5,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,9,6,7,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,13,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,8,8,7,11,7,8,8,14,8,9,7,11,8,11,11,22,12,12,8,12,7,8,6,10,6,6,4,6,4,6,6,14,8,8,6,9,6,8,7,12,7,7,6,9,6,9,9,17,9,9,6,8,5,6,6,10,6,7,6,9,6,8,8,13,7,8,6,10,6,8,8,14,8,10,8,13,9,12,11,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,1,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,26,13,13,9,13,7,8,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,3,2,3,2,3,2,3,3,4,3,4,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,7,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,5,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-13,-13,-26 +2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,3,3,3,3,3,4,4,7,4,4,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,5,6,4,4,3,4,3,3,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,13,7,8,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,4,6,4,6,6,13,7,8,5,8,5,5,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,15,8,8,6,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,5,8,5,5,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,11,6,6,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,4,6,4,4,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,5,4,6,6,6,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,9,5,6,5,8,5,6,6,8,5,5,5,8,6,8,7,17,9,9,6,9,5,5,4,8,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,5,5,6,4,4,3,5,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,5,7,7,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,16,8,8,6,8,5,5,4,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,2,2,2,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,5,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,1,1,0,0,0,0,0,1,1,1,0,0,0,0,4,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,3,2,3,2,5,3,3,2,3,3,4,4,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16 +4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,4,3,3,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,7,4,5,5,7,5,8,8,16,9,9,6,9,5,6,6,9,5,6,4,6,4,4,5,8,4,4,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,3,4,4,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,2,3,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,2,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,9,5,6,4,6,4,4,4,8,4,4,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,0,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-12 +11,6,6,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,3,5,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,2,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,6,5,7,7,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,7,7,13,8,9,8,13,9,13,13,29,15,15,10,15,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,6,5,7,5,8,8,19,10,10,7,10,6,8,8,14,8,8,6,10,6,8,8,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,25,13,12,8,12,7,8,6,10,5,5,4,6,4,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,11,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,6,7,6,11,8,11,11,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,25,13,12,8,12,7,9,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,3,4,5,16,9,9,6,8,5,5,4,7,4,5,4,6,4,4,4,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,10,5,5,4,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,3,2,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,4,3,5,5,6,4,4,3,4,3,4,3,5,3,3,2,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,13,7,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,9,5,5,4,5,3,3,3,4,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,3,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,5,6,5,8,6,8,7,16,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,6,4,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +8,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,2,2,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,7,4,5,4,6,4,5,4,7,4,5,4,5,4,5,5,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,3,6,4,5,4,6,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,6,6,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,9,5,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7 +6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +11,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,0,0,0,1,1,1,2,2,4,2,2,2,3,2,3,3,7,4,5,4,5,3,3,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,8,5,6,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,8,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,7,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,13,7,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,3,2,1,1,1,1,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,1,1,1,1,1,2,7,4,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,2,6,4,4,3,3,3,4,4,6,4,5,4,7,5,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,5,5,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12 +6,4,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,4,5,3,4,4,11,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,5,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,7,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,7,4,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7 +6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +11,6,5,4,5,3,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,2,1,1,1,1,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,5,3,4,4,6,4,6,6,17,9,8,6,8,5,6,6,10,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,13,7,8,6,9,5,6,5,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,5,10,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,9,5,5,4,5,3,4,3,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,7,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,3,2,3,3,4,3,4,4,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,5,3,3,2,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-2,-2,-6 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,5,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,7,4,4,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,8,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,7,2,2,2,1,2,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,5,5,4,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,2,2,2,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,7,4,4,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,7,4,5,4,7,5,7,7,2,2,2,1,2,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +17,9,9,6,7,4,4,4,6,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,1,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,5,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,8,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,6,8,8,14,8,10,8,14,10,14,13,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,14,7,7,5,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,14,7,7,5,7,4,5,5,8,5,5,4,5,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,5,9,5,4,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,11,6,6,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,6,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,3,3,6,5,7,7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,5,3,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 +9,5,5,3,4,3,3,3,4,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,3,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,7,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +10,5,5,3,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,8,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,0,0,0,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +10,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,0,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,5,5,9,5,5,4,6,4,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,9,5,4,3,4,3,3,2,4,3,3,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,5,3,3,2,3,2,2,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,6,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,5,3,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,4,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,0,0,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,4,3,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,5,10,6,6,5,7,5,6,6,10,6,7,6,11,7,10,10,6,3,2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,9,5,5,4,6,4,4,3,4,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,6,4,6,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 +7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,5,3,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,5,3,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,2,2,2,4,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,2,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +10,5,5,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,12,7,7,5,6,4,4,4,7,4,4,4,6,4,6,5,7,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,5,4,5,5,9,5,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,5,7,7,6,3,3,2,3,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,5,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,2,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,2,3,3,4,3,4,4,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,2,1,1,1,1,1,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,16,8,8,6,9,6,8,7,12,7,8,6,10,6,8,7,13,7,7,5,8,5,7,7,12,7,7,6,10,7,11,11,7,4,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,1,1,1,1,1,0,0,-1,0,-1,0,4,3,3,2,3,2,2,2,2,1,1,1,0,0,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-3,-3,-12,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,1,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,3,4,4,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,3,2,1,1,1,1,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 +8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8 +8,4,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,13,7,7,5,7,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,-7,-3,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9 +6,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +8,5,5,3,4,3,4,3,3,2,2,2,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,4,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,9,5,6,4,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,4,3,3,3,14,8,8,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,4,3,4,3,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,9,5,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,-1,-1,0,0,0,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,1,1,1,1,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-11 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,12,6,6,5,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-3,-3,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-8 +12,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,21,11,10,7,10,6,7,7,12,7,7,5,8,5,6,6,11,6,7,5,7,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,5,3,3,3,4,3,5,5,8,5,6,5,9,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,9,5,3,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,9,5,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-7,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-12,-12,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,5,5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-4,-4,-9 +9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,14,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,5,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,5,3,2,2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-6,-4,-8,-5,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-3,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,7,7,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8 +14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,5,3,4,3,4,3,4,3,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,7,5,7,7,11,6,6,5,7,5,6,5,6,4,5,4,6,4,6,6,11,6,6,4,6,4,6,6,10,6,6,5,9,6,8,8,4,3,3,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,6,3,3,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-3,-1,0,0,0,1,1,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,4,3,5,5,8,4,4,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10 +14,8,8,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,4,3,4,3,4,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3,3,4,3,4,3,5,3,4,4,5,4,6,6,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,6,4,4,3,5,3,4,4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +14,8,8,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,19,10,10,7,9,6,7,6,10,6,6,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +26,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,36,19,19,13,20,12,14,12,20,11,12,9,14,9,12,11,19,10,11,8,11,7,8,8,14,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,3,4,4,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,5,6,11,6,7,5,8,5,7,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,9,16,9,10,9,15,10,15,15,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,9,5,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-6,-12,-8,-12,-12,-24,-12,-12,-7,-11,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-22,-22,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,0,1,1,1,0,1,1,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,8,8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-8,-9,-7,-13,-8,-13,-14,-29 +14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-4,-3,-6,-4,-6,-6,-14 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,6,4,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,6,5,8,5,6,5,7,5,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-7,-4,-6,-6,-14 +10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9 +15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,5,5,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,6,5,7,4,5,4,7,5,8,8,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-9,-4,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,3,4,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13 +9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7 +12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,14,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,-1,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9 +11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8 +20,10,10,7,9,6,7,6,9,5,5,4,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,11,6,7,5,7,4,5,4,5,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,21,11,11,8,11,6,7,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,7,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,1,1,1,1,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-2,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-7,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-14,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15 +11,6,6,4,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,3,3,3,3,4,4,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7 +13,7,7,4,5,3,4,4,5,3,3,3,3,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,13,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,3,2,3,3,3,3,4,4,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-4,-4,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6 +16,8,8,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,3,3,3,4,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,3,2,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,0,1,1,1,2,2,2,1,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,5,3,3,3,4,3,5,5,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11 +10,6,6,4,5,3,4,3,5,3,3,3,4,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7 +14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,1,1,2,2,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-5,-5,-11 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,5,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +27,14,14,10,14,8,9,8,13,7,7,5,8,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,6,5,9,5,6,6,10,7,9,9,18,9,9,6,8,5,5,5,8,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,5,5,12,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,4,5,5,8,6,8,8,28,14,14,9,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,6,9,6,7,6,9,5,6,5,9,6,8,7,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,5,3,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-16,-11,-17,-17,-17,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,7,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,5,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-2,2,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-21 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,15,8,8,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,15,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,0,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,0,0,0,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,5,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +19,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,6,4,5,4,6,5,7,7,14,7,7,5,6,4,4,3,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,5,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12 +12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,13,7,6,4,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +25,13,13,9,12,7,9,8,14,8,8,6,9,6,7,7,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,3,7,4,4,3,4,3,3,3,6,4,5,5,8,5,7,7,22,11,11,8,11,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,1,1,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,2,2,2,1,1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-7,-14,-9,-13,-13,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,-2,-2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +14,8,7,5,7,4,5,5,8,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,13,7,7,5,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,4,3,3,2,5,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10 +14,8,7,5,8,5,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,3,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +24,13,13,9,13,8,9,8,11,6,6,5,8,5,7,7,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,5,3,4,4,8,5,7,7,20,10,10,7,10,6,7,6,8,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-10,-5,-7,-6,-12,-7,-11,-11,-11,-5,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-2,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16 +16,9,9,6,9,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +23,12,12,8,13,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,19,10,10,7,10,6,6,5,9,5,6,4,5,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-6,-6,-10,-5,-6,-5,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +23,12,12,8,12,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +44,22,22,15,21,12,13,11,18,10,10,7,11,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,9,6,7,6,11,6,7,6,10,6,8,8,14,8,8,7,11,7,9,8,15,9,11,10,17,12,17,17,32,17,17,12,18,10,12,11,19,11,12,9,15,9,12,11,21,11,11,8,13,8,9,8,13,7,8,6,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,35,18,19,13,19,11,12,10,17,9,10,7,10,6,8,7,12,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,4,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,2,2,3,3,4,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,3,3,3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-6,-11,-7,-12,-12,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-11,-12,-9,-15,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-23,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,1,1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-15,-15,-30 +23,12,12,8,11,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,7,9,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +23,12,12,8,12,7,8,6,10,6,6,5,7,5,6,5,9,5,6,5,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,17,9,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,12,6,7,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +26,13,13,9,14,8,8,7,11,6,6,5,7,4,5,5,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,9,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,5,8,5,7,7,18,10,10,7,11,6,7,6,10,5,5,4,6,4,4,4,7,4,3,2,3,2,3,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,3,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,3,2,3,2,3,4,4,3,3,3,4,2,2,2,4,2,2,2,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15 +16,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,11,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +20,10,10,7,10,6,6,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,7,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 +18,9,9,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +32,16,16,11,15,9,10,8,14,8,8,6,9,6,7,6,13,7,7,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,11,6,7,5,7,4,5,5,9,6,7,6,11,7,10,10,22,12,12,8,12,7,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,1,0,0,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-14,-9,-15,-15,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,1,1,1,1,2,2,2,1,1,1,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18 +18,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-7,-4,-7,-8,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +20,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,7,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,11,6,6,5,6,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-6,-5,-9,-5,-8,-9,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 +16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +27,14,14,9,13,8,9,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,6,10,7,10,10,19,10,9,6,9,5,6,5,8,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,0,0,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +24,12,12,8,12,7,8,7,10,6,6,5,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,4,4,10,6,6,4,5,3,4,3,5,3,4,4,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,6,4,7,5,6,6,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-11,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 +23,12,12,8,12,7,8,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,4,4,10,5,5,4,5,3,4,3,5,3,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +44,22,22,15,22,13,16,13,23,12,13,9,13,8,10,9,17,9,10,7,11,7,8,7,11,6,7,6,9,6,9,8,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,10,18,10,11,8,12,7,9,8,13,8,9,7,11,7,10,9,20,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,7,6,10,6,8,7,11,7,10,10,25,13,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-9,-19,-10,-13,-11,-20,-13,-21,-21,-26,-12,-12,-8,-13,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,6,3,3,3,4,3,3,3,4,2,2,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,3,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-12,-25 +23,12,12,8,12,7,9,8,12,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-12 +24,12,12,9,12,7,9,8,13,7,8,5,8,5,6,5,10,6,6,5,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +27,14,14,10,14,8,10,9,15,8,9,6,9,6,7,6,13,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,6,6,5,7,5,7,6,13,7,7,5,8,5,5,5,10,6,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,16,9,9,6,9,6,7,6,8,5,5,4,6,4,6,5,8,5,5,3,4,2,2,2,4,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-17,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,4,3,3,3,4,3,3,2,2,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +22,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,11,6,6,5,7,4,4,4,7,4,4,4,7,5,6,5,11,6,6,5,6,4,4,4,8,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-6,-4,-6,-5,-11,-5,-6,-5,-11,-7,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,6,4,5,4,7,4,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +40,21,21,14,20,12,14,12,22,12,12,9,13,8,11,10,19,10,10,7,11,7,9,8,15,8,9,8,13,8,11,10,20,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,12,10,16,11,17,17,28,15,15,11,16,9,11,10,17,9,10,7,11,7,8,8,17,9,10,7,10,6,8,7,12,7,8,6,10,7,9,9,20,11,11,7,10,6,8,7,13,7,8,6,9,6,9,8,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,25,13,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,1,1,1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-7,-10,-10,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 +23,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,12,6,6,5,7,4,5,5,9,5,5,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,12,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,4,6,4,6,6,14,8,7,5,8,5,5,5,8,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,7,7,11,6,7,6,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-16 +23,12,12,8,12,7,9,8,13,7,7,5,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,6,11,6,6,4,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,6,6,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,7,14,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-13 +40,21,21,15,22,13,15,13,22,12,12,9,15,10,13,12,23,12,12,8,12,7,8,7,15,8,9,7,11,7,10,10,20,10,10,7,11,7,9,8,13,8,9,7,11,7,10,10,17,9,9,7,10,7,10,9,15,9,10,9,15,10,15,15,28,15,15,11,16,9,11,9,17,9,9,7,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,5,7,7,11,6,7,6,11,8,12,12,24,12,12,8,12,7,9,8,13,7,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,8,4,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-12,-7,-11,-11,-24 +27,14,14,10,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,11,8,11,6,7,6,12,6,7,5,7,5,6,6,11,6,6,5,7,4,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-12,-12,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +39,20,20,14,22,13,15,13,22,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,12,7,8,7,13,7,8,6,10,7,9,9,17,9,10,7,10,6,8,8,15,9,10,9,14,10,14,15,28,15,16,11,16,9,10,9,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-11,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +39,20,20,14,21,12,15,13,22,12,13,10,16,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,15,9,10,9,14,10,14,15,29,15,16,11,16,9,10,9,16,9,9,7,10,6,8,8,15,8,9,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +77,39,38,25,37,21,24,20,35,19,20,15,23,14,19,18,33,17,18,12,18,10,12,11,19,11,12,10,16,11,16,15,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-13,-14,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-13,-10,-19,-12,-19,-19,-39,-19,-19,-13,-21,-12,-15,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-18,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-37,-37,-55,-27,-28,-18,-28,-15,-18,-14,-26,-13,-15,-11,-19,-11,-16,-15,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-13,-27,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-21,-44,-21,-21,-14,-21,-11,-14,-12,-24,-12,-14,-10,-18,-11,-16,-15,-31,-15,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-18,-12,-18,-17,-35,-17,-18,-12,-18,-10,-13,-11,-20,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-10,-16,-9,-13,-12,-24,-12,-14,-11,-21,-13,-20,-20,-40,-20,-20,-13,-19,-10,-12,-10,-19,-9,-10,-7,-13,-8,-11,-11,-22,-11,-11,-8,-14,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-37,-18,-19,-12,-19,-11,-14,-12,-24,-12,-14,-10,-17,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-24,-13,-16,-13,-25,-16,-25,-24,-49,-24,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-35,-17,-18,-12,-19,-10,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-24,-13,-15,-12,-21,-13,-19,-19,-38,-19,-19,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-12,-12,-24,-12,-13,-9,-16,-9,-13,-12,-25,-14,-17,-14,-26,-17,-25,-25,-50 +39,20,19,13,19,11,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-7,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-7,-6,-14,-6,-7,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-24 +38,19,19,13,19,11,12,11,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-24 +25,13,13,9,13,7,8,8,12,7,7,6,8,6,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-18,-8,-9,-6,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 +37,19,18,12,18,10,12,11,17,9,10,8,12,8,11,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-20,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-20,-13,-20,-20,-27,-13,-13,-8,-13,-7,-9,-7,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-5,-4,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-11,-6,-7,-5,-10,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-19,-9,-9,-6,-10,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-9,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-12,-12,-24 +21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +25,13,12,8,12,7,8,7,13,7,8,6,9,6,8,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-2,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,1,1,0,1,0,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-8,-5,-8,-7,-15,-7,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16 +21,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +37,19,20,14,20,11,13,11,19,10,10,8,12,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,9,6,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,5,3,3,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,3,2,1,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-21,-11,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-13,-20,-20,-27,-13,-13,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-11,-23 +20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-11,-6,-10,-10,-13,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,6,4,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-6,-11,-6,-8,-6,-12,-7,-11,-11,-14,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-14,-6,-6,-4,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12 +17,9,9,6,9,5,6,6,9,5,5,4,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-5,-2,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +27,14,14,10,14,8,10,9,14,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,7,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,2,1,1,1,0,1,1,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +23,12,12,8,12,7,9,8,12,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +21,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10 +40,20,20,13,19,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,7,5,6,4,5,5,9,5,5,4,5,3,3,2,2,2,2,2,2,1,0,0,-1,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,12,7,7,5,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,1,1,1,0,-1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-6,-3,-3,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-20,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-8,-11,-10,-21,-11,-14,-12,-22,-14,-22,-22,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-7,-11,-10,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-10,-6,-10,-10,-24,-11,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-19 +20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +20,11,11,7,10,6,8,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10 +14,8,8,6,8,5,6,5,7,4,5,4,5,4,4,4,8,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-4,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +21,11,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,0,0,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-4,-6,-4,-8,-5,-8,-8,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6 +13,7,7,5,8,5,5,5,8,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +24,13,13,9,14,8,10,8,13,7,7,5,8,5,7,7,15,8,8,6,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-3,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5 +14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-6,-5,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6 +11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-5 +18,9,9,7,10,6,7,7,11,6,6,5,8,5,6,6,11,6,7,5,8,5,5,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,5,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,1,1,2,1,1,0,1,1,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-6,-8,-6,-12,-7,-11,-11,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,3,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-4,-9 +12,6,6,5,7,4,5,5,8,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5 +16,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,4,6,5,9,5,5,4,6,4,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-4,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8 +16,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7 +31,16,17,12,17,10,11,10,17,9,10,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,5,3,3,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-21,-20,-28,-13,-13,-8,-12,-6,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-14,-9,-15,-15,-27,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-29,-14,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-14 +16,9,9,6,9,5,6,5,9,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-2,-3,-7 +17,9,9,6,9,5,6,5,8,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-3,-1,-1,0,-1,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-7 +12,6,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4 +17,9,10,7,10,6,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-16,-8,-8,-5,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7 +10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +11,6,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +17,9,9,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,6,4,4,4,6,4,6,5,11,6,6,4,5,3,4,3,5,3,3,2,2,2,2,2,7,4,4,2,2,1,1,1,0,1,1,1,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,3,2,3,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,2,3,3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-3,-3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,4,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4 +8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +18,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,5,3,4,3,5,3,4,3,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,1,1,1,1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,7,4,4,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,5,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,0,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,0,0,0,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-2,0,0,0,-2,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,4,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-12,-6,-6,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +13,7,7,5,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,2,2,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1 +11,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,2,2,3,2,2,1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +10,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +18,10,10,7,10,6,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,3,4,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,3,4,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-8,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-9,-21,-10,-9,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-7,-5,-9,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,1,1,0,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,7,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 +15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-5,-7,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +28,14,14,9,13,7,8,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-18,-48,-23,-23,-15,-24,-13,-16,-13,-23,-12,-13,-9,-15,-9,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-10,-7,-12,-7,-11,-10,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,16,8,8,6,8,5,5,4,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-13,-9,-14,-14,-26,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-8,-16,-8,-10,-8,-14,-8,-12,-11,-23,-11,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-10,-8,-16,-10,-16,-16,-35,-17,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 +15,8,7,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 +15,8,7,5,8,5,5,4,7,4,4,3,5,3,4,3,6,3,3,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +11,6,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +16,9,9,6,8,5,5,5,7,4,4,3,4,3,4,4,7,4,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-5,-12,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +12,6,6,4,5,3,4,4,5,3,4,3,3,2,2,2,6,3,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,5,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +17,9,9,6,9,5,6,5,8,4,4,3,5,3,4,3,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,3,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-23,-11,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,2,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +10,6,6,4,5,3,4,4,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-2,-2,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2 +11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,0,-2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,1,1,1,1,2,2,2,1,0,1,1,1,0,0,-1,-1,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-2,-5 +7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 +10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-3,-1,-2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5 +10,6,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,4,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4 +19,10,9,6,9,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,5,3,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-18,-9,-9,-6,-10,-5,-7,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-17,-8,-8,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,8,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4 +10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-8,-7,-11,-5,-6,-4,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3,-3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-12,-5,-5,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,4,3,4,3,3,3,3,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3 +13,7,7,5,7,4,5,4,6,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-11,-17,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,2,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,8,5,5,4,5,3,3,3,4,2,2,2,2,1,1,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-7 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +9,5,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-7,-11,-5,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3 +7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,7,4,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-5 +8,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 +11,6,6,4,5,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,6,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +21,11,12,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-11,-6,-9,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-12,-7,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-33,-16,-16,-10,-16,-8,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,15,8,8,5,7,4,4,3,5,3,3,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-9,-14,-13,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-9,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9 +11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-4,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-2,-2,-4,-2,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-4,-3,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-6,-4,-6,-7,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-10,-5,-5,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,6,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,6,6,4,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,1,2,2,2,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3 +9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +16,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,-5,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-18,-8,-8,-5,-8,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-8,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-5,-8,-3,-3,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,1,1,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1 +23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,13,7,7,5,7,5,6,5,8,5,5,5,8,6,8,7,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,1,1,1,0,0,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-4,-5,-4,-9,-5,-8,-8,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-6,-10,-10,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-21,-10,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-37,-18,-17,-11,-17,-9,-10,-8,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,6,3,3,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-12,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,8,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3 +12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-8,-19,-9,-9,-6,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-4,-7,-4,-7,-8,-20,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,8,8,6,8,5,5,5,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-24,-12,-12,-8,-12,-6,-7,-5,-10,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,2,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +12,6,6,4,7,4,4,4,8,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1 +11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +20,11,11,8,11,7,8,7,12,7,7,6,10,6,8,8,14,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-7,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-12,-12,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-35,-17,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-11,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1 +12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +14,8,8,5,7,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1 +12,7,7,5,6,4,5,4,8,4,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-20,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,2,3,2,2,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-8,-7,-14,-9,-14,-13,-36,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,6,5,8,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-14,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-4,-5,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,5,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,3,4,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-13,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-6,-11,-6,-9,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0 +42,22,22,15,21,12,14,12,20,11,11,9,14,8,10,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-9,-17,-8,-9,-7,-13,-8,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-15,-15,-22,-11,-11,-7,-10,-6,-8,-7,-13,-6,-7,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-18,-17,-35,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-14,-14,-29,-15,-16,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-27,-55,-27,-27,-18,-27,-15,-18,-15,-27,-14,-15,-11,-19,-12,-17,-16,-31,-15,-16,-11,-18,-10,-13,-11,-21,-11,-12,-10,-18,-11,-17,-16,-33,-16,-16,-11,-17,-9,-12,-10,-20,-10,-11,-8,-14,-9,-13,-13,-26,-13,-13,-9,-15,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-11,-18,-11,-15,-14,-27,-15,-18,-15,-27,-17,-25,-25,-76,-37,-37,-24,-36,-20,-24,-19,-35,-18,-19,-13,-22,-13,-19,-17,-34,-17,-17,-11,-17,-9,-11,-9,-18,-9,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-37,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-12,-10,-19,-9,-10,-7,-13,-8,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-12,-15,-13,-24,-16,-24,-24,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,0,1,1,1,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,-1,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3,2,2,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-11,-11,-23,-11,-12,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0 +21,11,11,8,11,7,8,6,10,6,6,5,7,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-5,-10,-5,-5,-3,-6,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-4,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-5,-5,-10,-6,-7,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-6,-14,-7,-8,-7,-14,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-10,-5,-7,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-4,-9,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-6,-5,-10,-6,-8,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-6,-5,-8,-4,-4,-3,-6,-4,-5,-4,-10,-5,-5,-3,-5,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-4,-4,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-25,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0 +20,10,10,7,10,6,7,6,9,5,5,4,6,4,6,5,10,5,5,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-14,-9,-14,-8,-10,-8,-13,-7,-8,-6,-10,-6,-8,-7,-17,-8,-8,-5,-8,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-10,-6,-10,-5,-7,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-17,-8,-9,-6,-10,-6,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-8,-6,-12,-8,-12,-12,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-6,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0 +13,7,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-7,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-7,-5,-8,-8,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1 +10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1 +17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-6,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-7,-4,-6,-5,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-36,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-7,-11,-6,-9,-8,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-8,-13,-13,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +10,6,6,4,5,3,3,3,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2 +8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1 +10,6,6,4,5,3,3,3,6,3,3,2,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +16,8,8,5,7,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-8,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-31,-15,-16,-10,-16,-8,-10,-9,-17,-8,-8,-5,-9,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-6,-7,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-40,-20,-20,-13,-21,-11,-14,-11,-21,-10,-10,-7,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3 +8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +8,4,4,3,4,3,4,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-5,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-8,-5,-8,-4,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,2,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0 +7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0 +6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0 +11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-16,-8,-8,-5,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,3,3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,1,1,2,2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1 +4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-19,-9,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0 +5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0 +9,5,6,5,7,5,6,5,8,5,5,4,7,5,6,6,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,4,3,5,5,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-6,-9,-9,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-29,-14,-14,-9,-14,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-37,-18,-19,-12,-19,-10,-12,-10,-18,-9,-9,-7,-12,-7,-11,-10,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,1,1,2,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0 +5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0 +4,3,3,3,3,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-10,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-9,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,2,3,2,2,1,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-3,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,0,0,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-8,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,1,1,1,1,1,1,1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-2,0,0,0,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,-1,0,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-13,-6,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,1,1,1,0,0,0,1,1,1,1,0,0,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3 +7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-9,-4,-4,-2,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,2,3,3,5,3,3,3,5,4,6,6,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-5,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-15,-7,-8,-5,-6,-3,-4,-3,-8,-4,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2 +6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-9,-5,-8,-4,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,4,2,2,2,3,2,3,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3 +4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3 +5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,1,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,4 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 +8,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-26,-12,-12,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-3,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,1,1,1,1,1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-5,-8,-8,-13,-6,-7,-5,-8,-5,-8,-7,-13,-7,-8,-7,-14,-9,-14,-13,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-14,-7,-7,-5,-8,-4,-6,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,0,1,1,2,3,2,3,3,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,3,2,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-2,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,9 +5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6 +8,4,4,3,4,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-5,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,4,3,5,5,8 +8,4,4,3,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8 +14,8,8,5,7,4,4,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-34,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-20,-9,-9,-6,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-8,-10,-9,-17,-11,-18,-18,-38,-18,-18,-12,-18,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-27,-51,-25,-25,-16,-25,-13,-16,-13,-25,-12,-12,-8,-14,-8,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-30,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-9,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-23,-11,-12,-8,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,3,3,4,4,7,4,5,5,9,6,9,9,16,8,8,6,8,5,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-5,-7,-4,-5,-4,-6,-3,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,3,4,4,8 +6,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6 +9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-9,-9,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,-2,0,0,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8 +6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5 +7,4,4,3,3,2,2,2,4,2,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-3,-5,-5,-14,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-5,-2,-3,-3,-9,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,2,1,1,2,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +9,5,6,4,6,4,5,4,6,3,3,2,2,2,2,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-4,-7,-7,-22,-11,-11,-7,-11,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-6,-6,-15,-7,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-16,-15,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,2,2,2,1,1,1,2,2,4,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9 +5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5 +6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4 +8,4,4,3,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-7,-7,-4,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6 +5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6 +10,5,5,4,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,3,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-3,-3,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-8,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-17,-11,-16,-16,-36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,8,4,4,3,4,2,2,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,0,0,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,5,4,5,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-12,-6,-6,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5 +5,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5 +7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +14,8,8,5,7,5,6,5,8,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,3,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,8,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8 +8,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-2,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +10,6,6,4,6,4,5,4,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-5,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-5,-4,-6,-4,-6,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,6,4,4,3,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +16,9,9,6,8,5,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-10,-5,-6,-5,-10,-7,-11,-11,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,6,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,1,2,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,-4,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,-1,0,1,1,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,-1,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6 +15,8,9,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,2,2,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +29,15,15,10,15,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,3,2,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-10,-30,-14,-14,-9,-15,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,4,3,3,2,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-13,-11,-20,-13,-21,-21,-56,-27,-27,-18,-28,-15,-18,-15,-27,-13,-14,-9,-14,-8,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-9,-14,-14,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,9,5,5,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,3,5,4,5,4,7,5,6,5,8,6,9,9,16 +15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,5,5,9 +15,8,8,6,8,5,6,5,6,4,4,3,4,3,4,3,6,3,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-3,-4,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9 +11,6,6,4,6,4,4,4,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,4,7 +17,9,9,6,8,5,6,5,6,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-4,-16,-8,-8,-5,-8,-4,-5,-3,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-17,-8,-7,-4,-7,-4,-5,-4,-10,-5,-5,-3,-6,-4,-6,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-11,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,6,4,4,3,4,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,-1,4,3,3,2,3,2,3,3,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,5,4,6,6,11 +10,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,3,4,4,7 +13,7,6,4,6,4,4,4,5,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-12,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,3,5,3,3,3,4,3,5,5,8 +12,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +21,11,10,7,10,6,7,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-33,-16,-16,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-9,-8,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-9,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,6,6,12 +11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7 +12,6,6,4,7,4,4,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,8 +9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7 +15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,2,2,2,2,2,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,-1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,5,5,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13 +10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9 +14,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-10,-5,-6,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +13,7,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +25,13,13,8,11,6,7,6,9,5,5,4,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-8,-27,-13,-12,-8,-12,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-12,-12,-24,-13,-15,-12,-22,-14,-22,-21,-45,-22,-21,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-15,-8,-9,-7,-14,-9,-14,-14,-22,-10,-10,-6,-10,-5,-7,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,6,6,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 +13,7,7,5,6,4,4,4,5,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,12 +14,7,7,5,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-25,-12,-12,-7,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,13 +11,6,6,4,5,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +18,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-16,-8,-9,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,3,2,3,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,9,8,15 +11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,9 +15,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-9,-5,-6,-6,-13,-7,-8,-6,-11,-7,-12,-12,-25,-12,-12,-8,-11,-6,-8,-7,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5,-2,-1,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,12 +14,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12 +27,14,14,9,13,8,9,7,12,7,8,6,9,6,7,6,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-28,-14,-14,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-11,-24,-12,-12,-9,-15,-9,-12,-12,-24,-13,-16,-13,-23,-15,-23,-23,-45,-22,-22,-14,-22,-12,-15,-13,-24,-12,-14,-10,-17,-10,-15,-14,-27,-13,-13,-9,-15,-8,-11,-9,-18,-9,-10,-8,-14,-8,-12,-12,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-7,-13,-7,-9,-8,-16,-8,-10,-8,-15,-9,-13,-13,-28,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-7,-14,-9,-14,-14,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,2,2,2,2,1,1,1,2,2,2,2,6,4,4,3,3,2,1,1,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,8,6,9,6,7,6,11,6,7,6,10,7,11,11,22 +15,8,8,6,8,5,5,4,7,4,5,4,5,4,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,3,4,4,8,4,5,4,6,4,5,4,7,4,4,4,6,5,7,7,13 +18,10,10,7,9,5,6,5,8,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-6,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,8,6,8,8,16 +15,8,8,6,8,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-9,-5,-7,-6,-14,-6,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,14 +26,13,13,9,13,8,9,7,11,6,6,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,2,2,2,2,2,2,4,2,2,2,2,2,3,3,6,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-8,-11,-11,-22,-11,-11,-8,-14,-8,-12,-11,-23,-12,-15,-12,-23,-15,-23,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-12,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-16,-8,-9,-7,-14,-9,-14,-14,-27,-13,-13,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-9,-7,-14,-9,-14,-14,-28,-13,-13,-8,-13,-7,-8,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,7,6,9,6,8,7,11,7,8,7,12,9,13,13,25 +18,9,9,6,9,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-6,-7,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-15,-8,-10,-8,-13,-8,-13,-13,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-6,-4,-6,-6,-14,-7,-7,-5,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,4,3,4,3,4,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,5,9,6,7,6,12,7,8,7,13,9,14,14,26 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-8,-9,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,13,9,13,13,26 +50,25,25,17,24,13,15,12,21,11,11,8,12,8,10,9,17,9,9,7,10,6,6,5,9,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,3,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-8,-7,-13,-9,-14,-15,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-10,-7,-12,-7,-10,-10,-21,-10,-10,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-39,-19,-20,-13,-21,-11,-14,-12,-22,-11,-13,-9,-16,-10,-15,-15,-30,-15,-15,-11,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-26,-53,-27,-28,-19,-30,-17,-21,-18,-34,-18,-20,-15,-27,-17,-24,-23,-45,-23,-24,-18,-30,-18,-26,-24,-48,-26,-32,-26,-47,-31,-46,-46,-94,-46,-46,-31,-47,-25,-30,-25,-46,-23,-25,-19,-32,-20,-28,-26,-51,-25,-26,-18,-28,-16,-21,-19,-36,-19,-22,-17,-29,-19,-28,-27,-54,-27,-27,-18,-28,-15,-19,-16,-30,-15,-17,-13,-23,-14,-21,-20,-40,-20,-21,-14,-23,-13,-18,-16,-32,-17,-19,-15,-28,-18,-28,-28,-57,-28,-27,-18,-27,-15,-18,-15,-27,-14,-15,-10,-17,-10,-14,-13,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-10,-8,-14,-9,-13,-12,-25,-13,-14,-11,-19,-11,-16,-15,-29,-16,-19,-16,-30,-19,-29,-29,-58,-28,-28,-19,-29,-15,-18,-15,-28,-14,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-5,-5,-3,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,8,16,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,13,7,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,4,6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,3,3,4,4,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,11,11,20,11,12,9,15,9,12,12,22,13,16,14,25,17,25,25,50 diff --git a/worlds/diamond_world2.csv b/worlds/diamond_world2.csv new file mode 100644 index 0000000..d51e78a --- /dev/null +++ b/worlds/diamond_world2.csv @@ -0,0 +1,257 @@ +54,102,116,132,158,159,140,207,229,196,157,171,261,284,275,322,482,460,363,438,641,901,1431,1938,2724,2943,3854,4444,3889,4374,5896,6636,5925,6653,9764,12769,12864,9305,7398,9721,9630,7535,5882,4872,4098,7778,9385,10017,13287,10766,6878,7037,8674,10026,10329,12788,14776,11178,7584,6270,5816,4793,3297,2901,2281,1952,1514,1512,2230,1570,1413,891,514,920,1062,2164,2972,3805,3680,4377,3728,3423,2090,2491,2623,2053,1559,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,198,394,561,1230,1520,1995,2107,1602,1349,1696,1557,1097,692,480,144,183,258,312,336,567,652,938,1053,718,682,560,295,264,185,176,240,202,114,78,32,25,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,827,1035,1444,1569,1188,1324,2036,2913,3602,4379,3896,3696,3039,4308,5187,5234,5454,5259,3759,3158,3156,2434,2461,3302,3722,3143,3070,2444,1845,2378,2234,2386,1996,1579,1173,787,534,236,0,26,43,96,118,111,109,143,198,435,729,1418,2085,3296,4312,5042,7529,8380,8128,6343,5903,4959,4039,6504,6962,6717,4329,3425,2243,3978,4792,4876,4724,3767,2925,2772,3398,2407,2155,1020,0,12,24,31,48,39,39,44,56 +41,70,132,151,160,164,190,228,156,162,182,259,294,312,349,366,406,354,339,446,788,989,1440,2132,2859,3879,4451,3884,5894,5785,6928,5117,9479,8944,8882,9244,8506,7222,6220,6822,8140,7512,4746,5536,5603,8872,13548,12820,10124,10644,6286,7120,7084,8630,10278,10881,9791,10136,8670,6297,6179,4585,3641,3050,3005,2500,1744,1516,1807,1498,1023,778,355,952,1020,2133,4002,4108,4928,4747,3051,2948,1666,1927,2881,2138,1741,985,183,174,136,119,80,66,32,18,0,1,2,2,2,5,5,7,4,174,374,578,881,1278,1903,2477,3279,2030,2260,1918,1770,1380,1036,640,408,422,607,707,752,766,909,888,1530,1088,792,660,350,308,199,350,398,433,393,437,289,249,216,247,263,270,258,201,108,216,330,397,350,289,227,231,91,101,121,138,0,26,54,59,138,195,182,218,50,368,629,1068,1788,1732,1582,1630,2299,2576,2308,2999,3179,3566,4023,4280,4935,5181,4782,4696,3109,3260,3532,3146,1546,2124,2902,2541,2657,2672,2132,2148,2007,1598,1446,1250,1014,681,613,274,130,158,149,234,336,338,275,302,306,556,1054,1588,2440,2953,2880,4318,5856,5977,5619,5900,5060,4874,3930,5878,7622,5992,4926,4130,2930,3908,4600,5122,4191,3036,2320,2624,3235,2977,3248,2414,537,454,448,368,334,262,216,128,43 +33,66,110,183,227,187,181,268,130,126,147,243,233,366,407,407,283,341,439,455,842,1077,1650,1816,3787,3523,4724,4828,6627,6756,7043,5634,10664,8572,9575,8976,7290,5319,4652,6281,7554,6226,5942,5906,8240,10155,13952,15263,8829,8094,7972,7892,5903,9171,10106,11464,8832,8317,8050,6156,5091,3988,3592,3860,2901,1981,1532,1258,1132,1109,1076,858,297,925,1441,2588,3878,5115,5634,6016,2050,1684,1904,2434,3270,2692,1650,1007,371,299,280,326,190,118,76,46,0,2,4,5,4,7,8,11,6,294,537,725,1450,1728,1751,2593,3560,2610,2506,1884,1949,1463,1162,824,566,726,950,1114,927,1064,1070,1045,1648,1562,1275,632,310,316,286,344,485,579,764,792,639,496,505,626,602,561,456,409,254,424,556,708,719,622,518,385,192,208,262,327,0,58,110,140,285,364,360,409,116,364,564,910,2015,1843,1538,1355,1876,1908,2144,3081,2456,3870,4770,4738,3385,3412,4216,4850,3759,3730,3518,3548,1284,1311,1564,2237,3517,3165,2741,2152,1768,1535,1030,951,821,742,534,354,304,333,289,419,698,495,500,366,357,655,1196,1452,2215,2595,2638,4427,3651,3673,4441,5546,3881,5098,4840,6112,7255,5345,4954,4006,3974,4142,4283,4018,2774,2230,2200,3251,2909,4092,4108,3240,1067,872,736,824,569,515,422,261,36 +36,61,99,172,251,224,208,318,124,159,212,261,272,332,354,412,176,495,722,628,954,1132,1229,1844,4269,4028,5194,5382,7081,5824,5730,5373,9529,9947,8936,8470,7134,5555,5378,4561,6648,6787,5624,7102,7951,8523,11987,13608,9303,7582,5878,7194,6839,10309,9502,9698,9737,9020,6341,5617,4089,3664,4053,3892,2398,1708,1482,1010,876,1044,997,858,277,808,1357,2278,3520,4738,5474,7014,2045,2036,1884,2844,2775,2042,1488,928,549,432,461,412,327,199,106,58,0,4,6,7,7,11,10,17,10,478,1008,1254,2218,1706,1678,2930,2641,2772,3122,2266,1817,1602,1287,968,985,1047,1458,1534,1205,1382,1146,1184,1650,1370,1197,661,268,372,365,446,682,793,861,962,1003,826,576,883,928,764,444,466,512,730,853,1073,1286,989,605,548,328,291,443,500,0,81,172,245,326,508,714,712,208,598,956,1110,1623,1700,2373,2399,1453,1866,1430,2154,3237,3480,4554,4977,4278,3952,3941,3594,2928,3839,3498,4120,1578,1666,1312,1690,2687,3002,2430,2328,1010,1110,853,1124,1372,901,504,383,436,507,594,658,873,636,577,461,438,936,1559,2006,2557,2563,2079,3056,2541,2627,3879,4406,3763,4554,3412,4730,4908,4753,5214,5174,4391,5022,4454,4256,2160,2534,2143,3686,3924,5439,5707,5660,1449,1274,789,1078,1222,1016,728,396,25 +31,65,120,166,200,218,320,336,170,217,292,299,357,517,514,525,100,214,410,791,1072,1309,1279,2138,3386,4128,3610,4500,5626,5241,3576,3564,9429,7379,5484,5116,6090,6102,6224,4794,5022,8233,9129,10492,8628,10028,13826,14730,8683,8122,5196,6046,7248,9273,9994,11641,9015,6314,3811,3191,2767,3288,4158,4456,2234,2538,2003,1587,744,761,774,759,376,1088,1874,2233,2637,4046,4527,6164,2458,2391,1854,1696,2283,1624,1613,1395,658,573,624,487,428,374,228,99,0,4,6,7,7,10,13,23,13,818,1706,2126,2513,2722,3187,3955,3033,2419,1594,1635,1658,1398,1461,988,1122,1210,1539,1806,1922,1247,949,893,1855,1540,1282,831,306,320,420,670,715,884,985,842,1050,1221,1239,1385,961,766,614,692,731,702,966,1315,1537,1432,1093,614,433,650,690,744,0,69,151,262,435,710,965,1222,308,496,678,1128,1772,2294,2768,3467,1392,2128,2274,2442,3056,4089,6722,7916,3851,3976,4006,2799,2856,3260,4140,4106,1379,1976,2458,2821,2934,2628,3156,2762,512,806,1258,1223,1549,1139,1022,653,661,746,989,1065,929,1036,826,595,524,941,1403,1882,3098,2822,2406,1707,2387,2176,2810,3121,4372,5180,5238,3752,5000,4376,3699,4442,4357,4334,2913,3319,2029,2793,3084,4817,6005,4315,4342,6805,2035,1844,1519,1433,1670,1347,823,478,12 +52,84,94,124,165,256,241,320,188,256,229,234,279,354,386,343,78,404,637,1060,1530,1766,1286,2191,2850,3546,3680,4388,6196,4938,5058,3482,10454,7318,5137,3890,5945,6336,5014,4191,5255,6476,6725,8554,9045,8378,9202,12976,5074,5696,5131,5144,5797,7589,9541,9943,7806,5833,4037,3304,2491,3509,4158,4782,3000,3338,2799,2224,2314,1646,988,1008,482,1496,2625,2889,2620,3394,5073,5460,3190,3010,2522,2267,2139,2021,1524,1192,677,610,756,584,475,390,226,116,0,5,7,10,8,14,22,27,21,648,1747,2301,2635,2846,4031,3768,3686,2692,2082,1721,1804,1351,1611,1098,1423,1564,1578,1866,2757,2232,1546,1478,2424,1880,1770,1084,482,725,1008,1355,1444,1378,1022,1070,1203,1410,1798,1812,2327,1867,1397,999,884,1203,1731,1972,1992,2212,2401,1596,952,1136,1221,926,0,74,124,234,442,728,1030,1070,854,898,920,1207,1266,2051,2274,2533,1570,1617,1784,2354,2396,4320,5250,5439,4116,3415,4316,3553,2556,3083,3487,3592,1326,2332,2314,2666,2694,2267,2090,2278,766,1184,1538,1780,1698,1442,1383,966,1016,1058,1279,1066,1122,1090,752,578,495,1102,1517,2322,2278,2004,2057,1923,2260,2690,3010,4668,4081,4358,4327,3914,4891,4744,3735,4706,4262,4930,4416,4426,2833,3548,3809,4340,4840,5014,5148,7168,3848,3768,2595,2524,2055,1398,1050,473,12 +83,95,86,75,171,254,268,236,276,271,246,237,250,264,210,194,46,452,957,1081,1825,1518,1878,1789,2717,2852,4240,3786,4750,4955,5158,4376,10835,6927,5854,4958,6478,6282,5166,4925,6066,5636,6989,5506,6501,6788,9158,13448,3983,3584,4232,4250,4810,5843,6297,7684,8722,5364,4102,3099,2260,3880,5346,6268,4256,3950,3090,2301,3111,2578,1670,1128,505,2037,2928,3428,2578,2679,4055,4098,3125,2962,2409,2696,2405,2067,1266,1062,629,836,812,656,683,466,237,134,0,5,7,8,8,18,22,28,29,556,1226,2225,2214,3268,3880,3453,3531,2699,2076,1928,1407,1466,1472,1017,1427,1599,1724,2543,3110,2264,2150,1468,2395,1695,1778,1060,537,1351,1854,2096,1840,1529,1232,1175,1352,1418,1867,2262,4348,3184,1753,1459,1010,1741,2152,2312,3300,2738,2979,2662,1393,1138,1448,1441,0,70,150,208,399,686,995,1090,1448,962,946,788,1225,1900,2338,2162,1534,1664,1700,2004,2179,2436,3464,4239,4686,4376,4110,4102,1644,2795,3428,3410,1404,1680,2302,2637,1600,1536,1861,2720,1225,1338,1736,2382,1754,1726,1689,1133,1380,1077,1158,878,1014,825,764,706,567,1540,2030,3265,2316,2215,2052,2216,2088,2018,2766,3107,3600,3439,3793,3332,4352,4337,4510,5014,5160,5988,4957,3734,2840,3750,4094,5148,4271,4808,5708,9182,6564,4691,4368,4416,1777,1676,1447,684,8 +132,128,96,80,100,154,242,200,222,218,162,182,189,186,142,124,20,486,820,1247,2190,2106,2357,2294,2575,3356,3566,4736,4451,4580,5516,5121,8905,6719,5854,4044,5408,4625,5962,4546,5389,5466,6665,4668,4380,5374,8267,9236,1710,1952,2474,3070,4274,4269,5009,6744,5170,4208,4277,3388,2006,3502,4448,6597,6392,5783,4880,3214,3088,2922,1985,1258,539,1916,2564,2938,3285,3578,2788,3712,2513,2304,2204,1764,1823,1564,1080,974,703,669,586,666,633,440,322,164,0,5,7,10,12,20,25,30,34,532,832,1604,1676,2726,3937,3530,2746,2349,2620,2006,1283,1196,1223,1006,1438,1586,1620,2706,2527,2547,2359,2055,1810,1732,2004,1341,718,1436,2490,2148,2138,2294,2102,1581,1186,1460,1801,2285,4268,3311,2445,1794,1091,2149,2154,2692,3287,3242,3387,3428,2538,2192,1707,1524,0,102,221,285,484,598,921,1147,1368,1206,1013,916,1138,2008,1886,2784,1279,1794,1689,2437,2920,3466,4364,3636,3737,3981,2927,3116,1667,2694,2890,3483,950,1326,1632,2148,1394,1400,1388,1726,1315,2166,2238,2352,2448,2112,1831,1281,1572,1438,1532,1356,1236,1008,755,778,554,1353,1975,3350,2828,2952,2606,3534,1406,2098,3238,3246,2906,3598,3395,3488,4525,4723,3294,4682,4647,4815,5474,5135,4703,4870,5150,3736,4136,5366,5806,8656,6950,7070,6052,4623,3121,2540,1912,1102,5 +172,178,198,178,196,158,185,222,229,239,209,173,93,71,54,26,0,426,841,1386,1536,2154,2288,2380,2536,2932,2974,3231,4097,3932,3269,4141,7287,5723,5666,3237,1402,2021,2406,3193,4852,4887,4580,5015,7267,7539,8661,6374,0,176,356,564,720,1286,2301,2886,3558,4194,3876,4881,4996,6557,6726,6386,9020,9632,10300,8260,7326,5288,3874,2546,422,1048,1357,2081,2195,3632,4262,4221,2267,1453,1011,908,503,870,976,850,1024,1059,828,746,688,644,398,231,0,5,8,12,11,22,29,34,31,738,1473,1745,2414,3842,4366,3968,2483,2129,1506,923,466,822,978,1253,1134,824,740,887,1067,1556,2458,2421,1720,1752,2415,2347,3403,2813,2899,2603,3414,2751,2677,3596,4769,3968,3454,3363,5292,5556,4165,5327,6326,6191,4907,4756,3409,3864,4552,4264,3702,2868,2281,1956,0,96,217,368,404,964,1435,1637,1778,1845,1304,1245,1129,2066,2634,2920,999,1062,962,1458,1748,1893,1870,3245,3603,4076,5502,5015,4786,4516,3909,3708,812,622,662,639,436,1198,1565,1545,1886,1441,1185,1468,1511,1378,1106,1176,1426,1177,1087,1415,1644,1409,1189,937,519,832,1471,2260,3964,4371,5043,4298,942,1633,2571,3145,2800,2868,2856,3650,3841,4090,3104,2920,3340,3773,5128,5395,5782,7408,6762,5564,6739,6663,8074,9540,9852,7768,6503,4701,3705,2784,1755,1014,0 +148,173,206,202,216,180,224,236,222,197,206,155,128,92,62,27,2,294,646,1200,1237,1788,1764,1872,1877,2354,2661,2776,3298,3116,2572,3191,7137,5147,3767,3145,1535,1840,2193,3382,3651,4270,4074,4763,5149,6369,8185,5060,0,245,352,765,748,1702,2650,3393,3654,3811,2937,3128,4237,5467,6078,7542,10336,10171,7855,7321,5520,4604,5240,3012,1948,2065,1922,2816,4134,4043,4573,4595,1522,1180,985,888,900,964,943,951,1028,869,857,732,576,504,346,172,0,6,12,16,22,26,32,35,34,637,974,1410,1805,2768,3571,4654,3426,2320,1418,1096,832,924,943,1169,2358,2060,1402,1657,1344,1748,2180,2690,1470,1569,2128,2398,2673,2462,2613,3180,4051,3116,3006,4136,3812,3595,3711,3196,5464,6236,5207,4087,5811,4956,4395,3302,2538,3366,4668,4183,3084,2554,2044,1610,0,96,199,310,445,842,1031,1570,1650,1719,1066,1002,1042,1373,2234,2610,1361,1660,1345,1551,1831,2112,2640,3680,3210,3880,3956,3502,3356,3922,4733,4736,666,662,522,621,353,972,1555,1286,1932,1678,1364,1606,1229,1278,1377,1214,1766,1711,1872,1441,1550,1158,970,808,521,792,1231,2292,3448,4311,3789,5092,782,1416,1912,2242,2154,2570,3783,3756,3204,3801,3481,2588,3913,4498,5592,6875,4886,5719,8496,8200,6928,7901,10068,15414,15263,13083,11664,7708,4797,4888,3201,2330,1540 +144,174,172,202,203,236,200,255,207,177,145,149,128,77,60,32,3,224,463,876,1511,1414,1852,2169,1606,2272,2559,2383,2248,2345,2870,2428,5915,5223,3536,2646,1496,1641,1872,2415,2776,3549,3886,4758,3805,3963,5027,3933,0,278,500,646,677,1664,2504,3339,2698,2164,2546,3003,4596,6412,6328,6031,9536,6829,7132,4744,6433,5123,4996,4204,4432,3644,2327,2859,5248,4493,4730,6642,1057,1154,898,699,1071,1063,871,896,881,710,640,415,591,422,246,138,0,7,13,23,29,28,32,34,30,459,881,1082,1459,2156,2326,3815,3252,2097,1800,1726,1000,1087,1351,1446,2843,2670,2134,2068,1974,2665,2608,1936,1160,1498,1775,2515,1830,1905,2852,3580,4548,4238,3167,3868,3381,3931,3328,2636,7645,6171,5003,4374,5546,3616,2580,1847,2661,3317,3972,4036,3608,2450,2278,1606,0,122,210,230,345,784,1116,1535,1025,1172,1240,1265,666,1185,1562,1754,1734,1764,1730,1790,2401,3060,3336,3931,2287,2862,2748,2836,3520,3954,4239,3880,742,784,614,558,313,694,1162,1104,1750,1798,1405,1802,1416,1789,1636,1521,2684,2380,2076,1578,1032,1098,1112,882,503,834,1407,2140,3151,3682,4066,4663,568,923,1324,1093,2576,3015,3673,4361,3343,4005,3744,3162,4793,4957,5518,6200,4843,5460,7734,7590,8456,13855,16102,20632,20141,18254,15122,9441,6753,6906,4893,3816,2924 +202,232,142,150,178,145,148,259,171,162,151,137,142,82,69,38,5,214,472,682,1430,1726,1885,1604,1840,1966,2121,2156,1762,1984,2338,1939,5574,5207,2845,2932,2289,2492,1845,2860,2720,2958,3012,3138,2528,2782,3196,2897,0,340,667,772,801,1362,2079,2194,2469,1946,1956,2970,4771,5731,6912,8068,8016,7246,8004,5656,6266,5684,4411,4908,5902,4262,3570,3477,5476,4434,4306,6268,1260,1284,1026,970,973,1063,604,628,904,595,481,350,314,275,208,92,0,12,24,27,44,34,35,38,29,379,980,1001,1496,1920,2085,2783,3750,2628,1992,1804,1534,1582,1432,1476,3532,2554,1776,1940,2557,2312,2208,2070,669,960,1208,1718,1481,2341,2995,3986,7077,5625,4156,4972,3955,3588,3298,3688,7592,7152,4195,3614,4891,4194,2613,2384,2913,3010,2806,2697,3034,2528,1814,1316,0,114,217,270,444,704,1054,1166,962,998,852,956,743,908,945,1207,2151,2272,2435,2434,2589,2860,3506,3536,1254,2226,2594,2610,2895,3278,4594,4326,502,510,588,478,401,745,856,988,1753,1406,1374,1400,1776,1564,1327,1466,2287,2592,2615,1739,1289,1293,1343,800,411,894,1194,1690,2434,3114,3260,4266,372,620,1195,1224,1730,2521,3231,3880,2326,3290,4488,4085,5227,6030,6398,7754,4756,6365,7248,7210,7564,15862,23973,25307,23159,17669,15273,10115,6410,6096,5297,5156,4043 +260,268,190,174,127,201,215,246,161,128,122,116,118,72,48,22,4,149,329,738,954,1388,1846,1821,2090,2204,1749,1646,1372,936,773,738,5415,5776,5160,4042,2797,2466,2717,2573,1781,1884,1600,2088,2150,1846,1273,914,0,244,495,672,915,1070,889,1205,1470,2578,3436,4205,4411,5973,9081,10774,6859,6360,4905,6255,6104,6430,5552,4638,6307,6047,5011,4927,5678,7986,8698,7228,1148,990,952,957,1060,1093,1048,836,739,568,384,255,168,155,114,50,0,10,15,28,45,44,54,65,17,384,800,914,1244,1764,2237,2394,4023,3697,2709,2634,1815,1506,1580,1526,3371,2560,2655,2524,2624,2810,2171,2190,328,539,894,909,1158,1527,1789,2840,7925,8184,9050,6790,6306,5850,7735,5566,8410,8722,7751,6416,2985,3139,2377,1977,2727,2265,1801,1936,1898,1931,2084,1788,0,90,180,306,394,588,669,857,872,1008,909,986,772,679,830,821,1968,2059,2919,2529,2810,3306,3194,2818,547,937,1775,2330,3228,3306,2735,2631,279,433,454,489,414,405,555,1034,1603,1410,1860,1555,1548,1549,1574,1269,2528,2638,2195,1979,1636,1132,1148,794,505,1057,1277,1708,2473,3357,3216,3626,198,467,654,1029,1334,2448,2952,2904,1414,2220,3876,3930,4598,6139,6500,8761,3403,3898,4452,5189,5570,10044,16185,19920,24950,21127,21348,13906,8331,8732,8943,7224,4934 +264,201,173,146,141,179,158,218,188,112,114,98,118,80,58,30,6,114,306,588,578,1132,1354,1314,1447,1384,1237,1024,1330,846,667,585,3832,4541,3480,2689,2032,1936,1980,1897,1090,1384,1230,1684,1492,1160,1077,714,0,175,393,506,693,698,602,1176,1046,1605,2420,3232,2933,5196,7614,10361,7532,6540,7056,7329,7794,7938,6683,6187,6462,5635,5974,5974,5916,6543,6230,7360,2033,2896,2169,2422,1918,1838,1410,942,502,412,338,174,176,135,111,52,0,10,22,34,49,50,65,62,32,332,542,852,1274,1570,2255,2230,2894,2904,2112,1934,1349,1538,1444,1719,3143,2866,3087,3166,2448,2310,2708,2463,398,699,849,1212,974,1658,1985,3062,7653,8897,8478,7915,5233,5132,5479,5448,8682,7408,5781,4852,2466,2340,2051,1543,2145,1982,1245,1642,1179,1580,1680,1596,0,76,122,194,295,454,488,645,792,718,724,834,1000,1064,978,758,1630,1722,2310,2543,3014,2889,2289,2444,572,1032,1292,1930,2634,2858,2541,2700,246,338,304,334,318,395,385,732,1219,1390,1299,1363,1421,1468,1552,1520,2325,2084,1848,1466,1587,1098,874,569,436,683,745,1206,1501,2201,2251,2888,116,326,538,754,1012,1508,1855,2256,948,1806,3169,3278,4324,5222,6220,9012,4712,6422,10277,11928,8814,12812,20807,31296,25722,28928,18144,18143,12857,11855,13726,12316,12089 +194,129,108,154,161,135,171,220,159,113,99,98,126,110,58,33,6,107,181,279,331,589,718,890,1108,1163,860,797,902,861,565,447,2021,2008,2114,2159,1379,1031,1053,938,816,1059,1066,1218,915,931,758,566,0,101,238,391,293,520,608,754,691,926,1554,2406,1941,4000,6374,8886,5860,6333,6992,7000,8546,10140,9697,5861,4959,6211,6903,7826,6287,5550,5138,5089,3783,3474,4076,3316,2737,2070,2178,1358,284,286,230,163,126,86,74,38,0,10,21,26,48,64,58,61,53,255,394,703,1040,1405,1552,1349,2382,2473,2126,1319,794,1034,1641,1857,2716,2270,2818,2744,2202,1968,2433,2027,648,707,1004,1640,1261,1956,2882,3018,6733,5853,7214,8106,3947,4522,4003,4552,8631,6025,5136,3306,2589,1726,1232,988,1806,1646,1208,1687,969,1456,1555,1254,0,36,84,122,248,374,432,539,452,512,527,547,945,940,1076,720,1867,1707,1446,1712,2289,2356,2394,2294,810,944,1091,1772,2488,2599,2274,2427,144,152,220,229,236,221,276,379,1144,1433,1298,1414,1310,1358,1616,1500,2163,1671,1329,1020,1296,1103,806,414,236,406,450,706,1065,1212,1532,2048,61,198,422,787,636,764,1220,1178,532,1464,1952,2884,3063,5397,6625,10116,5887,11172,18890,18074,12026,18582,30224,40808,36294,26032,18902,17653,19977,15624,14598,17871,16324 +184,126,120,161,193,156,178,181,169,118,121,91,113,83,52,33,6,43,108,145,191,288,360,492,597,526,480,364,437,387,290,232,876,969,1058,1009,726,552,631,504,354,474,582,620,528,526,333,251,0,53,105,186,141,223,305,432,379,571,1072,1555,1420,3426,5525,8938,4423,6876,7086,8149,8951,8958,11993,9060,7849,7558,6750,5642,4462,3961,4579,4967,4628,3956,3948,3828,2860,2530,2024,1206,232,214,171,147,108,91,55,30,0,12,29,36,50,59,63,64,67,272,402,635,980,1535,1844,1899,2524,2091,1794,1134,755,1154,1421,2190,2560,2448,2424,2506,2240,2518,2863,2018,1026,878,1174,1390,1283,2238,3317,3771,5190,5480,7418,5700,5128,5972,5238,4735,7714,6208,4458,3329,1706,1207,970,554,724,920,927,1126,895,1134,1651,1424,0,21,48,64,109,174,201,259,229,352,489,626,974,1016,1355,1234,1669,1421,1444,1562,1774,1606,1244,1641,994,1064,1122,1320,1891,1827,1832,1892,62,102,130,126,119,126,176,236,617,875,796,1210,1393,1378,1475,1692,1713,1418,1466,1168,880,673,549,304,194,223,299,354,457,568,910,967,26,104,213,345,360,444,700,704,237,828,1381,2074,2019,3332,4245,6924,6136,14894,26236,27980,23007,33378,33312,30328,35774,28618,18830,17451,24184,19180,17111,16296,19720 +126,109,112,96,113,127,120,102,61,63,71,64,54,44,23,13,4,6,6,6,4,5,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2535,4902,5449,7849,7269,9893,9724,4772,4716,3925,3182,1591,1305,642,365,0,117,211,387,617,1556,2386,3232,4454,3078,2790,2873,2737,2927,2194,1440,996,592,363,299,146,105,56,34,0,16,34,45,53,79,135,154,190,358,576,718,970,1224,1913,1906,2248,1506,1178,1130,879,1198,1391,1393,1298,1339,1509,1003,944,1056,1573,1451,1158,1716,2686,3005,3821,3944,4383,4356,6436,9074,8901,8959,8948,7981,6839,6395,4808,4001,3645,2611,767,610,530,277,82,140,159,198,175,712,1086,1131,0,20,44,80,93,121,169,154,151,379,537,690,913,957,1235,1302,1482,2010,2052,1761,2190,3252,3931,3638,3635,3321,2907,1814,1250,1418,1353,1444,0,0,0,0,0,0,0,0,0,134,320,529,769,1343,1663,1921,1949,1506,1547,1893,1735,1498,1035,622,0,0,0,0,0,0,0,0,0,1332,2790,3521,5052,5829,8526,8165,10216,10163,8593,7708,5606,6039,4782,5827,8467,9957,10786,9430,9853,15394,15863,21493,21924,18056,15136,16732,25184,22627,23025,17582,18619 +126,114,119,102,93,91,81,84,51,50,66,50,50,42,23,16,6,40,58,90,74,130,217,230,1089,1275,1176,1274,652,1144,1514,1892,410,617,574,638,650,524,339,200,362,506,734,692,724,710,988,870,157,202,187,237,152,112,104,64,8,1961,4109,4150,5852,6768,8151,7902,5598,4866,3593,2570,1284,983,776,470,304,512,693,886,782,1866,2783,2928,5560,3423,2751,3114,2968,2923,2220,1766,793,467,288,232,240,192,116,57,0,17,36,46,63,83,119,136,163,502,780,807,1320,1463,2451,2196,1882,1781,1716,1280,901,1141,1071,1017,1354,1166,1100,944,1072,1372,1366,1504,1003,1400,2500,2768,3756,4590,4516,6254,5999,8376,6044,6074,9270,9007,7930,5760,3640,3434,3490,3353,2204,1739,1420,912,423,450,473,474,476,1286,1642,1740,249,251,340,273,176,181,191,222,204,427,715,744,893,1200,1631,1976,1541,1683,2133,1982,1872,2305,2544,2746,3472,3307,2211,1850,1359,1318,1659,1566,51,71,87,96,122,155,217,216,124,240,309,610,763,1139,1273,1728,1764,1790,1679,1644,1237,1298,1024,777,165,158,177,191,92,96,91,44,90,1292,2312,3256,3650,4872,6232,9203,8698,9713,8430,7670,6242,5276,4877,5091,8891,9306,9501,9528,8710,12082,17202,16902,17260,19840,14977,14050,18965,18548,16558,14314,14214 +149,106,96,131,99,77,68,97,48,45,45,38,32,30,24,19,6,60,117,196,141,274,359,372,2386,2240,2224,1802,1620,3056,3544,4359,845,874,1274,1306,1363,867,608,378,714,1098,1286,1362,1536,1355,1776,2048,353,435,449,430,281,210,179,157,16,1360,2730,3150,4675,6363,8858,7107,4623,4250,3463,2592,1385,1253,902,627,564,772,1096,1792,962,2001,2856,3070,6949,6460,3868,2886,3123,2850,1960,1610,573,356,222,190,254,181,168,91,0,20,36,63,98,107,94,132,132,521,839,1343,1660,2032,2320,2344,1889,2173,1882,1554,1149,1117,980,800,997,816,728,727,972,1440,1544,1240,750,1377,1988,3016,4120,5140,5837,7471,7736,5408,5374,4309,9858,8968,8002,8144,3471,3632,3150,2706,3208,3026,2195,1370,880,789,848,726,622,1702,2228,2510,448,570,551,413,206,266,280,222,293,492,692,835,895,1071,1514,1866,1265,1654,1695,1456,1295,1757,2173,1815,2181,2287,1861,1600,1532,1614,1438,1303,109,134,188,178,241,298,373,363,243,358,447,908,1118,1219,1084,1280,1665,1968,1825,1946,937,1396,1419,918,298,334,338,328,224,206,162,103,199,1185,1969,2614,2547,4949,6640,7356,9900,8280,8690,6545,5800,5210,3470,2774,6764,7078,8842,11095,11822,12885,18176,17712,20951,22455,18202,12137,12574,15892,14380,10430,11241 +137,122,102,118,106,92,66,82,50,55,60,37,32,32,24,18,7,64,117,234,290,386,549,613,4052,3418,3165,2438,2535,3140,3470,5700,1100,1404,2090,1988,1836,1662,926,596,816,1755,2348,2156,2001,3108,3969,3618,626,613,687,592,388,350,302,184,28,1206,2311,3796,4358,5977,9148,8088,4572,4002,2557,2362,1418,1101,1076,738,592,969,1055,1719,1898,2730,2764,3667,7688,4891,4881,2898,2474,2305,2169,1502,430,341,195,190,282,236,192,98,0,28,44,73,131,133,136,157,181,534,858,1460,1868,1866,2533,2614,1576,1930,1677,1374,1075,1044,1199,1196,898,825,869,854,1081,1295,1483,1466,618,1215,2110,2545,3451,4632,4738,6583,5623,5966,6132,5126,8770,6953,6426,6054,2252,2910,4502,3726,5030,3563,2626,2375,1322,1052,1146,1194,1130,2103,2105,3255,865,912,677,588,355,352,386,324,398,613,707,843,1016,1224,1471,2137,806,944,1252,978,1129,1243,1311,1240,1865,1325,1245,1122,1162,1114,1218,1090,140,277,253,253,339,458,488,672,302,354,461,776,1045,1017,1059,1066,2471,1776,1704,1537,1196,1453,1308,1140,568,524,404,326,297,263,282,158,300,965,1505,2090,2880,3868,4595,7361,9202,9294,7355,6620,5037,4436,2582,2603,4365,5109,5487,8296,11162,13536,12892,15124,15304,13139,12276,11746,8754,11565,11142,11852,11322 +89,63,64,93,105,115,126,97,72,69,56,40,34,34,22,15,5,115,188,265,394,472,547,716,4579,5183,5332,4450,3872,4584,6147,7278,1736,1893,1955,2612,2462,2001,2065,1201,1166,2290,2754,2699,3333,3158,3666,3498,1004,1044,775,589,658,483,454,310,49,906,1557,3134,5046,5618,5955,6864,4232,3213,3481,3241,1972,1933,1476,1222,851,1336,1988,1856,2502,3159,3190,3693,6836,6688,5780,4191,2598,2712,2242,1547,387,446,468,361,380,320,240,126,0,34,55,96,135,176,169,170,177,677,1196,1288,1623,2057,2459,1922,1727,1834,1817,1478,1078,932,1026,1392,927,1194,1253,1054,1190,1451,1488,1240,431,1444,2053,2588,3052,3540,4663,5972,5857,7456,7198,7528,5723,5150,5267,7336,1935,3103,3457,3828,5427,4620,2514,2628,1324,1402,1691,1811,1858,2139,2473,2305,1041,845,757,561,576,552,348,353,371,498,789,1009,1184,1271,1269,1706,434,346,412,610,647,704,807,804,970,945,858,938,942,716,655,737,235,279,434,389,397,405,515,838,503,638,567,785,1040,1178,1165,894,3066,2135,1882,1884,1342,908,863,1040,881,776,415,499,474,408,276,154,356,616,1010,1716,2330,4297,5397,7539,10415,7304,5739,4500,3122,2055,1986,1599,3387,5248,6168,7271,7519,5825,7003,8371,10092,8474,5224,6792,7262,9136,10153,9311,12996 +120,108,102,128,100,114,101,116,63,62,63,44,43,28,22,16,6,358,706,910,784,1327,1748,2201,6661,6400,7620,4800,4529,5704,6588,9919,4180,3632,2999,2766,3068,2034,2080,1674,1312,2140,2280,4447,4479,4336,5032,7739,3229,2168,1675,1858,1610,1379,1210,702,80,636,1134,2090,3440,4009,3394,3935,3594,2824,3330,2698,2043,2164,1764,1680,1348,2068,1952,1914,3175,3453,3136,4475,6976,5820,5466,3096,2182,1862,1642,1326,624,669,643,370,550,462,294,124,0,42,88,140,170,210,214,266,259,763,1176,1360,1242,1599,2232,1856,957,1288,1093,1212,723,766,896,1101,757,1092,1003,912,999,1042,1217,986,754,1612,1640,2518,3894,4688,5274,7768,6126,6792,6769,6626,6548,5660,4780,8511,4069,4786,3172,4812,8077,8002,5240,3514,1647,2046,1787,1746,1596,2175,2125,1940,1027,832,937,728,484,440,474,382,470,670,917,1086,1388,1304,1459,2074,430,339,474,556,539,504,632,542,738,672,904,758,1133,990,561,766,222,266,440,428,420,462,633,778,630,757,843,1104,766,1007,1031,891,2834,2498,1654,1411,1468,1170,968,1182,1134,1006,682,620,606,552,411,212,543,784,972,1522,2008,4031,4405,6476,8992,7051,5327,3737,2803,1996,1616,1284,2280,3718,4880,5331,6189,5136,5063,7646,6936,5129,5296,5188,5772,5845,7690,6890,9891 +151,140,150,153,92,103,106,118,59,55,53,38,38,28,22,13,5,507,1128,1302,1542,1911,2916,3356,8389,7295,8304,4645,4797,5848,7377,10382,5665,4901,3717,3313,2923,1906,1696,1769,1218,1640,2405,4241,5434,5506,7460,9686,5343,3404,3057,3298,3332,2420,2265,1064,125,511,1046,1937,1815,1934,1922,1654,1925,2183,2602,1996,1597,1800,2660,2832,2483,2133,2715,2532,3680,3732,3546,3982,6790,5715,3939,2302,2202,2080,1352,1288,917,656,664,515,821,516,324,160,0,58,121,160,185,256,314,433,314,585,1134,1125,876,1331,1356,1248,644,702,736,830,640,578,530,803,844,900,1020,988,1022,1098,814,784,1230,1573,1832,2605,3574,4728,4556,9495,7466,7864,7831,6942,6798,5559,4969,7074,6507,5073,3862,5883,9942,7943,6890,4882,2187,2376,2018,1934,1738,1659,1520,1678,890,926,970,939,398,392,562,416,472,840,962,1163,1395,1391,1503,1966,286,392,388,386,271,302,290,252,331,449,727,726,1145,854,738,797,211,258,392,363,487,648,633,832,671,863,880,1217,843,621,664,463,2291,1842,1832,1801,1573,1777,1520,1048,1256,1007,942,659,943,798,412,195,737,843,1074,1442,2104,3193,3694,5376,8740,6910,3990,2344,1900,1248,764,795,2188,3606,4142,4471,4130,4614,4009,5240,3612,3973,3620,4933,2713,3594,3888,3306,3951 +155,146,155,146,83,88,101,104,78,72,54,36,41,27,20,14,6,598,1552,2654,3290,5094,5386,5354,8020,7366,9991,5714,4165,6857,8475,11971,5886,5682,5841,4076,3217,2486,1653,1698,2116,2740,2608,5224,6725,9528,10284,17216,5626,5647,4692,5113,4032,3354,2874,1432,189,428,621,946,768,1065,802,765,1220,1681,2024,1532,1466,2187,2696,2881,3498,3014,3291,2702,3878,3852,3903,4943,5932,4253,3435,2135,1912,1840,1476,1134,761,710,800,692,904,522,299,126,0,70,165,186,265,330,347,445,364,556,870,961,1024,1328,1159,1358,270,385,392,414,394,412,382,538,825,858,888,780,790,754,431,395,2012,1765,2003,2752,3512,4502,5196,9982,6928,6354,6284,6142,6924,5336,6147,7897,6714,7315,5590,7224,10742,8506,6187,3968,2494,2200,1826,1940,1469,1382,1403,1813,1234,1024,778,632,437,558,700,614,595,759,896,904,1254,1138,1284,1704,404,413,444,352,182,184,185,150,195,400,500,702,973,694,832,975,266,286,443,420,467,601,986,1094,1098,976,612,868,969,622,482,376,1982,1829,2288,2006,2029,2372,2350,1704,1684,1528,1426,1202,1126,774,568,336,898,1037,1253,1290,1532,2450,2172,3356,5129,3956,3140,1782,1101,776,514,398,975,1462,1791,1972,1890,2302,1891,2168,1951,2264,1954,1848,1621,1845,1953,1434,1593 +187,233,241,204,163,151,128,115,104,85,38,28,17,16,13,11,5,1747,3828,5816,7349,6215,5829,6994,8706,9705,8641,12651,18377,13699,10491,14075,7659,7202,5680,3655,2168,1711,1865,2157,2822,6478,9255,13613,14013,12303,15536,21901,6938,5926,3328,2682,2396,2086,1485,955,206,202,238,182,147,126,70,30,272,819,1506,1968,2828,2725,2414,2376,3492,3721,3899,4049,5470,4748,6396,7026,3964,4179,4307,4284,3059,1844,1386,1120,950,765,608,357,119,95,54,24,0,41,78,102,166,168,214,306,523,657,824,870,906,950,793,913,0,49,92,152,207,294,336,598,814,729,544,482,297,260,137,62,2289,2953,4119,3624,3696,4464,5090,7204,8375,6355,6383,5238,6442,8455,10960,8285,8823,9426,7720,6740,4950,3154,2527,3122,2954,2501,1838,1749,1874,2292,2431,2494,1310,1823,1741,1510,1325,1324,1181,846,820,850,674,969,1234,1136,960,1110,393,384,317,186,83,67,59,34,0,208,441,570,722,698,983,900,390,591,812,841,990,1073,1319,1283,1194,1177,894,551,399,273,234,104,1532,1521,1221,891,650,993,1052,1413,1790,1446,1467,1023,560,412,344,161,859,1072,1506,1740,1888,1828,1916,1796,2118,1698,2007,2136,1818,1202,783,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,148,194,214,138,140,130,139,126,100,51,46,26,20,19,12,5,1600,2865,4802,4835,4811,6572,5852,6016,7476,8462,11404,16429,14294,10761,13772,11965,9464,7356,5464,4612,4179,4632,2964,2828,6233,9136,11312,18148,23407,21589,34114,6571,8413,8046,8654,7403,6911,5887,4208,1068,1208,1152,1490,1657,1292,1318,731,235,1020,1399,1938,2564,2210,2138,2788,2905,2824,3316,3642,4419,4483,5324,5459,3154,3952,3125,2838,3580,2316,1346,1208,944,686,446,302,153,131,73,46,0,49,120,136,225,262,314,411,438,708,838,868,1011,1071,966,984,406,398,470,572,614,926,1631,1530,1656,1516,1195,960,747,658,434,433,3166,2893,3805,3494,3718,4260,5444,5690,5201,6188,6252,5451,5509,7529,9120,8767,9529,9092,6607,5382,5168,3858,1964,2686,1888,2429,2075,1768,2273,2698,2966,2994,1708,1430,1792,1857,1583,1403,1316,909,1144,1017,874,1044,1342,1162,1036,1206,310,327,341,209,106,92,92,61,51,224,421,454,678,732,773,750,353,694,901,1100,1080,1358,1314,1554,2001,1724,1428,970,878,582,534,304,1496,1740,1471,996,654,768,1202,1363,1697,1424,1442,1110,836,602,501,288,906,1147,1297,1350,1574,1636,1304,1918,1737,1652,2042,1729,1920,1293,494,279,0,199,456,592,640,568,650,570,440,542,662,795,1044,1228,1465,1630,2132 +93,125,119,119,162,130,122,145,122,82,75,54,27,24,18,11,4,1294,2460,3240,4542,4036,5297,5814,5524,6591,8724,11260,13614,16581,16058,15398,16723,13605,8055,6831,5967,5496,6076,5522,3183,7219,11650,14267,17651,22535,37376,42319,9190,11653,15017,13220,9956,11527,9562,7807,1713,1791,2199,2488,3484,3569,2545,1769,266,771,1081,1601,1751,1930,1492,1978,2240,2505,2038,2908,2652,2726,3527,3476,2462,3264,3224,3003,3017,1834,1500,902,1075,756,486,313,210,182,124,72,0,59,132,164,272,317,370,488,360,540,960,1198,1122,1304,1204,1234,690,809,842,1348,1072,1720,2592,3213,3242,3201,2129,2099,1192,1108,888,624,4074,3893,2468,2384,2708,3777,4180,5121,3373,4915,5198,4360,4391,6450,8804,10035,9226,6084,5118,4091,5073,3557,2298,2092,1576,2168,2060,2711,3048,2805,2764,2859,1685,1718,1476,1559,1566,1522,1100,1076,1346,1413,1092,1460,1211,1322,994,1334,266,271,296,264,101,122,105,74,93,210,392,350,443,375,424,444,243,556,1136,1269,1124,1735,1865,1749,2854,2570,2050,1379,1276,848,800,659,1747,1560,1367,1034,689,718,971,1078,2368,1662,1427,1152,930,917,728,377,1120,1247,1102,838,1362,1063,1160,1484,1793,1415,1429,1238,1483,1028,422,195,0,392,814,1104,1095,1408,1350,1279,736,1046,1124,1454,1945,2297,2628,2973,4699 +66,92,113,121,145,126,104,115,137,85,60,53,36,34,23,16,5,1008,2229,2758,3870,4050,3444,3853,3162,4904,6195,10134,14001,12607,17643,18002,14670,13584,8418,9736,9374,8488,6386,6676,5620,8963,14896,16184,19614,22642,32066,45810,13388,15773,16982,19110,17600,18557,17131,11179,2502,2746,3766,4455,6499,5845,4689,3635,255,648,929,1170,1386,1719,1291,1664,2001,1810,1513,2029,2083,2746,3761,3352,2447,2586,2513,1978,2232,1608,1662,1067,766,664,467,382,287,194,177,72,0,86,152,207,315,364,381,454,490,652,842,1006,1308,1199,1398,1525,1161,964,1000,1284,1381,2360,2439,3808,3200,3244,2472,2442,1418,1306,1331,1050,4030,3366,2414,2501,2741,3117,3202,4928,2492,3988,5254,4836,3859,6357,7198,10121,7708,8545,7373,6508,5982,4326,2383,2217,1870,2685,2515,3416,3439,2594,2260,2794,2264,1771,1491,1700,2011,1662,1304,1088,1636,1634,1209,1546,1380,1490,1464,1412,147,150,254,196,148,148,190,157,124,250,311,354,477,418,389,424,161,535,1060,1632,1468,1738,1766,1831,3569,3528,3185,2504,1576,1298,898,656,1229,1356,1326,1101,970,863,828,948,2233,1729,1249,1290,1662,1188,833,480,1072,985,967,694,940,800,628,724,1964,1984,1470,1316,894,658,270,158,0,552,1439,1581,2201,1944,2049,1458,986,1704,2261,2216,2684,3062,3142,4673,6439 +43,51,66,85,96,124,129,104,107,100,87,72,48,43,34,21,4,852,1457,2807,3412,2573,2501,2634,1721,6425,10047,13223,13784,13056,11617,21239,17471,19445,20871,14004,12494,9003,6284,6024,7234,11109,12474,16058,21432,30849,32756,48554,15649,17964,25386,28671,29025,26906,19939,12385,3212,3371,4296,5304,7834,7306,7025,6033,167,256,447,703,855,731,938,1360,1189,1896,2317,2631,2296,4078,4610,4260,1730,2054,2625,2873,2206,1958,1690,1444,665,464,370,409,321,294,184,86,0,49,118,203,320,279,369,505,470,748,955,1220,1195,1608,1679,1734,1312,1859,2260,2562,2161,2708,3903,4388,4377,3966,4100,3479,1922,1743,1727,1349,3572,2875,2677,2154,2084,3690,4213,6060,2822,2429,2851,4781,5160,5284,7499,9323,9208,6230,5317,5520,5327,4047,3424,2572,2254,3164,3336,3278,2940,2537,2258,2661,2500,2656,2945,2298,2356,1935,1855,1650,1434,1226,1249,1728,1748,1642,1511,1240,41,72,94,161,179,193,172,176,142,236,275,360,488,369,243,263,88,401,641,1355,1670,1646,2186,2186,3698,3143,4084,3713,2294,2474,1850,1116,1086,1257,1472,1087,1175,1063,732,647,1923,1977,1635,1625,1927,1516,1173,616,1050,1062,985,862,492,431,280,342,2344,2035,1687,1129,600,335,222,123,0,808,2005,1963,2863,2972,2641,2609,1407,1806,1973,2567,3336,4214,4764,6388,8390 +60,66,61,90,76,102,112,100,85,84,58,56,47,38,33,18,5,580,1193,1961,2424,2205,1624,1953,1268,5366,6268,8476,13278,13395,13806,22746,16453,17798,15995,13481,14240,11354,10460,8778,12771,13382,17470,18092,27214,27132,26790,35166,21758,21050,25070,32839,37866,33838,30032,21968,6362,6562,7514,8012,8264,10642,10158,6525,119,244,343,506,745,698,901,1440,817,1134,1744,1726,2019,2607,3582,2798,1164,1595,1570,1652,1594,1358,1258,853,393,297,341,284,213,198,104,62,0,71,121,226,291,338,425,457,527,674,930,977,1074,1223,1295,1392,1774,1913,2726,2644,3088,3314,4536,4396,4490,4297,4472,3476,2716,2425,1419,1512,3432,2325,2721,2154,1669,2808,3910,5296,4351,3190,3226,3597,4756,5980,5607,7736,8534,6765,4927,5228,5136,4596,4300,3326,2364,2892,2731,3066,2489,2134,2193,2244,1760,2228,2054,2108,2340,2319,1636,1852,1302,1166,1243,1500,1577,1252,1012,939,36,62,82,137,142,172,194,156,208,243,202,340,339,252,235,216,170,434,781,1245,2187,2341,2345,2092,3694,3935,4167,3182,2302,1814,1573,1384,1455,1679,1394,1408,1487,1192,1557,1346,2938,2488,2726,2528,2820,1986,1724,936,780,862,832,699,549,496,435,398,2293,1721,1339,884,433,356,175,115,0,950,2161,2486,3086,3294,2937,3236,3330,4378,5202,5984,7027,5439,5556,6581,8354 +72,75,66,79,70,72,90,84,45,44,52,54,40,38,24,15,3,325,795,1139,1848,1922,1549,1845,742,3092,4412,5715,10920,12887,15582,18943,10738,11819,14460,15045,13960,15275,13042,15439,14439,14000,20501,26242,25698,27998,33648,33805,36034,35617,23894,39879,54431,38474,35865,19332,7642,8546,10044,8174,11705,12590,10300,9556,62,175,326,438,513,654,664,928,604,871,904,889,1157,1920,2324,2361,767,864,1076,1377,1148,1040,686,532,223,240,222,194,108,77,70,38,0,86,144,272,189,309,379,316,541,715,808,1222,785,884,1314,1398,1928,2163,2344,2312,3303,4012,4252,4469,6089,5749,3724,3016,2938,1742,1381,1544,2443,1881,1930,1876,2024,3087,3884,5558,4765,4763,3684,3848,3421,5501,6028,7260,5993,5199,4456,4960,3612,4381,3817,3797,3625,3645,3446,2983,1673,1932,1650,1971,1326,1568,1835,2471,2294,1875,2204,1591,1472,1440,1262,1324,1343,1149,759,783,22,40,72,154,142,152,154,173,237,242,204,326,254,224,250,226,306,461,741,1190,2317,2517,2005,1880,4396,3870,3034,2461,2382,1832,2042,1823,1732,1428,1762,2068,1914,1896,2150,2617,3177,2607,2950,3341,3194,2932,2290,1680,840,888,740,715,499,540,518,382,1798,1869,1320,833,368,231,170,88,0,1200,2146,3197,3058,3292,4406,4552,6579,8243,7632,8868,11471,7807,6016,7640,7385 +82,68,60,72,56,62,72,64,38,46,44,41,36,26,20,12,2,192,400,578,861,926,645,856,357,2026,3638,5497,7006,8018,14228,19450,11287,14782,16138,15640,13577,13504,12964,14385,17274,20602,23814,27126,20476,29628,37949,41728,35020,32875,32029,40682,61726,46436,41962,26824,14561,11890,8380,11862,11868,11331,8044,6861,27,88,180,236,289,290,306,396,320,332,386,412,502,866,1150,1152,461,474,618,684,615,446,280,262,98,128,119,96,57,46,38,23,0,82,166,213,215,280,296,336,498,632,711,974,864,892,1199,1275,1728,2430,2773,2718,3282,3252,3931,4214,4197,4579,4307,3170,2680,1710,1633,1652,2486,2152,1634,2126,2682,3099,3171,4387,4788,4430,4078,3434,2223,3020,3751,4998,5284,4654,5660,5486,3527,3438,4122,3832,3802,3963,3901,2547,1597,1552,1419,1676,1726,1500,1341,1803,2000,2282,2284,1940,1630,1518,1592,1086,978,828,510,462,11,41,96,142,198,191,191,204,189,189,242,230,216,218,261,216,337,508,806,1170,2151,2107,2697,2502,3834,3146,2805,2482,2250,1804,2249,1558,1514,2081,2454,2198,2172,1888,1858,2333,2948,3320,3412,3197,3577,2718,1887,1638,863,758,616,698,565,662,616,446,1178,1203,723,487,356,263,178,84,0,1347,2859,4158,4975,5664,4760,6654,7957,9852,9294,9638,15084,12824,8001,8792,8468 +64,2122,4177,5746,6026,6539,9546,10042,8374,11374,15283,14883,18564,15097,17178,18928,15405,12864,14754,12678,8076,5086,3263,1726,0,2545,5672,9741,11801,15814,17196,19674,15750,11460,5709,4930,2767,2118,1318,739,0,3455,8092,10282,15128,15677,15704,30115,36363,40917,33575,21326,15700,14476,8500,4772,0,574,1343,2504,3022,2804,3933,5977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,137,148,204,239,304,410,522,535,450,415,439,381,368,392,487,450,288,173,85,69,57,24,0,417,802,936,1199,1046,1046,1299,2692,2444,2053,1474,1132,1347,1599,1699,1990,1774,1973,1438,1427,1192,658,379,0,118,280,371,452,516,458,475,540,688,677,583,715,829,923,1241,1629,1159,1060,943,792,845,717,566,326,403,647,774,917,983,1305,1400,1125,1140,1159,1004,811,790,645,433,406,338,171,163,151,169,200,217,406,577,612,464,502,508,459,404,275,293,273,258,181,348,442,618,799,1120,1101,1153,1411,1276,1252,1204,868,1100,1106,1088,1439,1719,1474,1316,822,1330,1913,3203,4694,3560,3180,3872,5517,5380,5022,8037,10889,17820,18835,17311,17114,16494,11589,13362,12851,11574,14544,12831,9098,10344,8921,7380,4179,6946,10286,12024,12155 +64,1810,3392,4875,5031,5951,7883,8948,8529,12400,15981,12696,12954,11986,16481,12903,14035,12805,11621,8706,5318,4770,3577,1976,235,2242,6157,7142,10551,12606,15695,14321,17470,12638,5142,4940,2746,2631,2678,2737,1959,5862,10708,13844,18966,20629,25139,28784,44892,34770,23458,18882,14269,11911,7703,3888,412,1070,1828,2243,3484,3212,3963,4891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,199,323,377,472,711,870,600,638,692,650,440,612,504,604,460,462,455,352,209,261,354,279,346,1135,1929,1972,2086,2252,2198,3040,3186,2752,2491,2112,1687,1688,2042,1931,1700,2232,1626,1909,1308,1008,529,324,0,98,230,277,372,458,489,478,469,528,514,568,852,910,882,980,1404,1110,1002,813,615,742,596,462,294,512,700,941,921,1137,1194,1228,1084,1192,1121,906,643,512,456,406,509,406,254,232,157,150,172,170,327,668,687,748,1054,1484,1667,2380,2686,1792,1184,1079,1094,988,870,1188,2338,3250,3802,5681,6868,7087,5912,6746,4492,5099,3865,4418,4680,4594,4002,3294,1102,1718,2553,4394,4565,4040,3721,4343,4565,4497,4682,7884,10848,14768,12706,15922,23733,19858,19355,13278,10920,11054,8655,9633,8850,9620,9237,9058,5925,10266,12020,11440,11766 +56,800,1864,2582,4223,3982,5176,5060,6654,10766,11606,11158,12811,12120,11794,14475,13148,9842,10708,7970,5104,4404,3090,1803,452,2903,4695,5242,7608,9486,10846,11209,14729,9024,6094,5852,3269,3801,4642,5266,3418,8196,12938,19001,18356,21720,29334,40980,38520,25448,24490,18993,19502,16168,9558,4933,970,1238,1791,3220,2884,3029,4114,6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,271,507,469,709,1023,1367,677,919,916,1050,646,701,816,1040,654,559,524,575,368,592,648,530,677,1925,2930,2696,3116,3006,3128,4003,3327,2792,3094,2278,1990,2120,2496,2262,1971,1838,2008,1700,1514,1048,611,357,0,64,120,205,318,391,430,418,373,372,528,804,719,1027,994,948,1727,1203,1024,1143,686,581,483,446,170,480,647,759,1112,1183,1001,980,1005,812,929,736,600,418,380,355,472,449,366,335,197,160,124,108,407,764,876,1066,1741,2757,2890,3309,4429,3451,2204,2187,1799,1507,1434,2027,3626,5140,7519,10159,12513,13065,12598,13002,8456,8588,7421,7847,6384,8010,7161,5654,1295,2339,2754,3927,4395,4556,3842,4777,3734,3998,4122,6132,10536,11200,11985,14089,28398,26046,21118,14310,13419,8410,6984,5086,9465,10736,9790,7702,8792,9272,13754,11366,11305 +39,570,1298,1606,3298,2990,2554,3020,6821,8020,7818,9562,10534,9834,7522,9947,14030,11128,11103,9144,6296,6675,5470,2872,584,2540,4047,6114,5990,7692,7625,7535,9152,6553,4119,5376,4628,7266,9283,12134,5639,12829,15246,24704,24541,25153,30253,40327,43382,40833,30003,21678,16554,14686,7338,3806,1315,1316,1666,2510,3274,3608,4016,7682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,273,583,504,1009,1294,1584,480,696,779,1076,1260,1114,1308,1765,907,724,768,748,672,750,820,842,797,1914,2930,3194,3956,3647,3262,4934,4160,3905,3835,2965,2342,3146,3330,2985,1258,1502,2127,1978,1681,1176,684,384,0,55,78,124,218,304,367,340,403,529,714,822,762,914,812,1030,1770,1514,1350,1122,780,624,498,404,131,337,522,708,831,810,700,866,946,875,826,538,416,424,413,260,451,408,326,246,202,146,147,112,291,807,1046,1649,1818,3288,3731,4710,5767,4133,3658,2878,2180,2164,2455,3602,5999,7269,8816,12374,15680,17380,19617,18526,18002,13128,12205,10190,10366,11988,12038,9407,1035,2256,2746,4340,5202,5324,6262,5820,2853,3702,4783,5751,7104,8743,8544,11996,28947,28290,20009,16376,12215,8628,6251,5067,6547,7374,8761,7276,9165,15010,15250,18838,20150 +36,317,736,874,1398,1793,1794,1278,7597,5332,5206,7421,8712,8451,6700,6606,21187,17039,13466,11055,8532,6642,5468,3618,651,2253,4217,5336,5506,5219,3567,3126,6972,6260,8074,7437,5288,8178,9269,10994,9254,20566,25252,27424,35173,53516,57308,57967,57543,44551,41989,29646,14874,13005,7239,3708,1468,1751,1984,2586,3072,4011,6130,10286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,244,608,786,1431,1667,1707,500,761,798,1032,1488,1682,1529,2146,1104,1454,1350,1389,1088,946,1132,942,1030,2551,3748,3835,4530,4523,5282,5970,4710,3386,2909,2623,2880,3088,2446,2136,1153,1260,1124,1027,1394,977,864,388,0,22,45,82,96,99,136,281,456,581,655,793,707,1000,994,1176,2516,2361,2113,1475,1020,904,546,356,123,246,432,593,690,486,415,400,810,786,670,451,403,402,353,272,400,343,247,243,184,146,112,125,191,807,1162,1587,2456,3058,4128,7288,6120,5471,3973,3391,2736,4836,6150,5241,10262,9266,12004,16483,18367,19797,17951,19353,21921,23364,23178,19523,11770,12054,13096,12759,1174,1918,3381,5414,5882,6226,6843,7508,1737,3222,3953,3951,4538,5719,8580,11456,37820,38257,31328,18337,10954,11412,8583,5815,4784,5136,4791,5993,8940,12999,18832,19322,22809 +26,402,896,1312,1067,1352,1532,1522,4803,4680,3399,5278,8318,7058,5539,5990,19118,18138,17502,12224,12320,7336,5054,3530,1432,2876,4429,4554,4340,4787,3809,4973,5967,6196,6491,8364,10149,10546,10877,16180,9228,14246,18254,26426,37077,44815,38335,41908,51628,42332,36629,25024,14230,12108,10126,5404,1560,1562,1526,2218,2667,4660,5851,11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,355,828,974,1340,1908,1890,753,1172,1277,1499,1356,1886,1785,2803,948,1342,1648,1528,998,1078,1510,1399,1395,3118,3854,3956,5331,5126,5304,5652,4567,3170,2413,2893,2436,2458,2581,1759,966,1144,1154,1260,1410,954,787,510,0,20,32,72,78,96,119,185,351,438,478,592,536,504,751,711,1710,1698,1920,1494,969,648,397,238,122,223,352,440,728,945,775,822,514,517,477,401,340,355,232,169,390,272,254,223,160,148,105,112,178,626,851,1426,2447,4092,4778,8362,8534,9474,8416,6496,7355,9672,9067,11152,10949,13652,13020,17194,26033,24068,22706,20386,21659,24021,25803,17271,10455,10774,12688,11328,2137,3235,3348,4865,4078,4532,6295,5286,1734,2753,3627,3464,4261,5173,7966,9124,55060,43104,33557,32636,19850,20523,15472,11424,7608,7466,10484,10620,11336,14827,15538,17403,19377 +23,486,980,1665,1094,1060,1506,1861,4256,3406,3267,3267,6334,6570,5847,5571,22172,18111,16530,15771,13868,11396,6996,4182,2803,4081,4145,4001,5324,5886,5686,7479,4375,6304,6324,8078,11803,13737,15884,18276,13616,16980,19064,27970,32145,31680,28794,31236,56852,37762,32238,20303,17016,16695,11055,6092,1282,1520,1452,2759,2899,6353,8352,10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,488,734,1210,1395,1752,2068,991,1542,1954,1576,1373,1832,2482,3213,1256,1319,1426,1452,856,1153,1472,1527,1361,3434,4678,5056,5902,6260,5482,6122,4642,3552,2602,2524,3085,2148,1932,1810,1144,1446,1436,1204,1012,1082,834,668,0,16,30,46,49,66,76,122,152,258,291,260,218,313,324,445,1658,1686,1548,1135,831,675,296,165,87,206,318,501,744,946,1193,1209,373,380,452,391,227,187,162,140,316,312,223,141,113,124,130,143,124,508,880,1093,2637,5054,6782,6577,8275,10036,12422,9994,10593,11959,13898,18370,12756,14961,16416,18145,35884,30315,24888,19172,27372,23362,22329,19256,13599,15195,13139,12855,3797,4032,3798,4915,4122,3852,3668,4484,1226,1512,2360,3252,4351,4755,6976,8237,55950,54194,43920,44106,34660,25213,19467,17953,13140,11592,13304,10246,18846,18801,15092,12743,13920 +12,461,1049,1636,1552,1449,1468,1647,3427,2828,2180,2356,3273,3827,3956,4838,26952,25816,25586,21216,14278,11702,9629,5511,2695,2998,3651,3391,3261,4198,4624,6176,3121,5490,6760,9798,10438,14736,18776,20006,15762,17574,19457,24026,45345,37302,25546,36322,54154,36607,23605,23263,15271,13544,9571,6265,1736,1521,1717,2696,2808,5845,7410,10753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,469,758,1138,1763,2275,1963,1353,1840,2307,1726,2143,2418,2977,3500,1426,1530,1458,1389,1288,1568,1896,2232,2112,3738,5137,5851,7947,7440,5591,6124,3166,2570,1978,2195,2022,1901,1747,1420,908,1016,1318,1194,900,1066,676,636,0,9,17,22,29,34,36,54,94,116,144,150,125,152,135,198,1826,1494,1162,1165,863,640,353,195,51,191,247,347,511,793,1111,1622,255,232,242,217,202,176,123,118,196,203,182,141,135,128,104,112,177,594,964,1546,2234,3668,4997,7720,11562,13416,12304,14278,13164,18544,19204,19319,16747,23735,24505,27624,31879,33743,32852,24237,24362,19192,18613,16184,13749,10588,11322,11435,4876,4589,3049,3316,3021,2980,3064,2962,1526,1710,2473,2689,3874,3988,3824,4351,40714,59503,64262,57186,41356,38374,30441,21167,15883,15314,16130,15258,18065,18754,22562,18780,17009 +0,61,149,217,323,847,1519,1651,2152,3187,4715,6017,5432,5664,6529,6119,28265,25154,31076,24890,17569,16738,12501,8883,3866,4114,4620,4527,3048,4350,6273,6260,2652,4703,6006,9528,12794,16956,16796,20480,25025,35652,47832,49170,51062,49419,48260,45092,44163,45256,49298,48770,39238,24573,12631,8681,1838,2086,2752,4428,5433,6154,5073,6977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,407,622,996,1485,2036,2166,1938,3592,4085,5131,5186,6098,5893,4247,2170,1373,1128,927,843,896,1367,2413,3160,3748,4876,4713,5966,7959,7532,6971,2944,3491,3408,2572,2396,1585,1171,847,520,576,530,488,493,598,547,568,0,2,3,5,4,5,4,5,4,6,6,6,4,5,3,2,1576,1400,1138,1276,1136,898,709,375,0,135,328,632,792,1237,1586,1632,75,100,165,167,188,159,141,148,169,158,101,93,121,113,150,110,183,1080,2056,3393,6331,7706,9113,12819,12705,15149,12684,15109,14628,14974,20148,17477,20786,15352,10929,9051,9144,16105,18829,17325,23898,29645,38444,33172,31470,24776,23064,17760,7082,9344,8678,7986,5725,4054,2941,2665,2191,2044,1668,1565,1690,1194,1247,1294,42891,40277,52577,42393,48325,37762,33690,21181,15662,14220,17488,16676,14286,21018,21533,16581,16998 +0,202,378,531,534,1129,1417,2010,3028,3882,4318,5720,5615,5920,5278,5373,31591,23290,29055,22547,16219,15696,9492,8176,2958,3086,4146,3226,2575,4003,5292,6191,2086,3612,4489,8360,11128,11330,11749,15599,18905,28156,30678,38304,40543,38414,41471,35369,43382,45582,47578,44864,28833,19985,13072,8269,2434,3039,3618,5496,5995,5798,5544,9270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,464,752,715,1323,1996,1670,2526,3449,4154,5010,4966,5521,4818,4188,2818,2757,2637,1704,1929,1954,2126,2902,2966,4000,6030,6644,7744,9396,8967,7074,2000,2670,2494,2024,1664,1794,1004,1035,391,504,622,516,656,556,453,504,144,149,148,139,161,104,50,40,8,44,61,85,110,144,279,296,975,852,768,871,758,630,453,280,0,154,263,550,628,1072,1132,1244,244,232,232,243,218,196,183,188,162,142,111,108,119,130,142,120,182,1684,3809,6123,7621,8286,9709,15062,11398,13413,13903,18466,19384,23536,23198,21412,19896,16650,9457,10290,7976,13550,18937,20601,37866,33836,36651,29346,41094,34996,27645,19066,7729,8630,8359,6776,6177,5270,3208,2952,1700,1916,2254,2594,4006,2997,2917,4402,56444,49884,45324,40874,43050,34959,32966,20486,11248,12927,16958,14206,14238,15069,15699,14485,15149 +0,342,590,915,873,1083,1814,2478,2965,4477,4528,6074,5050,6332,5794,5880,25983,21790,20532,14492,12989,12275,10120,7681,1960,1994,2816,2558,3241,4006,3473,4358,1662,3272,4072,5074,6042,7466,9992,10670,13593,19614,24048,33180,26556,28196,22838,21502,42756,45127,35826,23577,20804,17415,10949,6795,2278,3396,4372,7902,8639,8124,8002,8520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,436,635,751,932,1430,1258,2416,3134,4830,4581,6073,5924,4442,3281,4575,4440,4244,2654,3286,3841,3123,3718,3290,4046,6785,5359,11395,9268,8100,6089,1326,2008,2051,1662,1745,1301,1153,930,307,582,770,806,990,681,501,380,243,240,334,279,308,170,96,46,11,73,136,172,261,376,475,609,702,696,592,692,669,555,362,211,0,108,214,563,743,1004,954,1225,346,247,245,266,272,271,181,198,105,120,101,121,77,125,136,119,220,2419,4802,6277,8060,9181,14109,17060,6540,11964,15604,16119,22462,23910,23382,19742,17288,13014,11438,11311,9381,9674,12773,16959,45008,40926,34047,38300,47846,35556,23064,16570,8040,8088,5960,4464,8662,7516,4335,2509,1425,1700,2376,3562,5810,4344,4484,6859,56168,60824,55168,51818,45538,29594,27386,24867,8892,12118,14878,13386,9875,10709,12278,15355,14589 +0,367,708,1240,1309,1566,2583,2996,4725,5490,4597,6426,6532,7318,6710,6829,15638,15868,14983,14903,13160,11689,9103,7916,1184,1686,2129,2396,2476,3255,3388,3758,1238,2148,2722,3729,3475,5680,6407,6132,11063,15465,14912,20586,21084,21380,20159,25248,38798,32167,26895,19976,20620,15654,8512,6158,1839,3258,3536,5988,9742,8732,6224,8785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,266,428,484,751,897,1072,2505,3188,4897,4782,5819,5553,4111,4242,4500,4470,6027,4422,3816,4475,4293,5190,4204,6384,6979,6554,10067,9607,9884,8286,1113,1317,1556,1196,1147,916,837,903,352,592,925,942,1277,789,547,466,466,548,569,453,402,272,139,72,12,106,214,308,334,538,674,974,714,565,599,564,478,490,381,182,0,111,206,507,500,570,640,1004,451,381,260,322,272,233,158,169,89,106,92,105,67,96,123,114,382,2964,5030,7746,9942,10471,11670,13415,5390,10520,14721,17054,22725,21138,22460,22112,13322,10860,9044,8875,7183,12584,13659,16196,47806,52578,39739,38540,39581,34374,22720,14492,7485,7460,7405,6324,6571,6500,5022,2728,1071,1992,2532,5224,8208,8750,8008,10676,57376,54661,40837,40405,36386,29150,23577,19384,5912,9458,9261,10254,8718,8370,7748,10582,11776 +0,516,986,1828,2394,2186,2566,3577,5586,7429,7365,7186,7556,8607,8875,9046,9780,9356,8899,9058,8956,10363,9316,8601,866,1361,1526,1886,2214,2476,2163,2547,519,758,1031,1102,1386,1690,1830,1945,8780,9000,13119,11592,11984,18374,23395,29335,31998,22589,22844,22942,15916,9482,6964,5009,2270,4204,5294,6051,7777,8291,6041,8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,180,203,268,397,685,778,2651,3349,4142,5137,4776,3985,3397,3114,4368,4100,2851,4076,4408,3710,4476,5727,4567,4576,4630,8449,10312,11427,11276,8242,1416,939,631,531,387,620,928,1081,398,537,680,1217,1368,941,970,736,782,748,721,646,435,321,318,201,14,102,226,456,559,809,1073,1028,644,668,613,486,406,314,130,70,0,54,121,210,383,520,571,553,545,411,284,255,303,234,157,124,113,87,58,50,56,83,122,108,544,3732,5736,7716,9010,10172,9540,12669,2816,4837,8282,14851,20865,15684,17416,22241,6647,8874,9379,7618,7831,11013,13380,17439,50075,53587,41138,40512,40436,34412,30384,15510,10178,9807,6450,7708,6956,5712,3378,2002,1173,3161,4385,8287,10204,8990,8715,11139,43315,49084,40099,36606,23762,27700,23997,15307,3358,5955,6750,6854,9050,7245,6263,4994,6207 +0,844,1917,2714,3397,4901,3915,4664,6727,8664,8684,9489,9326,7966,9090,8376,8663,9472,11106,9912,8815,7569,7308,6402,1095,1470,1442,1745,1634,1920,2436,2560,491,690,950,1064,1367,1393,1592,1974,6157,6330,11878,11784,10831,16199,13890,20755,17902,20996,21490,16742,11918,7351,5674,4004,2312,2694,3429,5046,8647,7722,5668,7054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,332,414,476,596,921,994,2257,3036,2970,3967,3757,3754,2840,3087,3064,3170,3455,3378,4821,5264,4437,5894,3612,4736,5732,7964,10182,10497,10778,7232,1216,911,671,464,574,660,778,871,336,628,737,1240,1285,1098,972,822,1169,796,934,673,666,422,316,235,34,168,310,426,722,966,978,1190,498,492,452,390,231,180,94,58,0,62,110,240,327,453,521,715,756,622,434,374,371,286,150,106,109,73,54,45,44,69,86,90,542,2839,4848,7796,8905,13224,11247,14502,6294,7211,7609,11340,22600,25248,16334,19678,7728,9662,11357,9788,9795,14639,13932,21360,56636,48900,42656,37004,36711,32229,29082,15488,12766,10371,5154,6729,7841,5054,3334,1998,1055,2930,4213,5894,8817,10200,11587,16728,42656,37926,32311,28581,18378,20814,17478,12766,2310,5122,6854,7998,13375,10014,12038,8979,8037 +0,1240,2456,3583,5179,5087,6452,8648,8341,10525,10371,9180,8619,9539,10650,7958,8672,10376,10798,9348,5795,5275,5198,4252,1662,1936,1668,1684,1323,1498,1943,2040,590,673,728,758,927,1122,1214,1477,4438,6741,7360,8235,8923,10187,10785,13644,11628,10984,13732,11206,7509,6097,4062,2748,1690,2082,3234,4948,6925,5985,5504,4555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,550,639,591,861,1057,1337,1598,2463,3264,3671,4477,4102,3166,2768,3077,3774,3258,3183,4690,5985,5962,7048,4112,6391,6566,7839,10228,10433,8034,5928,829,770,487,588,649,630,655,774,386,734,1031,1818,1499,1571,1194,1059,1287,1134,933,620,681,603,406,205,50,194,315,410,831,1195,1337,1310,239,267,290,249,142,116,73,39,0,80,140,276,255,485,616,730,979,610,542,476,365,339,202,122,74,58,56,38,27,42,72,71,455,2639,5734,7574,9901,10248,15402,13314,9841,10345,8787,9938,30115,28426,21360,15450,9096,10504,15728,13077,16127,15092,17696,36387,45295,39101,45058,48145,25631,28305,24640,20552,11663,7427,6270,6376,7991,4642,3112,1723,798,3012,5126,7434,11465,14548,13058,15459,29901,29619,29030,22886,17024,11926,12482,7412,1099,3680,6631,10634,15148,15071,13943,14818,11231 +0,1538,2914,4981,6126,5855,5507,6242,10327,9622,10420,9227,11530,9356,10076,9336,8834,10431,10429,8786,5086,4836,5497,4564,2246,2091,1616,1332,1135,1198,1210,1395,545,526,512,566,572,602,799,702,2185,3537,3628,4259,6262,6534,5526,7088,7410,6582,8277,7522,4000,3704,2102,1578,1449,1747,1999,3106,3783,3935,3877,3682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,654,938,1012,1228,1635,1566,1889,2392,3318,3616,4646,3636,3442,2547,3331,3694,4513,4210,5071,5572,4248,5508,4000,6040,7500,7360,9751,8172,7315,4967,463,447,371,499,687,781,885,734,623,1034,1214,1636,2015,1742,1242,1348,1537,1162,978,770,579,556,481,252,97,313,438,600,1062,1338,1706,1524,132,150,136,127,69,50,43,21,0,84,154,272,279,460,585,908,939,792,594,454,398,318,240,133,34,40,42,30,23,37,51,56,486,2980,7315,9201,8589,11728,14182,14859,14062,13501,16973,16138,22532,24738,17976,15341,13945,14532,20550,18697,20622,21954,27641,35965,44310,38424,33619,35872,27620,23826,16722,17278,15176,10106,9466,6930,6904,5036,3892,2247,341,3048,4892,8814,13590,11874,11650,15774,29386,21262,15599,14008,10628,7426,8236,4285,620,3236,5764,11044,12740,13232,12854,16296,14335 +0,468,999,1868,2578,2143,2293,2915,4660,7928,8741,11344,13663,15867,12806,10018,10531,10892,8566,10096,9769,8116,10470,9173,10777,11720,8806,8543,5996,4591,3452,2034,501,475,588,439,360,324,210,88,0,288,716,801,1106,997,956,1613,1822,1166,1034,966,906,860,598,279,0,226,461,650,842,1780,2673,3695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,48,58,89,148,235,304,366,384,338,384,526,1369,1976,2646,3314,2734,2040,1655,872,631,341,296,204,732,1080,2192,2895,2842,3666,3823,0,140,257,374,483,758,892,1088,969,1637,2122,2213,2331,2234,2052,1762,1642,1562,1503,942,596,520,619,612,520,914,1675,1735,2003,1770,1540,1943,0,25,48,74,129,127,182,279,330,260,305,398,400,516,476,609,912,878,723,601,364,308,360,367,388,406,331,288,334,278,131,88,439,1546,2604,3490,5250,9808,12174,11716,12576,16431,16593,19541,19474,19368,26251,24939,18542,19063,20530,20572,25825,15898,13754,15384,16089,14221,19004,27148,27550,24308,21249,20266,15418,15511,15760,11520,8116,6113,5273,3200,2146,3227,4292,5335,8135,8328,10245,16597,22922,21114,19434,19244,15365,22723,22793,24134,27271,28242,27864,27153,32829,36453,33839,22524,17356 +0,433,970,1652,1833,2580,3002,4720,3598,5248,5997,11928,10118,12168,8002,7777,9475,8346,10792,10632,13154,11502,10463,11089,9728,9912,7773,7313,4900,3776,3695,2260,506,441,496,403,285,293,256,154,90,314,826,838,990,852,1180,1511,1669,1447,1111,894,716,728,520,206,0,220,372,586,809,1612,2320,2834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,58,77,67,142,251,323,311,387,511,500,764,1480,1783,3002,4557,3604,2700,2133,1324,796,380,278,168,720,1272,2274,2732,2380,2813,3841,0,108,225,266,468,674,630,804,723,1234,2038,1713,2150,1904,1569,1721,1698,1392,1411,970,687,498,511,616,433,806,1334,1652,1618,1530,1524,1793,0,26,52,84,144,114,163,230,264,239,295,448,595,667,694,686,676,742,646,555,322,350,334,358,215,276,268,276,270,212,135,85,433,1654,2368,4219,6954,11344,10137,12030,8984,13254,17558,17396,15242,13368,17463,18894,15471,20308,25646,26528,20004,18282,12790,14377,14093,15202,20722,25202,25276,20802,20762,17444,20034,16822,16212,12150,9911,8750,6295,4188,3436,4270,5344,6212,7590,6480,8469,14208,29642,27650,23834,17631,12190,19384,24826,23089,25321,24898,28094,27378,38760,37080,29903,22636,12704 +0,568,1001,1413,1711,3132,4352,5830,1960,3431,4352,8545,11532,9431,7015,6064,6511,7732,10294,10283,12337,11727,10012,7743,11867,10904,8412,5786,3649,3386,2855,2308,558,436,386,496,282,247,230,185,210,518,740,703,708,700,1018,1200,1880,1930,1544,1238,728,582,446,186,0,202,436,645,789,1558,1868,1773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,53,70,62,186,334,428,352,446,544,534,1110,1808,2053,2505,5013,3896,3324,2599,1404,1111,483,251,150,990,1564,1778,2704,2380,2162,3300,0,87,172,171,393,400,528,556,593,786,1282,1416,1709,2044,1756,1396,1283,1079,945,718,552,474,433,370,258,609,1060,1391,1518,1353,1604,1221,0,31,51,77,117,138,149,235,144,251,324,499,592,529,700,981,743,640,622,477,397,373,396,425,145,187,188,273,303,208,118,85,343,1660,2980,4667,7610,11473,12378,12862,6807,10853,13162,16921,8972,11539,10836,9082,19849,24763,24160,29262,22140,16333,15822,10940,9379,14896,15966,14746,21454,17444,13612,12982,23958,22148,19886,14204,13326,10668,5654,3942,4129,4631,4664,5990,4884,5570,5997,9271,28234,29004,26480,20418,13854,18790,18622,21774,17361,19609,22650,21281,36112,24935,23430,15590,11565 +0,510,1003,1763,2306,2882,3125,4571,1493,3066,3848,6589,7820,6027,6248,5644,5764,10094,12376,12327,11335,11658,9527,8916,13059,9338,5929,4592,3731,3723,3822,2410,562,580,387,478,362,359,298,216,292,402,594,551,491,690,1139,1566,2291,1760,1566,1160,994,760,654,342,0,183,376,634,789,1357,2029,1848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,41,72,97,205,346,390,414,736,873,902,1331,1684,1889,2469,4838,4404,2875,2480,1891,1120,575,331,92,691,950,1220,1979,1625,1810,2374,0,45,118,142,257,282,374,397,621,748,1156,1215,1524,1555,1254,1164,744,710,555,604,388,474,474,431,230,696,1012,1346,1582,1465,2093,1676,0,26,39,55,86,117,98,154,96,222,375,554,561,657,532,809,547,446,376,456,469,440,391,422,85,130,137,178,178,142,114,89,360,2098,3069,5042,6178,9097,8669,12328,5408,6990,9287,13165,7349,8948,12165,11082,22268,21604,21607,19338,23742,17318,14342,10623,7750,10898,10062,12464,13711,13529,10934,10880,22496,19413,17667,16354,14394,10608,7952,6562,3708,4959,4039,5082,4485,4750,5902,9714,25425,24948,29040,19638,15390,21012,24188,27792,24876,25853,23847,20606,30045,23342,17343,14118,11098 +0,629,1069,2097,2824,3352,2793,3276,1288,2298,3186,4642,5184,6172,5953,4766,6914,10073,9879,12500,11716,9155,10996,10937,12561,11412,9020,7836,4500,3717,2407,2367,759,757,848,702,533,563,476,350,307,265,282,273,320,506,884,1403,2558,2510,1766,1846,1408,1032,916,458,0,165,358,463,580,1064,1241,1694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,63,79,105,128,191,295,493,488,677,884,1163,1207,1768,2296,4944,3798,4020,2343,1829,1503,963,555,64,332,592,1362,1724,2168,2575,2810,0,31,62,90,139,163,139,180,735,710,642,1029,1366,973,823,709,242,283,316,346,344,367,468,342,267,658,907,1328,1318,1251,1735,1631,0,12,24,39,68,66,87,128,62,388,604,820,806,963,1106,1053,205,232,354,510,501,455,331,401,62,101,111,111,136,123,115,77,358,1970,3836,5700,6289,8441,10182,13222,5154,6904,8870,8465,8319,7988,8082,7087,23974,23058,25931,21483,21876,20221,11946,10383,7716,10094,10541,10580,8619,9082,9740,8882,21042,14876,15972,17930,16311,10877,7862,5374,4591,3286,3483,3375,4785,6056,6011,5345,34439,27062,18287,21673,21686,22417,18901,22676,24174,25020,21696,18346,19180,21196,16716,12782,10861 +0,464,905,1564,2272,2689,2697,3926,1658,2202,3306,4496,3234,4520,5806,4276,6570,7058,8967,9078,9042,7783,8748,8869,7604,8246,6872,5806,5484,4228,2326,1910,592,849,687,544,405,472,449,449,458,399,467,476,719,1074,1429,1827,2244,1870,1445,1566,1314,909,759,331,0,138,302,348,653,1033,1124,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,109,182,271,286,234,320,480,476,575,899,837,1207,1647,2412,4678,3888,3177,2384,1862,1378,1008,612,106,371,672,1102,1186,1667,1844,1902,0,20,55,70,92,126,131,116,478,651,636,966,857,714,610,542,140,214,283,328,283,390,364,350,356,566,887,913,998,1126,1282,1464,0,12,28,45,50,54,94,106,56,343,622,620,584,782,976,1088,317,384,509,506,577,571,440,446,63,92,130,96,150,101,88,60,261,2244,3194,5125,7440,9392,10129,14052,6444,6474,8603,7580,6477,6860,8174,6365,30194,26770,26920,23322,24071,17172,14671,8957,5792,8060,9054,8508,7522,6512,6876,6494,21108,18668,19605,14510,14455,9810,10836,7926,3890,4043,4994,4589,3558,4096,4216,4538,28112,24593,15704,19732,16355,17497,20506,17386,19790,17522,14646,12986,17186,14689,12731,13874,14965 +0,445,793,1302,2216,2926,3480,4414,2158,3259,3570,5513,2590,3675,5512,5922,5985,5716,6229,5615,5629,6165,7660,8734,6409,5811,5380,4794,4894,3896,3110,2081,698,561,640,733,405,394,452,479,710,562,666,598,1058,1535,1809,1836,2156,2267,1632,1230,838,554,462,237,0,101,227,363,638,922,956,805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,168,302,357,353,372,390,691,579,436,654,889,1325,1360,1815,2902,2798,2948,2166,1461,1008,1018,730,152,354,547,837,1141,933,1048,1118,0,14,30,49,78,71,89,118,439,516,542,688,446,406,238,242,97,127,196,176,348,266,256,277,336,516,584,736,778,981,1220,1410,0,13,22,46,42,66,77,94,63,238,442,774,491,746,788,778,408,432,517,485,531,520,515,430,80,114,110,96,114,77,64,50,129,1731,3064,4172,6990,7376,10166,11774,7120,7408,5577,5102,4908,5880,5968,5490,28245,20158,19735,23470,18732,13102,12762,8160,3579,4888,5944,5286,4677,4238,5060,7036,14208,17773,17120,14078,14827,14629,11382,7729,4428,4524,4851,4650,3425,3699,4446,2854,27995,20479,15863,14468,13025,12427,17262,11978,9836,8524,11080,12691,13775,16713,14976,12332,15547 +0,396,551,1130,1663,2328,2566,2998,2805,3397,3569,4551,2630,4292,7512,6530,5857,4334,5376,4046,5686,6260,6471,6186,5690,4046,4882,5040,4856,4172,2448,1878,571,606,497,533,483,484,480,448,860,760,842,832,1068,1870,1681,2300,2257,1644,1464,1163,472,361,342,174,0,115,216,400,583,748,744,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,175,260,433,365,419,368,602,489,297,462,444,768,732,1362,3160,3027,2267,1871,1508,1140,1071,652,305,397,416,455,630,602,600,716,0,9,14,28,47,40,51,60,256,273,255,370,246,201,141,140,50,104,186,178,292,262,226,279,388,460,483,491,637,993,1301,1300,0,12,25,45,53,51,58,68,57,238,480,535,705,790,812,904,727,582,495,530,487,552,544,327,103,135,114,78,71,54,42,28,63,2025,3797,4922,5642,8519,8066,8325,6270,6692,7116,4944,4119,4764,5089,2971,26799,21259,18255,18378,14725,10292,9285,6168,2748,4138,3435,3254,3916,4792,5067,7420,18962,18239,17302,14381,11485,10478,8415,6370,6498,5287,4057,4538,3412,3615,4163,2534,21350,20477,19273,17451,12088,13076,13348,9112,4990,5472,8703,11166,12341,13248,15648,11656,14703 +0,636,1259,1520,1876,1973,1702,2238,2764,3493,4505,8195,11193,11824,12921,11096,3888,3609,4074,6792,8366,10020,9214,7505,5755,5154,5124,4362,2279,1549,1192,929,470,371,281,291,246,310,320,613,747,1049,1022,865,1066,1027,1101,1649,1693,1243,714,480,261,233,166,88,0,89,153,251,416,593,586,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,106,143,192,249,357,386,524,476,279,244,138,179,244,406,3284,2313,1994,1511,788,578,611,557,356,355,371,316,268,230,188,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,75,114,115,211,333,402,467,535,664,835,1214,1106,1086,1084,0,13,22,31,49,70,77,66,68,224,428,533,720,787,847,808,1034,974,911,957,782,606,518,349,171,176,126,146,137,127,85,38,0,485,1013,1271,1836,2962,4165,6042,7320,7504,6554,6910,6080,5551,3608,1815,23803,19518,8817,6899,5561,4111,4110,2560,1546,2206,2810,3607,3802,5350,7401,8062,21926,20820,18684,21177,20883,16951,17795,10994,7402,8811,7307,5200,5296,3255,2653,1495,18091,18581,14842,11388,11862,9756,9893,6819,2374,1824,1766,2388,2395,4370,6771,10596,12435 +0,538,1129,1260,1150,1444,1462,1836,3317,3828,3254,5583,10011,9536,10218,8609,2836,3392,4500,5938,7245,7365,6182,5968,4101,4279,3811,3194,2092,1446,935,904,566,322,285,277,246,291,349,482,548,742,838,832,772,1106,1145,1804,1140,981,627,434,405,304,158,84,0,96,139,296,396,566,432,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,89,214,202,342,429,488,402,454,289,238,144,224,277,340,2932,2430,1848,1416,804,589,671,428,288,280,308,281,268,196,176,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,115,125,186,334,435,419,437,626,777,1314,1230,1155,1178,0,13,24,30,52,68,84,68,64,238,316,442,729,822,768,542,693,746,765,739,568,542,519,286,151,176,165,144,145,102,78,40,0,475,904,1337,2280,3058,3943,5674,6451,6170,6463,6621,6470,5115,2740,1674,17609,11560,9240,7142,4464,4090,3519,2790,2141,2948,2882,3837,4817,5743,9289,7124,18953,21226,18078,19633,23584,21412,16290,12268,7828,8489,6654,5041,4280,2907,2516,1199,12171,15148,10360,9477,7216,6562,7837,5462,2305,2394,1976,2766,3388,4594,6563,7776,9843 +0,332,623,793,948,1224,1412,1394,2867,3841,3535,5210,7656,6114,6179,5596,2556,2515,3542,4481,4016,4984,5450,5302,3856,4104,3138,2176,1542,1433,1050,638,530,321,261,259,259,376,498,606,568,446,528,581,538,910,1346,1906,1143,878,777,488,431,265,220,116,0,80,156,199,303,300,414,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,92,159,274,404,441,420,433,412,343,223,116,220,288,375,3393,2762,1870,1374,697,500,538,322,340,306,314,228,248,226,128,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,55,117,152,209,297,401,246,451,516,562,1100,1197,1222,1650,0,11,22,23,45,67,67,76,38,144,272,392,552,694,667,483,613,717,620,598,555,496,429,264,111,147,156,160,110,80,65,30,0,542,1066,1528,2174,2217,3288,4216,6202,6296,5488,4606,6206,4583,2662,1555,9725,8325,6708,6151,4593,4425,3538,3218,2905,3800,3920,4737,4945,6235,8906,7775,17346,16636,18393,16088,19340,16970,15765,9605,7337,5829,6550,5312,2947,2106,1772,1029,8982,8644,10318,7994,4661,5902,5454,4307,1954,2235,2993,3251,4585,4601,4302,6126,7177 +0,228,447,598,937,1024,967,1204,2398,2982,2166,3279,5023,4520,5548,3914,3062,3076,2302,3266,3571,3995,4757,3864,3030,3444,2941,1888,1396,1132,838,682,423,349,265,316,245,406,602,640,318,338,392,548,604,857,1201,1632,1077,1048,786,537,374,286,177,118,0,52,93,148,158,210,276,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,76,164,206,364,390,420,238,254,221,180,137,267,269,362,2628,2332,1464,1213,575,468,373,270,226,202,246,204,160,160,90,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,42,94,140,161,238,314,177,368,447,487,844,1010,911,1070,0,11,22,27,33,50,45,60,43,158,277,348,542,552,543,378,650,622,671,534,537,362,394,186,98,102,113,123,90,70,48,28,0,540,1119,1437,2304,2176,3057,4325,5352,5940,5915,4573,4204,3128,2551,1268,4928,4700,3847,4024,4681,3545,2864,2853,3360,3784,5753,6447,5530,7273,7744,8146,17985,12780,18198,16624,20399,21166,17222,11293,7085,5534,4918,4772,3758,2684,2294,1152,8214,7266,6625,4923,2810,3464,3587,4260,1333,2542,3983,4078,5697,4508,3725,4507,5828 +0,140,241,396,684,882,879,818,1534,2344,3106,3473,3206,3011,2445,2392,3385,4300,4398,3000,2942,2971,2069,1254,2614,2214,2347,1797,1142,787,765,463,359,365,474,446,350,327,368,409,93,157,295,441,563,1091,1545,1344,1489,1415,1063,646,414,339,244,126,0,22,40,60,80,103,122,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,135,184,222,327,325,346,152,154,192,140,122,216,315,337,1806,1167,785,686,470,505,388,215,196,224,178,134,98,63,51,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,76,85,113,142,173,199,87,163,226,487,646,619,603,881,0,9,18,26,26,27,26,32,33,112,242,294,354,377,424,363,681,632,473,508,383,278,162,128,119,96,67,68,76,45,31,15,0,654,1220,1437,2052,2518,3614,4088,4392,3648,2804,2378,2960,2004,1254,616,2552,2410,3424,3873,3354,4050,4026,3691,3478,6579,8144,8566,8736,8236,8124,5686,12782,10981,11530,12017,16478,12127,11670,11934,4901,3931,3686,3831,4287,3821,2604,1406,5857,5808,4624,3334,2262,2782,4439,4246,1095,2156,2521,3294,5563,5422,3877,3334,3200 +0,108,222,329,544,648,565,646,1190,1832,2875,2918,2539,1903,1625,1741,2986,2710,2772,2330,2892,2236,1775,1175,2043,1756,1398,1351,1010,716,518,314,308,288,372,346,218,256,302,359,78,157,194,338,506,724,1286,1176,1070,818,882,523,252,234,141,86,0,17,33,48,66,86,94,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,114,121,156,228,266,270,120,126,150,122,97,172,245,272,1474,1063,640,544,276,327,296,186,131,130,111,99,69,58,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,51,64,74,88,152,196,71,128,199,338,416,520,608,692,0,8,14,17,24,26,18,24,20,116,220,244,270,281,263,228,594,496,491,400,340,240,116,93,66,60,53,50,53,38,27,16,0,432,931,1178,1311,1982,2487,2476,3746,3409,1896,2094,2588,1644,1104,535,1924,2112,2295,2758,3774,3569,3425,3724,4473,7152,7848,8712,7358,7478,7551,8857,17492,11912,11215,10656,15579,11788,10414,10918,4591,3918,2909,3526,3739,3516,2531,1242,4090,4316,4732,3170,2244,2670,3363,5073,1619,2324,3054,3844,4088,4598,3620,3335,3528 +0,90,176,289,433,478,410,419,1010,1116,1736,1890,1512,1284,1047,1054,1695,1917,1952,1948,2037,1296,1184,898,1528,1398,1092,903,599,396,265,182,216,217,266,213,145,184,172,271,62,103,165,216,383,596,774,870,516,516,427,351,152,144,104,54,0,17,28,36,40,60,84,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,64,66,99,121,139,172,52,58,78,78,85,142,152,163,954,812,532,325,173,198,171,121,77,70,80,75,51,44,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,31,38,46,65,92,156,62,88,122,169,310,386,447,500,0,5,8,13,18,15,14,15,12,64,124,102,122,126,174,128,402,449,356,353,237,140,88,53,42,51,46,45,37,23,16,8,0,253,592,785,780,1155,1258,1659,2348,2336,1731,1115,1524,1444,912,475,1152,1236,1844,2060,3006,4153,4301,4398,6075,8112,7862,7258,6638,10056,10488,14310,16717,13677,11012,10266,9504,6852,7050,6867,3106,3635,3046,3185,4840,2968,1624,824,1767,2821,3762,3640,1797,2989,3772,5131,2517,2430,3364,4290,3940,4321,4029,3998,3074 +0,49,82,134,199,192,234,198,554,694,868,1040,761,631,431,526,990,879,925,856,1178,802,622,482,715,590,495,356,338,196,158,110,100,130,134,89,62,89,85,137,37,52,80,92,202,250,338,360,282,272,233,152,75,72,46,25,0,10,17,24,22,34,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,32,40,50,58,82,94,29,34,43,41,44,67,63,86,528,370,233,160,79,82,75,60,38,42,34,36,31,24,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,17,22,20,36,45,75,33,46,73,106,152,213,269,246,0,2,5,7,9,9,8,8,7,32,58,52,51,65,98,70,207,230,192,177,134,82,39,27,25,26,22,24,22,14,10,6,0,158,307,393,406,522,685,741,1369,1270,973,664,670,656,503,214,527,1090,1458,2140,2895,3156,3676,4390,5091,8069,8445,9248,7133,11283,15212,14274,14141,14907,15626,11694,11627,9784,9414,7021,3412,3434,2777,3741,3771,2528,1424,794,887,1768,2622,3170,2694,2759,2591,4089,4280,3842,3552,5382,6024,5639,4924,4029,2976 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,887,959,1484,1793,2298,2767,3564,2519,2494,2163,2408,3020,3528,4996,5352,6086,5768,6962,9577,8466,11249,10943,8698,7479,6391,7664,7684,5233,4808,5000,4962,5204,4299,3885,2488,2221,2641,4078,4676,4643,4412,4280,4958,4206,3281,3081,4086 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10883,11507,11764,8240,4892,4517,4528,2788,7762,7454,4224,2926,1968,1327,1104,592,0,12,26,42,66,67,85,123,110,118,112,90,77,58,30,15,374,518,786,928,1106,957,880,550,2396,1816,1282,1081,854,544,312,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,1042,696,674,227,220,130,69,0,0,0,0,0,0,0,0,98,186,205,256,370,518,464,708,1822,1606,1427,1654,834,714,329,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,797,1046,1479,1872,1769,2842,3142,2158,1854,2353,2388,2690,3103,4474,5675,5514,5408,8855,9370,10592,11037,10686,9167,7022,5568,4879,5630,4358,3443,4508,4570,4858,3781,3182,2964,2636,2437,3718,5426,3997,4053,3986,5160,4918,3540,4346,5944 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24308,23593,19744,17760,10836,9321,8486,6812,18816,16600,9474,7156,3343,2536,2183,1146,0,26,56,83,114,140,172,288,214,216,243,177,138,99,54,30,796,886,1341,1883,2284,1835,1914,1163,5935,4219,2596,2350,1937,1469,614,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2448,1863,1670,1299,548,446,246,130,0,0,0,0,0,0,0,0,217,312,458,476,705,750,1134,1367,3299,2654,3222,3450,1800,1227,809,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,620,964,1074,1489,1653,1724,3426,2491,1852,2004,1775,2176,2890,2998,6916,8260,7028,10590,11118,11905,13840,10491,10354,6906,6792,5807,4691,3522,3224,3738,4361,3010,2933,2244,2969,3172,3211,3660,4860,4030,4096,3201,4003,5186,5416,6808,6009 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33179,32663,34328,24516,15480,16438,16656,8963,22938,18754,9813,7906,5228,4194,3035,1678,0,36,75,145,164,239,309,366,456,362,330,314,254,190,112,49,1446,1741,1504,2072,2350,2650,2671,1993,8746,6945,4452,3424,2382,1490,1056,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3210,2752,2286,1543,749,536,389,188,0,0,0,0,0,0,0,0,371,476,654,811,1018,1472,1679,2377,7520,6020,5264,4587,2840,2286,1874,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,507,687,650,1034,1492,1649,2877,2054,1332,1560,1614,2062,2631,2876,8248,9616,8946,10850,12815,13160,16131,14576,13556,9081,5194,5258,3321,3552,3774,4184,3608,2468,1908,2212,2114,2522,2424,2836,4475,4404,3626,3138,3908,5030,5471,5872,5860 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43440,32260,36696,34782,27094,17045,14774,10410,28388,21379,24061,15460,8642,6301,5587,2935,0,56,120,219,272,372,369,406,687,800,670,539,332,276,198,95,2141,2546,2154,3086,3386,3406,2773,2320,9670,7862,5374,3794,2942,2722,2035,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3707,3225,2464,2018,960,666,406,244,0,0,0,0,0,0,0,0,476,616,1048,1088,1155,1722,3004,3816,10322,10772,7853,7385,5200,4484,2335,1474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,217,404,523,669,924,1607,2345,1751,1408,1180,1402,1250,1378,2038,8100,6965,7167,9041,11524,13442,13672,17160,14181,14662,10938,8281,3420,3079,2032,2458,2595,2478,2241,2027,1770,2058,2524,2264,5172,3780,3991,4270,4172,3612,4634,4561,5837 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52558,54068,53587,53064,39568,29778,28248,21702,30294,29097,28000,17120,10290,7108,4514,1946,0,60,110,206,345,408,556,566,708,707,675,490,404,295,250,117,2246,2234,2981,4147,3976,4380,3336,4059,11394,10042,6104,5232,3326,3136,2029,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4343,4302,3634,2514,928,892,567,252,0,0,0,0,0,0,0,0,899,1814,3367,3899,4462,4390,6612,6710,11719,10504,7195,7206,4297,3708,2194,1924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,340,446,746,839,1326,1442,3072,2522,1362,1591,1585,1658,1429,1519,7088,7653,9990,11854,10742,14014,14740,17997,12725,12595,7909,6002,3785,2732,2324,1946,3431,3162,3008,2901,1656,3045,3682,3994,8488,6826,5599,4196,4814,5743,6318,7840,10467 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65417,70158,68066,54485,41042,46242,38942,28511,40295,36898,23640,19122,9074,6467,4199,1750,0,64,126,189,506,539,572,583,597,612,459,410,424,320,276,120,1955,2430,3408,4511,3578,3852,4662,5503,14336,12349,7146,6302,3694,2900,1623,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5221,4941,4272,2659,1281,997,592,333,0,0,0,0,0,0,0,0,1112,2594,5114,5540,7030,8485,8042,7316,10485,7510,8180,5762,4613,4122,2962,2658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,433,624,747,1025,1626,1952,2950,2521,1912,1544,1600,1434,1284,1402,8206,9316,11339,15271,12441,13560,15574,15792,11481,7148,6104,4345,3558,3113,2054,1976,4383,4069,3599,3398,2271,4496,5773,7882,10458,8090,6198,5842,5223,5306,7536,9675,13071 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52776,62464,62093,51128,47335,42998,35440,35263,31332,33790,21941,18662,9413,6810,4712,2350,0,70,171,248,460,487,473,701,881,864,620,518,406,354,321,156,2127,2662,3722,4732,5544,5398,6298,7702,13695,11666,5581,5758,3690,2254,1275,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8866,8155,6842,3742,1550,1267,637,355,0,0,0,0,0,0,0,0,1485,3924,7062,7024,6867,9496,12818,13406,11246,7727,6761,6366,4511,3643,3063,2504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,393,716,712,1128,2104,2116,2924,1806,1315,1764,1586,1182,1055,834,12732,11186,11724,13642,13265,12760,13690,12417,9532,7712,6900,4526,3266,3184,1996,1308,5215,4572,3468,4118,2707,5448,5932,9386,9962,8370,9980,6704,6761,6085,7539,10160,11807 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55104,62194,62170,56876,57627,53254,54708,42310,33042,26160,19813,19188,23602,16558,15579,7696,0,132,319,690,897,698,826,814,1150,1051,1021,792,505,384,309,181,2394,4308,5231,5889,5801,9233,12531,10497,12316,8797,8386,7535,6052,4116,2082,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12949,9174,9137,9474,9033,6506,3622,1955,0,0,0,0,0,0,0,0,1377,4428,6678,11591,13754,11224,8760,9632,14160,13635,13862,11870,12693,7632,5046,4074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,432,950,1172,1477,1775,1644,1984,1797,1704,1590,1510,1023,823,396,15913,16620,13971,12664,14243,14243,11624,11152,11516,10151,8136,8502,6278,5069,2591,1441,5928,8434,10976,12544,11458,10375,11373,12898,10187,9531,9065,8568,9869,8548,8070,10326,13040 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84297,75106,60232,50648,63758,66673,43638,43766,24794,22163,16592,18869,19171,18328,13519,7032,0,172,381,788,1057,774,762,1166,1187,1258,1051,949,996,728,752,765,11225,12098,11849,13866,15608,18375,17538,13734,11568,11242,7900,7469,5512,4139,2265,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15628,13337,10326,12240,9719,6199,3215,1843,0,282,548,962,1274,1102,1153,1514,6032,8521,12891,14124,19200,13027,12456,13315,27530,24024,20340,20731,19446,11640,6522,4406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,483,868,1042,1312,1181,1316,2258,1838,1389,1239,1631,1309,1006,688,14092,17245,17836,17820,11626,15179,12711,12955,11472,9733,8407,6620,5074,3654,3104,1560,4379,5346,7883,8266,10962,10851,9157,12040,10462,8446,9232,8287,11182,10318,7924,9588,9605 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99824,72706,53926,40920,64430,62159,44572,30462,17578,17908,18032,15004,21150,15660,12010,5758,0,192,463,744,1321,978,920,1200,1672,1583,1306,1238,1496,1257,1306,1036,17853,16568,20987,20572,24340,19452,19705,16161,16368,15227,11300,7722,5485,4144,3480,1754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15366,13896,14388,12888,8235,5382,4209,2201,0,454,919,1741,2761,2394,1982,2620,10833,14619,19660,19133,22066,17229,12565,17964,32985,34709,28468,28147,21530,17960,10800,5366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,440,789,1134,904,867,1221,2170,1942,1204,1027,1621,1220,1338,1059,14667,15442,18212,18002,12498,15091,15864,15146,11090,10190,8271,4706,6001,5135,3308,1958,4214,5472,5472,6211,10067,10678,8319,13682,11847,9132,8592,6232,13291,12075,11220,10031,10531 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93825,84452,73387,64769,65203,58114,32628,29480,12168,14638,15353,14758,14728,10600,8393,4391,0,364,700,1040,1651,1211,946,1300,2109,1584,1243,1314,1436,1806,1659,1477,27457,23200,21563,27932,34003,29224,21205,18373,17966,16776,14910,9630,6385,4376,4001,1757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19207,17132,22062,16082,12706,7261,4782,2007,0,896,2123,2363,4322,3888,3364,4966,15526,17490,27287,25500,25262,23889,22056,21404,38481,43428,33453,34034,30632,21471,14080,7862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,343,585,880,1058,972,1548,2163,2138,1235,1118,1491,1270,1361,1343,13941,13786,18995,18784,17868,16771,17680,17114,9040,8810,7755,4596,4650,3234,2110,1370,5362,4699,4706,4908,8543,10826,11626,13778,12033,12138,9509,9707,14068,11452,13185,12288,13520 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128109,122646,92774,73669,76259,66737,57629,33382,11586,12157,11605,7926,6650,5846,4153,1743,0,294,666,1272,1508,1407,1319,1347,1979,2100,1877,1866,1743,2048,2282,2310,31209,40809,48904,49447,40698,27190,16407,10419,17311,11916,12109,11085,8813,6907,4160,2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22083,25658,22092,16804,14245,9686,9509,4179,0,1300,2401,3654,5335,5963,4894,6883,21828,31524,32669,31202,33114,36920,32006,22033,49803,52616,49447,46529,34200,29431,18291,10918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,297,414,662,982,1395,1192,2328,2550,2029,1354,1167,1322,1212,1326,15584,14480,15360,13617,17408,22464,23215,17439,5324,4592,4470,3354,2604,2105,1389,938,6266,6274,5824,5422,4260,5869,6992,9050,9931,9394,11815,13952,11826,13688,14798,15434,14883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100736,118528,81538,76434,63512,61726,43166,29766,11229,9118,10004,7432,6162,4179,3970,1699,0,453,860,1562,1493,1522,1339,1360,1948,2140,2586,2602,2124,2262,2542,2592,37336,38720,43738,44361,43466,34858,24992,19826,22249,16134,12742,12530,7234,6580,3788,2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17918,17442,20682,17456,13697,11040,6593,4098,0,1944,3819,5102,5702,7016,9096,13574,32651,36058,29239,24876,32032,29080,25841,25171,63292,56820,54895,50850,40287,24639,18019,10606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,304,406,700,1066,1184,1182,1807,2044,1692,2177,1519,1496,1406,1426,14149,12630,14687,17096,13684,16369,15141,13701,4647,4464,4021,3134,2403,2250,1411,962,4608,4866,4626,4972,6995,6294,7116,9542,6831,9844,10550,10956,10097,9804,14663,13176,11862 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83181,78517,73147,72913,75686,56355,41416,19718,7516,7216,7350,6484,4465,3853,2764,1646,0,656,1150,1490,1084,1266,1490,1676,2227,2079,2662,2336,1862,2358,3588,3250,42467,41366,49572,56782,41262,36119,25910,24223,20861,18647,18847,14798,6988,5937,4421,2634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13212,12066,13812,9241,10884,7450,5942,3391,0,2204,4577,6729,7759,12034,13166,19388,39050,31217,33982,23718,33405,29818,31821,30386,58956,56789,52411,45233,34482,29097,14136,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,222,457,561,788,1239,1486,1254,1730,1970,2680,1962,1655,1367,1359,14304,10910,10642,11775,14132,10866,11894,15555,5023,4175,5188,3940,1425,1590,1658,1077,2315,3314,4950,5270,8652,7188,5582,7146,6991,8678,10086,8849,6065,7234,10769,14436,14471 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99531,84944,67346,59402,56276,49642,32485,19125,4056,3171,3964,2964,2242,2148,1304,724,0,594,1306,1700,1491,1588,1869,1949,2558,2084,2242,2216,1504,2961,3547,4278,41314,45088,42776,47768,45640,35158,40426,27000,22686,18349,16052,14302,9141,5826,4235,2164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16597,17796,15559,15093,11066,7608,5658,2816,0,2028,5228,7947,9940,13320,20288,27666,38239,38812,35135,29824,26670,34752,34231,38399,60126,43022,43756,41398,31071,24940,15505,9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,320,410,547,722,968,1028,1000,1466,1967,2944,3705,3152,2360,2291,9881,9112,7113,9367,13055,9475,9351,12023,5360,4664,6072,3906,1728,1916,1555,1605,1692,3560,5290,7598,7006,7360,6035,7416,9602,10208,10897,8293,5668,6992,7901,10350,10630 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100087,86369,51504,42580,36239,23242,18204,7874,0,0,0,0,0,0,0,0,0,892,1534,2141,3488,3965,3824,3877,4863,3866,4634,5626,8410,9816,9480,7150,56114,64833,64337,76937,73711,59946,66339,44365,31092,28081,29635,24806,12431,8404,4608,1879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16177,20640,22357,32540,51019,47956,63787,55622,50617,51418,53680,45400,49654,49003,46648,46798,35098,23956,15972,17916,16871,16420,13355,20931,24212,18766,21229,21108,17925,15685,10182,6074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,804,1251,2234,2406,3082,4240,7765,6683,5502,3820,2354,1894,1260,508,0,47,89,110,155,546,961,1179,1430,2054,2567,3032,3308,5596,6806,6892,6911,7730,8232,9668,11828,10934,8752,6856,6973 +0,1,2,2,2,3,4,5,2,4,4,5,4,5,5,5,2,195,470,774,1206,2468,3976,4222,9633,7874,6135,6608,4984,7302,6228,5558,91714,77124,68496,55960,50660,33508,29997,21924,13270,12722,11118,6752,3067,2822,1877,1258,0,946,1347,2909,2672,3278,3784,3571,5564,4759,3789,5802,7330,6923,6257,6092,56732,55489,75263,68166,60318,62546,46083,38364,33994,29819,30799,24252,20707,15030,6874,4415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17043,17718,26934,28376,42034,41986,54992,41632,69117,52332,57669,56315,47593,48659,45871,41754,31844,26522,21002,18900,25796,20376,15939,19600,18960,21894,22510,16782,12313,12216,8737,6586,912,1254,1712,2076,2144,2371,1998,1272,1025,1006,986,732,693,522,261,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,859,1336,1865,2315,2948,4000,6232,5398,5579,3760,2998,2456,1128,676,4,60,111,154,162,553,956,1412,1222,2364,2407,3334,2509,4446,5922,6964,5279,5895,5248,7030,12019,10143,8993,6692,5465 +0,2,3,4,3,5,6,8,4,6,6,7,6,7,7,7,3,470,854,1317,2939,5083,7623,9853,17751,15142,15328,11470,12279,10795,14439,10950,69663,69958,75432,88786,58057,52948,42483,46757,32510,26152,25006,14323,6678,6472,4422,1847,0,725,1738,2023,2267,2645,3015,3363,4422,3480,3624,6044,5440,5895,5558,5306,69790,80751,65092,70797,48490,43848,42914,40433,44089,38744,31432,21338,24940,15898,10606,6162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14725,22846,27039,29017,42561,33984,38474,37502,77950,72579,72452,67922,41013,47740,40061,42920,37088,36170,23482,23011,28204,27417,18503,17387,16751,19340,18134,13529,10684,10002,7090,5816,1690,2262,3056,3341,4937,5189,4090,2631,1982,1783,1796,1587,1568,1058,638,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,848,1041,1518,2934,3378,4332,5399,3792,3860,3017,2751,2044,1419,853,6,52,120,188,121,394,795,1136,1527,2533,3205,2798,2359,3822,4878,4530,3782,4670,4528,5508,9454,8270,6840,4626,4036 +0,2,4,5,5,8,10,12,6,8,12,12,10,10,10,12,5,623,1904,2638,4439,7392,12488,13165,21393,15094,13477,16152,12712,13834,16209,15934,111888,94386,86319,64766,66688,69156,73634,63116,34818,35764,32606,22190,11298,8603,7099,3818,0,706,1688,1777,1730,2288,2428,2776,3635,4002,3296,4434,4433,4094,4657,3734,72299,67394,45226,54400,49631,42932,45916,41193,48573,41012,33624,26521,24332,13062,10309,5210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22001,23728,30045,25117,36084,31103,26768,22892,85417,73506,63682,64747,52894,47587,38590,31120,23322,23603,18068,19860,20990,25568,17376,20014,12724,16782,18106,14770,10347,9326,7748,7932,2978,3293,3905,5329,7299,6844,4796,3422,3860,3178,2470,1864,1995,1302,784,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,667,1366,2039,2854,4315,4966,4460,3733,3600,2400,2290,1779,857,542,9,44,106,158,153,510,720,925,1251,2061,2522,3046,2038,2660,3478,3546,2792,3366,3303,4068,6146,4612,4169,3618,2303 +0,2,3,5,5,10,11,12,6,8,8,10,13,19,20,18,4,1201,2474,3952,5690,7565,11363,11702,25422,26197,20447,22699,18655,14366,15215,17398,121823,121510,89214,74213,74138,69025,66604,54726,50360,52264,37656,25489,20766,12276,7848,3459,0,302,659,1349,2050,2099,2248,2760,3590,3772,3890,3201,3358,2317,1730,1648,69157,56722,67143,45521,45188,59740,62407,70334,57693,65862,52770,42434,24016,20666,13399,5716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27806,25056,33555,32883,29296,26594,24548,19574,67712,58860,57174,48577,51988,45765,31340,29719,19762,20999,21391,25523,24216,22344,22045,21195,10605,7502,7596,7424,9554,10614,8425,8269,4471,7165,7860,8626,8530,6529,3723,2857,5213,4472,4590,3859,2401,1489,888,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,1456,1714,2200,2268,1981,3456,3400,3666,3119,2215,1890,1246,675,318,12,41,79,125,150,294,555,745,785,1384,1852,1865,2155,1632,1301,1944,1748,1594,1502,2557,2851,2305,1867,1569,1226 +0,2,5,7,7,11,13,14,8,12,14,16,14,18,18,22,6,1416,3032,5316,8432,9742,15264,16682,18129,20309,21982,19530,20737,19411,18844,21018,144953,133725,121284,88310,77770,66999,68818,50762,58314,49528,31987,24766,22540,14572,11238,4950,0,280,487,1172,1760,1860,1718,2096,3117,2826,3015,2889,2414,1964,1604,1501,74608,59784,53809,41911,40936,47468,59048,66800,63617,49034,39998,38125,22181,15153,11870,4962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22301,26870,30446,31006,35978,28686,27642,20304,41742,48652,55823,50156,38437,35086,32306,23050,17504,19958,23188,16818,21772,23890,21759,18063,7723,7518,8153,6315,9268,9546,7691,7710,8123,9522,11830,9946,10576,8783,5417,5806,6665,4900,6148,4474,3275,2934,1323,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,924,1264,1296,1856,2144,2841,3100,2853,2666,1920,1729,1010,508,232,19,46,63,84,106,280,557,754,564,1063,1763,1492,1879,1667,1750,2214,1723,1900,1567,2258,2612,2290,2485,2348,1605 +0,2,4,6,8,14,18,20,10,14,16,18,13,19,20,26,6,2463,4472,6363,8386,14824,17453,26758,19340,16695,18567,23260,19452,20220,20888,21430,137185,148297,117962,109078,63487,51490,61496,54922,53565,43145,36882,22087,23251,14747,11682,5939,0,200,390,638,1011,1515,1518,1538,2441,2343,2152,1792,1506,1150,1295,1319,79067,65149,41964,34836,41731,56736,53452,76967,52879,44154,40486,26742,26682,16716,8738,4853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23156,27478,26148,33326,39045,33134,25676,24966,30364,34355,46244,38025,28814,24092,25210,21658,22424,23851,18434,20543,20109,15355,17624,15185,6237,6079,6171,4595,7410,5702,6484,7801,13117,10350,11900,8254,11640,11326,8005,8674,8359,6299,6110,4748,4657,3117,2214,1312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,808,1056,921,1312,1700,2098,2220,1756,1560,1416,1112,671,341,218,20,36,54,72,107,294,438,763,395,753,1316,1166,2112,2226,2325,2559,2125,2251,2086,2220,3005,2299,2524,2439,2747 +0,2,5,7,8,16,19,20,17,17,20,20,16,18,22,28,5,2812,6458,8542,10318,11883,18288,22842,22025,19754,23777,19211,13809,17786,23204,25592,151536,115979,120571,91982,72095,79625,87507,84376,53846,46893,50231,30148,19790,14552,9906,4735,0,98,204,346,409,586,841,732,1170,1298,1524,1279,1165,1006,1474,1282,73399,61936,51290,36370,37914,42624,56967,73608,52812,48388,43991,29338,23511,16339,8470,4287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25464,30160,24239,25227,38112,26781,22228,26588,28031,31041,42978,32813,26679,28160,22864,19473,31927,28546,25292,21358,18609,13183,14858,8979,4000,3331,3697,3445,4736,5240,5260,8228,14207,14048,16182,14302,12226,13515,11498,11027,7227,5708,5765,5328,5878,4364,3699,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,446,664,868,972,1456,1723,1014,864,809,648,602,342,183,112,30,47,57,68,117,198,292,445,232,488,773,964,1411,1952,2250,2377,2491,2342,1966,2316,2219,1970,2612,3322,3908 +0,4,6,12,14,17,19,18,21,23,21,18,16,23,22,24,3,5796,11214,13734,17926,22974,32675,30565,31878,30644,30556,39437,36315,33468,36745,30829,144220,152177,174202,163330,186448,138473,145905,96426,76836,59091,65975,49524,32760,27363,13358,7245,0,0,0,0,0,0,0,0,0,145,333,581,776,892,724,1089,93560,79086,60715,69237,55356,43779,38166,52410,56457,36867,29874,31883,24134,20444,15210,8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22420,18667,13093,11213,9485,12330,11980,15797,25988,27022,19953,12498,4690,11688,15569,19897,36845,30705,25523,24862,26780,20064,15175,7443,2437,2976,2829,4299,5999,6858,8902,10327,15352,19366,19624,16924,18880,14726,17576,15567,9452,8514,6134,6104,7621,4848,2934,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,653,846,1044,1357,1354,1434,0,8,16,19,26,34,40,42,35,50,59,80,81,62,60,82,0,389,748,1158,1193,1268,1552,2200,2527,3840,4098,3399,4280,4534,4225,4752,4230 +0,6,10,13,17,21,20,22,24,22,20,20,16,23,23,28,5,6473,11402,16722,23879,33432,38405,44058,50627,43462,37613,34310,43662,34902,37182,31101,162398,151772,131312,149052,154457,157864,134511,89450,69957,61882,50113,44633,24738,21028,17754,8496,0,126,352,446,839,710,732,1008,1281,1554,1920,2011,1691,2379,2335,2220,86680,73720,59909,57086,57269,55850,45503,50346,53311,38508,30345,31287,24924,18350,13832,6512,0,0,0,0,0,0,0,0,0,304,518,809,802,740,580,630,22170,20426,15052,12865,9450,8234,12455,11934,16761,15977,15124,12598,9089,11650,19701,20030,39625,30945,29621,30824,23497,19132,14540,6793,2328,2850,3538,4433,5308,6708,8808,8895,12343,15450,18766,18709,15484,13235,13230,11705,7048,7978,7815,8072,9034,5610,2848,1273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,462,702,711,844,1193,876,0,9,14,20,20,26,33,35,34,38,53,62,70,70,74,70,0,249,618,893,886,1070,1465,1680,1562,2660,2828,2856,4171,4346,3668,4101,4917 +0,7,11,17,18,23,24,20,22,21,20,20,19,26,31,31,6,8234,14880,23708,23122,40146,45933,48582,59234,53780,42766,36061,37075,36396,39280,31843,133054,118335,111854,92765,177920,149405,97413,79950,88373,62509,46398,35541,26859,20092,18061,9158,0,324,616,946,1589,1766,1494,1905,2352,2956,2942,4046,2516,3276,4788,4711,105516,99936,68034,42566,41213,53913,51716,55579,59516,48326,39259,36017,26096,18423,13406,7092,0,0,0,0,0,0,0,0,0,636,1095,1937,1524,1284,1201,1423,28737,27372,21513,14426,9336,10685,9182,11153,10290,12045,10762,9824,11437,13762,18604,19690,39808,33583,29504,26851,16789,17144,13968,8753,2097,3099,3770,3619,6155,5271,6314,4361,7856,11003,14522,13076,18024,14086,11500,9670,5325,5165,7384,8238,7624,5580,2782,1285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,372,523,648,727,719,620,0,6,10,22,15,23,27,28,22,34,48,43,53,64,66,56,0,176,416,510,704,802,900,1284,1232,1740,2305,2355,2932,3421,3021,3668,4402 +0,6,12,18,21,22,22,24,17,20,20,18,18,30,36,32,10,9925,18161,24110,28643,35673,42030,55803,66136,68969,48786,50640,29020,36138,41802,37187,137734,135034,99290,104762,145882,125247,92585,85442,59970,59241,35382,32686,25296,21614,19338,9920,0,408,1096,1352,1875,2155,1468,1896,3134,4192,3229,4415,4161,5344,8453,7381,74744,82511,53359,45368,28457,41504,50347,53712,54166,36842,40540,32298,18398,15772,13518,7006,0,0,0,0,0,0,0,0,0,929,1710,2534,2900,2627,2798,2828,24236,22404,20822,13874,7685,8084,6681,8040,7871,10794,9488,12242,13258,12609,15238,17373,47586,42630,32353,28852,19231,17248,15429,9019,1726,2892,3426,3908,4753,5152,5884,4682,7347,8974,8772,11584,14884,11008,8356,6958,6091,6117,7910,6852,5410,3498,1929,1043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,248,360,393,515,425,412,0,6,12,19,17,20,27,30,21,30,43,46,54,61,66,63,0,170,411,546,747,698,613,869,1031,1222,2077,2382,2919,2530,2734,3346,2792 +0,5,8,13,20,20,24,23,10,14,16,17,22,30,32,28,9,8460,18068,24405,28400,47607,56532,49824,81150,57676,56475,39862,26168,31014,32175,31623,171581,168735,147332,123919,68660,79830,86336,61224,53107,49952,35027,33942,25957,19998,11613,5203,0,725,1211,1805,2702,4146,4302,3542,5451,5142,5092,6027,6635,5254,5908,7668,72928,82252,71295,49647,29534,24444,29560,30284,56103,40096,41583,35756,18607,14738,6478,2977,0,0,0,0,0,0,0,0,0,695,1558,2616,4312,4406,5129,4850,23323,19032,15322,11477,7346,7238,8337,6226,5119,5320,7780,12063,14268,15915,16890,18902,49006,36760,35994,31826,25803,24241,15539,9377,1858,1831,2011,3447,4657,3473,2695,3124,5362,5998,6364,9102,12171,11040,8765,6872,5963,4929,5779,4603,3993,2888,2610,1290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,178,270,205,172,226,0,5,7,12,16,13,12,18,16,23,35,38,42,44,34,40,0,157,312,438,668,531,564,618,859,1158,1296,1936,2620,2361,1607,1664,2203 +0,6,9,16,23,26,22,26,17,21,24,33,34,34,30,29,12,9803,17954,20492,32029,43874,60430,61501,93178,86744,52604,49182,26590,25260,38199,38236,159434,134634,125404,88402,61042,63241,61608,56772,57586,43896,38542,30921,25153,17172,12771,5314,0,882,1940,2882,6554,7067,7966,6662,6193,7928,6266,7884,10689,8749,10262,11531,57706,64186,54840,46799,24703,24106,37728,36818,37349,35811,36191,22212,13442,12063,6650,2929,0,0,0,0,0,0,0,0,0,1474,2076,4493,6636,8789,8511,9968,20982,18068,12375,9149,6493,6090,7462,6439,4406,5388,7214,10798,15658,14382,16424,23018,50815,43866,37068,34266,33185,26122,17124,8702,1558,1648,1695,2670,3466,2762,2342,2708,5913,7327,6722,9040,11995,8892,7009,5307,3951,3304,4819,3994,3608,2446,1755,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,125,172,191,158,118,178,0,6,8,11,12,12,9,14,14,20,23,34,34,32,28,32,0,107,224,372,474,380,469,390,592,774,980,1428,2575,1734,1299,1642,2026 +0,6,10,18,22,27,26,24,17,24,28,29,37,34,29,34,12,9857,16796,18648,34438,39130,59502,59624,94426,77308,74268,73309,33358,33530,34238,38179,117279,95450,98304,100867,40524,43337,51374,69860,53538,46780,40119,35868,26876,16650,10020,5566,0,1179,2908,4094,9264,11482,10019,9852,9941,8088,8623,7998,15757,15407,12196,17255,63827,58309,53831,35647,22468,34494,38046,41296,30408,27001,27884,21618,9188,8268,5776,3388,0,0,0,0,0,0,0,0,0,1616,3523,5532,9404,10127,13484,14779,24643,16404,13036,7575,5041,6660,6069,3951,2345,5143,8726,9281,12131,13984,18509,30066,37685,36891,36822,36461,35619,30236,21804,11018,805,896,1160,1805,1842,1770,2504,2857,5989,6856,9790,7324,8051,7760,5986,5063,3315,2961,2303,2796,2228,1722,998,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,60,124,157,103,94,98,0,5,7,11,7,7,6,8,7,12,14,18,21,26,22,25,0,71,162,236,298,342,367,291,360,690,879,989,1798,1409,1244,1174,1411 +0,6,10,16,16,24,22,21,19,24,34,34,31,36,35,36,16,7586,15910,18978,35372,35605,49939,58985,70660,69074,84733,63937,60928,45066,46152,51680,67209,78137,76196,83466,45422,54258,60268,69870,51441,39562,34164,29374,24682,16295,9969,4904,0,1676,3347,6228,9459,11880,14088,16472,18451,15780,13810,13607,17952,13983,14875,15450,52005,41023,43452,42368,35407,39826,32080,27132,29368,22417,17208,13404,6807,6043,4008,2312,0,0,0,0,0,0,0,0,0,2712,5280,7732,11402,10220,11624,17495,23004,16381,12254,6194,4385,4160,4584,2796,1005,6164,11507,11772,15422,18772,26234,31562,39992,41733,40326,35834,36072,26979,19992,10718,450,526,695,1174,982,1386,1846,2545,8642,8164,8496,7421,8566,6120,4519,3477,1962,1480,968,1452,1103,859,547,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,32,56,68,60,56,53,0,2,5,7,5,5,4,5,5,7,8,10,12,13,11,12,0,40,85,108,123,172,201,150,198,304,500,512,917,714,500,718,791 +0,0,0,0,0,0,0,0,0,3008,6079,11734,14065,16028,17029,30491,34833,36528,53568,54657,52020,51484,36003,28117,30444,45598,52202,51271,66690,52236,53547,49166,48234,37766,40332,43831,38817,42967,32912,38830,33012,24885,14890,13298,16427,9960,5430,2648,0,0,0,0,0,0,0,0,0,3055,5872,10156,12409,15430,15975,15961,26835,23290,30726,30870,21854,13743,11678,5797,0,0,0,0,0,0,0,0,0,796,1634,1731,2568,4390,7596,9190,15364,17195,16045,13148,16560,18947,21302,19296,20534,12946,11263,9814,10631,8924,9625,9872,7392,8582,7853,5568,4651,3270,2606,1500,0,122,294,333,468,598,969,1957,2322,2774,2712,3552,3927,4480,3839,2787,11968,11398,11589,8512,7016,9650,14178,15486,15912,15956,12634,7556,3669,2974,3056,2168,1619,2032,2478,2690,2367,2400,2114,1701,1914,1572,782,547,305,222,201,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +0,472,1154,1804,3252,4206,5201,7196,13348,22858,23268,30164,38753,43752,61507,60198,23486,37468,37373,48132,60795,51796,40830,43578,45776,56536,57300,69872,88086,97756,108289,91950,39517,41181,42296,47442,25482,31750,34541,30964,28089,24344,12815,13196,11204,9108,6669,3336,0,1,2,5,2,4,4,5,5,2760,6461,8264,10254,10333,14938,17062,41027,34896,35716,36076,25603,23227,18103,11609,6427,5058,4624,5195,3459,6049,8447,12346,8655,10310,12206,14798,13025,13402,20649,28605,26078,22947,21298,18556,16022,16024,14614,17343,16352,12539,7024,8892,10932,8386,8491,8060,5525,6371,7651,4602,4764,3350,2686,1422,0,168,280,404,581,710,793,1230,2900,3112,3188,2911,4100,4406,3334,3464,11278,12298,14935,14520,12043,19946,17524,19546,26122,18085,15013,10429,6862,6267,5047,4766,2860,2675,1925,2144,3050,3297,2891,2076,2466,1980,1832,1190,745,738,884,978,0,44,89,160,118,183,259,200,265,256,271,218,120,68,55,54,87,81,90,83,70,73,68,54,30,39,53,54,44,35,23,13,0,13,19,32,30,34,45,38,22,26,29,24,19,16,10,6,126,126,91,96,43,47,74,74,17,34,46,40,32,30,16,12,0,0,0,0,0,0,1,0,0,1,2,2,2,2,2,1,2,5,5,6,5,6,5,6,10,8,5,5,2,2,2,1,0 +0,974,2180,3884,7477,9704,9853,10578,25699,36428,50718,60452,75303,94978,86002,95982,23553,25727,36634,41474,61169,45957,51902,70250,64131,78783,74558,69805,129555,129066,155402,126355,47798,51616,46288,37728,21628,25561,29060,26355,23001,18197,16541,11020,11190,9011,5938,3537,0,2,4,7,5,7,6,7,7,2733,5120,9261,7071,8968,12735,9942,56157,41573,45975,45036,35824,25341,18834,16305,11768,10569,7870,12364,8093,9688,16022,22172,14648,21009,21740,26156,27474,25306,30196,39714,28120,28450,25894,19013,20703,19444,13042,12059,9260,7468,6076,7700,11995,9218,8148,7742,6181,6752,6760,4955,4959,3035,2269,1355,0,204,376,512,503,698,920,1199,3272,3380,3344,2229,3734,4049,4258,3602,10395,15048,15240,17121,21272,20063,28266,29834,29542,24342,16904,12340,8988,9894,8056,8165,3598,3471,2280,2503,5079,4278,3764,2836,2729,2512,2335,1509,1513,1654,1642,2060,0,93,192,285,224,360,432,388,632,484,538,467,217,194,118,103,212,211,150,140,164,166,116,104,57,88,108,92,104,68,42,19,0,21,42,65,60,83,82,78,43,52,52,49,33,27,15,10,221,177,208,146,87,105,140,149,32,53,77,83,74,48,36,22,0,0,0,0,1,2,2,2,1,2,3,4,3,4,3,2,5,7,8,10,7,8,8,8,15,12,8,7,3,4,3,2,0 +0,1682,3016,5845,8792,12282,11698,16773,27186,54222,91182,76362,98684,91528,100592,105936,21464,24268,35199,34488,49808,45692,69859,67542,83168,96300,102819,105479,109105,133293,149679,137065,36690,35052,33470,34926,26057,24496,35034,27738,27009,17103,12427,9216,10022,7432,5732,2862,0,2,5,9,8,10,10,13,10,2170,3519,6989,8348,10563,12133,13962,63361,48449,59425,44521,28812,23598,17057,18302,13096,11766,9491,15180,17255,23364,25372,31836,20935,21960,22944,31252,29690,31230,43001,50758,34182,35650,37342,26224,22116,17466,19258,15438,7142,6036,7218,6237,9499,8386,5790,5454,5112,5794,4745,3935,3834,2309,1733,925,0,172,322,608,752,822,1189,1342,4689,3754,4154,2682,2984,3052,3470,3242,13482,19438,16822,21253,26430,26048,39796,41040,34953,24238,24264,20838,12254,11022,12083,10577,5221,4126,2948,3845,5474,4663,3449,2820,3082,3094,2456,2478,1730,2700,2880,2620,0,148,233,440,327,509,724,740,793,603,649,472,397,298,204,166,251,220,144,229,221,172,173,174,117,152,139,145,144,101,73,34,0,34,50,70,90,108,120,114,70,78,69,52,41,38,16,10,342,324,330,222,131,134,166,175,67,78,92,95,103,62,37,25,0,0,0,1,2,2,2,2,2,3,4,5,4,5,4,3,8,11,11,12,12,14,14,16,21,19,13,10,5,5,4,2,0 +0,3571,7153,10146,11737,17112,21047,24158,39275,39416,49171,82791,113460,112605,85582,111768,15597,23058,41182,42419,47856,57706,70810,63528,81273,91204,106648,135971,124134,129874,119270,112077,21605,20105,27042,23484,30314,23266,25885,23817,26072,15973,10940,9958,8160,5546,3420,1438,0,2,5,10,10,14,20,17,10,1770,3133,6172,7726,6614,7653,12215,59915,46076,41908,37998,30386,23328,27339,24473,17068,17534,21997,21933,23096,26818,32224,36895,26400,32744,36110,32504,42231,42005,54576,56871,31135,30306,37868,33034,24657,23869,20896,11290,7177,8440,9503,7448,6787,7490,6376,4706,4553,5836,5622,4585,3606,3252,2150,966,0,277,492,622,774,671,877,896,5639,4427,4968,3264,1867,2141,2191,2093,22442,17834,17084,28739,32898,24633,28433,33528,36156,24466,20268,17968,17058,13797,17211,14309,7053,5992,6930,6572,4995,4321,2774,1751,3271,3350,2630,2978,2770,2623,3452,3443,0,188,370,391,568,659,734,875,1080,986,763,737,550,392,256,162,340,289,242,316,294,302,223,232,150,131,123,145,166,116,98,57,0,22,46,86,120,152,145,139,123,96,78,60,58,42,27,17,476,503,391,225,162,239,250,315,79,75,70,105,108,91,61,39,0,0,1,2,2,2,3,2,2,2,3,4,3,4,3,2,10,13,18,20,16,17,12,17,23,16,12,10,4,5,3,2,0 +0,3404,7703,12022,13018,16793,23748,27286,46469,53452,82300,110766,121556,124219,99769,119091,11607,24744,32115,34430,40062,59561,57519,69058,97878,107156,104411,135817,102554,105620,108834,113249,14120,16154,21871,18540,25754,17979,22424,17574,18387,14060,8816,6983,6368,4368,3431,1544,0,3,6,10,10,15,17,20,12,1356,2853,4058,7386,6653,7560,8962,48053,43561,38680,28839,31228,27475,24443,21866,17446,26328,30280,32780,36336,39019,46453,50012,27863,41584,55671,58520,44869,49780,53612,64715,43659,38988,54486,41729,27062,27912,19878,12218,6141,6392,6700,5987,4458,5970,5216,3949,3494,4003,3993,3384,2786,2632,1688,708,0,291,444,684,766,1302,2502,2778,7186,5539,6258,5341,3804,3598,3527,4568,18654,17644,22936,30550,24895,22318,23877,23876,47808,33434,25194,20145,16044,18252,17664,16170,11728,8630,10351,7679,6760,6416,4565,2560,3446,3561,2488,2922,2514,3242,4319,3385,0,192,341,352,640,810,1035,904,1274,980,957,911,650,563,349,324,369,392,288,340,508,387,288,257,126,128,140,178,177,134,108,52,0,30,60,109,192,168,130,134,159,137,126,104,78,66,33,19,936,854,523,550,586,406,434,406,205,180,141,153,192,134,114,76,0,0,2,2,2,5,5,5,2,5,5,5,4,5,5,5,22,26,22,20,19,16,13,18,28,22,19,16,6,7,5,2,0 +0,4246,7305,9959,12047,20064,29658,27611,51763,93742,106774,152193,150204,137124,104690,114838,12050,17634,18936,23594,41927,56255,60621,58888,102130,105180,125190,120067,48841,85912,118833,131236,6545,9090,12210,15828,13451,15503,14000,14618,12879,9580,8525,5656,5883,4944,3153,1835,0,2,5,9,11,13,18,22,10,695,1638,2547,4751,5764,6866,6291,41878,28860,29802,22963,27070,23055,22499,20210,22768,35780,37822,54002,67367,71216,58727,60683,31051,41937,65918,81627,39651,54258,65204,71338,44516,41235,52973,42959,33100,25887,24088,16038,7221,7467,5371,5373,4138,4333,4944,4938,3027,2542,2676,2636,1929,1434,1475,748,0,219,492,794,903,2061,3746,3654,6440,7851,6692,6296,5127,4739,5960,5667,19884,22624,26111,32688,16169,19523,26678,26824,45983,37161,27335,22503,20738,18794,22603,26265,14348,12645,10879,10352,10740,7780,5804,4333,2688,2493,3244,3575,2404,3164,3786,4138,0,161,318,424,816,1110,1188,1146,1443,1019,1064,908,587,617,482,384,407,436,458,402,561,352,316,293,156,189,182,203,145,127,88,51,0,34,70,91,199,167,154,155,186,196,168,135,98,82,42,25,1338,1092,876,740,837,816,553,455,270,191,202,204,233,175,139,83,0,1,2,2,3,5,4,5,3,5,4,5,3,5,4,5,31,34,28,20,16,17,16,18,23,22,20,17,6,7,5,2,0 +0,3892,7923,14791,20026,27733,31474,35220,49093,82692,105542,124866,147890,136105,119000,127862,9808,11058,16906,20826,29816,43468,58449,74944,115228,87190,109243,85569,42179,88013,114910,127221,3448,4702,7415,8086,7880,8482,8224,7146,7391,7567,6289,3948,3068,2638,2066,887,0,2,5,9,10,15,22,22,13,542,1540,2240,3559,4296,3544,4500,48580,39166,24557,18752,21862,23789,18622,18982,22184,29366,40941,59956,63314,64098,73003,76998,32308,54727,68078,86127,73804,66494,80558,58218,56846,54098,47595,45957,40240,39236,26810,24776,11208,9846,6886,5372,3140,2619,3678,3052,2613,2536,1936,2044,1537,1497,1214,560,0,265,514,784,1280,2166,4658,5297,7283,6918,7286,7566,8480,6816,7827,8944,20654,26234,29102,23120,19061,20424,23827,24397,33467,28966,21877,24128,25489,23831,23007,24758,16566,14646,10584,10236,9784,8902,7336,5563,2366,3170,3118,2704,2454,3256,4183,4194,0,184,383,630,752,910,1151,1532,1750,1410,1276,969,809,716,408,368,529,472,545,520,616,454,323,332,243,211,216,189,158,128,82,49,0,52,115,162,260,290,238,246,245,208,180,146,125,104,44,26,1474,1564,1306,1109,1058,890,569,455,440,346,270,284,218,215,170,118,0,0,2,2,2,5,5,5,2,5,5,5,2,5,5,5,61,44,40,28,19,20,18,22,22,26,21,17,7,8,7,4,0 +0,6599,12847,24273,28405,24992,29450,44150,48709,69116,99005,127390,150921,139983,123906,145958,5696,25710,47148,57550,77516,91537,98795,92134,95566,90744,107018,192682,235288,187040,180253,236093,0,111,228,378,551,1077,1440,2908,3790,3836,2811,1738,1155,864,465,222,0,5,8,12,12,14,18,22,19,81,134,265,375,1063,1476,1558,40378,32720,31558,32536,42368,33355,37400,37557,29558,40231,39353,46315,66499,58877,40333,61868,45535,58575,57223,69962,59862,39532,37952,55114,66224,51616,55786,41961,38965,37080,27199,29247,14158,11816,8738,9101,6434,4342,3829,3401,2202,1967,1380,1482,1350,926,605,316,0,1416,2445,3610,5065,5263,6404,5333,6288,6256,5268,6688,10838,11092,15036,13242,22970,23310,23445,29993,34226,30752,42120,40985,29668,36764,37888,33464,28946,36496,33299,25661,14407,10801,9025,6459,2188,2898,3311,3493,2676,2902,2249,2506,2147,2477,3011,3453,0,172,314,586,786,1103,1467,1518,1537,1759,1410,960,884,804,780,536,655,515,556,404,159,183,249,266,296,278,188,128,116,79,77,38,0,53,113,120,163,175,166,215,286,338,334,308,241,170,154,86,1963,1670,1801,1476,1135,1199,1117,731,490,404,400,413,409,342,206,143,0,0,1,2,2,2,3,2,2,2,3,2,2,2,3,2,80,55,42,36,33,30,22,29,27,24,16,22,21,13,8,5,0 +0,5751,11778,17358,19118,23861,26298,30418,38357,68540,74143,110148,112474,107927,93757,114269,8534,22302,31636,45643,68695,82063,97782,87802,73623,95428,115002,173614,147146,161812,197912,228001,11281,10290,13054,11433,13400,11442,9471,12074,14464,10930,7861,5722,3189,2734,1296,734,0,5,8,10,11,14,18,18,15,61,114,224,312,903,1162,1266,39920,39810,37104,30444,55196,38018,27132,25618,22110,30063,36182,53043,51327,51384,52481,76674,41771,47670,37286,45259,66059,47336,35998,44063,99578,82742,68330,61308,51504,40689,32289,29155,11277,11422,10265,6704,6136,4036,3938,2756,1891,2040,2222,1927,1697,2131,2082,1838,1115,2036,4124,4414,6883,8098,9808,10652,5848,6855,5534,8268,10734,12693,12434,13428,20678,24227,23828,34810,25918,31714,35088,35208,30729,34614,26524,25597,28908,29456,40646,31094,15250,13164,7463,6398,3732,4461,4783,3846,3451,2980,2856,2740,2217,3424,3963,3980,438,638,515,987,980,1226,1770,1826,1941,1534,1142,973,721,747,681,542,801,659,540,354,194,244,316,274,312,255,250,193,139,105,106,56,0,51,91,100,144,200,164,242,677,712,639,532,444,426,482,454,1237,1294,1680,1146,1185,1180,734,540,365,476,504,518,467,348,454,392,0,18,33,42,81,92,79,123,18,28,36,44,50,62,76,94,109,116,150,164,228,258,230,180,124,121,134,120,101,63,40,20,0 +0,3494,7796,11783,16296,24198,25945,33065,44829,60029,83244,106670,90798,82670,94682,74796,14624,22403,31568,28899,70611,69213,74301,71938,37667,72258,96632,148653,110408,140744,151873,221562,23653,26171,24096,18924,24013,21534,16551,19894,24406,18001,15576,11194,6494,4165,2418,1303,0,4,6,8,10,11,12,14,12,51,101,152,268,693,1090,1590,50016,53927,40402,32668,51698,44337,27924,19713,11763,23781,41504,45316,51432,49481,60716,57773,48158,41201,33053,41261,66430,66228,48414,38152,106433,90747,71829,76482,52670,44322,35010,39211,12284,10319,8574,5797,4730,5074,3894,2640,1590,1672,2394,3414,2037,3237,4012,3717,1928,3130,4895,4938,9447,10971,10795,14792,5207,7317,7402,7558,9979,12174,14398,14671,27306,31006,30258,22996,20658,23740,27025,25325,37305,29297,24627,22974,33691,29049,35380,33943,13983,12375,9446,7660,6242,6914,5662,4686,3335,2887,3092,2607,3262,3072,4218,4602,756,940,908,1150,1274,1807,1758,2033,1811,1378,1414,1354,484,422,562,476,992,749,660,388,320,276,294,289,384,352,232,234,135,138,100,50,0,47,78,103,102,166,217,344,1032,848,824,674,713,825,729,743,989,958,1065,1250,1256,1094,578,385,398,380,523,542,584,615,604,498,0,38,66,70,140,128,164,216,37,40,57,75,119,130,158,183,147,156,217,314,466,400,364,317,218,218,218,174,152,91,66,38,0 +0,3340,6541,10651,18371,19948,22907,26416,36888,58988,64794,84258,79494,70262,76908,56204,16484,22836,22508,27382,51907,52393,61981,78126,26114,45850,54112,109128,87995,112682,139888,195722,30790,34716,38055,29316,37031,31270,29243,33856,37547,29712,28933,16786,11746,6686,3440,2016,0,2,5,6,7,9,8,11,12,62,115,150,173,496,778,1310,34943,32991,36831,36756,45502,33354,22974,15106,8762,21502,30808,36584,41049,56877,75839,67636,42565,43423,44023,48150,63670,53922,36452,33336,115354,89944,81354,69342,53907,46306,39428,33033,9544,8636,7075,4862,3051,3682,2838,2336,2011,2032,2156,3454,2878,4186,5065,4606,4058,5154,7978,6556,8206,9626,9549,14822,5916,7451,8572,9368,10438,14316,16139,14166,21517,28089,31193,25086,24115,23667,19666,20562,28945,34470,36156,26204,28342,38128,39725,37336,8362,9360,7090,7653,8875,7625,8268,7486,5216,5268,3328,2974,3534,4220,6322,5897,1167,1533,1351,1819,1641,2561,2332,2446,1833,1842,1476,1198,463,572,816,822,1121,812,755,534,372,322,262,292,554,512,319,252,204,183,122,62,0,32,70,121,125,188,259,340,1348,1200,825,836,739,750,903,845,1267,1008,970,1046,879,936,504,314,346,571,551,682,713,694,743,706,0,52,79,118,140,188,212,360,48,72,84,122,175,230,262,290,153,180,208,424,604,625,584,436,289,300,242,197,163,137,80,42,0 +0,4269,8347,12746,14876,18028,16028,13636,39047,54113,53042,61651,58706,60754,55135,52297,19731,17320,17770,18472,24700,53126,73835,88819,21089,44006,56368,63381,65860,89008,102836,204068,42843,46346,37374,37094,38345,38610,43829,46983,41096,33966,25758,18202,14236,10302,5139,2614,0,0,1,2,2,4,4,5,12,58,87,129,145,552,900,1101,34322,33914,25948,35747,35585,26980,25731,15537,7452,12429,18166,25909,40981,43609,67472,57388,51293,55594,44468,42868,42726,42106,30468,27926,91592,68981,50836,54150,64328,56048,38635,25088,5990,5321,5442,4050,2418,2173,2273,1816,1858,3044,4066,3694,4873,4790,6913,5950,5471,4571,5578,6972,9438,9991,9324,10938,6928,7231,10804,10871,14398,14460,12385,8613,22161,14554,13965,17876,20414,14058,9740,11826,32548,35417,29360,29500,32484,28067,37498,30460,6896,7582,6149,8338,8606,7296,9378,7124,5441,4565,3870,4007,3179,4887,5153,5589,1533,1522,1786,2296,2468,2550,3133,2648,2121,2031,1428,954,568,787,863,992,1677,1172,1064,633,314,317,237,316,610,508,511,426,228,212,158,69,0,32,77,141,170,152,207,336,1234,1141,1399,1232,856,1015,1175,1011,1260,1479,1378,1069,813,811,596,337,323,383,464,709,1045,981,946,997,0,31,72,143,206,270,384,455,68,93,154,221,253,270,330,403,135,392,541,627,708,706,669,482,394,320,362,263,220,176,84,46,0 +0,3448,6193,6897,8546,10295,11175,12384,30067,40260,42405,51634,64646,54600,69966,67298,25470,29670,38527,31056,29540,41355,57070,64178,13073,25853,41480,52616,57781,75812,93713,167113,37712,43668,35616,39724,60845,61970,53734,59355,66471,38202,25798,23802,34318,20490,7324,4228,0,0,0,1,2,4,5,6,10,40,61,78,121,487,607,989,50060,45869,32520,37580,35490,30646,22010,14362,4905,10848,14826,23024,46980,53988,76360,69598,69882,57596,39978,54374,54724,54738,41390,49358,82783,64768,58586,64600,76813,69535,34896,26508,4571,3983,4286,3240,1725,1574,1907,1708,1346,4304,6391,7333,6794,7271,11106,8832,13072,11362,8138,9495,19203,16573,13579,15463,8930,10776,16446,16630,12685,13801,12819,12628,19882,18335,22144,21222,17664,14846,13529,13098,30583,28193,30620,28882,22599,28446,27936,26910,7999,8922,10440,8336,6074,9398,11514,9438,7250,6361,6185,4771,5072,4980,5048,7416,1756,2249,2444,3003,2110,2485,3120,2622,1743,1934,2332,1453,1927,1706,1434,1458,1866,1608,967,692,425,388,389,378,501,456,443,381,181,153,124,61,0,61,119,203,347,339,404,460,1593,1284,1242,1414,778,1013,1280,1456,1261,1417,1443,1118,655,512,524,273,264,588,750,1317,1006,1278,1610,1896,0,40,84,148,261,299,369,419,225,296,392,409,438,420,387,399,409,468,582,722,1316,1089,860,828,552,600,569,478,494,361,228,123,0 +0,1978,4181,4950,4859,6113,6054,7228,20662,25135,33886,59024,69269,75327,66042,71234,38786,39975,46852,48493,28183,35963,36715,42416,11580,17303,24489,29632,34291,73497,99536,165181,51217,53988,49847,47281,85528,66105,74314,84174,73637,61616,33302,27802,46110,26699,12598,6413,0,0,0,0,1,2,3,4,8,22,42,56,97,371,612,807,60334,52597,53937,46645,34652,34056,24628,11892,3166,9930,16880,24632,47918,64091,68471,48402,83526,62663,53792,48252,62110,61624,58849,71360,114316,99962,68554,60305,85990,52219,31928,19999,3679,3165,2092,1310,1071,1020,914,1046,1103,3980,8196,11036,9327,9751,13726,14241,17203,13499,14308,14678,26380,21162,13545,14988,13455,13053,18577,22486,14000,10830,11266,8451,24896,24711,26732,23910,18700,14765,14613,15481,35124,33804,25157,20898,22383,29339,26566,22198,12896,9982,11421,9122,5795,9493,10156,12119,11723,8314,8042,6864,5700,6433,6692,6719,2723,2102,2394,2859,2028,2358,2708,2508,1997,2708,2528,2176,3285,2824,2120,1585,2182,1896,1344,806,478,502,436,417,482,508,377,295,154,109,68,41,0,85,192,375,522,646,608,760,1804,1710,1360,1710,1054,1113,1375,1297,1407,1744,1594,1288,598,405,294,147,131,668,1086,1542,1391,1950,2209,2200,0,48,84,140,326,432,394,376,325,468,536,482,483,665,628,568,754,835,795,846,1528,1352,1077,1002,889,794,806,684,759,510,480,274,0 +0,814,1910,2234,2182,2402,2582,4132,8531,18014,32754,54500,63800,67944,66110,76140,51511,60388,66925,58910,39541,29882,25327,26961,6852,9876,19588,21558,26128,58759,75038,136707,60621,58445,50802,71223,101946,75746,80826,89110,88214,52044,35232,36384,42828,30828,15218,8164,0,0,0,0,0,1,2,2,5,16,21,27,40,194,367,342,76411,66463,41481,38525,38630,28715,21833,11374,1414,12314,22589,23628,51230,57242,53655,65682,85920,71111,62948,48476,47483,66145,65647,70374,99934,88807,59810,70747,81935,53198,40227,19556,2158,1418,925,671,485,563,444,435,512,4364,8123,10445,13667,16264,21322,21434,22714,19209,17765,18155,28153,26738,15773,20131,16310,19083,15680,20712,15602,14020,9422,9182,25970,22394,28974,19395,18653,16570,19577,21603,26404,23204,21888,19719,14586,16992,16372,18378,15357,14928,17023,11725,7662,7833,9379,12424,13142,11996,7271,6379,6273,6960,6648,7337,3217,2417,2624,3424,2566,2781,2673,2945,3388,3381,4195,3338,3642,3196,2084,1764,2547,2181,1558,1054,692,504,416,381,476,396,395,270,190,126,87,44,0,114,250,377,522,904,908,1412,1908,1814,2564,2164,1755,1734,1951,1686,2011,1866,1751,1274,567,474,256,126,67,876,1490,1933,2151,2482,2457,3040,0,59,122,186,308,377,436,373,389,476,665,606,459,525,722,820,835,1104,1155,1082,1332,1164,1208,1053,852,922,1336,1007,814,596,478,242,0 +0,5828,13870,34751,44772,58832,57087,55899,55225,75062,70678,70161,99794,74786,60669,77740,69956,76640,62461,78054,70259,73569,55653,66669,66458,91408,90903,82552,106518,87444,83821,93084,98252,76313,55119,46504,31965,30914,30818,26352,22942,19892,19392,16017,17126,10464,5728,2337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68617,59662,48013,31367,20265,43210,58695,71229,110212,102111,139315,131318,144765,115429,100482,71412,73755,80172,83586,106493,123316,136908,116210,81855,81403,74879,45815,42976,36162,24414,22539,12898,0,2453,4573,8668,11730,17539,18983,17716,17060,14868,12434,10197,5093,11769,17005,17960,21711,22316,26464,27048,36882,35446,31457,29919,28014,33652,29690,27585,28072,29282,22065,16227,27379,30862,47076,50840,64294,60838,64926,45802,49357,49690,41247,42125,36265,31564,26971,19335,18357,11511,9270,7596,4750,4753,4979,7394,11420,9190,5666,4966,3754,4073,4059,5663,3369,5172,5311,5258,6348,5370,3932,5414,5091,3875,4282,3404,3937,2518,2160,1990,2636,2284,2261,3437,3541,3624,3645,3009,2857,2304,1467,1216,1088,788,432,197,0,390,741,1086,1343,1047,1266,1790,2331,2348,2389,3278,3571,2819,2042,2554,2922,3090,4698,5172,5826,5479,7747,5634,5678,5548,4961,3648,2238,2492,1917,3388,0,154,325,335,502,508,759,600,682,677,500,433,552,688,1044,1165,1034,1144,1111,1083,801,628,533,453,354,366,272,219,117,82,63,28,0 +0,7272,19472,28156,36495,42168,55043,50803,50637,52822,57832,65300,100068,88425,62820,85479,76799,69096,54657,77619,71898,63413,60817,83910,79289,80705,77383,81872,110385,102007,89331,81200,110842,90270,59342,39976,35334,35258,42235,40760,30503,29236,26114,22826,11682,9394,4855,2221,0,136,283,536,655,664,556,760,948,750,712,484,308,239,135,95,68482,52414,32000,26344,22353,37301,60523,95266,174346,157763,135598,142770,127115,112043,66004,57248,51172,72968,89054,112917,103311,115202,114400,86486,52783,54120,51165,42344,31661,31240,26460,12850,0,3016,5830,12026,16963,17041,23970,23860,16081,15354,16044,11256,7616,13466,16931,17846,22948,26732,25696,29696,29376,32756,24856,23633,30812,30000,22551,22997,34370,26365,17035,11074,30908,32420,46338,45922,57920,46263,53082,53806,51316,56028,49565,41150,23817,22962,23656,15158,18967,15398,10762,13054,9630,11304,11677,11974,14038,11682,9028,6138,3368,4778,6230,8648,3954,5494,5638,6036,5417,4263,4409,5663,4518,4116,3011,3288,3450,2746,2307,1751,2923,2806,2064,2884,3389,3164,4015,3356,2369,2150,1241,961,909,748,312,181,0,307,807,953,1117,1012,1102,1488,1750,2320,2187,2448,3379,2756,1713,2210,3945,4042,4770,5588,5432,6201,5270,5242,4170,4196,4296,3461,1907,1879,2008,3180,79,216,485,584,526,564,717,632,494,616,740,737,890,1065,1201,1394,910,1122,1068,1030,725,646,702,780,656,576,449,360,305,279,309,191,52 +0,11085,21133,29679,25841,36400,41444,39533,41137,47792,45277,41392,82170,88684,90466,82777,71902,65774,69712,78802,59684,71901,62938,86468,85635,72762,46144,62952,115944,89726,93246,109896,115364,107546,68180,38042,36211,43686,41149,41126,31445,39943,36308,27394,11480,8808,5150,2358,0,335,568,854,1367,1130,1376,1719,1800,1604,1326,909,545,442,292,238,59528,39156,29091,28433,31606,42523,50687,102522,195225,221990,179200,178230,116417,95803,63674,72349,38639,47183,71650,83018,74966,68548,76271,56944,49028,53558,45318,57699,30960,30092,21566,10338,0,4515,7628,15486,19783,16810,21020,28494,18111,13386,15345,12933,10291,10405,14762,14512,23772,27260,26692,27642,32513,23579,19629,18736,28547,23787,24782,19367,29424,24878,13982,7426,33002,35768,42548,34863,39572,38320,46588,41322,58223,59635,43744,39296,19726,17575,15952,11962,14490,12672,15506,21771,18036,16862,18529,19681,16944,12353,13134,9465,4547,6389,7866,9278,3447,4218,5094,5135,4340,4320,3510,5049,2664,2437,2045,2348,4409,3442,2788,2219,2855,3038,2604,2593,3648,3112,3742,2800,2170,1808,1320,1050,840,576,325,176,0,275,608,893,985,1095,1164,1322,1505,2519,3053,2458,2378,2267,1670,1976,5636,4127,3552,3428,3838,5269,5354,4278,3356,3533,2575,2459,989,1541,1598,2442,152,321,486,734,598,716,732,745,455,770,870,735,1422,1480,1518,1744,790,823,932,834,950,923,902,868,1161,799,786,552,521,536,455,338,125 +0,9752,20137,30422,29408,26960,38122,34768,41092,41702,31950,40577,58697,64718,65316,79238,68088,79836,105286,82213,64234,63477,69916,69744,59149,59077,37570,58260,88729,97503,86739,91552,123752,109458,64631,62944,47475,43168,51247,45786,37371,39578,34620,23814,10814,9848,5946,2678,0,520,1008,1244,2344,2420,3134,2847,2470,1836,2088,1332,916,734,491,378,62893,41972,26512,25207,28063,51790,69267,96821,161003,199660,213265,149763,87900,81414,47741,60726,25513,36423,67488,79799,62887,71635,78590,82610,52190,47238,49645,53924,33314,30668,16782,8012,0,6028,12306,17332,18665,19894,22073,35105,19582,20020,15610,14494,11746,10016,12475,13890,25749,21308,18756,22808,22452,18988,13104,12590,23577,18471,18652,19098,22679,15928,11263,6601,29950,35698,43302,33740,31437,31811,53220,37872,57729,43709,45530,29948,21550,18458,19766,15230,20142,17530,24868,22350,28956,32762,29293,26993,23885,19002,19445,12992,5567,8100,9629,10444,2872,4370,4639,4964,5630,4620,3667,5541,2681,2178,2205,2322,3662,3956,3264,2463,2706,3180,3247,3422,3509,3433,3676,2990,1444,1382,926,712,640,528,351,208,0,297,460,650,803,840,1080,1097,1924,2330,2408,2252,1836,1613,1607,1693,6008,5352,3821,3610,2980,3841,4706,3991,2970,3078,1969,1682,1017,1204,1211,1950,314,674,986,1176,1152,943,1168,1215,594,996,1036,1350,1748,1853,2295,2076,680,798,892,884,843,1044,1287,1240,1438,1278,972,820,762,655,793,555,173 +0,6448,12601,17056,25723,30583,28404,25249,48339,45728,60827,44064,38557,42441,55232,69633,93497,83842,62786,75777,91592,116368,106542,95837,59812,61410,84622,75538,62828,46293,35759,30398,124495,116048,112380,85562,51777,58231,52911,48198,47322,39142,40081,30894,14280,8476,4854,2724,0,616,1159,2199,2630,2652,3927,3348,3379,2703,2813,2109,1258,1117,869,531,49094,44903,53119,41190,32436,38572,49624,81284,171004,134920,88599,96240,100718,92385,60130,62787,14449,36440,55576,68002,74883,95289,88128,89786,57586,66452,54375,46274,39319,30847,14248,8247,0,8214,14615,18300,23295,20998,28429,30309,15344,15858,14560,14578,14904,10179,9148,12132,21596,19228,12198,14094,11303,10333,9648,7351,16484,12266,11742,12424,16748,14627,10579,6220,39232,43860,38844,39414,31500,35054,31166,37063,41599,44892,45005,39143,23564,26203,21767,14454,24424,25293,22278,23945,31744,28414,29260,33686,27634,19572,10811,7705,7222,5997,7650,12948,2536,2368,3181,3950,5279,7786,7835,5852,2018,2573,2969,2456,3165,3383,2553,1939,2108,2062,2449,2828,3290,2551,2297,1982,871,721,878,727,620,459,218,103,0,186,356,596,887,796,816,839,2272,2344,2823,2778,1998,1490,1618,2435,6984,5364,3841,2789,2161,1734,2025,2354,3689,2364,1906,1340,800,1447,2078,2004,468,491,610,1045,1459,1751,1973,1922,582,746,981,1526,2054,2360,2292,1830,745,680,598,658,908,1144,1389,1502,1776,1758,1403,1142,1060,1001,691,507,282 +0,5406,10582,13662,20852,23985,26469,23822,39367,41948,52262,47227,36594,29914,42880,42174,88794,90128,50835,74907,75504,83028,80902,85866,59252,54604,56876,59291,48407,31718,33206,29860,119466,119600,120542,91660,50115,63396,57149,58284,51992,38279,39789,31442,18804,11535,7640,3964,0,596,1311,1879,2799,3553,4167,3596,3967,2992,3412,2054,1318,1002,820,525,44494,59163,61450,52960,35694,44927,57176,77258,138280,120558,77891,88708,73308,71334,57061,44239,18168,31390,40896,56815,74218,83627,71895,62070,66130,51324,48668,41767,31001,23382,12831,6399,0,6765,11284,16558,25581,28657,33294,37205,24989,24006,26588,21404,30137,26696,17982,23206,15988,14598,11573,10474,8112,8058,9298,8791,19598,13274,12324,12345,13709,10923,9178,5130,49123,44486,40942,35075,30652,24801,26681,25968,43788,38524,34280,30644,17469,20604,17953,14273,23499,27825,29330,26077,34157,27150,26829,26194,21384,18871,11066,8888,10159,8561,9914,13790,1715,2155,2994,3619,4769,4820,6706,6464,1944,2560,2042,2228,3241,2938,2427,1676,1920,2020,1989,2409,2412,2328,1805,1385,823,705,897,726,457,436,218,98,0,192,426,567,748,912,1284,1414,2780,3373,4378,3356,3367,2924,2520,3392,4699,4524,4234,3965,2864,3096,3521,3265,4308,3362,2684,2260,1320,1498,2222,1779,615,832,1044,1512,2161,2167,2356,2384,1522,1518,1184,1707,2377,2022,1808,1842,553,662,701,768,927,1181,1479,1320,2136,1896,1656,1390,1362,1070,687,558,342 +0,4135,7438,10925,18527,22289,26185,19601,41830,43154,40390,41156,32660,29591,24618,30210,85658,69688,60482,77122,39954,76496,89812,87673,70643,66125,45379,39268,35934,31336,21521,19791,121381,96817,105050,97371,51331,72437,73662,76952,40463,38619,31668,31441,21910,13139,9812,5369,0,676,1159,1844,3618,2966,3661,3906,4372,4219,3166,2095,1272,927,757,581,40450,48594,66591,53662,39843,48229,61130,50537,159010,114309,68808,49792,54227,54086,35988,35502,15974,28161,42379,59176,58914,61209,50499,38544,54797,45903,40031,31116,27413,23363,12865,5426,0,4452,9584,12456,24263,33833,36106,35868,27574,28321,32297,27662,40758,33056,29317,25711,16244,13486,9860,9343,4694,5658,8722,11385,18881,16978,11934,9200,11139,7828,7924,5329,50696,47741,47286,35809,20943,17936,17192,19272,31520,21933,22418,13866,15129,16714,12746,16992,18018,19612,29496,21944,33148,27588,18618,17130,21880,15608,16466,13655,10786,9642,9780,15675,1251,1643,2458,2843,5454,4671,6068,6942,2372,2201,1926,1613,2686,2346,1594,1052,2507,2678,1958,1503,2689,1640,1314,1066,562,577,730,655,498,376,178,85,0,232,401,650,637,1018,1378,2369,4209,4022,4834,5046,3944,3648,4002,5687,4594,4976,4123,4947,3440,4535,4407,3729,4645,3524,3471,2931,1601,1481,1732,1428,983,1146,1454,1833,2873,2898,2652,2942,2038,1605,1734,2273,2457,1994,1744,1640,447,631,791,1183,785,1415,1644,1944,2363,1688,1752,1627,1495,1075,1016,828,481 +0,4257,7816,11326,12360,19380,19030,17826,32036,28630,30720,31664,23514,16964,14738,17086,61095,64060,48788,47223,34944,40954,55881,65800,51697,54041,39781,28661,27245,21378,13860,12728,110800,119432,92885,110376,94604,83586,89274,82038,51034,43752,31094,30810,23119,16747,12231,6094,0,821,1412,1980,3093,3782,3743,3850,4382,3558,3398,2172,1137,864,578,526,26668,40146,64733,66578,61247,59514,76750,63360,144821,89411,52478,39747,29844,32353,22744,19410,13045,23350,34090,35518,55324,48392,39668,35200,48939,42571,42110,27900,26934,19765,11122,5691,0,4430,10174,14450,19839,29802,36146,31046,29422,34626,29698,42286,68592,44547,44310,42443,9171,7778,6541,6470,5082,8056,8395,14531,17261,15998,13506,10127,11198,8025,5434,3712,50755,35576,45656,35574,17260,17630,16382,16326,15146,14310,17337,12502,13736,13053,14199,16080,22434,26776,43185,42406,35657,33294,21064,24876,27292,22979,20328,13902,10960,10628,8246,12392,1106,1826,2214,2670,3390,3742,3828,4336,2472,2156,1800,1884,1917,1653,1213,786,2530,2446,1460,1360,2034,1324,972,963,733,606,758,572,357,249,144,68,0,192,378,762,840,1236,1456,2562,3738,4401,4607,3674,4722,3813,4014,5584,6260,6120,4662,5554,6807,6366,5712,4813,4071,3405,2673,2490,2617,1984,1672,1080,1401,1360,1552,1818,2931,3051,3415,2920,2484,2272,1724,2178,2163,2226,1504,1516,245,507,877,1064,1170,1481,2140,1744,2146,1894,1851,1862,1439,1184,1132,666,532 +0,5765,10527,15853,24815,29213,37027,31634,29727,26777,23125,18650,8970,8725,10161,8214,53771,58158,68074,68653,89298,58592,52559,55610,46006,39105,25982,28293,34105,18472,11575,4664,113095,104342,80080,45940,19237,29156,39738,37298,46296,37348,21307,16332,7894,5825,3848,2011,0,322,723,853,1215,1149,1616,2868,4134,4527,4334,3365,2678,2182,1012,602,15566,45006,62758,70202,81005,99951,106742,83608,83268,80648,63033,48795,44129,27772,21516,11608,15177,12241,11216,10353,7071,13117,22381,26715,42572,38355,25435,24119,31223,22793,11875,7044,0,5096,10214,12178,17460,30097,40229,47844,40736,46933,47792,48286,63964,74938,60957,58056,2824,6036,11991,15032,21799,24612,30195,30214,22126,13120,9824,7370,5373,3762,3170,2174,37596,37447,50796,47065,37571,33004,28384,19914,4890,3894,3307,3450,4933,9545,11260,16981,28948,33634,38732,37688,48343,49031,45515,30210,28659,19221,16748,15515,16690,13341,16058,14833,1409,1571,1563,1495,1906,2610,2714,2781,3014,3072,2772,2532,1725,1115,1023,478,1907,1572,1488,1358,1666,1746,1337,1358,929,916,870,836,585,391,303,176,0,626,1499,2072,2965,3161,3757,4217,3890,4081,3642,2937,1450,3557,5222,5683,7376,7840,6459,5054,5246,4693,3982,4594,3848,3060,3495,3519,3417,2982,1879,930,1475,1368,1066,1624,1831,2167,2640,2489,2978,2462,1605,1836,1905,2108,1671,1393,0,121,238,424,486,912,1384,1668,1701,1853,1701,1434,802,754,717,646,542 +0,4398,8375,14386,17532,26866,33559,27900,22818,21762,17354,11503,8613,10218,9702,7384,41084,51268,60540,75322,91061,83242,49778,55356,35210,33704,26098,26256,21527,15595,11956,5494,112198,90652,76122,53685,26860,31205,36907,51445,31144,29272,18934,14658,9914,7020,4471,2328,0,698,1403,1710,2412,2542,2400,3366,4250,5044,4940,4048,3441,3288,4026,3254,11864,37656,52549,57709,92620,89139,87455,96584,88222,87237,64058,69129,64184,60661,61882,38986,40475,33903,28965,23148,39278,45522,44156,44066,28437,31330,31346,29230,27880,18988,10032,8549,12520,15470,20663,20787,18036,33002,40610,40866,43135,57092,45862,59372,45394,55814,67908,71454,4975,7703,12344,12534,21973,25058,23848,23075,22926,13328,12057,8686,5320,5230,4469,3334,23940,31744,40004,38468,37390,34891,28160,17248,4797,3942,4027,4046,5512,6582,9833,11126,28910,33122,37344,39118,47906,40140,43301,32519,30195,25206,17082,16658,13320,13587,11421,10277,1894,1503,1907,1812,2227,2072,2185,2512,3828,3188,2968,2234,2005,1838,1334,1049,2823,2443,2449,2414,1837,1620,1121,980,753,742,541,609,458,334,306,156,0,590,1383,1716,1918,3020,3033,3338,2754,3349,3781,2634,1903,4449,6348,6038,8132,8005,6552,5726,4846,4591,4162,3483,4208,3719,3035,3766,2576,2390,1684,1210,1354,1162,1332,1566,1718,1934,1974,2626,3244,2306,1596,1555,1968,2017,1934,1676,98,162,248,372,495,731,1342,1410,2120,2136,1433,1135,1074,946,1055,894,515 +0,2676,6526,9648,14124,19208,21620,24526,19714,15109,15698,11545,10988,8160,8095,5342,42794,43254,52262,69501,69344,54538,57802,43974,25079,23830,19038,18871,16726,11709,9622,6142,84130,87298,72910,50323,33728,41761,50820,54722,26180,24910,18814,15945,11300,9444,5481,2748,0,966,1790,3051,3468,3165,3643,3614,5792,4732,5342,5686,4240,5795,6258,5916,12680,35352,53190,60037,91956,84252,68510,105235,72077,65542,86764,88223,88272,78594,81668,60901,59796,46547,40526,42045,66279,69810,83938,75645,22859,31644,31482,34879,23573,19761,12305,10761,20976,27474,27348,22964,25406,23962,29594,36413,64817,71508,57987,69420,37201,38450,57064,54006,8874,9850,9486,11659,21934,22636,17526,16699,19877,19942,15463,14816,6891,6271,5737,3483,21518,27026,30519,24724,28188,31169,23960,14246,4988,4276,5151,4679,6181,8770,8882,6919,19829,20862,31487,41280,34643,41510,35332,31280,21993,24790,19812,12907,10450,11708,9220,9338,1830,2136,2110,2228,2105,1984,1414,1905,3876,3320,2394,1848,2553,1618,1233,1507,4255,3843,3214,2947,2246,1639,1045,1036,598,452,468,456,320,272,237,110,0,504,1074,1409,1675,2431,2832,2824,2590,2470,2986,2702,1737,3771,6481,7028,6408,5834,5426,5109,6159,5007,3739,2971,4188,3472,3758,4544,2500,2096,1844,1388,1664,1273,1154,1106,1433,1352,1704,2280,2459,1560,1398,1107,1509,1257,1553,1673,196,298,305,382,392,537,876,939,2105,1553,1688,1180,1253,1050,1131,757,400 +0,2130,4338,8873,9691,12221,16742,16928,15182,12510,11488,9217,10799,8967,6635,5418,31957,40392,35828,53327,51715,46552,51983,35658,16752,17290,17907,15210,12232,12744,11720,6573,59807,63872,41913,36996,28843,42086,43105,46829,24859,26720,23732,17370,10737,9091,5294,3315,0,980,1841,2808,4147,6018,6113,5862,4768,5729,6302,6420,6402,8791,8534,10160,14193,28900,42099,41802,65645,78102,72202,98186,70896,63402,109222,101718,80036,80364,81140,80119,56042,54308,63036,55036,83948,87538,84980,84636,21642,21574,25628,29320,23464,23545,15267,20804,31344,32240,36380,37046,31460,34172,36994,39647,67600,59290,57361,66862,45430,60128,51007,51489,8816,9742,7082,9844,13270,15960,14893,12806,24994,18804,20733,15074,10888,8333,6504,3646,22074,26834,26933,20891,19440,20090,18472,10565,4695,4780,5003,6039,5776,5824,7884,6366,13670,17582,22161,28186,32480,33504,27189,25020,27623,25522,24688,18768,8916,8970,10392,8590,1497,1698,1648,1769,1440,1509,1335,1464,3673,3202,2336,2246,2414,1708,1478,1514,5138,4608,4418,3500,3055,2246,1305,926,606,414,375,432,292,266,159,98,0,455,750,1098,1786,2263,2708,3116,1553,1868,2211,2504,2086,4632,5523,6500,6645,5268,4988,5352,5240,4516,3569,2440,3285,3276,3216,3556,2807,2650,2586,1894,1696,1276,1200,1395,1562,1700,1858,2306,1787,1357,1066,1183,1573,1496,1786,1582,342,438,412,384,470,622,835,799,2257,1902,1655,1046,1269,1214,1168,740,523 +0,1499,2973,4847,8845,9502,7459,5980,7225,7764,9716,7480,7204,8450,7162,5866,18695,28036,39944,48521,47054,29514,22130,23916,11237,14645,16725,14173,13708,10798,9918,6292,26797,29693,34610,31970,31514,43157,51564,55577,32872,19292,14707,15946,13472,12713,8220,4114,0,1316,2945,3204,4945,7350,9285,9908,5838,4402,4608,5697,7861,10343,10357,10712,16748,21421,34759,49330,55575,56810,52829,68725,65382,75301,82811,78429,106962,88359,89609,83427,71403,64055,78588,100345,97764,93718,92516,85726,15851,15862,15755,20513,29873,37800,40832,39103,34639,36920,39326,47310,40874,36826,45165,45425,56822,70700,61523,53588,51000,49454,56343,61409,12350,12535,11899,12599,10872,9582,6404,6455,26718,18232,17037,14447,11732,7357,6536,4549,17652,16794,16922,19122,17702,13939,6980,5285,3983,3700,3652,4322,6284,5538,4371,3940,7614,9389,9788,15658,20792,15598,16148,17585,25359,22311,17713,13819,6976,7164,8194,9026,1872,1602,1602,1259,1476,1418,1360,1189,3986,4092,3549,2908,2871,3037,3176,2394,5570,5747,4378,4548,3342,2732,1597,1098,582,551,586,550,344,277,185,86,0,466,836,1040,1460,2154,2130,2300,641,953,1166,2000,2408,2714,4008,5469,6225,5173,5968,5053,4424,3375,3504,2214,3144,3427,3585,2866,2812,2456,1528,1618,1196,1071,1036,1397,1612,1594,1464,1642,1139,1059,1089,1397,1238,1576,1438,1297,607,456,483,618,623,805,825,796,2577,2247,2014,1395,1135,1135,996,892,778 +0,1084,2146,3507,6202,7042,5676,5380,4839,5336,6578,6368,5044,6157,5781,4706,10816,16306,31036,32832,31790,24124,16402,16856,7947,9952,10500,12746,11939,11113,9764,7610,27361,26692,29064,34038,31251,37684,35030,41870,29550,23538,15120,10872,11085,7732,6994,3252,0,1298,2516,3650,4857,7019,7046,7622,6124,6460,6149,6728,9981,11588,9765,10768,16032,23036,27782,42486,41025,47960,55710,78802,68070,73311,73566,84660,117667,94893,123500,103283,84575,76496,102641,104924,86592,93522,106912,108474,36912,29826,26667,26908,41434,42729,48959,51438,36362,29442,37552,37200,26511,31154,45939,41370,67318,64822,72151,59919,39199,53584,52041,44108,21370,16746,14664,12744,9076,8494,6600,7036,28151,19200,14479,10951,12163,8596,6522,4216,16525,16998,10978,15332,13439,10774,7022,5636,4508,4682,4982,6338,7136,6648,5783,4771,10930,8213,11251,13774,20062,19548,14764,19775,17273,15368,14326,11549,9526,7208,6151,6183,3948,3274,2667,1626,1779,1757,1846,1762,4154,4772,3441,2980,3133,3558,3431,2702,5478,4762,4134,3777,4631,2998,2159,1442,410,496,492,428,257,202,141,68,0,336,655,868,856,1232,1406,1878,501,795,1323,2228,2859,3778,4461,7126,6088,5860,6918,4418,4269,3622,2791,2098,2678,2456,3426,3034,3171,3206,2539,2218,2086,1664,1593,1806,1648,1448,1535,1894,1436,1308,1234,1008,1176,1106,1001,1202,886,858,967,1040,917,1049,996,1056,2631,2218,1802,1798,1566,1134,1080,850,738 +0,863,1502,2174,5139,4546,4161,3560,2483,3320,4143,4555,2955,2520,2650,2644,7901,12068,13319,16608,19780,19498,14250,13128,6305,5988,7761,9292,10879,8287,8828,8956,19914,26382,24530,27048,22368,26450,31231,25740,29274,19551,15828,9369,6120,4352,4054,1792,0,1400,2479,5142,4487,4946,6456,8293,4727,6849,7800,8122,16261,15042,13276,13712,19471,25843,29800,35071,46633,54713,66545,95509,56154,69883,67664,88519,149236,166047,136012,104214,77599,89201,97859,136121,118032,93768,103408,106448,50108,42350,33216,35827,45227,38161,44120,39148,28662,37336,34374,37296,22278,32144,42566,58439,60317,60184,58948,52106,38313,42120,37466,33381,24536,17601,18811,14123,7771,7924,7873,8292,23074,17165,16035,11376,12661,10174,7074,4714,14340,10252,10455,10610,15566,9982,8855,5714,4436,4980,7724,7632,6382,7313,6296,7524,11320,9474,9079,10985,14408,14036,19037,19531,15509,15183,14784,11457,9710,8055,6688,6726,4829,3196,3136,1744,1636,1676,2010,1659,3134,3134,3480,2767,3076,3777,3926,4733,4450,4251,3302,4024,4691,3610,2010,1114,404,389,254,194,108,104,68,41,0,236,426,446,590,864,1156,1252,390,737,1192,2222,3260,4530,5600,7590,4001,4568,5682,4459,2829,2115,1769,1657,2280,2535,2492,2756,2570,2970,3094,2322,2420,2043,1911,1851,1794,1583,1888,1675,1386,1129,1106,845,756,820,894,1185,883,919,1186,1413,1004,1227,1418,1736,3114,2838,2446,1950,1555,1102,988,675,521 +0,458,741,1050,2990,2882,2410,1848,1142,1630,2188,2446,1714,1650,1526,1350,3332,4664,7214,8071,9976,9650,6642,6836,2870,3730,4650,5370,7831,9167,9633,11212,16754,22152,21447,20297,24307,25625,26614,22112,25162,20196,12966,9540,5609,4776,3606,1978,0,1404,2079,4087,5941,6804,6434,7416,6068,8506,8844,9842,16074,15862,18244,13257,18601,25606,31917,38129,53504,57290,77616,93712,71480,69458,67328,104254,151868,160661,122411,105716,99764,115788,128727,110364,108608,97802,102881,104376,72876,78048,54450,45040,42990,40717,33578,39115,43874,38198,29358,34943,25824,31545,43252,52772,71081,63874,57353,49566,46579,38374,34783,30179,27675,21313,24422,18024,9088,11193,11107,8213,16582,14584,11934,11934,11668,9388,6106,4796,9726,8068,7884,7980,9076,5819,5564,4540,4408,6322,8476,7545,8119,9736,10357,9668,12536,8907,6865,8587,10756,12560,14129,20213,14452,15674,13450,10795,11018,8562,7367,7182,5302,4322,3312,2002,1531,1941,2453,2004,3158,3636,4018,2624,2798,3338,5036,4886,5488,5000,4802,4504,4493,3521,2028,1285,232,228,126,114,64,52,34,23,0,134,234,257,350,444,678,590,210,881,1403,1888,3293,3566,4142,4940,3735,4572,5874,4972,2960,2250,1432,1360,1743,2066,2167,2891,2278,3122,3498,2792,2148,2626,2366,2286,1891,1670,2096,1639,1456,1282,1040,850,1002,986,792,1020,895,1000,969,1421,1604,1480,1533,2159,2328,2538,2384,2114,2070,1748,1607,989,668 +0,757,1407,1784,2163,5502,10396,17121,19926,21214,17539,22191,29510,30643,33818,32444,20699,14903,7348,5517,2180,1586,1094,574,0,2526,5074,9491,15039,18454,22045,24888,23131,25330,37205,32558,30119,27725,20272,24294,24282,15585,12096,8214,3558,2611,1413,787,0,62,114,162,166,412,633,900,1177,1435,1461,1724,1858,3670,6761,9164,8578,9890,8728,7639,8801,9067,7701,5238,5375,3817,3734,3286,3896,2626,2299,1142,0,2150,4094,5809,8154,10489,11077,12569,13036,13082,14307,14507,13080,16163,14598,12870,10088,7501,5464,6784,6720,8783,8378,9888,9508,9843,10550,9399,9519,16215,20629,24735,21099,33733,40848,44352,40667,38951,32555,26698,27128,27054,20416,9757,3453,3976,3668,3151,3281,2642,1954,2462,2200,1558,1355,1558,1882,1505,847,709,660,555,318,167,0,16953,32838,35793,53209,60467,66699,59177,60754,81825,90284,106582,107215,105888,71866,74591,96912,69096,43014,30071,14357,8329,4331,1831,0,0,0,0,0,0,0,0,0,5659,9687,12188,17277,23002,22766,26924,36250,36591,41622,40238,27398,34066,34417,35451,28272,36962,37985,38316,28298,25563,23673,17572,5706,4978,3053,1975,1609,1074,756,354,0,3462,6419,7244,9678,9032,6872,8873,11975,16535,16012,18913,21196,25104,23764,24123,23284,27068,23140,20211,23348,20273,18364,12912,12811,10118,7705,7016,9585,5678,3239,1918,0,0,0,0,0,0,0,0,0,254,426,638,760,877,782,732,899 +0,588,1258,1694,1696,4169,7790,11195,12274,15664,18052,19282,27458,23558,34031,29196,47434,32530,17122,14568,7607,5830,5414,2240,242,2192,4928,8370,14346,15845,17697,17913,27319,34477,39950,39167,26971,30103,29774,22236,23635,18545,13664,9990,4817,3501,1600,974,1662,1746,2069,2280,2870,2286,1325,1091,1053,1459,1736,2016,2476,5142,7977,8205,7296,6534,7084,5940,6762,6515,8508,6258,4333,4406,4164,3535,3318,2215,2246,1035,0,1674,2963,4999,6928,8137,7156,8111,11842,12976,11966,12580,11191,13478,14108,10972,9456,7856,6036,6789,6953,7208,5727,6293,9960,9477,7862,8530,10868,11672,17056,16831,17689,30473,44120,46890,41234,42998,33046,29756,31728,22209,16462,10866,6354,4270,5365,3580,3696,2690,2849,3088,2117,2326,2404,2486,1984,2028,2384,1806,1487,992,566,350,10194,22887,27073,39734,48872,58874,57949,62300,64642,71568,81978,91474,98744,89670,74021,66756,131976,116514,85265,41112,16603,11484,10308,4406,0,0,0,0,0,0,0,0,0,4675,10660,13578,18679,19921,23534,22968,27353,30730,37349,37304,33899,32360,39370,33735,39986,41910,38637,29992,30840,34277,29714,18476,7595,5236,3969,2793,1504,1212,1250,658,0,2607,5218,6882,7716,7656,8505,11158,15352,16574,18433,19235,18000,20024,22467,23496,19389,17478,21968,21155,17906,15081,12584,11796,9553,6990,6258,7764,8657,5649,2611,1472,599,521,426,447,450,360,184,162,1383,1006,890,944,832,902,1030,1185,1295 +0,416,994,1671,1312,3704,5684,8355,10744,13827,15964,17952,21231,23439,25980,16220,60171,40168,34373,23980,12742,8801,8300,3854,521,2287,4792,6007,14958,11903,12744,12870,23798,23261,33900,36547,23912,22480,30554,24380,26607,16712,11910,6706,5373,3784,2310,1566,4039,4083,3688,4784,5198,4436,2658,1589,1234,1800,1880,2886,3825,5175,7106,6374,6106,4667,4002,5208,4523,5153,6609,5145,3287,3670,3529,3068,3128,2003,1720,924,0,943,1928,3182,6107,4798,5778,6632,11427,11408,10928,13191,10318,8368,9646,10597,7176,5939,6756,5847,5838,5517,4804,4196,8322,6861,7120,5259,8846,10570,8988,10764,14910,28850,37056,48371,39137,42008,36826,26011,26518,18248,17698,13376,9410,8724,6484,4452,4082,2898,2913,2646,2129,2648,3966,3922,2441,2958,3576,3371,2029,1840,1086,568,24225,25649,25784,28866,55308,70882,70032,72625,53330,70332,74036,86659,59506,59027,63342,74736,191202,172652,100953,63420,23275,17183,12892,6799,0,0,0,0,0,0,0,0,0,3758,8294,13170,15994,19044,18270,21283,17488,30437,38670,29988,36713,40780,34113,30401,41731,38046,29144,28626,43183,29075,28906,19426,9386,8121,5225,4035,1996,1514,1530,836,0,2804,4800,6785,4018,7458,8896,11063,17006,18475,17096,17167,20581,25388,23914,18282,17934,17742,13686,12413,8817,8371,11810,8643,4987,4476,5056,6708,8664,5994,2792,1524,1122,979,970,894,1037,688,444,338,2742,2402,1295,1796,1283,1149,1008,1274,1392 +0,620,1333,1566,1550,3132,3777,5932,11657,18515,24021,25523,24467,25300,22465,11546,69505,48651,36020,23614,17819,16726,18030,8952,809,2014,3288,5109,9719,9365,15006,15923,27036,25149,38109,33908,24934,23546,23394,20184,22780,18356,9910,7294,4238,3068,2548,2118,6500,6624,5588,7260,7360,5428,5317,2940,1144,1956,2279,3382,3700,4246,5981,6740,3921,4251,5074,4837,4842,5938,5630,5036,3983,3120,2984,3292,2749,1924,1938,950,0,876,1453,2870,3978,3911,3938,3417,8240,8082,7242,8637,7316,8524,7872,8228,8628,7590,8033,6298,5751,4884,4674,5601,6684,7124,6087,5920,6630,6539,6275,8411,20095,27820,28586,36934,40590,33520,38322,34314,34193,32920,24871,18052,15982,10456,9277,4733,3639,3314,3632,2812,2194,3708,4318,4342,3954,4380,4742,4500,2943,2219,1325,672,26754,24986,27001,31576,47353,54294,56814,79188,52692,62560,64482,76024,64593,70367,85939,87967,161049,166382,98218,72502,25380,25074,16676,7676,0,0,0,0,0,0,0,0,0,4409,11254,12520,13448,18606,17736,17314,17021,24712,38087,34633,34669,39833,39070,52310,40144,28860,34872,26322,34148,27222,22354,16706,10419,9036,7465,4989,3274,2319,1760,992,0,1638,2802,5088,3156,6402,9798,10570,21928,14740,13361,17046,15560,19832,19694,16191,16490,16645,12456,9954,6332,6490,8075,6000,3506,4125,5073,5760,6549,4664,2641,2311,1816,1846,1438,1253,1361,1172,777,588,3970,2560,1487,2038,1525,1578,1424,2054,2105 +0,514,1036,1382,1929,3132,5294,5343,15805,18622,21141,20280,21360,18090,10881,7242,67191,58048,54414,40042,30400,26124,14777,7163,850,2213,4122,6279,7249,7800,11534,10068,25183,22535,30239,34417,28393,22032,23691,19172,24288,18787,18834,10076,4986,4956,3333,2873,6857,8888,11338,10970,10202,7373,5546,2742,776,1752,2598,3344,4398,5221,7140,6229,3223,3531,4886,5175,6236,4284,4424,3602,5381,6042,5336,3690,2510,2064,1567,713,0,460,974,1210,1749,1674,1971,1844,4948,7432,7593,7266,6348,7543,9585,9024,9059,7500,6622,6410,4414,5620,7301,7844,4513,3790,4186,4300,4668,5018,6117,5665,28072,33621,39080,28013,30308,25390,23517,20689,37480,31455,19998,16908,18766,13781,8056,4995,3165,2713,3043,3785,3310,3412,3386,4016,6023,5250,5312,4946,4418,2995,2033,1149,34855,31610,39646,37763,32325,43750,56116,83597,51105,62643,70637,61345,62752,89849,100101,93170,187000,180676,134064,93338,33206,20558,12960,5340,0,0,0,0,0,0,0,0,0,4582,8043,14760,17362,13077,10210,14176,14779,22914,34100,41308,34920,36047,50232,66537,47643,42366,55558,49716,34518,30547,16740,14111,13405,9888,5731,4999,4180,3364,2830,1184,0,809,1782,2600,2881,3832,5074,7598,21339,17848,17458,14917,16294,14760,9287,11870,17222,14595,9189,6019,3282,3118,3083,3746,2454,3455,3333,3290,4864,4630,4026,3387,2681,2115,2247,1810,2256,1865,1832,1054,4214,4414,3289,3174,2130,2697,2499,2658,2820 +0,367,738,896,1757,2766,3679,4422,9396,14786,15807,15906,16446,14238,7653,6344,75651,54616,51543,41908,40762,33187,19755,12748,3204,4790,7325,8758,7372,11406,11831,15830,22064,24687,32613,30669,32971,23836,24900,20666,24324,15796,14594,12886,7799,6176,4501,3229,9159,10948,18314,15776,16233,10456,6623,4030,584,1578,2025,3535,3781,6200,6379,7836,4719,3522,3944,5466,7112,5828,4220,4371,6210,4520,4196,3512,2992,2174,1503,780,0,398,650,962,962,1080,1082,1202,4170,5283,4684,5730,3574,5264,6066,6784,6951,6064,5935,5000,3063,4564,5752,5451,3109,3366,3536,3306,2740,3890,3665,3980,27018,32121,35743,27054,44736,36705,33951,29448,32600,23898,21356,20624,21502,16108,10300,6825,3051,3588,2803,3692,3423,4528,7132,9346,8984,7306,8153,5465,4608,3494,2112,1164,28646,40977,39435,48288,36257,55250,59768,81174,58079,59228,55351,65166,53469,82648,90839,71420,394162,242357,180076,112724,49117,40637,24862,13132,0,0,0,0,0,0,0,0,0,3290,6250,9871,11244,11920,15352,16056,17158,24024,35845,29316,49039,52988,65952,74206,52566,45320,49495,42431,37107,26326,16119,16362,15109,10890,9249,6147,6235,4140,2897,1467,0,992,2281,2380,2900,5464,5568,8162,14912,19762,15802,16139,17704,13653,9585,11474,15442,13117,9513,5421,3326,3790,5047,5711,5144,5316,4602,5157,9390,8593,5690,6238,4888,4257,3980,3686,3345,3348,2963,2516,5146,3946,2760,2654,1824,2528,2633,2666,3032 +0,400,674,872,1318,2388,2918,3716,6149,10368,12006,15982,9884,6982,6366,4398,59477,48855,51655,34896,56979,38579,27614,17306,5116,8433,10446,10948,8930,9652,12854,17259,20661,25706,24874,18774,26918,22560,24952,23983,18011,16766,13645,13774,10445,7034,4985,3393,15874,14927,20697,16605,18656,11917,9982,4426,243,1301,2370,4021,4990,6984,7313,7676,5948,4046,3813,6660,5778,5144,3901,4146,5064,3585,3268,3611,2551,2094,1586,926,0,278,546,842,546,638,610,779,2732,3628,3648,4395,2372,4042,4894,5687,5388,4765,4310,3618,2864,3402,3593,4293,2978,3145,2914,2271,1522,2146,2612,2822,32862,39456,33838,22118,45056,34794,36645,27770,26646,23691,16223,22220,20624,20309,14429,10306,3233,3723,3625,3358,3328,6352,8508,10968,15232,11037,8786,7279,6016,4974,2368,1223,29070,40503,45572,41827,47813,74430,90750,105281,63447,70572,63094,55506,41637,47054,66726,55822,472640,404950,241540,162770,77422,57400,46403,25722,0,0,0,0,0,0,0,0,0,3105,7178,10081,10503,13925,15784,16516,26461,24702,31742,28096,57048,79878,77648,81402,42721,52722,45273,35525,30600,22853,16302,16271,15486,11284,10038,6826,7233,6567,3918,1983,0,878,2106,2310,2174,5150,8396,11839,13805,15832,18916,15952,14343,13423,11084,12660,15841,11824,7733,5312,3141,4786,5524,6378,7212,6150,6652,6437,12835,8546,8255,9454,6662,6564,4648,4469,5993,5778,3846,4032,4826,3863,3301,3221,1200,1518,2574,3854,4290 +0,154,356,413,785,1331,1705,1749,3411,4972,5448,6787,4726,3707,2568,2252,70782,57712,47793,44904,64338,39243,27466,17997,5884,7307,11151,13442,15113,15913,13988,18567,20942,23633,27429,23324,24331,20144,19289,16329,14879,14248,13031,9934,12488,7945,6006,5474,18988,24686,31598,22622,16918,15666,11224,5246,106,1038,2180,3092,3757,5540,6279,7978,5300,5002,5623,6396,7079,4874,4009,4110,4369,3992,2951,3104,3040,2001,1831,908,0,128,306,444,290,317,344,415,1543,1635,1637,1584,985,1720,2252,2916,2317,2676,2294,1792,1234,1774,1559,2068,1521,1636,1568,1192,675,1136,1193,1146,31613,31868,28010,24621,40258,33674,31949,27300,30910,32788,20705,27206,23391,23887,20478,14476,2653,3306,4656,3926,5138,7202,9884,16766,19616,15131,11694,8486,6593,4890,3558,1710,34786,49316,43580,51820,55292,81212,66910,94066,72443,66794,43860,39950,40463,40639,39754,32917,413263,361170,224652,170042,146742,86500,54960,23854,0,0,0,0,0,0,0,0,0,2754,6611,7920,12332,13930,18589,21936,28686,29910,34642,40696,47984,69908,71809,65412,31396,41247,37718,37624,26289,23895,16330,12970,10427,9596,8614,6921,6914,5432,3856,1879,0,1083,1882,2171,2253,5298,9737,9506,14984,16936,14380,16302,11596,13660,11670,11403,12338,10126,6404,4910,3596,4278,8145,8296,8988,11870,11304,11018,12136,13026,15925,12772,7265,7366,5038,5616,5544,4244,4944,4664,4204,3596,2898,2404,1360,1846,2543,3123,3883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62127,59684,71612,65214,60962,49630,39684,25867,7218,8868,13779,15786,19820,21973,23231,21388,20442,23625,30556,24799,23932,24890,18632,12403,10177,8295,7856,9863,9322,6141,4616,5083,27172,24488,28582,24913,20889,16098,9208,4963,0,2238,5576,8108,9081,12456,12589,13743,7011,5278,4373,3347,3579,3555,3589,3995,3918,4398,4881,4322,3124,1994,1571,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25176,22101,24452,21500,11445,14230,15240,23452,29354,35464,37803,38784,29011,21446,20334,16209,2345,10934,15990,20606,21015,25702,29281,24849,21008,18324,19752,21834,18253,11712,6052,3033,51974,44276,25965,20290,24691,38380,44188,51485,62460,48893,28538,19496,6552,5345,4430,2002,553573,476572,510933,508509,382949,272691,250182,108901,0,0,0,0,0,0,0,0,0,1396,2964,3476,5306,9866,11373,22082,29404,21300,21766,29371,31482,48761,53589,55824,29360,32700,35640,37296,30379,22968,12525,10211,9346,8256,5448,5133,5705,5044,2831,1275,0,2839,6427,9308,10430,10331,7308,8590,12438,13481,14495,9648,9239,7122,7206,7958,10315,11211,10336,9275,6877,6445,8612,10950,9774,8415,6798,9200,12432,14220,14048,15648,7867,7298,4529,5840,5336,5482,4544,4275,5218,4297,3769,2966,3306,3142,2928,3461,3601 +0,586,1128,1662,3534,3353,3092,3048,5376,9220,12518,17467,14583,16010,19538,17790,57998,63122,75816,57522,46494,47634,54624,48544,15318,19629,21772,21126,34232,28040,28520,28645,17142,21850,25204,23787,18250,18582,13715,14640,11123,9806,11642,10645,11556,9692,7305,5814,28095,22606,23333,23828,18880,18810,14807,9592,971,3511,5224,7014,7564,9697,12068,11118,5010,4306,3729,3148,3197,3446,3182,2977,4150,4520,4018,3404,3451,2180,1235,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,811,941,1121,1072,945,883,727,508,510,500,410,192,629,1077,801,24567,22480,23418,18862,10484,15162,12278,17822,21052,27957,31127,28584,32354,23244,18576,12379,3267,9146,11296,17250,22976,28868,29952,25830,18963,25043,26564,22244,23081,19646,14656,11281,45752,44446,32501,38340,27217,33538,41734,49554,49137,42308,28372,21259,7882,7237,5927,5228,497662,572082,476519,450248,395294,316563,197239,111378,0,0,0,0,0,0,0,0,0,2222,4172,5214,6346,10174,11609,20092,31124,30654,25602,38007,33487,39464,46153,68072,24791,29812,39014,39359,33984,24581,13533,10043,7213,6526,4730,4150,5228,4012,2658,1074,0,2384,4586,7653,10030,8390,7727,7802,8170,10462,9996,7577,8086,6236,6499,7213,8587,8222,9470,7724,6886,8143,7234,7968,8592,8098,7181,9647,11678,12298,13017,13738,7263,7732,7362,7061,6862,6350,5639,5070,5200,5586,5293,4924,4795,3817,4978,4111,3337 +0,844,1964,3176,6657,7933,7674,5697,9400,16442,21377,31066,35929,29402,36381,29915,53628,56922,56232,43898,47912,56463,68420,60148,28266,27128,23471,23776,39960,43126,37163,27609,20393,24543,21274,20098,12587,9977,10600,12662,13935,13132,13004,12269,13775,12860,8782,7396,20679,20613,22930,27271,25406,17746,18214,13914,2258,4144,5918,7964,6795,8588,8530,6454,3029,3123,2198,2312,2630,2015,2381,1727,3197,3467,2676,2502,3148,2266,1438,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1867,1616,1793,1838,2174,1804,1762,1255,1066,1128,864,775,403,1286,1822,1971,21311,17214,20208,16686,13071,12985,14660,15660,12605,13638,21170,20707,26308,24476,20146,12878,3946,7350,12034,13668,27850,27746,30234,28202,23290,28835,28838,25829,30615,26494,20242,17744,37267,43580,35688,44835,38117,43790,44926,54576,44331,37427,35718,25450,12385,10784,9718,7676,634404,597821,545778,506411,315741,271407,189370,80948,0,0,0,0,0,0,0,0,0,2110,5160,8372,7620,9517,14118,24083,38059,34964,39678,49353,38971,47137,59198,65220,23947,29073,35160,32988,33045,21151,15706,9187,7745,4923,4048,3195,4572,3247,1846,990,0,2138,4054,6056,8474,6707,7574,8094,7005,8739,8962,6100,7105,5734,5032,4754,9132,8471,5559,5049,5733,5820,8443,8681,8031,7913,9260,9919,11204,11206,12520,13460,9586,9041,8576,7141,7783,7280,6178,5864,7167,7900,6358,5862,6381,5628,5402,4520,3592 +0,3071,4777,6570,8190,8522,12240,13135,15565,27825,36550,43508,44515,55309,53871,57942,67947,74777,62737,49175,53135,75826,78666,91456,38165,33830,24490,34154,42963,47542,51327,44324,14845,17236,19086,21020,16666,13718,13940,12774,19321,15884,15276,14885,15126,11066,9194,8054,22390,21234,28070,25700,20719,19138,14510,16351,3792,4456,7095,8226,7722,7197,8453,5974,2086,2050,1708,1766,1493,1444,1824,1290,2649,2654,1899,2017,2356,1564,1165,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,2594,3213,3054,2789,2297,2360,1539,1583,1774,1418,1140,738,1698,2626,3212,28248,20614,23012,16544,9332,13056,14326,13738,10155,10684,14984,14268,19336,16779,12435,9792,4563,8732,10703,14466,19756,24102,33740,31393,31592,29136,21336,26725,26262,32474,36685,30039,27061,30223,37558,47100,55544,52916,48444,57345,48615,35290,23075,19006,16799,11910,11266,11280,674056,660707,613183,470296,342889,197719,122938,74626,0,0,0,0,0,0,0,0,0,2818,4737,8152,7529,13010,17154,20316,45936,38276,43994,56718,47873,55685,58868,66278,18323,24934,27613,24118,29514,16604,11936,8024,5440,4970,3314,2606,2960,1998,1566,740,0,1593,2872,3878,5622,5510,4596,8183,4388,7402,8359,6367,5203,4656,4694,3745,8399,8370,4700,4528,4734,6380,8888,7425,7620,8653,11490,10362,14128,14266,14722,18509,13764,12461,10290,10735,8423,8492,6225,4988,9296,7594,5950,7000,6949,7652,8692,6804,4948 +0,2395,4051,8061,11858,14074,13322,17361,22853,30470,40823,48510,59223,49152,53357,57283,116134,98918,63307,52510,45530,57195,57588,80124,43661,43915,34012,34428,46911,63030,60732,63737,13700,10428,9843,11032,15598,13659,16664,16794,24498,22192,19143,18792,14540,10906,8256,6726,19505,16007,16217,21363,22012,23564,19029,22068,5992,8000,8733,10352,9524,8868,7686,6935,1225,1244,1199,795,592,926,1051,1008,1412,1371,1910,1571,1448,1009,474,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,3964,3161,3005,4068,4240,3617,2196,2021,1600,1759,1420,882,2313,3620,4815,27939,21784,21446,17042,7990,8082,7775,10212,8862,12764,13354,13685,11058,10236,8242,6088,4086,7200,12034,18434,19586,29186,36728,43848,49613,37534,29863,28347,26924,39095,41484,33045,14601,21208,35300,40198,62726,48269,57666,54796,46357,31726,27182,22164,16324,14775,11354,11816,821635,779777,744653,541762,269288,202342,113318,51889,0,0,0,0,0,0,0,0,0,2436,5886,8802,9868,11075,10559,15349,43651,53721,51862,54133,50716,47300,64667,62285,17744,14247,13947,17621,18151,14411,12662,7324,2489,1917,1533,1322,1608,995,660,324,0,627,1331,2322,2903,4726,5842,5560,3912,5582,6465,5049,5844,4895,3189,2792,10236,9123,8791,6982,3086,3560,3789,4952,6510,7980,11349,13283,16660,20365,18587,23608,16860,16018,15474,13806,12946,10838,5644,5774,12167,9908,9173,7846,8557,6817,5445,4903,6128 +0,5750,12531,15339,13381,18929,26734,33032,30525,35040,56903,58956,69947,58902,61318,82234,160925,114665,78851,82580,160781,127926,124909,151113,88302,96768,91370,79715,54366,63093,68799,65140,12496,10840,10481,12735,15753,18439,20087,20662,17279,19406,20822,18856,18912,13903,9108,8349,19459,17866,14137,18699,20136,18055,16835,21482,8413,8535,8615,10514,13156,9514,7336,5764,1162,1083,1051,704,497,700,868,786,856,1032,1064,1111,967,755,336,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4846,4356,4974,4998,6706,4976,4006,3236,1600,1652,1848,1310,1186,2216,4000,5042,16982,19240,16700,14090,5690,6151,8801,9298,7703,11149,9777,9130,9827,8737,7454,5724,4340,7130,8564,11321,20953,27274,38650,47424,53771,51424,30627,33420,36697,40034,35586,28444,28283,41516,48399,43876,66174,67413,53236,64902,56856,39318,32129,28359,18969,18076,14037,14252,573968,543586,621958,388410,206306,177648,119191,54682,0,0,0,0,0,0,0,0,0,3416,5880,9728,15490,17628,19435,16223,44549,43034,44544,41391,41710,41157,58526,51260,14027,14445,14166,15022,12796,10561,10781,5750,1843,1650,1261,1183,1362,918,511,238,0,534,1015,1583,2426,3367,3254,3676,3309,3410,5501,4755,5212,3922,2671,2433,6930,7664,5657,4702,3630,4054,3292,4801,4270,5536,9447,13012,12630,16266,13693,17916,14351,18116,17696,17630,12744,9494,7479,7162,11935,8150,10166,8320,7807,7186,5676,5982,6427 +0,9711,19767,32158,19944,28512,39692,47953,50635,56008,79679,87956,91026,84948,81958,87746,156359,125586,98200,107402,242303,176744,174934,166805,152860,148354,140923,108477,82709,79310,71266,76301,8690,8998,10789,13934,13595,15587,19634,20834,15693,16462,17863,16356,18644,13383,13784,14334,24126,24183,18536,18568,16184,13567,14518,20262,9359,7097,7739,10256,13631,8455,5131,3780,795,767,614,505,246,384,414,377,584,645,714,699,514,346,249,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6338,5426,5558,6314,7707,6490,3609,3133,1642,1683,1447,871,1137,2781,3634,4328,12740,12907,11758,9070,6210,7842,8036,7221,7985,6936,7954,5920,6364,5982,4777,4861,5975,6140,8126,10754,21745,32815,33207,47820,40919,35814,43164,45474,40508,48400,43236,46853,38326,42497,66187,64779,92764,92358,62633,58082,62024,50935,31525,28194,17248,16634,19948,16790,454624,403110,301131,280720,160187,115204,95429,45917,0,0,0,0,0,0,0,0,0,3253,6238,10113,22593,26679,23719,23556,39336,32235,26432,28812,32728,34544,33092,45084,12165,12445,10803,9994,10844,9156,5786,2982,1424,1258,1036,737,1066,805,382,201,0,397,662,1226,1213,1632,1968,2196,2306,3023,3466,3716,4071,2502,2064,1956,6023,6344,5162,3970,3278,3851,3571,3337,3436,5382,7580,9342,12555,10486,12064,10225,14569,13364,17632,20342,10570,10895,8588,10283,10041,8905,9741,10806,8336,5966,5958,6566,7279 +0,10210,25977,36716,31934,39364,43570,50702,57752,84260,83398,97256,127998,105314,112959,130258,126812,130660,146034,182578,312369,277087,261908,278780,264301,201631,249438,204024,128763,111917,80969,102178,3488,5324,5748,8948,13680,13848,16908,21745,20975,17635,25017,26242,26032,26850,21880,25094,27685,22306,22550,18686,15771,17589,15934,21644,16784,14938,10211,13178,13997,8032,3828,2775,406,422,352,242,122,178,222,203,330,326,322,352,288,195,135,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7809,7160,6051,6569,7602,5432,4798,4046,2576,2342,1930,1231,1227,2740,4422,5768,8877,8168,7971,5830,4266,5920,7254,5991,6441,5374,5422,5732,4626,4948,4604,4128,4673,5102,6355,9856,15102,24765,30802,46063,33636,32022,39953,44101,45174,51578,45132,45688,40679,55286,68939,79083,73360,76650,43416,62122,54574,45296,27860,26252,22272,25930,26981,27927,399114,268866,221794,227980,118475,104275,58239,33403,0,0,0,0,0,0,0,0,0,3582,6997,11075,25332,24234,30572,29701,38224,29306,26518,29429,29546,32539,28194,31320,7142,6332,4938,4268,5160,3947,2894,1628,790,632,590,484,554,392,171,96,0,156,303,606,635,806,953,1004,1348,1656,1550,1726,2061,1286,1036,787,6762,5924,5634,3418,2384,2471,2530,2074,1647,2830,3898,4556,8427,8075,7855,9122,12288,12582,14364,16050,13597,9632,7588,9670,7817,8493,9518,9164,9091,7622,6786,6953,7766 +0,886,1681,3501,5010,16397,26928,27839,35561,55824,76718,77309,75060,124237,140267,117072,142456,165780,163990,135850,98950,123140,118650,176406,185769,225468,276276,302020,245783,168651,165885,131000,0,3764,7316,11136,16120,17592,26819,31654,31224,30193,25044,37890,38676,38276,45839,43914,32321,24035,17888,14952,9947,7206,7009,9108,12870,9368,7229,8514,8485,5538,3315,1840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11155,11246,13484,11489,9544,10582,15086,17488,20470,22178,19870,15811,11918,10015,5611,5758,6432,7152,5509,3844,2392,2932,3252,3510,3688,2542,1876,1706,1298,1408,1676,2473,5116,17106,23708,28650,34415,38704,35102,40890,40818,42434,53863,57893,43265,45696,52029,48096,46792,39612,37248,28915,32679,32363,23854,17418,6822,14791,26070,31900,42370,47365,44243,44275,381273,395941,365818,427042,414236,486181,479397,373732,287868,205188,116951,120326,87169,51819,37582,18959,0,1890,4635,8877,11178,12284,10347,11290,16059,14321,16432,11878,7902,16617,22531,31032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8160,8488,11255,8694,9624,9918,10726,14798,20475,26040,23980,17989,14693,14805,14636,14507,12756,8740,7024,5403,5064,6629,7825,7615,10806,9507,6543,4792,1738,3102,5558,6638,6516 +0,1192,2838,5075,9070,19128,28071,36545,33664,58272,72290,63378,101477,106749,115600,107455,156801,135568,161598,134875,121122,164946,186521,219494,153623,192120,243178,241238,188729,172024,127894,108167,2647,7768,12121,12916,17574,21712,25026,30436,35823,34164,29330,32910,46180,40226,51808,42548,29340,26201,26779,17332,11959,7935,8309,8622,13029,9042,8066,8036,8036,5974,5172,3275,7435,7548,10020,8666,11344,14848,11892,10892,5864,7291,8566,6330,7060,7032,5728,5003,9435,7424,4581,5552,5232,5310,5607,5462,2296,1951,2498,2632,3118,2649,1914,758,10880,10696,10336,8820,9000,11014,12948,17901,15106,15132,17641,15013,10236,8072,6368,5058,5987,5538,6126,5434,2826,3278,3854,3899,5056,4155,4129,3438,3478,3707,3329,3722,3823,11774,22199,28686,40703,45310,30806,36750,53495,50510,56540,63190,59493,80921,104199,83084,39868,35718,26564,28042,22140,21972,19149,15866,8116,18016,32885,39038,43717,49946,45164,37684,403410,357838,309987,321650,287445,326325,310639,259800,219146,201987,111990,91167,76257,47173,36629,16502,0,2335,4816,6893,8746,7940,8286,10690,17578,15592,13923,12141,12024,17695,28808,30576,6004,9300,9326,9768,17115,12772,8378,7360,8720,7070,6219,4870,4072,3696,3483,3940,4972,3816,2817,2437,3360,3662,3134,3147,4226,3282,3434,3517,2592,2094,1352,756,17667,14550,9866,9666,8181,10559,12686,13623,19218,19682,22665,16360,15118,14508,11229,13126,10397,8944,7899,5328,4537,6086,5579,6320,11680,10260,9824,6705,4658,6299,5320,6495,6790 +0,2272,4514,6283,11595,25916,41420,46489,47883,48980,50218,46060,96982,84090,104377,104463,128555,197035,200353,145831,166020,229473,221812,236164,112260,150122,162530,222861,167488,146366,120012,104624,6047,7933,13166,12437,17184,24942,30546,37441,32243,33646,30996,24154,44734,38030,45140,43296,32875,30427,30663,27601,13064,10382,7279,7002,10958,10167,8435,6019,8354,7150,5990,5815,14393,18613,16795,16189,20337,24832,24880,21020,13164,13587,14864,14812,17380,15460,13354,10256,17052,14598,10812,13365,9125,11135,12587,14046,4037,4075,5336,5407,7646,6587,3363,1730,9191,9014,6850,6078,8335,11932,11764,14312,13666,12453,10042,12895,8178,5756,5686,4878,5876,7076,6161,5779,3418,3902,4512,3502,6016,5535,5946,5888,5747,5061,5226,7481,2706,8242,16560,35566,33732,42850,39658,50807,79271,77502,71934,107317,97282,95406,131338,166114,27858,22084,24346,21147,17521,13146,12324,9824,10655,17596,32001,32435,54219,51834,33082,29149,321652,302688,293731,292438,181011,160822,201734,176744,204673,143700,82412,55337,61758,48284,34387,16675,0,2179,4768,7007,7972,8104,7734,8752,17640,17306,12440,13514,15543,18463,25990,29985,13094,16418,20346,21934,30429,25734,17976,14831,15050,12629,12652,9137,8003,6724,8432,8727,8606,7793,6312,5703,6610,7348,7276,6644,9306,8966,6794,7252,5099,4758,3356,1962,24008,17027,11259,11037,8885,13471,14124,14848,23426,15786,15678,14692,13002,9652,9935,7787,7591,6042,6228,3997,2984,3151,4283,6153,11438,12634,13062,12169,9079,6359,6268,9362,10207 +0,3568,5578,7333,9746,28716,52488,58903,44438,48418,59126,63812,83313,83676,92978,105328,143082,179233,207624,221304,194544,199258,190653,208169,89177,116268,129118,155750,119020,122995,87265,60981,9607,10364,9886,11329,16219,22098,24699,38494,35730,30646,26144,31758,36716,39049,43167,40162,35143,31152,28051,29274,18443,13422,12857,9192,10270,10865,9786,7324,9102,8000,5909,6772,29413,33114,32222,26934,27238,29042,30009,38539,22198,18743,26231,21792,22223,24768,18206,15525,23392,21632,17407,19264,12915,15556,21344,22128,7913,7925,7517,7360,9637,8106,5052,2528,9849,6876,7950,5462,6489,8759,10056,11396,14101,11068,9516,10540,7093,4826,3972,3594,8152,8718,8840,6902,5211,6382,4917,3999,6087,6051,6838,8236,7236,6192,5890,8241,2736,11304,18980,32948,32304,41582,31395,40146,68922,71614,84571,109161,100368,127241,154508,184895,15020,17238,18243,18928,16107,14406,11965,9984,17117,24820,27728,34440,52560,37131,22774,28804,268601,256158,188448,196708,169954,143582,194947,147418,129343,101190,61202,48038,49320,33515,27836,11734,0,2071,2774,4986,4770,5768,6910,9452,13139,16954,17979,19098,18732,22476,29000,21456,20900,25906,31477,34216,41257,37888,24694,21620,20672,16062,17870,14743,9054,10508,10827,14100,11639,11742,11141,9301,9128,9537,11992,11950,12999,13735,10587,10817,10166,8302,5944,2828,23892,24154,18230,14471,10222,10741,13195,13231,20388,18602,13584,11826,13499,10122,10087,8154,10416,8058,5653,3896,2501,4196,4741,6474,11910,13928,11409,14906,13130,11209,8315,7535,7774 +0,3844,7956,11802,12440,20669,25372,52636,45954,46799,57898,77072,73926,95321,89841,89309,187599,236720,249545,288535,262544,250253,312488,260590,75592,78318,92063,85711,107146,74184,43779,37470,12855,11197,7996,9358,12714,18192,30102,30630,32474,33262,31409,33901,44223,36211,26546,33522,31676,30980,22187,17184,18447,17554,13629,10623,10439,11251,11513,9887,7876,6678,5260,6281,35405,31062,19672,20056,30022,43088,51184,45289,31179,30212,39764,42375,31749,21495,17299,13632,32529,28557,38040,31457,22562,25908,33542,35423,11616,14901,15112,14686,12272,10025,5600,2366,10342,10345,7370,5425,4372,7832,9569,13336,11123,10488,8283,9169,8235,6217,3616,2676,12374,11510,13216,12337,7755,8319,7654,6471,6412,8964,10089,9370,8332,8274,10304,11260,3855,10101,14894,24067,30573,33276,31684,44732,90624,117755,129078,109340,131503,171959,174090,147345,6279,12750,15757,17192,19246,13961,10862,7636,18576,27550,35740,39806,38825,32752,20118,17245,134195,190788,188099,191463,153268,128390,158072,124153,50469,33566,23714,24244,22932,15975,9656,5582,0,628,1419,2508,3622,5771,9716,10620,13209,13043,12729,17682,20801,24860,24744,27035,35721,35038,40694,37789,44498,49338,46421,46190,21794,21284,20151,16344,11603,12286,9491,13217,13312,11651,8126,10032,11980,11886,10870,12914,18166,13064,10777,14346,14844,8380,4495,2038,26492,20294,20874,14547,10774,10273,12719,12332,16478,12853,11171,10434,11206,8557,4886,5172,11606,10280,8018,4464,2328,5161,6474,8646,17385,16530,15330,14188,16524,13645,11183,8910,8674 +0,3325,5859,8876,9768,19127,24158,40520,40282,56020,80100,85352,75473,82884,76380,90764,215204,213625,246576,254319,302756,296662,314417,214042,56579,68898,96790,109385,88773,73458,59940,45525,18388,13818,12649,10519,11615,20510,25859,27960,37318,38810,31878,32358,32477,29056,34170,48704,35876,32068,27988,25778,17660,14729,10657,8369,7510,8058,8515,7566,6734,5926,6807,6878,35913,36651,41476,31835,42800,52630,59388,51273,35945,37233,46394,44652,52727,39449,26558,24204,46514,41333,54190,39166,21979,27320,38718,37679,20342,19844,21258,19750,13247,10516,5938,3130,9269,8048,7274,5401,5459,7200,8508,13216,11689,10266,7458,8683,7780,6423,3934,2929,14661,12418,13533,10724,6730,6096,6135,5818,5035,8019,10835,10228,6730,8544,8826,10123,4946,11190,13876,27702,40438,54642,56315,76946,92296,108749,107742,104648,133070,144210,201402,165454,4983,11127,15460,15330,13805,13770,10333,9118,12928,21231,29989,34957,38434,32162,20791,20812,121620,142006,108647,107527,149214,122974,116689,109295,31901,24450,18863,18402,20750,12140,8568,4522,0,522,1134,2182,2070,5318,7126,10477,13300,11492,14387,15599,18248,19264,17992,22822,27401,30326,37692,37894,39762,47970,50003,40600,35265,32120,29460,22902,24514,22496,23830,21653,11800,13734,10638,12484,14505,15478,16133,19485,29858,24838,19336,16160,16690,11276,5516,2454,21746,23862,21542,18588,13349,12223,10380,8230,11360,9994,8186,7624,8185,6306,3946,3509,15649,11122,7140,5922,2427,6520,10135,11845,17458,18216,15574,11430,15220,12335,13947,11998,9336 +0,2541,5513,7172,10905,19962,25574,34366,45916,56653,76096,79203,61662,55472,68214,86176,190638,200667,176794,202588,328219,278948,215500,148158,46290,88457,112182,105572,80825,85421,69766,53749,26306,16537,14456,14597,7988,15321,26300,33408,44282,37269,34147,28606,23195,45359,53474,70818,44278,47507,44410,29789,23498,19476,9722,6042,5207,6904,6514,6895,7338,7624,6552,5890,48423,56959,53509,60658,58801,58202,68955,78624,46910,54534,47535,52568,58282,56459,45486,35103,55561,44728,52574,39641,31260,38696,42861,34228,26921,31250,27069,20592,18757,13698,6784,3332,7931,5634,5755,5813,6855,8251,9376,10798,11350,10229,8852,8813,9391,7613,5281,4952,12104,12154,10702,10007,4000,5613,5888,5614,5006,7932,9044,8264,5014,7728,9942,10239,5928,12052,19129,34736,53421,61018,70554,87388,73190,110505,119252,114389,149298,182003,187693,172439,2814,7172,11103,11246,8452,8281,10736,10828,12041,21934,27709,32412,28252,27961,20555,21620,79639,74115,73614,51964,102066,101287,98096,87858,28240,22667,14748,13611,13802,9367,7560,3622,0,505,898,1794,1444,3355,6774,8202,10052,9704,12109,15588,10229,13877,14259,14729,30328,28517,30080,35960,32688,33970,46871,55369,37235,32207,33432,38843,48652,50694,43674,34958,12954,15863,14944,15251,15552,15896,17822,29665,31690,26772,23604,19372,16672,9995,5579,2314,22504,25900,22212,23489,17035,14931,9447,5388,6525,6795,6973,7836,3392,2348,2254,2233,16126,14090,9039,5852,2785,7492,11118,16470,16810,13834,13407,11666,17661,16049,16946,14412,10440 +0,2864,4386,6727,11952,19880,21175,30734,48870,50860,72298,58548,50072,46784,48923,48196,219597,242497,222984,224010,251536,248516,185413,110152,52258,86216,127305,96114,82366,79468,63779,66293,26106,19718,13661,13277,8861,18760,26357,26557,42722,37110,35184,27640,22613,52112,55145,65328,50860,50668,44672,30898,21621,18382,7656,6657,6282,5786,7435,7560,6886,7652,10458,7647,66149,56790,64474,66944,71736,67400,61252,84356,47432,54778,54830,56002,81264,67865,71941,51337,58227,50222,47772,44104,41122,40284,46991,39082,31096,30424,37454,26403,20283,17668,10136,4589,4877,4526,5254,5940,6390,6572,7613,10572,10057,10918,8559,10667,8663,7913,5706,6131,12909,12412,10340,9791,3888,4542,4179,5875,6486,7799,11399,8891,5924,7328,9607,9098,4334,15822,21055,29955,46282,50488,75229,93827,104537,123112,129616,122179,120229,125415,167669,160488,1258,4163,7587,8579,6849,9406,13615,13028,13578,18160,25091,31331,29706,29820,23200,26748,32992,31381,29690,31886,49068,46836,46450,41633,13760,10444,8641,8158,7847,5261,3390,1736,0,374,714,1179,1108,1882,3172,4635,6571,7096,8813,11512,7498,11731,11642,14240,36708,32882,32877,41622,40821,43514,44992,52444,32877,38170,48338,60717,62603,60657,39923,38792,16687,14572,16596,19802,27414,25576,21047,34199,29644,23708,28603,22340,22857,15786,8439,3322,26132,27305,19498,25862,20592,16010,12006,7354,2652,2769,3659,3444,1519,1228,1202,1014,16915,13950,9148,6638,3141,6708,9936,14110,19043,15280,11105,14302,15601,18313,20796,16127,9466 +0,6084,11557,24773,31396,36914,48567,55355,44580,42875,52273,34340,30697,34338,33484,26707,217715,209056,175110,120672,61814,69130,58005,56510,61929,71112,70795,95125,91953,91981,118729,112671,31351,35070,33065,28331,28324,27154,23097,21773,31092,35645,53726,51548,74920,59613,61349,62307,66083,66637,49439,30299,16214,15181,11074,7573,5878,6696,9167,8752,11387,13090,14629,12536,68110,72516,71275,76382,59866,63406,61217,72351,64930,64501,59722,47705,27976,32406,26500,39031,57568,43474,38418,24976,23105,26460,34001,38486,36120,38212,39736,33786,23748,16753,15700,8316,3301,4339,3952,3356,3278,4336,4843,7672,10818,9493,8764,13428,15970,13870,15769,12022,11927,13070,14474,13090,10592,8619,7470,6335,8248,6637,6504,9830,10440,10542,12000,11838,4736,20915,31182,42423,54830,63356,85534,99192,106283,96928,88287,98567,105320,90856,88150,140140,0,1340,2545,5194,6196,11218,13127,18903,20602,34614,38004,35839,38058,44084,49782,45674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,289,426,725,1094,1905,2098,2210,5683,11581,13828,14465,11528,10434,14586,44008,48507,45501,51965,53310,61966,66250,54054,41496,51269,54446,62580,78550,55567,48448,44378,15177,15053,13375,10754,10108,22926,32758,30901,37940,44000,44574,42686,28560,21844,14084,6750,27276,19667,17862,11897,3070,2282,993,589,0,0,0,0,0,0,0,0,16487,17749,13711,14644,17563,16410,22611,19699,15981,19221,20447,19850,16874,12978,14366,14444,11139 +0,5778,11135,19137,28741,33262,47064,47310,33128,37346,38969,32064,30994,30038,35004,26073,204634,186582,131782,93779,57438,63641,75538,82236,54638,80494,98935,109878,78396,98427,79854,89448,25321,27056,31616,30486,30404,26138,29073,33908,54777,72560,97965,115014,128204,93198,80175,99464,62427,53907,42848,25695,14998,12291,7564,6430,6281,6846,8752,8844,8703,11843,19944,16334,54831,67612,83024,73634,79402,75314,72172,80544,53000,44188,42862,44088,36543,43051,38270,57073,75830,64946,53114,41442,39611,44608,39395,38950,42247,33586,34820,26370,24213,20395,12269,7218,2431,3270,4140,3094,4082,4998,4446,8096,10790,10599,10137,11014,13383,14532,18525,12432,8395,11409,13729,13658,7537,7505,7992,6999,9523,7398,8384,9799,8932,9846,9625,8076,5376,16707,35949,47781,53296,68298,53376,83138,79985,88602,81772,75922,88218,90134,97350,112262,11311,9342,12236,14470,13061,12354,18928,20584,18400,25524,40204,46908,56791,50746,53692,47090,17748,15007,7472,6772,5394,5120,3635,3662,5716,5920,5197,3824,2455,1824,1016,555,0,178,349,383,520,1016,1522,1622,2007,5188,10247,11770,12106,10824,8381,12233,35158,39054,47154,71284,54122,56356,46512,44906,48046,59854,63864,80182,69258,66214,57389,56496,27556,27360,19684,16822,15972,19320,27766,28168,32198,33968,41868,44118,52567,38695,20995,12228,26916,26846,27180,20327,9952,10142,8202,5628,354,440,556,504,604,480,286,136,14279,14660,12162,10834,11880,13632,13671,13848,16622,15318,21943,17303,12776,10259,10717,10876,11765 +0,5199,10791,14967,26533,25272,34813,37350,36330,36020,34409,22278,23782,23797,26036,32678,155930,122516,128514,80757,59056,80580,87798,94420,68251,77650,95312,83938,77348,68273,75281,102404,17698,20711,20815,23012,26180,30174,27154,33220,74626,86235,127602,125330,154001,123222,97778,98006,56785,46735,27682,20309,12730,9040,7430,6820,6091,6594,6312,8726,7706,11661,19396,17581,50148,73387,77824,67191,117869,102703,90798,103555,38544,35924,44781,45592,55251,57196,52379,83917,91617,81020,56947,65440,58953,53148,57437,45644,39722,41444,29708,20281,27421,16732,10758,5675,2448,2324,3229,3103,5108,5501,4061,8856,13168,12243,10604,11678,12328,16198,15638,16087,8945,8323,10533,12294,7720,6296,6580,7254,7704,8998,9130,10283,10226,7636,8389,5728,4607,16492,29476,45824,34790,41767,46243,48667,69679,60273,78892,83327,115217,116119,107416,102028,25849,26180,18050,23944,21976,18213,20272,22889,10674,26395,34117,54777,78994,59614,57312,53231,31146,23662,18660,12737,13395,12268,9009,6708,9725,8841,10353,6582,5002,3549,1936,896,0,159,349,490,499,990,1216,1224,1563,3766,5592,6866,10630,9119,7008,8666,40815,52953,50018,73875,48406,36405,41845,36484,61019,58178,74400,82189,68973,61512,59450,59754,32993,27557,29880,23396,19598,19418,20857,17486,40439,49925,48552,56110,61011,40876,31304,23436,34448,35117,36143,30834,18149,16202,12910,9400,643,738,1197,978,1094,729,524,252,10286,8708,9110,8895,11414,11379,7858,11708,11860,13469,16522,12826,7947,9511,9982,10553,13169 +0,4431,8660,13434,15497,19264,25175,32506,37011,46309,44121,33100,25040,22618,18306,21620,108027,84857,81050,60822,48740,74600,91617,105578,66170,69656,71257,88078,77308,88125,103684,86168,10918,18846,26700,30968,29945,33776,37006,48628,83109,105150,115182,145312,177323,149102,104965,99214,33106,35004,17742,13596,13232,11114,5997,4951,4086,5423,5367,7014,6620,13480,19518,18092,40320,65097,76477,88060,101355,81986,74905,95735,35941,38922,50378,62108,58978,59525,48468,70394,84211,76440,71012,80950,74454,68832,55920,43632,41678,40170,31842,25501,19512,14228,11577,5676,1226,1800,2252,3360,5678,5809,4811,7829,13216,14262,14941,16630,17759,20014,15905,12120,8544,10213,12149,11347,6620,6005,5408,6580,7984,7880,7265,9415,9330,7897,6028,5030,5140,12638,22514,34944,32154,42065,55657,54405,80824,76044,91372,85942,95158,99512,96841,75012,33089,35086,26754,25862,24625,19782,26158,21519,9036,23296,43184,44989,84578,65153,56658,69959,40329,32414,19907,18536,16155,12956,11705,9320,17050,18890,16885,11376,7843,4980,3236,1720,0,146,307,500,498,930,878,1052,2036,3282,5697,6536,8952,8568,8110,8008,27162,46872,67576,86736,69915,62464,51423,68075,80205,82112,90645,69917,70260,65986,72517,82607,63316,54758,46895,41434,31861,31146,36744,26806,51792,59694,64939,63997,58112,41794,31495,29171,62270,53566,34109,35436,24596,21574,17366,12360,1085,1594,2254,1899,2320,1362,1013,502,7217,6830,7655,7926,7001,6866,5788,6259,10950,12023,12065,11145,6954,10083,8997,10208,12402 +0,3103,5892,7534,11634,18332,27409,32467,51192,51564,38894,36189,28254,32754,28027,22221,57438,38827,37294,53229,55514,76276,80746,96217,73535,66402,71628,87926,109596,96220,110301,91970,6963,16216,28151,30953,35342,40462,43658,49092,113861,120746,161820,168648,183950,144988,128876,101566,21140,16658,15086,12208,10353,8923,9369,6850,3352,3621,3196,3386,4814,10922,14360,17612,41477,63458,99538,126027,114704,108903,138068,105035,24963,40608,51534,75919,75388,87444,110597,129423,92274,89595,83888,69626,72472,61481,42639,37671,37792,35031,33746,31658,21154,13425,10354,5396,452,1597,2380,3270,4576,3664,4149,5920,12562,12181,16440,20782,19939,14252,11216,11557,11618,9176,10392,8117,8136,7200,7429,5571,6893,5582,6502,5634,6739,5650,4211,3775,4789,9592,11454,17677,31224,35397,55765,53868,74220,89746,112099,100968,101878,81627,76751,63300,56402,53506,57044,42640,37332,25228,23823,18825,7752,21778,39542,51575,75796,74728,59400,83182,57352,58749,41620,31046,20697,20122,14858,14405,30456,22441,17913,15728,10006,6218,3288,1401,0,148,363,581,605,722,1052,1136,1953,3131,3620,6342,9486,8125,7983,7771,15962,37758,72253,80080,105262,131783,130246,100632,115979,85366,71638,62064,56532,62296,83031,113150,86746,58943,42907,45321,36764,38793,31029,27563,62237,51396,39064,56191,59543,52140,36042,29092,74171,61170,48253,33430,29432,23187,22570,14367,1995,1630,1962,2507,2871,2860,2004,1058,4121,3530,3342,4300,4338,5046,4302,3939,6446,6226,8184,6799,8228,10037,9345,7572,8936 +0,3574,7128,12496,14652,22962,22648,32775,48053,44805,30629,29580,24248,31166,28297,28770,52268,45609,51345,61584,50105,68255,67916,75073,67354,69720,86643,80714,76854,87375,102640,68028,13759,21106,28422,37132,35233,37231,43265,48898,90899,96008,148822,144176,139049,155221,148237,107161,26114,29107,26999,24078,26060,19210,11622,5993,2462,2709,2966,3709,6259,9437,12302,22804,35885,64899,85407,105060,80684,110545,158778,144224,60931,73796,62479,85271,97797,108795,121514,124137,91840,107322,114988,94452,106058,70526,51444,51177,38996,34016,37386,33786,34886,23971,16640,6980,342,1308,2275,2778,4118,4024,4703,6874,12134,11396,14127,17141,22384,17061,11721,14190,10101,8162,8262,8348,8311,6442,6851,5902,4771,4397,5858,4720,4406,5341,4790,4356,3231,8577,9581,22855,28028,31730,49579,45792,49271,61668,107858,95166,110489,91692,87096,66616,60594,67724,70322,55764,70548,55319,34648,26854,11062,29708,55902,68243,89484,91570,84788,84641,66590,57671,50774,37000,40064,38676,25948,20128,35644,26299,20670,16504,11657,8132,4480,2364,0,122,251,351,412,556,876,902,1313,2872,3284,5355,5833,5098,6750,5032,33630,64999,94450,85722,102358,123716,149938,126034,121493,97224,86598,123228,106968,107666,127838,109803,83062,63868,48900,45540,40824,38438,37251,43418,66987,59626,51457,69130,65317,64834,69820,57528,72152,70739,65499,40182,27977,24973,26406,14700,5405,4447,5396,4533,3621,3560,2401,1186,3308,3007,2362,2514,3620,3342,2808,2612,4003,5146,5707,4668,7085,7375,8530,5902,7194 +0,4501,8671,15503,13552,18236,29108,32538,40606,39970,30399,28334,21706,27060,41744,42882,63362,49250,54578,67148,51728,57171,83330,77134,59905,68402,88601,74888,76950,69758,75520,67605,22786,23556,25648,39418,36687,46982,50073,43354,85527,75723,97481,119014,131477,158595,140012,116756,36620,33163,42252,48662,33606,19380,14188,7194,1164,1901,3144,3850,6408,8657,14064,25399,46831,46618,69374,81150,79242,102764,143835,123962,89084,105569,103228,95724,160883,127850,136983,102910,123667,141665,127851,83892,108203,77656,81436,73101,28908,38276,35828,38028,40660,26938,18776,10100,272,1264,2002,3013,3689,4637,5233,9484,8353,8996,11748,16422,18342,14693,15611,18626,8275,7486,9308,6670,6386,4773,4343,3710,3856,3509,3475,4344,2786,3867,5266,4986,2898,7096,12308,23808,21579,24430,35946,36269,31949,59962,73655,92899,111675,88387,70714,98200,92561,92892,75302,56614,82784,52918,46336,28335,11368,39030,54378,70110,101354,95234,102926,86445,73088,49482,44466,32448,55048,36674,31216,27208,34738,27034,22962,19239,11043,10075,6526,2768,0,62,144,290,229,300,467,636,1076,1935,2956,2964,2972,3013,3320,3837,47648,85079,94884,76669,83052,98875,152070,106375,112329,95005,112178,142476,162894,129816,131806,130740,91010,84034,64274,56137,59041,63180,46409,48380,72916,78134,65169,90278,77715,90332,104041,77528,65953,72347,74616,42044,36999,27422,21700,17495,7432,8934,7672,5329,4378,2830,2443,1100,1916,1378,1334,1952,2399,2125,1514,1432,2576,3240,4214,4841,3734,4456,5296,5226,7261 +0,3954,8279,15175,15180,15726,18520,27608,36015,25956,27372,22874,17983,29809,56660,51487,75372,57832,63374,70560,54622,69722,89377,78125,68197,93458,103016,82008,72125,71686,83761,64240,23244,30198,37558,48984,58160,67828,63312,77976,118113,107950,106385,136141,140107,148098,156397,97500,55264,48504,39968,50019,43026,29992,14774,7900,564,1644,2417,4736,9386,14889,21970,24384,59017,67912,59022,77835,94686,117176,152966,151968,137958,137664,112468,118650,186125,137750,162280,132428,98382,125541,112247,103985,96904,80865,73882,56782,36064,48058,58513,45340,44074,28194,17537,10266,157,970,1372,2482,3478,4986,5048,9641,9024,9686,12980,15546,15739,15313,13272,16366,10761,8471,7764,6292,4081,3147,2743,2278,1994,1826,2549,3231,2488,3393,5688,5386,1450,6030,9716,16054,19459,19806,23856,25494,21729,41812,49646,64509,77599,76889,87515,112638,97640,93850,64269,61412,82548,64860,41948,28017,15917,40435,79918,96072,106148,112218,115435,92547,108698,79459,60204,56696,51317,42606,32318,36415,35834,33652,24208,20927,20655,17092,9146,4716,0,37,76,140,119,165,217,281,602,962,1224,1473,1629,1920,1512,1711,63430,70326,97522,112090,123818,152719,224271,167337,166540,134524,152234,179976,190192,182758,116466,123197,126142,85862,100653,85676,70798,86866,73829,61844,65450,64675,64353,85672,88851,97746,125855,112400,104575,96090,96557,57572,32215,27182,23275,17175,9556,8106,9500,7454,5898,4158,1979,1066,796,720,732,1074,1234,912,638,662,1430,1852,2192,3024,2418,3410,3779,3946,4806 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5437,10578,13274,15639,11976,11318,14528,19547,25192,26003,27621,22948,24224,36069,37920,35157,43679,65131,74353,59058,54981,48874,33312,33981,32256,21549,15450,8461,16222,27302,26738,36373,30416,33422,23244,22595,14192,11389,5465,0,2434,5264,10110,12571,13036,16049,28339,64821,64949,78211,98533,115621,90906,82198,73152,70352,57336,53513,38995,40365,35427,23307,15453,5880,5754,6740,6557,5209,5980,5221,4811,5186,4806,4973,4846,3377,1914,1397,606,0,340,566,888,1273,1553,2265,2512,2769,3093,3024,3545,5783,6442,5394,6851,8198,10570,9778,13793,15231,11100,10488,7836,8729,6487,5469,3821,1533,2538,4703,4991,698,885,813,732,544,522,586,459,345,278,285,188,72,63,46,20,0,3538,7601,8048,11378,11738,17808,18726,15975,24487,36478,52564,91898,116438,104322,130764,122502,78449,63980,60605,62758,43293,19491,11387,0,50799,86558,142826,163339,211528,228124,202968,186312,210818,199609,251726,331732,280922,274645,243864,217252,196348,148523,136502,119303,98594,81203,33928,71552,65076,56672,70125,69075,61859,50978,55700,74338,54904,46848,48780,38951,55930,73744,95733,155189,167426,141067,194380,191109,214209,168024,117499,60943,67270,66153,50677,54280,54830,59034,85099,110414,102235,135318,131912,97412,79428,100167,66103,56384,58736,62115,44459,37034,31796,23010,11144,0,0,0,0,0,0,0,0,0,196,456,723,1266,2405,2826,3615,3282 +0,37,81,114,224,188,212,264,408,406,329,209,117,144,262,302,1338,6039,8050,11070,12320,13510,10550,10966,24912,23708,21707,20134,21580,22284,34582,32940,36198,48264,72710,70293,56920,52590,53373,39292,34264,33096,35582,23942,11933,23146,31681,38129,38106,27173,34433,24133,23570,18622,13858,9482,3772,7182,8874,13487,16732,22073,25883,29090,76250,74297,83059,107409,79295,76852,68578,72285,69775,58278,50495,42062,48756,38802,22952,19838,5636,5278,4524,4270,4627,5044,4390,4667,5472,5151,5240,3960,2990,2273,1290,629,0,314,600,672,828,1290,1875,1836,2230,3404,3296,4070,5731,5506,5757,5954,8654,8758,10353,11468,13268,10903,7818,8346,6726,6612,4482,3426,1714,3202,5547,4802,792,882,858,746,368,394,523,400,468,399,322,281,139,96,73,38,0,5636,12107,12877,21591,23034,30567,32922,15842,24600,42312,66754,85407,101966,100701,129914,109752,69611,54728,48757,41402,33988,22206,10314,6608,38364,75218,99666,131636,169222,187251,172659,247259,245562,209674,223278,309587,307998,279193,280387,164256,156954,129258,154056,153452,97094,69240,37111,65298,62914,59595,58456,52762,59727,67457,64874,68074,54016,61410,49160,31266,63192,87427,134912,195750,180156,167949,240512,229278,219580,132896,81053,86818,90594,93622,69391,55129,50155,52398,69834,74636,99128,105228,115888,116847,102350,83505,57744,55285,47880,40614,31248,36067,24604,18916,10252,0,28,57,94,66,110,146,142,161,314,632,924,1371,2330,2832,3357,2996 +0,89,162,246,390,444,444,604,1004,790,672,486,278,418,461,694,2481,5433,8246,8725,12931,11589,13567,11668,24477,18932,18604,17544,15151,20598,21966,28421,54124,54701,67848,47756,61822,44614,41628,31290,31093,40004,38130,34478,17751,28938,39530,39161,32483,30259,24790,16913,31035,24467,19394,18829,7740,11198,15320,19773,23186,24606,32684,34107,73602,74806,76082,89630,73270,75748,61396,66329,66181,60200,46240,31474,47914,44756,32396,20632,3960,3288,2896,2311,2769,4695,5099,4936,6768,4891,4861,3240,2713,2154,1486,886,0,252,514,734,646,1094,1244,1238,2110,3529,4402,5640,5288,4290,4957,5056,6745,7223,8544,11714,8326,8111,8562,8139,7965,5890,5550,3287,2147,3654,5229,6230,978,801,724,730,373,413,345,360,492,531,460,341,160,109,82,39,0,6381,13452,18814,29633,32435,42374,50366,12081,26015,47826,90799,103133,109775,99269,89064,77759,66697,49634,36456,32519,23717,19594,10358,12501,30915,51488,63110,89035,117720,116708,100110,235066,205659,169867,132583,275917,222718,265813,261618,126373,116092,120532,148298,144397,102591,58816,32880,56608,49772,62117,83248,58188,69231,63710,52020,82467,61360,56218,41284,28344,91833,140214,170251,213470,246076,267046,317846,217081,206961,163737,108889,143447,139917,105542,97390,50187,45951,39682,43931,67523,73104,76436,99470,108600,94567,58442,43338,41267,34849,29880,20328,23928,14927,10664,4898,0,59,98,187,157,192,279,259,273,515,634,841,1103,1636,2538,2560,3643 +0,129,333,402,528,626,686,776,1310,1145,1100,787,388,534,640,899,3336,5126,7755,6878,9878,9723,10523,10269,19666,20966,18082,16332,18992,22328,23602,22091,60520,79124,78677,62319,68176,45514,40917,34831,42053,46946,42513,40107,28855,27862,39573,32865,29352,29974,23090,20362,23080,21472,21768,22746,10269,18575,20616,21388,32278,31428,27796,26506,79156,63171,77286,83550,114053,82918,86516,72148,48768,44715,42519,37406,34991,36138,32319,30478,2675,2108,1675,2159,2856,3740,3989,4418,6388,4646,4112,2558,1853,1472,926,450,0,164,354,430,406,723,1028,1279,1719,3210,4301,4719,4327,4328,4928,5628,4428,5451,6002,9418,8818,7957,8048,7518,8210,8396,6417,4176,2231,3318,4499,6048,1176,921,773,711,418,358,325,307,662,610,519,426,270,192,113,60,0,9796,21602,27922,33655,45566,49742,58556,13890,32830,62196,80817,85928,93214,80817,64896,51565,47787,38075,30187,27010,23228,14416,8731,15686,31380,46345,52310,63381,83932,91626,75230,221144,184838,140920,111566,213570,200803,168957,194519,165102,120204,132157,133780,115341,81934,70695,32350,61453,61400,85024,89512,71339,71070,94644,73685,122636,109664,75956,59104,33270,83051,120256,146307,316378,339384,298496,314372,271706,194840,137472,103978,144972,163733,144601,115426,64962,59853,36037,37284,106581,83392,74761,94455,102302,79699,59077,44288,31177,27595,23163,19396,18408,13726,9585,4952,0,78,114,248,358,398,308,342,501,754,895,829,1154,1326,1639,2366,2912 +0,207,428,684,913,1262,1248,1346,1611,1662,1415,1090,526,770,1129,1135,4865,5777,5624,5992,5866,5104,6814,10350,16628,17338,22013,19654,19130,19783,15163,16263,87415,73770,46340,43328,58074,51419,49968,45752,52636,43781,36555,44850,39221,44847,40501,34446,16542,17378,13252,20009,23650,24191,35799,33574,16252,23768,27587,28452,31218,26742,32405,27554,62338,78680,116638,103716,117488,98848,95168,84047,25223,27792,32307,36747,32455,29835,37132,27628,1312,992,1132,1583,2275,2706,2880,2752,4667,4313,2726,1898,700,505,392,167,0,46,96,160,200,320,354,738,1477,2910,3484,3780,4390,4008,5595,5591,1938,3092,4405,7913,9297,9828,14393,10416,10241,9196,7233,5184,2724,4542,5551,5264,1222,851,729,462,361,388,298,372,867,823,804,703,414,360,216,130,0,17836,31523,38592,47918,51119,60415,59295,21323,30025,34849,63980,81547,67327,78064,51107,39214,35576,29342,19191,15640,15267,10067,11059,23736,21772,24780,34464,58396,40803,34592,41511,282249,207985,210322,191376,111944,117969,145654,155693,150852,136671,113537,120187,117852,79922,55808,32715,75701,75698,78123,82418,102274,111658,96430,77226,137832,107428,89754,65791,39177,50046,80178,118916,376920,412501,323042,334284,254514,221969,154164,132042,167572,131340,136103,91109,76450,82873,84992,66834,113884,120190,144306,118817,93576,88645,82357,49598,12466,14860,16771,17530,13552,13436,9831,5159,0,68,157,288,457,418,524,568,615,773,914,823,858,1113,1873,1639,2220 +0,222,550,870,1070,1305,1577,1568,2786,2100,2228,2212,2294,1695,1961,1818,5542,4856,6530,6201,7816,7662,7735,12624,17175,18108,21297,19375,11838,11964,9944,10224,61914,55730,49386,41691,45032,50165,38718,42906,41041,43000,33240,33501,25360,33086,24467,25140,13807,14518,18485,23037,25945,32456,34153,56364,36150,33964,34968,42722,48553,43719,44633,47804,59159,73614,77200,87102,102895,82035,93125,63066,33511,34919,29956,29637,31848,27851,35059,26000,793,763,772,1000,1488,2116,2511,2191,3141,3136,2452,1315,453,412,329,134,0,36,90,134,141,202,308,470,1117,2216,2578,3096,2779,3464,4380,3316,1761,3233,4372,7372,10082,8972,9861,9568,7860,9932,8761,4822,1885,3806,5018,4558,1504,1072,626,530,460,405,446,360,730,722,660,556,485,393,191,112,0,15750,25936,33432,42557,48860,62000,56448,31497,34799,53228,54544,59579,63561,101521,90793,23540,29124,26587,16740,15994,18534,12845,15064,21316,28092,38430,47761,55527,42768,37025,45983,234726,178295,211246,148096,105352,119637,131334,151942,114170,100200,77358,93832,108687,86528,49479,22652,64652,81370,86542,72486,116314,98719,75796,65172,116885,89506,78458,62402,50295,73282,98842,98651,298723,362664,360551,239719,301850,225838,169280,148117,218807,143572,164496,122202,59763,69270,67812,67381,140029,133879,122831,113288,79616,63740,58276,36090,9482,13116,15800,15315,8740,9144,8112,4718,0,96,181,282,488,574,756,994,693,884,1014,1015,910,1308,1938,1510,2130 +0,293,552,998,1070,1694,1985,1747,3373,3004,2866,2618,3320,3229,2433,2683,4939,4765,5953,6671,11078,9666,10438,12129,13441,13468,15680,13107,8564,8598,8702,7123,58519,49177,46103,41852,36936,36660,37308,33040,34695,31886,33188,30781,16678,13545,16850,11488,10185,17226,18936,22325,24898,34668,44672,63094,49891,35028,35943,66954,55775,48098,61842,57687,66069,62298,56332,60924,81924,75033,64284,76990,40119,33157,30650,35559,21862,22511,26440,25541,626,692,548,784,1281,1193,1507,1601,2766,2326,1390,888,418,357,210,108,0,26,54,69,98,129,210,306,695,1142,1760,2024,2141,1928,2644,2293,1211,3092,4292,6517,7877,8012,5880,8952,8384,8165,7518,6544,1844,2126,3106,2837,1381,947,652,520,524,556,492,480,633,650,630,576,488,372,242,105,0,16679,28332,29358,46674,54204,71642,56983,46905,48246,60794,72027,58855,93746,100464,129196,12700,16609,18667,13117,15534,19281,17564,16934,25930,27610,41596,40479,40133,41580,41566,46005,208510,180825,144022,132662,106213,118002,131026,90533,95369,77116,58688,76890,116481,70753,37770,15532,85618,108364,104136,107922,99710,88020,73746,48588,72757,66230,66020,69801,77735,85375,100267,119952,336758,374346,341246,290471,321027,284851,245566,199415,241306,227392,145158,95845,44272,47750,67768,78749,159784,126794,122716,102272,67338,58892,40982,24014,7894,7854,9923,8293,7627,5484,4254,3338,0,84,176,453,667,1054,1196,1321,1032,888,945,1069,678,1157,1450,1704,1434 +0,369,852,1176,1432,1759,2102,2518,3056,3290,2833,3874,4841,4000,4092,4895,7661,7718,7714,7654,9553,8733,11684,13784,16205,15138,12668,10205,7947,7834,6266,6238,61515,54948,36990,29824,21610,24086,25450,32114,31122,27126,19820,18364,11982,9334,11140,7318,4901,11880,19640,26246,33660,43444,61270,70786,62690,69102,53466,89656,74054,77690,73417,65854,75867,56738,44062,57282,67114,58480,40814,50858,43719,34649,23067,26500,16670,20330,30390,26000,258,288,305,416,522,584,771,762,1496,1123,682,426,219,159,106,58,0,15,30,33,49,74,124,130,410,672,958,1014,1238,927,1350,1114,1044,2170,2736,4935,6198,5550,4804,6516,6170,6216,6214,5026,2000,2508,2410,2043,1284,980,642,632,539,656,564,658,663,653,662,494,511,349,243,121,0,18614,41669,46754,58926,73025,67398,81840,94927,58756,66290,55564,54628,76108,104204,166272,7460,11678,18425,15668,15460,16122,19144,21031,30940,40252,44297,41000,45298,51208,47346,48344,158523,152586,147138,131728,150246,162004,168812,109260,79814,77938,68832,75772,72292,51533,34233,17280,78304,87309,97326,107836,126473,105570,98509,62984,85392,75226,71468,65890,74050,78914,78838,86424,352232,324876,258075,309698,357156,289414,250207,238397,282083,187119,120540,90668,47337,55161,73026,74226,198754,149389,180530,128992,94795,73167,44424,22730,3736,4445,4914,4897,3709,3204,3194,2229,0,81,191,428,665,924,1383,1534,1284,984,738,854,670,1256,1547,2012,1842 +0,207,369,560,665,1358,1845,2714,3471,4069,6282,7166,7422,9930,9717,7689,9170,10877,11437,13132,12960,13940,16026,16670,14808,15616,14252,14540,11332,9929,6556,5196,73889,58940,65470,47389,44423,51789,53905,49730,34860,29327,14688,11096,10346,8578,4014,2222,188,17295,42461,63569,78157,98858,99279,95414,97425,105196,119469,80276,78750,78876,68326,85174,72699,75442,78426,58599,67727,57812,67398,49463,37234,28188,20882,20921,15840,19944,19421,25962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,2932,4115,5489,5236,4201,5013,5053,5379,6344,7116,5536,5168,4265,3600,2156,1242,1331,1625,1542,1375,1501,1307,1038,689,642,575,567,547,449,360,158,0,17696,34083,47891,83285,86118,128271,144464,112893,131712,127788,168400,229936,245879,244077,186832,0,1017,2473,4144,4522,9366,12243,24380,32056,33297,41962,45984,43252,45230,57752,66120,137402,137541,98420,121523,156151,147588,130089,121388,94632,86760,106542,66431,58849,47646,36806,18998,81398,110299,129829,118367,145558,133784,137306,89677,82223,56292,50923,54417,44219,51264,54411,80226,264046,249733,193422,216863,173960,158002,170863,209974,251676,213860,178294,155922,122523,116515,71706,100347,178070,134661,154548,173999,150561,115351,59670,26162,0,354,696,1096,1199,1533,1730,1530,0,231,471,594,923,1282,1571,1564,1492,1449,1079,1164,925,1256,1650,2361,2301 +19,224,360,580,686,1084,1426,2196,2534,4013,5131,5431,5557,6572,7232,7299,9716,15042,17633,25346,29786,31631,25556,30190,17104,20614,16450,16272,15150,12764,9520,12515,100434,70743,92529,83610,54504,57034,83627,59067,49427,44646,34870,27221,19953,16453,16238,12950,5433,23820,41836,50350,60294,79156,107358,108026,79282,89134,101081,68582,56577,66758,54588,78576,68002,75695,59372,59774,42041,43157,58911,39094,48550,33832,21073,20114,15565,18887,19658,24028,2099,1617,1124,826,342,1752,2732,2644,3191,2050,1469,866,320,256,113,56,0,0,0,0,0,0,0,0,0,5,8,15,24,24,29,33,1062,2548,3746,4358,3709,4222,4756,4364,4965,4974,4704,4179,4517,3766,3510,2162,820,872,1340,1312,876,1254,998,964,1138,838,643,590,438,462,346,172,0,15162,35087,50702,77137,79548,90128,100687,81293,92196,108183,156468,223801,252616,196850,228140,5021,5676,6232,7768,6770,10639,16968,23308,29476,31437,36075,37793,45454,52150,47611,63060,83988,113204,97525,116768,150138,140808,126398,91450,98209,92790,98054,70927,70857,48305,33132,16942,61646,72676,99600,112558,135510,136338,114967,72644,86268,71615,54819,41845,40765,51972,49828,67634,232972,181148,164282,187910,187787,159396,189569,197836,160915,172970,143913,120226,125979,120686,83660,122012,172099,141188,125965,163444,172674,103276,57678,30542,2387,2885,2988,2508,1628,1764,2358,1740,324,496,731,900,1096,1056,1248,1348,1294,1274,1626,1244,913,1404,1548,1914,2512 +42,230,452,634,695,954,1611,1976,2148,2818,3866,4077,4006,4394,3379,4175,8067,18028,24714,42429,44361,42958,40064,37463,21458,23312,21932,22517,14938,15557,16770,20695,95990,94507,112628,119942,89793,92782,92542,75840,69818,68512,52698,35004,26896,29578,28225,28650,9190,18974,35385,40371,63580,63488,87421,106504,80279,94858,81304,73774,53979,53894,67264,67428,69681,63798,56009,44726,37080,39964,44070,39230,44747,30860,19490,14776,16911,24485,27916,29964,3853,2880,2106,1666,770,3482,5485,5550,6732,5710,3598,2084,743,475,248,107,0,0,0,0,0,0,0,0,0,8,14,20,39,52,51,46,940,2013,3148,2700,3995,3245,3492,2944,3963,3411,3819,4017,3105,3292,2574,1782,658,626,625,730,725,798,1078,1263,1351,1153,816,542,478,436,256,130,0,13212,30064,41174,87082,65068,57439,69451,69359,87648,95760,131906,229826,246050,238480,241186,9773,10636,11483,14194,8043,14664,16614,20682,17940,25830,29120,33734,36223,47465,48126,44869,60252,64506,83518,92253,107952,102643,92675,87802,83415,83119,65598,64924,64164,42291,33874,17824,41645,50774,66630,98322,126005,87202,85012,71912,77583,72605,57424,47110,51452,50357,59855,64700,154494,170043,140984,141661,163007,172066,191148,221931,143946,130958,141313,111582,141379,141683,102119,98116,136437,147282,147123,169583,165419,119918,51224,38066,4927,4324,4910,3325,2021,1774,2200,2219,750,872,811,1146,1013,1160,993,1152,1368,1526,1657,1193,1067,1478,1493,1411,1914 +75,294,448,676,858,1124,1803,1844,1488,2020,2569,2908,3264,3060,2846,3525,7016,16548,29444,40212,46444,43162,55142,49308,26212,24858,18422,22344,22838,28386,40798,49565,96583,109414,131725,128087,127349,119724,156701,112552,110806,98376,79361,48194,33400,37308,39832,40896,11160,28914,44964,63814,85502,74372,72058,101443,58989,66698,58694,70676,63368,67534,55766,75400,48287,62169,57557,38926,34075,29204,39465,40512,35921,25637,14721,12928,12788,23530,36598,33556,7872,5299,3726,3062,1425,3692,8662,10442,14579,12666,7249,3354,1457,924,502,230,0,0,0,0,0,0,0,0,0,16,29,36,50,60,66,72,1157,1784,2897,2432,3521,3308,2901,2508,2345,2512,2095,1946,2132,1902,1672,1283,430,506,432,514,610,722,1076,1132,1566,1486,1300,702,338,292,254,122,0,15371,23198,37466,81557,61332,41338,64516,51694,72204,112892,156829,184508,212048,205882,229522,21453,17099,21190,16745,12818,14740,19606,22452,25792,23258,19108,20482,26531,31300,33346,32702,47970,58770,63472,76124,85687,87378,80002,70386,82377,56914,43192,50566,56266,36500,22830,12490,25645,37570,56459,67716,95903,84788,58905,45452,68414,65998,65566,50236,51169,69768,66089,70560,133741,120912,91432,105399,101428,121232,108646,138682,168349,149783,169090,132317,113636,109086,97177,97528,102193,100928,117196,128294,139752,84408,47446,40015,6929,6278,6073,3698,1960,1951,2561,2390,1061,1034,1059,1072,1110,979,979,706,1204,1764,1413,1240,996,1448,1525,1557,1620 +89,408,652,665,1000,1208,1559,1874,937,1520,2260,2142,2404,2626,3591,3133,9434,18930,23246,44928,55778,63540,67448,77026,26203,29340,28611,30286,25659,37104,44347,48924,111437,90902,112389,112915,138740,160615,131552,156899,142548,106601,54044,42400,35660,37651,37368,46631,16051,42363,55037,103026,122304,158729,155749,127151,45152,50536,55322,66299,57720,55785,49589,74408,46331,31263,24296,22447,21682,37774,44608,42024,32581,28201,23411,19106,13464,15831,20504,32157,10050,8008,7631,4126,2432,5798,8272,11901,20899,15066,15162,10116,2135,1614,1081,442,0,0,0,0,0,0,0,0,0,17,27,44,57,75,110,137,987,1539,2442,2124,2674,2708,3289,2573,1006,1062,850,688,754,684,680,848,246,324,318,430,641,768,779,926,1635,1471,1043,578,347,203,140,76,0,16428,32383,51944,55676,61238,62900,51996,23665,68811,117937,133901,149310,177568,245464,195949,28245,23354,21154,18851,14694,13450,16246,19773,26296,29685,26146,18524,11904,10970,9142,12687,34532,48560,63668,78343,75320,57596,65086,38026,62732,57084,48953,47242,48372,35032,28678,16101,14346,37586,54238,61236,70747,66281,43391,24692,45734,48608,38242,64123,75820,68104,60517,87251,90635,84617,110274,110899,79137,53812,51880,52906,139972,118850,94608,101567,119821,88150,99835,84022,52612,91510,110272,114810,109982,73874,56308,34882,8755,6181,4218,3556,2038,1910,2702,2612,1219,1371,1470,1609,1312,876,538,504,1462,1274,912,1078,1098,1498,1485,1276,1572 +120,358,532,624,822,1194,1480,1681,514,988,1601,1841,2952,3152,4048,4372,8006,14922,28659,40362,59448,51965,67963,71211,37580,39005,34684,36186,36333,47105,51821,50843,94136,93748,123196,118021,146574,167908,161223,186044,137884,125830,89958,62240,36800,30390,40220,51090,48280,49461,75453,97344,139989,116286,115674,119407,90714,87276,66416,70680,78784,65482,44109,58264,76436,45360,36328,28411,25210,37980,42104,41712,29655,27323,23456,22939,15790,21622,20604,26445,12355,10168,7076,5877,5035,9010,13279,17274,21392,14798,13890,9070,1954,1762,1224,695,0,0,0,0,0,0,0,0,0,16,33,61,72,110,126,156,702,1099,2007,1817,2561,2482,2151,1971,957,777,826,622,550,458,589,588,410,591,562,714,644,675,779,926,1653,1476,873,631,515,328,206,112,0,15630,31015,34700,47961,50394,48208,47163,38324,70250,110974,121950,136790,159896,173339,175622,43590,34822,33366,25462,20992,16789,18550,19610,17376,19232,17503,13249,13585,13364,13039,16012,30970,35436,50024,56732,65971,44867,44018,28542,44050,40878,41000,37328,38843,31956,20997,11618,11564,26009,30027,30369,63187,51516,33089,17935,32499,33332,33404,54830,58816,57596,58245,90987,69476,85202,74618,62818,73919,47460,47928,41403,97904,84208,64791,83648,117201,99050,92314,72164,43706,91052,128922,106688,113870,77887,44864,35688,21825,13510,8240,5344,3468,2844,3221,3040,1139,1573,1730,2054,1896,1482,816,657,1747,1692,1446,1172,1319,1528,1427,1138,1122 +136,336,429,468,536,685,962,1198,287,584,718,1005,2572,3986,5849,6224,6796,19404,25867,37823,66158,58728,67163,81982,44643,44140,47552,34316,41968,57384,65722,70615,123493,133264,109872,141872,209294,225213,212019,171964,169772,144343,123535,87002,38579,33714,38518,41730,64528,70895,82450,116424,114344,106315,80514,97107,142314,127128,98142,95566,87274,77692,45023,56546,84666,61034,44644,33902,32164,26980,34056,24921,31131,31682,23469,23663,20996,21823,27755,26292,12181,9067,9188,6130,6530,10400,17355,24324,20555,14222,12722,6757,2451,1896,1155,498,0,0,0,0,0,0,0,0,0,23,42,82,73,149,180,177,373,769,1216,1120,1748,1683,1683,1612,676,531,535,536,232,320,418,444,610,598,665,684,596,668,634,993,1298,965,1084,839,585,400,256,114,0,10097,20568,28042,47531,45210,35054,38852,52741,81958,105380,118793,115184,129941,119038,138333,73020,50112,39780,27074,26336,22162,15878,14144,16065,12587,11246,12398,12147,14191,14765,26356,33078,34516,26658,32638,42192,34538,27794,18915,28063,22361,22684,18636,22940,20158,12110,7026,6744,13038,17830,19319,43300,35071,26118,12434,29998,37982,40218,52840,47656,62605,64055,89122,81131,79122,69590,62346,45101,29430,28176,18535,86953,84653,55339,60120,80310,78706,59770,48978,55033,89956,105964,92799,112763,75120,47333,31744,27707,18753,10866,7732,4076,4092,3100,2615,1588,1802,2386,2436,2351,2130,1365,894,1909,2051,1613,1377,1391,1213,902,840,614 +144,200,241,314,365,352,421,488,163,414,590,986,2028,4090,6316,6237,7355,24378,33908,44526,64125,64753,69820,84368,75272,54120,49403,51893,54528,77606,81273,60672,102875,98340,141656,167169,202889,234554,222190,180222,187001,170093,114004,79367,34684,45253,45680,59780,66588,90180,98734,123619,125068,108921,97422,113020,178587,122364,98060,79462,89905,74548,57910,56818,96822,69908,46942,42365,35844,33584,34470,30839,18697,21210,24867,25391,20491,21804,25556,28898,18250,14532,10811,8012,7625,10797,15219,21768,21922,16434,10933,7674,4103,2596,1630,728,0,0,0,0,0,0,0,0,0,23,53,86,72,140,216,203,328,538,656,682,965,830,720,710,372,288,218,246,123,138,181,198,727,756,856,834,680,697,816,927,1304,1143,1022,812,729,446,301,140,0,11894,20794,26186,35748,40088,42394,40798,52351,78027,109448,108573,98886,104854,137253,129324,87900,59413,38314,39490,34094,22344,14536,10799,8468,8104,6620,7122,8765,11032,14964,25263,32524,26314,28272,30053,28463,24720,21778,11328,13760,12221,11987,11354,11701,10194,5309,2934,2860,6005,9930,9042,25912,21672,13273,6767,12003,18734,22743,32867,36061,53201,54802,93152,100715,69722,64232,56250,40500,24016,18318,13964,41365,46310,28504,31624,46090,39248,31492,21236,75007,98321,105821,92651,78080,58707,64556,43542,35936,26324,14429,8806,5027,3963,2894,1949,1478,1924,2031,2013,1982,1912,1929,1392,1744,1748,1654,1201,1423,1061,738,450,346 +150,689,1561,1703,2166,2131,2432,2606,2425,1861,1924,1757,1307,2368,4110,5650,7666,20376,32618,54985,86753,88016,62263,63632,90182,87521,84107,82623,121082,124822,120035,110420,65105,50480,46716,35411,37126,33890,24574,11886,0,11621,21807,47561,58124,47119,52885,75254,82918,56064,37425,26800,12885,10751,13706,15996,13555,15596,21502,20807,18286,32694,50938,64281,81335,76355,60772,67444,83584,83829,73744,78103,90187,66140,69792,60278,43127,36811,27686,27458,22020,20443,17512,14256,10427,9177,12382,12613,11366,8943,7885,4537,1697,970,703,290,0,2,3,4,3,5,6,8,8,12,17,23,36,108,183,241,228,199,194,133,133,92,53,32,24,28,31,25,20,19,12,7,1102,842,492,571,466,660,740,1062,1275,1646,1471,1291,1080,911,612,351,0,3055,6012,9404,10788,10522,8447,8509,12755,19440,28320,25848,30676,55268,64307,78339,85026,54936,44489,34604,18797,14440,12148,9165,10703,9752,10732,13611,19086,27450,31079,28340,31216,23630,19207,24736,23049,16686,16211,13230,13155,10240,5985,4464,4050,2274,1309,771,0,1833,4411,8503,10518,26266,38745,48770,57959,57913,79552,82408,122492,153846,143422,115992,88402,57413,43489,27933,20320,18600,13996,6144,0,0,0,0,0,0,0,0,120705,98291,76422,68858,85848,56675,43720,20246,0,154,336,701,973,1105,1600,1393,1393,1282,937,728,457,674,806,1020,1254,939,808,632,755,659,367,193,0 +174,734,1234,1207,1678,2267,2352,2354,2017,2150,1710,1614,1156,2044,3030,4107,7525,25492,48234,52752,74492,68488,65943,76971,74228,74876,85371,78510,117667,117648,144904,94412,70445,60519,46096,29902,36236,25976,20009,10187,436,10738,24460,32640,53985,51568,46553,58520,110575,73088,44793,36802,26408,19570,16547,17836,14304,17259,19064,19483,20602,35628,44592,63015,65200,67525,49836,65124,64369,69552,56573,61634,74184,70005,49466,48628,37840,39768,24754,20095,17989,19019,14432,15440,10796,9952,12148,10978,12357,9660,6613,4982,2594,2290,1052,532,0,5,7,9,7,12,14,18,12,19,18,26,40,107,147,201,181,386,630,1023,1656,1847,1702,2185,737,1099,1292,1338,1843,2325,2876,3752,869,780,697,544,531,630,538,750,943,1226,1109,959,703,668,365,242,0,2742,5676,9106,9976,10834,11910,11702,17634,20094,29687,29568,38662,50744,68850,77600,83262,62956,33735,29064,15863,13889,12266,10680,9744,13300,16310,18840,20212,21418,28666,28508,26859,23764,27121,22324,22439,16883,20388,17480,13949,9870,5004,4457,5449,3651,2176,1020,0,1480,2699,6263,10494,18361,25695,35888,50712,70538,61498,101258,72161,82589,127221,119368,76167,52286,47609,32152,26044,18122,13162,5906,0,0,0,0,0,0,0,0,112645,97407,82165,73684,73012,60406,43639,21062,1850,1423,876,1219,1480,1744,2325,1824,1471,1168,1019,726,543,786,811,958,727,706,780,652,531,467,395,197,0 +186,729,1122,1200,1779,1824,2222,2342,1884,2134,2170,1612,1298,2037,2364,3668,10582,32610,49968,66513,81841,65625,51568,44061,46315,73900,77202,64172,163746,135226,123659,116406,68253,54894,39050,24897,29890,21705,12919,7104,821,13721,22510,23019,40407,47577,45282,39100,107515,81240,53324,35774,35636,23185,17482,18076,19564,15858,19962,16184,20964,22901,34465,40144,63102,72260,61552,59200,64958,54531,54124,43325,76139,68006,48202,46580,49143,32691,30770,29482,19331,19464,16412,12090,8870,10080,9304,9814,14247,10424,8197,6041,4739,2983,1552,639,0,5,8,12,9,13,20,20,13,22,23,34,30,87,128,168,174,530,910,2202,3562,3353,3946,5748,1763,2202,2652,3020,3742,4113,6447,7328,985,952,680,637,582,560,564,871,794,1042,1036,1054,527,453,260,116,0,1838,4084,6356,10397,10347,12472,17858,18380,27993,28622,27799,41148,49694,50708,57687,61044,40637,25238,22454,16492,14879,10436,10081,10278,15145,20874,26170,15415,25119,28347,31978,22935,29988,29531,27164,30729,29000,21346,21306,10196,6848,4590,4569,5682,3410,2352,959,0,994,2180,4286,6981,14010,18882,23164,33960,43601,70368,91013,55606,80096,93891,93484,83189,66765,45224,41458,26110,15884,11344,6236,0,0,0,0,0,0,0,0,92666,67121,67276,85803,93972,71026,36912,16855,3246,2316,1648,1696,2702,2353,2407,1688,1256,1035,856,682,625,909,986,985,558,564,596,600,512,410,305,156,0 +263,432,776,1231,1508,2004,2118,1712,1874,1662,1644,1269,895,1400,2044,2476,10789,27048,43332,51332,72222,67870,46995,44084,42858,61396,74700,74682,127974,117487,125723,111250,73076,50383,37000,27074,24130,15903,13150,6532,1256,10975,14441,22670,34492,43776,38775,44604,88544,73509,38899,32980,30905,27318,23476,21240,15815,16640,12054,13610,18738,19464,22854,22200,62917,60634,48264,49074,50226,48027,57247,48256,62603,50736,29377,32628,44891,34218,25674,24622,16601,16138,15590,14944,12332,10399,10140,10268,14292,8270,7808,6322,3964,2762,1960,706,0,8,14,14,17,20,23,28,12,17,24,34,41,66,92,122,130,758,1114,3300,5028,6218,8466,9210,2569,3383,4960,4723,6002,8646,10571,11083,1322,962,604,684,460,592,621,878,846,984,944,836,449,404,202,94,0,2000,3832,5740,9329,11739,16571,19400,16380,24447,33134,28666,33647,41372,43274,52032,33140,21794,17489,14369,12062,10858,11744,9646,9894,15524,16152,22020,17571,20960,23741,28074,19444,28261,29619,28318,24827,27108,19957,21062,10717,7162,6088,5224,5567,3763,3009,1394,0,1314,2750,5405,5420,10379,15762,17027,44905,43974,52278,60728,43523,67975,78808,110856,69314,66311,33661,34315,29160,18746,10336,5624,0,0,0,0,0,0,0,0,59361,63127,64882,65586,79806,54928,34807,19608,5379,4058,2825,2820,3150,3140,2958,2439,864,825,863,600,514,622,974,724,606,514,584,468,301,276,188,84,0 +323,626,800,829,1138,1714,1752,1582,2206,1397,867,859,564,954,1137,1254,9647,17131,33126,51047,58785,57564,75421,72985,28301,42882,69862,105104,116158,125576,102477,118168,58437,42360,23009,19278,16326,12671,10825,5877,1282,10812,23002,36248,38692,50387,55399,64593,72785,74960,53010,39882,39736,33938,22281,22792,18614,14045,9594,9058,12706,10882,7209,10095,57211,57792,51934,43496,32422,29241,28007,32060,47689,57138,55785,52099,33308,27122,26009,18992,13438,14968,15039,11938,14546,10619,9787,12888,10716,7585,7077,5575,5121,3494,1820,788,0,7,11,19,22,21,20,29,10,19,28,30,37,52,59,52,65,2210,3718,5732,5908,8482,12929,11906,4519,6157,7788,8402,8028,11694,12918,15193,1520,1518,1139,798,562,819,867,1129,1045,649,564,500,455,347,287,141,0,3687,6313,9833,11576,17136,24607,29168,20974,24408,23547,37712,40870,34194,38030,44550,10302,8302,8252,7446,6704,9440,9801,11046,9708,12906,12348,18568,20592,18332,11534,14405,21502,22846,17139,21287,27673,24370,26804,22274,10812,9125,6640,6663,5489,5182,3808,2211,0,1007,2287,4811,6484,6296,7679,7824,46188,50049,59419,52846,44542,59856,55378,84262,56915,47768,36084,39808,33513,29801,20436,11560,0,0,0,0,0,0,0,0,53841,74775,71957,72418,60923,39959,38699,24745,6666,5204,4731,3988,4139,2985,2794,2940,519,462,380,448,440,320,336,500,538,444,328,318,236,132,85,48,0 +214,513,507,674,861,1028,1237,1206,1691,1290,864,762,459,734,734,766,8519,16587,29092,48440,53999,55176,62556,60418,23912,45921,48527,88388,82943,115172,97104,94751,34552,33443,17528,14384,11733,11136,6661,3832,1080,7991,16933,21510,34456,34626,36637,35830,88421,69330,49136,38012,44846,43024,26916,26292,20699,17208,17191,13852,12223,13408,9708,11920,68082,61708,53297,48970,32945,26021,25667,28899,32389,37708,38667,35134,25304,27427,23252,18387,19011,15812,14773,16733,11324,10095,11268,11778,10456,8874,9693,6670,3440,2828,2040,1117,0,6,9,17,20,28,37,40,20,28,30,30,31,60,56,74,107,1994,5257,5816,7348,10066,12059,14340,8559,9018,8870,9251,8127,11576,16124,15592,1198,1280,930,620,466,618,615,762,1010,629,543,471,443,308,220,104,0,3558,7891,10743,13112,17948,22804,27542,16172,23114,23415,31801,32871,34328,52192,47358,8314,7052,8045,6989,5792,7505,6426,6900,8363,10436,10318,16351,19472,20415,16895,19180,17485,24336,25108,26790,25758,23675,26165,21632,15275,9978,7783,6188,5067,4044,3564,1647,0,1753,2910,7066,6728,11255,11473,11760,35716,39692,54302,40149,41252,48214,52566,90057,46386,34836,34478,31293,22700,20732,14255,6510,0,0,0,0,0,0,0,0,44804,64680,80629,67695,44160,36590,32908,21108,9762,7579,8121,5944,6152,4235,4088,3407,312,344,318,290,311,258,313,454,413,352,298,257,175,124,79,42,0 +172,280,382,593,774,699,719,1052,1005,820,794,572,329,433,642,801,7460,18302,23097,41018,43883,42817,41525,36237,20723,38282,47756,73523,81051,93712,112686,109550,19966,14748,13674,11527,7606,7399,5047,3444,852,7474,11947,18042,19167,24150,28074,30427,82583,64724,55396,54372,38860,32411,35378,27190,19539,23286,21904,20871,14216,13702,12574,14716,57219,58273,60394,39579,39447,33871,28842,27153,28718,31374,33146,35072,22436,23793,17632,16450,20120,15606,17714,18526,11204,10963,12794,13907,9154,10546,9090,6568,2816,2426,1839,1034,0,5,7,12,13,30,42,49,24,32,37,30,30,45,78,90,157,2515,5354,6564,7129,7519,11609,12268,16348,13284,11882,12996,8223,9696,15327,15658,1041,798,818,456,364,417,564,582,771,593,458,314,333,310,187,87,0,4861,8258,11005,13520,18000,21439,25856,13946,18145,24145,28177,31123,36138,51074,42679,7783,5474,5781,5359,4062,4866,4938,5190,8594,8057,10718,9966,12634,21225,23795,23994,17420,20095,26127,28534,30928,27149,26744,22150,15496,14823,10732,7626,3109,2608,2226,982,0,2666,4836,9427,10231,10770,14503,12238,27649,34374,40796,43520,38875,37503,44336,68833,28289,30200,27631,29203,14057,11234,9866,4140,0,0,0,0,0,0,0,0,44129,64222,66336,62014,36662,33666,19802,13815,12053,13653,12556,8229,6121,5489,4170,2543,222,221,170,186,308,242,273,296,354,327,237,212,146,84,48,29,0 +222,214,288,413,566,514,508,819,820,654,466,478,252,313,365,388,6236,10336,18027,30935,29814,31912,29101,32931,21579,33286,47546,67401,59789,85220,89705,97088,13485,9321,10594,7482,5494,4640,3337,2748,1102,4974,7880,10474,10151,13621,13885,15542,90361,62296,75872,69026,48980,47326,46504,35380,20609,19108,19150,25566,24298,21704,23144,20754,57366,59752,46195,38024,33183,24014,22801,18056,16953,18128,19384,20232,15717,15498,13872,17138,19620,16746,18592,19336,14316,13180,14051,11934,7864,7562,7894,5842,3404,2992,1822,1169,0,5,7,12,13,32,47,58,46,58,42,40,34,56,80,92,180,1928,4908,5718,5637,8963,12170,13482,15832,16879,12583,12155,10807,15254,15418,18940,927,734,742,568,346,382,512,408,630,520,423,270,214,166,114,62,0,3533,7781,8987,12237,13052,13804,23856,20153,24976,25962,26302,39674,52817,50703,51848,4870,4548,4304,5014,4269,4000,3872,4020,7308,6650,10056,9434,12105,19224,20728,28854,19596,25622,27521,32395,36631,31334,29456,17606,16252,12914,10580,8109,2514,2356,1834,896,0,2594,4389,9303,12544,13011,19647,16711,22375,23624,23705,35196,32857,47520,51729,66136,30424,26280,16164,19069,11023,7720,6096,2928,0,0,0,0,0,0,0,0,53745,61078,53016,44565,38104,32003,22453,18130,13748,12733,12741,8904,6960,5166,3828,2700,127,122,83,108,162,145,136,140,192,170,134,94,67,48,31,15,0 +224,187,238,171,130,304,406,468,499,375,428,298,152,89,60,34,3184,4127,6848,8494,8329,7238,9248,13547,22304,26900,29331,26273,29500,35704,41850,83329,6502,5220,4083,2956,1500,1517,1253,1265,1458,999,1030,805,548,376,296,172,73450,54346,51305,46539,54768,59994,50149,35868,23308,24274,21282,18915,11651,11348,14586,20472,56871,37291,33737,27184,13773,9449,9336,5514,880,7080,11356,14906,21867,19741,15865,21103,24656,19425,21002,13107,8405,9709,11483,8184,8352,7817,6566,6080,6337,5172,2419,1312,0,5,9,15,24,38,40,40,56,68,58,56,58,81,94,101,180,2994,7164,8726,13479,14857,15772,17998,21168,24110,25047,29972,38229,46305,39060,25666,697,591,396,490,449,367,304,378,472,418,445,373,403,303,219,94,0,2534,4437,9603,12575,18196,18764,20768,22186,30837,41221,47669,42970,55335,54958,47662,2134,3264,4650,4779,5659,5635,3792,4889,4400,5437,7328,9810,11826,13150,19570,27672,22019,20218,18816,17861,18955,18719,19347,13464,12889,8404,6925,4230,3595,1964,1301,666,0,972,2074,2193,3394,10039,13819,17436,18122,28694,50459,51280,65280,63986,57905,75993,24787,21406,14703,12158,10571,9688,6652,2929,0,0,0,0,0,0,0,0,59163,51367,48155,43810,45979,38342,33261,20894,16524,10191,7385,7560,6258,4378,2772,1916,0,2,3,5,5,8,11,13,11,13,11,8,5,5,3,2,0 +298,270,250,196,162,344,388,486,419,456,399,381,436,348,330,372,2791,4194,6509,6508,6303,8265,6897,10734,19569,23428,24408,23964,27458,32578,34714,76284,6409,5078,4877,3670,1726,3336,4356,6364,3704,3537,3417,3314,2827,2856,2401,2496,69305,57560,47840,48260,50421,53233,40322,27784,30600,30248,23076,17754,11042,12409,16082,16279,54440,43594,30880,22243,18806,12529,9108,5808,2229,6741,12112,15269,20189,18612,17696,25696,25537,17054,17272,14586,6911,7903,10626,7430,7155,5304,4857,4688,7131,5268,1798,1150,0,6,12,16,19,30,37,44,49,60,70,58,56,71,86,82,144,3434,5729,9146,10996,14305,20304,22468,22486,22194,20313,25938,27097,31330,37953,24508,600,488,397,404,459,424,374,414,502,439,334,277,406,267,192,92,0,1852,5097,8414,10745,12553,11083,13718,17092,29126,30250,36296,33421,33182,45306,43746,1867,2572,3306,4540,6456,4780,3048,3708,4019,5075,6736,6808,7783,10546,11497,18502,18407,21718,21818,18884,15914,16328,16049,13863,13090,10678,7549,5502,3394,2430,1916,934,0,966,2631,3004,3690,9727,17303,16318,13638,23770,46034,43368,57527,52379,52600,63508,23508,19454,13504,11532,9912,7360,4962,2654,0,0,0,0,0,0,0,0,62792,44524,34102,40178,42450,37724,26763,20816,10220,7484,6313,5554,5687,3708,2482,1881,0,2,4,6,5,9,10,10,12,10,8,8,5,6,5,2,0 +296,313,286,186,194,278,429,484,369,430,530,598,593,570,601,604,3405,3678,4910,4523,4999,5852,7880,9409,16743,18779,24015,30571,19263,33573,39086,66546,7610,5958,4775,3022,2560,5426,8050,13321,6927,5442,5159,6813,5239,6335,5512,5478,42418,47179,47774,59522,52045,34931,35206,21876,33755,30050,24442,14267,7215,9675,12758,11994,52109,41473,27258,16697,19917,14909,7701,5028,3033,6045,9799,16705,15125,20348,21654,30402,23776,21360,13388,10585,7946,7951,8422,7354,4717,5394,4303,5103,6171,3953,2062,957,0,6,10,14,18,24,32,49,51,47,58,60,63,67,66,62,177,2360,4808,8160,12238,17568,19692,23610,17366,12900,13704,22409,19124,21525,28009,19138,462,509,406,418,364,316,360,460,392,447,380,247,320,198,120,72,0,2050,4836,6133,9212,8752,8485,7472,19940,17425,23398,24002,22778,27550,38422,53174,1244,1838,2293,3421,5737,4893,3714,2976,2391,3767,4138,5208,4466,6104,7597,9912,23223,24831,22764,20423,16668,13399,15480,15842,11265,8877,7508,6050,3688,2447,1979,952,0,1182,2524,2492,3016,7278,15030,15462,8472,24614,33798,47580,32382,36991,39305,50384,15739,14240,13342,7982,7364,5343,3904,1738,0,0,0,0,0,0,0,0,49347,40018,26199,26415,30605,32585,24317,16696,6932,6790,5333,4726,3255,2828,1488,1242,0,2,3,5,4,7,8,8,8,8,6,7,4,5,4,2,0 +241,258,244,204,161,254,324,373,231,382,635,625,818,722,646,856,3032,3666,4673,5351,6629,6318,8668,7943,18156,16488,21873,21232,16908,35741,41228,51306,9742,8099,7194,5038,2974,7446,14577,17638,7912,6052,4848,7310,6941,7283,7790,7610,26750,39346,37336,44031,42449,35616,42499,30313,38266,36738,31630,15482,9243,8668,8722,10290,49596,37010,30423,18346,18590,12158,6365,4123,3041,5289,7345,13575,16379,20928,19411,23792,13749,13388,12413,9705,6251,7502,8373,7970,5504,4152,4468,4720,5993,3685,2491,1194,0,6,8,12,15,22,32,39,37,38,44,43,65,50,46,46,150,2272,3631,7214,10246,17341,19124,24788,18452,15436,16185,18482,13193,16562,21412,16402,323,301,343,352,347,362,328,366,410,336,286,208,226,171,112,56,0,2098,3905,5736,9014,8346,7568,8150,14004,16486,25218,24020,19845,23164,26634,37380,1492,1601,2026,3526,4483,4382,3456,3430,1601,2810,2938,4445,4235,5915,5564,7565,18888,17121,16926,15700,12304,14696,11259,13584,10099,9084,6040,4420,2876,2080,1857,829,0,1387,2573,3806,4696,9177,15594,14158,8870,17430,28227,35594,24955,34966,34353,45722,12517,11370,7445,6189,6102,4296,3008,1246,0,0,0,0,0,0,0,0,35933,36331,34008,33098,33466,29118,19084,12857,4651,3957,2642,2622,2538,2248,1038,1048,0,1,2,4,4,6,7,7,7,8,7,7,5,6,5,2,0 +256,192,144,141,184,156,162,241,144,238,382,616,964,910,1116,945,2259,3743,5888,6868,7228,6460,8291,6850,18711,13530,14146,17948,18598,32475,37990,33525,12224,10940,8277,7426,4820,8841,11527,20744,9979,11412,12780,9766,10694,12517,11435,11760,15763,13994,16998,32298,40428,41441,50460,38980,47269,39439,34033,17602,8353,7265,8355,6700,48352,41480,39011,28664,14964,11994,7375,4932,4076,7952,9354,13686,14423,14973,15879,18425,10232,9042,6624,6841,7527,7980,5894,6120,4923,4941,6055,4268,4601,3430,2736,1396,0,2,5,10,10,17,23,30,22,32,38,37,44,43,58,45,82,2906,5092,7982,11732,16708,22628,27956,21544,18748,23576,15894,13703,10991,10726,9305,210,191,242,260,318,328,327,346,349,267,198,159,150,143,99,50,0,1513,2693,5099,5878,6434,8786,7744,10083,13412,12280,13783,21711,38168,44293,53446,1613,2876,3490,3244,3756,3117,2076,2206,578,843,1510,2201,2843,2630,3417,5435,12418,15555,15114,10670,11031,11773,13867,12040,7353,5665,6215,3553,2172,1523,1046,588,0,1455,2987,4480,5418,6503,6853,12290,8192,14881,16806,19738,17320,23656,23699,29821,6303,5839,4539,5118,4020,2994,2204,980,0,0,0,0,0,0,0,0,38622,32510,24212,27964,29745,18973,12582,8398,1856,1438,1087,1100,999,1074,1282,1171,0,0,1,2,2,2,3,4,3,5,4,5,4,5,3,2,0 +188,145,126,156,148,117,129,178,133,338,566,929,1216,1046,1147,1456,2776,3813,6158,5768,7550,5874,5749,5548,15013,13528,14034,14631,13481,26124,31138,28574,12772,12684,8865,7988,3949,8646,13712,20914,15582,17778,18540,14638,13971,14340,17067,18445,17574,18310,18127,31832,33853,36532,45956,36807,44128,32816,28634,18186,12714,12234,12814,8698,39354,30278,24606,22324,17062,13140,8383,7269,6896,9928,10122,12025,11521,10995,15086,16286,9232,6918,4783,5239,4939,4936,5451,5433,4300,4082,4020,3684,3402,2306,1755,1014,0,2,5,10,10,14,22,24,15,23,30,30,41,40,44,34,66,2584,5308,9485,12050,17454,19757,21432,17648,19851,24006,20297,15472,12232,10325,8801,150,164,235,258,249,244,252,214,217,170,150,118,130,108,74,41,0,1070,1640,3131,5088,6062,7229,6688,7064,10208,8797,13508,17375,25414,28120,29380,1191,1880,2867,2900,3071,2293,1764,1652,353,786,1010,1641,2194,2166,2364,3680,9863,9602,13574,9388,6812,8998,10185,9042,5964,5188,5127,2826,1845,1360,872,426,0,1083,1900,3145,4031,5882,4367,8098,6214,10814,11581,13118,16155,18932,17882,23374,4894,5049,2753,3355,2388,2323,1610,702,0,0,0,0,0,0,0,0,27649,25871,15367,18566,27083,16562,12630,7439,1195,1032,911,920,939,817,995,998,0,0,0,1,2,3,4,5,4,6,5,6,5,5,4,2,0 +194,186,160,144,102,91,86,99,85,357,802,1102,1235,1337,1392,1674,3861,3669,4886,4574,6362,5496,5682,4067,12756,10829,12237,13353,8370,11550,20254,24383,13040,14033,10372,6845,4538,10326,16392,21478,22180,23236,19156,15353,20344,18814,17697,22774,22513,22346,25590,32316,28465,34540,35955,37785,46228,27954,21788,24061,14007,14763,17204,15023,32002,19276,15432,13893,13859,14474,12078,9262,8063,10386,11482,11540,11708,14292,12702,12142,5708,5652,4368,4072,3700,3434,3374,4139,3357,3086,2986,2462,1536,1369,1292,663,0,2,4,7,5,9,13,14,11,17,22,18,29,32,26,21,41,4040,7994,11394,14332,11050,13223,14140,18973,14950,17830,16774,12856,12969,12936,10778,133,144,150,149,215,138,108,118,160,139,98,94,73,61,45,22,0,481,991,1520,3325,3361,4147,3770,4007,7095,8222,10618,7620,10239,15567,15173,554,1101,1468,1712,1377,1160,958,1267,193,536,747,1002,1961,2228,1884,2262,7629,9363,8322,7974,5864,6428,5980,5509,5046,3646,3618,1842,1300,770,417,190,0,687,1253,1807,2451,3298,3175,4772,3768,5257,8481,9234,11972,13897,17486,16742,4247,2566,1894,1815,1804,1150,822,437,0,0,0,0,0,0,0,0,16967,15719,12501,13378,18083,14486,8877,5511,753,661,660,703,650,650,571,619,0,0,0,0,1,2,3,4,3,5,4,5,3,4,3,2,0 +157,132,100,94,70,66,65,64,42,357,736,1594,1418,1754,2128,2288,3374,4301,3393,2919,4906,4504,3373,3158,8785,7414,8438,10688,9742,11229,13929,14317,11968,8848,8900,6442,4500,9622,13224,21372,23361,24642,23512,23206,19048,20926,22349,22556,26998,24660,25597,26626,34208,34600,34447,42532,43484,29273,20002,25838,24270,25189,21674,17111,21383,14760,9112,8883,11312,11530,11025,10864,8630,9526,10612,9052,9943,8964,8060,8290,2691,2284,2613,2088,1828,1549,1392,1944,1706,1549,1318,1062,734,738,567,318,0,1,2,5,2,5,7,8,7,10,11,10,15,19,16,12,18,3586,6048,9064,15324,12788,9180,15107,15882,16243,13438,15809,16486,15234,16638,13904,59,70,78,80,106,70,49,44,86,68,41,40,41,28,20,12,0,211,481,765,1586,1680,2481,1774,2255,3572,4187,6244,4322,5444,7609,9938,268,448,785,894,712,512,489,600,107,252,419,412,1174,1204,934,1308,3663,4436,4717,4139,2634,2768,2622,2860,2738,2338,1609,910,744,434,200,92,0,298,507,910,1257,1478,1332,2446,1651,3082,4932,4910,5717,6432,7652,9673,2111,1286,884,772,852,595,371,188,0,0,0,0,0,0,0,0,9911,8165,5550,6004,9042,7383,4340,2706,445,364,378,365,342,330,297,330,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,1,0 +78,80,61,47,17,28,42,51,51,47,56,65,76,75,66,74,64,60,70,64,56,37,33,17,0,0,0,0,0,0,0,0,0,3284,5670,6496,8689,10630,9647,13180,13187,14136,10654,11168,11660,12244,10445,17076,18555,18417,12152,8756,5492,20578,28848,25982,35967,39841,35015,27422,27515,19521,15367,12924,11727,8936,6453,5114,3748,5568,7591,8332,8294,5537,3968,3042,2333,2796,4110,4430,3574,3300,2761,3416,3764,4474,3957,3622,2806,4651,7286,11573,12826,12641,16436,16214,22994,20908,23287,26812,23056,17604,13920,15144,11950,12912,10885,8752,8815,7087,4953,2439,0,0,0,0,0,0,0,0,0,4030,8434,13132,16269,18498,17576,15471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +72,78,61,43,30,34,47,46,40,51,62,72,61,59,55,68,52,45,60,54,48,36,32,16,0,0,0,0,0,0,0,0,1196,3349,5734,7379,12237,11761,10528,12226,15869,12560,14903,14952,13955,15322,21072,21192,12056,13633,11062,9954,11342,21566,25465,36128,27141,33362,32215,32546,20866,19534,14067,12260,29128,18620,15188,10830,5709,8789,13705,19408,22245,20049,12526,10261,6760,6382,5454,5190,4362,5676,4289,6260,5663,6244,6936,5869,3672,6672,12674,13558,18836,22174,25246,27756,19265,16546,15988,17982,16021,13444,19137,16068,15374,14509,11291,11554,9742,8629,7318,7432,0,60,100,118,286,449,459,642,1160,4880,7762,11762,12068,16175,22673,22187,0,1,2,2,2,2,2,4,4,4,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,2,2,4,4,6,4,5,4,4,2,2,2,3,2,5,5,6,5,7,6,7,17,15,10,9,8,9,6,5,0,1,2,2,2,2,2,2,0,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,6,4,6,8,10,8,10,7,7,7,8,7,7,8,10,11,12,8,12,11,11,13,11,8,6,2,2,2,1,0 +46,59,66,50,47,49,46,39,34,56,60,58,46,57,62,65,40,46,36,37,48,36,26,12,0,0,0,0,0,0,0,0,2714,3227,5284,8000,14389,13324,12030,9798,21046,21656,16428,22872,20389,25568,25210,32110,10784,13774,13592,9910,13469,22457,34460,31764,30631,26737,29538,31719,24591,17227,14101,13038,37387,38644,27472,21265,8041,13846,19296,25960,30508,31940,24091,20292,13333,13029,8454,6766,6609,5762,7428,7923,5883,7324,8002,9386,4140,8255,15428,19068,20697,28410,30868,27586,16268,16639,13790,14050,15677,16047,18491,16534,16611,13606,13224,15251,11281,12597,11890,14510,0,116,226,303,541,728,1022,1109,2599,6126,8362,7840,11230,13844,20735,26648,0,2,3,4,3,5,5,7,6,6,4,5,4,5,5,5,0,2,3,4,3,5,4,5,3,5,4,5,3,5,5,5,1,2,4,5,4,6,6,10,6,7,6,6,4,5,5,6,4,7,8,8,9,12,10,12,29,21,20,19,17,13,10,7,0,2,3,4,3,5,4,5,1,2,3,4,3,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,8,10,6,12,15,17,14,12,12,13,12,12,13,10,14,16,22,26,16,18,18,21,22,18,14,10,4,5,4,2,0 +47,56,64,49,54,48,51,46,24,46,39,48,49,48,52,60,40,41,40,43,42,35,26,12,0,0,0,0,0,0,0,0,3820,5312,6150,9720,14264,10766,9790,9744,22936,16362,15757,19952,24353,31698,31355,32416,10775,13184,17646,14527,12118,20228,24058,28467,28010,28750,23856,24596,29052,18105,15008,11573,53391,50688,39594,27462,13590,20879,30112,37453,43109,45033,30074,32154,21708,20202,15962,9118,7214,8422,10055,10456,8162,10700,12113,11620,7849,12102,16324,21911,31871,29440,36312,37280,11227,12486,13732,11614,11386,14664,18392,19608,17677,15770,10855,12964,15486,14184,17826,19886,0,180,295,458,612,1190,1953,1672,4605,6608,7848,8926,14273,17821,18558,27310,0,2,4,5,5,7,7,8,7,7,6,7,6,7,7,7,0,2,4,5,4,6,5,6,4,6,6,7,5,7,7,8,2,5,6,8,7,10,10,14,8,9,8,8,7,10,9,10,6,9,11,15,17,14,16,18,39,38,31,28,22,19,12,10,0,2,4,5,4,6,6,7,2,4,5,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,14,12,18,18,24,24,27,20,22,19,20,22,16,25,26,30,32,23,22,18,26,26,19,13,13,7,8,6,4,0 +41,51,66,60,58,62,52,46,21,28,29,30,36,42,60,70,36,44,48,34,33,34,22,13,0,0,0,0,0,0,0,0,4346,6766,10440,11342,12646,9880,8810,7690,22553,19618,20067,19679,25504,29969,30603,27572,12405,12639,17337,18145,16051,16682,17569,31377,33903,25414,26118,26536,24368,23395,22105,20495,73031,55922,60923,39376,17894,20202,25221,33019,62245,52828,47652,43484,31763,23332,19674,11684,6248,7032,7373,11285,11974,14139,18798,20628,9747,10782,16523,26503,35410,37383,29328,38827,9914,11062,15351,16287,12122,15352,15312,23364,14367,12047,12095,15611,20863,19767,19669,18597,0,245,509,635,838,1538,1982,2788,5910,9884,12930,12839,14662,19198,27382,30784,0,2,3,5,4,6,6,7,7,10,8,8,6,8,8,8,0,2,3,4,3,5,4,5,3,5,6,6,4,7,8,8,2,6,8,8,9,12,10,13,9,9,9,8,8,10,11,12,6,10,14,16,22,17,16,20,43,47,46,34,24,20,20,12,0,2,3,4,3,5,6,6,2,4,4,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,19,18,19,14,13,14,24,31,27,31,26,26,26,17,17,34,31,24,26,32,24,23,24,32,36,28,20,9,7,4,2,0 +116,113,95,90,76,62,64,62,23,30,28,33,34,31,51,46,23,32,37,33,34,29,18,10,0,0,0,0,0,0,0,0,7669,11638,15176,16708,11728,14030,12505,12766,23312,23768,24952,22746,25526,30100,34946,34055,16582,19994,18108,20390,11793,15358,15434,27946,30709,26942,24766,25382,24798,21626,17927,12447,82775,78830,70788,42582,20894,28312,24620,43549,51318,55793,39630,34016,36297,27920,20225,9398,7095,6262,6144,10760,9539,14373,15572,25353,13657,16444,24770,35666,43326,34008,30421,38390,10678,13362,13060,14595,12159,13416,14916,19928,15721,15718,16115,23194,26450,27664,24482,30250,0,248,492,896,1162,2253,2571,3956,7031,10902,14131,11962,9938,15006,20060,22850,0,2,5,7,5,7,8,9,11,10,10,10,8,10,11,12,0,2,5,6,5,7,6,7,5,7,8,8,7,10,9,9,2,8,12,13,11,18,22,24,19,21,17,17,22,20,18,20,10,14,16,21,26,28,34,30,45,44,44,38,27,24,22,14,0,2,5,6,5,7,7,7,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,22,18,18,14,16,20,29,38,36,36,38,30,30,20,19,35,36,34,40,42,44,32,32,36,40,30,22,10,8,6,4,0 +185,175,142,105,81,81,68,51,21,26,25,31,20,23,28,30,17,20,20,25,22,18,12,7,0,0,0,0,0,0,0,0,11002,17712,20244,29453,15937,16430,21748,23347,25071,19882,22732,25808,29473,33982,28333,25834,22421,19956,22524,18377,9082,12401,19310,19733,31870,26299,31098,28584,21167,20242,13383,10763,86971,85913,80482,54924,33352,32671,32536,34961,50925,47915,41113,34450,55999,37529,19408,10379,5980,5385,6811,8035,9299,11891,16732,27084,15206,26288,38717,52718,41170,37878,31570,28511,9950,10776,16984,21903,18050,18207,12952,16196,15584,21185,22023,29491,30796,29232,30434,30956,0,256,555,1052,1383,2217,4106,5402,7918,10868,11692,14796,7093,13338,15168,20796,0,2,4,6,4,7,8,8,11,9,7,8,8,9,10,12,0,2,4,6,4,6,6,7,6,8,8,8,8,11,10,10,3,10,12,13,13,18,26,32,23,29,29,20,28,32,26,24,9,14,16,21,39,44,40,36,46,32,30,32,24,20,19,14,0,2,4,5,4,6,6,6,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,15,10,22,26,35,32,34,44,36,31,32,29,20,35,31,37,50,45,42,40,42,44,38,32,22,7,7,6,4,0 +212,174,184,142,111,90,73,57,20,24,26,24,15,23,26,34,8,11,12,14,13,10,7,5,0,0,0,0,0,0,0,0,10860,12462,20088,25948,27755,24414,33268,24478,32684,29182,25881,28115,23690,27310,33687,26074,32057,32544,24332,21340,9887,14088,19787,21098,29640,23981,23948,28264,15969,15478,9984,9054,97275,83714,71941,50812,46903,47354,50031,51778,54798,62736,45407,43120,57593,44417,15779,8592,6224,5146,5311,6264,6447,11950,18031,27092,28348,30507,46818,46593,34864,32254,35330,35685,8512,8288,13806,17762,19427,14856,13358,14606,18156,20524,25464,30086,29319,36940,43009,30210,0,356,893,1378,1836,3008,4479,7404,8730,9920,12364,10424,8564,13852,16665,23390,0,2,5,7,5,8,8,9,10,9,7,9,7,12,14,14,0,2,5,7,5,7,8,9,7,10,10,8,10,11,12,12,2,8,14,16,18,23,32,28,23,28,31,30,34,30,29,36,13,19,19,32,38,40,49,47,52,38,34,31,23,22,22,14,0,2,5,6,5,7,6,7,5,7,7,8,7,8,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,29,24,17,11,20,30,43,42,46,54,57,47,41,28,25,56,52,54,62,67,64,53,58,38,33,26,19,8,10,7,5,0 +275,190,159,110,55,46,24,18,16,20,29,42,61,65,61,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11941,11570,13595,13478,14344,16736,25390,26454,31884,35578,49632,45193,39996,29398,33190,21818,48972,59619,56899,52978,34726,38027,38466,31805,24546,21164,24358,22822,22548,23587,17323,9272,93787,88962,69679,54590,21817,40735,55981,66620,71120,54784,60741,42838,24744,15587,11763,5778,6681,12657,15906,22012,26420,25617,25962,27253,34460,31016,34705,39697,57837,60288,42799,42260,4447,6376,9276,12442,15741,11925,10947,15047,19582,24916,27954,27280,39369,38636,29254,38081,0,1622,3604,6478,7226,8611,10565,9790,9636,11499,10091,9967,12800,12711,14332,20336,0,2,3,4,3,7,8,10,8,8,9,12,15,15,18,18,0,2,3,5,5,7,6,7,6,8,8,8,7,8,7,8,2,6,8,12,11,15,21,23,26,30,39,53,70,83,72,67,19,24,25,34,31,46,50,50,50,53,41,42,35,26,26,16,0,2,3,5,4,6,6,6,4,6,6,8,9,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,30,31,32,46,44,51,48,44,42,30,12,13,10,12,61,69,86,76,68,65,59,48,36,42,34,31,24,24,15,8,0 +196,188,133,100,69,56,44,32,44,46,46,54,51,68,62,62,9,11,8,6,7,8,8,8,4,5,5,5,4,4,2,1,11695,14032,12886,9856,18977,23316,25238,26412,26211,29062,41536,39756,24499,23092,22154,18038,33194,35386,37198,34610,35017,32887,32752,30720,18423,19023,23550,23828,22775,19486,15546,8872,72297,82366,80849,52122,22314,36393,43444,68620,74176,63718,47922,41780,22988,15075,12036,8438,5913,10170,13560,19031,29882,27562,35075,36885,37817,38062,46242,60298,67490,59712,36453,27948,17836,13128,17411,13436,12520,11880,15202,15410,17742,21719,27017,37084,45306,43376,40797,39280,4160,5422,6228,7367,6044,7942,8755,7982,8103,8573,10583,11120,12476,12256,16216,15371,0,2,5,6,5,10,8,10,14,14,14,17,15,18,16,18,4,6,7,8,5,8,8,8,10,10,9,9,9,12,10,11,2,6,8,10,12,16,16,22,30,38,51,60,54,64,87,68,43,44,40,46,38,55,60,84,55,61,60,60,41,38,36,19,0,2,5,6,5,7,6,7,6,7,7,10,10,10,11,9,2,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,48,42,48,42,52,47,46,51,47,65,70,48,27,29,28,29,63,81,101,94,96,88,66,50,41,42,30,29,28,21,15,9,0 +141,142,139,115,77,69,50,48,65,61,68,58,61,74,63,53,18,17,14,10,13,13,14,14,6,8,8,8,6,7,5,2,11252,13588,13368,12042,17784,19257,25894,23098,25648,22502,20207,28354,15672,15991,17686,22678,28704,27238,30166,28243,29321,31541,28077,21310,19282,17226,19878,20779,17834,12039,11938,5993,62686,67900,71114,47056,16804,26363,40214,69035,83656,75800,46300,33858,14371,17193,15097,11273,7690,11379,12758,16761,26314,33058,39507,37892,43458,48719,55600,57546,62020,48348,34494,26652,27787,29240,21492,15972,12633,14074,14443,14582,12821,16197,23828,26872,39961,40454,48064,44141,10144,8394,8742,7619,4419,7313,9008,8413,6391,7465,8402,9101,10557,12396,12782,10192,0,2,4,5,6,8,8,10,16,18,14,17,16,20,18,17,6,8,8,8,4,7,8,8,10,10,10,10,11,12,12,10,3,5,6,8,8,12,16,18,24,39,48,59,34,50,76,94,72,59,50,47,43,56,74,77,57,72,82,88,54,49,33,22,0,2,4,5,4,5,4,5,6,7,6,8,8,8,9,10,3,5,4,5,3,5,4,5,1,2,4,5,4,5,4,5,51,52,50,51,65,60,55,64,61,60,75,65,39,38,36,39,91,127,122,119,92,84,82,64,55,40,30,25,22,20,12,7,0 +160,150,157,110,90,82,70,48,73,72,87,71,76,78,90,76,29,28,26,24,15,20,20,24,12,13,14,14,9,9,7,5,10358,12314,11135,13002,15021,18950,21843,23620,25956,22320,18161,19572,12136,12928,12149,17769,24553,21784,26306,30316,24632,30218,27611,24979,19766,20084,19470,20602,14882,11483,8826,6349,83318,75828,74994,52746,25644,33494,33357,64242,68581,60106,50767,38992,20378,16098,13186,9354,7330,10120,17101,18734,27910,33723,32002,34918,51016,50694,43253,48368,59263,38094,25826,20241,38705,29810,23294,17696,9808,9978,10151,13870,11176,15416,27313,28405,32954,38600,51604,39442,12712,13816,11320,7422,5391,6740,8753,6645,3535,4521,5285,5664,6262,9226,11354,12582,0,2,5,6,6,8,8,9,16,18,15,16,17,22,21,18,9,10,12,8,5,9,8,12,9,12,10,11,10,11,12,12,4,7,8,9,8,12,16,23,18,30,43,48,33,63,94,92,90,57,55,56,53,68,92,86,81,79,84,88,75,55,29,18,0,2,5,6,5,6,5,6,5,7,6,7,7,8,10,8,5,6,5,6,5,6,5,6,2,5,6,7,6,7,5,6,56,44,52,56,78,80,71,80,94,84,97,91,58,53,38,46,73,86,111,114,89,88,60,60,52,46,34,28,20,18,14,8,0 +149,120,131,106,88,70,46,36,82,72,57,67,74,72,52,55,33,31,34,25,18,18,21,24,13,11,9,10,12,11,6,4,9252,12448,13262,13408,14928,19780,22456,19266,22868,19053,18220,14522,11705,8578,8195,11788,14987,20875,25365,28436,30358,30548,29298,27867,23595,15912,14770,15872,16546,11073,7003,4133,79664,64507,37314,32209,31397,41091,46181,58733,67953,47436,35564,31052,23106,20806,16124,12777,6191,7418,12186,21272,25540,44141,53531,43144,62059,84791,80739,65274,54251,45521,38396,18466,39415,35207,32534,20569,9404,8760,7393,8716,6880,18770,25020,30040,40034,39012,45122,55442,20126,17086,13617,8868,5189,4956,4616,4232,2082,2372,2043,2486,3342,6846,10114,13796,0,2,3,5,4,5,4,5,18,15,14,16,16,20,18,18,12,10,9,7,4,7,9,12,8,10,9,10,8,8,6,7,3,5,6,8,9,12,12,17,13,26,30,37,38,54,83,108,88,67,60,54,44,68,97,109,115,114,104,103,78,65,33,18,0,2,3,5,4,6,6,5,3,5,6,6,4,5,4,5,5,7,6,6,4,6,6,6,2,4,4,6,6,6,4,5,64,56,61,61,72,67,55,68,109,98,128,130,98,102,77,72,77,83,65,104,120,107,73,66,42,36,23,20,22,20,13,7,0 +159,178,194,156,125,114,90,68,82,82,57,81,80,80,48,64,40,37,42,32,16,22,29,31,24,20,13,15,16,14,10,6,14884,16469,15024,17954,22228,18742,25848,18174,24266,19466,20920,18856,11159,9376,10026,10444,12484,17042,17047,16728,23596,22908,20945,21764,22446,15494,11558,10734,15910,9442,7149,4810,79569,64122,64934,62268,31273,42359,46052,52438,62098,42190,30139,27426,22442,20267,13840,10356,7994,13140,19054,25258,38272,49392,42476,48970,54440,70278,78986,45612,51986,37758,35266,21378,50971,41112,31623,29462,11264,11297,10321,14696,8590,18556,24895,25226,43016,43851,33950,47663,23952,16606,14198,9364,6020,7211,4761,4497,1567,1593,1932,1726,2816,4454,8418,10866,0,2,5,6,6,8,8,8,22,18,12,18,14,17,17,18,17,12,10,10,6,8,8,12,8,10,12,12,10,12,11,11,6,8,8,10,12,13,11,16,14,26,35,40,49,74,97,99,88,77,72,65,56,92,84,104,109,115,78,96,68,66,38,26,0,2,4,6,5,7,7,6,4,6,7,7,5,7,7,8,7,10,8,9,7,8,10,8,5,7,7,8,7,8,10,8,49,59,54,82,93,72,66,62,118,99,122,120,149,114,90,76,99,104,94,106,142,117,83,86,73,58,40,41,28,24,22,12,0 +178,214,192,146,123,128,111,74,98,64,56,64,100,87,53,61,47,39,45,36,16,26,28,27,27,27,20,21,14,12,10,6,17978,17250,20198,19987,25788,27352,22327,18596,20893,21884,22023,19940,12124,13554,11311,11679,14007,15197,12442,17978,12363,14618,14820,10614,14809,11090,7426,5844,12084,11402,7026,3337,66848,81425,73260,75047,40534,43563,35544,47611,41781,43823,35808,32254,16578,12254,11616,11524,12232,15662,23188,27990,47314,49654,52166,52957,38486,53464,54704,43206,38434,32415,29678,24392,50303,42017,44124,33531,11300,17290,17796,22419,10056,18437,22932,25561,39032,34836,32928,42468,23954,18270,12963,9608,7787,6735,6106,3579,1411,1288,1194,1261,2339,2938,4225,4174,0,2,4,5,6,10,11,10,19,19,12,15,9,15,20,18,16,13,12,11,6,8,8,12,7,10,12,12,9,10,12,14,7,8,8,9,12,11,10,13,10,29,42,50,70,80,95,98,68,73,64,74,59,77,108,100,136,98,80,86,83,68,52,36,0,2,3,5,4,6,6,5,3,5,6,7,4,7,7,8,8,10,8,10,8,10,9,8,6,8,8,10,7,11,11,10,47,49,62,92,86,90,64,66,86,106,93,103,151,154,113,117,90,98,120,142,126,130,94,81,80,77,67,60,32,30,23,12,0 +168,214,203,140,114,134,144,96,110,86,64,104,122,96,66,80,68,61,58,36,16,24,21,27,28,26,20,22,15,12,12,7,20402,21043,19031,19834,27908,24781,20934,16948,21377,18384,13464,12722,13489,11878,11366,13234,16896,18165,12324,15678,7105,9710,10728,8928,10395,7774,6082,4902,6880,6850,3444,2191,68244,98474,81352,77064,51470,51197,44769,44252,32134,29411,33892,36256,24586,18280,13778,13152,14839,22578,27891,34694,42586,46480,39135,51486,46256,48783,45675,33685,25701,24942,22833,18902,41000,40851,34592,29110,13267,17825,23496,20418,14458,23320,27477,40630,40039,41386,33370,39505,27624,20700,16568,14256,12081,9923,7494,3650,593,608,714,664,994,1586,2030,2015,0,2,5,6,7,10,11,13,15,15,12,15,9,16,22,17,22,18,19,15,10,12,11,14,8,12,11,14,12,12,10,13,8,10,10,12,11,10,10,13,11,34,66,58,78,94,118,118,105,107,72,85,91,88,122,102,97,102,90,84,90,66,56,32,0,1,2,4,4,5,5,5,2,5,6,7,5,8,10,10,8,9,8,10,8,11,10,8,7,9,10,11,8,12,14,13,63,62,71,90,84,72,66,72,93,103,86,104,163,126,99,112,116,122,145,126,105,132,110,98,108,109,73,65,42,36,22,12,0 +158,144,87,97,106,89,96,136,200,184,181,218,185,140,85,80,90,79,63,87,108,86,53,37,29,24,15,13,7,7,6,4,26422,29805,38686,31176,37517,54568,53984,52716,47930,38716,45935,30583,21353,21194,27910,28471,23358,22224,15043,17916,20780,12900,10360,5866,0,0,0,0,0,0,0,0,83008,72149,73683,51231,26549,28530,21748,21489,21819,29796,33431,36982,29043,29080,26198,20377,18770,15177,11743,10295,7006,11815,22042,33524,40034,31382,18691,15914,19988,16670,14746,14234,43361,60216,91282,90081,119990,106760,88836,93359,93496,95482,79380,79692,66990,56712,51729,35269,28740,30623,22353,24467,19458,16842,21042,18806,21602,18861,18146,15913,15812,13203,9320,5088,0,2,3,5,5,12,20,22,26,28,28,25,21,20,24,20,20,26,23,24,22,18,13,13,16,17,11,10,8,8,7,8,7,9,11,12,10,28,47,64,72,70,82,116,154,140,143,119,124,108,55,48,31,21,18,13,9,10,12,18,18,16,18,13,0,2,3,4,3,5,6,8,8,9,10,12,13,12,10,8,6,10,15,19,17,18,23,26,21,20,25,24,15,16,11,10,66,97,145,173,197,187,145,154,181,192,156,124,65,82,89,118,110,120,96,63,57,62,86,109,143,127,110,90,90,60,49,21,0 +170,142,106,90,130,122,121,148,146,180,182,196,142,146,118,108,98,115,171,270,267,397,576,1030,1162,1238,1312,1134,1576,1420,1570,1508,36998,40827,47017,42726,33227,43244,62803,52684,42363,43466,42907,33056,18048,23009,24283,23043,24150,25040,18844,21816,21208,14953,9889,7330,3980,4709,4286,3173,4390,3748,2626,2176,58776,63046,47416,43948,30980,27832,21690,23976,15466,29136,32602,30609,27253,20146,22091,16887,20221,18011,12356,13759,8608,13504,20665,31348,33795,33894,21065,22430,29244,20646,14076,11778,29036,43371,71662,83773,77408,95318,72703,71386,124326,94450,97969,84008,53275,52572,41257,39703,42543,28683,31681,32422,25210,19787,16410,15470,19000,17923,20299,17102,16827,12399,8127,5376,0,2,5,7,7,13,18,17,26,25,26,23,20,23,21,20,21,28,25,24,25,23,22,18,24,20,12,12,10,11,11,12,8,10,10,14,12,30,43,60,75,84,84,103,148,156,121,134,111,113,66,49,31,36,47,39,28,28,21,26,24,21,22,19,0,2,5,6,5,7,7,8,8,11,14,15,12,12,9,10,10,14,15,16,19,18,22,29,15,21,24,21,13,14,14,16,106,128,166,176,211,181,140,142,174,150,149,94,52,80,78,114,78,75,75,66,55,56,74,84,130,133,96,85,99,66,41,24,2 +176,148,123,99,115,124,142,140,105,114,134,137,152,135,139,121,95,160,290,419,424,840,982,2296,2615,2840,2564,2773,3828,3851,3504,3182,46961,52249,62272,48737,28736,33236,53378,55657,56918,45686,41217,33358,17232,18538,17343,23522,26785,31474,29574,31692,17365,16675,13353,10902,7180,9152,8164,8599,8239,7760,5377,4178,57547,53323,43822,42362,30121,31437,26371,28483,15327,19686,24768,24318,18068,16853,17420,15934,21921,21968,16002,19765,13258,15634,19736,25330,29239,27868,30851,32620,33437,23578,17524,11996,22875,30871,39453,46217,67547,66388,57357,51485,119634,109011,102168,73980,48899,46538,43618,26550,44712,37301,36016,29724,24357,21493,16134,11460,20839,21725,18032,16794,12540,9993,9262,7267,0,2,5,7,6,12,14,18,19,29,28,32,24,25,23,20,22,28,28,26,20,25,22,24,27,18,14,19,12,14,11,10,7,8,10,16,16,28,44,52,81,83,92,76,140,167,149,182,147,126,68,56,42,55,60,53,48,38,36,27,22,20,23,24,0,2,4,6,4,7,7,10,8,12,15,15,13,12,8,8,9,12,16,18,16,17,22,26,12,16,14,18,12,12,12,14,133,125,134,114,172,146,154,111,122,125,91,81,55,74,88,91,66,73,56,58,34,53,58,56,114,78,70,63,78,50,38,25,4 +135,123,153,126,129,124,104,106,86,115,147,152,135,136,155,158,86,238,568,601,742,1021,1486,2578,3401,3788,4408,4554,5714,4626,4025,4100,56068,56504,66900,55428,40385,46918,52577,65291,53280,47576,44986,33744,20030,25632,26957,27514,20784,27865,28105,32202,16847,19030,16878,13359,12376,14955,17596,13352,10648,9094,6528,5384,56857,57776,54694,38832,21306,28002,27293,32473,16808,16610,15254,18155,16142,13218,13852,12552,19536,20011,17566,19818,17428,20615,23971,21096,38227,31497,32914,33804,29195,29706,17360,11506,20636,22626,34965,30712,32718,41848,42261,36973,86096,96201,79432,68778,62610,49369,52365,36121,37689,37832,36212,35142,27146,25270,26023,19231,16156,18751,14337,16389,16166,12492,11268,8908,0,4,7,8,8,14,19,20,25,28,29,29,20,24,20,20,25,30,24,24,20,22,24,25,23,24,18,19,19,17,12,11,8,12,12,19,20,40,56,67,77,81,61,64,92,129,155,152,139,97,91,68,48,64,64,60,65,49,37,31,27,22,21,24,0,2,5,7,5,8,8,11,10,13,17,14,12,12,10,9,12,16,15,18,20,21,19,28,12,16,15,20,15,15,14,18,136,121,103,104,187,160,165,118,90,76,74,77,77,84,125,124,60,67,60,55,47,48,61,58,73,66,63,64,67,41,32,21,7 +151,137,136,123,137,110,129,87,65,98,98,134,156,144,121,154,48,289,544,902,1012,2550,3772,3596,4974,3963,4008,4544,5747,7806,7263,5467,67922,75399,61470,54891,50397,66220,61840,67338,66097,59853,44861,30777,29927,21926,23819,27839,22060,17942,18419,17490,21617,26559,24972,21182,18366,20746,17811,21201,17576,14724,10440,9414,72362,63270,54298,41717,20949,17978,19736,22494,15339,16272,18725,18433,12806,14648,11910,9908,24954,28798,25750,26498,22585,21187,22367,20570,34550,41235,39581,45904,38374,33842,24450,16611,27041,23516,16705,13964,10014,11932,19045,22750,91170,88766,69433,72207,56375,38942,35664,29777,48859,43302,46125,46213,39904,30524,28362,17209,10196,14416,17604,17672,16817,12441,10772,8022,0,4,6,8,8,13,21,24,30,28,35,28,20,19,18,17,29,27,20,16,17,18,23,20,26,29,26,20,20,17,12,14,10,17,18,16,18,41,54,79,92,99,79,60,46,102,137,179,101,95,77,72,42,46,48,67,60,52,37,33,36,36,34,34,0,2,3,5,5,8,9,10,12,10,9,12,12,10,7,7,10,16,16,18,24,31,28,36,8,10,13,17,16,17,15,16,131,111,98,106,156,182,160,133,48,68,73,84,77,100,107,136,37,50,46,38,44,61,58,62,58,73,74,66,50,38,31,21,7 +98,100,97,112,120,125,123,87,68,80,88,102,155,112,99,116,56,442,730,1370,2944,4018,4534,5133,7100,5740,4963,5664,6032,7482,7258,7735,67110,64528,69526,45657,32588,42414,62326,52177,57298,49019,45030,55500,49133,41366,44280,55006,19800,16203,18012,20930,28330,24942,24356,25290,19238,17435,21071,18604,21895,17274,10367,10262,70328,53998,51765,46385,21192,25348,27698,27751,12834,13481,14946,13793,10179,11675,8716,7806,25070,25590,30162,22872,15950,16036,24146,20168,46056,38390,36756,33085,29191,31278,16080,11946,25159,21685,16016,13712,10366,14484,14381,16112,78356,69862,51544,42781,40473,33578,24025,23022,34303,42920,36862,43051,36322,26459,23853,21116,11984,12713,16944,17232,16220,15139,13534,12086,0,5,7,8,10,16,20,26,28,32,39,28,28,20,18,18,25,22,18,22,21,20,20,21,22,26,24,22,24,20,14,14,12,16,21,19,22,41,68,73,81,75,73,51,54,82,118,153,172,138,96,84,77,57,53,82,77,80,78,60,47,40,44,44,0,2,5,6,5,10,9,13,16,15,12,14,11,12,8,7,12,15,16,19,24,30,30,32,15,18,18,19,24,26,18,22,134,100,99,122,147,142,141,114,46,82,72,97,128,148,116,146,33,44,41,38,37,48,42,44,45,50,65,48,44,36,36,22,8 +88,78,91,115,147,145,122,85,70,77,72,92,106,114,90,94,82,771,1216,1678,4405,6034,5758,7887,7911,6542,6150,5282,8363,11104,10743,9804,57108,62879,54625,45054,21113,26563,42476,34841,59363,41272,42016,49574,57662,55723,59240,50236,17464,16460,16351,19732,27740,25447,25802,23309,21538,21082,22101,20184,24152,14712,11968,10272,56004,62266,51500,50940,23306,24244,28364,30830,12275,12303,15138,12018,10626,7416,7220,5809,17106,25972,27215,24923,16192,15388,20792,18377,42320,39302,29003,31306,34419,28422,14420,9269,18848,13545,11940,10952,13067,11609,12224,10284,65534,55230,43606,27956,28476,21560,15118,18348,32934,30874,37780,47826,22392,22006,26569,21249,13188,14568,17502,13935,18363,18327,17208,16216,0,4,6,10,9,17,20,24,30,40,36,34,26,21,16,17,20,16,16,22,21,20,20,22,24,24,20,16,20,16,14,10,14,18,20,20,18,48,62,63,59,57,43,46,44,73,98,106,199,174,104,100,89,89,59,78,91,90,93,95,46,39,42,40,0,2,4,5,4,7,9,14,14,15,14,13,10,10,7,6,9,17,18,18,22,22,28,40,24,28,22,26,24,22,22,29,143,125,84,107,136,110,118,98,53,72,102,89,220,162,176,200,25,34,32,37,23,36,38,32,40,45,38,38,50,46,30,20,7 +84,78,64,87,93,106,123,86,72,62,65,76,84,92,107,116,83,1124,1924,2904,4206,6014,6536,7954,8490,6510,6951,6826,9049,10596,11924,11492,66138,56765,34389,27042,22139,27822,32017,34644,39819,39926,48154,58388,65892,57722,50518,59175,12088,11492,13123,21890,27502,23503,27185,21784,22950,27189,19876,24770,22764,20674,18548,14642,55798,55609,33552,42133,36662,31002,34954,33972,15190,14998,13820,11202,11263,7102,5980,4430,19758,28708,34257,27316,18269,19130,23578,28834,44410,33780,32585,29230,29495,22828,13075,8532,14785,13228,12408,13066,15809,12784,11584,11801,30369,32364,26472,20587,19799,14632,10328,11964,24009,26340,28620,37046,25167,31129,33801,31212,18460,20024,24841,17282,16948,16870,13740,16598,0,4,6,8,8,16,17,18,22,28,26,32,27,25,20,20,31,25,20,21,29,29,23,20,21,24,22,21,18,18,13,10,12,16,18,21,16,41,48,49,63,57,36,37,28,58,73,101,219,169,125,114,101,92,78,82,95,96,91,88,55,58,57,62,0,2,5,6,5,7,10,10,12,14,12,13,8,9,7,6,13,16,16,16,13,19,23,40,27,28,24,29,26,28,30,34,143,138,104,100,121,108,98,95,88,99,120,170,293,216,143,178,14,22,20,26,20,23,30,24,30,28,25,28,41,40,23,20,10 +75,78,84,64,46,70,74,76,86,117,152,153,155,138,99,96,71,814,1559,2882,4224,5814,7682,8488,7868,9751,10685,9294,7576,11065,14337,15598,56477,39510,35197,24800,16498,15278,21059,21931,31699,51379,76450,83248,79153,73962,76406,73878,6740,8513,11928,14068,20268,15823,13620,15200,24045,22656,14739,13584,10091,11081,10478,12582,48277,49203,49934,49524,40631,30929,22687,23939,23251,20601,17176,16780,19543,15794,11653,7600,31033,31098,27786,26081,28526,32844,33931,33148,32050,25092,17514,12035,9984,9514,6496,3604,16570,16781,11838,16332,20319,14588,14025,10167,8884,7070,4532,6117,5897,7252,6602,8392,25908,22547,19599,28753,31870,27464,21434,22248,26856,18194,13781,17730,16820,18177,18633,20146,0,5,8,12,12,12,12,17,16,14,9,8,6,14,20,24,32,31,41,45,46,42,30,30,25,26,31,22,19,19,14,8,11,14,13,18,26,32,33,50,50,71,72,67,56,64,78,91,243,240,162,130,138,107,124,110,96,107,112,102,83,70,74,84,0,2,3,4,3,6,7,8,7,7,5,5,3,4,3,2,13,14,12,10,7,18,23,34,38,32,27,40,39,30,24,27,106,76,55,56,39,56,62,76,102,90,115,130,182,198,217,248,0,2,3,5,4,7,8,12,16,18,23,22,20,18,10,12,9 +60,64,69,52,32,56,60,70,65,112,143,154,133,139,92,90,58,850,1270,2275,3560,4673,5850,5984,7424,7801,6996,8501,7188,12326,14191,13878,43820,33134,31557,23410,13943,22457,25360,36539,32642,47492,65976,77352,53735,55603,81350,79392,5839,8080,13545,18290,19644,20555,17515,21761,28356,20871,18573,15188,15372,12605,10822,12996,37360,39970,45840,41002,38149,29499,20681,24528,23817,21918,19157,19192,21518,15920,11224,10000,35446,40065,32815,31636,33872,39960,39435,42026,36664,28525,22950,16932,16079,10860,8105,4468,15543,13720,9196,11458,14848,13376,10872,8986,7047,6376,4192,4942,7399,7144,6812,9654,27261,24218,18567,29070,22300,19253,21305,17267,24592,21244,15990,17411,22244,24001,18514,16699,0,6,12,16,15,15,19,23,27,22,15,14,10,17,21,25,32,34,37,39,38,38,31,26,27,30,38,28,20,20,14,12,17,19,17,22,34,36,39,46,55,66,80,75,60,66,89,72,197,176,189,148,174,162,142,100,102,122,165,105,116,86,79,82,0,2,5,7,5,8,8,10,8,10,12,12,8,8,7,5,15,16,14,14,13,18,22,28,28,24,23,36,38,38,37,42,112,100,53,64,58,62,68,83,96,102,142,148,163,182,180,208,48,42,38,31,29,32,26,39,37,49,56,50,59,44,42,32,20 +44,41,48,41,24,32,41,50,63,88,136,152,143,139,106,98,52,674,1402,2618,2030,2174,3255,4015,6806,6350,6734,6144,8681,11942,15316,17654,40244,36844,25612,19158,14460,33455,41558,48988,41938,51507,48744,61670,42578,54644,64868,55094,5782,8923,13360,22646,27002,20188,23393,28029,24672,22359,18390,21655,16410,13015,13218,12281,30064,36270,36806,41945,30162,30025,20406,26356,16981,18681,16912,16047,20843,17392,15841,14442,48608,33910,31172,29025,41820,45568,50237,46746,29214,21498,21250,15763,16945,13503,10462,6467,14432,11871,9317,10402,15917,15549,10576,11116,5747,5151,4262,5007,6496,8956,9038,9793,29343,24782,19994,31002,18451,18044,14604,21297,28703,26496,18460,19754,25724,19720,20550,18703,0,7,11,14,20,24,20,19,31,27,22,17,11,15,18,23,31,28,28,41,37,30,28,23,27,26,34,31,26,20,11,10,18,17,20,24,34,31,38,52,41,48,64,76,68,79,70,72,155,178,186,142,196,151,122,84,150,167,177,130,123,117,104,84,0,2,5,7,5,8,9,10,10,14,14,13,11,12,8,7,15,17,14,12,15,20,21,24,18,26,25,30,27,38,38,47,137,117,72,60,62,82,81,76,121,129,146,129,91,98,143,133,80,94,76,57,58,60,48,53,53,80,83,66,91,85,60,54,36 +44,48,52,38,26,32,35,47,46,62,112,100,88,112,97,94,55,460,994,1612,1562,1518,2060,2786,6954,5474,5690,5956,7802,11816,18700,16331,25574,23930,24974,20354,16522,34708,48819,49386,50122,45820,60617,55816,48128,54235,55867,66225,7063,11661,18572,25933,34151,32246,32980,29868,28344,24677,20315,24662,18103,22370,22848,19936,22684,32134,29274,34766,31714,25046,25313,20064,15232,14191,12989,18734,18910,21045,18055,16029,63300,41090,32050,34014,34551,49908,47204,46615,34730,32776,24367,18568,18202,12115,12803,6855,8885,7954,8819,8780,13327,10440,7808,8763,6455,6083,4377,5264,5597,7731,8903,8952,28303,20952,15007,19312,19788,14986,15172,17038,23624,21284,13982,22570,27362,22444,19485,16982,0,8,12,16,21,26,21,30,28,30,21,17,10,19,26,26,25,24,23,32,36,30,34,24,32,27,35,32,22,20,12,11,20,19,18,24,26,35,39,41,26,42,65,74,54,70,78,74,156,176,183,162,223,148,137,105,148,174,191,157,140,136,128,138,0,2,5,8,7,8,8,10,14,17,23,23,19,15,11,10,22,16,17,16,19,18,19,24,13,22,24,31,31,42,46,57,98,100,68,74,56,60,75,70,110,112,108,101,90,105,83,94,117,121,110,82,88,82,70,74,99,114,108,108,105,110,82,66,44 +52,47,46,29,21,24,29,38,17,31,51,55,67,84,79,64,57,226,344,490,750,901,1412,1149,6931,5472,6610,6446,8429,9680,9461,14975,9890,11070,11234,17986,23321,21545,22701,31592,61992,49052,38804,51141,52708,49969,58303,74676,7011,11378,20635,30756,31326,32552,32749,32703,22767,24815,20525,20426,27218,22134,12959,16630,17057,22938,33146,33591,33803,29536,20896,19218,12665,14832,16910,22957,22462,17634,21443,16478,58418,54666,36258,33462,36148,40818,40052,51951,45656,51085,41756,25449,18271,15772,8490,4551,4657,6769,6856,8799,9436,6409,5616,7719,7991,6082,6388,5822,5302,6932,8698,6956,23535,24209,22214,25874,22166,20460,21589,13009,26460,22905,21178,19913,23691,22506,16145,13234,0,7,11,17,22,29,27,28,28,24,17,15,10,13,17,27,11,18,28,30,29,24,14,16,32,29,26,20,20,19,12,10,18,18,17,20,26,27,23,33,14,18,25,44,56,66,58,71,202,171,211,207,196,179,196,159,135,123,163,162,162,126,104,136,0,2,4,7,7,10,12,12,14,17,24,26,20,16,10,10,22,18,13,13,16,17,16,17,11,12,13,20,26,29,32,42,97,94,66,71,72,84,72,69,80,90,96,79,73,72,57,52,128,132,111,119,96,90,81,95,140,136,95,97,138,103,74,60,43 +49,42,35,28,19,25,25,26,12,24,46,46,61,62,74,56,38,148,327,390,482,589,1037,854,4420,4808,5552,5760,6521,9388,10793,13416,11204,12892,10061,14924,13668,18718,30896,39500,56934,45868,32520,32804,63442,67303,67476,69632,15426,16736,22812,26032,24048,26293,30950,30560,30620,30188,31670,22521,45909,34114,23887,25677,25493,26166,24731,28618,27499,24902,14354,15536,9938,17218,22004,31178,27007,27047,23230,25027,46120,40158,36827,34540,33954,35982,36714,52751,45981,47754,33347,25011,14475,12332,6828,3952,3558,4774,5960,7334,5423,4689,4292,4868,5355,5363,5718,5288,4602,5736,6978,6306,16949,17463,19303,25644,22559,21294,21298,15264,27124,26050,23488,22366,23858,21470,19048,17479,0,8,15,19,25,30,31,28,28,26,22,22,22,24,18,24,12,22,30,31,27,26,19,18,25,28,26,20,17,18,17,14,15,20,24,21,28,26,21,28,14,23,32,48,57,71,64,66,150,140,226,224,210,172,178,156,163,164,160,156,156,158,138,124,0,2,5,8,11,13,12,14,12,20,24,24,20,14,10,12,16,18,17,18,20,20,23,24,13,18,18,26,34,38,34,42,74,70,62,56,74,72,75,61,63,66,80,65,77,64,77,94,147,118,109,108,102,91,97,110,117,122,132,138,168,136,86,62,47 +36,34,25,18,12,17,19,23,7,17,25,26,44,45,44,53,19,99,209,217,291,500,606,510,2654,3532,5370,4570,4818,7995,11470,14387,9924,9295,12728,11524,10502,19072,30282,49765,41671,45696,41312,36398,57267,64504,68434,57043,30926,32159,25041,21958,27540,28692,21976,23642,32392,37713,35436,35336,54631,42740,36488,35250,28916,28823,26716,25542,22895,17040,14780,16057,9925,16142,29070,37041,33776,37514,31320,35504,33445,32404,30420,27534,26611,27528,36388,45607,42456,40481,32666,22451,15398,12349,5910,2846,2929,3672,3688,4798,3512,3143,3360,4064,4160,4805,4122,3673,3762,4244,4268,4648,14363,20531,19944,27699,17636,14535,16872,20303,21184,22628,18562,25639,17530,17652,21460,19114,0,8,16,22,25,23,26,34,28,25,20,26,30,23,23,24,14,23,28,26,24,19,18,16,20,19,18,20,11,14,15,17,10,17,22,26,20,28,26,23,10,20,29,45,82,96,82,81,155,151,183,196,161,165,168,177,236,255,212,193,175,158,181,143,0,2,5,8,11,11,11,13,12,18,22,20,17,17,11,12,12,16,18,22,28,34,32,29,18,20,26,30,29,33,29,42,46,42,37,47,69,72,56,41,48,60,58,69,60,74,74,111,179,130,97,105,80,99,108,114,88,93,140,180,172,160,112,78,65 +22,21,12,10,7,10,12,14,5,11,14,14,22,26,22,29,12,59,105,113,145,208,268,264,1508,3307,5128,5479,6081,7508,11476,13749,12162,12742,12326,9504,11011,22809,32863,45573,43638,42012,43065,39209,59317,63557,75436,67204,40460,34752,30491,27120,30634,26400,19980,21675,30922,32524,42878,33588,43918,46946,34100,36487,25167,26766,39266,36419,28031,26176,24759,16442,13366,19799,26768,34465,39818,42762,43348,45309,45134,42836,30944,26448,22577,22602,23882,32452,47848,36051,27116,14770,13330,9086,4658,2174,1733,1694,1999,1979,1847,1716,2173,2260,2177,2759,2544,2880,2820,2777,2712,3396,7768,15210,16201,18501,19286,17970,14918,17974,17133,20731,19222,19498,19331,24554,24501,27142,0,8,14,24,25,24,25,30,25,27,24,28,39,38,34,34,18,24,22,25,21,17,15,18,20,19,19,16,10,12,16,16,10,16,23,24,19,26,24,20,14,27,37,66,86,112,126,132,161,136,113,136,146,146,150,199,218,285,202,222,233,228,191,175,0,2,5,10,12,12,12,14,12,19,18,22,20,20,14,14,14,18,24,25,30,34,37,34,26,24,34,42,38,42,37,39,49,56,53,58,55,52,42,26,23,36,36,54,44,77,120,126,164,145,120,89,47,91,108,114,109,114,102,124,162,136,118,74,55 +0,4430,7954,12047,18674,18520,23746,22199,28745,36470,32272,31829,36166,42030,39609,28079,29518,23802,26665,22180,15992,10696,6308,3487,0,2301,5488,9770,15848,13525,16425,14155,18842,15932,12541,6966,4160,2642,1494,794,0,0,0,0,0,0,0,0,0,4968,10139,12260,15504,14100,17372,17462,21262,20246,14158,9404,8217,16680,33373,35758,29756,43014,57181,59020,67454,82882,95587,84888,99668,120119,103194,70857,62578,73028,78248,55223,52710,44564,53889,47594,40694,30537,17915,15318,16691,17756,19955,13244,12165,8112,6639,3050,0,2066,4166,6528,9539,16104,23578,36792,48932,40252,37793,40386,47686,61870,56228,46408,40588,42320,31512,28443,35179,35788,36015,35926,41179,44256,36817,33136,33084,33492,31032,27319,0,2,4,7,7,10,10,11,12,14,18,24,22,18,18,17,11,11,11,10,6,8,8,10,8,8,6,6,4,6,6,10,10,30,40,42,50,129,181,231,228,303,281,230,274,253,317,305,210,252,305,230,265,311,288,349,381,335,231,305,316,288,185,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,17,22,22,21,32,42,41,49,41,33,34,23,18,11,10,10,7,3,4,3,2,0,4,6,11,12,17,16,16,19,18,15,19,18,20,28,44,62 +4,4258,9126,11742,12968,16014,22104,24154,27146,30304,31482,35628,23040,32130,36657,28575,19367,17636,25607,21101,15274,11534,7050,4262,494,3450,7272,9708,18367,16691,15372,19014,11963,12348,10930,8368,7183,6437,5236,6128,3599,4213,4999,4902,4523,4174,3959,3416,3366,6186,9474,9599,16924,17100,20690,18524,20953,21110,19224,22422,14081,26978,28391,38626,23640,39354,38771,54901,56940,61610,68426,73776,72518,94362,76112,77193,80671,72394,80751,68121,53128,53944,55770,47518,51156,31462,20374,14264,19509,17022,22179,16802,13356,9606,7660,3193,0,4082,8526,10941,12214,23190,29314,38766,55150,52600,43285,42735,47752,54424,62919,55681,39069,34468,31092,35498,51089,41007,39412,40644,31615,40046,29462,32997,28827,31974,28886,27951,0,5,7,10,10,11,13,13,19,20,18,22,20,18,19,16,13,13,12,13,10,10,12,12,8,9,7,7,6,8,8,10,22,38,43,59,75,146,194,205,222,218,286,270,203,231,270,214,280,288,317,246,299,354,260,334,396,308,206,286,332,314,212,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,8,8,7,6,11,24,24,32,54,52,59,54,41,40,56,34,46,44,34,26,15,18,17,13,16,14,12,12,14,20,26,23,24,24,27,24,18,20,21,24,24,30,46,43,59 +6,3905,8036,11959,11689,18835,21198,25616,16579,20476,22144,31558,21424,29030,27122,25702,15074,20670,20807,17409,9572,9319,6696,7170,1226,6265,9276,11042,16281,21528,20394,20128,9647,8026,10134,7664,9912,9172,8269,10858,8212,9742,9078,10573,7713,7082,8408,7329,8020,9460,10400,8396,15599,13812,18364,15086,26849,24418,30192,31628,22612,27726,33858,41778,13987,27485,34206,59936,31266,29585,40076,52287,42632,55257,65460,64704,84170,62286,60924,62639,52185,53084,69094,68515,47151,38966,19846,14094,19262,18648,22792,18806,12845,9912,7401,3606,0,5833,10609,18834,20987,30256,35438,41170,65393,58921,47898,37788,42293,48269,65400,58255,38210,33859,43703,39056,50568,46114,33902,33983,36139,39184,29282,35687,27698,26504,23678,21425,0,5,7,9,9,10,12,12,21,26,23,22,18,15,14,10,11,12,12,14,9,10,11,14,7,7,6,7,6,8,8,10,36,48,58,82,99,164,180,242,182,206,223,227,178,154,148,123,290,323,288,260,382,386,337,339,355,338,239,225,344,252,180,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,20,22,14,13,13,12,18,29,44,46,88,72,88,72,40,48,46,44,64,64,42,42,16,20,21,22,23,22,22,24,26,36,38,36,29,32,36,35,21,24,23,34,26,35,47,52,70 +7,3324,8274,12576,12308,16004,21156,19838,11497,12154,14100,23462,28602,31166,23957,17797,15740,16084,14386,12406,8158,9152,10111,8270,2012,5340,9093,8846,14774,16374,16113,17041,7941,7680,6799,7646,9194,10016,10451,17102,11570,14614,12536,12832,11667,14174,13627,14070,11133,10792,11753,11436,14629,12914,12572,12500,35404,27170,39325,37696,34642,36854,39102,36586,10710,17897,23988,44230,35063,39102,38023,43063,30128,36942,44643,46182,63843,57770,81736,70392,71185,73692,73022,59516,53753,35264,17516,15702,30140,20593,21956,17426,14058,10290,6422,3328,0,6770,12482,25718,28410,30401,42214,59302,81441,53366,37380,48487,38586,57861,69482,54298,47672,43272,37562,40741,50609,42909,37032,35284,22192,23344,25243,30901,32103,30874,21242,18827,0,5,7,10,12,12,14,14,24,22,22,21,16,16,12,11,8,11,14,13,12,12,12,15,10,10,8,9,8,8,8,10,52,50,75,112,131,184,186,242,244,232,229,228,168,183,146,97,287,278,340,340,380,381,306,353,307,284,210,258,304,192,132,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,30,28,23,22,22,18,25,43,60,81,122,113,116,93,44,48,47,51,64,70,56,49,17,20,29,33,28,34,37,38,38,46,53,44,36,40,33,32,18,22,22,25,28,35,56,66,65 +7,3044,7053,11268,12948,17110,15715,17619,6433,10772,14270,23168,29926,24395,23143,17250,13251,14294,13424,10344,6562,6560,8764,7097,3599,5498,8600,8544,9674,10877,9573,12712,5722,6594,9862,11883,10049,14483,15180,17124,12407,12219,10101,13934,18316,20776,17794,15046,14412,16482,18845,16355,13533,12756,15553,13990,47808,42717,47405,39852,41694,43216,43541,43282,7994,15810,29826,36193,35852,40632,51774,38627,17085,25867,28748,43435,61583,46168,48733,53124,86847,75076,89074,67928,48802,41340,21563,14044,31895,29422,17490,13301,14678,8712,6661,3432,0,9942,18685,25934,30258,28088,35882,58485,71945,71550,66289,51978,48872,40221,42180,33524,44266,36911,42646,47315,41981,36478,30199,37881,13937,19162,21744,21972,27230,21212,18874,17176,0,2,5,8,10,13,12,13,18,13,11,12,12,10,7,7,6,10,11,10,10,13,12,15,8,10,7,8,8,10,7,8,50,47,61,93,132,119,117,161,241,243,186,200,238,219,130,114,217,286,353,410,368,474,496,536,383,391,284,264,210,139,103,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,47,41,36,34,31,28,28,40,68,75,95,117,123,101,74,37,29,31,49,60,64,63,71,17,23,30,32,34,46,47,45,54,48,41,39,51,44,45,32,16,19,22,27,30,44,45,50,52 +9,3540,5959,9335,10971,14552,14443,14735,13150,13531,16618,22468,33416,29882,27735,22911,13512,13545,14526,11745,10166,10474,9041,7177,5797,6655,9594,8530,8104,9610,7958,8899,7805,10106,10844,9165,8526,12912,12275,20254,21946,21682,20969,26908,26701,30930,25506,17968,18685,17103,18783,20944,17811,18007,15706,16512,55931,45064,39250,36460,30308,33986,41493,29014,6304,12642,23267,28220,31122,33360,32734,31179,16808,23807,32797,49263,44440,50747,50360,54288,81232,67675,70664,56260,49216,49101,25646,21227,24714,26206,20517,15227,16396,12888,5945,2912,0,9974,17284,23536,29459,31306,43072,53608,74515,61889,45973,45566,36773,32089,30245,34931,29884,31499,33910,32458,28742,26888,27639,33170,26442,20640,21227,25517,24961,21150,18209,20869,0,4,7,9,10,13,11,14,18,13,10,12,10,12,9,8,7,11,12,13,8,13,13,17,10,11,10,10,8,9,8,10,60,81,77,100,120,126,136,184,208,184,158,172,238,176,147,125,250,294,292,420,373,442,475,458,310,308,222,198,158,129,115,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,54,46,54,58,36,32,44,74,106,132,134,148,124,141,35,38,31,50,68,66,65,64,23,38,44,47,37,60,55,52,60,54,36,57,54,53,59,37,29,32,30,28,30,35,40,46,43 +11,2484,5979,9646,12464,9969,11034,10523,18246,17412,20109,32371,35110,28309,29488,26884,10324,9990,13256,17108,15542,14242,10208,8975,6408,7433,7739,6327,4302,5778,7597,8179,10686,9663,12702,11074,10890,11142,14687,17205,31309,28404,28372,39241,46396,38179,35846,23631,22020,26682,23766,22218,20976,19388,21468,22867,54590,43996,45815,43583,28629,34748,31431,29509,2940,7589,14332,17468,18308,25638,24542,19498,18290,25320,31244,38889,40281,34705,38087,56308,93289,91348,61996,46873,72004,61483,39534,26234,17622,19384,22302,16531,16207,13076,7668,3467,0,12920,22056,27837,40394,44624,44632,44134,58446,57434,41440,54802,40321,36263,27968,36552,30117,27526,26118,18816,18444,20640,26999,39012,30208,24457,21784,26646,25342,19790,18958,22704,0,4,6,8,6,10,10,10,12,12,9,12,9,10,11,12,7,8,10,12,7,13,15,17,11,14,12,10,6,7,7,8,55,81,97,121,103,87,109,185,129,115,118,130,188,144,132,118,266,268,368,472,374,452,382,372,272,207,177,137,147,107,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,70,83,67,91,77,57,49,57,118,148,150,148,159,154,165,32,35,40,52,86,84,90,79,36,47,46,58,48,46,62,56,49,43,40,55,74,81,64,39,33,35,34,27,30,35,38,30,26 +12,2146,4316,8697,8978,12108,15899,18434,19547,22300,21396,28470,34927,25016,28652,30314,16213,15979,16778,16332,16888,17018,15044,12069,8124,7544,6816,6374,4348,4636,4581,4824,13686,16928,14415,12292,8889,14097,21990,26141,26462,31843,31387,42063,56229,42100,24494,23156,31176,23942,20767,23389,30549,26232,26053,28938,53621,43806,30439,27766,24460,24460,22511,21991,1684,6166,11567,14479,14889,17282,23586,22132,24917,29726,34646,37836,45608,42591,36452,50888,89984,74712,73975,67847,68011,62754,41412,35035,20521,20318,19650,14218,16627,13670,9034,4482,0,10330,21824,25986,37790,37370,31699,28674,48919,34493,36088,44818,45024,40371,28543,31184,27248,23140,20867,16304,16694,17100,19286,28936,31055,24366,21321,20578,20196,19868,16344,24455,0,3,5,7,5,8,9,10,12,14,14,13,12,14,12,13,7,9,10,10,7,13,16,16,10,14,12,10,7,8,7,8,77,108,104,115,122,118,88,126,101,93,97,114,110,116,93,86,267,232,320,435,319,378,281,284,287,204,179,114,92,97,76,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,127,82,76,102,86,70,69,64,124,137,162,173,193,241,251,26,34,40,54,67,77,72,69,47,66,77,60,64,62,80,72,69,54,51,64,70,84,73,53,34,34,32,32,27,24,31,22,16 +9,1670,3051,6449,8361,11475,17481,21015,21621,19494,15113,21193,20654,17592,21046,23612,18868,18084,18653,13562,11008,14784,14857,10348,10668,8992,7046,6965,8092,6231,4850,3764,23297,24622,36102,38323,35496,37298,27965,24411,32928,33089,23799,23222,21167,19062,19399,23947,31795,41471,43936,49322,40865,47731,44427,48850,47138,40195,28600,27092,21436,20285,29216,29290,0,5955,12388,16590,17852,18768,19543,23136,29703,22956,18533,24218,25032,27658,30664,42954,68836,65740,67768,82674,70831,52135,42278,30036,26096,23750,23850,14703,12752,10258,5942,3555,0,991,1833,2393,3238,13051,20174,22398,31236,29161,27602,36586,37892,29073,21890,17239,15357,12940,14260,19212,20357,24102,25760,32928,29770,31134,35044,29140,29379,41398,41325,31130,0,4,6,7,7,9,11,10,9,12,12,12,12,13,15,17,4,5,4,5,5,7,7,8,10,11,8,8,9,10,8,7,87,116,132,147,141,106,103,82,82,78,81,82,73,88,90,72,203,190,156,149,97,141,171,152,206,168,199,181,132,109,120,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,154,203,193,179,140,135,113,57,83,116,163,176,227,217,268,29,34,27,33,46,47,32,53,55,61,52,48,33,36,44,49,82,72,82,70,52,48,52,48,42,37,27,34,36,24,19,12,0 +17,1698,3322,5474,9322,12668,15723,20796,20714,17722,15980,17350,15550,17234,21180,25849,16898,16264,16796,13770,9024,10980,13625,10433,6200,6216,6297,7240,7014,6572,7401,6000,29460,29346,35754,35928,36580,37028,25795,29087,27233,23604,18874,21562,22200,23263,18992,25957,33551,43537,42000,40383,51835,51176,46338,42090,47408,46410,37658,35985,33669,30849,31626,28396,4228,10062,12812,12662,15550,17154,22942,27240,29596,25764,21124,23311,23554,27214,38776,53348,58654,58916,73059,64556,48308,52614,40768,35936,26355,22892,18133,14190,11296,9382,6718,3692,0,731,1648,2312,2227,7949,16322,16563,29908,24682,27420,32602,46011,41868,20474,17498,12282,10620,8480,14577,15976,19226,21878,26266,21706,22450,24875,26054,33130,39694,31445,30967,0,4,7,9,10,10,12,12,8,10,13,13,12,16,17,18,6,8,8,10,8,11,10,15,12,14,10,12,12,11,11,9,90,104,92,108,128,101,78,80,81,72,64,70,46,68,80,74,180,176,149,120,86,122,162,196,177,162,188,162,154,154,104,96,2,2,2,1,0,0,0,0,0,6,10,15,20,28,36,39,148,152,179,136,130,116,122,91,42,87,105,136,142,203,240,286,30,38,37,51,43,51,52,72,39,56,68,58,32,45,68,67,72,82,96,84,50,58,72,52,42,44,44,42,36,30,21,14,0 +19,1802,4046,5807,7439,10047,12028,14598,16983,14588,14082,15565,8530,13073,22508,28018,13346,12196,16993,15174,9482,9680,11712,11473,4552,5028,4643,6519,6583,6081,8139,7530,34119,31818,24858,35910,41808,35502,36046,35943,18265,15172,17940,21923,29608,29964,22896,28003,42677,39839,47290,37490,54742,45262,50258,53738,43006,44464,43370,40478,38735,29652,27360,22938,7210,8539,13972,14038,15245,17810,21280,24734,23238,22958,20452,18272,23043,35183,45459,50325,44258,51653,56914,45788,37030,37131,41917,37238,32256,26790,18508,17764,10985,9643,6662,3587,0,611,1222,2533,1875,4830,7440,8821,20860,22452,22584,31980,41699,37717,27053,24202,8248,6311,6210,8516,8644,13297,17334,16412,23925,25075,22464,22379,25906,23030,30764,24717,0,2,5,7,8,8,8,12,7,10,10,12,9,17,18,20,6,8,10,14,11,12,12,14,14,15,13,12,10,12,10,10,88,84,89,104,78,68,81,62,65,55,53,65,32,53,66,54,112,115,146,113,77,115,172,210,146,109,116,100,138,127,114,117,3,4,3,2,1,0,0,0,0,8,16,26,44,54,76,98,138,146,108,102,75,90,102,68,38,54,92,142,130,185,302,337,32,37,55,75,41,54,62,98,33,46,62,56,37,65,76,80,88,85,81,92,58,54,68,55,55,58,50,47,45,31,28,15,0 +32,1759,3038,6577,7793,9489,9096,14220,12516,12059,10053,11958,7601,12370,13489,21980,11086,11652,14758,13833,13327,12428,8818,8701,4108,4715,4809,8260,7478,6590,7630,6862,25210,25635,31597,31011,37786,34110,40992,31320,19520,16150,19832,22276,25313,26485,22791,24520,36056,39574,49719,45890,43216,44981,46808,54265,53938,51303,62568,43683,42316,46390,35943,34448,10660,11556,11362,12000,10685,13188,13794,15024,20402,20514,24836,21834,24357,38014,49988,65973,39503,41954,40263,34866,23304,28131,26941,29020,29140,21408,13601,15490,10940,8931,5486,2454,0,614,1048,2096,2254,4050,6280,6674,23192,27590,28245,27868,31255,23142,17590,17734,5191,4823,4809,6340,5394,8713,11620,12270,18329,17974,17034,18758,20945,21697,20380,22582,0,2,5,7,7,9,10,12,8,10,10,12,10,16,16,21,8,12,11,16,17,16,16,16,16,16,13,13,10,12,10,10,99,106,110,78,82,72,76,58,66,56,54,41,20,40,48,46,67,82,99,102,79,106,153,168,99,93,90,84,100,80,90,85,5,6,5,4,2,1,0,0,0,15,20,38,61,75,107,106,103,85,76,80,75,78,86,60,42,72,119,144,136,193,245,262,28,48,58,54,53,72,84,102,32,47,50,46,45,64,92,71,76,92,78,105,83,84,101,77,40,48,50,46,46,30,29,12,0 +36,1912,4527,5634,9329,10623,14123,15695,14296,14807,12322,9838,6418,11930,15027,21538,9073,9745,12360,14856,15126,13482,8608,8938,3333,5049,7114,6971,8038,9878,11092,10586,28258,21798,19532,20371,26996,28934,31364,35473,16974,17101,22153,26128,25041,19700,16300,23867,42868,43555,39681,35463,47608,52926,51402,56336,67208,64551,69184,54344,38420,33258,30505,35156,13633,10664,10937,9928,9044,7159,6125,7830,11548,12512,18247,22668,21730,38881,43639,56866,28335,24316,18289,16331,18560,16169,18908,18886,23518,23393,17511,13010,8485,5825,5073,2733,0,710,1256,2055,2186,3342,4384,4004,22924,22816,22351,21318,23792,23922,18194,15401,3384,2826,2372,2805,2556,3187,4716,5538,15193,21086,20371,22594,18952,16945,22736,28441,0,2,3,5,4,6,6,7,7,8,7,9,11,13,11,14,9,14,16,17,17,15,16,19,16,15,12,11,10,11,8,7,144,128,77,64,58,57,70,72,56,36,23,16,14,24,30,46,50,72,71,78,85,108,136,124,65,86,92,74,68,59,50,45,4,5,4,4,2,2,1,0,0,23,52,58,74,99,104,130,55,46,46,61,56,60,58,39,63,107,128,151,124,243,314,364,23,28,31,56,72,94,122,106,42,50,42,55,71,74,75,60,89,80,71,82,109,129,122,98,42,42,39,44,40,33,18,9,0 +27,1833,3322,4772,6776,7748,8286,10431,12859,12583,11082,8312,7012,10121,12501,18116,6846,10004,11609,13722,12452,12658,11812,10849,7402,6704,7409,6302,9600,10293,10954,9655,22450,23430,24193,26230,19049,20276,24993,29380,15012,14140,15895,21671,24045,23216,18860,26341,31324,34507,37816,43768,42676,45253,47887,58338,67736,67368,85381,78855,69250,46608,37301,33322,22239,15251,17819,14701,17753,14542,14539,12084,12700,14854,17966,23274,25354,37224,45257,40800,34466,30374,24548,22118,17420,18127,19504,18674,22868,16078,14034,12970,7509,4660,3538,2073,0,584,1097,1669,1993,2833,3656,3244,14208,16364,16456,17669,17523,20014,14140,9819,2791,2278,1585,2065,1782,2762,3069,4304,14050,15032,14970,15234,12155,13264,18326,17942,0,2,4,5,5,7,7,8,7,10,10,12,12,13,13,16,8,16,19,16,20,19,18,20,13,13,10,11,8,10,8,7,169,119,92,77,54,60,53,54,53,35,20,20,12,21,27,40,35,49,54,50,75,78,81,92,50,53,58,62,45,42,48,40,6,7,6,6,4,4,2,1,0,32,66,92,97,106,126,142,98,78,90,108,80,66,54,45,53,88,118,135,142,206,262,283,17,24,34,54,78,82,110,104,60,63,58,74,86,86,70,76,64,63,62,82,92,104,110,90,37,50,48,48,40,33,18,8,0 +26,1596,2953,3941,5085,5300,6572,7469,9292,7426,8863,8117,6426,8932,12024,13080,6497,8496,12068,13845,13037,11930,11246,9959,10406,9682,8734,6533,8923,8370,7378,6659,25316,22372,23610,24028,19573,20785,21938,14818,18232,16362,16178,23671,21032,19675,18870,21508,29817,32160,39199,47423,51355,43708,56830,57990,68255,83983,109258,114456,95316,54497,33486,28860,28014,25220,20670,22373,28767,23248,23147,16976,13442,17400,17803,20728,21000,32762,35754,42402,40108,40347,28530,27819,15330,13426,14649,16554,15927,15816,15432,12157,4173,4016,2972,1477,0,412,857,991,1242,1506,2461,1932,8480,11455,12288,14905,16706,11979,9345,6751,3354,2786,1546,1947,1081,1845,2932,2515,10224,11565,12404,9114,6916,6518,8654,9129,0,2,3,4,3,5,5,7,4,7,8,8,9,12,11,16,8,12,17,22,17,15,14,13,13,12,8,8,6,7,6,5,147,104,79,58,59,60,42,34,31,25,20,22,9,19,22,20,19,24,26,23,47,50,56,62,21,28,34,29,34,32,30,23,6,7,6,6,4,5,3,2,0,28,63,86,98,130,141,174,126,144,120,143,90,75,58,62,50,86,111,106,119,147,212,222,9,18,32,55,69,86,108,88,78,72,58,75,95,90,80,75,55,53,54,51,71,66,74,80,45,55,46,45,35,29,16,10,0 +31,1370,2568,4938,4710,6326,7274,7714,7596,7876,6567,5808,5702,6572,9393,9739,7960,8692,10601,11472,11734,12078,15795,16626,9858,10636,8881,9216,7348,9112,10071,9900,17583,20364,22571,20098,14173,17520,20412,18670,15440,17445,13681,18976,19265,21274,21795,27942,33878,33898,34941,46778,56494,49965,62765,61508,87556,102636,107804,110368,91672,76214,35134,33892,33981,26218,20606,32204,35888,31858,26356,20512,14068,13908,16367,17726,21050,24803,24526,32120,37978,28704,25960,26245,17056,17383,16345,15114,11804,11849,10690,7204,3882,3147,2571,1233,0,190,446,591,681,997,1214,1240,4541,4920,7472,8180,9029,6876,6139,4420,2208,1690,1218,1148,662,1021,1728,1272,4526,5596,7818,5416,4430,5178,5397,5598,0,1,2,2,2,2,2,4,2,5,7,8,8,12,11,14,9,14,19,20,22,22,20,18,11,11,8,7,5,6,5,5,104,78,77,60,59,44,37,36,31,29,20,22,10,16,17,15,12,14,16,14,27,28,30,30,10,16,16,15,20,19,16,14,5,7,7,7,5,6,4,2,0,34,69,100,101,134,122,149,155,156,140,152,108,95,63,64,52,68,96,86,72,106,188,164,5,15,25,47,61,80,112,88,69,61,63,80,85,96,103,87,60,60,50,59,64,64,65,60,52,50,38,36,23,22,17,9,0 +36,814,1541,2850,3939,6095,6628,7094,8655,8181,9443,8638,6060,6508,6795,7876,8902,10038,12063,11830,8901,10351,10586,8133,6512,9171,13026,15190,12517,13485,11201,11096,14482,27683,47369,56430,59161,48273,52450,62612,54411,43558,36133,51357,51319,41031,32268,29016,33622,41536,40703,27796,26414,18821,13318,7855,0,1924,3956,9010,11888,15606,19858,26734,38534,38396,42325,40399,27362,31165,24746,22055,16287,16580,17576,15931,12306,19543,22845,28004,29356,31189,27991,18254,12108,18260,19442,16026,17203,17566,21100,17583,13408,11269,8280,3400,0,130,305,423,457,498,687,984,1193,1384,1903,1873,1624,1496,1202,1478,1482,1534,1238,849,464,297,183,78,0,526,976,1231,1433,1414,1861,2019,0,0,1,2,2,4,4,5,5,7,8,11,14,12,11,10,10,12,15,17,12,12,13,12,11,12,14,12,9,7,4,2,72,86,83,86,83,66,47,58,54,56,49,48,41,41,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,23,34,33,106,143,172,171,177,160,176,260,243,208,168,152,173,259,244,218,195,220,191,188,256,269,210,234,224,147,176,0,14,25,40,50,71,82,92,82,75,71,76,95,100,102,85,66,88,110,139,122,120,135,101,76,53,51,39,20,14,10,6,0 +50,864,1879,2652,3663,4920,6048,6860,9489,9136,8744,7746,4377,6046,5837,7767,6966,9379,11405,8353,6638,8902,7318,6612,5711,6824,8628,10975,11264,10560,8841,7990,17607,27683,47876,46531,44946,45765,46663,49396,49486,44772,44736,46731,36296,36166,43494,46608,34215,34634,33958,30504,23583,17315,11513,6505,112,1606,2949,7283,11572,13604,18657,23350,39540,40240,40314,31447,25390,20121,25463,19363,16207,13088,17821,13496,10902,13405,16470,20692,25536,23182,22221,15931,12020,14110,12782,15966,12966,18580,19810,14649,10105,8760,7002,3274,37,144,261,350,501,590,644,916,1164,1406,1828,2183,1680,1880,1319,1812,1604,1503,1909,1340,869,538,256,107,7,476,712,1033,1233,1544,1814,2004,0,1,2,3,2,5,5,7,7,9,8,11,16,16,10,12,9,13,17,16,10,14,12,12,14,14,14,12,8,8,6,6,48,56,65,74,74,63,52,53,36,45,56,52,61,43,40,27,14,10,10,8,7,8,7,8,14,14,8,8,8,9,7,5,7,16,26,30,26,76,91,134,153,222,223,272,306,292,249,211,121,150,214,244,207,187,138,141,140,172,249,200,262,230,180,234,17,34,51,55,40,50,76,83,78,62,67,76,86,98,96,97,52,70,105,117,136,134,155,130,108,80,70,54,23,20,14,8,0 +59,855,1670,2350,2468,4068,5098,4914,9467,8975,7540,7492,3708,5552,7076,7496,5595,6720,8590,7772,5236,5978,4968,5477,5659,7032,6718,6618,8460,8840,9861,10887,19871,33249,36716,35316,36456,38764,38938,39892,64394,58267,48084,46456,35936,41099,42046,48516,51176,54267,42277,27290,18978,13995,6255,3758,199,1300,2915,5624,9178,13289,17529,19342,37981,35385,31790,34792,17675,16253,21487,15670,12382,13130,12682,14044,8871,9591,9418,12845,33965,22694,18840,11932,16842,14920,11644,12466,13427,15255,14661,9278,8884,7854,5301,2280,89,212,266,348,401,587,648,834,851,1117,1578,1520,1670,1702,2056,1732,2348,2443,2054,1282,988,732,398,224,13,317,738,739,1439,1520,1880,1868,0,2,3,4,3,5,4,6,7,7,6,8,12,13,10,10,8,10,13,12,7,8,10,9,13,12,11,9,7,7,6,7,34,44,46,50,72,59,56,61,31,38,52,45,66,62,48,55,23,21,15,12,12,14,13,12,23,24,17,15,16,17,11,10,8,13,20,28,28,40,66,99,207,248,318,305,263,265,244,223,96,131,166,170,131,125,120,114,157,168,160,173,230,203,212,196,32,46,62,79,44,57,74,86,58,54,62,73,81,110,114,166,55,58,79,71,138,158,156,142,103,95,66,46,32,26,13,7,0 +69,867,1801,2204,2908,3202,3165,3969,6208,8488,6448,5524,3352,4522,5077,6168,4440,4462,5897,5912,5262,4745,5812,4822,6090,6660,7049,6834,7774,8722,9648,8042,15860,25840,40710,39956,36513,33642,36972,31705,61606,62748,51150,48520,46369,41404,35300,42074,44326,34336,37030,20987,16036,10507,7278,3694,300,1904,2512,5370,9973,11112,14293,14376,41796,37114,28358,29050,16826,16652,21370,15941,11039,9321,10135,11219,7889,8185,9210,9632,31598,23636,13550,12314,17742,14859,12556,10486,19190,16457,18382,12420,10698,8388,5847,2730,145,234,258,394,477,744,1073,1302,751,791,1300,1476,1748,1742,1528,1658,1954,2218,2422,1508,1098,754,565,264,18,286,703,749,1156,1631,1283,1418,0,2,4,5,4,6,5,6,7,8,7,9,9,11,9,10,10,12,14,12,7,9,10,12,10,12,10,10,7,8,7,10,35,44,40,46,59,66,46,48,39,47,61,58,76,68,52,63,37,36,26,28,15,18,20,17,34,32,32,28,21,21,15,14,8,14,20,26,31,46,75,84,208,278,308,342,346,296,236,168,107,132,124,156,142,125,111,110,127,112,144,136,179,158,171,182,63,59,82,79,63,64,74,70,84,74,72,88,67,82,128,172,57,73,77,92,133,133,112,161,98,84,70,52,39,32,22,10,0 +69,691,1120,1687,2382,2662,3452,3061,5269,5302,3687,4370,4328,4086,5377,5888,3022,3322,3239,3918,3860,3973,5258,6130,5771,4826,5245,6562,6494,5966,6043,6256,14243,25828,36796,33073,43526,30511,16187,10491,54743,58505,67549,62595,43533,43286,37902,25414,39884,31980,19331,16952,14152,10513,10119,6166,524,3306,5439,6828,7471,8570,7554,9810,32902,40431,35065,24795,19048,16095,7904,8378,6786,7433,10925,9609,10197,9534,7378,7516,23429,20288,18936,18328,14818,13275,9135,7138,20913,15676,10870,8288,9253,7309,4815,2594,218,270,365,535,566,672,709,981,402,766,892,1045,1710,2357,2317,1722,2432,2212,1622,1603,1296,786,627,281,24,404,702,774,984,1095,1024,738,0,2,3,4,3,5,4,5,5,7,6,7,6,8,8,8,11,13,11,10,6,8,9,9,7,7,6,7,6,10,11,11,34,45,53,60,50,47,32,42,42,39,49,60,68,69,60,71,45,49,43,29,19,22,20,19,38,48,43,29,26,29,23,19,8,19,23,24,34,53,59,81,172,248,251,307,318,297,220,258,136,143,152,140,144,135,83,106,74,70,72,88,98,201,271,288,81,90,102,96,78,68,46,45,105,110,120,101,68,93,105,183,58,71,104,106,150,151,217,193,87,60,56,57,46,36,18,11,0 +87,690,1356,1932,2818,3364,3225,2620,4415,4466,4282,4554,4629,4662,4755,4977,2280,2550,2526,3399,2828,3244,4385,4403,4139,3992,4532,4737,4386,4401,5094,6210,11071,17776,31326,35566,31050,28571,21142,16772,48199,51654,45992,41421,33762,33332,37902,25544,36156,25261,15412,14687,11438,8763,9721,5374,773,2442,4724,5168,4985,6836,6550,9192,46983,42396,34016,26090,28947,19610,15061,10506,7712,10167,12882,10458,12019,10211,8126,7566,23059,23632,14746,16758,13567,11861,9845,10068,17436,12112,13043,9046,7628,6283,3840,1991,276,306,356,412,393,525,614,784,468,574,840,1278,1472,1710,2056,1476,1780,1806,1706,1494,1169,973,635,320,73,413,702,908,992,1007,974,793,0,2,4,5,4,6,5,6,5,8,7,9,7,10,8,10,8,12,10,9,6,8,8,8,7,9,8,12,8,12,12,14,49,58,70,91,75,62,44,64,78,78,72,84,66,73,68,77,60,72,64,40,30,30,34,32,38,46,48,45,44,38,28,20,8,19,21,26,46,52,53,75,155,218,201,267,251,286,203,185,137,136,158,135,151,129,118,103,84,68,87,94,133,206,275,294,109,109,114,93,130,98,74,72,111,136,150,110,127,116,167,178,74,112,122,134,123,169,239,229,108,93,74,54,46,34,16,10,0 +84,634,1306,2275,3459,2928,2936,3325,4682,4879,4156,3884,6203,5520,5754,5038,1723,1449,1726,2038,2045,2771,2813,3696,2856,2577,2952,2807,4102,4050,4514,4569,10690,14710,22340,29596,33414,30579,31417,28868,47739,31567,30570,33226,28301,25224,25503,25498,22610,19628,11615,11296,10264,9648,6190,3507,789,1890,2597,3235,3801,4603,5872,5857,51811,51014,38532,39194,31220,29222,17985,14171,10350,12625,12178,14213,11996,10859,8216,7247,22853,16856,15868,13146,16460,12553,12067,11348,16981,11844,10978,9094,7981,5305,2610,1440,325,342,318,300,206,372,450,820,403,643,688,1156,851,1032,1243,1251,1564,1575,1508,1532,1492,1083,721,462,108,290,612,706,833,766,611,690,0,2,3,4,3,5,5,5,4,7,7,10,6,7,7,10,6,8,8,7,4,6,6,7,6,8,8,12,9,12,12,12,55,77,93,112,99,80,64,82,119,116,101,90,69,73,64,82,92,89,76,58,40,50,43,49,52,58,53,49,51,38,33,22,9,18,26,26,43,41,50,64,181,202,220,214,269,194,212,184,173,169,138,126,147,146,116,80,87,82,97,92,171,195,238,251,126,145,132,144,137,134,108,106,164,148,146,131,150,151,183,155,106,144,159,164,138,197,190,155,130,92,67,51,38,34,18,9,0 +76,774,1762,2620,2816,2806,3198,3198,4772,5080,4746,6018,8082,6212,4973,4210,996,884,907,1347,1469,2039,1911,2165,2007,2342,3188,3080,3361,3872,4526,3800,7072,12803,19044,25192,25688,28560,28617,25468,43306,37610,28953,27950,28067,28256,29100,27498,17672,17788,10638,7220,6075,6517,5170,2790,821,1114,1726,1906,1761,2761,2722,3468,49185,46877,43723,41580,33221,23708,21408,17045,11052,14334,16762,18576,17671,13608,10972,8811,17055,18110,16527,14168,17609,14868,17028,14876,11714,11555,7860,5332,4268,3208,1906,838,346,242,281,250,179,298,294,536,411,591,752,896,892,747,1073,1160,1620,1489,1539,1630,1651,1022,840,446,132,338,464,619,595,713,671,768,0,1,2,3,2,5,5,6,5,7,8,10,7,8,7,9,5,7,7,6,4,5,5,5,4,6,7,11,9,12,11,13,78,111,104,130,132,111,93,105,160,142,141,130,98,100,103,124,120,132,112,71,67,44,47,48,65,72,72,69,64,52,37,28,12,24,25,28,40,44,42,62,141,184,158,206,230,174,158,136,150,156,129,146,108,126,106,84,56,91,122,152,204,257,259,284,109,120,127,116,158,148,152,150,185,142,149,162,218,224,183,170,192,182,219,162,115,164,140,142,176,110,77,57,31,30,22,12,0 +50,419,883,1422,2333,2439,3240,3943,3758,5620,6807,7341,6864,5188,3695,4268,0,90,199,339,450,707,838,1172,1202,1186,1721,3346,3860,3529,4958,4714,6509,11333,14262,20582,20539,21294,21044,27672,33342,41632,48194,53366,41467,38277,23355,24244,15535,13144,11624,11534,14197,9305,7231,3591,798,757,694,496,436,370,185,98,41521,33975,35587,34831,22682,19724,21297,16501,10595,9026,8805,6288,2869,5832,11094,12669,14414,10792,8036,5755,5192,5901,8375,11419,11623,9283,5879,4871,2299,1538,921,526,300,401,567,617,615,520,455,424,548,678,733,673,876,908,800,828,1782,1732,2003,1954,1362,1070,721,354,156,253,275,470,660,595,407,531,0,2,3,5,4,6,6,5,3,5,4,5,5,7,7,7,3,4,3,2,2,2,1,0,0,2,4,7,9,10,10,13,129,133,93,95,95,154,179,166,182,182,132,158,249,177,120,123,129,96,71,66,48,45,43,56,56,43,33,37,34,27,19,24,16,38,65,62,80,69,58,64,86,130,150,216,226,204,274,215,128,123,99,142,136,99,96,62,50,89,102,202,239,196,220,248,106,153,163,175,169,181,179,179,148,114,98,120,123,135,150,151,291,252,199,216,224,235,183,160,173,135,116,124,121,92,64,28,0 +53,480,1000,1318,1844,2339,3687,4108,2900,4020,4674,4911,6303,5186,4291,4876,0,100,178,284,368,682,704,1059,968,1388,1718,2422,2948,2564,3578,3298,6289,9408,12016,12747,20181,20054,19928,19612,32790,38550,30088,35169,31332,28172,16756,19576,13498,13790,10312,10732,9500,7980,5180,2814,669,570,498,396,338,246,151,86,41639,34244,38190,31064,25599,20182,18088,13426,7124,7908,7716,4716,3068,4652,9626,12255,11742,11214,7131,6714,7204,8435,8348,8452,11071,7677,5442,3535,2366,1245,894,417,278,414,424,569,564,495,443,456,532,780,827,760,650,629,667,620,1406,1486,1470,1452,1028,836,762,432,197,203,253,396,390,464,465,472,0,2,5,6,6,7,7,7,5,6,5,7,7,9,8,8,5,6,5,6,6,7,5,6,5,7,7,8,13,15,16,14,95,114,82,94,101,108,136,129,219,178,179,188,230,164,120,138,141,106,66,62,55,60,72,60,77,66,39,46,46,44,30,28,15,32,46,74,68,74,57,67,84,115,176,212,233,268,220,180,115,102,80,114,113,75,64,44,40,88,92,150,199,198,193,230,102,144,115,155,166,143,171,144,176,134,118,106,118,163,198,178,282,236,173,170,247,226,146,139,157,140,149,138,135,98,54,28,4 +58,644,1017,1498,1822,2734,2953,3508,1559,2158,3756,3604,5464,5572,3952,4466,0,113,198,370,385,658,879,998,702,1172,1738,1940,1890,2683,2639,2288,4299,6217,6403,7870,13912,12637,12176,19427,32918,31748,25445,27144,24608,17119,17930,18668,13068,12760,11717,9763,9022,7616,5608,2808,631,529,327,359,205,147,128,109,44831,36320,32953,28373,23176,14138,11788,8933,5960,6020,6675,4436,3412,5662,8089,11109,14029,11904,9196,7438,6822,8053,6611,7255,7146,6954,4611,3108,2122,1291,736,345,300,433,428,522,460,500,443,308,606,548,669,567,543,669,628,512,1578,1857,1653,1454,714,779,599,388,176,189,157,240,303,375,406,477,0,2,4,5,6,7,7,7,4,5,4,6,6,7,7,7,6,7,6,8,8,8,8,10,8,8,9,10,13,17,16,15,62,70,72,88,76,86,84,73,220,200,180,214,168,146,126,122,109,78,70,67,70,67,77,87,92,89,60,77,61,55,46,30,17,27,30,44,61,50,60,92,90,102,153,166,203,168,196,163,70,100,96,142,93,82,47,43,47,76,118,119,109,164,168,188,111,124,104,88,117,135,110,108,146,145,102,105,156,171,186,182,199,181,130,128,227,149,140,162,145,134,135,129,126,111,61,41,6 +60,582,1028,1482,1352,2019,1963,3142,1076,1852,2666,2194,3951,4045,3036,3892,0,129,258,374,509,710,1057,1063,512,864,1086,1418,1531,1545,1868,1576,2726,4572,5050,5570,11028,10500,9404,13522,24504,23349,16749,17640,23816,17768,16815,12606,9510,9632,10311,8196,6206,5115,3862,2442,318,320,218,220,151,134,106,105,46220,38396,29985,28362,17037,11270,9980,7408,5127,5707,5224,4012,4740,4962,7605,10192,7915,8218,8186,6754,7547,7632,8450,9248,6282,5272,4998,2918,2036,1264,1014,498,360,516,624,514,650,575,441,346,508,522,496,501,762,786,790,544,1830,2041,1462,1370,754,692,644,414,158,172,124,210,283,292,333,353,0,2,5,6,5,7,7,7,5,6,5,7,6,7,7,7,6,7,7,10,9,12,12,14,12,10,12,14,17,16,15,17,44,64,61,85,58,84,84,84,189,188,135,150,125,128,100,118,106,76,59,76,98,80,68,83,104,103,76,88,61,70,58,38,14,22,22,36,51,42,48,66,106,120,123,147,139,123,124,130,64,94,107,112,84,70,62,47,43,64,78,101,97,132,156,247,149,128,111,94,101,78,71,94,104,98,82,121,172,148,177,205,261,274,229,182,246,180,170,150,139,124,104,106,120,88,47,29,7 +81,449,691,1114,1494,1519,1817,2536,520,902,1121,1126,1484,1688,2433,2787,0,206,354,422,586,644,840,1142,418,424,577,717,852,540,403,396,1961,3343,5192,6268,8167,8982,11958,14298,14579,13482,12916,11943,15212,15215,15019,13713,9526,8228,5640,4573,2842,2321,1227,1055,125,104,80,99,107,84,68,99,34774,33342,25382,18353,14566,12402,7139,7426,5372,6740,5922,5502,4562,6364,8215,8802,5689,6176,5136,5630,8220,9763,8347,9265,6230,5179,4259,3027,1472,1311,990,542,461,380,360,538,646,610,511,281,611,770,786,927,901,601,452,533,1852,1468,931,1000,832,726,649,379,104,109,128,167,210,271,422,484,0,2,3,4,3,5,4,5,4,6,6,6,4,6,6,6,4,6,6,10,10,12,11,12,12,11,10,12,14,17,17,13,42,62,64,65,58,66,85,74,158,107,100,126,123,119,130,98,66,86,90,104,100,89,92,96,103,102,122,86,88,89,60,36,9,17,24,32,30,36,31,39,94,120,107,96,110,100,124,133,85,101,126,122,108,110,92,60,35,49,72,92,104,181,268,335,156,168,127,86,54,69,78,74,71,114,128,144,168,271,339,349,293,212,213,240,192,193,177,126,123,138,140,131,78,58,39,22,7 +74,320,550,866,1201,1158,1468,1430,477,772,788,984,1174,1366,1636,2608,0,156,248,317,488,552,666,874,262,354,442,484,654,402,288,391,1401,3312,4773,6044,6070,8194,9602,9268,9341,9312,8354,8836,11144,12592,10554,8989,7076,4946,4274,3538,2062,1527,1111,883,180,148,96,117,128,138,128,135,27114,20765,22037,18278,11742,7497,6483,5940,3985,4851,5832,4649,3690,6063,7730,6968,4852,4769,4278,5256,6084,8079,6528,6776,4987,3875,3644,2468,1030,1050,862,568,422,486,395,452,445,576,493,327,576,670,664,816,824,498,347,458,1503,1204,622,742,642,592,416,312,101,91,116,171,188,230,332,363,0,2,4,5,4,6,5,6,5,7,6,7,5,7,6,7,5,7,8,12,10,14,12,14,16,16,14,16,12,16,16,20,37,59,67,56,71,74,69,92,171,136,98,134,143,124,112,96,74,84,108,122,82,111,98,100,122,119,82,88,86,60,56,36,17,22,32,36,29,38,37,52,79,78,72,80,78,86,82,111,86,74,101,87,92,86,66,55,33,54,67,86,98,146,199,244,113,96,116,74,36,46,61,67,50,78,94,124,160,264,346,328,239,233,216,232,200,178,187,138,102,106,98,99,85,74,45,30,16 +73,231,334,401,864,876,942,812,362,575,696,648,972,1080,1262,1470,0,64,126,195,271,392,614,666,221,233,317,405,453,422,292,346,1528,2265,3180,3693,5053,6527,7116,6207,5629,5081,5758,8339,7932,8737,7896,6727,3798,3274,2786,1970,1523,1292,822,582,214,152,156,202,193,199,158,142,14505,14146,11480,10120,5549,4701,4009,3910,3555,3879,3854,3378,3294,5054,5210,4148,2927,3694,3279,3420,5281,4062,3896,3547,2181,1872,1862,1360,878,918,707,396,359,440,422,567,412,326,358,291,624,682,740,647,640,486,370,425,946,684,529,486,545,436,385,317,94,115,98,106,147,225,282,286,0,2,3,4,3,5,4,5,3,5,4,5,3,5,4,5,3,7,8,10,9,12,12,12,18,17,14,16,12,14,18,20,36,44,47,53,60,55,62,87,164,140,106,128,184,150,120,87,77,88,120,124,101,132,133,130,112,101,75,83,72,57,46,32,22,31,36,38,32,42,42,57,48,46,56,45,74,76,72,60,59,65,63,73,52,54,48,33,34,46,70,77,97,113,154,159,116,87,76,63,27,40,50,44,24,44,62,94,162,173,236,350,194,175,208,198,213,174,150,92,92,105,86,74,74,64,63,43,28 +66,126,213,262,512,480,560,488,217,286,326,352,504,570,514,877,0,32,70,109,150,204,323,402,172,220,341,374,414,374,286,276,1011,1550,1813,2160,2130,2618,4111,3870,2476,2474,2772,4582,4733,4306,4143,3396,2181,1682,1178,1066,938,702,397,356,224,196,191,252,272,249,233,188,7907,6752,6402,5690,2836,2720,2329,2082,2090,1998,1791,1708,1605,2648,2994,2272,1734,1845,1874,1532,2607,2060,1708,1978,1138,1012,1131,698,538,550,416,284,337,340,373,428,453,317,345,356,541,614,517,662,736,530,408,386,778,502,316,375,382,324,286,242,88,94,85,105,105,144,128,114,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,8,10,10,15,16,16,18,20,22,22,17,20,21,24,37,34,34,42,52,70,80,90,161,120,99,132,190,156,102,102,101,114,136,116,101,127,108,104,159,105,68,67,49,49,53,41,29,34,30,34,25,38,40,48,38,41,51,46,39,46,40,32,28,38,33,39,27,29,30,26,25,40,50,76,99,104,103,112,87,76,47,46,21,25,28,24,12,26,53,74,124,156,201,258,249,186,198,189,176,140,126,74,63,70,65,56,59,56,50,47,40 +44,36,37,30,13,14,12,10,7,8,8,7,5,5,3,2,0,8,15,24,30,95,138,200,198,233,275,322,264,217,189,241,300,353,298,225,231,203,177,88,26,27,23,24,17,15,11,7,0,44,79,147,183,147,150,202,249,230,226,270,297,312,280,245,222,287,286,216,217,218,243,231,225,201,244,263,204,159,107,78,53,60,57,50,37,33,21,12,0,16,30,46,47,130,187,178,249,222,205,310,361,294,284,379,578,506,402,565,650,452,340,338,357,255,176,162,150,133,132,138,123,85,69,59,40,35,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,11,12,14,18,16,16,17,22,22,17,20,24,28,32,33,30,40,36,72,84,93,103,114,102,125,171,160,126,116,110,114,120,110,97,106,86,109,156,110,61,42,39,42,41,41,31,28,34,27,17,30,33,35,38,29,31,23,18,15,11,7,0,2,4,6,6,12,15,17,18,25,34,48,71,75,77,98,93,57,35,26,11,8,6,4,0,15,29,57,84,98,117,220,258,250,187,186,132,99,66,40,17,26,26,36,34,44,56,43,46 diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/worlds/diamond_world.csv b/worlds/diamond_world.csv index c978edb..367aea9 100644 --- a/worlds/diamond_world.csv +++ b/worlds/diamond_world.csv @@ -1,1025 +1,1025 @@ -50,25,25,17,25,15,18,15,26,14,15,11,16,10,14,13,23,12,12,8,12,7,9,9,16,9,10,9,15,10,15,15,28,14,14,10,14,9,11,9,16,9,9,7,11,8,11,10,19,10,11,8,13,8,11,10,17,10,12,10,17,11,16,16,31,16,16,11,16,9,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,4,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-18,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-11,-17,-17,-36,-18,-18,-12,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-17,-12,-21,-12,-16,-15,-30,-16,-19,-16,-30,-20,-30,-29,-59,-29,-29,-19,-29,-16,-19,-16,-29,-15,-17,-12,-21,-13,-19,-18,-37,-18,-19,-13,-21,-12,-16,-14,-28,-15,-17,-13,-24,-16,-24,-23,-47,-23,-24,-16,-26,-14,-18,-15,-28,-15,-17,-13,-24,-15,-22,-22,-44,-22,-24,-17,-27,-16,-22,-20,-40,-22,-26,-21,-39,-26,-40,-40,-82,-40,-40,-26,-40,-22,-26,-21,-39,-20,-22,-16,-26,-15,-21,-19,-37,-18,-18,-12,-20,-11,-15,-13,-26,-14,-16,-13,-23,-14,-21,-21,-42,-21,-22,-15,-23,-13,-16,-14,-28,-14,-16,-12,-20,-12,-18,-17,-35,-18,-19,-13,-22,-13,-17,-15,-30,-16,-20,-16,-29,-19,-28,-27,-54,-27,-27,-18,-28,-16,-20,-17,-31,-16,-18,-13,-22,-13,-19,-17,-34,-17,-18,-13,-21,-12,-17,-16,-31,-16,-19,-15,-27,-17,-26,-26,-53,-26,-27,-19,-30,-17,-22,-19,-36,-19,-23,-18,-33,-21,-31,-31,-62,-32,-34,-25,-42,-25,-35,-33,-64,-35,-43,-35,-64,-42,-64,-64,-129,-64,-64,-42,-64,-36,-44,-37,-67,-34,-37,-27,-45,-27,-36,-33,-65,-32,-33,-22,-35,-20,-25,-22,-43,-22,-25,-20,-35,-22,-33,-32,-65,-32,-33,-22,-35,-20,-25,-21,-40,-20,-22,-17,-29,-18,-26,-24,-48,-24,-26,-18,-30,-17,-22,-20,-39,-21,-25,-21,-39,-26,-39,-38,-77,-38,-39,-26,-39,-21,-26,-22,-40,-20,-22,-16,-27,-16,-23,-22,-44,-22,-22,-15,-23,-13,-16,-14,-26,-14,-16,-12,-21,-14,-21,-20,-41,-20,-21,-14,-23,-13,-17,-14,-27,-14,-17,-13,-23,-14,-21,-20,-41,-21,-22,-15,-25,-15,-21,-19,-37,-20,-24,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-24,-20,-38,-19,-21,-15,-26,-15,-21,-19,-38,-19,-19,-13,-22,-13,-17,-16,-31,-16,-19,-15,-27,-17,-25,-24,-49,-24,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-17,-10,-15,-14,-27,-14,-15,-10,-17,-9,-12,-11,-22,-12,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-13,-16,-13,-24,-12,-14,-10,-17,-10,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-8,-9,-7,-13,-8,-13,-13,-27,-13,-13,-9,-15,-8,-10,-8,-15,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,9,8,13,9,14,15,29,15,14,10,14,8,8,7,11,6,7,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,5,4,7,4,4,3,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,5,5,8,5,7,7,12,7,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,13,25,13,14,10,16,10,14,13,24,14,17,15,26,18,26,26,50 -26,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,11/2,10,6,6,9/2,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-9,-15/2,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-41,-20,-20,-25/2,-19,-10,-13,-10,-19,-19/2,-10,-15/2,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-10,-6,-9,-8,-17,-8,-8,-6,-10,-11/2,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-15,-15,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-21,-17,-31,-41/2,-32,-32,-64,-32,-32,-21,-32,-18,-22,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-19/2,-12,-11,-21,-21/2,-12,-19/2,-17,-11,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-19,-19/2,-10,-8,-14,-17/2,-12,-12,-24,-12,-13,-9,-15,-8,-10,-19/2,-19,-10,-12,-10,-19,-12,-19,-37/2,-38,-37/2,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-13/2,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-17,-11,-16,-16,-34,-33/2,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-13,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-9/2,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,7/2,4,4,9,5,4,3,5,3,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25 -26,14,27/2,9,13,8,9,8,13,7,15/2,6,9,6,8,7,11,6,13/2,4,6,4,5,5,9,5,6,5,9,6,9,8,15,8,15/2,6,8,5,6,5,8,5,5,4,7,4,11/2,5,10,6,11/2,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,17/2,6,8,5,11/2,5,8,4,9/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,4,4,5,4,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,4,4,7,4,7/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,1,1,1/2,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-6,-4,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-9,-19/2,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-12,-23/2,-8,-13,-7,-17/2,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-7,-12,-7,-21/2,-10,-20,-10,-25/2,-10,-20,-13,-20,-20,-41,-20,-39/2,-12,-19,-10,-13,-10,-19,-10,-21/2,-8,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-21/2,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-31/2,-15,-31,-16,-17,-12,-21,-12,-35/2,-16,-31,-17,-41/2,-17,-31,-20,-63/2,-32,-65,-32,-32,-21,-32,-18,-43/2,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-10,-25/2,-11,-20,-10,-12,-10,-18,-11,-16,-16,-32,-16,-16,-11,-17,-9,-23/2,-10,-19,-10,-21/2,-8,-15,-9,-25/2,-12,-24,-12,-13,-9,-15,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-12,-37/2,-18,-38,-18,-37/2,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-7,-12,-7,-19/2,-9,-18,-9,-11,-9,-17,-11,-33/2,-16,-35,-17,-33/2,-10,-16,-9,-23/2,-10,-18,-9,-10,-7,-13,-8,-21/2,-10,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,6,4,9/2,4,7,5,15/2,8,15,8,8,6,8,5,5,4,6,4,7/2,3,5,3,7/2,4,6,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,2,2,2,5/2,2,4,3,3,3,5,4,9/2,4,9,5,9/2,3,5,3,4,3,3,2,3,3,4,3,3,3,7,4,9/2,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,11/2,4,5,4,5,4,7,4,9/2,4,7,5,13/2,7,12,7,8,6,9,6,15/2,7,13,8,9,8,13,9,13,13,25 -18,10,10,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,7/2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-7/2,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-9/2,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-9,-9/2,-5,-4,-9,-5,-8,-8,-18,-17/2,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-11/2,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-12,-11,-20,-11,-13,-11,-20,-13,-21,-21,-43,-21,-21,-14,-21,-23/2,-14,-12,-22,-11,-12,-8,-14,-8,-11,-21/2,-21,-10,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-21,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-11/2,-10,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-11/2,-11,-7,-10,-10,-23,-11,-10,-6,-10,-6,-8,-6,-12,-6,-6,-4,-8,-9/2,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-9/2,-7,-7,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,5/2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,4,5/2,3,2,2,2,2,2,3,2,2,2,5,3,3,3,4,5/2,3,3,4,5/2,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,5,8,5,5,4,6,4,5,5,9,11/2,6,11/2,9,6,9,9,17 -26,13,13,9,25/2,7,8,7,13,7,8,6,17/2,5,6,6,11,6,6,5,7,5,6,5,10,6,6,6,19/2,6,9,9,14,8,8,6,17/2,6,7,6,8,5,5,4,7,5,6,5,11,6,6,4,13/2,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,15/2,4,5,4,7,4,4,3,9/2,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,11/2,4,6,5,9,5,5,4,11/2,4,4,3,5,3,4,4,11/2,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,3/2,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-6,-13,-7,-8,-6,-19/2,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-25/2,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-23/2,-7,-11,-11,-20,-10,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-39/2,-13,-20,-20,-41,-20,-20,-13,-39/2,-10,-12,-10,-20,-10,-10,-7,-12,-7,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-23/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-17,-8,-9,-6,-19/2,-6,-8,-7,-14,-7,-8,-7,-27/2,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-14,-14,-10,-31/2,-9,-12,-10,-19,-10,-12,-9,-33/2,-10,-16,-15,-31,-16,-17,-12,-43/2,-13,-18,-17,-31,-17,-20,-17,-63/2,-21,-32,-32,-65,-32,-32,-21,-65/2,-18,-22,-18,-33,-17,-18,-13,-43/2,-13,-18,-17,-32,-16,-16,-11,-17,-9,-12,-11,-20,-10,-12,-10,-18,-11,-17,-17,-32,-16,-16,-10,-33/2,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-12,-10,-39/2,-12,-19,-18,-39,-19,-19,-12,-19,-10,-13,-10,-20,-10,-11,-8,-27/2,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-16,-35,-17,-17,-11,-33/2,-9,-11,-10,-18,-9,-10,-7,-25/2,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-12,-12,-22,-10,-10,-7,-23/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-10,-5,-6,-6,-23/2,-8,-12,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,3,3,3,2,2,2,4,3,4,4,6,4,4,4,7,6,9,9,16,8,8,6,15/2,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,3,3,5,3,4,3,7/2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,5/2,2,2,2,4,3,4,3,5,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,7/2,2,3,3,7,4,5,4,5,3,4,4,5,3,3,3,9/2,3,4,5,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,24 -15,8,8,11/2,8,9/2,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,7/2,6,4,4,4,6,4,6,11/2,8,5,5,4,5,7/2,4,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22,-10,-10,-13/2,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-9,-11/2,-9,-8,-17,-8,-9,-13/2,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-35/2,-18,-23/2,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,7/2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,11/2,8,15/2,14 -18,10,19/2,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,9/2,4,6,4,4,4,7,4,4,4,6,4,13/2,6,10,5,5,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,3,2,3,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-5,-4,-9,-4,-5,-4,-10,-6,-19/2,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-13/2,-4,-6,-3,-9/2,-4,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-7,-6,-13,-6,-13/2,-4,-8,-4,-6,-5,-14,-6,-6,-4,-8,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-9,-9,-6,-10,-6,-15/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-10,-21,-10,-11,-8,-14,-8,-12,-11,-20,-11,-27/2,-11,-21,-14,-21,-21,-43,-21,-43/2,-14,-22,-12,-29/2,-12,-22,-11,-12,-8,-14,-8,-11,-11,-21,-10,-11,-7,-12,-6,-15/2,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-9,-5,-15/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-12,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-15/2,-5,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-3,-8,-4,-5,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-12,-6,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-13/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3,3,2,2,3/2,2,3,2,3,3,4,3,3,3,6,5,7,7,11,6,5,4,5,3,4,4,5,3,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,4,2,5/2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,10,6,17/2,8,16 -15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,11/2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-15/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-4,-4,-3,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-18,-18,-12,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-6,-5,-10,-6,-9,-9,-18,-8,-8,-11/2,-10,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-4,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-9/2,-9,-4,-5,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,7/2,5,4,5,5,8,5,6,5,8,5,7,7,13 -27,14,14,9,12,7,8,7,12,7,7,6,9,5,6,6,12,7,7,5,8,5,6,6,19/2,6,6,6,10,7,9,9,14,7,7,5,7,5,6,6,19/2,5,5,4,6,4,5,4,12,7,7,5,8,5,5,4,15/2,4,5,4,7,5,8,8,16,8,8,6,8,5,5,4,13/2,4,4,3,5,3,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,11/2,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-28,-14,-14,-9,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-20,-10,-11,-8,-14,-8,-11,-10,-21,-11,-14,-11,-20,-13,-20,-20,-38,-18,-18,-12,-18,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-10,-9,-21,-10,-11,-7,-11,-6,-8,-7,-27/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-18,-9,-9,-6,-10,-6,-8,-7,-29/2,-8,-9,-7,-12,-8,-12,-12,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-15,-8,-11,-10,-20,-10,-12,-9,-17,-11,-17,-17,-33,-16,-17,-12,-20,-12,-17,-16,-65/2,-18,-22,-18,-32,-21,-32,-32,-67,-33,-34,-22,-34,-18,-22,-18,-67/2,-16,-17,-12,-20,-12,-17,-16,-30,-15,-15,-10,-17,-10,-13,-11,-43/2,-12,-14,-11,-20,-13,-19,-18,-33,-16,-16,-10,-16,-9,-11,-10,-39/2,-10,-11,-8,-15,-9,-13,-12,-26,-13,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-19,-12,-19,-19,-40,-20,-20,-13,-20,-11,-13,-11,-21,-11,-12,-9,-16,-9,-13,-12,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-8,-15,-10,-15,-15,-34,-16,-16,-10,-16,-9,-11,-9,-17,-9,-10,-7,-13,-8,-12,-11,-20,-10,-10,-7,-11,-6,-9,-8,-15,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-22,-10,-10,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-9,-6,-9,-8,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,2,2,2,2,3,2,3,3,11/2,4,5,5,8,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,2,7/2,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,12,7,7,5,8,5,5,4,15/2,4,5,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 -15,8,8,5,7,4,5,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,6,4,4,5/2,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-11/2,-7,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-11/2,-11,-5,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,7,5,7,7,12 -16,9,9,6,7,4,5,5,8,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,3,3,6,4,4,3,6,4,11/2,6,8,4,9/2,3,5,3,7/2,3,5,3,3,3,4,3,7/2,3,7,4,4,3,5,3,3,3,4,3,3,3,5,4,5,5,9,5,6,4,5,3,4,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,6,4,7/2,2,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-5,-11,-6,-13/2,-4,-8,-5,-9,-9,-18,-9,-19/2,-6,-10,-6,-9,-9,-18,-10,-23/2,-9,-17,-11,-17,-17,-37,-18,-18,-12,-18,-10,-23/2,-10,-17,-8,-17/2,-6,-11,-6,-9,-8,-17,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-7,-6,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-12,-6,-6,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,1,1,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,9/2,5,9,5,11/2,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,7,4,5,4,6,4,7/2,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,7,5,7,7,13 -12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,5,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-13/2,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,10 -18,9,9,6,19/2,6,7,6,10,6,6,4,13/2,4,5,5,8,4,4,4,11/2,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,6,4,6,5,12,7,7,5,13/2,4,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-9,-9,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-13,-6,-7,-4,-15/2,-4,-4,-3,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-19/2,-5,-7,-7,-15,-8,-10,-8,-29/2,-9,-14,-13,-24,-12,-12,-8,-23/2,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-12,-5,-5,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-9,-9,-6,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-21,-10,-11,-8,-13,-8,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-45,-22,-22,-14,-43/2,-12,-14,-12,-20,-10,-11,-8,-25/2,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-13,-8,-12,-11,-20,-10,-10,-7,-12,-6,-8,-7,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-27/2,-8,-13,-13,-26,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-8,-6,-12,-6,-7,-5,-10,-6,-8,-8,-13,-6,-6,-4,-6,-3,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,4,11/2,4,6,6,11,6,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,8,5,5,4,13/2,4,4,4,5,3,4,4,11/2,4,6,5,9,5,6,4,13/2,4,5,5,8,5,5,5,8,6,8,8,15 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9 -15,8,17/2,6,8,5,6,5,8,4,9/2,4,6,4,4,4,7,4,9/2,4,4,3,7/2,3,6,4,9/2,4,5,4,5,6,10,6,11/2,4,5,3,4,4,5,3,7/2,3,4,3,3,3,6,4,7/2,2,3,2,5/2,3,4,3,7/2,3,5,4,9/2,4,10,5,5,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-4,-8,-4,-13/2,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-5,-11,-5,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-7,-11,-11,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-9/2,-2,-5,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-7,-7,-17,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-13/2,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-7,-10,-9,-18,-10,-23/2,-10,-18,-12,-18,-18,-36,-17,-17,-11,-18,-10,-23/2,-9,-17,-8,-9,-6,-11,-6,-19/2,-9,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-10,-10,-16,-8,-8,-5,-10,-5,-13/2,-6,-11,-5,-6,-4,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-10,-6,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-11/2,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-13/2,-6,-11,-5,-6,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,5,4,5,5,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,4,3,7/2,4,7,4,9/2,4,6,3,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,5,7,7,12 -15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,4,5,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-7/2,-7,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-33,-16,-16,-10,-16,-17/2,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-10,-9,-15,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-10,-13/2,-10,-10,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,9/2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11 -28,15,15,11,16,9,11,9,16,8,8,6,8,5,6,6,23/2,7,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,4,15/2,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,17,9,8,6,8,5,5,4,6,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-6,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-25/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-37/2,-9,-10,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-12,-12,-20,-10,-10,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-10,-41/2,-10,-11,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-20,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-10,-10,-41/2,-10,-10,-7,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-11,-9,-16,-10,-16,-16,-65/2,-16,-17,-12,-20,-12,-17,-16,-32,-17,-21,-18,-33,-22,-34,-34,-65,-32,-32,-21,-32,-17,-21,-18,-33,-17,-18,-13,-23,-13,-18,-17,-67/2,-16,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-19,-12,-18,-18,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-12,-26,-13,-14,-10,-17,-9,-12,-11,-22,-12,-15,-12,-22,-14,-22,-21,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-14,-8,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-10,-41/2,-10,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-9,-6,-9,-9,-9,-4,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,9,6,7,7,9,5,4,3,3,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,9,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,6,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,13,8,9,7,11,7,10,10,20 -15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,4,7,4,4,7/2,5,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,3,5/2,4,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-10,-17/2,-16,-11,-17,-17,-32,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-21/2,-18,-9,-9,-6,-9,-9/2,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-5,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-5,-5/2,-4,-5/2,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11 -15,8,17/2,6,8,5,13/2,6,8,5,5,4,5,3,4,4,6,4,9/2,4,6,4,5,4,7,4,9/2,4,5,4,11/2,6,10,5,5,4,6,4,4,3,4,3,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,7/2,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,4,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-6,-17/2,-8,-17,-9,-11,-9,-17,-11,-35/2,-18,-33,-16,-33/2,-10,-16,-8,-10,-8,-16,-8,-9,-7,-11,-6,-19/2,-9,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-7,-5,-9,-5,-13/2,-6,-10,-5,-13/2,-6,-11,-7,-11,-11,-18,-9,-9,-6,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-3,-5,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-5,-9,-5,-6,-5,-9,-4,-5,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,1,3,2,3,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,10,5,5,4,6,4,7/2,3,5,3,3,3,4,3,4,4,7,4,7/2,3,4,3,7/2,4,6,4,4,3,5,3,4,4,5,3,2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,6,6,11 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-15/2,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-4,-7/2,-7,-4,-7,-7,-12,-11/2,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8 -16,8,8,6,19/2,6,6,5,9,5,5,4,6,4,4,4,6,4,4,4,11/2,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,4,3,5,3,2,2,5/2,2,2,3,5,3,4,3,7/2,3,4,4,7,4,4,3,9/2,3,4,3,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,5/2,2,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,1,2,2,2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-23/2,-7,-11,-11,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-7,-7,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-5,-19/2,-6,-10,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-36,-18,-18,-12,-35/2,-10,-12,-10,-18,-9,-10,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-21/2,-6,-7,-6,-11,-5,-6,-5,-19/2,-6,-10,-10,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-12,-19,-9,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-3,-4,-4,-11,-5,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,3/2,1,0,0,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,1,1,6,4,4,2,5/2,2,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,5,4,13/2,5,7,7,12 -10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-4,-7/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,7 -13,7,7,5,7,4,5,4,7,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,3,2,3,2,5,3,5/2,2,3,2,2,2,4,3,3,3,3,2,7/2,4,4,3,3,2,3,2,2,2,1,1,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,3,2,5/2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-8,-5,-15/2,-7,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-15/2,-5,-9,-5,-7,-7,-15,-8,-19/2,-8,-14,-9,-15,-15,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,3,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,7/2,3,4,3,7/2,4,7,4,3,2,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5/2,3,5,3,5/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,3,3,2,2,2,3,2,3,3,4,3,7/2,3,5,4,5,5,8 -12,7,7,5,7,4,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,4,4,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,3/2,2,3/2,2,3/2,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -22,11,11,8,11,7,8,6,10,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,3,2,2,1,1,1,0,0,1/2,1,2,2,3,3,4,4,6,3,3,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,3,2,2,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-8,-6,-12,-8,-12,-12,-29,-14,-14,-9,-14,-8,-10,-8,-29/2,-7,-7,-5,-9,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-6,-11,-7,-12,-12,-23,-12,-13,-9,-16,-9,-13,-12,-51/2,-14,-16,-13,-25,-17,-26,-26,-43,-21,-22,-14,-22,-12,-15,-12,-47/2,-12,-12,-8,-14,-8,-12,-11,-25,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-11,-6,-9,-8,-15,-8,-10,-8,-16,-10,-15,-15,-24,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,1,1,1,2,3,2,3,2,3,2,3,2,3,2,3,2,-1,0,0,1,1,1,2,2,3/2,1,0,0,0,0,0,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,13/2,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,15/2,4,5,4,6,4,6,5,8,5,5,4,5,3,3,3,9/2,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,2,2,2,2,7/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,7,13 -13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-5/2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-12,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,4,5/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,11/2,4,6,4,4,3,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,7/2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,5/2,2,2,2,3/2,2,5,3,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,3/2,2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1/2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,1,1,1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-13/2,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-15,-10,-16,-16,-26,-13,-13,-9,-13,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-6,-9,-9,-13,-6,-6,-4,-7,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,3/2,2,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,3,4,3,7/2,3,5,3,7/2,3,5,4,5,5,10,6,11/2,4,6,4,7/2,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,5,3,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,4,4,8 -12,6,6,9/2,6,4,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-11/2,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-5/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,9/2,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6 -20,11,11,7,10,6,6,5,7,4,4,3,7/2,2,3,3,7,4,5,4,6,4,4,4,6,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,3,4,3,3,3,9/2,4,5,5,4,3,3,2,3,2,2,2,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-14,-11,-41/2,-13,-20,-21,-38,-19,-19,-12,-37/2,-10,-12,-10,-18,-9,-10,-7,-13,-7,-10,-10,-21,-10,-10,-6,-21/2,-6,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-18,-8,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,3,2,2,2,7/2,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,6,6,14,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,4,11/2,4,5,5,10 -13,7,7,5,6,4,4,4,5,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,2,3,2,2,2,3,3,4,7/2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-8,-13,-13,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-4,-8,-5,-8,-8,-11,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 -18,9,9,6,8,5,6,5,7,4,4,3,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,4,9/2,3,5,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,3,3,2,3,3,3,2,5/2,2,4,3,9/2,4,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,3/2,2,1,1,3/2,1,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-17/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-13,-20,-20,-35,-17,-17,-11,-16,-8,-21/2,-9,-17,-8,-9,-7,-12,-7,-19/2,-9,-19,-9,-19/2,-6,-10,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-12,-12,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,4,3,5,3,4,4,7,4,9/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,4,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,3/2,2,2,1,1,1,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,4,3,4,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,2,2,2,2,5/2,3,4,3,7/2,3,5,4,5,5,9 -17,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-8,-17/2,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-35,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-11/2,-11,-6,-8,-6,-12,-8,-12,-12,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,5/2,4,3,3,3,5,4,5,5,8 -33,17,16,11,16,9,10,8,14,8,8,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,7,7,25/2,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,7,5,7,7,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,3,11/2,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-25,-12,-11,-7,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-27,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-13,-7,-9,-8,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-46,-23,-23,-15,-23,-13,-16,-13,-25,-13,-14,-10,-18,-11,-15,-14,-28,-14,-14,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-14,-13,-51/2,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-31,-15,-15,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-9,-7,-13,-9,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-17,-34,-18,-20,-15,-25,-15,-21,-20,-40,-22,-26,-21,-39,-26,-40,-40,-70,-34,-34,-22,-34,-18,-22,-19,-35,-18,-19,-13,-22,-13,-18,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-13,-15,-12,-22,-14,-21,-20,-40,-20,-20,-13,-20,-11,-14,-12,-23,-12,-13,-10,-18,-11,-16,-15,-30,-15,-16,-11,-19,-11,-16,-14,-28,-15,-18,-15,-27,-17,-25,-25,-32,-15,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-10,-8,-16,-11,-17,-17,-36,-17,-17,-11,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,6,6,12,7,8,7,11,8,11,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,31/2,8,8,5,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,5,7,7,14 -17,9,8,6,9,5,6,9/2,8,4,4,7/2,5,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,3/2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-12,-11/2,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-10,-7,-12,-7,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-35,-17,-17,-11,-17,-9,-11,-9,-17,-17/2,-9,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-6,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,6,4,4,4,6,4,6,11/2,12,6,6,4,6,4,4,4,6,7/2,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,7 -16,8,8,6,9,5,11/2,4,8,4,9/2,4,5,4,5,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,5/2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,7/2,4,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3/2,2,1,1,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-5,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-3,-5,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-4,-8,-5,-8,-8,-16,-8,-19/2,-7,-12,-7,-10,-10,-19,-10,-13,-10,-20,-13,-39/2,-20,-36,-17,-17,-11,-17,-9,-23/2,-10,-18,-9,-9,-6,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-15/2,-6,-10,-6,-9,-9,-20,-10,-19/2,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-15/2,-5,-10,-5,-7,-6,-13,-7,-8,-7,-12,-8,-12,-12,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-2,0,1/2,0,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,3,2,3,4,6,4,9/2,4,6,4,11/2,5,12,6,13/2,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,9/2,4,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1,1,6,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,3,3,4,4,7 -11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,4,5/2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-2,-1/2,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,5/2,3,2,2,2,2,2,3,3,4,3,3,5/2,4,3,4,7/2,8,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,5/2,4,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -16,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,2,1,1,0,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-9/2,-2,-4,-5,-14,-7,-7,-4,-13/2,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-4,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-8,-7,-23,-11,-12,-8,-23/2,-6,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-11/2,-3,-4,-4,-6,-3,-3,-2,-11/2,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-7,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-8,-5,-8,-8,-17,-9,-10,-7,-12,-7,-11,-10,-19,-10,-12,-10,-20,-13,-20,-20,-37,-18,-18,-12,-37/2,-10,-12,-10,-18,-9,-9,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-10,-5,-6,-5,-12,-6,-7,-5,-10,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-7,-5,-10,-6,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-14,-7,-9,-7,-25/2,-8,-12,-12,-18,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,-1,-4,-1,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,5,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,3,4,3,4,4,11,6,6,4,11/2,4,4,4,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,2,5/2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,1,3/2,2,2,2,6,4,4,3,3,2,3,3,4,3,3,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,3,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,8 -9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -11,6,6,4,5,3,4,3,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-16,-8,-15/2,-4,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-8,-5,-7,-6,-13,-7,-17/2,-7,-13,-8,-13,-13,-24,-12,-12,-8,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-11/2,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-11/2,-6,-11,-5,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,1,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,5/2,3,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,5,3,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-11,-6,-7,-6,-10,-5,-5,-7/2,-7,-4,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4 -18,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,4,3,4,3,4,4,11/2,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,1,1,1,1,2,2,2,2,7/2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-7,-6,-26,-13,-13,-8,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-9,-6,-10,-10,-15,-7,-7,-4,-7,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-7,-7,-19,-10,-11,-8,-13,-8,-11,-10,-21,-11,-14,-12,-23,-15,-22,-22,-38,-19,-19,-12,-18,-10,-13,-11,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-9,-14,-8,-10,-8,-31/2,-8,-8,-6,-12,-7,-9,-9,-18,-9,-9,-6,-11,-6,-8,-6,-25/2,-6,-8,-7,-13,-8,-13,-13,-21,-10,-9,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-9/2,-5,-7/2,-7,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1/2,0,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3 -11,6,11/2,4,6,4,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-13,-13,-21,-10,-21/2,-6,-10,-5,-7,-6,-12,-6,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-7,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,0,0,1/2,0,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,2,3,2,3,2,2,2,5/2,3,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3 -9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-16,-15/2,-8,-9/2,-7,-7/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-5/2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2 -15,8,7,5,7,4,5,4,6,3,3,3,4,3,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-33/2,-10,-16,-16,-27,-13,-12,-8,-25/2,-7,-9,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-17/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-18,-8,-8,-5,-7,-3,-4,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,1,2,2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,7/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,5/2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -13,7,13/2,5,7,4,5,4,5,3,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-15,-7,-7,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-7,-5,-8,-5,-7,-7,-13,-7,-9,-8,-14,-9,-14,-15,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-15/2,-7,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,6,4,7/2,3,4,2,5/2,2,4,3,7/2,3,5,3,4,4,6,4,7/2,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,5/2,2,4,3,3,3,3,3,4,4,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4 -13,7,6,5,7,4,4,3,5,3,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-11/2,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-13/2,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-7/2,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,3/2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,6,4,4,3,4,5/2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -24,12,12,8,12,7,8,7,11,6,6,4,5,3,4,4,11/2,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,9/2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,1,1,1,1,1,1,2,1,1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-29,-14,-14,-9,-15,-8,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-45/2,-12,-13,-9,-16,-9,-13,-13,-26,-14,-17,-15,-28,-19,-29,-29,-46,-22,-22,-15,-23,-12,-15,-13,-24,-12,-14,-10,-18,-11,-15,-14,-55/2,-13,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-10,-15,-15,-33,-16,-15,-10,-15,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-23,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-16,-30,-14,-14,-8,-12,-6,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,11,6,7,5,8,5,6,6,10,6,6,4,6,4,6,6,21/2,6,6,4,5,3,4,4,7,4,5,4,5,3,4,3,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,17/2,5,5,4,6,4,5,4,6,3,3,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,13,7,7,6,9,5,6,5,9,5,6,4,6,4,4,4,11/2,4,4,3,3,2,2,2,2,2,2,2,4,3,4,4,6 -13,7,7,5,7,4,5,4,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-13/2,-6,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-11/2,-11,-11/2,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -13,7,7,5,7,4,5,4,6,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-3/2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-13/2,-7,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-13/2,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-26,-13,-13,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-6,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,1,1,3/2,1,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,7/2,4,6,3,3,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,2,2,5/2,2,4,3,4,3,6,4,4,3,4,3,7/2,3,3,2,2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,9/2,3,5,3,4,3,5,3,7/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3 -10,5,5,4,5,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1/2,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-5/2,-4,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-9/2,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -16,9,9,6,8,5,5,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,7/2,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-3,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-17,-8,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-8,-31/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-21/2,-6,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-10,-19,-9,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,2,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,1,2,1,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,4,3,4,3,9/2,3,4,4,6,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,9/2,3,4,3,3,2,3,2,7/2,2,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,4,3,9/2,3,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3 -10,11/2,6,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -12,6,13/2,4,6,4,4,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,2,2,3/2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-6,-15/2,-6,-12,-8,-12,-12,-25,-12,-25/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,1,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,7,4,7/2,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-11/2,-7,-6,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -21,11,11,7,10,6,7,5,8,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,9/2,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,0,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,3,2,2,2,7/2,2,3,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-18,-9,-9,-5,-8,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-21,-14,-22,-22,-44,-22,-22,-14,-22,-12,-14,-12,-43/2,-11,-12,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-9,-13,-13,-22,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-21,-10,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,11/2,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,3 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-7,-4,-6,-13/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-5,-4,-8,-9/2,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-11,-5,-6,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2 -13,7,13/2,4,7,4,9/2,4,6,4,7/2,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-27/2,-14,-29,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-15/2,-8,-16,-8,-17/2,-6,-9,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-13/2,-5,-9,-5,-8,-8,-14,-6,-13/2,-4,-6,-3,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-14,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,0,0,1/2,0,4,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,6,4,7/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,5/2,3,6,4,7/2,3,3,2,2,2,3,2,2,2,2,2,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1 -11,6,6,4,6,7/2,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-21/2,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-11/2,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1 -18,9,9,6,17/2,5,6,5,7,4,4,3,9/2,3,3,3,6,4,4,2,5/2,2,2,2,4,2,2,1,1,1,1,0,1,1,1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,9/2,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-10,-4,-4,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-5,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-7,-12,-7,-11,-10,-18,-10,-12,-10,-39/2,-13,-20,-20,-43,-21,-20,-13,-20,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-10,-21,-10,-11,-7,-23/2,-6,-9,-8,-13,-7,-8,-6,-25/2,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-12,-6,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-21/2,-5,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,5,3,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,3,2,3,2,7/2,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-28,-27/2,-13,-17/2,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-14,-13/2,-7,-4,-7,-4,-5,-9/2,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-7/2,-5,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,5/2,4,5/2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1 -17,9,9,6,9,5,11/2,4,7,4,4,3,4,3,7/2,3,5,3,3,2,2,2,3/2,2,3,2,1,1,1,1,1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,3,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-5,-3,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-7,-4,-9/2,-4,-10,-5,-13/2,-5,-10,-6,-19/2,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-39/2,-20,-43,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-14,-8,-21/2,-10,-21,-10,-10,-6,-11,-6,-8,-7,-13,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,6,4,7/2,3,3,2,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,4,4,7,4,9/2,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,3,2,7/2,4,8,4,9/2,3,4,2,2,2,2,2,3/2,2,2,1,1,1,3,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1/2,0,0 -17,9,9,6,9,5,6,9/2,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,4,3,3,3,5,7/2,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-4,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-11/2,-16,-15/2,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-42,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-13,-15/2,-10,-10,-21,-10,-10,-6,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1/2,0 -32,17,17,12,17,10,12,10,18,10,10,8,12,7,9,8,15,8,9,7,10,6,8,7,12,6,6,5,7,5,6,6,12,6,6,4,5,3,3,3,4,2,2,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,3,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,4,4,6,3,3,2,2,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-6,-9,-9,-18,-9,-9,-7,-12,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-7,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-33,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-16,-16,-69/2,-17,-17,-11,-18,-9,-11,-9,-16,-8,-9,-7,-12,-7,-11,-10,-21,-10,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-11,-21,-11,-14,-11,-20,-13,-19,-19,-38,-19,-21,-16,-27,-16,-22,-21,-41,-22,-26,-21,-39,-26,-40,-40,-85,-42,-42,-28,-42,-23,-27,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-16,-14,-26,-14,-16,-13,-23,-15,-22,-22,-44,-21,-21,-14,-21,-11,-14,-12,-23,-12,-13,-10,-18,-11,-17,-17,-34,-17,-17,-12,-20,-11,-15,-13,-24,-13,-15,-13,-24,-15,-23,-22,-91/2,-22,-22,-14,-22,-12,-14,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-40,-20,-20,-13,-20,-11,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-41/2,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,4,6,4,5,5,8,5,7,7,25/2,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1 -16,9,9,6,9,6,7,6,10,6,6,9/2,7,4,5,9/2,8,9/2,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-15/2,-13,-7,-10,-10,-20,-11,-13,-10,-19,-25/2,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-10,-15/2,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-7,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-19,-9,-10,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,5/2,3,2,3,2,3,3,5,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,9,9,6,9,6,7,6,10,6,11/2,4,7,4,9/2,4,8,4,9/2,4,6,4,4,4,6,4,4,3,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,4,3,7/2,3,5,4,9/2,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-6,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-9,-19,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-39/2,-20,-42,-20,-41/2,-13,-21,-11,-27/2,-11,-21,-10,-21/2,-8,-13,-8,-11,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-22,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-15/2,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-11,-6,-7,-6,-10,-5,-11/2,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-19,-9,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,7,4,7/2,2,4,3,3,3,4,2,5/2,2,4,3,7/2,3,4,2,5/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,5/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0 -11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-28,-27/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-8,-5,-7,-6,-14,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,8,8,6,9,6,7,6,9,5,5,4,6,4,4,4,10,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,3,7,4,4,3,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-6,-19/2,-5,-6,-5,-11,-6,-7,-6,-21/2,-6,-9,-9,-20,-10,-10,-7,-25/2,-8,-11,-10,-19,-10,-12,-10,-20,-13,-21,-21,-43,-21,-20,-13,-41/2,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-12,-6,-8,-6,-11,-7,-11,-11,-23,-11,-10,-6,-21/2,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-12,-6,-7,-6,-21/2,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-11/2,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,7,4,4,3,7/2,2,3,3,4,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,2,2,3,3,4,3,5,5,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,1,2,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1/2,1,1,1,0 -10,5,5,4,5,7/2,4,4,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0 -12,6,13/2,5,6,4,9/2,4,6,4,4,3,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-27/2,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-7/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,5,3,3,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,-1 -10,11/2,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-7/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1 -17,9,8,6,8,5,5,5,8,5,5,3,4,3,3,3,10,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,2,3,3,4,4,8,5,5,3,4,2,2,2,7/2,2,2,2,2,1,1,0,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-5,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-10,-11,-8,-14,-8,-12,-10,-41/2,-11,-13,-11,-21,-13,-20,-20,-45,-22,-22,-14,-22,-12,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-25,-12,-13,-8,-13,-7,-9,-8,-29/2,-7,-8,-6,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-8,-6,-11,-7,-11,-11,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3/2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,4,3,5,5,8,4,4,3,4,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-5/2,0,0,0,0,0,-1,-1,-3 -9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-13/2,-10,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -10,5,5,3,4,3,3,3,5,3,3,2,3,2,5/2,2,6,4,7/2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-3/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-7,-11,-11,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-3,-5,-3,-11/2,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,0,1,1,1,1,1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,1,1,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,3,3,2,3,2,3/2,2,2,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -11,6,5,4,5,3,4,3,5,3,2,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,1,1,0,0,1/2,0,0,1,3,2,2,2,5/2,2,3,3,4,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-13,-6,-6,-4,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-10,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-32,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-17/2,-4,-6,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-6,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,3/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3/2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-2 -7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-5,-5,-10,-9/2,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -8,4,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,4,2,5/2,2,2,2,5/2,2,3,2,2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-23/2,-12,-27,-13,-13,-8,-13,-7,-17/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-7,-13/2,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-7,-4,-15/2,-7,-17,-8,-15/2,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,5,3,5/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,-1,0,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2 -7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-10,-21/2,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-16,-7,-7,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,0,0,1/2,1,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,1/2,0,1/2,0,1/2,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -13,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,6,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-18,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-11,-8,-15,-9,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-51,-25,-26,-17,-26,-14,-17,-13,-24,-12,-13,-10,-18,-11,-15,-14,-28,-13,-13,-9,-14,-8,-11,-10,-19,-9,-10,-8,-14,-9,-13,-13,-31,-15,-15,-10,-15,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-10,-43/2,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-31,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-5,-8,-4,-6,-6,-27/2,-6,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,11/2,4,4,3,4,3,3,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,1,1,1,1,1,1,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3 -7,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-11/2,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1 -6,3,3,3,4,3,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1/2,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-10,-5,-5,-3,-4,-2,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-13/2,-6,-11,-7,-21/2,-10,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-13/2,-6,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,5,3,5/2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,0,1,3/2,2,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1 -4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,3,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,3/2,2,3/2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1 -6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,1,4,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-18,-9,-9,-6,-17/2,-4,-6,-5,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,4,3,3,2,5/2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,5,3,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1/2,1,2,2,0,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,1,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-16,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1/2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-17/2,-9,-21,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,1,0,0,1/2,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,2,1,1/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-19,-9,-8,-5,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,0,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-7/2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,-1,1,1,1,0,-1,0,-1,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,-7,-3,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-16,-7,-7,-4,-6,-3,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-2,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-6,-25/2,-6,-8,-7,-14,-9,-15,-15,-36,-18,-18,-11,-17,-9,-11,-10,-37/2,-9,-9,-6,-10,-6,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-2,-11,-5,-5,-4,-7,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,1,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4 -3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-19,-9,-9,-11/2,-9,-5,-6,-5,-10,-9/2,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,3,3,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-8,-5,-9,-9,-22,-10,-21/2,-6,-11,-6,-7,-6,-12,-6,-11/2,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-14,-6,-13/2,-4,-7,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,0,0,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,-3,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-7/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-7,-12,-5,-5,-3,-11/2,-3,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-13,-6,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-3,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-10,-5,-6,-5,-21/2,-7,-12,-12,-31,-15,-15,-10,-31/2,-8,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-12,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,-1,0,0,0,-3/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,7,4,4,3,4,3,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,8,5,5,3,4,3,3,3,3,2,3,2,7/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,2,2,3/2,2,2,1,0,1,1,1,3/2,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-7/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-20,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-4,-6,-5/2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-13/2,-7,-13,-6,-5,-3,-6,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-7,-4,-6,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-31,-15,-15,-10,-16,-8,-21/2,-9,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-4,-11/2,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,6,4,7/2,3,4,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,8,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,5/2,2,3,2,7/2,3,5,3,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3 -4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-3,-6,-3,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-4,-3,-7,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-30,-15,-15,-10,-15,-8,-10,-17/2,-16,-8,-8,-6,-10,-6,-8,-15/2,-16,-8,-8,-5,-9,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-17,-8,-8,-11/2,-9,-9/2,-6,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-7/2,-5,-9/2,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3 -8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-2,-4,-4,-17/2,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-26,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-24,-11,-11,-7,-12,-6,-7,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-5,-10,-6,-10,-10,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-16,-13,-23,-15,-23,-23,-61,-30,-30,-20,-30,-16,-19,-15,-28,-14,-15,-11,-19,-11,-15,-14,-28,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-10,-11,-8,-13,-8,-11,-10,-19,-10,-12,-10,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-22,-10,-10,-6,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,1,0,0,12,7,7,5,8,5,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,4,13/2,4,4,3,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,5,3,3,3,4,3,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 -5,3,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-13/2,-8,-6,-11,-7,-11,-11,-30,-15,-15,-10,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3 -5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-5,-6,-2,-5/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-15/2,-6,-12,-8,-23/2,-11,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-9,-9,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-9,-6,-19/2,-10,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,3/2,1,1,1,1/2,0,7,4,4,3,5,3,4,3,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3/2,2,3/2,2,2,1,1,2,1,1,1,0,0,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,0,1,1,1,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-5/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-10,-5,-5,-3,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-13,-13,-34,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-17,-8,-8,-5,-17/2,-4,-5,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-4,-2,-9/2,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,8,4,4,3,5,3,3,3,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,0,1,1,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,9/2,3,3,2,4,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,3,6,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,0,0,0,0,1/2,1,2,2,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,2,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -2,1,1,1,2,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-4,-9,-6,-9,-9,-25,-12,-12,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-6,-4,-13/2,-7,-12,-6,-6,-4,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,7,4,7/2,3,4,3,3,2,4,2,2,2,1,1,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,1,1,2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,2,4,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,0,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-9,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-4,-6,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-7,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-41,-20,-20,-13,-20,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-9,-8,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-15,-7,-8,-6,-10,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-10,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,12,6,6,4,5,3,4,4,11/2,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,7/2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,9/2,3,3,3,4,3,4,4,5,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-7 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,3/2,2,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,2,2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 -2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-6,-3,-3,-2,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3,-3,-5,-2,-3,-2,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-11,-5,-9/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,1,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 -2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1/2,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-17/2,-8,-11/2,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,6,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,0,0,0,1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-19/2,-5,-7,-7,-16,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,5,3,3,2,7/2,2,3,2,5,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,2,2,3,3,5,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5 -1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-3,-2,-3,-1,-1,-1/2,-2,-1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-5/2,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 -1,1,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-4,-4,-9,-4,-11/2,-4,-8,-4,-6,-6,-11,-6,-7,-6,-10,-7,-11,-11,-28,-14,-14,-9,-14,-8,-19/2,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-8,-7,-15,-7,-7,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,1,1,1,9,5,11/2,4,6,4,7/2,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1/2,1,2,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4 -1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-11/2,-11,-6,-7,-6,-10,-7,-11,-10,-27,-13,-13,-17/2,-13,-7,-9,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4 -0,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-13,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-21,-55,-27,-28,-18,-28,-15,-18,-15,-28,-14,-14,-10,-17,-10,-14,-14,-55/2,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-14,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-39/2,-10,-10,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-30,-15,-15,-9,-14,-7,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,16,8,8,6,8,5,7,6,11,6,6,5,7,5,6,5,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,11/2,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,3,4,2,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-9/2,-2,-2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-9 -0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-21/2,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4 -0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-23/2,-12,-30,-15,-15,-9,-15,-8,-9,-7,-15,-7,-7,-5,-9,-5,-15/2,-7,-14,-6,-13/2,-4,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,5,3,4,4,5,3,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3 -0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-5,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2 --2,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-10,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-5,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-7,-4,-15/2,-4,-6,-5,-12,-6,-8,-7,-13,-9,-14,-14,-35,-17,-17,-11,-35/2,-9,-11,-9,-16,-8,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,11,6,6,4,6,4,5,4,6,4,4,4,11/2,4,4,4,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-1,-1,-3 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1 --2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-4,-3,-5,-5,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-7,-6,-12,-8,-12,-12,-29,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-8,-5,-8,-7,-15,-7,-15/2,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,9,5,11/2,4,6,4,4,4,6,4,7/2,3,5,4,9/2,4,7,4,4,3,3,2,3,3,4,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-9/2,-5,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-28,-27/2,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,5/2,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-19,-9,-8,-5,-8,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-22,-15,-23,-23,-55,-27,-26,-17,-26,-14,-17,-14,-51/2,-12,-13,-9,-16,-10,-15,-14,-26,-13,-13,-9,-14,-8,-11,-10,-37/2,-9,-10,-8,-14,-9,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-12,-7,-9,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,3,16,9,9,6,8,5,6,6,19/2,6,6,4,6,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-6,-11/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-30,-29/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-9,-5,-8,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-11/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-17/2,-7,-14,-9,-15,-15,-36,-18,-35/2,-11,-16,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-8,-17,-8,-17/2,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-8,-4,-11/2,-5,-10,-5,-13/2,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,2,2,3/2,2,0,1,3/2,2,2,2,2,2,11,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,5,4,5,3,4,3,4,3,4,4,5,4,11/2,5,7,4,9/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,3,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2 --4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-29,-14,-14,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,3/2,2,2,2,2,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,7/2,5,9/2,7,4,4,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 --8,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-7,-3,-4,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-19,-9,-9,-6,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-9,-6,-10,-10,-20,-9,-9,-6,-9,-5,-6,-4,-10,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-12,-6,-8,-6,-11,-7,-10,-10,-18,-9,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-14,-21,-22,-53,-26,-26,-17,-51/2,-14,-16,-13,-26,-13,-13,-9,-16,-9,-13,-12,-27,-13,-14,-9,-27/2,-8,-10,-9,-18,-9,-10,-8,-15,-9,-14,-14,-31,-15,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-8,-17,-8,-9,-6,-21/2,-6,-8,-7,-16,-8,-10,-8,-27/2,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,3/2,1,1,1,0,1,1,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,12,6,6,4,6,4,5,5,6,4,5,4,15/2,6,8,7,12,7,7,5,6,4,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,3,7,4,4,4,13/2,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,9/2,3,4,3,5,3,3,2,7/2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1/2,1,1,1,3,2,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4 --5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-13/2,-13,-7,-9,-7,-14,-9,-14,-14,-35,-17,-17,-11,-17,-9,-10,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-19/2,-10,-6,-10,-5,-7,-11/2,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-7/2,-5,-4,-10,-5,-6,-9/2,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-7,-4,-13/2,-7,-14,-7,-7,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-6,-9,-9,-20,-9,-9,-6,-10,-5,-11/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-10,-5,-6,-5,-10,-6,-19/2,-9,-18,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-43/2,-22,-52,-25,-25,-16,-26,-14,-16,-13,-25,-12,-27/2,-10,-16,-10,-27/2,-13,-26,-13,-27/2,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,3,17,9,9,6,9,6,7,6,10,6,13/2,5,7,5,6,6,12,6,13/2,4,6,4,5,5,6,4,5,4,6,5,7,7,12,6,13/2,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,9/2,4,7,4,9/2,4,6,4,6,6,10,6,13/2,5,6,4,4,3,5,3,7/2,3,4,3,7/2,3,6,3,3,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-9/2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-22,-22,-51,-25,-25,-16,-26,-14,-16,-13,-25,-12,-13,-19/2,-16,-10,-14,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-17/2,-18,-17/2,-9,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-8,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-10,-9/2,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3 --17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-15,-10,-15,-15,-61/2,-15,-16,-10,-16,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-19,-12,-19,-20,-39,-19,-18,-12,-18,-10,-12,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-30,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-11,-18,-10,-14,-13,-25,-13,-15,-12,-21,-13,-20,-19,-39,-20,-22,-16,-28,-17,-23,-22,-44,-24,-30,-25,-45,-30,-45,-45,-103,-51,-50,-33,-50,-27,-33,-28,-51,-26,-29,-21,-35,-21,-29,-28,-55,-27,-28,-19,-29,-17,-22,-19,-37,-19,-22,-17,-30,-19,-27,-26,-52,-26,-26,-17,-27,-15,-18,-15,-29,-15,-16,-11,-19,-11,-16,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,4,5,33,17,18,12,18,11,13,11,19,10,10,8,12,8,11,10,19,10,10,7,11,7,8,8,14,8,9,7,11,7,10,10,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,3,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-5,-9/2,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-19/2,-10,-15/2,-13,-8,-11,-10,-22,-12,-14,-12,-22,-14,-22,-22,-51,-25,-25,-16,-25,-13,-16,-27/2,-25,-25/2,-14,-10,-17,-10,-14,-27/2,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-9,-13,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-13/2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,17,9,10,7,10,6,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4 --8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-4,-7,-4,-15/2,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-8,-4,-5,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-15/2,-5,-8,-4,-13/2,-6,-11,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-22,-12,-29/2,-12,-22,-14,-43/2,-22,-51,-25,-25,-16,-25,-14,-33/2,-14,-25,-12,-27/2,-10,-18,-10,-29/2,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-10,-8,-15,-9,-27/2,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-3,-5,-5,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,18,10,19/2,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,5,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,7/2,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-5,-3,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-9/2,-8,-9/2,-6,-6,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-34,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-12,-13/2,-9,-9,-18,-17/2,-9,-6,-10,-5,-6,-11/2,-12,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,12,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3 --8,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-1,0,-3,-1,-1,0,0,0,0,0,2,1,1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-9,-5,-6,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-51,-25,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-35/2,-10,-15,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-15,-9,-14,-13,-25,-12,-13,-8,-13,-7,-8,-7,-14,-7,-7,-5,-19/2,-5,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,2,1,1,2,2,5/2,2,3,3,18,10,10,7,21/2,6,8,7,11,6,7,5,7,4,5,5,10,6,6,4,13/2,4,5,5,6,4,4,4,11/2,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,4,4,6,4,4,3,7/2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5 --4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-7/2,-6,-5,-12,-6,-7,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-8,-5,-8,-4,-5,-9/2,-9,-5,-6,-4,-8,-5,-7,-7,-14,-13/2,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,-1/2,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,1,1,2,2,2,2,2,2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2 --5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-9,-7,-14,-9,-14,-14,-35,-17,-33/2,-11,-17,-9,-23/2,-10,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,3,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,7/2,4,4,3,3,3,4,3,3,3,8,4,9/2,3,4,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3 --4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-29,-14,-14,-9,-14,-8,-10,-8,-14,-7,-8,-11/2,-10,-6,-8,-7,-16,-15/2,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-9/2,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,5/2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3 --8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-2,-3,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-20,-13,-20,-21,-54,-27,-27,-17,-26,-14,-18,-15,-55/2,-14,-15,-11,-19,-11,-15,-14,-29,-14,-14,-9,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-13,-27,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,18,10,10,7,11,6,7,6,11,6,6,4,6,4,5,5,10,6,6,4,6,4,4,4,13/2,4,4,3,5,4,5,5,11,6,6,4,4,3,3,3,4,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,2,2,2,2,5/2,2,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-27,-13,-14,-17/2,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-13/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,2,3,2,2,2,3,2,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 --4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-11,-29,-14,-29/2,-9,-14,-8,-19/2,-8,-14,-7,-7,-5,-10,-6,-15/2,-7,-15,-7,-7,-4,-7,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,2,2,2,2,3,2,5/2,2,10,6,6,4,7,4,9/2,4,7,4,4,3,4,3,4,3,6,4,7/2,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,7/2,2,3,2,2,2,3,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-3 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1/2,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-2 --6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-4,-2,-3,-2,-11/2,-4,-7,-7,-9,-4,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-2,0,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,0,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-7,-5,-17/2,-5,-7,-6,-11,-6,-8,-6,-25/2,-8,-12,-13,-36,-17,-17,-11,-17,-9,-11,-9,-18,-9,-9,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,2,1,1,1,2,2,3,3,12,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,9,5,5,3,7/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-4 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,7,4,4,3,5,3,4,3,5,3,3,5/2,4,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2 --4,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-8,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-10,-30,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3 --4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-19/2,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 --8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-22,-10,-10,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-55,-27,-27,-18,-28,-15,-18,-15,-28,-14,-15,-11,-18,-11,-15,-14,-53/2,-13,-13,-9,-14,-8,-10,-9,-17,-9,-11,-8,-15,-9,-13,-13,-23,-11,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-9,-5,-8,-7,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,21/2,6,5,4,5,3,4,4,6,3,3,2,3,3,4,4,12,6,6,4,5,3,3,3,4,3,3,2,2,1,1,0,-3/2,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-28,-13,-13,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,7/2,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,2,2,2,1,2,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-3,-1,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-12,-6,-11/2,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,3,2,5/2,2,2,2,2,2,8,4,9/2,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,7,4,4,3,3,2,5/2,2,2,2,3/2,1,2,1,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2 --2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,3,2,2,2,2,2,2,2,7,4,4,4,11/2,4,4,3,5,3,3,3,4,3,4,4,8,4,4,3,7/2,2,3,2,4,2,2,2,5/2,2,2,2,8,5,5,4,9/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-3 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,5,3,3,5/2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 -0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,1,1,1/2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,0,0,-1/2,-1,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,6,4,4,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,5,3,7/2,3,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,-1,-3 -0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3 --1,0,0,1,1,1,1,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,0,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-2,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-7,-9,-7,-14,-9,-14,-13,-41,-20,-21,-14,-21,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-7,-11,-10,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,1,8,5,5,3,4,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,0,1,1,1,0,0,0,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 -0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,1/2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-21/2,-11,-7,-11,-6,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,3/2,2,3/2,2,1,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 -0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,1,1,0,0,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,-1,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-25,-12,-25/2,-8,-13,-7,-8,-6,-13,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,3/2,1,5,3,5/2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-2,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 -0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,2,2,2,1,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,4,3,3,2,2,1,1,0,1,1,0,0,1/2,0,0,1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-5,-11,-7,-11,-10,-37,-18,-17,-11,-17,-9,-11,-9,-18,-9,-10,-7,-13,-7,-10,-10,-18,-9,-9,-6,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,5,3,3,3,9/2,3,3,3,5,3,3,2,3,2,3,3,7,4,3,2,3,2,2,2,4,2,2,1,1,1,1,1,4,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,2,2,5/2,2,2,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-8 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-24,-11,-11,-7,-11,-11/2,-7,-11/2,-11,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5 -0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,1,2,2,3/2,2,4,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-6,-5,-10,-6,-9,-9,-35,-17,-17,-11,-16,-8,-21/2,-8,-16,-8,-9,-7,-12,-7,-19/2,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-9,-5,-8,-8,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-13,-6,-11/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-3,-5,-5,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1/2,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,1,1,1,1,3/2,2,3,2,3/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-7 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-34,-33/2,-16,-21/2,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,2,3/2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --2,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,9/2,2,2,2,2,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-7,-7,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-19,-12,-18,-18,-69,-34,-33,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-13,-18,-17,-34,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-9,-16,-10,-16,-16,-63/2,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-26,-12,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-13,-13,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-35/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-8,-3,-3,-2,-3,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-9/2,-6,-9/2,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -0,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,-1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-2,-3,-2,-7/2,-4,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-19/2,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-8,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-6,-6,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,4,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1/2,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,-1,-2,-2,-6,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,2,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5 -1,1,2,2,3/2,2,2,1,2,2,2,2,3/2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,2,5/2,2,3,3,4,2,2,2,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,2,3,2,1,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,3,2,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-6,-3,-3,-2,-5/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-6,-5,-19/2,-6,-10,-10,-34,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-8,-8,-16,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-14,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,2,1,1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8 -1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,3/2,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 -1,1,3/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,0,1,3/2,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,3,2,3/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-5,-2,-7/2,-3,-7,-4,-6,-6,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,2,2,3,2,3,2,2,2,2,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,0,-2,-1,-2,-2,2,2,3/2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6 -1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-3/2,-4,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,3/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,3,4,4,4,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,1,1,3/2,2,2,1,1,0,-1,-1,2,1,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,-2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,3/2,1,1,1,0,0,0,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3/2,2,2,2,2,1,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-36,-17,-17,-11,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,1/2,0,0,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 -0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,1,2,1,1,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,2,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,4,2,5/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,1,1,3/2,2,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 --2,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,0,1,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,1,0,-1/2,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,2,2,-2,0,0,0,-1,0,0,1,2,1,1,1,3/2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,1,1,-5,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-4,-15/2,-4,-7,-7,-27,-13,-12,-8,-25/2,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-5,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,3/2,1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,1,1,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8 --1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-16,-15/2,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 --1,0,0,1,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-13/2,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,0,0,1/2,0,1,1,1/2,1,2,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,3/2,1,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-5/2,-2,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7 --1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,1/2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-22,-10,-10,-7,-11,-11/2,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-2,-4,-3,-5,-4,-11,-5,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,1,1,1,1,1/2,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7 --3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,5,3,4,4,6,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,1,3/2,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-19/2,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-44,-22,-22,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-22,-10,-10,-6,-9,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-21/2,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-8,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 --1,0,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-3/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-22,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 --2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-1,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,1,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,1,1,1,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,-2,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-4,-3/2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,2,2,2,3/2,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,2,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,1,0,0,1,1,0,0,-1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-27,-13,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-4,-15/2,-5,-8,-7,0,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-8,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-16,-7,-7,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,0,1,3/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-13/2,-6,-22,-10,-21/2,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,3/2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-20,-19/2,-10,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-3,-7 --4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,1,1,1,1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-22,-11,-11,-7,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-5,-10,-7,-11,-11,-38,-19,-19,-13,-20,-10,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-7,-6,-21/2,-5,-6,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,7/2,2,3,3,4,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-12,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-20,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 --2,0,-1/2,0,-1,0,1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,5/2,3,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,-1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-13/2,-7,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-13/2,-5,-9,-5,-13/2,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,2,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7 --5,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,1,1,1,1,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,3,2,2,1,1/2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-23,-11,-10,-6,-10,-5,-7,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-5,-21/2,-6,-10,-10,-37,-18,-18,-12,-35/2,-9,-11,-9,-18,-9,-10,-7,-25/2,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-10,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,7/2,3,4,3,5,3,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,2,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 --3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-13/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-3/2,0,-2,-1,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-35/2,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-19/2,-9,-18,-9,-19/2,-6,-10,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-9,-20,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,7/2,2,3,2,7/2,4,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1/2,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1/2,-2,-1,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-6,-10,-5,-6,-11/2,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,4,5/2,3,2,3,3,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 --10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-7,-7,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-5,-10,-6,-9,-9,-37/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-45,-22,-22,-14,-21,-11,-13,-10,-19,-9,-10,-7,-11,-7,-10,-9,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-9,-8,-15,-8,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-16,-9,-12,-10,-20,-11,-14,-11,-21,-14,-21,-21,-74,-37,-37,-24,-37,-20,-25,-21,-38,-19,-20,-14,-24,-14,-20,-19,-37,-18,-19,-13,-20,-11,-14,-12,-24,-13,-15,-12,-22,-14,-21,-21,-42,-21,-21,-13,-20,-11,-13,-10,-19,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-33,-16,-15,-10,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-10,-8,-16,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-9,-15,-8,-11,-10,-19,-10,-13,-11,-21,-14,-21,-21,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-1,0,0,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-12,-25 --4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-37,-18,-18,-12,-18,-10,-12,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-17/2,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-15/2,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-13/2,-10,-10,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-22,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-7,-4,-11/2,-5,-9,-5,-6,-5,-10,-6,-10,-10,-38,-18,-18,-12,-18,-10,-12,-10,-19,-9,-19/2,-7,-12,-7,-10,-9,-18,-8,-17/2,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-4,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-10,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3,3,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,0,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,1,1,1,0,1,2,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-11/2,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-13/2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 --3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-22,-10,-10,-7,-11,-5,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-4,-5,-5,-8,-4,-5,-5,-10,-6,-10,-10,-39,-19,-19,-12,-35/2,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-9,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-5,-4,-10,-5,-7,-6,-11,-7,-11,-11,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-5/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-4,-6,-6,0,0,0,1,3/2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6 --2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-16,-7,-7,-4,-7,-3,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,1,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8 --1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1/2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-13,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,0,0,1/2,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-25,-12,-12,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-42,-20,-20,-13,-20,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,-2,-1,-1,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,0,0,0,0,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-5,-5,-11 --1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-3/2,-2,-2,0,0,0,0,0,0,0,0,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,-3,-1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-14,-6,-13/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6 --1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4 --2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,0,0,0,1,3/2,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-1,0,-1,0,-3/2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1/2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-13,-8,-25/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,-1,0,0,0,1/2,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,2,1,1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-16,-7,-7,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-11,-6,-7,-6,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,-1,0,0,1,0,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-7 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-4,-4,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,-1,-2,-2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,3/2,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-3,-1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,-1,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-30,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-48,-24,-24,-16,-24,-13,-15,-12,-23,-11,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-5,-9,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,7/2,2,2,1,0,1,1,1,0,1,1,1,2,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-1,0,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-16 --3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-24,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-3/2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8 --4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,3,2,1,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-5/2,-2,-1,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-5,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-25,-12,-25/2,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-11/2,-4,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-7,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,1,1,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-7/2,-4,-8 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-9/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-28,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-19/2,-6,-8,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,-1,0,0,0,-1,0,1,1,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,1,1,1,1,3/2,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,1,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1/2,0,-1,-1,-1,-1,-2,-2,-7/2,-2,-4,-4,-9 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,1/2,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,-1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,2,2,2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-13,-6,-6,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-9/2,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,3/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5 --9,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,0,-1,3,2,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-6,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-21,-10,-10,-6,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-37,-18,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,0,0,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1/2,0,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --5,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-13,-6,-11/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-9/2,-4,-23,-11,-11,-7,-11,-6,-15/2,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-11/2,-5,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,0,1,0,-1/2,0,-3,-1,-1,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-4,-3,3,2,2,2,5/2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-6,-18,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-14,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-34,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-6,-23/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-5,-8,-8,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-8,-8,-11,-5,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,0,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7 --4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,-1/2,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-22,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-5,-5,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 --7,-3,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-17,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-17/2,-8,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,0,1,2,2,3/2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,-3/2,-1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-5/2,-2,-6 --6,-5/2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-10,-9/2,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-15/2,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6 --13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-3,-3,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-36,-17,-17,-11,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-17,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-17,-17,-11,-17,-9,-11,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-66,-32,-32,-21,-33,-18,-21,-17,-31,-16,-17,-12,-20,-12,-17,-16,-32,-16,-16,-11,-17,-9,-12,-10,-20,-11,-13,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-33,-16,-15,-10,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-45/2,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-12,-19,-19,-27,-13,-14,-9,-15,-8,-10,-8,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-3,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 --6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,2,2,2,2,2,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-10,-16,-8,-10,-8,-15,-15/2,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-15/2,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-13,-6,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7 --6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-34,-16,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-17/2,-9,-14,-7,-7,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-3,-4,-5/2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-23,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,3,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,2,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,0,0,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-1,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-5,-20,-9,-9,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-6,-36,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-17,-8,-8,-5,-8,-4,-6,-5,-7,-3,-4,-3,-11/2,-3,-4,-3,-10,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-14,-7,-7,-4,-15/2,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-8 --3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 --5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,4,2,2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-5,-3,-4,-4,-26,-13,-13,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 --4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,0,0,-1,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,1,1,1/2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-25,-12,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-5,-43,-21,-20,-13,-20,-11,-13,-11,-20,-10,-11,-7,-12,-7,-10,-10,-19,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-4,-11,-5,-5,-4,-7,-4,-6,-5,-19/2,-5,-6,-5,-9,-6,-10,-10,-20,-9,-9,-6,-9,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-5,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,1,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-23,-11,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-11,-5,-11/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3 --9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,1,1,1,1,0,0,5,3,3,2,7/2,2,3,3,5,3,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-37,-18,-18,-12,-18,-9,-11,-9,-17,-8,-8,-6,-21/2,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,1,1,-1,0,0,0,-1/2,0,0,1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,-3,-1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6 --6,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-9/2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-23,-11,-11,-7,-11,-6,-7,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4 --9,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-3,-5,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-15/2,-7,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-4,-4,-34,-16,-16,-10,-17,-9,-11,-9,-16,-8,-17/2,-6,-9,-5,-7,-7,-15,-7,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-17/2,-8,-19,-9,-9,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6 --8,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-33,-16,-16,-10,-16,-17/2,-10,-8,-15,-15/2,-8,-11/2,-9,-5,-7,-7,-14,-13/2,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-13/2,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-7 --17,-8,-8,-5,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,13/2,4,4,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-8,-8,-31/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-39/2,-10,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-15,-14,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-18,-12,-18,-18,-36,-18,-18,-12,-18,-10,-12,-9,-17,-9,-10,-7,-12,-7,-9,-8,-33/2,-8,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-67,-33,-32,-21,-32,-18,-22,-18,-33,-16,-17,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-19,-12,-17,-17,-36,-18,-18,-12,-19,-10,-12,-10,-18,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-11,-25,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-21/2,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-9,-7,-14,-9,-14,-13,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-7,-3,-2,-1,-1,0,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-15 --8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-12,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-34,-33/2,-16,-21/2,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,3,2,2,2,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-4,-8,-5,-15/2,-8,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-36,-18,-35/2,-12,-17,-9,-11,-9,-18,-9,-19/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-8 --7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-11/2,-6,-7/2,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-26,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --13,-6,-5,-3,-9/2,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-23,-11,-12,-8,-23/2,-6,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-16,-7,-7,-4,-15/2,-4,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-42,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-12,-8,-27/2,-8,-11,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-24,-12,-12,-8,-12,-6,-8,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8 --8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-14,-13/2,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-9,-4,-4,-5/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --11,-5,-9/2,-2,-4,-2,-2,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-4,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7 --10,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-19/2,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-18,-17/2,-8,-5,-8,-4,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --19,-9,-8,-5,-8,-4,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-7,-8,-6,-12,-8,-13,-13,-30,-15,-15,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-17,-8,-9,-6,-10,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-8,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-21,-10,-11,-8,-13,-7,-10,-9,-37/2,-10,-12,-10,-19,-12,-19,-19,-36,-18,-18,-11,-17,-9,-10,-8,-33/2,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-9,-24,-11,-11,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-10,-10,-64,-31,-31,-21,-32,-17,-20,-17,-63/2,-16,-16,-11,-19,-11,-16,-15,-29,-14,-15,-10,-17,-9,-12,-10,-39/2,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-16,-9,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-13,-13,-29,-14,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-12 --10,-9/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-9/2,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-15/2,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,2,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-20,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-8,-7,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-11,-6,-7,-6,-10,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-42,-20,-41/2,-13,-21,-11,-13,-11,-20,-10,-10,-7,-12,-7,-21/2,-10,-20,-9,-9,-6,-11,-6,-8,-6,-12,-6,-15/2,-6,-12,-7,-10,-10,-21,-10,-21/2,-6,-10,-5,-13/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,1/2,1,0,0,1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8 --9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-34,-16,-16,-21/2,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-17/2,-5,-8,-9,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-17/2,-5,-8,-8,-15,-7,-8,-6,-19/2,-6,-8,-8,-14,-7,-9,-7,-14,-9,-14,-14,-30,-14,-14,-9,-29/2,-8,-9,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-9,-5,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-16,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-13,-13,-9,-14,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-11,-8,-27/2,-8,-11,-10,-18,-9,-11,-9,-35/2,-12,-18,-18,-38,-19,-19,-12,-18,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-16,-8,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-23/2,-8,-12,-12,-25,-12,-12,-8,-23/2,-6,-7,-6,-13,-6,-7,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-10,-61,-30,-30,-20,-61/2,-16,-20,-17,-30,-15,-16,-12,-39/2,-12,-16,-15,-30,-15,-15,-10,-33/2,-9,-11,-10,-20,-10,-12,-9,-33/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-18,-9,-10,-7,-25/2,-7,-10,-9,-17,-8,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-7,-6,-11,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-25/2,-8,-13,-13,-29,-14,-14,-9,-27/2,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,1,1,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-11 --11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-11/2,-14,-6,-6,-4,-7,-7/2,-5,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-5,-8,-9,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-40,-20,-20,-13,-20,-21/2,-13,-11,-20,-10,-10,-15/2,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-12,-6,-11/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-19/2,-8,-15,-10,-15,-15,-31,-15,-29/2,-9,-14,-8,-19/2,-8,-15,-7,-15/2,-6,-9,-5,-15/2,-7,-15,-7,-8,-5,-9,-5,-13/2,-6,-11,-5,-6,-5,-9,-6,-17/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-27/2,-14,-28,-13,-13,-9,-15,-8,-19/2,-8,-16,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-10,-6,-9,-9,-17,-8,-17/2,-6,-9,-5,-7,-6,-13,-6,-15/2,-6,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-23/2,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-17/2,-6,-10,-5,-7,-7,-13,-6,-15/2,-6,-11,-7,-21/2,-10,-23,-11,-11,-7,-12,-6,-15/2,-6,-10,-5,-6,-4,-8,-4,-13/2,-6,-14,-6,-6,-4,-8,-5,-7,-6,-13,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-25/2,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-8,-8,-15,-7,-15/2,-5,-9,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-59/2,-20,-30,-16,-20,-17,-31,-16,-33/2,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-23/2,-10,-20,-10,-23/2,-9,-16,-10,-31/2,-15,-31,-15,-16,-10,-16,-8,-21/2,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-18,-9,-19/2,-6,-10,-5,-13/2,-6,-13,-7,-8,-6,-10,-6,-19/2,-10,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-13/2,-6,-12,-6,-13/2,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-15/2,-9,-8,-15,-7,-8,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-6,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-11,-8,-13,-15/2,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-12,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-7,-7,-13,-7,-8,-6,-11,-7,-11,-11,-23,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-9/2,-7,-6,-14,-13/2,-7,-9/2,-8,-5,-7,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-11,-11/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-30,-20,-30,-16,-20,-17,-31,-31/2,-16,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-16,-10,-16,-15,-31,-15,-15,-10,-16,-8,-10,-9,-17,-17/2,-9,-7,-12,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-5,-7,-7,-15,-8,-9,-7,-13,-8,-13,-13,-27,-14,-15,-11,-19,-11,-16,-15,-29,-16,-20,-17,-32,-21,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-13,-22,-13,-18,-17,-33,-16,-17,-12,-19,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-37,-18,-18,-12,-20,-11,-13,-11,-20,-10,-12,-10,-18,-11,-16,-15,-31,-15,-16,-12,-20,-12,-16,-15,-29,-16,-20,-16,-30,-20,-30,-30,-61,-30,-30,-19,-29,-16,-19,-16,-29,-15,-16,-11,-18,-11,-15,-14,-28,-14,-14,-10,-17,-10,-13,-11,-22,-11,-13,-10,-19,-12,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-8,-15,-9,-14,-13,-27,-14,-15,-11,-19,-11,-15,-14,-29,-16,-20,-16,-30,-20,-30,-31,-127/2,-31,-30,-20,-30,-16,-18,-15,-27,-13,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-11,-7,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-18,-9,-10,-7,-12,-7,-11,-11,-23,-12,-15,-12,-21,-14,-22,-22,-122,-60,-60,-40,-61,-33,-40,-34,-62,-32,-34,-24,-40,-24,-34,-32,-63,-32,-33,-22,-35,-20,-25,-22,-41,-22,-25,-20,-36,-23,-35,-34,-68,-34,-34,-22,-33,-18,-22,-19,-35,-18,-20,-15,-25,-16,-23,-22,-44,-22,-24,-17,-27,-16,-21,-18,-35,-19,-22,-18,-34,-22,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-17,-11,-18,-10,-14,-13,-26,-14,-16,-13,-23,-14,-21,-20,-41,-20,-20,-14,-22,-12,-15,-13,-24,-13,-15,-12,-21,-13,-18,-18,-36,-18,-19,-14,-23,-14,-20,-19,-38,-21,-25,-21,-39,-26,-40,-40,-81,-40,-41,-27,-41,-23,-28,-23,-42,-21,-22,-16,-26,-16,-22,-20,-39,-19,-20,-14,-24,-14,-18,-16,-31,-16,-19,-15,-26,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-24,-12,-14,-11,-19,-12,-17,-16,-33,-16,-17,-12,-21,-12,-15,-14,-27,-14,-16,-12,-22,-14,-22,-22,-44,-22,-22,-15,-23,-12,-15,-13,-24,-12,-13,-9,-16,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,4,7,4,3,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --17,-8,-8,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-8,-10,-8,-14,-9,-14,-14,-30,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-8,-15,-19/2,-14,-15,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-11/2,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-17,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-15/2,-11,-10,-22,-11,-12,-8,-13,-7,-10,-17/2,-17,-9,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-13/2,-10,-11/2,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-11,-13/2,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-40,-20,-20,-13,-20,-11,-13,-11,-20,-10,-10,-15/2,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-7,-12,-6,-8,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-19/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-8,-5,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-8,-4,-11/2,-4,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-15/2,-6,-10,-6,-15/2,-7,-14,-8,-19/2,-8,-14,-9,-29/2,-14,-30,-15,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-5,-4,-9,-4,-11/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-9,-8,-15,-10,-29/2,-14,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,3,2,3,2,3,3,4,4,7,4,7/2,3,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,2,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-33/2,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-23/2,-9,-17,-11,-33/2,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-8,-23/2,-10,-22,-11,-12,-8,-13,-7,-19/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-19/2,-6,-10,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-19/2,-9,-19,-10,-13,-10,-19,-12,-39/2,-20,-41,-20,-20,-13,-20,-11,-13,-11,-20,-10,-21/2,-8,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-17/2,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-23/2,-7,-12,-6,-15/2,-6,-11,-6,-13/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-21/2,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-12 --11,-5,-5,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-40,-19,-19,-13,-20,-21/2,-13,-11,-20,-10,-11,-15/2,-13,-15/2,-10,-19/2,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-11/2,-7,-6,-12,-11/2,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-12,-6,-6,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-9/2,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-4,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7 --17,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-10,-8,-31/2,-10,-15,-15,-32,-15,-15,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-9,-9,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-14,-9,-15,-15,-32,-16,-16,-10,-29/2,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-13,-6,-6,-4,-15/2,-4,-5,-5,-11,-6,-7,-5,-19/2,-6,-8,-7,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-7,-7,-13,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-32,-16,-16,-10,-29/2,-8,-9,-7,-14,-7,-7,-5,-17/2,-5,-7,-6,-14,-7,-7,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,4,2,2,2,7/2,3,4,4,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-5,-21/2,-6,-10,-10,-60,-30,-30,-20,-59/2,-16,-20,-17,-31,-15,-16,-12,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-12,-9,-16,-10,-16,-16,-33,-16,-16,-10,-33/2,-9,-11,-10,-19,-9,-10,-7,-25/2,-8,-11,-11,-21,-11,-12,-8,-27/2,-7,-9,-8,-18,-9,-11,-8,-31/2,-10,-14,-14,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-23/2,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-6,-21/2,-6,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-41,-20,-20,-13,-41/2,-11,-14,-11,-21,-11,-12,-8,-14,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-25/2,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-6,-21/2,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,5/2,2,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,1,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,1,2,2,2,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3/2,1,0,0,2,2,2,2,3/2,2,2,2,3,2,1,1,1,1,0,0,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11 --9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,1/2,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-6,-11,-11/2,-6,-4,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-15/2,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-6,-6,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-4,-13/2,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-6,-4,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,1,-2,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-40,-19,-19,-12,-19,-10,-13,-11,-20,-10,-11,-8,-14,-8,-21/2,-10,-20,-10,-10,-6,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-21/2,-7,-11,-6,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-13/2,-5,-10,-6,-19/2,-9,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-6,-4,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-8,-4,-5,-4,-6,-4,-6,-6,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-13/2,-6,-12,-6,-17/2,-7,-13,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,4,3,3,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,2,2,2,2,1,1,1/2,1,1,1,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8 --9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-17/2,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-16,-33,-16,-16,-10,-16,-9,-11,-9,-18,-9,-10,-7,-11,-7,-10,-9,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-32,-16,-16,-10,-15,-8,-10,-8,-31/2,-8,-8,-6,-10,-5,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-21/2,-5,-6,-5,-10,-6,-9,-8,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-11,-5,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-34,-17,-17,-11,-16,-8,-10,-8,-29/2,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,3/2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,3,4,4,8,4,4,3,5,3,2,2,5/2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-6,-12,-7,-11,-11,-59,-29,-30,-20,-30,-17,-21,-17,-32,-16,-16,-11,-19,-11,-15,-14,-29,-14,-15,-10,-16,-9,-12,-10,-19,-10,-11,-8,-15,-10,-15,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-9,-10,-7,-13,-8,-11,-10,-22,-11,-11,-7,-12,-7,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-11,-9,-33/2,-8,-8,-6,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-12,-6,-8,-7,-29/2,-7,-8,-6,-11,-7,-10,-10,-17,-9,-10,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-18,-12,-19,-19,-41,-20,-20,-13,-20,-11,-14,-12,-45/2,-11,-12,-9,-15,-8,-11,-10,-18,-9,-10,-7,-12,-6,-8,-7,-29/2,-8,-9,-7,-14,-9,-13,-12,-24,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-3,-1,0,1,1,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,1/2,1,1,1,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-21,-10,-10,-6,-10,-5,-7,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,3/2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-4,-2,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-13/2,-7,-19,-9,-19/2,-6,-9,-4,-11/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,3,5,3,7/2,3,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-5,-10,-6,-21/2,-10,-22,-10,-21/2,-6,-11,-6,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,2,2,1,1,2,2,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,4,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-7 --6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-5/2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-14,-7,-7,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-24,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-9/2,-8,-15/2,-16,-15/2,-8,-9/2,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --10,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-20,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-7,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-15,-7,-7,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-23/2,-6,-7,-5,-11,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,-1,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-4,-5,-4,-15/2,-4,-7,-7,-41,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-11,-8,-25/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-11,-7,-11,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-7,-5,-17/2,-4,-6,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-12,-8,-25/2,-7,-9,-7,-16,-8,-8,-6,-10,-5,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,0,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,3/2,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,1,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-6,-7/2,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-25,-12,-12,-15/2,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-7/2,-7,-5,-8,-8,-16,-15/2,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-4,-11/2,-4,-9,-4,-7/2,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-21,-10,-9,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3,3,6,3,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3,3,0,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-35,-17,-16,-10,-17,-9,-11,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-7,-11,-11,-22,-11,-11,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3/2,1,2,1,1/2,0,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,1,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-14,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-32,-31/2,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-4,-3,-6,-4,-6,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 --15,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-16,-10,-15,-15,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-10,-7,-11,-11,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-9,-5,-7,-7,-15,-8,-9,-8,-15,-10,-15,-14,-30,-14,-14,-9,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-8,-8,-31/2,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-24,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-38,-18,-18,-11,-17,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-35/2,-8,-8,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1/2,1,2,2,2,2,3,3,4,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-63,-31,-30,-19,-29,-15,-18,-15,-28,-14,-16,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-18,-11,-17,-17,-32,-15,-15,-10,-15,-8,-10,-9,-17,-8,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-7,-12,-7,-10,-9,-18,-10,-12,-9,-17,-11,-16,-16,-33,-16,-16,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-10,-10,-43/2,-10,-11,-8,-14,-8,-11,-11,-22,-12,-15,-12,-22,-14,-20,-20,-41,-20,-20,-13,-20,-11,-13,-10,-18,-9,-10,-8,-14,-8,-12,-11,-45/2,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-6,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-5/2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,2,2,2,1,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-13/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,2,2,3,5/2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-31,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-16,-8,-8,-9/2,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-7,-4,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-5 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-15/2,-8,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,4,3,4,3,5,3,3,2,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-32,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-8,-4,-9/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-11,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-11/2,-6,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,2,2,3/2,2,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1/2,0,1,1,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,1,3,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-2,-3,-3,-6 --5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,1,3,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-4,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,2,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,1,2,2,2,2,7/2,3,4,4,6,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,7/2,3,4,3,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-5,-34,-16,-16,-10,-31/2,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-7,-3,-4,-3,-9,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-11,-6,-8,-6,-23/2,-8,-12,-12,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,4,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 --4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-19,-9,-9,-5,-9,-9/2,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,0,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3,3,5,3,5/2,2,3,2,3/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,3/2,2,0,0,1/2,1,0,0,1/2,1,0,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,2,1,1,0,1,0,0,0,1/2,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-6 --10,-5,-5,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-6,-5,-9,-6,-10,-10,-25,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-8,-8,-26,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,0,1,1,1,1,3/2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,7/2,2,3,2,3,2,3,4,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-40,-19,-19,-12,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-3,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-13,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-25,-12,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,4,2,2,2,2,2,3,3,9/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-13 --5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-21,-10,-10,-6,-9,-5,-6,-9/2,-9,-4,-4,-5/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-6,-5,-15,-7,-15/2,-4,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-16,-8,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-23,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-5,-3,-4,-4,-13,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-5,-7,-3,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,2,2,3/2,2,2,2,3/2,1,3,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3/2,1,1,2,3/2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-6 --9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-23,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,-1,0,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,0,1,1,1,2,2,2,3,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-31,-15,-15,-10,-31/2,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-6,-5,-8,-4,-4,-4,-15/2,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-7,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,7/2,3,4,3,5,3,3,2,7/2,2,3,3,3,2,2,2,7/2,3,4,4,2,2,2,2,5/2,2,1,1,3,2,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-19,-9,-9,-6,-10,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-5,-3,-5,-4,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-3,-7 --8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-28,-14,-27/2,-9,-14,-7,-17/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-13/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-11,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,7/2,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-5/2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-4,-2,-2,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-5/2,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,-1/2,-1,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-9,-8,-15,-10,-15,-15,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-33/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-40,-20,-20,-13,-20,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-11,-23,-11,-12,-8,-13,-7,-10,-9,-17,-8,-9,-7,-13,-8,-12,-11,-45/2,-11,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-44,-22,-22,-15,-23,-13,-16,-13,-25,-12,-13,-10,-17,-10,-13,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-9,-37/2,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-9,-4,-4,-2,-3,-1,0,1,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-54,-26,-26,-17,-26,-14,-17,-13,-24,-12,-13,-9,-16,-9,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-41/2,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-59/2,-14,-14,-10,-16,-9,-11,-10,-20,-10,-11,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-11,-23,-12,-15,-12,-21,-14,-22,-22,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-10,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-9,-9,-6,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-6,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,1,1,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-11/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 --8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-10,-6,-10,-5,-6,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1/2,-4,-2,-2,-1/2,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-15,-7,-8,-5,-7,-7/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-10,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-19/2,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-12,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1/2,1,-4,-2,-3/2,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-6,-11,-6,-7,-5,-10,-6,-21/2,-10,-15,-7,-15/2,-5,-7,-4,-9/2,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,4,3,3,3,5,3,7/2,3,4,3,9/2,4,1,1,1,1,2,2,2,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-5,-3,-5,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,1,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-10,-9/2,-4,-3,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-5,-4,-17/2,-5,-8,-8,-9,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,3,3,4,2,2,1,1,1,2,2,1,1,1,1,3/2,2,2,1,2,2,2,1,1/2,0,0,1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-28,-13,-13,-8,-13,-7,-9,-7,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-7,-16,-7,-7,-4,-15/2,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-11,-6,-7,-6,-23/2,-7,-11,-11,-17,-8,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-3,-3,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,5/2,2,3,3,4,3,4,3,5,4,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-11/2,-5,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,0,0,0,0,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,2,2,2,1,2,2,2,2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-11/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,4,3,3,3,0,0,0,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 --3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,1/2,2,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,5/2,3,3,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-7,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-24,-11,-11,-7,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-16,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9/2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-31,-15,-15,-10,-15,-8,-10,-8,-14,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-19/2,-5,-6,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-6,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,1,1,0,-3/2,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,2,3,2,3,3,5,3,4,3,4,3,5,5,-1,0,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-6,-2,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,0,2,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-9,-6,-9,-8,-17 --2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9 --2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,2,2,3/2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-10,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-5,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,5/2,2,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-5/2,-1,-2,-3,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,1,0,0,0,0,1/2,1,2,2,3,2,2,2,7/2,2,3,3,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-14,-7,-7,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,2,2,2,3/2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,9/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-11,-5,-5,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-5,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-39,-19,-20,-13,-20,-11,-13,-11,-20,-10,-10,-7,-11,-6,-9,-8,-35/2,-8,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-22,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,3,5,3,3,3,5,4,5,4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-22 --2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-18,-8,-17/2,-6,-9,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,0,0,-4,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-7,-3,-4,-3,-7,-4,-7,-7,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,-4,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 --1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-3,-6,-2,-2,-1,-5/2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-20,-9,-9,-6,-10,-5,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,-6,-2,-2,-2,-7/2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-13/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,0,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-6,-5/2,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7 --3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-6,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-3,-1,-1,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-7/2,-4,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-6,-4,-7,-7,-8,-4,-7/2,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-10 --3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-5/2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-16,-15/2,-8,-9/2,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 --6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-6,-29,-14,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,0,0,1,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,1,1,2,2,3,2,3,2,7/2,2,2,2,3,3,4,4,-12,-6,-6,-3,-5,-2,-2,-1,-3/2,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-31,-15,-15,-10,-15,-8,-10,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-5,-4,-15/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-14,-9,-13,-13,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,0,0,0,1,1,1,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20 --3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11 --3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,-7,-3,-7/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,0,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-4,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-8,-4,-4,-3,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14 --2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-12 --4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-2,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-9/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-28,-14,-14,-9,-27/2,-7,-8,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,5/2,2,2,2,4,3,4,3,9/2,3,4,5,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-11/2,-3,-5,-4,-7,-3,-4,-4,-15/2,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-8,-7,-13,-7,-8,-6,-25/2,-8,-12,-12,-11,-5,-5,-4,-13/2,-3,-4,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,0,0,0,0,0,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-7/2,-7,-4,-7,-7,-15 --4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-6,-6,-28,-14,-27/2,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-11/2,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,5/2,2,2,2,2,3,4,3,7/2,3,6,4,11/2,6,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-11,-7,-11,-11,-23 --5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-9/2,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-7/2,-7,-9/2,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,6,4,6,6,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-11,-7,-11,-11,-23 --11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-7,-15,-8,-10,-8,-15,-10,-16,-16,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-12,-12,-59,-29,-29,-19,-28,-15,-19,-16,-30,-15,-17,-13,-22,-13,-18,-17,-34,-17,-17,-11,-18,-10,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-20,-10,-10,-7,-12,-7,-11,-10,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,5,5,9,6,9,10,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-53,-26,-26,-17,-25,-14,-17,-14,-27,-13,-14,-10,-17,-10,-13,-12,-23,-11,-12,-8,-12,-7,-9,-9,-18,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-11,-9,-18,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-9,-12,-11,-21,-11,-12,-10,-18,-11,-17,-17,-36,-17,-17,-11,-18,-9,-11,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-11,-14,-12,-22,-15,-23,-23,-21,-10,-11,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-10,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-13,-9,-16,-9,-12,-11,-23,-12,-15,-13,-24,-15,-23,-23,-46 --5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,3,5/2,3,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-10,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-26,-12,-12,-8,-12,-13/2,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-10,-9/2,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-9/2,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --5,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-7/2,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-15/2,-6,-11,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,2,2,4,3,7/2,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-26,-12,-12,-8,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-4,-9,-4,-5,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-3,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 --5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-5,-29,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,11/2,4,5,5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-26,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-16,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-11,-11,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3,2,1,1,1,1,1,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,2,2,0,0,0,1,3/2,2,2,2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-21/2,-7,-11,-11,-22 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-4,-7/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,2,2,2,2,1,1,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,3/2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,5/2,2,4,3,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-9/2,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,1,1,1,0,0,0,0,0,0,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 --2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-5,-5,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-7/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-15/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,3/2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-8,-31/2,-8,-9,-7,-12,-7,-9,-9,-17,-8,-8,-6,-10,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,4,4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-13,-6,-6,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-26,-12,-12,-8,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-17,-8,-8,-5,-9,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-5,-10,-6,-10,-11,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-6,-12,-6,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-7,-11,-11,-23 --1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-1,-5,-2,-5/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-15,-7,-15/2,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,5/2,2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-13 --1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-4,-3/2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --2,-1,-1,0,0,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-13,-6,-6,-4,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-1,-1,-1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-3,-3,-6,-5/2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-5/2,-4,-4,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,0,0,1/2,0,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,0,0,1/2,1,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,0,1,1,1,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-3/2,-1,-2,-1,-3,-3,-15,-7,-15/2,-5,-8,-4,-6,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-9/2,-4,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1/2,0,0,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-43/2,-10,-11,-7,-12,-7,-9,-9,-18,-9,-10,-7,-13,-8,-13,-12,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-8,-33,-16,-16,-10,-15,-8,-10,-9,-17,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-7,-4,-7,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-9,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,-1/2,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-9/2,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-3/2,-1,-4,-2,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12 -0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -0,1,1,1,1/2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,1,1,1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-3,-4,-4,1,1,0,0,1/2,0,0,0,1,1,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,-5,-2,-3,-2,-4,-2,-3,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-10,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13 -0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-12,-11/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-7 -0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,2,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-17,-8,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,3,2,2,2,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,3,2,2,2,2,2,2,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-19,-9,-9,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,3/2,1,1,1,1,1,1,0,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-2,-29,-14,-13,-8,-13,-7,-8,-6,-21/2,-4,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,1,1,1,4,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-18 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-18,-8,-8,-5,-8,-4,-9/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-3/2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-11/2,-6,-12 -0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,0,1,1,1,0,1/2,0,1/2,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10 --2,-1,-1,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-4,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,2,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-28,-13,-12,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-8,-8,-5,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-16,-8,-15/2,-5,-8,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-4,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-26,-12,-25/2,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-11/2,-6,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-5/2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-7/2,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-26,-12,-12,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 --8,-3,-3,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,7,4,4,3,4,2,2,2,2,1,1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-37,-18,-18,-12,-19,-10,-13,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-11,-8,-14,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-53,-26,-26,-17,-26,-14,-17,-14,-26,-13,-15,-11,-18,-10,-14,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-12,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-8,-8,-35/2,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-11,-23,-11,-12,-8,-13,-7,-9,-8,-17,-9,-11,-10,-19,-12,-18,-18,-37 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1/2,-1,0,0,-1/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,4,2,2,2,2,2,2,1,2,1,1,1/2,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-8,-18 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-1/2,-1,-1,0,-1,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,4,2,5/2,2,2,2,3/2,1,2,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-7,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-13/2,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-9,-9,-11/2,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-6,-4,-6,-11/2,-12 --3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,3,2,2,2,2,1,1,1,1,1,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-17/2,-4,-4,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-5,-11,-5,-6,-4,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,3,2,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-3,-1,-1,0,-1/2,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-20 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1/2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-21,-10,-10,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-3,-3,-5/2,-5,-3,-6,-6,-13 --2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-4,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-19,-9,-9,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-33,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-6,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-5,-4,-8,-5,-7,-7,-2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-12,-12,-25 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-3,-5,-3,-6,-6,-13 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-19,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-1,0,0,0,-1,0,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 -0,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-25,-12,-12,-8,-23/2,-6,-8,-7,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-4,-13/2,-4,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 -0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-15/2,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-23,-11,-21/2,-6,-11,-6,-7,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-19/2,-9,-19 -1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-22,-21/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-7/2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-7,-3,-4,-2,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-4,-4,-9,-9/2,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-8,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-28,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-45,-22,-22,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-9,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-38 -1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1/2,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-20 -2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,-2,-1,-3/2,-2,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,1,1,1,1,2,2,3/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,1/2,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-16 -2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-21/2,-6,-8,-6,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-3,-3,-13/2,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-30,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-4,-4,-4,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,0,1,1,1,3/2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-27 -2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 -2,2,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-25,-12,-23/2,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-21/2,-10,-22 -2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20 -3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-19/2,-5,-6,-4,-8,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-8,-6,-11,-6,-8,-8,-33/2,-9,-11,-9,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-8,-33/2,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-9,-9,-26,-12,-12,-7,-11,-6,-8,-6,-23/2,-6,-6,-4,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1/2,0,0,0,-2,-1,-3,-3,-45,-22,-22,-14,-22,-12,-14,-12,-43/2,-10,-11,-8,-13,-7,-10,-9,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,0,1,1,1,2,2,2,1,1/2,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-15,-7,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-16,-8,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 -2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-24,-12,-12,-15/2,-12,-6,-7,-6,-11,-5,-5,-4,-7,-7/2,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-8,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-12,-8,-23/2,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-3/2,-2,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-4,-11/2,-6,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-24,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1/2,0,0,1,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-10,-12,-10,-37/2,-12,-18,-18,-35,-17,-17,-11,-35/2,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-9,-4,-4,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-22,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-43,-21,-20,-13,-41/2,-11,-13,-11,-19,-9,-10,-7,-12,-7,-9,-9,-16,-7,-7,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-9,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-7,-25/2,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-12,-6,-8,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-9/2,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-28,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-3,-5/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-10,-21/2,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-19/2,-9,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-11,-6,-7,-6,-10,-6,-21/2,-10,-22,-10,-10,-6,-11,-6,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-42,-20,-20,-13,-20,-11,-13,-10,-18,-9,-19/2,-7,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-7,-4,-11/2,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-18,-9,-19/2,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-9/2,-6,-4,-8,-5,-8,-15/2,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-15/2,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-6,-11,-13/2,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-11,-11/2,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-41,-20,-20,-13,-20,-10,-12,-10,-18,-9,-9,-13/2,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-13/2,-14,-7,-7,-5,-7,-4,-6,-5,-11,-11/2,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-11,-14,-12,-23,-15,-23,-23,-46,-23,-23,-15,-23,-12,-15,-13,-25,-13,-15,-11,-20,-12,-18,-18,-36,-18,-19,-13,-21,-12,-16,-15,-29,-15,-17,-14,-25,-16,-25,-24,-49,-24,-25,-17,-26,-15,-19,-16,-30,-16,-18,-14,-24,-15,-22,-21,-42,-21,-23,-17,-28,-17,-23,-21,-41,-22,-26,-21,-39,-25,-37,-37,-71,-35,-34,-22,-34,-18,-22,-18,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-16,-11,-19,-11,-14,-12,-24,-12,-14,-11,-20,-13,-19,-18,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,4,6,5,7,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-2,-3,-4,-83,-41,-41,-27,-42,-23,-28,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-17,-15,-28,-15,-17,-14,-25,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-25,-13,-15,-12,-21,-13,-19,-18,-37,-18,-19,-14,-23,-13,-17,-15,-29,-15,-18,-15,-27,-18,-27,-27,-55,-27,-27,-18,-28,-15,-19,-15,-28,-14,-16,-12,-21,-13,-19,-18,-35,-17,-18,-12,-20,-11,-15,-13,-25,-13,-15,-11,-19,-12,-17,-17,-35,-17,-17,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-15,-14,-29,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,-24,-12,-12,-8,-12,-7,-10,-9,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-38,-19,-20,-14,-22,-12,-16,-14,-27,-14,-15,-11,-20,-13,-19,-18,-36,-18,-19,-14,-24,-15,-21,-20,-39,-21,-26,-22,-40,-27,-41,-41,-83 -1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-11/2,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-17/2,-18,-17/2,-8,-5,-9,-9/2,-6,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-3/2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-23,-11,-12,-7,-12,-6,-8,-6,-12,-6,-7,-11/2,-10,-6,-9,-9,-18,-9,-9,-13/2,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-9,-4,-5,-9/2,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-10,-6,-21/2,-11,-23,-11,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-15,-8,-17/2,-6,-12,-8,-23/2,-12,-25,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-21/2,-10,-20,-10,-11,-8,-13,-8,-21/2,-10,-20,-10,-25/2,-10,-19,-12,-37/2,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-15,-7,-8,-5,-8,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-9,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1,2,3,2,2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-17/2,-7,-13,-8,-13,-13,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-8,-4,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-20,-20,-41 -1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-9/2,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-23,-11,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-6,-7/2,-5,-4,-9,-9/2,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-7/2,-6,-3,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27 -1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-10,-11,-24,-11,-11,-7,-23/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-7,-15,-7,-8,-6,-23/2,-7,-11,-11,-25,-12,-12,-8,-23/2,-6,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-9,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-41,-20,-20,-13,-39/2,-11,-14,-11,-22,-11,-11,-8,-27/2,-8,-11,-11,-20,-10,-10,-6,-21/2,-6,-8,-7,-15,-8,-10,-8,-27/2,-8,-12,-11,-24,-11,-11,-7,-23/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-9,-6,-21/2,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-26,-13,-13,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-6,-19/2,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-5,-11,-5,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-11/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-41 -1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-11/2,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-10,-11/2,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,3/2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-13/2,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-11/2,-5,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-28,-14,-14,-9,-13,-7,-17/2,-7,-15,-7,-7,-5,-8,-5,-8,-7,-12,-6,-7,-5,-7,-4,-11/2,-5,-10,-5,-6,-4,-9,-5,-15/2,-7,-16,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,0,1,1,1,2,2,3/2,1,2,2,3/2,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-7,-4,-13/2,-6,-13,-7,-9,-7,-14,-9,-27/2,-13,-27 -1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-5/2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -2,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-25,-12,-12,-7,-11,-6,-8,-6,-25/2,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-11,-6,-8,-7,-27/2,-7,-8,-6,-12,-7,-11,-11,-25,-12,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-9,-17,-11,-17,-16,-38,-18,-18,-12,-18,-10,-12,-9,-33/2,-8,-9,-6,-10,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-5,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,11/2,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,9/2,3,3,3,4,3,3,2,0,0,0,0,0,1,1,2,5/2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-43,-21,-21,-14,-22,-12,-15,-12,-22,-11,-12,-8,-14,-8,-12,-11,-19,-9,-10,-7,-12,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-10,-8,-33/2,-8,-10,-7,-12,-7,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-27/2,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-13,-7,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,0,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,0,0,0,1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,0,0,-1/2,0,0,1,2,2,2,2,-1,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-8,-8,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-20,-41 -2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,1/2,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-22,-21/2,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-11/2,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-21 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-6,-17/2,-8,-21,-10,-19/2,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1/2,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-24,-12,-23/2,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-11/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,0,1/2,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-11/2,-15,-7,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,1/2,0,0,1,0,1,1,1,0,0,0,1,2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-17/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,1,1,0,0,1/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-30,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-4,-4,-10,-5,-6,-4,-17/2,-6,-9,-9,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-11,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27 -3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,3,3,2,3,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,5/2,2,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,3/2,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-5,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-13/2,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-11,-6,-7,-6,-11,-7,-11,-11,-23 -4,3,3,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,2,3/2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-9/2,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22 -7,4,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,0,1,1,1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,1,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-7,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-11,-6,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-8,-10,-8,-14,-9,-14,-14,-36,-17,-17,-11,-18,-10,-12,-10,-19,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-9,-16,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,3,11/2,3,2,2,2,2,3,3,4,3,3,2,3,2,1,1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-48,-23,-23,-15,-24,-13,-15,-12,-23,-12,-13,-9,-15,-9,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-8,-35/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-11,-7,-12,-7,-11,-10,-20,-11,-13,-11,-20,-14,-22,-22,-45 -4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 -4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-4,-2,-9/2,-4,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-6,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-11/2,-6,-4,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-7/2,-5,-7/2,-7,-9/2,-7,-8,-17 -4,2,2,2,7/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,1/2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,4,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,1,1/2,1,2,2,0,0,0,1,1,1,0,0,-2,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,3,4,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-12,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5/2,-1,-2,-3,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-11,-6,-7,-6,-23/2,-8,-13,-13,-27 -3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-3/2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -3,2,5/2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,2,2,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,5/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-3,-5,-5,-9,-5,-6,-4,-8,-5,-9,-9,-20 -3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,-18,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -6,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-23,-11,-10,-6,-10,-5,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-11,-9,-17,-9,-10,-7,-12,-7,-9,-8,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,-1,-7/2,-2,-2,-2,-4,-2,-4,-5,-5,-2,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-2,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-35 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-11/2,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-11/2,-9,-9,-18 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3,3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,1/2,1,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,1,1,1,1,1,1,1/2,0,0,0,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-11,-6,-13/2,-5,-10,-5,-6,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-10,-21 -3,2,3,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,7/2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,7/2,3,4,4,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,6,4,4,3,3,2,2,2,2,1,1,1,3/2,1,0,0,2,1,1,1,1,1,2,2,0,1,1,1,3/2,1,1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,2,2,3/2,1,0,0,2,2,2,1,1,1,0,0,0,1,1,1,3/2,2,2,2,0,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-28,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-2,-3,-3,-14,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -4,5/2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1,-3,-2,-3,-2,-18,-8,-8,-5,-9,-9/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19 -6,4,7/2,3,4,2,5/2,2,3,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,7/2,3,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3/2,1,2,1,1/2,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-13,-7,-8,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-8,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-14,-6,-6,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-7,-19/2,-8,-14,-9,-14,-14,-29 -6,4,4,3,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-2,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-13,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-9,-15/2,-14,-9,-14,-14,-28 -12,7,7,5,6,4,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,2,1,1,0,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,2,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-15,-7,-8,-5,-8,-4,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,0,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-9,-6,-9,-9,-50,-24,-24,-15,-23,-12,-15,-12,-23,-12,-13,-9,-15,-9,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-15,-9,-13,-13,-27,-13,-14,-9,-15,-8,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-5,-9,-9,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-12,-13,-9,-16,-10,-14,-14,-28,-15,-18,-15,-28,-18,-28,-28,-57 -6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,6,4,4,5/2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-8,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-28 -6,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,3,2,7/2,4,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,6,4,7/2,2,4,3,7/2,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,-1/2,-2,0,0,0,-2,0,0,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-9/2,-9,-6,-9,-9,-19 -6,4,4,3,5,3,4,4,4,3,3,3,4,3,4,3,5,3,3,2,5/2,2,1,1,1,1,1,1,3/2,2,2,2,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,5/2,2,4,4,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,7,4,3,2,3,2,3,3,6,4,4,3,9/2,3,3,2,3,2,3,2,3,2,2,2,3,2,1,1,1/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,0,-3,-1,-2,-1,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-7/2,-2,-4,-4,-25,-12,-11,-7,-21/2,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,0,1,1,1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-14,-6,-6,-4,-13/2,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-13,-7,-9,-8,-15,-10,-15,-15,-30 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,5/2,1,1,2,1,2,1,1,1,2,2,2,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -4,3,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,3,2,2,3/2,1,2,1,1,1,3,2,2,1,2,2,3/2,2,5,3,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,1,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,2,2,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-3/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-17,-8,-15/2,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-3/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,1/2,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21 -3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,3/2,1,1,1,1,1,3/2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,7,4,5,4,5,3,3,2,3,2,3,2,3,2,1,1,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,1,1,0,1,1,1,5,3,3,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,0,0,0,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,6,4,4,3,4,2,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-28,-13,-13,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-27/2,-7,-8,-7,-14,-9,-15,-15,-32 -3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,1/2,0,1/2,0,1/2,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-5,-2,-3,-2,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-2,-1/2,-1,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-17 -4,3,3,2,2,2,5/2,2,4,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,4,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,2,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,2,4,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-6,-3,-3,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,0,-2,0,-1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-19 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 -6,4,4,3,7/2,3,4,3,4,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,1,1,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,7/2,3,4,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,-1,-8,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-2,-2,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-17,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,3/2,2,2,2,3,2,2,1,1,1,1,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-7,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,3,3,3,2,3,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,5,3,4,3,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,-1,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-13/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3/2,0,-2,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-4,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,3,2,3/2,1,2,2,3/2,2,1,1,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,0,0,1,1,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 -8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,4,6,6,8,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,9/2,3,4,3,4,2,2,2,3,2,1,1,1,1,2,2,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-31,-15,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,-1,-7/2,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-11,-21,-13,-20,-20,-42 -4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,1,1,2,3/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,1/2,0,1/2,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 -4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,4,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,5/2,2,4,2,5/2,2,1,1,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-11,-7,-11,-11,-23 -3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,2,1,0,0,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 -4,2,2,2,5/2,2,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,7/2,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,9/2,2,2,2,4,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,3,6,4,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3/2,1,1,1,5,3,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-18,-9,-9,-6,-17/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-3,-2,-4,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-27 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 -3,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,3,4,3,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,6,3,3,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,4,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-12,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-5/2,-3,-7,-3,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,1,-1,0,1/2,0,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-11,-7,-11,-11,-22 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,3,2,2,3/2,2,2,2,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-13/2,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,3/2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-9/2,-6,-5,-10,-6,-10,-10,-20 -6,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,7/2,2,2,2,4,3,5,5,9,5,5,4,5,3,2,2,5/2,2,2,2,2,2,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,3,4,4,9,5,5,4,7,5,6,5,15/2,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,7,4,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-27,-13,-13,-9,-14,-7,-9,-8,-29/2,-7,-7,-5,-8,-4,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-22,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1/2,1,2,2,2,2,2,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,2,2,3,2,3,2,3,2,3,2,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-10,-6,-9,-8,-35/2,-10,-12,-10,-18,-12,-19,-19,-40 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,5/2,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-7/2,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1,-3,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,3,6,4,7/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,3,2,5/2,3,6,4,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,3,5,3,3,2,3,2,3,2,3,2,3,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-15/2,-6,-11,-8,-25/2,-12,-26 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,3,3,5/2,3,3,4,3,3,2,3,2,2,5/2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21 -6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9/2,4,5,5,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,3,3,4,3,3,2,3,2,3,3,2,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-23,-11,-12,-8,-25/2,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,1,3/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-9/2,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-20,-10,-10,-6,-21/2,-5,-6,-5,-8,-4,-5,-4,-13/2,-4,-5,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,2,2,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-19,-10,-12,-10,-18,-12,-18,-18,-38 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-5/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-25 -4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-15/2,-8,-23,-11,-23/2,-8,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,-1,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,2,2,3/2,2,3,2,5/2,2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-17/2,-9,-16,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-13/2,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-19/2,-9,-18,-10,-12,-10,-18,-12,-37/2,-19,-39 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,7/2,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-9,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-11,-13/2,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-39 -7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,6,6,10,7,9,9,33/2,9,10,7,10,6,7,6,10,5,5,4,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,3,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,0,0,1,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-10,-6,-9,-9,-18,-9,-11,-9,-16,-10,-16,-16,-46,-22,-22,-14,-22,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-42,-20,-20,-13,-20,-11,-13,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-8,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,4,-19,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-8,-10,-8,-16,-11,-18,-18,-34,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-28,-14,-14,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-14,-11,-20,-13,-19,-19,-38,-19,-21,-15,-24,-14,-20,-19,-39,-21,-25,-21,-38,-25,-38,-39,-79 -4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-3/2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-11/2,-7,-6,-11,-5,-5,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,1/2,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-9,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-39 -5,3,5/2,2,2,2,3/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,5/2,2,5,3,7/2,4,5,4,9/2,5,9,5,5,4,5,3,3,3,5,3,7/2,3,3,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,3,7,4,4,3,4,3,4,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-6,-15/2,-6,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-20,-10,-10,-6,-10,-5,-7,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,0,0,0,1,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-9,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1/2,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27 -5,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,5,3,2,2,5/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,1/2,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-6,-9,-9,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,1/2,1,1,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,2,2,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-17/2,-4,-5,-4,-9,-4,-4,-3,-13/2,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-8,-18,-9,-10,-6,-21/2,-6,-8,-7,-13,-7,-8,-6,-21/2,-6,-10,-9,-20,-10,-10,-7,-25/2,-7,-10,-10,-19,-10,-13,-10,-39/2,-13,-20,-20,-42 -3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,3/2,0,1,1,1,1,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-7,-11/2,-10,-7,-11,-11,-23 -4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,2,2,3,2,3/2,2,2,2,5/2,3,4,3,3,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,2,1,1/2,0,1,1,2,2,1,1,3/2,1,1,1,3/2,1,2,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-7/2,-4,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,1,1,1,3/2,2,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-12,-6,-6,-4,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-3,-6,-3,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-17/2,-7,-13,-8,-27/2,-14,-29 -3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24 -5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,2,3,2,3,3,9/2,3,4,3,5,4,5,5,5,3,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,2,5/2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-2,0,0,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-1,0,0,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,2,2,6,3,3,2,2,2,2,2,5/2,2,1,1,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-4,-5,-4,-9,-6,-9,-10,-20,-9,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-24,-12,-13,-9,-15,-9,-12,-11,-45/2,-12,-14,-12,-22,-14,-22,-22,-44 -3,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-7,-6,-11,-7,-11,-11,-23 -3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,2,2,2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-13,-8,-25/2,-12,-26 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19 -3,2,3,2,3,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,4,4,6,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-15/2,-4,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,5,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-8,-8,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-10,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-8,-16,-9,-11,-9,-33/2,-10,-16,-16,-33 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,3,2,5/2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-13/2,-7,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-4,-3,-8,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-8,-19/2,-8,-14,-9,-14,-14,-29 -2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,3,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1/2,0,1/2,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-13/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-28 -3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,17/2,4,4,3,5,3,3,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-33/2,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,11/2,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-4,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-2,-1,-2,0,0,0,0,1,2,2,3,2,2,2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-3,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-19,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-14,-15,-11,-18,-11,-15,-14,-27,-14,-17,-14,-27,-18,-27,-28,-57 -2,2,2,1,2,2,2,2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-13,-7,-8,-7,-13,-9,-14,-14,-29 -2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,5/2,2,2,2,3/2,2,3,2,3,3,3,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-12,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,0,0,0,1,1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1/2,0,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-2,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-8,-5,-9,-5,-15/2,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-30 -2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 -3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,7/2,2,3,3,2,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,5/2,2,2,3,1,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,1,2,1,1,1,2,2,2,2,-4,-2,-2,0,-1/2,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,0,-1/2,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-9/2,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,0,1,1,1,1/2,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,3,2,3,2,3,3,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-2,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-16,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-16,-11,-17,-17,-34 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-10,-10,-20 -2,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,3/2,1,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,1,1,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-5,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-12,-15/2,-12,-12,-24 -1,1,1,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,-1,0,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,0,1,1,1,1/2,0,0,1,1,1,1,0,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-11,-7,-11,-11,-20,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,7/2,2,3,2,3,3,4,4,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,2,2,3/2,1,1,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-21/2,-6,-7,-5,-10,-6,-9,-9,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-22,-11,-12,-9,-15,-8,-11,-10,-20,-11,-13,-11,-22,-15,-23,-23,-46 -1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1/2,1,1,1,1,1,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-8,-4,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-25 -1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,5/2,2,4,2,3/2,1,2,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,1,1,1,2,2,3,2,2,1,1,1,3/2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-5,-9,-5,-6,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 -0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1/2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,1/2,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,7/2,2,3,3,5,3,3,2,5/2,2,2,1,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,-6,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-12,-6,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3,-13/2,-4,-6,-6,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-17,-8,-7,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,1,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,2,2,5,3,3,2,3,2,3,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,2,1,0,0,-1/2,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,0,-1/2,0,0,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-7,-25/2,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-40 --1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1/2,0,0,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-26 --3,-1,-1,0,-1,0,1/2,0,0,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,7/2,4,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,4,2,5/2,2,4,3,3,3,5,3,2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-11,-7,-21/2,-10,-20,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-5/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-15,-7,-13/2,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3,3,-6,-2,-2,-1,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-9,-9,-9,-4,-9/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-19,-19,-39 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,4,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-11,-11/2,-6,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-8,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-11,-13,-10,-19,-25/2,-19,-19,-38 --7,-3,-2,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,4,7,4,5,5,8,5,7,7,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,8,4,4,3,5,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-10,-13,-11,-21,-14,-22,-22,-40,-20,-20,-13,-21,-11,-14,-11,-20,-10,-11,-7,-12,-7,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-9,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,0,1,1,1,1,1,2,2,3,4,7,4,3,2,3,2,2,2,3,2,3,3,5,4,5,5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-18,-9,-9,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-9,-4,-5,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-10,-18,-11,-17,-17,-34,-17,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-38,-38,-77 --3,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,3,5/2,4,3,3,3,3,2,3,3,4,3,3,2,4,3,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,3,6,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1/2,0,0,-2,-1,-1,-1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-2,-4,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-9/2,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-19,-19,-38 --3,-1,-1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-3,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,5/2,2,4,2,2,2,4,3,3,3,3,2,2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-4,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-14,-6,-13/2,-4,-7,-3,-3,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-12,-7,-9,-9,-19,-10,-25/2,-10,-18,-12,-19,-19,-39 --2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 --4,-1,-1,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,3,-5,-2,-2,-1,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,5,3,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,3,2,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-6,-25/2,-8,-13,-13,-23,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-11/2,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,7/2,2,3,3,4,3,3,2,5/2,2,3,3,7,4,4,3,7/2,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-5,-19/2,-6,-10,-10,-12,-6,-6,-4,-11/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-7,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-8,-17,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-39/2,-13,-20,-20,-41 --2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-9/2,-9,-9/2,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,4,3,3,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,5,3,7/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-17/2,-7,-14,-9,-14,-14,-29 --3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1/2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1/2,0,1/2,1,1,2,2,2,3/2,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,1,0,0,0,1,1,1,4,2,2,2,3,2,2,2,5/2,2,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,-6,-2,-1,0,0,1,1,1,3/2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,2,2,2,1,0,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,1,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-29,-14,-14,-9,-13,-7,-8,-7,-29/2,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-3,-4,-4,-8,-5,-8,-8,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,3,3,4,4,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,0,1,2,2,3,3,4,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,-1/2,0,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-8,-6,-12,-8,-12,-13,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-3,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-8,-7,-27/2,-7,-8,-6,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-12,-15,-13,-24,-16,-24,-23,-47 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,3,2,3/2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,5,3,7/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,3,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-27/2,-14,-28 --1,0,0,0,0,1/2,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-4,-2,-2,-1,-2,0,0,-1/2,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-13/2,-10,-10,-21 --3,-1,-1,0,-1,0,0,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,2,2,5/2,2,2,1,0,0,0,1,3/2,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,-4,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,3,2,3,3,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,3,-1,0,0,0,1/2,0,0,1,3,2,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-14,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-6,-6,-11,-5,-6,-5,-9,-6,-9,-8,-16,-8,-8,-6,-23/2,-6,-9,-9,-16,-9,-11,-9,-18,-12,-18,-18,-37 --1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23 --2,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1/2,1,-3,-1,-1,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,2,2,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,-1,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-21/2,-7,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,4,3,7/2,3,1,1,1/2,0,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-11/2,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-11/2,-6,-13,-6,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-14,-8,-19/2,-8,-15,-10,-16,-16,-33 --2,0,0,0,-1,0,0,1,1,1,0,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-13/2,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,2,2,2,3,5/2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-15,-15,-32 --6,-2,-2,-1,-2,0,1,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-39/2,-10,-11,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-45,-22,-22,-14,-22,-12,-14,-11,-20,-10,-11,-8,-14,-8,-12,-11,-21,-11,-12,-8,-14,-8,-11,-9,-18,-9,-11,-9,-16,-10,-15,-14,-29,-14,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-27,-13,-12,-8,-12,-6,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-6,-29/2,-7,-7,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,2,1,1,1,1,1,1,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15/2,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,11/2,3,3,2,2,2,3,3,4,3,3,3,6,4,5,5,1,1,1,1,2,1,1,1,0,1,1,2,3,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-8,-15,-10,-17,-17,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-31,-15,-16,-12,-20,-12,-17,-15,-30,-16,-20,-16,-30,-20,-30,-31,-63 --2,0,0,0,0,1/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-32 --2,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,-1,-1,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-25,-12,-23/2,-7,-12,-6,-7,-6,-11,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-11/2,-4,-9,-5,-15/2,-8,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-2,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,0,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-9/2,-2,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-9,-16,-10,-16,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-7,-9/2,-8,-4,-6,-6,-11,-6,-8,-6,-12,-15/2,-12,-12,-25 --3,-1,0,0,-1/2,0,0,1,0,0,0,0,1/2,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,-1/2,0,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-27/2,-9,-14,-14,-30,-14,-14,-9,-13,-7,-9,-7,-12,-6,-6,-4,-8,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-10,-6,-19/2,-4,-5,-4,-7,-3,-4,-2,-4,-3,-5,-5,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,2,3,2,1,1,1,1,1,1,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,2,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,1,1,1,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-11/2,-4,-6,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-9,-21,-11,-12,-8,-27/2,-8,-10,-10,-19,-10,-12,-10,-41/2,-13,-20,-20,-41 --2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-11,-5,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-5,-12,-6,-7,-9/2,-8,-9/2,-6,-6,-11,-6,-7,-6,-12,-8,-12,-12,-24 --3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24,-11,-11,-7,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,3,5,3,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-6,-12,-6,-11/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-6,-17/2,-8,-17,-8,-19/2,-6,-12,-7,-19/2,-8,-16,-8,-10,-9,-17,-11,-16,-16,-33 --2,-1/2,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-21/2,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-16,-8,-8,-6,-11,-6,-8,-8,-15,-8,-10,-8,-15,-10,-15,-15,-30 --5,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-7,-3,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-6,-6,-25/2,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-8,-14,-8,-11,-10,-41/2,-11,-13,-11,-20,-13,-21,-21,-44,-22,-22,-14,-22,-12,-14,-11,-39/2,-10,-10,-7,-12,-7,-11,-11,-21,-10,-10,-7,-12,-7,-10,-8,-33/2,-8,-10,-8,-14,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-6,-8,-8,-16,-8,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-29,-14,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-15,-7,-8,-5,-9,-5,-6,-5,-19/2,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1/2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,4,4,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,3,3,2,2,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,7/2,2,2,2,4,3,4,4,8,4,4,2,2,1,1,1,3/2,1,1,1,2,2,3,3,6,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,1,1/2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-16,-9,-11,-10,-39/2,-10,-12,-9,-17,-10,-15,-15,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-17,-31,-20,-30,-29,-59 --2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24,-12,-12,-15/2,-12,-6,-7,-11/2,-10,-5,-5,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-16,-16,-32 --2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,1,-1,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,-1,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-6,-12,-8,-27/2,-14,-28,-14,-14,-9,-14,-7,-9,-7,-12,-6,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-3,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-10,-10,-22,-11,-11,-8,-14,-8,-21/2,-10,-21,-11,-27/2,-11,-20,-13,-39/2,-19,-39 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-7,-7,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-3/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-13/2,-12,-6,-8,-8,-17,-9,-11,-9,-16,-21/2,-16,-16,-33 --2,0,0,0,-1/2,0,-1,-1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-7,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-39/2,-13,-20,-20,-42,-20,-20,-13,-41/2,-11,-14,-11,-20,-10,-10,-7,-12,-7,-10,-10,-22,-11,-11,-8,-25/2,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-8,-12,-7,-9,-8,-16,-8,-8,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-21/2,-6,-9,-8,-14,-7,-8,-7,-27/2,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-15/2,-4,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-10,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,3,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,6,5,9,5,5,4,9/2,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,7/2,2,3,2,3,2,2,2,7/2,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-15/2,-4,-6,-5,-13,-7,-8,-6,-25/2,-8,-13,-13,-27,-13,-14,-9,-27/2,-7,-9,-7,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-9,-7,-15,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-23/2,-6,-8,-7,-15,-8,-10,-8,-15,-9,-14,-14,-29,-14,-14,-10,-16,-9,-11,-10,-21,-11,-12,-10,-35/2,-11,-16,-16,-32,-16,-18,-13,-43/2,-12,-17,-15,-31,-17,-20,-16,-61/2,-20,-30,-30,-60 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-11,-6,-7,-6,-14,-7,-8,-6,-12,-7,-10,-10,-21,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-21/2,-20,-13,-20,-20,-40 --2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-6,-11,-6,-19/2,-10,-19,-10,-21/2,-8,-14,-8,-21/2,-10,-20,-11,-27/2,-11,-20,-13,-20,-21,-42,-20,-41/2,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-12,-6,-17/2,-8,-15,-8,-19/2,-8,-14,-8,-12,-12,-25,-12,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-12,-7,-19/2,-9,-18,-9,-19/2,-7,-11,-6,-8,-8,-14,-7,-17/2,-7,-14,-8,-25/2,-12,-27,-13,-25/2,-8,-12,-6,-17/2,-7,-12,-6,-6,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-7,-4,-13/2,-6,-12,-6,-13/2,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,4,11/2,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,2,2,4,2,5/2,2,3,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,3,4,3,9/2,5,9,5,4,3,3,2,3,2,2,2,3/2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,3/2,1,2,1,1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,1,1,1,1,1,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-9,-14,-7,-17/2,-7,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-15,-7,-8,-5,-8,-5,-7,-7,-13,-7,-9,-7,-12,-8,-12,-12,-26,-12,-25/2,-8,-12,-7,-9,-8,-15,-8,-17/2,-6,-11,-6,-19/2,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-21/2,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-23/2,-10,-21,-11,-25/2,-10,-18,-11,-33/2,-16,-33,-16,-17,-12,-22,-13,-35/2,-16,-31,-17,-20,-16,-31,-20,-30,-30,-60 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-17/2,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-10,-19,-10,-11,-8,-14,-8,-10,-10,-20,-11,-14,-11,-20,-13,-21,-21,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-15/2,-15,-8,-10,-8,-14,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-11,-6,-8,-15/2,-15,-15/2,-9,-7,-14,-17/2,-13,-25/2,-26,-25/2,-12,-8,-12,-6,-8,-7,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-17/2,-18,-8,-8,-11/2,-9,-9/2,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,5,5,9,5,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,2,2,2,2,2,3/2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-13/2,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-13/2,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-15/2,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-12,-10,-20,-21/2,-12,-19/2,-18,-11,-16,-16,-33,-16,-17,-12,-21,-25/2,-17,-16,-31,-17,-20,-16,-31,-20,-30,-30,-61 --5,-2,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-4,-8,-5,-9,-10,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-7,-5,-10,-7,-11,-11,-22,-11,-12,-8,-14,-8,-11,-9,-18,-10,-12,-10,-19,-12,-19,-18,-37,-18,-18,-12,-18,-10,-13,-11,-20,-10,-11,-8,-15,-9,-13,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-7,-11,-11,-22,-11,-11,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-15,-16,-12,-20,-11,-15,-14,-28,-15,-19,-15,-28,-18,-28,-29,-59,-29,-29,-19,-29,-15,-18,-15,-27,-14,-15,-11,-18,-11,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-16,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-16,-10,-14,-14,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-34,-17,-17,-12,-19,-10,-13,-11,-21,-11,-13,-10,-17,-10,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-28,-56,-28,-28,-18,-28,-15,-18,-15,-27,-13,-14,-10,-16,-10,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-11,-8,-15,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-32,-16,-16,-11,-17,-9,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-11,-7,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-29,-16,-19,-16,-29,-19,-30,-30,-60,-30,-30,-20,-31,-17,-21,-17,-32,-16,-16,-11,-19,-11,-16,-15,-30,-15,-15,-11,-18,-10,-12,-11,-21,-11,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-9,-7,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-16,-9,-13,-12,-25,-13,-16,-13,-23,-15,-24,-24,-49,-24,-25,-17,-26,-14,-17,-15,-28,-14,-16,-12,-20,-12,-17,-16,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-20,-16,-29,-19,-28,-27,-55,-27,-28,-19,-31,-17,-22,-19,-37,-19,-22,-17,-29,-18,-27,-26,-53,-27,-28,-20,-32,-19,-26,-24,-48,-26,-31,-25,-46,-31,-47,-47,-94,-47,-47,-31,-48,-26,-31,-26,-47,-24,-26,-19,-31,-18,-25,-24,-47,-23,-24,-16,-25,-14,-19,-17,-32,-17,-19,-15,-28,-17,-25,-25,-50,-25,-25,-17,-27,-15,-18,-15,-28,-14,-16,-12,-21,-12,-17,-16,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-16,-30,-20,-30,-30,-62,-30,-30,-19,-29,-16,-20,-16,-30,-15,-16,-12,-20,-12,-16,-15,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-11,-20,-13,-19,-19,-40,-20,-20,-13,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-14,-14,-28,-14,-14,-9,-15,-9,-12,-10,-20,-11,-13,-11,-20,-13,-20,-20,-41,-20,-21,-14,-22,-12,-14,-12,-22,-11,-13,-10,-17,-10,-15,-14,-29,-15,-16,-11,-19,-11,-14,-13,-25,-13,-16,-13,-23,-14,-21,-20,-41,-20,-21,-14,-23,-12,-15,-13,-25,-13,-14,-10,-18,-11,-17,-16,-32,-16,-18,-13,-21,-13,-19,-18,-35,-19,-23,-18,-33,-22,-33,-33,-67,-33,-34,-23,-35,-19,-23,-20,-37,-19,-21,-16,-27,-16,-22,-21,-41,-21,-22,-16,-26,-15,-20,-18,-35,-19,-22,-18,-33,-22,-33,-32,-65,-32,-33,-22,-35,-20,-26,-23,-43,-23,-26,-20,-35,-23,-34,-33,-67,-34,-36,-26,-42,-25,-35,-33,-64,-35,-41,-34,-62,-41,-61,-61,-123 --2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-5/2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-17/2,-14,-14,-28,-14,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-15/2,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-23/2,-24,-13,-15,-12,-22,-15,-23,-23,-46,-23,-23,-15,-24,-13,-15,-12,-23,-23/2,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-7,-5,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-15/2,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-17/2,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-19/2,-18,-9,-10,-7,-13,-7,-10,-10,-20,-10,-10,-7,-13,-7,-10,-17/2,-17,-9,-10,-17/2,-16,-21/2,-16,-16,-32,-16,-16,-11,-17,-10,-13,-11,-21,-11,-12,-9,-17,-11,-16,-16,-33,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-13/2,-4,-9,-5,-15/2,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-9,-7,-13,-8,-27/2,-14,-28,-14,-27/2,-9,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-14,-9,-29/2,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-15,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-4,-11/2,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-8,-15,-8,-19/2,-8,-14,-9,-13,-13,-27,-13,-27/2,-10,-15,-8,-21/2,-9,-18,-9,-11,-8,-15,-9,-27/2,-13,-26,-13,-27/2,-10,-16,-9,-25/2,-12,-24,-13,-15,-12,-22,-14,-22,-22,-46,-22,-45/2,-15,-24,-13,-31/2,-12,-23,-12,-25/2,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-25/2,-12,-25,-12,-12,-8,-12,-6,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-29/2,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-11,-5,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-21/2,-8,-16,-10,-16,-16,-33,-16,-33/2,-11,-18,-10,-23/2,-10,-17,-9,-10,-7,-12,-7,-21/2,-10,-21,-10,-10,-7,-13,-7,-19/2,-8,-17,-9,-21/2,-9,-17,-11,-16,-16,-32,-16,-16,-11,-18,-10,-13,-11,-21,-11,-12,-9,-17,-11,-33/2,-16,-34,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --1,0,0,0,0,1,1,1,0,0,0,1/2,0,1/2,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20,-19/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-3,-6,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-3,-5,-4,-10,-9/2,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-6,-8,-15/2,-15,-8,-9,-8,-14,-9,-14,-14,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-10,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-5,-10,-6,-10,-10,-22,-21/2,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-13/2,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-12,-6,-8,-7,-13,-13/2,-7,-6,-11,-7,-10,-10,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 --2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-10,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-15/2,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-27/2,-9,-14,-14,-29,-14,-14,-9,-27/2,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-13/2,-3,-4,-3,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-27,-13,-14,-9,-27/2,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-5,-8,-8,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-31/2,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-15,-7,-7,-5,-17/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-9,-8,-15,-8,-9,-7,-27/2,-9,-14,-14,-28,-14,-15,-10,-16,-9,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-22,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-29/2,-8,-12,-11,-22,-11,-11,-7,-12,-7,-9,-8,-15,-7,-8,-6,-25/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-6,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-15,-8,-10,-8,-29/2,-10,-15,-15,-33,-16,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-17/2,-4,-6,-5,-11,-5,-6,-4,-13/2,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-4,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-5,-19/2,-6,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-15,-15,-33,-16,-16,-11,-35/2,-10,-12,-10,-17,-8,-9,-7,-25/2,-8,-11,-10,-21,-10,-11,-8,-25/2,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-31,-15,-16,-11,-35/2,-10,-13,-11,-19,-10,-11,-9,-17,-11,-16,-15,-34,-17,-18,-13,-22,-13,-18,-16,-31,-17,-20,-16,-30,-20,-30,-30,-61 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-6,-9,-5,-6,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-34 --2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-5,-13/2,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-7,-4,-5,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-11/2,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-17/2,-8,-15,-8,-9,-7,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-23,-11,-12,-8,-14,-8,-12,-11,-21,-11,-27/2,-11,-21,-13,-20,-20,-41 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-5,-9,-9/2,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-19/2,-12,-9,-17,-11,-17,-17,-35 --5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,-1,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-5,-19/2,-5,-6,-4,-7,-4,-5,-5,-12,-6,-7,-5,-8,-4,-6,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-29,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-6,-25/2,-6,-8,-6,-12,-8,-13,-13,-25,-12,-12,-8,-12,-6,-7,-6,-23/2,-6,-7,-5,-9,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-33/2,-8,-9,-6,-11,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-8,-17,-8,-8,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-27/2,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-35/2,-9,-10,-8,-14,-8,-12,-12,-28,-14,-14,-9,-15,-9,-12,-11,-22,-12,-14,-12,-23,-15,-22,-22,-46,-22,-22,-15,-23,-12,-15,-12,-22,-11,-11,-8,-13,-8,-11,-10,-24,-11,-11,-7,-12,-7,-9,-8,-15,-8,-9,-7,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-10,-6,-9,-9,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-16,-34,-16,-15,-9,-14,-7,-9,-7,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-18,-9,-9,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-23/2,-6,-6,-5,-9,-6,-9,-9,-23,-11,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-15,-15,-33,-16,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-35/2,-10,-12,-10,-18,-11,-17,-17,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-9,-16,-10,-15,-15,-34,-17,-18,-13,-22,-13,-18,-17,-33,-18,-21,-17,-31,-21,-32,-32,-64 --2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-7/2,-7,-4,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-16,-10,-16,-16,-33 --2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-8,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-7,-7,-5,-7,-4,-5,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-8,-4,-5,-5,-13,-6,-13/2,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-16,-8,-17/2,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-18,-9,-9,-7,-12,-7,-9,-9,-18,-9,-11,-9,-17,-11,-17,-17,-35 --1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-6,-3,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-13/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-4,-6,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26 --3,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-19,-9,-9,-6,-19/2,-5,-6,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-21/2,-6,-10,-10,-19,-9,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-13,-6,-7,-5,-9,-5,-7,-7,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-12,-6,-6,-4,-11/2,-3,-5,-4,-9,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-7,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-10,-6,-21/2,-5,-6,-5,-11,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-25/2,-7,-10,-10,-21,-11,-13,-11,-21,-14,-21,-21,-43 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-5,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-26 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-5/2,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-5/2,-2,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-7,-3,-7/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-25/2,-13,-26,-12,-25/2,-8,-12,-6,-8,-7,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-12,-6,-6,-4,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-9,-17,-11,-35/2,-17,-35 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-9/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-23/2,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --6,-3,-3,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-3,-6,-6,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-7,-13,-6,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-27,-13,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11,-5,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-8,-17,-9,-12,-10,-18,-11,-17,-17,-29,-14,-14,-9,-14,-7,-9,-7,-12,-6,-7,-5,-10,-6,-8,-7,-29/2,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-30,-14,-14,-9,-15,-8,-11,-9,-17,-9,-10,-8,-14,-9,-13,-12,-51/2,-13,-14,-10,-17,-10,-13,-12,-24,-13,-15,-13,-24,-16,-24,-24,-47,-23,-23,-15,-22,-12,-15,-13,-24,-12,-13,-9,-14,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-9,-8,-17,-9,-10,-7,-13,-8,-12,-12,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-10,-15,-8,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-23/2,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-7,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-29/2,-7,-8,-5,-8,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-9,-16,-10,-16,-15,-32,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-7,-13,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-29,-14,-15,-10,-16,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-59/2,-14,-15,-11,-18,-11,-15,-14,-28,-16,-20,-17,-31,-20,-31,-31,-64 --2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-8,-4,-4,-7/2,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,-32 --2,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,0,1,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,3,2,2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,1,1,1,-2,0,-1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-3,-1,-3/2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-23,-11,-23/2,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-11,-5,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-5,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-3/2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-11,-7,-11,-11,-23 --3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-9,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-5/2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-7/2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-19/2,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-5,-6,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-13,-7,-8,-7,-27/2,-9,-14,-14,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-9,-5,-7,-6,-11,-7,-11,-11,-18,-9,-9,-6,-19/2,-5,-7,-6,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-36 --1,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,0,0,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-17/2,-7,-13,-8,-25/2,-13,-27 --1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --2,-1,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,1,1,2,2,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-4,-5,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-20,-9,-9,-6,-10,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-11,-17,-17,-28,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-15/2,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-25/2,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-31/2,-8,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-14,-11,-21,-14,-22,-22,-45 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-4,-8,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-24 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,-2,0,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-7/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 --2,0,0,0,1/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1/2,0,0,0,1,1,2,2,3/2,1,0,0,-6,-2,-2,-2,-7/2,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-17,-8,-8,-5,-9,-4,-5,-4,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-12,-8,-23/2,-6,-7,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-4,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-12,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-13/2,-4,-5,-5,-13,-6,-7,-5,-17/2,-4,-6,-5,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-9,-9,-19,-9,-10,-7,-13,-7,-9,-8,-17,-9,-12,-10,-35/2,-11,-17,-17,-36 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-13,-8,-25/2,-13,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-11,-7,-10,-10,-21,-10,-9,-6,-10,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-19/2,-6,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-17/2,-8,-17,-9,-21/2,-8,-16,-10,-33/2,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-5,-3,-5,-9/2,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-9/2,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-16,-17/2,-10,-8,-16,-10,-16,-16,-33 --2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-37/2,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-8,-4,-4,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-13,-8,-12,-12,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-12,-7,-11,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-10,-16,-16,-34,-17,-17,-11,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-7,-8,-6,-12,-7,-10,-9,-37/2,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-24,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-25,-25,-42,-20,-20,-13,-19,-10,-13,-10,-19,-9,-10,-7,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-6,-8,-7,-15,-7,-7,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-25,-12,-13,-9,-15,-9,-13,-12,-24,-12,-14,-11,-20,-13,-20,-20,-42,-21,-21,-14,-21,-11,-14,-11,-20,-10,-11,-9,-16,-10,-14,-13,-25,-12,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-11,-17,-18,-37,-19,-20,-14,-22,-12,-16,-14,-26,-13,-15,-12,-22,-14,-20,-19,-38,-19,-20,-15,-25,-15,-20,-18,-34,-18,-22,-18,-33,-22,-33,-33,-66 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-4,-3,-6,-4,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-13/2,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 --1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-6,-2,-5/2,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-4,-3,-6,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-8,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-11/2,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-8,-15/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-15/2,-6,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-19/2,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-11/2,-11,-7,-10,-10,-22 -0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-11/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,1/2,0,0,0,3,2,2,2,3/2,2,2,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-11,-6,-7,-6,-21/2,-7,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-23/2,-7,-10,-9,-18,-10,-12,-10,-35/2,-11,-17,-17,-34 -1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-2,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,1/2,0,1,1,1/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,1/2,1,0,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 -1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-3/2,-1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-13/2,-10,-10,-21 -1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,1,1,1,2,2,2,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,4,3,3,2,3,2,2,1,1/2,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-13,-6,-6,-4,-6,-3,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-14,-7,-8,-7,-27/2,-7,-8,-6,-10,-5,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-25/2,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-15,-7,-8,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-9,-9,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-8,-13,-8,-12,-11,-43/2,-12,-14,-11,-21,-13,-20,-20,-40 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-11,-6,-7,-11/2,-11,-7,-10,-10,-21 -2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-1,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1/2,0,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-4,-4,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-4,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-11,-23 -2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-8,-17 -2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,3/2,1,0,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-3,-4,-4,-15/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-15/2,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-8,-9,-8,-15,-9,-14,-14,-29 -2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-5,-4,-9,-5,-8,-8,-18 -3,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-1,0,0,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1/2,0,1,1,0,0,-1,0,1/2,0,2,2,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-9/2,-4,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-6,-13,-8,-12,-12,-25 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 -4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-4,-7,-7,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-12,-8,-12,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-12,-12,-33,-16,-15,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-27/2,-6,-7,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-7,-13,-7,-9,-7,-13,-8,-11,-11,-23,-12,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23 -3,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-17,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-19,-9,-9,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-9,-4,-5,-3,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-7,-8,-6,-12,-8,-13,-13,-26 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15 -3,2,2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,3,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-19/2,-9,-19 -3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-3/2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-5,-3,-7,-4,-5,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-17 -5,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-4,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,7/2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-10,-5,-7,-6,-21/2,-5,-5,-4,-7,-4,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-15/2,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-11,-17,-17,-34 -4,5/2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-7/2,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18 -5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-11,-22 -5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-13,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-11/2,-9,-9,-18 -8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-3,-2,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,0,-1/2,0,0,0,-1,0,1,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,7/2,2,3,3,4,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,1,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-8,-8,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-8,-4,-5,-4,-17/2,-6,-9,-9,-25,-12,-12,-7,-19/2,-5,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-17/2,-5,-8,-8,-14,-7,-7,-4,-15/2,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-23/2,-6,-9,-8,-19,-10,-12,-9,-33/2,-10,-16,-16,-33 -6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-11/2,-16,-8,-8,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 -8,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,3,4,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-17/2,-8,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,4,2,2,2,2,2,5/2,3,5,3,3,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-25,-12,-23/2,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-11/2,-4,-7,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-11,-6,-17/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-16,-32 -8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-5/2,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-24,-23/2,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-9,-10,-8,-15,-10,-15,-15,-31 -15,8,8,5,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-17,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-11,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,1,1,1,2,2,4,3,3,3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-37,-18,-19,-13,-20,-11,-13,-11,-22,-11,-13,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-9,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-31/2,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-15,-7,-8,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-49,-24,-23,-15,-23,-13,-16,-13,-24,-12,-13,-10,-17,-10,-13,-12,-24,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-30,-15,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-11,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-16,-9,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-10,-9,-19,-10,-11,-9,-17,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-15,-30,-15,-17,-12,-20,-12,-16,-15,-31,-17,-20,-17,-32,-21,-31,-31,-62 -8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-8,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-17/2,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-9,-9,-24,-23/2,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -7,4,9/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-8,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,-1,-2,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,5/2,2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-10,-5,-5,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-5,-9,-5,-6,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,2,2,7/2,2,3,3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-14,-7,-7,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-26,-13,-13,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-7,-16,-8,-10,-8,-29/2,-10,-15,-15,-30 -4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1/2,0,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-11/2,-6,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-21 -4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,0,1,1,1,2,2,2,2,5/2,2,2,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-7,-5,-8,-8,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,3/2,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,-5,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-4,-4,-4,-8,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-27,-13,-13,-9,-14,-7,-8,-6,-25/2,-6,-6,-4,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-15,-10,-16,-16,-33 -4,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -3,2,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,1,1,1/2,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,1,2,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19 -2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,1,2,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 -3,2,2,2,5/2,2,2,2,4,2,2,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,-1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-2,-11/2,-3,-5,-5,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,1,1/2,1,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,2,2,2,2,1,1,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,1,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7/2,3,4,4,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,1,3/2,2,2,2,2,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-3,-3,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-21/2,-7,-11,-11,-24 -2,1,1,1,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-15 -2,1,1,1,2,2,3/2,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,-2,0,0,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-2,-3,-2,-4,-2,-4,-5,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,3/2,2,2,2,2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-6,-6,-15,-7,-15/2,-4,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-19/2,-10,-21 -2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,2,3,5/2,4,3,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,1/2,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-13/2,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20 -3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,1,1/2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5/2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-23/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-13,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-8,-5,-9,-5,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-40 -2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1/2,-1,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-2,-1,-2,-1,-3,-3/2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-20 -2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,1,1,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,7/2,3,4,3,4,4,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-13/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,1,1,0,0,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-10,-6,-19/2,-10,-20 -2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,0,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,9/2,4,5,5,0,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-16,-7,-7,-4,-6,-3,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-2,-3,-2,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-21 -2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,-1/2,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-3,-5,-5,-12 -2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,1,1,2,2,2,2,2,1,2,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,4,3,4,4,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 -1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,2,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,3,2,2,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,2,3,7,4,3,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,3,5,3,4,3,5,3,3,3,7,4,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,2,2,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-5,-10,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-6,-11,-7,-12,-12,-26 -1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,1/2,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-14 -1,1,1,1,2,2,3/2,2,0,0,1/2,1,2,2,2,2,0,1,1,1,0,1,3/2,2,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,2,1,1,1,0,1,3/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,3,2,5/2,2,5,3,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,9/2,4,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-5,-8,-8,-17 -1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,0,1,1,1,0,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-7/2,-6,-6,-13 -0,0,0,0,1/2,1,2,2,0,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1/2,0,0,0,-3,-1,-1,0,-1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,2,3/2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,2,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,4,3,7/2,3,4,4,7,4,4,3,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,3,3,2,4,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,-1,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-3/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,0,1,1,1,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,6,4,9/2,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,5,5,7,4,9/2,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-1,0,1/2,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-5,-13,-6,-13/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-11,-23 --2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,0,1,0,1,1,2,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,4,7,4,4,7/2,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,7/2,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-1,0,0,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-11/2,-10,-6,-10,-11,-23 --5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,1,1,2,2,2,1,1,1,2,2,5/2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,3,3,4,4,6,3,3,3,4,3,4,5,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,4,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,1,2,2,2,2,4,3,4,4,7,4,5,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,4,5,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,4,4,7,5,6,5,8,5,7,7,27/2,7,7,5,8,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,3,5,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-11,-6,-8,-7,-15,-8,-10,-9,-17,-11,-18,-18,-29,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-14,-14,-59/2,-14,-15,-10,-16,-9,-12,-10,-20,-10,-12,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-47 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,5/2,3,5/2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,5,3,4,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,3/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,1,1,1,0,1,3/2,2,2,1,1/2,0,2,2,3/2,1,1,1,3/2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,2,2,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,7,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,7/2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,4,6,4,5,5,7,4,9/2,4,5,3,7/2,3,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-16 --3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,0,0,0,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,3/2,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,7/2,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,4,4,11/2,4,6,6,6,4,4,3,7/2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,5,4,13/2,4,6,6,8,5,5,3,4,3,3,3,4,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-5,-4,-6,-3,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-25 --1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,2,3/2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,3,0,0,0,1,1,1,1/2,0,2,1,1,1,2,2,3/2,2,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,2,2,0,0,0,1,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16 --3,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,4,3,3,2,3,2,2,2,3/2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,2,5/2,1,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,15/2,4,5,4,6,4,6,7,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13/2,4,4,4,7,5,8,8,11,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,5,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-20,-9,-9,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-3,-14,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-31 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,5,5,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 --2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,4,9/2,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,1,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-8,-18 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,3/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 --2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,2,7/2,2,2,2,4,2,2,2,3/2,2,2,1,3,2,2,1,1/2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,0,0,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,5,3,3,2,7/2,2,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,7/2,3,4,4,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,5,5,6,4,4,3,9/2,3,3,3,5,3,4,3,4,3,4,4,4,2,2,2,7/2,2,3,3,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,5/2,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,2,2,2,3/2,1,1,1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-17/2,-4,-6,-6,-12,-6,-8,-6,-25/2,-8,-13,-13,-26 --1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,3/2,2,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,3,2,3,5/2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1/2,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-16 --2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,1,1,1,1,1,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,2,1,1/2,1,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,1,1,3/2,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,3,3,9/2,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,7/2,3,4,2,2,2,4,2,2,2,3,2,7/2,4,8,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,7/2,3,3,2,7/2,4,4,3,3,3,4,3,4,4,7,4,9/2,4,7,5,7,7,11,6,6,4,5,3,7/2,3,5,3,7/2,2,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-2,-6,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1/2,0,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-9/2,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-12,-7,-11,-11,-23 --4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,3/2,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,4,4,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,11/2,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,3,3,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9/2,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,5/2,2,2,3,5,3,4,4,8,5,5,4,7,5,8,8,6,4,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,16,9,9,6,8,5,7,6,10,6,7,5,8,5,6,5,17/2,4,4,3,5,4,5,5,9,6,7,6,10,7,9,9,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,17/2,5,6,4,6,4,5,5,10,6,7,6,10,7,10,11,19,10,10,7,9,5,5,4,7,4,5,4,5,3,4,4,15/2,4,4,3,4,3,4,3,5,3,3,2,3,2,2,1,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,7/2,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-14,-9,-14,-14,-28,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-6,-21,-10,-10,-6,-10,-5,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-14,-9,-14,-13,-25,-12,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-45/2,-11,-12,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-22,-22,-46 --1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1/2,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,3/2,1,2,1,1/2,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,10,5,5,4,6,3,3,3,5,3,7/2,2,4,3,3,3,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-25 -0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,5/2,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18 -0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,2,3,3,3,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,-1,0,-1,0,-1,0,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,2,2,4,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,0,0,0,1,3/2,2,2,1,2,2,2,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,4,3,9/2,4,5,5,5,3,3,3,9/2,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,8,5,6,4,13/2,4,6,6,12,7,7,5,6,4,5,4,6,4,4,4,11/2,4,5,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,5,7,7,11,6,6,4,11/2,3,3,2,5,3,3,3,9/2,3,3,3,6,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-21,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-14,-6,-6,-4,-11/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-9,-8,-15,-10,-15,-15,-30 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-18 -0,0,1/2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,2,1,1,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,3,2,5/2,3,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,5,3,4,3,4,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,4,3,5,4,11/2,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,5,3,7/2,3,4,3,7/2,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,4,7,5,6,6,8,5,5,4,5,3,3,2,4,2,5/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24 -1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,2,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,5,3,3,3,4,5/2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -1,1,1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,2,2,1,1,1,1,0,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,9/2,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,9/2,3,4,3,4,3,3,3,7,4,4,3,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,1,3,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,1,2,2,2,2,3,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,5,7,7,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,10,7,9,9,17,9,10,7,11,6,7,6,11,6,7,6,9,6,7,6,9,5,5,4,5,4,5,5,9,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,4,2,2,1,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-32,-15,-15,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20,-10,-11,-7,-12,-6,-8,-6,-25/2,-6,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-43/2,-12,-14,-11,-21,-14,-21,-21,-42 -1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,11/2,10,11/2,6,4,6,4,4,4,6,4,4,7/2,5,7/2,4,4,6,3,3,5/2,4,3,3,3,6,4,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,9/2,5,4,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,3,5/2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,2,2,3/2,1,1,1,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,3/2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,3,2,5/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,5,3,7/2,3,3,2,7/2,4,5,3,7/2,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,13/2,6,11,6,13/2,4,7,4,5,4,7,4,9/2,4,6,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,13/2,6,11,6,13/2,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,7,4,11/2,5,7,4,11/2,5,8,6,15/2,7,9,5,5,4,5,3,7/2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3/2,2,1,1,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-22,-10,-21/2,-6,-10,-5,-6,-5,-11,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-27/2,-14,-28 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,6,11/2,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,11/2,9,5,6,4,6,4,4,4,6,4,4,7/2,5,4,5,9/2,8,9/2,5,4,6,7/2,4,4,6,4,4,4,6,9/2,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,2,2,2,2,0,0,0,1,3/2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,6,3,3,2,5/2,2,2,1,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-13/2,-4,-6,-6,10,6,6,4,11/2,4,4,3,5,3,3,2,7/2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,5,3,4,3,9/2,3,4,4,6,4,4,3,9/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,4,6,6,12,7,7,5,13/2,4,6,6,11,6,6,5,17/2,6,9,9,16,9,9,6,8,5,6,5,10,6,6,5,15/2,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,13,7,7,6,9,6,7,6,10,6,6,6,19/2,7,10,10,13,7,7,5,7,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,7/2,3,4,3,3,2,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-12,-11,-33,-16,-16,-10,-33/2,-9,-11,-9,-17,-8,-9,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-19,-9,-9,-6,-17/2,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-8,-27/2,-8,-11,-10,-19,-10,-13,-11,-20,-13,-20,-20,-41 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,3/2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,7/2,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-22,-10,-10,-6,-11,-6,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1/2,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,10,6,11/2,4,6,4,4,3,5,3,7/2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,5/2,2,3,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,9,5,5,4,6,4,5,5,7,4,9/2,4,6,4,13/2,6,11,6,7,5,6,4,5,5,9,6,13/2,5,8,6,17/2,8,16,8,17/2,6,9,6,13/2,6,9,5,11/2,4,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,10,7,19/2,9,16,9,9,7,10,6,13/2,6,10,6,13/2,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,13/2,6,10,7,21/2,10,13,7,15/2,5,7,4,5,4,7,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-23/2,-11,-33,-16,-16,-10,-17,-9,-21/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-9,-5,-7,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-3,-4,-3,-8,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-6,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,11,6,6,4,6,4,4,3,5,3,4,5/2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,11/2,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,11/2,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,9/2,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,9,13/2,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,8,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-33,-16,-16,-10,-17,-9,-10,-9,-17,-17/2,-10,-7,-12,-7,-10,-9,-19,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-7/2,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-9/2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-13,-13/2,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 --1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,1,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,11/2,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,3,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,3,4,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,10,8,13,8,11,11,20,12,14,12,20,14,20,20,26,13,13,9,12,7,7,6,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-8,-9,-6,-11,-7,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-68,-33,-33,-22,-34,-19,-23,-19,-34,-17,-19,-14,-24,-15,-21,-20,-39,-19,-20,-14,-22,-12,-16,-14,-26,-14,-16,-13,-23,-14,-21,-21,-42,-20,-20,-13,-21,-11,-13,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-14,-9,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-11,-9,-18,-9,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-11,-17,-17,-34,-16,-16,-11,-17,-9,-11,-10,-19,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-12,-14,-11,-19,-12,-17,-17,-34,-17,-18,-12,-20,-12,-16,-15,-29,-16,-19,-16,-29,-19,-28,-28,-58,-29,-29,-19,-29,-16,-20,-17,-32,-16,-18,-13,-23,-14,-19,-18,-35,-18,-19,-13,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-27,-27,-54,-27,-28,-19,-30,-17,-22,-19,-35,-18,-20,-15,-26,-16,-24,-23,-46,-23,-24,-17,-28,-17,-23,-21,-41,-22,-26,-22,-40,-26,-40,-40,-80 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,11,6,6,9/2,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,5/2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,7,9/2,6,6,10,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-9/2,-10,-5,-7,-6,-11,-7,-11,-11,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-6,-8,-13/2,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-15/2,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-8,-15,-15/2,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-10,-11/2,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-9,-17,-17/2,-10,-7,-12,-8,-12,-11,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-39 -0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,9/2,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,9/2,4,8,4,9/2,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,1,1,1,1/2,0,0,0,1/2,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,4,4,6,4,5,5,9,5,11/2,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,11/2,6,10,6,7,6,10,7,21/2,10,14,8,8,5,7,4,9/2,4,5,3,3,2,4,2,5/2,2,4,2,2,2,3,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-10,-5,-7,-6,-12,-7,-11,-11,-33,-16,-16,-10,-16,-8,-21/2,-9,-16,-8,-9,-6,-11,-6,-19/2,-9,-20,-10,-10,-6,-10,-6,-15/2,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-6,-9,-5,-6,-6,-12,-6,-13/2,-5,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-14,-8,-19/2,-8,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-15/2,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-21/2,-9,-16,-8,-19/2,-7,-12,-8,-23/2,-11,-22,-11,-23/2,-8,-14,-8,-11,-10,-21,-11,-13,-11,-20,-13,-19,-19,-39 -0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,7/2,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,8,9/2,5,4,5,3,4,3,4,3,3,2,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,9/2,5,4,7,5,7,7,10,6,6,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-6,-3,-4,-7/2,-8,-9/2,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-14,-7,-9,-7,-13,-8,-13,-13,-26 -0,1,1,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,7/2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3/2,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,3,2,2,2,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,13/2,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,11/2,4,6,5,8,5,5,4,13/2,4,6,6,11,6,7,6,19/2,7,10,10,15,8,8,6,8,5,5,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-5,-7,-6,-23/2,-8,-12,-12,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-23/2,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-22,-10,-10,-6,-19/2,-5,-6,-5,-9,-4,-5,-3,-11/2,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-15,-8,-10,-8,-29/2,-9,-14,-14,-30,-15,-15,-10,-15,-8,-9,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-15,-8,-9,-7,-27/2,-8,-12,-12,-29,-14,-14,-10,-31/2,-8,-10,-9,-16,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-27/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-13,-20,-20,-40 -0,1,1,1,0,1,1,1,0,0,0,1/2,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,6,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1/2,0,0,1,1,1,-1,0,1,1,0,0,1/2,1,0,0,1/2,0,1,1,3/2,1,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,7,4,4,3,5,3,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,3,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,9/2,5,8,4,9/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,4,4,6,4,4,4,7,4,9/2,4,7,5,7,7,10,5,5,4,6,4,4,3,3,2,3,2,3,2,3/2,1,4,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-9/2,-4,-7,-4,-15/2,-8,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-8,-4,-6,-5,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-14,-6,-6,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-13,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-19/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-20,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-11/2,-4,-9,-5,-15/2,-7,-15,-7,-15/2,-6,-9,-5,-15/2,-6,-14,-7,-9,-7,-14,-9,-27/2,-13,-27 -0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,0,0,0,1,1,1,-1,0,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,3,2,3,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-6,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-5,-8,-8,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-4,-6,-5,-12,-6,-7,-6,-11,-7,-10,-10,-22 --1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,9,5,5,4,5,3,4,4,13/2,4,4,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,9/2,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,7,7,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,6,6,8,5,5,5,8,5,6,6,21/2,6,8,7,12,8,11,11,15,8,8,5,7,4,4,4,11/2,3,3,2,3,2,2,2,6,3,3,2,2,2,2,1,1/2,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-16,-16,-10,-16,-8,-10,-8,-31/2,-8,-9,-7,-12,-7,-9,-8,-20,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-3,-4,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-11,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-18,-9,-9,-6,-9,-5,-8,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-18,-9,-10,-7,-11,-6,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-12,-24,-12,-12,-9,-15,-9,-12,-11,-22,-12,-14,-11,-21,-13,-20,-20,-40 -0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,1,0,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-11/2,-10,-6,-10,-10,-21 -0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,6,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,1,1,1,1,1,1,1,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,-1,0,0,1,0,0,0,1,2,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,7/2,4,7,4,5,4,8,5,7,7,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-19,-9,-9,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-13/2,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-23 -0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,5/2,5,3,4,7/2,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -0,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,1,1,1,1,2,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-3,8,5,5,4,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,2,2,2,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,2,2,2,0,0,0,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,4,4,11/2,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,8,5,6,5,9,6,8,8,12,7,7,5,7,4,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,-2,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-5,-3,-6,-6,-24,-12,-12,-7,-21/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-3,-9,-4,-5,-4,-17/2,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-7,-14,-9,-13,-13,-28 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-3/2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,4,5/2,2,2,3,2,2,2,5,3,4,7/2,6,4,5,5,8,9/2,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-3/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-4,-8,-5,-8,-8,-17 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,9/2,3,5,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,5/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,3,4,3,7/2,3,5,4,5,5,7,4,9/2,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,3,3,6,4,9/2,4,7,5,13/2,6,10,6,11/2,4,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,-1,0,0,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-1,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-17,-8,-17/2,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-14,-7,-15/2,-6,-10,-6,-15/2,-7,-13,-7,-8,-6,-12,-8,-23/2,-12,-24 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,5,3,4,3,5,3,3,2,3,5/2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1/2,0,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,10,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,0,0,0,0,-1,0,0,0,0,1,2,2,4,3,4,4,15/2,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,8,4,4,3,5,3,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-6,12,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,10,5,5,4,6,4,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,5,6,5,8,5,7,7,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,11/2,3,3,2,3,2,3,3,5,3,4,4,6,5,7,8,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,11,18,10,10,7,9,5,6,5,8,4,4,3,4,3,3,2,7/2,2,2,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-39,-19,-19,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-32,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-11,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-15,-23,-23,-47 -0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,1,0,1,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-2,-1,-2,-2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,5/2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5/2,4,3,4,3,4,3,4,4,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24 -0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,3,2,2,2,4,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,1,1,3/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-5/2,-2,7,4,7/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,1,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,3,4,3,7/2,3,4,3,9/2,4,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,3,3,6,4,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,11/2,4,6,4,4,3,5,3,5/2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,0,0,0,0,0,0,1/2,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-23/2,-12,-25 -0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,3/2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-4,-5,-7/2,-7,-5,-8,-8,-17 --1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,-1,1,1,2,2,3/2,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,7,4,4,3,4,3,3,2,4,2,2,2,7/2,2,3,3,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,2,2,0,1,1,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,4,3,3,3,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,9/2,3,4,5,7,4,4,3,4,3,4,4,6,4,4,3,7/2,2,3,3,8,5,5,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,11,6,6,4,11/2,4,4,3,6,3,3,2,7/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-1,0,0,0,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-20,-10,-10,-6,-21/2,-6,-7,-5,-9,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-13,-13,-27 -0,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1/2,1,3,2,2,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,-1,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,3,3,3,2,2,2,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,4,3,4,4,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,8,4,9/2,3,4,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-13,-6,-11/2,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-20 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1/2,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,5/2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,11/2,7,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 -0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,2,2,9/2,3,3,2,3,3,4,4,2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,6,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,8,4,4,3,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3/2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,19/2,6,6,6,10,7,10,9,12,7,7,5,6,4,4,3,9/2,2,2,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34 -0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-11/2,-9,-9,-18 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,3,2,2,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,4,3,7/2,4,1,1,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,8,4,9/2,3,4,3,3,3,3,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-3,-7,-3,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15 -0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,5/2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,4,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,5/2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,3,5,4,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,13/2,4,5,5,7,4,4,4,11/2,4,4,4,5,3,3,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,8,6,8,9,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-17,-8,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-27 -1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,5/2,4,3,4,7/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,4,5,4,9/2,4,5,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,1,1,3/2,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-4,-3,-7,-4,-13/2,-6,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-11/2,-6,-11,-6,-8,-6,-12,-8,-25/2,-12,-26 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,5/2,3,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,5,7/2,4,4,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,9/2,6,4,4,7/2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-25 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,0,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,9/2,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,-1,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,9/2,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,6,4,4,4,7,5,7,7,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,15/2,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,5,9,6,8,8,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,29/2,8,8,6,10,6,7,6,10,6,7,5,8,6,8,8,14,8,9,7,11,7,9,9,17,10,11,9,16,11,16,17,25,13,13,9,13,7,8,7,11,6,5,4,5,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-12,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-31,-15,-16,-11,-17,-9,-11,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-25,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-11,-11,-7,-12,-7,-9,-8,-17,-9,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-10,-14,-13,-27,-14,-17,-14,-26,-17,-25,-25,-50 -1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,1,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,7/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-13/2,-12,-6,-6,-3,-5,-5/2,-3,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-7/2,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-13/2,-8,-7,-13,-8,-12,-12,-25 -1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,1,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,7/2,4,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,4,3,7/2,2,4,2,5/2,2,5,3,7/2,3,5,4,5,5,1,1,1/2,0,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,4,7/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-12,-12,-25 -1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,1,1,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,5/2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1,1,2,2,2,2,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,2,2,2,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,0,0,1,1,1,0,-1,0,-1,-1,3,2,1,1,1,1,2,2,4,2,2,2,5/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,0,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,1,1,1,2,2,4,3,3,2,7/2,3,4,3,2,2,2,2,5/2,2,2,1,2,2,2,2,5/2,2,2,3,4,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,5,3,3,3,9/2,4,5,5,0,1,1,1,1/2,1,1,2,2,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,4,8,4,4,3,9/2,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,13,7,8,6,8,5,5,4,6,4,4,3,3,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-4,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-26 -1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,0,1,1,1,0,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1/2,0,0,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,9/2,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 -0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,1,0,1,1,1,1,1,1,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,0,1,1,1/2,0,2,2,2,1,2,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,3,3,2,3,2,3,2,5/2,2,4,3,7/2,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,-1/2,-1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-17 -0,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,2,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,-1/2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-2,-3,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-7,-7,-14 --2,0,0,1,1,1,2,2,5/2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,-4,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,1,1/2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,5/2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,7/2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,0,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,7,4,4,3,4,2,2,2,7/2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,11/2,4,4,3,5,3,4,4,2,2,2,1,1,1,2,2,7/2,2,2,2,3,2,3,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,10,5,5,4,6,4,6,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,4,13/2,4,4,3,4,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-2,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-24,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-15,-7,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-8,-4,-6,-6,-25/2,-6,-8,-6,-12,-8,-12,-12,-26 -0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,1,1,2,2,2,2,5/2,2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,0,0,1/2,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,5,3,4,3,3,2,5/2,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,3,3,5,3,4,4,6,4,11/2,6,7,4,9/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,1,1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-3,-7,-4,-7,-7,-15 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,9/2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11 --1,0,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,3/2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,3/2,2,2,2,2,2,2,1,1/2,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,3,3,4,3,3,2,2,1,1,0,-1,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,7/2,3,4,3,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,2,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,4,6,4,5,4,13/2,4,6,7,10,6,6,4,11/2,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1/2,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,9/2,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,1,0,0,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,1,1,0,0,0,0,1/2,1,0,1,1,1,2,2,2,2,3,2,1,1,-1,0,1/2,1,0,1,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,2,1,2,2,5/2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,3,3,3,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-3/2,-2,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-5,-8,-8,-17 --2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,3/2,1,1,-1,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-16 --5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3,3,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,13/2,4,3,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,11,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,13/2,4,4,4,6,4,5,5,9,6,7,6,9,6,9,9,15,8,8,5,7,4,5,4,5,3,4,3,5,3,3,3,5,3,3,2,3,2,1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-4,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-24,-12,-12,-8,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-5,-4,-9,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-8,-33/2,-8,-9,-6,-10,-5,-7,-7,-14,-7,-9,-8,-16,-10,-16,-16,-33 --2,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,5,3,4,7/2,5,4,5,5,8,5,5,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-3/2,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 --3,-1,-1,0,-1,0,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,0,-1,0,1,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,5,3,5/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,3,4,2,5/2,2,3,3,4,4,5,3,4,4,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,3/2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17 --2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --3,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,7/2,3,4,4,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,4,11/2,4,6,6,11,6,6,4,11/2,3,3,3,3,2,2,2,5/2,2,3,3,1,1,1,1,2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-2,-2,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1/2,0,0,-1,-2,-1,-2,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-4,-3,-8,-4,-5,-4,-17/2,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --2,-1,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,1,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,7/2,3,4,2,5/2,2,4,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,9,5,9/2,3,5,3,3,3,4,2,5/2,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-12,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-14 --1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,1,1,2,2,2,3/2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1/2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,9/2,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-13 --2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,1,1,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,5,3,3,2,3,2,1,1,1/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,15/2,5,6,6,10,7,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,1,1,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-25 -0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-6,-6,-13 -0,1,1,1,-1,0,1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,7/2,4,6,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,4,5,4,9/2,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-7,-7,-15 -0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-12 --1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-3,-1,-1,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,9/2,3,4,4,9,5,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,3,4,3,3,2,5/2,2,3,3,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,5,8,5,6,5,17/2,6,8,9,15,8,7,5,13/2,4,5,4,8,4,4,3,7/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-9/2,-3,-5,-5,-2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,11/2,5,4,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-5,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14 --2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,5,3,4,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,11/2,5,10,6,11/2,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,4,3,7/2,3,5,4,9/2,4,9,5,11/2,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,15/2,5,8,5,11/2,4,7,4,4,3,4,3,3,3,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-11/2,-5,-12,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-15,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,7/2,5,4,6,5,10,6,6,4,6,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,4,5/2,3,2,4,5/2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,7/2,4,4,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,0,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,4,5,5,8,5,5,3,4,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,6,8,9,35/2,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,9,5,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,9,9,16,9,11,9,15,11,16,16,27,14,15,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,2,1,0,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-6,-9,-9,-37,-18,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-14,-8,-12,-12,-47/2,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-16,-11,-17,-17,-32,-15,-15,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-16,-9,-12,-10,-19,-10,-13,-10,-19,-12,-18,-17,-35,-17,-18,-12,-20,-11,-13,-11,-22,-11,-13,-10,-17,-10,-14,-13,-26,-13,-13,-9,-15,-8,-11,-9,-18,-9,-11,-9,-16,-10,-16,-16,-33,-16,-17,-11,-17,-9,-12,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-16,-11,-17,-10,-13,-12,-24,-12,-14,-11,-21,-14,-21,-21,-43 --2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,5/2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,3,3,6,4,4,3,4,5/2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,5/2,3,5/2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-9/2,-9,-9/2,-6,-9/2,-9,-11/2,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,3,7/2,3,4,3,7/2,3,3,2,3,3,4,3,3,3,6,4,4,3,4,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,4,5,4,5,5,9,6,13/2,6,8,6,17/2,8,14,8,15/2,6,8,5,5,4,8,5,5,4,5,4,9/2,4,6,4,4,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,6,4,7/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,2,2,3/2,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-11/2,-4,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-13/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 -0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,9/2,6,6,10,6,6,4,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-11/2,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-14 --1,0,0,0,0,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,6,4,4,3,7/2,3,4,4,4,3,3,2,3,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,9/2,3,4,5,10,6,6,4,13/2,4,5,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,3,3,3,2,2,2,7/2,3,4,4,6,4,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,9,5,6,4,11/2,4,6,6,10,6,6,6,19/2,6,9,9,14,8,8,5,13/2,4,4,4,8,5,5,4,5,4,5,4,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,5,3,3,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-5/2,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-19,-9,-8,-5,-17/2,-4,-6,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-9,-9,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22 -0,1/2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-11/2,-12 -1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,7/2,4,7,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,3,3,2,2,2,3,3,7,4,9/2,3,4,3,9/2,4,8,5,5,4,8,5,7,7,9,5,5,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,4,3,3,2,3,2,3/2,2,2,1,1,1,1,1,1,1,4,2,5/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-14 -1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,3/2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 -1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-3,-1,-1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,1,1,1,1,2,3,2,3,3,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,-1,0,1,1,2,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,2,-1,0,0,0,0,1,1,1,3/2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,1,1,1,1,2,2,5,3,3,2,3,2,3,3,9/2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,4,2,2,2,2,2,2,2,9/2,3,4,3,5,4,5,4,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,10,6,6,5,8,5,6,6,23/2,7,8,7,11,7,10,10,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,7/2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,1,1/2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-2,-1,-1,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-6,-6,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21 -1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,3/2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,1,1/2,0,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,3/2,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,3,2,7/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,3,3,3,3,2,7/2,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,7/2,4,6,4,4,4,6,4,13/2,6,8,4,9/2,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,5/2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-11/2,-6,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-11/2,-6,-12 -2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,5,3,3,3,5,4,5,5,6,7/2,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,-1,1,1,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,0,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,3/2,1,1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,-1,0,0,1,2,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-3/2,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,5,3,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,11,6,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,9/2,3,3,3,6,4,4,3,9/2,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,0,0,0,0,-3/2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-11/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-8,-8,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,5/2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,6,7/2,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-4,-4,-8 -2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,1,0,1,3/2,1,1,1,2,2,1,1,2,2,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,2,2,3/2,2,2,2,5/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,0,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,5,3,3,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,7/2,3,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,2,4,3,7/2,4,10,5,5,4,5,3,3,3,5,3,5/2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,7,4,4,3,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,9/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,3/2,1,2,2,3/2,1,0,0,0,0,-1,0,-3/2,-2,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-13,-6,-11/2,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-12 -2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,2,3/2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1/2,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,4,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,9,5,5,7/2,4,3,3,3,4,5/2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,5/2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,4,4,7/2,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12 -3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,3,-1,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,10,5,5,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,7/2,2,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,2,4,2,2,2,3,2,3,3,6,4,5,5,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,17,9,9,6,9,6,7,6,11,6,6,4,6,4,4,4,15/2,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,23/2,6,7,5,8,5,6,6,11,7,8,7,13,9,13,13,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7/2,2,2,1,1,1,0,0,0,0,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,1,1,1,1,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-23,-11,-11,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-12,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-9,-23,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1/2,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,3/2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12 -3,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,1,2,5/2,2,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,5,3,3,2,3,2,3/2,2,3,2,2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,9,5,11/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,5,5,8,6,8,8,8,4,9/2,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,-1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-13/2,-6,-10,-4,-9/2,-2,-5,-2,-7/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-9/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13 -3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,3/2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,6,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9 -6,4,4,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,5/2,2,2,3,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,5/2,2,3,3,7,4,3,2,3,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,-1,-1,2,2,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,-1/2,0,0,-1,-1,0,-1,0,-3/2,-1,-2,-1,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,-1,6,3,3,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,3,3,2,7/2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,4,4,5,3,4,3,9/2,3,4,4,6,4,4,3,5,4,5,5,6,4,4,4,11/2,4,4,4,6,4,6,5,17/2,6,8,8,8,5,5,4,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-13,-6,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-7,-7,-14 -4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,5,5,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 -6,4,4,3,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,5/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,5/2,2,3,2,3/2,1,2,2,2,2,2,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,0,0,-5,-2,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,0,0,1/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,5/2,2,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,3,2,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,5,5,5,3,7/2,3,5,3,4,3,5,4,5,4,7,5,7,7,7,4,9/2,4,4,3,7/2,3,5,3,4,3,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-6,-3,-9/2,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 -6,3,3,5/2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,3/2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,3/2,2,2,2,3/2,2,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1/2,0,1/2,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-10 -10,6,6,4,5,3,4,3,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,11/2,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,3,3,3,4,2,2,1,1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,1,1,1,0,0,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,-1,0,0,1,1,1,0,0,1/2,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,4,3,5,5,8,5,5,3,4,3,3,3,6,3,3,2,3,2,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,8,5,5,4,6,4,6,5,9,6,8,7,12,8,12,12,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,1,2,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,4,3,3,3,4,3,3,2,5/2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-4,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-19 -6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,5,3,3,3,4,3,4,7/2,6,4,5,4,7,5,7,7,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-9/2,-10 -8,4,9/2,3,4,3,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,7/2,3,4,2,5/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,0,-1/2,0,-1,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,5,3,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,11/2,4,7,5,7,7,9,5,11/2,4,6,4,4,4,5,3,7/2,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-11 -7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,3/2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1/2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,5/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-8 -11,6,6,4,11/2,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,7/2,2,2,2,3,2,3,2,3,3,4,4,3,2,2,2,3/2,1,1,1,3,2,3,2,3,3,4,4,5,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-2,-2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1/2,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,-7,-3,-3,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,2,2,2,2,3,3,4,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,5,3,3,3,9/2,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,9/2,3,4,4,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,3,3,4,3,3,3,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,12,7,7,5,15/2,5,6,5,8,4,4,3,9/2,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,1,1,2,0,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,1,4,3,3,2,2,2,2,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-15 -8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,3,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,9,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,3,2,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,7/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,5,4,5,4,10,5,5,4,5,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,13/2,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,5,7,4,9/2,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,4,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,4,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,4,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,9/2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-5/2,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-5,-4,-8,-5,-7,-7,-15 -21,11,12,9,13,8,9,8,13,7,7,5,7,5,6,5,9,5,5,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,6,6,10,6,6,4,6,3,3,2,3,2,2,2,2,2,3,3,6,3,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,18,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,10,17,12,18,18,25,13,13,9,12,7,8,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,4,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,5,3,3,2,3,2,3,2,3,2,1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-19/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-21,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,9/2,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,-1/2,-2,-2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,13/2,10,10,13,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 -12,7,7,5,8,5,11/2,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,2,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,9/2,4,6,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,7/2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,7/2,3,4,3,7/2,3,4,3,9/2,4,10,5,5,4,6,4,7/2,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,5,4,5,4,11/2,5,8,5,6,5,8,6,10,10,14,8,15/2,5,6,4,5,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,0,0,1/2,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-15 -8,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,3,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,2,2,3,3,4,7/2,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,9/2,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 -12,7,7,5,15/2,4,5,4,7,4,4,3,9/2,3,4,4,5,3,4,3,7/2,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,6,4,4,3,7/2,3,4,3,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,5,5,8,4,4,3,5,3,3,2,4,3,3,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,0,0,1,1,0,0,-1/2,0,0,-1,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,-7,-3,-4,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,1,1,2,2,2,2,4,3,3,2,5/2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,1,3/2,2,2,1,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,11/2,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,10,6,6,4,11/2,3,3,3,5,3,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,5/2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,14,7,7,5,7,4,5,5,8,5,5,4,5,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,2,2,2,2,3/2,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-17 -7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,3/2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,2,5/2,6,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,8,9/2,4,3,5,3,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-10 -8,5,5,4,6,4,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,2,2,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,6,4,9/2,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,1,1/2,1,2,1,1/2,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,4,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,3,7,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,4,3,3,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,10,6,11/2,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,-1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13 -7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,3,2,3,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,5/2,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-11 -13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,11/2,3,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,9/2,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,2,2,2,3/2,1,1,1,0,0,-1,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,0,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-2,5,3,3,2,3,2,3,2,7/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,7,4,4,3,5,3,3,3,5,4,5,4,7,5,6,6,13,7,7,5,6,4,4,4,13/2,4,4,3,4,3,3,3,8,5,5,4,5,3,3,3,9/2,3,3,3,4,3,5,5,4,3,3,2,2,2,3,3,11/2,4,4,3,5,3,4,4,10,5,5,4,6,4,6,6,21/2,6,8,6,10,7,10,11,16,9,9,7,10,6,7,6,17/2,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,4,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-21/2,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-5,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-12,-7,-11,-11,-22 -8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,5/2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,2,2,2,3/2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12 -9,5,5,4,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,3,3,4,2,5/2,3,4,3,3,3,4,3,4,4,5,3,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,4,9/2,4,7,4,4,3,5,3,3,2,2,2,3/2,2,2,2,2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,5/2,2,3,2,3/2,1,1,1,1/2,0,0,0,1/2,0,2,1,1,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,0,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,3/2,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,4,3,3,2,4,2,2,2,4,3,4,3,5,3,4,4,9,5,5,4,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,7/2,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,7/2,3,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,3/2,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-6,-6,-12,-5,-5,-3,-7,-3,-4,-3,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14 -8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,5/2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,7/2,4,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,-1/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,4,6,4,6,6,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1/2,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11 -13,7,6,4,13/2,4,5,5,8,5,5,4,13/2,4,5,5,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,13/2,4,4,4,8,5,6,5,7,4,5,5,9,5,5,4,6,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,7/2,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,1,1,1,2,2,5,3,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,2,1,1,1,3/2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,3,4,4,5,3,3,3,9/2,4,5,5,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,10,6,7,6,10,7,10,9,13,7,7,5,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1/2,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1/2,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-9,-9,-6,-17/2,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-9,-6,-9,-9,-19 -9,5,4,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,6,7/2,4,3,5,3,4,7/2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,1,1,1,0,0,0,0,0,-1/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,5/2,3,5/2,3,7/2,7,4,5,4,7,5,7,6,8,5,5,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,3/2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,1/2,1,1,0,0,0,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 -13,7,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,7/2,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,5,3,5/2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1/2,1,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,11,6,6,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,4,3,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,7/2,3,4,3,4,5,9,6,13/2,5,9,6,9,9,11,6,6,4,6,3,3,2,5,3,3,2,4,3,3,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-7,-7,-16,-8,-15/2,-5,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-5,-4,-8,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-9/2,-4,-7,-5,-8,-8,-17 -13,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,5/2,4,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1/2,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,7/2,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,4,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,9/2,8,5,6,5,8,6,8,17/2,10,6,6,4,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,1,1,1,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-15/2,-16 -24,13,13,9,12,7,9,8,14,8,9,7,10,6,7,6,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,8,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,11/2,4,4,3,5,3,4,4,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,5,7,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,6,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,20,10,10,7,9,5,6,5,8,4,4,3,5,4,5,5,19/2,6,6,4,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,7,6,9,6,9,9,17,10,11,9,15,11,16,16,18,9,9,6,8,5,5,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,0,0,0,0,0,1,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-6,-13,-7,-8,-7,-13,-9,-15,-15,-28,-14,-14,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-9,-18,-9,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-8,-35/2,-8,-9,-6,-11,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-33 -13,7,7,5,7,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -14,8,15/2,6,8,5,11/2,5,8,5,5,4,5,4,9/2,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,4,5,5,8,4,9/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-1,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,3/2,1,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4,3,7/2,3,6,4,7/2,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,4,4,5,4,11/2,6,11,6,11/2,4,6,4,4,3,5,3,3,2,4,3,7/2,4,6,4,7/2,3,3,2,3,3,3,2,3,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,5,9,5,6,5,8,6,9,9,10,6,11/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-8,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18 -10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,7/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,6,5,7,7,8,9/2,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -15,8,8,6,17/2,5,6,6,8,4,4,4,11/2,4,5,5,7,4,4,3,9/2,4,5,5,6,4,4,4,13/2,4,6,6,11,6,6,4,9/2,3,3,2,5,3,3,3,4,3,3,3,5,3,4,4,11/2,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,6,4,4,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,6,4,4,3,7/2,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,12,7,7,5,13/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,4,3,4,4,11/2,4,6,6,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,12,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-4,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-19/2,-6,-10,-10,-20,-10,-10,-6,-21/2,-6,-8,-7,-13,-6,-6,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22 -9,5,5,4,6,7/2,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,8,5,5,7/2,5,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,5,3,3,2,4,2,2,2,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,7/2,3,5,3,3,3,5,3,4,4,6,4,7/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,4,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,6,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,10,6,11/2,4,6,4,4,4,5,3,7/2,3,4,3,7/2,3,6,4,7/2,2,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,7/2,3,5,3,3,2,3,2,7/2,4,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,0,1,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-4,-3,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-17/2,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17 -11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,5/2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,5/2,4,4,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,6,4,6,4,6,5,17/2,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,10,5,5,4,6,4,5,5,17/2,5,6,5,9,6,9,9,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,11/2,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-5/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,5/2,2,2,2,2,2,3,3,8,5,5,3,4,3,3,3,11/2,3,3,2,3,2,3,3,5,3,2,2,2,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,2,7/2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,4,4,4,9,5,5,4,6,4,6,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,7,6,21/2,6,7,6,9,6,8,8,11,6,7,6,10,6,8,8,27/2,8,10,9,15,11,16,16,18,9,9,6,8,5,5,4,15/2,4,5,4,7,5,6,6,6,4,4,3,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-16,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-9,-6,-9,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-7,-6,-27/2,-7,-8,-6,-10,-6,-8,-7,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-20,-10,-10,-6,-10,-6,-8,-7,-27/2,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-6,-8,-8,-19,-9,-10,-6,-10,-6,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30 -12,13/2,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,6,7/2,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-9/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -14,8,15/2,6,7,4,11/2,5,7,4,5,4,6,4,5,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,10,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,3/2,2,1,1,1,1,-1,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,5,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,6,4,9/2,4,7,5,13/2,6,12,6,13/2,4,7,4,9/2,4,6,4,7/2,3,5,3,7/2,3,6,4,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,9/2,4,5,4,9/2,4,6,4,9/2,4,6,4,11/2,5,8,5,5,4,6,4,6,5,9,6,13/2,6,10,7,21/2,10,12,6,6,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-22,-10,-21/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-10,-20 -12,13/2,6,5,6,4,4,4,6,4,4,7/2,5,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,3,4,3,4,7/2,5,3,4,4,6,4,6,6,10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,7,4,4,3,5,7/2,5,4,7,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-5/2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -22,12,12,8,23/2,6,7,6,11,6,7,6,17/2,6,8,7,11,6,6,5,7,4,5,5,8,5,6,5,17/2,6,9,9,17,9,9,6,19/2,6,7,6,7,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,8,5,6,5,17/2,6,8,8,14,7,7,5,15/2,4,5,5,7,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,9/2,3,3,3,4,3,3,2,7/2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,5/2,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,2,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,2,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,1,2,2,2,2,4,3,3,2,7/2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,7/2,2,3,3,7,4,5,4,6,4,5,5,9,5,6,6,19/2,6,9,9,18,9,9,6,9,5,5,4,7,4,4,4,11/2,4,5,4,8,4,4,4,11/2,4,4,4,7,4,4,4,6,5,7,7,10,6,6,4,13/2,4,5,5,8,5,6,5,15/2,6,8,7,12,7,7,5,15/2,5,6,6,12,7,9,8,14,10,15,15,17,9,9,6,8,5,5,4,8,5,6,5,7,5,6,6,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,1,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-9,-9,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-7,-7,-16,-8,-10,-8,-31/2,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-9,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-10,-7,-23/2,-6,-9,-8,-16,-8,-10,-8,-31/2,-10,-15,-15,-31 -15,8,8,6,8,9/2,5,4,8,9/2,5,4,6,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,5,3,3,3,4,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,7/2,4,4,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-9/2,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-10,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -22,12,12,8,11,6,15/2,6,11,6,13/2,5,8,5,7,7,11,6,13/2,5,7,4,11/2,6,9,6,13/2,5,8,6,17/2,9,17,9,9,6,10,6,13/2,5,7,4,5,4,6,4,11/2,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,17/2,8,15,8,8,6,8,5,11/2,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,2,1,1,1,3,2,2,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,1,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,4,7,4,9/2,4,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,4,9/2,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,27/2,14,16,8,17/2,6,8,5,11/2,4,8,5,5,4,6,4,6,5,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-13/2,-4,-6,-3,-5,-4,-6,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-10,-6,-19/2,-10,-21,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-7,-7,-13,-6,-13/2,-4,-7,-4,-5,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-19/2,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-15/2,-7,-13,-7,-17/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-8,-15,-10,-15,-15,-32,-16,-31/2,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-14,-7,-17/2,-7,-13,-8,-25/2,-12,-26,-13,-13,-8,-14,-7,-17/2,-7,-15,-7,-8,-6,-11,-6,-19/2,-9,-19,-9,-9,-6,-12,-7,-19/2,-8,-16,-8,-21/2,-8,-16,-10,-31/2,-15,-31 -21,11,11,8,11,7,8,13/2,11,6,6,5,8,5,7,13/2,11,6,6,5,7,9/2,6,6,10,6,7,11/2,9,6,9,9,17,9,9,6,9,11/2,6,5,8,9/2,5,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,5/2,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,3/2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,7/2,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-14,-7,-8,-7,-14,-7,-8,-6,-11,-13/2,-10,-9,-19,-9,-9,-6,-12,-7,-9,-8,-17,-9,-10,-8,-16,-10,-16,-15,-31 -41,21,21,14,21,13,16,14,24,13,13,10,16,10,14,13,23,12,12,9,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,13,8,10,9,15,11,16,16,31,16,16,11,16,9,10,8,13,7,8,6,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,7,12,8,11,10,18,9,9,7,10,6,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,0,1,1,2,2,2,3,5,3,4,4,6,4,6,6,21/2,6,7,5,8,5,6,5,9,5,6,5,7,5,8,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,12,12,22,11,11,8,12,7,7,6,10,6,7,5,8,6,8,7,13,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,24,13,13,9,13,7,8,6,10,6,7,5,8,5,6,6,11,6,7,5,8,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,22,11,11,8,11,7,9,8,13,7,7,5,8,6,8,7,13,7,6,4,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,6,5,8,5,7,7,13,8,9,8,13,9,12,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,21,12,13,10,17,11,16,16,31,16,17,12,18,11,13,11,20,11,13,10,17,11,16,15,28,15,15,11,18,11,15,14,27,16,19,16,28,19,27,27,28,15,15,10,15,8,9,7,12,7,7,5,8,6,8,8,15,8,9,7,10,6,7,6,11,7,8,7,11,7,10,10,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,9,16,11,17,17,33,17,18,13,19,11,13,11,20,11,13,10,16,10,13,13,24,13,14,10,16,10,12,11,19,10,11,9,14,9,13,13,24,13,13,9,12,7,8,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-11,-6,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-8,-8,-6,-11,-6,-8,-8,-16,-9,-11,-9,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-17,-35,-18,-19,-14,-24,-14,-19,-18,-35,-19,-23,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-23,-19,-35,-17,-18,-13,-22,-13,-18,-16,-32,-16,-17,-12,-19,-11,-14,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-17,-17,-11,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-18,-12,-18,-19,-39,-19,-20,-13,-21,-12,-15,-13,-25,-13,-14,-10,-18,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-18,-38,-19,-19,-12,-19,-10,-13,-11,-21,-11,-12,-10,-18,-11,-16,-15,-31,-16,-17,-13,-22,-13,-18,-16,-32,-17,-21,-18,-33,-21,-32,-32,-64 -21,11,11,8,11,7,8,7,12,7,7,11/2,8,6,8,7,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,9/2,7,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,4,5/2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,9/2,5,4,6,4,5,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,17/2,14,10,14,14,15,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,17,9,10,7,10,6,7,6,10,6,7,6,8,5,7,7,13,7,7,5,9,11/2,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,5/2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-13/2,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-16,-33/2,-34,-33/2,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-11/2,-9,-5,-6,-11/2,-11,-6,-7,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-9,-9,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-15/2,-8,-6,-11,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -21,11,23/2,8,11,7,8,7,12,7,15/2,6,8,6,8,7,12,6,6,5,8,5,11/2,5,9,5,5,4,7,4,11/2,6,9,5,11/2,4,5,4,9/2,4,6,4,4,3,4,3,9/2,4,6,4,9/2,4,5,3,4,4,7,5,6,5,8,6,17/2,8,16,9,9,6,9,5,11/2,4,6,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,5,5,9,5,5,4,5,3,7/2,3,3,2,3,2,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,4,8,4,4,3,6,4,5,5,8,5,6,5,8,5,6,6,11,6,13/2,5,6,4,4,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,4,6,4,13/2,7,13,7,7,5,7,4,9/2,4,5,3,4,3,4,3,7/2,4,6,4,7/2,3,5,3,4,4,6,4,7/2,3,5,4,5,5,10,6,11/2,4,6,4,5,4,7,4,4,3,5,4,9/2,4,7,4,5,4,4,3,7/2,3,5,4,9/2,4,6,4,13/2,7,11,6,11/2,4,6,4,9/2,4,7,4,9/2,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,9/2,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,13/2,6,9,6,8,8,16,9,9,6,10,6,15/2,6,11,6,7,6,10,6,8,8,15,8,8,6,10,6,17/2,8,13,8,9,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,4,11/2,6,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,5,8,6,17/2,9,17,9,19/2,7,10,6,15/2,6,10,6,7,6,8,5,7,7,13,7,7,5,9,6,13/2,6,10,6,6,5,8,5,7,7,13,7,13/2,4,7,4,5,4,6,3,3,3,3,2,3,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-8,-4,-11/2,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-9,-16,-10,-33/2,-17,-33,-16,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-17/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-10,-7,-10,-5,-7,-6,-12,-6,-13/2,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,4,3,4,4,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,5/2,3,3,5,3,3,5/2,4,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,5/2,3,2,3,3,4,3,3,2,4,5/2,3,3,4,5/2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,4,3,4,7/2,5,3,4,3,3,2,3,3,4,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,9/2,7,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,5/2,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,7,5,7,9/2,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -20,11,11,8,23/2,7,8,7,12,7,8,6,17/2,6,7,7,13,7,7,5,15/2,4,5,5,9,5,6,5,15/2,5,7,6,9,5,5,4,5,4,5,5,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,15,8,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,3,3,2,2,2,9/2,3,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,3,2,1,1,1,1,1,1,2,1,1,0,-1/2,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-2,0,0,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,4,3,3,3,5,3,4,4,6,4,4,3,7/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,5,4,5,5,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,6,4,13/2,4,6,7,12,6,6,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,4,3,9/2,3,4,4,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,10,6,6,4,11/2,4,4,4,7,4,5,4,11/2,4,4,4,7,4,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,12,6,6,5,15/2,5,6,5,11,6,6,5,17/2,6,8,8,17,9,10,7,19/2,6,8,7,12,7,8,6,10,7,9,9,15,8,8,6,21/2,7,9,8,12,7,9,8,14,9,13,13,14,8,8,5,7,4,4,4,8,5,5,4,6,4,6,5,9,5,5,4,11/2,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,15/2,6,8,8,17,9,9,7,10,6,8,7,11,6,6,5,8,5,7,6,12,7,8,6,17/2,5,6,6,8,5,5,4,13/2,5,7,7,13,7,7,5,13/2,4,5,4,6,3,3,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3/2,1,0,0,1,1,2,2,5/2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-4,-5,-4,-9,-6,-10,-10,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-33/2,-10,-16,-17,-32,-16,-16,-10,-33/2,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-19/2,-6,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-10,-5,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-16,-8,-8,-6,-10,-6,-9,-8,-15,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,7/2,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,9/2,6,5,8,6,8,8,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -13,7,8,6,8,5,11/2,5,9,5,11/2,4,6,4,9/2,4,8,5,5,3,5,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,4,3,7/2,4,6,4,4,4,6,4,6,6,11,6,13/2,5,7,4,9/2,4,4,3,3,3,5,3,4,4,6,4,7/2,3,5,3,7/2,3,5,3,5/2,2,3,2,7/2,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,5/2,2,4,3,7/2,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,5,3,7/2,3,6,4,11/2,5,9,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,3,5,3,4,3,6,4,11/2,6,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,7,4,7/2,3,4,3,3,3,6,4,7/2,3,5,3,7/2,4,9,5,5,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,12,6,13/2,5,8,5,6,5,9,5,6,5,8,5,7,6,10,6,11/2,4,7,4,11/2,5,8,5,13/2,6,10,7,9,9,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,6,6,12,6,13/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,8,5,5,4,5,3,4,4,6,4,7/2,3,5,4,11/2,6,10,6,11/2,4,4,3,7/2,3,4,2,2,2,2,2,3/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,3,2,2,2,1,1,3/2,1,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-9,-5,-13/2,-5,-11,-7,-11,-11,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20 -11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,6,7/2,4,3,5,3,4,9/2,10,11/2,6,4,7,4,5,9/2,8,9/2,5,4,7,9/2,6,11/2,8,9/2,4,3,5,4,5,9/2,7,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17 -20,11,11,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,4,3,3,3,4,3,5,5,17/2,5,6,6,10,7,10,9,17,9,10,7,10,6,6,5,15/2,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,2,2,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,9/2,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,11/2,3,3,2,3,3,4,4,5,3,4,3,5,3,4,3,5,3,3,3,5,4,5,5,12,6,6,4,6,4,4,3,9/2,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,12,7,7,5,6,4,5,4,13/2,4,4,4,6,4,5,4,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,13/2,4,6,5,8,6,9,9,11,6,6,4,6,4,4,4,15/2,4,5,4,6,4,4,4,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,13,7,7,5,8,5,6,5,17/2,5,5,4,7,5,8,8,17,9,10,7,11,7,9,8,13,7,8,6,9,6,9,9,13,7,7,5,8,5,7,7,25/2,7,8,7,12,8,12,13,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,7,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,5,13,7,7,5,6,4,4,4,13/2,4,6,5,8,5,7,7,14,8,8,6,8,5,5,4,11/2,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-9,-18,-12,-18,-18,-30,-15,-15,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-35/2,-9,-11,-9,-16,-10,-16,-15,-31 -11,6,6,4,6,4,5,4,7,4,5,4,5,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,2,2,3/2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,6,4,4,5/2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16 -12,6,13/2,4,7,4,5,4,8,5,5,4,5,4,5,4,6,4,7/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,3,2,2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,6,4,7/2,3,3,2,2,2,2,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,4,3,3,3,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,7/2,3,4,3,3,3,6,4,11/2,6,6,4,7/2,2,3,2,5/2,2,5,3,3,3,3,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,3,6,4,4,3,5,3,7/2,4,5,3,4,3,5,3,4,4,9,5,6,4,7,4,5,4,8,5,5,4,5,4,11/2,6,9,5,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,8,8,9,5,11/2,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,7/2,3,6,4,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,9/2,3,5,3,3,3,4,2,2,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-9/2,-5,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-11/2,-4,-8,-5,-8,-8,-17 -9,5,5,4,6,7/2,4,7/2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,9/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,5/2,3,3,3,2,3,2,4,3,3,3,7,4,5,7/2,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,7/2,5,3,4,3,4,3,3,2,3,2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,3,4,4,5,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 -15,8,8,6,17/2,5,6,5,10,5,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,2,2,2,2,7/2,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,4,4,8,5,5,4,11/2,4,4,4,7,4,4,3,5,3,4,3,3,2,3,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,2,2,2,2,5/2,2,3,3,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,5/2,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,9/2,3,4,5,9,5,5,4,5,3,4,3,3,2,3,2,7/2,2,3,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,9/2,3,4,4,5,3,4,4,13/2,5,7,7,6,4,4,3,4,3,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,8,4,4,3,5,3,3,3,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,4,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,5,5,4,13/2,4,6,6,11,6,6,5,15/2,5,6,5,8,5,6,5,8,6,9,9,11,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,9/2,4,5,5,12,7,7,5,7,5,6,5,6,4,4,3,5,3,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,11/2,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,5/2,2,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-6,-8,-6,-23/2,-8,-12,-12,-18,-9,-9,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-20 -10,11/2,6,4,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1/2,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,7/2,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,3,5/2,4,5/2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,7/2,8,4,4,3,5,3,4,3,4,3,3,5/2,4,5/2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 -13,7,15/2,6,8,5,11/2,5,9,5,5,4,5,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,3,5,4,11/2,5,9,5,11/2,4,7,4,9/2,4,7,4,9/2,3,5,4,5,5,6,4,4,3,5,3,4,3,3,2,5/2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,3,3,8,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,9/2,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,7,5,15/2,8,10,6,11/2,4,6,4,7/2,3,5,3,4,3,4,3,4,3,5,3,7/2,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,3,3,4,3,9/2,4,10,5,5,4,6,4,5,4,6,4,7/2,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-5,-9,-6,-19/2,-10,-15,-7,-15/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-16 -13,7,7,5,7,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1/2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,10,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -24,13,13,9,14,8,10,8,13,7,7,6,9,6,7,6,19/2,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,5,8,6,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,25/2,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,5,4,6,6,0,1,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,4,6,6,13,7,8,6,8,5,6,5,7,4,4,3,5,3,3,3,9/2,3,4,3,4,3,4,4,7,4,5,4,5,4,6,6,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,19/2,6,6,5,7,5,6,6,12,7,8,6,10,7,10,11,7,4,3,2,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,14,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,10,11,8,12,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,13,8,11,10,17,10,11,9,15,10,13,13,20,11,11,8,11,6,7,5,8,5,5,4,6,4,5,4,15/2,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,15,8,9,6,9,5,6,5,7,4,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,9,5,4,3,4,3,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-19/2,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-33/2,-8,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-18,-28,-14,-14,-9,-13,-7,-9,-8,-15,-7,-8,-5,-8,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-16,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-4,-5,-4,-7,-4,-7,-6,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-15,-10,-15,-15,-30 -13,7,7,5,8,5,6,5,7,4,4,3,5,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,7/2,5,3,4,3,5,3,4,4,7,4,4,7/2,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,5/2,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,7,9/2,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,3/2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-13,-6,-7,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-15 -13,7,15/2,6,8,5,6,5,7,4,4,3,6,4,4,3,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,9/2,4,5,3,7/2,3,5,3,4,4,7,4,9/2,4,5,4,9/2,4,6,4,4,4,6,4,5,5,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,0,1,3/2,2,2,2,2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,3,2,7/2,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,2,2,2,2,3,2,3,3,5,3,7/2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,13/2,4,7,4,9/2,4,5,3,3,2,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,8,5,5,3,5,3,7/2,3,5,3,5/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,4,2,5/2,2,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,3,8,4,9/2,3,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,1,1,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-9,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -9,5,5,4,6,4,4,4,6,7/2,4,3,4,3,3,5/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,4,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9 -14,7,7,5,8,5,6,5,9,5,5,4,11/2,4,4,3,4,3,4,3,5,3,4,4,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,13/2,4,6,5,6,4,4,3,4,3,3,2,3,2,3,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,7/2,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,-1,0,1,1,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,7,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,4,13/2,4,6,6,5,3,3,2,2,2,2,1,3,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,15/2,6,8,8,11,6,7,5,7,4,5,4,5,3,3,2,7/2,3,4,4,4,3,3,3,9/2,3,3,3,5,3,3,3,9/2,4,5,5,7,4,4,3,9/2,3,4,4,4,2,2,2,7/2,2,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,7/2,3,4,4,10,5,5,4,11/2,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,4,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,5/2,2,2,2,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1/2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-5/2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-3,-3,-8 -10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,7/2,3,4,3,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,3,2,2,2,5/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,-1,-1,-2,0,-1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,4,3,3,3,6,4,4,3,4,3,9/2,5,4,3,3,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,3,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,6,4,7/2,3,4,2,5/2,2,3,2,7/2,3,3,2,2,2,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,2,5/2,2,4,2,5/2,2,3,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,2,1,1,2,2,2,2,3/2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-3,-8,-4,-5,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 -9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,4,3,3,3,6,7/2,3,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,7/2,6,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,4,5,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,1,1,2,2,3,2,3,2,3,2,3,2,3,2,3,3,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,3,3,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,2,2,5/2,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,9/2,3,4,4,6,4,5,5,-2,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,7/2,2,2,2,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,4,5,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,4,3,3,3,4,3,3,3,11/2,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,6,4,5,5,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,6,9,9,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-19/2,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-6,-11,-7,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-3,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,5/2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9 -10,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,7/2,4,3,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,3,5,4,5,4,7,4,4,3,4,3,7/2,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,1,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,3,2,3,3,-2,0,0,0,0,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,2,4,3,3,3,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,4,2,2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,7/2,3,6,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,3,7/2,4,5,3,4,4,6,4,6,6,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,7,4,4,3,4,3,7/2,3,5,3,3,2,4,3,3,3,3,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,3,2,4,3,3,3,5,3,7/2,3,5,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,4,3,9/2,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,7/2,3,6,4,4,3,3,2,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-10 -9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,1,1/2,0,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-4,-4,-8 -15,8,8,6,15/2,4,5,5,8,4,4,4,11/2,4,5,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,3,7,4,4,4,11/2,4,6,5,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,0,0,1,1,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,2,2,2,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,3/2,2,2,1,0,1,1,2,5/2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,5,5,-3,-1,-1,0,1/2,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,2,5,3,4,3,7/2,2,2,2,2,2,2,1,1,1,1,2,4,3,3,3,4,3,5,5,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,17/2,6,8,8,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,3,2,1,1,1,1,1,1,2,2,10,6,6,4,13/2,4,4,4,7,4,5,4,5,3,4,4,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,6,4,5,4,7,5,7,7,10,5,5,4,6,4,5,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,2,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,5,3,3,2,5/2,2,1,1,0,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-3,-13/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-6,-11,-7,-10,-10,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-7,-16 -10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,5/2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1/2,1,1,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 -15,8,8,6,8,5,5,4,7,4,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,5,3,5/2,2,3,2,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,4,5,4,11/2,5,10,6,6,4,5,3,7/2,3,4,3,3,2,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,2,2,5/2,2,3,2,5/2,2,3,3,4,4,-2,0,0,0,0,1,3/2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,6,4,9/2,4,8,5,11/2,5,8,6,8,8,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,2,2,2,2,1,1,3/2,2,10,6,6,4,6,4,4,3,6,4,7/2,2,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,7/2,3,5,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,4,3,6,4,5,5,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,7,4,7/2,3,3,2,5/2,2,4,2,2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,1,1,1,2,2,1,1,1,1,-1,0,0,0,-4,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-7,-5,-10,-6,-10,-10,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-13/2,-7,-15 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,5/2,4,3,6,4,4,3,4,5/2,3,5/2,4,5/2,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,11/2,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,2,3/2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,10,6,6,4,6,4,4,3,5,3,3,2,3,5/2,3,3,5,3,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-10,-5,-6,-5,-10,-6,-10,-10,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-14 -28,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,5,7,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,4,4,6,4,6,6,21/2,6,6,4,6,4,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,4,6,7,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,2,2,2,2,2,2,2,2,4,3,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,8,5,7,7,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,3,3,6,4,5,4,7,5,6,6,25/2,7,8,6,8,5,6,5,8,5,6,5,9,6,8,8,14,8,8,7,11,7,9,8,14,8,9,8,14,10,15,15,6,3,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,7,4,3,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,20,10,10,7,10,6,6,5,7,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,6,4,4,3,5,4,5,4,7,4,5,5,8,6,8,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-4,-19/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-13,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-2,-6,-4,-6,-6,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-10,-7,-12,-7,-9,-8,-15,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-12,-14,-12,-22,-14,-21,-21,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-13,-14,-29 -15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,3,5/2,4,3,6,4,4,3,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,5/2,3,2,4,3,4,4,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -15,8,8,6,8,5,6,5,8,5,11/2,4,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,4,3,4,3,9/2,4,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,9/2,3,5,3,7/2,3,5,3,7/2,3,5,4,5,4,8,4,9/2,4,6,4,11/2,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,2,2,11,6,11/2,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,4,9/2,4,6,4,6,6,9,5,5,4,5,3,7/2,4,5,3,7/2,3,3,2,7/2,3,6,4,7/2,3,3,2,2,2,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,7/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-12,-6,-11/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-10,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -11,6,6,4,6,4,4,7/2,6,4,4,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,3,4,4,5,3,4,4,6,4,6,6,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,8,8,6,17/2,5,6,5,10,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,13/2,4,5,5,8,5,5,4,9/2,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,7/2,3,4,3,6,3,3,2,7/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1/2,0,0,1,-1,0,1,1,1,1,1,2,4,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,3,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,17/2,6,9,9,4,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,7/2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,11,6,6,4,6,3,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,2,4,3,3,2,7/2,3,4,3,8,5,5,3,4,3,3,3,6,4,4,4,13/2,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,7,4,4,3,7/2,2,3,3,6,4,4,3,9/2,3,4,4,5,3,3,2,7/2,2,2,1,2,2,2,1,1,1,1,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,5,4,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,0,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-11,-6,-7,-6,-23/2,-7,-10,-10,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13 -10,5,5,4,5,3,4,3,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,11/2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -12,7,7,5,6,4,5,4,7,4,9/2,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,5/2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,3,3,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,0,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,3/2,2,3,2,3/2,2,1,1,3/2,1,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,2,3/2,1,4,3,3,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,7,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,6,3,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3/2,1,1,2,3/2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1/2,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -21,11,11,7,10,6,8,7,11,6,6,4,6,4,6,6,8,5,5,4,6,4,5,4,15/2,5,6,5,7,4,5,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,3,4,3,4,4,15/2,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,2,1,1,1,4,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,9/2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,19/2,6,8,7,11,8,11,11,8,4,4,3,5,3,3,3,9/2,3,3,2,3,2,2,1,4,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,2,2,2,7/2,2,2,1,1,1,1,1,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,11/2,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,6,7,13,7,7,5,6,4,4,4,13/2,4,4,3,3,2,3,3,8,5,5,3,4,3,4,4,11/2,4,4,3,5,4,5,5,6,3,3,2,3,2,2,2,5/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,3,4,4,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,1,1,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-11,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13 -12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,3,2,2,3/2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,7/2,4,4,6,9/2,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 -13,7,7,5,6,4,9/2,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,3,4,2,5/2,2,1,1,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,7/2,3,5,3,3,2,2,2,5/2,2,4,3,3,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,4,9/2,4,7,5,7,7,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,3,2,2,3/2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,6,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,3,3,6,7/2,4,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -16,9,9,6,17/2,5,6,5,8,5,5,4,11/2,4,5,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,4,2,2,2,7/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,2,5/2,2,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,3,3,6,4,4,3,9/2,3,3,3,7,4,4,3,7/2,2,3,2,4,3,3,2,3,2,2,2,6,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,11/2,4,4,4,8,4,4,4,11/2,4,5,4,7,4,5,4,5,4,5,4,6,4,4,4,15/2,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,5/2,2,3,3,7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,9,5,4,3,9/2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,4,3,4,4,11/2,4,5,5,9,5,6,4,11/2,4,4,3,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,3,3,3,2,2,2,7/2,3,4,4,5,3,3,2,5/2,2,2,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,0,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 -10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,3,5/2,3,3,4,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,5/2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -14,8,8,6,8,5,11/2,4,7,4,9/2,4,5,4,9/2,4,7,4,9/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,4,5,3,3,2,3,2,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,2,1,1,3/2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,5/2,2,4,3,3,3,8,4,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,3,4,3,4,4,6,4,4,4,7,5,6,6,6,4,7/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3,2,2,2,5/2,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,3,2,3,2,2,2,3,3,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,3,2,7/2,4,6,4,4,3,4,3,7/2,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,7/2,4,5,3,3,2,3,2,5/2,3,5,3,7/2,3,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -14,8,8,6,8,5,6,9/2,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,5/2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,8,4,4,3,4,3,4,4,7,4,4,4,5,7/2,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,9/2,6,6,6,4,4,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,3,5/2,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-2,-3,-5/2,-6 -27,14,15,10,15,9,10,8,13,7,7,6,9,6,8,8,27/2,8,8,5,7,5,6,6,10,6,6,5,7,5,7,7,10,6,6,4,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,3,3,4,3,4,4,11,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,3,3,2,2,2,3,2,3,2,3,2,3,2,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,6,4,5,5,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,11/2,4,4,3,3,2,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,5,4,5,5,15,8,9,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,7,12,8,12,12,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,4,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,21/2,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -14,8,8,6,8,5,6,5,7,4,4,7/2,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,3,2,3,3,5,3,3,5/2,3,2,3,3,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,3,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,4,3,6,4,4,3,3,2,5/2,2,5,3,3,3,3,2,7/2,4,10,6,11/2,4,6,4,9/2,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,7/2,4,6,4,5,4,7,5,7,7,6,4,7/2,3,4,3,3,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,3,2,3,3,5,4,9/2,4,6,4,5,5,9,5,9/2,4,5,3,4,4,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5 -11,6,6,9/2,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3 -18,10,10,7,21/2,6,7,5,7,4,4,4,6,4,5,5,8,4,4,3,9/2,4,5,5,6,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,2,2,2,2,1,3,2,1,1,1,1,1,2,4,2,2,2,3/2,1,0,0,2,1,1,1,2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,9/2,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,12,7,7,5,13/2,4,5,4,8,5,5,4,13/2,4,6,6,8,5,5,4,11/2,4,4,4,8,5,5,5,8,6,8,8,7,4,4,3,9/2,3,4,3,5,3,4,3,7/2,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,4,3,7/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,3,6,4,4,4,13/2,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,0,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,1,0,1,1,1,1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-3,-2,-5 -11,6,6,5,7,4,5,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,5/2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,9/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3 -15,8,8,6,9,5,6,5,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,4,3,3,2,2,2,2,1,2,2,3/2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,5/2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,5,10,6,11/2,4,6,4,4,4,7,4,9/2,4,6,4,5,5,6,4,7/2,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,1,1,1,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,3,2,3,2,5/2,2,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,7/2,3,5,3,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-6,-4,-11/2,-6,0,1,1,1,0,0,1/2,1,0,0,0,1,1,1,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4 -14,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,4,3,3,2,3,2,2,3/2,2,2,2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,7/2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4 -26,14,14,10,14,8,8,6,21/2,6,6,4,6,4,6,6,12,6,6,5,7,4,5,5,17/2,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,9/2,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,6,4,5,5,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,9/2,3,3,2,2,2,3,3,1,1,1,1,1,1,2,2,5/2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,15/2,5,6,5,9,6,8,8,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,5,17/2,5,6,5,9,7,11,11,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,9/2,2,2,2,3,2,2,2,6,4,5,4,6,4,4,4,13/2,4,4,3,5,4,5,6,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,7/2,2,3,3,6,5,7,7,9,5,5,4,6,4,5,5,17/2,5,5,4,7,4,5,5,7,4,4,3,5,3,4,4,15/2,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,6,4,4,3,3,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-8,-4,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,6,4,6,13/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,4,3,3,3,4,3,3,2,3,2,3,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 -18,10,10,7,10,6,13/2,5,7,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,4,6,4,7/2,3,4,3,4,3,6,4,7/2,3,4,3,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,9/2,4,9,5,5,4,6,4,4,4,5,3,7/2,3,4,3,9/2,4,6,4,4,3,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,4,3,4,3,7/2,3,3,2,2,2,2,2,5/2,2,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,3,2,5/2,2,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-2,-4,-2,-3,-3,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1/2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,29/2,8,10,8,11,6,7,6,17/2,6,7,6,10,6,6,4,11/2,4,5,5,9,5,6,4,11/2,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,5,3,4,4,6,4,6,6,8,5,5,4,9/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,5/2,2,3,3,2,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,7,5,6,5,17/2,6,9,9,16,9,9,6,17/2,5,6,5,8,5,5,4,13/2,4,6,6,9,5,5,4,7,5,6,6,11,7,8,6,19/2,7,10,10,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,7,4,4,3,9/2,3,3,3,5,3,3,2,7/2,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,5,5,10,5,5,4,11/2,4,4,3,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,6,4,4,4,11/2,4,6,6,12,7,7,5,13/2,4,5,4,8,5,5,4,6,4,5,5,7,4,5,4,11/2,4,4,4,8,5,5,4,15/2,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,9/2,3,3,3,8,5,5,4,11/2,4,4,4,7,4,5,4,11/2,4,6,6,7,4,5,4,5,3,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-1,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-9,-9,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6 -18,10,10,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,9/2,7,5,7,7,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,5/2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,5/2,3,2,4,5/2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,14,8,19/2,8,12,7,7,6,9,6,7,6,10,6,11/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,5,3,4,4,6,4,11/2,6,9,5,5,4,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,0,1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,3,4,2,5/2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,11/2,4,7,5,13/2,6,11,6,6,4,6,4,9/2,4,7,4,11/2,5,8,6,9,9,16,8,17/2,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,6,15/2,6,10,7,19/2,10,11,6,6,4,5,3,7/2,3,4,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,5,4,11/2,5,10,6,11/2,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,9/2,4,6,4,9/2,4,7,4,9/2,4,5,3,4,4,8,5,11/2,4,8,5,7,7,11,6,6,4,7,4,5,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,9/2,4,6,4,11/2,5,7,4,9/2,4,5,3,4,3,5,3,4,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-5 -26,14,14,10,14,8,10,8,12,7,7,6,9,6,7,6,10,6,6,4,6,4,5,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,9,5,5,4,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,2,2,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,6,7,6,10,7,10,10,11,6,6,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,5,4,6,11/2,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-17/2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -52,27,27,18,26,14,16,13,23,12,13,10,15,10,13,12,23,12,13,9,14,9,11,9,16,9,9,7,10,7,10,9,17,9,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,16,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1/2,1,1,1,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,11,11,22,11,11,7,10,6,7,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,6,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,15,9,11,10,18,12,17,17,20,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,9,7,10,10,18,10,11,8,12,8,10,9,15,9,11,9,15,10,15,14,21,11,11,8,11,7,8,7,13,7,7,6,9,6,9,9,17,9,9,6,9,6,8,7,13,7,7,6,9,6,9,8,15,8,7,5,7,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-3,-3,0,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-6,-5,-11,-7,-12,-12,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-7,-31/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15/2,-3,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10 -27,14,14,9,13,15/2,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,5/2,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,4,7/2,5,7/2,4,4,8,5,6,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,9/2,6,4,4,4,7,4,4,7/2,5,7/2,5,5,9,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,9/2,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4 -27,14,27/2,9,13,8,17/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,9/2,3,5,3,7/2,3,4,2,2,2,3,2,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,4,3,7/2,4,6,4,6,6,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,7/2,2,4,2,5/2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,3,2,5/2,3,5,3,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,0,1,1,1,2,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,3,3,5,3,3,2,4,3,3,3,5,3,5/2,2,2,2,5/2,3,4,3,7/2,4,6,4,11/2,6,10,6,11/2,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,9/2,4,5,4,9/2,4,8,5,13/2,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,7/2,3,3,2,5/2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,7,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,9/2,4,5,4,6,6,10,5,5,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,5,4,5,3,3,3,6,4,4,3,5,4,11/2,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,15/2,8,12,6,6,5,7,4,9/2,4,7,4,9/2,4,4,3,9/2,5,9,5,11/2,4,5,4,9/2,4,6,4,4,3,6,4,5,5,9,5,9/2,4,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-3,-6,-6,-14,-6,-6,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 -18,9,9,6,9,11/2,6,5,8,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,2,4,5/2,3,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,4,3,4,3,5,7/2,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,5/2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,5,7,7,6,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,7/2,3,3,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,3,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,7/2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 -26,13,13,9,27/2,8,9,8,12,7,7,6,17/2,6,7,6,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,9/2,3,4,3,3,2,2,2,3,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,3,3,9/2,3,3,3,4,3,3,3,6,5,7,7,9,5,5,4,5,3,4,3,4,2,2,2,7/2,2,3,3,6,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,5,3,3,3,9/2,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,9/2,2,2,2,5,3,3,2,3,2,2,2,5,3,2,2,5/2,2,3,3,4,3,4,3,5,4,6,6,10,6,6,4,13/2,4,6,5,6,4,4,4,11/2,4,4,4,7,4,5,4,11/2,4,5,5,9,6,7,6,19/2,7,10,10,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,9/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,11/2,4,5,4,7,4,4,4,11/2,4,5,4,9,5,5,4,9/2,3,3,3,6,4,4,3,9/2,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,9/2,4,5,5,9,5,6,4,13/2,4,6,5,6,4,5,4,6,4,5,5,10,5,5,4,11/2,3,3,3,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,5,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,3,4,2,2,1,1,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-9/2,-3,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-1,-3 -15,8,8,6,8,5,6,5,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -19,10,19/2,7,10,6,13/2,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,0,1,3/2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,7/2,3,4,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3/2,2,2,2,2,2,6,4,7/2,3,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,3,3,2,3,2,4,3,4,3,6,4,4,3,4,3,9/2,4,8,4,4,3,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,6,3,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,4,2,2,2,3,2,5/2,3,4,3,3,3,3,2,7/2,4,3,2,5/2,2,3,2,7/2,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,9/2,3,5,3,4,4,6,4,4,3,6,4,11/2,5,10,6,11/2,4,5,3,4,4,5,3,4,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,1,1,1,1,2,2,5/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-11/2,-6,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-2 -16,17/2,8,6,9,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -29,15,15,10,14,8,10,8,27/2,8,8,6,10,6,8,7,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,9,5,5,4,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,1,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,7/2,2,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,5,5,17/2,5,6,4,6,5,7,7,11,6,6,4,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,11/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,15/2,4,4,4,6,4,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,9,6,9,9,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,4,3,3,2,3,3,4,4,15/2,5,6,5,7,5,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,3,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,9/2,3,3,3,4,3,5,6,10,5,5,4,6,4,5,5,19/2,6,6,5,7,5,7,7,16,9,9,6,9,5,6,5,17/2,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3/2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3/2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,5,3,3,2,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-4,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,4,2,2,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,-1,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2 -16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,6,7/2,4,5/2,4,2,2,2,3,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,3,2,3,2,2,2,3,2,3,7/2,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,3,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1 -17,9,9,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,5,5,4,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,2,0,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,5/2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,0,0,1/2,0,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,7/2,4,5,3,7/2,3,4,3,9/2,4,5,3,7/2,2,4,2,2,2,3,2,2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,3,2,4,3,7/2,3,5,3,7/2,4,5,4,5,5,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,3,2,5/2,2,3,2,2,2,4,3,7/2,3,4,3,4,4,4,3,7/2,3,3,2,3,3,5,3,3,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,6,4,4,3,4,3,7/2,3,6,4,4,3,4,3,9/2,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,2,3,2,5/2,2,4,3,4,4,6,3,3,3,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,1,1,1,1,0,1,3/2,2,3,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-9/2,-4,4,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1 -13,7,7,5,6,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0 -20,11,11,8,21/2,6,8,7,12,7,8,6,9,6,7,6,10,6,6,4,11/2,4,4,3,5,3,3,3,9/2,4,5,5,6,4,4,3,9/2,3,3,3,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,5,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,4,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,1,2,2,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,6,3,3,2,3,2,2,2,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,3/2,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,7/2,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,11/2,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,13/2,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,11/2,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,7/2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,1,1,3/2,2,2,1,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,-1,-1,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,5,3,2,2,3/2,2,2,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-2,0,0,0,-3/2,0,0,0,2,1,1,1,2,1,1,1,0 -13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,5/2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1 -18,9,9,7,9,6,7,6,11,6,7,5,8,5,7,6,10,6,11/2,4,5,3,4,4,5,3,4,4,6,4,11/2,5,6,4,4,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,2,5/2,2,4,3,4,4,3,2,2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,3/2,1,6,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,1,1,1,1,0,1,3/2,2,1,1,3/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,9/2,5,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,3,2,5/2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,7,4,5,4,5,4,11/2,5,8,5,5,3,4,3,3,2,4,2,5/2,2,3,2,3,3,7,4,7/2,2,4,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,-1/2,0,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,0,0,0,1,0,0,1/2,0,0,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,1,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,4,2,5/2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,2,2,2 -17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,10,6,6,4,5,3,4,4,5,3,4,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,2,4,3,3,3,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,5/2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,0,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,4,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2 -32,17,17,12,18,11,13,11,18,10,10,8,12,8,11,10,39/2,10,11,8,11,7,8,7,11,6,7,5,8,6,9,9,10,6,6,4,5,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,3,5,4,5,5,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,9/2,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,3,4,4,11/2,4,4,4,6,4,5,5,8,5,5,5,8,6,8,7,5,3,4,3,4,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,2,3,3,5,3,3,2,3,2,3,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,7,4,4,3,4,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,11/2,4,4,3,3,3,4,4,6,4,4,3,4,3,4,4,8,5,6,5,7,4,5,5,8,4,4,3,5,3,4,4,17/2,5,6,5,8,5,6,6,11,6,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,8,6,9,6,8,8,29/2,8,8,6,8,5,6,5,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,15/2,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,1,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,6,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,3,2,3,2,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-18,-8,-8,-5,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-10,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,4 -17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,6,3,3,5/2,3,5/2,3,3,5,3,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -17,9,19/2,7,10,6,15/2,6,10,6,6,5,7,5,13/2,6,10,6,6,4,7,4,5,4,6,4,4,3,5,4,11/2,5,6,3,3,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,7/2,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,1,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,1,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,3/2,1,5,3,3,2,3,2,3/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,3/2,2,1,1,2,2,4,3,3,2,3,2,3/2,1,1,1,1,1,1,1,2,2,4,3,3,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,2,2,3/2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,2,2,5/2,3,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,3,3,5,4,9/2,5,4,3,3,2,3,2,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,1,1,1,1,1,6,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,5,3,7/2,2,3,2,3,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,5,7,4,11/2,5,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,7/2,3,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,5/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,1,1,1,0,1,3/2,1,1,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,3,2,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2 -12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,5/2,4,5/2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-2,-3,-3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -19,10,11,8,23/2,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,7,5,6,5,6,4,4,4,11/2,4,6,6,7,4,4,3,9/2,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,2,1,1,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,2,2,2,2,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,3,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,4,4,3,4,3,5,4,6,6,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3/2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,4,3,9/2,3,4,5,7,4,3,2,3,2,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,4,5,5,8,5,6,4,13/2,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,13/2,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,7/2,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-2,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,2,2,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,3 -12,13/2,7,5,7,4,5,4,7,4,4,4,5,7/2,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,10,5,5,4,5,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,2,3/2,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2 -15,8,8,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,3,5,4,9/2,4,6,3,3,3,5,4,5,4,6,4,7/2,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3,2,3,2,3,3,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,3,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,1,1,1,1,2,2,5/2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,9/2,4,6,3,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,4,6,4,4,3,5,4,11/2,5,13,7,7,5,6,4,9/2,4,6,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,5/2,3,6,4,7/2,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-4,-4,3,2,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3 -13,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,1,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,3,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,7/2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,5/2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,4 -24,13,13,9,12,8,10,8,29/2,8,9,7,10,6,8,7,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,7/2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,9/2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,5,3,4,3,5,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,6,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,2,7,4,4,3,3,2,3,3,4,3,4,4,7,5,6,6,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,3,4,4,15/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,13/2,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,11,6,7,6,9,6,8,8,22,11,11,7,10,6,8,6,21/2,6,7,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,5,4,5,5,6,4,4,3,4,2,2,2,5/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,3,3,9/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,3,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,0,2,1,1,1,0,1,1,1,1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-4,-6,-6,4,3,3,2,2,2,2,1,1/2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,1,1,2,1,1,1,3/2,1,1,1,2,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,3,5,3,4,4,7 -13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,13,7,7,9/2,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 -15,8,17/2,6,8,5,13/2,6,10,5,5,4,6,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,5/2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,3,2,3,3,2,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,4,3,7/2,3,1,1,2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,5,3,3,3,5,4,5,4,6,3,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,5,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,11/2,6,15,8,8,5,7,4,5,4,6,4,9/2,4,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,4,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,3,3,4,2,5/2,3,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,2,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-3,-2,-3,-3,3,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,2,2,4 -12,7,7,5,7,4,5,9/2,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,12,7,7,9/2,6,7/2,4,7/2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3 -20,11,11,8,12,7,9,7,12,7,7,5,15/2,5,6,6,12,6,6,4,13/2,4,5,5,7,4,5,4,11/2,4,5,5,7,4,4,3,9/2,3,3,3,5,3,4,3,4,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,9/2,3,4,4,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,6,4,4,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,3,4,2,2,2,2,2,2,1,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,3,2,3,2,3,2,2,2,0,1,1,1,3/2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,5,3,3,2,7/2,2,3,3,5,3,4,3,5,3,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,2,5,3,3,2,7/2,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,3,9/2,3,4,5,10,6,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,9,5,4,3,9/2,4,5,5,10,6,6,5,17/2,6,8,8,21,11,11,7,9,6,7,6,9,5,6,5,8,5,6,6,10,6,6,5,7,4,4,4,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,4,3,5,4,5,5,5,3,3,2,5/2,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,3,2,7/2,3,4,4,7,4,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,3/2,2,2,2,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-14,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-3,-1,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,3,2,2,2,3/2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,4,3,3,3,9/2,3,3,3,5 -14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,5/2,3,2,3,7/2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,6,6,14,15/2,8,5,6,4,5,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,3,5/2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,4 -20,10,10,7,10,6,15/2,6,11,6,7,5,8,5,13/2,6,11,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,4,4,7,4,5,4,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,2,3,2,3,2,3,2,7/2,4,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,5/2,2,1,1,2,2,3,2,3,3,4,3,3,3,6,4,7/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,2,4,3,3,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,2,2,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,0,1,1,1,2,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,7/2,3,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,3,2,3,2,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,5,4,5,5,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,4,4,3,5,5,9,5,6,5,8,6,8,8,20,10,21/2,7,9,5,6,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,7/2,4,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,5,5,4,2,5/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,7/2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,5,3,3,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,7,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,1,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,5,3,7/2,3,5,4,9/2,4,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,1,1,3/2,2,1,1,1,1,2,2,2,1,1,1,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -20,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,3,2,3,3,4,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,5,4,7,4,4,7/2,5,7/2,5,5,8,5,6,5,8,6,8,8,20,10,10,7,9,5,6,6,10,11/2,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,5/2,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3/2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,7/2,4,3,5,3,4,4,6,4,4,3,5,4,5,9/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,3,2,2,2,4,3,3,3,5 -39,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,21,11,11,8,11,6,7,6,10,6,7,5,8,6,8,8,27/2,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,3,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-8,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,0,-1,0,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,7,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,8,9,8,13,9,14,14,38,20,20,14,20,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,23/2,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,6,9,6,7,6,11,6,7,6,9,6,8,8,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,5,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,8,8,8,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-26,-13,-13,-8,-13,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-8,-8,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,4,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,5,9 -20,11,11,8,11,13/2,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,3,2,4,3,4,3,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,5/2,4,5/2,3,3,4,3,4,7/2,6,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,1/2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,1,1,1,1,1,1,0,1/2,0,1/2,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,4,3,4,4,6,7/2,4,5/2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,5,7/2,5,5,5,3,3,3,4,5/2,3,5/2,3,2,3,5/2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,4,5,4,7,9/2,5,9/2,7,5,8,8,20,11,11,8,10,6,7,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,5/2,4,5/2,3,5/2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,7/2,5,4,5,5,5,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,3,3,5 -21,11,11,8,11,6,15/2,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,5,3,3,3,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,3,2,4,3,7/2,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,3,3,5,3,4,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,4,2,5/2,2,3,2,3,3,4,3,4,3,6,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,1,1,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,5/2,3,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,4,3,4,4,5,3,7/2,2,3,2,3,3,5,3,7/2,3,5,3,7/2,4,7,4,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,5,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,3,7,4,9/2,4,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,11/2,5,11,6,6,4,5,4,5,5,8,5,11/2,5,7,5,8,8,21,11,11,8,10,6,8,7,10,6,6,5,8,5,13/2,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,4,3,3,2,3,2,5/2,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,4,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,5,3,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,3,2,3/2,1,1,1,3/2,2,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,3/2,2,3,2,3,3,5 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,9/2,8,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,3,5/2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,7/2,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,3/2,2,3/2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3 -21,11,12,8,23/2,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,13/2,4,5,4,6,3,3,3,4,3,5,5,9,5,4,3,9/2,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,4,4,4,3,4,3,9/2,4,5,5,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,8,4,4,3,7/2,2,3,2,2,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,0,0,0,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,3,2,3,2,3,2,3,3,1,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3/2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,7,4,4,3,3,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,13/2,4,5,5,12,7,7,5,6,4,5,5,9,5,6,5,9,6,8,8,24,12,12,8,23/2,7,8,7,11,6,7,5,15/2,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,5,3,3,3,4,3,4,5,6,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,4,3,3,2,7/2,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,7/2,2,3,2,3,2,2,2,4,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,7/2,3,4,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,2,2,2,3/2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,9/2,4,6,6,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3/2,2,2,2,3 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,7/2,8,4,4,3,4,3,4,3,5,3,4,7/2,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,5/2,4,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2 -15,8,8,6,8,5,11/2,5,9,5,11/2,4,6,4,5,5,9,5,6,4,5,3,4,3,6,3,3,3,4,3,3,3,6,4,7/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,3,3,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,5/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,10,5,5,4,5,4,9/2,4,6,4,9/2,4,7,5,13/2,7,18,9,9,6,9,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,4,5,3,7/2,4,6,4,7/2,3,4,3,7/2,4,7,4,4,3,5,3,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,6,4,4,3,3,2,3,3,4,2,5/2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,0,-1,0,1,1,0,1,3/2,2,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,4,4,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2 -14,7,7,5,7,4,5,4,8,9/2,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-2,-1/2,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,13/2,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,2 -25,13,13,9,13,7,8,7,25/2,7,8,6,10,7,9,8,15,8,7,5,7,4,5,5,9,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,3,8,5,5,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,4,8,5,5,4,5,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,8,4,4,3,4,3,3,2,5/2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,7/2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,3,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,1,1,1,1,1,1,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,1,1,6,3,3,2,2,2,2,2,5/2,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,8,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,17,9,10,7,10,6,7,6,19/2,6,6,4,6,4,6,6,15,8,8,6,9,5,6,6,21/2,6,8,7,12,8,12,12,29,15,14,10,14,8,10,8,29/2,8,8,6,8,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,4,3,3,3,9/2,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,1,1,2,2,2,1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,5,3,3,2,3,2,1,1,1,1,2,2,3,2,3,3,5,3,3,2,2,1,1,1,3/2,2,2,2,3,3,4,4,2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,4,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3 -14,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,9/2,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,16,17/2,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,6,5,9,5,5,4,5,3,7/2,4,5,3,7/2,2,4,3,7/2,3,6,4,4,3,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,1,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,5,3,7/2,2,4,3,3,3,5,3,4,3,5,4,9/2,4,11,6,6,4,6,4,4,4,8,4,9/2,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,13/2,6,10,5,5,4,5,4,5,5,8,5,5,3,5,3,7/2,3,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,3,3,2,3,2,3,2,7/2,3,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,6,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,7/2,3,3,2,3,3,4,3,3,2,2,2,3,3,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,0,0,1,0,0,-1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,5/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2 -11,6,6,9/2,6,4,5,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,9,5,5,7/2,5,3,4,7/2,7,4,4,7/2,5,4,5,4,8,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -18,9,9,6,19/2,6,6,5,9,5,5,4,13/2,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,7/2,2,3,3,9,5,5,3,4,3,3,3,4,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,3,7/2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,0,2,2,2,2,5/2,2,4,4,7,4,4,3,7/2,2,3,2,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,7/2,3,4,4,7,4,4,3,5,3,4,4,5,3,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,1,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,7/2,2,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,3,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,5/2,2,2,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,6,6,14,8,8,6,15/2,5,6,5,11,6,6,5,17/2,6,7,7,14,7,7,5,15/2,5,6,5,10,6,7,6,19/2,7,10,10,25,13,13,9,13,8,9,8,13,7,8,6,8,5,6,6,11,6,6,4,13/2,4,5,4,7,4,5,4,11/2,4,6,5,10,5,5,4,11/2,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,9/2,3,4,3,5,3,3,3,9/2,3,4,3,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,5,7,4,4,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-3/2,0,0,0,0,1,1,1,3/2,2,2,1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,7/2,2,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,3/2,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,4 -12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,8,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,11/2,6,11/2,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -17,9,17/2,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,3,3,9,5,9/2,4,4,3,3,2,3,2,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,4,3,3,3,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,3,7/2,4,6,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,4,2,2,2,3,2,5/2,2,2,2,2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,7/2,3,5,4,11/2,6,14,8,8,5,7,5,6,6,11,6,13/2,5,8,5,7,7,13,7,13/2,5,7,5,6,6,10,6,7,6,10,7,10,9,25,13,25/2,8,13,8,9,8,13,7,15/2,5,8,5,13/2,6,10,6,11/2,4,6,4,9/2,4,8,5,5,4,6,4,6,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,7/2,3,6,3,3,2,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,1/2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,7/2,4,4,2,5/2,2,3,2,5/2,2,4,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,7/2,2,3,2,2,2,3,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4 -16,17/2,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,9,5,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,14,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,12,13/2,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,25/2,12,8,12,7,9,8,13,7,7,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,1,1,1,0,1/2,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,35/2,10,10,7,9,5,6,5,8,5,5,4,5,4,5,5,16,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,4,5,4,5,3,3,2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,3,4,4,8,5,6,5,9,6,9,9,11,6,6,4,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,6,5,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,0,0,0,0,-3/2,0,0,1,2,1,1,1,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,19/2,6,6,5,8,5,7,7,12,7,9,7,12,8,10,10,26,14,14,10,14,9,11,9,16,9,10,8,13,9,13,12,23,12,13,10,16,10,12,11,20,11,13,11,18,12,18,17,47,24,24,16,24,13,15,12,20,11,11,8,13,8,10,10,35/2,9,9,7,10,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,4,5,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,17/2,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,7/2,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,5,5,9,5,4,3,4,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,4,4,6,3,3,3,4,2,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-3,-3,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,7,4,5,4,5,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,5,6,5,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7 -16,9,9,6,9,11/2,6,11/2,9,5,6,5,7,5,6,5,10,6,6,4,5,3,3,3,5,3,3,5/2,3,5/2,3,3,9,5,5,3,5,3,3,3,3,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,6,4,4,5/2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,1,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1/2,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,5/2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,6,7,6,10,7,10,19/2,25,13,13,9,13,7,8,7,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,3,5/2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,4,3,5,3,4,4,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4 -17,9,19/2,7,10,6,13/2,6,10,6,6,5,7,5,6,5,10,6,11/2,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,9,5,5,3,5,3,7/2,3,3,2,2,2,2,2,5/2,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,4,4,3,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,5,3,7/2,4,6,4,11/2,5,7,4,7/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3,3,3,2,7/2,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,7,5,13/2,6,15,8,8,6,8,5,6,6,9,5,6,5,8,6,15/2,7,12,7,15/2,6,9,6,15/2,7,12,7,8,7,11,8,21/2,10,27,14,14,10,13,8,17/2,7,11,6,7,5,8,5,13/2,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,9/2,4,6,4,7/2,3,4,3,4,3,6,3,3,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,0,0,1/2,0,1,1,1,1,-1,0,1/2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-3/2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,0,0,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,4,4,3,7/2,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5 -13,7,7,5,7,4,5,9/2,8,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,9/2,7,5,6,6,10,6,6,5,9,6,8,8,20,11,11,7,10,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,7,4,4,3,4,3,4,3,4,5/2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -20,11,11,8,21/2,6,7,6,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,4,3,5,4,5,5,10,6,6,4,11/2,4,4,3,4,2,2,2,3,2,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,6,4,4,4,13/2,5,7,7,8,4,4,3,9/2,3,4,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,1,1,1,1,1,1,2,5/2,2,2,2,5,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,11/2,4,6,5,6,3,3,2,7/2,2,2,2,5,3,4,3,4,3,4,4,3,2,2,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,18,9,9,6,19/2,6,7,7,10,6,7,6,9,6,9,9,14,8,9,7,10,7,9,9,16,9,10,8,14,10,14,13,33,17,17,11,31/2,9,10,8,13,7,8,6,19/2,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,-1,0,1,1,1,1,0,0,-1,0,0,1,1,1,2,2,4,3,3,2,2,2,2,2,4,3,3,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,11/2,4,6,6,9,5,5,4,9/2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-2,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-1,0,0,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,7/2,2,3,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,6,6,5,3,3,3,5,3,4,4,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,4,4,6,4,4,4,11/2,4,6,6,7,4,5,4,11/2,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,4,4,5,3,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,5/2,2,3,3,3,2,3,2,7/2,3,4,3,5 -13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,5/2,3,3,5,3,4,3,4,5/2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,6,10,6,7,6,9,13/2,9,9,21,11,11,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,5/2,3,5/2,3,2,3,3,3,2,3,2,4,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3 -18,10,19/2,7,9,6,7,6,10,6,6,5,7,4,11/2,5,10,6,6,4,6,4,9/2,4,6,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,5/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,6,3,3,3,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,4,4,7,5,13/2,6,14,8,15/2,6,8,5,13/2,6,9,6,13/2,5,8,5,7,7,12,7,7,5,9,6,15/2,7,13,8,9,8,13,9,12,12,28,14,14,9,13,8,17/2,7,12,7,7,5,8,5,7,6,12,6,13/2,4,7,4,5,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,5/2,2,3,2,3,3,3,2,7/2,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1/2,0,1,1,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,4,3,7/2,3,5,4,9/2,4,5,3,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,4,3,4,3,9/2,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,3,2,7/2,4,4,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4 -17,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,9,11/2,6,5,8,5,7,7,11,6,7,5,8,5,7,7,12,7,9,7,12,8,11,11,26,13,13,17/2,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,5/2,4,3,4,3,4,3,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,5/2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4 -33,17,18,12,18,10,12,10,33/2,9,10,7,10,7,9,8,18,10,10,7,9,6,7,6,21/2,6,8,6,10,6,8,8,14,7,7,5,8,5,6,4,13/2,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,7/2,2,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15/2,4,5,4,7,5,8,8,14,8,8,6,8,5,5,4,9/2,3,4,3,4,3,4,4,3,2,1,1,1,1,2,2,3/2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,3,2,3,2,3,2,2,2,3/2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,5/2,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,2,7/2,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,13/2,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,8,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,23/2,7,8,6,10,7,11,11,23,12,12,9,13,8,11,10,17,10,11,8,13,9,13,13,21,11,12,9,14,9,13,12,45/2,13,15,12,20,14,21,21,48,24,24,16,24,13,15,12,41/2,11,12,9,14,9,11,11,21,11,12,9,13,8,9,8,27/2,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,19/2,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,9/2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,6,4,5,5,8,4,4,3,4,3,3,3,9/2,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,15/2,4,5,4,7,5,8,8,12,6,6,4,5,3,2,2,5/2,2,1,1,1,1,1,1,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,5,4,6,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,17/2,5,6,5,7,5,6,5,7,4,3,2,3,2,3,3,5,3,3,3,5,4,5,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6 -18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,7/2,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,5/2,3,2,2,2,3,2,3,3,2,3/2,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,7/2,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,11/2,8,8,12,7,7,6,9,6,8,7,13,8,9,7,12,8,12,12,27,14,14,10,14,8,9,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,9/2,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -21,11,23/2,8,11,7,8,7,10,6,13/2,5,6,4,11/2,5,11,6,13/2,4,6,4,5,5,8,5,11/2,4,7,5,6,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,6,3,3,3,3,2,2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,7/2,3,5,4,11/2,6,9,5,5,4,6,4,7/2,3,3,2,5/2,2,3,2,3,3,3,2,2,1,2,2,3/2,1,2,1,1,1,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,-1,0,0,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,3,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,9/2,4,6,4,5,5,8,4,9/2,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,17/2,6,9,6,15/2,7,12,7,15/2,6,9,6,9,9,15,8,9,7,11,7,10,9,16,9,21/2,8,14,10,14,14,32,16,33/2,12,16,9,21/2,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,8,5,11/2,5,7,5,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,7/2,2,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,4,5,3,4,4,8,5,5,3,4,3,7/2,4,6,4,4,3,6,4,9/2,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,4,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,4,3,3,2,3,2,3,3,5,3,3,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4 -18,19/2,10,7,9,11/2,6,6,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,5,5,7/2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3/2,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,7,11/2,8,5,7,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,9/2,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,5/2,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1/2,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,31/2,9,10,9,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,8,13,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,5,8,4,4,3,3,2,2,2,5,3,4,3,7/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,6,4,4,3,7/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,3,2,3,3,4,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,15/2,4,4,3,5,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,1,1,3/2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,5/2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,9/2,4,5,5,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,13/2,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,25/2,8,12,12,23,12,13,9,13,8,10,9,18,10,12,9,29/2,10,13,12,22,12,13,10,16,10,13,13,24,14,16,13,21,14,21,21,47,24,24,16,24,14,16,14,22,12,13,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,8,7,11,7,10,9,14,7,7,5,15/2,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,11/2,4,5,5,7,4,5,4,6,4,6,5,10,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,13/2,4,6,6,10,5,5,4,5,3,3,3,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-14,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,-1,-2,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,3,3,9/2,3,4,4,9,5,5,4,11/2,4,4,3,3,2,3,2,7/2,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,5,7,7,10,6,6,4,13/2,4,4,4,8,5,5,5,8,5,7,7,11,6,6,4,11/2,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,13/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,4,3,7/2,2,3,3,4,3,3,3,11/2,4,5,5,7,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4 -21,11,11,8,10,6,7,6,10,6,6,4,7,9/2,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,7/2,5,3,3,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,5/2,3,2,3,2,2,5/2,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,4,5,9/2,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,9,6,9,6,7,13/2,12,7,8,6,10,7,9,9,16,9,9,7,11,7,9,9,16,19/2,11,9,15,10,14,14,32,16,16,11,16,19/2,11,9,15,8,9,13/2,10,6,8,15/2,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,6,10,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,5/2,3,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1/2,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,7/2,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,3,2,4,3,3,5/2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,15,9,21/2,9,15,8,17/2,6,10,6,8,8,15,8,17/2,6,9,5,6,6,10,6,13/2,6,9,6,17/2,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,7/2,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,5,4,7,5,13/2,7,13,7,13/2,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-3/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3,3,4,2,2,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,7/2,2,4,3,3,3,5,3,4,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,13/2,6,12,6,13/2,5,7,5,6,6,10,6,6,5,7,5,13/2,6,13,7,7,5,7,5,13/2,6,12,7,8,7,12,8,12,12,22,12,25/2,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,27/2,10,17,11,14,13,24,14,31/2,13,22,15,21,21,47,24,24,16,24,14,16,13,23,12,25/2,9,14,9,12,11,20,11,11,8,11,7,17/2,7,12,7,8,6,10,7,9,9,15,8,7,5,7,5,6,5,9,5,11/2,4,7,4,11/2,6,10,6,6,4,6,4,11/2,5,8,5,11/2,4,6,4,13/2,6,10,6,13/2,4,7,4,4,4,7,4,4,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,3,5,3,7/2,3,4,2,5/2,2,4,3,7/2,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,10,6,11/2,4,5,3,7/2,3,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,2,1,1/2,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-6,-3,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,7/2,3,4,3,5,5,8,4,4,3,4,3,7/2,3,4,3,3,3,4,3,3,3,6,3,3,2,4,3,7/2,3,5,3,7/2,4,6,4,13/2,6,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,13/2,6,11,6,6,4,6,4,9/2,4,7,4,9/2,4,7,5,7,7,12,6,13/2,4,6,4,4,3,5,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,4,3,7/2,3,5,4,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,2,2,3,2,5/2,2,3,2,3,3,4 -31,16,16,11,15,9,10,9,15,8,8,6,10,13/2,9,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,8,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,5/2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,5/2,3,7/2,6,4,5,4,7,5,6,7,13,7,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,3/2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,6,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,5/2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,7,6,12,7,8,7,12,8,12,12,22,12,12,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,21/2,17,11,14,13,24,14,16,13,22,15,22,22,47,24,24,16,24,14,16,13,23,12,13,9,14,9,12,11,19,10,11,8,11,7,8,7,13,7,8,6,10,7,9,8,15,8,8,5,7,5,6,5,9,5,6,9/2,7,9/2,6,6,10,6,6,4,6,4,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,7,4,4,4,7,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3,5,3,4,3,4,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4 -60,31,31,21,30,17,20,17,30,16,17,13,20,13,17,16,31,16,17,12,17,10,12,11,20,11,12,10,17,12,17,17,32,16,16,11,15,9,11,9,15,8,9,6,9,6,9,8,15,8,9,7,11,7,9,8,13,8,9,8,14,10,14,13,25,13,14,10,14,8,10,9,17,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,13,51/2,14,14,10,15,9,11,10,17,10,11,8,13,8,10,10,18,10,10,7,11,7,8,7,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,13,10,15,9,10,9,16,9,10,7,11,7,10,10,18,9,9,7,10,6,7,6,9,5,6,5,8,6,8,8,15,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,3,4,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,2,2,3,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,39/2,10,10,8,12,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,10,6,8,8,15,9,11,10,17,12,18,19,37,19,19,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,12,22,13,15,12,21,14,21,21,40,21,22,15,23,14,17,14,25,14,16,13,22,14,20,19,37,20,21,16,25,16,22,21,41,23,27,23,41,28,42,42,92,46,46,31,46,26,31,26,47,25,26,19,31,19,26,24,44,23,23,16,23,14,17,14,25,14,16,13,22,14,20,20,38,19,19,13,19,11,14,12,20,11,11,8,13,8,11,11,21,11,12,9,13,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,10,12,10,17,9,10,8,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,19,10,11,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,8,29/2,8,8,6,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,7,13,8,9,8,14,9,13,13,25,13,13,9,14,8,9,7,12,7,7,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,5,7,4,5,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,4,5,4,7 -31,16,16,11,16,9,10,9,16,9,9,7,11,7,9,9,16,17/2,9,6,9,11/2,6,6,11,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,5,4,5,9/2,8,5,5,4,6,4,5,4,7,4,5,5,7,5,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,7,9/2,6,6,9,5,5,4,6,4,5,4,7,9/2,5,5,8,6,8,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,5/2,4,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,5,5,10,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,7/2,5,7/2,4,4,8,5,6,5,9,13/2,10,10,19,10,10,7,11,13/2,8,7,12,7,7,6,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,11,20,11,11,8,12,7,9,15/2,13,15/2,8,7,12,8,11,10,19,10,11,17/2,13,8,11,11,21,12,14,12,21,15,22,22,47,24,24,16,24,14,16,14,24,13,14,10,16,10,14,12,23,12,12,8,12,7,9,8,13,8,9,7,11,15/2,10,10,20,10,10,7,10,6,7,6,11,6,6,5,7,9/2,6,6,11,6,6,5,7,9/2,6,5,8,5,6,9/2,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,8,5,6,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,7/2,5,3,4,7/2,6,4,4,7/2,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,5/2,4 -31,16,16,11,16,9,21/2,9,16,9,9,7,11,7,19/2,9,16,8,17/2,6,9,6,13/2,6,11,6,7,6,9,6,9,9,17,9,17/2,6,8,5,6,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,4,4,6,4,5,5,7,5,8,8,14,8,8,6,8,5,11/2,5,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,9/2,4,6,4,13/2,6,11,6,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,4,4,7,4,9/2,3,5,4,9/2,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,11/2,5,9,5,11/2,4,7,4,11/2,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,15/2,7,13,7,15/2,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,5,4,6,5,7,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,8,4,7/2,3,4,3,3,3,5,3,5/2,2,4,2,5/2,2,5,3,5/2,2,2,2,3/2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,5,5,10,6,6,5,6,4,9/2,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,8,4,4,3,4,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,6,5,9,6,19/2,10,19,10,10,7,11,6,15/2,6,12,7,7,6,8,5,7,7,13,7,15/2,6,8,5,7,7,11,7,8,7,11,8,11,11,20,10,21/2,8,12,7,17/2,7,13,8,17/2,7,12,8,11,10,19,10,23/2,9,13,8,11,11,22,13,15,13,22,15,22,22,47,24,24,16,24,14,33/2,14,24,13,27/2,10,16,10,27/2,12,23,12,12,8,12,7,9,8,13,8,9,7,11,8,21/2,10,20,10,10,7,10,6,7,6,11,6,6,5,6,4,6,6,11,6,13/2,4,7,4,11/2,5,9,5,11/2,4,8,6,8,8,15,8,9,6,8,5,6,5,9,5,11/2,4,8,5,6,6,11,6,13/2,5,6,4,11/2,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,7/2,2,3,2,7/2,4,7,4,9/2,4,5,4,9/2,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,5,3,3,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,4,3,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,13,7,7,5,7,4,5,4,7,4,9/2,3,4,3,4,4,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,4,5,5,8,4,9/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3 -21,11,11,8,11,13/2,8,6,11,6,6,5,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,7/2,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,5/2,4,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,32,17,17,23/2,17,10,12,10,16,9,10,7,11,7,9,8,16,8,8,6,8,5,7,6,9,11/2,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,5/2,5,3,3,3,4,3,4,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,5/2,3,5/2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,5/2,3,3,4,5/2,2,2,3,5/2,3,3,6,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -30,15,15,11,16,9,11,9,16,9,9,7,21/2,7,10,9,16,9,9,6,9,6,7,6,10,6,6,5,9,6,9,9,17,9,10,7,19/2,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,5,4,13/2,5,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,13/2,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,11/2,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,5,4,7,5,8,8,12,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,9,5,6,4,13/2,4,5,5,8,5,5,4,15/2,6,8,8,14,8,8,6,15/2,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,4,3,4,3,5,4,6,6,7,4,4,3,3,2,3,3,5,3,3,2,5/2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,4,3,4,4,11/2,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,11/2,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,4,5,5,9,6,7,6,9,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,11,7,10,10,19,10,10,7,21/2,6,8,7,13,7,8,6,21/2,7,10,10,19,11,12,9,29/2,10,13,12,22,13,15,13,22,15,22,22,49,25,25,17,25,14,16,14,24,13,13,10,31/2,10,12,12,24,12,12,8,25/2,8,10,8,14,8,9,7,21/2,7,10,10,19,10,10,7,19/2,6,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,6,5,9,5,5,4,7,5,6,6,11,6,6,4,11/2,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,9/2,3,4,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3 -17,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,6,11/2,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,8,5,5,7/2,5,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,5/2,4,4,4,5/2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,7/2,4,7/2,5,4,6,6,12,13/2,6,9/2,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,6,4,4,4,7,9/2,6,6,11,6,6,4,6,4,5,4,8,9/2,5,4,6,9/2,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,9,6,7,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 -21,11,11,8,12,7,15/2,6,11,6,13/2,5,7,5,7,7,12,6,13/2,5,7,4,11/2,5,8,5,5,4,6,4,13/2,6,13,7,7,5,6,4,9/2,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,4,11/2,5,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,5,7,4,9/2,4,5,3,4,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,2,3,5,3,7/2,2,3,2,3,3,5,3,4,3,5,4,11/2,6,9,5,5,4,6,4,9/2,4,6,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,3,3,6,4,4,4,5,4,6,6,10,6,11/2,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,5,3,4,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,9/2,4,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,3,4,4,6,4,4,4,6,5,7,7,15,8,15/2,5,8,5,6,5,8,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,4,4,6,4,9/2,4,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,15/2,7,12,7,8,6,10,7,9,8,15,9,10,9,15,10,31/2,16,33,17,35/2,12,17,10,23/2,10,17,9,19/2,7,11,7,9,8,17,9,17/2,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,5,4,11/2,6,12,6,13/2,5,6,4,5,4,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,7/2,3,6,4,7/2,3,5,4,9/2,4,8,5,5,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,2,3,2,3,3,6,4,7/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,2,4,3,3,2,4,3,3,3,4,3,7/2,3,6,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,4,3,7/2,3,4,3,5,5,8,5,5,4,4,3,4,3,5,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3 -18,9,9,7,10,6,7,6,9,5,5,4,6,4,6,6,11,6,6,9/2,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,5/2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,11/2,9,6,8,7,13,8,9,8,13,9,13,27/2,28,15,15,10,14,8,10,8,14,8,8,6,9,6,8,7,14,7,7,5,8,5,6,5,9,5,6,4,7,9/2,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,3,5/2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -31,16,16,11,16,9,11,9,31/2,8,8,6,10,7,10,9,19,10,11,8,12,7,9,8,13,8,9,7,11,7,10,10,20,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,15/2,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,15/2,5,6,5,7,5,6,6,8,4,4,3,4,3,4,3,9/2,3,4,3,5,4,5,5,7,4,4,2,2,2,2,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,11/2,4,5,5,8,6,8,7,14,7,7,5,7,4,5,5,17/2,5,6,4,6,4,5,4,8,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,9,5,6,4,6,4,5,5,17/2,5,6,5,9,7,10,11,22,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,5,6,6,19/2,6,7,7,12,8,12,11,18,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,11,9,14,9,13,12,45/2,13,16,14,24,16,24,24,50,26,26,18,26,15,17,14,49/2,13,14,10,16,10,13,12,24,13,13,9,14,9,11,9,16,9,10,7,11,7,10,10,19,10,10,8,12,7,9,7,12,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,7,18,9,9,6,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,5,7,4,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,3,3,2,7/2,2,2,2,4,3,3,3,9,5,5,4,5,4,5,4,7,4,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,3,2,3,3,9/2,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,11/2,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,3,3,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,2,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,11/2,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,13/2,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,15/2,4,5,4,6,4,5,5,7,4,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5 -17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,11/2,10,6,6,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,5/2,4,3,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,3,3,3,2,3,3,4,3,5,4,8,4,4,3,4,3,3,3,5,3,4,5/2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,13/2,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,6,10,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,9,8,13,9,13,13,27,14,14,10,14,8,9,8,14,15/2,8,6,9,6,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,5/2,4,3,3,3,4,3,3,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -18,10,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,11,6,13/2,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,5,3,7/2,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,7/2,3,3,2,2,2,2,2,3,3,6,3,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,7/2,2,4,3,7/2,3,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,4,4,5,3,4,3,4,3,7/2,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,5/2,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,4,2,5/2,2,3,2,3,2,4,2,5/2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,3,3,2,3,3,4,3,5,5,9,5,9/2,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,5/2,2,5,3,4,3,4,3,7/2,3,6,4,4,3,6,4,6,7,13,7,13/2,4,6,4,9/2,4,7,4,4,4,5,4,9/2,4,7,4,4,3,6,4,4,4,6,4,9/2,4,7,5,7,7,11,6,6,5,6,4,11/2,5,8,5,6,5,6,4,6,6,11,6,13/2,6,9,6,15/2,7,14,8,19/2,8,15,10,29/2,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,7,14,8,15/2,6,8,5,7,6,9,5,11/2,4,6,4,6,6,12,6,6,5,7,4,11/2,4,7,4,7/2,3,4,3,7/2,3,5,3,7/2,2,4,3,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,7/2,3,5,4,9/2,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,7,4,7/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,3,3,2,3,3,6,4,7/2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-5/2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,4,2,2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3 -14,8,8,6,8,5,5,9/2,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,7/2,5,5,9,5,5,3,5,3,3,3,4,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,3/2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,7,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -22,12,12,9,13,8,9,7,13,7,8,6,17/2,6,8,7,13,7,8,6,17/2,5,6,6,10,6,6,5,15/2,5,6,6,13,7,7,5,7,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,2,2,2,3,2,2,2,7/2,3,4,5,12,6,6,4,11/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,3,3,6,4,4,2,5/2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,13/2,4,5,5,6,4,4,3,5,3,4,4,8,4,4,4,11/2,4,4,4,6,4,5,4,6,4,6,6,8,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,7/2,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,9/2,3,4,4,5,3,2,2,2,2,2,2,5,3,3,3,4,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,10,5,5,4,6,3,3,3,6,3,3,2,3,3,4,4,5,3,3,2,3,3,4,4,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,7,4,5,4,13/2,5,7,8,15,8,8,6,8,5,5,5,8,5,6,5,7,5,6,6,9,5,6,4,11/2,4,4,4,6,4,5,4,15/2,6,8,8,12,7,7,5,7,4,5,5,9,5,6,5,17/2,6,7,7,14,8,8,6,21/2,7,10,9,16,10,12,10,18,12,17,17,35,18,18,12,18,11,13,11,18,10,10,8,12,8,10,9,17,9,10,7,19/2,6,7,7,12,6,6,5,15/2,6,8,7,15,8,8,6,15/2,5,6,5,7,4,5,4,11/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,3,3,4,3,4,4,13,7,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,5,3,4,3,4,3,4,5,9,5,4,3,4,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,3,4,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,3,4,4,3,2,2,2,2,2,3,3,4,2,2,2,7/2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,3,2,2,2,3,2,3,3,3,2,2,2,7/2,3,4,4,4,3,3,2,7/2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,2,2,2,7/2,2,2,2,5,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,4 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,5/2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,7/2,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,9/2,7,5,6,6,10,6,8,7,12,8,11,11,22,12,12,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,8,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,5/2,4,5/2,3,3,6,7/2,3,3,4,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3 -19,10,10,7,11,7,8,6,11,6,13/2,5,8,5,7,6,12,7,7,5,8,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,9/2,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,4,4,10,6,11/2,4,4,3,4,4,5,3,7/2,3,4,3,7/2,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,5/2,3,5,3,3,2,3,2,7/2,3,5,3,4,3,5,3,4,4,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,7/2,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,5,3,3,3,5,3,5/2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,5,3,7/2,3,4,2,5/2,3,5,3,3,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,4,3,7/2,3,5,4,5,5,9,5,9/2,3,5,3,3,2,5,3,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,6,4,4,3,4,3,7/2,3,6,4,4,4,6,4,13/2,7,12,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,9/2,4,7,4,5,4,6,4,4,4,6,4,9/2,4,7,5,13/2,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,13/2,6,13,7,15/2,6,10,6,8,8,14,8,21/2,9,16,11,31/2,16,31,16,31/2,10,15,9,11,9,15,8,17/2,7,10,6,17/2,8,14,8,15/2,6,8,5,13/2,6,10,6,6,5,8,5,13/2,6,13,7,13/2,4,6,4,9/2,4,6,4,4,3,5,3,3,3,5,3,7/2,2,4,3,4,3,5,3,7/2,2,3,2,7/2,4,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,3,4,4,2,2,3/2,2,2,2,3/2,2,3,2,3,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,7/2,3,5,3,4,3,9,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3 -18,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,5,4,5,5,9,5,4,3,4,3,3,2,4,5/2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,8,6,10,6,8,8,14,8,10,17/2,15,10,15,15,30,15,15,10,15,9,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,5/2,3,5/2,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,5/2,3,2,2,2,5,3,4,3,4,3,4,3,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,5,8,5,6,5,15/2,4,5,4,6,4,4,3,5,3,4,4,7,5,7,7,19,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,19/2,6,6,4,6,4,4,4,6,4,5,4,6,4,5,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,4,4,15/2,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,16,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,25/2,7,7,5,6,4,5,5,8,5,6,5,8,6,9,9,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,5,4,5,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,3,5,3,4,4,6,4,5,5,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,21/2,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,16,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,11,22,11,11,8,11,7,8,8,14,7,7,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,11,11,19,10,10,7,10,6,8,7,12,7,8,7,12,8,12,12,45/2,12,13,10,16,10,14,13,24,14,17,15,26,18,27,27,57,29,29,19,28,16,19,16,28,15,16,12,19,12,15,13,24,13,13,10,15,9,11,10,18,10,11,9,14,9,12,11,21,11,10,7,10,6,8,7,11,6,7,5,8,5,5,5,8,5,5,3,4,3,3,3,6,4,4,4,7,5,7,6,18,9,9,6,8,5,6,5,8,5,5,4,5,4,6,6,19/2,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,13/2,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,5,7,7,3,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,16,8,8,6,9,5,6,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,10,6,6,5,7,4,5,4,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6 -18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,6,11,6,6,9/2,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,7,10,13/2,8,7,13,7,7,11/2,8,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,7,6,11,6,13/2,5,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,4,9/2,4,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,3,6,4,7/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,3,4,4,9,5,9/2,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,4,11/2,6,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,3,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,1/2,0,0,0,0,1,2,2,3/2,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,4,3,5,4,9/2,5,9,5,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,4,6,4,5,5,12,6,6,4,7,4,5,4,7,4,4,3,4,3,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,6,6,10,6,11/2,4,6,4,5,4,8,5,11/2,4,7,5,7,7,12,7,7,6,10,6,17/2,8,13,8,19/2,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,13/2,6,12,6,13/2,5,6,4,5,4,6,4,4,3,5,3,4,4,4,3,7/2,2,2,2,2,2,5,3,3,3,4,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,3,2,7/2,4,4,3,7/2,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,7,4,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-5,-2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,2,2,5/2,2,2,2,3,3,9,5,9/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4 -14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,4,5/2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,2,3/2,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,6,4,4,3,4,3,4,9/2,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3 -21,11,10,7,10,6,7,6,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,15/2,5,6,5,7,4,4,3,4,3,4,3,4,3,3,2,7/2,2,3,2,4,3,4,4,11/2,4,5,5,13,7,7,5,6,4,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,7/2,2,3,2,5,3,4,3,7/2,3,4,4,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,9/2,3,4,4,9,5,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,4,3,4,4,7,4,4,3,5,3,3,2,5,3,4,3,7/2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,3,2,3,2,7/2,2,3,3,0,0,0,0,0,0,0,0,1,1,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,6,4,4,4,11/2,4,5,5,8,5,5,3,4,3,3,3,5,3,2,2,5/2,2,3,3,7,4,4,3,3,2,3,2,3,2,3,3,11/2,4,4,4,3,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,11/2,4,5,5,13,7,7,5,15/2,4,5,5,7,4,4,3,5,4,5,5,9,5,6,4,11/2,4,4,4,9,5,6,4,13/2,5,7,7,12,7,7,5,15/2,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,21/2,7,9,9,16,9,11,10,17,12,17,17,34,17,17,12,17,10,11,9,17,9,10,8,23/2,8,10,9,15,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,11,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,4,3,9/2,4,5,5,8,5,5,4,9/2,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3/2,2,3,3,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-1,0,0,0,1/2,1,1,1,-6,-2,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,7/2,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,4,10,5,5,4,9/2,3,3,2,5,3,2,2,2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,3,2,7/2,3,4,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,7/2,2,2,2,4,3,4,3,9/2,3,3,3,5 -13,7,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,5,7/2,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,11/2,9,5,5,4,6,7/2,4,4,6,4,4,3,5,7/2,5,9/2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -16,8,8,6,7,4,11/2,5,8,5,5,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,4,3,3,3,4,3,4,4,11,6,11/2,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,8,4,4,3,5,3,4,4,5,3,7/2,3,4,3,7/2,4,4,3,7/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,7/2,3,3,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,7/2,3,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,3,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,5,3,7/2,4,6,4,4,3,6,4,11/2,5,10,6,13/2,4,7,4,5,5,8,5,11/2,4,7,5,13/2,6,10,6,13/2,5,8,5,7,7,12,7,9,8,13,9,27/2,13,26,14,14,9,13,8,9,7,12,7,7,6,9,6,15/2,7,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,5,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,8,4,9/2,4,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,2,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,-2,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,4,3,3,3,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,5/2,2,2,2,3/2,1,1,1,1/2,0,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,5/2,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -14,7,7,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,5/2,3,7/2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,9/2,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,6,7/2,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 -24,12,12,8,12,7,8,7,11,6,7,6,9,6,8,7,15,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,8,5,5,4,13/2,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,9/2,4,5,5,8,6,8,8,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,7,4,4,3,5,4,5,5,19/2,6,6,5,9,6,8,8,14,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,2,2,2,7/2,2,2,2,4,3,4,4,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,11/2,4,4,4,6,4,6,5,6,3,3,3,4,3,4,4,11/2,4,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,6,16,9,9,7,10,6,7,6,9,5,6,5,7,5,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,6,8,8,19,10,10,7,10,6,8,7,25/2,8,9,7,12,8,11,11,18,10,10,8,12,8,10,10,39/2,12,14,12,21,14,21,21,42,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,17,9,10,8,12,7,9,8,27/2,8,8,6,10,7,9,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,12,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,3,3,4,4,11/2,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,6,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,11,6,6,4,6,4,5,4,13/2,4,4,3,4,3,4,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,6,3,3,3,4,2,2,2,5/2,2,2,1,1,1,1,2,-1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,1,1,3/2,2,2,1,1,1,1,2,4,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,1,1,1/2,0,0,0,0,1,1,2,7,4,4,3,4,2,2,2,7/2,2,2,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,9,5,6,4,6,4,4,3,5,3,3,2,3,2,3,4,8,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,9/2,2,2,2,2,1,1,1,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,5,5,8 -13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,4,7/2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,9/2,5,4,7,5,7,13/2,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,11/2,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,5/2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5 -15,8,8,6,8,5,6,5,8,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,6,4,9/2,4,6,4,11/2,6,10,6,6,4,5,3,7/2,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,6,6,11,6,6,4,6,4,4,4,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,5,3,4,3,5,3,3,3,4,3,3,3,3,3,4,4,6,4,5,4,6,4,11/2,6,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,3,2,5,3,4,3,4,2,2,2,3,2,3/2,2,2,2,5/2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,3,9/2,4,6,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,4,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,5,3,4,3,3,2,3,3,4,2,2,2,4,3,9/2,4,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,13/2,5,6,4,11/2,5,8,5,11/2,4,8,6,8,7,12,7,7,6,9,6,15/2,7,13,8,9,8,14,10,27/2,14,26,14,27/2,9,13,8,17/2,7,13,7,7,6,8,6,8,7,12,6,6,5,8,5,5,5,9,5,5,4,7,4,11/2,5,10,5,5,4,5,3,3,3,6,4,7/2,3,4,3,4,4,7,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,5/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,4,4,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,3,3,7,4,9/2,3,4,3,7/2,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,7/2,4,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,4,2,2,2,2,1,1,1,3,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,3/2,2,2,2,3/2,2,3,2,3,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6 -13,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,7/2,5,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,11/2,6,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,21,11,11,15/2,11,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,7/2,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,2,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6 -22,11,11,8,21/2,6,8,6,11,6,7,5,15/2,5,6,5,10,6,6,4,13/2,4,6,5,8,5,6,5,9,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,6,4,5,4,7,5,7,8,15,8,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,6,4,11/2,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,3,3,5,3,3,2,3,3,4,4,7,4,4,4,11/2,4,4,4,12,7,8,6,17/2,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,11/2,4,4,3,7,4,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,7,4,5,4,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,3,6,4,4,3,9/2,3,4,3,5,3,3,3,4,3,5,5,0,0,0,1,3/2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,5/2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,5,4,6,6,8,5,5,4,11/2,4,4,3,5,3,3,2,3,2,3,4,5,3,3,2,3,2,2,2,6,4,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,3,2,7/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,3,3,5,4,5,6,13,7,7,5,8,5,5,4,6,4,4,4,13/2,4,6,6,12,6,6,5,15/2,5,6,6,10,6,6,6,19/2,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,37/2,10,12,10,18,10,10,7,11,7,10,10,17,9,9,6,17/2,5,6,6,12,7,8,6,17/2,6,8,7,13,7,7,5,13/2,4,5,4,7,4,5,4,11/2,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,11/2,4,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,7/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,9/2,4,5,5,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,3,3,9,5,6,4,11/2,4,4,4,6,4,4,3,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,4,-1,0,0,1,1,1,1,1,0,1,1,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,4,4,6,4,6,6,11 -15,8,8,5,8,9/2,6,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,2,2,2,3,2,3,5/2,3,3,4,7/2,5,3,4,3,4,5/2,3,3,4,3,3,5/2,3,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,8,5,5,4,6,7/2,4,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,3,4,3,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,5/2,4,7/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,5/2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,4,5,7/2,4,4,7,4,4,4,7,9/2,6,6,11,6,6,4,7,4,5,4,7,4,5,4,7,5,7,13/2,11,6,7,11/2,8,11/2,7,7,12,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,7/2,6,7/2,4,3,4,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,3,4,3,5,5,8 -22,11,21/2,7,11,6,15/2,6,10,6,11/2,4,6,4,11/2,5,10,6,11/2,4,6,4,5,5,8,5,11/2,5,8,5,7,7,12,6,13/2,5,7,4,9/2,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,9/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,3,3,4,3,3,3,4,3,9/2,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,7,4,4,3,5,3,4,4,12,7,7,5,8,4,9/2,4,7,4,4,3,5,3,4,4,5,3,7/2,3,5,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,6,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,3,3,2,2,2,2,3,7,4,9/2,4,4,3,3,3,5,3,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,7/2,4,6,4,7/2,3,4,3,4,4,6,4,5,4,6,4,13/2,7,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,4,3,7/2,3,5,3,4,3,5,4,9/2,4,7,4,9/2,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,5,3,4,4,5,3,7/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,5,4,6,4,6,6,11,6,13/2,5,7,5,6,6,10,6,13/2,6,10,6,17/2,8,16,8,8,6,10,6,15/2,6,11,6,15/2,6,10,7,10,9,16,9,10,8,12,8,21/2,10,17,10,23/2,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,6,10,6,6,5,7,5,13/2,6,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,9,5,5,3,5,3,7/2,3,5,3,7/2,4,6,4,6,5,9,5,5,4,6,4,9/2,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,7/2,4,8,4,9/2,4,5,3,3,3,5,3,3,3,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,0,1,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-4,-4,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,4,4,-1,0,1,1,1,1,1,1,0,1,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,3,5,3,4,4,6,5,7,7,12 -21,11,10,7,11,6,7,6,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,9/2,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,9/2,8,4,4,7/2,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,4,8,5,5,4,7,5,7,7,12,6,6,5,6,4,4,4,7,4,4,7/2,5,3,4,4,6,3,3,5/2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,9/2,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,11/2,9,6,8,8,16,17/2,9,6,10,6,8,13/2,11,6,7,6,10,7,10,9,17,9,10,8,12,8,10,19/2,17,10,12,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,9,9,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,12 -41,21,22,15,23,14,17,14,25,13,14,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,12,8,12,12,45/2,12,12,9,13,8,10,9,16,9,9,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,14,10,14,13,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,7,6,9,5,5,4,7,5,7,8,29/2,8,8,6,9,5,6,6,10,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,7,6,9,6,7,7,13,7,8,7,11,8,12,12,22,12,12,8,12,7,8,6,10,6,6,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,5,13,7,7,5,8,5,6,5,8,5,5,3,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,6,5,8,6,8,8,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,11,8,12,12,12,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,7,7,27/2,8,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,10,21,11,11,7,10,6,7,7,12,7,8,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,9,15,10,15,16,31,16,16,11,17,10,13,12,22,12,14,12,20,13,18,18,35,18,19,14,23,14,18,17,32,18,21,18,32,22,33,33,67,34,34,22,32,18,21,18,32,17,18,13,20,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,12,22,12,12,9,13,8,9,8,14,8,8,6,10,7,10,10,19,10,10,7,11,7,9,8,15,9,10,8,12,8,11,10,17,9,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,6,5,7,7,25/2,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,2,2,2,1,1,1,2,2,4,3,3,3,5,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,9,9,14,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,7,5,6,5,8,5,7,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,24 -21,11,12,8,12,7,9,8,13,7,8,6,9,6,8,15/2,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,6,6,5,7,9/2,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,12,13/2,6,4,6,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,5,7,7,7,4,4,3,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,17,10,11,10,17,12,17,17,34,18,18,12,17,10,11,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,6,11/2,9,11/2,6,5,7,5,7,6,12,6,6,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,8,4,4,3,5,3,3,3,4,5/2,3,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,6,4,6,7,13 -22,12,23/2,8,12,7,17/2,8,13,7,15/2,6,9,6,8,8,13,7,15/2,6,9,5,11/2,5,9,5,5,4,7,5,13/2,6,12,6,6,4,7,4,11/2,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,5/2,2,4,3,4,4,13,7,6,4,6,4,5,4,6,4,9/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,6,4,9/2,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,7/2,4,5,3,4,4,7,5,7,7,7,4,4,3,6,4,4,4,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,4,6,4,5,4,7,4,9/2,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,16,9,9,7,9,6,15/2,7,12,7,8,7,11,7,10,10,19,10,21/2,8,12,8,21/2,10,17,10,11,10,17,12,35/2,18,34,18,18,12,17,10,11,10,17,9,9,7,10,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,7,5,7,6,12,6,13/2,5,7,5,6,5,8,5,5,4,6,4,11/2,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,4,7/2,3,3,2,5/2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,4,3,5,3,4,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-2,-4,-2,-7/2,-4,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,3,2,3,2,7/2,4,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,1,3/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,4,5,5,7,4,9/2,4,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,13/2,7,13 -15,8,8,6,8,5,6,11/2,9,5,5,4,7,9/2,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,7/2,5,5,9,5,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,7/2,5,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,5/2,4,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9 -22,12,12,8,25/2,8,9,8,12,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,6,6,14,7,7,5,15/2,5,6,5,8,5,6,4,13/2,4,5,5,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,4,13,7,7,5,7,4,5,5,6,4,4,4,6,4,4,4,6,4,4,4,11/2,4,4,4,6,4,4,4,13/2,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,9/2,3,4,3,5,3,4,3,7/2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,4,3,2,2,2,2,2,2,1,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,2,4,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,4,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,3,3,8,5,5,3,4,3,3,3,6,4,5,5,8,6,8,8,7,4,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,9/2,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,4,6,4,4,4,13/2,4,6,6,14,7,7,5,13/2,4,6,5,6,4,4,4,6,4,6,5,9,5,6,4,13/2,4,6,6,9,5,6,6,19/2,6,9,9,17,9,9,7,11,7,9,8,13,7,8,6,21/2,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,35,18,18,12,18,11,13,11,18,10,10,8,23/2,8,10,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,12,6,6,4,13/2,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,3,3,2,7/2,3,4,3,6,3,3,2,3,2,3,2,4,2,2,2,3,3,4,4,6,4,4,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,4,5,4,9,5,6,4,11/2,4,4,3,4,3,3,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,3/2,2,2,1,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,1/2,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,9/2,4,5,5,9,5,6,4,13/2,4,5,5,8,5,6,5,15/2,5,7,7,13 -13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,5,3,4,7/2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,5,7/2,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,6,7/2,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,10,6,6,5,7,9/2,6,5,8,5,5,4,6,9/2,6,6,12,7,7,5,8,5,7,6,11,13/2,8,6,10,7,10,10,20,11,11,15/2,11,7,8,6,11,6,6,5,7,5,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,5/2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8 -17,9,9,7,10,6,13/2,6,8,5,5,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,9/2,5,9,5,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,6,4,7/2,2,4,3,7/2,3,5,4,9/2,4,7,5,6,6,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,7,4,3,2,4,3,3,3,3,2,3,2,4,3,4,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,4,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,7,7,13,7,15/2,6,8,5,13/2,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,19/2,8,13,9,25/2,12,25,13,13,9,13,8,9,7,13,7,7,5,8,5,7,7,11,6,13/2,5,6,4,9/2,4,7,4,5,4,5,4,5,5,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,9/2,5,9,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,5,5,8,5,5,4,5,3,7/2,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,3,3,4,3,7/2,3,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,1,3/2,1,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,4,3,4,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10 -15,8,8,6,8,5,6,5,8,5,5,4,7,9/2,6,11/2,9,5,5,4,5,3,4,7/2,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,4,4,4,6,9/2,6,6,12,13/2,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,13/2,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8 -26,14,14,10,14,8,10,8,27/2,8,8,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,10,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,7,5,8,8,14,8,8,6,9,5,6,5,17/2,5,6,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,6,5,15/2,4,4,3,4,3,5,5,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,3,4,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,1,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,4,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,1,1,1,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,4,5,4,9,5,5,4,6,4,5,5,17/2,5,6,5,9,6,8,8,8,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,10,6,6,4,6,4,4,3,9/2,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,21,11,12,8,12,8,10,9,16,9,10,8,12,8,12,11,20,11,12,9,13,9,12,12,22,12,14,11,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,13,9,12,11,16,9,9,7,10,6,8,6,21/2,6,7,5,8,6,8,8,15,8,9,6,9,5,6,6,19/2,6,6,5,9,6,7,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,6,4,4,4,13/2,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,3,3,3,4,3,4,4,13/2,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,4,4,5,3,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1,1,1,2,3,2,3,2,7/2,2,3,3,4,3,3,3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,5,5,17/2,5,5,4,7,5,7,7,14 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,7,4,4,7/2,5,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,5,5,7/2,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,12,13/2,7,5,7,5,6,5,9,5,6,9/2,7,5,7,6,11,6,7,5,7,5,7,7,12,7,8,13/2,11,15/2,11,11,20,11,11,15/2,11,6,7,6,11,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8 -16,9,9,6,8,5,11/2,5,8,5,11/2,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,5,3,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,6,4,4,3,6,4,4,3,4,3,7/2,4,5,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,6,4,4,3,5,3,7/2,3,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,9/2,4,6,4,6,6,6,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,11/2,4,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,6,4,4,3,6,4,13/2,6,13,7,7,5,8,5,13/2,6,9,5,11/2,4,7,5,7,7,12,7,7,6,8,6,15/2,8,14,8,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,6,4,5,4,7,4,5,4,6,4,11/2,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,2,2,3,3,4,2,5/2,2,4,3,4,4,8,4,4,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,3,2,3/2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,7,4,4,3,2,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,2,2,2,3,3,3,2,2,2,3,2,5/2,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,9/2,4,8 -12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,9/2,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,9/2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,7/2,5,5,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,5,5,7,4,4,7/2,6,4,5,5,10,6,6,5,7,5,6,6,11,13/2,7,6,10,7,10,10,18,19/2,10,7,10,6,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,7/2,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 -20,10,10,7,11,7,8,6,10,6,7,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,7,7,6,4,4,4,11/2,4,4,4,7,4,5,4,6,4,5,5,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,10,6,6,4,13/2,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,4,2,5/2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,3,9/2,3,4,4,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,4,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,4,2,2,2,5/2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,1/2,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,3,2,2,2,3,2,2,2,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,15/2,5,6,6,9,5,5,4,5,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,4,9/2,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,4,11/2,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,5,8,5,5,4,7,5,8,8,17,9,9,7,21/2,6,8,7,11,6,6,5,17/2,6,8,8,16,9,10,7,11,7,10,10,19,11,12,10,33/2,11,16,16,29,15,15,10,31/2,9,11,9,16,9,9,7,21/2,7,9,8,14,8,8,6,8,5,6,5,9,5,6,5,17/2,6,7,7,14,7,7,5,7,4,5,4,7,4,5,4,15/2,5,6,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,11/2,4,5,5,6,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,11/2,4,5,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,7/2,2,3,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,8,4,4,3,7/2,2,3,2,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,11/2,4,4,4,7,4,5,4,13/2,4,6,6,11 -13,7,7,5,7,9/2,5,4,7,4,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,5,3,3,3,5,7/2,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,5/2,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,5/2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,2,5/2,4,3,4,4,7,4,4,3,3,2,3,3,4,5/2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,9/2,6,5,8,9/2,5,4,6,4,6,6,11,6,7,5,8,5,7,7,12,7,8,13/2,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,9/2,8 -18,10,19/2,7,10,6,13/2,6,9,5,11/2,4,6,4,13/2,6,12,6,13/2,4,6,4,4,4,7,4,4,4,6,4,6,6,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,5,3,7/2,3,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,4,4,7,4,9/2,4,5,3,4,4,7,4,7/2,3,4,3,4,4,6,4,9/2,4,5,4,5,5,6,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,5/2,3,5,3,7/2,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,0,0,0,0,0,0,4,3,3,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,9/2,4,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,5/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,1,1,1,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,13/2,6,8,5,5,4,5,3,4,4,6,4,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,7/2,4,6,4,5,5,9,5,5,4,4,3,4,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,6,6,13,7,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,7,5,7,7,15,8,17/2,6,10,6,15/2,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,19/2,9,16,9,11,9,15,10,14,14,25,13,27/2,9,13,8,10,8,14,8,8,6,10,6,17/2,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,13/2,4,6,4,9/2,4,7,4,9/2,4,6,4,11/2,5,9,5,9/2,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,13/2,4,6,4,5,4,7,4,9/2,4,5,3,4,4,7,4,5,4,6,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,3,5,3,7/2,3,4,3,9/2,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,1,3,2,1,1,1,1,1/2,1,1,1,1/2,1,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,3,7,4,7/2,3,4,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,4,3,4,3,4,4,6,4,9/2,4,7,5,7,6,11 -18,10,10,7,10,6,6,11/2,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,5,7,4,4,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,1/2,0,0,0,0,0,0,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,2,1,2,2,2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,13/2,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,15,8,8,6,9,6,7,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,10,9,16,9,11,9,14,10,14,14,24,13,13,9,13,8,9,8,13,15/2,8,6,9,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,7/2,5,7/2,5,9/2,8,9/2,5,4,6,4,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1/2,0,1/2,0,1,3,2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11 -34,18,18,12,17,10,13,11,20,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,8,9,7,11,7,10,10,11,6,7,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,5,9,6,7,7,13,7,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,5,3,4,3,3,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,25/2,7,8,6,8,5,7,7,12,7,8,6,9,7,10,10,11,6,6,4,6,4,6,5,9,5,6,5,8,5,6,6,19/2,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3/2,1,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,8,4,4,3,5,3,3,2,3,2,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,15,8,9,6,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,15,8,9,6,9,6,8,7,13,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,7,8,6,10,7,11,11,23,12,12,8,11,6,7,6,11,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,11,7,8,7,12,8,12,13,29,15,16,12,18,11,13,11,20,11,12,10,17,11,16,15,57/2,15,16,12,18,12,16,15,29,16,18,15,26,18,27,27,47,24,24,16,23,13,16,13,23,13,14,11,18,11,15,14,53/2,14,14,10,14,9,11,10,18,10,11,9,15,10,13,13,22,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,9,7,10,6,8,8,15,8,9,7,12,9,13,13,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,7,10,10,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,6,10,7,9,9,19,10,11,8,11,7,8,7,12,7,7,5,8,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,-1,-7/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,3,2,2,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,4,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5/2,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,4,4,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,21/2,6,6,4,6,4,6,6,11,7,8,7,11,8,11,11,21 -18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,1,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,15,8,9,7,10,6,7,6,11,6,7,6,9,6,9,17/2,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,15/2,9,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,9/2,5,9/2,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,2,2,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,3/2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,13/2,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,11/2,5,6,4,7/2,3,4,2,5/2,2,4,3,3,3,3,2,7/2,4,6,4,7/2,3,5,3,3,3,5,3,7/2,3,4,3,9/2,4,10,6,11/2,4,6,4,7/2,3,4,3,7/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,12,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,5,5,7,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,6,3,3,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,3,3,3,2,7/2,4,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,7/2,3,3,2,3,3,6,4,4,3,5,4,9/2,4,7,4,4,4,7,5,7,7,9,5,5,4,6,4,4,3,6,3,3,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,4,9/2,4,7,4,9/2,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,9/2,4,6,4,6,6,14,8,15/2,5,7,4,5,5,7,4,5,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,5,4,8,6,8,8,15,8,9,7,10,6,7,6,11,6,7,6,10,7,19/2,9,16,9,9,7,10,7,9,9,16,9,11,9,15,10,29/2,15,26,14,14,10,14,8,19/2,8,13,8,17/2,7,11,7,9,9,16,8,8,6,8,5,6,6,11,6,13/2,6,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,9/2,4,8,5,11/2,4,6,4,11/2,5,8,5,5,4,7,5,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,3,3,7,4,4,3,4,3,7/2,4,5,3,7/2,4,6,4,6,6,10,6,11/2,4,7,4,9/2,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,3,2,2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,3/2,1,2,2,3/2,2,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,3,2,2,2,2,2,3/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,1,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,2,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,3,2,3,2,5/2,3,6,3,3,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,7,4,9/2,4,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,12 -13,7,7,5,7,9/2,6,5,8,9/2,5,4,6,4,5,5,8,4,4,3,5,3,4,7/2,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,3,4,7/2,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,7/2,5,3,3,5/2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,7/2,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,7/2,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,7/2,4,7/2,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,3,2,3,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,7/2,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,5/2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,5,5,9 -20,10,10,7,21/2,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,15/2,5,6,5,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,4,4,11/2,4,4,3,6,4,4,3,9/2,4,5,5,12,6,6,4,11/2,3,3,3,4,3,4,4,11/2,4,5,5,8,4,4,3,5,3,4,4,4,3,3,3,9/2,3,4,4,6,3,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,9/2,3,4,4,6,4,5,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,9/2,4,5,5,4,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,3,2,3,3,4,3,4,4,3,2,2,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,5/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,1,1,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,3,4,4,5,3,4,3,5,4,5,5,6,4,4,4,13/2,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,11/2,4,5,4,8,5,5,4,9/2,3,4,4,8,5,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,5,4,15/2,5,7,7,10,6,6,4,13/2,4,6,5,8,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,5,10,6,6,4,13/2,4,5,5,9,5,6,5,17/2,6,9,9,17,9,10,7,21/2,6,8,7,12,7,8,7,23/2,8,10,10,18,10,10,8,13,8,10,10,18,10,12,10,33/2,12,17,17,30,16,16,11,16,9,11,9,16,9,9,7,12,8,11,10,18,9,9,6,19/2,6,8,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,15/2,5,6,6,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,13/2,4,6,6,10,5,5,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,8,5,5,4,6,4,5,5,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,11/2,4,4,3,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,2,5/2,2,3,3,1,1,1,1,3/2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,1,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,3,2,2,1,1/2,0,0,0,2,2,2,1,1/2,0,0,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,1,0,0,0,0,1/2,0,0,0,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,7,4,4,3,9/2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,4,11/2,4,4,4,5,3,4,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,6,4,13/2,5,7,7,13 -12,6,6,5,7,4,5,9/2,7,4,4,4,6,4,4,9/2,8,4,4,3,5,3,4,7/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,3,3,4,3,3,2,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,6,7/2,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,5,8,5,5,9/2,8,5,6,6,11,6,6,5,8,5,6,6,11,13/2,8,6,10,15/2,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,7/2,4,3,4,3,4,4,6,7/2,4,3,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,9 -16,8,8,6,10,6,7,6,10,6,11/2,4,7,4,11/2,6,10,6,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,7/2,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,9/2,3,4,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,11,6,6,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,9/2,4,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,7/2,2,4,2,5/2,2,5,3,3,3,3,2,7/2,4,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,1,6,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3,4,3,2,2,2,2,2,3/2,1,2,1,1,1,0,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,5,3,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,1,2,5/2,2,3,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,2,5/2,2,4,2,5/2,2,2,2,7/2,4,4,3,3,3,4,3,4,4,5,3,7/2,4,6,4,6,6,12,7,7,5,7,4,9/2,4,6,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,3,6,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,11/2,5,9,5,11/2,4,6,4,4,4,7,4,5,4,6,4,13/2,7,15,8,15/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,7,6,10,6,17/2,8,15,8,17/2,6,11,7,17/2,8,14,8,10,8,14,10,14,14,24,12,12,9,13,8,9,7,14,8,8,6,9,6,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,14,8,15/2,5,7,4,5,5,8,4,9/2,4,5,3,4,4,8,4,9/2,4,5,4,5,5,7,4,5,4,8,6,8,8,12,6,13/2,5,7,4,5,4,7,4,9/2,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,4,3,6,4,5,5,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,9/2,4,7,5,7,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,1,1,1,3,2,2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,4,2,5/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,1,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,2,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,-1,0,0,1,0,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,7,4,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12 -15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,4,2,2,2,4,3,3,5/2,3,5/2,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,7/2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,9,5,5,4,5,7/2,4,4,6,4,5,4,6,4,6,13/2,14,8,8,5,7,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,6,4,5,9/2,7,5,7,7,12,7,7,11/2,8,5,6,6,10,6,7,6,9,6,8,8,14,15/2,8,6,10,6,8,15/2,13,8,9,8,13,9,13,13,22,11,11,8,12,7,9,7,12,7,8,6,9,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,9/2,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,8,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,7,5,7,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,3/2,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 -27,14,14,10,14,8,10,9,31/2,8,8,6,10,7,9,8,16,8,8,6,9,6,7,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,6,8,4,4,3,4,3,4,4,11/2,4,4,4,6,5,7,7,14,7,7,5,6,4,4,4,11/2,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,3,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,15/2,4,5,5,8,6,8,7,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,9,5,4,3,4,3,3,3,9/2,2,2,2,3,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,6,4,6,6,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,2,2,5/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5/2,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,11/2,4,4,3,4,3,5,5,6,4,5,4,6,4,6,5,17/2,5,6,5,9,6,9,9,22,12,12,8,12,7,8,6,21/2,6,7,5,8,5,7,7,13,7,6,4,6,4,5,5,8,5,6,5,7,5,8,8,16,9,9,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,10,6,7,6,21/2,6,8,7,12,8,12,12,26,13,13,9,14,8,10,8,27/2,8,8,6,10,6,7,7,12,7,7,5,8,5,6,6,23/2,7,8,7,12,8,12,13,23,12,12,9,14,8,10,10,35/2,10,10,8,14,10,14,14,25,13,14,11,17,11,15,14,25,14,17,14,24,16,24,24,42,22,22,15,21,12,14,12,45/2,12,14,11,18,11,15,14,25,13,13,9,12,7,9,8,27/2,8,9,7,12,8,11,11,23,12,12,8,12,7,9,8,25/2,6,6,5,7,5,6,6,14,8,9,7,10,6,8,7,13,8,9,7,12,9,13,13,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,9,7,10,6,7,6,21/2,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,17/2,5,6,4,6,4,6,6,15,8,9,7,10,6,8,7,25/2,8,9,7,12,8,11,11,16,9,9,7,10,6,7,6,21/2,6,6,5,7,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,6,3,3,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,0,0,0,0,0,0,1/2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,8,6,9,6,7,6,23/2,7,8,6,10,7,11,11,20 -15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,10,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,9/2,5,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,13/2,8,8,14,8,10,8,14,19/2,14,14,24,13,13,9,12,7,8,7,13,7,8,13/2,10,7,9,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,13/2,13,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,9/2,8,5,5,4,7,5,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,7/2,6,7/2,4,3,4,3,4,4,8,5,5,4,6,4,5,9/2,8,5,6,9/2,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,4,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,3/2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,7/2,4,4,7,4,5,4,6,4,6,6,11 -18,10,10,7,10,6,7,6,10,6,6,5,7,5,13/2,6,11,6,11/2,4,6,4,4,4,6,4,9/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,9,5,9/2,3,4,3,3,3,3,2,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,7/2,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,4,9/2,4,5,3,7/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,5,3,4,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,5,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,3,2,3,3,4,3,7/2,4,6,4,9/2,4,6,5,7,7,14,8,15/2,6,8,5,11/2,5,8,5,11/2,4,6,4,5,5,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,11,6,6,4,7,4,11/2,5,8,5,11/2,5,8,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,8,5,5,5,8,6,17/2,8,16,8,8,6,10,6,15/2,6,12,7,15/2,6,10,7,9,9,16,9,9,7,12,8,19/2,9,16,10,23/2,10,16,11,16,16,29,15,15,10,15,9,21/2,9,15,8,19/2,8,12,8,10,9,17,9,17/2,6,9,6,13/2,6,10,6,6,5,8,6,15/2,8,15,8,9,6,8,5,11/2,5,8,4,9/2,4,6,4,11/2,5,9,5,11/2,4,7,4,11/2,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,5,4,6,4,11/2,5,10,6,6,5,6,4,5,5,7,4,5,4,6,4,11/2,6,11,6,6,4,6,4,5,4,7,4,9/2,4,5,4,9/2,4,9,5,6,5,6,4,11/2,5,9,6,13/2,5,8,6,8,8,10,6,11/2,4,6,4,9/2,4,7,4,9/2,4,4,3,3,3,5,3,3,2,3,2,3,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,5,3,5/2,2,3,2,3/2,1,2,1,1/2,0,1,1,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,9/2,4,8,5,5,4,6,4,5,5,8,5,11/2,4,7,5,7,7,12 -15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,2,3,3,3,2,3,2,2,2,2,2,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,3,4,4,3,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,4,3,5,4,6,6,12,13/2,6,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,6,10,6,6,9/2,6,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,8,11/2,7,7,13,7,8,6,10,6,8,8,13,8,10,8,13,9,13,13,24,13,13,9,12,7,9,8,13,7,8,6,10,6,8,8,14,15/2,8,5,8,5,6,5,8,5,5,4,7,5,6,13/2,12,7,7,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,5,4,6,4,4,4,8,9/2,5,9/2,8,11/2,8,8,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,9/2,5,4,5,4,5,9/2,8,5,6,9/2,7,5,7,7,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,5/2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,5/2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,6,10 -25,13,13,9,27/2,8,10,8,14,8,9,7,10,7,9,8,15,8,9,6,19/2,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,5,4,6,6,9,5,4,3,9/2,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,4,3,4,3,5,4,5,4,8,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,3,3,17,9,8,6,17/2,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,5,3,3,2,7/2,3,4,4,8,5,5,4,5,3,4,4,8,5,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,6,4,4,3,7/2,2,3,3,4,2,2,2,7/2,2,3,3,5,3,3,3,5,3,4,4,4,3,4,4,7,5,8,8,5,3,3,2,2,2,2,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,5,3,3,2,2,2,2,2,5/2,2,2,2,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,4,3,9/2,3,4,4,8,5,6,5,8,6,8,9,21,11,12,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,8,23/2,7,8,7,12,7,7,6,17/2,6,8,8,16,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,12,22,12,12,8,25/2,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,33/2,10,14,13,22,13,15,13,45/2,16,23,23,42,22,22,15,43/2,12,15,13,22,12,14,10,33/2,10,14,13,23,12,13,9,13,8,10,8,14,8,9,7,11,8,11,11,21,11,12,8,12,7,8,6,10,6,7,5,8,5,7,7,12,7,7,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,12,8,12,7,8,7,12,7,8,6,19/2,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,8,8,16,8,8,6,8,5,6,6,10,6,7,6,17/2,6,8,7,13,7,8,6,9,6,7,7,14,8,9,7,12,8,11,11,14,8,8,6,9,5,6,5,10,6,6,4,13/2,4,4,4,7,4,5,4,11/2,4,4,3,5,3,4,3,7/2,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,3,2,1,1,1,1,1,1,1/2,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,6,3,3,2,3,2,2,1,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,-4,-1,-1,0,-1/2,0,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,4,5,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,17/2,6,8,9,17 -17,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,7/2,4,3,4,3,3,3,4,3,4,4,6,3,3,2,4,5/2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,5/2,3,2,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,5,7/2,5,9/2,6,4,4,3,4,5/2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,5,4,6,5,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,7/2,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,11/2,6,11/2,9,5,6,4,7,9/2,6,6,10,11/2,6,4,6,4,5,5,8,9/2,5,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,11/2,9,6,8,8,15,8,9,7,11,7,9,9,15,9,10,9,15,11,16,31/2,28,15,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,17/2,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,15/2,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,9/2,6,5,9,5,6,11/2,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,9/2,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,4,7,4,5,5,9,11/2,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-2,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,5/2,4,3,4,4,7,4,4,7/2,6,4,5,4,7,4,4,4,6,4,6,6,12 -24,12,12,9,14,8,19/2,8,14,8,17/2,6,10,7,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,7,5,8,5,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,11/2,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,17,9,9,6,8,5,6,5,10,6,11/2,4,7,4,11/2,5,9,5,11/2,4,6,4,5,4,8,4,9/2,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,4,4,7,4,5,4,6,4,6,6,9,5,11/2,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,4,7,5,15/2,7,4,2,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,3,2,3,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,7,5,6,5,7,6,17/2,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,13/2,5,7,4,11/2,5,10,6,7,6,9,6,19/2,10,19,10,10,7,12,7,8,7,11,6,7,5,8,6,8,8,15,8,17/2,6,9,6,7,7,13,7,8,7,12,8,25/2,12,25,13,13,9,14,8,9,8,13,7,8,6,10,6,17/2,8,15,8,8,6,9,6,15/2,7,11,6,15/2,7,12,8,23/2,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,12,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,45/2,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,27/2,13,23,12,25/2,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,21/2,8,11,6,7,6,10,6,13/2,5,8,5,7,7,12,7,15/2,6,10,6,15/2,7,12,7,17/2,8,12,8,25/2,12,24,12,12,9,13,8,17/2,8,13,7,8,6,9,6,8,8,13,7,15/2,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,13/2,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,15/2,7,13,8,9,7,11,8,21/2,11,14,8,17/2,6,8,5,5,5,9,5,5,4,6,4,4,4,8,4,9/2,4,5,3,7/2,3,5,3,7/2,3,4,3,3,3,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,7/2,4,7,4,7/2,2,4,2,3/2,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,5,3,5/2,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,0,0,-1,0,1/2,1,0,0,0,1,1,1,2,2,3,2,3/2,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,9/2,5,10,6,11/2,4,5,4,9/2,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,13/2,6,10,6,13/2,5,8,6,9,9,17 -24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,8,14,8,8,6,8,5,6,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,16,9,9,6,9,5,6,5,9,5,6,4,7,9/2,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,7/2,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,11/2,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,7,5,7,7,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,9/2,5,5,7,11/2,8,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,11/2,9,6,8,8,15,8,8,6,9,6,7,7,13,15/2,9,15/2,13,9,13,25/2,24,13,13,9,14,8,9,8,14,15/2,8,6,10,13/2,9,8,15,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,23/2,12,9,15,10,13,12,22,13,15,13,22,15,22,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,13,25/2,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,10,15/2,11,6,7,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,9,8,13,9,13,25/2,24,12,12,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,7,13,15/2,8,7,11,15/2,10,11,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,9/2,8,4,4,7/2,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,5/2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,5,3,2,2,3,2,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,1/2,0,0,0,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,3,2,3,3,5,3,4,5/2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17 -46,24,24,16,24,14,17,14,24,13,14,11,19,12,17,16,30,16,17,12,18,11,14,13,23,13,14,11,17,11,16,16,30,16,16,11,16,9,11,9,15,8,9,7,10,7,9,8,15,8,8,6,9,6,7,7,13,7,8,7,11,8,11,11,21,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,31,16,16,11,17,10,12,10,17,10,11,9,14,9,12,12,23,12,12,9,14,9,11,10,17,10,11,9,15,10,14,13,25,13,13,9,14,8,9,7,12,7,8,6,10,6,8,7,13,7,7,5,7,4,5,5,9,5,6,5,9,6,9,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,9,13,8,10,9,15,8,9,7,10,6,8,8,14,8,8,7,11,7,10,9,16,9,11,9,15,10,14,14,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,8,8,14,8,9,7,10,6,8,8,15,9,10,9,16,11,16,16,42,22,22,15,23,13,16,13,22,12,13,9,14,9,12,11,21,11,12,9,13,8,11,10,19,11,13,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,11,9,14,9,13,13,24,13,14,11,17,11,15,14,26,15,18,15,26,17,25,24,95/2,24,24,17,26,15,17,15,26,14,15,11,18,12,16,16,30,16,17,12,19,12,16,15,28,16,19,16,27,18,26,26,52,27,27,19,28,16,20,18,33,18,20,16,26,17,23,23,44,23,25,19,30,19,25,24,45,25,30,25,44,30,44,44,82,42,42,28,42,24,28,23,41,22,23,18,29,18,25,24,45,23,24,16,24,14,17,15,28,15,17,14,23,15,21,21,40,21,21,14,21,12,14,12,21,11,12,10,16,10,14,14,26,14,14,11,17,11,14,12,22,13,16,14,24,16,24,24,95/2,24,24,17,26,15,17,14,25,14,15,11,18,11,15,14,26,13,13,9,14,9,11,10,18,11,13,11,18,12,18,18,35,18,19,13,19,11,13,12,21,11,12,9,14,9,13,12,22,12,13,10,16,10,13,12,23,13,15,13,22,15,21,21,29,15,16,11,16,9,11,9,16,9,10,8,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,12,23,12,12,8,12,7,9,8,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,3,2,1,1,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,2,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,9,9,16,11,17,17,32 -23,12,13,9,12,7,9,7,12,7,8,6,10,7,9,9,16,9,9,7,9,6,8,7,12,7,7,6,9,6,9,8,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,9/2,8,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,9/2,6,4,4,7/2,5,3,3,3,3,5/2,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,16,9,9,6,9,11/2,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,5,7,5,6,11/2,9,11/2,6,5,8,11/2,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,8,9/2,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,9,22,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,11/2,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,9,11,10,17,9,10,8,14,9,12,12,22,12,13,10,16,10,13,25/2,23,13,16,13,23,16,23,23,42,22,22,15,22,12,14,12,21,23/2,12,19/2,15,10,13,25/2,23,12,12,9,13,8,9,8,15,8,9,7,12,8,11,11,21,11,11,8,11,13/2,8,7,11,6,6,11/2,8,6,8,8,14,8,8,6,9,6,8,13/2,11,7,8,7,13,9,12,12,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,13/2,11,6,6,5,8,5,7,7,12,7,7,11/2,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,6,5,6,4,6,6,12,6,6,4,7,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,7,4,5,9/2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,3/2,1,1,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,2,3,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,5,8,6,9,9,17 -23,12,13,9,12,7,17/2,7,12,7,15/2,6,11,7,9,9,16,9,9,7,9,6,8,7,11,6,7,5,9,6,9,8,15,8,17/2,6,8,5,11/2,5,7,4,5,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,5,3,3,3,3,2,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,4,2,2,2,3,2,3/2,1,1,1,3/2,2,2,2,2,2,17,9,9,6,9,6,13/2,6,9,6,13/2,5,7,5,13/2,6,12,6,13/2,5,7,5,6,6,9,6,13/2,5,9,6,7,7,13,7,15/2,5,8,5,5,4,7,4,9/2,4,6,4,9/2,4,6,4,7/2,3,3,2,3,3,5,3,4,3,4,3,5,5,11,6,11/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,8,5,11/2,4,6,4,5,5,8,5,5,5,8,6,17/2,9,22,12,12,8,13,8,17/2,7,12,7,7,5,7,5,6,6,12,6,6,5,8,5,13/2,6,10,6,13/2,6,9,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,8,6,9,6,15/2,7,13,8,19/2,8,14,9,13,13,24,13,13,9,13,8,19/2,8,14,8,17/2,6,10,6,17/2,8,15,8,9,7,10,6,17/2,8,14,8,19/2,8,14,10,14,14,27,14,14,10,14,9,11,10,16,9,21/2,8,14,9,25/2,12,22,12,25/2,10,16,10,27/2,13,23,13,16,13,23,16,23,23,42,22,22,15,22,12,29/2,12,22,12,25/2,10,16,10,27/2,13,24,12,25/2,9,13,8,9,8,15,8,9,7,12,8,23/2,11,21,11,21/2,8,10,6,15/2,7,11,6,13/2,6,8,6,15/2,8,15,8,8,6,10,6,15/2,6,11,7,8,7,13,9,25/2,12,24,12,25/2,9,13,8,19/2,8,13,7,8,6,10,6,17/2,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,19/2,7,10,6,8,7,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,6,13/2,6,9,5,6,5,6,4,6,6,12,6,6,4,7,4,11/2,5,7,4,5,4,7,5,7,7,12,6,13/2,4,7,4,11/2,5,7,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,5,3,3,2,2,2,3/2,2,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-3,-1,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,2,3,2,5/2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,5,3,4,4,7,5,6,5,8,6,19/2,9,17 -16,17/2,9,6,9,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,5,5,8,9/2,5,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,4,3,4,4,8,4,4,7/2,5,3,4,3,4,5/2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,12,7,7,5,6,4,5,4,7,4,5,4,5,7/2,4,4,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,15,8,9,6,9,11/2,6,5,8,5,5,4,5,4,5,5,8,4,4,7/2,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,9,6,7,6,10,13/2,9,9,17,9,9,6,9,6,7,6,10,6,6,5,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,13/2,9,8,15,8,9,7,11,7,10,9,16,9,11,9,16,11,16,16,29,15,15,10,15,9,10,9,15,8,8,13/2,11,7,10,9,16,9,9,6,9,11/2,6,6,10,6,6,5,8,6,8,8,14,15/2,7,5,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,6,4,7,9/2,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,8,4,4,4,6,4,6,5,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,7/2,5,7/2,5,5,9,5,5,7/2,5,3,4,4,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,7/2,4,4,6,5,7,13/2,12 -23,12,13,9,13,8,9,8,12,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,9/2,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,13/2,4,6,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,1,1,1,1,2,2,3/2,2,2,2,18,10,10,7,19/2,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,7,14,7,7,5,7,4,5,4,8,5,5,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,9/2,4,5,6,11,6,6,4,5,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,9,5,6,5,17/2,6,7,7,5,3,3,2,7/2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,3,3,4,3,4,3,9/2,3,4,4,9,5,5,4,9/2,3,3,3,5,3,2,2,5/2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,4,3,4,3,9/2,4,5,5,9,5,6,5,15/2,5,6,6,10,6,7,6,19/2,7,10,10,23,12,13,9,27/2,8,10,8,12,7,7,5,8,5,7,7,12,7,7,5,15/2,5,6,6,9,5,6,5,17/2,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,12,7,7,6,9,6,8,7,13,8,9,8,14,9,13,13,26,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,21/2,7,9,8,14,8,10,8,29/2,10,15,15,27,14,14,10,29/2,9,12,10,16,9,10,8,14,9,12,12,22,12,13,10,16,10,14,13,23,13,16,14,47/2,16,24,24,43,22,22,15,45/2,13,15,13,22,12,13,10,31/2,10,13,13,24,12,12,9,13,8,10,9,14,8,10,8,25/2,8,11,11,21,11,11,8,21/2,6,8,7,12,7,7,6,17/2,6,8,8,16,9,9,7,11,7,8,7,12,7,9,8,25/2,9,13,13,24,13,13,9,14,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,21/2,8,11,11,19,10,10,7,19/2,6,8,7,11,6,7,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,11,8,12,12,16,9,9,6,19/2,6,7,6,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,5,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,3,2,2,2,5/2,2,2,2,5,3,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-3,-1,-1,0,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,3,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,3,6,4,4,3,5,3,4,4,8,5,6,6,19/2,7,10,9,17 -13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,11/2,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,3,3,4,3,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,9/2,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,15/2,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,4,6,4,6,5,7,4,4,7/2,5,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,11/2,8,5,6,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,7,4,4,7/2,6,4,5,5,9,5,6,9/2,7,4,5,5,8,5,6,5,8,11/2,8,8,13,7,8,11/2,8,5,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,12,6,6,4,6,4,5,9/2,7,4,4,7/2,5,4,5,9/2,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,5,4,6,7/2,4,3,5,3,4,9/2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,11/2,10 -16,9,9,7,9,6,13/2,6,8,5,11/2,5,7,5,7,7,12,6,13/2,4,6,4,4,4,7,4,5,4,6,4,11/2,5,11,6,6,4,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,9/2,4,9,5,11/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,1,1/2,0,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,12,6,13/2,4,7,4,5,4,7,4,9/2,4,5,4,9/2,4,10,6,11/2,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,11/2,4,6,4,7/2,3,6,4,4,3,4,3,4,4,4,2,5/2,2,2,2,5/2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,6,4,9/2,4,6,4,11/2,5,4,2,5/2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,7,4,7/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,8,5,5,4,6,4,5,5,8,5,11/2,5,7,5,15/2,8,17,9,19/2,7,10,6,7,6,8,5,11/2,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,13/2,6,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,10,7,9,9,18,10,19/2,7,10,6,8,7,11,6,6,5,7,5,13/2,6,11,6,7,5,8,5,13/2,6,10,6,15/2,6,10,7,21/2,10,20,10,21/2,7,11,7,17/2,7,12,7,8,6,10,6,17/2,8,16,9,10,8,12,8,21/2,10,16,9,11,9,17,12,33/2,16,30,16,31/2,11,15,9,10,9,15,8,17/2,6,11,7,9,9,16,9,9,7,9,6,15/2,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,6,8,5,5,4,7,5,6,6,11,6,13/2,5,8,5,6,6,10,6,7,6,9,6,19/2,9,15,8,17/2,6,9,5,6,5,10,5,5,4,6,4,11/2,5,10,5,5,4,5,4,5,5,7,4,11/2,5,8,6,15/2,8,15,8,7,5,8,5,6,5,9,5,5,4,6,4,11/2,5,9,5,5,4,6,4,11/2,5,8,5,11/2,5,8,6,8,8,11,6,13/2,5,7,5,6,5,7,4,5,4,6,4,11/2,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,0,0,1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,11/2,6,4,5,3,4,7/2,6,7/2,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,6,13/2,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,9/2,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,11/2,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,11/2,7,6,10,5,5,4,6,4,6,5,10,11/2,6,9/2,7,9/2,6,5,9,5,6,5,9,6,9,9,17,9,9,6,10,6,7,6,10,6,7,5,8,11/2,8,7,14,8,8,13/2,10,7,9,8,14,8,10,8,15,10,14,14,25,13,13,9,13,8,9,8,13,7,7,11/2,9,6,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,9/2,8,4,4,7/2,5,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,7,7,10,6,6,9/2,6,4,5,4,6,4,4,4,6,4,5,5,8,9/2,5,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,11/2,10 -24,13,13,9,12,7,8,8,27/2,8,8,7,11,7,10,9,18,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,14,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,5,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,9,5,5,3,4,3,4,4,11/2,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,15/2,5,6,5,8,6,8,8,4,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,6,4,4,3,3,2,2,2,9/2,3,4,3,4,3,5,5,9,5,5,4,7,4,5,4,15/2,4,5,4,7,5,6,5,12,7,7,5,8,6,8,7,25/2,7,8,7,11,8,11,11,27,14,14,10,14,8,10,8,27/2,8,8,6,9,6,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,9,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,29,15,16,11,16,9,11,10,33/2,9,9,7,10,7,9,9,17,9,10,8,12,7,9,8,31/2,9,11,9,16,11,16,16,30,16,16,11,16,10,12,10,37/2,10,11,8,13,9,12,12,25,13,14,11,18,11,14,14,51/2,14,17,14,24,16,24,24,44,22,22,15,22,13,15,13,22,12,13,10,15,9,12,12,25,13,14,10,14,8,10,9,15,9,10,8,14,9,13,13,20,11,11,8,12,7,8,8,27/2,8,8,6,10,6,8,8,18,10,10,7,11,7,9,8,29/2,8,10,8,14,10,14,14,22,11,11,8,11,7,8,8,14,8,8,6,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,8,13,7,8,6,8,5,7,6,23/2,7,8,7,11,8,12,12,18,10,10,7,10,6,8,7,23/2,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,15/2,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,15/2,4,4,3,3,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,7,4,5,4,5,3,3,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,7,4,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,9/2,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,13/2,4,5,5,9,6,9,9,18 -13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,7,4,5,4,6,9/2,6,6,15,8,8,6,8,5,6,5,8,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,15/2,8,6,10,6,8,8,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,12,7,7,11/2,8,5,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,5/2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,10 -13,7,15/2,5,7,4,5,4,8,5,5,4,6,4,11/2,6,9,5,6,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,9,5,4,3,5,3,3,3,4,2,5/2,2,4,3,7/2,3,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,11,6,6,4,6,4,9/2,4,7,4,4,3,4,3,7/2,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,3,5,3,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,3,2,4,3,7/2,4,6,4,4,3,3,2,3,3,4,3,7/2,3,5,4,9/2,4,6,4,7/2,2,3,2,5/2,2,4,3,3,2,2,2,7/2,3,5,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3,3,2,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,3,2,7/2,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,8,17/2,6,8,5,11/2,5,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,5,3,7/2,3,5,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,6,6,9,5,11/2,4,6,4,5,5,8,5,13/2,6,9,6,17/2,8,17,9,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,10,6,6,5,7,4,11/2,6,10,6,7,6,10,7,19/2,9,17,9,19/2,7,9,6,15/2,6,11,6,7,5,8,6,15/2,7,15,8,17/2,6,10,6,17/2,8,15,9,10,9,14,10,14,14,25,13,13,9,13,8,9,7,13,7,8,6,9,6,8,7,14,8,8,6,8,5,13/2,6,9,5,6,5,8,6,8,8,12,6,13/2,5,7,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,11/2,5,9,6,13/2,5,9,6,17/2,8,13,7,7,5,7,4,11/2,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,5,4,6,5,7,7,13,7,15/2,6,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,15/2,8,11,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,5,5,8,5,5,3,5,3,4,4,5,3,4,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,5,3,7/2,3,4,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,5,3,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,1,1,1,2,2,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,0,0,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,6,3,3,2,2,2,5/2,2,3,2,2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,4,3,3,3,5,3,4,4,6,4,5,5,10 -10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,9/2,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,3,5/2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,8,5,5,7/2,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,7/2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,3,5,4,5,5,13,7,7,5,6,4,4,4,6,7/2,4,3,4,3,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,7/2,4,3,5,7/2,5,5,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,9/2,8,5,6,5,8,6,8,7,13,7,8,11/2,7,5,6,5,9,5,6,4,6,9/2,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,9/2,5,4,7,5,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10,11/2,6,4,6,7/2,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,4,2,2,1,2,2,2,1,2,2,2,2,2,3/2,2,1,1,1,0,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,9/2,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,5/2,2,3,3,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,12,6,6,5,7,4,5,4,9,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,11/2,4,6,6,12,6,6,4,11/2,4,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,7/2,3,4,3,3,2,3,2,7/2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,4,3,3,2,2,1,1,1,4,3,3,2,7/2,3,4,3,3,2,2,2,4,3,4,3,5,3,3,2,7/2,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,8,4,4,3,9/2,4,5,5,9,5,5,4,13/2,4,5,5,8,5,6,5,15/2,6,8,8,21,11,10,7,21/2,6,7,6,8,5,6,4,13/2,4,6,6,8,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,7,6,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,22,12,12,8,25/2,7,8,7,12,7,7,6,9,6,7,7,12,7,7,6,9,6,8,7,14,8,9,8,13,9,12,12,21,11,11,8,12,7,9,7,14,8,8,6,10,7,9,9,18,10,10,8,13,8,11,10,18,11,13,11,18,12,18,18,30,16,16,11,15,9,10,9,17,9,10,7,11,7,10,9,16,9,9,7,11,7,9,8,13,7,8,7,11,7,10,10,15,8,8,6,17/2,5,6,5,10,6,6,5,7,5,6,6,14,8,8,6,17/2,5,6,6,11,6,7,6,21/2,7,10,10,15,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,6,5,8,6,9,9,16,8,8,6,17/2,5,6,6,8,5,6,5,15/2,6,8,7,11,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,7,9,5,6,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,2,2,2,5/2,2,2,2,8,4,4,3,9/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,5,3,3,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,0,1,1,1,1/2,1,1,1,2,2,2,1,1/2,1,2,2,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,5/2,2,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,2,3,2,3,3,7,4,4,3,7/2,3,4,3,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,7,4,3,2,3,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,11 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,5/2,3,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,8,4,4,7/2,5,3,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,3,2,3,2,3,2,4,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,2,2,5/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,3,2,4,3,4,3,6,4,4,3,4,3,4,7/2,6,4,4,7/2,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,5,9/2,7,5,7,7,14,8,8,11/2,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,19,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,11/2,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,7/2,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,3,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7 -12,7,7,5,6,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,5,11/2,4,5,3,7/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,5,3,3,3,6,4,7/2,3,4,3,4,4,6,3,3,3,5,3,4,4,6,3,3,3,4,3,7/2,4,8,4,9/2,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,11,6,13/2,5,7,4,4,4,8,4,4,3,4,3,7/2,4,6,4,7/2,3,3,2,3,3,5,3,7/2,3,6,4,11/2,6,11,6,5,4,5,3,4,4,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,7/2,3,5,3,7/2,2,3,3,4,4,7,4,4,3,5,3,7/2,4,7,4,5,4,6,4,11/2,5,7,4,4,3,4,2,5/2,2,3,2,3,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,5,3,4,4,6,4,13/2,7,5,3,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,7,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,3,3,4,4,8,4,9/2,3,4,3,4,4,7,4,4,3,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,6,5,7,5,15/2,8,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,13,7,15/2,6,8,5,6,5,8,5,11/2,5,7,5,13/2,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,13/2,6,9,6,15/2,7,11,6,13/2,5,8,5,13/2,6,12,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,17/2,7,11,7,9,8,14,8,21/2,9,15,10,31/2,16,26,14,27/2,9,13,8,10,8,14,8,9,7,10,6,17/2,8,14,8,8,6,9,6,7,6,11,6,15/2,6,9,6,17/2,8,13,7,15/2,6,8,5,11/2,5,9,5,6,5,7,5,6,6,11,6,13/2,5,6,4,6,6,10,6,7,6,9,6,17/2,8,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,6,4,7,4,11/2,5,8,5,5,5,7,5,7,7,14,8,15/2,5,7,5,6,5,8,4,9/2,4,6,4,11/2,5,9,5,6,4,6,4,9/2,4,8,5,6,5,8,6,17/2,9,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,11/2,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,5,3,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,3/2,2,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,11/2,6,10 -12,6,6,9/2,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,10,6,6,9/2,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,10,11/2,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,13/2,6,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,10,6,8,15/2,13,8,10,8,14,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,7,13,7,7,11/2,8,5,7,6,11,6,7,6,9,6,8,8,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,9/2,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,8,6,9,9,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,3,5/2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,4,5/2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9 -22,12,12,8,11,7,9,8,14,8,8,6,9,6,8,8,15,8,9,6,9,6,7,6,9,5,6,5,7,5,6,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,19/2,6,6,4,6,4,5,5,8,5,5,5,8,5,7,6,14,7,7,5,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,19,10,9,6,9,6,7,6,10,6,6,4,6,4,6,6,19/2,6,6,5,7,5,7,7,12,7,9,7,12,8,11,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,7,6,11,8,12,12,11,6,7,5,8,5,5,5,8,5,5,4,6,4,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,11/2,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,14,10,14,14,31,16,16,11,17,10,11,9,16,8,8,6,9,6,8,7,25/2,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,41/2,11,11,8,12,8,10,9,16,10,12,10,17,12,17,17,33,17,17,12,18,11,13,11,20,11,12,9,15,9,12,12,22,12,13,9,14,9,12,11,21,12,14,12,20,13,18,18,34,18,18,13,19,11,14,12,20,11,12,9,15,10,14,14,26,14,15,12,20,13,17,16,30,17,19,16,28,19,29,29,49,25,26,18,26,15,17,14,24,13,14,11,18,11,14,13,25,13,13,9,14,9,11,11,20,11,12,10,17,11,16,16,24,12,12,8,11,7,8,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,10,9,16,9,10,8,14,10,15,15,25,13,14,10,14,8,10,9,15,8,9,7,10,7,9,9,33/2,9,10,8,12,7,9,9,16,9,10,8,13,9,13,13,25,13,14,10,14,8,10,9,16,9,9,7,12,8,10,9,16,9,10,7,11,8,11,10,19,11,12,10,17,12,17,17,25,13,13,9,14,8,9,8,14,8,8,7,11,8,11,11,41/2,10,10,7,11,7,9,8,15,8,9,7,11,7,10,10,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,15/2,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,9/2,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,2,2,2,2,1,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,2,2,3,3,4,2,2,2,2,2,3,3,9,5,5,4,6,4,5,4,6,4,4,3,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17 -11,6,6,9/2,6,4,5,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,10,5,5,4,5,7/2,4,7/2,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,13/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,16,17/2,8,6,9,11/2,6,5,9,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,13/2,10,7,9,9,16,9,10,9,15,10,15,15,26,27/2,14,10,14,8,9,8,13,7,8,6,10,6,8,7,14,15/2,8,11/2,8,5,6,6,11,6,7,6,9,6,9,9,13,7,6,9/2,6,4,5,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,7,6,9,13/2,9,9,14,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,5/2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,9 -11,6,6,5,6,4,5,4,7,4,9/2,4,6,4,5,5,8,5,11/2,4,6,4,5,4,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,5,3,4,4,8,4,9/2,4,5,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,1/2,1,10,5,5,4,6,4,9/2,4,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,9/2,4,6,4,6,6,10,6,11/2,4,5,3,3,3,4,2,5/2,2,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,8,4,9/2,4,5,3,7/2,4,6,4,4,3,4,3,7/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,4,5,5,7,4,5,4,5,3,7/2,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,13/2,7,7,4,9/2,4,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,5/2,2,2,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,7/2,4,5,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,4,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,9/2,4,7,4,5,4,5,4,5,5,8,5,11/2,5,8,6,15/2,8,17,9,17/2,6,9,6,13/2,6,9,5,11/2,4,5,4,9/2,4,7,4,7/2,3,4,3,3,3,6,4,9/2,4,5,4,5,6,13,7,15/2,6,8,5,6,5,7,4,5,4,8,5,13/2,6,12,6,13/2,5,7,5,6,5,9,6,13/2,6,9,6,9,9,17,9,19/2,6,9,6,15/2,6,11,6,13/2,5,8,5,13/2,6,12,7,15/2,6,8,5,7,6,11,7,8,7,10,7,9,9,19,10,10,7,11,7,8,7,12,7,15/2,6,8,6,8,8,15,8,9,7,10,7,9,9,16,9,21/2,9,16,11,31/2,16,27,14,14,10,14,8,9,8,14,8,17/2,6,10,6,8,7,15,8,17/2,6,8,5,7,7,11,6,15/2,6,10,7,9,9,13,7,13/2,5,6,4,5,4,6,4,9/2,4,5,4,11/2,6,10,6,6,4,6,4,11/2,5,9,5,11/2,5,8,6,17/2,8,14,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,9,5,6,4,7,4,11/2,5,8,5,11/2,4,8,5,7,7,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,11/2,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,19/2,10,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,6,4,5,5,9,5,11/2,4,6,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,7,4,7/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,2,1,-1,0,-1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,5/2,2,2,2,5/2,2,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,3,7/2,4,6,4,9/2,4,5,4,11/2,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,4,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,5/2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,6,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,7/2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,6,4,5,4,5,3,4,3,6,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,5,7,7,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,6,9/2,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,23/2,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,9/2,6,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,11/2,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,7/2,5,4,7,9/2,5,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,7/2,5,5,6,4,4,3,4,3,3,5/2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,5/2,3,3,4,3,4,3,4,3,4,4,7 -12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,11/2,4,4,4,7,4,4,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,11,6,6,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,13/2,5,7,7,10,6,6,4,5,3,4,4,4,3,3,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,7,5,7,6,7,4,5,4,11/2,4,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,7,8,9,5,5,4,9/2,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,2,2,2,2,4,3,3,3,8,4,4,3,9/2,3,4,3,4,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,7/2,2,3,3,3,2,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,13/2,4,6,5,9,5,6,6,19/2,6,9,9,18,9,9,7,10,6,6,5,10,6,6,4,13/2,4,6,5,8,4,4,3,9/2,3,4,4,7,4,5,4,13/2,5,7,7,15,8,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,6,6,9,6,7,6,9,6,9,10,19,10,10,7,10,6,8,7,13,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,21/2,8,11,11,20,10,10,7,11,7,8,7,13,7,8,6,21/2,7,9,8,18,10,10,8,23/2,8,10,9,16,10,12,10,17,12,18,18,30,16,16,10,29/2,8,10,8,15,9,10,8,23/2,8,10,9,17,9,9,7,11,7,9,8,12,7,8,7,23/2,8,10,10,14,7,7,5,15/2,5,6,5,7,4,4,4,6,4,6,6,10,6,6,4,13/2,4,6,6,9,5,6,5,17/2,6,9,10,16,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,10,6,6,5,15/2,5,6,6,9,6,7,6,9,6,8,8,16,8,8,6,17/2,5,6,5,9,5,6,5,7,5,6,6,10,6,7,5,8,5,7,6,11,7,8,7,23/2,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,15/2,5,6,5,10,6,6,5,15/2,6,8,7,9,5,6,4,11/2,4,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,7/2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,6,4,4,3,3,2,3,3,2,1,1,1,3/2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,4,3,3,2,5/2,2,2,3,4,3,3,2,2,2,2,2,4,2,2,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,6,6,11 -7,4,5,7/2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,6,10,6,8,13/2,10,7,11,11,18,10,10,13/2,9,5,6,5,9,11/2,6,5,7,5,6,11/2,10,6,6,9/2,7,9/2,6,5,8,5,5,4,7,5,6,6,9,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,6,6,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,7/2,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,6,7/2,4,3,5,3,4,4,6,4,5,4,5,3,4,4,7,9/2,5,9/2,8,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,7/2,5,4,8,5,5,7/2,5,3,4,7/2,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,1,0,1,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,4,4,7 -9,5,6,4,5,3,4,4,6,4,9/2,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,2,1,1,1,8,4,4,3,5,3,4,3,5,3,7/2,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,5,7,4,9/2,3,4,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,3,5,3,5/2,2,4,3,3,3,5,3,4,4,5,4,6,6,7,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,2,2,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,3,5,3,7/2,3,3,2,2,2,3,2,5/2,2,3,2,3,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,5,4,5,4,5,4,8,5,11/2,4,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,7/2,3,5,3,4,4,6,4,6,6,11,6,13/2,5,8,5,11/2,5,7,4,5,4,6,4,11/2,5,10,5,5,4,6,4,5,5,7,4,11/2,4,7,5,15/2,8,14,8,15/2,5,7,5,6,5,10,5,5,4,6,4,11/2,5,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,9,9,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,13,8,19/2,8,13,9,27/2,14,23,12,25/2,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,12,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,8,5,5,4,6,4,5,5,8,5,5,4,8,6,15/2,8,12,7,7,5,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,11/2,4,6,4,5,5,7,4,5,4,8,5,6,6,12,6,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,6,4,11/2,5,9,6,13/2,6,10,7,9,9,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,9/2,4,6,4,11/2,6,6,4,4,3,4,3,3,3,3,2,3,2,3,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,2,2,2,2,2,7,4,7/2,2,3,2,3,3,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,6,4,4,3,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,-2,0,-1/2,0,0,1,3/2,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,3/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,2,4,3,4,3,5,3,3,3,4,3,3,3,6,4,7/2,3,5,3,4,4,5,3,7/2,3,5,4,5,5,10 -8,5,5,4,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,5/2,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,7/2,6,7/2,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,7/2,5,7/2,4,4,7,9/2,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,7,4,5,4,5,7/2,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,9/2,5,9/2,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,8,6,8,11/2,7,7,12,7,8,7,12,17/2,12,13,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,12,7,7,5,8,5,6,5,9,11/2,6,5,8,5,7,7,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,5,7/2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9 -14,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,5,3,3,3,4,3,3,2,3,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,11/2,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,9/2,2,2,2,3,2,1,1,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,11,6,7,5,8,5,6,5,15/2,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,5,8,6,8,7,11,6,5,4,5,3,4,4,13/2,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,6,5,8,5,6,6,19/2,6,6,5,8,5,7,7,11,6,5,4,5,3,4,4,13/2,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,17/2,6,7,6,10,7,10,10,13,7,7,5,8,5,5,4,15/2,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,4,4,12,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,14,8,9,7,10,6,8,6,21/2,6,6,4,6,4,6,6,10,6,7,6,9,6,7,7,13,7,8,6,10,7,11,11,20,11,11,7,10,6,8,7,13,7,7,5,8,6,8,7,9,5,6,4,6,4,5,4,15/2,4,5,5,8,6,8,9,19,10,10,7,10,6,8,8,27/2,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,25/2,7,8,7,12,9,13,13,24,12,12,9,13,8,10,8,14,8,8,7,11,7,8,8,16,9,9,7,10,6,8,7,25/2,7,8,7,12,9,13,13,28,14,14,10,15,9,11,9,16,9,10,8,12,8,11,11,24,13,13,10,15,10,13,12,43/2,13,16,13,23,16,23,23,39,20,20,14,20,11,13,11,20,11,12,9,15,9,12,11,22,12,12,9,13,8,10,9,33/2,9,10,8,13,9,12,12,19,10,11,8,11,7,8,6,21/2,6,7,5,8,6,8,7,12,7,7,5,8,6,8,7,25/2,7,8,7,13,9,13,13,19,10,10,7,11,7,8,6,10,6,7,6,9,6,7,7,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,23/2,6,6,5,8,6,8,8,15,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,23,12,12,8,12,7,8,8,27/2,8,8,6,9,6,9,8,16,9,9,7,10,6,8,7,23/2,6,7,6,9,6,8,8,10,5,5,3,4,3,3,3,11/2,4,4,3,4,3,3,3,10,5,5,4,6,4,4,4,11/2,3,3,3,4,3,4,3,13,7,6,4,6,4,5,4,13/2,4,4,4,6,4,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,10,5,5,4,6,4,4,3,5,3,4,3,5,3,3,3,1,1,1,1,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,3,3,5,3,3,2,2,2,2,2,7/2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,8,5,6,5,17/2,5,6,5,9,6,9,9,17 -8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,7/2,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,7/2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,7/2,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,7/2,4,4,8,9/2,5,4,6,5,7,7,11,6,6,9/2,6,4,5,9/2,8,4,4,3,5,7/2,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,8,9/2,5,4,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,15/2,16,8,8,6,9,5,6,5,9,5,6,5,7,5,6,13/2,13,7,8,6,9,6,8,7,12,15/2,9,8,13,9,13,13,22,12,12,8,12,7,8,7,11,6,7,11/2,9,11/2,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,3,5,4,5,4,7,4,5,9/2,7,5,8,15/2,11,6,6,4,7,4,5,4,6,4,4,7/2,5,7/2,4,4,9,5,5,4,6,4,5,4,8,9/2,5,4,6,4,6,6,10,6,6,9/2,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,7/2,5,4,5,5,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10 -9,5,6,4,5,4,9/2,4,7,4,5,4,5,4,5,4,7,4,7/2,2,4,3,7/2,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,7/2,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,7/2,3,6,4,11/2,5,7,4,7/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,11/2,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,4,3,6,4,9/2,4,5,3,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,5,9,5,11/2,4,7,4,11/2,5,6,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,15/2,6,7,5,6,5,9,5,9/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,13,7,13/2,4,7,4,11/2,5,9,5,5,4,6,4,11/2,6,10,6,6,5,6,4,11/2,5,9,5,6,5,8,6,9,9,16,8,17/2,6,8,5,13/2,6,9,5,6,4,7,5,6,5,10,6,6,5,6,4,11/2,5,8,5,5,5,8,6,17/2,8,18,10,19/2,6,10,6,7,6,11,6,7,6,9,6,15/2,8,15,8,17/2,6,10,6,17/2,8,14,9,11,9,15,10,15,15,26,14,14,10,14,8,19/2,8,13,7,8,6,10,6,8,8,14,8,15/2,6,8,5,7,6,10,6,13/2,6,9,6,8,8,13,7,7,5,8,5,11/2,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,11/2,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,8,5,5,4,6,4,11/2,5,10,6,6,5,7,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,7,4,5,5,10,6,7,6,10,7,10,10,15,8,17/2,6,8,5,13/2,6,9,5,5,4,6,4,11/2,6,11,6,11/2,4,6,4,5,5,8,4,9/2,4,6,4,6,6,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,8,5,5,4,4,3,7/2,3,4,3,3,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,7,4,4,3,4,3,3,3,3,2,3,2,4,3,3,3,1,1,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,1,0,0,0,0,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,-3,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,4,2,5/2,2,3,2,2,2,4,3,7/2,4,6,3,3,3,5,3,4,4,5,3,4,3,4,3,3,3,8,4,4,3,5,3,4,4,6,4,9/2,4,6,4,6,6,11 -8,9/2,5,4,4,3,4,3,5,3,4,3,4,3,4,7/2,6,3,3,2,3,2,3,5/2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,5/2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,7/2,5,4,5,6,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,6,4,5,9/2,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,6,5,7,5,8,8,13,7,7,5,7,4,5,9/2,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,11/2,8,5,6,5,9,5,6,5,8,5,6,13/2,13,7,7,5,8,5,7,7,12,7,9,15/2,12,8,12,12,22,11,11,8,11,13/2,8,13/2,11,6,7,5,8,5,7,6,11,6,6,9/2,6,4,5,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,7/2,5,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,7/2,5,5,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,1,1,1,1/2,0,0,0,0,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9 -13,7,8,6,15/2,4,5,5,8,5,5,4,6,4,6,6,9,5,4,3,9/2,3,3,3,7,4,4,3,9/2,4,5,5,7,4,4,3,9/2,3,4,3,3,2,2,2,9/2,4,5,5,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,9/2,2,2,2,4,3,3,2,5/2,2,2,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,9/2,3,4,3,6,4,4,4,11/2,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,7,4,4,4,11/2,4,4,4,6,4,5,4,7,5,6,6,11,6,5,4,5,3,4,3,7,4,4,4,11/2,4,6,5,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,13,7,7,5,7,5,6,5,8,5,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,8,5,6,4,13/2,4,6,5,10,6,6,5,15/2,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,5,7,7,10,6,6,4,11/2,4,4,4,7,4,5,4,6,4,6,6,9,5,6,4,11/2,4,4,4,7,4,4,4,6,5,7,7,11,6,7,5,8,5,6,6,9,5,6,4,13/2,4,6,6,12,7,7,5,8,5,7,7,11,7,8,6,21/2,8,11,11,18,10,10,7,11,7,9,8,11,6,6,5,15/2,5,6,6,9,5,6,4,11/2,4,6,5,9,5,6,5,17/2,6,8,9,18,9,9,6,9,6,7,6,12,7,7,6,17/2,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,25/2,9,14,14,21,11,11,8,25/2,7,8,7,14,8,8,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,12,8,12,12,25,13,13,9,25/2,8,9,8,16,9,10,8,13,8,11,11,22,12,13,9,14,9,11,11,20,12,14,12,43/2,15,22,22,38,20,20,13,37/2,11,13,11,18,10,11,8,27/2,8,11,10,18,10,10,7,21/2,6,8,7,15,9,10,8,25/2,8,12,11,19,10,10,8,23/2,7,8,7,10,6,7,5,8,5,7,7,12,7,8,6,17/2,6,7,7,12,7,8,7,11,8,12,12,18,10,10,7,19/2,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,17/2,6,7,6,12,7,7,6,9,6,9,9,16,9,9,7,10,6,7,7,12,7,8,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,21,11,11,8,12,7,9,8,12,7,7,6,9,6,7,7,14,8,8,6,15/2,5,6,6,10,6,6,5,15/2,5,7,7,12,6,6,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,9,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,3,10,6,6,4,13/2,4,4,3,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,10,6,6,4,11/2,4,4,4,4,3,3,2,7/2,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,4,3,3,2,5/2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,7,4,3,2,3,2,2,2,6,4,4,3,5,4,5,5,8,5,5,4,11/2,4,4,3,5,3,4,3,9/2,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,11/2,4,4,4,10,5,5,4,11/2,4,4,4,9,5,6,5,15/2,6,8,8,15 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,5,6,5,8,4,4,7/2,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,6,5,6,4,5,9/2,8,5,5,4,6,4,6,6,9,5,6,4,7,9/2,6,5,9,11/2,6,5,8,6,9,9,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,11/2,6,6,11,6,7,6,9,6,8,8,15,8,9,13/2,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,12,7,9,7,12,7,7,6,9,6,7,7,12,7,7,5,7,9/2,6,5,10,6,7,5,8,6,8,8,13,7,7,11/2,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,9/2,8,9/2,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,9/2,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,7/2,4,4,7,4,4,3,5,7/2,5,5,8,4,4,3,4,5/2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,5/2,4,3,4,7/2,6,3,3,3,4,3,3,5/2,4,3,3,5/2,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,10 -13,7,7,5,7,4,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,4,3,7/2,3,6,4,4,3,5,3,4,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,8,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,5,9,5,9/2,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,3,3,3,5,4,5,5,7,4,5,4,6,4,11/2,5,8,5,6,5,8,6,9,9,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,5,5,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,6,6,10,6,11/2,4,7,4,9/2,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,9/2,4,6,4,9/2,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,5,7,7,10,6,6,5,8,5,11/2,5,8,5,6,5,6,4,6,6,12,6,13/2,5,7,5,13/2,6,12,7,15/2,6,10,7,10,10,19,10,10,7,10,6,15/2,6,11,6,13/2,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,18,10,19/2,7,9,6,7,6,12,7,7,5,9,6,15/2,8,13,7,8,6,10,6,17/2,8,13,8,9,7,12,9,13,13,21,11,23/2,8,12,7,17/2,7,12,7,7,5,9,6,15/2,7,12,7,7,5,9,6,8,7,11,7,8,7,11,8,11,11,22,12,25/2,8,12,8,19/2,9,16,9,10,8,13,8,23/2,11,21,11,12,9,13,8,23/2,11,20,12,27/2,12,20,14,20,20,36,19,19,13,18,10,25/2,10,18,10,10,8,13,8,10,10,18,10,19/2,7,10,6,8,7,14,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,9,6,13/2,5,8,5,13/2,7,12,7,7,5,8,5,13/2,6,12,7,8,7,11,8,23/2,11,19,10,10,7,10,6,15/2,6,11,6,7,6,8,6,8,7,13,7,7,5,8,5,6,6,11,6,13/2,6,9,6,9,9,16,9,9,7,10,6,15/2,6,11,7,8,6,9,6,8,8,15,8,8,6,9,6,15/2,7,14,8,19/2,8,14,9,13,13,21,11,11,8,11,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,15/2,5,7,5,6,6,10,6,11/2,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,8,5,5,3,5,3,4,3,4,2,5/2,2,3,2,3,3,11,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,7/2,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,9,5,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,7,4,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,8,4,4,3,5,3,7/2,3,6,4,4,3,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,8,5,5,4,8,5,7,7,14 -12,7,7,5,6,4,4,4,6,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,9/2,4,7/2,5,3,4,4,6,4,4,3,5,7/2,4,5,9,5,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,9/2,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,7,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,13/2,11,6,6,5,7,5,6,6,10,11/2,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,10,7,9,6,7,6,11,13/2,7,5,9,6,7,7,13,7,8,6,10,6,8,8,13,8,9,15/2,13,9,13,13,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,9,6,7,7,11,7,8,7,11,8,11,11,22,12,12,8,12,8,10,9,16,9,10,8,13,17/2,12,11,21,11,12,9,13,17/2,12,11,20,12,14,12,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,13/2,8,7,13,8,9,7,12,8,11,11,19,10,10,7,11,6,7,6,9,11/2,6,5,7,5,6,13/2,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,6,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,6,11/2,9,6,9,9,16,9,9,7,10,6,8,13/2,11,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,13,9,13,13,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,5,7,5,6,6,10,6,6,4,6,4,6,6,11,6,6,4,6,7/2,4,4,6,4,4,3,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,3,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,7/2,3,2,3,2,3,3,4,3,3,3,5,7/2,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,6,4,4,4,8,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,9/2,8,5,5,4,7,5,7,7,13 -23,12,12,8,12,7,8,7,11,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,23/2,6,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,6,5,7,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,14,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,7,6,10,7,11,11,43/2,11,10,7,10,6,7,6,10,6,7,5,8,6,9,9,16,9,9,7,12,8,11,10,19,11,12,10,18,12,18,18,23,12,13,9,13,8,9,7,12,7,8,6,10,6,8,8,15,8,9,7,11,7,8,7,13,7,8,7,12,8,11,10,19,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,9,8,13,8,9,7,12,9,13,13,20,11,11,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,11,7,10,10,41/2,11,11,7,10,6,8,7,13,7,8,7,12,8,10,10,18,10,10,7,11,7,10,10,18,11,13,11,18,12,18,19,36,19,19,13,19,11,12,10,18,10,11,9,15,10,14,13,24,13,13,10,15,9,12,11,20,11,13,11,18,12,18,17,65/2,17,17,12,17,10,13,12,21,12,14,11,18,12,16,15,29,15,16,12,19,12,16,15,28,16,18,15,25,17,25,25,40,20,20,14,21,13,16,14,24,13,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,23,15,22,22,85/2,22,22,16,24,14,17,15,26,14,16,13,22,14,20,19,36,19,21,16,25,16,22,21,40,23,27,23,40,27,40,40,70,36,36,25,37,21,25,21,37,20,21,15,24,15,19,18,34,18,18,13,20,12,14,12,22,12,14,12,21,14,20,20,75/2,19,19,13,20,12,14,12,20,11,13,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,13,21,14,21,21,36,19,19,13,19,11,14,12,21,11,12,9,14,9,11,11,20,11,11,8,13,8,11,11,20,11,12,10,17,11,16,16,63/2,16,17,12,17,10,13,12,21,11,12,10,16,10,13,13,24,13,14,10,16,10,14,14,27,15,18,15,25,17,25,25,41,21,21,14,21,12,14,12,21,11,12,9,14,9,12,11,19,10,10,7,11,7,8,7,11,7,8,7,11,8,11,11,21,11,11,7,9,5,6,5,8,5,6,5,7,5,6,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,20,10,10,7,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,16,8,8,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,13/2,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,7,4,5,4,5,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,2,3,2,3,2,3,3,4,5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,7,5,8,5,6,6,10,6,6,5,7,5,8,8,14,8,8,6,8,5,5,5,8,5,6,5,9,6,9,8,31/2,8,8,6,8,5,7,6,11,6,7,5,8,6,9,9,16,9,10,7,11,7,8,8,14,8,9,7,12,9,13,13,25 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,19,10,10,7,10,6,6,11/2,10,6,6,5,8,6,8,7,12,7,7,11/2,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,13/2,9,6,7,6,11,13/2,8,6,10,6,8,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,20,10,10,7,11,7,8,7,13,7,7,11/2,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,12,7,9,8,14,8,8,7,12,8,10,10,18,10,11,8,13,9,12,11,21,12,14,12,21,14,21,21,36,19,19,13,19,11,13,11,19,21/2,11,8,13,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,11,15/2,10,10,20,10,10,7,11,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,7,13,8,9,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,6,10,6,6,11/2,9,6,9,9,17,9,9,13/2,9,6,7,13/2,11,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,13/2,8,13/2,11,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,9,5,4,7/2,5,7/2,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,4,5/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,9/2,4,8,4,4,3,4,3,3,2,4,3,3,2,4,3,7/2,4,7,4,9/2,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,3,3,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,9/2,4,9,5,5,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,9/2,4,7,4,7/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,13/2,6,11,6,11/2,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,11/2,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,8,5,11/2,4,6,4,5,5,6,4,4,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,6,4,9/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,13/2,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,11/2,4,7,4,5,5,10,6,7,6,10,7,10,10,19,10,21/2,7,10,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,15/2,6,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,15/2,6,10,6,17/2,8,16,9,9,7,10,7,9,8,14,8,19/2,8,14,9,13,13,20,10,21/2,7,10,6,17/2,7,13,7,15/2,6,9,6,15/2,8,13,7,8,6,9,6,8,7,13,8,9,8,13,9,25/2,12,23,12,12,8,12,7,9,8,14,8,17/2,7,12,8,10,10,18,10,11,8,14,9,12,11,22,12,29/2,12,21,14,21,21,36,19,19,13,19,11,13,11,20,11,11,8,13,8,11,10,18,10,19/2,7,10,6,8,7,11,6,7,6,11,8,21/2,10,20,11,11,8,12,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,10,6,7,7,13,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,11,6,7,5,8,5,7,7,11,6,13/2,5,7,5,6,6,10,6,13/2,6,9,6,19/2,10,18,10,10,7,10,6,15/2,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,15,8,19/2,8,13,9,27/2,14,21,11,23/2,8,11,6,15/2,6,11,6,13/2,5,8,5,13/2,6,10,6,11/2,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,7/2,3,5,3,4,3,4,3,3,3,5,3,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,10,6,11/2,4,5,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,9,5,9/2,4,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,3/2,1,0,0,0,0,4,2,5/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,1,1,2,2,-5,-2,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,7/2,3,5,4,9/2,4,8,5,5,4,5,3,7/2,3,5,3,4,3,5,4,11/2,5,8,4,4,3,5,3,4,4,7,4,4,3,5,4,11/2,5,9,5,5,4,7,4,5,5,8,5,5,4,7,5,8,8,14 -9,5,5,4,5,3,3,3,4,3,3,2,3,3,4,7/2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,4,3,3,3,5,7/2,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,5/2,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,7/2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,11/2,8,5,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,8,5,6,4,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,13/2,9,9,14,15/2,8,5,7,9/2,6,5,9,5,6,4,6,4,6,6,10,11/2,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,16,8,8,6,8,5,6,11/2,10,6,6,5,9,6,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,9/2,8,6,8,15/2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,9/2,7,4,5,5,9,6,7,5,9,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,5/2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,7/2,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10 -13,7,7,5,15/2,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,11/2,4,6,5,10,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,3,8,4,4,3,5,4,5,4,7,4,4,3,9/2,3,4,4,5,3,3,2,7/2,3,4,4,5,3,3,3,9/2,4,5,5,10,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,4,5,3,4,3,9/2,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,5,4,7,5,6,6,11,6,6,4,11/2,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,15/2,5,6,6,12,7,8,7,23/2,8,12,11,13,7,7,5,7,4,5,5,8,5,6,4,13/2,4,6,6,9,5,6,4,13/2,4,5,5,6,4,4,3,5,4,5,6,11,6,7,5,15/2,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,13/2,4,4,3,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,13,7,7,5,13/2,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,15/2,5,6,6,10,6,7,6,21/2,7,10,11,22,12,12,8,23/2,7,8,6,11,6,7,6,19/2,6,8,8,13,7,8,6,17/2,6,7,6,11,7,8,6,10,7,10,10,17,9,9,7,11,6,7,6,12,7,7,6,19/2,7,10,10,16,9,10,7,11,7,9,9,14,8,10,8,27/2,10,14,14,20,10,10,7,21/2,6,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,8,13,9,12,12,24,13,13,9,25/2,8,9,8,15,9,10,8,13,8,11,10,19,11,12,9,14,9,13,12,23,13,15,13,22,15,22,22,38,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,19,10,11,8,23/2,7,8,8,12,7,8,6,21/2,7,10,10,22,12,12,8,25/2,7,8,7,13,7,8,6,19/2,6,9,9,15,8,8,6,10,6,8,7,14,8,10,8,13,9,12,12,20,11,11,8,25/2,7,8,7,13,7,8,6,17/2,6,7,7,13,7,7,6,17/2,5,6,6,11,6,7,6,21/2,8,11,11,19,10,10,7,21/2,6,8,7,13,7,8,6,9,6,9,8,15,9,10,8,23/2,8,10,9,15,9,10,8,29/2,10,14,14,23,12,12,8,12,7,8,7,11,6,6,5,17/2,6,7,7,11,6,6,4,13/2,4,5,4,7,4,5,4,13/2,4,6,6,12,6,6,5,7,4,4,3,6,3,3,2,7/2,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,10,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,1,1,0,0,0,1,1,1,3,2,1,1,1/2,0,0,0,4,3,3,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,1,1,1,2,2,2,1,1,1,2,2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,9/2,3,3,3,6,4,4,4,11/2,4,4,4,9,5,5,4,9/2,3,4,3,6,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,15/2,6,8,8,14 -8,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,3,3,3,4,5/2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,7/2,5,3,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,5/2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,9/2,5,4,5,7/2,4,4,7,4,5,4,6,9/2,6,6,10,6,6,9/2,7,4,4,4,7,4,5,4,6,4,6,6,9,5,6,9/2,7,9/2,6,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,8,8,11/2,8,5,6,5,9,5,6,5,8,5,7,6,11,13/2,7,11/2,8,6,8,7,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,13,7,7,11/2,8,5,7,13/2,11,6,7,5,7,9/2,5,5,8,5,5,4,6,9/2,6,6,13,7,7,5,8,5,5,9/2,8,9/2,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,5,9/2,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,6,9,11/2,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,9/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,2,3/2,1,1,1,1,1,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8 -9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,3,4,2,5/2,2,2,2,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,2,4,2,5/2,2,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,3,3,2,5/2,2,5,3,5/2,2,4,3,7/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,4,4,2,5/2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,3,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,5,3,3,2,4,3,3,3,4,3,7/2,4,6,4,5,5,9,5,5,3,5,3,4,4,5,3,7/2,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,8,8,11,6,6,4,6,4,9/2,4,7,4,9/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,4,3,7/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,7/2,3,6,4,5,4,7,5,7,7,8,5,5,4,6,4,7/2,3,5,3,3,2,3,3,4,4,5,3,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,4,3,7/2,3,6,4,4,3,5,4,5,5,7,4,4,3,6,4,5,5,8,5,11/2,5,8,6,17/2,8,16,9,9,6,8,5,13/2,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,11/2,4,8,6,15/2,8,13,7,7,5,8,5,11/2,5,9,5,6,5,7,5,7,7,11,6,7,5,8,5,13/2,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,11/2,6,8,5,11/2,4,7,5,13/2,6,12,7,7,5,7,5,13/2,6,10,6,7,6,10,7,10,9,18,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,14,8,9,7,10,7,9,9,17,10,11,9,16,11,16,16,29,15,29/2,10,15,9,21/2,9,16,9,9,7,10,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,15/2,8,17,9,9,7,10,6,13/2,6,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,15/2,6,10,7,10,9,16,9,9,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,6,6,5,6,4,5,4,8,5,11/2,5,8,6,8,8,13,7,7,5,7,4,11/2,5,10,6,13/2,5,8,5,7,7,11,6,13/2,5,9,6,15/2,7,12,7,15/2,6,11,8,11,11,16,9,9,6,8,5,6,5,9,5,11/2,4,7,4,11/2,6,8,5,5,3,5,3,7/2,4,5,3,7/2,3,5,4,9/2,5,10,6,11/2,4,5,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,8,5,5,4,5,3,7/2,4,5,3,7/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,2,2,2,1,1,1,1/2,0,2,1,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,2,2,2,2,2,5/2,2,6,3,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,5,3,7/2,4,6,4,9/2,4,6,4,6,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,5/2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,5,8,5,5,9/2,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,9/2,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,7/2,4,4,6,9/2,6,6,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,15/2,14,8,8,11/2,8,5,6,5,9,5,5,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,11/2,11,6,6,5,6,4,6,5,9,5,6,5,9,6,9,8,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,9/2,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,10,14,7,7,5,7,4,5,5,8,9/2,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,7/2,4,4,6,4,6,5,9 -15,8,8,6,8,5,6,6,19/2,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,6,6,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,6,5,11,6,5,4,5,3,4,4,11/2,4,4,3,3,3,4,4,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,1,1,2,2,3,2,3,2,7/2,2,3,3,5,4,5,5,9,5,5,4,5,3,4,4,15/2,4,4,3,4,3,3,3,7,4,5,4,6,4,4,4,15/2,4,5,4,5,4,5,5,11,6,6,4,5,3,4,4,11/2,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,9/2,3,3,3,4,3,4,4,12,6,6,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,8,5,6,6,15,8,8,6,10,6,8,8,27/2,8,9,7,12,9,13,13,19,10,10,7,11,7,8,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,15/2,4,5,5,8,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,6,7,6,11,8,11,10,13,7,8,6,8,5,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,17/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,15/2,5,6,5,7,5,7,7,10,6,6,4,6,4,6,6,23/2,7,8,8,14,10,14,13,25,13,13,9,13,8,10,9,31/2,9,10,8,12,7,9,9,14,8,8,6,9,6,8,7,12,7,9,7,12,8,11,11,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,11,18,10,10,7,11,7,10,10,35/2,10,11,9,15,10,15,15,22,12,12,9,13,8,10,8,27/2,8,8,6,10,7,9,9,19,10,11,8,13,8,10,9,31/2,9,11,9,16,11,15,14,28,15,15,11,16,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,15,10,13,13,25,14,16,14,24,16,24,25,46,24,24,17,25,14,17,14,25,13,14,11,17,11,14,13,24,13,13,9,14,9,11,10,35/2,10,11,9,15,10,13,12,26,14,14,10,15,9,10,8,14,8,9,7,12,8,11,11,22,12,13,9,14,8,10,9,31/2,9,11,9,16,11,15,14,27,14,15,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,6,8,5,6,6,11,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,12,8,11,10,18,10,11,8,12,8,10,10,37/2,10,12,10,18,12,18,17,24,12,12,8,12,7,9,8,13,8,9,7,11,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,4,13,7,8,6,8,5,6,5,17/2,5,5,3,4,3,3,3,6,4,4,3,4,3,3,2,7/2,2,3,2,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,4,2,2,1,1,1,1,1,3/2,1,0,0,0,0,0,0,9,5,6,4,6,4,4,4,13/2,4,4,3,4,3,4,3,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,2,2,3/2,2,2,2,4,3,4,4,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,11/2,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,13/2,4,4,3,5,4,6,6,9,5,5,4,7,4,5,5,17/2,5,6,5,8,5,6,6,12,6,6,5,7,5,6,5,17/2,5,6,6,10,7,10,9,17 -9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,15/2,11,6,6,9/2,7,4,5,4,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,15/2,8,5,7,5,6,5,8,5,6,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,10,6,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,9,6,8,15/2,14,8,9,8,13,9,13,27/2,25,13,13,9,14,8,10,8,14,15/2,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,11/2,7,7,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,11/2,10,11/2,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9 -10,6,11/2,4,5,3,4,4,7,4,4,4,6,4,9/2,4,8,4,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,2,2,0,1,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,4,3,3,3,5,3,7/2,3,6,4,11/2,6,8,5,11/2,4,6,4,9/2,4,7,4,5,4,5,4,9/2,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,7,4,5,4,7,4,5,5,10,6,6,4,5,4,9/2,4,6,4,4,4,5,4,5,5,8,5,11/2,4,6,4,9/2,4,6,4,9/2,3,4,3,9/2,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,13/2,6,9,5,9/2,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,6,4,4,3,3,2,3,3,6,4,4,4,5,4,5,5,9,5,9/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,7,4,5,4,5,4,9/2,4,8,5,6,5,10,7,19/2,9,15,8,17/2,6,8,5,6,5,9,5,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,11/2,5,8,5,7,7,11,6,13/2,5,8,5,11/2,5,8,5,11/2,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,11/2,5,9,5,11/2,4,7,5,6,6,12,7,7,5,8,5,13/2,6,10,6,7,6,10,7,19/2,9,16,9,9,7,9,6,7,6,10,6,7,6,10,6,17/2,8,13,7,15/2,6,10,6,17/2,8,15,9,10,9,15,10,29/2,15,28,14,29/2,10,16,9,21/2,9,15,8,9,7,11,7,9,8,16,9,9,7,9,6,15/2,6,12,7,15/2,6,9,6,8,8,16,9,19/2,6,9,6,13/2,6,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,13/2,6,10,7,19/2,10,17,9,9,6,9,6,13/2,6,11,6,7,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,11/2,5,7,5,15/2,8,14,8,15/2,6,8,5,6,5,9,5,11/2,4,7,5,13/2,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,23/2,11,15,8,8,6,7,5,6,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,4,9/2,4,6,4,4,4,6,4,9/2,4,8,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,7,4,9/2,3,5,3,7/2,4,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,7/2,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,8,4,4,3,4,3,7/2,3,6,4,4,4,6,4,11/2,6,10 -9,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,9/2,7,4,4,3,5,3,4,3,6,7/2,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,8,9/2,5,4,6,9/2,6,7,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,4,8,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,7/2,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,10,6,6,9/2,6,4,4,4,7,4,4,7/2,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,11/2,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,23,12,12,8,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,11/2,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,11/2,8,5,6,5,7,4,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,9/2,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,9/2,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,11/2,9,6,9,9,12,6,6,9/2,6,4,4,4,7,4,4,4,6,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8 -15,8,8,6,8,5,7,6,9,5,5,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,11/2,4,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,0,1,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,9/2,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,15/2,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,17/2,6,7,6,13,7,8,6,21/2,8,11,11,21,11,11,8,12,7,8,6,12,7,8,6,9,6,8,7,13,7,8,6,15/2,4,5,5,8,5,6,4,13/2,4,6,6,13,7,8,6,8,5,5,5,8,5,6,4,13/2,4,6,5,8,5,6,4,13/2,4,5,5,7,4,5,5,17/2,6,8,8,12,6,6,4,11/2,4,4,3,6,4,4,3,4,3,3,3,8,5,5,4,5,4,5,4,8,5,6,5,15/2,5,6,6,11,6,6,4,6,4,5,5,7,4,4,3,5,4,6,6,10,6,6,5,15/2,5,6,6,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,10,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,9,9,14,8,8,6,9,6,7,6,9,5,6,5,17/2,6,8,8,14,8,8,6,19/2,6,8,7,12,7,9,8,25/2,8,12,12,17,9,9,7,10,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,19/2,6,8,7,13,8,9,7,12,8,11,11,21,11,11,8,23/2,7,9,8,13,7,8,7,23/2,8,10,10,18,10,10,8,12,8,10,10,19,11,13,11,39/2,14,20,20,39,20,20,14,21,12,14,11,21,11,12,9,29/2,9,12,11,21,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,23,12,13,9,13,7,8,7,12,7,8,6,21/2,7,10,10,18,10,10,8,23/2,7,8,7,12,7,8,8,27/2,9,13,13,23,12,12,8,23/2,7,8,7,14,8,8,6,9,6,7,7,14,8,8,6,8,5,7,6,10,6,8,6,21/2,7,10,10,20,11,11,8,11,7,9,8,12,7,7,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,15,10,14,14,20,10,10,7,19/2,6,7,6,11,6,6,5,17/2,6,7,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,5/2,2,3,3,9,5,5,4,11/2,4,4,4,7,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,6,4,4,3,9/2,3,3,3,3,2,3,3,4,3,3,3,6,4,4,3,9/2,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,0,0,0,1,3/2,2,2,1,1,1,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,9/2,4,5,5,8,4,4,3,7/2,3,4,4,4,3,3,3,11/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,12 -10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,3,4,5/2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,4,6,7/2,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,9/2,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,5,9,6,8,8,14,15/2,8,5,7,4,5,9/2,8,5,5,4,7,9/2,6,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,15/2,8,11/2,8,5,6,11/2,9,5,6,5,8,5,7,7,12,7,7,11/2,8,11/2,7,7,13,8,9,8,13,9,13,13,25,13,13,9,13,8,9,15/2,14,15/2,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,11/2,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,9,5,6,6,10,7,9,9,14,7,7,5,7,4,5,4,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,5/2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,7/2,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8 -14,8,15/2,6,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,5/2,2,3,2,5/2,2,3,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,3,3,4,3,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,8,4,9/2,4,5,3,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,3,4,3,4,4,6,4,4,4,7,5,13/2,6,12,6,13/2,5,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,8,5,7,6,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,15/2,6,9,6,15/2,7,12,7,7,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,12,7,7,5,7,4,11/2,4,7,4,9/2,4,6,4,9/2,4,8,5,5,4,6,4,9/2,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,5,3,4,4,7,4,11/2,4,6,4,13/2,6,10,6,6,4,6,4,5,4,8,4,9/2,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,7,8,7,12,8,12,12,20,10,21/2,7,10,6,7,6,11,6,13/2,5,9,6,15/2,7,12,7,7,5,8,5,6,5,9,5,11/2,5,8,6,8,8,14,8,15/2,5,7,4,11/2,5,9,5,6,5,7,5,7,7,12,7,15/2,6,8,6,15/2,7,12,7,17/2,7,12,8,11,11,16,8,8,6,9,6,13/2,6,10,6,6,5,8,6,8,8,14,8,15/2,6,8,5,7,6,11,6,15/2,6,11,8,21/2,10,19,10,21/2,7,11,7,17/2,8,12,7,8,7,10,7,9,9,18,10,21/2,8,12,8,10,10,18,11,13,11,18,13,19,19,35,18,37/2,13,18,10,25/2,10,19,10,11,8,14,9,23/2,11,20,11,11,8,12,8,19/2,8,15,9,10,8,12,8,11,11,21,11,11,8,11,6,15/2,6,11,6,7,6,10,7,19/2,10,17,9,10,7,10,6,15/2,7,12,7,8,7,12,9,13,13,20,10,21/2,8,10,6,15/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,6,8,5,6,5,9,6,7,6,9,6,9,9,19,10,21/2,7,10,6,8,7,12,6,13/2,5,8,5,7,7,14,8,15/2,6,9,6,7,7,12,7,17/2,8,13,9,13,13,20,10,21/2,7,10,6,7,6,11,6,6,5,8,5,13/2,6,10,6,11/2,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,4,3,7/2,4,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,9/2,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3/2,2,3,2,3,3,2,2,3/2,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,9/2,3,4,3,4,3,5,3,7/2,3,5,3,4,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,3,4,4,9,5,11/2,4,7,4,11/2,5,8,4,9/2,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,5,3,4,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,9,5,6,9/2,6,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,5/2,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,7/2,5,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,4,6,9/2,6,6,11,6,6,5,7,5,6,5,8,5,6,9/2,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,12,7,7,5,7,9/2,6,9/2,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,4,4,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,7,8,7,12,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,9/2,6,5,8,5,6,5,7,5,7,7,12,7,7,11/2,8,11/2,7,7,12,7,8,7,11,8,11,11,16,8,8,6,9,11/2,6,6,10,6,6,5,8,6,8,7,13,7,7,5,8,5,6,6,10,6,8,13/2,11,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,9,9,17,19/2,10,8,12,8,10,19/2,17,10,12,21/2,18,25/2,18,18,34,35/2,18,12,18,10,12,10,18,10,11,8,13,8,11,11,20,11,11,8,12,15/2,9,8,14,8,9,7,11,8,11,11,20,11,11,8,11,13/2,8,7,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,17/2,12,12,20,10,10,15/2,10,6,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,17/2,12,12,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,9/2,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,5/2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,4,4,6,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,8,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11 -26,14,14,10,15,9,11,9,16,9,9,7,10,6,8,8,31/2,8,8,6,8,5,6,6,10,6,7,5,8,6,9,9,11,6,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,11,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,4,6,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,4,3,4,4,7,5,7,7,8,5,5,3,4,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,8,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,15/2,4,5,4,5,4,5,5,8,5,5,4,7,5,8,8,15,8,8,6,9,5,6,5,8,5,6,5,7,4,5,5,17/2,5,6,5,8,6,8,7,13,8,9,7,12,8,12,12,21,11,12,9,13,8,10,8,14,8,9,8,14,9,13,13,24,13,14,10,15,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,11,13,11,18,10,11,9,14,9,12,12,43/2,11,11,8,12,7,9,8,15,8,9,7,12,8,12,12,22,12,12,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,6,9,6,8,8,16,9,11,9,16,11,15,15,20,11,11,8,12,7,8,7,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,18,10,10,7,11,7,8,7,13,8,9,7,11,7,10,10,35/2,10,10,8,12,8,11,11,20,12,14,12,21,14,21,21,37,19,19,13,20,12,14,12,20,11,13,10,16,10,14,13,49/2,13,14,10,15,9,11,10,18,10,12,10,16,11,15,15,25,13,14,10,16,10,12,10,18,10,11,9,15,10,13,12,45/2,12,13,9,14,9,11,11,20,12,14,12,21,14,21,21,31,16,16,11,16,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,16,10,12,11,19,11,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,13,11,18,12,18,17,33,18,20,15,24,15,20,19,36,20,23,19,34,23,34,34,66,34,34,23,35,20,24,20,35,19,21,16,25,16,22,20,38,19,19,13,20,12,14,13,23,13,14,12,20,14,20,20,38,20,20,14,21,12,15,13,23,13,14,11,18,12,16,16,63/2,16,16,12,18,11,14,13,25,14,17,14,25,16,23,23,38,20,20,14,20,11,13,11,20,11,12,9,15,10,14,13,47/2,13,14,10,15,9,12,11,21,12,13,11,18,12,17,17,38,19,19,13,20,11,13,11,20,11,13,10,16,10,14,14,26,14,14,10,15,10,13,12,22,13,15,13,22,15,22,23,37,19,19,14,21,12,15,12,21,11,12,9,14,9,11,10,37/2,10,11,8,12,7,9,8,15,9,10,8,12,8,11,10,16,9,9,6,9,5,6,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,16,9,9,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,6,4,4,3,5,4,5,5,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,6,6,10,5,5,4,6,4,6,6,23/2,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,29/2,8,9,7,10,6,8,7,12,7,8,7,12,8,12,11,21 -14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,5,5,6,7/2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,5/2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,9/2,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,13/2,12,13/2,6,5,7,9/2,5,9/2,8,5,5,4,5,7/2,4,4,8,4,4,7/2,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,6,11/2,9,6,8,8,14,15/2,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,11/2,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,13/2,8,7,11,6,7,6,10,7,10,10,17,10,11,8,13,8,11,10,19,11,12,10,18,12,18,18,34,18,18,25/2,18,11,13,11,18,10,11,17/2,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,8,7,14,8,9,8,13,9,13,13,20,11,11,8,11,6,7,6,11,6,7,11/2,8,6,8,7,12,7,8,6,8,5,7,6,11,6,7,6,10,7,9,9,20,21/2,10,7,11,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,11/2,7,7,12,7,8,7,12,8,12,12,20,10,10,8,11,7,8,7,12,13/2,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,5/2,3,2,3,3,4,3,3,3,4,3,3,3,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,6,11 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,5,5,3,4,3,7/2,3,7,4,5,4,5,4,5,5,6,4,7/2,2,4,3,3,3,4,3,7/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,4,4,6,4,11/2,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,4,3,6,4,7/2,2,3,2,7/2,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,3,4,3,9/2,5,9,5,5,4,5,3,7/2,3,4,3,3,3,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,7,5,13/2,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,15/2,6,9,6,7,6,12,7,8,7,12,8,12,12,22,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,11/2,5,9,5,11/2,4,6,4,6,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,11/2,4,6,4,5,5,10,6,6,5,9,6,9,8,11,6,7,5,7,4,5,5,8,5,5,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,5,4,6,5,7,7,11,6,13/2,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,13/2,6,12,7,17/2,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,13/2,6,9,6,17/2,8,15,8,17/2,6,10,6,7,6,10,6,7,6,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,19/2,6,10,6,7,6,11,6,6,5,8,6,15/2,8,13,7,8,6,8,5,13/2,6,11,6,15/2,6,10,7,21/2,11,19,10,21/2,8,12,7,17/2,8,12,7,15/2,6,10,7,11,11,18,10,11,9,13,8,23/2,11,20,11,13,11,19,13,39/2,20,36,19,19,13,19,11,13,11,19,10,23/2,9,14,9,12,11,21,11,11,8,12,7,17/2,8,13,8,17/2,7,11,8,11,11,22,12,23/2,8,12,7,9,7,14,8,9,7,10,7,10,10,18,10,10,7,11,7,17/2,8,15,9,10,8,14,10,14,14,22,12,12,8,12,7,8,7,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,7,11,6,15/2,6,10,7,10,10,22,12,23/2,8,11,7,8,7,12,7,7,6,10,6,17/2,8,14,8,17/2,6,8,6,15/2,7,12,7,9,8,12,8,25/2,13,21,11,11,8,12,7,17/2,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,13/2,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,7/2,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,7/2,4,6,3,3,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,7,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,-1/2,0,0,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,4,3,3,3,4,3,3,3,4,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,9/2,4,8,5,5,4,5,4,9/2,4,7,4,5,4,7,5,15/2,7,12 -11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,5,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,9/2,7,5,6,5,9,11/2,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,6,4,4,7/2,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,9/2,5,4,6,5,7,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,4,5,5,9,11/2,6,5,9,13/2,10,10,16,17/2,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,14,8,8,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,11/2,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,6,8,8,14,8,8,13/2,10,13/2,9,8,14,8,10,8,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,10,7,9,17/2,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,17/2,8,6,9,11/2,7,11/2,10,6,7,5,8,6,8,7,13,7,8,11/2,8,5,6,6,11,7,8,6,10,15/2,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,9/2,6,4,5,5,8,5,6,5,8,11/2,8,8,16,17/2,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,6,4,6,5,9,6,7,6,10,7,10,10,16,9,9,13/2,10,6,6,5,10,11/2,6,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,5/2,3,3,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,7/2,5,3,4,7/2,6,4,6,6,10 -18,10,10,7,19/2,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,11/2,4,4,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,6,4,11/2,4,5,5,8,5,5,4,13/2,4,6,6,11,6,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7/2,3,4,5,7,4,4,3,9/2,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,7/2,2,3,3,5,3,4,3,9/2,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,7/2,3,4,4,5,3,4,3,4,3,3,3,7,4,5,4,13/2,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,11/2,4,4,4,6,4,4,3,9/2,4,5,5,8,5,5,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,9,6,8,8,16,9,9,7,21/2,7,9,8,15,9,10,8,27/2,10,14,14,26,13,13,9,13,8,9,8,13,7,8,6,19/2,6,8,8,15,8,8,6,15/2,5,6,6,9,5,6,5,15/2,5,7,7,14,8,8,6,15/2,5,6,5,9,5,6,5,15/2,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,13,7,7,5,8,5,7,6,10,6,6,4,13/2,4,6,6,9,5,5,4,13/2,4,4,4,7,5,6,5,15/2,5,7,7,13,7,7,5,15/2,5,6,6,11,6,7,6,9,6,8,7,11,6,7,5,8,5,7,7,15,9,10,8,29/2,10,15,15,25,13,14,10,29/2,8,9,8,14,8,9,7,21/2,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,19/2,7,10,10,17,9,10,7,21/2,6,8,7,13,7,8,6,10,6,8,8,16,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,22,12,12,8,11,7,9,8,13,7,8,6,9,6,9,9,15,8,9,6,19/2,6,8,7,14,8,9,7,12,8,12,12,22,12,12,9,14,8,10,9,14,8,9,8,13,9,12,12,22,12,12,10,31/2,10,13,12,22,13,15,13,22,15,23,23,43,22,22,15,45/2,13,16,14,23,12,13,10,33/2,10,14,13,24,12,12,8,25/2,8,10,9,15,8,9,8,25/2,8,12,12,25,13,14,10,27/2,8,10,8,16,9,10,8,13,9,12,11,21,11,11,8,12,8,10,9,17,10,11,10,33/2,11,16,16,27,14,14,10,29/2,9,11,9,16,9,9,7,23/2,8,10,10,16,9,9,7,21/2,6,8,7,13,8,9,8,25/2,8,12,12,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,8,15,9,10,9,31/2,11,16,16,26,14,14,10,31/2,9,10,8,15,8,9,7,10,7,9,8,13,7,8,6,8,5,7,6,10,6,6,5,15/2,6,8,7,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,3,9,5,5,4,9/2,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,6,6,13,7,7,5,7,4,4,3,5,3,3,3,9/2,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,9/2,3,4,4,11,6,7,5,15/2,5,6,5,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,16 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,9,11/2,6,5,9,13/2,10,19/2,16,9,9,6,9,5,6,5,9,5,6,5,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,11/2,8,8,14,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,17/2,10,9,15,8,9,7,10,7,9,17/2,15,8,8,6,8,5,7,6,10,11/2,6,5,8,6,8,8,16,17/2,9,6,9,11/2,7,11/2,10,6,6,5,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,7,5,6,6,11,6,6,5,7,9/2,6,5,9,11/2,6,6,10,7,10,10,17,9,9,7,10,6,6,5,10,11/2,6,5,6,9/2,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,6,3,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,6,7/2,4,3,4,3,4,7/2,6,4,4,7/2,6,4,6,6,11 -15,8,17/2,6,8,5,11/2,5,8,5,11/2,4,7,5,6,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,2,4,3,3,3,6,4,7/2,2,4,3,3,3,5,4,9/2,4,6,4,6,5,10,6,11/2,4,5,3,3,3,6,4,4,3,4,3,4,3,5,3,7/2,3,4,3,4,4,6,4,4,4,6,4,13/2,7,14,8,15/2,5,7,4,11/2,5,8,5,6,5,7,5,13/2,7,14,8,8,6,9,6,7,7,13,8,9,7,11,8,12,12,21,11,23/2,8,12,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,7,5,6,4,6,5,8,5,5,5,7,5,13/2,6,12,6,6,4,6,4,5,4,7,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,5,11/2,5,8,5,7,7,11,6,13/2,5,7,5,6,5,7,4,4,3,6,4,9/2,4,9,5,5,4,6,4,9/2,4,7,4,5,4,7,5,13/2,6,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,8,5,7,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,25/2,12,22,12,23/2,8,12,7,15/2,7,12,7,15/2,6,8,6,15/2,7,14,8,8,6,9,5,6,6,10,6,13/2,6,8,6,17/2,8,15,8,9,6,10,6,7,6,10,6,13/2,5,8,5,7,6,13,7,13/2,5,8,5,6,6,11,7,8,7,12,8,23/2,12,20,11,11,7,10,6,7,6,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,8,5,13/2,6,11,7,8,6,10,7,21/2,10,19,10,10,8,12,7,8,7,12,7,15/2,6,11,7,10,10,19,10,11,8,12,8,21/2,10,18,10,25/2,11,19,13,19,19,36,19,19,13,20,12,27/2,12,20,11,12,9,14,9,12,11,19,10,21/2,8,10,7,9,8,13,7,8,7,11,8,11,11,21,11,11,8,12,7,9,7,14,8,17/2,6,10,7,9,9,16,9,19/2,7,10,6,8,7,14,8,9,8,14,10,27/2,14,24,12,25/2,9,14,8,10,8,13,7,15/2,6,10,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,12,8,21/2,10,20,10,21/2,8,11,7,8,7,11,6,13/2,5,9,6,8,7,14,8,17/2,6,9,6,8,7,12,7,8,7,13,9,13,13,24,12,25/2,9,13,7,8,7,13,7,8,6,8,6,15/2,7,10,6,6,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,4,3,4,3,5,3,5/2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,7,4,4,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,5,3,5/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,3,4,4,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,4,3,4,3,7/2,4,5,3,4,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,4,9,5,5,4,6,4,4,4,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,8,6,8,8,15 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,5/2,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,6,4,5,5,8,5,5,9/2,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,9/2,6,4,6,5,8,5,5,9/2,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,9/2,6,4,6,5,9,5,6,9/2,7,5,6,6,10,6,6,5,7,5,7,7,12,7,8,7,11,8,12,12,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,13/2,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,7,10,19/2,18,10,10,15/2,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,11,18,10,10,7,10,13/2,8,7,12,7,8,7,11,8,11,10,19,10,10,7,11,13/2,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,13,15/2,9,8,13,9,12,13,23,12,12,9,13,8,9,8,12,7,8,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,4,5/2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,3/2,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,7/2,5,4,5,5,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,7,7,14 -27,14,14,10,16,9,11,9,31/2,8,9,7,10,6,8,8,17,9,9,7,10,6,7,6,10,6,7,5,8,6,9,9,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,13,7,8,6,8,5,6,6,21/2,6,7,5,8,5,7,7,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,9/2,3,3,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,3,3,5,3,3,3,6,4,4,3,4,3,4,4,15/2,4,5,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,9,16,9,9,6,8,5,6,6,19/2,6,6,4,6,4,6,6,10,6,6,5,7,5,6,6,19/2,6,7,6,11,8,11,11,23,12,12,8,12,8,10,8,29/2,8,10,8,12,8,12,11,25,13,14,11,17,10,13,12,43/2,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,8,11,6,7,6,11,6,7,5,8,6,9,9,16,9,9,7,10,6,8,8,29/2,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,7,11,8,11,11,19,10,11,8,11,7,9,9,16,9,9,7,11,7,10,10,18,10,11,9,14,9,13,12,22,13,15,13,23,16,23,22,39,20,20,13,19,11,14,12,20,11,11,8,13,9,12,11,24,13,13,9,14,8,10,10,35/2,10,11,9,15,10,14,14,27,14,14,10,15,9,12,10,18,10,10,7,11,7,10,10,20,11,12,9,14,9,11,10,18,11,13,11,18,13,19,19,35,18,17,12,17,10,12,10,18,10,10,8,13,9,12,12,22,12,13,10,15,9,11,10,18,10,12,10,17,12,17,17,35,18,18,13,20,12,15,13,23,13,14,11,18,12,17,17,34,18,19,15,24,15,19,18,67/2,19,23,19,34,23,33,33,64,33,33,23,34,19,23,20,35,19,21,16,25,16,22,20,34,17,17,12,18,11,14,13,47/2,13,15,12,20,13,19,19,36,19,19,13,20,12,14,12,45/2,12,14,10,16,11,15,14,28,15,16,11,17,10,13,12,23,13,15,13,22,15,23,23,44,23,23,16,24,14,16,14,47/2,12,13,10,16,10,14,14,25,13,14,10,15,9,12,11,41/2,12,14,11,18,12,18,18,36,19,19,13,18,10,12,11,19,10,11,8,13,9,12,12,26,14,15,11,17,11,14,12,22,13,15,13,23,16,23,22,43,22,22,15,21,12,15,12,43/2,12,12,9,13,9,12,11,18,10,10,7,11,7,8,8,14,8,8,7,11,7,10,10,19,10,9,6,9,6,7,6,9,5,5,4,5,4,5,5,7,4,5,4,6,4,4,4,15/2,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,5/2,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,6,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,2,2,4,3,3,3,11/2,4,4,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,5,8,5,5,4,5,4,5,5,10,5,5,3,4,3,4,4,11/2,3,3,3,4,3,5,5,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,26 -15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,7,13/2,12,13/2,7,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,10,11/2,6,4,6,4,5,9/2,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,5,9,5,6,4,7,5,6,6,11,6,6,5,8,5,7,7,13,8,9,8,13,9,13,13,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,11/2,7,6,10,6,6,9/2,7,9/2,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,11/2,7,6,10,6,7,6,10,7,10,10,20,10,10,15/2,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,9,14,9,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,13,11,20,11,12,9,14,9,12,11,19,10,10,7,10,13/2,8,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,9,6,9,8,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,25,13,13,9,14,8,9,8,14,15/2,8,6,10,6,8,8,14,8,8,6,9,11/2,7,7,12,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,11/2,7,7,15,8,9,7,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,7,9,15/2,12,7,7,5,8,5,7,7,10,6,6,9/2,6,4,5,5,8,5,5,4,7,9/2,6,6,11,6,5,4,5,7/2,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1/2,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,7/2,4,4,5,4,6,11/2,11,6,6,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,7/2,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,9/2,8,5,5,5,8,11/2,8,8,15 -18,10,19/2,7,10,6,7,6,11,6,13/2,5,7,5,13/2,6,12,6,13/2,5,6,4,9/2,4,7,4,5,4,6,4,6,6,9,5,5,4,4,3,4,4,6,4,4,3,4,3,9/2,5,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,11,6,6,4,5,4,9/2,4,5,3,7/2,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,5,3,7/2,2,5,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,6,4,7/2,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,13/2,6,10,6,6,4,6,4,9/2,4,7,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,4,4,7,4,11/2,5,8,6,15/2,8,15,8,8,6,8,5,7,6,10,6,13/2,6,8,6,8,8,16,9,10,7,11,7,10,9,14,8,19/2,8,14,10,29/2,14,26,14,27/2,10,14,8,19/2,8,14,8,9,7,11,7,17/2,8,15,8,17/2,6,8,5,6,6,9,6,13/2,5,8,5,7,7,13,7,8,6,8,5,11/2,5,8,4,9/2,4,6,4,6,6,10,6,6,5,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,15,8,17/2,6,8,5,6,5,8,5,5,4,6,4,5,5,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,7,5,8,8,14,8,15/2,6,8,5,6,6,11,6,13/2,5,8,6,15/2,8,13,7,15/2,6,10,6,8,8,15,9,21/2,9,16,11,15,15,26,14,27/2,9,14,8,19/2,8,14,8,8,6,9,6,17/2,8,15,8,17/2,6,9,6,15/2,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,15/2,7,12,7,7,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,24,12,12,8,12,7,17/2,8,12,7,15/2,6,9,6,17/2,8,15,8,17/2,6,10,6,8,7,12,7,17/2,7,11,8,23/2,12,23,12,25/2,9,13,8,19/2,8,16,9,10,8,13,8,23/2,12,23,12,27/2,10,16,10,13,12,22,13,31/2,13,22,15,22,22,43,22,22,15,22,13,15,13,23,13,14,11,17,11,14,13,23,12,12,8,12,8,10,9,16,9,21/2,8,14,9,13,13,24,13,27/2,10,14,8,10,9,16,9,19/2,7,11,7,10,10,18,10,10,8,12,8,19/2,9,16,9,21/2,9,15,10,31/2,16,31,16,16,11,16,9,11,10,16,9,19/2,8,12,8,10,10,17,9,19/2,7,10,6,17/2,8,14,8,9,7,12,8,25/2,12,24,12,25/2,8,12,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,21/2,9,16,11,31/2,15,29,15,29/2,10,15,9,21/2,9,15,8,8,6,9,6,17/2,8,12,7,7,5,7,4,11/2,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,4,3,4,3,7,4,4,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,13/2,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,7/2,4,7,4,7/2,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,9,5,5,4,6,4,9/2,4,7,4,4,3,5,4,9/2,4,8,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,17 -15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,11/2,10,11/2,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,9/2,5,7/2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,9/2,9,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,5/2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,11/2,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,9/2,6,7,13,7,7,5,7,9/2,6,5,8,5,5,5,7,5,7,7,14,8,8,6,9,6,8,15/2,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,8,5,5,5,7,5,7,7,13,7,8,11/2,7,9/2,5,5,7,4,4,7/2,5,4,5,5,9,5,6,4,6,4,5,9/2,8,9/2,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,9,5,6,4,7,5,6,13/2,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,22,12,12,8,12,7,8,7,11,13/2,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,15/2,11,11,20,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,11/2,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,17/2,14,17/2,11,10,18,21/2,12,11,18,12,18,18,35,18,18,25/2,18,11,13,11,19,11,12,9,14,9,12,11,19,10,10,7,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,15,8,9,7,10,13/2,8,8,14,8,9,8,13,9,13,13,26,14,14,19/2,14,8,9,8,14,8,8,13/2,10,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,10,10,20,10,10,7,10,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,15/2,9,8,12,7,7,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,9/2,7,5,7,13/2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,12,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,7/2,6,7/2,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,4,5,9/2,8,11/2,8,8,15 -25,13,14,10,29/2,8,10,8,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,10,6,6,5,8,6,9,9,13,7,8,6,15/2,5,6,6,8,5,6,5,7,5,7,6,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,15/2,5,6,5,9,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,5,3,3,3,5,3,4,4,4,3,3,3,11/2,4,6,6,10,5,5,4,5,3,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,15/2,5,7,7,12,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,6,5,17/2,6,9,9,14,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,6,10,6,6,4,13/2,4,6,6,10,6,7,6,21/2,8,12,12,23,12,12,8,12,7,9,8,13,8,9,8,25/2,8,12,12,24,13,13,10,31/2,10,13,12,22,12,14,12,21,14,21,21,39,20,20,14,41/2,12,15,13,21,11,12,10,31/2,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,23/2,8,10,10,19,10,10,8,23/2,7,8,7,12,7,7,5,8,6,8,8,15,8,8,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,13,9,13,8,9,8,12,7,7,6,9,6,8,8,16,8,8,6,19/2,6,8,7,13,7,8,6,21/2,7,10,11,21,11,11,8,23/2,7,9,8,16,9,9,7,11,8,11,11,20,11,12,9,14,9,12,11,20,12,14,12,43/2,14,21,21,40,20,20,14,39/2,12,14,12,19,10,11,8,27/2,9,12,12,21,11,12,8,25/2,8,10,9,16,9,11,9,29/2,10,14,14,24,13,14,10,29/2,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,27/2,8,10,9,18,10,12,10,37/2,12,18,18,35,18,18,12,37/2,10,12,10,19,10,11,9,14,9,12,12,22,12,13,9,14,9,11,10,17,10,11,10,33/2,11,16,16,33,17,18,12,18,11,14,12,23,13,14,11,37/2,12,17,17,34,18,19,14,47/2,15,20,18,32,18,21,18,32,22,32,32,62,32,32,22,65/2,19,23,20,33,18,19,15,24,15,20,19,34,18,18,13,39/2,12,16,14,24,14,16,13,43/2,14,19,19,36,19,19,14,41/2,12,14,12,22,12,13,10,15,10,14,14,27,14,15,11,35/2,11,14,13,24,14,17,14,24,16,23,23,46,24,24,16,49/2,14,17,14,24,13,14,11,17,11,15,14,26,14,14,10,29/2,9,12,11,20,11,13,10,17,12,17,17,35,18,18,12,35/2,10,12,10,20,11,11,8,27/2,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,23,15,22,22,43,22,22,15,43/2,12,15,13,21,11,12,9,27/2,9,12,11,18,10,10,7,21/2,6,8,7,13,8,9,8,25/2,8,12,11,19,10,10,7,21/2,6,8,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,4,4,8,5,5,4,6,4,5,5,10,6,6,4,13/2,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,9/2,3,4,4,4,3,3,3,9/2,3,4,5,8,5,5,3,4,3,3,3,6,4,4,3,3,2,2,2,5,3,3,3,9/2,3,4,3,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,7/2,2,3,3,7,4,4,3,9/2,2,2,2,5,3,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,7/2,3,4,3,6,4,4,4,11/2,4,5,5,7,4,5,4,11/2,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,9,20,10,10,7,9,6,7,6,10,6,6,4,13/2,4,6,5,8,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,12,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,6,12,7,8,6,10,7,9,8,12,7,8,7,25/2,9,14,14,26 -17,9,10,7,10,6,7,6,11,6,7,11/2,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,9/2,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,6,6,9,11/2,6,11/2,8,6,8,8,16,9,9,7,10,7,9,8,15,9,10,9,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,8,5,6,6,9,11/2,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,7,5,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,7,15/2,15,8,8,6,8,5,6,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,10,6,8,7,11,6,7,5,8,11/2,7,7,12,7,7,6,9,6,7,6,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,22,12,12,17/2,13,8,10,8,15,9,10,8,12,8,12,12,23,12,13,10,16,10,13,12,21,12,14,12,22,15,22,22,42,22,22,15,22,13,15,13,22,12,13,10,16,10,14,13,23,12,13,9,14,17/2,11,10,16,19/2,11,9,14,19/2,13,13,24,13,13,9,14,8,9,8,15,8,9,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,12,10,16,11,16,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,17,9,10,7,11,7,10,9,16,9,11,9,16,21/2,15,15,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,11/2,6,5,8,6,8,8,13,7,7,5,7,9/2,6,9/2,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,3,2,2,2,4,3,3,7/2,6,7/2,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,9,5,6,5,9,7,10,10,18 -25,13,14,10,15,9,10,9,16,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,11/2,4,7,5,7,6,12,7,7,5,7,4,11/2,5,8,5,6,5,8,6,15/2,8,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,8,5,5,4,6,4,9/2,4,6,4,9/2,3,4,3,4,4,9,5,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,5,4,5,3,4,4,7,4,4,3,4,3,7/2,4,7,4,4,3,5,4,9/2,4,8,5,11/2,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,13/2,5,8,5,6,5,10,6,6,5,9,6,17/2,8,14,8,8,6,9,6,13/2,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,11/2,5,9,6,13/2,6,10,7,11,11,21,11,11,8,11,7,9,8,13,8,9,8,12,8,12,12,23,12,27/2,10,15,10,25/2,12,23,13,15,13,21,14,43/2,22,40,21,21,14,21,12,29/2,12,21,12,13,10,16,10,27/2,12,22,12,12,9,12,7,17/2,8,13,8,17/2,7,11,7,10,10,18,10,10,7,10,6,7,6,12,7,8,6,9,6,8,8,14,8,8,6,9,6,15/2,7,12,7,9,7,12,8,12,12,23,12,25/2,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,17/2,7,12,8,11,11,22,12,12,8,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,27/2,12,21,14,41/2,20,40,20,41/2,14,20,12,27/2,12,20,11,11,9,14,9,12,11,21,11,12,9,14,8,21/2,9,17,10,21/2,8,14,10,27/2,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,18,10,11,8,12,8,19/2,9,17,10,12,10,18,12,35/2,18,34,17,17,12,18,10,12,10,19,10,23/2,9,14,9,13,13,24,13,27/2,10,15,9,11,10,18,10,23/2,10,17,12,17,17,32,17,35/2,12,19,11,27/2,12,22,12,27/2,11,18,12,17,17,33,18,19,14,23,14,37/2,17,31,18,43/2,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,39/2,15,24,15,20,19,34,18,19,13,20,12,31/2,14,24,14,31/2,12,21,14,39/2,19,36,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,29/2,14,24,14,17,14,23,16,23,23,46,24,47/2,16,24,14,17,14,25,14,15,11,17,11,15,14,26,14,14,10,15,9,12,11,20,11,25/2,10,18,12,35/2,18,35,18,18,12,18,10,12,11,19,10,23/2,9,14,9,13,13,25,13,27/2,10,16,10,14,13,23,13,31/2,13,23,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,23/2,11,19,10,21/2,8,12,7,17/2,8,14,8,9,7,12,8,23/2,11,20,10,10,7,10,6,15/2,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,7/2,4,5,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,6,4,7/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,5,5,9,5,11/2,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,11,8,21/2,10,19,10,10,7,10,6,7,6,10,6,11/2,4,6,4,11/2,5,8,5,5,4,5,3,7/2,3,6,4,4,3,6,4,11/2,6,12,7,7,5,7,4,11/2,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,17/2,8,14,10,27/2,14,26 -25,13,14,10,15,9,10,9,16,9,10,7,11,7,10,9,16,8,8,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,9/2,7,5,7,13/2,12,7,7,5,7,9/2,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,9,11/2,6,11/2,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,11,7,9,8,14,8,9,8,12,8,12,12,23,12,13,10,15,10,13,12,23,13,15,13,21,29/2,22,22,41,21,21,14,21,12,14,12,21,12,13,10,16,10,13,12,22,12,12,9,12,7,8,15/2,13,15/2,8,7,11,7,10,10,18,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,15/2,8,7,12,8,11,11,22,12,12,17/2,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,40,21,21,14,20,12,14,12,20,11,12,9,14,9,12,11,21,11,12,9,14,8,10,9,17,10,11,9,14,10,14,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,19,10,11,8,12,8,10,9,17,10,12,10,18,12,18,17,33,17,17,12,17,10,12,11,19,21/2,12,9,15,10,13,13,24,13,14,10,15,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,19,11,14,12,21,12,13,11,18,12,17,17,33,18,19,14,22,14,18,17,31,18,22,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,19,29/2,23,29/2,19,18,34,18,19,13,20,12,15,14,24,14,16,25/2,21,14,20,19,37,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,14,27/2,24,14,16,14,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,11,18,11,15,14,26,14,14,10,15,9,12,11,20,11,12,10,18,12,18,18,34,18,18,12,18,10,12,11,19,21/2,12,9,14,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,22,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,12,11,20,21/2,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,15/2,11,13/2,8,6,10,6,6,9/2,7,4,5,5,8,9/2,5,4,6,4,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,9,8,14,10,14,14,26 -50,26,27,19,28,16,20,17,30,16,18,13,21,13,18,17,31,16,16,11,16,10,12,10,18,10,11,9,16,10,14,14,27,14,15,10,15,9,11,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,10,9,16,9,11,9,16,10,14,14,27,14,14,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,13,7,7,5,8,5,7,7,12,7,7,5,8,6,8,8,14,8,9,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,12,8,11,11,21,11,12,9,14,9,11,10,18,10,12,10,16,11,15,15,28,15,15,11,17,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,8,10,10,18,11,13,11,20,14,21,21,41,21,21,15,22,13,17,15,27,15,17,14,24,16,23,23,44,23,25,19,30,19,25,23,44,25,29,24,42,28,42,42,82,41,41,27,40,23,28,23,41,22,24,18,30,19,25,23,44,23,23,16,24,14,16,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,17,11,16,15,28,15,15,11,18,11,14,13,23,13,15,13,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,12,20,13,18,17,32,17,17,12,18,11,15,14,25,14,16,13,22,15,21,21,42,22,23,16,25,15,18,16,28,15,17,13,22,15,22,21,41,22,23,17,27,17,22,21,39,22,26,22,39,27,40,40,80,41,41,27,40,22,26,22,39,21,23,17,28,17,23,22,42,22,23,17,26,16,20,18,32,18,21,17,28,18,26,25,48,25,26,18,27,16,20,17,31,17,18,14,24,15,20,19,37,20,21,15,24,15,19,17,32,19,23,19,34,23,34,33,65,33,33,22,33,19,24,21,37,20,22,17,29,19,26,25,47,25,26,18,28,17,21,19,34,19,22,19,33,22,32,32,62,32,33,23,36,21,26,23,41,22,25,20,34,23,33,33,64,34,36,27,43,26,35,33,62,35,42,35,62,42,62,62,123,62,62,42,62,35,43,36,65,34,37,28,45,28,37,35,67,35,36,26,40,23,29,26,48,26,30,24,41,27,38,37,73,37,38,26,38,22,26,22,40,22,24,19,31,20,28,27,52,27,29,21,34,21,28,26,48,27,31,26,46,31,45,45,89,45,46,31,47,27,33,28,49,26,28,21,35,22,30,28,52,27,27,19,29,18,23,21,38,21,24,20,34,23,34,34,67,34,35,24,36,20,24,20,36,20,22,17,27,18,26,25,48,25,26,19,31,19,26,24,46,26,30,25,43,29,43,43,85,43,43,29,43,24,29,24,43,23,24,18,28,17,22,21,39,20,21,15,23,14,17,15,26,15,17,14,24,16,22,21,41,21,21,14,21,12,14,11,19,10,11,8,13,8,9,8,15,8,9,7,10,6,8,7,11,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,10,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,8,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,10,10,18,11,13,11,20,13,19,19,37,19,20,14,20,12,14,12,20,11,11,8,12,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,13,8,11,10,17,10,11,9,14,9,12,12,22,12,14,11,17,11,15,14,26,15,17,15,26,18,26,26,50 +50,26,26,18,26,15,18,16,29,16,17,13,20,13,17,16,30,16,16,11,15,9,12,10,18,10,11,8,13,9,12,12,24,12,12,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,7,12,7,9,8,14,9,13,13,26,14,15,11,18,12,16,15,29,17,20,17,29,19,28,28,55,28,29,20,29,16,19,16,27,15,16,12,18,12,16,15,29,15,14,10,14,9,11,9,16,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,7,7,12,7,7,5,8,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,11,10,18,10,10,8,12,8,12,11,21,11,12,9,13,8,10,9,17,10,12,10,18,12,17,17,33,17,17,12,18,11,13,11,20,11,13,10,16,11,15,15,29,16,17,13,20,13,18,17,32,18,21,18,32,22,33,33,66,33,33,23,34,19,23,19,34,18,20,16,27,17,23,22,43,23,24,17,26,15,19,17,31,17,20,16,28,19,27,27,52,27,27,19,28,16,19,16,28,15,17,13,21,14,19,18,33,18,19,14,23,14,18,17,32,18,21,17,30,20,30,30,59,30,31,21,31,18,21,18,31,17,18,13,21,13,17,16,29,15,15,10,15,9,11,10,17,10,11,9,16,11,15,15,28,15,15,10,14,9,11,9,16,9,10,8,14,9,13,12,23,12,13,10,16,10,14,14,26,15,19,16,29,20,29,29,56,29,29,20,30,17,21,17,30,17,19,15,24,15,21,20,39,20,21,14,21,13,16,14,26,15,17,14,24,16,23,23,44,23,23,16,24,14,18,16,30,17,19,16,28,19,27,26,51,27,28,21,33,21,28,27,51,29,34,28,50,34,50,50,98,50,50,34,51,29,36,31,56,30,33,25,40,26,36,34,66,35,37,27,42,25,33,30,57,32,37,31,55,37,54,54,107,54,55,38,59,34,42,37,68,37,42,33,57,37,53,52,102,53,57,42,69,42,57,53,102,57,68,56,100,67,100,100,199,100,100,67,101,57,68,57,102,53,57,43,70,43,58,54,104,53,55,39,60,35,44,39,73,40,46,36,62,40,58,56,110,56,56,39,59,34,42,36,64,34,38,29,47,30,42,40,76,39,41,29,46,27,35,32,59,33,38,31,54,36,54,54,106,54,54,36,54,30,36,30,52,28,30,23,37,23,31,29,55,28,29,21,32,19,25,23,42,23,26,21,37,25,36,35,68,35,35,24,36,21,26,23,41,22,24,19,32,20,28,26,50,26,27,19,30,18,24,23,43,24,28,23,40,26,38,37,72,37,37,25,38,22,26,22,39,21,23,17,28,17,23,21,40,21,21,15,22,13,17,15,27,15,17,14,23,15,21,20,39,20,21,14,21,13,16,15,27,15,17,14,23,15,21,20,39,20,21,16,25,16,21,20,37,21,25,21,38,26,39,39,76,39,39,26,39,23,28,24,42,23,25,19,32,21,30,29,55,29,30,22,34,20,26,24,44,24,28,23,39,26,37,37,72,37,37,26,40,23,28,25,45,24,27,21,36,23,33,32,62,32,34,25,41,25,34,32,60,34,41,34,61,41,61,62,123,62,62,42,63,35,42,35,63,33,35,26,43,27,37,34,65,33,34,24,37,22,27,24,43,24,27,21,36,24,34,33,65,33,34,24,36,21,25,21,38,21,23,18,29,18,25,24,46,24,26,19,29,18,23,21,38,22,26,21,37,25,37,37,73,37,36,24,36,21,25,21,38,20,22,17,29,18,25,24,46,24,24,17,27,16,21,19,34,19,21,17,28,19,27,26,51,26,27,18,27,16,19,16,29,16,17,13,21,14,19,18,35,19,20,14,22,14,18,17,31,18,21,18,31,22,33,33,65,33,32,22,32,18,21,18,32,17,19,15,24,15,21,19,36,19,19,13,19,11,14,13,23,13,15,12,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,19,10,11,8,12,7,9,9,16,9,10,9,15,10,15,15,28,15,16,12,20,13,17,15,28,16,19,16,27,18,26,26,50 +25,13,14,10,13,8,9,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,14,14,28,14,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,5,8,5,6,5,8,5,5,4,7,4,6,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,10,9,16,10,11,10,16,11,17,17,34,17,17,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,15,11,16,9,11,9,16,9,10,8,13,8,11,11,20,11,11,8,11,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,26,14,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,16,17,13,21,13,18,17,34,18,19,14,21,13,17,16,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,29,19,27,26,51,27,29,22,35,22,29,27,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,27,29,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,30,17,21,18,32,17,19,15,24,15,21,20,38,20,21,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,19,13,18,18,34,18,18,13,18,11,13,12,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,19,13,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,11,7,8,8,14,8,9,8,12,8,11,11,20,11,11,8,13,8,11,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,28,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,19,14,21,12,15,13,23,13,14,11,18,12,17,16,32,17,18,13,21,13,18,17,30,17,21,18,31,21,31,31,62,32,32,22,32,18,21,18,32,17,18,14,22,14,19,18,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,17,33,17,18,12,19,11,13,11,19,11,12,9,15,10,13,13,24,13,14,10,15,9,12,11,19,11,14,11,19,13,19,19,37,19,19,13,19,11,13,11,20,11,12,9,15,10,13,13,23,12,12,9,14,8,11,10,17,10,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,11,8,10,10,18,10,10,7,12,8,10,9,16,10,11,10,16,11,17,17,33,17,17,12,17,10,11,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +25,13,14,10,13,8,9,8,15,8,8,6,10,7,9,9,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,28,14,14,10,16,9,11,9,14,8,8,6,10,7,9,9,15,8,8,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,8,6,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,31,16,16,11,16,10,12,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,16,11,16,10,12,10,16,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,25,13,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,15,16,12,21,13,18,17,34,18,19,14,21,13,17,15,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,28,19,27,26,51,27,28,21,35,22,30,28,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,28,30,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,29,17,21,18,32,17,18,14,24,15,21,20,38,20,20,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,18,12,18,18,34,18,18,13,18,11,13,11,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,20,14,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,11,7,8,8,15,9,10,8,12,8,11,11,20,11,12,9,13,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,29,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,20,14,21,12,15,13,24,13,14,11,18,12,17,16,32,17,18,14,21,13,18,17,30,17,20,17,31,21,31,31,61,31,32,22,32,18,21,18,31,17,18,14,22,14,18,17,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,18,33,17,18,12,19,11,13,11,19,11,12,9,15,10,14,13,24,13,14,10,15,9,12,11,19,11,14,12,19,13,19,19,38,20,20,13,19,11,14,12,20,11,12,9,15,10,14,13,23,12,12,9,14,8,10,9,17,10,12,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,12,8,10,9,17,10,12,10,16,11,17,17,33,17,17,12,17,10,12,10,17,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,9,13,13,25 +17,9,10,7,9,6,7,6,10,6,6,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,6,9,6,6,5,7,5,7,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,11,6,8,6,11,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,20,10,11,8,11,7,8,7,11,6,7,6,9,6,8,7,14,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,17,33,17,17,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,10,14,9,12,10,19,11,13,11,19,13,19,19,36,19,19,14,20,12,15,13,24,13,15,12,19,13,18,18,34,18,19,14,24,15,20,19,34,20,23,20,35,23,34,34,67,34,34,23,34,20,23,20,35,19,20,15,24,15,20,19,36,18,19,14,20,12,15,14,25,14,16,13,22,14,20,20,37,19,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,14,10,16,10,12,11,20,12,13,11,19,13,19,18,36,19,19,13,18,11,13,11,17,10,11,8,13,8,11,10,19,10,10,8,11,7,9,8,15,8,10,8,12,8,12,12,23,12,12,9,12,8,9,8,14,8,9,7,11,7,9,9,18,10,10,7,11,7,8,8,15,8,10,8,14,10,14,13,25,13,13,9,14,8,10,8,13,8,8,6,10,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,7,13,8,9,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,10,20,10,11,8,12,8,10,8,15,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,16,9,10,8,12,8,12,11,21,12,12,10,15,9,12,11,20,12,14,12,21,14,21,21,41,21,22,15,22,12,14,12,21,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,8,9,8,12,8,12,12,22,12,12,8,13,8,9,8,13,8,8,6,10,7,9,9,17,9,9,7,10,6,8,8,13,8,9,8,13,9,13,13,26,14,14,9,13,8,10,8,14,8,9,7,10,7,10,9,16,9,9,6,9,6,7,6,12,7,8,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,7,5,8,5,7,6,12,7,8,7,11,8,12,12,22,12,12,8,12,7,9,7,12,7,8,6,8,6,7,7,13,7,7,5,7,4,6,5,8,5,6,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,4,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,6,6,10,6,6,6,10,7,9,9,17 +26,13,13,9,14,8,10,9,15,8,8,6,9,6,9,8,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,7,5,7,7,13,7,7,5,8,6,8,8,14,8,10,9,15,10,14,14,28,15,15,11,16,9,10,8,13,8,9,7,11,7,9,9,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,12,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,16,11,17,17,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,12,21,11,11,8,12,7,9,8,17,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,17,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,13,7,6,4,6,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,8,6,8,7,14,8,10,9,15,10,15,15,29,15,16,11,16,9,11,10,15,8,9,7,12,8,10,10,20,11,11,8,12,7,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,25,13,14,10,16,10,14,13,25,14,17,15,26,17,25,25,49,25,25,17,26,15,18,15,29,16,17,13,21,13,18,17,34,18,18,13,21,13,17,15,28,16,19,16,28,19,29,29,53,27,28,20,30,18,22,19,35,19,21,17,28,19,27,26,50,27,29,22,35,22,29,27,51,29,34,29,52,35,51,50,100,51,51,34,51,29,35,29,53,28,30,22,36,23,31,29,53,27,28,20,30,18,22,20,38,21,23,19,32,21,30,29,55,28,28,19,29,17,20,17,32,17,18,14,22,14,19,19,38,20,20,15,23,14,17,16,30,17,20,16,28,19,28,27,54,28,28,19,27,15,18,15,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,11,18,13,19,19,33,17,17,12,18,11,13,11,21,11,12,9,15,10,14,13,26,14,14,10,16,10,13,12,22,12,14,12,20,13,19,19,36,19,19,13,20,11,13,11,19,10,11,9,14,9,11,10,22,11,11,8,12,7,8,7,14,8,9,7,12,8,11,11,21,11,11,8,12,7,9,8,16,9,9,7,12,8,12,11,20,11,11,8,12,8,11,10,18,11,13,11,20,13,19,19,37,19,19,13,20,12,14,12,23,13,14,11,17,11,15,14,29,15,15,11,17,11,14,12,21,12,14,12,20,14,20,19,36,19,19,13,20,12,15,13,24,13,14,11,18,12,17,16,31,17,18,14,22,13,17,16,29,17,20,17,31,21,31,31,61,31,31,21,32,18,22,18,30,16,18,14,22,14,19,18,33,17,18,13,19,12,15,13,22,12,14,11,18,12,18,18,33,17,18,12,18,11,13,11,20,11,12,9,14,9,12,12,25,13,13,10,15,9,12,11,20,12,14,12,20,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,13,24,13,13,9,13,8,10,9,18,10,12,9,15,10,13,13,27,14,14,10,14,8,9,8,16,9,10,8,12,8,10,10,17,9,9,7,11,7,9,8,17,10,12,10,16,11,16,17,31,16,17,12,18,10,12,10,18,10,10,8,12,8,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,8,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,7,4,5,5,10,6,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,6,9,6,9,9,17,9,10,7,10,6,7,6,9,5,6,4,7,5,6,6,11,6,7,5,7,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,9,9,14,8,8,6,9,6,8,8,15,8,10,9,15,10,14,14,28,15,15,10,15,9,10,9,16,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,12,10,16,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,29,20,29,28,56,29,29,20,29,17,20,17,30,16,17,13,21,13,18,17,30,16,16,12,17,10,13,12,21,12,13,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,10,8,13,8,11,11,21,11,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,15,9,10,9,15,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,12,7,8,7,11,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,13,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,8,7,11,7,10,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,8,11,7,9,8,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15 +18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,5,4,5,5,9,5,6,4,6,4,5,5,9,6,7,6,10,7,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,6,4,6,6,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,8,7,10,7,11,11,20,11,12,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,6,5,8,6,9,9,14,8,8,6,9,6,7,6,10,6,7,6,10,7,11,11,17,9,10,8,11,7,10,10,18,10,12,10,18,12,17,17,34,18,18,12,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,15,9,11,10,19,11,14,12,19,13,19,19,36,19,19,13,20,12,14,13,24,13,15,12,20,13,18,18,33,18,20,15,23,15,20,18,35,20,24,20,35,24,35,34,67,34,34,23,35,20,24,20,35,19,20,15,25,16,21,20,36,19,20,14,21,12,15,14,25,14,16,13,22,14,20,19,37,19,19,13,19,11,13,12,21,11,12,9,15,10,13,12,24,13,14,10,15,9,12,11,21,12,14,11,19,13,18,18,35,18,18,12,18,10,12,10,18,10,10,8,12,8,10,10,20,10,10,8,12,8,10,9,14,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,13,9,14,14,24,13,14,9,14,8,10,8,13,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,13,8,9,8,14,10,14,13,26,14,14,9,13,8,9,8,15,9,10,8,11,8,11,10,19,10,10,8,12,7,9,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,10,9,17,9,10,8,13,8,11,11,21,11,12,9,15,9,12,11,20,12,14,12,21,14,21,21,42,21,21,15,21,12,14,12,20,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,9,10,8,14,9,12,12,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,17,9,9,7,11,7,8,7,13,8,9,8,13,9,12,13,25,13,14,10,14,8,10,8,15,8,8,6,11,7,9,9,17,9,10,7,9,6,8,7,12,7,8,6,10,7,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,11,20,11,11,8,11,7,8,7,12,7,7,5,8,5,6,6,13,7,8,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,3,3,4,4,4,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,10,7,10,10,18 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,8,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,4,7,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,15,8,9,7,10,6,9,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,8,12,8,11,10,18,10,10,8,12,8,9,9,16,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,13,10,17,11,15,15,27,15,16,12,20,13,17,16,29,17,20,17,29,20,29,29,56,28,28,19,29,17,20,17,29,16,17,13,21,13,18,17,31,16,17,12,18,11,13,12,21,12,14,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,17,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,6,7,7,12,7,8,7,11,8,12,12,21,11,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,11,7,8,7,12,8,12,11,22,12,12,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,9,7,11,7,9,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,17,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,11,7,8,8,13,8,9,7,12,8,11,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,7,10,11,21,11,11,8,12,7,9,7,13,7,7,6,9,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,7,7,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,11,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,15 +27,14,13,9,13,8,9,8,15,8,9,6,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,4,7,7,11,6,6,5,8,6,8,8,14,8,9,8,14,10,15,15,25,13,14,10,14,8,10,8,14,8,9,7,11,7,9,9,15,8,8,5,6,4,5,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,15,8,9,6,9,6,7,6,10,6,6,5,9,6,7,7,11,6,7,6,9,6,7,6,11,6,7,6,9,6,9,10,19,10,10,8,12,7,8,7,12,7,7,6,10,7,10,10,16,9,9,7,12,8,10,9,16,9,11,10,17,12,17,17,31,16,16,11,16,9,11,10,17,9,10,8,13,9,12,11,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,14,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,9,17,9,10,8,12,7,9,9,16,9,11,9,16,11,15,15,32,16,16,11,17,10,12,10,18,10,11,8,13,8,11,10,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,7,11,6,7,6,9,6,8,8,14,8,10,9,15,10,15,15,32,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,17,9,9,7,11,7,9,8,13,8,9,8,13,9,13,13,21,11,11,8,13,8,10,9,15,9,11,9,16,11,16,15,26,14,15,11,18,11,15,14,27,15,18,15,25,17,24,24,50,25,25,17,26,15,18,16,28,15,17,13,22,14,19,18,32,17,18,13,21,13,16,15,28,16,20,17,29,20,29,29,53,27,28,20,30,17,21,19,34,19,22,18,30,20,28,27,48,25,27,21,34,21,29,27,52,29,34,29,51,34,51,51,100,50,50,34,51,29,34,29,52,28,30,23,37,23,32,30,55,28,29,21,32,19,23,21,38,21,24,19,32,21,29,29,55,28,29,20,30,17,21,18,32,17,19,14,23,14,19,18,34,18,20,15,23,14,18,16,30,17,20,17,29,19,28,27,51,26,26,18,26,15,17,15,26,14,15,11,18,12,16,15,30,16,17,12,18,11,14,12,22,13,15,12,21,14,20,19,33,17,18,13,19,11,14,12,21,11,12,9,14,9,12,12,25,13,14,10,16,10,12,11,20,12,14,12,20,14,20,20,37,19,18,12,18,10,12,10,18,10,10,8,12,8,11,10,22,12,12,9,13,8,10,8,14,8,9,7,12,8,12,11,23,12,12,9,14,9,11,9,16,9,10,8,13,9,12,11,23,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,38,19,19,13,20,12,14,12,22,12,13,11,18,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,13,18,18,37,19,20,14,22,13,15,13,24,13,15,12,19,12,17,16,31,16,17,13,21,13,18,16,30,17,20,17,30,20,30,30,62,31,31,21,30,17,21,17,30,16,17,12,19,12,16,16,33,17,18,13,19,11,14,13,24,13,14,11,19,13,18,18,34,18,18,12,18,10,12,11,19,10,11,9,14,9,12,11,24,13,13,9,14,9,11,10,18,10,12,10,17,12,18,18,36,19,19,13,19,11,14,12,22,12,13,10,16,10,14,13,25,13,13,9,14,9,11,10,17,9,10,8,13,9,12,12,27,14,14,10,15,9,11,9,16,9,9,7,12,8,10,9,18,10,10,7,11,7,9,9,16,9,11,9,15,11,16,16,29,15,15,10,15,9,11,10,17,9,10,8,12,7,9,9,19,10,10,7,10,6,8,8,14,8,9,7,10,7,10,10,18,9,9,6,9,6,7,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,26 +14,8,7,5,7,4,5,5,8,5,5,4,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,4,5,4,5,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,11,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,12,10,16,11,15,14,25,14,15,11,18,11,15,15,27,16,18,15,27,18,27,27,52,26,26,18,27,15,18,16,27,15,16,12,19,12,17,16,29,15,16,11,17,10,12,11,20,11,13,10,17,11,16,15,29,15,15,11,16,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,12,8,10,9,16,9,11,9,15,10,15,14,27,14,14,10,14,8,9,8,14,8,9,6,10,7,9,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,10,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,16,9,11,9,16,11,16,16,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,9,17,9,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14 +15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,6,8,9,15,8,8,6,8,5,6,5,8,5,6,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,3,4,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,7,5,6,6,8,5,6,5,9,6,8,8,18,10,10,7,10,6,8,6,11,6,7,5,8,5,7,6,10,6,6,5,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,19,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,8,8,12,7,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,10,9,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,19,11,12,10,17,11,16,15,27,15,16,12,19,12,16,16,29,17,20,16,29,19,28,29,55,28,28,19,28,16,20,17,29,15,16,13,20,13,18,17,31,16,17,12,18,11,13,12,22,12,14,11,17,12,17,16,31,16,16,11,17,10,12,10,18,10,10,8,12,8,10,10,18,10,10,8,13,8,10,9,16,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,16,9,10,7,11,7,10,9,17,9,10,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,22,12,12,8,10,6,8,7,11,6,6,5,8,5,7,6,13,7,8,6,8,5,5,5,9,5,6,5,7,5,8,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,8,7,13,7,8,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,17,11,16,17,35,18,17,12,17,10,11,10,16,9,10,7,10,7,9,9,18,10,10,7,11,7,9,8,13,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,10,7,10,11,20,11,11,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,14 +12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,7,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,5,8,6,8,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,6,3,3,3,3,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,13,8,9,8,15,8,9,8,13,8,12,11,20,11,12,9,14,9,12,12,21,12,15,12,21,14,21,21,41,21,21,14,21,12,15,12,21,11,12,10,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,5,9,5,6,5,9,6,9,8,14,7,7,5,8,5,5,5,9,5,6,4,7,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,26,13,13,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,7,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,8,5,8,5,5,5,8,5,5,4,5,4,5,4,8,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10 +19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,5,4,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,4,4,3,3,3,4,3,4,4,8,5,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,12,8,11,11,22,11,11,8,11,7,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,9,9,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,7,5,7,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,8,14,8,8,6,9,6,8,8,12,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,8,5,5,4,5,3,4,3,7,4,4,4,6,4,6,5,9,5,6,5,8,5,7,6,12,7,9,7,12,8,12,11,22,12,12,8,12,7,8,7,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,5,11,6,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,17,17,32,17,17,12,18,11,13,11,18,10,11,8,13,9,13,13,21,11,12,9,14,9,11,11,20,11,13,11,18,12,18,19,36,19,19,13,20,12,15,13,24,13,15,12,20,13,19,18,32,17,19,14,23,15,20,19,34,19,23,19,33,23,34,34,66,33,33,23,34,19,23,19,34,18,20,15,24,15,20,19,36,19,19,14,21,13,16,14,25,14,16,12,20,14,20,19,35,18,18,12,18,11,13,11,20,11,12,9,14,9,12,11,21,11,12,9,14,9,12,11,18,10,12,10,18,12,17,17,34,18,18,12,18,11,13,11,19,10,11,8,12,8,11,10,19,10,10,8,12,7,8,7,14,8,10,8,14,9,13,13,22,12,12,8,12,7,9,7,14,8,8,6,10,7,9,8,16,9,9,7,11,7,8,7,14,8,10,8,14,10,14,13,26,14,14,9,13,8,9,8,12,7,8,6,9,6,9,8,16,8,8,6,8,5,6,5,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,16,9,9,7,10,6,7,7,13,7,8,7,12,8,12,12,26,14,14,10,14,9,11,9,16,9,10,7,11,8,11,11,18,10,11,8,12,7,9,9,16,9,9,7,12,8,11,11,24,13,13,9,14,9,11,10,17,10,11,8,13,9,12,11,20,11,12,9,14,9,12,11,19,11,13,11,18,13,19,19,42,21,21,14,20,12,14,12,19,10,10,8,12,8,11,11,22,12,12,9,13,8,11,10,16,9,10,8,14,10,14,13,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,9,8,15,8,9,7,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,6,10,7,10,9,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,14,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,4,3,2,2,2,2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16 +12,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,5,3,4,3,4,2,3,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,23,12,12,8,13,8,10,8,15,8,9,8,12,8,12,11,20,11,12,9,15,10,13,12,21,12,15,12,20,14,21,21,41,21,21,14,21,12,15,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,12,6,7,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,8,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,12,12,26,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,4,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,4,6,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,7,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10 +17,9,8,6,9,5,6,5,9,5,5,4,6,4,4,4,9,5,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,4,4,2,2,2,4,3,4,4,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,7,11,6,6,4,6,4,6,5,8,5,5,4,8,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,9,6,8,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,7,4,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,6,5,10,6,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,31,16,16,11,17,10,13,11,19,11,12,10,16,11,15,15,27,15,16,12,20,13,17,16,29,17,20,16,27,19,28,28,55,28,28,19,28,16,20,17,29,15,16,12,21,13,18,17,31,16,16,12,18,11,14,13,22,12,14,11,19,13,18,17,29,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,10,9,15,10,14,14,29,15,14,10,15,9,10,9,15,8,8,6,11,7,10,9,15,8,8,6,10,6,7,6,12,7,8,7,12,8,11,11,20,11,11,7,10,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,8,5,7,6,11,7,8,7,12,8,12,11,21,11,11,8,11,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,9,5,6,6,12,7,8,7,10,7,10,10,22,12,12,8,12,7,9,8,14,8,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,11,7,9,8,13,7,8,7,10,7,10,9,17,9,10,8,12,8,10,9,16,9,11,9,15,11,16,16,36,18,18,12,18,10,12,10,17,9,10,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,11,8,12,12,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,10,7,10,10,21,11,10,7,10,6,8,7,12,7,7,6,10,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,11,6,6,5,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +16,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,5,6,5,8,6,9,9,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,9,6,10,6,8,7,14,8,9,8,13,9,13,13,23,12,13,9,13,8,9,8,14,8,8,6,10,7,10,10,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,29,15,15,11,16,10,12,10,18,10,11,9,15,10,14,14,26,14,15,11,18,12,16,15,27,16,18,15,26,18,26,26,51,26,26,18,27,16,19,16,27,15,16,12,19,12,16,16,29,15,16,11,17,10,13,12,21,12,13,11,18,12,17,16,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,16,9,9,7,10,6,9,8,15,8,10,8,14,9,13,13,27,14,14,9,14,8,9,8,14,8,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,19,10,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,21,11,11,8,11,7,8,7,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,8,10,8,14,10,15,15,34,17,17,12,17,10,11,9,16,9,9,7,11,7,10,9,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,9,9,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,13 +29,15,14,10,14,8,9,8,14,8,9,7,10,6,8,7,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,17,9,9,7,10,6,7,5,8,5,5,5,8,5,7,7,12,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,11,6,6,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,4,7,4,4,4,6,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,16,16,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,9,16,9,9,6,8,5,6,5,7,4,4,4,6,4,5,4,13,7,7,5,7,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,6,9,9,10,6,6,4,5,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,12,19,10,10,7,10,6,8,7,13,8,9,7,11,8,11,11,21,11,12,9,14,9,11,10,17,10,11,9,16,11,16,16,34,18,18,13,19,11,12,10,18,10,10,8,12,8,11,10,19,10,10,7,11,7,8,7,13,8,9,8,13,9,12,12,25,13,13,9,12,7,8,7,11,7,8,6,10,6,8,8,15,9,10,8,12,8,10,10,18,10,12,10,17,11,16,16,34,18,18,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,11,8,12,8,10,9,15,9,10,8,13,9,12,11,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,18,18,33,17,17,12,17,10,11,9,15,8,9,7,11,7,10,9,17,9,9,7,11,7,9,8,14,8,10,8,13,9,12,11,20,11,11,8,13,8,10,9,15,9,10,8,14,10,14,14,28,15,16,12,19,12,16,15,28,16,19,16,27,18,25,25,44,22,22,15,23,13,16,14,24,13,14,11,19,13,18,18,34,18,20,15,23,14,18,17,32,18,21,17,29,20,29,29,56,29,30,21,33,19,24,21,38,21,23,18,30,19,26,25,49,26,28,20,32,20,27,25,47,27,32,27,47,32,48,49,98,49,49,33,50,28,33,28,49,26,28,21,34,22,30,29,55,28,29,21,32,19,24,22,40,22,25,20,33,21,30,30,50,26,26,18,26,15,18,15,27,15,16,12,20,13,17,16,30,16,17,13,20,12,15,14,26,15,17,15,26,17,25,25,52,26,26,18,27,15,17,14,24,13,15,11,18,12,16,15,27,14,15,11,16,10,12,11,19,11,13,11,19,13,19,18,36,19,19,13,20,12,14,12,21,11,12,9,14,9,12,12,22,12,13,10,15,9,12,12,22,13,15,12,20,14,20,20,38,20,20,14,21,12,14,12,20,11,11,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,10,8,14,9,13,13,24,13,13,10,15,9,11,10,17,9,10,8,12,8,11,11,22,12,12,9,14,9,11,10,18,11,13,11,18,12,17,17,39,20,20,14,21,12,15,13,23,12,13,10,16,10,14,14,27,14,15,11,16,10,12,11,19,11,13,10,17,12,18,18,34,18,18,13,20,12,14,12,21,12,14,11,18,12,16,16,30,16,17,13,20,13,17,16,29,16,19,16,27,18,27,27,65,33,33,22,33,19,22,18,32,17,18,13,21,13,18,17,32,17,17,12,18,11,13,12,21,12,14,12,20,13,19,19,32,17,17,12,18,10,12,11,19,10,11,9,14,9,12,11,20,11,11,8,12,8,10,9,16,9,11,9,16,11,16,16,36,19,19,13,19,11,14,12,21,12,13,10,17,11,15,14,26,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,28,15,15,10,15,9,11,9,15,8,9,7,11,8,11,10,19,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,29,15,15,10,14,8,10,9,15,9,10,8,12,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,14,7,7,5,8,5,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,23 +15,8,8,6,7,4,5,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,6,4,4,3,3,2,3,3,4,3,3,2,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,16,11,17,10,12,11,20,11,12,10,16,10,14,14,25,14,14,11,17,11,14,13,24,14,17,14,24,17,25,25,50,25,25,17,26,15,17,14,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,10,17,11,16,16,26,14,14,9,14,8,10,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,8,8,13,8,9,8,14,9,13,13,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,6,5,8,5,6,6,12,7,7,6,8,5,6,6,12,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,5,6,5,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,12,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,20,10,10,7,11,6,8,7,12,7,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,9,8,15,9,10,8,14,10,14,14,34,17,17,12,17,10,12,10,16,9,10,7,11,7,10,9,16,9,9,6,9,6,7,6,11,7,8,7,11,7,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,15,8,8,5,7,5,6,5,8,5,6,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,12 +15,8,8,6,7,5,6,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,9,14,8,8,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,10,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,6,4,6,5,10,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,24,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,9,15,10,15,15,30,16,16,11,18,10,12,11,20,11,12,10,17,11,14,14,26,14,14,11,17,11,15,14,25,15,18,15,25,17,26,26,50,26,26,18,27,15,18,15,25,13,14,11,18,12,16,15,29,15,16,11,17,10,13,12,22,12,14,11,18,12,16,16,26,14,14,9,14,8,10,9,14,8,8,7,11,7,9,9,16,9,10,7,11,7,9,8,13,8,10,8,14,10,14,13,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,18,10,10,7,11,7,8,7,12,6,6,5,8,5,6,6,12,7,8,6,8,5,6,6,12,7,8,6,10,7,10,11,21,11,12,8,11,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,7,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,6,4,7,5,7,7,12,6,6,5,7,5,6,6,9,5,6,6,9,6,9,9,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,10,9,15,9,10,8,15,10,14,15,35,18,17,12,18,10,12,10,16,9,10,7,12,8,10,9,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,11,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,16,8,8,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,4,6,4,5,5,6,4,4,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,6,6,11 +11,6,6,4,5,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,11,13,11,18,12,18,18,35,18,18,12,19,11,12,10,17,9,10,8,13,9,12,11,20,11,11,8,12,7,9,8,15,9,10,8,13,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,9,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,5,6,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,9,5,6,5,7,5,7,8,15,8,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,6,4,7,5,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,24,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,4,3,3,3,5,4,5,5,5,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,8 +16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,7,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,5,3,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,7,10,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,18,10,10,8,12,7,8,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,5,9,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,6,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,5,7,4,5,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,5,8,6,8,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,15,14,26,13,13,9,12,7,8,7,14,8,9,7,11,7,10,10,19,11,12,9,14,9,12,11,19,11,12,10,16,11,15,15,32,17,17,12,18,11,13,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,15,15,27,15,18,15,27,18,27,28,53,27,27,19,28,16,19,15,26,14,16,12,20,13,17,16,31,16,16,12,18,11,14,13,23,13,15,12,20,13,18,17,29,15,14,10,14,9,11,9,16,9,9,7,12,8,10,10,17,9,10,8,12,7,9,8,13,8,10,8,14,10,14,14,29,15,15,10,15,9,10,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,7,6,13,8,9,7,11,8,11,11,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,6,7,6,10,7,10,9,20,11,11,7,10,6,7,6,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,10,7,10,10,20,10,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,8,6,10,7,9,9,16,9,10,9,15,10,15,15,37,19,18,12,18,10,12,11,17,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,14,8,9,8,13,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,6,4,6,6,11,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,2,2,2,1,1,1,4,3,3,2,2,2,3,3,5,3,4,3,4,3,5,5,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,8,4,4,3,4,3,5,5,6,4,4,3,4,3,4,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,11 +9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,5,5,8,5,6,4,7,5,6,6,11,6,7,5,8,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,17,9,9,7,11,7,9,9,16,9,11,9,16,11,16,16,31,16,16,11,16,10,11,9,15,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,13,8,9,7,12,8,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,4,4,4,6,4,6,6,12,7,7,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,6,9,6,9,9,22,11,11,8,11,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7 +11,6,6,4,7,4,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,8,6,8,8,11,6,6,4,7,4,4,4,8,4,4,3,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,6,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,6,11,6,6,5,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,12,11,20,10,10,7,10,6,6,6,10,6,7,5,8,6,8,8,14,8,8,6,10,7,9,8,14,8,9,8,12,8,12,12,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,15,9,12,11,21,12,14,12,21,14,21,21,38,20,20,14,20,12,14,12,19,11,12,9,14,9,12,12,23,12,13,9,14,8,10,9,16,9,10,8,14,9,12,12,22,12,12,8,11,7,8,7,12,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,6,5,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,10,7,10,6,6,5,8,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,8,7,14,8,8,5,7,4,5,5,8,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,27,14,14,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,7,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,6,6,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,8,11,11,20,11,11,8,13,8,11,10,18,11,13,11,18,13,19,19,34,17,17,12,18,10,12,10,17,10,11,8,13,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,10,20,11,11,7,10,6,7,6,10,6,7,5,7,5,6,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,7,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,7 +18,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,7,5,8,5,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,5,6,5,8,6,9,9,12,7,7,5,7,5,6,6,10,6,7,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,11,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,16,9,9,6,8,5,6,5,8,5,6,5,8,5,6,6,7,4,5,4,7,5,7,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,10,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,10,6,8,7,12,9,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,6,8,7,14,8,8,6,9,5,6,5,9,5,6,5,8,6,9,9,18,9,9,6,9,6,7,6,10,6,7,6,9,7,10,10,16,9,10,7,11,7,10,10,18,10,12,10,17,12,18,18,31,16,16,11,16,9,11,10,17,9,10,8,14,9,12,11,23,12,13,10,16,10,12,11,20,11,13,11,20,13,19,19,37,19,20,14,20,12,16,14,26,14,16,13,21,14,20,19,36,19,20,15,24,15,20,18,33,19,22,19,34,23,34,34,62,32,32,22,32,18,21,18,32,17,18,14,23,15,20,19,39,20,20,14,20,12,15,13,24,13,15,12,20,13,18,18,36,19,19,13,18,11,13,11,18,10,11,9,14,9,11,11,22,12,12,9,13,8,10,9,16,9,11,9,16,11,15,15,34,17,17,12,17,10,12,10,18,10,11,8,12,8,11,11,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,23,12,11,8,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,30,15,15,10,15,9,10,8,14,8,8,7,11,7,9,8,12,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,15,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,9,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,9,17,9,10,8,12,7,9,8,14,8,9,8,14,9,13,13,24,13,13,9,12,8,10,9,15,8,9,7,11,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,18,18,43,22,22,15,21,12,14,12,22,12,13,10,16,10,13,12,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,13,22,12,12,9,13,8,9,8,14,7,7,5,8,5,7,7,15,8,8,6,8,5,7,7,12,7,9,8,13,9,12,12,23,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,18,9,9,7,10,6,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,6,8,5,6,5,8,5,5,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,7,7,4,5,4,5,3,3,3,4,2,2,2,2,2,2,2,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,7,5,6,6,10,6,7,5,8,5,7,7,12 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,7,4,5,4,7,4,4,3,5,4,5,4,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,7,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,13,7,7,6,9,6,7,6,11,6,7,6,11,8,11,11,20,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,13,8,11,10,18,10,12,11,19,13,19,19,34,18,18,12,18,10,12,10,18,10,10,8,13,8,11,11,21,11,11,8,11,7,9,8,13,8,9,7,11,7,10,10,20,11,11,7,10,6,7,6,10,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,10,6,7,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7 +11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,4,6,4,4,4,7,4,5,5,8,6,8,8,11,6,7,5,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,5,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,9,6,8,7,15,8,8,6,10,6,8,7,13,7,8,7,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,8,14,9,13,12,23,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,20,12,14,12,20,11,12,9,14,9,12,12,24,12,12,8,13,8,10,8,15,9,10,8,12,8,11,11,22,12,12,8,11,7,8,7,11,7,8,6,9,6,8,7,14,8,8,6,8,5,6,6,10,6,8,7,11,7,10,10,21,11,10,7,11,7,8,7,12,7,8,6,9,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,6,6,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,7,5,6,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,11,6,7,6,11,8,11,11,26,13,13,9,13,8,10,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,4,2,2,2,4,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,11,10,17,12,17,17,31,16,16,11,16,9,11,10,16,9,10,8,12,8,10,10,19,10,10,7,10,6,8,6,12,7,8,6,10,7,9,9,17,9,9,6,9,6,6,5,9,6,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,5,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,7,4,6,5,9,5,6,5,9,6,9,9,20,10,11,8,11,7,8,7,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,8,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,5,6,5,8,5,6,6,9,6,7,6,10,7,11,11,16,9,9,6,8,5,7,6,10,6,6,4,6,4,4,4,9,5,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,8,6,8,7,14,7,7,5,8,5,7,6,12,7,8,7,11,8,12,12,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,8,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,10,6,7,5,8,6,8,7,13,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,14,8,10,9,16,11,15,15,24,13,13,9,13,8,9,8,16,9,9,7,12,8,11,10,20,11,11,8,12,7,9,9,17,10,11,9,16,11,16,16,30,16,17,12,18,11,14,12,21,12,14,11,18,12,17,17,31,17,18,13,20,12,16,15,27,15,18,16,28,19,28,28,53,27,27,18,27,15,18,16,28,15,16,12,20,13,18,17,31,16,16,11,16,10,12,10,19,11,12,10,16,11,15,15,29,15,15,10,15,9,10,8,15,8,9,7,12,8,11,10,20,11,11,8,12,7,9,8,13,8,10,8,14,9,13,13,26,14,14,10,15,9,11,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,24,13,13,9,13,8,9,8,12,7,7,5,8,6,8,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,6,13,7,8,6,8,5,6,5,9,5,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,9,8,14,10,15,15,33,17,17,12,18,10,12,11,17,9,10,8,14,9,11,11,19,10,10,7,10,6,8,7,13,8,9,7,12,8,12,11,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,7,8,6,10,6,8,7,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,4,6,4,5,4,8,5,6,5,7,5,7,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,7,4,5,4,5,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,11 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,6,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,5,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,4,7,5,6,6,9,6,7,6,11,7,10,10,16,9,9,6,9,6,6,6,11,6,6,5,8,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,18,10,12,11,18,12,18,18,34,18,18,12,18,10,12,11,18,10,11,8,13,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,17,9,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,7,6,9,6,8,7,13,7,7,5,7,4,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,3,4,3,3,2,4,2,3,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,5,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,15,8,8,6,8,5,6,5,7,4,4,4,6,4,6,5,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,7,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,8,8,13,8,10,8,15,10,14,14,23,12,12,9,13,8,9,8,15,8,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,15,29,15,16,11,17,10,12,11,20,11,12,10,17,11,16,15,29,15,16,12,19,12,16,15,27,15,18,15,26,18,26,26,49,25,26,18,26,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,27,14,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,12,7,8,7,14,8,9,7,13,9,12,12,25,13,14,10,13,8,10,9,15,8,9,7,11,7,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,9,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,7,5,6,6,9,5,6,5,10,7,10,10,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,10,6,7,6,11,6,6,5,9,6,9,9,16,9,9,7,10,6,8,8,14,8,10,8,14,10,14,14,31,16,16,11,17,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,8,6,8,9,19,10,10,7,9,5,6,6,10,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,6,4,6,6,10 +11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,8,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,8,8,13,8,9,8,14,10,14,14,22,12,12,8,12,8,9,8,14,8,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,11,16,10,12,11,20,11,12,10,17,11,15,15,28,15,16,12,19,12,16,14,26,15,18,15,26,17,25,25,48,25,25,17,26,15,18,15,26,14,16,12,19,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,15,10,14,14,26,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,8,7,14,8,9,7,12,8,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,30,16,16,11,16,10,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,19,10,10,7,9,5,6,6,10,6,6,5,8,6,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,10 +20,10,10,7,10,6,8,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,8,8,8,5,5,4,6,4,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,7,7,12,7,7,6,10,7,9,9,17,9,10,8,12,8,10,10,18,10,12,11,19,13,19,19,25,13,13,9,13,8,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,5,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,20,11,11,8,12,8,10,9,16,9,11,9,14,9,12,12,22,12,12,9,15,10,13,12,23,13,16,13,22,15,21,21,27,14,15,11,16,9,11,10,17,9,10,8,12,8,11,10,19,10,11,8,12,7,9,9,16,9,10,8,13,9,12,12,24,13,13,9,13,8,9,8,13,7,8,6,9,6,9,9,17,9,10,7,10,7,9,8,14,8,10,8,14,10,15,15,32,16,16,11,17,10,13,12,21,12,13,10,16,10,13,12,23,12,12,8,11,7,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,15,8,9,7,12,8,11,11,20,11,12,9,13,9,12,11,21,12,14,12,20,13,19,19,35,18,18,12,18,11,13,11,20,11,12,10,17,11,15,14,26,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,26,14,14,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,17,12,18,11,15,14,26,15,18,15,27,18,26,26,42,22,22,15,23,13,16,14,24,13,15,12,19,12,17,16,31,16,16,12,18,11,15,14,26,15,18,16,28,19,27,27,54,28,28,19,29,17,22,19,34,18,20,16,27,18,26,25,49,26,28,21,34,21,28,26,50,28,33,28,50,33,49,49,94,48,48,32,48,27,31,26,46,24,26,19,31,20,27,25,47,24,25,18,27,16,19,17,31,17,20,16,26,17,25,25,49,25,26,18,26,15,18,16,28,15,16,12,18,12,16,15,28,15,16,12,18,11,15,14,25,14,16,13,22,15,22,22,47,24,23,16,23,13,16,14,25,14,15,12,19,12,16,15,28,15,15,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,16,11,15,9,10,9,16,9,10,8,13,9,12,11,21,11,12,9,13,8,11,10,19,11,13,11,19,13,19,19,43,22,22,15,22,13,16,14,25,13,14,11,18,11,15,13,24,13,13,9,14,8,10,9,15,8,9,7,12,8,11,11,20,10,10,7,10,6,7,7,12,7,8,7,11,8,11,10,19,10,11,8,12,8,11,10,19,11,12,10,18,12,17,17,24,13,13,10,15,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,10,7,9,9,16,9,11,10,17,11,16,16,30,16,16,11,17,10,13,11,20,11,11,9,14,9,13,12,23,12,13,10,17,10,13,12,23,13,16,14,26,18,26,26,59,30,30,21,32,18,22,19,33,18,19,14,23,14,19,18,34,18,19,13,20,12,14,13,23,13,15,12,19,13,19,19,36,19,19,13,19,11,13,11,18,10,11,9,14,9,12,12,23,12,13,10,15,9,11,10,19,11,13,10,17,12,17,16,37,19,19,13,19,11,13,11,19,10,10,7,11,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,8,11,11,20,11,11,7,10,6,7,7,12,7,8,6,9,6,7,6,11,6,7,5,8,5,7,6,11,7,9,8,14,10,15,15,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,9,9,18 +10,6,6,4,6,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,7,4,5,5,8,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,3,3,4,3,4,3,5,4,5,5,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,14,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,9,6,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,13,25,14,15,11,17,11,14,13,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,14,10,16,10,14,13,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,8,8,7,12,8,11,11,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,8,14,10,14,14,30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,8,6,8,8,11,6,6,5,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,10 +10,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,6,4,4,4,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,4,3,4,3,4,3,5,5,2,2,2,2,1,1,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,13,7,8,7,12,8,12,11,14,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,10,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,10,6,8,7,11,6,7,5,9,6,8,7,12,7,7,5,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,17,9,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,10,7,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,15,15,27,14,14,10,15,9,11,10,17,10,11,9,15,10,14,13,25,14,15,11,17,11,14,13,26,15,18,15,26,18,26,26,48,25,25,17,25,14,16,14,24,13,14,10,17,11,15,14,24,13,13,9,14,8,10,9,16,9,10,8,13,9,12,12,26,14,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,14,8,8,7,12,8,11,11,25,13,12,8,13,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,7,12,7,8,6,9,6,8,7,12,8,10,9,14,10,14,14,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,6,6,10 +7,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,4,3,3,3,6,3,3,3,4,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,4,4,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,7,7,5,7,4,6,5,8,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,7,12,7,8,7,11,7,10,10,17,10,10,8,12,8,10,9,18,10,13,11,18,12,18,18,33,17,17,12,17,10,11,9,17,9,10,7,12,8,10,10,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,9,18,10,10,7,9,6,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,4,6,5,8,5,6,4,7,4,6,5,8,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,12,6,7,6,8,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,6,4,4,4,8,4,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,13,7,7,5,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,3,3,4,3,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,6,8,7,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,10,5,5,4,5,4,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,13,7,7,6,9,6,7,7,10,6,7,6,10,7,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,15,21,11,11,8,12,7,9,8,13,8,9,7,11,7,9,9,18,10,10,7,10,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,25,13,14,11,18,11,15,14,26,15,18,16,28,19,27,27,49,25,25,17,26,14,16,13,25,13,14,11,17,11,15,14,25,13,14,10,14,8,10,9,16,9,10,8,14,9,13,13,28,15,15,10,14,8,9,8,15,8,9,7,11,7,8,8,15,8,8,6,9,6,8,7,14,8,9,7,12,8,12,12,26,13,13,9,14,8,9,8,14,8,8,6,10,7,9,9,17,9,9,7,10,6,7,7,11,6,7,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,7,6,10,5,5,4,6,4,4,4,5,3,4,4,6,4,5,5,11,6,6,5,8,5,7,6,9,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,10,6,6,4,6,4,6,5,10,6,7,6,9,6,9,8,17,9,9,7,10,6,7,6,12,7,7,6,10,6,8,8,12,7,7,6,10,6,7,7,12,7,9,9,16,11,16,15,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,21,11,11,7,10,6,8,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,8,21,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,6,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,2,3,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,11 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,5,8,5,6,5,8,6,8,9,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,7,10,7,9,8,15,9,11,9,16,11,16,16,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,4,3,5,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,4,7,5,6,5,9,6,9,9,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,5,3,4,3,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,6,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,5,6,5,8,5,7,7,10,6,6,5,9,5,6,6,10,6,7,6,10,7,10,10,15,8,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,8,12,8,11,10,18,11,13,11,19,13,19,19,34,18,18,12,19,11,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,7,10,9,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,8,7,10,6,7,5,8,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,9,5,6,5,7,5,6,6,9,5,6,4,7,4,5,4,7,4,5,4,5,4,6,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,3,3,3,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,6,6,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,15,8,7,5,7,5,6,5,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,7,7,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,5,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,13,7,8,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,9,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,30,15,15,11,16,9,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,7,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,5,4,4,4,5,3,3,3,4,3,5,5,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,5,4,5,5,7,4,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6 +10,6,6,5,7,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,11,6,5,4,5,3,4,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,16,9,9,6,8,5,6,6,10,6,6,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,11,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,8,6,10,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,10,6,8,8,14,8,9,7,10,6,7,7,12,7,7,6,10,7,10,10,15,8,8,6,10,7,9,9,16,9,10,9,15,11,16,16,24,13,13,9,14,8,10,8,14,8,9,7,12,8,11,10,18,10,11,8,12,7,9,9,16,9,11,10,17,11,16,16,29,15,15,11,17,10,12,10,18,10,12,9,15,10,14,14,27,15,16,12,20,12,16,15,28,16,20,17,29,19,28,28,54,27,27,18,26,15,17,15,26,14,15,11,17,11,15,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,14,30,16,16,11,17,10,11,9,16,9,9,7,11,7,9,9,14,8,8,6,9,6,8,8,14,8,10,8,13,9,13,13,28,15,15,11,16,9,11,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,11,8,11,11,28,15,15,10,15,9,10,8,14,8,9,7,11,7,9,9,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,13,7,8,6,8,5,5,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,9,7,10,6,7,6,10,6,6,4,6,4,5,4,11,6,7,5,8,5,6,6,11,6,7,6,10,6,8,8,21,11,11,8,13,8,10,8,14,8,9,7,10,7,9,9,16,9,9,7,11,7,8,8,14,9,11,9,16,11,16,16,31,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,11,7,9,8,15,9,10,8,13,9,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,6,8,8,21,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,4,3,5,5,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10 +5,3,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,11,7,9,8,15,9,11,9,16,11,15,15,29,15,15,10,14,8,10,8,14,8,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,6,6,5,8,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,5,6,5,8,6,8,8,8,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,5,8,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,9,10,8,13,8,10,9,17,10,12,10,18,12,17,17,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,5,6,6,10,6,7,6,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,9,5,5,4,6,4,6,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,6,4,5,3,4,4,6,4,4,3,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,13,7,6,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,10,7,10,10,18,9,9,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,5,12,6,6,5,8,5,6,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,4,6 +4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,7,4,5,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,13,8,9,8,14,9,13,13,24,12,12,9,13,8,9,8,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,14,7,7,5,8,5,6,5,7,4,4,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,6,5,8,5,7,7,9,5,5,4,6,4,4,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,4,5,5,11,6,6,5,8,5,6,6,9,5,6,6,10,7,10,10,9,5,6,4,6,4,4,4,5,3,3,2,3,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,7,5,6,6,9,5,5,4,7,4,5,5,8,5,5,4,5,4,5,4,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,9,9,12,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,6,8,7,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,7,11,8,11,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,22,22,40,21,21,14,21,12,14,12,20,11,11,8,12,8,11,10,20,11,11,7,10,6,8,7,12,7,8,7,11,7,10,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,10,6,7,6,10,7,10,10,21,11,11,7,10,6,7,6,12,7,7,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,8,5,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,5,8,6,8,8,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,5,4,5,4,5,5,6,4,5,4,6,4,6,7,10,5,5,4,6,4,4,3,7,4,4,3,4,3,3,3,8,4,4,3,4,3,5,5,7,4,5,4,6,4,6,5,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,7,6,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,6,8,7,13,7,8,6,8,5,7,6,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,4,5,4,9,5,5,4,6,4,6,6,16,9,9,6,9,6,7,6,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,7,4,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,13,8,9,8,13,7,7,6,8,6,7,7,12,7,7,5,7,4,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,7,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,7,4,5,5,8,5,6,5,8,6,9,9,7,4,5,4,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,6,5,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,7,10,10,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,10,10,19,10,11,9,14,9,12,11,20,12,14,11,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,12,8,10,9,16,9,9,6,9,6,8,7,11,7,8,6,9,6,9,9,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,18,9,9,6,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,4,6,4,4,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,6,5,8,5,7,7,20,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,13,7,7,5,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,9,5,6,6,10,6,7,6,11,8,11,11,17,9,9,7,9,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,7,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,4,2,2,2,3,3,4,4,6 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,10,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,7,12,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,19,13,19,19,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,9,9,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,9,6,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,6,5,9,5,6,5,7,5,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,5,6,3,3,3,3,2,3,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,13,7,7,5,8,5,6,5,9,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5 +7,4,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,5,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,3,2,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,6,8,8,14,8,10,9,16,11,16,16,13,7,7,5,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,11,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,7,5,8,5,7,6,11,7,8,7,12,9,14,14,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,18,10,10,7,10,6,8,7,11,7,8,6,10,7,9,8,14,8,9,7,10,6,8,7,12,7,9,8,14,10,14,15,20,11,11,8,12,7,8,7,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,7,12,7,8,7,12,8,11,11,17,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,11,13,11,18,12,18,19,32,17,17,12,17,10,12,10,18,10,11,9,14,9,13,12,23,12,12,9,14,9,11,11,20,11,13,11,18,13,19,19,33,17,17,12,19,11,14,12,22,12,14,11,19,13,18,18,34,18,19,14,23,15,20,19,36,21,25,21,37,25,37,37,69,35,35,23,33,19,22,18,31,16,17,12,19,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,12,17,16,36,18,18,13,19,11,13,11,18,10,10,8,12,8,11,11,21,12,13,10,15,9,12,11,19,11,12,10,16,11,16,16,32,17,17,12,17,10,11,9,15,8,9,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,24,13,13,9,13,8,10,9,15,8,9,7,10,6,8,7,12,7,8,6,10,6,8,7,13,8,9,8,13,9,13,13,36,19,19,13,20,11,13,11,19,10,11,8,12,8,11,10,18,10,10,7,9,6,7,7,12,7,7,6,10,6,8,8,10,6,6,5,7,5,6,6,10,6,7,6,9,6,8,7,12,7,8,6,10,6,8,7,13,8,9,7,11,7,10,10,16,9,9,7,10,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,6,4,5,4,7,5,8,8,24,13,13,9,14,9,11,10,17,9,10,8,12,8,11,11,20,11,11,8,13,9,12,12,22,13,15,12,21,14,20,20,30,15,15,11,16,10,12,10,17,9,10,8,12,8,11,11,20,11,11,8,13,8,10,9,15,9,10,8,12,8,12,12,23,12,12,8,12,7,9,8,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,7,6,9,6,9,9,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,7,12,7,8,6,10,6,8,7,13,7,8,7,12,8,10,10,11,6,7,5,7,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,6,10,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,6,7,5,8,5,7,6,10,6,6,5,8,5,7,7,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,4,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,5,9 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,16,8,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,8,12,8,11,10,19,11,13,11,19,13,20,20,36,19,19,12,18,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,7,6,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,5,12,7,7,5,7,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,5,3,3,3,3,3,4,3,5 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,5,3,4,4,5,3,4,4,5,4,6,5,6,3,3,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,4,7,4,5,5,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,8,8,12,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,5,7,4,5,4,7,4,4,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,7,6,10,7,11,11,17,9,9,6,10,6,7,6,11,6,7,6,9,6,7,7,13,7,6,5,7,5,6,6,11,7,8,7,10,7,10,11,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,8,13,8,11,10,20,12,14,12,20,14,21,21,38,20,20,13,19,11,13,11,17,9,9,7,10,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,10,7,10,9,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,7,20,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,4,3,5,3,3,3,6,3,2,2,3,2,2,2,4,3,4,3,4,3,5,5,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,8,12,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,4,5,5,6,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,5,3,3,3,3,3,4,4,6 +3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,5,3,3,3,4,3,3,3,5,4,4,4,6,5,7,7,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,3,5,3,3,3,5,4,4,4,7,4,5,4,6,4,4,4,7,4,5,5,8,6,8,8,12,6,6,5,7,4,5,4,8,5,5,4,7,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,15,15,28,14,14,10,14,8,9,8,13,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,5,8,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,14,8,8,6,8,5,5,4,8,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4 +3,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,5,3,4,4,7,5,7,7,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,10,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,5,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,13,7,8,6,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,5,4,7,4,5,4,7,5,7,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,8,5,7,7,12,7,8,7,12,9,13,13,22,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,23,12,13,9,14,9,12,11,23,13,16,13,23,16,23,23,44,22,22,15,21,12,14,12,20,11,11,8,12,8,10,10,18,9,9,7,10,7,9,8,13,8,9,7,12,8,11,10,21,11,10,7,10,6,7,6,10,5,5,4,6,4,6,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,10,6,6,5,8,5,6,5,9,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,5,6,5,9,5,5,4,6,4,4,4,9,5,5,4,7,5,8,8,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,6,4,5,4,6,4,4,3,5,3,3,3,5,4,5,5,7,4,4,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,12,8,12,12,17,9,9,7,10,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,8,5,6,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,5,14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,6 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,14,8,10,8,14,10,14,14,26,14,14,9,13,8,9,8,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,4,5,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,3,5,3,4,3,6,4,6,6,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,8,11,6,6,4,6,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,6,6,10,7,10,10,14,8,8,6,9,5,6,6,10,6,6,5,9,6,7,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,11,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,17,10,12,10,16,9,9,7,11,7,9,8,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,17,9,8,6,8,5,6,5,8,4,4,3,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,6,8,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,6,5,7,4,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,4,5,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,4,4,4,8,5,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,6,6,9,7,10,10,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,8,17,9,10,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,8,6,7,7,15,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 +2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,2,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,6,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,8,5,5,4,6,4,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,4,7,4,5,5,8,5,6,5,8,5,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,10,6,8,8,14,8,10,8,14,9,13,13,23,12,12,9,13,8,9,8,13,7,7,6,9,6,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,13,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,15,8,9,6,9,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,15,16,25,13,14,10,14,9,11,10,18,10,11,8,12,8,11,10,20,11,11,8,11,7,10,9,16,9,11,10,17,12,18,18,31,16,16,12,18,11,13,11,20,11,13,10,16,11,15,15,31,17,18,13,21,13,17,16,30,17,20,17,31,21,31,31,59,30,30,20,30,17,19,16,28,15,15,11,17,11,15,14,27,14,14,10,16,9,11,10,18,10,12,9,15,10,13,13,27,14,14,10,14,8,10,8,14,8,8,7,11,7,9,8,16,9,9,7,11,7,8,8,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,16,9,9,7,12,8,10,9,15,8,8,6,10,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,13,8,9,8,13,7,7,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,31,16,16,11,16,9,11,9,15,8,9,7,11,7,9,8,12,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,17,9,9,7,11,7,9,8,14,8,9,7,10,7,9,9,19,10,11,8,12,7,9,9,16,9,11,9,16,11,16,16,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,14,8,8,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,3,4,4,6,4,5,4,6,4,6,5,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,4,5,4,5,4,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,8,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,6,8,5,7,6,10,6,7,5,7,5,7,6,11,6,7,5,7,4,6,5,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,17,12,17,17,33,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,5,5,8,4,5,4,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,7,5,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,6,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,9,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,13,7,8,6,8,5,6,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,9,8,14,8,8,7,12,8,10,10,21,11,12,9,13,9,12,11,20,12,14,12,20,14,20,20,39,20,20,13,20,11,13,11,19,10,11,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,5,9,5,6,4,5,3,4,4,8,4,4,4,6,4,5,4,7,4,5,4,7,5,8,8,20,10,10,7,11,7,8,6,10,6,6,5,8,5,6,5,9,5,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,4,2,2,2,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,11,6,7,6,11,7,10,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,11,6,7,5,7,5,6,6,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,17,9,10,7,11,7,10,9,16,10,11,10,16,11,17,17,32,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,6,11,6,7,5,7,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4 +-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,4,3,4,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,6,6,10,7,9,9,10,5,5,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,4,6,4,5,5,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,9,5,6,4,6,4,4,4,7,4,5,5,8,6,8,7,12,7,8,6,9,6,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,7,4,5,4,8,5,5,5,8,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,6,5,7,7,12,7,7,5,8,6,8,7,12,7,8,7,11,8,11,12,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,8,14,8,9,8,14,10,15,15,26,13,13,9,14,8,10,9,17,9,10,8,12,8,11,11,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,15,29,15,16,12,19,12,17,16,28,16,19,16,28,19,28,29,55,28,28,19,28,16,18,15,27,15,16,12,18,11,15,14,27,14,14,10,15,9,11,10,17,9,10,8,14,9,13,12,23,12,12,8,12,7,8,7,14,8,9,7,12,8,10,9,15,8,9,7,10,7,9,8,16,9,10,8,13,9,13,13,25,13,13,9,14,8,9,8,16,9,9,7,10,6,8,8,14,8,9,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,11,8,11,7,8,7,13,7,8,6,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,10,10,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,13,7,7,5,6,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,7,6,12,7,7,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,9,8,14,10,15,15,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,4,4,5,3,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,18,9,9,7,10,6,7,6,12,6,7,6,8,5,7,7,13,7,7,6,8,6,7,6,11,6,8,6,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,11,8,11,10,20,11,11,8,13,8,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,12,10,18,10,11,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,6,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,10,6,6,5,7,4,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,7,6,9,5,5,4,7,4,6,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,6,5,8,6,9,9,9,5,4,3,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,4,4,7,4,5,5,8,6,8,7,13,7,8,6,8,6,8,7,13,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,7,7,12,6,6,5,6,4,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,9,11,9,17,9,10,8,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,11,21,11,12,10,16,11,16,15,30,16,17,13,19,12,16,15,29,17,20,16,28,19,28,28,53,27,27,18,27,15,18,15,27,14,15,11,18,11,15,14,27,14,14,10,15,9,11,10,16,9,10,8,14,9,12,12,22,12,12,8,13,7,8,8,13,7,8,7,11,7,10,9,16,9,10,7,10,7,9,8,16,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,8,11,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,9,8,16,9,10,7,10,6,8,8,14,8,10,9,15,11,16,16,19,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,8,6,8,8,13,7,6,5,7,4,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,8,5,6,5,8,6,9,9,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,9,6,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25,13,13,10,14,9,11,9,16,9,10,8,11,7,10,10,19,10,11,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,12,21,11,12,10,16,11,16,15,30,16,17,13,20,12,16,15,29,16,19,16,28,19,28,28,52,26,26,18,26,15,18,15,27,14,15,11,18,11,15,14,26,14,14,10,15,9,11,10,16,9,10,8,13,9,12,12,22,12,12,8,13,8,9,8,13,7,8,7,11,7,10,9,16,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,8,8,16,9,9,7,10,6,8,8,14,8,10,9,15,11,16,16,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,7 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,4,3,5,5,8,5,5,4,6,5,7,7,12,7,7,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,9,17,9,10,8,12,8,11,11,20,11,13,11,19,13,18,18,15,8,8,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,8,7,11,8,12,12,22,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,13,10,16,10,13,12,23,13,15,12,21,14,21,21,27,14,14,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,11,8,12,8,10,9,17,10,11,9,15,10,14,14,26,14,14,10,15,9,11,10,17,10,11,9,14,9,13,12,23,13,14,11,17,11,14,13,24,14,16,13,23,15,22,22,44,22,22,15,21,12,14,12,22,12,13,10,16,10,14,14,27,14,15,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,12,9,13,8,9,8,14,8,9,8,13,9,13,12,23,12,13,9,14,9,12,11,21,12,13,11,19,13,19,20,35,18,18,12,18,11,14,12,22,12,13,10,16,11,15,14,27,14,14,10,15,9,12,11,19,11,13,10,17,11,16,16,31,16,16,12,18,11,13,11,20,11,13,11,18,12,17,17,32,17,18,13,20,13,17,16,30,17,19,15,26,18,26,25,49,25,25,17,26,15,19,17,30,16,18,13,21,13,18,17,32,17,17,12,19,12,16,15,27,15,17,14,24,16,23,23,44,23,23,16,25,15,19,17,30,17,19,16,28,19,27,26,51,27,29,22,35,22,30,28,54,30,36,31,55,37,54,54,103,52,52,35,51,28,33,28,49,26,28,20,32,20,27,25,48,25,26,18,28,16,20,18,33,18,21,17,28,18,26,26,50,26,26,18,26,15,17,14,25,14,15,12,19,12,17,16,30,16,17,13,20,12,16,14,25,14,17,14,24,16,24,24,48,24,24,16,24,14,17,15,26,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,13,7,8,7,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,17,18,51,26,26,17,25,14,17,14,25,13,14,11,18,12,16,15,28,15,15,11,16,10,13,11,20,11,12,9,15,10,13,13,25,13,13,9,14,8,10,9,16,9,9,7,12,8,11,10,19,10,11,8,11,7,9,8,15,8,9,8,13,9,13,13,25,13,13,9,13,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,38,19,19,13,20,12,15,13,23,13,14,11,18,12,17,16,30,16,17,12,19,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,12,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,11,10,19,10,11,9,15,10,15,15,28,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,20,10,10,7,9,5,6,6,10,6,6,5,7,5,7,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,7,10,6,7,6,11,6,7,5,7,5,6,6,10,5,5,4,5,4,5,4,7,5,6,5,8,6,9,9,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,5,4,5,3,4,4,6,4,5,4,7,5,8,8,14,7,7,5,7,4,5,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,13,25,13,13,9,13,8,10,9,15,9,10,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,8,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,52,26,26,18,26,15,17,14,25,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,10,11,9,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,10,6,9,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,10,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,9,6,10,7,9,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,6,5,9,6,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,4,3,4,3,4,4,7 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,7,11,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,8,6,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,6,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,13,8,10,9,15,9,10,7,12,8,10,9,17,9,10,7,10,6,8,8,14,8,10,8,13,9,12,12,23,12,12,9,14,8,10,9,16,9,11,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,53,27,26,18,26,15,18,15,26,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,9,10,8,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,5,9,5,6,5,9,7,10,10,27,14,14,9,13,8,10,8,12,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,8,6,10,7,9,8,15,9,10,9,16,11,15,15,18,9,9,7,10,6,6,5,10,6,6,5,8,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,4,3,4,4,7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,6,3,3,3,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,4,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,7,5,7,6,11,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,9,6,7,6,10,6,7,5,8,6,7,7,12,6,7,5,7,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,7,8,6,11,7,10,10,17,9,10,8,12,8,11,10,19,11,13,11,19,13,19,19,36,18,18,12,18,10,12,10,18,10,10,7,12,8,10,9,17,9,10,7,10,6,7,6,12,6,7,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,7,5,6,6,10,6,7,6,11,8,10,10,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,1,3,2,3,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,11,8,12,12,14,7,7,5,6,4,4,4,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,7,6,13,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,10,9,16,9,9,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,14,8,9,7,12,8,11,10,17,9,10,7,10,7,9,8,15,9,10,8,12,8,12,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,15,25,13,14,11,18,11,15,14,27,15,18,16,28,19,27,27,54,27,27,18,26,15,17,14,26,14,15,11,17,11,14,13,25,13,13,9,14,9,11,9,17,9,10,8,14,9,13,13,25,13,13,9,12,7,8,7,13,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,8,13,9,13,13,24,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,12,6,6,4,6,4,5,5,10,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,12,7,7,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,11,11,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,14,8,8,6,10,6,8,8,14,8,10,9,16,11,15,15,19,10,10,7,10,6,6,5,11,6,7,5,8,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,8,6,9,9,13,7,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,3,3,3,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,3,3,5,3,4,3,4,3,4,4,8 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,8,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,8,7,11,7,9,8,16,9,10,9,16,11,15,15,31,16,15,10,15,9,10,8,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,8,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,6,6,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,5,6,5,9,5,6,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,9,7,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,13,8,10,10,19,11,12,10,19,13,18,18,37,19,18,12,18,10,12,10,19,10,11,8,12,8,10,9,17,9,10,7,10,6,7,6,12,7,7,6,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,4,4,6,4,6,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,3,4,4,6 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,8,4,5,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,5,9,5,5,5,7,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,31,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,10,5,5,4,6,4,5,5,10,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,3,4,4,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,11,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,7,10,6,6,5,9,6,7,6,9,6,8,8,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,26,14,14,10,14,8,9,7,12,7,7,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,5,7,7,13,8,9,7,12,8,11,11,23,12,12,9,14,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,8,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,8,8,14,8,9,8,14,10,14,14,25,13,13,9,13,8,10,9,15,9,10,8,12,8,11,10,17,9,10,7,11,7,8,8,14,8,9,7,12,8,11,11,24,13,13,10,15,9,12,10,18,10,12,10,16,11,15,15,27,15,16,12,18,11,15,15,28,16,18,15,27,18,27,27,56,29,29,19,28,16,19,16,28,15,15,11,17,11,14,14,26,14,14,10,15,9,10,9,16,9,11,9,14,9,13,12,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,8,17,9,10,7,10,6,8,7,12,7,9,8,13,9,14,14,23,12,13,9,13,7,8,7,12,7,8,6,9,6,9,9,16,9,9,7,11,7,8,7,12,7,7,6,10,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,7,6,10,6,7,5,8,5,6,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,19,10,11,8,11,7,8,7,11,6,7,6,10,7,9,8,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,5,3,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,5,3,4,3,4,3,5,5,10 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,5,3,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,15,10,15,15,30,16,16,10,15,9,11,9,15,8,8,6,9,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,5,5,3,5,3,4,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,5,4,5,5,8,5,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,17,17,11,17,10,12,10,16,9,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,9,6,7,6,9,7,10,10,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,2,2,2,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,24,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,8,8,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,1,1,1,1,1,1,0,0,3,2,1,1,0,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,4,7,5,6,5,8,6,8,8,6,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,1,1,1,1,0,0,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,10,6,6,4,6,4,6,6,12,7,7,5,7,5,6,6,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,9,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,11,6,7,5,8,5,7,7,16,9,9,7,10,6,7,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,11,13,11,19,10,11,8,13,9,12,11,20,11,11,8,11,7,9,8,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,8,5,5,4,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,5,4,6,6,11,6,5,3,4,3,3,3,6,4,4,4,6,4,4,4,9,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,15,8,8,6,8,5,5,5,7,4,5,4,7,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,3,7,4,5,4,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,24,12,12,8,13,8,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,7,4,4,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5 +1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,5,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,7,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,7,9,9,16,9,11,9,17,11,16,16,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,2,2,3,5,3,4,3,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,5,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,8,8,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,9,16,9,11,9,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,11,6,6,5,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,10,5,5,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,7,6,11,8,11,12,8,4,4,3,5,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,11,6,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,5,6,5,9,7,10,10,14,8,8,5,7,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,8,12,13,29,15,16,11,16,9,10,8,14,8,8,7,11,7,9,8,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,11,7,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,20,11,12,9,13,8,10,10,18,10,12,10,17,11,15,15,31,16,16,11,15,9,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,11,9,14,9,13,12,25,13,13,10,15,9,12,10,18,10,11,9,16,10,14,14,26,14,15,12,19,12,16,16,30,17,20,17,29,20,29,29,59,30,31,21,31,18,21,18,31,17,18,13,20,13,17,16,31,16,16,11,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,10,7,9,9,16,9,11,9,14,10,14,14,25,13,14,10,15,9,10,9,16,9,9,7,12,8,10,9,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,11,8,12,7,9,8,14,8,9,7,11,7,9,8,15,8,9,7,11,7,9,8,15,9,11,9,15,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,9,6,7,6,11,6,7,5,7,4,5,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,7,12,8,11,11,20,11,11,8,13,8,10,10,18,11,13,11,18,12,18,18,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,9,6,9,9,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,10,5,5,4,5,3,4,3,4,3,3,3,5,4,5,5,11,6,6,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,6,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,6,4,4,4,7,5,7,7,12 +1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,6,4,6,6,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,8,6,10,7,9,9,16,9,11,9,15,10,15,15,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,6,6,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,7,5,7,7,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,2,2,2,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,6,4,6,6,10,6,6,4,7,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,31,16,17,12,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,5,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,8,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,5,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,9,5,4,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,6,4,6,6,10,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,4,5,4,4,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,5,8,5,7,7,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,4,4,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,2,3,2,3,2,3,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,4,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,6 +0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,7,4,5,4,7,5,7,7,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,5,5,8,5,7,7,16,9,9,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,15,8,9,7,10,6,7,7,10,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,9,9,17,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,14,8,9,7,12,8,10,9,17,10,11,10,17,12,17,17,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,10,19,10,10,8,12,7,9,7,11,6,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,11,6,6,5,8,5,6,5,9,5,6,6,10,7,9,9,14,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,10,7,9,9,16,8,8,5,7,5,6,5,6,4,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,4,3,5,5,9 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,4,5,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,5,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,4,4,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,4,4,4,6,4,6,5,7,4,4,4,6,5,7,7,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,10,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,5,6,4,5,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,10,6,6,5,8,6,7,7,12,7,9,8,13,9,13,13,22,12,11,8,11,7,8,7,12,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,-1,0,0,1,2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,4,3,4,3,4,4,6,4,5,5,8,6,8,7,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,9,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,7,7,12,7,8,7,12,8,11,11,23,12,12,9,13,8,10,8,14,8,9,7,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,8,5,6,5,13,7,7,5,7,5,6,6,10,6,7,7,12,8,11,11,19,10,10,8,12,7,9,7,12,7,8,7,11,7,10,9,12,7,7,5,7,5,7,7,12,7,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,12,9,15,9,12,12,22,13,15,13,23,16,23,23,41,21,21,14,21,12,14,12,21,11,11,8,13,9,12,11,22,12,12,9,13,8,9,8,14,8,9,7,10,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,13,13,16,8,8,6,9,6,7,6,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,6,6,10,6,7,7,12,8,11,11,24,12,12,9,13,8,9,8,13,7,7,5,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,7,12,7,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,6,11,8,11,11,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,4,5,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,4,2,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14 +1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,10,6,7,6,9,6,7,7,12,7,9,8,13,9,13,13,22,12,12,8,12,7,8,7,12,6,6,5,7,5,7,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,9,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,5,3,3,3,5,3,4,3,5,3,3,2,3,2,3,4,8,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,7,8,6,10,6,8,8,14,8,10,9,14,10,14,15,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,13,7,7,6,9,5,6,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,5,5,8,4,4,3,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,5,9,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,3,2,2,2,3,2,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,5,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,3,2,2,2,2,3,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,9 +2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,1,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,0,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,6,6,11,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,5,5,4,6,4,5,5,11,6,7,6,10,7,9,9,22,11,11,8,12,7,9,8,13,7,8,6,10,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,6,10,7,10,9,15,8,8,6,10,6,7,7,10,6,6,5,8,6,8,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,9,7,12,8,11,10,19,11,13,11,20,14,20,20,35,18,18,12,17,10,11,10,17,9,9,7,11,7,9,9,18,10,10,7,11,6,7,6,12,7,7,5,8,6,9,9,17,9,9,6,8,5,7,6,11,6,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,5,7,7,10,5,5,4,6,4,5,5,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,12,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,6,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,3,3,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,3,2,3,2,2,2,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,2,2,5,3,3,2,2,2,2,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,3,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12 +2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,6,9,5,6,4,7,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,4,6,4,4,4,8,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,8,4,5,4,7,5,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,14,14,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,3,3,4,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,7,7,5,7,4,5,5,7,4,5,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,6,6,1,1,2,1,2,1,1,1,3,2,2,1,2,2,2,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,14,8,8,6,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,4,4,4,5,3,4,4,8,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,11,10,18,11,13,11,19,13,20,20,33,17,16,11,16,9,11,9,15,8,9,7,11,7,10,9,17,9,9,7,9,5,6,6,11,6,7,6,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,9,5,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,8,5,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,1,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,6,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,7,5,8,5,6,6,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,10,10,18,11,13,11,19,13,20,20,32,16,16,11,16,9,11,9,15,8,9,7,11,7,9,9,16,9,9,6,9,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +4,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,7,14,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,7,6,10,7,10,10,3,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,2,2,-11,-5,-5,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,0,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,26,14,14,10,14,8,10,8,13,7,8,6,9,6,8,7,12,6,6,5,7,5,7,7,12,7,8,7,12,8,11,10,19,10,10,7,11,7,9,8,14,8,9,7,10,7,10,10,18,9,9,7,10,7,9,8,15,9,10,8,14,9,13,13,27,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,14,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,7,10,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,9,11,9,15,10,15,15,43,22,22,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,10,15,9,12,11,19,11,12,9,15,10,14,14,26,14,14,10,15,9,11,10,19,10,11,9,14,9,13,12,22,12,12,9,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,16,10,12,11,19,10,11,8,13,9,12,11,21,11,12,9,14,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,18,11,14,13,23,13,15,13,23,15,22,21,41,22,23,17,27,17,23,21,39,22,26,22,39,26,38,38,61,31,32,22,33,19,23,20,35,19,20,15,24,15,20,19,35,18,18,12,18,11,13,11,20,11,13,11,18,12,16,15,29,15,15,10,15,9,11,10,17,10,11,8,13,9,13,13,24,13,13,9,14,9,12,11,19,11,14,12,20,13,19,19,20,11,11,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,8,7,11,8,11,11,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,16,10,13,11,20,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,21,11,11,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,5,7,7,12,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,26,14,14,10,15,9,12,10,18,10,11,9,15,10,13,12,23,12,12,9,13,8,11,10,17,10,12,10,18,12,17,17,31,16,15,10,15,9,11,10,17,9,10,7,11,8,11,10,19,10,10,7,11,6,7,6,11,6,7,6,10,7,11,11,20,10,10,7,9,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,22,12,12,8,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,11,8,11,10,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,2,2,1,1,1,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,9,6,8,7,12,8,11,11,22 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,6,5,10,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,10,7,10,10,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,7,5,6,6,12 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,3,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,6,5,10,6,6,4,5,4,5,5,9,5,6,5,7,5,8,8,15,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,9,17,9,10,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,16,9,9,6,8,5,6,6,9,5,6,5,7,5,8,7,13,7,8,5,7,5,6,6,11,7,8,7,10,7,11,11,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,8,5,6,5,10,6,7,6,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,4,6,6,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,4,7,5,6,6,12 +2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,5,7,7,12,6,7,5,7,5,6,5,9,6,6,5,8,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,14,22,11,11,8,12,7,8,7,13,7,7,6,8,6,8,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,5,4,5,4,8,5,6,5,7,5,8,8,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-3,-1,0,1,1,1,2,2,1,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,14,7,7,5,7,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,5,10,6,7,5,8,6,9,9,15,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,8,4,4,3,5,4,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,6,5,8,5,6,5,8,6,8,8,24,13,13,9,14,8,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,9,9,6,9,5,6,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,15,8,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,6,5,9,7,10,10,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,23,13,14,10,16,10,13,12,21,12,14,12,20,14,21,21,33,17,17,12,17,10,12,10,19,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,10,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,7,6,11,7,8,6,10,7,11,11,12,7,7,5,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,5,7,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,7,6,10,6,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,4,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,5,8,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,4,3,4,3,3,2,5,3,3,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,4,5,4,7,5,7,7,14 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,8,5,5,4,5,3,3,3,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,-1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,2,2,2,2,10,6,6,4,6,4,4,3,6,3,3,2,4,2,2,2,5,3,3,3,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,6,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,17,9,10,7,10,6,6,5,9,5,6,4,6,4,6,6,12,6,6,5,8,5,5,4,7,5,6,4,6,4,6,6,13,7,6,5,6,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,7,12,6,6,5,8,5,6,6,10,6,6,5,10,7,9,9,18,10,10,8,11,7,10,9,15,9,10,8,15,11,16,16,23,12,12,8,12,7,8,7,13,7,7,5,9,6,7,7,14,7,7,5,7,5,6,5,7,4,4,3,5,4,6,6,12,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,4,4,3,5,4,6,5,8,4,4,3,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,6,4,6,6,10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,16,9,9,7,10,6,8,8,13,8,9,8,13,9,14,14,20,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,7,5,6,4,5,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,9,5,4,3,4,3,3,2,2,2,2,2,2,2,2,3,1,1,2,2,3,2,3,3,4,3,3,3,4,3,5,6,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,3,4,4,8,5,5,5,8,5,7,7,6,3,3,2,3,2,3,2,3,2,1,1,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,6,6,10,6,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,5,5,4,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,11,6,6,5,7,5,6,6,12,7,9,8,13,9,12,12,28,15,15,10,14,8,10,8,14,8,9,7,11,7,9,8,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,20,10,10,7,9,5,6,6,10,6,7,6,9,6,7,7,16,8,8,6,8,5,6,6,10,6,7,6,10,7,9,8,19,10,10,7,11,7,8,6,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,6,11,7,8,6,10,7,10,11,20,11,11,8,13,8,10,9,16,9,10,9,15,10,14,14,29,15,15,11,17,11,14,13,23,13,16,14,24,16,24,24,35,18,18,12,17,10,12,10,18,10,11,9,14,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,19,10,10,7,11,7,8,7,11,6,7,6,10,7,9,9,13,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,14,13,26,14,14,9,13,8,9,7,12,7,8,6,10,6,8,7,11,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,7,7,5,8,6,8,7,13,8,9,8,13,9,12,12,21,11,10,7,10,6,7,6,10,6,6,5,7,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,5,4,5,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,7,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,8,5,6,6,10,7,10,9,17 +1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,10,6,8,7,13,8,9,8,13,9,13,13,19,10,10,7,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10 +2,1,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,9,5,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,9,5,6,4,7,5,6,5,11,6,6,5,6,4,5,5,7,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,13,7,8,6,9,6,7,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,9,8,14,8,10,8,15,10,15,15,22,12,12,8,10,6,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,7,4,5,4,7,4,5,5,12,6,6,4,7,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,6,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,4,3,4,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,2,2,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,9,5,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,7,7,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,7,11,7,8,7,12,8,12,12,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9 +2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,5,4,6,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,13,7,8,6,9,6,7,6,9,5,6,4,6,4,6,6,10,5,5,4,6,4,6,6,11,6,7,6,10,7,11,11,18,10,11,8,12,7,8,7,13,7,8,7,12,8,12,12,23,12,12,9,14,9,12,11,18,10,12,11,19,13,19,19,29,15,15,10,14,8,10,8,13,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,10,6,7,5,8,5,7,6,16,9,9,6,8,5,5,4,9,5,6,5,7,5,8,8,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,3,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,12,7,7,5,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,5,6,5,9,6,9,9,17,9,9,6,8,5,6,5,7,4,5,4,6,4,4,4,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,16 +2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,4,8,5,5,5,8,5,7,7,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,19,10,10,7,9,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,5,4,5,4,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,7,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,4,5,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,11 +3,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,3,4,3,6,3,3,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,4,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,17,9,8,6,9,5,6,5,8,5,5,4,5,4,6,5,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,6,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,7,10,10,16,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,18,12,18,18,26,14,14,9,13,7,8,7,12,7,8,6,8,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,8,5,5,4,8,5,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,5,4,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,6,4,6,5,10,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,3,3,4,4,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,3,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,2,3,3,4,3,3,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,7,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,17,12,18,18,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,3,4,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,3,2,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,4,5,5,9,5,6,5,9,6,8,8,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,9,5,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,8,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,10,9,15,10,15,15,31,16,15,10,14,8,9,8,14,8,8,6,10,7,10,9,17,9,9,7,11,7,8,7,12,7,8,7,11,7,10,9,20,11,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,20,13,19,19,42,21,21,14,20,12,14,12,21,11,12,9,14,9,13,12,22,12,12,9,14,9,11,9,16,9,10,8,14,9,13,12,27,14,14,10,14,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,7,11,8,11,11,21,11,12,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,29,16,17,12,19,11,14,13,24,14,16,13,21,14,20,20,38,20,21,16,25,15,20,18,34,19,22,19,33,23,34,34,49,25,26,18,26,15,17,15,26,14,14,10,16,10,13,12,22,11,11,8,12,7,9,8,14,8,9,7,10,7,10,9,25,13,14,10,14,8,10,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,11,10,18,10,12,9,15,10,14,13,20,10,10,7,9,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,14,8,8,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,16,11,15,15,31,16,16,11,16,10,12,11,19,10,10,7,11,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,8,13,9,12,11,15,8,9,7,10,6,7,6,10,6,7,6,10,7,10,10,18,10,10,8,13,8,10,9,17,10,11,9,15,10,15,15,27,14,14,10,15,9,10,8,14,8,8,6,9,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,5,3,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,5,4,7,5,7,6,11,6,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,7,5,7,8,14,8,8,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,7,8,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,9,8,13,9,14,14,28 +2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,17,9,8,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,11,7,10,10,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,26,14,14,10,14,8,9,8,14,8,8,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,7,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,7,5,7,6,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,15 +2,2,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,6,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,3,5,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,9,9,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,9,5,6,5,6,4,4,4,7,4,5,4,7,5,6,5,12,6,6,4,7,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,7,6,12,7,8,7,11,8,11,11,24,13,13,9,13,8,9,8,12,7,7,6,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,12,9,14,9,12,11,19,11,12,11,18,12,18,19,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,4,3,4,4,9,5,4,3,5,3,4,4,4,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,6,3,3,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,5,6,5,7,5,7,6,9,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,6,4,4,3,3,2,2,2,3,2,3,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,5,8,5,5,3,4,3,3,2,4,3,3,2,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,2,4,3,4,4,6,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,16 +1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,5,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,13,9,14,14,20,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,10,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,5,4,6,6,11 +1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,12,7,7,5,7,4,4,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,6,4,5,5,8,5,7,6,10,7,10,10,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,6,8,7,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,12,8,11,11,19,10,10,8,12,8,10,9,14,8,9,7,12,8,12,12,24,13,14,10,16,10,14,13,23,13,15,12,21,14,21,21,31,16,16,11,16,9,11,9,17,9,10,7,10,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,13,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,5,11,7,8,7,11,8,11,10,20,11,11,8,12,7,9,8,12,7,8,6,9,6,7,7,10,5,5,4,6,4,4,4,8,5,5,4,5,4,5,5,11,6,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,6,6,5,7,4,5,4,8,4,4,3,5,4,5,5,10,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,3,5,4,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,4,3,6,3,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,8,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,17 +0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,5,3,4,4,9,5,5,4,5,4,5,4,5,4,4,4,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,9,8,14,8,9,8,13,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,8,5,5,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,11 +-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,2,2,2,2,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,7,4,5,4,4,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,6,5,6,4,6,5,8,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,7,5,6,5,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,23,12,12,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,11,10,19,11,12,10,18,12,18,18,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,9,5,4,4,5,3,4,3,4,3,4,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,7,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,5,6,6,9,5,6,5,7,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,4,8,5,5,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,13 +-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,10,5,5,4,6,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,5,8,5,5,4,5,3,4,4,4,3,3,3,5,4,5,5,8,5,5,5,8,6,8,8,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,0,-1,-1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,13,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,13,7,8,6,9,6,7,7,13,8,9,8,13,9,13,13,29,15,16,11,16,9,11,9,16,9,9,7,10,6,8,8,14,8,9,7,10,6,8,7,12,7,8,7,11,7,9,9,19,10,10,7,11,7,9,8,14,8,9,7,10,6,8,8,18,10,10,8,13,8,10,10,18,10,12,10,18,12,18,18,41,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,24,13,14,10,15,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,13,8,10,9,16,9,10,8,12,8,10,10,20,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,24,13,13,9,14,9,11,9,16,9,10,8,13,8,11,11,18,10,10,8,12,8,11,10,18,10,12,10,16,11,16,16,30,16,16,12,18,11,14,12,21,12,14,11,19,13,18,17,31,17,18,14,22,14,19,17,32,18,22,18,32,22,32,32,43,22,22,15,22,13,15,13,22,12,12,9,13,9,12,11,22,12,12,8,11,7,8,7,12,7,7,6,10,7,10,9,21,11,11,8,12,7,9,8,13,7,7,6,9,6,9,9,15,8,9,7,10,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,4,3,4,4,7,5,6,6,14,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,10,6,8,8,14,8,9,8,14,10,14,15,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,15,8,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,8,6,8,5,5,5,8,5,6,5,7,5,6,6,13,7,8,6,9,6,7,6,11,7,8,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,14,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,9,7,12,8,10,9,16,9,11,9,16,11,16,16,19,10,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,3,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,7,7,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,7,5,8,5,5,5,8,5,5,4,7,5,6,5,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,8,7,11,8,12,12,24 +-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,9,5,6,4,5,4,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,2,3,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,7,10,11,23,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,14,8,8,6,9,6,7,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,7,6,9,5,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,18,12,18,18,24,12,13,9,12,7,9,7,12,7,7,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,5,8,6,8,9,16,9,9,6,9,6,7,6,9,5,6,4,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,7,5,6,5,10,6,7,6,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,5,4,6,5,9,5,4,3,5,3,3,3,5,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,6,9,6,7,7,13,7,8,7,13,9,12,13,27,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,7,10,6,8,7,11,6,7,6,10,7,9,9,15,8,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,11,6,6,5,9,6,8,8,17,9,9,6,9,6,8,7,10,6,6,5,8,6,8,8,12,7,8,6,8,5,7,7,12,7,8,6,11,8,11,11,20,11,11,8,12,8,10,8,15,9,10,8,12,8,12,12,21,12,13,10,15,9,12,11,22,13,15,13,22,15,22,22,27,14,15,10,14,8,10,8,14,8,8,6,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,10,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,6,4,5,4,8,5,5,4,6,5,7,7,11,6,7,5,8,5,6,6,12,7,8,7,11,7,10,11,13,7,7,5,7,4,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,4,5,4,5,5,9,5,5,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,4,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,5,4,8,5,7,7,14,8,8,5,7,5,6,6,8,5,5,4,7,5,7,7,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,10,11,8,12,8,10,9,18,10,12,10,18,12,18,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,4,6,4,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,2,2,2,1,1,1,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,17,9,10,7,10,6,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,6,6,11,6,6,5,8,6,9,9,15,8,8,6,9,5,5,4,7,4,4,4,6,4,6,6,13,7,7,6,9,6,8,7,13,8,9,8,13,9,14,14,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,11,7,10,10,19,10,10,8,12,7,9,7,12,7,8,6,10,7,10,9,17,10,11,8,13,8,11,11,19,11,13,11,18,13,19,19,39,20,20,14,20,12,14,12,20,11,11,9,14,9,12,12,24,13,13,9,14,8,10,9,17,10,11,9,14,9,13,13,23,12,12,9,13,8,10,9,16,9,10,8,12,8,11,10,20,11,12,9,13,8,10,9,14,8,10,8,13,9,13,12,24,12,12,8,12,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,18,10,12,9,15,10,15,15,30,16,16,12,18,11,13,12,21,12,14,11,18,12,17,17,30,16,18,13,21,13,18,16,32,18,22,18,32,22,32,32,39,20,20,14,20,11,13,11,19,10,11,9,14,9,12,11,22,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,9,9,14,8,9,7,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,9,7,10,6,8,7,11,7,8,7,11,8,11,11,18,9,9,7,10,6,8,7,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,14,8,9,7,10,7,9,8,17,10,12,10,16,11,15,15,17,9,9,6,9,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,6,4,5,5,8,6,8,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,4,4,6,4,5,5,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,7,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,4,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,12,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,6,5,9,6,6,6,9,6,10,10,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,7,9,8,16,9,9,6,9,6,7,6,12,7,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,6,10,6,7,6,9,6,9,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,13,7,7,6,8,6,7,7,12,7,8,6,11,8,11,11,21,11,11,8,12,8,9,8,14,8,9,7,12,8,12,11,21,11,12,9,15,9,12,11,22,12,15,12,22,15,22,22,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,6,4,4,4,7,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,16 +-3,-1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,6,4,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,12,7,8,7,12,7,8,7,11,7,9,9,17,9,10,8,13,9,12,11,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,9,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,38,20,20,14,20,12,14,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,9,8,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,12,6,6,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,7,11,7,8,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,17,9,9,7,10,6,6,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,8,6,8,9,16,9,9,7,10,6,8,7,11,6,7,5,9,6,9,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,6,4,4,4,6,4,4,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,7,9,9,17,9,10,8,13,8,11,10,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,22,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,8,14,8,9,7,11,8,11,11,19,10,11,8,13,8,11,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,20,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,31,18,21,18,32,22,32,32,37,19,19,13,20,11,13,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,11,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,9,16,9,9,7,10,6,7,6,11,6,7,5,9,6,8,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,4,4,3,5,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,23,12,13,9,13,8,9,7,12,7,8,7,11,7,10,9,16,9,10,8,12,8,10,9,15,9,10,8,14,9,13,13,24,12,12,9,13,7,8,7,12,7,7,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,12,23,12,12,9,13,8,10,9,16,9,9,7,12,8,11,11,20,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,27,15,18,15,26,18,26,26,52,27,27,18,26,15,19,16,29,16,17,14,23,15,22,21,40,21,21,15,24,15,19,17,31,17,20,16,28,19,27,27,53,27,27,19,28,16,20,17,30,17,19,15,24,15,21,21,40,21,23,17,26,16,22,21,39,22,26,22,40,27,39,39,76,39,39,27,40,23,28,23,41,22,23,18,29,19,26,24,46,24,24,17,26,16,20,17,31,17,19,15,25,17,24,24,47,24,24,17,25,15,18,15,27,15,17,13,22,15,21,21,40,21,22,16,26,16,22,21,41,23,28,23,40,27,39,39,76,38,38,26,39,23,28,24,44,23,25,19,31,20,27,26,50,26,28,20,31,18,23,21,38,21,24,19,32,21,30,30,59,30,31,22,33,20,26,23,43,23,26,21,35,23,33,32,62,33,35,26,42,26,35,33,63,35,42,35,63,42,62,62,73,37,37,25,37,21,26,22,38,20,22,17,27,17,24,23,45,23,24,17,26,16,20,18,32,18,20,16,28,19,27,27,53,27,27,19,29,17,21,18,31,17,18,14,22,14,18,17,33,17,18,13,21,13,16,15,28,16,19,16,28,19,28,28,55,28,28,19,28,16,20,17,31,17,18,14,22,14,20,19,36,19,19,14,22,14,18,16,29,16,18,14,24,16,23,23,44,23,23,16,25,15,19,16,29,16,18,14,23,15,20,20,38,20,21,15,23,14,19,18,33,18,21,17,30,20,29,28,54,28,28,19,28,16,19,15,26,14,15,11,18,12,16,15,29,15,15,11,17,10,13,12,21,12,13,10,15,10,14,14,27,14,14,10,14,9,11,9,16,9,10,8,12,8,11,11,20,11,11,8,13,8,11,11,21,12,15,13,23,16,23,23,44,22,22,15,22,13,16,14,25,14,15,12,19,12,17,17,32,17,18,13,20,12,15,14,25,14,17,14,23,16,23,23,45,23,23,16,23,14,17,15,26,14,15,12,19,13,18,17,32,17,18,13,20,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,13,12,21,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,8,10,9,17,9,9,6,7,4,5,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,9,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,14,8,10,8,14,8,9,7,11,8,11,11,20,11,11,8,12,7,9,8,14,8,9,8,13,9,12,11,21,11,12,9,14,9,11,10,17,10,11,8,13,9,13,12,23,12,13,10,17,11,14,13,24,13,15,13,22,15,21,21,41,21,22,15,23,13,16,13,23,12,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,22,14,20,20,38,19,19,13,20,11,13,11,20,11,11,9,14,10,14,13,25,13,14,11,17,10,13,12,23,13,16,14,24,16,24,24,46 +-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12,6,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,8,9,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,10,9,15,9,10,8,13,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,16,9,10,8,13,9,13,13,24,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,11,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,30,16,16,12,17,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,19,13,19,11,13,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,9,16,9,10,8,12,8,10,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,19,10,11,8,12,8,10,9,17,10,11,9,15,10,15,15,28,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,12,8,12,8,9,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,5,9,6,6,5,7,5,7,6,12,6,7,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,13,9,12,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,15,9,10,8,12,9,13,13,23,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,12,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,31,16,16,12,18,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,18,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,28,14,14,10,15,9,10,9,16,9,10,8,12,8,10,9,18,10,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,15,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,7,9,6,8,7,11,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,13,9,12,12,24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,12,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,4,3,4,3,4,3,4,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,9,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,8,6,9,6,8,7,14,8,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,12,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,7,5,8,6,7,7,14,8,8,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,26,14,14,10,14,8,10,8,15,8,8,6,10,7,9,9,16,8,9,6,9,6,7,6,10,6,7,6,8,6,9,9,16,8,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,9,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,18,10,10,8,11,7,9,8,13,8,9,7,12,8,11,11,21,11,11,8,12,8,9,8,15,8,10,8,12,8,12,12,21,11,12,9,15,9,12,12,21,12,15,12,22,15,21,21,25,13,12,8,12,7,8,8,13,7,8,6,10,6,8,8,16,8,9,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,6,8,6,7,6,12,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,6,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,4,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,11,7,10,10,13,7,7,5,7,4,5,4,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,9,5,6,5,9,6,8,8,16 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,18,9,9,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,26,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,21,11,12,9,13,8,11,10,17,10,11,9,15,10,14,14,28,15,15,11,16,9,11,10,15,9,10,8,12,8,12,12,22,12,13,9,14,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,12,14,12,22,12,12,9,15,10,13,12,23,12,13,9,14,9,11,9,15,8,9,7,12,8,12,12,23,12,13,9,13,8,9,8,15,9,10,8,12,8,12,11,21,11,12,9,14,9,12,12,21,12,14,12,20,14,20,20,37,19,20,14,20,12,15,13,21,11,12,10,16,11,15,14,27,14,14,10,16,10,12,11,20,11,12,10,17,11,16,16,32,17,17,12,18,11,14,12,22,12,14,11,18,12,18,17,30,16,18,13,21,13,18,17,31,18,21,18,32,21,31,31,37,19,18,12,18,11,13,11,19,11,12,9,14,9,12,11,23,12,12,9,14,8,10,9,16,9,11,9,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,11,7,10,9,18,10,10,7,11,7,8,8,15,9,10,9,16,11,15,15,27,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,22,12,12,9,13,8,9,8,13,7,8,6,10,7,10,10,19,10,11,8,12,8,10,9,17,9,10,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,9,7,10,6,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,5,7,7,10,6,7,5,8,5,7,7,10,6,7,7,12,9,13,13,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,9,17,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,10,10,16,9,10,7,11,7,9,8,15,9,10,9,16,11,15,15,19,10,10,7,10,6,7,6,12,7,7,5,7,5,6,5,10,5,5,4,6,4,5,5,7,5,6,5,8,5,7,6,9,5,5,4,5,3,4,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,5,5,4,6,4,5,4,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,14,7,7,5,8,6,8,7,11,6,7,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,7,7,5,8,5,6,6,13,8,9,7,12,8,12,12,24 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,11,6,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,7,6,9,6,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,7,12,8,12,12,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,8,16,8,8,6,9,6,7,6,12,7,7,6,10,6,9,9,18,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,21,11,10,7,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,7,9,5,6,5,9,5,5,4,7,4,6,5,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,9,6,6,6,10,7,9,9,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,-2,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,4,2,2,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,13,7,6,4,7,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,6,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,8,16,9,9,7,9,5,6,6,11,6,6,5,9,6,8,9,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,15,8,8,6,10,7,9,9,15,9,10,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,19,10,10,7,11,7,9,8,14,8,8,7,11,7,10,10,21,11,12,8,12,8,10,9,14,8,9,7,12,8,12,12,20,11,12,9,14,9,12,12,21,12,14,12,22,15,21,21,25,13,12,8,13,8,10,8,13,7,8,6,9,6,8,8,16,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,11,6,7,6,11,6,6,5,8,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,9,7,10,10,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,8,6,8,5,6,6,11,7,8,7,12,8,11,11,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,4,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,16 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,7,4,6,6,11,6,7,5,7,4,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,5,5,9,5,6,5,8,5,7,8,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,13,7,7,6,9,6,8,7,13,8,9,8,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,6,9,6,8,7,12,7,7,6,9,6,8,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,4,4,4,5,4,5,5,10,6,6,4,7,4,5,5,9,6,6,5,8,6,8,8,18,9,9,7,10,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,-2,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,6,5,7,5,6,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,7,7,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,7,4,5,4,6,4,4,4,6,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,18,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,8,6,10,6,8,8,14,8,9,7,12,8,12,12,25,13,13,10,15,9,11,10,17,9,10,7,11,7,9,9,19,10,11,8,13,8,10,9,16,9,11,9,16,11,15,15,28,14,14,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,12,9,15,9,12,11,20,11,13,11,19,13,20,20,38,19,19,13,20,12,14,12,20,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,12,12,8,12,7,9,8,15,8,9,7,11,7,10,10,24,13,14,11,17,11,14,13,23,13,15,12,21,14,21,20,38,19,19,13,20,12,15,13,22,12,14,11,17,11,15,14,29,15,16,11,16,10,13,11,20,11,12,9,15,10,14,14,32,17,18,13,19,11,13,11,20,11,13,11,18,12,17,17,29,16,17,13,20,13,18,17,32,18,21,18,31,21,30,30,35,18,18,12,18,11,13,11,20,11,12,9,15,9,12,11,24,13,13,9,13,8,10,8,14,8,9,8,13,9,12,12,30,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,10,14,8,9,8,14,8,9,7,10,7,10,10,16,9,9,7,11,7,9,8,13,8,9,7,12,8,11,11,20,10,10,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,12,7,9,8,15,9,10,8,14,10,15,15,31,16,16,11,17,10,12,10,17,9,10,8,12,7,9,9,16,9,9,7,11,7,8,7,12,7,8,6,10,7,9,8,13,7,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,9,8,14,8,9,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,24,13,14,10,15,9,10,9,16,9,10,8,12,8,10,9,19,10,11,8,12,8,11,10,18,10,12,10,17,11,16,16,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,8,5,6,5,8,5,7,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,5,5,9,5,4,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,7,7,12,7,8,7,11,8,11,12,24,13,13,9,14,8,10,8,14,8,8,6,9,6,9,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,11,11,22,12,12,8,11,7,8,8,14,8,9,7,11,7,9,9,14,8,8,6,9,6,7,6,11,7,9,8,13,9,13,13,25 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,20,10,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,20,10,11,8,11,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,17,9,10,7,10,6,7,6,11,6,7,6,10,7,9,9,15,8,9,7,11,7,10,9,17,10,11,10,17,11,16,16,18,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,6,9,9,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,7,5,7,7,13 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,5,6,6,10,6,6,5,6,4,6,5,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,7,5,6,6,9,5,6,4,7,5,6,6,14,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,21,11,12,8,11,7,8,7,12,7,7,6,9,6,8,8,16,9,9,6,9,6,7,6,11,6,7,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,6,10,7,10,10,16,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,19,10,10,7,10,6,7,7,12,6,6,5,8,5,6,6,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,17,9,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,6,9,5,6,5,8,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,5,4,6,6,9,5,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,5,7,5,8,8,13,7,8,6,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,4,6,4,6,7,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,13,7,7,5,6,4,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,14 +-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,8,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,4,5,5,7,4,5,4,5,4,5,5,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,15,8,9,6,9,5,6,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,7,7,14,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,4,3,5,5,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,4,3,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,9,7,10,6,8,8,15,9,10,8,14,10,14,14,26,13,13,9,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,6,8,5,6,6,9,5,6,5,8,6,8,9,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,17,9,9,7,11,7,9,9,15,9,10,9,16,11,15,15,24,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,19,10,10,7,10,6,7,7,13,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,7,11,7,10,10,20,11,12,9,13,9,12,11,22,13,15,13,22,15,21,21,23,12,12,9,13,8,9,8,13,7,8,6,8,6,8,7,15,8,8,6,8,5,6,6,9,5,6,5,8,6,9,9,22,12,12,8,12,7,9,7,10,6,7,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,5,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,16,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,7,7,14,8,10,8,14,9,12,12,13,7,8,6,8,5,5,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,5,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,5,8,5,6,6,8,5,5,5,8,6,8,8,18,9,9,7,10,6,6,5,11,6,6,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,5,4,7,5,7,6,10,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,17 +-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,9,6,6,6,10,7,10,10,15,8,8,6,9,6,7,6,10,6,6,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,6,4,7,5,7,7,13,7,7,5,8,5,5,5,9,5,5,4,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,14,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,13,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,14,9,13,13,20,11,11,8,12,7,9,8,13,7,8,6,9,6,9,9,16,9,9,6,9,5,6,6,11,7,8,6,9,6,9,9,17,9,9,7,10,6,7,6,12,7,7,6,9,6,9,9,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,18,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,5,7,7,18,10,10,7,10,6,8,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,10,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,5,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,15 +-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,13,9,12,12,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,17,17,18,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,9,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,10,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,6,14,8,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,14 +-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,17,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,15,8,7,5,7,4,4,4,6,3,3,3,4,3,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,7,6,11,7,10,10,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,23,12,13,9,14,8,10,9,15,9,10,8,14,9,13,12,22,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,22,13,15,13,22,12,13,10,15,9,12,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,12,12,21,11,11,8,13,8,9,8,14,8,9,8,14,9,13,13,24,13,14,11,17,11,14,13,24,14,16,13,23,16,23,22,36,19,19,13,20,12,14,12,21,12,13,10,16,11,15,15,28,15,15,11,16,10,12,11,21,12,13,10,17,11,16,16,29,15,15,11,16,10,13,11,20,11,13,10,17,11,15,15,28,15,17,13,20,13,17,17,32,18,22,18,32,22,32,32,35,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,7,9,8,15,9,10,8,12,8,12,12,31,16,17,12,18,10,12,11,19,10,11,8,13,9,12,11,20,11,11,8,12,8,10,9,17,10,12,10,16,10,14,14,23,12,12,9,14,8,9,8,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,31,16,16,11,16,9,10,8,13,7,8,6,9,6,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,17,9,9,7,11,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,13,9,13,13,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,6,10,7,10,10,28,14,14,10,14,8,10,8,14,8,10,8,13,8,11,11,20,11,12,9,13,8,10,10,18,11,13,11,18,12,18,18,19,10,10,7,10,6,7,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,4,7,7,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,8,5,6,5,7,5,8,8,9,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,9,7,12,7,7,6,10,7,9,8,14,8,9,7,11,7,9,8,14,8,9,8,14,10,14,14,27 +-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,17,17,18,9,9,7,10,6,6,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,6,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,7,4,6,6,11,6,7,5,7,5,6,6,9,6,7,6,9,7,10,10,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,10,6,6,4,5,3,4,3,4,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,12,7,8,6,9,6,7,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,6,9,6,7,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,16,9,10,8,12,8,10,10,16,10,12,10,17,12,18,18,18,9,9,7,10,6,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,17,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,9,5,6,5,9,7,10,10,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,5,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,12,7,7,5,6,4,4,4,5,3,3,2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,8,8,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,5,10,5,5,4,5,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,5,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,8,5,7,7,13,8,9,7,12,8,12,12,26,13,13,9,13,8,9,8,12,7,8,6,9,6,7,7,13,7,7,5,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,6,8,7,13,8,9,7,12,8,12,12,21,11,10,7,10,6,7,6,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,12,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,18,10,10,8,13,8,11,10,17,10,12,10,18,13,19,19,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,7,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,5,5,9,5,6,5,8,5,7,7,18,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,6,5,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,14,8,8,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,10,6,7,6,10,8,12,12,12,6,6,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,2,2,2,2,3,3,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,7,12,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,17 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,8,5,5,4,5,4,5,4,8,5,6,5,7,5,7,7,16,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,8,5,7,6,10,6,7,6,11,8,11,11,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,5,4,6,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,5,9,5,6,5,7,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,21,11,11,8,10,6,8,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,7,6,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,13,7,8,6,10,6,8,8,13,8,9,8,13,9,14,14,15,8,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,5,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,5,8,5,5,4,7,5,6,5,8,5,6,5,8,6,9,9,9,5,4,3,5,3,3,3,5,3,2,2,3,2,2,2,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,7,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,5,3,3,2,2,2,3,3,4,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,3,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,4,6,4,4,4,7,5,8,8,17,9,9,6,9,6,7,6,9,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,8,8,14,8,10,9,15,10,15,15,34,18,18,12,17,10,11,9,16,9,9,7,10,7,9,9,15,8,9,7,10,6,8,8,14,8,9,7,11,8,11,11,18,9,9,6,9,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,28,14,14,10,15,9,10,8,14,8,10,8,13,8,11,11,18,10,10,8,13,8,10,9,16,9,11,9,15,10,13,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,10,21,11,12,10,16,10,13,12,22,12,14,12,21,15,22,22,25,13,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,8,5,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,15,8,9,7,10,6,8,7,12,7,7,6,10,7,10,9,12,7,7,5,7,5,6,5,8,5,5,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,6,7,6,10,6,6,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,7,5,8,5,6,5,8,5,6,5,9,6,9,9,17,9,9,7,11,7,8,7,12,7,8,6,9,5,6,6,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,5,6,6,10,6,7,5,8,6,8,8,13,7,8,7,11,7,9,8,15,9,10,8,14,10,15,15,16,8,8,6,8,5,6,5,7,4,4,4,6,4,5,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,5,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,3,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,5,5,9,6,8,8,17,9,9,6,8,5,7,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22 +-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,7,4,4,3,4,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,6,4,7,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,12,6,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,8,7,5,7,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,3,4,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,5,8,5,6,6,10,7,10,9,22,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,14,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,7,4,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,5,4,6,4,4,3,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,7,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11 +-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,2,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,11,6,5,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,14,8,9,7,10,6,8,7,14,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,17,9,8,6,8,5,6,6,12,7,7,6,10,7,9,9,16,9,9,7,10,6,7,6,13,8,10,8,14,10,14,13,24,13,13,9,14,8,10,8,12,7,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,8,7,13,8,9,7,11,7,9,9,17,9,10,8,12,8,11,10,19,11,13,11,18,12,18,18,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,9,6,7,6,9,6,9,9,15,8,8,6,10,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,7,11,6,6,5,8,6,8,7,13,8,10,8,14,10,14,14,17,9,9,6,9,5,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,8,6,9,5,6,5,8,4,4,3,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,18 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,7,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,20,10,11,8,10,6,7,6,9,5,6,5,7,4,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,12,6,7,5,8,5,7,7,13,8,9,7,12,8,12,12,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,11,6,6,5,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,4,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,3,3,4,4,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,5,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,29,15,15,10,14,8,10,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,10,6,6,6,10,6,8,8,16,8,8,6,8,5,7,6,11,6,7,5,9,6,9,8,16,9,9,6,10,6,7,7,12,7,8,7,12,8,12,12,22,12,12,8,13,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,11,7,10,9,17,9,10,7,11,7,10,9,18,10,12,10,17,12,17,17,24,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,14,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,5,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,4,6,6,9,5,6,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,28,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,9,6,6,6,9,6,8,8,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,10,6,7,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,5,4,5,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,8,5,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,14,10,14,14,16,8,9,6,9,5,6,5,8,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,6,6,9,6,9,9,17 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,2,2,3,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,9,5,6,5,7,5,8,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,-3,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,18,9,9,7,10,6,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,20,11,13,11,20,13,19,19,55,28,28,19,28,16,19,16,28,15,16,12,20,13,18,17,33,17,18,12,18,11,14,12,22,12,14,11,17,11,16,16,30,16,16,11,17,10,12,11,20,11,12,9,15,10,13,12,23,12,13,10,15,9,12,11,21,12,14,12,22,15,22,22,41,21,22,15,22,13,15,13,23,12,13,10,16,10,12,11,21,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,37,19,19,13,19,12,15,13,23,13,15,12,21,14,20,20,38,20,21,15,24,15,19,18,34,19,23,19,33,22,33,32,45,23,23,16,25,14,17,14,25,14,15,11,17,10,13,12,23,12,12,8,12,7,9,8,15,9,10,9,15,10,14,14,27,14,13,9,13,8,9,8,13,7,7,6,9,6,9,8,15,8,9,6,9,5,6,5,9,5,6,5,9,6,8,8,16,8,8,5,7,4,5,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,6,10,7,10,10,30,15,15,11,16,10,12,10,17,9,9,7,11,7,9,9,17,9,9,6,8,5,6,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,10,9,15,10,14,14,25,13,14,10,14,8,9,8,14,8,9,8,13,8,11,11,20,11,12,9,14,8,10,9,17,9,10,8,14,10,14,14,26,14,14,10,14,9,12,11,19,11,12,10,16,11,15,15,28,15,16,12,19,12,16,16,30,17,20,16,28,19,28,27,31,16,16,11,15,9,11,10,17,10,11,8,13,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,7,9,8,15,8,7,5,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,6,6,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,15,8,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,5,5,8,5,7,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,7,11,7,9,8,15,8,9,8,13,9,12,12,25,13,13,9,12,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,16,9,9,6,9,6,8,8,14,8,9,7,12,8,11,10,18,10,11,8,13,8,10,9,16,10,12,10,18,12,18,17,33 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,5,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,9,17,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,6,6,11,7,8,7,11,8,11,12,21,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,23,12,12,9,13,8,9,8,13,7,8,6,9,6,7,6,12,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,9,5,6,4,5,4,5,5,7,4,5,4,7,5,6,6,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,10,18,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,12,20,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,24,12,12,9,14,8,10,8,13,7,8,6,9,6,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,8,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,4,8,5,5,4,6,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,2,4,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,13,8,9,7,12,8,12,12,16,9,9,6,10,6,7,6,9,5,6,4,6,4,5,4,8,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,5,5,8,4,4,3,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,13 +-2,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,-1,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,7,4,5,4,5,4,5,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,7,4,5,5,11,6,7,6,10,7,10,10,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,6,7,6,11,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,8,12,7,9,8,13,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,11,18,12,18,18,24,13,13,9,14,8,10,8,14,8,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,5,5,8,5,7,7,15,8,8,5,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,5,5,8,6,9,9,13,7,7,5,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,13,7,7,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,10,7,9,9,15,9,11,9,16,11,16,16,16,9,9,6,8,5,6,6,10,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,7,6,10,7,10,10,19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,4,3,5,4,5,6,8,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,11 +-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,2,2,2,3,4,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,4,3,3,3,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,5,3,4,5,6,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,22,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,7,11,7,8,8,14,8,9,8,13,9,13,13,17,9,9,7,9,5,6,6,9,5,5,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,3,6,4,6,5,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,10,5,5,4,5,3,4,3,5,3,4,3,6,4,5,5,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,4,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14 +-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,10,6,6,4,7,4,5,5,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,7,7,12,7,7,5,6,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,5,4,4,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,1,1,2,1,1,1,2,1,1,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,3,6,4,6,5,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,4,3,5,4,5,4,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,7,8,4,4,3,5,4,5,5,10,6,7,7,12,8,12,11,34,18,18,12,17,10,12,10,18,10,11,8,13,8,10,9,22,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,14,8,8,6,10,6,7,6,11,6,7,6,9,6,8,7,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,6,13,7,8,6,10,6,8,7,12,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,23,13,14,10,16,10,13,12,22,13,15,12,20,14,20,20,26,14,14,10,15,9,10,8,14,8,9,7,10,6,8,7,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,15,8,8,6,9,5,6,5,7,4,5,4,5,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,10,16,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,9,5,6,5,8,5,7,6,10,6,6,5,9,7,10,10,15,8,8,6,8,5,7,6,10,6,6,5,9,6,9,8,19,10,11,8,13,8,10,9,16,10,12,10,17,12,18,18,17,9,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,5,10,6,7,5,8,5,6,6,11,7,8,7,12,8,11,11,21 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,7,5,7,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,4,4,6,4,4,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,11,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12 +-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,20,11,11,7,10,6,7,6,10,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,6,4,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,8,6,8,8,13,7,8,6,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,16,8,8,6,9,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,5,12,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,5,3,4,4,5,3,3,3,5,3,4,3,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,13 +0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,12,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,5,4,9,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,6,10 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,4,6,5,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,2,1,1,1,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,5,3,3,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,11,6,5,4,5,3,3,3,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,10,6,7,6,10,7,10,9,24,12,12,9,13,8,9,8,13,7,8,6,10,7,9,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,15,8,9,6,9,6,7,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,7,8,6,10,7,9,9,15,8,9,7,10,6,7,6,12,7,9,7,12,8,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,20,10,10,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,6,4,4,3,5,4,5,5,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,5,10,6,7,6,9,6,7,7,14,8,8,6,9,6,8,7,11,7,8,7,12,9,13,13,14,7,7,5,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,9,9,17 +0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,6,7,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,4,5,9,6,7,6,9,6,8,8,21,11,12,8,12,7,9,7,12,7,8,6,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,9,13,7,8,6,9,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,12,8,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,8,5,8,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,9,6,7,6,10,6,7,6,11,8,12,12,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16 +-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,16,9,10,7,11,7,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16 +-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,7,5,8,8,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,6,4,6,6,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,3,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,1,1,1,0,0,0,1,1,1,2,2,2,1,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,16,9,9,6,8,5,7,6,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,5,9,5,6,4,6,4,6,6,12,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,39,20,21,14,21,12,15,12,21,11,12,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,15,10,14,14,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,23,12,13,10,15,9,11,10,19,11,12,10,17,11,16,16,31,16,17,13,21,13,17,15,27,15,18,15,27,18,27,28,32,17,17,12,17,10,12,10,18,10,10,7,11,7,9,8,15,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,7,4,4,3,3,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,5,5,11,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,13,7,8,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,6,4,4,4,7,5,6,6,13,7,7,5,7,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,7,14,8,10,8,13,8,11,11,24,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,22,12,13,10,16,10,14,13,23,13,15,12,21,14,21,21,21,11,11,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,6,4,5,3,3,3,5,3,4,3,5,4,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,6,7,7,4,4,3,4,2,2,2,2,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,1,6,4,4,3,3,2,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,2,2,3,3,5,3,3,2,3,3,4,4,7,5,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,15,15,30 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,6,8,5,6,6,10,6,6,5,8,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,4,4,8,5,6,6,9,6,9,9,13,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,14,8,10,8,14,10,14,15,17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,6,8,7,12,7,8,7,11,8,11,11,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,4,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,8,8,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,4,3,4,4,6,4,5,4,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,6,4,6,4,4,4,9,5,6,6,10,7,10,9,14,7,7,5,9,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,15,9,10,8,15,10,15,16,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,8,5,7,7,8,4,4,3,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,5,4,8,5,6,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,12,6,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,16 +0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,7,5,6,6,15,8,9,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,7,4,5,5,8,5,7,7,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,7,6,11,7,8,6,11,8,11,12,14,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,6,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,11 +-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,6,5,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,7,4,4,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,4,10,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,6,10,7,10,9,24,13,13,9,14,8,9,8,12,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,5,9,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,11,7,8,7,12,8,11,11,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,17,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,4,3,7,4,4,3,5,4,5,4,7,4,4,4,6,4,5,4,9,5,6,5,9,6,9,8,14,7,7,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,7,10,6,8,8,14,8,9,7,12,9,13,14,12,7,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,6,3,3,2,3,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,8,5,5,4,7,5,6,6,8,5,6,5,9,6,9,9,17 +0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,9,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,7,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,4,4,6,4,6,6,10 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,4,3,4,3,5,4,5,4,6,3,3,2,4,3,4,4,7,4,4,4,7,5,8,7,19,10,11,8,11,7,8,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,13,9,14,14,18,10,10,7,10,6,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,7,6,11,7,8,7,10,7,11,11,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,6,5,7,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,14,8,9,7,10,6,8,8,14,8,9,8,12,9,13,13,17,9,9,6,9,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12 +-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,2,3,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,3,2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,10,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,5,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,9,5,6,5,7,5,6,5,9,6,7,6,9,7,10,10,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,8,14,8,9,7,12,8,12,11,18,9,9,6,9,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,13,13,26,14,14,10,16,10,12,10,18,10,12,9,15,10,13,13,26,14,16,12,19,12,16,14,26,14,16,13,23,16,24,24,32,16,16,11,16,9,11,9,16,9,10,8,12,7,9,9,16,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,6,4,4,4,6,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,5,5,4,6,4,6,6,10,6,8,7,12,8,11,11,20,11,11,8,12,7,9,7,12,7,8,7,11,7,10,10,22,12,13,10,15,9,12,10,18,10,12,10,18,13,19,19,17,9,9,6,8,5,7,6,10,6,6,5,7,4,5,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,2,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,23 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,19,10,9,6,9,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,8,10,8,13,9,14,14,18,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,7,5,7,7,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,6,9,6,7,6,10,6,7,6,11,8,11,11,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,7,5,7,7,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,7,5,8,8,13,7,7,5,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,7,13,7,8,5,7,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,6,9,5,6,5,10,7,10,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,16,11,16,16,21,11,11,8,11,7,8,7,11,6,6,5,9,6,8,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,3,2,2,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,7,6,12,7,8,7,13,9,12,13,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,7,5,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,18,10,10,7,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,11,8,10,11,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,2,2,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,8,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,6,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,6,6,9,6,7,6,10,7,10,10,31,16,16,11,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,9,6,7,6,13,7,8,6,10,7,10,10,18,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,6,9,6,8,7,11,7,8,6,10,7,10,10,19,10,10,7,11,7,9,8,12,7,8,6,9,6,8,8,15,8,9,7,10,7,9,8,12,7,9,8,13,9,13,13,24,13,13,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,10,16,10,13,13,25,14,17,14,24,16,24,23,32,16,16,11,16,9,11,10,16,9,9,7,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,6,10,7,10,10,18,9,9,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,10,7,10,10,18,10,11,8,12,7,9,9,18,11,13,11,19,13,19,19,16,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,5,5,9,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22 +-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,9,5,6,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,16,9,9,6,10,6,7,7,11,6,7,6,10,6,9,9,17,9,10,7,11,7,9,9,17,10,11,9,16,11,16,16,22,11,11,8,11,7,8,7,11,6,7,5,8,6,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,12,7,7,6,8,5,7,6,12,7,9,8,13,9,13,13,11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,1,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,6,9,7,10,10,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,13,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,11,7,8,7,11,8,12,12,23 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,14,8,8,5,7,4,5,4,8,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,8,7,11,8,12,12,23 +-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,5,4,6,7,14,8,8,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,14,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,6,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,9,6,8,8,16,9,9,7,12,7,9,9,16,9,10,8,14,9,13,12,23,12,13,10,15,9,12,12,22,12,14,11,19,13,18,18,62,31,31,21,31,18,22,19,33,17,18,14,22,14,18,17,32,17,18,13,20,12,16,14,26,15,17,13,22,15,22,22,43,22,23,16,24,14,17,15,26,14,16,12,19,12,16,16,30,16,16,12,18,11,14,13,23,13,15,13,22,14,20,20,38,20,20,14,20,12,14,13,23,12,13,10,17,11,14,13,24,13,13,10,16,10,12,11,20,11,13,11,19,13,19,18,35,18,19,13,19,12,15,13,24,14,16,13,21,14,20,20,40,22,24,18,30,19,25,24,45,26,31,26,45,30,45,45,65,33,32,22,32,18,21,18,32,17,18,13,21,13,17,16,31,16,17,12,17,10,13,12,21,11,12,9,15,10,13,13,25,13,12,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,8,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,11,13,11,19,12,17,17,32,16,16,11,15,9,10,9,15,8,9,7,11,7,9,8,15,8,8,6,10,6,7,6,11,7,8,7,12,9,13,13,24,13,13,9,14,9,12,11,19,11,12,9,15,10,14,14,27,15,17,13,21,13,18,17,32,19,23,19,34,23,35,35,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,6,6,11,7,8,6,10,7,10,10,18,9,9,6,9,5,5,4,5,3,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-3,-1,-1,0,0,1,1,1,0,1,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,4,5,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,13,7,8,7,11,8,11,10,19,11,12,9,14,9,11,10,19,11,13,12,21,15,22,22,44 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,32,16,16,11,16,10,12,10,17,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,11,13,10,16,10,13,12,23,13,16,13,23,16,23,23,33,17,17,11,16,9,11,9,17,9,10,7,11,7,9,9,16,8,9,6,9,6,7,6,11,6,7,5,8,6,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,7,13,7,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,11,7,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,12,12,23 +-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,5,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,10,32,17,17,11,16,10,12,10,16,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,10,8,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,7,10,7,10,10,20,11,13,10,16,10,14,13,22,13,16,13,23,15,22,23,33,17,17,11,16,9,11,9,17,9,10,8,12,8,10,9,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,2,2,3,5,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,5,3,4,4,5,4,5,5,10,6,6,4,7,4,5,4,7,4,5,4,6,4,6,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,9,5,6,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,12,8,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,9,6,7,6,11,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,3,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,22,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,9,7,11,7,9,9,15,9,11,9,15,10,15,15,23,12,12,8,11,6,8,6,12,6,7,6,8,6,7,7,10,6,6,4,6,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,6,4,4,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,8,6,7,6,11,7,8,7,11,8,12,12,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,2,4,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,5,4,8,6,8,8,16 +-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,2,2,4,3,5,5,7,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,9,5,5,3,4,3,4,4,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,13,7,6,4,6,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,32,16,16,11,16,10,12,10,16,9,10,8,12,8,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,9,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,12,8,11,11,20,11,11,8,12,7,9,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,11,8,11,7,8,7,14,8,9,7,10,7,10,11,20,11,13,10,16,10,14,13,22,13,15,13,22,15,23,23,35,18,18,12,16,9,11,9,17,9,10,8,12,8,11,10,15,8,8,6,9,6,7,7,11,6,6,5,7,5,7,7,12,7,7,5,6,4,5,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,7,5,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,10,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,5,7,7,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,9,10,8,12,8,10,9,16,9,11,9,16,11,17,17,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,7,5,7,5,7,6,9,6,7,6,11,8,12,12,24 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,4,5,4,7,5,7,7,14 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,2,2,4,3,3,2,3,2,2,2,2,2,2,3,7,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,22,12,12,8,11,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,7,10,7,10,9,16,9,10,9,15,11,16,16,24,12,12,8,11,6,7,6,12,7,8,6,9,6,8,7,11,6,6,4,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,2,1,0,0,1,1,1,1,2,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,7,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,12,7,8,6,8,5,7,7,12,7,8,7,11,8,12,12,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,5,5,6,4,6,5,8,6,8,9,17 +-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,19,10,10,7,9,6,7,6,10,6,7,5,8,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,14,7,7,5,8,5,5,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,6,8,6,8,8,14,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,8,14 +-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,4,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,33,17,17,12,17,10,12,10,18,10,11,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,8,7,11,8,11,11,19,11,12,9,14,9,13,13,24,14,16,13,23,16,23,23,35,18,17,12,17,10,12,10,16,9,10,8,13,8,11,11,16,9,9,6,9,6,7,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,6,4,5,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,8,8,18,10,11,8,12,8,11,10,18,10,12,10,17,12,17,17,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,3,3,6,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,8,5,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,8,7,11,8,12,13,25 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,13,8,9,8,13,9,12,12,19,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,5,7,7,13 +-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,4,3,4,3,6,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,20,10,10,7,11,6,7,6,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,4,3,5,4,6,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,13,7,8,5,7,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,8,14,8,9,8,14,9,13,13,21,11,11,8,10,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,5,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,8,5,6,6,11,6,7,6,11,7,10,10,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,4,5,4,6,5,7,7,14 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,5,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,4,3,5,4,6,6,10 +-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,4,4,6,4,6,6,7,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,9,5,6,5,8,5,6,6,9,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,13,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,5,5,10,5,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,7,6,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,8,16,9,11,9,16,11,16,16,27,14,14,10,14,8,8,7,13,7,8,6,10,6,8,8,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,11,6,6,4,4,3,4,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,6,6,14,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,5,3,4,4,6,4,5,5,8,6,9,9,16 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,11,6,6,4,5,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,5,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,3,3,5,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,5,3,3,3,4,2,3,3,4,3,3,3,5,4,6,6,10 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,3,2,2,2,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,24,12,12,9,13,8,9,8,12,7,8,6,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,15,8,8,5,7,5,6,5,8,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,13,9,14,14,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,13,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,4,7,5,7,7,13 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,8,7,12,8,13,13,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,5,3,4,4,7,5,7,7,12 +-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,1,1,2,2,3,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,6,4,5,5,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,16,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,9,6,9,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,10,6,7,5,8,5,6,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,8,15,9,11,9,15,10,15,16,44,23,23,16,24,14,17,14,24,13,14,11,17,11,14,13,24,13,13,9,12,7,9,8,13,7,8,7,12,8,11,11,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,27,14,13,9,13,8,9,8,13,7,7,6,9,6,8,8,15,8,8,6,8,5,7,7,12,7,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,8,7,12,8,10,10,18,10,10,8,12,8,11,11,20,12,14,12,21,15,22,23,41,21,21,14,21,13,16,14,24,13,14,10,15,10,13,12,22,12,12,8,11,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,11,6,5,4,5,3,3,3,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,7,6,11,6,7,6,11,7,10,10,14,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,22,11,11,8,12,7,9,8,13,7,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,11,7,10,10,17,9,10,8,12,7,9,9,16,9,10,8,14,9,12,12,22,12,12,9,14,9,12,11,21,12,13,11,18,12,18,18,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,7,7,5,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,4,3,4,3,-2,0,0,1,1,1,2,2,4,3,4,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,16,8,8,6,9,6,7,6,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,13,7,8,6,8,6,7,7,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,4,3,5,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,4,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,6,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,13,13,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,4,4,3,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,17,9,9,6,9,6,7,6,10,6,6,5,7,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,4,5,4,7,5,8,8,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8 +-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,3,4,3,4,3,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,26,13,13,9,14,8,9,8,15,8,8,6,10,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,7,7,11,7,9,8,13,9,14,14,27,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,14,7,7,5,8,5,7,6,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,8,5,6,5,7,5,7,6,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,8,5,5,3,4,3,4,3,5,3,3,3,5,4,5,5,12,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,8,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,12,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,7,5,8,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,5,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,1,0,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,2,2,1,1,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,3,4,3,4,4,7 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,1,1,1,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,21,11,10,7,10,6,7,6,12,6,6,5,8,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,13,7,8,6,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,4,6,4,6,6,10,6,7,6,11,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,6,6,5,7,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,3,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,9 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,7,6,10,6,6,4,7,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,19,10,11,7,11,6,8,7,11,6,7,6,8,6,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,8,5,5,4,5,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8 +-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,0,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,3,3,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,4,6,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,10,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,10,9,15,10,14,14,36,18,18,12,18,10,12,10,18,10,11,8,12,8,10,9,17,9,9,6,9,6,7,7,12,7,9,7,12,8,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,8,21,11,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,7,5,7,5,6,5,8,5,6,5,8,6,8,9,13,7,8,6,9,6,7,6,10,6,7,5,8,6,8,8,16,9,10,7,11,7,10,9,16,9,11,10,17,12,19,19,35,18,18,13,20,12,14,12,21,12,13,10,15,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,10,6,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,8,4,4,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,7,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,16,9,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,10,15,15,15,8,8,5,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,4,3,4,2,2,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,-2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,7,6,9,6,8,8,15 +-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,6,8,8,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,4,4,4,5,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,6,5,9,5,6,6,10,7,11,11,20,10,10,8,11,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9 +-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,9,5,6,4,5,3,4,3,5,3,3,3,4,3,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,9,5,6,6,9,6,9,9,23,12,12,8,11,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,6,4,7,5,6,5,10,6,6,5,9,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,10 +-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,5,7,5,8,8,19,10,10,7,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8 +-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,4,4,6,5,7,7,9,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,7,14,8,9,7,12,9,13,13,32,16,16,11,16,9,10,9,16,9,10,8,12,8,10,9,17,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,20,10,10,7,11,7,8,7,10,6,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,7,17,9,10,7,10,6,8,7,9,5,6,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,5,7,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,9,15,9,11,9,16,11,16,16,33,17,17,12,18,10,12,11,19,10,11,9,14,9,11,10,19,10,10,7,10,6,7,7,10,6,7,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,5,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,5,7,7,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,17,9,9,6,9,5,6,5,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,13 +-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,5,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,9,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,6,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,5,4,6,4,6,5,9,6,7,6,10,7,10,10,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,5,5,7,5,8,8,10,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,13,7,8,7,13,9,12,12,30,16,16,11,15,9,11,9,15,9,10,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,6,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,7,15,8,8,6,8,5,6,6,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,7,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,15,9,10,9,15,10,15,15,32,17,17,12,18,10,12,10,17,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,8,7,13,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,13,9,12,12,29,15,16,11,15,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,6,9,6,9,8,15,9,10,9,15,10,15,15,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,18,9,9,6,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,11,6,7,6,8,6,8,7,13,8,9,8,13,9,14,14,17,9,9,6,9,5,6,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-24,-11,-11,-7,-11,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,7,6,11,8,11,12,30,16,16,11,17,10,12,10,18,10,10,7,10,7,9,8,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,9,13,8,10,9,16,9,11,9,14,9,12,12,23,12,12,9,14,9,11,10,18,10,12,10,17,11,16,16,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,11,12,9,14,9,13,13,24,13,15,13,22,15,23,23,57,29,29,20,29,17,20,16,28,15,17,13,20,13,18,17,32,17,17,12,18,11,14,13,23,13,14,12,20,13,19,18,34,17,17,12,18,11,13,11,19,10,11,8,13,9,12,12,22,12,12,8,12,8,10,9,15,8,9,7,12,9,13,13,28,14,14,10,14,9,11,10,17,9,9,7,11,7,10,9,17,9,10,7,10,7,9,8,15,8,9,7,12,8,11,11,22,12,12,9,13,8,10,8,14,8,10,8,14,9,13,13,24,13,15,11,18,12,17,16,30,17,20,17,29,20,29,29,63,32,31,21,31,18,21,17,29,15,16,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,14,10,14,14,26,13,13,9,13,8,9,8,13,8,9,7,11,7,9,9,17,9,9,6,9,6,7,6,9,6,7,6,9,6,9,9,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,9,7,10,10,25,13,13,9,14,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,10,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,9,6,9,6,9,8,15,8,9,7,12,8,12,12,27,14,13,9,13,8,10,8,14,8,8,6,9,6,9,9,16,9,9,6,9,6,8,8,14,8,9,8,14,10,14,14,28,15,16,11,17,10,13,12,21,12,14,11,19,13,18,17,32,17,18,13,20,13,17,15,28,16,19,16,27,18,27,27,33,17,17,12,17,10,11,10,17,9,9,7,10,6,8,8,15,8,8,6,9,5,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,6,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,6,5,7,4,5,5,7,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,4,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,6,7,5,8,5,6,6,11,7,8,8,14,10,14,14,27 +-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,9,17,9,9,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,5,7,7,15,8,8,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,16,9,10,9,15,10,15,15,32,16,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,4,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,5,3,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,3,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,10,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,30,16,16,11,15,9,10,9,15,8,9,7,11,7,9,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,15,8,8,5,8,5,6,5,9,5,6,4,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,6,4,6,6,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,8,6,11,7,10,9,16,9,10,9,15,10,15,15,33,17,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,4,4,5,4,6,6,14,8,8,6,7,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,18,9,9,6,10,6,6,6,10,6,6,4,6,4,6,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,7,4,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,12,6,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,8,5,7,6,11,6,7,6,10,7,11,11,23,12,11,8,11,6,8,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,4,2,3,3,5,3,4,4,5,4,6,6,10 +-13,-6,-6,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,3,2,3,2,3,2,3,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,13,7,8,6,8,5,6,6,12,7,7,6,10,7,10,10,11,6,7,5,8,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,7,6,11,6,7,5,8,6,8,7,13,7,8,7,12,9,13,13,31,16,16,11,16,10,12,10,16,9,10,8,12,8,10,9,17,9,10,7,10,6,7,7,14,8,9,7,12,8,11,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,16,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,7,12,8,10,9,17,10,11,9,15,11,16,16,35,18,18,12,16,9,11,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,5,5,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,3,2,3,2,3,2,3,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,4,4,5,3,4,4,6,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,5,8,6,8,7,11,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,5,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,12,7,9,9,16,9,11,9,14,10,15,15,20,10,10,7,11,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,4,4,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,3,3,3,3,2,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,15 +-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,5,5,7,5,8,8,18,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,12,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +-10,-4,-4,-3,-6,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,4,4,6,4,4,3,4,2,2,2,5,3,3,3,5,4,5,5,12,7,7,5,7,5,6,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,9,6,7,6,9,6,9,9,21,11,11,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,7,5,6,6,11,6,7,6,8,6,8,8,13,7,8,6,7,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,12,7,9,7,11,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,5,10,6,6,4,7,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,4,5,4,6,6,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,6,4,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,8,6,9,6,7,6,12,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,11 +-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,11,7,8,6,10,6,6,4,7,4,6,5,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,4,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,10 +-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,9,5,5,3,4,3,3,3,6,4,4,4,7,5,8,8,19,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,5,8,6,8,8,15,8,9,6,9,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,13,7,8,6,10,7,9,8,14,8,10,8,13,9,13,13,33,17,17,12,17,10,12,10,18,10,11,9,14,9,11,10,21,11,12,8,12,7,9,9,16,9,10,8,14,9,12,11,19,10,10,7,11,7,8,6,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,9,5,6,5,7,5,8,8,20,10,10,7,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,7,7,16,9,9,6,8,5,7,6,10,6,7,6,9,6,9,9,18,10,11,8,13,8,11,10,18,10,12,11,19,13,19,19,40,20,20,14,20,11,13,11,18,10,11,8,13,8,10,9,19,10,10,7,10,6,7,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,7,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,4,6,4,5,4,6,4,4,3,5,4,6,6,16,9,9,6,8,5,6,5,9,5,5,4,7,4,5,4,8,5,5,3,4,3,4,4,7,4,5,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,7,12,7,9,8,13,9,12,12,21,11,11,8,11,7,9,8,14,8,9,7,12,8,12,11,19,10,11,8,13,8,11,10,18,10,12,10,18,12,18,17,24,12,12,8,11,7,8,7,12,7,8,6,9,6,8,8,10,6,6,5,7,4,5,4,6,4,5,4,7,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,5,9,5,5,4,6,4,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,9,17 +-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,9 +-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,12,8,11,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,13,7,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,12,8,12,12,25,13,13,9,13,7,8,7,11,6,6,5,9,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,3,3,2,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,4,5,5,10 +-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,11,6,7,6,9,6,7,6,11,6,7,6,11,8,11,12,27,14,14,10,16,9,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,12,7,8,6,10,7,10,9,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,8,14,10,15,15,34,17,17,11,16,9,11,9,15,8,9,7,11,7,8,7,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,5,5,12,7,7,5,8,5,6,5,8,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,17,9,10,7,10,6,8,7,10,6,6,5,7,5,7,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,10,7,10,7,9,8,14,8,9,8,14,10,15,15,22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,6,4,5,4,8,4,5,4,8,5,7,8,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,22,11,11,8,11,6,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,7,5,7,4,5,5,7,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,14,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,9,5,6,6,11,6,7,6,11,7,10,10,26,14,14,10,15,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,5,6,4,5,5,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,4,12,6,6,5,8,5,5,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,5,8,5,6,6,16,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,3,4,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,6,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,5,6,6,15,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-34,-17,-17,-11,-16,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,4,7,4,5,5,8,5,7,7,5,3,3,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,9,6,9,8,15,9,10,8,13,9,12,12,23,12,13,9,14,8,10,8,14,8,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,18,10,10,7,11,6,7,6,11,6,7,6,9,6,9,9,17,9,9,7,11,7,8,7,13,7,8,7,12,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,11,20,11,11,8,11,7,8,7,12,7,8,7,11,8,11,11,20,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,49,25,25,17,24,13,15,13,22,12,13,10,16,10,14,13,24,13,13,9,14,9,11,10,19,11,13,10,17,11,15,15,27,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,16,9,9,7,12,7,9,9,16,8,8,6,9,6,8,8,14,8,8,6,10,7,9,9,27,14,15,11,17,10,12,11,20,11,12,10,17,11,15,14,27,14,15,11,17,11,14,14,26,15,17,14,25,17,26,26,61,31,31,21,31,17,20,16,27,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,14,8,9,7,11,7,10,9,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,7,12,8,12,12,10,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,29,15,16,11,16,9,11,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,11,17,10,12,10,18,10,12,10,17,11,15,15,28,15,15,11,18,12,16,15,29,16,18,15,26,18,26,26,39,20,19,13,19,11,13,11,19,10,11,8,12,8,10,10,18,10,10,7,11,7,8,6,10,6,6,5,9,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,4,6,4,5,4,6,4,6,5,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,3,5,4,6,6,8,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,7,5,7,5,7,6,11,6,7,5,8,6,8,8,15 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,8,7,11,8,11,11,26,13,13,9,13,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,8,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,21,11,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +-18,-9,-9,-5,-9,-4,-5,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,4,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,13,7,8,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,7,5,7,6,12,7,8,6,9,6,8,7,13,7,8,7,12,8,11,11,27,14,14,9,14,8,9,7,13,7,8,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,10,7,9,9,16,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,16,9,9,6,9,6,7,7,12,7,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,14,14,34,17,17,11,17,10,11,9,15,8,8,6,10,7,9,8,14,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,7,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,7,17,9,9,6,9,5,6,5,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,7,11,7,10,9,16,9,10,9,15,10,15,15,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,7,5,6,4,4,4,6,4,4,4,5,4,6,6,12,6,6,5,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,10,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,10,6,6,4,5,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,5,8,5,6,6,11,7,8,6,10,7,9,9,17,9,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,6,15,8,8,6,8,5,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,30,16,16,11,16,9,10,8,15,8,9,7,11,7,9,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,6,9,9,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,19,10,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,10,7,10,7,9,8,16,9,11,9,16,11,16,16,40,20,19,13,18,10,12,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,11,7,8,6,10,7,10,9,21,11,10,7,10,6,7,6,12,7,8,6,9,6,8,8,12,7,7,5,8,5,7,6,10,6,7,6,10,7,10,11,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,20,11,11,8,12,8,11,10,18,11,13,11,18,12,18,18,28,14,14,10,14,8,10,9,14,8,9,7,10,6,8,7,14,7,7,5,7,4,5,5,7,4,5,4,7,5,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,6,5,8,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,5,3,3,3,4,3,4,4,3,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,9 +-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,12,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,7,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,18,9,9,6,9,5,6,6,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6 +-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,5,7,7,13,7,8,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,9,6,8,7,12,7,9,7,13,9,12,12,25,13,13,9,13,8,9,7,12,7,8,6,9,6,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,10,6,6,5,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,6,4,6,6,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,8,10,8,14,10,14,14,32,16,16,11,16,9,11,9,14,8,9,7,10,7,9,8,12,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,9,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,10,7,10,6,8,8,15,9,11,9,16,11,16,16,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,12,6,6,4,7,4,5,5,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,11,6,6,4,5,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8 +-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,6,7,7,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,12,7,7,6,9,6,7,7,12,7,9,7,13,9,12,12,30,15,15,10,15,9,10,8,13,7,8,6,9,6,8,7,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,2,3,2,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,7,15,8,9,7,10,6,8,8,14,8,10,8,15,10,14,14,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8 +-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,8,8,6,10,6,8,7,12,7,9,7,12,8,12,11,23,12,12,8,12,7,9,8,13,7,8,6,10,6,7,7,14,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,16,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,10,8,12,8,10,9,16,9,10,8,13,9,14,14,24,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,11,7,8,8,14,8,9,7,10,7,10,9,20,10,10,7,11,7,8,8,14,8,9,7,12,8,11,10,19,11,12,9,14,9,12,12,22,13,15,13,22,15,21,21,42,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,19,10,11,8,12,7,9,9,16,9,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,13,8,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,9,10,8,12,8,10,9,17,9,9,7,11,7,8,8,14,8,9,8,13,9,12,11,27,14,14,10,15,9,11,10,18,10,11,9,15,10,14,14,22,12,12,9,15,10,13,12,22,13,15,13,23,15,22,22,57,29,28,19,27,15,18,15,25,13,14,11,18,11,14,13,21,11,11,8,12,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,6,5,8,6,9,9,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,6,4,6,6,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,21,11,11,8,11,7,8,7,11,6,7,6,9,6,9,8,14,8,8,6,9,5,6,6,10,6,7,5,8,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,9,7,11,7,9,9,16,9,10,9,15,10,14,14,31,16,17,12,17,10,12,10,16,9,10,8,13,9,12,11,17,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,27,14,14,10,15,9,11,10,18,10,11,9,15,10,13,13,27,14,15,11,18,11,15,14,26,15,18,15,27,18,26,26,48,24,24,16,23,13,15,13,22,12,12,9,14,9,12,12,21,11,11,8,11,7,9,8,13,8,9,8,13,9,12,12,24,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,3,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,8,5,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14 +-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,32,16,16,11,15,9,10,8,14,8,8,6,10,6,8,8,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,4,5,5,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,9,13,8,9,8,13,7,7,5,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8 +-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,5,6,4,5,5,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,7,12,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,9,9,7,9,5,6,5,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,18,9,9,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,11,7,10,9,15,9,11,9,16,11,16,16,38,19,19,13,18,10,12,10,17,9,10,8,12,8,10,9,14,8,8,6,8,5,7,6,11,6,6,5,8,6,8,7,12,6,6,5,6,4,4,4,6,4,4,3,5,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,12,7,8,7,10,7,10,10,21,11,11,8,11,7,8,7,10,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,9,5,6,6,11,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,17,9,10,8,13,8,11,10,18,10,12,10,18,12,18,18,33,17,17,11,16,9,10,9,16,8,8,6,11,7,8,8,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,4,5,5,7,4,4,4,7,5,6,6,12,6,6,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,9 +-18,-8,-8,-5,-8,-4,-6,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,4,6,5,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,12,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,5,4,4,4,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,6,9,6,7,6,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,11,7,9,8,15,9,10,9,15,10,15,15,28,15,15,10,14,8,9,8,13,7,7,6,9,6,7,7,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8 +-33,-16,-16,-10,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-5,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,8,5,6,5,10,6,6,4,6,4,6,6,15,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,16,9,9,6,9,6,7,7,13,8,9,8,13,9,14,14,26,13,13,9,14,8,10,9,13,7,8,6,10,6,8,8,17,9,10,8,12,7,9,8,14,8,8,7,11,7,10,9,20,11,11,8,12,7,8,7,12,7,8,7,11,7,9,9,17,10,11,8,13,8,11,10,19,11,14,12,20,14,21,21,39,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,18,10,10,7,10,7,9,8,14,8,9,8,14,10,14,13,25,13,14,10,14,8,9,8,15,8,9,7,12,8,10,10,18,10,10,7,10,6,8,7,14,8,10,8,14,10,14,13,25,13,14,10,14,9,11,9,15,9,10,8,12,7,9,9,17,9,9,7,10,6,8,8,12,7,9,8,13,9,12,12,26,14,14,10,14,9,11,10,17,9,10,8,13,9,13,12,21,11,12,9,15,10,13,12,22,13,15,13,22,15,22,22,55,28,28,19,28,16,19,16,27,14,15,11,18,11,14,13,21,11,12,8,12,8,10,9,16,9,9,7,10,7,9,9,19,10,9,6,9,6,7,6,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,9,7,10,6,8,8,17,10,12,10,16,11,16,15,31,16,16,11,16,9,11,9,15,9,10,8,12,8,10,10,18,10,10,8,12,7,9,9,14,8,10,9,15,10,14,14,28,15,15,11,16,10,12,11,19,10,11,9,14,9,13,13,25,13,14,11,18,11,15,14,26,15,18,15,26,18,26,26,50,26,26,18,26,14,16,13,23,12,13,10,16,10,13,12,23,12,12,8,12,7,8,7,15,9,10,8,12,8,11,11,21,11,11,8,12,7,9,8,13,7,8,6,10,7,9,8,13,7,7,5,8,5,7,7,11,6,7,6,9,6,8,8,17,9,9,7,10,6,6,5,10,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,5,4,7,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,6,6,9,6,10,10,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,6,7,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,8,7,13,8,10,8,13,9,14,14,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,36,19,19,13,19,11,13,11,18,10,10,8,12,8,10,9,15,8,8,6,9,6,7,6,11,6,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,8,11,10,21,11,11,8,11,6,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,8,13,7,8,6,10,7,9,9,17,9,10,8,12,8,11,10,18,10,12,10,17,12,18,18,33,17,17,12,18,10,11,9,16,9,9,7,11,7,9,8,16,8,8,6,8,5,6,6,10,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-4,-6,-6,-14,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,12,7,8,6,8,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,12,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,13,7,8,7,10,7,9,9,17,9,10,8,12,7,8,7,14,8,9,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,11,7,10,9,17,9,10,8,13,8,11,10,20,12,14,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,18,10,10,7,11,7,8,8,14,8,10,8,14,9,13,13,25,13,14,10,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,28,19,28,16,18,15,26,14,14,11,17,11,14,13,22,12,12,9,13,8,10,9,15,8,8,6,10,7,10,10,19,10,10,7,10,6,6,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,12,9,16,11,16,15,31,16,16,11,16,9,11,9,15,8,9,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,10,9,14,10,14,14,27,14,14,10,16,10,12,11,18,10,12,9,15,10,14,13,25,14,15,11,18,12,16,15,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,4,5,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,14,8,9,7,11,7,9,9,17,9,10,8,11,7,8,7,13,8,9,7,11,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,13,8,11,10,20,11,13,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,13,8,11,10,19,10,10,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,13,9,13,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,13,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,27,18,27,16,18,15,26,14,15,11,17,11,14,13,23,12,12,9,13,8,10,9,15,8,9,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,11,9,16,11,16,16,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,10,17,9,9,7,11,7,9,8,15,8,10,9,14,10,14,14,27,14,14,10,15,9,12,11,18,10,12,9,15,10,14,13,25,14,15,11,17,11,15,14,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,5,7,5,7,7,13 +-70,-35,-35,-23,-34,-19,-23,-19,-35,-17,-18,-12,-20,-11,-15,-14,-28,-14,-14,-9,-13,-7,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-19,-19,-40,-20,-20,-13,-20,-11,-13,-10,-19,-9,-9,-6,-11,-6,-9,-9,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-9,-8,-15,-9,-14,-14,-28,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-5,-7,-7,-15,-7,-6,-3,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,1,1,1,1,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,8,8,15,8,9,8,13,9,12,11,20,12,15,13,23,16,23,24,47,24,25,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,13,9,14,8,10,8,14,8,8,7,11,7,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,31,16,17,12,18,11,14,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,14,12,22,13,15,13,22,15,21,21,41,21,21,15,22,13,17,15,27,15,16,12,19,12,17,17,32,17,19,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,34,19,23,19,34,18,20,15,25,16,22,20,38,20,20,14,22,13,16,14,24,14,16,13,21,14,19,19,37,19,20,14,22,13,16,14,24,13,15,12,19,12,16,16,30,16,17,13,21,13,17,16,31,18,21,17,30,20,30,30,58,30,30,21,31,18,21,18,32,17,19,15,24,15,20,19,36,19,19,13,20,12,15,14,25,14,16,13,22,14,20,20,38,20,21,15,22,13,17,15,27,15,17,14,24,16,22,21,40,21,23,17,28,17,23,21,40,23,27,23,40,27,41,42,104,53,54,37,55,31,38,32,56,29,31,23,38,23,31,29,56,29,29,21,32,19,24,21,37,21,24,20,34,22,32,31,61,31,31,21,31,18,22,19,33,17,18,14,22,14,19,18,34,18,18,13,21,13,18,17,32,18,21,17,30,20,28,28,54,28,28,19,29,17,20,17,30,16,18,14,24,15,21,20,37,19,20,15,24,15,19,17,31,18,21,17,29,19,27,27,53,27,27,19,29,17,22,19,35,19,22,17,28,18,26,26,51,27,29,21,34,21,27,25,48,27,31,26,45,30,45,45,88,45,45,30,45,26,31,26,46,24,26,20,32,20,26,24,45,23,24,17,27,16,20,17,31,17,20,16,26,17,23,23,44,23,23,16,24,14,17,14,25,14,16,12,20,13,17,17,32,17,18,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,35,20,23,20,35,19,21,17,28,18,24,23,45,23,24,17,26,16,20,18,34,19,23,19,33,22,32,32,64,33,33,23,34,20,24,21,37,20,23,18,31,20,28,27,51,27,30,22,36,22,29,27,52,29,34,28,49,33,49,49,98,49,49,33,49,28,33,28,50,27,29,21,34,21,28,26,49,25,26,18,28,16,20,18,33,18,20,16,27,18,26,25,49,25,26,18,26,15,18,15,27,15,16,13,22,14,20,19,36,19,19,13,20,12,15,13,24,13,15,12,21,14,21,21,42,22,22,15,23,14,17,15,27,15,16,12,20,13,18,17,31,16,17,12,19,12,17,16,29,16,18,15,26,18,26,25,49,25,25,17,25,14,17,15,27,15,17,14,23,15,21,20,39,21,22,17,27,17,23,22,41,23,28,23,41,28,41,40,79,40,41,28,41,24,29,24,43,23,25,18,29,18,24,22,41,21,21,14,21,13,16,14,24,13,14,11,19,13,18,18,34,17,17,12,18,11,13,11,20,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,19,11,12,10,18,12,16,16,30,16,16,11,15,9,11,9,15,8,9,7,12,7,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,10,9,16,9,9,7,10,6,8,7,13,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,26 +-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,8,7,12,8,12,12,24,12,13,9,13,8,9,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,16,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,9,8,14,8,8,6,10,7,9,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,10,11,8,11,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,15,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,11,7,10,9,16,9,11,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,15,11,18,11,14,13,25,14,16,14,23,16,23,23,45,23,23,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,17,12,17,17,34,18,18,12,18,10,12,10,18,10,11,9,15,10,13,12,23,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,26,14,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,25,17,25,14,17,15,25,14,15,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,8,14,8,8,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,8,13,9,14,13,25,13,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,21,14,21,20,40,21,21,14,21,12,15,12,22,12,13,10,15,10,13,12,21,11,11,8,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,7,6,11,6,6,5,8,6,7,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,13 +-35,-17,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,5,7,5,6,6,10,6,7,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,8,14,8,8,7,11,7,10,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,20,10,10,7,11,7,8,7,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,16,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,18,10,10,8,12,8,10,9,18,10,10,8,11,7,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,14,11,18,11,14,13,25,14,17,14,24,16,23,23,45,23,24,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,18,10,12,10,19,11,12,9,15,10,13,12,22,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,27,15,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,24,17,25,14,17,15,25,13,14,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,13,7,8,7,11,7,9,9,16,9,9,7,10,7,9,9,16,9,10,8,13,9,14,13,24,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,19,10,11,9,13,9,12,11,20,12,14,12,21,14,20,20,41,21,21,14,20,12,14,12,22,12,12,9,16,10,13,12,21,11,11,7,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,9,5,6,4,5,3,4,4,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,7,13 +-23,-11,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,5,10,6,6,5,8,5,7,6,11,6,7,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,20,10,11,7,11,6,8,7,12,6,7,6,9,6,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,35,18,18,13,19,11,13,11,20,10,11,8,14,8,11,10,20,11,11,8,12,7,9,8,13,8,8,7,12,8,12,11,21,11,11,8,11,7,8,7,12,7,7,6,8,6,7,6,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,6,8,6,7,6,11,6,7,6,10,7,9,9,18,9,9,7,10,6,7,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,6,12,7,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,5,8,5,6,6,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,12,24,12,12,8,12,7,9,8,13,8,8,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,8,8,13,8,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,17,9,9,7,11,6,7,7,12,6,7,6,10,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,11,6,7,6,9,7,10,9,16,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,14,14,10,14,8,9,8,15,8,8,7,11,7,9,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,12,6,6,5,7,4,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,3,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,5,9 +-35,-17,-17,-11,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-9,-6,-9,-9,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,7,5,7,6,10,6,8,7,11,8,11,12,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,7,5,6,6,8,5,5,5,8,6,8,8,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,6,11,7,8,7,11,7,10,10,20,11,11,7,10,6,8,7,14,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,10,17,12,17,17,33,17,17,12,17,10,12,10,17,9,10,8,13,8,11,11,20,11,11,7,10,6,8,7,13,7,8,7,11,7,9,9,20,11,11,7,10,6,7,7,11,7,8,6,10,7,9,9,16,9,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,15,10,15,9,11,10,17,9,10,8,12,8,10,9,18,10,10,7,11,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,9,7,12,8,11,11,21,11,12,9,14,9,12,11,21,12,14,12,20,14,21,21,53,27,27,19,28,16,20,17,29,16,17,13,20,13,17,15,30,16,16,12,18,11,14,12,19,11,13,11,18,12,17,17,30,15,15,11,16,10,12,10,18,10,10,8,12,8,10,9,17,9,10,8,12,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,12,8,10,9,16,9,11,9,14,9,13,13,25,13,14,10,14,8,10,9,18,10,12,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,14,24,16,23,22,45,23,24,16,24,14,16,13,23,12,13,10,17,11,14,13,25,13,14,10,14,9,11,9,18,10,11,9,14,9,12,12,24,13,13,9,12,7,8,7,13,8,9,7,11,7,10,9,16,9,9,7,10,7,9,9,17,10,11,9,16,11,17,17,36,19,19,13,18,11,13,11,19,10,11,9,14,9,13,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,16,16,32,17,17,12,17,10,13,11,19,11,12,10,16,11,15,14,27,15,16,12,18,11,15,14,27,15,17,14,25,17,25,25,48,24,24,16,24,14,17,15,24,13,14,11,17,11,15,14,25,13,14,10,16,9,11,10,17,10,11,9,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,9,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,21,11,11,8,12,7,9,8,13,8,9,7,12,8,10,10,16,9,9,7,10,7,9,9,16,9,11,9,14,10,14,14,23,12,12,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,20,41,21,20,14,20,12,14,12,21,12,13,10,16,10,13,12,20,11,11,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,8,5,5,5,9,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,6,4,4,4,6,4,4,4,6,4,5,4,6,4,6,6,12 +-19,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,6,6,6,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,31,16,16,11,16,10,12,10,16,9,10,7,11,7,10,9,17,9,9,7,11,7,8,7,11,7,8,7,11,7,10,10,17,9,9,7,9,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,5,9,5,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,9,8,15,8,9,6,10,6,8,8,14,8,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,11,6,7,5,8,6,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,9,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,12,7,8,7,11,6,7,6,9,6,7,7,13,7,7,5,6,4,4,4,8,5,6,5,7,5,6,6,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,10,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,5,6,5,8,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,14,10,15,15,38,19,19,13,19,11,14,12,19,10,11,8,12,8,11,10,20,11,11,8,13,8,9,8,14,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,6,11,6,6,5,9,6,8,7,14,8,8,6,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,10,7,10,9,17,9,10,7,12,8,10,10,17,10,12,10,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,7,12,7,9,9,17,9,10,7,9,6,7,6,13,7,8,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,25,13,13,9,13,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,10,6,8,7,13,7,8,7,11,8,12,12,21,11,12,8,12,7,9,8,13,7,8,7,11,7,10,9,18,10,10,8,12,8,10,10,18,10,12,10,17,12,17,17,32,16,16,11,16,10,12,10,17,9,10,8,11,7,10,9,16,9,10,7,11,7,8,7,11,7,8,6,10,7,10,9,17,9,9,6,9,5,6,6,11,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,6,4,6,6,10,6,7,6,10,7,10,9,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,13,7,8,6,9,6,8,7,13,8,10,8,13,9,13,13,27,14,14,10,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8 +-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,12,7,7,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,6,6,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,7,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,12,9,13,13,32,16,16,11,16,9,11,10,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,7,12,7,8,7,11,8,10,10,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,6,5,9,5,5,4,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,10,6,6,6,9,6,8,8,15,8,9,6,10,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,6,9,8,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,7,6,9,6,6,5,8,6,8,8,14,8,8,6,8,5,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-32,-15,-15,-10,-16,-8,-9,-7,-14,-7,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,21,11,11,8,11,6,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,7,12,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,10,6,8,8,14,8,10,9,16,11,16,16,33,17,16,11,16,10,12,10,17,9,10,7,11,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,9,9,21,11,11,8,12,7,8,7,12,7,8,7,11,7,10,10,17,9,9,7,11,7,10,9,16,9,11,9,16,11,15,15,26,14,14,10,15,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,11,7,8,6,10,6,7,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,7,6,9,7,10,10,22,12,13,10,15,9,12,11,20,12,14,12,22,15,21,21,58,29,29,20,30,17,20,17,29,15,16,12,18,11,15,14,29,15,16,12,18,11,14,12,22,12,14,12,20,13,18,18,32,17,17,11,16,9,11,10,18,10,10,7,11,7,10,9,16,8,8,6,9,6,8,8,14,8,10,9,15,10,15,15,27,14,13,9,13,8,9,8,14,8,9,7,12,8,10,10,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,16,9,10,9,15,10,14,14,26,14,14,11,17,11,14,14,26,15,17,14,25,17,24,23,46,23,23,16,23,13,16,14,24,13,14,10,16,10,13,13,25,13,13,9,14,9,11,10,18,10,11,9,14,10,14,14,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,11,7,10,9,17,10,12,10,18,12,18,18,38,19,19,13,20,12,14,11,19,11,12,9,14,9,13,13,22,12,13,10,15,9,12,11,20,11,13,11,18,12,17,17,32,17,17,12,18,11,13,12,21,12,13,10,15,10,14,14,28,15,16,12,19,12,16,14,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,13,10,15,10,14,13,24,13,13,9,13,8,10,9,16,9,10,9,15,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,11,7,10,10,17,9,9,6,9,6,7,7,13,8,9,7,12,8,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,7,10,10,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,7,9,8,14,8,9,8,13,9,12,12,19,10,10,8,12,8,10,10,18,11,13,11,19,13,19,19,41,21,21,14,20,11,13,11,18,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,10,6,8,7,12,7,8,6,10,6,8,8,15,8,8,6,8,5,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,5,7,7,12 +-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,5,7,6,11,7,8,7,12,8,11,11,31,16,15,11,16,9,11,9,16,8,9,7,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,12,24,12,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,20,11,11,8,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,7,12,7,7,6,9,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,14,9,13,13,25,13,13,9,13,8,9,8,13,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,7 +-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,11,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,5,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,33,17,16,11,17,10,11,10,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,13,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,9,13,13,25,13,14,10,14,8,9,8,15,8,8,6,9,6,8,8,14,8,8,6,8,5,7,6,11,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,6,12,7,8,7,11,8,11,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,15,9,10,9,15,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,7,5,6,6,9,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,6,10,6,8,6,10,7,10,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,6,4,5,3,4,4,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,7 +-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,25,13,12,9,13,8,9,7,13,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,6,4,5,5,9,6,6,5,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,7,7,12,7,7,6,8,5,7,7,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,13,7,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,6,4,5,4,6,4,5,5,6,4,5,4,6,4,5,5,7,4,5,4,6,4,6,6,14,7,7,5,6,4,5,4,8,5,6,5,7,5,6,6,12,7,7,5,6,4,4,4,7,4,5,5,8,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,8,12,7,8,6,12,7,7,5,8,5,7,7,11,6,7,5,7,4,5,4,9,5,6,5,8,5,6,6,15,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,12,7,8,7,11,8,11,11,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,41,21,20,14,20,12,14,11,20,11,11,8,12,8,10,9,18,10,10,7,11,7,8,7,15,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,11,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,19,10,9,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,30,15,15,11,16,9,11,9,18,10,11,8,12,8,10,9,16,9,9,7,10,6,7,6,13,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,14,8,8,7,11,7,10,10,17,9,10,7,10,6,8,8,15,9,10,8,14,9,13,13,23,12,13,9,14,8,10,9,17,9,10,8,14,9,12,11,20,11,12,9,13,8,11,10,18,10,12,10,17,11,16,16,32,17,17,11,16,9,11,10,16,9,9,7,10,6,8,8,17,9,9,6,9,6,8,7,10,6,7,6,10,7,10,10,16,9,9,6,8,5,5,5,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,9,13,7,7,5,8,5,7,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,7,7,11,7,8,7,12,9,13,13,29,15,15,10,14,8,9,7,12,7,8,6,10,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,5,7,7,10,6,6,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,5,5,10 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,4,4,3,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,5,4,5,5,7,4,5,4,5,3,4,3,6,4,4,4,5,4,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,25,13,13,9,13,8,9,7,13,7,7,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,7,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,5,10,6,6,4,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,6,9,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,6,5,9,5,6,5,10,7,10,10,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,4,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,6,8,6,11,8,11,11,34,18,18,12,18,10,12,10,17,9,10,7,11,7,8,8,15,8,8,6,9,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,6,9,6,8,7,13,7,8,7,12,8,12,12,26,14,14,10,14,8,9,8,15,8,8,6,10,7,9,8,15,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,8,5,7,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,15,9,10,8,15,10,14,14,26,14,14,9,13,8,10,8,13,7,8,6,9,6,7,7,13,7,8,6,7,5,6,5,8,5,6,5,9,6,8,8,12,6,6,5,6,4,5,4,8,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,6,5,6,4,6,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,7,4,4,3,5,4,6,6,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,8,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,32,17,17,11,17,10,11,10,16,9,9,7,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,6,7,7,12,7,8,7,11,8,11,11,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,8,5,7,6,12,7,7,6,10,7,10,10,19,10,10,8,12,7,9,8,14,8,8,7,11,7,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,10,14,14,24,13,13,9,12,7,9,7,12,7,7,5,8,6,7,7,12,6,7,5,7,5,6,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +-33,-16,-15,-10,-15,-8,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-8,-8,-5,-9,-4,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,2,3,3,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,11,8,12,12,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,13,7,7,5,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,6,10,6,8,7,13,8,9,7,11,7,10,10,19,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,6,9,6,8,8,14,8,9,7,12,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,9,9,16,9,9,7,11,7,10,10,19,11,12,10,16,11,16,16,36,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,9,7,12,8,10,9,25,13,12,8,12,7,8,7,12,7,7,6,10,7,10,10,18,10,10,7,11,7,9,9,17,10,11,9,16,11,17,17,22,11,11,8,11,7,8,7,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,6,8,8,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,18,10,11,9,14,9,11,10,19,11,13,11,18,12,18,19,62,31,31,21,32,18,20,17,29,15,16,12,19,12,16,14,26,14,14,10,15,9,12,11,20,12,14,11,19,13,18,18,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,19,10,11,8,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,17,9,9,6,9,6,7,7,13,8,9,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,8,7,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,21,47,24,24,17,25,14,17,15,27,14,15,11,17,11,14,14,26,14,14,10,16,10,12,10,18,10,12,10,17,11,15,15,26,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,16,9,9,7,11,7,10,10,19,11,12,10,17,12,17,17,40,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,24,13,14,10,15,9,11,10,18,11,13,11,20,13,19,19,36,19,19,14,22,13,16,14,25,14,15,12,19,12,17,17,33,18,19,14,21,12,15,14,25,14,17,14,24,16,24,25,45,23,23,15,22,13,16,14,24,13,14,11,17,11,14,12,22,12,12,9,13,8,9,8,15,9,10,9,15,10,15,15,20,11,11,8,11,7,9,8,14,8,9,7,11,8,11,11,22,12,13,9,14,9,11,9,16,9,11,9,14,9,12,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,18,10,12,10,16,11,15,15,21,11,12,9,13,8,9,8,15,8,9,7,11,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,20,13,19,18,43,22,22,15,21,12,14,12,22,12,12,9,15,10,13,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,11,11,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,14,8,8,6,10,6,8,7,13,8,9,7,11,7,10,9,19,10,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,6,10,7,10,10,17,9,9,6,9,5,6,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,13 +-16,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,9,6,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,32,16,16,11,17,10,11,9,15,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,8,12,7,9,8,13,8,8,6,10,7,9,9,17,10,10,8,11,7,8,8,13,8,9,8,13,9,13,13,23,12,12,8,12,7,9,8,12,7,8,6,9,6,7,7,12,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,5,9,5,6,4,7,4,5,5,9,5,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,4,4,5,3,4,3,6,4,4,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,33,17,17,12,17,10,12,10,16,8,8,6,10,6,8,8,14,8,8,6,9,5,6,6,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,5,4,5,4,7,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,25,13,13,9,14,8,9,8,15,8,8,6,10,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,20,10,10,8,12,7,9,8,14,8,8,7,10,7,10,9,18,10,11,8,12,7,9,8,14,8,10,8,13,9,14,14,23,12,12,8,12,7,9,8,12,7,8,6,8,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,9,6,8,8,12,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,5,4,6,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,7,10,10,23,12,12,8,11,7,8,7,12,7,7,6,8,5,7,6,12,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,5,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,3,3,4,2,3,2,4,3,3,3,5,3,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,5,4,7,5,6,5,8,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,5,4,7,5,6,6,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-16,-8,-8,-5,-8,-4,-5,-3,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,5,7,7,9,5,5,4,6,4,5,4,6,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,7,5,8,5,7,7,9,5,6,4,6,4,5,5,9,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,11,6,7,5,8,5,7,6,12,7,8,6,10,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,6,10,7,11,11,36,18,18,12,18,10,12,10,17,9,10,7,10,7,9,9,15,8,9,6,9,6,8,7,13,8,9,7,12,8,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,7,8,7,12,8,12,12,26,14,14,10,15,9,10,8,16,9,10,7,11,7,9,9,14,8,8,6,8,5,6,5,10,6,6,5,9,6,9,9,15,8,8,6,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,6,12,7,8,6,10,7,9,9,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,12,7,8,7,11,8,11,10,21,11,12,9,14,8,10,9,16,9,10,8,12,8,11,10,20,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,24,13,13,9,14,8,10,9,13,7,7,5,8,6,8,7,13,7,7,5,7,4,5,4,8,5,7,6,10,7,9,9,14,8,8,6,8,5,5,5,9,5,6,5,8,6,8,7,11,6,6,5,8,5,6,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,11,11,25,13,13,9,12,7,9,8,13,7,8,6,10,6,8,7,13,7,8,6,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,3,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,9,5,6,5,7,4,5,5,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,4,4,4,5,4,5,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,7,7,22,11,11,8,11,6,7,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,6,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,12,7,7,6,8,5,6,6,9,5,6,5,7,5,7,6,12,7,7,5,8,5,6,5,10,6,6,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,7,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,6,4,4,3,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,4,3,5,4,6,5,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,28,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,5,8,5,6,5,9,5,6,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,5,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,3,5,3,4,3,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,7,11,6,6,4,7,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,9,5,6,4,7,4,5,5,10,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,8,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,5,3,4,4,8,5,6,6,10,6,6,4,7,4,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,4,6,4,4,4,7,4,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,4,4,5,4,5,6,12,7,7,5,7,4,5,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,25,13,12,8,12,7,8,6,11,6,7,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,4,5,4,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,5,5,7,5,7,7,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,4,7,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,4,4,4,6,4,5,5,8,6,8,8,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,7,5,8,5,6,5,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,22,11,11,7,10,6,7,6,11,6,7,6,9,6,8,8,12,7,7,5,7,5,6,6,11,7,8,6,10,7,9,8,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,16,9,9,7,10,7,9,8,14,8,9,7,12,8,12,12,15,8,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,4,5,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,12,45,23,23,16,23,13,14,11,19,10,11,8,13,8,11,11,20,11,11,8,12,7,9,9,16,9,9,7,12,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,7,6,13,7,8,6,8,5,7,6,10,6,7,6,11,7,10,10,23,12,12,8,11,7,8,7,12,7,8,6,10,6,8,8,15,8,8,5,7,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,7,6,10,6,6,5,8,5,7,7,10,6,7,6,9,6,8,8,14,8,9,8,13,9,13,13,30,16,16,11,15,9,11,10,18,10,11,8,13,8,11,11,18,10,10,7,9,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,12,7,9,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,11,11,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,25,13,14,10,16,9,11,10,18,10,12,9,15,9,12,12,26,14,14,10,15,9,12,11,20,11,13,11,19,13,18,18,30,16,16,11,17,10,12,10,16,9,9,7,11,7,10,9,14,8,8,6,9,5,6,5,8,5,6,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,9,6,7,6,10,6,6,5,7,5,8,8,12,7,7,5,7,5,6,6,10,6,6,5,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,15,8,9,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,15,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,6,9,6,7,6,11,6,6,5,8,6,8,8,12,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,10,6,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,2,8,5,5,3,4,3,4,3,5,4,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,5,5,10 +-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,25,13,13,9,13,7,8,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,5,8,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,14,8,8,6,9,6,7,6,10,6,7,6,9,6,7,7,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,2,3,3,4,3,7,4,5,4,4,3,4,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,8,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,10,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,28,15,15,10,14,8,8,7,13,7,7,6,9,6,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,5,3,4,4,7,5,6,6,14,8,8,5,7,5,6,5,7,5,6,5,7,5,6,5,9,5,6,4,5,3,4,4,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,6,5,9,6,8,8,19,10,10,7,10,6,8,7,12,7,7,5,9,6,8,7,11,6,7,5,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,8,6,8,7,15,8,9,7,10,6,8,7,11,7,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,4,3,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,6,5,10,6,6,5,6,4,6,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7 +-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,22,12,12,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,5,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,6,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,10,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,4,9,5,5,4,6,4,5,4,4,3,3,3,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,5,5,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,9,7,10,10,12,6,6,4,6,4,4,3,6,4,5,4,6,4,5,5,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,7,5,6,5,8,6,9,10,37,19,18,12,18,10,11,9,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,7,5,7,4,4,4,6,4,4,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,11,8,11,11,26,14,14,9,13,8,9,8,15,8,9,7,11,7,10,9,15,8,8,6,10,6,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,9,9,22,11,11,8,11,7,8,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,9,9,19,10,11,8,12,7,9,9,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,17,10,12,10,16,11,16,16,27,14,13,9,13,8,9,8,14,7,7,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,5,5,9,6,8,8,15,8,8,5,7,4,5,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,5,5,4,6,4,6,6,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,14,7,7,5,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,2,2,2,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9 +-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,6,6,24,12,12,8,12,7,8,6,12,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,5,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,4,4,8,5,5,5,7,5,7,7,17,9,9,6,9,5,6,5,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,6,4,4,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,4,5,6,4,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,6,6,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,7,5,7,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,11,6,6,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,12,7,7,6,9,6,9,9,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,9,35,18,17,12,17,10,11,9,17,9,9,7,10,6,8,8,16,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,6,4,7,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,8,6,9,9,22,12,12,8,11,7,8,7,12,7,7,5,9,6,8,7,11,6,7,5,7,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,7,9,8,14,8,9,7,11,8,11,10,20,11,12,9,13,8,10,10,18,10,12,9,16,11,16,16,26,13,13,9,13,7,8,7,13,7,8,6,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,7,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,5,7,4,5,4,8,5,7,7,14,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,6,7,9,5,4,3,5,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,8,6,8,8,34,18,17,12,17,10,11,9,16,9,9,7,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,9,6,9,9,22,11,11,8,11,7,8,7,12,7,7,5,8,6,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,8,13,8,9,7,11,7,10,10,19,10,11,8,13,8,10,10,18,10,11,9,16,11,16,16,26,13,13,9,13,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,7,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,9,5,5,3,5,3,4,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-20,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,9,7,10,10,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,24,13,13,9,13,8,9,7,12,7,7,6,9,6,7,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,7,6,11,6,6,5,7,5,7,7,13,7,8,6,10,6,7,7,12,7,8,7,11,8,12,12,27,14,15,11,17,10,13,11,19,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,10,8,14,9,13,13,25,13,14,10,15,9,10,9,15,8,9,7,10,7,10,9,17,9,10,8,14,9,11,11,20,11,12,10,17,12,17,17,20,11,11,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,9,6,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,18,10,11,8,12,7,9,8,15,9,11,9,15,11,16,16,67,34,33,22,33,19,22,19,33,17,18,13,20,12,16,15,29,15,15,11,17,10,12,11,20,11,12,9,15,10,14,14,26,13,13,9,14,8,9,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,8,8,15,8,9,7,11,8,11,11,33,17,18,12,18,11,13,11,18,10,10,8,12,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,11,6,6,5,8,6,9,9,16,9,10,8,13,8,11,11,20,11,13,11,18,12,18,18,46,24,24,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,14,10,16,10,13,11,20,11,13,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,10,8,13,9,14,14,26,14,14,11,17,10,12,11,20,11,12,10,17,12,17,17,42,21,21,14,20,12,14,12,21,11,12,10,16,10,14,14,27,14,15,11,16,10,12,11,21,12,14,12,20,13,19,18,34,18,18,13,19,11,14,12,21,12,13,10,17,11,16,16,32,17,19,14,23,14,18,17,32,18,21,17,30,20,30,30,50,26,26,17,25,14,16,14,24,13,14,10,16,10,14,13,25,13,13,9,14,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,11,9,15,10,14,13,27,14,14,10,16,10,12,10,18,10,10,7,11,7,10,10,18,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,22,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,20,11,11,9,14,9,12,11,20,12,14,12,21,14,20,20,35,18,18,13,20,12,14,12,20,11,11,8,11,7,10,9,16,9,9,6,9,6,7,7,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,16,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,9,9,16 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,34,18,17,12,17,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,17,9,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,9,5,6,6,11,6,7,6,9,6,9,9,22,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,11,9,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,6,8,5,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,6,4,6,5,7,4,4,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,16,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,14,8,8,6,8,5,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,6,4,6,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,7,5,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,12,10,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,7,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,24,12,12,8,12,7,8,7,12,6,7,5,8,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,5,4,5,4,12,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,6,9,5,6,5,7,4,6,5,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,6,5,8,5,5,4,7,5,6,6,12,6,7,6,8,6,7,6,12,7,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,6 +-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,5,4,6,4,6,6,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,5,8,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,8,5,7,6,10,6,7,6,9,6,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,6,7,6,10,7,10,9,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,8,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,35,18,18,12,18,11,13,11,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,9,8,14,8,9,7,10,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,16,8,8,6,8,5,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,23,12,12,8,12,7,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,6,7,7,10,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,18,10,12,10,16,11,16,16,27,14,14,10,14,8,9,8,13,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,9,7,10,6,7,6,10,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,7,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,8,5,7,7,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,4,3,4,3,5,4,5,5,8 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,20,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5 +-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,5,3,3,2,4,3,4,3,6,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,7,4,5,4,7,4,5,5,9,5,6,4,5,3,4,4,5,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,25,13,13,9,13,8,9,8,12,7,7,6,9,6,8,7,13,7,8,5,7,5,6,5,8,5,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,13,7,7,5,8,5,5,4,6,3,3,2,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,6,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,16,9,9,7,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,10,7,10,6,7,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,6,4,6,5,11,6,6,4,7,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,5,3,4,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,22,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,12,6,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,5,7,4,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,7,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,3,3,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,3,3,5,3,4,4,13,7,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,3,3,4,3,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,7,6,10,7,9,9,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,9,39,20,20,13,19,11,13,11,18,10,10,7,11,7,9,9,21,11,12,9,13,8,9,8,13,7,8,7,11,7,10,10,18,9,9,7,10,6,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,20,11,11,8,11,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,6,5,8,5,7,7,14,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,25,13,14,10,15,9,10,9,16,9,9,7,10,6,8,8,13,7,8,6,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,8,14,8,8,7,11,8,11,11,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,9,18,10,10,7,10,6,8,7,12,7,7,6,10,7,10,9,20,11,11,8,13,8,10,8,14,8,8,6,10,7,10,10,18,10,11,8,12,8,11,10,18,11,13,11,18,12,18,17,27,14,14,10,15,9,11,9,16,8,8,6,9,6,8,7,12,7,7,5,8,5,7,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,10,6,7,6,9,6,7,7,13,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,19,10,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,5,5,8,6,8,8,9,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,4,5,9 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,21,11,11,7,11,6,7,6,10,6,6,4,6,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,9,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,4,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,2,8,4,4,3,5,3,4,3,4,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,3,3,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,23,12,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,12,6,6,4,6,4,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,10,7,10,10,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,7 +-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,18,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,9,5,5,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,29,15,14,10,14,8,10,9,15,8,8,6,10,6,8,8,17,9,9,7,10,6,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,5,7,7,13,7,7,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,5,3,4,4,6,4,5,5,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,20,10,10,7,11,7,8,7,13,7,7,5,8,5,7,6,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,11,6,7,6,10,7,9,8,14,8,9,8,13,9,13,13,21,11,12,8,12,7,9,7,13,7,8,6,8,5,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,5,8,5,7,7,11,6,6,5,8,5,5,5,8,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,11,6,7,5,8,5,6,6,10,6,7,5,8,6,8,9,15,8,9,6,9,6,7,6,9,5,6,5,8,5,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,6,4,4,4,5,4,6,6,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,4,5,5,8,5,5,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,3,2,2,2,3,2,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,6,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,4,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,4,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,5,3,4,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,27,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,4,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,11,6,7,5,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,10,6,6,5,8,6,8,7,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,5,9 +-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,8,5,7,7,26,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,6,6,18,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,3,5,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,9,5,5,4,7,5,6,5,9,6,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8 +-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,5,4,6,6,7,4,4,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,3,4,4,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,5,4,5,6,16,9,9,6,8,5,6,5,9,6,7,6,9,6,9,8,15,8,8,6,8,5,7,7,12,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,8,15,9,10,8,13,9,14,14,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,10,9,17,10,11,9,15,10,14,14,51,26,26,17,25,15,18,15,27,15,16,12,19,12,15,14,25,13,13,9,14,8,10,9,16,9,11,9,14,10,14,13,21,11,10,7,10,6,7,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,8,8,14,8,9,7,11,8,12,12,20,11,11,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,5,7,7,15,8,9,6,9,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,6,10,7,10,10,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,11,7,10,9,17,9,10,8,13,9,12,12,24,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,12,9,13,13,29,15,15,11,16,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,11,7,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,36,18,18,12,18,10,12,11,19,10,10,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,11,7,10,10,18,10,10,7,9,6,7,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,10,6,7,5,8,5,7,6,11,7,8,6,10,7,9,9,16,9,9,6,9,6,8,8,14,8,10,8,14,10,15,15,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,6,5,7,4,5,5,8,4,4,3,5,4,6,6,10,6,7,6,10,7,9,9,6,3,3,3,4,3,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,8,15 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,6,5,7,5,7,7,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,8,7,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,11,6,6,4,6,4,4,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,2,4,3,3,3,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,6,4,5,4,7,4,5,4,4,3,4,4,8,5,5,4,5,3,4,5,8,5,6,5,8,5,7,7,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,8,8,12,6,6,4,7,4,4,3,6,4,4,3,5,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,5,7,7,11,6,6,4,7,4,4,3,5,3,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,3,3,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,8,6,11,7,10,10,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,4,4,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,5,5,4,6,4,4,3,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,4,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,7,8,6,10,7,9,9,29,15,16,11,16,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,8,7,10,6,7,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,12,7,7,5,8,5,5,4,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,5,7,4,5,4,7,5,7,7,24,12,12,8,12,7,8,7,14,8,8,6,8,5,6,6,12,7,7,5,8,5,7,7,10,6,7,6,10,7,10,9,16,9,9,6,9,6,7,6,11,6,7,5,7,5,6,5,10,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,4,5,5,7,4,4,3,5,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,5,8,5,6,6,13,8,9,7,12,8,11,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,10 +-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,4,4,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,7,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,3,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,13,7,8,6,7,5,6,5,9,5,6,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,7,4,4,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,6,6,20,11,11,7,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,8,5,6,5,7,4,4,4,6,4,6,5,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,9,6,9,9,19,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,8,4,4,4,6,4,4,4,8,5,5,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,6,4,5,5,9,5,6,4,6,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,2,2,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,2,2,3,6,4,4,4,5,3,4,4,8 +-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,6,7,7,12,6,7,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,7,4,4,4,5,4,5,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,9,6,9,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,3,5,3,4,3,5,3,4,4,8 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,3,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,2,2,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,9,5,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,6,4,4,4,6,4,5,4,6,4,5,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,5,7,5,6,6,10,6,8,7,11,8,11,11,17,9,9,6,9,5,6,5,7,4,5,4,5,4,5,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,13,9,13,13,39,20,20,14,21,12,14,12,21,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,15,8,8,6,10,7,9,9,21,11,10,7,10,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,10,7,9,9,35,18,18,13,20,11,13,11,20,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,9,13,13,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,19,10,10,8,12,7,9,7,12,7,7,5,8,5,7,7,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,15,8,9,7,11,7,10,10,18,10,11,9,16,11,16,15,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,14,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,8,5,5,4,5,4,5,5,10,6,6,5,9,6,8,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,8,5,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,16,9,9,6,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,14 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,20,10,10,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,7,4,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,11,6,6,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,4,3,4,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,26,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,14,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,24,12,12,9,13,8,9,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,10,6,6,5,8,5,6,6,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,5,3,3,3,4,2,2,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,5,4,5,5,9 +-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,20,10,10,7,11,6,7,6,12,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,12,7,7,5,7,4,4,4,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,6,5,10,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,38,19,19,13,20,11,13,11,19,10,11,9,14,9,12,11,20,11,11,8,12,7,8,7,13,7,8,7,11,7,9,9,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,20,11,12,9,13,8,11,10,18,10,10,8,12,7,9,8,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,9,14,8,10,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,10,6,8,7,14,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,20,10,10,7,10,6,8,7,9,5,6,5,8,5,7,7,10,5,5,4,6,4,5,4,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,4,5,6,11 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,2,8,5,5,4,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,23,12,12,8,12,7,8,7,14,8,8,6,9,6,8,7,13,7,7,6,8,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,6,4,7,5,6,6,10,6,7,6,9,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,7,4,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,6,5,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-5,-12,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,7,11,6,6,5,6,4,5,5,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,19,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,7,5,6,5,8,6,8,8,34,17,17,12,18,10,12,11,20,11,12,9,13,8,11,10,19,10,10,8,11,7,8,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,12,7,8,6,9,6,8,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,14,8,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,19,10,10,7,10,6,8,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,4,6,6,10 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,5,5,7,5,7,7,12,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,6,8,8,34,17,17,12,18,10,12,11,19,10,11,9,13,8,11,10,19,10,10,8,11,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,13,7,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,10 +-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,19,10,10,8,12,7,8,7,12,7,7,6,10,6,8,7,13,7,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,10,6,7,6,10,6,6,5,8,6,9,9,17,9,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,24,12,12,9,13,8,9,8,13,7,7,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,9,8,14,10,14,14,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,11,21,11,12,9,14,8,10,9,16,9,11,9,16,11,16,16,31,16,16,11,16,9,10,9,15,8,8,6,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,6,8,8,15,8,9,7,11,7,10,10,19,11,13,11,18,13,19,19,72,36,36,25,37,21,24,20,34,18,19,15,24,15,20,19,35,18,19,13,20,12,15,13,24,13,15,12,20,13,18,18,34,18,18,13,20,12,15,13,22,12,12,9,15,10,14,13,25,14,15,11,17,10,13,12,22,12,13,11,18,12,17,17,34,18,18,12,18,10,12,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,16,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,68,34,34,23,35,20,24,20,34,18,19,15,24,15,21,20,39,20,21,15,22,13,17,15,28,16,18,14,23,15,21,20,39,20,20,13,19,11,13,11,18,10,12,9,15,9,12,12,22,12,12,9,15,9,11,10,19,11,12,10,16,11,15,15,30,16,16,11,15,9,10,8,14,8,8,7,11,7,10,10,18,10,10,8,13,8,11,11,21,12,13,11,19,13,20,20,38,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,13,24,14,17,14,24,17,26,26,56,29,29,20,29,17,20,17,31,17,18,13,21,13,17,16,29,15,15,11,17,10,12,11,19,10,11,9,14,9,12,12,23,12,12,8,12,7,9,9,16,9,9,7,11,7,10,9,16,9,10,7,11,7,10,9,16,9,11,9,15,11,16,16,30,16,16,11,17,11,14,12,22,12,13,10,16,11,15,14,27,14,15,11,16,10,13,12,22,13,15,12,20,13,18,18,35,18,18,13,19,11,14,12,22,12,13,11,18,12,17,17,32,17,17,12,18,11,14,13,23,13,16,14,24,16,23,23,38,19,19,13,20,12,15,13,23,12,13,10,15,10,14,13,24,13,14,10,15,9,10,9,16,9,11,9,16,11,15,14,27,14,14,10,16,10,13,11,20,11,12,9,15,10,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,28,15,15,10,15,9,10,8,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,11,7,8,6,10,7,9,9,18,9,9,6,8,5,6,5,7,4,4,3,4,3,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,7,10,10,18 +-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,19,11,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,20,10,11,8,12,7,9,8,15,9,10,8,12,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,7,12,7,9,8,13,9,14,14,28,15,15,10,15,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,7,4,5,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,9,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,3,3,3,4,4,6,4,4,4,6,4,6,5,9 +-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,4,3,13,7,8,6,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,5,7,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,18,10,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,19,10,11,8,12,8,10,9,15,9,10,8,12,8,12,11,20,10,10,7,10,6,6,5,10,6,6,5,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,14,14,10,16,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,6,8,7,11,6,6,5,8,6,8,7,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,10,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,11,11,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,5,3,4,4,6,4,6,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,5,4,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,24,13,13,9,12,7,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,6,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,24,12,12,8,12,7,8,7,12,7,7,6,8,6,7,7,13,7,8,6,8,6,7,6,10,6,7,6,8,6,8,8,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,6,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,12,6,7,5,7,4,6,5,8,5,6,5,8,6,9,9,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-9,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,14,7,7,5,8,5,6,5,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,8,8,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,8,8,17,9,8,6,8,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,35,18,18,12,18,11,13,11,17,9,10,8,12,8,11,10,20,10,10,7,11,7,8,7,14,8,8,7,11,7,9,9,19,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,6,10,6,8,7,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,9,5,6,5,9,6,9,9,35,18,18,12,18,10,12,10,18,10,11,8,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,19,10,10,7,10,6,6,5,11,6,7,6,9,6,7,6,12,7,7,5,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,6,10,7,10,11,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,13,8,10,8,14,10,15,15,29,15,16,11,16,9,11,9,15,8,8,6,10,7,9,9,15,8,8,6,8,5,6,6,9,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,5,9,6,7,6,9,6,8,8,17,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,9,5,6,5,8,5,7,7,16,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,5,4,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,10,6,6,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,4,2,2,2,4,3,3,3,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,6,4,4,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,4,3,4,4,7,4,4,3,5,4,5,5,12,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,24,12,12,8,13,7,8,7,12,7,8,6,9,6,8,7,15,8,7,5,8,5,6,5,10,6,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,23,12,12,8,13,8,9,7,13,7,8,6,8,6,8,7,13,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,6,5,10,6,8,7,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,7,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,8,4,4,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6 +-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,10,6,7,5,8,5,7,6,13,7,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,7,6,11,6,7,5,8,5,6,5,9,5,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-6,-9,-9,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,8,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,3,11,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,8,4,4,3,5,4,5,5,8,5,5,4,5,4,6,6,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,15,8,8,6,9,5,6,5,9,5,6,5,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,5,9,6,8,8,12,6,6,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,9,6,7,7,18,9,9,7,10,6,7,6,10,6,6,4,6,4,6,5,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,7,6,10,7,10,9,34,18,18,13,19,11,13,11,18,10,11,8,12,8,11,11,22,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,16,9,10,7,11,7,8,7,13,8,9,8,13,9,12,12,17,9,10,7,10,6,6,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,5,3,3,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,34,18,18,13,19,11,12,10,18,10,11,9,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,8,13,8,11,11,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,6,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,5,6,5,9,5,6,5,9,7,10,10,19,10,10,8,12,7,9,7,12,7,7,6,10,7,10,9,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,29,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,13,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,13,7,8,6,8,5,5,5,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,6,5,9,6,9,9,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,11,7,9,9,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,13,9,13,13,20,11,11,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,7,5,6,4,5,5,8,5,6,5,7,5,6,6,15,8,8,6,9,5,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,13,7,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3,3,4,3,4,5,9 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,7,4,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,4,3,3,3,6,4,4,4,6,4,5,5,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,5 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,3,8,5,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,6,4,4,4,6,4,5,5,19,10,11,8,10,6,8,7,11,6,6,5,7,5,6,6,12,7,8,6,8,5,6,5,9,5,6,5,8,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,11,6,6,4,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,4,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,8,12,7,7,6,11,6,7,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,7,4,5,5,9,5,6,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,12,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,4,5,3,4,4,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,23,12,12,8,12,7,9,8,13,7,7,5,8,6,8,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,5,10,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,23,12,13,9,14,8,9,7,12,7,7,5,8,6,8,7,13,7,8,6,9,5,6,6,12,7,7,6,10,7,9,9,14,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,10,6,7,5,8,5,7,7,11,6,7,5,8,5,7,7,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,14,8,8,5,7,5,6,6,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,8,5,7,6,10,7,11,11,14,8,8,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,8,4,4,3,4,3,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,6 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3 +0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,6,3,3,3,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,5,3,3,3,4,3,4,3,5,4,6,6,8,4,4,3,3,2,3,3,3,2,2,2,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,6,5,19,10,10,7,11,7,8,7,12,7,7,5,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,6,9,6,8,8,15,8,8,6,7,4,5,4,8,5,5,4,5,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,5,6,5,6,4,6,6,20,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,9,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,3,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,5,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3 +0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,7,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,13,7,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,5,4,4,3,5,4,5,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,16,9,9,6,9,6,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,2,2,2,1,1,1,1,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,3,3,4,3,4,5,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,10,6,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,22,12,12,9,13,8,9,8,13,7,7,5,8,5,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,7,7,10,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,7,6,11,6,7,6,10,7,9,9,35,18,19,13,19,11,14,12,20,11,12,9,15,10,13,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,14,27,14,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,10,8,13,9,14,14,24,13,13,9,12,7,8,7,11,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,4,4,3,3,2,3,3,5,4,5,4,7,5,7,7,14,8,8,6,10,6,7,7,12,7,9,7,12,8,11,11,36,19,19,13,19,11,14,12,21,11,12,8,12,8,11,10,18,10,10,7,11,7,9,8,13,7,8,7,12,8,12,12,19,10,9,6,8,5,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,18,9,9,7,10,6,8,8,14,8,8,7,11,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,18,12,17,17,34,17,17,11,16,9,11,10,17,9,9,7,11,6,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,19,10,11,8,12,7,9,7,12,7,8,6,9,6,9,9,16,9,9,7,10,6,8,8,15,9,11,9,15,11,16,16,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,6,13,7,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,22,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,4,5,4,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,4 +0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,14,8,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,10,6,5,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,5,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,4,6,6,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,8,5,7,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,19,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,7,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,9,6,7,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,4,5,13,7,7,5,7,4,4,4,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,4,2,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,5,5,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,6,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,3,3,5,4,4,4,5,4,5,5,13,7,7,5,8,5,6,5,8,4,5,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,6,3,3,2,2,2,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 +1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,1,2,1,1,1,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,4,6,4,5,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,14,7,7,5,6,4,5,5,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,20,11,11,8,11,7,9,8,13,7,8,6,8,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,9,5,5,4,7,4,5,5,9,5,6,5,8,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,3,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,10,6,6,5,7,4,5,4,8,5,5,5,8,5,7,7,20,10,10,7,11,7,8,7,11,6,6,5,8,5,6,5,11,6,6,5,8,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,5,5,11,6,6,4,6,4,5,5,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,11,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,6,9,5,6,5,8,6,9,9,12,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,5,3,4,3,4,3,4,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,8,4,4,3,3,2,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,5,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,12,6,6,4,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,4,4,8,4,4,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,4,5,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,5,7,4,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,2,3,3,5,3,3,2,3,3,4,4,17,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,5,8,6,8,8,25,13,13,9,14,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,9,7,11,7,10,10,20,10,10,7,10,6,7,7,12,7,7,5,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,6,3,3,2,3,2,3,3,6,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,23,12,12,9,14,8,9,8,14,8,8,6,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,6,9,5,5,3,4,3,4,4,6,4,4,3,5,4,6,6,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,13,7,8,6,10,6,8,7,13,8,9,8,13,9,13,12,24,13,13,9,12,7,8,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,9,6,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,6,9,6,7,7,12,7,8,7,11,7,10,10,16,8,8,6,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,4,4,3,5,4,5,5,10,5,5,4,5,3,3,2,2,1,1,1,0,0,0,1,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,5,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,2,3,3,4,4,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,3,3,4,3,5,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,9,6,7,6,9,5,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,4,5,4,5,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,3,4,3,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,4,5,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2 +1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,12,7,8,7,13,7,7,6,9,6,9,9,14,8,8,6,10,6,7,7,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,6,10,5,5,4,6,5,7,7,11,6,7,6,11,7,10,10,19,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,6,9,6,7,6,10,7,10,9,21,11,11,8,12,7,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,6,9,6,7,6,12,7,9,7,12,8,12,11,18,9,9,6,8,5,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,9,9,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,5,11,6,6,5,8,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,3,4,4,6,4,4,4,14,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,4,3,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,4,5,4,4,4,6,4,4,4,6,4,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,4,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-3,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,6,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,8,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,17,9,9,7,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,10,7,10,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,7,10,10,17,9,8,6,8,5,6,5,10,6,6,4,5,4,5,4,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,12,7,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,7,5,6,4,5,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,9,16,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,9,6,9,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,13,7,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,7,7,6,8,5,7,6,10,6,7,6,11,7,10,10,16,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,8,5,6,5,9,6,8,8,10,5,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,26,13,13,9,14,8,10,8,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,9,8,14,9,13,13,41,21,20,14,20,12,15,13,22,12,14,11,18,12,16,15,29,15,16,11,16,9,11,10,18,10,12,10,18,12,17,17,32,17,17,12,19,11,14,12,21,11,12,9,14,9,12,12,23,12,13,10,16,10,13,12,21,12,13,10,17,12,17,17,31,16,16,10,14,8,10,8,13,8,9,7,11,7,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,9,17,9,9,6,9,6,8,7,12,7,8,6,9,6,8,7,13,7,8,6,10,7,9,8,14,8,10,9,16,11,17,17,39,20,19,13,19,11,14,12,20,11,12,9,15,9,12,11,20,11,12,9,13,8,11,10,18,10,11,9,14,10,14,14,26,14,14,10,15,9,10,8,14,8,8,6,9,6,7,6,11,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,25,13,12,8,12,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,11,7,10,10,20,11,11,8,11,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,19,11,14,12,20,13,19,19,31,16,16,11,16,9,10,8,13,7,7,6,9,6,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,21,11,11,8,11,7,8,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,10,8,12,7,9,9,16,9,11,10,18,12,18,18,26,14,14,10,14,8,10,9,16,9,9,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,9,7,12,8,11,11,21,11,12,8,12,7,9,7,12,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,23,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,2,2,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,9,7,10,6,8,7,11,6,7,5,7,5,6,6,12,7,7,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,4,7,4,4,4,6,4,5,4,8,5,6,5,9,6,9,9,20,10,10,7,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,6,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,7,5,6,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,8,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,4,4,8,5,6,5,9,7,10,10,21,11,11,8,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,2,2,2,2,2,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,5,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,4,3,4,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,5,6,5,8,6,8,8,23,12,12,8,12,7,9,7,13,7,8,6,10,6,8,8,16,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,7,11,6,7,5,8,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,15,8,7,5,6,4,5,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,8,7,12,8,12,12,16,8,8,6,8,5,5,4,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,3,3,2,3,3,4,3,4,4,13,7,8,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,6,7,6,10,7,10,10,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,13,7,6,4,6,4,5,5,7,4,4,3,4,3,4,3,6,3,3,2,2,2,3,3,2,2,2,2,4,3,4,4,13,7,7,5,6,4,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,7,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,11,6,6,4,5,3,4,3,6,3,3,3,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,18,10,10,7,9,6,7,6,9,5,6,5,8,5,6,6,11,6,7,5,6,4,5,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,4,3,4,3,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0 +1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,4,3,4,3,4,4,6,3,3,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,15,8,8,6,9,5,6,5,9,5,5,4,5,3,4,3,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,7,4,5,4,5,4,6,6,10,6,6,5,8,6,9,9,30,15,15,10,14,8,10,9,15,8,9,7,10,7,9,8,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,7,12,8,11,11,17,9,9,6,8,5,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,14,8,8,5,7,4,5,5,8,4,4,3,5,4,5,5,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,24,13,13,9,14,8,10,9,15,8,8,6,10,6,8,8,11,6,7,5,7,4,5,4,7,4,5,4,7,5,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,5,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,14,14,18,9,9,7,10,6,7,6,10,6,6,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,2,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,10,6,7,7,12,7,9,7,12,8,11,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,5,4,6,5,7,7,15,8,7,5,7,5,6,5,8,5,5,4,5,3,4,3,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,12,7,7,5,6,4,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3 +0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,5,7,4,5,4,8,5,6,5,8,6,8,7,13,7,6,5,7,5,6,5,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,9,5,4,3,5,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,5,5,8,6,8,9,11,6,6,4,7,4,4,4,7,4,4,3,4,3,3,3,6,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,9,5,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,5,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-2,0,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-5,-3,-4,-4,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,8,5,5,4,6,4,4,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,8,8,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,8,5,6,5,7,5,7,6,11,6,6,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,5,6,6,12,7,8,7,12,8,11,11,20,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,7,4,5,4,7,5,8,8,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,7,6,11,6,7,6,11,8,12,12,15,8,8,6,8,5,5,4,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,3,4,3,4,4,11,6,6,4,5,3,4,3,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6 +1,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,5,3,4,3,4,3,5,4,7,4,4,4,5,4,5,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-3,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,6,4,4,3,5,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,6,5,7,7,22,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,8,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,9,5,6,5,7,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,8,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,10,6,6,6,10,7,11,11,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,3,4,3,4,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,5,7,7,12,6,6,5,8,5,5,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,4,3,3,2,3,3,9,5,6,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,5,7,7,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,18,9,9,6,9,6,6,6,10,6,6,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,5,3,4,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,6,6,10,7,10,10,14,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,4,4,4,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-9,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-7,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,10,5,5,3,4,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,2,1,1,1,1,1,1,2,3,2,3,2,6,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,6,4,4,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,40,21,21,14,21,12,15,13,23,12,13,10,15,9,12,11,21,11,12,9,13,8,9,8,15,9,11,9,15,10,15,15,23,12,12,8,12,7,9,8,14,8,9,7,11,7,9,9,16,9,9,7,11,7,10,10,18,10,12,11,19,13,19,18,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,8,10,9,17,10,12,11,19,13,19,19,34,17,17,11,16,9,11,10,17,9,9,7,11,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,8,5,6,6,10,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,13,8,11,11,20,11,13,11,20,14,20,19,26,13,13,9,13,7,8,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,6,5,9,6,7,6,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,8,5,7,7,12,7,7,5,6,4,5,4,6,4,5,4,6,4,6,6,15,8,9,6,9,6,8,7,13,7,8,6,9,6,9,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,23,12,12,9,14,8,9,8,14,8,8,7,11,7,10,9,16,9,9,6,9,6,7,7,12,7,7,6,10,7,9,9,20,10,10,7,9,5,6,5,9,5,4,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,5,4,6,6,16,8,8,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-13 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,9,5,6,4,5,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,21,11,11,8,11,7,8,7,13,7,7,6,8,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,10,14,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,5,3,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,9,5,6,4,6,4,4,3,5,3,2,2,4,2,2,2,5,3,2,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,22,12,12,8,12,7,8,7,14,8,8,6,8,6,8,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,8,6,10,7,10,10,16,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,5,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,5,5,8,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,4,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,11,6,6,4,6,4,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-7 +0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,16,9,9,6,9,5,6,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,2,2,3,3,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,25,13,13,9,14,8,10,9,16,9,9,7,10,7,9,8,14,8,8,6,9,6,7,6,12,7,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,6,12,7,9,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,11,6,7,5,8,5,6,5,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,6,9,6,8,7,10,6,8,7,12,8,11,11,24,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,7,8,6,10,7,9,8,15,9,10,8,14,9,13,13,16,8,8,6,8,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,7,13,7,8,6,8,5,6,5,6,4,4,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,15,8,8,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,3,5,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,3,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,5,10,6,6,5,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,20,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,6,4,6,4,4,3,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,4,5,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,6,6,4,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,12,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,5,8,8,12,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,11,7,8,6,11,8,11,10,11,6,6,4,5,4,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,1,1,1,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,5,6,11,6,6,4,6,4,5,4,7,4,3,2,3,2,3,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,7,4,5,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,36,19,19,13,20,12,14,12,21,11,11,8,13,8,10,9,20,11,11,8,13,8,10,9,16,9,11,9,14,9,13,13,24,12,12,9,13,8,10,8,14,8,8,6,9,6,9,9,14,8,8,6,10,7,10,9,17,10,12,10,18,12,18,18,29,15,16,11,16,9,11,9,15,9,10,8,12,8,10,9,18,9,9,6,9,6,7,7,12,7,8,7,11,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,9,16,9,10,9,15,10,15,16,33,17,17,12,18,10,12,10,17,10,11,8,13,8,11,10,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,7,15,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,11,6,6,5,8,6,8,8,18,10,10,8,12,8,11,11,20,11,13,11,19,13,19,19,21,11,11,8,11,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,7,5,7,8,16,8,8,6,9,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,6,5,8,5,6,5,9,6,9,8,18,9,9,6,8,5,5,4,7,4,5,4,5,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,9,8,12,7,8,6,9,6,7,7,12,7,9,8,13,9,13,13,20,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,8,6,9,6,7,6,11,7,8,6,10,6,8,8,16,9,9,6,9,5,6,5,8,5,6,5,7,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,4,3,4,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,20,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,13,7,7,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,11,6,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,4,4,6,4,5,5,5,3,4,3,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,24,12,12,9,13,8,10,8,13,7,7,5,8,5,7,6,13,7,8,6,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,9,8,14,8,8,6,9,5,6,5,8,5,6,5,6,4,6,6,12,7,7,5,9,6,8,8,13,8,10,8,14,10,14,14,14,7,7,5,6,4,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,13,7,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,7,7,20,10,10,7,11,7,8,7,11,6,6,5,7,4,6,5,11,6,6,5,7,4,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,8,4,5,4,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,12,8,12,11,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,3,3,4,4,7,4,4,3,4,3,5,5,8,5,5,5,8,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,4,6,6,10,6,6,4,6,4,4,3,7,4,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,34,17,17,12,18,11,13,11,18,10,10,8,12,7,9,9,18,10,10,7,11,7,9,8,13,8,9,8,13,9,12,12,22,11,11,8,12,7,9,7,13,7,8,6,8,6,8,8,15,8,9,7,11,7,9,9,17,10,12,10,16,11,16,16,29,15,15,11,16,9,11,9,16,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,11,7,8,7,12,8,12,11,19,10,11,8,11,7,8,8,14,8,9,7,11,7,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,16,16,32,16,16,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,5,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,7,7,13,8,9,7,12,8,12,12,21,11,12,8,12,7,9,7,12,7,8,7,11,7,10,10,19,10,11,8,13,8,11,10,18,11,13,11,20,13,19,19,18,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,18,9,9,6,8,5,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,13,7,8,7,12,8,12,12,21,11,11,8,11,7,9,8,13,7,8,6,10,7,9,9,14,8,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,6,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,4,4,10,5,5,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,4,2,3,2,3,2,3,2,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,23,12,12,8,12,7,9,7,12,7,7,6,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,6,7,6,11,6,7,5,8,5,7,7,12,6,7,5,7,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,8,8,6,10,6,8,7,13,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,4,8,5,6,4,7,4,6,6,10,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,7,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,9,5,5,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,4,3,4,3,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,11,12,9,14,9,11,10,19,11,12,10,16,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,15,8,8,6,10,6,6,5,9,5,6,5,8,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,13,7,8,6,11,7,10,10,18,10,11,8,14,9,12,11,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,7,5,6,6,12,7,7,6,8,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,10,6,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-6,-4,-6,-6,-14 +1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,10,5,5,3,5,3,4,3,4,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,33,17,18,12,17,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,11,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,10,11,8,14,9,11,10,19,11,12,10,17,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,9,9,15,8,8,6,9,6,6,5,9,5,6,5,7,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,14,8,8,6,11,7,10,10,18,10,11,8,14,9,11,10,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,7,5,7,6,12,7,7,6,8,5,7,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-10,-5,-7,-6,-11,-7,-12,-12,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-9,-14,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-11,-23,-12,-13,-9,-15,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-38,-18,-18,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-1,-1,0,0,0,0,1,1,1,2,2,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,6,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,9,5,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,5,3,4,4,7,6,9,9,17,9,10,7,10,6,7,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,7,6,11,6,7,6,10,7,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,8,11,10,19,10,11,8,13,8,11,11,21,12,14,12,22,15,22,21,66,33,33,23,34,19,22,19,33,18,19,15,25,16,21,20,38,20,20,14,21,12,15,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,19,12,16,16,30,16,17,13,20,12,16,15,28,16,18,15,25,17,25,25,49,25,25,17,26,15,17,15,26,14,15,11,17,11,15,14,26,14,15,11,17,10,13,12,22,12,14,11,19,13,18,18,34,18,18,12,18,11,13,11,19,11,13,10,17,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,30,21,31,31,62,31,31,21,32,18,21,18,32,17,19,14,23,15,21,20,39,20,21,15,24,14,18,16,30,16,18,15,25,17,24,24,46,24,24,16,23,13,16,14,24,13,15,12,20,13,18,17,33,18,19,14,21,13,17,15,27,15,17,14,24,16,23,23,44,23,23,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,11,17,11,14,13,24,13,15,12,20,14,20,20,39,20,21,15,22,13,16,14,25,14,16,12,20,13,18,17,33,18,19,14,22,14,19,18,34,20,24,21,37,25,38,38,34,18,18,12,18,11,14,12,21,11,12,9,15,9,12,11,20,11,11,8,12,7,9,8,14,8,9,7,10,7,10,10,19,10,11,8,13,8,9,8,15,8,9,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,8,10,9,16,9,9,7,10,7,9,8,15,8,9,7,11,7,8,7,13,8,9,8,13,9,12,12,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,14,27,14,15,11,18,11,14,12,22,13,16,13,23,15,22,22,44,22,22,15,21,12,15,12,21,11,11,8,11,7,9,8,13,7,7,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-13,-27 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,7,11,6,8,7,13,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,9,7,10,7,9,8,15,9,10,9,15,11,16,16,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,11,20,10,11,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,8,11,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13 +0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,2,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,13,7,7,6,9,6,8,8,13,7,8,6,9,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,8,16,9,10,9,15,11,16,16,32,17,17,12,17,10,12,10,17,9,10,8,12,8,11,11,19,10,10,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,9,7,10,6,8,8,15,8,9,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-2,-3,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,4,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,7,4,4,4,6,4,6,6,10,6,6,4,7,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,6,8,6,8,7,13,7,7,6,9,6,7,6,11,6,7,5,9,6,8,8,16,8,8,6,8,5,6,6,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,5,7,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,4,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,8,13,9,13,13,12,6,6,5,7,4,6,5,8,4,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,8,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,2,1,1,0,1,1,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,6,4,4,3,3,2,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,5,5,10,6,6,5,7,5,7,7,10,6,8,7,11,8,11,11,33,17,17,12,17,10,11,10,18,10,10,8,12,8,11,10,20,10,10,7,10,6,7,7,14,8,8,7,11,7,10,10,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,9,13,7,8,6,9,6,7,7,14,8,8,6,9,6,7,7,13,8,9,7,11,7,10,10,18,9,9,7,10,6,7,7,10,6,6,5,8,6,8,8,14,8,9,7,10,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,18,10,12,10,17,9,10,8,12,8,10,10,18,10,11,8,12,7,9,8,15,8,9,7,12,8,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,10,7,9,8,15,9,10,8,12,8,12,12,23,12,11,7,10,6,7,7,11,6,6,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,10,11,18,10,10,7,11,7,9,8,12,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,17,10,13,11,19,13,19,19,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,5,5,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,11,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,8,8,12,6,6,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,6,6,5,8,6,8,7,12,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,6,4,6,6,11,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,12,7,9,8,14,10,14,14,12,6,6,5,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,6,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,8,4,5,4,6,4,5,5,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,9,9,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,5,6,6,10,6,8,7,12,8,12,12,10,6,6,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,4,2,3,3,4,3,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,5,4,6,4,6,5,9,5,5,4,7,4,5,4,7,4,4,4,6,4,4,4,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,4,11,6,6,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,3,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,3,3,6,4,4,4,6,4,5,5,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,34,17,17,12,18,10,11,9,16,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,10,6,8,8,14,8,8,6,10,7,10,10,13,7,8,6,9,6,8,7,12,7,9,8,14,10,14,14,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,9,7,12,8,11,11,17,9,9,7,11,7,8,7,12,7,7,6,10,7,10,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,16,16,11,17,10,11,9,16,9,9,7,12,8,11,10,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,21,11,12,8,12,7,9,7,12,7,7,5,8,6,8,8,17,9,10,7,10,7,9,8,14,8,9,8,13,9,12,12,23,12,12,8,11,6,7,6,10,6,6,5,7,5,7,7,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,11,11,9,14,9,11,10,18,11,13,11,20,14,20,20,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,16,9,10,7,11,7,9,8,14,8,10,8,13,9,12,12,18,9,9,6,8,5,6,5,9,5,6,5,7,4,5,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,6,5,7,5,7,7,10,5,5,4,4,3,4,3,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,19,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,4,4,3,5,4,5,4,7,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,6,5,9,5,6,6,10,7,10,10,18,9,9,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,5,6,4,6,4,6,6,12,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,10,6,6,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,10,6,7,7,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,4,3,4,3,6,4,4,3,4,3,4,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,10,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,4,4,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,5,6,5,8,6,8,9,22,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,15,8,8,6,9,6,7,6,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,10,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,7,6,10,6,8,7,11,8,11,11,20,11,11,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,11,7,9,8,14,9,13,13,14,7,7,5,6,4,5,5,7,4,4,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,7,4,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,5,5,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,4,5,4,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,4,7,5,6,5,9,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,5,6,5,8,5,5,5,7,5,7,7,12,7,7,5,7,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,8,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,10,6,8,7,11,8,11,11,12,6,6,4,5,3,4,3,5,3,3,2,4,3,4,4,6,3,3,3,3,3,4,3,5,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,7,4,5,5,9,5,6,5,8,6,8,8,9,5,5,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,6,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,11,6,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9 +-3,-1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,2,2,4,3,3,3,4,3,5,5,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,6,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,2,2,2,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,11,6,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,7,6,9,6,8,8,14,8,10,8,14,9,13,13,35,18,18,12,18,11,13,11,18,10,11,8,13,8,10,10,18,10,10,7,11,7,8,8,14,8,9,8,14,9,12,12,21,11,11,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,6,7,6,10,6,7,6,10,7,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,11,15,8,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,10,17,9,10,8,12,7,9,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,9,9,20,10,10,7,11,6,7,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,15,8,9,8,13,9,13,13,26,13,13,9,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,7,12,7,7,6,9,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,19,13,18,18,19,10,10,7,9,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15,8,9,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,15,8,8,5,7,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-9,-19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,5,3,3,2,4,3,3,3,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,6,4,5,4,8,5,6,5,7,5,7,7,10,6,6,5,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,8,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,4,4,4,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,6,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-6 +-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,1,1,2,2,2,2,2,2,2,2,2,2,2,3,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,6,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,4,6,4,6,6,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,5,5,11,6,6,4,6,3,3,3,6,4,4,4,6,4,6,5,6,4,5,4,6,4,4,4,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,9,5,5,3,4,3,3,3,7,4,5,4,6,5,7,7,9,5,6,5,8,5,7,6,9,5,6,6,10,7,11,11,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,7,5,6,6,16,8,8,6,9,5,6,5,8,4,4,3,6,4,5,5,9,5,6,4,5,3,4,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,5,8,4,4,3,4,2,2,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,8,6,8,8,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,6,4,6,7,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-2,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6 +-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,5,8,5,7,6,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,6,11,7,10,10,27,14,13,9,12,7,8,7,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,7,6,9,6,9,9,12,7,7,5,8,5,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,10,6,6,4,5,3,4,4,8,5,5,4,7,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,24,12,12,9,13,8,9,7,11,6,6,4,6,4,5,5,12,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,18,10,10,7,9,5,6,6,10,6,6,4,5,4,5,4,10,6,6,5,7,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,12,7,7,5,6,4,4,3,5,3,4,3,5,3,4,3,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,5,9,6,7,6,11,8,12,12,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,5,7,7,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,4,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,1,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,3,4,3,3,3,3,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,5,8,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,8,6,8,8,8,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,7,5,7,8,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,0,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,2,2,3,2,2,2,4,3,3,3,-5,-2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,8,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,8,8,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,9,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,4,5,5,11,6,7,6,10,7,10,10,9,5,6,4,6,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,4,3,3,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,16,9,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,7,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,6,4,4,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,5,8,5,5,4,6,4,5,5,10,6,7,6,8,6,8,8,22,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,7,5,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,11,6,6,4,7,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,10,7,10,10,5,3,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,8,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,20,11,11,7,10,6,7,6,10,6,6,4,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,10,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,1,1,1,2,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,11,6,7,6,9,6,8,8,15,9,11,9,16,11,15,15,40,20,20,13,19,11,12,10,18,10,10,8,12,8,10,10,19,10,10,7,10,6,8,7,11,6,7,6,11,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,14,8,9,7,10,6,8,7,13,8,9,7,11,8,11,11,17,9,9,6,9,6,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,8,8,14,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,10,17,12,17,17,40,20,20,13,19,11,13,11,19,10,11,8,13,8,10,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,6,10,6,7,5,8,5,7,7,26,14,14,10,15,9,11,10,17,9,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,8,7,11,8,11,11,20,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,11,10,19,11,14,12,20,13,19,19,17,9,9,6,9,5,6,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,8,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,11,8,12,8,10,9,16,9,11,10,18,12,18,18,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,5,3,2,1,1,1,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25 +-3,-1,-2,-1,-2,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,7,10,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,10,6,6,5,7,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-7,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,11,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,9,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,6,7,11,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,0,-1,0,-1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,8,4,5,4,5,4,5,5,8,5,6,5,7,5,8,8,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,-8,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,4,3,3,3,4,3,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,10,5,5,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,6,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,20,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,8,5,6,5,8,6,8,7,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,9,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,3,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,3,4,3,3,2,1,1,2,2,3,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,15,8,8,6,7,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,3,2,2,2,5,3,3,3,5,3,4,5,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,14,8,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,3,2,4,3,3,3,4,2,2,2,3,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,4,7,4,4,4,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,8,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,4,5,5,8,5,5,4,7,5,8,8,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,5,8,6,8,7,8,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,5,7,5,8,8,14,8,9,7,12,9,13,13,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,6,5,8,5,7,7,12,7,9,7,12,8,11,11,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,1,1,1,0,-1,0,1,1,1,1,1,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,5,3,3,2,4,3,4,3,5,4,4,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,2,1,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,3,3,3,4,3,4,3,4,3,5,4,5,5,14,8,8,5,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,4,8,5,6,5,7,5,8,8,8,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,-1,0,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,4,5,4,6,6,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,8,5,5,3,4,3,4,3,7,4,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,7,4,5,4,5,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,8,4,4,3,4,3,5,5,9,6,7,6,10,6,8,8,14,7,7,5,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,9,5,6,5,8,6,9,10,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,7,4,4,4,6,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,3,2,1,1,1,1,2,2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 +2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,4,4,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,4,6,4,5,5,8,5,5,4,8,6,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,7,5,7,7,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-5,-11 +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,4,5,5,8,5,5,4,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,7,7,2,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,9,5,6,4,6,4,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,5,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,4,4,7,5,6,5,8,6,9,9,25,13,13,9,14,9,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,18,10,10,7,10,6,8,7,13,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,20,10,10,7,9,6,7,6,10,6,6,5,9,6,7,7,12,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,5,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,5,5,10,6,6,5,8,5,7,7,13,8,10,8,14,10,14,14,21,11,11,8,11,6,6,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,5,5,8,6,8,8,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,8,5,5,4,7,5,6,6,14,8,8,6,10,6,7,6,11,6,7,6,9,6,7,7,12,7,7,5,7,5,7,7,12,7,8,7,12,9,13,13,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,1,1,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,6,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,6,4,5,5,7,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,2,2,5,3,4,4,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,8,8,12,6,6,4,7,4,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,8,5,6,5,7,5,8,8,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-11 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,11,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,5,4,6,6,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-5,-3,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,5,3,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,11,6,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,5,8,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,4,4,6,4,6,5,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,10,6,7,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,5,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,5,6,6,4,4,3,4,3,3,2,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,9,9,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,1,0,0,0,1,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,7,11,6,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,3,2,3,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,1,1,1,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,9,9,22,12,12,9,13,8,10,8,14,8,8,6,9,6,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,15,8,8,6,10,6,7,7,12,7,7,6,9,6,7,6,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,16,9,9,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,11,8,12,12,18,10,10,7,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,13,7,6,4,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,7,7,12,7,9,7,12,8,10,10,0,0,0,0,-1,0,0,0,-1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,6,6,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,1,2,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,5,4,6,4,4,4,6,5,7,7,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,10,6,6,4,6,4,4,4,8,5,5,3,5,3,4,4,9,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,10,6,6,4,7,4,4,4,8,5,5,4,6,4,5,4,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,6,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,5,3,4,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,8,4,4,3,4,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,4,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,23,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,9,6,8,8,13,7,8,6,8,5,6,5,7,4,4,3,4,3,4,4,10,5,5,4,6,4,4,4,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,10,5,5,4,6,4,6,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,4,6,4,6,6,12,7,7,5,8,5,7,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,13,7,7,5,6,4,5,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,7,4,4,4,6,4,6,6,11,6,7,5,8,5,6,6,12,7,7,6,10,7,9,9,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-7,-4,-6,-6,-14 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,4,3,4,2,3,2,3,2,3,2,3,2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,8,5,5,4,7,5,6,6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,2,2,2,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,8,5,6,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,8,8,13,7,8,6,8,5,6,5,10,6,6,5,7,5,7,7,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,13,9,13,7,8,7,13,7,8,6,10,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-25,-12,-13,-8,-13,-7,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-22,-11,-12,-8,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,2,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,16,8,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,6,7,6,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,13,19,19,47,24,24,16,24,14,16,13,23,12,13,10,17,11,15,15,29,15,15,10,15,9,12,11,19,11,12,10,16,11,15,15,30,16,16,11,15,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,26,13,13,9,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,7,11,8,11,10,19,11,13,10,17,12,17,18,29,15,15,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,13,9,14,9,11,10,17,10,12,10,16,11,15,15,28,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,11,8,11,12,23,12,11,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,10,15,15,28,14,14,10,14,8,10,9,15,9,10,8,14,9,13,12,22,11,11,8,12,8,10,9,17,10,12,10,18,12,17,17,40,21,21,15,22,13,15,13,22,12,13,9,14,9,13,12,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,21,11,11,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,6,9,6,8,7,12,7,9,8,14,10,14,13,25,13,14,10,14,8,9,7,12,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,27,14,15,11,16,10,12,10,18,10,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,10,9,15,10,15,15,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,1,1,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-24 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,10,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,6,5,10,7,9,9,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-7,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,5,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,8,6,8,7,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,10,7,10,10,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,5,5,8,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 +0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7 +0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-5,-4,-7,-4,-5,-4,-8,-5,-9,-9,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,1,1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,3,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,9,5,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,7,7,11,7,8,6,10,7,10,10,25,13,13,9,14,8,9,8,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,5,10,6,6,5,9,6,9,10,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,22,12,12,8,11,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,6,4,5,4,8,5,6,5,8,5,7,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,4,7,5,8,8,13,7,8,6,8,5,5,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,5,8,6,8,8,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11 +1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,5,4,5,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,4,3,3,3,7,4,4,4,7,5,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,5,8,5,5,4,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,1,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,7,7,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-9,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,1,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,29,15,15,10,15,9,10,8,14,8,9,7,10,7,10,9,17,9,9,6,9,6,7,6,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,5,8,5,6,5,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,10,7,9,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,6,4,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,6,11,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,14,7,7,5,7,4,5,4,6,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,11,10,21,11,11,8,11,7,8,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,7,5,6,5,7,5,7,7,17,9,9,7,9,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,3,2,2,3,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,5,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6 +1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4 +0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-3,-11,-5,-6,-4,-6,-3,-4,-3,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,3,2,2,1,0,0,0,0,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,9,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,13,7,7,5,6,4,5,4,8,5,5,4,5,4,5,5,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,6,4,6,7,13,7,8,6,8,5,6,5,7,4,4,3,5,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,5,7,7,17,9,8,6,8,5,5,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,6,4,4,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,4,6,4,6,6,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-8 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,4,2,3,2,3,2,3,2,3,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,5,4,4,4,6,4,6,6,14,7,7,5,8,5,5,4,8,4,4,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,4,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,4,5,9,5,6,4,5,4,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,11,6,5,4,5,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,1,1,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,2,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,1,1,1,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,3,2,2,1,1,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,4,5,5,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,4,5,4,5,5,7,4,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,6,4,4,3,3,3,4,4,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,3,6,4,4,3,5,4,5,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,3,2,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,3,5,3,4,3,5,3,4,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 +-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-5,-10,-6,-9,-9,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,3,4,3,5,6,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,11,9,15,10,15,15,35,18,18,13,19,11,13,11,18,10,11,8,12,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,22,11,11,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,8,6,9,5,6,6,10,6,6,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,12,6,6,4,6,4,6,5,9,5,6,4,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,11,27,14,14,10,16,9,11,9,16,9,9,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,4,5,4,12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,6,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,5,4,6,5,7,7,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,12,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,4,6,4,5,5,9,5,6,5,8,6,8,9,20,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,4,4,5,4,5,5,13,7,6,5,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,0,0,0,0,0,1,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,10,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,10,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,8,8,6,8,5,5,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,9,6,9,9,12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,5,5,6,4,4,4,6,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,4,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,5,3,3,3,4,3,3,3,8,5,5,3,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,4,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,5,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,9,5,5,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,5,6,5,7,5,8,8,19,10,10,7,10,6,8,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,6,5,11,6,6,4,7,4,5,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,8,8,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,3,2,2,2,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,4,4,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,17,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,2,1,1,1,5,3,3,3,5,3,4,3,5,3,4,3,5,4,6,6,15,8,9,6,9,5,6,5,8,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,12,9,13,13,32,17,17,11,16,10,12,10,17,9,10,7,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,11,6,7,5,7,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,22,12,12,8,11,7,8,7,11,7,8,6,10,6,8,8,10,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,3,3,3,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,8,4,4,3,6,4,4,4,8,5,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-3,-6,-3,-5,-5,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,6,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,13,7,7,5,8,5,5,5,7,4,5,4,6,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,5,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,7,6,12,7,8,7,12,9,13,13,29,15,16,11,16,9,10,8,16,9,9,7,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,6,6,10,6,7,6,10,7,11,11,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,9,5,6,6,10,7,9,9,16,8,8,6,9,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,8,4,4,3,5,4,5,5,9,5,6,5,8,6,9,9,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17 +-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,5,4,5,4,8,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,3,3,2,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,4,4,4,6,4,5,4,6,4,6,6,12,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,6,9,5,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,4,3,6,4,4,4,8,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,7,4,5,4,6,4,5,4,7,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-8,-5,-7,-7,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,11,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,7,5,8,8,25,13,13,9,13,7,8,6,10,6,6,5,7,5,6,6,11,6,7,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,10,7,9,9,18,10,10,8,12,8,11,11,21,12,15,13,23,16,23,23,53,27,26,18,26,15,17,14,24,13,14,11,17,11,14,14,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,28,14,14,10,15,9,11,10,19,10,11,8,13,9,12,11,21,11,12,9,15,9,12,11,19,11,14,12,21,14,20,20,35,18,18,12,16,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,9,9,18,9,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,9,16,11,17,17,32,17,17,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,20,11,11,8,12,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,10,10,18,10,12,10,17,11,16,15,44,22,22,15,23,13,16,13,22,12,12,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-7,-16,-8,-10,-8,-16,-11,-17,-17,-34 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,7,4,4,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,13,9,12,12,28,14,14,10,14,8,10,8,13,7,8,6,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,12,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,6,5,9,5,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,4,4,4,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,4,6,4,6,5,10,6,6,4,7,4,5,5,7,4,4,4,6,4,6,6,12,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3,-3,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,15,8,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,9,8,14,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,8,6,8,7,15,8,9,7,10,6,7,7,11,6,6,5,8,6,9,9,18,10,10,7,10,6,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,6,9,5,6,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,6,6,4,6,4,4,3,3,2,2,2,4,3,4,4,7,4,4,4,6,4,5,4,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,6,10,7,9,9,24,13,13,9,12,7,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,9,5,5,4,5,4,5,4,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,14,8,8,5,7,4,5,5,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,4,5,3,4,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,6,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,8,6,10,7,10,10,21,11,10,7,10,6,8,6,11,6,6,4,6,4,6,5,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,7,5,6,5,9,6,9,9,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,8,7,17,9,9,6,8,5,6,6,9,5,5,4,7,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,9,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,7,6,9,6,9,9,17,10,12,10,17,11,16,16,34,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,19,10,11,8,12,7,9,8,14,8,8,7,11,7,10,10,21,11,11,7,10,6,7,6,10,6,7,6,10,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,6,5,7,5,8,8,15,8,8,5,7,4,4,3,4,3,4,3,5,3,4,4,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,19,10,11,8,11,6,7,6,11,6,6,5,8,5,7,6,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,5,10,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,5,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,5,3,4,3,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,10,21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,7,5,6,5,10,6,6,4,6,4,6,5,7,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,3,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,5,3,3,2,3,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,7,16,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,8,6,9,6,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,5,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-5,-5,-12 +-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,1,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,7,7,10,6,7,6,11,8,12,12,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,4,3,3,3,4,3,3,3,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,7,4,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,6,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,8,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,10,8,13,9,14,14,25,13,14,10,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,5,4,6,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,20,10,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,8,13,9,13,13,24,13,13,9,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,5,8,5,7,7,13,7,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-10,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,2,3,3,5,3,3,3,5,4,5,5,3,2,2,2,4,3,4,4,6,3,3,3,4,3,5,5,8,5,5,5,8,5,7,7,12,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,26,15,18,15,27,18,26,26,46,24,24,16,23,14,17,15,26,14,15,11,17,11,14,14,26,14,14,10,16,10,13,11,20,11,13,11,18,12,17,16,28,14,14,10,15,9,12,10,18,10,11,9,14,9,12,12,23,12,13,10,15,9,12,11,21,12,14,11,19,13,19,19,32,16,16,11,17,10,12,10,17,9,10,8,12,8,11,11,22,11,11,8,11,7,9,8,13,7,8,7,11,7,10,10,24,12,12,9,13,8,9,7,12,7,7,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,11,7,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,6,6,13,7,8,6,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,7,13,8,10,9,16,11,16,16,37,19,19,13,19,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,10,6,6,5,9,5,6,4,6,5,7,7,10,6,6,4,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,4,6,3,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-13,-6,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-10,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-10,-13,-10,-19,-13,-20,-20,-42 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,4,7,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 +-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,9,5,6,5,9,5,6,5,9,6,7,7,14,8,8,7,10,6,8,8,15,9,10,9,15,10,15,15,26,14,14,9,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,7,7,11,7,8,6,11,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,14,7,7,5,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,6,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,6,4,4,4,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,10,6,8,7,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,12,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-6,-3,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,9,5,5,4,6,5,8,8,16,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,19,10,11,8,12,8,10,10,18,9,9,7,10,7,9,8,12,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,10,8,13,9,12,12,22,12,12,9,13,8,9,7,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,10,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,11,6,7,5,8,5,6,5,9,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,7,5,8,5,5,4,7,4,4,3,4,3,5,5,6,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,20,10,10,7,11,6,7,6,12,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,7,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-3,-2,-3,-2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-5,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,4,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,6,6,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,14,8,10,9,14,10,14,15,26,13,13,9,14,8,10,8,15,8,9,7,10,7,9,9,14,8,8,6,8,5,6,6,10,6,6,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,13,7,8,6,8,5,6,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,7,4,5,4,7,5,8,8,15,8,8,6,7,5,6,5,10,5,5,4,6,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,5,3,4,3,4,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,5,10,6,6,5,7,5,6,5,9,5,6,6,9,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,6,6,5,9,6,9,9,15,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,12,7,7,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,7,9,6,6,6,9,6,6,5,7,5,6,6,9,5,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,7,5,6,5,9,5,5,4,5,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,6,5,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 +-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,1,1,2,3,2,3,3,5,4,6,6,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,21,11,10,7,10,6,7,6,10,6,6,5,8,5,6,6,13,7,8,6,10,6,8,7,13,7,8,6,10,7,11,11,19,10,11,8,13,8,11,10,17,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,47,24,24,16,24,14,17,15,26,14,15,11,18,12,16,15,24,12,12,9,13,8,11,10,17,10,11,9,15,11,16,16,29,15,15,11,17,10,12,10,18,10,11,9,14,10,14,14,22,12,12,9,15,9,12,11,20,11,12,10,17,12,17,17,31,16,17,12,17,10,11,10,17,9,10,8,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,12,23,12,11,8,11,7,9,8,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,9,16,8,8,6,9,6,8,8,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,5,8,5,6,5,8,5,5,5,8,6,8,9,16,9,10,8,12,8,10,9,17,10,12,10,17,11,16,16,33,17,17,12,17,10,12,10,18,10,11,8,12,7,9,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,14,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,13,7,7,6,8,5,7,6,11,7,8,6,10,7,9,9,17,9,10,8,11,7,10,9,17,10,12,10,17,12,18,18,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,9,6,9,6,8,7,11,7,8,6,10,7,11,11,20,10,10,7,12,7,8,7,13,7,8,6,9,7,10,9,15,8,8,6,11,7,9,8,14,8,8,7,11,8,12,12,21,11,12,8,11,7,8,7,11,6,7,6,8,6,8,7,12,6,6,5,8,5,6,6,9,6,7,6,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,9,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,6,4,4,4,8,5,5,4,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-13,-27 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,7,5,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,15,10,15,9,10,8,14,8,9,7,10,7,9,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,10,10,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-5,-4,-10,-5,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-27,-13,-12,-8,-12,-6,-8,-6,-12,-5,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,7,6,10,6,8,7,11,8,11,11,20,11,11,8,12,8,10,9,17,9,10,8,14,9,13,13,25,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,49,25,26,18,26,15,17,14,24,13,15,11,18,11,15,14,26,13,13,9,14,9,11,10,17,10,11,9,16,11,17,17,30,16,16,11,17,10,11,10,18,10,11,9,14,10,14,13,22,12,13,10,16,10,12,11,20,11,13,10,17,12,17,17,32,17,17,12,17,10,11,10,16,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,7,10,6,7,7,13,8,9,7,12,8,12,13,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,7,4,5,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,5,5,8,6,8,9,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-14,-7,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 +-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-4,-3,-6,-3,-5,-5,-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,6,5,8,5,7,7,14,8,8,6,8,6,7,6,12,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,10,12,10,18,12,18,18,33,17,17,12,18,10,12,10,16,9,10,8,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,10,9,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,8,12,7,8,7,11,6,7,6,8,6,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,11,11,22,11,11,8,11,6,8,6,11,6,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-13,-13,-26 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,4,3,6,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,17,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,49,25,25,17,26,15,18,14,24,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,17,10,12,10,17,11,16,16,31,16,16,11,17,10,12,10,18,10,12,9,15,10,14,13,23,12,13,10,15,9,12,11,20,11,12,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,7,13,9,12,12,22,12,12,8,13,7,8,7,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,10,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,8,6,8,5,5,5,8,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-11,-7,-11,-10,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-40 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,16,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,50,25,25,17,26,15,18,14,25,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,18,10,12,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,12,9,15,10,13,13,23,12,13,10,15,9,12,11,20,11,13,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,22,12,12,8,13,8,9,8,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,7,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-13,-10,-19,-13,-20,-20,-40 +-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,7,6,10,7,11,11,22,12,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,17,12,19,12,16,15,28,16,19,15,26,18,27,27,53,27,27,19,29,17,20,17,31,17,18,13,20,13,17,17,32,17,17,12,18,11,14,13,25,14,16,13,23,16,24,24,46,24,25,17,26,15,19,17,31,17,20,16,28,19,28,27,53,28,30,22,36,22,30,28,52,30,36,30,53,36,53,53,106,54,54,36,54,30,36,30,53,28,30,22,36,22,30,28,53,27,28,20,32,19,24,21,38,21,24,19,33,21,30,30,58,29,29,20,29,17,21,18,31,17,18,14,23,15,21,21,40,21,21,15,23,14,18,16,30,17,19,16,28,18,26,26,51,26,27,19,28,16,20,17,30,16,17,13,22,14,19,17,32,17,18,13,21,13,16,14,26,15,18,15,26,17,25,25,49,25,25,18,27,16,21,19,34,19,21,16,26,17,24,24,46,24,26,19,30,18,24,23,43,24,29,24,43,29,44,44,86,43,43,29,42,24,28,23,41,22,23,17,28,17,23,21,40,21,21,15,23,14,17,14,25,14,16,13,22,15,21,21,40,21,21,15,24,14,18,16,28,16,18,14,23,15,20,20,38,20,21,16,25,15,20,19,35,20,23,19,33,22,33,33,64,33,33,23,34,19,23,20,35,19,20,16,26,16,22,21,40,21,22,16,25,15,20,18,34,19,23,19,32,21,31,31,61,32,33,23,35,21,26,23,41,22,25,20,34,22,31,30,58,31,33,24,38,23,30,28,52,29,34,28,50,34,50,50,99,50,51,34,51,29,35,29,51,27,28,21,33,20,26,24,46,24,24,17,27,16,20,17,30,17,19,16,28,18,26,26,50,25,25,17,26,15,19,16,29,15,16,12,20,13,17,17,32,17,17,12,19,12,15,14,27,15,17,14,24,16,22,22,42,22,22,15,22,13,15,12,21,11,12,10,16,10,14,13,23,12,13,10,16,10,13,12,22,13,15,13,22,14,20,20,39,20,20,14,21,13,16,14,25,14,16,12,20,13,19,19,36,19,21,16,25,16,21,20,38,21,25,21,37,25,38,38,74,38,38,26,38,22,26,22,39,21,22,17,27,17,22,20,37,19,20,15,24,15,19,17,30,17,20,16,27,18,26,26,50,26,26,18,27,16,19,16,27,15,17,13,22,14,19,18,34,18,18,13,21,13,16,15,27,15,18,15,26,18,26,26,50,25,25,17,25,14,16,14,24,13,14,11,19,12,16,15,28,15,16,11,17,10,13,12,23,13,16,14,24,16,23,23,46,24,24,17,25,15,18,16,28,16,18,15,25,16,23,22,43,23,25,19,30,18,24,22,42,23,27,22,39,26,38,38,76,38,38,26,38,22,26,23,41,22,24,18,29,18,24,23,44,23,24,17,25,15,18,16,29,16,17,14,23,15,22,21,41,21,22,15,22,13,15,13,23,13,14,11,19,13,18,17,32,17,18,13,20,12,16,15,27,15,18,15,27,19,28,28,56,29,29,20,29,17,20,17,30,16,17,12,19,12,15,14,25,13,13,10,15,10,13,12,22,12,13,11,18,12,17,17,32,16,16,11,16,9,11,9,16,9,10,8,13,9,12,12,22,12,12,9,14,9,12,11,19,11,13,11,18,12,17,16,30,16,16,11,15,9,11,9,15,8,8,6,8,5,5,4,6,3,2,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-8,-16,-8,-10,-9,-17,-11,-17,-17,-34,-17,-18,-12,-19,-10,-13,-11,-21,-11,-13,-10,-19,-12,-18,-18,-38,-20,-22,-16,-27,-16,-23,-21,-42,-23,-27,-23,-42,-27,-40,-40,-81 +-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,13,9,13,8,10,9,16,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,27,18,27,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,11,9,16,9,10,8,12,8,11,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,11,7,8,8,13,8,10,8,14,9,13,13,25,13,13,10,14,9,11,10,17,10,11,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,21,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,32,17,17,12,18,10,12,10,18,10,11,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,17,12,18,11,13,12,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,18,15,26,14,14,11,17,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,8,11,11,20,11,13,11,19,13,20,20,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,14,8,9,7,12,8,10,10,17,9,9,7,11,7,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,6,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,8,8,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-20,-13,-20,-20,-40 +-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,10,7,10,6,8,7,14,8,9,7,12,8,12,12,23,12,12,9,13,8,10,9,17,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,26,18,26,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,10,9,16,9,10,8,12,8,12,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,13,27,14,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,13,8,10,8,14,9,13,13,25,13,14,10,14,9,11,10,17,9,10,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,8,11,11,20,11,12,9,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,12,10,16,11,17,17,32,16,16,11,18,10,12,10,19,11,12,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,17,15,26,14,14,11,18,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,9,12,11,20,12,14,11,20,14,20,20,38,20,20,13,19,11,14,11,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,13,7,8,7,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,7,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,19,13,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,11,7,8,7,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,7,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,0,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-21,-11,-14,-11,-20,-13,-20,-20,-41 +-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,7,4,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,7,5,7,4,6,5,10,6,7,6,9,6,9,9,16,9,9,6,9,6,7,6,12,7,7,6,10,7,10,10,18,10,11,8,12,8,11,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,11,8,13,8,11,10,19,10,10,8,11,7,8,8,13,7,8,7,12,8,11,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,6,5,9,6,7,6,10,6,9,9,17,9,9,6,9,6,7,7,12,6,7,6,10,6,9,8,15,8,9,7,10,6,8,8,14,8,10,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,7,7,14,8,8,6,9,5,6,6,9,5,6,5,8,6,7,7,13,7,8,6,8,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,14,8,11,10,18,10,12,10,17,12,17,18,34,17,17,12,18,10,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,7,6,10,6,7,6,10,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,8,8,15,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,8,6,10,6,9,8,16,8,8,6,10,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-27 +-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,4,4,6,5,7,7,10,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,16,8,8,6,9,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,8,14,8,9,8,13,9,13,13,24,12,12,9,13,8,10,9,17,10,11,9,15,10,14,14,27,14,15,11,18,12,16,15,26,15,18,15,26,18,26,26,52,26,26,18,27,16,19,16,27,15,16,12,20,13,17,15,28,15,15,11,16,10,13,11,18,10,12,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,9,7,12,8,12,11,20,11,12,9,14,8,10,9,15,9,10,8,14,9,13,13,27,14,15,11,16,9,11,9,16,9,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,10,9,17,10,11,9,14,9,13,12,22,12,13,9,14,9,12,11,20,12,14,12,22,15,22,21,42,22,22,15,22,13,15,12,20,11,11,9,14,9,12,11,21,11,11,8,11,7,8,7,14,8,9,7,12,8,10,10,21,11,12,8,12,7,8,7,13,8,9,7,12,8,11,10,20,11,11,8,12,8,10,9,18,10,11,9,16,11,16,16,33,17,17,12,17,10,13,11,19,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,16,9,11,9,16,11,16,16,31,16,17,12,17,10,13,11,19,11,13,11,18,12,16,15,31,17,18,13,20,12,16,15,27,15,17,14,25,17,25,26,50,25,25,17,26,15,18,15,26,14,15,11,18,11,14,13,25,13,13,9,14,9,11,10,15,9,11,9,15,10,14,14,24,13,13,9,14,9,11,9,16,9,9,7,11,7,10,9,15,8,9,7,11,7,8,8,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,19,11,13,11,20,14,20,19,38,20,20,14,20,12,14,11,20,11,11,9,14,9,11,11,21,11,12,8,12,8,10,9,17,9,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,8,9,7,12,8,10,9,17,9,10,7,10,6,8,8,15,9,10,8,14,10,14,13,26,14,14,9,13,8,10,8,13,7,8,6,10,7,9,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,11,22,12,13,10,15,9,12,12,21,12,13,11,19,13,19,20,38,19,19,13,20,12,14,12,20,11,12,9,14,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,12,12,21,11,11,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,15,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,15,8,8,6,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,4,6,4,6,6,9,5,6,5,8,6,8,8,16,8,7,5,6,4,5,4,7,4,5,4,5,3,3,3,3,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-20,-10,-11,-7,-12,-7,-10,-9,-21,-11,-13,-11,-20,-13,-20,-20,-41 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,11,9,15,8,9,7,11,7,10,9,16,9,9,6,9,6,7,6,10,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,9,6,6,5,8,6,8,8,16,8,9,6,9,6,7,5,9,5,5,4,7,4,5,5,10,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,24,12,12,9,13,8,9,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,5,4,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,8,15,10,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,9,5,5,4,7,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,11,6,7,5,8,5,7,7,11,7,8,7,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,12,22,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-22 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,18,11,13,11,17,9,10,8,12,8,12,11,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,8,8,14,8,8,6,10,6,7,6,11,7,8,6,10,7,9,9,19,10,10,7,11,7,8,6,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,9,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,14,8,8,6,7,4,5,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,7,5,8,7,13,7,8,6,9,6,7,7,12,7,8,7,10,7,10,10,22,12,12,8,12,7,8,7,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,21,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,21,11,12,9,13,8,10,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,11,7,10,10,16,9,9,7,9,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,9,13,13,26,14,14,10,14,8,10,8,13,7,8,6,10,6,8,7,15,8,8,6,8,5,6,6,12,7,8,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,6,11,7,8,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,9,13,8,10,9,14,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,10,7,10,10,20,10,10,7,10,6,8,6,10,6,6,5,7,5,6,6,8,5,6,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-8,-7,-12,-8,-12,-13,-27 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,15,9,10,8,15,10,15,15,30,15,15,10,15,9,10,9,14,8,8,6,10,7,10,9,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,4,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,6,9,6,7,6,12,7,7,5,7,4,5,5,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,9,5,5,5,8,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,3,5,3,4,3,5,4,6,6,8,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,16,9,10,7,11,7,10,9,16,9,10,8,13,9,13,13,25,13,14,10,14,9,11,9,16,9,9,7,12,8,10,9,17,9,10,7,11,7,8,8,14,8,9,8,14,10,14,14,25,13,14,10,15,9,11,9,16,9,11,9,15,10,14,14,26,14,15,11,18,11,15,14,26,15,18,15,25,17,25,26,53,27,27,18,27,15,17,14,25,13,14,11,18,12,16,15,27,14,15,11,16,10,12,10,18,10,12,10,17,11,16,16,27,14,14,9,13,8,9,8,14,8,9,7,11,8,11,11,20,10,10,7,11,7,9,9,16,9,10,9,15,10,14,13,27,14,13,9,13,8,9,8,15,8,9,7,11,7,9,8,17,9,9,7,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,15,9,10,9,16,9,10,8,13,8,11,11,21,11,12,9,14,9,11,11,20,12,14,12,21,14,21,21,40,20,20,13,19,11,14,12,20,11,12,9,13,8,11,10,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,15,15,32,17,17,12,19,11,14,12,20,11,12,9,13,8,11,11,21,11,12,9,14,9,11,9,16,9,11,10,17,12,17,17,32,17,17,12,17,10,12,10,18,10,12,9,15,11,16,16,32,17,18,13,20,12,16,14,26,15,18,16,28,19,27,27,53,27,27,19,28,16,18,15,26,14,14,10,16,10,13,12,25,13,14,10,16,10,12,10,18,10,12,10,17,11,15,15,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,14,7,7,5,8,5,7,7,12,7,8,7,13,9,12,12,22,11,11,7,10,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,15,9,12,12,22,13,15,13,22,15,21,20,39,20,19,13,19,11,14,12,20,11,12,9,13,8,11,11,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,9,15,10,14,14,27,14,14,10,15,9,10,8,13,7,8,6,10,7,10,10,15,8,9,7,11,7,9,8,14,8,9,8,13,9,12,12,21,11,12,8,12,7,9,8,15,8,9,7,11,8,11,10,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,21,14,21,12,14,12,20,11,11,9,14,9,13,12,23,12,12,8,12,7,9,8,14,8,9,8,13,8,11,11,23,12,12,8,12,7,9,8,13,7,8,6,9,6,9,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,30,16,16,11,15,9,10,8,14,8,8,7,11,7,9,8,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,28,14,14,10,14,8,9,8,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,10,9,15,10,15,14,28,14,14,10,15,9,10,8,14,8,8,6,9,6,7,7,13,7,8,6,9,5,6,6,10,6,7,6,9,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20 +-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,3,6,4,4,3,5,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,15,15,30,15,15,11,15,9,10,9,15,8,8,7,10,7,10,9,16,8,8,6,10,6,7,6,12,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,5,11,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,12,7,8,6,9,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,8,5,6,5,6,4,6,6,11,6,6,4,6,4,4,4,7,5,6,4,7,5,6,6,10,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,19,10,10,7,10,6,7,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,17,9,10,8,12,7,9,8,14,8,10,9,16,11,16,15,29,15,15,11,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,7,5,6,5,8,5,6,4,7,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,6,5,7,4,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,8,6,9,6,7,7,13,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,6,5,8,6,8,8,16,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,11,23,12,12,8,12,7,9,7,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,8,5,6,6,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21 +-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,6,4,5,5,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,6,4,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,4,3,4,5,5,3,3,3,4,3,3,3,7,4,4,3,5,4,5,6,10,6,6,5,8,5,7,7,11,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,17,17,36,18,18,12,18,10,12,10,18,10,11,8,12,8,11,11,19,10,11,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,10,7,11,7,9,8,16,9,9,7,10,6,7,6,12,7,7,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,6,9,5,6,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,13,7,8,6,9,5,6,5,11,6,7,6,10,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,12,7,7,6,10,7,10,9,18,9,9,7,10,6,6,5,10,6,6,5,9,6,8,8,13,7,8,6,8,5,6,6,11,6,7,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,6,8,8,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,27,14,14,10,14,8,10,9,14,8,8,6,9,6,8,8,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,5,4,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,5,11,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,6,6,10,6,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,7,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,4,2,2,3,6,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,5,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,9,15,10,14,15,30,16,16,11,16,9,11,9,15,9,10,7,11,7,10,9,17,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,17,9,8,6,8,5,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,7,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,21,11,12,8,12,7,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,12,7,7,5,6,4,6,5,10,6,6,6,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,14,8,10,9,16,11,16,15,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,7,5,6,5,6,4,6,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,12,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,7,4,5,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,12,22,12,12,8,11,7,9,8,12,7,8,6,9,6,8,8,14,8,8,6,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,9,17,9,9,6,9,5,6,6,9,5,6,5,7,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,9,6,6,5,8,6,7,7,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,17,9,10,7,10,6,8,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,8,9,7,10,6,8,8,13,8,10,8,15,10,15,14,27,14,14,10,14,8,10,9,15,8,9,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18 +-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-2,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,6,6,5,3,3,3,4,3,4,3,5,3,4,4,6,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,15,15,28,15,15,10,14,8,10,8,13,7,8,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,10,8,14,10,15,15,23,12,12,9,13,8,10,9,15,9,10,8,14,9,13,13,24,13,14,10,16,10,14,13,23,13,16,14,25,17,26,26,54,28,28,20,30,17,20,17,31,17,18,14,22,14,19,17,32,17,17,12,18,11,14,13,24,13,15,12,19,12,17,16,29,15,15,10,14,8,9,8,14,8,9,7,12,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,16,11,15,15,21,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,10,18,10,11,9,16,10,14,14,26,14,14,9,13,8,9,8,13,7,8,6,10,7,10,10,18,10,10,8,13,9,12,12,22,13,15,12,20,14,20,20,38,19,19,13,19,11,13,11,20,11,12,9,14,9,12,12,23,12,13,10,15,9,11,10,17,10,11,9,14,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,9,6,9,9,16,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,34,17,17,12,17,10,12,10,16,9,10,8,12,8,11,10,19,10,11,8,13,8,10,10,18,10,12,10,18,12,17,17,30,16,16,12,18,11,13,11,19,11,12,10,16,11,15,15,29,16,17,13,20,12,16,15,28,16,19,15,26,18,26,27,51,26,26,18,27,15,17,14,25,13,14,11,18,11,15,14,26,14,14,10,14,8,10,9,17,10,11,9,15,10,14,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,9,16,9,9,7,11,7,8,7,12,7,8,7,11,8,11,11,24,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,12,6,6,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,12,8,12,7,9,9,16,9,10,8,13,9,13,12,23,12,12,9,14,9,12,11,21,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,22,12,13,9,14,9,12,11,21,11,11,8,13,8,10,8,14,8,10,8,13,9,12,12,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,9,17,9,9,7,11,7,9,9,17,9,10,8,14,10,14,14,24,12,12,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,20,11,11,8,13,8,10,9,15,8,9,7,11,7,10,10,19,11,12,9,14,9,11,10,18,11,13,11,19,13,20,20,38,20,20,14,20,12,15,13,23,12,13,10,17,11,14,13,24,13,13,9,13,8,9,8,13,7,8,7,12,8,11,11,22,12,12,8,11,7,9,8,13,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,17,11,15,15,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,8,7,12,7,8,6,9,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,7,10,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36 +-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,7,5,8,8,14,8,8,5,8,5,6,5,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,15,15,11,16,9,11,9,16,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,15,8,8,6,7,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,7,5,7,8,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,8,14,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,6,9,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18 +-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,14,14,28,15,15,11,16,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,16,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,5,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,6,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,6,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,21,11,10,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,7,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,6,6,5,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,4,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,6,9,5,6,6,10,7,9,8,16,8,8,5,8,5,6,5,9,5,5,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-9,-19 +0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,6,4,4,4,6,4,6,5,9,5,6,5,7,4,6,5,9,6,6,6,9,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,6,5,9,5,6,5,8,5,7,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,5,5,6,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,8,4,4,4,6,4,5,5,8,4,5,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,5,4,4,3,5,4,4,3,5,4,5,5,7,4,4,3,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,4,4,4,7,5,6,4,7,5,7,8,13,7,7,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,5,6,5,8,6,9,9,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,14,8,8,6,10,6,8,7,14,8,9,8,14,10,15,15,30,15,15,11,16,10,12,10,18,10,10,7,11,7,10,10,18,10,10,7,10,6,8,7,14,8,9,7,12,8,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,9,14,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,8,6,11,6,7,5,8,5,7,7,11,6,7,5,8,5,6,5,10,6,6,5,8,6,8,7,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,10,6,7,5,8,6,8,8,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,10,7,10,6,7,7,12,7,8,6,10,7,10,9,16,9,9,7,10,6,8,8,16,9,10,9,15,10,15,15,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,6,9,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,9,7,12,8,11,11,22,12,12,9,13,8,9,7,13,7,8,6,9,6,8,8,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,5,6,5,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,12,7,9,8,12,7,7,5,8,6,8,8,14,7,7,5,7,4,5,4,7,5,6,5,8,5,7,7,14,7,7,5,6,4,4,4,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,3,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,7,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,6,6,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,11,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,8,7,11,8,12,11,22,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,7,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,6,5,7,4,5,5,8,5,6,5,8,6,8,9,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,6,4,4,4,8,5,5,4,5,4,6,6,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,5,8,5,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,4,4,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,8,4,4,3,6,4,4,3,6,4,4,3,4,3,5,5,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,4,7,5,6,6,10,5,5,4,6,4,4,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,6,5,9,6,7,6,10,7,11,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,6,5,7,5,6,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,9,6,8,8,14,7,7,5,8,5,7,6,10,6,6,5,8,6,8,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,11,8,13,8,10,9,16,10,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,12,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,20,10,10,7,11,7,8,6,10,6,7,6,9,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,8,7,16,8,8,6,9,5,6,5,8,5,5,4,7,5,7,7,15,8,9,7,10,6,8,7,12,7,8,7,13,9,14,14,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,7,11,6,7,5,7,5,6,6,11,7,8,6,10,7,9,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,24,12,12,8,12,7,8,7,12,7,8,6,9,6,8,8,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,19,10,11,8,12,7,9,8,14,8,10,8,13,8,11,11,19,10,10,8,12,8,11,10,18,10,12,10,18,12,18,18,38,19,19,13,20,11,12,10,17,10,11,8,13,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,13,7,8,6,10,7,9,8,14,8,9,7,12,8,12,12,28,15,15,10,14,8,10,9,16,9,10,7,11,7,9,9,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,6,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,13,7,7,5,7,4,5,5,9,5,6,5,7,5,6,6,15,8,9,7,10,6,7,6,11,6,7,6,9,6,7,7,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,10,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,11,7,10,10,20,10,10,7,9,5,6,5,8,4,4,3,5,4,6,6,8,5,5,3,4,3,4,4,7,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-25 +-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,12,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,9,6,7,6,10,6,8,7,11,8,11,12,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,5,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,5,6,4,5,5,8,5,6,5,9,6,9,9,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,15,8,8,5,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,24,12,12,9,13,7,8,6,12,7,7,6,9,6,8,7,14,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,4,3,5,3,4,3,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,9,5,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,19,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,6,5,8,5,5,5,8,6,8,8,13,7,8,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,6,9,6,9,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,6,5,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,10,7,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,9,9,14,8,8,6,9,5,6,6,11,6,7,6,10,7,9,8,17,9,10,8,12,8,10,9,13,8,10,9,16,11,16,16,28,15,15,11,16,9,11,9,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,14,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,6,12,7,9,7,12,8,12,12,18,10,10,7,9,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,7,5,6,5,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,14,31,16,16,11,16,9,10,8,16,9,9,7,12,8,11,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,9,5,6,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,5,5,8,6,9,9,12,7,7,5,6,4,5,4,6,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,12,7,8,6,10,7,10,10,26,14,14,9,13,8,9,7,14,8,9,7,10,6,8,7,11,6,6,5,8,5,6,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,7,4,5,4,9,5,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,7,10,6,7,6,10,7,10,11,18,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,5,8,5,7,7,13,7,7,5,6,4,4,3,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,7,5,8,5,7,6,9,6,7,6,11,8,11,11,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,6,4,4,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,10,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,4,4,9,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,6,7,6,9,6,9,9,21,11,11,7,11,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,4,6,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,7,5,7,7,18,10,10,6,9,5,6,5,9,5,6,5,7,4,6,5,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,4,6,6,8,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,13,8,10,8,15,10,15,15,27,14,14,10,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,10,6,7,6,9,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,11,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,19,10,10,7,10,6,7,6,10,6,7,5,9,6,8,7,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,7,13,9,12,12,30,15,15,10,15,9,10,8,15,8,8,6,10,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,5,8,5,6,5,9,5,6,4,6,4,4,4,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,26,14,14,9,13,7,8,7,12,7,8,6,9,6,8,7,10,5,5,4,6,4,5,4,8,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,8,9,7,10,6,8,7,13,8,9,7,12,8,12,12,29,15,15,10,14,8,10,8,15,8,8,6,10,7,9,9,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,6,9,6,7,6,10,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,9,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,5,4,5,6,12,6,6,4,5,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,9,6,9,8,15,9,11,9,16,11,17,17,28,14,14,10,14,8,10,9,17,9,10,8,12,8,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,14,26,14,14,10,14,9,11,10,18,10,11,8,13,9,12,12,22,12,13,10,15,10,14,14,26,15,18,15,27,19,28,28,51,26,25,17,25,14,16,13,23,12,13,9,14,9,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,15,30,16,16,11,17,10,12,10,17,9,10,8,13,8,11,10,19,10,11,8,13,8,11,10,19,11,12,10,18,12,18,19,27,14,15,10,15,9,11,9,15,8,9,7,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,8,12,7,9,8,15,8,9,7,12,9,13,13,24,13,13,10,16,10,12,11,21,12,14,12,20,14,20,20,29,15,15,11,17,10,12,10,17,9,9,7,11,7,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,10,11,8,12,7,8,7,13,7,8,6,10,7,10,10,18,10,10,8,13,8,10,10,18,10,11,9,14,10,14,14,35,18,18,12,17,10,12,11,19,10,11,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,10,9,15,10,15,15,28,15,15,11,16,10,12,11,19,10,11,8,13,9,12,12,23,13,14,10,16,10,13,12,22,13,15,13,22,15,23,23,56,28,28,19,29,17,20,17,30,16,17,13,20,13,17,16,31,16,16,12,18,11,13,12,21,11,12,10,16,10,14,14,27,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,24,13,14,10,15,9,12,11,21,11,12,10,16,11,15,15,20,11,12,9,13,8,10,8,14,8,8,7,11,7,8,8,14,8,9,7,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,12,7,7,6,10,7,11,11,20,11,12,9,15,9,12,11,20,11,12,10,17,11,16,16,49,25,25,17,25,14,16,13,22,12,12,9,14,9,11,10,18,10,10,7,11,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,10,6,6,5,8,5,5,4,6,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,8,6,8,9,25,13,13,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,9,7,12,8,10,10,18,11,13,11,18,13,19,19,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,13,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,8,6,8,5,7,6,10,6,8,7,11,8,11,10,22,12,12,9,13,8,9,8,13,7,7,5,6,4,5,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,2,2,2,2,4,3,4,3,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-7,-12,-7,-11,-10,-21,-11,-13,-11,-21,-13,-20,-20,-42 +0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,14,8,10,8,14,10,15,15,26,14,13,9,13,8,9,7,12,7,7,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,7,4,4,4,5,4,6,5,10,6,6,4,7,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,7,6,12,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,11,6,7,6,8,6,8,8,11,6,6,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,6,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,17,9,10,7,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,9,6,8,8,14,8,10,8,15,10,15,15,26,14,14,9,14,8,9,8,12,7,8,6,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,8,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,7,7,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,10,5,5,4,7,5,6,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,5,4,6,5,10,6,6,4,6,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,6,8,5,6,6,12,7,8,7,11,8,12,12,29,15,15,10,16,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,12,7,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,10,6,7,6,8,6,8,8,11,6,6,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,24,12,12,9,13,7,8,7,12,7,7,5,8,5,7,6,10,6,6,5,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,5,4,6,4,6,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,3,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 +0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,6,9,5,5,4,7,5,7,7,12,7,7,5,6,4,5,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,12,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,15,9,11,9,16,11,16,15,26,14,14,10,14,8,10,8,13,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,7,6,8,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,7,7,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,6,10,6,7,5,8,5,5,5,9,5,6,4,6,4,5,4,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,6,8,7,18,9,9,6,9,5,6,5,10,6,6,4,6,4,6,5,10,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,12,12,28,15,15,11,16,10,12,10,15,8,8,6,10,7,9,9,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,5,6,6,8,5,6,5,7,5,6,6,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,12,12,8,12,7,9,8,13,7,8,6,9,5,6,6,11,6,7,5,7,5,6,5,8,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-11,-23 +0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,7,9,6,7,6,9,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,4,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12 +0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,3,2,3,2,3,2,3,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,6,4,5,5,7,5,6,5,7,5,7,7,17,9,9,6,9,5,6,5,9,5,6,5,7,4,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-7,-15 +-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,17,9,10,7,10,6,7,6,9,5,6,4,7,4,6,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-6,-13 +-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,8,5,7,6,11,7,8,6,10,7,11,11,18,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,9,8,14,8,8,7,11,7,9,9,17,10,11,8,13,8,11,10,17,10,12,10,16,11,15,15,28,15,15,10,15,9,11,9,16,9,9,6,9,6,7,7,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,10,7,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,11,19,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,3,3,3,4,3,4,4,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,8,11,11,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,12,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,7,5,8,6,8,7,11,6,7,5,7,4,5,5,9,5,6,5,9,6,7,7,15,8,9,6,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,10,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,26,14,14,10,15,9,10,9,15,8,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,7,10,10,16,9,9,7,10,6,8,7,11,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,9,5,6,5,8,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,1,1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,6,5,7,5,6,6,9,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,11,6,6,5,7,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,9,16,8,8,6,9,5,6,6,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,3,4,4,9,5,5,3,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,4,4,8,5,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,3,5,3,2,2,4,3,4,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,6,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,18,10,10,7,10,6,6,6,9,5,6,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,9,5,6,4,5,3,4,3,4,3,4,3,3,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,2,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,4,3,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,12,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,7,7,5,7,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,5,3,3,2,4,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,4,5,5,6,4,4,4,6,4,5,5,9,5,6,4,6,5,7,7,14,7,7,5,8,5,7,7,11,6,7,6,9,6,8,7,12,7,7,6,10,7,9,8,14,8,9,7,12,8,12,12,18,9,9,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,13,7,7,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,13,7,7,5,6,4,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,7,4,5,5,8,6,8,8,22,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,11,7,8,7,13,7,7,5,8,5,6,5,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,3,2,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,9,5,5,3,4,3,3,2,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,4,3,3,3,5,4,5,5,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-1,-1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,6,11,6,7,5,8,5,7,7,12,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,4,7,5,7,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,5,5,3,4,3,3,2,2,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,9,6,8,7,11,6,7,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-5,-2,-2,-1,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,6,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,27,14,14,10,16,9,11,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,11,20,11,13,11,19,13,20,20,28,14,14,9,13,8,9,7,12,7,8,6,9,6,8,7,12,7,7,6,9,6,7,7,12,7,8,6,10,7,10,9,13,7,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,10,7,11,11,24,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,6,5,9,6,9,9,17,9,10,8,12,7,9,8,14,8,10,8,13,9,13,13,23,12,12,8,11,7,8,6,10,6,7,5,8,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,16,8,8,5,7,4,5,5,8,5,5,4,7,4,5,5,8,5,5,4,7,5,7,7,12,7,8,7,11,7,10,10,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,11,6,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,9,7,12,8,10,9,17,10,11,9,15,10,15,15,32,17,17,11,16,10,12,10,17,9,10,8,12,8,10,9,16,8,8,6,8,5,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,13,7,7,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,3,4,3,3,3,4,3,3,3,5,3,4,4,17,9,9,6,8,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,4,6,6,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,5,3,3,2,3,2,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-13,-27 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,20,10,10,7,10,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 +-3,-1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,6,12,7,8,7,11,8,12,12,15,8,8,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,5,7,7,13,7,8,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,5,3,4,4,6,3,3,2,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,21,11,10,7,11,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,6,4,5,5,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,5,6,11,6,5,4,5,3,4,4,6,4,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,10,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,4,5,5,9,5,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,15,8,7,5,8,5,6,5,9,5,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,5,6,4,4,3,5,4,5,5,9,5,6,5,8,6,8,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,14,8,8,6,10,6,7,5,8,5,5,4,6,4,5,5,11,6,5,4,5,4,5,4,7,4,4,3,4,3,5,5,10,5,5,3,4,3,4,3,6,4,5,4,6,4,6,6,10,6,7,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,3,8,5,5,4,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,4,3,4,3,4,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,8,5,6,5,7,5,6,6,22,12,12,8,12,7,9,8,13,7,8,6,8,5,7,6,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,12,7,7,5,6,4,5,5,9,5,5,4,5,4,5,5,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,14,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14 +-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,4,4,5,3,4,3,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,4,14,8,8,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,6,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8 +-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,7,5,8,8,15,8,7,5,7,5,6,5,8,5,6,5,7,5,6,5,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,12,8,11,11,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,7,5,6,5,8,5,5,5,8,6,9,9,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,3,4,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,6,10,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,17,9,9,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,11,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,9,5,5,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,5,4,6,5,7,7,12,7,9,8,14,10,14,13,25,13,13,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,7,12,7,7,6,10,7,10,10,24,13,13,9,12,7,9,8,14,8,9,7,12,8,12,12,24,13,13,10,15,9,11,10,19,11,13,11,19,13,20,20,19,10,10,7,11,6,7,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,9,5,6,6,10,6,7,6,9,6,8,8,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,15,10,15,15,15,8,8,6,9,5,5,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,5,8,6,8,8,31,16,16,11,17,10,11,9,16,9,10,7,11,7,9,9,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,7,5,6,6,10,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,9,8,14,8,8,6,9,6,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,8,5,5,4,5,4,5,5,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,10,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,11,6,6,4,7,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,18,10,10,7,10,6,7,6,9,5,6,4,7,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,8,5,5,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,9,6,9,9,17,9,9,6,8,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,16,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,7,13,8,10,8,13,9,14,14,12,7,7,5,8,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,4,2,2,2,3,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,21,11,12,8,12,7,8,6,10,6,6,5,8,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,12,12,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,18,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +-2,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,8,7,12,8,12,12,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,12,11,23,12,13,10,15,9,12,11,20,11,13,11,20,13,19,19,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,4,3,6,4,4,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,6,8,8,16,9,9,6,8,5,5,5,8,5,6,5,8,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,8,13,8,10,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,7,5,7,7,13,7,7,5,8,5,5,4,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,6,4,4,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,32,16,16,11,16,9,10,8,15,8,8,6,10,6,8,7,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,21,11,11,8,12,7,9,8,11,6,6,5,8,5,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,4,4,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,8,8,14,8,9,8,14,9,13,13,11,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,5,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,4,3,4,4,21,11,11,8,11,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,15,8,8,6,8,5,6,5,8,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-10 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,14,9,12,11,21,12,14,11,20,14,20,19,16,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,13,8,10,9,14,10,14,14,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,8,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,13,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,7,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,6,4,4,4,8,5,5,3,5,3,4,3,4,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,1,0,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,21,12,12,9,14,9,12,11,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,14,8,10,9,14,10,14,14,14,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,13,9,12,13,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,4,4,3,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,5,4,7,5,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,4,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,20,11,11,7,10,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,7,6,10,7,10,9,17,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,20,11,11,8,13,9,12,11,21,12,15,12,21,15,22,22,42,21,21,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,21,21,40,21,22,15,23,14,18,16,28,15,17,13,22,14,20,19,37,20,21,16,25,16,22,21,39,22,27,22,39,26,38,37,28,14,14,10,15,9,10,8,14,8,8,6,10,6,7,6,11,6,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,5,4,7,5,8,8,14,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,28,15,15,10,14,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,8,7,11,8,12,12,22,12,13,10,17,11,14,14,26,15,18,15,27,18,27,27,27,14,14,10,15,9,11,9,15,8,8,6,10,7,9,9,16,9,9,6,8,5,7,6,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,6,5,9,5,5,4,7,4,5,5,8,5,6,5,9,7,10,10,20,11,11,8,12,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,7,6,10,7,11,11,21,11,11,8,11,7,8,6,10,6,7,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,60,30,30,21,31,17,20,17,29,16,17,13,22,14,18,17,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,21,11,11,8,13,8,9,8,13,7,7,5,8,5,7,7,12,7,8,6,10,6,8,8,15,8,9,7,12,8,12,12,24,13,14,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,13,9,14,9,12,11,21,12,14,11,19,12,17,17,33,17,17,12,17,10,11,10,17,9,10,8,13,9,13,12,23,12,13,10,16,10,13,12,22,13,15,13,24,16,24,24,42,21,21,14,21,12,14,11,18,10,10,7,11,7,10,10,18,10,10,7,10,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,9,6,7,6,9,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,11,11,42,22,22,15,22,13,15,13,24,13,14,10,16,10,13,12,21,11,12,9,14,9,11,10,18,10,11,9,16,11,15,15,30,15,15,11,16,10,12,11,19,10,11,8,13,8,11,10,19,10,11,8,11,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,3,3,4,3,3,3,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-16,-33 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,4,4,5,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,12,14,12,20,14,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,6,9,6,8,7,14,8,10,8,14,10,14,14,14,8,8,6,8,5,6,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,13,9,12,13,22,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-16 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,5,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,10,6,6,5,6,4,6,6,11,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,12,8,10,10,20,12,14,11,19,13,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,10,6,6,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,5,9,6,8,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,17,9,9,6,9,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,13,22,12,12,8,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 +0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,6,7,7,14,8,10,8,13,9,13,13,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,10,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,20,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11 +0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,3,2,2,1,0,0,0,-1,12,6,6,5,7,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,3,3,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,5,8,5,7,7,10,6,6,4,6,4,6,6,12,7,9,7,12,8,12,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,12,12,8,12,7,9,8,15,9,10,8,12,8,11,11,20,11,11,8,12,8,11,10,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,14,7,7,5,6,4,4,3,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,13,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,4,6,6,30,16,16,11,16,9,11,9,14,8,8,6,10,7,9,9,18,9,9,6,9,5,6,5,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,5,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,9,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,6,12,7,8,7,13,9,13,13,21,11,10,7,10,6,7,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,5,7,7,21,11,12,8,12,7,8,7,11,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-8,-17 +0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,9,5,6,5,7,5,7,6,11,6,7,5,7,5,7,6,12,7,8,6,11,8,11,11,9,5,5,4,5,3,4,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,4,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,11,6,5,4,6,4,4,3,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9 +0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,8,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,5,9,6,7,6,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,9,13,13,11,6,6,4,6,4,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,9,9,10,6,6,4,6,4,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,6,4,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,4,4,5,4,6,6,10,6,6,5,6,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,14,7,7,5,7,4,5,5,7,4,4,3,6,4,6,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,6,5,11,6,7,5,6,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,2,1,0,1,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-3,-5,-5,-10 +1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,7,4,5,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,11,6,7,5,7,5,7,6,11,7,8,6,10,7,11,11,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,5,8,6,7,7,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,1,1,1,0,1,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,1,0,0,0,0,13,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,7,4,3,2,3,2,3,3,4,3,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,8,6,8,8,14,8,9,7,12,9,13,13,24,12,12,8,11,7,8,7,12,6,6,5,7,5,7,7,12,7,7,6,9,6,7,6,10,6,6,5,9,7,10,10,22,12,12,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,10,17,12,17,18,16,8,8,6,9,5,6,5,7,4,4,3,3,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,12,14,8,8,6,9,5,6,5,9,5,6,5,7,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,31,16,16,11,17,10,12,10,16,9,9,7,10,7,9,9,19,10,11,8,11,6,7,6,10,6,6,5,8,5,6,6,9,5,4,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,9,5,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,6,10,6,8,7,11,7,10,10,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,14,10,14,14,18,9,9,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,6,5,7,4,5,5,13,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,4,5,5,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,7,16,9,9,6,9,5,6,6,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,10,6,6,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,9,10,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,0,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,8,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,5,5,9,5,5,4,7,5,8,8,14,7,7,5,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,7,5,6,6,12,7,8,6,9,5,6,6,12,7,8,6,11,7,10,10,9,5,6,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,7,4,4,4,6,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8 +1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,0,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,10,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,4,3,7,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,7,6,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,6,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,4,2,2,2,1,1,2,2,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,5,7,4,5,4,7,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,11,8,11,11,9,5,6,4,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,6,4,4,3,5,3,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,8,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,2,2,1,1,2,2,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,3,3,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,4,4,4,7,5,6,6,5,3,4,3,4,3,3,3,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,7,4,4,3,5,3,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,14,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,7,8,5,5,4,6,4,6,6,11,6,7,6,10,7,9,9,16,9,10,7,11,7,10,10,18,10,11,9,16,11,16,16,27,14,14,10,14,8,8,7,11,6,6,5,8,5,7,7,12,7,7,5,8,5,5,5,8,5,6,5,9,6,9,9,20,11,11,8,12,8,10,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,10,18,10,12,11,19,13,19,19,16,9,9,6,8,5,5,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,6,4,6,6,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,3,2,3,2,3,3,10,6,6,4,5,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,5,9,6,7,6,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,5,5,15,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,8,8,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,38,20,20,14,20,12,14,12,20,11,12,9,14,9,11,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,4,7,7,9,5,6,4,6,4,5,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,7,10,10,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,7,11,7,8,8,14,8,10,8,14,10,14,14,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,14,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,14,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,20,10,10,7,10,6,8,7,13,7,8,6,10,6,8,8,14,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,4,5,3,3,3,4,3,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-6,-9,-9,-19 +0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,3,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,11,6,6,5,6,4,5,5,8,4,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,3,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,6,4,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,6,3,3,3,4,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,6,6,5,3,3,2,4,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,2,1,1,1,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,10,6,6,5,7,5,7,6,11,7,8,6,10,7,10,10,15,8,8,6,8,5,5,4,8,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,11,7,8,6,10,7,11,11,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,3,7,4,4,4,6,4,5,4,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,5,3,3,3,4,3,3,3,3,2,3,3,4,3,5,5,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-11 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,13,7,8,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,3,3,3,4,3,6,4,4,4,6,4,6,6,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,3,3,2,3,2,3,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,5,3,3,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,15,8,9,6,9,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,3,4,3,5,4,5,4,2,2,2,1,1,1,2,2,2,2,2,2,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,9,8,13,9,13,12,18,10,10,7,9,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,6,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,13,8,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,5,3,2,2,2,2,2,2,4,3,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,3,2,3,3,4,4,7,4,5,4,5,4,6,6,7,4,4,3,3,2,3,2,3,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,28,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,13,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,4,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,9,9,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,5,4,6,5,7,7,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,4,4,7,5,6,6,14,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,4,3,5,5,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,8,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,8,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,2,1,1,1,1,1,1,1,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,4,3,4,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,8,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,-3,-1,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,12,7,9,7,12,8,12,12,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,3,5,3,2,2,2,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,11,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,5,3,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,5,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,12,7,7,5,8,5,6,5,10,6,6,4,7,5,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,8,5,7,7,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,5,4,6,5,5,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,4,2,2,2,2,2,2,2,5,3,4,3,5,4,6,6,5,3,4,3,3,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15 +3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,5,3,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,4,3,3,2,2,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,9,9,19,10,11,8,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,18,10,11,8,12,8,11,11,20,12,14,12,21,15,22,22,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,9,10,9,15,10,13,13,25,13,14,10,16,10,13,13,24,14,16,13,23,15,21,21,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,4,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,11,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,5,5,8,6,9,9,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,47,24,23,15,22,13,15,12,21,12,13,10,15,10,13,12,21,11,11,8,11,6,7,6,11,6,7,6,11,8,11,10,19,10,10,8,12,7,9,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,7,10,10,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,16,8,8,6,8,5,6,5,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,4,19,10,11,8,11,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,14,9,12,12,23,12,13,9,13,8,9,8,14,8,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-9,-8,-15,-10,-16,-16,-33 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,6,8,6,7,7,12,7,8,7,12,8,11,11,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,1,1,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,5,5,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,7,6,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,8,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,6,8,7,12,7,8,7,12,8,11,11,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,1,1,2,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,5,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,7,8,6,8,5,6,6,11,6,6,4,7,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,5,5,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,4,6,6,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,17,9,9,6,9,5,6,5,8,5,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,2,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,4,3,3,2,2,2,2,1,1,1,1,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,11,8,12,12,13,7,7,5,8,5,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,7,12,8,11,11,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,5,7,7,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,25,13,13,9,13,8,9,7,12,7,8,6,9,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,4,3,3,2,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,3,3,7,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,1,1,1,2,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16 +2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,4,5,4,5,4,7,4,5,4,7,5,7,7,1,1,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,4,3,3,2,2,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,4,6,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,3,4,3,5,3,4,3,4,3,4,5,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,18,10,10,7,9,6,7,6,9,5,6,5,7,4,5,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,3,2,2,2,3,3,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,3,6,4,6,5,8,4,4,3,5,3,4,3,4,3,3,2,3,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11 +2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,2,2,2,1,1,1,2,2,3,2,2,2,2,2,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10 +2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,8,6,10,6,8,8,14,8,9,8,13,9,14,14,18,9,9,6,9,5,6,6,10,6,6,5,7,5,6,5,7,4,4,3,5,4,6,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,12,7,8,6,9,6,8,8,14,8,9,8,13,9,12,12,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,7,5,3,4,3,4,3,3,2,2,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,6,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,5,3,3,2,3,2,2,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,29,15,14,10,14,8,10,8,14,8,8,6,9,6,8,7,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,1,1,0,0,0,0,0,0,0,1,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,5,3,4,3,4,3,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19 +2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3,5,3,4,3,5,4,5,5,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +3,2,2,1,0,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,7,5,6,5,8,5,7,7,10,5,5,4,6,4,4,4,9,5,5,4,6,4,6,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,9,7,10,10,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,19,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,4,4,12,7,7,5,8,5,5,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,3,3,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,6,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,8,5,5,4,6,4,5,4,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,7,4,4,4,6,4,5,5,9,5,6,4,6,4,5,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-4,-2,-4,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,4,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,4,2,3,3,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,6,4,4,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,17,9,9,7,10,6,7,6,9,5,6,5,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,10,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,5,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,4,3,4,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,6,6,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,16,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14 +4,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,3,5,3,3,3,5,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,11,8,12,13,18,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,18,10,11,8,12,8,10,9,16,9,11,9,16,11,16,17,25,13,14,10,14,8,10,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,9,22,11,11,8,11,7,8,6,10,6,6,5,7,5,7,7,14,8,8,7,11,7,10,9,17,10,12,10,16,11,16,16,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,5,8,6,8,7,3,2,2,2,2,2,2,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,8,4,4,3,3,2,2,2,3,2,3,3,5,4,5,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,31,16,17,12,17,10,13,11,20,11,11,9,14,9,11,11,20,11,11,8,11,6,7,6,10,6,7,5,8,6,8,7,17,9,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,9,8,18,9,9,7,10,6,7,6,11,6,6,4,5,3,4,4,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,6,4,6,6,14,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,5,8,6,8,8,13,7,7,5,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,11,7,9,8,13,7,7,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,4,7,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,8,19,10,10,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,10,6,6,4,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-13,-14,-29 +2,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,5,9,5,6,5,9,6,9,9,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +2,1,1,1,2,2,2,1,0,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,5,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,5,11,6,7,5,7,5,6,6,10,6,6,5,9,7,10,10,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,9,5,6,4,6,4,5,4,8,5,6,5,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,6,9,5,6,5,9,7,10,10,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,17,9,10,7,10,6,8,7,12,6,6,5,8,5,7,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-7,-4,-7,-7,-15 +2,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,5,4,5,4,6,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,5,4,5,5,7,4,5,4,7,5,7,7,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7,4,4,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-3,-5,-3,-5,-5,-11 +2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,4,8,5,5,4,6,4,4,4,7,4,5,5,8,6,9,9,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,8,5,7,6,11,6,7,6,10,7,11,11,17,9,8,6,8,5,6,6,10,6,6,5,7,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,10,7,11,11,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,3,4,4,6,4,4,4,4,3,3,2,2,2,3,3,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-2,-4,-4,19,10,10,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,3,3,3,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,4,3,7,4,4,4,6,4,6,6,10,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-9,-9,-19 +2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,4,3,3,3,3,3,4,3,8,4,4,3,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,5,6,4,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,7,5,6,6,9,5,6,5,8,6,9,9,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,6,4,6,4,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,4,3,5,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15 +3,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,13,7,8,6,8,5,6,6,10,6,7,6,10,7,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,24,12,12,8,12,7,8,7,13,7,7,6,9,6,8,8,15,8,9,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,7,8,6,9,6,7,7,13,7,8,6,10,7,9,9,16,9,11,9,15,10,15,15,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,1,0,0,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,28,15,15,11,16,10,12,10,17,9,9,7,11,7,9,8,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,5,8,5,5,4,6,4,5,4,7,4,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,4,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,5,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,9,5,5,4,7,5,7,7,9,5,5,4,6,3,3,3,4,2,2,2,3,2,3,4,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-13,-6,-7,-5,-10,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,4,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,6,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,8,6,10,7,10,10,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,7,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,3,2,2,2,3,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,5,3,4,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,-1,0,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,14,8,7,5,7,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,6,9,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,3,2,3,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,5,6,5,10,6,6,5,8,5,7,7,14,8,8,7,11,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,8,6,10,7,10,9,16,9,9,7,10,6,7,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,8,7,9,5,6,5,8,6,8,7,13,7,7,6,9,6,9,8,15,9,10,8,14,9,13,13,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,3,2,3,2,3,2,3,2,2,1,1,1,2,1,1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,26,13,13,9,14,8,10,9,15,8,8,6,9,6,7,7,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,8,5,6,5,8,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,6,7,11,6,7,5,7,4,5,4,6,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-30 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-4,-5,-4,-9,-4,-6,-4,-9,-6,-9,-9,-19 +1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,11,7,10,9,16,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,8,6,8,6,8,8,13,8,9,8,14,10,14,13,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,14,9,14,8,10,9,14,8,8,6,9,6,8,8,14,8,8,6,7,5,6,6,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,8,6,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,1,1,1,2,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,25,13,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,7,5,6,6,9,5,5,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,6,7,5,7,5,6,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,10,6,7,7,12,8,12,11,21,11,12,9,14,9,11,10,18,10,11,9,14,10,14,14,27,14,14,10,16,10,14,13,24,14,16,13,23,16,23,23,44,23,23,16,24,14,17,14,24,13,14,10,16,10,14,13,25,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,26,14,14,10,15,9,11,9,16,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,23,13,15,13,23,16,23,23,45,23,23,16,23,13,15,12,21,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,20,12,14,12,20,13,19,19,37,19,19,14,21,12,15,14,25,14,15,12,19,13,18,17,33,17,18,14,22,13,17,16,29,16,19,15,26,17,25,25,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,9,5,4,3,4,2,2,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-8,50,25,25,17,25,14,16,13,22,12,13,10,16,10,12,11,21,11,11,8,11,7,8,7,13,8,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,7,5,8,5,7,7,13,8,9,7,11,8,12,12,22,11,11,8,12,7,8,7,12,7,7,5,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,8,15,8,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,7,5,7,7,13,7,7,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,4,7,5,7,7,12,7,7,5,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-9,-12,-11,-22,-11,-13,-10,-19,-11,-16,-16,-32,-16,-17,-12,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-28,-28,-58 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,11,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,22,11,11,8,12,7,8,6,11,6,7,5,8,5,7,6,13,7,8,6,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,12,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,8,8,15,9,10,8,14,9,13,13,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,6,5,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,4,7,4,5,4,6,4,5,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,13,7,7,6,8,5,6,5,9,5,6,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,10,6,9,9,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,3,2,3,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,6,5,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,7,6,9,6,8,7,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,7,7,12,7,9,7,12,8,12,12,22,12,12,8,11,6,7,6,10,6,6,5,8,5,7,6,14,7,7,5,8,5,7,7,10,6,7,6,10,7,10,10,19,10,11,8,12,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,6,8,8,16,9,11,9,14,9,13,13,0,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,3,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,13,9,13,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,6,4,5,5,9,5,6,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,8,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-8,-6,-12,-8,-12,-13,-27 +2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-7,-15 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,5,3,3,2,4,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,7,5,7,7,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,3,2,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14 +3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,3,3,6,4,5,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,9,6,7,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,13,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,8,8,7,11,7,8,8,14,8,9,7,11,8,11,11,22,12,12,8,12,7,8,6,10,6,6,4,6,4,6,6,14,8,8,6,9,6,8,7,12,7,7,6,9,6,9,9,17,9,9,6,8,5,6,6,10,6,7,6,9,6,8,8,13,7,8,6,10,6,8,8,14,8,10,8,13,9,12,11,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,1,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,26,13,13,9,13,7,8,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,3,2,3,2,3,2,3,3,4,3,4,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,7,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,5,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-13,-13,-26 +2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,3,3,3,3,3,4,4,7,4,4,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,5,6,4,4,3,4,3,3,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,13,7,8,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,4,6,4,6,6,13,7,8,5,8,5,5,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,15,8,8,6,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,5,8,5,5,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,11,6,6,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,4,6,4,4,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,5,4,6,6,6,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,9,5,6,5,8,5,6,6,8,5,5,5,8,6,8,7,17,9,9,6,9,5,5,4,8,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,5,5,6,4,4,3,5,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,5,7,7,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,16,8,8,6,8,5,5,4,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,2,2,2,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,5,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,1,1,0,0,0,0,0,1,1,1,0,0,0,0,4,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,3,2,3,2,5,3,3,2,3,3,4,4,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16 +4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,4,3,3,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,7,4,5,5,7,5,8,8,16,9,9,6,9,5,6,6,9,5,6,4,6,4,4,5,8,4,4,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,3,4,4,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,2,3,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,2,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,9,5,6,4,6,4,4,4,8,4,4,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,0,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-12 +11,6,6,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,3,5,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,2,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,6,5,7,7,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,7,7,13,8,9,8,13,9,13,13,29,15,15,10,15,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,6,5,7,5,8,8,19,10,10,7,10,6,8,8,14,8,8,6,10,6,8,8,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,25,13,12,8,12,7,8,6,10,5,5,4,6,4,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,11,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,6,7,6,11,8,11,11,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,25,13,12,8,12,7,9,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,3,4,5,16,9,9,6,8,5,5,4,7,4,5,4,6,4,4,4,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,10,5,5,4,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,3,2,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,4,3,5,5,6,4,4,3,4,3,4,3,5,3,3,2,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,13,7,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,9,5,5,4,5,3,3,3,4,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,3,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,5,6,5,8,6,8,7,16,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,6,4,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +8,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,2,2,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,7,4,5,4,6,4,5,4,7,4,5,4,5,4,5,5,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,3,6,4,5,4,6,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,6,6,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,9,5,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7 +6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +11,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,0,0,0,1,1,1,2,2,4,2,2,2,3,2,3,3,7,4,5,4,5,3,3,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,8,5,6,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,8,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,7,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,13,7,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,3,2,1,1,1,1,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,1,1,1,1,1,2,7,4,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,2,6,4,4,3,3,3,4,4,6,4,5,4,7,5,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,5,5,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12 +6,4,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,4,5,3,4,4,11,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,5,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,7,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,7,4,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7 +6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +11,6,5,4,5,3,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,2,1,1,1,1,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,5,3,4,4,6,4,6,6,17,9,8,6,8,5,6,6,10,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,13,7,8,6,9,5,6,5,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,5,10,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,9,5,5,4,5,3,4,3,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,7,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,3,2,3,3,4,3,4,4,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,5,3,3,2,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-2,-2,-6 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,5,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,7,4,4,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,8,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,7,2,2,2,1,2,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,5,5,4,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,2,2,2,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,7,4,4,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,7,4,5,4,7,5,7,7,2,2,2,1,2,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +17,9,9,6,7,4,4,4,6,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,1,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,5,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,8,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,6,8,8,14,8,10,8,14,10,14,13,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,14,7,7,5,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,14,7,7,5,7,4,5,5,8,5,5,4,5,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,5,9,5,4,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,11,6,6,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,6,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,3,3,6,5,7,7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,5,3,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 +9,5,5,3,4,3,3,3,4,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,3,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,7,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +10,5,5,3,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,8,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,0,0,0,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +10,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,0,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,5,5,9,5,5,4,6,4,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,9,5,4,3,4,3,3,2,4,3,3,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,5,3,3,2,3,2,2,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,6,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,5,3,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,4,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,0,0,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,4,3,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,5,10,6,6,5,7,5,6,6,10,6,7,6,11,7,10,10,6,3,2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,9,5,5,4,6,4,4,3,4,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,6,4,6,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 +7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,5,3,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,5,3,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,2,2,2,4,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,2,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +10,5,5,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,12,7,7,5,6,4,4,4,7,4,4,4,6,4,6,5,7,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,5,4,5,5,9,5,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,5,7,7,6,3,3,2,3,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,5,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,2,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,2,3,3,4,3,4,4,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,2,1,1,1,1,1,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,16,8,8,6,9,6,8,7,12,7,8,6,10,6,8,7,13,7,7,5,8,5,7,7,12,7,7,6,10,7,11,11,7,4,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,1,1,1,1,1,0,0,-1,0,-1,0,4,3,3,2,3,2,2,2,2,1,1,1,0,0,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-3,-3,-12,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,1,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,3,4,4,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,3,2,1,1,1,1,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 +8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8 +8,4,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,13,7,7,5,7,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,-7,-3,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9 +6,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +8,5,5,3,4,3,4,3,3,2,2,2,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,4,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,9,5,6,4,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,4,3,3,3,14,8,8,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,4,3,4,3,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,9,5,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,-1,-1,0,0,0,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,1,1,1,1,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-11 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,12,6,6,5,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-3,-3,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-8 +12,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,21,11,10,7,10,6,7,7,12,7,7,5,8,5,6,6,11,6,7,5,7,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,5,3,3,3,4,3,5,5,8,5,6,5,9,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,9,5,3,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,9,5,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-7,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-12,-12,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,5,5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-4,-4,-9 +9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,14,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,5,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,5,3,2,2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-6,-4,-8,-5,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-3,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,7,7,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8 +14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,5,3,4,3,4,3,4,3,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,7,5,7,7,11,6,6,5,7,5,6,5,6,4,5,4,6,4,6,6,11,6,6,4,6,4,6,6,10,6,6,5,9,6,8,8,4,3,3,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,6,3,3,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-3,-1,0,0,0,1,1,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,4,3,5,5,8,4,4,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10 +14,8,8,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,4,3,4,3,4,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3,3,4,3,4,3,5,3,4,4,5,4,6,6,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,6,4,4,3,5,3,4,4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +14,8,8,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,19,10,10,7,9,6,7,6,10,6,6,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +26,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,36,19,19,13,20,12,14,12,20,11,12,9,14,9,12,11,19,10,11,8,11,7,8,8,14,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,3,4,4,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,5,6,11,6,7,5,8,5,7,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,9,16,9,10,9,15,10,15,15,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,9,5,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-6,-12,-8,-12,-12,-24,-12,-12,-7,-11,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-22,-22,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,0,1,1,1,0,1,1,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,8,8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-8,-9,-7,-13,-8,-13,-14,-29 +14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-4,-3,-6,-4,-6,-6,-14 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,6,4,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,6,5,8,5,6,5,7,5,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-7,-4,-6,-6,-14 +10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9 +15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,5,5,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,6,5,7,4,5,4,7,5,8,8,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-9,-4,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,3,4,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13 +9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7 +12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,14,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,-1,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9 +11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8 +20,10,10,7,9,6,7,6,9,5,5,4,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,11,6,7,5,7,4,5,4,5,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,21,11,11,8,11,6,7,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,7,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,1,1,1,1,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-2,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-7,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-14,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15 +11,6,6,4,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,3,3,3,3,4,4,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7 +13,7,7,4,5,3,4,4,5,3,3,3,3,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,13,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,3,2,3,3,3,3,4,4,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-4,-4,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6 +16,8,8,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,3,3,3,4,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,3,2,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,0,1,1,1,2,2,2,1,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,5,3,3,3,4,3,5,5,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11 +10,6,6,4,5,3,4,3,5,3,3,3,4,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7 +14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,1,1,2,2,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-5,-5,-11 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,5,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +27,14,14,10,14,8,9,8,13,7,7,5,8,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,6,5,9,5,6,6,10,7,9,9,18,9,9,6,8,5,5,5,8,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,5,5,12,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,4,5,5,8,6,8,8,28,14,14,9,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,6,9,6,7,6,9,5,6,5,9,6,8,7,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,5,3,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-16,-11,-17,-17,-17,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,7,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,5,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-2,2,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-21 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,15,8,8,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,15,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,0,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,0,0,0,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,5,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +19,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,6,4,5,4,6,5,7,7,14,7,7,5,6,4,4,3,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,5,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12 +12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,13,7,6,4,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +25,13,13,9,12,7,9,8,14,8,8,6,9,6,7,7,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,3,7,4,4,3,4,3,3,3,6,4,5,5,8,5,7,7,22,11,11,8,11,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,1,1,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,2,2,2,1,1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-7,-14,-9,-13,-13,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,-2,-2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +14,8,7,5,7,4,5,5,8,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,13,7,7,5,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,4,3,3,2,5,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10 +14,8,7,5,8,5,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,3,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +24,13,13,9,13,8,9,8,11,6,6,5,8,5,7,7,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,5,3,4,4,8,5,7,7,20,10,10,7,10,6,7,6,8,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-10,-5,-7,-6,-12,-7,-11,-11,-11,-5,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-2,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16 +16,9,9,6,9,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +23,12,12,8,13,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,19,10,10,7,10,6,6,5,9,5,6,4,5,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-6,-6,-10,-5,-6,-5,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +23,12,12,8,12,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +44,22,22,15,21,12,13,11,18,10,10,7,11,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,9,6,7,6,11,6,7,6,10,6,8,8,14,8,8,7,11,7,9,8,15,9,11,10,17,12,17,17,32,17,17,12,18,10,12,11,19,11,12,9,15,9,12,11,21,11,11,8,13,8,9,8,13,7,8,6,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,35,18,19,13,19,11,12,10,17,9,10,7,10,6,8,7,12,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,4,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,2,2,3,3,4,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,3,3,3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-6,-11,-7,-12,-12,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-11,-12,-9,-15,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-23,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,1,1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-15,-15,-30 +23,12,12,8,11,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,7,9,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +23,12,12,8,12,7,8,6,10,6,6,5,7,5,6,5,9,5,6,5,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,17,9,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,12,6,7,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +26,13,13,9,14,8,8,7,11,6,6,5,7,4,5,5,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,9,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,5,8,5,7,7,18,10,10,7,11,6,7,6,10,5,5,4,6,4,4,4,7,4,3,2,3,2,3,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,3,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,3,2,3,2,3,4,4,3,3,3,4,2,2,2,4,2,2,2,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15 +16,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,11,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +20,10,10,7,10,6,6,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,7,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 +18,9,9,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +32,16,16,11,15,9,10,8,14,8,8,6,9,6,7,6,13,7,7,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,11,6,7,5,7,4,5,5,9,6,7,6,11,7,10,10,22,12,12,8,12,7,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,1,0,0,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-14,-9,-15,-15,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,1,1,1,1,2,2,2,1,1,1,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18 +18,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-7,-4,-7,-8,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +20,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,7,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,11,6,6,5,6,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-6,-5,-9,-5,-8,-9,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 +16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +27,14,14,9,13,8,9,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,6,10,7,10,10,19,10,9,6,9,5,6,5,8,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,0,0,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +24,12,12,8,12,7,8,7,10,6,6,5,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,4,4,10,6,6,4,5,3,4,3,5,3,4,4,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,6,4,7,5,6,6,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-11,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 +23,12,12,8,12,7,8,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,4,4,10,5,5,4,5,3,4,3,5,3,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +44,22,22,15,22,13,16,13,23,12,13,9,13,8,10,9,17,9,10,7,11,7,8,7,11,6,7,6,9,6,9,8,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,10,18,10,11,8,12,7,9,8,13,8,9,7,11,7,10,9,20,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,7,6,10,6,8,7,11,7,10,10,25,13,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-9,-19,-10,-13,-11,-20,-13,-21,-21,-26,-12,-12,-8,-13,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,6,3,3,3,4,3,3,3,4,2,2,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,3,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-12,-25 +23,12,12,8,12,7,9,8,12,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-12 +24,12,12,9,12,7,9,8,13,7,8,5,8,5,6,5,10,6,6,5,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +27,14,14,10,14,8,10,9,15,8,9,6,9,6,7,6,13,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,6,6,5,7,5,7,6,13,7,7,5,8,5,5,5,10,6,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,16,9,9,6,9,6,7,6,8,5,5,4,6,4,6,5,8,5,5,3,4,2,2,2,4,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-17,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,4,3,3,3,4,3,3,2,2,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +22,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,11,6,6,5,7,4,4,4,7,4,4,4,7,5,6,5,11,6,6,5,6,4,4,4,8,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-6,-4,-6,-5,-11,-5,-6,-5,-11,-7,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,6,4,5,4,7,4,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +40,21,21,14,20,12,14,12,22,12,12,9,13,8,11,10,19,10,10,7,11,7,9,8,15,8,9,8,13,8,11,10,20,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,12,10,16,11,17,17,28,15,15,11,16,9,11,10,17,9,10,7,11,7,8,8,17,9,10,7,10,6,8,7,12,7,8,6,10,7,9,9,20,11,11,7,10,6,8,7,13,7,8,6,9,6,9,8,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,25,13,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,1,1,1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-7,-10,-10,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 +23,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,12,6,6,5,7,4,5,5,9,5,5,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,12,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,4,6,4,6,6,14,8,7,5,8,5,5,5,8,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,7,7,11,6,7,6,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-16 +23,12,12,8,12,7,9,8,13,7,7,5,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,6,11,6,6,4,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,6,6,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,7,14,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-13 +40,21,21,15,22,13,15,13,22,12,12,9,15,10,13,12,23,12,12,8,12,7,8,7,15,8,9,7,11,7,10,10,20,10,10,7,11,7,9,8,13,8,9,7,11,7,10,10,17,9,9,7,10,7,10,9,15,9,10,9,15,10,15,15,28,15,15,11,16,9,11,9,17,9,9,7,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,5,7,7,11,6,7,6,11,8,12,12,24,12,12,8,12,7,9,8,13,7,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,8,4,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-12,-7,-11,-11,-24 +27,14,14,10,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,11,8,11,6,7,6,12,6,7,5,7,5,6,6,11,6,6,5,7,4,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-12,-12,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +39,20,20,14,22,13,15,13,22,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,12,7,8,7,13,7,8,6,10,7,9,9,17,9,10,7,10,6,8,8,15,9,10,9,14,10,14,15,28,15,16,11,16,9,10,9,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-11,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +39,20,20,14,21,12,15,13,22,12,13,10,16,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,15,9,10,9,14,10,14,15,29,15,16,11,16,9,10,9,16,9,9,7,10,6,8,8,15,8,9,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +77,39,38,25,37,21,24,20,35,19,20,15,23,14,19,18,33,17,18,12,18,10,12,11,19,11,12,10,16,11,16,15,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-13,-14,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-13,-10,-19,-12,-19,-19,-39,-19,-19,-13,-21,-12,-15,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-18,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-37,-37,-55,-27,-28,-18,-28,-15,-18,-14,-26,-13,-15,-11,-19,-11,-16,-15,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-13,-27,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-21,-44,-21,-21,-14,-21,-11,-14,-12,-24,-12,-14,-10,-18,-11,-16,-15,-31,-15,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-18,-12,-18,-17,-35,-17,-18,-12,-18,-10,-13,-11,-20,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-10,-16,-9,-13,-12,-24,-12,-14,-11,-21,-13,-20,-20,-40,-20,-20,-13,-19,-10,-12,-10,-19,-9,-10,-7,-13,-8,-11,-11,-22,-11,-11,-8,-14,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-37,-18,-19,-12,-19,-11,-14,-12,-24,-12,-14,-10,-17,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-24,-13,-16,-13,-25,-16,-25,-24,-49,-24,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-35,-17,-18,-12,-19,-10,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-24,-13,-15,-12,-21,-13,-19,-19,-38,-19,-19,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-12,-12,-24,-12,-13,-9,-16,-9,-13,-12,-25,-14,-17,-14,-26,-17,-25,-25,-50 +39,20,19,13,19,11,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-7,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-7,-6,-14,-6,-7,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-24 +38,19,19,13,19,11,12,11,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-24 +25,13,13,9,13,7,8,8,12,7,7,6,8,6,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-18,-8,-9,-6,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 +37,19,18,12,18,10,12,11,17,9,10,8,12,8,11,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-20,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-20,-13,-20,-20,-27,-13,-13,-8,-13,-7,-9,-7,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-5,-4,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-11,-6,-7,-5,-10,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-19,-9,-9,-6,-10,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-9,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-12,-12,-24 +21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +25,13,12,8,12,7,8,7,13,7,8,6,9,6,8,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-2,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,1,1,0,1,0,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-8,-5,-8,-7,-15,-7,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16 +21,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +37,19,20,14,20,11,13,11,19,10,10,8,12,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,9,6,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,5,3,3,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,3,2,1,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-21,-11,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-13,-20,-20,-27,-13,-13,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-11,-23 +20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-11,-6,-10,-10,-13,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,6,4,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-6,-11,-6,-8,-6,-12,-7,-11,-11,-14,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-14,-6,-6,-4,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12 +17,9,9,6,9,5,6,6,9,5,5,4,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-5,-2,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +27,14,14,10,14,8,10,9,14,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,7,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,2,1,1,1,0,1,1,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +23,12,12,8,12,7,9,8,12,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +21,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10 +40,20,20,13,19,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,7,5,6,4,5,5,9,5,5,4,5,3,3,2,2,2,2,2,2,1,0,0,-1,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,12,7,7,5,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,1,1,1,0,-1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-6,-3,-3,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-20,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-8,-11,-10,-21,-11,-14,-12,-22,-14,-22,-22,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-7,-11,-10,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-10,-6,-10,-10,-24,-11,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-19 +20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +20,11,11,7,10,6,8,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10 +14,8,8,6,8,5,6,5,7,4,5,4,5,4,4,4,8,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-4,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +21,11,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,0,0,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-4,-6,-4,-8,-5,-8,-8,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6 +13,7,7,5,8,5,5,5,8,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +24,13,13,9,14,8,10,8,13,7,7,5,8,5,7,7,15,8,8,6,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-3,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5 +14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-6,-5,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6 +11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-5 +18,9,9,7,10,6,7,7,11,6,6,5,8,5,6,6,11,6,7,5,8,5,5,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,5,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,1,1,2,1,1,0,1,1,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-6,-8,-6,-12,-7,-11,-11,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,3,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-4,-9 +12,6,6,5,7,4,5,5,8,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5 +16,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,4,6,5,9,5,5,4,6,4,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-4,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8 +16,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7 +31,16,17,12,17,10,11,10,17,9,10,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,5,3,3,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-21,-20,-28,-13,-13,-8,-12,-6,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-14,-9,-15,-15,-27,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-29,-14,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-14 +16,9,9,6,9,5,6,5,9,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-2,-3,-7 +17,9,9,6,9,5,6,5,8,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-3,-1,-1,0,-1,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-7 +12,6,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4 +17,9,10,7,10,6,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-16,-8,-8,-5,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7 +10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +11,6,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +17,9,9,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,6,4,4,4,6,4,6,5,11,6,6,4,5,3,4,3,5,3,3,2,2,2,2,2,7,4,4,2,2,1,1,1,0,1,1,1,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,3,2,3,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,2,3,3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-3,-3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,4,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4 +8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +18,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,5,3,4,3,5,3,4,3,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,1,1,1,1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,7,4,4,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,5,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,0,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,0,0,0,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-2,0,0,0,-2,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,4,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-12,-6,-6,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +13,7,7,5,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,2,2,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1 +11,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,2,2,3,2,2,1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +10,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +18,10,10,7,10,6,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,3,4,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,3,4,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-8,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-9,-21,-10,-9,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-7,-5,-9,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,1,1,0,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,7,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 +15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-5,-7,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +28,14,14,9,13,7,8,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-18,-48,-23,-23,-15,-24,-13,-16,-13,-23,-12,-13,-9,-15,-9,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-10,-7,-12,-7,-11,-10,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,16,8,8,6,8,5,5,4,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-13,-9,-14,-14,-26,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-8,-16,-8,-10,-8,-14,-8,-12,-11,-23,-11,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-10,-8,-16,-10,-16,-16,-35,-17,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 +15,8,7,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 +15,8,7,5,8,5,5,4,7,4,4,3,5,3,4,3,6,3,3,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +11,6,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +16,9,9,6,8,5,5,5,7,4,4,3,4,3,4,4,7,4,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-5,-12,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +12,6,6,4,5,3,4,4,5,3,4,3,3,2,2,2,6,3,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,5,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +17,9,9,6,9,5,6,5,8,4,4,3,5,3,4,3,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,3,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-23,-11,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,2,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +10,6,6,4,5,3,4,4,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-2,-2,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2 +11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,0,-2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,1,1,1,1,2,2,2,1,0,1,1,1,0,0,-1,-1,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-2,-5 +7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 +10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-3,-1,-2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5 +10,6,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,4,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4 +19,10,9,6,9,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,5,3,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-18,-9,-9,-6,-10,-5,-7,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-17,-8,-8,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,8,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4 +10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-8,-7,-11,-5,-6,-4,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3,-3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-12,-5,-5,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,4,3,4,3,3,3,3,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3 +13,7,7,5,7,4,5,4,6,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-11,-17,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,2,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,8,5,5,4,5,3,3,3,4,2,2,2,2,1,1,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-7 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +9,5,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-7,-11,-5,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3 +7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,7,4,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-5 +8,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 +11,6,6,4,5,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,6,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +21,11,12,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-11,-6,-9,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-12,-7,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-33,-16,-16,-10,-16,-8,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,15,8,8,5,7,4,4,3,5,3,3,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-9,-14,-13,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-9,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9 +11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-4,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-2,-2,-4,-2,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-4,-3,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-6,-4,-6,-7,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-10,-5,-5,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,6,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,6,6,4,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,1,2,2,2,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3 +9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +16,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,-5,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-18,-8,-8,-5,-8,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-8,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-5,-8,-3,-3,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,1,1,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1 +23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,13,7,7,5,7,5,6,5,8,5,5,5,8,6,8,7,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,1,1,1,0,0,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-4,-5,-4,-9,-5,-8,-8,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-6,-10,-10,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-21,-10,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-37,-18,-17,-11,-17,-9,-10,-8,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,6,3,3,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-12,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,8,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3 +12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-8,-19,-9,-9,-6,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-4,-7,-4,-7,-8,-20,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,8,8,6,8,5,5,5,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-24,-12,-12,-8,-12,-6,-7,-5,-10,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,2,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +12,6,6,4,7,4,4,4,8,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1 +11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +20,11,11,8,11,7,8,7,12,7,7,6,10,6,8,8,14,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-7,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-12,-12,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-35,-17,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-11,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1 +12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +14,8,8,5,7,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1 +12,7,7,5,6,4,5,4,8,4,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-20,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,2,3,2,2,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-8,-7,-14,-9,-14,-13,-36,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,6,5,8,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-14,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-4,-5,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,5,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,3,4,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-13,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-6,-11,-6,-9,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0 +42,22,22,15,21,12,14,12,20,11,11,9,14,8,10,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-9,-17,-8,-9,-7,-13,-8,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-15,-15,-22,-11,-11,-7,-10,-6,-8,-7,-13,-6,-7,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-18,-17,-35,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-14,-14,-29,-15,-16,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-27,-55,-27,-27,-18,-27,-15,-18,-15,-27,-14,-15,-11,-19,-12,-17,-16,-31,-15,-16,-11,-18,-10,-13,-11,-21,-11,-12,-10,-18,-11,-17,-16,-33,-16,-16,-11,-17,-9,-12,-10,-20,-10,-11,-8,-14,-9,-13,-13,-26,-13,-13,-9,-15,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-11,-18,-11,-15,-14,-27,-15,-18,-15,-27,-17,-25,-25,-76,-37,-37,-24,-36,-20,-24,-19,-35,-18,-19,-13,-22,-13,-19,-17,-34,-17,-17,-11,-17,-9,-11,-9,-18,-9,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-37,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-12,-10,-19,-9,-10,-7,-13,-8,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-12,-15,-13,-24,-16,-24,-24,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,0,1,1,1,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,-1,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3,2,2,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-11,-11,-23,-11,-12,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0 +21,11,11,8,11,7,8,6,10,6,6,5,7,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-5,-10,-5,-5,-3,-6,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-4,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-5,-5,-10,-6,-7,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-6,-14,-7,-8,-7,-14,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-10,-5,-7,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-4,-9,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-6,-5,-10,-6,-8,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-6,-5,-8,-4,-4,-3,-6,-4,-5,-4,-10,-5,-5,-3,-5,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-4,-4,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-25,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0 +20,10,10,7,10,6,7,6,9,5,5,4,6,4,6,5,10,5,5,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-14,-9,-14,-8,-10,-8,-13,-7,-8,-6,-10,-6,-8,-7,-17,-8,-8,-5,-8,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-10,-6,-10,-5,-7,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-17,-8,-9,-6,-10,-6,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-8,-6,-12,-8,-12,-12,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-6,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0 +13,7,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-7,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-7,-5,-8,-8,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1 +10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1 +17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-6,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-7,-4,-6,-5,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-36,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-7,-11,-6,-9,-8,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-8,-13,-13,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +10,6,6,4,5,3,3,3,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2 +8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1 +10,6,6,4,5,3,3,3,6,3,3,2,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +16,8,8,5,7,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-8,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-31,-15,-16,-10,-16,-8,-10,-9,-17,-8,-8,-5,-9,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-6,-7,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-40,-20,-20,-13,-21,-11,-14,-11,-21,-10,-10,-7,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3 +8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +8,4,4,3,4,3,4,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-5,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-8,-5,-8,-4,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,2,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0 +7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0 +6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0 +11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-16,-8,-8,-5,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,3,3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,1,1,2,2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1 +4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-19,-9,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0 +5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0 +9,5,6,5,7,5,6,5,8,5,5,4,7,5,6,6,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,4,3,5,5,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-6,-9,-9,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-29,-14,-14,-9,-14,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-37,-18,-19,-12,-19,-10,-12,-10,-18,-9,-9,-7,-12,-7,-11,-10,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,1,1,2,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0 +5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0 +4,3,3,3,3,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-10,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-9,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,2,3,2,2,1,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-3,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,0,0,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-8,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,1,1,1,1,1,1,1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-2,0,0,0,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,-1,0,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-13,-6,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,1,1,1,0,0,0,1,1,1,1,0,0,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3 +7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-9,-4,-4,-2,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,2,3,3,5,3,3,3,5,4,6,6,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-5,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-15,-7,-8,-5,-6,-3,-4,-3,-8,-4,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2 +6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-9,-5,-8,-4,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,4,2,2,2,3,2,3,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3 +4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3 +5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,1,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,4 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 +8,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-26,-12,-12,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-3,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,1,1,1,1,1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-5,-8,-8,-13,-6,-7,-5,-8,-5,-8,-7,-13,-7,-8,-7,-14,-9,-14,-13,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-14,-7,-7,-5,-8,-4,-6,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,0,1,1,2,3,2,3,3,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,3,2,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-2,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,9 +5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6 +8,4,4,3,4,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-5,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,4,3,5,5,8 +8,4,4,3,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8 +14,8,8,5,7,4,4,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-34,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-20,-9,-9,-6,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-8,-10,-9,-17,-11,-18,-18,-38,-18,-18,-12,-18,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-27,-51,-25,-25,-16,-25,-13,-16,-13,-25,-12,-12,-8,-14,-8,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-30,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-9,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-23,-11,-12,-8,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,3,3,4,4,7,4,5,5,9,6,9,9,16,8,8,6,8,5,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-5,-7,-4,-5,-4,-6,-3,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,3,4,4,8 +6,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6 +9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-9,-9,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,-2,0,0,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8 +6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5 +7,4,4,3,3,2,2,2,4,2,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-3,-5,-5,-14,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-5,-2,-3,-3,-9,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,2,1,1,2,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +9,5,6,4,6,4,5,4,6,3,3,2,2,2,2,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-4,-7,-7,-22,-11,-11,-7,-11,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-6,-6,-15,-7,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-16,-15,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,2,2,2,1,1,1,2,2,4,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9 +5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5 +6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4 +8,4,4,3,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-7,-7,-4,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6 +5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6 +10,5,5,4,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,3,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-3,-3,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-8,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-17,-11,-16,-16,-36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,8,4,4,3,4,2,2,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,0,0,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,5,4,5,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-12,-6,-6,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5 +5,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5 +7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +14,8,8,5,7,5,6,5,8,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,3,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,8,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8 +8,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-2,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +10,6,6,4,6,4,5,4,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-5,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-5,-4,-6,-4,-6,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,6,4,4,3,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +16,9,9,6,8,5,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-10,-5,-6,-5,-10,-7,-11,-11,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,6,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,1,2,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,-4,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,-1,0,1,1,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,-1,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6 +15,8,9,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,2,2,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +29,15,15,10,15,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,3,2,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-10,-30,-14,-14,-9,-15,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,4,3,3,2,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-13,-11,-20,-13,-21,-21,-56,-27,-27,-18,-28,-15,-18,-15,-27,-13,-14,-9,-14,-8,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-9,-14,-14,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,9,5,5,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,3,5,4,5,4,7,5,6,5,8,6,9,9,16 +15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,5,5,9 +15,8,8,6,8,5,6,5,6,4,4,3,4,3,4,3,6,3,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-3,-4,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9 +11,6,6,4,6,4,4,4,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,4,7 +17,9,9,6,8,5,6,5,6,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-4,-16,-8,-8,-5,-8,-4,-5,-3,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-17,-8,-7,-4,-7,-4,-5,-4,-10,-5,-5,-3,-6,-4,-6,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-11,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,6,4,4,3,4,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,-1,4,3,3,2,3,2,3,3,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,5,4,6,6,11 +10,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,3,4,4,7 +13,7,6,4,6,4,4,4,5,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-12,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,3,5,3,3,3,4,3,5,5,8 +12,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +21,11,10,7,10,6,7,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-33,-16,-16,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-9,-8,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-9,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,6,6,12 +11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7 +12,6,6,4,7,4,4,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,8 +9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7 +15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,2,2,2,2,2,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,-1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,5,5,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13 +10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9 +14,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-10,-5,-6,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +13,7,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +25,13,13,8,11,6,7,6,9,5,5,4,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-8,-27,-13,-12,-8,-12,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-12,-12,-24,-13,-15,-12,-22,-14,-22,-21,-45,-22,-21,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-15,-8,-9,-7,-14,-9,-14,-14,-22,-10,-10,-6,-10,-5,-7,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,6,6,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 +13,7,7,5,6,4,4,4,5,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,12 +14,7,7,5,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-25,-12,-12,-7,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,13 +11,6,6,4,5,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +18,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-16,-8,-9,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,3,2,3,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,9,8,15 +11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,9 +15,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-9,-5,-6,-6,-13,-7,-8,-6,-11,-7,-12,-12,-25,-12,-12,-8,-11,-6,-8,-7,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5,-2,-1,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,12 +14,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12 +27,14,14,9,13,8,9,7,12,7,8,6,9,6,7,6,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-28,-14,-14,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-11,-24,-12,-12,-9,-15,-9,-12,-12,-24,-13,-16,-13,-23,-15,-23,-23,-45,-22,-22,-14,-22,-12,-15,-13,-24,-12,-14,-10,-17,-10,-15,-14,-27,-13,-13,-9,-15,-8,-11,-9,-18,-9,-10,-8,-14,-8,-12,-12,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-7,-13,-7,-9,-8,-16,-8,-10,-8,-15,-9,-13,-13,-28,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-7,-14,-9,-14,-14,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,2,2,2,2,1,1,1,2,2,2,2,6,4,4,3,3,2,1,1,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,8,6,9,6,7,6,11,6,7,6,10,7,11,11,22 +15,8,8,6,8,5,5,4,7,4,5,4,5,4,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,3,4,4,8,4,5,4,6,4,5,4,7,4,4,4,6,5,7,7,13 +18,10,10,7,9,5,6,5,8,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-6,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,8,6,8,8,16 +15,8,8,6,8,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-9,-5,-7,-6,-14,-6,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,14 +26,13,13,9,13,8,9,7,11,6,6,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,2,2,2,2,2,2,4,2,2,2,2,2,3,3,6,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-8,-11,-11,-22,-11,-11,-8,-14,-8,-12,-11,-23,-12,-15,-12,-23,-15,-23,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-12,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-16,-8,-9,-7,-14,-9,-14,-14,-27,-13,-13,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-9,-7,-14,-9,-14,-14,-28,-13,-13,-8,-13,-7,-8,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,7,6,9,6,8,7,11,7,8,7,12,9,13,13,25 +18,9,9,6,9,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-6,-7,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-15,-8,-10,-8,-13,-8,-13,-13,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-6,-4,-6,-6,-14,-7,-7,-5,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,4,3,4,3,4,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,5,9,6,7,6,12,7,8,7,13,9,14,14,26 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-8,-9,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,13,9,13,13,26 +50,25,25,17,24,13,15,12,21,11,11,8,12,8,10,9,17,9,9,7,10,6,6,5,9,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,3,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-8,-7,-13,-9,-14,-15,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-10,-7,-12,-7,-10,-10,-21,-10,-10,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-39,-19,-20,-13,-21,-11,-14,-12,-22,-11,-13,-9,-16,-10,-15,-15,-30,-15,-15,-11,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-26,-53,-27,-28,-19,-30,-17,-21,-18,-34,-18,-20,-15,-27,-17,-24,-23,-45,-23,-24,-18,-30,-18,-26,-24,-48,-26,-32,-26,-47,-31,-46,-46,-94,-46,-46,-31,-47,-25,-30,-25,-46,-23,-25,-19,-32,-20,-28,-26,-51,-25,-26,-18,-28,-16,-21,-19,-36,-19,-22,-17,-29,-19,-28,-27,-54,-27,-27,-18,-28,-15,-19,-16,-30,-15,-17,-13,-23,-14,-21,-20,-40,-20,-21,-14,-23,-13,-18,-16,-32,-17,-19,-15,-28,-18,-28,-28,-57,-28,-27,-18,-27,-15,-18,-15,-27,-14,-15,-10,-17,-10,-14,-13,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-10,-8,-14,-9,-13,-12,-25,-13,-14,-11,-19,-11,-16,-15,-29,-16,-19,-16,-30,-19,-29,-29,-58,-28,-28,-19,-29,-15,-18,-15,-28,-14,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-5,-5,-3,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,8,16,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,13,7,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,4,6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,3,3,4,4,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,11,11,20,11,12,9,15,9,12,12,22,13,16,14,25,17,25,25,50 diff --git a/worlds/diamond_world2.csv b/worlds/diamond_world2.csv new file mode 100644 index 0000000..d51e78a --- /dev/null +++ b/worlds/diamond_world2.csv @@ -0,0 +1,257 @@ +54,102,116,132,158,159,140,207,229,196,157,171,261,284,275,322,482,460,363,438,641,901,1431,1938,2724,2943,3854,4444,3889,4374,5896,6636,5925,6653,9764,12769,12864,9305,7398,9721,9630,7535,5882,4872,4098,7778,9385,10017,13287,10766,6878,7037,8674,10026,10329,12788,14776,11178,7584,6270,5816,4793,3297,2901,2281,1952,1514,1512,2230,1570,1413,891,514,920,1062,2164,2972,3805,3680,4377,3728,3423,2090,2491,2623,2053,1559,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,198,394,561,1230,1520,1995,2107,1602,1349,1696,1557,1097,692,480,144,183,258,312,336,567,652,938,1053,718,682,560,295,264,185,176,240,202,114,78,32,25,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,827,1035,1444,1569,1188,1324,2036,2913,3602,4379,3896,3696,3039,4308,5187,5234,5454,5259,3759,3158,3156,2434,2461,3302,3722,3143,3070,2444,1845,2378,2234,2386,1996,1579,1173,787,534,236,0,26,43,96,118,111,109,143,198,435,729,1418,2085,3296,4312,5042,7529,8380,8128,6343,5903,4959,4039,6504,6962,6717,4329,3425,2243,3978,4792,4876,4724,3767,2925,2772,3398,2407,2155,1020,0,12,24,31,48,39,39,44,56 +41,70,132,151,160,164,190,228,156,162,182,259,294,312,349,366,406,354,339,446,788,989,1440,2132,2859,3879,4451,3884,5894,5785,6928,5117,9479,8944,8882,9244,8506,7222,6220,6822,8140,7512,4746,5536,5603,8872,13548,12820,10124,10644,6286,7120,7084,8630,10278,10881,9791,10136,8670,6297,6179,4585,3641,3050,3005,2500,1744,1516,1807,1498,1023,778,355,952,1020,2133,4002,4108,4928,4747,3051,2948,1666,1927,2881,2138,1741,985,183,174,136,119,80,66,32,18,0,1,2,2,2,5,5,7,4,174,374,578,881,1278,1903,2477,3279,2030,2260,1918,1770,1380,1036,640,408,422,607,707,752,766,909,888,1530,1088,792,660,350,308,199,350,398,433,393,437,289,249,216,247,263,270,258,201,108,216,330,397,350,289,227,231,91,101,121,138,0,26,54,59,138,195,182,218,50,368,629,1068,1788,1732,1582,1630,2299,2576,2308,2999,3179,3566,4023,4280,4935,5181,4782,4696,3109,3260,3532,3146,1546,2124,2902,2541,2657,2672,2132,2148,2007,1598,1446,1250,1014,681,613,274,130,158,149,234,336,338,275,302,306,556,1054,1588,2440,2953,2880,4318,5856,5977,5619,5900,5060,4874,3930,5878,7622,5992,4926,4130,2930,3908,4600,5122,4191,3036,2320,2624,3235,2977,3248,2414,537,454,448,368,334,262,216,128,43 +33,66,110,183,227,187,181,268,130,126,147,243,233,366,407,407,283,341,439,455,842,1077,1650,1816,3787,3523,4724,4828,6627,6756,7043,5634,10664,8572,9575,8976,7290,5319,4652,6281,7554,6226,5942,5906,8240,10155,13952,15263,8829,8094,7972,7892,5903,9171,10106,11464,8832,8317,8050,6156,5091,3988,3592,3860,2901,1981,1532,1258,1132,1109,1076,858,297,925,1441,2588,3878,5115,5634,6016,2050,1684,1904,2434,3270,2692,1650,1007,371,299,280,326,190,118,76,46,0,2,4,5,4,7,8,11,6,294,537,725,1450,1728,1751,2593,3560,2610,2506,1884,1949,1463,1162,824,566,726,950,1114,927,1064,1070,1045,1648,1562,1275,632,310,316,286,344,485,579,764,792,639,496,505,626,602,561,456,409,254,424,556,708,719,622,518,385,192,208,262,327,0,58,110,140,285,364,360,409,116,364,564,910,2015,1843,1538,1355,1876,1908,2144,3081,2456,3870,4770,4738,3385,3412,4216,4850,3759,3730,3518,3548,1284,1311,1564,2237,3517,3165,2741,2152,1768,1535,1030,951,821,742,534,354,304,333,289,419,698,495,500,366,357,655,1196,1452,2215,2595,2638,4427,3651,3673,4441,5546,3881,5098,4840,6112,7255,5345,4954,4006,3974,4142,4283,4018,2774,2230,2200,3251,2909,4092,4108,3240,1067,872,736,824,569,515,422,261,36 +36,61,99,172,251,224,208,318,124,159,212,261,272,332,354,412,176,495,722,628,954,1132,1229,1844,4269,4028,5194,5382,7081,5824,5730,5373,9529,9947,8936,8470,7134,5555,5378,4561,6648,6787,5624,7102,7951,8523,11987,13608,9303,7582,5878,7194,6839,10309,9502,9698,9737,9020,6341,5617,4089,3664,4053,3892,2398,1708,1482,1010,876,1044,997,858,277,808,1357,2278,3520,4738,5474,7014,2045,2036,1884,2844,2775,2042,1488,928,549,432,461,412,327,199,106,58,0,4,6,7,7,11,10,17,10,478,1008,1254,2218,1706,1678,2930,2641,2772,3122,2266,1817,1602,1287,968,985,1047,1458,1534,1205,1382,1146,1184,1650,1370,1197,661,268,372,365,446,682,793,861,962,1003,826,576,883,928,764,444,466,512,730,853,1073,1286,989,605,548,328,291,443,500,0,81,172,245,326,508,714,712,208,598,956,1110,1623,1700,2373,2399,1453,1866,1430,2154,3237,3480,4554,4977,4278,3952,3941,3594,2928,3839,3498,4120,1578,1666,1312,1690,2687,3002,2430,2328,1010,1110,853,1124,1372,901,504,383,436,507,594,658,873,636,577,461,438,936,1559,2006,2557,2563,2079,3056,2541,2627,3879,4406,3763,4554,3412,4730,4908,4753,5214,5174,4391,5022,4454,4256,2160,2534,2143,3686,3924,5439,5707,5660,1449,1274,789,1078,1222,1016,728,396,25 +31,65,120,166,200,218,320,336,170,217,292,299,357,517,514,525,100,214,410,791,1072,1309,1279,2138,3386,4128,3610,4500,5626,5241,3576,3564,9429,7379,5484,5116,6090,6102,6224,4794,5022,8233,9129,10492,8628,10028,13826,14730,8683,8122,5196,6046,7248,9273,9994,11641,9015,6314,3811,3191,2767,3288,4158,4456,2234,2538,2003,1587,744,761,774,759,376,1088,1874,2233,2637,4046,4527,6164,2458,2391,1854,1696,2283,1624,1613,1395,658,573,624,487,428,374,228,99,0,4,6,7,7,10,13,23,13,818,1706,2126,2513,2722,3187,3955,3033,2419,1594,1635,1658,1398,1461,988,1122,1210,1539,1806,1922,1247,949,893,1855,1540,1282,831,306,320,420,670,715,884,985,842,1050,1221,1239,1385,961,766,614,692,731,702,966,1315,1537,1432,1093,614,433,650,690,744,0,69,151,262,435,710,965,1222,308,496,678,1128,1772,2294,2768,3467,1392,2128,2274,2442,3056,4089,6722,7916,3851,3976,4006,2799,2856,3260,4140,4106,1379,1976,2458,2821,2934,2628,3156,2762,512,806,1258,1223,1549,1139,1022,653,661,746,989,1065,929,1036,826,595,524,941,1403,1882,3098,2822,2406,1707,2387,2176,2810,3121,4372,5180,5238,3752,5000,4376,3699,4442,4357,4334,2913,3319,2029,2793,3084,4817,6005,4315,4342,6805,2035,1844,1519,1433,1670,1347,823,478,12 +52,84,94,124,165,256,241,320,188,256,229,234,279,354,386,343,78,404,637,1060,1530,1766,1286,2191,2850,3546,3680,4388,6196,4938,5058,3482,10454,7318,5137,3890,5945,6336,5014,4191,5255,6476,6725,8554,9045,8378,9202,12976,5074,5696,5131,5144,5797,7589,9541,9943,7806,5833,4037,3304,2491,3509,4158,4782,3000,3338,2799,2224,2314,1646,988,1008,482,1496,2625,2889,2620,3394,5073,5460,3190,3010,2522,2267,2139,2021,1524,1192,677,610,756,584,475,390,226,116,0,5,7,10,8,14,22,27,21,648,1747,2301,2635,2846,4031,3768,3686,2692,2082,1721,1804,1351,1611,1098,1423,1564,1578,1866,2757,2232,1546,1478,2424,1880,1770,1084,482,725,1008,1355,1444,1378,1022,1070,1203,1410,1798,1812,2327,1867,1397,999,884,1203,1731,1972,1992,2212,2401,1596,952,1136,1221,926,0,74,124,234,442,728,1030,1070,854,898,920,1207,1266,2051,2274,2533,1570,1617,1784,2354,2396,4320,5250,5439,4116,3415,4316,3553,2556,3083,3487,3592,1326,2332,2314,2666,2694,2267,2090,2278,766,1184,1538,1780,1698,1442,1383,966,1016,1058,1279,1066,1122,1090,752,578,495,1102,1517,2322,2278,2004,2057,1923,2260,2690,3010,4668,4081,4358,4327,3914,4891,4744,3735,4706,4262,4930,4416,4426,2833,3548,3809,4340,4840,5014,5148,7168,3848,3768,2595,2524,2055,1398,1050,473,12 +83,95,86,75,171,254,268,236,276,271,246,237,250,264,210,194,46,452,957,1081,1825,1518,1878,1789,2717,2852,4240,3786,4750,4955,5158,4376,10835,6927,5854,4958,6478,6282,5166,4925,6066,5636,6989,5506,6501,6788,9158,13448,3983,3584,4232,4250,4810,5843,6297,7684,8722,5364,4102,3099,2260,3880,5346,6268,4256,3950,3090,2301,3111,2578,1670,1128,505,2037,2928,3428,2578,2679,4055,4098,3125,2962,2409,2696,2405,2067,1266,1062,629,836,812,656,683,466,237,134,0,5,7,8,8,18,22,28,29,556,1226,2225,2214,3268,3880,3453,3531,2699,2076,1928,1407,1466,1472,1017,1427,1599,1724,2543,3110,2264,2150,1468,2395,1695,1778,1060,537,1351,1854,2096,1840,1529,1232,1175,1352,1418,1867,2262,4348,3184,1753,1459,1010,1741,2152,2312,3300,2738,2979,2662,1393,1138,1448,1441,0,70,150,208,399,686,995,1090,1448,962,946,788,1225,1900,2338,2162,1534,1664,1700,2004,2179,2436,3464,4239,4686,4376,4110,4102,1644,2795,3428,3410,1404,1680,2302,2637,1600,1536,1861,2720,1225,1338,1736,2382,1754,1726,1689,1133,1380,1077,1158,878,1014,825,764,706,567,1540,2030,3265,2316,2215,2052,2216,2088,2018,2766,3107,3600,3439,3793,3332,4352,4337,4510,5014,5160,5988,4957,3734,2840,3750,4094,5148,4271,4808,5708,9182,6564,4691,4368,4416,1777,1676,1447,684,8 +132,128,96,80,100,154,242,200,222,218,162,182,189,186,142,124,20,486,820,1247,2190,2106,2357,2294,2575,3356,3566,4736,4451,4580,5516,5121,8905,6719,5854,4044,5408,4625,5962,4546,5389,5466,6665,4668,4380,5374,8267,9236,1710,1952,2474,3070,4274,4269,5009,6744,5170,4208,4277,3388,2006,3502,4448,6597,6392,5783,4880,3214,3088,2922,1985,1258,539,1916,2564,2938,3285,3578,2788,3712,2513,2304,2204,1764,1823,1564,1080,974,703,669,586,666,633,440,322,164,0,5,7,10,12,20,25,30,34,532,832,1604,1676,2726,3937,3530,2746,2349,2620,2006,1283,1196,1223,1006,1438,1586,1620,2706,2527,2547,2359,2055,1810,1732,2004,1341,718,1436,2490,2148,2138,2294,2102,1581,1186,1460,1801,2285,4268,3311,2445,1794,1091,2149,2154,2692,3287,3242,3387,3428,2538,2192,1707,1524,0,102,221,285,484,598,921,1147,1368,1206,1013,916,1138,2008,1886,2784,1279,1794,1689,2437,2920,3466,4364,3636,3737,3981,2927,3116,1667,2694,2890,3483,950,1326,1632,2148,1394,1400,1388,1726,1315,2166,2238,2352,2448,2112,1831,1281,1572,1438,1532,1356,1236,1008,755,778,554,1353,1975,3350,2828,2952,2606,3534,1406,2098,3238,3246,2906,3598,3395,3488,4525,4723,3294,4682,4647,4815,5474,5135,4703,4870,5150,3736,4136,5366,5806,8656,6950,7070,6052,4623,3121,2540,1912,1102,5 +172,178,198,178,196,158,185,222,229,239,209,173,93,71,54,26,0,426,841,1386,1536,2154,2288,2380,2536,2932,2974,3231,4097,3932,3269,4141,7287,5723,5666,3237,1402,2021,2406,3193,4852,4887,4580,5015,7267,7539,8661,6374,0,176,356,564,720,1286,2301,2886,3558,4194,3876,4881,4996,6557,6726,6386,9020,9632,10300,8260,7326,5288,3874,2546,422,1048,1357,2081,2195,3632,4262,4221,2267,1453,1011,908,503,870,976,850,1024,1059,828,746,688,644,398,231,0,5,8,12,11,22,29,34,31,738,1473,1745,2414,3842,4366,3968,2483,2129,1506,923,466,822,978,1253,1134,824,740,887,1067,1556,2458,2421,1720,1752,2415,2347,3403,2813,2899,2603,3414,2751,2677,3596,4769,3968,3454,3363,5292,5556,4165,5327,6326,6191,4907,4756,3409,3864,4552,4264,3702,2868,2281,1956,0,96,217,368,404,964,1435,1637,1778,1845,1304,1245,1129,2066,2634,2920,999,1062,962,1458,1748,1893,1870,3245,3603,4076,5502,5015,4786,4516,3909,3708,812,622,662,639,436,1198,1565,1545,1886,1441,1185,1468,1511,1378,1106,1176,1426,1177,1087,1415,1644,1409,1189,937,519,832,1471,2260,3964,4371,5043,4298,942,1633,2571,3145,2800,2868,2856,3650,3841,4090,3104,2920,3340,3773,5128,5395,5782,7408,6762,5564,6739,6663,8074,9540,9852,7768,6503,4701,3705,2784,1755,1014,0 +148,173,206,202,216,180,224,236,222,197,206,155,128,92,62,27,2,294,646,1200,1237,1788,1764,1872,1877,2354,2661,2776,3298,3116,2572,3191,7137,5147,3767,3145,1535,1840,2193,3382,3651,4270,4074,4763,5149,6369,8185,5060,0,245,352,765,748,1702,2650,3393,3654,3811,2937,3128,4237,5467,6078,7542,10336,10171,7855,7321,5520,4604,5240,3012,1948,2065,1922,2816,4134,4043,4573,4595,1522,1180,985,888,900,964,943,951,1028,869,857,732,576,504,346,172,0,6,12,16,22,26,32,35,34,637,974,1410,1805,2768,3571,4654,3426,2320,1418,1096,832,924,943,1169,2358,2060,1402,1657,1344,1748,2180,2690,1470,1569,2128,2398,2673,2462,2613,3180,4051,3116,3006,4136,3812,3595,3711,3196,5464,6236,5207,4087,5811,4956,4395,3302,2538,3366,4668,4183,3084,2554,2044,1610,0,96,199,310,445,842,1031,1570,1650,1719,1066,1002,1042,1373,2234,2610,1361,1660,1345,1551,1831,2112,2640,3680,3210,3880,3956,3502,3356,3922,4733,4736,666,662,522,621,353,972,1555,1286,1932,1678,1364,1606,1229,1278,1377,1214,1766,1711,1872,1441,1550,1158,970,808,521,792,1231,2292,3448,4311,3789,5092,782,1416,1912,2242,2154,2570,3783,3756,3204,3801,3481,2588,3913,4498,5592,6875,4886,5719,8496,8200,6928,7901,10068,15414,15263,13083,11664,7708,4797,4888,3201,2330,1540 +144,174,172,202,203,236,200,255,207,177,145,149,128,77,60,32,3,224,463,876,1511,1414,1852,2169,1606,2272,2559,2383,2248,2345,2870,2428,5915,5223,3536,2646,1496,1641,1872,2415,2776,3549,3886,4758,3805,3963,5027,3933,0,278,500,646,677,1664,2504,3339,2698,2164,2546,3003,4596,6412,6328,6031,9536,6829,7132,4744,6433,5123,4996,4204,4432,3644,2327,2859,5248,4493,4730,6642,1057,1154,898,699,1071,1063,871,896,881,710,640,415,591,422,246,138,0,7,13,23,29,28,32,34,30,459,881,1082,1459,2156,2326,3815,3252,2097,1800,1726,1000,1087,1351,1446,2843,2670,2134,2068,1974,2665,2608,1936,1160,1498,1775,2515,1830,1905,2852,3580,4548,4238,3167,3868,3381,3931,3328,2636,7645,6171,5003,4374,5546,3616,2580,1847,2661,3317,3972,4036,3608,2450,2278,1606,0,122,210,230,345,784,1116,1535,1025,1172,1240,1265,666,1185,1562,1754,1734,1764,1730,1790,2401,3060,3336,3931,2287,2862,2748,2836,3520,3954,4239,3880,742,784,614,558,313,694,1162,1104,1750,1798,1405,1802,1416,1789,1636,1521,2684,2380,2076,1578,1032,1098,1112,882,503,834,1407,2140,3151,3682,4066,4663,568,923,1324,1093,2576,3015,3673,4361,3343,4005,3744,3162,4793,4957,5518,6200,4843,5460,7734,7590,8456,13855,16102,20632,20141,18254,15122,9441,6753,6906,4893,3816,2924 +202,232,142,150,178,145,148,259,171,162,151,137,142,82,69,38,5,214,472,682,1430,1726,1885,1604,1840,1966,2121,2156,1762,1984,2338,1939,5574,5207,2845,2932,2289,2492,1845,2860,2720,2958,3012,3138,2528,2782,3196,2897,0,340,667,772,801,1362,2079,2194,2469,1946,1956,2970,4771,5731,6912,8068,8016,7246,8004,5656,6266,5684,4411,4908,5902,4262,3570,3477,5476,4434,4306,6268,1260,1284,1026,970,973,1063,604,628,904,595,481,350,314,275,208,92,0,12,24,27,44,34,35,38,29,379,980,1001,1496,1920,2085,2783,3750,2628,1992,1804,1534,1582,1432,1476,3532,2554,1776,1940,2557,2312,2208,2070,669,960,1208,1718,1481,2341,2995,3986,7077,5625,4156,4972,3955,3588,3298,3688,7592,7152,4195,3614,4891,4194,2613,2384,2913,3010,2806,2697,3034,2528,1814,1316,0,114,217,270,444,704,1054,1166,962,998,852,956,743,908,945,1207,2151,2272,2435,2434,2589,2860,3506,3536,1254,2226,2594,2610,2895,3278,4594,4326,502,510,588,478,401,745,856,988,1753,1406,1374,1400,1776,1564,1327,1466,2287,2592,2615,1739,1289,1293,1343,800,411,894,1194,1690,2434,3114,3260,4266,372,620,1195,1224,1730,2521,3231,3880,2326,3290,4488,4085,5227,6030,6398,7754,4756,6365,7248,7210,7564,15862,23973,25307,23159,17669,15273,10115,6410,6096,5297,5156,4043 +260,268,190,174,127,201,215,246,161,128,122,116,118,72,48,22,4,149,329,738,954,1388,1846,1821,2090,2204,1749,1646,1372,936,773,738,5415,5776,5160,4042,2797,2466,2717,2573,1781,1884,1600,2088,2150,1846,1273,914,0,244,495,672,915,1070,889,1205,1470,2578,3436,4205,4411,5973,9081,10774,6859,6360,4905,6255,6104,6430,5552,4638,6307,6047,5011,4927,5678,7986,8698,7228,1148,990,952,957,1060,1093,1048,836,739,568,384,255,168,155,114,50,0,10,15,28,45,44,54,65,17,384,800,914,1244,1764,2237,2394,4023,3697,2709,2634,1815,1506,1580,1526,3371,2560,2655,2524,2624,2810,2171,2190,328,539,894,909,1158,1527,1789,2840,7925,8184,9050,6790,6306,5850,7735,5566,8410,8722,7751,6416,2985,3139,2377,1977,2727,2265,1801,1936,1898,1931,2084,1788,0,90,180,306,394,588,669,857,872,1008,909,986,772,679,830,821,1968,2059,2919,2529,2810,3306,3194,2818,547,937,1775,2330,3228,3306,2735,2631,279,433,454,489,414,405,555,1034,1603,1410,1860,1555,1548,1549,1574,1269,2528,2638,2195,1979,1636,1132,1148,794,505,1057,1277,1708,2473,3357,3216,3626,198,467,654,1029,1334,2448,2952,2904,1414,2220,3876,3930,4598,6139,6500,8761,3403,3898,4452,5189,5570,10044,16185,19920,24950,21127,21348,13906,8331,8732,8943,7224,4934 +264,201,173,146,141,179,158,218,188,112,114,98,118,80,58,30,6,114,306,588,578,1132,1354,1314,1447,1384,1237,1024,1330,846,667,585,3832,4541,3480,2689,2032,1936,1980,1897,1090,1384,1230,1684,1492,1160,1077,714,0,175,393,506,693,698,602,1176,1046,1605,2420,3232,2933,5196,7614,10361,7532,6540,7056,7329,7794,7938,6683,6187,6462,5635,5974,5974,5916,6543,6230,7360,2033,2896,2169,2422,1918,1838,1410,942,502,412,338,174,176,135,111,52,0,10,22,34,49,50,65,62,32,332,542,852,1274,1570,2255,2230,2894,2904,2112,1934,1349,1538,1444,1719,3143,2866,3087,3166,2448,2310,2708,2463,398,699,849,1212,974,1658,1985,3062,7653,8897,8478,7915,5233,5132,5479,5448,8682,7408,5781,4852,2466,2340,2051,1543,2145,1982,1245,1642,1179,1580,1680,1596,0,76,122,194,295,454,488,645,792,718,724,834,1000,1064,978,758,1630,1722,2310,2543,3014,2889,2289,2444,572,1032,1292,1930,2634,2858,2541,2700,246,338,304,334,318,395,385,732,1219,1390,1299,1363,1421,1468,1552,1520,2325,2084,1848,1466,1587,1098,874,569,436,683,745,1206,1501,2201,2251,2888,116,326,538,754,1012,1508,1855,2256,948,1806,3169,3278,4324,5222,6220,9012,4712,6422,10277,11928,8814,12812,20807,31296,25722,28928,18144,18143,12857,11855,13726,12316,12089 +194,129,108,154,161,135,171,220,159,113,99,98,126,110,58,33,6,107,181,279,331,589,718,890,1108,1163,860,797,902,861,565,447,2021,2008,2114,2159,1379,1031,1053,938,816,1059,1066,1218,915,931,758,566,0,101,238,391,293,520,608,754,691,926,1554,2406,1941,4000,6374,8886,5860,6333,6992,7000,8546,10140,9697,5861,4959,6211,6903,7826,6287,5550,5138,5089,3783,3474,4076,3316,2737,2070,2178,1358,284,286,230,163,126,86,74,38,0,10,21,26,48,64,58,61,53,255,394,703,1040,1405,1552,1349,2382,2473,2126,1319,794,1034,1641,1857,2716,2270,2818,2744,2202,1968,2433,2027,648,707,1004,1640,1261,1956,2882,3018,6733,5853,7214,8106,3947,4522,4003,4552,8631,6025,5136,3306,2589,1726,1232,988,1806,1646,1208,1687,969,1456,1555,1254,0,36,84,122,248,374,432,539,452,512,527,547,945,940,1076,720,1867,1707,1446,1712,2289,2356,2394,2294,810,944,1091,1772,2488,2599,2274,2427,144,152,220,229,236,221,276,379,1144,1433,1298,1414,1310,1358,1616,1500,2163,1671,1329,1020,1296,1103,806,414,236,406,450,706,1065,1212,1532,2048,61,198,422,787,636,764,1220,1178,532,1464,1952,2884,3063,5397,6625,10116,5887,11172,18890,18074,12026,18582,30224,40808,36294,26032,18902,17653,19977,15624,14598,17871,16324 +184,126,120,161,193,156,178,181,169,118,121,91,113,83,52,33,6,43,108,145,191,288,360,492,597,526,480,364,437,387,290,232,876,969,1058,1009,726,552,631,504,354,474,582,620,528,526,333,251,0,53,105,186,141,223,305,432,379,571,1072,1555,1420,3426,5525,8938,4423,6876,7086,8149,8951,8958,11993,9060,7849,7558,6750,5642,4462,3961,4579,4967,4628,3956,3948,3828,2860,2530,2024,1206,232,214,171,147,108,91,55,30,0,12,29,36,50,59,63,64,67,272,402,635,980,1535,1844,1899,2524,2091,1794,1134,755,1154,1421,2190,2560,2448,2424,2506,2240,2518,2863,2018,1026,878,1174,1390,1283,2238,3317,3771,5190,5480,7418,5700,5128,5972,5238,4735,7714,6208,4458,3329,1706,1207,970,554,724,920,927,1126,895,1134,1651,1424,0,21,48,64,109,174,201,259,229,352,489,626,974,1016,1355,1234,1669,1421,1444,1562,1774,1606,1244,1641,994,1064,1122,1320,1891,1827,1832,1892,62,102,130,126,119,126,176,236,617,875,796,1210,1393,1378,1475,1692,1713,1418,1466,1168,880,673,549,304,194,223,299,354,457,568,910,967,26,104,213,345,360,444,700,704,237,828,1381,2074,2019,3332,4245,6924,6136,14894,26236,27980,23007,33378,33312,30328,35774,28618,18830,17451,24184,19180,17111,16296,19720 +126,109,112,96,113,127,120,102,61,63,71,64,54,44,23,13,4,6,6,6,4,5,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2535,4902,5449,7849,7269,9893,9724,4772,4716,3925,3182,1591,1305,642,365,0,117,211,387,617,1556,2386,3232,4454,3078,2790,2873,2737,2927,2194,1440,996,592,363,299,146,105,56,34,0,16,34,45,53,79,135,154,190,358,576,718,970,1224,1913,1906,2248,1506,1178,1130,879,1198,1391,1393,1298,1339,1509,1003,944,1056,1573,1451,1158,1716,2686,3005,3821,3944,4383,4356,6436,9074,8901,8959,8948,7981,6839,6395,4808,4001,3645,2611,767,610,530,277,82,140,159,198,175,712,1086,1131,0,20,44,80,93,121,169,154,151,379,537,690,913,957,1235,1302,1482,2010,2052,1761,2190,3252,3931,3638,3635,3321,2907,1814,1250,1418,1353,1444,0,0,0,0,0,0,0,0,0,134,320,529,769,1343,1663,1921,1949,1506,1547,1893,1735,1498,1035,622,0,0,0,0,0,0,0,0,0,1332,2790,3521,5052,5829,8526,8165,10216,10163,8593,7708,5606,6039,4782,5827,8467,9957,10786,9430,9853,15394,15863,21493,21924,18056,15136,16732,25184,22627,23025,17582,18619 +126,114,119,102,93,91,81,84,51,50,66,50,50,42,23,16,6,40,58,90,74,130,217,230,1089,1275,1176,1274,652,1144,1514,1892,410,617,574,638,650,524,339,200,362,506,734,692,724,710,988,870,157,202,187,237,152,112,104,64,8,1961,4109,4150,5852,6768,8151,7902,5598,4866,3593,2570,1284,983,776,470,304,512,693,886,782,1866,2783,2928,5560,3423,2751,3114,2968,2923,2220,1766,793,467,288,232,240,192,116,57,0,17,36,46,63,83,119,136,163,502,780,807,1320,1463,2451,2196,1882,1781,1716,1280,901,1141,1071,1017,1354,1166,1100,944,1072,1372,1366,1504,1003,1400,2500,2768,3756,4590,4516,6254,5999,8376,6044,6074,9270,9007,7930,5760,3640,3434,3490,3353,2204,1739,1420,912,423,450,473,474,476,1286,1642,1740,249,251,340,273,176,181,191,222,204,427,715,744,893,1200,1631,1976,1541,1683,2133,1982,1872,2305,2544,2746,3472,3307,2211,1850,1359,1318,1659,1566,51,71,87,96,122,155,217,216,124,240,309,610,763,1139,1273,1728,1764,1790,1679,1644,1237,1298,1024,777,165,158,177,191,92,96,91,44,90,1292,2312,3256,3650,4872,6232,9203,8698,9713,8430,7670,6242,5276,4877,5091,8891,9306,9501,9528,8710,12082,17202,16902,17260,19840,14977,14050,18965,18548,16558,14314,14214 +149,106,96,131,99,77,68,97,48,45,45,38,32,30,24,19,6,60,117,196,141,274,359,372,2386,2240,2224,1802,1620,3056,3544,4359,845,874,1274,1306,1363,867,608,378,714,1098,1286,1362,1536,1355,1776,2048,353,435,449,430,281,210,179,157,16,1360,2730,3150,4675,6363,8858,7107,4623,4250,3463,2592,1385,1253,902,627,564,772,1096,1792,962,2001,2856,3070,6949,6460,3868,2886,3123,2850,1960,1610,573,356,222,190,254,181,168,91,0,20,36,63,98,107,94,132,132,521,839,1343,1660,2032,2320,2344,1889,2173,1882,1554,1149,1117,980,800,997,816,728,727,972,1440,1544,1240,750,1377,1988,3016,4120,5140,5837,7471,7736,5408,5374,4309,9858,8968,8002,8144,3471,3632,3150,2706,3208,3026,2195,1370,880,789,848,726,622,1702,2228,2510,448,570,551,413,206,266,280,222,293,492,692,835,895,1071,1514,1866,1265,1654,1695,1456,1295,1757,2173,1815,2181,2287,1861,1600,1532,1614,1438,1303,109,134,188,178,241,298,373,363,243,358,447,908,1118,1219,1084,1280,1665,1968,1825,1946,937,1396,1419,918,298,334,338,328,224,206,162,103,199,1185,1969,2614,2547,4949,6640,7356,9900,8280,8690,6545,5800,5210,3470,2774,6764,7078,8842,11095,11822,12885,18176,17712,20951,22455,18202,12137,12574,15892,14380,10430,11241 +137,122,102,118,106,92,66,82,50,55,60,37,32,32,24,18,7,64,117,234,290,386,549,613,4052,3418,3165,2438,2535,3140,3470,5700,1100,1404,2090,1988,1836,1662,926,596,816,1755,2348,2156,2001,3108,3969,3618,626,613,687,592,388,350,302,184,28,1206,2311,3796,4358,5977,9148,8088,4572,4002,2557,2362,1418,1101,1076,738,592,969,1055,1719,1898,2730,2764,3667,7688,4891,4881,2898,2474,2305,2169,1502,430,341,195,190,282,236,192,98,0,28,44,73,131,133,136,157,181,534,858,1460,1868,1866,2533,2614,1576,1930,1677,1374,1075,1044,1199,1196,898,825,869,854,1081,1295,1483,1466,618,1215,2110,2545,3451,4632,4738,6583,5623,5966,6132,5126,8770,6953,6426,6054,2252,2910,4502,3726,5030,3563,2626,2375,1322,1052,1146,1194,1130,2103,2105,3255,865,912,677,588,355,352,386,324,398,613,707,843,1016,1224,1471,2137,806,944,1252,978,1129,1243,1311,1240,1865,1325,1245,1122,1162,1114,1218,1090,140,277,253,253,339,458,488,672,302,354,461,776,1045,1017,1059,1066,2471,1776,1704,1537,1196,1453,1308,1140,568,524,404,326,297,263,282,158,300,965,1505,2090,2880,3868,4595,7361,9202,9294,7355,6620,5037,4436,2582,2603,4365,5109,5487,8296,11162,13536,12892,15124,15304,13139,12276,11746,8754,11565,11142,11852,11322 +89,63,64,93,105,115,126,97,72,69,56,40,34,34,22,15,5,115,188,265,394,472,547,716,4579,5183,5332,4450,3872,4584,6147,7278,1736,1893,1955,2612,2462,2001,2065,1201,1166,2290,2754,2699,3333,3158,3666,3498,1004,1044,775,589,658,483,454,310,49,906,1557,3134,5046,5618,5955,6864,4232,3213,3481,3241,1972,1933,1476,1222,851,1336,1988,1856,2502,3159,3190,3693,6836,6688,5780,4191,2598,2712,2242,1547,387,446,468,361,380,320,240,126,0,34,55,96,135,176,169,170,177,677,1196,1288,1623,2057,2459,1922,1727,1834,1817,1478,1078,932,1026,1392,927,1194,1253,1054,1190,1451,1488,1240,431,1444,2053,2588,3052,3540,4663,5972,5857,7456,7198,7528,5723,5150,5267,7336,1935,3103,3457,3828,5427,4620,2514,2628,1324,1402,1691,1811,1858,2139,2473,2305,1041,845,757,561,576,552,348,353,371,498,789,1009,1184,1271,1269,1706,434,346,412,610,647,704,807,804,970,945,858,938,942,716,655,737,235,279,434,389,397,405,515,838,503,638,567,785,1040,1178,1165,894,3066,2135,1882,1884,1342,908,863,1040,881,776,415,499,474,408,276,154,356,616,1010,1716,2330,4297,5397,7539,10415,7304,5739,4500,3122,2055,1986,1599,3387,5248,6168,7271,7519,5825,7003,8371,10092,8474,5224,6792,7262,9136,10153,9311,12996 +120,108,102,128,100,114,101,116,63,62,63,44,43,28,22,16,6,358,706,910,784,1327,1748,2201,6661,6400,7620,4800,4529,5704,6588,9919,4180,3632,2999,2766,3068,2034,2080,1674,1312,2140,2280,4447,4479,4336,5032,7739,3229,2168,1675,1858,1610,1379,1210,702,80,636,1134,2090,3440,4009,3394,3935,3594,2824,3330,2698,2043,2164,1764,1680,1348,2068,1952,1914,3175,3453,3136,4475,6976,5820,5466,3096,2182,1862,1642,1326,624,669,643,370,550,462,294,124,0,42,88,140,170,210,214,266,259,763,1176,1360,1242,1599,2232,1856,957,1288,1093,1212,723,766,896,1101,757,1092,1003,912,999,1042,1217,986,754,1612,1640,2518,3894,4688,5274,7768,6126,6792,6769,6626,6548,5660,4780,8511,4069,4786,3172,4812,8077,8002,5240,3514,1647,2046,1787,1746,1596,2175,2125,1940,1027,832,937,728,484,440,474,382,470,670,917,1086,1388,1304,1459,2074,430,339,474,556,539,504,632,542,738,672,904,758,1133,990,561,766,222,266,440,428,420,462,633,778,630,757,843,1104,766,1007,1031,891,2834,2498,1654,1411,1468,1170,968,1182,1134,1006,682,620,606,552,411,212,543,784,972,1522,2008,4031,4405,6476,8992,7051,5327,3737,2803,1996,1616,1284,2280,3718,4880,5331,6189,5136,5063,7646,6936,5129,5296,5188,5772,5845,7690,6890,9891 +151,140,150,153,92,103,106,118,59,55,53,38,38,28,22,13,5,507,1128,1302,1542,1911,2916,3356,8389,7295,8304,4645,4797,5848,7377,10382,5665,4901,3717,3313,2923,1906,1696,1769,1218,1640,2405,4241,5434,5506,7460,9686,5343,3404,3057,3298,3332,2420,2265,1064,125,511,1046,1937,1815,1934,1922,1654,1925,2183,2602,1996,1597,1800,2660,2832,2483,2133,2715,2532,3680,3732,3546,3982,6790,5715,3939,2302,2202,2080,1352,1288,917,656,664,515,821,516,324,160,0,58,121,160,185,256,314,433,314,585,1134,1125,876,1331,1356,1248,644,702,736,830,640,578,530,803,844,900,1020,988,1022,1098,814,784,1230,1573,1832,2605,3574,4728,4556,9495,7466,7864,7831,6942,6798,5559,4969,7074,6507,5073,3862,5883,9942,7943,6890,4882,2187,2376,2018,1934,1738,1659,1520,1678,890,926,970,939,398,392,562,416,472,840,962,1163,1395,1391,1503,1966,286,392,388,386,271,302,290,252,331,449,727,726,1145,854,738,797,211,258,392,363,487,648,633,832,671,863,880,1217,843,621,664,463,2291,1842,1832,1801,1573,1777,1520,1048,1256,1007,942,659,943,798,412,195,737,843,1074,1442,2104,3193,3694,5376,8740,6910,3990,2344,1900,1248,764,795,2188,3606,4142,4471,4130,4614,4009,5240,3612,3973,3620,4933,2713,3594,3888,3306,3951 +155,146,155,146,83,88,101,104,78,72,54,36,41,27,20,14,6,598,1552,2654,3290,5094,5386,5354,8020,7366,9991,5714,4165,6857,8475,11971,5886,5682,5841,4076,3217,2486,1653,1698,2116,2740,2608,5224,6725,9528,10284,17216,5626,5647,4692,5113,4032,3354,2874,1432,189,428,621,946,768,1065,802,765,1220,1681,2024,1532,1466,2187,2696,2881,3498,3014,3291,2702,3878,3852,3903,4943,5932,4253,3435,2135,1912,1840,1476,1134,761,710,800,692,904,522,299,126,0,70,165,186,265,330,347,445,364,556,870,961,1024,1328,1159,1358,270,385,392,414,394,412,382,538,825,858,888,780,790,754,431,395,2012,1765,2003,2752,3512,4502,5196,9982,6928,6354,6284,6142,6924,5336,6147,7897,6714,7315,5590,7224,10742,8506,6187,3968,2494,2200,1826,1940,1469,1382,1403,1813,1234,1024,778,632,437,558,700,614,595,759,896,904,1254,1138,1284,1704,404,413,444,352,182,184,185,150,195,400,500,702,973,694,832,975,266,286,443,420,467,601,986,1094,1098,976,612,868,969,622,482,376,1982,1829,2288,2006,2029,2372,2350,1704,1684,1528,1426,1202,1126,774,568,336,898,1037,1253,1290,1532,2450,2172,3356,5129,3956,3140,1782,1101,776,514,398,975,1462,1791,1972,1890,2302,1891,2168,1951,2264,1954,1848,1621,1845,1953,1434,1593 +187,233,241,204,163,151,128,115,104,85,38,28,17,16,13,11,5,1747,3828,5816,7349,6215,5829,6994,8706,9705,8641,12651,18377,13699,10491,14075,7659,7202,5680,3655,2168,1711,1865,2157,2822,6478,9255,13613,14013,12303,15536,21901,6938,5926,3328,2682,2396,2086,1485,955,206,202,238,182,147,126,70,30,272,819,1506,1968,2828,2725,2414,2376,3492,3721,3899,4049,5470,4748,6396,7026,3964,4179,4307,4284,3059,1844,1386,1120,950,765,608,357,119,95,54,24,0,41,78,102,166,168,214,306,523,657,824,870,906,950,793,913,0,49,92,152,207,294,336,598,814,729,544,482,297,260,137,62,2289,2953,4119,3624,3696,4464,5090,7204,8375,6355,6383,5238,6442,8455,10960,8285,8823,9426,7720,6740,4950,3154,2527,3122,2954,2501,1838,1749,1874,2292,2431,2494,1310,1823,1741,1510,1325,1324,1181,846,820,850,674,969,1234,1136,960,1110,393,384,317,186,83,67,59,34,0,208,441,570,722,698,983,900,390,591,812,841,990,1073,1319,1283,1194,1177,894,551,399,273,234,104,1532,1521,1221,891,650,993,1052,1413,1790,1446,1467,1023,560,412,344,161,859,1072,1506,1740,1888,1828,1916,1796,2118,1698,2007,2136,1818,1202,783,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,148,194,214,138,140,130,139,126,100,51,46,26,20,19,12,5,1600,2865,4802,4835,4811,6572,5852,6016,7476,8462,11404,16429,14294,10761,13772,11965,9464,7356,5464,4612,4179,4632,2964,2828,6233,9136,11312,18148,23407,21589,34114,6571,8413,8046,8654,7403,6911,5887,4208,1068,1208,1152,1490,1657,1292,1318,731,235,1020,1399,1938,2564,2210,2138,2788,2905,2824,3316,3642,4419,4483,5324,5459,3154,3952,3125,2838,3580,2316,1346,1208,944,686,446,302,153,131,73,46,0,49,120,136,225,262,314,411,438,708,838,868,1011,1071,966,984,406,398,470,572,614,926,1631,1530,1656,1516,1195,960,747,658,434,433,3166,2893,3805,3494,3718,4260,5444,5690,5201,6188,6252,5451,5509,7529,9120,8767,9529,9092,6607,5382,5168,3858,1964,2686,1888,2429,2075,1768,2273,2698,2966,2994,1708,1430,1792,1857,1583,1403,1316,909,1144,1017,874,1044,1342,1162,1036,1206,310,327,341,209,106,92,92,61,51,224,421,454,678,732,773,750,353,694,901,1100,1080,1358,1314,1554,2001,1724,1428,970,878,582,534,304,1496,1740,1471,996,654,768,1202,1363,1697,1424,1442,1110,836,602,501,288,906,1147,1297,1350,1574,1636,1304,1918,1737,1652,2042,1729,1920,1293,494,279,0,199,456,592,640,568,650,570,440,542,662,795,1044,1228,1465,1630,2132 +93,125,119,119,162,130,122,145,122,82,75,54,27,24,18,11,4,1294,2460,3240,4542,4036,5297,5814,5524,6591,8724,11260,13614,16581,16058,15398,16723,13605,8055,6831,5967,5496,6076,5522,3183,7219,11650,14267,17651,22535,37376,42319,9190,11653,15017,13220,9956,11527,9562,7807,1713,1791,2199,2488,3484,3569,2545,1769,266,771,1081,1601,1751,1930,1492,1978,2240,2505,2038,2908,2652,2726,3527,3476,2462,3264,3224,3003,3017,1834,1500,902,1075,756,486,313,210,182,124,72,0,59,132,164,272,317,370,488,360,540,960,1198,1122,1304,1204,1234,690,809,842,1348,1072,1720,2592,3213,3242,3201,2129,2099,1192,1108,888,624,4074,3893,2468,2384,2708,3777,4180,5121,3373,4915,5198,4360,4391,6450,8804,10035,9226,6084,5118,4091,5073,3557,2298,2092,1576,2168,2060,2711,3048,2805,2764,2859,1685,1718,1476,1559,1566,1522,1100,1076,1346,1413,1092,1460,1211,1322,994,1334,266,271,296,264,101,122,105,74,93,210,392,350,443,375,424,444,243,556,1136,1269,1124,1735,1865,1749,2854,2570,2050,1379,1276,848,800,659,1747,1560,1367,1034,689,718,971,1078,2368,1662,1427,1152,930,917,728,377,1120,1247,1102,838,1362,1063,1160,1484,1793,1415,1429,1238,1483,1028,422,195,0,392,814,1104,1095,1408,1350,1279,736,1046,1124,1454,1945,2297,2628,2973,4699 +66,92,113,121,145,126,104,115,137,85,60,53,36,34,23,16,5,1008,2229,2758,3870,4050,3444,3853,3162,4904,6195,10134,14001,12607,17643,18002,14670,13584,8418,9736,9374,8488,6386,6676,5620,8963,14896,16184,19614,22642,32066,45810,13388,15773,16982,19110,17600,18557,17131,11179,2502,2746,3766,4455,6499,5845,4689,3635,255,648,929,1170,1386,1719,1291,1664,2001,1810,1513,2029,2083,2746,3761,3352,2447,2586,2513,1978,2232,1608,1662,1067,766,664,467,382,287,194,177,72,0,86,152,207,315,364,381,454,490,652,842,1006,1308,1199,1398,1525,1161,964,1000,1284,1381,2360,2439,3808,3200,3244,2472,2442,1418,1306,1331,1050,4030,3366,2414,2501,2741,3117,3202,4928,2492,3988,5254,4836,3859,6357,7198,10121,7708,8545,7373,6508,5982,4326,2383,2217,1870,2685,2515,3416,3439,2594,2260,2794,2264,1771,1491,1700,2011,1662,1304,1088,1636,1634,1209,1546,1380,1490,1464,1412,147,150,254,196,148,148,190,157,124,250,311,354,477,418,389,424,161,535,1060,1632,1468,1738,1766,1831,3569,3528,3185,2504,1576,1298,898,656,1229,1356,1326,1101,970,863,828,948,2233,1729,1249,1290,1662,1188,833,480,1072,985,967,694,940,800,628,724,1964,1984,1470,1316,894,658,270,158,0,552,1439,1581,2201,1944,2049,1458,986,1704,2261,2216,2684,3062,3142,4673,6439 +43,51,66,85,96,124,129,104,107,100,87,72,48,43,34,21,4,852,1457,2807,3412,2573,2501,2634,1721,6425,10047,13223,13784,13056,11617,21239,17471,19445,20871,14004,12494,9003,6284,6024,7234,11109,12474,16058,21432,30849,32756,48554,15649,17964,25386,28671,29025,26906,19939,12385,3212,3371,4296,5304,7834,7306,7025,6033,167,256,447,703,855,731,938,1360,1189,1896,2317,2631,2296,4078,4610,4260,1730,2054,2625,2873,2206,1958,1690,1444,665,464,370,409,321,294,184,86,0,49,118,203,320,279,369,505,470,748,955,1220,1195,1608,1679,1734,1312,1859,2260,2562,2161,2708,3903,4388,4377,3966,4100,3479,1922,1743,1727,1349,3572,2875,2677,2154,2084,3690,4213,6060,2822,2429,2851,4781,5160,5284,7499,9323,9208,6230,5317,5520,5327,4047,3424,2572,2254,3164,3336,3278,2940,2537,2258,2661,2500,2656,2945,2298,2356,1935,1855,1650,1434,1226,1249,1728,1748,1642,1511,1240,41,72,94,161,179,193,172,176,142,236,275,360,488,369,243,263,88,401,641,1355,1670,1646,2186,2186,3698,3143,4084,3713,2294,2474,1850,1116,1086,1257,1472,1087,1175,1063,732,647,1923,1977,1635,1625,1927,1516,1173,616,1050,1062,985,862,492,431,280,342,2344,2035,1687,1129,600,335,222,123,0,808,2005,1963,2863,2972,2641,2609,1407,1806,1973,2567,3336,4214,4764,6388,8390 +60,66,61,90,76,102,112,100,85,84,58,56,47,38,33,18,5,580,1193,1961,2424,2205,1624,1953,1268,5366,6268,8476,13278,13395,13806,22746,16453,17798,15995,13481,14240,11354,10460,8778,12771,13382,17470,18092,27214,27132,26790,35166,21758,21050,25070,32839,37866,33838,30032,21968,6362,6562,7514,8012,8264,10642,10158,6525,119,244,343,506,745,698,901,1440,817,1134,1744,1726,2019,2607,3582,2798,1164,1595,1570,1652,1594,1358,1258,853,393,297,341,284,213,198,104,62,0,71,121,226,291,338,425,457,527,674,930,977,1074,1223,1295,1392,1774,1913,2726,2644,3088,3314,4536,4396,4490,4297,4472,3476,2716,2425,1419,1512,3432,2325,2721,2154,1669,2808,3910,5296,4351,3190,3226,3597,4756,5980,5607,7736,8534,6765,4927,5228,5136,4596,4300,3326,2364,2892,2731,3066,2489,2134,2193,2244,1760,2228,2054,2108,2340,2319,1636,1852,1302,1166,1243,1500,1577,1252,1012,939,36,62,82,137,142,172,194,156,208,243,202,340,339,252,235,216,170,434,781,1245,2187,2341,2345,2092,3694,3935,4167,3182,2302,1814,1573,1384,1455,1679,1394,1408,1487,1192,1557,1346,2938,2488,2726,2528,2820,1986,1724,936,780,862,832,699,549,496,435,398,2293,1721,1339,884,433,356,175,115,0,950,2161,2486,3086,3294,2937,3236,3330,4378,5202,5984,7027,5439,5556,6581,8354 +72,75,66,79,70,72,90,84,45,44,52,54,40,38,24,15,3,325,795,1139,1848,1922,1549,1845,742,3092,4412,5715,10920,12887,15582,18943,10738,11819,14460,15045,13960,15275,13042,15439,14439,14000,20501,26242,25698,27998,33648,33805,36034,35617,23894,39879,54431,38474,35865,19332,7642,8546,10044,8174,11705,12590,10300,9556,62,175,326,438,513,654,664,928,604,871,904,889,1157,1920,2324,2361,767,864,1076,1377,1148,1040,686,532,223,240,222,194,108,77,70,38,0,86,144,272,189,309,379,316,541,715,808,1222,785,884,1314,1398,1928,2163,2344,2312,3303,4012,4252,4469,6089,5749,3724,3016,2938,1742,1381,1544,2443,1881,1930,1876,2024,3087,3884,5558,4765,4763,3684,3848,3421,5501,6028,7260,5993,5199,4456,4960,3612,4381,3817,3797,3625,3645,3446,2983,1673,1932,1650,1971,1326,1568,1835,2471,2294,1875,2204,1591,1472,1440,1262,1324,1343,1149,759,783,22,40,72,154,142,152,154,173,237,242,204,326,254,224,250,226,306,461,741,1190,2317,2517,2005,1880,4396,3870,3034,2461,2382,1832,2042,1823,1732,1428,1762,2068,1914,1896,2150,2617,3177,2607,2950,3341,3194,2932,2290,1680,840,888,740,715,499,540,518,382,1798,1869,1320,833,368,231,170,88,0,1200,2146,3197,3058,3292,4406,4552,6579,8243,7632,8868,11471,7807,6016,7640,7385 +82,68,60,72,56,62,72,64,38,46,44,41,36,26,20,12,2,192,400,578,861,926,645,856,357,2026,3638,5497,7006,8018,14228,19450,11287,14782,16138,15640,13577,13504,12964,14385,17274,20602,23814,27126,20476,29628,37949,41728,35020,32875,32029,40682,61726,46436,41962,26824,14561,11890,8380,11862,11868,11331,8044,6861,27,88,180,236,289,290,306,396,320,332,386,412,502,866,1150,1152,461,474,618,684,615,446,280,262,98,128,119,96,57,46,38,23,0,82,166,213,215,280,296,336,498,632,711,974,864,892,1199,1275,1728,2430,2773,2718,3282,3252,3931,4214,4197,4579,4307,3170,2680,1710,1633,1652,2486,2152,1634,2126,2682,3099,3171,4387,4788,4430,4078,3434,2223,3020,3751,4998,5284,4654,5660,5486,3527,3438,4122,3832,3802,3963,3901,2547,1597,1552,1419,1676,1726,1500,1341,1803,2000,2282,2284,1940,1630,1518,1592,1086,978,828,510,462,11,41,96,142,198,191,191,204,189,189,242,230,216,218,261,216,337,508,806,1170,2151,2107,2697,2502,3834,3146,2805,2482,2250,1804,2249,1558,1514,2081,2454,2198,2172,1888,1858,2333,2948,3320,3412,3197,3577,2718,1887,1638,863,758,616,698,565,662,616,446,1178,1203,723,487,356,263,178,84,0,1347,2859,4158,4975,5664,4760,6654,7957,9852,9294,9638,15084,12824,8001,8792,8468 +64,2122,4177,5746,6026,6539,9546,10042,8374,11374,15283,14883,18564,15097,17178,18928,15405,12864,14754,12678,8076,5086,3263,1726,0,2545,5672,9741,11801,15814,17196,19674,15750,11460,5709,4930,2767,2118,1318,739,0,3455,8092,10282,15128,15677,15704,30115,36363,40917,33575,21326,15700,14476,8500,4772,0,574,1343,2504,3022,2804,3933,5977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,137,148,204,239,304,410,522,535,450,415,439,381,368,392,487,450,288,173,85,69,57,24,0,417,802,936,1199,1046,1046,1299,2692,2444,2053,1474,1132,1347,1599,1699,1990,1774,1973,1438,1427,1192,658,379,0,118,280,371,452,516,458,475,540,688,677,583,715,829,923,1241,1629,1159,1060,943,792,845,717,566,326,403,647,774,917,983,1305,1400,1125,1140,1159,1004,811,790,645,433,406,338,171,163,151,169,200,217,406,577,612,464,502,508,459,404,275,293,273,258,181,348,442,618,799,1120,1101,1153,1411,1276,1252,1204,868,1100,1106,1088,1439,1719,1474,1316,822,1330,1913,3203,4694,3560,3180,3872,5517,5380,5022,8037,10889,17820,18835,17311,17114,16494,11589,13362,12851,11574,14544,12831,9098,10344,8921,7380,4179,6946,10286,12024,12155 +64,1810,3392,4875,5031,5951,7883,8948,8529,12400,15981,12696,12954,11986,16481,12903,14035,12805,11621,8706,5318,4770,3577,1976,235,2242,6157,7142,10551,12606,15695,14321,17470,12638,5142,4940,2746,2631,2678,2737,1959,5862,10708,13844,18966,20629,25139,28784,44892,34770,23458,18882,14269,11911,7703,3888,412,1070,1828,2243,3484,3212,3963,4891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,199,323,377,472,711,870,600,638,692,650,440,612,504,604,460,462,455,352,209,261,354,279,346,1135,1929,1972,2086,2252,2198,3040,3186,2752,2491,2112,1687,1688,2042,1931,1700,2232,1626,1909,1308,1008,529,324,0,98,230,277,372,458,489,478,469,528,514,568,852,910,882,980,1404,1110,1002,813,615,742,596,462,294,512,700,941,921,1137,1194,1228,1084,1192,1121,906,643,512,456,406,509,406,254,232,157,150,172,170,327,668,687,748,1054,1484,1667,2380,2686,1792,1184,1079,1094,988,870,1188,2338,3250,3802,5681,6868,7087,5912,6746,4492,5099,3865,4418,4680,4594,4002,3294,1102,1718,2553,4394,4565,4040,3721,4343,4565,4497,4682,7884,10848,14768,12706,15922,23733,19858,19355,13278,10920,11054,8655,9633,8850,9620,9237,9058,5925,10266,12020,11440,11766 +56,800,1864,2582,4223,3982,5176,5060,6654,10766,11606,11158,12811,12120,11794,14475,13148,9842,10708,7970,5104,4404,3090,1803,452,2903,4695,5242,7608,9486,10846,11209,14729,9024,6094,5852,3269,3801,4642,5266,3418,8196,12938,19001,18356,21720,29334,40980,38520,25448,24490,18993,19502,16168,9558,4933,970,1238,1791,3220,2884,3029,4114,6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,271,507,469,709,1023,1367,677,919,916,1050,646,701,816,1040,654,559,524,575,368,592,648,530,677,1925,2930,2696,3116,3006,3128,4003,3327,2792,3094,2278,1990,2120,2496,2262,1971,1838,2008,1700,1514,1048,611,357,0,64,120,205,318,391,430,418,373,372,528,804,719,1027,994,948,1727,1203,1024,1143,686,581,483,446,170,480,647,759,1112,1183,1001,980,1005,812,929,736,600,418,380,355,472,449,366,335,197,160,124,108,407,764,876,1066,1741,2757,2890,3309,4429,3451,2204,2187,1799,1507,1434,2027,3626,5140,7519,10159,12513,13065,12598,13002,8456,8588,7421,7847,6384,8010,7161,5654,1295,2339,2754,3927,4395,4556,3842,4777,3734,3998,4122,6132,10536,11200,11985,14089,28398,26046,21118,14310,13419,8410,6984,5086,9465,10736,9790,7702,8792,9272,13754,11366,11305 +39,570,1298,1606,3298,2990,2554,3020,6821,8020,7818,9562,10534,9834,7522,9947,14030,11128,11103,9144,6296,6675,5470,2872,584,2540,4047,6114,5990,7692,7625,7535,9152,6553,4119,5376,4628,7266,9283,12134,5639,12829,15246,24704,24541,25153,30253,40327,43382,40833,30003,21678,16554,14686,7338,3806,1315,1316,1666,2510,3274,3608,4016,7682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,273,583,504,1009,1294,1584,480,696,779,1076,1260,1114,1308,1765,907,724,768,748,672,750,820,842,797,1914,2930,3194,3956,3647,3262,4934,4160,3905,3835,2965,2342,3146,3330,2985,1258,1502,2127,1978,1681,1176,684,384,0,55,78,124,218,304,367,340,403,529,714,822,762,914,812,1030,1770,1514,1350,1122,780,624,498,404,131,337,522,708,831,810,700,866,946,875,826,538,416,424,413,260,451,408,326,246,202,146,147,112,291,807,1046,1649,1818,3288,3731,4710,5767,4133,3658,2878,2180,2164,2455,3602,5999,7269,8816,12374,15680,17380,19617,18526,18002,13128,12205,10190,10366,11988,12038,9407,1035,2256,2746,4340,5202,5324,6262,5820,2853,3702,4783,5751,7104,8743,8544,11996,28947,28290,20009,16376,12215,8628,6251,5067,6547,7374,8761,7276,9165,15010,15250,18838,20150 +36,317,736,874,1398,1793,1794,1278,7597,5332,5206,7421,8712,8451,6700,6606,21187,17039,13466,11055,8532,6642,5468,3618,651,2253,4217,5336,5506,5219,3567,3126,6972,6260,8074,7437,5288,8178,9269,10994,9254,20566,25252,27424,35173,53516,57308,57967,57543,44551,41989,29646,14874,13005,7239,3708,1468,1751,1984,2586,3072,4011,6130,10286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,244,608,786,1431,1667,1707,500,761,798,1032,1488,1682,1529,2146,1104,1454,1350,1389,1088,946,1132,942,1030,2551,3748,3835,4530,4523,5282,5970,4710,3386,2909,2623,2880,3088,2446,2136,1153,1260,1124,1027,1394,977,864,388,0,22,45,82,96,99,136,281,456,581,655,793,707,1000,994,1176,2516,2361,2113,1475,1020,904,546,356,123,246,432,593,690,486,415,400,810,786,670,451,403,402,353,272,400,343,247,243,184,146,112,125,191,807,1162,1587,2456,3058,4128,7288,6120,5471,3973,3391,2736,4836,6150,5241,10262,9266,12004,16483,18367,19797,17951,19353,21921,23364,23178,19523,11770,12054,13096,12759,1174,1918,3381,5414,5882,6226,6843,7508,1737,3222,3953,3951,4538,5719,8580,11456,37820,38257,31328,18337,10954,11412,8583,5815,4784,5136,4791,5993,8940,12999,18832,19322,22809 +26,402,896,1312,1067,1352,1532,1522,4803,4680,3399,5278,8318,7058,5539,5990,19118,18138,17502,12224,12320,7336,5054,3530,1432,2876,4429,4554,4340,4787,3809,4973,5967,6196,6491,8364,10149,10546,10877,16180,9228,14246,18254,26426,37077,44815,38335,41908,51628,42332,36629,25024,14230,12108,10126,5404,1560,1562,1526,2218,2667,4660,5851,11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,355,828,974,1340,1908,1890,753,1172,1277,1499,1356,1886,1785,2803,948,1342,1648,1528,998,1078,1510,1399,1395,3118,3854,3956,5331,5126,5304,5652,4567,3170,2413,2893,2436,2458,2581,1759,966,1144,1154,1260,1410,954,787,510,0,20,32,72,78,96,119,185,351,438,478,592,536,504,751,711,1710,1698,1920,1494,969,648,397,238,122,223,352,440,728,945,775,822,514,517,477,401,340,355,232,169,390,272,254,223,160,148,105,112,178,626,851,1426,2447,4092,4778,8362,8534,9474,8416,6496,7355,9672,9067,11152,10949,13652,13020,17194,26033,24068,22706,20386,21659,24021,25803,17271,10455,10774,12688,11328,2137,3235,3348,4865,4078,4532,6295,5286,1734,2753,3627,3464,4261,5173,7966,9124,55060,43104,33557,32636,19850,20523,15472,11424,7608,7466,10484,10620,11336,14827,15538,17403,19377 +23,486,980,1665,1094,1060,1506,1861,4256,3406,3267,3267,6334,6570,5847,5571,22172,18111,16530,15771,13868,11396,6996,4182,2803,4081,4145,4001,5324,5886,5686,7479,4375,6304,6324,8078,11803,13737,15884,18276,13616,16980,19064,27970,32145,31680,28794,31236,56852,37762,32238,20303,17016,16695,11055,6092,1282,1520,1452,2759,2899,6353,8352,10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,488,734,1210,1395,1752,2068,991,1542,1954,1576,1373,1832,2482,3213,1256,1319,1426,1452,856,1153,1472,1527,1361,3434,4678,5056,5902,6260,5482,6122,4642,3552,2602,2524,3085,2148,1932,1810,1144,1446,1436,1204,1012,1082,834,668,0,16,30,46,49,66,76,122,152,258,291,260,218,313,324,445,1658,1686,1548,1135,831,675,296,165,87,206,318,501,744,946,1193,1209,373,380,452,391,227,187,162,140,316,312,223,141,113,124,130,143,124,508,880,1093,2637,5054,6782,6577,8275,10036,12422,9994,10593,11959,13898,18370,12756,14961,16416,18145,35884,30315,24888,19172,27372,23362,22329,19256,13599,15195,13139,12855,3797,4032,3798,4915,4122,3852,3668,4484,1226,1512,2360,3252,4351,4755,6976,8237,55950,54194,43920,44106,34660,25213,19467,17953,13140,11592,13304,10246,18846,18801,15092,12743,13920 +12,461,1049,1636,1552,1449,1468,1647,3427,2828,2180,2356,3273,3827,3956,4838,26952,25816,25586,21216,14278,11702,9629,5511,2695,2998,3651,3391,3261,4198,4624,6176,3121,5490,6760,9798,10438,14736,18776,20006,15762,17574,19457,24026,45345,37302,25546,36322,54154,36607,23605,23263,15271,13544,9571,6265,1736,1521,1717,2696,2808,5845,7410,10753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,469,758,1138,1763,2275,1963,1353,1840,2307,1726,2143,2418,2977,3500,1426,1530,1458,1389,1288,1568,1896,2232,2112,3738,5137,5851,7947,7440,5591,6124,3166,2570,1978,2195,2022,1901,1747,1420,908,1016,1318,1194,900,1066,676,636,0,9,17,22,29,34,36,54,94,116,144,150,125,152,135,198,1826,1494,1162,1165,863,640,353,195,51,191,247,347,511,793,1111,1622,255,232,242,217,202,176,123,118,196,203,182,141,135,128,104,112,177,594,964,1546,2234,3668,4997,7720,11562,13416,12304,14278,13164,18544,19204,19319,16747,23735,24505,27624,31879,33743,32852,24237,24362,19192,18613,16184,13749,10588,11322,11435,4876,4589,3049,3316,3021,2980,3064,2962,1526,1710,2473,2689,3874,3988,3824,4351,40714,59503,64262,57186,41356,38374,30441,21167,15883,15314,16130,15258,18065,18754,22562,18780,17009 +0,61,149,217,323,847,1519,1651,2152,3187,4715,6017,5432,5664,6529,6119,28265,25154,31076,24890,17569,16738,12501,8883,3866,4114,4620,4527,3048,4350,6273,6260,2652,4703,6006,9528,12794,16956,16796,20480,25025,35652,47832,49170,51062,49419,48260,45092,44163,45256,49298,48770,39238,24573,12631,8681,1838,2086,2752,4428,5433,6154,5073,6977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,407,622,996,1485,2036,2166,1938,3592,4085,5131,5186,6098,5893,4247,2170,1373,1128,927,843,896,1367,2413,3160,3748,4876,4713,5966,7959,7532,6971,2944,3491,3408,2572,2396,1585,1171,847,520,576,530,488,493,598,547,568,0,2,3,5,4,5,4,5,4,6,6,6,4,5,3,2,1576,1400,1138,1276,1136,898,709,375,0,135,328,632,792,1237,1586,1632,75,100,165,167,188,159,141,148,169,158,101,93,121,113,150,110,183,1080,2056,3393,6331,7706,9113,12819,12705,15149,12684,15109,14628,14974,20148,17477,20786,15352,10929,9051,9144,16105,18829,17325,23898,29645,38444,33172,31470,24776,23064,17760,7082,9344,8678,7986,5725,4054,2941,2665,2191,2044,1668,1565,1690,1194,1247,1294,42891,40277,52577,42393,48325,37762,33690,21181,15662,14220,17488,16676,14286,21018,21533,16581,16998 +0,202,378,531,534,1129,1417,2010,3028,3882,4318,5720,5615,5920,5278,5373,31591,23290,29055,22547,16219,15696,9492,8176,2958,3086,4146,3226,2575,4003,5292,6191,2086,3612,4489,8360,11128,11330,11749,15599,18905,28156,30678,38304,40543,38414,41471,35369,43382,45582,47578,44864,28833,19985,13072,8269,2434,3039,3618,5496,5995,5798,5544,9270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,464,752,715,1323,1996,1670,2526,3449,4154,5010,4966,5521,4818,4188,2818,2757,2637,1704,1929,1954,2126,2902,2966,4000,6030,6644,7744,9396,8967,7074,2000,2670,2494,2024,1664,1794,1004,1035,391,504,622,516,656,556,453,504,144,149,148,139,161,104,50,40,8,44,61,85,110,144,279,296,975,852,768,871,758,630,453,280,0,154,263,550,628,1072,1132,1244,244,232,232,243,218,196,183,188,162,142,111,108,119,130,142,120,182,1684,3809,6123,7621,8286,9709,15062,11398,13413,13903,18466,19384,23536,23198,21412,19896,16650,9457,10290,7976,13550,18937,20601,37866,33836,36651,29346,41094,34996,27645,19066,7729,8630,8359,6776,6177,5270,3208,2952,1700,1916,2254,2594,4006,2997,2917,4402,56444,49884,45324,40874,43050,34959,32966,20486,11248,12927,16958,14206,14238,15069,15699,14485,15149 +0,342,590,915,873,1083,1814,2478,2965,4477,4528,6074,5050,6332,5794,5880,25983,21790,20532,14492,12989,12275,10120,7681,1960,1994,2816,2558,3241,4006,3473,4358,1662,3272,4072,5074,6042,7466,9992,10670,13593,19614,24048,33180,26556,28196,22838,21502,42756,45127,35826,23577,20804,17415,10949,6795,2278,3396,4372,7902,8639,8124,8002,8520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,436,635,751,932,1430,1258,2416,3134,4830,4581,6073,5924,4442,3281,4575,4440,4244,2654,3286,3841,3123,3718,3290,4046,6785,5359,11395,9268,8100,6089,1326,2008,2051,1662,1745,1301,1153,930,307,582,770,806,990,681,501,380,243,240,334,279,308,170,96,46,11,73,136,172,261,376,475,609,702,696,592,692,669,555,362,211,0,108,214,563,743,1004,954,1225,346,247,245,266,272,271,181,198,105,120,101,121,77,125,136,119,220,2419,4802,6277,8060,9181,14109,17060,6540,11964,15604,16119,22462,23910,23382,19742,17288,13014,11438,11311,9381,9674,12773,16959,45008,40926,34047,38300,47846,35556,23064,16570,8040,8088,5960,4464,8662,7516,4335,2509,1425,1700,2376,3562,5810,4344,4484,6859,56168,60824,55168,51818,45538,29594,27386,24867,8892,12118,14878,13386,9875,10709,12278,15355,14589 +0,367,708,1240,1309,1566,2583,2996,4725,5490,4597,6426,6532,7318,6710,6829,15638,15868,14983,14903,13160,11689,9103,7916,1184,1686,2129,2396,2476,3255,3388,3758,1238,2148,2722,3729,3475,5680,6407,6132,11063,15465,14912,20586,21084,21380,20159,25248,38798,32167,26895,19976,20620,15654,8512,6158,1839,3258,3536,5988,9742,8732,6224,8785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,266,428,484,751,897,1072,2505,3188,4897,4782,5819,5553,4111,4242,4500,4470,6027,4422,3816,4475,4293,5190,4204,6384,6979,6554,10067,9607,9884,8286,1113,1317,1556,1196,1147,916,837,903,352,592,925,942,1277,789,547,466,466,548,569,453,402,272,139,72,12,106,214,308,334,538,674,974,714,565,599,564,478,490,381,182,0,111,206,507,500,570,640,1004,451,381,260,322,272,233,158,169,89,106,92,105,67,96,123,114,382,2964,5030,7746,9942,10471,11670,13415,5390,10520,14721,17054,22725,21138,22460,22112,13322,10860,9044,8875,7183,12584,13659,16196,47806,52578,39739,38540,39581,34374,22720,14492,7485,7460,7405,6324,6571,6500,5022,2728,1071,1992,2532,5224,8208,8750,8008,10676,57376,54661,40837,40405,36386,29150,23577,19384,5912,9458,9261,10254,8718,8370,7748,10582,11776 +0,516,986,1828,2394,2186,2566,3577,5586,7429,7365,7186,7556,8607,8875,9046,9780,9356,8899,9058,8956,10363,9316,8601,866,1361,1526,1886,2214,2476,2163,2547,519,758,1031,1102,1386,1690,1830,1945,8780,9000,13119,11592,11984,18374,23395,29335,31998,22589,22844,22942,15916,9482,6964,5009,2270,4204,5294,6051,7777,8291,6041,8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,180,203,268,397,685,778,2651,3349,4142,5137,4776,3985,3397,3114,4368,4100,2851,4076,4408,3710,4476,5727,4567,4576,4630,8449,10312,11427,11276,8242,1416,939,631,531,387,620,928,1081,398,537,680,1217,1368,941,970,736,782,748,721,646,435,321,318,201,14,102,226,456,559,809,1073,1028,644,668,613,486,406,314,130,70,0,54,121,210,383,520,571,553,545,411,284,255,303,234,157,124,113,87,58,50,56,83,122,108,544,3732,5736,7716,9010,10172,9540,12669,2816,4837,8282,14851,20865,15684,17416,22241,6647,8874,9379,7618,7831,11013,13380,17439,50075,53587,41138,40512,40436,34412,30384,15510,10178,9807,6450,7708,6956,5712,3378,2002,1173,3161,4385,8287,10204,8990,8715,11139,43315,49084,40099,36606,23762,27700,23997,15307,3358,5955,6750,6854,9050,7245,6263,4994,6207 +0,844,1917,2714,3397,4901,3915,4664,6727,8664,8684,9489,9326,7966,9090,8376,8663,9472,11106,9912,8815,7569,7308,6402,1095,1470,1442,1745,1634,1920,2436,2560,491,690,950,1064,1367,1393,1592,1974,6157,6330,11878,11784,10831,16199,13890,20755,17902,20996,21490,16742,11918,7351,5674,4004,2312,2694,3429,5046,8647,7722,5668,7054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,332,414,476,596,921,994,2257,3036,2970,3967,3757,3754,2840,3087,3064,3170,3455,3378,4821,5264,4437,5894,3612,4736,5732,7964,10182,10497,10778,7232,1216,911,671,464,574,660,778,871,336,628,737,1240,1285,1098,972,822,1169,796,934,673,666,422,316,235,34,168,310,426,722,966,978,1190,498,492,452,390,231,180,94,58,0,62,110,240,327,453,521,715,756,622,434,374,371,286,150,106,109,73,54,45,44,69,86,90,542,2839,4848,7796,8905,13224,11247,14502,6294,7211,7609,11340,22600,25248,16334,19678,7728,9662,11357,9788,9795,14639,13932,21360,56636,48900,42656,37004,36711,32229,29082,15488,12766,10371,5154,6729,7841,5054,3334,1998,1055,2930,4213,5894,8817,10200,11587,16728,42656,37926,32311,28581,18378,20814,17478,12766,2310,5122,6854,7998,13375,10014,12038,8979,8037 +0,1240,2456,3583,5179,5087,6452,8648,8341,10525,10371,9180,8619,9539,10650,7958,8672,10376,10798,9348,5795,5275,5198,4252,1662,1936,1668,1684,1323,1498,1943,2040,590,673,728,758,927,1122,1214,1477,4438,6741,7360,8235,8923,10187,10785,13644,11628,10984,13732,11206,7509,6097,4062,2748,1690,2082,3234,4948,6925,5985,5504,4555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,550,639,591,861,1057,1337,1598,2463,3264,3671,4477,4102,3166,2768,3077,3774,3258,3183,4690,5985,5962,7048,4112,6391,6566,7839,10228,10433,8034,5928,829,770,487,588,649,630,655,774,386,734,1031,1818,1499,1571,1194,1059,1287,1134,933,620,681,603,406,205,50,194,315,410,831,1195,1337,1310,239,267,290,249,142,116,73,39,0,80,140,276,255,485,616,730,979,610,542,476,365,339,202,122,74,58,56,38,27,42,72,71,455,2639,5734,7574,9901,10248,15402,13314,9841,10345,8787,9938,30115,28426,21360,15450,9096,10504,15728,13077,16127,15092,17696,36387,45295,39101,45058,48145,25631,28305,24640,20552,11663,7427,6270,6376,7991,4642,3112,1723,798,3012,5126,7434,11465,14548,13058,15459,29901,29619,29030,22886,17024,11926,12482,7412,1099,3680,6631,10634,15148,15071,13943,14818,11231 +0,1538,2914,4981,6126,5855,5507,6242,10327,9622,10420,9227,11530,9356,10076,9336,8834,10431,10429,8786,5086,4836,5497,4564,2246,2091,1616,1332,1135,1198,1210,1395,545,526,512,566,572,602,799,702,2185,3537,3628,4259,6262,6534,5526,7088,7410,6582,8277,7522,4000,3704,2102,1578,1449,1747,1999,3106,3783,3935,3877,3682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,654,938,1012,1228,1635,1566,1889,2392,3318,3616,4646,3636,3442,2547,3331,3694,4513,4210,5071,5572,4248,5508,4000,6040,7500,7360,9751,8172,7315,4967,463,447,371,499,687,781,885,734,623,1034,1214,1636,2015,1742,1242,1348,1537,1162,978,770,579,556,481,252,97,313,438,600,1062,1338,1706,1524,132,150,136,127,69,50,43,21,0,84,154,272,279,460,585,908,939,792,594,454,398,318,240,133,34,40,42,30,23,37,51,56,486,2980,7315,9201,8589,11728,14182,14859,14062,13501,16973,16138,22532,24738,17976,15341,13945,14532,20550,18697,20622,21954,27641,35965,44310,38424,33619,35872,27620,23826,16722,17278,15176,10106,9466,6930,6904,5036,3892,2247,341,3048,4892,8814,13590,11874,11650,15774,29386,21262,15599,14008,10628,7426,8236,4285,620,3236,5764,11044,12740,13232,12854,16296,14335 +0,468,999,1868,2578,2143,2293,2915,4660,7928,8741,11344,13663,15867,12806,10018,10531,10892,8566,10096,9769,8116,10470,9173,10777,11720,8806,8543,5996,4591,3452,2034,501,475,588,439,360,324,210,88,0,288,716,801,1106,997,956,1613,1822,1166,1034,966,906,860,598,279,0,226,461,650,842,1780,2673,3695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,48,58,89,148,235,304,366,384,338,384,526,1369,1976,2646,3314,2734,2040,1655,872,631,341,296,204,732,1080,2192,2895,2842,3666,3823,0,140,257,374,483,758,892,1088,969,1637,2122,2213,2331,2234,2052,1762,1642,1562,1503,942,596,520,619,612,520,914,1675,1735,2003,1770,1540,1943,0,25,48,74,129,127,182,279,330,260,305,398,400,516,476,609,912,878,723,601,364,308,360,367,388,406,331,288,334,278,131,88,439,1546,2604,3490,5250,9808,12174,11716,12576,16431,16593,19541,19474,19368,26251,24939,18542,19063,20530,20572,25825,15898,13754,15384,16089,14221,19004,27148,27550,24308,21249,20266,15418,15511,15760,11520,8116,6113,5273,3200,2146,3227,4292,5335,8135,8328,10245,16597,22922,21114,19434,19244,15365,22723,22793,24134,27271,28242,27864,27153,32829,36453,33839,22524,17356 +0,433,970,1652,1833,2580,3002,4720,3598,5248,5997,11928,10118,12168,8002,7777,9475,8346,10792,10632,13154,11502,10463,11089,9728,9912,7773,7313,4900,3776,3695,2260,506,441,496,403,285,293,256,154,90,314,826,838,990,852,1180,1511,1669,1447,1111,894,716,728,520,206,0,220,372,586,809,1612,2320,2834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,58,77,67,142,251,323,311,387,511,500,764,1480,1783,3002,4557,3604,2700,2133,1324,796,380,278,168,720,1272,2274,2732,2380,2813,3841,0,108,225,266,468,674,630,804,723,1234,2038,1713,2150,1904,1569,1721,1698,1392,1411,970,687,498,511,616,433,806,1334,1652,1618,1530,1524,1793,0,26,52,84,144,114,163,230,264,239,295,448,595,667,694,686,676,742,646,555,322,350,334,358,215,276,268,276,270,212,135,85,433,1654,2368,4219,6954,11344,10137,12030,8984,13254,17558,17396,15242,13368,17463,18894,15471,20308,25646,26528,20004,18282,12790,14377,14093,15202,20722,25202,25276,20802,20762,17444,20034,16822,16212,12150,9911,8750,6295,4188,3436,4270,5344,6212,7590,6480,8469,14208,29642,27650,23834,17631,12190,19384,24826,23089,25321,24898,28094,27378,38760,37080,29903,22636,12704 +0,568,1001,1413,1711,3132,4352,5830,1960,3431,4352,8545,11532,9431,7015,6064,6511,7732,10294,10283,12337,11727,10012,7743,11867,10904,8412,5786,3649,3386,2855,2308,558,436,386,496,282,247,230,185,210,518,740,703,708,700,1018,1200,1880,1930,1544,1238,728,582,446,186,0,202,436,645,789,1558,1868,1773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,53,70,62,186,334,428,352,446,544,534,1110,1808,2053,2505,5013,3896,3324,2599,1404,1111,483,251,150,990,1564,1778,2704,2380,2162,3300,0,87,172,171,393,400,528,556,593,786,1282,1416,1709,2044,1756,1396,1283,1079,945,718,552,474,433,370,258,609,1060,1391,1518,1353,1604,1221,0,31,51,77,117,138,149,235,144,251,324,499,592,529,700,981,743,640,622,477,397,373,396,425,145,187,188,273,303,208,118,85,343,1660,2980,4667,7610,11473,12378,12862,6807,10853,13162,16921,8972,11539,10836,9082,19849,24763,24160,29262,22140,16333,15822,10940,9379,14896,15966,14746,21454,17444,13612,12982,23958,22148,19886,14204,13326,10668,5654,3942,4129,4631,4664,5990,4884,5570,5997,9271,28234,29004,26480,20418,13854,18790,18622,21774,17361,19609,22650,21281,36112,24935,23430,15590,11565 +0,510,1003,1763,2306,2882,3125,4571,1493,3066,3848,6589,7820,6027,6248,5644,5764,10094,12376,12327,11335,11658,9527,8916,13059,9338,5929,4592,3731,3723,3822,2410,562,580,387,478,362,359,298,216,292,402,594,551,491,690,1139,1566,2291,1760,1566,1160,994,760,654,342,0,183,376,634,789,1357,2029,1848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,41,72,97,205,346,390,414,736,873,902,1331,1684,1889,2469,4838,4404,2875,2480,1891,1120,575,331,92,691,950,1220,1979,1625,1810,2374,0,45,118,142,257,282,374,397,621,748,1156,1215,1524,1555,1254,1164,744,710,555,604,388,474,474,431,230,696,1012,1346,1582,1465,2093,1676,0,26,39,55,86,117,98,154,96,222,375,554,561,657,532,809,547,446,376,456,469,440,391,422,85,130,137,178,178,142,114,89,360,2098,3069,5042,6178,9097,8669,12328,5408,6990,9287,13165,7349,8948,12165,11082,22268,21604,21607,19338,23742,17318,14342,10623,7750,10898,10062,12464,13711,13529,10934,10880,22496,19413,17667,16354,14394,10608,7952,6562,3708,4959,4039,5082,4485,4750,5902,9714,25425,24948,29040,19638,15390,21012,24188,27792,24876,25853,23847,20606,30045,23342,17343,14118,11098 +0,629,1069,2097,2824,3352,2793,3276,1288,2298,3186,4642,5184,6172,5953,4766,6914,10073,9879,12500,11716,9155,10996,10937,12561,11412,9020,7836,4500,3717,2407,2367,759,757,848,702,533,563,476,350,307,265,282,273,320,506,884,1403,2558,2510,1766,1846,1408,1032,916,458,0,165,358,463,580,1064,1241,1694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,63,79,105,128,191,295,493,488,677,884,1163,1207,1768,2296,4944,3798,4020,2343,1829,1503,963,555,64,332,592,1362,1724,2168,2575,2810,0,31,62,90,139,163,139,180,735,710,642,1029,1366,973,823,709,242,283,316,346,344,367,468,342,267,658,907,1328,1318,1251,1735,1631,0,12,24,39,68,66,87,128,62,388,604,820,806,963,1106,1053,205,232,354,510,501,455,331,401,62,101,111,111,136,123,115,77,358,1970,3836,5700,6289,8441,10182,13222,5154,6904,8870,8465,8319,7988,8082,7087,23974,23058,25931,21483,21876,20221,11946,10383,7716,10094,10541,10580,8619,9082,9740,8882,21042,14876,15972,17930,16311,10877,7862,5374,4591,3286,3483,3375,4785,6056,6011,5345,34439,27062,18287,21673,21686,22417,18901,22676,24174,25020,21696,18346,19180,21196,16716,12782,10861 +0,464,905,1564,2272,2689,2697,3926,1658,2202,3306,4496,3234,4520,5806,4276,6570,7058,8967,9078,9042,7783,8748,8869,7604,8246,6872,5806,5484,4228,2326,1910,592,849,687,544,405,472,449,449,458,399,467,476,719,1074,1429,1827,2244,1870,1445,1566,1314,909,759,331,0,138,302,348,653,1033,1124,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,109,182,271,286,234,320,480,476,575,899,837,1207,1647,2412,4678,3888,3177,2384,1862,1378,1008,612,106,371,672,1102,1186,1667,1844,1902,0,20,55,70,92,126,131,116,478,651,636,966,857,714,610,542,140,214,283,328,283,390,364,350,356,566,887,913,998,1126,1282,1464,0,12,28,45,50,54,94,106,56,343,622,620,584,782,976,1088,317,384,509,506,577,571,440,446,63,92,130,96,150,101,88,60,261,2244,3194,5125,7440,9392,10129,14052,6444,6474,8603,7580,6477,6860,8174,6365,30194,26770,26920,23322,24071,17172,14671,8957,5792,8060,9054,8508,7522,6512,6876,6494,21108,18668,19605,14510,14455,9810,10836,7926,3890,4043,4994,4589,3558,4096,4216,4538,28112,24593,15704,19732,16355,17497,20506,17386,19790,17522,14646,12986,17186,14689,12731,13874,14965 +0,445,793,1302,2216,2926,3480,4414,2158,3259,3570,5513,2590,3675,5512,5922,5985,5716,6229,5615,5629,6165,7660,8734,6409,5811,5380,4794,4894,3896,3110,2081,698,561,640,733,405,394,452,479,710,562,666,598,1058,1535,1809,1836,2156,2267,1632,1230,838,554,462,237,0,101,227,363,638,922,956,805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,168,302,357,353,372,390,691,579,436,654,889,1325,1360,1815,2902,2798,2948,2166,1461,1008,1018,730,152,354,547,837,1141,933,1048,1118,0,14,30,49,78,71,89,118,439,516,542,688,446,406,238,242,97,127,196,176,348,266,256,277,336,516,584,736,778,981,1220,1410,0,13,22,46,42,66,77,94,63,238,442,774,491,746,788,778,408,432,517,485,531,520,515,430,80,114,110,96,114,77,64,50,129,1731,3064,4172,6990,7376,10166,11774,7120,7408,5577,5102,4908,5880,5968,5490,28245,20158,19735,23470,18732,13102,12762,8160,3579,4888,5944,5286,4677,4238,5060,7036,14208,17773,17120,14078,14827,14629,11382,7729,4428,4524,4851,4650,3425,3699,4446,2854,27995,20479,15863,14468,13025,12427,17262,11978,9836,8524,11080,12691,13775,16713,14976,12332,15547 +0,396,551,1130,1663,2328,2566,2998,2805,3397,3569,4551,2630,4292,7512,6530,5857,4334,5376,4046,5686,6260,6471,6186,5690,4046,4882,5040,4856,4172,2448,1878,571,606,497,533,483,484,480,448,860,760,842,832,1068,1870,1681,2300,2257,1644,1464,1163,472,361,342,174,0,115,216,400,583,748,744,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,175,260,433,365,419,368,602,489,297,462,444,768,732,1362,3160,3027,2267,1871,1508,1140,1071,652,305,397,416,455,630,602,600,716,0,9,14,28,47,40,51,60,256,273,255,370,246,201,141,140,50,104,186,178,292,262,226,279,388,460,483,491,637,993,1301,1300,0,12,25,45,53,51,58,68,57,238,480,535,705,790,812,904,727,582,495,530,487,552,544,327,103,135,114,78,71,54,42,28,63,2025,3797,4922,5642,8519,8066,8325,6270,6692,7116,4944,4119,4764,5089,2971,26799,21259,18255,18378,14725,10292,9285,6168,2748,4138,3435,3254,3916,4792,5067,7420,18962,18239,17302,14381,11485,10478,8415,6370,6498,5287,4057,4538,3412,3615,4163,2534,21350,20477,19273,17451,12088,13076,13348,9112,4990,5472,8703,11166,12341,13248,15648,11656,14703 +0,636,1259,1520,1876,1973,1702,2238,2764,3493,4505,8195,11193,11824,12921,11096,3888,3609,4074,6792,8366,10020,9214,7505,5755,5154,5124,4362,2279,1549,1192,929,470,371,281,291,246,310,320,613,747,1049,1022,865,1066,1027,1101,1649,1693,1243,714,480,261,233,166,88,0,89,153,251,416,593,586,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,106,143,192,249,357,386,524,476,279,244,138,179,244,406,3284,2313,1994,1511,788,578,611,557,356,355,371,316,268,230,188,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,75,114,115,211,333,402,467,535,664,835,1214,1106,1086,1084,0,13,22,31,49,70,77,66,68,224,428,533,720,787,847,808,1034,974,911,957,782,606,518,349,171,176,126,146,137,127,85,38,0,485,1013,1271,1836,2962,4165,6042,7320,7504,6554,6910,6080,5551,3608,1815,23803,19518,8817,6899,5561,4111,4110,2560,1546,2206,2810,3607,3802,5350,7401,8062,21926,20820,18684,21177,20883,16951,17795,10994,7402,8811,7307,5200,5296,3255,2653,1495,18091,18581,14842,11388,11862,9756,9893,6819,2374,1824,1766,2388,2395,4370,6771,10596,12435 +0,538,1129,1260,1150,1444,1462,1836,3317,3828,3254,5583,10011,9536,10218,8609,2836,3392,4500,5938,7245,7365,6182,5968,4101,4279,3811,3194,2092,1446,935,904,566,322,285,277,246,291,349,482,548,742,838,832,772,1106,1145,1804,1140,981,627,434,405,304,158,84,0,96,139,296,396,566,432,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,89,214,202,342,429,488,402,454,289,238,144,224,277,340,2932,2430,1848,1416,804,589,671,428,288,280,308,281,268,196,176,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,115,125,186,334,435,419,437,626,777,1314,1230,1155,1178,0,13,24,30,52,68,84,68,64,238,316,442,729,822,768,542,693,746,765,739,568,542,519,286,151,176,165,144,145,102,78,40,0,475,904,1337,2280,3058,3943,5674,6451,6170,6463,6621,6470,5115,2740,1674,17609,11560,9240,7142,4464,4090,3519,2790,2141,2948,2882,3837,4817,5743,9289,7124,18953,21226,18078,19633,23584,21412,16290,12268,7828,8489,6654,5041,4280,2907,2516,1199,12171,15148,10360,9477,7216,6562,7837,5462,2305,2394,1976,2766,3388,4594,6563,7776,9843 +0,332,623,793,948,1224,1412,1394,2867,3841,3535,5210,7656,6114,6179,5596,2556,2515,3542,4481,4016,4984,5450,5302,3856,4104,3138,2176,1542,1433,1050,638,530,321,261,259,259,376,498,606,568,446,528,581,538,910,1346,1906,1143,878,777,488,431,265,220,116,0,80,156,199,303,300,414,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,92,159,274,404,441,420,433,412,343,223,116,220,288,375,3393,2762,1870,1374,697,500,538,322,340,306,314,228,248,226,128,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,55,117,152,209,297,401,246,451,516,562,1100,1197,1222,1650,0,11,22,23,45,67,67,76,38,144,272,392,552,694,667,483,613,717,620,598,555,496,429,264,111,147,156,160,110,80,65,30,0,542,1066,1528,2174,2217,3288,4216,6202,6296,5488,4606,6206,4583,2662,1555,9725,8325,6708,6151,4593,4425,3538,3218,2905,3800,3920,4737,4945,6235,8906,7775,17346,16636,18393,16088,19340,16970,15765,9605,7337,5829,6550,5312,2947,2106,1772,1029,8982,8644,10318,7994,4661,5902,5454,4307,1954,2235,2993,3251,4585,4601,4302,6126,7177 +0,228,447,598,937,1024,967,1204,2398,2982,2166,3279,5023,4520,5548,3914,3062,3076,2302,3266,3571,3995,4757,3864,3030,3444,2941,1888,1396,1132,838,682,423,349,265,316,245,406,602,640,318,338,392,548,604,857,1201,1632,1077,1048,786,537,374,286,177,118,0,52,93,148,158,210,276,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,76,164,206,364,390,420,238,254,221,180,137,267,269,362,2628,2332,1464,1213,575,468,373,270,226,202,246,204,160,160,90,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,42,94,140,161,238,314,177,368,447,487,844,1010,911,1070,0,11,22,27,33,50,45,60,43,158,277,348,542,552,543,378,650,622,671,534,537,362,394,186,98,102,113,123,90,70,48,28,0,540,1119,1437,2304,2176,3057,4325,5352,5940,5915,4573,4204,3128,2551,1268,4928,4700,3847,4024,4681,3545,2864,2853,3360,3784,5753,6447,5530,7273,7744,8146,17985,12780,18198,16624,20399,21166,17222,11293,7085,5534,4918,4772,3758,2684,2294,1152,8214,7266,6625,4923,2810,3464,3587,4260,1333,2542,3983,4078,5697,4508,3725,4507,5828 +0,140,241,396,684,882,879,818,1534,2344,3106,3473,3206,3011,2445,2392,3385,4300,4398,3000,2942,2971,2069,1254,2614,2214,2347,1797,1142,787,765,463,359,365,474,446,350,327,368,409,93,157,295,441,563,1091,1545,1344,1489,1415,1063,646,414,339,244,126,0,22,40,60,80,103,122,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,135,184,222,327,325,346,152,154,192,140,122,216,315,337,1806,1167,785,686,470,505,388,215,196,224,178,134,98,63,51,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,76,85,113,142,173,199,87,163,226,487,646,619,603,881,0,9,18,26,26,27,26,32,33,112,242,294,354,377,424,363,681,632,473,508,383,278,162,128,119,96,67,68,76,45,31,15,0,654,1220,1437,2052,2518,3614,4088,4392,3648,2804,2378,2960,2004,1254,616,2552,2410,3424,3873,3354,4050,4026,3691,3478,6579,8144,8566,8736,8236,8124,5686,12782,10981,11530,12017,16478,12127,11670,11934,4901,3931,3686,3831,4287,3821,2604,1406,5857,5808,4624,3334,2262,2782,4439,4246,1095,2156,2521,3294,5563,5422,3877,3334,3200 +0,108,222,329,544,648,565,646,1190,1832,2875,2918,2539,1903,1625,1741,2986,2710,2772,2330,2892,2236,1775,1175,2043,1756,1398,1351,1010,716,518,314,308,288,372,346,218,256,302,359,78,157,194,338,506,724,1286,1176,1070,818,882,523,252,234,141,86,0,17,33,48,66,86,94,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,114,121,156,228,266,270,120,126,150,122,97,172,245,272,1474,1063,640,544,276,327,296,186,131,130,111,99,69,58,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,51,64,74,88,152,196,71,128,199,338,416,520,608,692,0,8,14,17,24,26,18,24,20,116,220,244,270,281,263,228,594,496,491,400,340,240,116,93,66,60,53,50,53,38,27,16,0,432,931,1178,1311,1982,2487,2476,3746,3409,1896,2094,2588,1644,1104,535,1924,2112,2295,2758,3774,3569,3425,3724,4473,7152,7848,8712,7358,7478,7551,8857,17492,11912,11215,10656,15579,11788,10414,10918,4591,3918,2909,3526,3739,3516,2531,1242,4090,4316,4732,3170,2244,2670,3363,5073,1619,2324,3054,3844,4088,4598,3620,3335,3528 +0,90,176,289,433,478,410,419,1010,1116,1736,1890,1512,1284,1047,1054,1695,1917,1952,1948,2037,1296,1184,898,1528,1398,1092,903,599,396,265,182,216,217,266,213,145,184,172,271,62,103,165,216,383,596,774,870,516,516,427,351,152,144,104,54,0,17,28,36,40,60,84,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,64,66,99,121,139,172,52,58,78,78,85,142,152,163,954,812,532,325,173,198,171,121,77,70,80,75,51,44,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,31,38,46,65,92,156,62,88,122,169,310,386,447,500,0,5,8,13,18,15,14,15,12,64,124,102,122,126,174,128,402,449,356,353,237,140,88,53,42,51,46,45,37,23,16,8,0,253,592,785,780,1155,1258,1659,2348,2336,1731,1115,1524,1444,912,475,1152,1236,1844,2060,3006,4153,4301,4398,6075,8112,7862,7258,6638,10056,10488,14310,16717,13677,11012,10266,9504,6852,7050,6867,3106,3635,3046,3185,4840,2968,1624,824,1767,2821,3762,3640,1797,2989,3772,5131,2517,2430,3364,4290,3940,4321,4029,3998,3074 +0,49,82,134,199,192,234,198,554,694,868,1040,761,631,431,526,990,879,925,856,1178,802,622,482,715,590,495,356,338,196,158,110,100,130,134,89,62,89,85,137,37,52,80,92,202,250,338,360,282,272,233,152,75,72,46,25,0,10,17,24,22,34,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,32,40,50,58,82,94,29,34,43,41,44,67,63,86,528,370,233,160,79,82,75,60,38,42,34,36,31,24,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,17,22,20,36,45,75,33,46,73,106,152,213,269,246,0,2,5,7,9,9,8,8,7,32,58,52,51,65,98,70,207,230,192,177,134,82,39,27,25,26,22,24,22,14,10,6,0,158,307,393,406,522,685,741,1369,1270,973,664,670,656,503,214,527,1090,1458,2140,2895,3156,3676,4390,5091,8069,8445,9248,7133,11283,15212,14274,14141,14907,15626,11694,11627,9784,9414,7021,3412,3434,2777,3741,3771,2528,1424,794,887,1768,2622,3170,2694,2759,2591,4089,4280,3842,3552,5382,6024,5639,4924,4029,2976 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,887,959,1484,1793,2298,2767,3564,2519,2494,2163,2408,3020,3528,4996,5352,6086,5768,6962,9577,8466,11249,10943,8698,7479,6391,7664,7684,5233,4808,5000,4962,5204,4299,3885,2488,2221,2641,4078,4676,4643,4412,4280,4958,4206,3281,3081,4086 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10883,11507,11764,8240,4892,4517,4528,2788,7762,7454,4224,2926,1968,1327,1104,592,0,12,26,42,66,67,85,123,110,118,112,90,77,58,30,15,374,518,786,928,1106,957,880,550,2396,1816,1282,1081,854,544,312,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,1042,696,674,227,220,130,69,0,0,0,0,0,0,0,0,98,186,205,256,370,518,464,708,1822,1606,1427,1654,834,714,329,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,797,1046,1479,1872,1769,2842,3142,2158,1854,2353,2388,2690,3103,4474,5675,5514,5408,8855,9370,10592,11037,10686,9167,7022,5568,4879,5630,4358,3443,4508,4570,4858,3781,3182,2964,2636,2437,3718,5426,3997,4053,3986,5160,4918,3540,4346,5944 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24308,23593,19744,17760,10836,9321,8486,6812,18816,16600,9474,7156,3343,2536,2183,1146,0,26,56,83,114,140,172,288,214,216,243,177,138,99,54,30,796,886,1341,1883,2284,1835,1914,1163,5935,4219,2596,2350,1937,1469,614,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2448,1863,1670,1299,548,446,246,130,0,0,0,0,0,0,0,0,217,312,458,476,705,750,1134,1367,3299,2654,3222,3450,1800,1227,809,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,620,964,1074,1489,1653,1724,3426,2491,1852,2004,1775,2176,2890,2998,6916,8260,7028,10590,11118,11905,13840,10491,10354,6906,6792,5807,4691,3522,3224,3738,4361,3010,2933,2244,2969,3172,3211,3660,4860,4030,4096,3201,4003,5186,5416,6808,6009 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33179,32663,34328,24516,15480,16438,16656,8963,22938,18754,9813,7906,5228,4194,3035,1678,0,36,75,145,164,239,309,366,456,362,330,314,254,190,112,49,1446,1741,1504,2072,2350,2650,2671,1993,8746,6945,4452,3424,2382,1490,1056,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3210,2752,2286,1543,749,536,389,188,0,0,0,0,0,0,0,0,371,476,654,811,1018,1472,1679,2377,7520,6020,5264,4587,2840,2286,1874,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,507,687,650,1034,1492,1649,2877,2054,1332,1560,1614,2062,2631,2876,8248,9616,8946,10850,12815,13160,16131,14576,13556,9081,5194,5258,3321,3552,3774,4184,3608,2468,1908,2212,2114,2522,2424,2836,4475,4404,3626,3138,3908,5030,5471,5872,5860 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43440,32260,36696,34782,27094,17045,14774,10410,28388,21379,24061,15460,8642,6301,5587,2935,0,56,120,219,272,372,369,406,687,800,670,539,332,276,198,95,2141,2546,2154,3086,3386,3406,2773,2320,9670,7862,5374,3794,2942,2722,2035,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3707,3225,2464,2018,960,666,406,244,0,0,0,0,0,0,0,0,476,616,1048,1088,1155,1722,3004,3816,10322,10772,7853,7385,5200,4484,2335,1474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,217,404,523,669,924,1607,2345,1751,1408,1180,1402,1250,1378,2038,8100,6965,7167,9041,11524,13442,13672,17160,14181,14662,10938,8281,3420,3079,2032,2458,2595,2478,2241,2027,1770,2058,2524,2264,5172,3780,3991,4270,4172,3612,4634,4561,5837 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52558,54068,53587,53064,39568,29778,28248,21702,30294,29097,28000,17120,10290,7108,4514,1946,0,60,110,206,345,408,556,566,708,707,675,490,404,295,250,117,2246,2234,2981,4147,3976,4380,3336,4059,11394,10042,6104,5232,3326,3136,2029,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4343,4302,3634,2514,928,892,567,252,0,0,0,0,0,0,0,0,899,1814,3367,3899,4462,4390,6612,6710,11719,10504,7195,7206,4297,3708,2194,1924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,340,446,746,839,1326,1442,3072,2522,1362,1591,1585,1658,1429,1519,7088,7653,9990,11854,10742,14014,14740,17997,12725,12595,7909,6002,3785,2732,2324,1946,3431,3162,3008,2901,1656,3045,3682,3994,8488,6826,5599,4196,4814,5743,6318,7840,10467 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65417,70158,68066,54485,41042,46242,38942,28511,40295,36898,23640,19122,9074,6467,4199,1750,0,64,126,189,506,539,572,583,597,612,459,410,424,320,276,120,1955,2430,3408,4511,3578,3852,4662,5503,14336,12349,7146,6302,3694,2900,1623,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5221,4941,4272,2659,1281,997,592,333,0,0,0,0,0,0,0,0,1112,2594,5114,5540,7030,8485,8042,7316,10485,7510,8180,5762,4613,4122,2962,2658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,433,624,747,1025,1626,1952,2950,2521,1912,1544,1600,1434,1284,1402,8206,9316,11339,15271,12441,13560,15574,15792,11481,7148,6104,4345,3558,3113,2054,1976,4383,4069,3599,3398,2271,4496,5773,7882,10458,8090,6198,5842,5223,5306,7536,9675,13071 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52776,62464,62093,51128,47335,42998,35440,35263,31332,33790,21941,18662,9413,6810,4712,2350,0,70,171,248,460,487,473,701,881,864,620,518,406,354,321,156,2127,2662,3722,4732,5544,5398,6298,7702,13695,11666,5581,5758,3690,2254,1275,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8866,8155,6842,3742,1550,1267,637,355,0,0,0,0,0,0,0,0,1485,3924,7062,7024,6867,9496,12818,13406,11246,7727,6761,6366,4511,3643,3063,2504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,393,716,712,1128,2104,2116,2924,1806,1315,1764,1586,1182,1055,834,12732,11186,11724,13642,13265,12760,13690,12417,9532,7712,6900,4526,3266,3184,1996,1308,5215,4572,3468,4118,2707,5448,5932,9386,9962,8370,9980,6704,6761,6085,7539,10160,11807 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55104,62194,62170,56876,57627,53254,54708,42310,33042,26160,19813,19188,23602,16558,15579,7696,0,132,319,690,897,698,826,814,1150,1051,1021,792,505,384,309,181,2394,4308,5231,5889,5801,9233,12531,10497,12316,8797,8386,7535,6052,4116,2082,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12949,9174,9137,9474,9033,6506,3622,1955,0,0,0,0,0,0,0,0,1377,4428,6678,11591,13754,11224,8760,9632,14160,13635,13862,11870,12693,7632,5046,4074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,432,950,1172,1477,1775,1644,1984,1797,1704,1590,1510,1023,823,396,15913,16620,13971,12664,14243,14243,11624,11152,11516,10151,8136,8502,6278,5069,2591,1441,5928,8434,10976,12544,11458,10375,11373,12898,10187,9531,9065,8568,9869,8548,8070,10326,13040 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84297,75106,60232,50648,63758,66673,43638,43766,24794,22163,16592,18869,19171,18328,13519,7032,0,172,381,788,1057,774,762,1166,1187,1258,1051,949,996,728,752,765,11225,12098,11849,13866,15608,18375,17538,13734,11568,11242,7900,7469,5512,4139,2265,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15628,13337,10326,12240,9719,6199,3215,1843,0,282,548,962,1274,1102,1153,1514,6032,8521,12891,14124,19200,13027,12456,13315,27530,24024,20340,20731,19446,11640,6522,4406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,483,868,1042,1312,1181,1316,2258,1838,1389,1239,1631,1309,1006,688,14092,17245,17836,17820,11626,15179,12711,12955,11472,9733,8407,6620,5074,3654,3104,1560,4379,5346,7883,8266,10962,10851,9157,12040,10462,8446,9232,8287,11182,10318,7924,9588,9605 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99824,72706,53926,40920,64430,62159,44572,30462,17578,17908,18032,15004,21150,15660,12010,5758,0,192,463,744,1321,978,920,1200,1672,1583,1306,1238,1496,1257,1306,1036,17853,16568,20987,20572,24340,19452,19705,16161,16368,15227,11300,7722,5485,4144,3480,1754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15366,13896,14388,12888,8235,5382,4209,2201,0,454,919,1741,2761,2394,1982,2620,10833,14619,19660,19133,22066,17229,12565,17964,32985,34709,28468,28147,21530,17960,10800,5366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,440,789,1134,904,867,1221,2170,1942,1204,1027,1621,1220,1338,1059,14667,15442,18212,18002,12498,15091,15864,15146,11090,10190,8271,4706,6001,5135,3308,1958,4214,5472,5472,6211,10067,10678,8319,13682,11847,9132,8592,6232,13291,12075,11220,10031,10531 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93825,84452,73387,64769,65203,58114,32628,29480,12168,14638,15353,14758,14728,10600,8393,4391,0,364,700,1040,1651,1211,946,1300,2109,1584,1243,1314,1436,1806,1659,1477,27457,23200,21563,27932,34003,29224,21205,18373,17966,16776,14910,9630,6385,4376,4001,1757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19207,17132,22062,16082,12706,7261,4782,2007,0,896,2123,2363,4322,3888,3364,4966,15526,17490,27287,25500,25262,23889,22056,21404,38481,43428,33453,34034,30632,21471,14080,7862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,343,585,880,1058,972,1548,2163,2138,1235,1118,1491,1270,1361,1343,13941,13786,18995,18784,17868,16771,17680,17114,9040,8810,7755,4596,4650,3234,2110,1370,5362,4699,4706,4908,8543,10826,11626,13778,12033,12138,9509,9707,14068,11452,13185,12288,13520 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128109,122646,92774,73669,76259,66737,57629,33382,11586,12157,11605,7926,6650,5846,4153,1743,0,294,666,1272,1508,1407,1319,1347,1979,2100,1877,1866,1743,2048,2282,2310,31209,40809,48904,49447,40698,27190,16407,10419,17311,11916,12109,11085,8813,6907,4160,2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22083,25658,22092,16804,14245,9686,9509,4179,0,1300,2401,3654,5335,5963,4894,6883,21828,31524,32669,31202,33114,36920,32006,22033,49803,52616,49447,46529,34200,29431,18291,10918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,297,414,662,982,1395,1192,2328,2550,2029,1354,1167,1322,1212,1326,15584,14480,15360,13617,17408,22464,23215,17439,5324,4592,4470,3354,2604,2105,1389,938,6266,6274,5824,5422,4260,5869,6992,9050,9931,9394,11815,13952,11826,13688,14798,15434,14883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100736,118528,81538,76434,63512,61726,43166,29766,11229,9118,10004,7432,6162,4179,3970,1699,0,453,860,1562,1493,1522,1339,1360,1948,2140,2586,2602,2124,2262,2542,2592,37336,38720,43738,44361,43466,34858,24992,19826,22249,16134,12742,12530,7234,6580,3788,2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17918,17442,20682,17456,13697,11040,6593,4098,0,1944,3819,5102,5702,7016,9096,13574,32651,36058,29239,24876,32032,29080,25841,25171,63292,56820,54895,50850,40287,24639,18019,10606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,304,406,700,1066,1184,1182,1807,2044,1692,2177,1519,1496,1406,1426,14149,12630,14687,17096,13684,16369,15141,13701,4647,4464,4021,3134,2403,2250,1411,962,4608,4866,4626,4972,6995,6294,7116,9542,6831,9844,10550,10956,10097,9804,14663,13176,11862 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83181,78517,73147,72913,75686,56355,41416,19718,7516,7216,7350,6484,4465,3853,2764,1646,0,656,1150,1490,1084,1266,1490,1676,2227,2079,2662,2336,1862,2358,3588,3250,42467,41366,49572,56782,41262,36119,25910,24223,20861,18647,18847,14798,6988,5937,4421,2634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13212,12066,13812,9241,10884,7450,5942,3391,0,2204,4577,6729,7759,12034,13166,19388,39050,31217,33982,23718,33405,29818,31821,30386,58956,56789,52411,45233,34482,29097,14136,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,222,457,561,788,1239,1486,1254,1730,1970,2680,1962,1655,1367,1359,14304,10910,10642,11775,14132,10866,11894,15555,5023,4175,5188,3940,1425,1590,1658,1077,2315,3314,4950,5270,8652,7188,5582,7146,6991,8678,10086,8849,6065,7234,10769,14436,14471 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99531,84944,67346,59402,56276,49642,32485,19125,4056,3171,3964,2964,2242,2148,1304,724,0,594,1306,1700,1491,1588,1869,1949,2558,2084,2242,2216,1504,2961,3547,4278,41314,45088,42776,47768,45640,35158,40426,27000,22686,18349,16052,14302,9141,5826,4235,2164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16597,17796,15559,15093,11066,7608,5658,2816,0,2028,5228,7947,9940,13320,20288,27666,38239,38812,35135,29824,26670,34752,34231,38399,60126,43022,43756,41398,31071,24940,15505,9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,320,410,547,722,968,1028,1000,1466,1967,2944,3705,3152,2360,2291,9881,9112,7113,9367,13055,9475,9351,12023,5360,4664,6072,3906,1728,1916,1555,1605,1692,3560,5290,7598,7006,7360,6035,7416,9602,10208,10897,8293,5668,6992,7901,10350,10630 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100087,86369,51504,42580,36239,23242,18204,7874,0,0,0,0,0,0,0,0,0,892,1534,2141,3488,3965,3824,3877,4863,3866,4634,5626,8410,9816,9480,7150,56114,64833,64337,76937,73711,59946,66339,44365,31092,28081,29635,24806,12431,8404,4608,1879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16177,20640,22357,32540,51019,47956,63787,55622,50617,51418,53680,45400,49654,49003,46648,46798,35098,23956,15972,17916,16871,16420,13355,20931,24212,18766,21229,21108,17925,15685,10182,6074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,804,1251,2234,2406,3082,4240,7765,6683,5502,3820,2354,1894,1260,508,0,47,89,110,155,546,961,1179,1430,2054,2567,3032,3308,5596,6806,6892,6911,7730,8232,9668,11828,10934,8752,6856,6973 +0,1,2,2,2,3,4,5,2,4,4,5,4,5,5,5,2,195,470,774,1206,2468,3976,4222,9633,7874,6135,6608,4984,7302,6228,5558,91714,77124,68496,55960,50660,33508,29997,21924,13270,12722,11118,6752,3067,2822,1877,1258,0,946,1347,2909,2672,3278,3784,3571,5564,4759,3789,5802,7330,6923,6257,6092,56732,55489,75263,68166,60318,62546,46083,38364,33994,29819,30799,24252,20707,15030,6874,4415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17043,17718,26934,28376,42034,41986,54992,41632,69117,52332,57669,56315,47593,48659,45871,41754,31844,26522,21002,18900,25796,20376,15939,19600,18960,21894,22510,16782,12313,12216,8737,6586,912,1254,1712,2076,2144,2371,1998,1272,1025,1006,986,732,693,522,261,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,859,1336,1865,2315,2948,4000,6232,5398,5579,3760,2998,2456,1128,676,4,60,111,154,162,553,956,1412,1222,2364,2407,3334,2509,4446,5922,6964,5279,5895,5248,7030,12019,10143,8993,6692,5465 +0,2,3,4,3,5,6,8,4,6,6,7,6,7,7,7,3,470,854,1317,2939,5083,7623,9853,17751,15142,15328,11470,12279,10795,14439,10950,69663,69958,75432,88786,58057,52948,42483,46757,32510,26152,25006,14323,6678,6472,4422,1847,0,725,1738,2023,2267,2645,3015,3363,4422,3480,3624,6044,5440,5895,5558,5306,69790,80751,65092,70797,48490,43848,42914,40433,44089,38744,31432,21338,24940,15898,10606,6162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14725,22846,27039,29017,42561,33984,38474,37502,77950,72579,72452,67922,41013,47740,40061,42920,37088,36170,23482,23011,28204,27417,18503,17387,16751,19340,18134,13529,10684,10002,7090,5816,1690,2262,3056,3341,4937,5189,4090,2631,1982,1783,1796,1587,1568,1058,638,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,848,1041,1518,2934,3378,4332,5399,3792,3860,3017,2751,2044,1419,853,6,52,120,188,121,394,795,1136,1527,2533,3205,2798,2359,3822,4878,4530,3782,4670,4528,5508,9454,8270,6840,4626,4036 +0,2,4,5,5,8,10,12,6,8,12,12,10,10,10,12,5,623,1904,2638,4439,7392,12488,13165,21393,15094,13477,16152,12712,13834,16209,15934,111888,94386,86319,64766,66688,69156,73634,63116,34818,35764,32606,22190,11298,8603,7099,3818,0,706,1688,1777,1730,2288,2428,2776,3635,4002,3296,4434,4433,4094,4657,3734,72299,67394,45226,54400,49631,42932,45916,41193,48573,41012,33624,26521,24332,13062,10309,5210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22001,23728,30045,25117,36084,31103,26768,22892,85417,73506,63682,64747,52894,47587,38590,31120,23322,23603,18068,19860,20990,25568,17376,20014,12724,16782,18106,14770,10347,9326,7748,7932,2978,3293,3905,5329,7299,6844,4796,3422,3860,3178,2470,1864,1995,1302,784,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,667,1366,2039,2854,4315,4966,4460,3733,3600,2400,2290,1779,857,542,9,44,106,158,153,510,720,925,1251,2061,2522,3046,2038,2660,3478,3546,2792,3366,3303,4068,6146,4612,4169,3618,2303 +0,2,3,5,5,10,11,12,6,8,8,10,13,19,20,18,4,1201,2474,3952,5690,7565,11363,11702,25422,26197,20447,22699,18655,14366,15215,17398,121823,121510,89214,74213,74138,69025,66604,54726,50360,52264,37656,25489,20766,12276,7848,3459,0,302,659,1349,2050,2099,2248,2760,3590,3772,3890,3201,3358,2317,1730,1648,69157,56722,67143,45521,45188,59740,62407,70334,57693,65862,52770,42434,24016,20666,13399,5716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27806,25056,33555,32883,29296,26594,24548,19574,67712,58860,57174,48577,51988,45765,31340,29719,19762,20999,21391,25523,24216,22344,22045,21195,10605,7502,7596,7424,9554,10614,8425,8269,4471,7165,7860,8626,8530,6529,3723,2857,5213,4472,4590,3859,2401,1489,888,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,1456,1714,2200,2268,1981,3456,3400,3666,3119,2215,1890,1246,675,318,12,41,79,125,150,294,555,745,785,1384,1852,1865,2155,1632,1301,1944,1748,1594,1502,2557,2851,2305,1867,1569,1226 +0,2,5,7,7,11,13,14,8,12,14,16,14,18,18,22,6,1416,3032,5316,8432,9742,15264,16682,18129,20309,21982,19530,20737,19411,18844,21018,144953,133725,121284,88310,77770,66999,68818,50762,58314,49528,31987,24766,22540,14572,11238,4950,0,280,487,1172,1760,1860,1718,2096,3117,2826,3015,2889,2414,1964,1604,1501,74608,59784,53809,41911,40936,47468,59048,66800,63617,49034,39998,38125,22181,15153,11870,4962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22301,26870,30446,31006,35978,28686,27642,20304,41742,48652,55823,50156,38437,35086,32306,23050,17504,19958,23188,16818,21772,23890,21759,18063,7723,7518,8153,6315,9268,9546,7691,7710,8123,9522,11830,9946,10576,8783,5417,5806,6665,4900,6148,4474,3275,2934,1323,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,924,1264,1296,1856,2144,2841,3100,2853,2666,1920,1729,1010,508,232,19,46,63,84,106,280,557,754,564,1063,1763,1492,1879,1667,1750,2214,1723,1900,1567,2258,2612,2290,2485,2348,1605 +0,2,4,6,8,14,18,20,10,14,16,18,13,19,20,26,6,2463,4472,6363,8386,14824,17453,26758,19340,16695,18567,23260,19452,20220,20888,21430,137185,148297,117962,109078,63487,51490,61496,54922,53565,43145,36882,22087,23251,14747,11682,5939,0,200,390,638,1011,1515,1518,1538,2441,2343,2152,1792,1506,1150,1295,1319,79067,65149,41964,34836,41731,56736,53452,76967,52879,44154,40486,26742,26682,16716,8738,4853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23156,27478,26148,33326,39045,33134,25676,24966,30364,34355,46244,38025,28814,24092,25210,21658,22424,23851,18434,20543,20109,15355,17624,15185,6237,6079,6171,4595,7410,5702,6484,7801,13117,10350,11900,8254,11640,11326,8005,8674,8359,6299,6110,4748,4657,3117,2214,1312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,808,1056,921,1312,1700,2098,2220,1756,1560,1416,1112,671,341,218,20,36,54,72,107,294,438,763,395,753,1316,1166,2112,2226,2325,2559,2125,2251,2086,2220,3005,2299,2524,2439,2747 +0,2,5,7,8,16,19,20,17,17,20,20,16,18,22,28,5,2812,6458,8542,10318,11883,18288,22842,22025,19754,23777,19211,13809,17786,23204,25592,151536,115979,120571,91982,72095,79625,87507,84376,53846,46893,50231,30148,19790,14552,9906,4735,0,98,204,346,409,586,841,732,1170,1298,1524,1279,1165,1006,1474,1282,73399,61936,51290,36370,37914,42624,56967,73608,52812,48388,43991,29338,23511,16339,8470,4287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25464,30160,24239,25227,38112,26781,22228,26588,28031,31041,42978,32813,26679,28160,22864,19473,31927,28546,25292,21358,18609,13183,14858,8979,4000,3331,3697,3445,4736,5240,5260,8228,14207,14048,16182,14302,12226,13515,11498,11027,7227,5708,5765,5328,5878,4364,3699,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,446,664,868,972,1456,1723,1014,864,809,648,602,342,183,112,30,47,57,68,117,198,292,445,232,488,773,964,1411,1952,2250,2377,2491,2342,1966,2316,2219,1970,2612,3322,3908 +0,4,6,12,14,17,19,18,21,23,21,18,16,23,22,24,3,5796,11214,13734,17926,22974,32675,30565,31878,30644,30556,39437,36315,33468,36745,30829,144220,152177,174202,163330,186448,138473,145905,96426,76836,59091,65975,49524,32760,27363,13358,7245,0,0,0,0,0,0,0,0,0,145,333,581,776,892,724,1089,93560,79086,60715,69237,55356,43779,38166,52410,56457,36867,29874,31883,24134,20444,15210,8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22420,18667,13093,11213,9485,12330,11980,15797,25988,27022,19953,12498,4690,11688,15569,19897,36845,30705,25523,24862,26780,20064,15175,7443,2437,2976,2829,4299,5999,6858,8902,10327,15352,19366,19624,16924,18880,14726,17576,15567,9452,8514,6134,6104,7621,4848,2934,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,653,846,1044,1357,1354,1434,0,8,16,19,26,34,40,42,35,50,59,80,81,62,60,82,0,389,748,1158,1193,1268,1552,2200,2527,3840,4098,3399,4280,4534,4225,4752,4230 +0,6,10,13,17,21,20,22,24,22,20,20,16,23,23,28,5,6473,11402,16722,23879,33432,38405,44058,50627,43462,37613,34310,43662,34902,37182,31101,162398,151772,131312,149052,154457,157864,134511,89450,69957,61882,50113,44633,24738,21028,17754,8496,0,126,352,446,839,710,732,1008,1281,1554,1920,2011,1691,2379,2335,2220,86680,73720,59909,57086,57269,55850,45503,50346,53311,38508,30345,31287,24924,18350,13832,6512,0,0,0,0,0,0,0,0,0,304,518,809,802,740,580,630,22170,20426,15052,12865,9450,8234,12455,11934,16761,15977,15124,12598,9089,11650,19701,20030,39625,30945,29621,30824,23497,19132,14540,6793,2328,2850,3538,4433,5308,6708,8808,8895,12343,15450,18766,18709,15484,13235,13230,11705,7048,7978,7815,8072,9034,5610,2848,1273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,462,702,711,844,1193,876,0,9,14,20,20,26,33,35,34,38,53,62,70,70,74,70,0,249,618,893,886,1070,1465,1680,1562,2660,2828,2856,4171,4346,3668,4101,4917 +0,7,11,17,18,23,24,20,22,21,20,20,19,26,31,31,6,8234,14880,23708,23122,40146,45933,48582,59234,53780,42766,36061,37075,36396,39280,31843,133054,118335,111854,92765,177920,149405,97413,79950,88373,62509,46398,35541,26859,20092,18061,9158,0,324,616,946,1589,1766,1494,1905,2352,2956,2942,4046,2516,3276,4788,4711,105516,99936,68034,42566,41213,53913,51716,55579,59516,48326,39259,36017,26096,18423,13406,7092,0,0,0,0,0,0,0,0,0,636,1095,1937,1524,1284,1201,1423,28737,27372,21513,14426,9336,10685,9182,11153,10290,12045,10762,9824,11437,13762,18604,19690,39808,33583,29504,26851,16789,17144,13968,8753,2097,3099,3770,3619,6155,5271,6314,4361,7856,11003,14522,13076,18024,14086,11500,9670,5325,5165,7384,8238,7624,5580,2782,1285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,372,523,648,727,719,620,0,6,10,22,15,23,27,28,22,34,48,43,53,64,66,56,0,176,416,510,704,802,900,1284,1232,1740,2305,2355,2932,3421,3021,3668,4402 +0,6,12,18,21,22,22,24,17,20,20,18,18,30,36,32,10,9925,18161,24110,28643,35673,42030,55803,66136,68969,48786,50640,29020,36138,41802,37187,137734,135034,99290,104762,145882,125247,92585,85442,59970,59241,35382,32686,25296,21614,19338,9920,0,408,1096,1352,1875,2155,1468,1896,3134,4192,3229,4415,4161,5344,8453,7381,74744,82511,53359,45368,28457,41504,50347,53712,54166,36842,40540,32298,18398,15772,13518,7006,0,0,0,0,0,0,0,0,0,929,1710,2534,2900,2627,2798,2828,24236,22404,20822,13874,7685,8084,6681,8040,7871,10794,9488,12242,13258,12609,15238,17373,47586,42630,32353,28852,19231,17248,15429,9019,1726,2892,3426,3908,4753,5152,5884,4682,7347,8974,8772,11584,14884,11008,8356,6958,6091,6117,7910,6852,5410,3498,1929,1043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,248,360,393,515,425,412,0,6,12,19,17,20,27,30,21,30,43,46,54,61,66,63,0,170,411,546,747,698,613,869,1031,1222,2077,2382,2919,2530,2734,3346,2792 +0,5,8,13,20,20,24,23,10,14,16,17,22,30,32,28,9,8460,18068,24405,28400,47607,56532,49824,81150,57676,56475,39862,26168,31014,32175,31623,171581,168735,147332,123919,68660,79830,86336,61224,53107,49952,35027,33942,25957,19998,11613,5203,0,725,1211,1805,2702,4146,4302,3542,5451,5142,5092,6027,6635,5254,5908,7668,72928,82252,71295,49647,29534,24444,29560,30284,56103,40096,41583,35756,18607,14738,6478,2977,0,0,0,0,0,0,0,0,0,695,1558,2616,4312,4406,5129,4850,23323,19032,15322,11477,7346,7238,8337,6226,5119,5320,7780,12063,14268,15915,16890,18902,49006,36760,35994,31826,25803,24241,15539,9377,1858,1831,2011,3447,4657,3473,2695,3124,5362,5998,6364,9102,12171,11040,8765,6872,5963,4929,5779,4603,3993,2888,2610,1290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,178,270,205,172,226,0,5,7,12,16,13,12,18,16,23,35,38,42,44,34,40,0,157,312,438,668,531,564,618,859,1158,1296,1936,2620,2361,1607,1664,2203 +0,6,9,16,23,26,22,26,17,21,24,33,34,34,30,29,12,9803,17954,20492,32029,43874,60430,61501,93178,86744,52604,49182,26590,25260,38199,38236,159434,134634,125404,88402,61042,63241,61608,56772,57586,43896,38542,30921,25153,17172,12771,5314,0,882,1940,2882,6554,7067,7966,6662,6193,7928,6266,7884,10689,8749,10262,11531,57706,64186,54840,46799,24703,24106,37728,36818,37349,35811,36191,22212,13442,12063,6650,2929,0,0,0,0,0,0,0,0,0,1474,2076,4493,6636,8789,8511,9968,20982,18068,12375,9149,6493,6090,7462,6439,4406,5388,7214,10798,15658,14382,16424,23018,50815,43866,37068,34266,33185,26122,17124,8702,1558,1648,1695,2670,3466,2762,2342,2708,5913,7327,6722,9040,11995,8892,7009,5307,3951,3304,4819,3994,3608,2446,1755,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,125,172,191,158,118,178,0,6,8,11,12,12,9,14,14,20,23,34,34,32,28,32,0,107,224,372,474,380,469,390,592,774,980,1428,2575,1734,1299,1642,2026 +0,6,10,18,22,27,26,24,17,24,28,29,37,34,29,34,12,9857,16796,18648,34438,39130,59502,59624,94426,77308,74268,73309,33358,33530,34238,38179,117279,95450,98304,100867,40524,43337,51374,69860,53538,46780,40119,35868,26876,16650,10020,5566,0,1179,2908,4094,9264,11482,10019,9852,9941,8088,8623,7998,15757,15407,12196,17255,63827,58309,53831,35647,22468,34494,38046,41296,30408,27001,27884,21618,9188,8268,5776,3388,0,0,0,0,0,0,0,0,0,1616,3523,5532,9404,10127,13484,14779,24643,16404,13036,7575,5041,6660,6069,3951,2345,5143,8726,9281,12131,13984,18509,30066,37685,36891,36822,36461,35619,30236,21804,11018,805,896,1160,1805,1842,1770,2504,2857,5989,6856,9790,7324,8051,7760,5986,5063,3315,2961,2303,2796,2228,1722,998,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,60,124,157,103,94,98,0,5,7,11,7,7,6,8,7,12,14,18,21,26,22,25,0,71,162,236,298,342,367,291,360,690,879,989,1798,1409,1244,1174,1411 +0,6,10,16,16,24,22,21,19,24,34,34,31,36,35,36,16,7586,15910,18978,35372,35605,49939,58985,70660,69074,84733,63937,60928,45066,46152,51680,67209,78137,76196,83466,45422,54258,60268,69870,51441,39562,34164,29374,24682,16295,9969,4904,0,1676,3347,6228,9459,11880,14088,16472,18451,15780,13810,13607,17952,13983,14875,15450,52005,41023,43452,42368,35407,39826,32080,27132,29368,22417,17208,13404,6807,6043,4008,2312,0,0,0,0,0,0,0,0,0,2712,5280,7732,11402,10220,11624,17495,23004,16381,12254,6194,4385,4160,4584,2796,1005,6164,11507,11772,15422,18772,26234,31562,39992,41733,40326,35834,36072,26979,19992,10718,450,526,695,1174,982,1386,1846,2545,8642,8164,8496,7421,8566,6120,4519,3477,1962,1480,968,1452,1103,859,547,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,32,56,68,60,56,53,0,2,5,7,5,5,4,5,5,7,8,10,12,13,11,12,0,40,85,108,123,172,201,150,198,304,500,512,917,714,500,718,791 +0,0,0,0,0,0,0,0,0,3008,6079,11734,14065,16028,17029,30491,34833,36528,53568,54657,52020,51484,36003,28117,30444,45598,52202,51271,66690,52236,53547,49166,48234,37766,40332,43831,38817,42967,32912,38830,33012,24885,14890,13298,16427,9960,5430,2648,0,0,0,0,0,0,0,0,0,3055,5872,10156,12409,15430,15975,15961,26835,23290,30726,30870,21854,13743,11678,5797,0,0,0,0,0,0,0,0,0,796,1634,1731,2568,4390,7596,9190,15364,17195,16045,13148,16560,18947,21302,19296,20534,12946,11263,9814,10631,8924,9625,9872,7392,8582,7853,5568,4651,3270,2606,1500,0,122,294,333,468,598,969,1957,2322,2774,2712,3552,3927,4480,3839,2787,11968,11398,11589,8512,7016,9650,14178,15486,15912,15956,12634,7556,3669,2974,3056,2168,1619,2032,2478,2690,2367,2400,2114,1701,1914,1572,782,547,305,222,201,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +0,472,1154,1804,3252,4206,5201,7196,13348,22858,23268,30164,38753,43752,61507,60198,23486,37468,37373,48132,60795,51796,40830,43578,45776,56536,57300,69872,88086,97756,108289,91950,39517,41181,42296,47442,25482,31750,34541,30964,28089,24344,12815,13196,11204,9108,6669,3336,0,1,2,5,2,4,4,5,5,2760,6461,8264,10254,10333,14938,17062,41027,34896,35716,36076,25603,23227,18103,11609,6427,5058,4624,5195,3459,6049,8447,12346,8655,10310,12206,14798,13025,13402,20649,28605,26078,22947,21298,18556,16022,16024,14614,17343,16352,12539,7024,8892,10932,8386,8491,8060,5525,6371,7651,4602,4764,3350,2686,1422,0,168,280,404,581,710,793,1230,2900,3112,3188,2911,4100,4406,3334,3464,11278,12298,14935,14520,12043,19946,17524,19546,26122,18085,15013,10429,6862,6267,5047,4766,2860,2675,1925,2144,3050,3297,2891,2076,2466,1980,1832,1190,745,738,884,978,0,44,89,160,118,183,259,200,265,256,271,218,120,68,55,54,87,81,90,83,70,73,68,54,30,39,53,54,44,35,23,13,0,13,19,32,30,34,45,38,22,26,29,24,19,16,10,6,126,126,91,96,43,47,74,74,17,34,46,40,32,30,16,12,0,0,0,0,0,0,1,0,0,1,2,2,2,2,2,1,2,5,5,6,5,6,5,6,10,8,5,5,2,2,2,1,0 +0,974,2180,3884,7477,9704,9853,10578,25699,36428,50718,60452,75303,94978,86002,95982,23553,25727,36634,41474,61169,45957,51902,70250,64131,78783,74558,69805,129555,129066,155402,126355,47798,51616,46288,37728,21628,25561,29060,26355,23001,18197,16541,11020,11190,9011,5938,3537,0,2,4,7,5,7,6,7,7,2733,5120,9261,7071,8968,12735,9942,56157,41573,45975,45036,35824,25341,18834,16305,11768,10569,7870,12364,8093,9688,16022,22172,14648,21009,21740,26156,27474,25306,30196,39714,28120,28450,25894,19013,20703,19444,13042,12059,9260,7468,6076,7700,11995,9218,8148,7742,6181,6752,6760,4955,4959,3035,2269,1355,0,204,376,512,503,698,920,1199,3272,3380,3344,2229,3734,4049,4258,3602,10395,15048,15240,17121,21272,20063,28266,29834,29542,24342,16904,12340,8988,9894,8056,8165,3598,3471,2280,2503,5079,4278,3764,2836,2729,2512,2335,1509,1513,1654,1642,2060,0,93,192,285,224,360,432,388,632,484,538,467,217,194,118,103,212,211,150,140,164,166,116,104,57,88,108,92,104,68,42,19,0,21,42,65,60,83,82,78,43,52,52,49,33,27,15,10,221,177,208,146,87,105,140,149,32,53,77,83,74,48,36,22,0,0,0,0,1,2,2,2,1,2,3,4,3,4,3,2,5,7,8,10,7,8,8,8,15,12,8,7,3,4,3,2,0 +0,1682,3016,5845,8792,12282,11698,16773,27186,54222,91182,76362,98684,91528,100592,105936,21464,24268,35199,34488,49808,45692,69859,67542,83168,96300,102819,105479,109105,133293,149679,137065,36690,35052,33470,34926,26057,24496,35034,27738,27009,17103,12427,9216,10022,7432,5732,2862,0,2,5,9,8,10,10,13,10,2170,3519,6989,8348,10563,12133,13962,63361,48449,59425,44521,28812,23598,17057,18302,13096,11766,9491,15180,17255,23364,25372,31836,20935,21960,22944,31252,29690,31230,43001,50758,34182,35650,37342,26224,22116,17466,19258,15438,7142,6036,7218,6237,9499,8386,5790,5454,5112,5794,4745,3935,3834,2309,1733,925,0,172,322,608,752,822,1189,1342,4689,3754,4154,2682,2984,3052,3470,3242,13482,19438,16822,21253,26430,26048,39796,41040,34953,24238,24264,20838,12254,11022,12083,10577,5221,4126,2948,3845,5474,4663,3449,2820,3082,3094,2456,2478,1730,2700,2880,2620,0,148,233,440,327,509,724,740,793,603,649,472,397,298,204,166,251,220,144,229,221,172,173,174,117,152,139,145,144,101,73,34,0,34,50,70,90,108,120,114,70,78,69,52,41,38,16,10,342,324,330,222,131,134,166,175,67,78,92,95,103,62,37,25,0,0,0,1,2,2,2,2,2,3,4,5,4,5,4,3,8,11,11,12,12,14,14,16,21,19,13,10,5,5,4,2,0 +0,3571,7153,10146,11737,17112,21047,24158,39275,39416,49171,82791,113460,112605,85582,111768,15597,23058,41182,42419,47856,57706,70810,63528,81273,91204,106648,135971,124134,129874,119270,112077,21605,20105,27042,23484,30314,23266,25885,23817,26072,15973,10940,9958,8160,5546,3420,1438,0,2,5,10,10,14,20,17,10,1770,3133,6172,7726,6614,7653,12215,59915,46076,41908,37998,30386,23328,27339,24473,17068,17534,21997,21933,23096,26818,32224,36895,26400,32744,36110,32504,42231,42005,54576,56871,31135,30306,37868,33034,24657,23869,20896,11290,7177,8440,9503,7448,6787,7490,6376,4706,4553,5836,5622,4585,3606,3252,2150,966,0,277,492,622,774,671,877,896,5639,4427,4968,3264,1867,2141,2191,2093,22442,17834,17084,28739,32898,24633,28433,33528,36156,24466,20268,17968,17058,13797,17211,14309,7053,5992,6930,6572,4995,4321,2774,1751,3271,3350,2630,2978,2770,2623,3452,3443,0,188,370,391,568,659,734,875,1080,986,763,737,550,392,256,162,340,289,242,316,294,302,223,232,150,131,123,145,166,116,98,57,0,22,46,86,120,152,145,139,123,96,78,60,58,42,27,17,476,503,391,225,162,239,250,315,79,75,70,105,108,91,61,39,0,0,1,2,2,2,3,2,2,2,3,4,3,4,3,2,10,13,18,20,16,17,12,17,23,16,12,10,4,5,3,2,0 +0,3404,7703,12022,13018,16793,23748,27286,46469,53452,82300,110766,121556,124219,99769,119091,11607,24744,32115,34430,40062,59561,57519,69058,97878,107156,104411,135817,102554,105620,108834,113249,14120,16154,21871,18540,25754,17979,22424,17574,18387,14060,8816,6983,6368,4368,3431,1544,0,3,6,10,10,15,17,20,12,1356,2853,4058,7386,6653,7560,8962,48053,43561,38680,28839,31228,27475,24443,21866,17446,26328,30280,32780,36336,39019,46453,50012,27863,41584,55671,58520,44869,49780,53612,64715,43659,38988,54486,41729,27062,27912,19878,12218,6141,6392,6700,5987,4458,5970,5216,3949,3494,4003,3993,3384,2786,2632,1688,708,0,291,444,684,766,1302,2502,2778,7186,5539,6258,5341,3804,3598,3527,4568,18654,17644,22936,30550,24895,22318,23877,23876,47808,33434,25194,20145,16044,18252,17664,16170,11728,8630,10351,7679,6760,6416,4565,2560,3446,3561,2488,2922,2514,3242,4319,3385,0,192,341,352,640,810,1035,904,1274,980,957,911,650,563,349,324,369,392,288,340,508,387,288,257,126,128,140,178,177,134,108,52,0,30,60,109,192,168,130,134,159,137,126,104,78,66,33,19,936,854,523,550,586,406,434,406,205,180,141,153,192,134,114,76,0,0,2,2,2,5,5,5,2,5,5,5,4,5,5,5,22,26,22,20,19,16,13,18,28,22,19,16,6,7,5,2,0 +0,4246,7305,9959,12047,20064,29658,27611,51763,93742,106774,152193,150204,137124,104690,114838,12050,17634,18936,23594,41927,56255,60621,58888,102130,105180,125190,120067,48841,85912,118833,131236,6545,9090,12210,15828,13451,15503,14000,14618,12879,9580,8525,5656,5883,4944,3153,1835,0,2,5,9,11,13,18,22,10,695,1638,2547,4751,5764,6866,6291,41878,28860,29802,22963,27070,23055,22499,20210,22768,35780,37822,54002,67367,71216,58727,60683,31051,41937,65918,81627,39651,54258,65204,71338,44516,41235,52973,42959,33100,25887,24088,16038,7221,7467,5371,5373,4138,4333,4944,4938,3027,2542,2676,2636,1929,1434,1475,748,0,219,492,794,903,2061,3746,3654,6440,7851,6692,6296,5127,4739,5960,5667,19884,22624,26111,32688,16169,19523,26678,26824,45983,37161,27335,22503,20738,18794,22603,26265,14348,12645,10879,10352,10740,7780,5804,4333,2688,2493,3244,3575,2404,3164,3786,4138,0,161,318,424,816,1110,1188,1146,1443,1019,1064,908,587,617,482,384,407,436,458,402,561,352,316,293,156,189,182,203,145,127,88,51,0,34,70,91,199,167,154,155,186,196,168,135,98,82,42,25,1338,1092,876,740,837,816,553,455,270,191,202,204,233,175,139,83,0,1,2,2,3,5,4,5,3,5,4,5,3,5,4,5,31,34,28,20,16,17,16,18,23,22,20,17,6,7,5,2,0 +0,3892,7923,14791,20026,27733,31474,35220,49093,82692,105542,124866,147890,136105,119000,127862,9808,11058,16906,20826,29816,43468,58449,74944,115228,87190,109243,85569,42179,88013,114910,127221,3448,4702,7415,8086,7880,8482,8224,7146,7391,7567,6289,3948,3068,2638,2066,887,0,2,5,9,10,15,22,22,13,542,1540,2240,3559,4296,3544,4500,48580,39166,24557,18752,21862,23789,18622,18982,22184,29366,40941,59956,63314,64098,73003,76998,32308,54727,68078,86127,73804,66494,80558,58218,56846,54098,47595,45957,40240,39236,26810,24776,11208,9846,6886,5372,3140,2619,3678,3052,2613,2536,1936,2044,1537,1497,1214,560,0,265,514,784,1280,2166,4658,5297,7283,6918,7286,7566,8480,6816,7827,8944,20654,26234,29102,23120,19061,20424,23827,24397,33467,28966,21877,24128,25489,23831,23007,24758,16566,14646,10584,10236,9784,8902,7336,5563,2366,3170,3118,2704,2454,3256,4183,4194,0,184,383,630,752,910,1151,1532,1750,1410,1276,969,809,716,408,368,529,472,545,520,616,454,323,332,243,211,216,189,158,128,82,49,0,52,115,162,260,290,238,246,245,208,180,146,125,104,44,26,1474,1564,1306,1109,1058,890,569,455,440,346,270,284,218,215,170,118,0,0,2,2,2,5,5,5,2,5,5,5,2,5,5,5,61,44,40,28,19,20,18,22,22,26,21,17,7,8,7,4,0 +0,6599,12847,24273,28405,24992,29450,44150,48709,69116,99005,127390,150921,139983,123906,145958,5696,25710,47148,57550,77516,91537,98795,92134,95566,90744,107018,192682,235288,187040,180253,236093,0,111,228,378,551,1077,1440,2908,3790,3836,2811,1738,1155,864,465,222,0,5,8,12,12,14,18,22,19,81,134,265,375,1063,1476,1558,40378,32720,31558,32536,42368,33355,37400,37557,29558,40231,39353,46315,66499,58877,40333,61868,45535,58575,57223,69962,59862,39532,37952,55114,66224,51616,55786,41961,38965,37080,27199,29247,14158,11816,8738,9101,6434,4342,3829,3401,2202,1967,1380,1482,1350,926,605,316,0,1416,2445,3610,5065,5263,6404,5333,6288,6256,5268,6688,10838,11092,15036,13242,22970,23310,23445,29993,34226,30752,42120,40985,29668,36764,37888,33464,28946,36496,33299,25661,14407,10801,9025,6459,2188,2898,3311,3493,2676,2902,2249,2506,2147,2477,3011,3453,0,172,314,586,786,1103,1467,1518,1537,1759,1410,960,884,804,780,536,655,515,556,404,159,183,249,266,296,278,188,128,116,79,77,38,0,53,113,120,163,175,166,215,286,338,334,308,241,170,154,86,1963,1670,1801,1476,1135,1199,1117,731,490,404,400,413,409,342,206,143,0,0,1,2,2,2,3,2,2,2,3,2,2,2,3,2,80,55,42,36,33,30,22,29,27,24,16,22,21,13,8,5,0 +0,5751,11778,17358,19118,23861,26298,30418,38357,68540,74143,110148,112474,107927,93757,114269,8534,22302,31636,45643,68695,82063,97782,87802,73623,95428,115002,173614,147146,161812,197912,228001,11281,10290,13054,11433,13400,11442,9471,12074,14464,10930,7861,5722,3189,2734,1296,734,0,5,8,10,11,14,18,18,15,61,114,224,312,903,1162,1266,39920,39810,37104,30444,55196,38018,27132,25618,22110,30063,36182,53043,51327,51384,52481,76674,41771,47670,37286,45259,66059,47336,35998,44063,99578,82742,68330,61308,51504,40689,32289,29155,11277,11422,10265,6704,6136,4036,3938,2756,1891,2040,2222,1927,1697,2131,2082,1838,1115,2036,4124,4414,6883,8098,9808,10652,5848,6855,5534,8268,10734,12693,12434,13428,20678,24227,23828,34810,25918,31714,35088,35208,30729,34614,26524,25597,28908,29456,40646,31094,15250,13164,7463,6398,3732,4461,4783,3846,3451,2980,2856,2740,2217,3424,3963,3980,438,638,515,987,980,1226,1770,1826,1941,1534,1142,973,721,747,681,542,801,659,540,354,194,244,316,274,312,255,250,193,139,105,106,56,0,51,91,100,144,200,164,242,677,712,639,532,444,426,482,454,1237,1294,1680,1146,1185,1180,734,540,365,476,504,518,467,348,454,392,0,18,33,42,81,92,79,123,18,28,36,44,50,62,76,94,109,116,150,164,228,258,230,180,124,121,134,120,101,63,40,20,0 +0,3494,7796,11783,16296,24198,25945,33065,44829,60029,83244,106670,90798,82670,94682,74796,14624,22403,31568,28899,70611,69213,74301,71938,37667,72258,96632,148653,110408,140744,151873,221562,23653,26171,24096,18924,24013,21534,16551,19894,24406,18001,15576,11194,6494,4165,2418,1303,0,4,6,8,10,11,12,14,12,51,101,152,268,693,1090,1590,50016,53927,40402,32668,51698,44337,27924,19713,11763,23781,41504,45316,51432,49481,60716,57773,48158,41201,33053,41261,66430,66228,48414,38152,106433,90747,71829,76482,52670,44322,35010,39211,12284,10319,8574,5797,4730,5074,3894,2640,1590,1672,2394,3414,2037,3237,4012,3717,1928,3130,4895,4938,9447,10971,10795,14792,5207,7317,7402,7558,9979,12174,14398,14671,27306,31006,30258,22996,20658,23740,27025,25325,37305,29297,24627,22974,33691,29049,35380,33943,13983,12375,9446,7660,6242,6914,5662,4686,3335,2887,3092,2607,3262,3072,4218,4602,756,940,908,1150,1274,1807,1758,2033,1811,1378,1414,1354,484,422,562,476,992,749,660,388,320,276,294,289,384,352,232,234,135,138,100,50,0,47,78,103,102,166,217,344,1032,848,824,674,713,825,729,743,989,958,1065,1250,1256,1094,578,385,398,380,523,542,584,615,604,498,0,38,66,70,140,128,164,216,37,40,57,75,119,130,158,183,147,156,217,314,466,400,364,317,218,218,218,174,152,91,66,38,0 +0,3340,6541,10651,18371,19948,22907,26416,36888,58988,64794,84258,79494,70262,76908,56204,16484,22836,22508,27382,51907,52393,61981,78126,26114,45850,54112,109128,87995,112682,139888,195722,30790,34716,38055,29316,37031,31270,29243,33856,37547,29712,28933,16786,11746,6686,3440,2016,0,2,5,6,7,9,8,11,12,62,115,150,173,496,778,1310,34943,32991,36831,36756,45502,33354,22974,15106,8762,21502,30808,36584,41049,56877,75839,67636,42565,43423,44023,48150,63670,53922,36452,33336,115354,89944,81354,69342,53907,46306,39428,33033,9544,8636,7075,4862,3051,3682,2838,2336,2011,2032,2156,3454,2878,4186,5065,4606,4058,5154,7978,6556,8206,9626,9549,14822,5916,7451,8572,9368,10438,14316,16139,14166,21517,28089,31193,25086,24115,23667,19666,20562,28945,34470,36156,26204,28342,38128,39725,37336,8362,9360,7090,7653,8875,7625,8268,7486,5216,5268,3328,2974,3534,4220,6322,5897,1167,1533,1351,1819,1641,2561,2332,2446,1833,1842,1476,1198,463,572,816,822,1121,812,755,534,372,322,262,292,554,512,319,252,204,183,122,62,0,32,70,121,125,188,259,340,1348,1200,825,836,739,750,903,845,1267,1008,970,1046,879,936,504,314,346,571,551,682,713,694,743,706,0,52,79,118,140,188,212,360,48,72,84,122,175,230,262,290,153,180,208,424,604,625,584,436,289,300,242,197,163,137,80,42,0 +0,4269,8347,12746,14876,18028,16028,13636,39047,54113,53042,61651,58706,60754,55135,52297,19731,17320,17770,18472,24700,53126,73835,88819,21089,44006,56368,63381,65860,89008,102836,204068,42843,46346,37374,37094,38345,38610,43829,46983,41096,33966,25758,18202,14236,10302,5139,2614,0,0,1,2,2,4,4,5,12,58,87,129,145,552,900,1101,34322,33914,25948,35747,35585,26980,25731,15537,7452,12429,18166,25909,40981,43609,67472,57388,51293,55594,44468,42868,42726,42106,30468,27926,91592,68981,50836,54150,64328,56048,38635,25088,5990,5321,5442,4050,2418,2173,2273,1816,1858,3044,4066,3694,4873,4790,6913,5950,5471,4571,5578,6972,9438,9991,9324,10938,6928,7231,10804,10871,14398,14460,12385,8613,22161,14554,13965,17876,20414,14058,9740,11826,32548,35417,29360,29500,32484,28067,37498,30460,6896,7582,6149,8338,8606,7296,9378,7124,5441,4565,3870,4007,3179,4887,5153,5589,1533,1522,1786,2296,2468,2550,3133,2648,2121,2031,1428,954,568,787,863,992,1677,1172,1064,633,314,317,237,316,610,508,511,426,228,212,158,69,0,32,77,141,170,152,207,336,1234,1141,1399,1232,856,1015,1175,1011,1260,1479,1378,1069,813,811,596,337,323,383,464,709,1045,981,946,997,0,31,72,143,206,270,384,455,68,93,154,221,253,270,330,403,135,392,541,627,708,706,669,482,394,320,362,263,220,176,84,46,0 +0,3448,6193,6897,8546,10295,11175,12384,30067,40260,42405,51634,64646,54600,69966,67298,25470,29670,38527,31056,29540,41355,57070,64178,13073,25853,41480,52616,57781,75812,93713,167113,37712,43668,35616,39724,60845,61970,53734,59355,66471,38202,25798,23802,34318,20490,7324,4228,0,0,0,1,2,4,5,6,10,40,61,78,121,487,607,989,50060,45869,32520,37580,35490,30646,22010,14362,4905,10848,14826,23024,46980,53988,76360,69598,69882,57596,39978,54374,54724,54738,41390,49358,82783,64768,58586,64600,76813,69535,34896,26508,4571,3983,4286,3240,1725,1574,1907,1708,1346,4304,6391,7333,6794,7271,11106,8832,13072,11362,8138,9495,19203,16573,13579,15463,8930,10776,16446,16630,12685,13801,12819,12628,19882,18335,22144,21222,17664,14846,13529,13098,30583,28193,30620,28882,22599,28446,27936,26910,7999,8922,10440,8336,6074,9398,11514,9438,7250,6361,6185,4771,5072,4980,5048,7416,1756,2249,2444,3003,2110,2485,3120,2622,1743,1934,2332,1453,1927,1706,1434,1458,1866,1608,967,692,425,388,389,378,501,456,443,381,181,153,124,61,0,61,119,203,347,339,404,460,1593,1284,1242,1414,778,1013,1280,1456,1261,1417,1443,1118,655,512,524,273,264,588,750,1317,1006,1278,1610,1896,0,40,84,148,261,299,369,419,225,296,392,409,438,420,387,399,409,468,582,722,1316,1089,860,828,552,600,569,478,494,361,228,123,0 +0,1978,4181,4950,4859,6113,6054,7228,20662,25135,33886,59024,69269,75327,66042,71234,38786,39975,46852,48493,28183,35963,36715,42416,11580,17303,24489,29632,34291,73497,99536,165181,51217,53988,49847,47281,85528,66105,74314,84174,73637,61616,33302,27802,46110,26699,12598,6413,0,0,0,0,1,2,3,4,8,22,42,56,97,371,612,807,60334,52597,53937,46645,34652,34056,24628,11892,3166,9930,16880,24632,47918,64091,68471,48402,83526,62663,53792,48252,62110,61624,58849,71360,114316,99962,68554,60305,85990,52219,31928,19999,3679,3165,2092,1310,1071,1020,914,1046,1103,3980,8196,11036,9327,9751,13726,14241,17203,13499,14308,14678,26380,21162,13545,14988,13455,13053,18577,22486,14000,10830,11266,8451,24896,24711,26732,23910,18700,14765,14613,15481,35124,33804,25157,20898,22383,29339,26566,22198,12896,9982,11421,9122,5795,9493,10156,12119,11723,8314,8042,6864,5700,6433,6692,6719,2723,2102,2394,2859,2028,2358,2708,2508,1997,2708,2528,2176,3285,2824,2120,1585,2182,1896,1344,806,478,502,436,417,482,508,377,295,154,109,68,41,0,85,192,375,522,646,608,760,1804,1710,1360,1710,1054,1113,1375,1297,1407,1744,1594,1288,598,405,294,147,131,668,1086,1542,1391,1950,2209,2200,0,48,84,140,326,432,394,376,325,468,536,482,483,665,628,568,754,835,795,846,1528,1352,1077,1002,889,794,806,684,759,510,480,274,0 +0,814,1910,2234,2182,2402,2582,4132,8531,18014,32754,54500,63800,67944,66110,76140,51511,60388,66925,58910,39541,29882,25327,26961,6852,9876,19588,21558,26128,58759,75038,136707,60621,58445,50802,71223,101946,75746,80826,89110,88214,52044,35232,36384,42828,30828,15218,8164,0,0,0,0,0,1,2,2,5,16,21,27,40,194,367,342,76411,66463,41481,38525,38630,28715,21833,11374,1414,12314,22589,23628,51230,57242,53655,65682,85920,71111,62948,48476,47483,66145,65647,70374,99934,88807,59810,70747,81935,53198,40227,19556,2158,1418,925,671,485,563,444,435,512,4364,8123,10445,13667,16264,21322,21434,22714,19209,17765,18155,28153,26738,15773,20131,16310,19083,15680,20712,15602,14020,9422,9182,25970,22394,28974,19395,18653,16570,19577,21603,26404,23204,21888,19719,14586,16992,16372,18378,15357,14928,17023,11725,7662,7833,9379,12424,13142,11996,7271,6379,6273,6960,6648,7337,3217,2417,2624,3424,2566,2781,2673,2945,3388,3381,4195,3338,3642,3196,2084,1764,2547,2181,1558,1054,692,504,416,381,476,396,395,270,190,126,87,44,0,114,250,377,522,904,908,1412,1908,1814,2564,2164,1755,1734,1951,1686,2011,1866,1751,1274,567,474,256,126,67,876,1490,1933,2151,2482,2457,3040,0,59,122,186,308,377,436,373,389,476,665,606,459,525,722,820,835,1104,1155,1082,1332,1164,1208,1053,852,922,1336,1007,814,596,478,242,0 +0,5828,13870,34751,44772,58832,57087,55899,55225,75062,70678,70161,99794,74786,60669,77740,69956,76640,62461,78054,70259,73569,55653,66669,66458,91408,90903,82552,106518,87444,83821,93084,98252,76313,55119,46504,31965,30914,30818,26352,22942,19892,19392,16017,17126,10464,5728,2337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68617,59662,48013,31367,20265,43210,58695,71229,110212,102111,139315,131318,144765,115429,100482,71412,73755,80172,83586,106493,123316,136908,116210,81855,81403,74879,45815,42976,36162,24414,22539,12898,0,2453,4573,8668,11730,17539,18983,17716,17060,14868,12434,10197,5093,11769,17005,17960,21711,22316,26464,27048,36882,35446,31457,29919,28014,33652,29690,27585,28072,29282,22065,16227,27379,30862,47076,50840,64294,60838,64926,45802,49357,49690,41247,42125,36265,31564,26971,19335,18357,11511,9270,7596,4750,4753,4979,7394,11420,9190,5666,4966,3754,4073,4059,5663,3369,5172,5311,5258,6348,5370,3932,5414,5091,3875,4282,3404,3937,2518,2160,1990,2636,2284,2261,3437,3541,3624,3645,3009,2857,2304,1467,1216,1088,788,432,197,0,390,741,1086,1343,1047,1266,1790,2331,2348,2389,3278,3571,2819,2042,2554,2922,3090,4698,5172,5826,5479,7747,5634,5678,5548,4961,3648,2238,2492,1917,3388,0,154,325,335,502,508,759,600,682,677,500,433,552,688,1044,1165,1034,1144,1111,1083,801,628,533,453,354,366,272,219,117,82,63,28,0 +0,7272,19472,28156,36495,42168,55043,50803,50637,52822,57832,65300,100068,88425,62820,85479,76799,69096,54657,77619,71898,63413,60817,83910,79289,80705,77383,81872,110385,102007,89331,81200,110842,90270,59342,39976,35334,35258,42235,40760,30503,29236,26114,22826,11682,9394,4855,2221,0,136,283,536,655,664,556,760,948,750,712,484,308,239,135,95,68482,52414,32000,26344,22353,37301,60523,95266,174346,157763,135598,142770,127115,112043,66004,57248,51172,72968,89054,112917,103311,115202,114400,86486,52783,54120,51165,42344,31661,31240,26460,12850,0,3016,5830,12026,16963,17041,23970,23860,16081,15354,16044,11256,7616,13466,16931,17846,22948,26732,25696,29696,29376,32756,24856,23633,30812,30000,22551,22997,34370,26365,17035,11074,30908,32420,46338,45922,57920,46263,53082,53806,51316,56028,49565,41150,23817,22962,23656,15158,18967,15398,10762,13054,9630,11304,11677,11974,14038,11682,9028,6138,3368,4778,6230,8648,3954,5494,5638,6036,5417,4263,4409,5663,4518,4116,3011,3288,3450,2746,2307,1751,2923,2806,2064,2884,3389,3164,4015,3356,2369,2150,1241,961,909,748,312,181,0,307,807,953,1117,1012,1102,1488,1750,2320,2187,2448,3379,2756,1713,2210,3945,4042,4770,5588,5432,6201,5270,5242,4170,4196,4296,3461,1907,1879,2008,3180,79,216,485,584,526,564,717,632,494,616,740,737,890,1065,1201,1394,910,1122,1068,1030,725,646,702,780,656,576,449,360,305,279,309,191,52 +0,11085,21133,29679,25841,36400,41444,39533,41137,47792,45277,41392,82170,88684,90466,82777,71902,65774,69712,78802,59684,71901,62938,86468,85635,72762,46144,62952,115944,89726,93246,109896,115364,107546,68180,38042,36211,43686,41149,41126,31445,39943,36308,27394,11480,8808,5150,2358,0,335,568,854,1367,1130,1376,1719,1800,1604,1326,909,545,442,292,238,59528,39156,29091,28433,31606,42523,50687,102522,195225,221990,179200,178230,116417,95803,63674,72349,38639,47183,71650,83018,74966,68548,76271,56944,49028,53558,45318,57699,30960,30092,21566,10338,0,4515,7628,15486,19783,16810,21020,28494,18111,13386,15345,12933,10291,10405,14762,14512,23772,27260,26692,27642,32513,23579,19629,18736,28547,23787,24782,19367,29424,24878,13982,7426,33002,35768,42548,34863,39572,38320,46588,41322,58223,59635,43744,39296,19726,17575,15952,11962,14490,12672,15506,21771,18036,16862,18529,19681,16944,12353,13134,9465,4547,6389,7866,9278,3447,4218,5094,5135,4340,4320,3510,5049,2664,2437,2045,2348,4409,3442,2788,2219,2855,3038,2604,2593,3648,3112,3742,2800,2170,1808,1320,1050,840,576,325,176,0,275,608,893,985,1095,1164,1322,1505,2519,3053,2458,2378,2267,1670,1976,5636,4127,3552,3428,3838,5269,5354,4278,3356,3533,2575,2459,989,1541,1598,2442,152,321,486,734,598,716,732,745,455,770,870,735,1422,1480,1518,1744,790,823,932,834,950,923,902,868,1161,799,786,552,521,536,455,338,125 +0,9752,20137,30422,29408,26960,38122,34768,41092,41702,31950,40577,58697,64718,65316,79238,68088,79836,105286,82213,64234,63477,69916,69744,59149,59077,37570,58260,88729,97503,86739,91552,123752,109458,64631,62944,47475,43168,51247,45786,37371,39578,34620,23814,10814,9848,5946,2678,0,520,1008,1244,2344,2420,3134,2847,2470,1836,2088,1332,916,734,491,378,62893,41972,26512,25207,28063,51790,69267,96821,161003,199660,213265,149763,87900,81414,47741,60726,25513,36423,67488,79799,62887,71635,78590,82610,52190,47238,49645,53924,33314,30668,16782,8012,0,6028,12306,17332,18665,19894,22073,35105,19582,20020,15610,14494,11746,10016,12475,13890,25749,21308,18756,22808,22452,18988,13104,12590,23577,18471,18652,19098,22679,15928,11263,6601,29950,35698,43302,33740,31437,31811,53220,37872,57729,43709,45530,29948,21550,18458,19766,15230,20142,17530,24868,22350,28956,32762,29293,26993,23885,19002,19445,12992,5567,8100,9629,10444,2872,4370,4639,4964,5630,4620,3667,5541,2681,2178,2205,2322,3662,3956,3264,2463,2706,3180,3247,3422,3509,3433,3676,2990,1444,1382,926,712,640,528,351,208,0,297,460,650,803,840,1080,1097,1924,2330,2408,2252,1836,1613,1607,1693,6008,5352,3821,3610,2980,3841,4706,3991,2970,3078,1969,1682,1017,1204,1211,1950,314,674,986,1176,1152,943,1168,1215,594,996,1036,1350,1748,1853,2295,2076,680,798,892,884,843,1044,1287,1240,1438,1278,972,820,762,655,793,555,173 +0,6448,12601,17056,25723,30583,28404,25249,48339,45728,60827,44064,38557,42441,55232,69633,93497,83842,62786,75777,91592,116368,106542,95837,59812,61410,84622,75538,62828,46293,35759,30398,124495,116048,112380,85562,51777,58231,52911,48198,47322,39142,40081,30894,14280,8476,4854,2724,0,616,1159,2199,2630,2652,3927,3348,3379,2703,2813,2109,1258,1117,869,531,49094,44903,53119,41190,32436,38572,49624,81284,171004,134920,88599,96240,100718,92385,60130,62787,14449,36440,55576,68002,74883,95289,88128,89786,57586,66452,54375,46274,39319,30847,14248,8247,0,8214,14615,18300,23295,20998,28429,30309,15344,15858,14560,14578,14904,10179,9148,12132,21596,19228,12198,14094,11303,10333,9648,7351,16484,12266,11742,12424,16748,14627,10579,6220,39232,43860,38844,39414,31500,35054,31166,37063,41599,44892,45005,39143,23564,26203,21767,14454,24424,25293,22278,23945,31744,28414,29260,33686,27634,19572,10811,7705,7222,5997,7650,12948,2536,2368,3181,3950,5279,7786,7835,5852,2018,2573,2969,2456,3165,3383,2553,1939,2108,2062,2449,2828,3290,2551,2297,1982,871,721,878,727,620,459,218,103,0,186,356,596,887,796,816,839,2272,2344,2823,2778,1998,1490,1618,2435,6984,5364,3841,2789,2161,1734,2025,2354,3689,2364,1906,1340,800,1447,2078,2004,468,491,610,1045,1459,1751,1973,1922,582,746,981,1526,2054,2360,2292,1830,745,680,598,658,908,1144,1389,1502,1776,1758,1403,1142,1060,1001,691,507,282 +0,5406,10582,13662,20852,23985,26469,23822,39367,41948,52262,47227,36594,29914,42880,42174,88794,90128,50835,74907,75504,83028,80902,85866,59252,54604,56876,59291,48407,31718,33206,29860,119466,119600,120542,91660,50115,63396,57149,58284,51992,38279,39789,31442,18804,11535,7640,3964,0,596,1311,1879,2799,3553,4167,3596,3967,2992,3412,2054,1318,1002,820,525,44494,59163,61450,52960,35694,44927,57176,77258,138280,120558,77891,88708,73308,71334,57061,44239,18168,31390,40896,56815,74218,83627,71895,62070,66130,51324,48668,41767,31001,23382,12831,6399,0,6765,11284,16558,25581,28657,33294,37205,24989,24006,26588,21404,30137,26696,17982,23206,15988,14598,11573,10474,8112,8058,9298,8791,19598,13274,12324,12345,13709,10923,9178,5130,49123,44486,40942,35075,30652,24801,26681,25968,43788,38524,34280,30644,17469,20604,17953,14273,23499,27825,29330,26077,34157,27150,26829,26194,21384,18871,11066,8888,10159,8561,9914,13790,1715,2155,2994,3619,4769,4820,6706,6464,1944,2560,2042,2228,3241,2938,2427,1676,1920,2020,1989,2409,2412,2328,1805,1385,823,705,897,726,457,436,218,98,0,192,426,567,748,912,1284,1414,2780,3373,4378,3356,3367,2924,2520,3392,4699,4524,4234,3965,2864,3096,3521,3265,4308,3362,2684,2260,1320,1498,2222,1779,615,832,1044,1512,2161,2167,2356,2384,1522,1518,1184,1707,2377,2022,1808,1842,553,662,701,768,927,1181,1479,1320,2136,1896,1656,1390,1362,1070,687,558,342 +0,4135,7438,10925,18527,22289,26185,19601,41830,43154,40390,41156,32660,29591,24618,30210,85658,69688,60482,77122,39954,76496,89812,87673,70643,66125,45379,39268,35934,31336,21521,19791,121381,96817,105050,97371,51331,72437,73662,76952,40463,38619,31668,31441,21910,13139,9812,5369,0,676,1159,1844,3618,2966,3661,3906,4372,4219,3166,2095,1272,927,757,581,40450,48594,66591,53662,39843,48229,61130,50537,159010,114309,68808,49792,54227,54086,35988,35502,15974,28161,42379,59176,58914,61209,50499,38544,54797,45903,40031,31116,27413,23363,12865,5426,0,4452,9584,12456,24263,33833,36106,35868,27574,28321,32297,27662,40758,33056,29317,25711,16244,13486,9860,9343,4694,5658,8722,11385,18881,16978,11934,9200,11139,7828,7924,5329,50696,47741,47286,35809,20943,17936,17192,19272,31520,21933,22418,13866,15129,16714,12746,16992,18018,19612,29496,21944,33148,27588,18618,17130,21880,15608,16466,13655,10786,9642,9780,15675,1251,1643,2458,2843,5454,4671,6068,6942,2372,2201,1926,1613,2686,2346,1594,1052,2507,2678,1958,1503,2689,1640,1314,1066,562,577,730,655,498,376,178,85,0,232,401,650,637,1018,1378,2369,4209,4022,4834,5046,3944,3648,4002,5687,4594,4976,4123,4947,3440,4535,4407,3729,4645,3524,3471,2931,1601,1481,1732,1428,983,1146,1454,1833,2873,2898,2652,2942,2038,1605,1734,2273,2457,1994,1744,1640,447,631,791,1183,785,1415,1644,1944,2363,1688,1752,1627,1495,1075,1016,828,481 +0,4257,7816,11326,12360,19380,19030,17826,32036,28630,30720,31664,23514,16964,14738,17086,61095,64060,48788,47223,34944,40954,55881,65800,51697,54041,39781,28661,27245,21378,13860,12728,110800,119432,92885,110376,94604,83586,89274,82038,51034,43752,31094,30810,23119,16747,12231,6094,0,821,1412,1980,3093,3782,3743,3850,4382,3558,3398,2172,1137,864,578,526,26668,40146,64733,66578,61247,59514,76750,63360,144821,89411,52478,39747,29844,32353,22744,19410,13045,23350,34090,35518,55324,48392,39668,35200,48939,42571,42110,27900,26934,19765,11122,5691,0,4430,10174,14450,19839,29802,36146,31046,29422,34626,29698,42286,68592,44547,44310,42443,9171,7778,6541,6470,5082,8056,8395,14531,17261,15998,13506,10127,11198,8025,5434,3712,50755,35576,45656,35574,17260,17630,16382,16326,15146,14310,17337,12502,13736,13053,14199,16080,22434,26776,43185,42406,35657,33294,21064,24876,27292,22979,20328,13902,10960,10628,8246,12392,1106,1826,2214,2670,3390,3742,3828,4336,2472,2156,1800,1884,1917,1653,1213,786,2530,2446,1460,1360,2034,1324,972,963,733,606,758,572,357,249,144,68,0,192,378,762,840,1236,1456,2562,3738,4401,4607,3674,4722,3813,4014,5584,6260,6120,4662,5554,6807,6366,5712,4813,4071,3405,2673,2490,2617,1984,1672,1080,1401,1360,1552,1818,2931,3051,3415,2920,2484,2272,1724,2178,2163,2226,1504,1516,245,507,877,1064,1170,1481,2140,1744,2146,1894,1851,1862,1439,1184,1132,666,532 +0,5765,10527,15853,24815,29213,37027,31634,29727,26777,23125,18650,8970,8725,10161,8214,53771,58158,68074,68653,89298,58592,52559,55610,46006,39105,25982,28293,34105,18472,11575,4664,113095,104342,80080,45940,19237,29156,39738,37298,46296,37348,21307,16332,7894,5825,3848,2011,0,322,723,853,1215,1149,1616,2868,4134,4527,4334,3365,2678,2182,1012,602,15566,45006,62758,70202,81005,99951,106742,83608,83268,80648,63033,48795,44129,27772,21516,11608,15177,12241,11216,10353,7071,13117,22381,26715,42572,38355,25435,24119,31223,22793,11875,7044,0,5096,10214,12178,17460,30097,40229,47844,40736,46933,47792,48286,63964,74938,60957,58056,2824,6036,11991,15032,21799,24612,30195,30214,22126,13120,9824,7370,5373,3762,3170,2174,37596,37447,50796,47065,37571,33004,28384,19914,4890,3894,3307,3450,4933,9545,11260,16981,28948,33634,38732,37688,48343,49031,45515,30210,28659,19221,16748,15515,16690,13341,16058,14833,1409,1571,1563,1495,1906,2610,2714,2781,3014,3072,2772,2532,1725,1115,1023,478,1907,1572,1488,1358,1666,1746,1337,1358,929,916,870,836,585,391,303,176,0,626,1499,2072,2965,3161,3757,4217,3890,4081,3642,2937,1450,3557,5222,5683,7376,7840,6459,5054,5246,4693,3982,4594,3848,3060,3495,3519,3417,2982,1879,930,1475,1368,1066,1624,1831,2167,2640,2489,2978,2462,1605,1836,1905,2108,1671,1393,0,121,238,424,486,912,1384,1668,1701,1853,1701,1434,802,754,717,646,542 +0,4398,8375,14386,17532,26866,33559,27900,22818,21762,17354,11503,8613,10218,9702,7384,41084,51268,60540,75322,91061,83242,49778,55356,35210,33704,26098,26256,21527,15595,11956,5494,112198,90652,76122,53685,26860,31205,36907,51445,31144,29272,18934,14658,9914,7020,4471,2328,0,698,1403,1710,2412,2542,2400,3366,4250,5044,4940,4048,3441,3288,4026,3254,11864,37656,52549,57709,92620,89139,87455,96584,88222,87237,64058,69129,64184,60661,61882,38986,40475,33903,28965,23148,39278,45522,44156,44066,28437,31330,31346,29230,27880,18988,10032,8549,12520,15470,20663,20787,18036,33002,40610,40866,43135,57092,45862,59372,45394,55814,67908,71454,4975,7703,12344,12534,21973,25058,23848,23075,22926,13328,12057,8686,5320,5230,4469,3334,23940,31744,40004,38468,37390,34891,28160,17248,4797,3942,4027,4046,5512,6582,9833,11126,28910,33122,37344,39118,47906,40140,43301,32519,30195,25206,17082,16658,13320,13587,11421,10277,1894,1503,1907,1812,2227,2072,2185,2512,3828,3188,2968,2234,2005,1838,1334,1049,2823,2443,2449,2414,1837,1620,1121,980,753,742,541,609,458,334,306,156,0,590,1383,1716,1918,3020,3033,3338,2754,3349,3781,2634,1903,4449,6348,6038,8132,8005,6552,5726,4846,4591,4162,3483,4208,3719,3035,3766,2576,2390,1684,1210,1354,1162,1332,1566,1718,1934,1974,2626,3244,2306,1596,1555,1968,2017,1934,1676,98,162,248,372,495,731,1342,1410,2120,2136,1433,1135,1074,946,1055,894,515 +0,2676,6526,9648,14124,19208,21620,24526,19714,15109,15698,11545,10988,8160,8095,5342,42794,43254,52262,69501,69344,54538,57802,43974,25079,23830,19038,18871,16726,11709,9622,6142,84130,87298,72910,50323,33728,41761,50820,54722,26180,24910,18814,15945,11300,9444,5481,2748,0,966,1790,3051,3468,3165,3643,3614,5792,4732,5342,5686,4240,5795,6258,5916,12680,35352,53190,60037,91956,84252,68510,105235,72077,65542,86764,88223,88272,78594,81668,60901,59796,46547,40526,42045,66279,69810,83938,75645,22859,31644,31482,34879,23573,19761,12305,10761,20976,27474,27348,22964,25406,23962,29594,36413,64817,71508,57987,69420,37201,38450,57064,54006,8874,9850,9486,11659,21934,22636,17526,16699,19877,19942,15463,14816,6891,6271,5737,3483,21518,27026,30519,24724,28188,31169,23960,14246,4988,4276,5151,4679,6181,8770,8882,6919,19829,20862,31487,41280,34643,41510,35332,31280,21993,24790,19812,12907,10450,11708,9220,9338,1830,2136,2110,2228,2105,1984,1414,1905,3876,3320,2394,1848,2553,1618,1233,1507,4255,3843,3214,2947,2246,1639,1045,1036,598,452,468,456,320,272,237,110,0,504,1074,1409,1675,2431,2832,2824,2590,2470,2986,2702,1737,3771,6481,7028,6408,5834,5426,5109,6159,5007,3739,2971,4188,3472,3758,4544,2500,2096,1844,1388,1664,1273,1154,1106,1433,1352,1704,2280,2459,1560,1398,1107,1509,1257,1553,1673,196,298,305,382,392,537,876,939,2105,1553,1688,1180,1253,1050,1131,757,400 +0,2130,4338,8873,9691,12221,16742,16928,15182,12510,11488,9217,10799,8967,6635,5418,31957,40392,35828,53327,51715,46552,51983,35658,16752,17290,17907,15210,12232,12744,11720,6573,59807,63872,41913,36996,28843,42086,43105,46829,24859,26720,23732,17370,10737,9091,5294,3315,0,980,1841,2808,4147,6018,6113,5862,4768,5729,6302,6420,6402,8791,8534,10160,14193,28900,42099,41802,65645,78102,72202,98186,70896,63402,109222,101718,80036,80364,81140,80119,56042,54308,63036,55036,83948,87538,84980,84636,21642,21574,25628,29320,23464,23545,15267,20804,31344,32240,36380,37046,31460,34172,36994,39647,67600,59290,57361,66862,45430,60128,51007,51489,8816,9742,7082,9844,13270,15960,14893,12806,24994,18804,20733,15074,10888,8333,6504,3646,22074,26834,26933,20891,19440,20090,18472,10565,4695,4780,5003,6039,5776,5824,7884,6366,13670,17582,22161,28186,32480,33504,27189,25020,27623,25522,24688,18768,8916,8970,10392,8590,1497,1698,1648,1769,1440,1509,1335,1464,3673,3202,2336,2246,2414,1708,1478,1514,5138,4608,4418,3500,3055,2246,1305,926,606,414,375,432,292,266,159,98,0,455,750,1098,1786,2263,2708,3116,1553,1868,2211,2504,2086,4632,5523,6500,6645,5268,4988,5352,5240,4516,3569,2440,3285,3276,3216,3556,2807,2650,2586,1894,1696,1276,1200,1395,1562,1700,1858,2306,1787,1357,1066,1183,1573,1496,1786,1582,342,438,412,384,470,622,835,799,2257,1902,1655,1046,1269,1214,1168,740,523 +0,1499,2973,4847,8845,9502,7459,5980,7225,7764,9716,7480,7204,8450,7162,5866,18695,28036,39944,48521,47054,29514,22130,23916,11237,14645,16725,14173,13708,10798,9918,6292,26797,29693,34610,31970,31514,43157,51564,55577,32872,19292,14707,15946,13472,12713,8220,4114,0,1316,2945,3204,4945,7350,9285,9908,5838,4402,4608,5697,7861,10343,10357,10712,16748,21421,34759,49330,55575,56810,52829,68725,65382,75301,82811,78429,106962,88359,89609,83427,71403,64055,78588,100345,97764,93718,92516,85726,15851,15862,15755,20513,29873,37800,40832,39103,34639,36920,39326,47310,40874,36826,45165,45425,56822,70700,61523,53588,51000,49454,56343,61409,12350,12535,11899,12599,10872,9582,6404,6455,26718,18232,17037,14447,11732,7357,6536,4549,17652,16794,16922,19122,17702,13939,6980,5285,3983,3700,3652,4322,6284,5538,4371,3940,7614,9389,9788,15658,20792,15598,16148,17585,25359,22311,17713,13819,6976,7164,8194,9026,1872,1602,1602,1259,1476,1418,1360,1189,3986,4092,3549,2908,2871,3037,3176,2394,5570,5747,4378,4548,3342,2732,1597,1098,582,551,586,550,344,277,185,86,0,466,836,1040,1460,2154,2130,2300,641,953,1166,2000,2408,2714,4008,5469,6225,5173,5968,5053,4424,3375,3504,2214,3144,3427,3585,2866,2812,2456,1528,1618,1196,1071,1036,1397,1612,1594,1464,1642,1139,1059,1089,1397,1238,1576,1438,1297,607,456,483,618,623,805,825,796,2577,2247,2014,1395,1135,1135,996,892,778 +0,1084,2146,3507,6202,7042,5676,5380,4839,5336,6578,6368,5044,6157,5781,4706,10816,16306,31036,32832,31790,24124,16402,16856,7947,9952,10500,12746,11939,11113,9764,7610,27361,26692,29064,34038,31251,37684,35030,41870,29550,23538,15120,10872,11085,7732,6994,3252,0,1298,2516,3650,4857,7019,7046,7622,6124,6460,6149,6728,9981,11588,9765,10768,16032,23036,27782,42486,41025,47960,55710,78802,68070,73311,73566,84660,117667,94893,123500,103283,84575,76496,102641,104924,86592,93522,106912,108474,36912,29826,26667,26908,41434,42729,48959,51438,36362,29442,37552,37200,26511,31154,45939,41370,67318,64822,72151,59919,39199,53584,52041,44108,21370,16746,14664,12744,9076,8494,6600,7036,28151,19200,14479,10951,12163,8596,6522,4216,16525,16998,10978,15332,13439,10774,7022,5636,4508,4682,4982,6338,7136,6648,5783,4771,10930,8213,11251,13774,20062,19548,14764,19775,17273,15368,14326,11549,9526,7208,6151,6183,3948,3274,2667,1626,1779,1757,1846,1762,4154,4772,3441,2980,3133,3558,3431,2702,5478,4762,4134,3777,4631,2998,2159,1442,410,496,492,428,257,202,141,68,0,336,655,868,856,1232,1406,1878,501,795,1323,2228,2859,3778,4461,7126,6088,5860,6918,4418,4269,3622,2791,2098,2678,2456,3426,3034,3171,3206,2539,2218,2086,1664,1593,1806,1648,1448,1535,1894,1436,1308,1234,1008,1176,1106,1001,1202,886,858,967,1040,917,1049,996,1056,2631,2218,1802,1798,1566,1134,1080,850,738 +0,863,1502,2174,5139,4546,4161,3560,2483,3320,4143,4555,2955,2520,2650,2644,7901,12068,13319,16608,19780,19498,14250,13128,6305,5988,7761,9292,10879,8287,8828,8956,19914,26382,24530,27048,22368,26450,31231,25740,29274,19551,15828,9369,6120,4352,4054,1792,0,1400,2479,5142,4487,4946,6456,8293,4727,6849,7800,8122,16261,15042,13276,13712,19471,25843,29800,35071,46633,54713,66545,95509,56154,69883,67664,88519,149236,166047,136012,104214,77599,89201,97859,136121,118032,93768,103408,106448,50108,42350,33216,35827,45227,38161,44120,39148,28662,37336,34374,37296,22278,32144,42566,58439,60317,60184,58948,52106,38313,42120,37466,33381,24536,17601,18811,14123,7771,7924,7873,8292,23074,17165,16035,11376,12661,10174,7074,4714,14340,10252,10455,10610,15566,9982,8855,5714,4436,4980,7724,7632,6382,7313,6296,7524,11320,9474,9079,10985,14408,14036,19037,19531,15509,15183,14784,11457,9710,8055,6688,6726,4829,3196,3136,1744,1636,1676,2010,1659,3134,3134,3480,2767,3076,3777,3926,4733,4450,4251,3302,4024,4691,3610,2010,1114,404,389,254,194,108,104,68,41,0,236,426,446,590,864,1156,1252,390,737,1192,2222,3260,4530,5600,7590,4001,4568,5682,4459,2829,2115,1769,1657,2280,2535,2492,2756,2570,2970,3094,2322,2420,2043,1911,1851,1794,1583,1888,1675,1386,1129,1106,845,756,820,894,1185,883,919,1186,1413,1004,1227,1418,1736,3114,2838,2446,1950,1555,1102,988,675,521 +0,458,741,1050,2990,2882,2410,1848,1142,1630,2188,2446,1714,1650,1526,1350,3332,4664,7214,8071,9976,9650,6642,6836,2870,3730,4650,5370,7831,9167,9633,11212,16754,22152,21447,20297,24307,25625,26614,22112,25162,20196,12966,9540,5609,4776,3606,1978,0,1404,2079,4087,5941,6804,6434,7416,6068,8506,8844,9842,16074,15862,18244,13257,18601,25606,31917,38129,53504,57290,77616,93712,71480,69458,67328,104254,151868,160661,122411,105716,99764,115788,128727,110364,108608,97802,102881,104376,72876,78048,54450,45040,42990,40717,33578,39115,43874,38198,29358,34943,25824,31545,43252,52772,71081,63874,57353,49566,46579,38374,34783,30179,27675,21313,24422,18024,9088,11193,11107,8213,16582,14584,11934,11934,11668,9388,6106,4796,9726,8068,7884,7980,9076,5819,5564,4540,4408,6322,8476,7545,8119,9736,10357,9668,12536,8907,6865,8587,10756,12560,14129,20213,14452,15674,13450,10795,11018,8562,7367,7182,5302,4322,3312,2002,1531,1941,2453,2004,3158,3636,4018,2624,2798,3338,5036,4886,5488,5000,4802,4504,4493,3521,2028,1285,232,228,126,114,64,52,34,23,0,134,234,257,350,444,678,590,210,881,1403,1888,3293,3566,4142,4940,3735,4572,5874,4972,2960,2250,1432,1360,1743,2066,2167,2891,2278,3122,3498,2792,2148,2626,2366,2286,1891,1670,2096,1639,1456,1282,1040,850,1002,986,792,1020,895,1000,969,1421,1604,1480,1533,2159,2328,2538,2384,2114,2070,1748,1607,989,668 +0,757,1407,1784,2163,5502,10396,17121,19926,21214,17539,22191,29510,30643,33818,32444,20699,14903,7348,5517,2180,1586,1094,574,0,2526,5074,9491,15039,18454,22045,24888,23131,25330,37205,32558,30119,27725,20272,24294,24282,15585,12096,8214,3558,2611,1413,787,0,62,114,162,166,412,633,900,1177,1435,1461,1724,1858,3670,6761,9164,8578,9890,8728,7639,8801,9067,7701,5238,5375,3817,3734,3286,3896,2626,2299,1142,0,2150,4094,5809,8154,10489,11077,12569,13036,13082,14307,14507,13080,16163,14598,12870,10088,7501,5464,6784,6720,8783,8378,9888,9508,9843,10550,9399,9519,16215,20629,24735,21099,33733,40848,44352,40667,38951,32555,26698,27128,27054,20416,9757,3453,3976,3668,3151,3281,2642,1954,2462,2200,1558,1355,1558,1882,1505,847,709,660,555,318,167,0,16953,32838,35793,53209,60467,66699,59177,60754,81825,90284,106582,107215,105888,71866,74591,96912,69096,43014,30071,14357,8329,4331,1831,0,0,0,0,0,0,0,0,0,5659,9687,12188,17277,23002,22766,26924,36250,36591,41622,40238,27398,34066,34417,35451,28272,36962,37985,38316,28298,25563,23673,17572,5706,4978,3053,1975,1609,1074,756,354,0,3462,6419,7244,9678,9032,6872,8873,11975,16535,16012,18913,21196,25104,23764,24123,23284,27068,23140,20211,23348,20273,18364,12912,12811,10118,7705,7016,9585,5678,3239,1918,0,0,0,0,0,0,0,0,0,254,426,638,760,877,782,732,899 +0,588,1258,1694,1696,4169,7790,11195,12274,15664,18052,19282,27458,23558,34031,29196,47434,32530,17122,14568,7607,5830,5414,2240,242,2192,4928,8370,14346,15845,17697,17913,27319,34477,39950,39167,26971,30103,29774,22236,23635,18545,13664,9990,4817,3501,1600,974,1662,1746,2069,2280,2870,2286,1325,1091,1053,1459,1736,2016,2476,5142,7977,8205,7296,6534,7084,5940,6762,6515,8508,6258,4333,4406,4164,3535,3318,2215,2246,1035,0,1674,2963,4999,6928,8137,7156,8111,11842,12976,11966,12580,11191,13478,14108,10972,9456,7856,6036,6789,6953,7208,5727,6293,9960,9477,7862,8530,10868,11672,17056,16831,17689,30473,44120,46890,41234,42998,33046,29756,31728,22209,16462,10866,6354,4270,5365,3580,3696,2690,2849,3088,2117,2326,2404,2486,1984,2028,2384,1806,1487,992,566,350,10194,22887,27073,39734,48872,58874,57949,62300,64642,71568,81978,91474,98744,89670,74021,66756,131976,116514,85265,41112,16603,11484,10308,4406,0,0,0,0,0,0,0,0,0,4675,10660,13578,18679,19921,23534,22968,27353,30730,37349,37304,33899,32360,39370,33735,39986,41910,38637,29992,30840,34277,29714,18476,7595,5236,3969,2793,1504,1212,1250,658,0,2607,5218,6882,7716,7656,8505,11158,15352,16574,18433,19235,18000,20024,22467,23496,19389,17478,21968,21155,17906,15081,12584,11796,9553,6990,6258,7764,8657,5649,2611,1472,599,521,426,447,450,360,184,162,1383,1006,890,944,832,902,1030,1185,1295 +0,416,994,1671,1312,3704,5684,8355,10744,13827,15964,17952,21231,23439,25980,16220,60171,40168,34373,23980,12742,8801,8300,3854,521,2287,4792,6007,14958,11903,12744,12870,23798,23261,33900,36547,23912,22480,30554,24380,26607,16712,11910,6706,5373,3784,2310,1566,4039,4083,3688,4784,5198,4436,2658,1589,1234,1800,1880,2886,3825,5175,7106,6374,6106,4667,4002,5208,4523,5153,6609,5145,3287,3670,3529,3068,3128,2003,1720,924,0,943,1928,3182,6107,4798,5778,6632,11427,11408,10928,13191,10318,8368,9646,10597,7176,5939,6756,5847,5838,5517,4804,4196,8322,6861,7120,5259,8846,10570,8988,10764,14910,28850,37056,48371,39137,42008,36826,26011,26518,18248,17698,13376,9410,8724,6484,4452,4082,2898,2913,2646,2129,2648,3966,3922,2441,2958,3576,3371,2029,1840,1086,568,24225,25649,25784,28866,55308,70882,70032,72625,53330,70332,74036,86659,59506,59027,63342,74736,191202,172652,100953,63420,23275,17183,12892,6799,0,0,0,0,0,0,0,0,0,3758,8294,13170,15994,19044,18270,21283,17488,30437,38670,29988,36713,40780,34113,30401,41731,38046,29144,28626,43183,29075,28906,19426,9386,8121,5225,4035,1996,1514,1530,836,0,2804,4800,6785,4018,7458,8896,11063,17006,18475,17096,17167,20581,25388,23914,18282,17934,17742,13686,12413,8817,8371,11810,8643,4987,4476,5056,6708,8664,5994,2792,1524,1122,979,970,894,1037,688,444,338,2742,2402,1295,1796,1283,1149,1008,1274,1392 +0,620,1333,1566,1550,3132,3777,5932,11657,18515,24021,25523,24467,25300,22465,11546,69505,48651,36020,23614,17819,16726,18030,8952,809,2014,3288,5109,9719,9365,15006,15923,27036,25149,38109,33908,24934,23546,23394,20184,22780,18356,9910,7294,4238,3068,2548,2118,6500,6624,5588,7260,7360,5428,5317,2940,1144,1956,2279,3382,3700,4246,5981,6740,3921,4251,5074,4837,4842,5938,5630,5036,3983,3120,2984,3292,2749,1924,1938,950,0,876,1453,2870,3978,3911,3938,3417,8240,8082,7242,8637,7316,8524,7872,8228,8628,7590,8033,6298,5751,4884,4674,5601,6684,7124,6087,5920,6630,6539,6275,8411,20095,27820,28586,36934,40590,33520,38322,34314,34193,32920,24871,18052,15982,10456,9277,4733,3639,3314,3632,2812,2194,3708,4318,4342,3954,4380,4742,4500,2943,2219,1325,672,26754,24986,27001,31576,47353,54294,56814,79188,52692,62560,64482,76024,64593,70367,85939,87967,161049,166382,98218,72502,25380,25074,16676,7676,0,0,0,0,0,0,0,0,0,4409,11254,12520,13448,18606,17736,17314,17021,24712,38087,34633,34669,39833,39070,52310,40144,28860,34872,26322,34148,27222,22354,16706,10419,9036,7465,4989,3274,2319,1760,992,0,1638,2802,5088,3156,6402,9798,10570,21928,14740,13361,17046,15560,19832,19694,16191,16490,16645,12456,9954,6332,6490,8075,6000,3506,4125,5073,5760,6549,4664,2641,2311,1816,1846,1438,1253,1361,1172,777,588,3970,2560,1487,2038,1525,1578,1424,2054,2105 +0,514,1036,1382,1929,3132,5294,5343,15805,18622,21141,20280,21360,18090,10881,7242,67191,58048,54414,40042,30400,26124,14777,7163,850,2213,4122,6279,7249,7800,11534,10068,25183,22535,30239,34417,28393,22032,23691,19172,24288,18787,18834,10076,4986,4956,3333,2873,6857,8888,11338,10970,10202,7373,5546,2742,776,1752,2598,3344,4398,5221,7140,6229,3223,3531,4886,5175,6236,4284,4424,3602,5381,6042,5336,3690,2510,2064,1567,713,0,460,974,1210,1749,1674,1971,1844,4948,7432,7593,7266,6348,7543,9585,9024,9059,7500,6622,6410,4414,5620,7301,7844,4513,3790,4186,4300,4668,5018,6117,5665,28072,33621,39080,28013,30308,25390,23517,20689,37480,31455,19998,16908,18766,13781,8056,4995,3165,2713,3043,3785,3310,3412,3386,4016,6023,5250,5312,4946,4418,2995,2033,1149,34855,31610,39646,37763,32325,43750,56116,83597,51105,62643,70637,61345,62752,89849,100101,93170,187000,180676,134064,93338,33206,20558,12960,5340,0,0,0,0,0,0,0,0,0,4582,8043,14760,17362,13077,10210,14176,14779,22914,34100,41308,34920,36047,50232,66537,47643,42366,55558,49716,34518,30547,16740,14111,13405,9888,5731,4999,4180,3364,2830,1184,0,809,1782,2600,2881,3832,5074,7598,21339,17848,17458,14917,16294,14760,9287,11870,17222,14595,9189,6019,3282,3118,3083,3746,2454,3455,3333,3290,4864,4630,4026,3387,2681,2115,2247,1810,2256,1865,1832,1054,4214,4414,3289,3174,2130,2697,2499,2658,2820 +0,367,738,896,1757,2766,3679,4422,9396,14786,15807,15906,16446,14238,7653,6344,75651,54616,51543,41908,40762,33187,19755,12748,3204,4790,7325,8758,7372,11406,11831,15830,22064,24687,32613,30669,32971,23836,24900,20666,24324,15796,14594,12886,7799,6176,4501,3229,9159,10948,18314,15776,16233,10456,6623,4030,584,1578,2025,3535,3781,6200,6379,7836,4719,3522,3944,5466,7112,5828,4220,4371,6210,4520,4196,3512,2992,2174,1503,780,0,398,650,962,962,1080,1082,1202,4170,5283,4684,5730,3574,5264,6066,6784,6951,6064,5935,5000,3063,4564,5752,5451,3109,3366,3536,3306,2740,3890,3665,3980,27018,32121,35743,27054,44736,36705,33951,29448,32600,23898,21356,20624,21502,16108,10300,6825,3051,3588,2803,3692,3423,4528,7132,9346,8984,7306,8153,5465,4608,3494,2112,1164,28646,40977,39435,48288,36257,55250,59768,81174,58079,59228,55351,65166,53469,82648,90839,71420,394162,242357,180076,112724,49117,40637,24862,13132,0,0,0,0,0,0,0,0,0,3290,6250,9871,11244,11920,15352,16056,17158,24024,35845,29316,49039,52988,65952,74206,52566,45320,49495,42431,37107,26326,16119,16362,15109,10890,9249,6147,6235,4140,2897,1467,0,992,2281,2380,2900,5464,5568,8162,14912,19762,15802,16139,17704,13653,9585,11474,15442,13117,9513,5421,3326,3790,5047,5711,5144,5316,4602,5157,9390,8593,5690,6238,4888,4257,3980,3686,3345,3348,2963,2516,5146,3946,2760,2654,1824,2528,2633,2666,3032 +0,400,674,872,1318,2388,2918,3716,6149,10368,12006,15982,9884,6982,6366,4398,59477,48855,51655,34896,56979,38579,27614,17306,5116,8433,10446,10948,8930,9652,12854,17259,20661,25706,24874,18774,26918,22560,24952,23983,18011,16766,13645,13774,10445,7034,4985,3393,15874,14927,20697,16605,18656,11917,9982,4426,243,1301,2370,4021,4990,6984,7313,7676,5948,4046,3813,6660,5778,5144,3901,4146,5064,3585,3268,3611,2551,2094,1586,926,0,278,546,842,546,638,610,779,2732,3628,3648,4395,2372,4042,4894,5687,5388,4765,4310,3618,2864,3402,3593,4293,2978,3145,2914,2271,1522,2146,2612,2822,32862,39456,33838,22118,45056,34794,36645,27770,26646,23691,16223,22220,20624,20309,14429,10306,3233,3723,3625,3358,3328,6352,8508,10968,15232,11037,8786,7279,6016,4974,2368,1223,29070,40503,45572,41827,47813,74430,90750,105281,63447,70572,63094,55506,41637,47054,66726,55822,472640,404950,241540,162770,77422,57400,46403,25722,0,0,0,0,0,0,0,0,0,3105,7178,10081,10503,13925,15784,16516,26461,24702,31742,28096,57048,79878,77648,81402,42721,52722,45273,35525,30600,22853,16302,16271,15486,11284,10038,6826,7233,6567,3918,1983,0,878,2106,2310,2174,5150,8396,11839,13805,15832,18916,15952,14343,13423,11084,12660,15841,11824,7733,5312,3141,4786,5524,6378,7212,6150,6652,6437,12835,8546,8255,9454,6662,6564,4648,4469,5993,5778,3846,4032,4826,3863,3301,3221,1200,1518,2574,3854,4290 +0,154,356,413,785,1331,1705,1749,3411,4972,5448,6787,4726,3707,2568,2252,70782,57712,47793,44904,64338,39243,27466,17997,5884,7307,11151,13442,15113,15913,13988,18567,20942,23633,27429,23324,24331,20144,19289,16329,14879,14248,13031,9934,12488,7945,6006,5474,18988,24686,31598,22622,16918,15666,11224,5246,106,1038,2180,3092,3757,5540,6279,7978,5300,5002,5623,6396,7079,4874,4009,4110,4369,3992,2951,3104,3040,2001,1831,908,0,128,306,444,290,317,344,415,1543,1635,1637,1584,985,1720,2252,2916,2317,2676,2294,1792,1234,1774,1559,2068,1521,1636,1568,1192,675,1136,1193,1146,31613,31868,28010,24621,40258,33674,31949,27300,30910,32788,20705,27206,23391,23887,20478,14476,2653,3306,4656,3926,5138,7202,9884,16766,19616,15131,11694,8486,6593,4890,3558,1710,34786,49316,43580,51820,55292,81212,66910,94066,72443,66794,43860,39950,40463,40639,39754,32917,413263,361170,224652,170042,146742,86500,54960,23854,0,0,0,0,0,0,0,0,0,2754,6611,7920,12332,13930,18589,21936,28686,29910,34642,40696,47984,69908,71809,65412,31396,41247,37718,37624,26289,23895,16330,12970,10427,9596,8614,6921,6914,5432,3856,1879,0,1083,1882,2171,2253,5298,9737,9506,14984,16936,14380,16302,11596,13660,11670,11403,12338,10126,6404,4910,3596,4278,8145,8296,8988,11870,11304,11018,12136,13026,15925,12772,7265,7366,5038,5616,5544,4244,4944,4664,4204,3596,2898,2404,1360,1846,2543,3123,3883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62127,59684,71612,65214,60962,49630,39684,25867,7218,8868,13779,15786,19820,21973,23231,21388,20442,23625,30556,24799,23932,24890,18632,12403,10177,8295,7856,9863,9322,6141,4616,5083,27172,24488,28582,24913,20889,16098,9208,4963,0,2238,5576,8108,9081,12456,12589,13743,7011,5278,4373,3347,3579,3555,3589,3995,3918,4398,4881,4322,3124,1994,1571,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25176,22101,24452,21500,11445,14230,15240,23452,29354,35464,37803,38784,29011,21446,20334,16209,2345,10934,15990,20606,21015,25702,29281,24849,21008,18324,19752,21834,18253,11712,6052,3033,51974,44276,25965,20290,24691,38380,44188,51485,62460,48893,28538,19496,6552,5345,4430,2002,553573,476572,510933,508509,382949,272691,250182,108901,0,0,0,0,0,0,0,0,0,1396,2964,3476,5306,9866,11373,22082,29404,21300,21766,29371,31482,48761,53589,55824,29360,32700,35640,37296,30379,22968,12525,10211,9346,8256,5448,5133,5705,5044,2831,1275,0,2839,6427,9308,10430,10331,7308,8590,12438,13481,14495,9648,9239,7122,7206,7958,10315,11211,10336,9275,6877,6445,8612,10950,9774,8415,6798,9200,12432,14220,14048,15648,7867,7298,4529,5840,5336,5482,4544,4275,5218,4297,3769,2966,3306,3142,2928,3461,3601 +0,586,1128,1662,3534,3353,3092,3048,5376,9220,12518,17467,14583,16010,19538,17790,57998,63122,75816,57522,46494,47634,54624,48544,15318,19629,21772,21126,34232,28040,28520,28645,17142,21850,25204,23787,18250,18582,13715,14640,11123,9806,11642,10645,11556,9692,7305,5814,28095,22606,23333,23828,18880,18810,14807,9592,971,3511,5224,7014,7564,9697,12068,11118,5010,4306,3729,3148,3197,3446,3182,2977,4150,4520,4018,3404,3451,2180,1235,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,811,941,1121,1072,945,883,727,508,510,500,410,192,629,1077,801,24567,22480,23418,18862,10484,15162,12278,17822,21052,27957,31127,28584,32354,23244,18576,12379,3267,9146,11296,17250,22976,28868,29952,25830,18963,25043,26564,22244,23081,19646,14656,11281,45752,44446,32501,38340,27217,33538,41734,49554,49137,42308,28372,21259,7882,7237,5927,5228,497662,572082,476519,450248,395294,316563,197239,111378,0,0,0,0,0,0,0,0,0,2222,4172,5214,6346,10174,11609,20092,31124,30654,25602,38007,33487,39464,46153,68072,24791,29812,39014,39359,33984,24581,13533,10043,7213,6526,4730,4150,5228,4012,2658,1074,0,2384,4586,7653,10030,8390,7727,7802,8170,10462,9996,7577,8086,6236,6499,7213,8587,8222,9470,7724,6886,8143,7234,7968,8592,8098,7181,9647,11678,12298,13017,13738,7263,7732,7362,7061,6862,6350,5639,5070,5200,5586,5293,4924,4795,3817,4978,4111,3337 +0,844,1964,3176,6657,7933,7674,5697,9400,16442,21377,31066,35929,29402,36381,29915,53628,56922,56232,43898,47912,56463,68420,60148,28266,27128,23471,23776,39960,43126,37163,27609,20393,24543,21274,20098,12587,9977,10600,12662,13935,13132,13004,12269,13775,12860,8782,7396,20679,20613,22930,27271,25406,17746,18214,13914,2258,4144,5918,7964,6795,8588,8530,6454,3029,3123,2198,2312,2630,2015,2381,1727,3197,3467,2676,2502,3148,2266,1438,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1867,1616,1793,1838,2174,1804,1762,1255,1066,1128,864,775,403,1286,1822,1971,21311,17214,20208,16686,13071,12985,14660,15660,12605,13638,21170,20707,26308,24476,20146,12878,3946,7350,12034,13668,27850,27746,30234,28202,23290,28835,28838,25829,30615,26494,20242,17744,37267,43580,35688,44835,38117,43790,44926,54576,44331,37427,35718,25450,12385,10784,9718,7676,634404,597821,545778,506411,315741,271407,189370,80948,0,0,0,0,0,0,0,0,0,2110,5160,8372,7620,9517,14118,24083,38059,34964,39678,49353,38971,47137,59198,65220,23947,29073,35160,32988,33045,21151,15706,9187,7745,4923,4048,3195,4572,3247,1846,990,0,2138,4054,6056,8474,6707,7574,8094,7005,8739,8962,6100,7105,5734,5032,4754,9132,8471,5559,5049,5733,5820,8443,8681,8031,7913,9260,9919,11204,11206,12520,13460,9586,9041,8576,7141,7783,7280,6178,5864,7167,7900,6358,5862,6381,5628,5402,4520,3592 +0,3071,4777,6570,8190,8522,12240,13135,15565,27825,36550,43508,44515,55309,53871,57942,67947,74777,62737,49175,53135,75826,78666,91456,38165,33830,24490,34154,42963,47542,51327,44324,14845,17236,19086,21020,16666,13718,13940,12774,19321,15884,15276,14885,15126,11066,9194,8054,22390,21234,28070,25700,20719,19138,14510,16351,3792,4456,7095,8226,7722,7197,8453,5974,2086,2050,1708,1766,1493,1444,1824,1290,2649,2654,1899,2017,2356,1564,1165,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,2594,3213,3054,2789,2297,2360,1539,1583,1774,1418,1140,738,1698,2626,3212,28248,20614,23012,16544,9332,13056,14326,13738,10155,10684,14984,14268,19336,16779,12435,9792,4563,8732,10703,14466,19756,24102,33740,31393,31592,29136,21336,26725,26262,32474,36685,30039,27061,30223,37558,47100,55544,52916,48444,57345,48615,35290,23075,19006,16799,11910,11266,11280,674056,660707,613183,470296,342889,197719,122938,74626,0,0,0,0,0,0,0,0,0,2818,4737,8152,7529,13010,17154,20316,45936,38276,43994,56718,47873,55685,58868,66278,18323,24934,27613,24118,29514,16604,11936,8024,5440,4970,3314,2606,2960,1998,1566,740,0,1593,2872,3878,5622,5510,4596,8183,4388,7402,8359,6367,5203,4656,4694,3745,8399,8370,4700,4528,4734,6380,8888,7425,7620,8653,11490,10362,14128,14266,14722,18509,13764,12461,10290,10735,8423,8492,6225,4988,9296,7594,5950,7000,6949,7652,8692,6804,4948 +0,2395,4051,8061,11858,14074,13322,17361,22853,30470,40823,48510,59223,49152,53357,57283,116134,98918,63307,52510,45530,57195,57588,80124,43661,43915,34012,34428,46911,63030,60732,63737,13700,10428,9843,11032,15598,13659,16664,16794,24498,22192,19143,18792,14540,10906,8256,6726,19505,16007,16217,21363,22012,23564,19029,22068,5992,8000,8733,10352,9524,8868,7686,6935,1225,1244,1199,795,592,926,1051,1008,1412,1371,1910,1571,1448,1009,474,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,3964,3161,3005,4068,4240,3617,2196,2021,1600,1759,1420,882,2313,3620,4815,27939,21784,21446,17042,7990,8082,7775,10212,8862,12764,13354,13685,11058,10236,8242,6088,4086,7200,12034,18434,19586,29186,36728,43848,49613,37534,29863,28347,26924,39095,41484,33045,14601,21208,35300,40198,62726,48269,57666,54796,46357,31726,27182,22164,16324,14775,11354,11816,821635,779777,744653,541762,269288,202342,113318,51889,0,0,0,0,0,0,0,0,0,2436,5886,8802,9868,11075,10559,15349,43651,53721,51862,54133,50716,47300,64667,62285,17744,14247,13947,17621,18151,14411,12662,7324,2489,1917,1533,1322,1608,995,660,324,0,627,1331,2322,2903,4726,5842,5560,3912,5582,6465,5049,5844,4895,3189,2792,10236,9123,8791,6982,3086,3560,3789,4952,6510,7980,11349,13283,16660,20365,18587,23608,16860,16018,15474,13806,12946,10838,5644,5774,12167,9908,9173,7846,8557,6817,5445,4903,6128 +0,5750,12531,15339,13381,18929,26734,33032,30525,35040,56903,58956,69947,58902,61318,82234,160925,114665,78851,82580,160781,127926,124909,151113,88302,96768,91370,79715,54366,63093,68799,65140,12496,10840,10481,12735,15753,18439,20087,20662,17279,19406,20822,18856,18912,13903,9108,8349,19459,17866,14137,18699,20136,18055,16835,21482,8413,8535,8615,10514,13156,9514,7336,5764,1162,1083,1051,704,497,700,868,786,856,1032,1064,1111,967,755,336,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4846,4356,4974,4998,6706,4976,4006,3236,1600,1652,1848,1310,1186,2216,4000,5042,16982,19240,16700,14090,5690,6151,8801,9298,7703,11149,9777,9130,9827,8737,7454,5724,4340,7130,8564,11321,20953,27274,38650,47424,53771,51424,30627,33420,36697,40034,35586,28444,28283,41516,48399,43876,66174,67413,53236,64902,56856,39318,32129,28359,18969,18076,14037,14252,573968,543586,621958,388410,206306,177648,119191,54682,0,0,0,0,0,0,0,0,0,3416,5880,9728,15490,17628,19435,16223,44549,43034,44544,41391,41710,41157,58526,51260,14027,14445,14166,15022,12796,10561,10781,5750,1843,1650,1261,1183,1362,918,511,238,0,534,1015,1583,2426,3367,3254,3676,3309,3410,5501,4755,5212,3922,2671,2433,6930,7664,5657,4702,3630,4054,3292,4801,4270,5536,9447,13012,12630,16266,13693,17916,14351,18116,17696,17630,12744,9494,7479,7162,11935,8150,10166,8320,7807,7186,5676,5982,6427 +0,9711,19767,32158,19944,28512,39692,47953,50635,56008,79679,87956,91026,84948,81958,87746,156359,125586,98200,107402,242303,176744,174934,166805,152860,148354,140923,108477,82709,79310,71266,76301,8690,8998,10789,13934,13595,15587,19634,20834,15693,16462,17863,16356,18644,13383,13784,14334,24126,24183,18536,18568,16184,13567,14518,20262,9359,7097,7739,10256,13631,8455,5131,3780,795,767,614,505,246,384,414,377,584,645,714,699,514,346,249,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6338,5426,5558,6314,7707,6490,3609,3133,1642,1683,1447,871,1137,2781,3634,4328,12740,12907,11758,9070,6210,7842,8036,7221,7985,6936,7954,5920,6364,5982,4777,4861,5975,6140,8126,10754,21745,32815,33207,47820,40919,35814,43164,45474,40508,48400,43236,46853,38326,42497,66187,64779,92764,92358,62633,58082,62024,50935,31525,28194,17248,16634,19948,16790,454624,403110,301131,280720,160187,115204,95429,45917,0,0,0,0,0,0,0,0,0,3253,6238,10113,22593,26679,23719,23556,39336,32235,26432,28812,32728,34544,33092,45084,12165,12445,10803,9994,10844,9156,5786,2982,1424,1258,1036,737,1066,805,382,201,0,397,662,1226,1213,1632,1968,2196,2306,3023,3466,3716,4071,2502,2064,1956,6023,6344,5162,3970,3278,3851,3571,3337,3436,5382,7580,9342,12555,10486,12064,10225,14569,13364,17632,20342,10570,10895,8588,10283,10041,8905,9741,10806,8336,5966,5958,6566,7279 +0,10210,25977,36716,31934,39364,43570,50702,57752,84260,83398,97256,127998,105314,112959,130258,126812,130660,146034,182578,312369,277087,261908,278780,264301,201631,249438,204024,128763,111917,80969,102178,3488,5324,5748,8948,13680,13848,16908,21745,20975,17635,25017,26242,26032,26850,21880,25094,27685,22306,22550,18686,15771,17589,15934,21644,16784,14938,10211,13178,13997,8032,3828,2775,406,422,352,242,122,178,222,203,330,326,322,352,288,195,135,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7809,7160,6051,6569,7602,5432,4798,4046,2576,2342,1930,1231,1227,2740,4422,5768,8877,8168,7971,5830,4266,5920,7254,5991,6441,5374,5422,5732,4626,4948,4604,4128,4673,5102,6355,9856,15102,24765,30802,46063,33636,32022,39953,44101,45174,51578,45132,45688,40679,55286,68939,79083,73360,76650,43416,62122,54574,45296,27860,26252,22272,25930,26981,27927,399114,268866,221794,227980,118475,104275,58239,33403,0,0,0,0,0,0,0,0,0,3582,6997,11075,25332,24234,30572,29701,38224,29306,26518,29429,29546,32539,28194,31320,7142,6332,4938,4268,5160,3947,2894,1628,790,632,590,484,554,392,171,96,0,156,303,606,635,806,953,1004,1348,1656,1550,1726,2061,1286,1036,787,6762,5924,5634,3418,2384,2471,2530,2074,1647,2830,3898,4556,8427,8075,7855,9122,12288,12582,14364,16050,13597,9632,7588,9670,7817,8493,9518,9164,9091,7622,6786,6953,7766 +0,886,1681,3501,5010,16397,26928,27839,35561,55824,76718,77309,75060,124237,140267,117072,142456,165780,163990,135850,98950,123140,118650,176406,185769,225468,276276,302020,245783,168651,165885,131000,0,3764,7316,11136,16120,17592,26819,31654,31224,30193,25044,37890,38676,38276,45839,43914,32321,24035,17888,14952,9947,7206,7009,9108,12870,9368,7229,8514,8485,5538,3315,1840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11155,11246,13484,11489,9544,10582,15086,17488,20470,22178,19870,15811,11918,10015,5611,5758,6432,7152,5509,3844,2392,2932,3252,3510,3688,2542,1876,1706,1298,1408,1676,2473,5116,17106,23708,28650,34415,38704,35102,40890,40818,42434,53863,57893,43265,45696,52029,48096,46792,39612,37248,28915,32679,32363,23854,17418,6822,14791,26070,31900,42370,47365,44243,44275,381273,395941,365818,427042,414236,486181,479397,373732,287868,205188,116951,120326,87169,51819,37582,18959,0,1890,4635,8877,11178,12284,10347,11290,16059,14321,16432,11878,7902,16617,22531,31032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8160,8488,11255,8694,9624,9918,10726,14798,20475,26040,23980,17989,14693,14805,14636,14507,12756,8740,7024,5403,5064,6629,7825,7615,10806,9507,6543,4792,1738,3102,5558,6638,6516 +0,1192,2838,5075,9070,19128,28071,36545,33664,58272,72290,63378,101477,106749,115600,107455,156801,135568,161598,134875,121122,164946,186521,219494,153623,192120,243178,241238,188729,172024,127894,108167,2647,7768,12121,12916,17574,21712,25026,30436,35823,34164,29330,32910,46180,40226,51808,42548,29340,26201,26779,17332,11959,7935,8309,8622,13029,9042,8066,8036,8036,5974,5172,3275,7435,7548,10020,8666,11344,14848,11892,10892,5864,7291,8566,6330,7060,7032,5728,5003,9435,7424,4581,5552,5232,5310,5607,5462,2296,1951,2498,2632,3118,2649,1914,758,10880,10696,10336,8820,9000,11014,12948,17901,15106,15132,17641,15013,10236,8072,6368,5058,5987,5538,6126,5434,2826,3278,3854,3899,5056,4155,4129,3438,3478,3707,3329,3722,3823,11774,22199,28686,40703,45310,30806,36750,53495,50510,56540,63190,59493,80921,104199,83084,39868,35718,26564,28042,22140,21972,19149,15866,8116,18016,32885,39038,43717,49946,45164,37684,403410,357838,309987,321650,287445,326325,310639,259800,219146,201987,111990,91167,76257,47173,36629,16502,0,2335,4816,6893,8746,7940,8286,10690,17578,15592,13923,12141,12024,17695,28808,30576,6004,9300,9326,9768,17115,12772,8378,7360,8720,7070,6219,4870,4072,3696,3483,3940,4972,3816,2817,2437,3360,3662,3134,3147,4226,3282,3434,3517,2592,2094,1352,756,17667,14550,9866,9666,8181,10559,12686,13623,19218,19682,22665,16360,15118,14508,11229,13126,10397,8944,7899,5328,4537,6086,5579,6320,11680,10260,9824,6705,4658,6299,5320,6495,6790 +0,2272,4514,6283,11595,25916,41420,46489,47883,48980,50218,46060,96982,84090,104377,104463,128555,197035,200353,145831,166020,229473,221812,236164,112260,150122,162530,222861,167488,146366,120012,104624,6047,7933,13166,12437,17184,24942,30546,37441,32243,33646,30996,24154,44734,38030,45140,43296,32875,30427,30663,27601,13064,10382,7279,7002,10958,10167,8435,6019,8354,7150,5990,5815,14393,18613,16795,16189,20337,24832,24880,21020,13164,13587,14864,14812,17380,15460,13354,10256,17052,14598,10812,13365,9125,11135,12587,14046,4037,4075,5336,5407,7646,6587,3363,1730,9191,9014,6850,6078,8335,11932,11764,14312,13666,12453,10042,12895,8178,5756,5686,4878,5876,7076,6161,5779,3418,3902,4512,3502,6016,5535,5946,5888,5747,5061,5226,7481,2706,8242,16560,35566,33732,42850,39658,50807,79271,77502,71934,107317,97282,95406,131338,166114,27858,22084,24346,21147,17521,13146,12324,9824,10655,17596,32001,32435,54219,51834,33082,29149,321652,302688,293731,292438,181011,160822,201734,176744,204673,143700,82412,55337,61758,48284,34387,16675,0,2179,4768,7007,7972,8104,7734,8752,17640,17306,12440,13514,15543,18463,25990,29985,13094,16418,20346,21934,30429,25734,17976,14831,15050,12629,12652,9137,8003,6724,8432,8727,8606,7793,6312,5703,6610,7348,7276,6644,9306,8966,6794,7252,5099,4758,3356,1962,24008,17027,11259,11037,8885,13471,14124,14848,23426,15786,15678,14692,13002,9652,9935,7787,7591,6042,6228,3997,2984,3151,4283,6153,11438,12634,13062,12169,9079,6359,6268,9362,10207 +0,3568,5578,7333,9746,28716,52488,58903,44438,48418,59126,63812,83313,83676,92978,105328,143082,179233,207624,221304,194544,199258,190653,208169,89177,116268,129118,155750,119020,122995,87265,60981,9607,10364,9886,11329,16219,22098,24699,38494,35730,30646,26144,31758,36716,39049,43167,40162,35143,31152,28051,29274,18443,13422,12857,9192,10270,10865,9786,7324,9102,8000,5909,6772,29413,33114,32222,26934,27238,29042,30009,38539,22198,18743,26231,21792,22223,24768,18206,15525,23392,21632,17407,19264,12915,15556,21344,22128,7913,7925,7517,7360,9637,8106,5052,2528,9849,6876,7950,5462,6489,8759,10056,11396,14101,11068,9516,10540,7093,4826,3972,3594,8152,8718,8840,6902,5211,6382,4917,3999,6087,6051,6838,8236,7236,6192,5890,8241,2736,11304,18980,32948,32304,41582,31395,40146,68922,71614,84571,109161,100368,127241,154508,184895,15020,17238,18243,18928,16107,14406,11965,9984,17117,24820,27728,34440,52560,37131,22774,28804,268601,256158,188448,196708,169954,143582,194947,147418,129343,101190,61202,48038,49320,33515,27836,11734,0,2071,2774,4986,4770,5768,6910,9452,13139,16954,17979,19098,18732,22476,29000,21456,20900,25906,31477,34216,41257,37888,24694,21620,20672,16062,17870,14743,9054,10508,10827,14100,11639,11742,11141,9301,9128,9537,11992,11950,12999,13735,10587,10817,10166,8302,5944,2828,23892,24154,18230,14471,10222,10741,13195,13231,20388,18602,13584,11826,13499,10122,10087,8154,10416,8058,5653,3896,2501,4196,4741,6474,11910,13928,11409,14906,13130,11209,8315,7535,7774 +0,3844,7956,11802,12440,20669,25372,52636,45954,46799,57898,77072,73926,95321,89841,89309,187599,236720,249545,288535,262544,250253,312488,260590,75592,78318,92063,85711,107146,74184,43779,37470,12855,11197,7996,9358,12714,18192,30102,30630,32474,33262,31409,33901,44223,36211,26546,33522,31676,30980,22187,17184,18447,17554,13629,10623,10439,11251,11513,9887,7876,6678,5260,6281,35405,31062,19672,20056,30022,43088,51184,45289,31179,30212,39764,42375,31749,21495,17299,13632,32529,28557,38040,31457,22562,25908,33542,35423,11616,14901,15112,14686,12272,10025,5600,2366,10342,10345,7370,5425,4372,7832,9569,13336,11123,10488,8283,9169,8235,6217,3616,2676,12374,11510,13216,12337,7755,8319,7654,6471,6412,8964,10089,9370,8332,8274,10304,11260,3855,10101,14894,24067,30573,33276,31684,44732,90624,117755,129078,109340,131503,171959,174090,147345,6279,12750,15757,17192,19246,13961,10862,7636,18576,27550,35740,39806,38825,32752,20118,17245,134195,190788,188099,191463,153268,128390,158072,124153,50469,33566,23714,24244,22932,15975,9656,5582,0,628,1419,2508,3622,5771,9716,10620,13209,13043,12729,17682,20801,24860,24744,27035,35721,35038,40694,37789,44498,49338,46421,46190,21794,21284,20151,16344,11603,12286,9491,13217,13312,11651,8126,10032,11980,11886,10870,12914,18166,13064,10777,14346,14844,8380,4495,2038,26492,20294,20874,14547,10774,10273,12719,12332,16478,12853,11171,10434,11206,8557,4886,5172,11606,10280,8018,4464,2328,5161,6474,8646,17385,16530,15330,14188,16524,13645,11183,8910,8674 +0,3325,5859,8876,9768,19127,24158,40520,40282,56020,80100,85352,75473,82884,76380,90764,215204,213625,246576,254319,302756,296662,314417,214042,56579,68898,96790,109385,88773,73458,59940,45525,18388,13818,12649,10519,11615,20510,25859,27960,37318,38810,31878,32358,32477,29056,34170,48704,35876,32068,27988,25778,17660,14729,10657,8369,7510,8058,8515,7566,6734,5926,6807,6878,35913,36651,41476,31835,42800,52630,59388,51273,35945,37233,46394,44652,52727,39449,26558,24204,46514,41333,54190,39166,21979,27320,38718,37679,20342,19844,21258,19750,13247,10516,5938,3130,9269,8048,7274,5401,5459,7200,8508,13216,11689,10266,7458,8683,7780,6423,3934,2929,14661,12418,13533,10724,6730,6096,6135,5818,5035,8019,10835,10228,6730,8544,8826,10123,4946,11190,13876,27702,40438,54642,56315,76946,92296,108749,107742,104648,133070,144210,201402,165454,4983,11127,15460,15330,13805,13770,10333,9118,12928,21231,29989,34957,38434,32162,20791,20812,121620,142006,108647,107527,149214,122974,116689,109295,31901,24450,18863,18402,20750,12140,8568,4522,0,522,1134,2182,2070,5318,7126,10477,13300,11492,14387,15599,18248,19264,17992,22822,27401,30326,37692,37894,39762,47970,50003,40600,35265,32120,29460,22902,24514,22496,23830,21653,11800,13734,10638,12484,14505,15478,16133,19485,29858,24838,19336,16160,16690,11276,5516,2454,21746,23862,21542,18588,13349,12223,10380,8230,11360,9994,8186,7624,8185,6306,3946,3509,15649,11122,7140,5922,2427,6520,10135,11845,17458,18216,15574,11430,15220,12335,13947,11998,9336 +0,2541,5513,7172,10905,19962,25574,34366,45916,56653,76096,79203,61662,55472,68214,86176,190638,200667,176794,202588,328219,278948,215500,148158,46290,88457,112182,105572,80825,85421,69766,53749,26306,16537,14456,14597,7988,15321,26300,33408,44282,37269,34147,28606,23195,45359,53474,70818,44278,47507,44410,29789,23498,19476,9722,6042,5207,6904,6514,6895,7338,7624,6552,5890,48423,56959,53509,60658,58801,58202,68955,78624,46910,54534,47535,52568,58282,56459,45486,35103,55561,44728,52574,39641,31260,38696,42861,34228,26921,31250,27069,20592,18757,13698,6784,3332,7931,5634,5755,5813,6855,8251,9376,10798,11350,10229,8852,8813,9391,7613,5281,4952,12104,12154,10702,10007,4000,5613,5888,5614,5006,7932,9044,8264,5014,7728,9942,10239,5928,12052,19129,34736,53421,61018,70554,87388,73190,110505,119252,114389,149298,182003,187693,172439,2814,7172,11103,11246,8452,8281,10736,10828,12041,21934,27709,32412,28252,27961,20555,21620,79639,74115,73614,51964,102066,101287,98096,87858,28240,22667,14748,13611,13802,9367,7560,3622,0,505,898,1794,1444,3355,6774,8202,10052,9704,12109,15588,10229,13877,14259,14729,30328,28517,30080,35960,32688,33970,46871,55369,37235,32207,33432,38843,48652,50694,43674,34958,12954,15863,14944,15251,15552,15896,17822,29665,31690,26772,23604,19372,16672,9995,5579,2314,22504,25900,22212,23489,17035,14931,9447,5388,6525,6795,6973,7836,3392,2348,2254,2233,16126,14090,9039,5852,2785,7492,11118,16470,16810,13834,13407,11666,17661,16049,16946,14412,10440 +0,2864,4386,6727,11952,19880,21175,30734,48870,50860,72298,58548,50072,46784,48923,48196,219597,242497,222984,224010,251536,248516,185413,110152,52258,86216,127305,96114,82366,79468,63779,66293,26106,19718,13661,13277,8861,18760,26357,26557,42722,37110,35184,27640,22613,52112,55145,65328,50860,50668,44672,30898,21621,18382,7656,6657,6282,5786,7435,7560,6886,7652,10458,7647,66149,56790,64474,66944,71736,67400,61252,84356,47432,54778,54830,56002,81264,67865,71941,51337,58227,50222,47772,44104,41122,40284,46991,39082,31096,30424,37454,26403,20283,17668,10136,4589,4877,4526,5254,5940,6390,6572,7613,10572,10057,10918,8559,10667,8663,7913,5706,6131,12909,12412,10340,9791,3888,4542,4179,5875,6486,7799,11399,8891,5924,7328,9607,9098,4334,15822,21055,29955,46282,50488,75229,93827,104537,123112,129616,122179,120229,125415,167669,160488,1258,4163,7587,8579,6849,9406,13615,13028,13578,18160,25091,31331,29706,29820,23200,26748,32992,31381,29690,31886,49068,46836,46450,41633,13760,10444,8641,8158,7847,5261,3390,1736,0,374,714,1179,1108,1882,3172,4635,6571,7096,8813,11512,7498,11731,11642,14240,36708,32882,32877,41622,40821,43514,44992,52444,32877,38170,48338,60717,62603,60657,39923,38792,16687,14572,16596,19802,27414,25576,21047,34199,29644,23708,28603,22340,22857,15786,8439,3322,26132,27305,19498,25862,20592,16010,12006,7354,2652,2769,3659,3444,1519,1228,1202,1014,16915,13950,9148,6638,3141,6708,9936,14110,19043,15280,11105,14302,15601,18313,20796,16127,9466 +0,6084,11557,24773,31396,36914,48567,55355,44580,42875,52273,34340,30697,34338,33484,26707,217715,209056,175110,120672,61814,69130,58005,56510,61929,71112,70795,95125,91953,91981,118729,112671,31351,35070,33065,28331,28324,27154,23097,21773,31092,35645,53726,51548,74920,59613,61349,62307,66083,66637,49439,30299,16214,15181,11074,7573,5878,6696,9167,8752,11387,13090,14629,12536,68110,72516,71275,76382,59866,63406,61217,72351,64930,64501,59722,47705,27976,32406,26500,39031,57568,43474,38418,24976,23105,26460,34001,38486,36120,38212,39736,33786,23748,16753,15700,8316,3301,4339,3952,3356,3278,4336,4843,7672,10818,9493,8764,13428,15970,13870,15769,12022,11927,13070,14474,13090,10592,8619,7470,6335,8248,6637,6504,9830,10440,10542,12000,11838,4736,20915,31182,42423,54830,63356,85534,99192,106283,96928,88287,98567,105320,90856,88150,140140,0,1340,2545,5194,6196,11218,13127,18903,20602,34614,38004,35839,38058,44084,49782,45674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,289,426,725,1094,1905,2098,2210,5683,11581,13828,14465,11528,10434,14586,44008,48507,45501,51965,53310,61966,66250,54054,41496,51269,54446,62580,78550,55567,48448,44378,15177,15053,13375,10754,10108,22926,32758,30901,37940,44000,44574,42686,28560,21844,14084,6750,27276,19667,17862,11897,3070,2282,993,589,0,0,0,0,0,0,0,0,16487,17749,13711,14644,17563,16410,22611,19699,15981,19221,20447,19850,16874,12978,14366,14444,11139 +0,5778,11135,19137,28741,33262,47064,47310,33128,37346,38969,32064,30994,30038,35004,26073,204634,186582,131782,93779,57438,63641,75538,82236,54638,80494,98935,109878,78396,98427,79854,89448,25321,27056,31616,30486,30404,26138,29073,33908,54777,72560,97965,115014,128204,93198,80175,99464,62427,53907,42848,25695,14998,12291,7564,6430,6281,6846,8752,8844,8703,11843,19944,16334,54831,67612,83024,73634,79402,75314,72172,80544,53000,44188,42862,44088,36543,43051,38270,57073,75830,64946,53114,41442,39611,44608,39395,38950,42247,33586,34820,26370,24213,20395,12269,7218,2431,3270,4140,3094,4082,4998,4446,8096,10790,10599,10137,11014,13383,14532,18525,12432,8395,11409,13729,13658,7537,7505,7992,6999,9523,7398,8384,9799,8932,9846,9625,8076,5376,16707,35949,47781,53296,68298,53376,83138,79985,88602,81772,75922,88218,90134,97350,112262,11311,9342,12236,14470,13061,12354,18928,20584,18400,25524,40204,46908,56791,50746,53692,47090,17748,15007,7472,6772,5394,5120,3635,3662,5716,5920,5197,3824,2455,1824,1016,555,0,178,349,383,520,1016,1522,1622,2007,5188,10247,11770,12106,10824,8381,12233,35158,39054,47154,71284,54122,56356,46512,44906,48046,59854,63864,80182,69258,66214,57389,56496,27556,27360,19684,16822,15972,19320,27766,28168,32198,33968,41868,44118,52567,38695,20995,12228,26916,26846,27180,20327,9952,10142,8202,5628,354,440,556,504,604,480,286,136,14279,14660,12162,10834,11880,13632,13671,13848,16622,15318,21943,17303,12776,10259,10717,10876,11765 +0,5199,10791,14967,26533,25272,34813,37350,36330,36020,34409,22278,23782,23797,26036,32678,155930,122516,128514,80757,59056,80580,87798,94420,68251,77650,95312,83938,77348,68273,75281,102404,17698,20711,20815,23012,26180,30174,27154,33220,74626,86235,127602,125330,154001,123222,97778,98006,56785,46735,27682,20309,12730,9040,7430,6820,6091,6594,6312,8726,7706,11661,19396,17581,50148,73387,77824,67191,117869,102703,90798,103555,38544,35924,44781,45592,55251,57196,52379,83917,91617,81020,56947,65440,58953,53148,57437,45644,39722,41444,29708,20281,27421,16732,10758,5675,2448,2324,3229,3103,5108,5501,4061,8856,13168,12243,10604,11678,12328,16198,15638,16087,8945,8323,10533,12294,7720,6296,6580,7254,7704,8998,9130,10283,10226,7636,8389,5728,4607,16492,29476,45824,34790,41767,46243,48667,69679,60273,78892,83327,115217,116119,107416,102028,25849,26180,18050,23944,21976,18213,20272,22889,10674,26395,34117,54777,78994,59614,57312,53231,31146,23662,18660,12737,13395,12268,9009,6708,9725,8841,10353,6582,5002,3549,1936,896,0,159,349,490,499,990,1216,1224,1563,3766,5592,6866,10630,9119,7008,8666,40815,52953,50018,73875,48406,36405,41845,36484,61019,58178,74400,82189,68973,61512,59450,59754,32993,27557,29880,23396,19598,19418,20857,17486,40439,49925,48552,56110,61011,40876,31304,23436,34448,35117,36143,30834,18149,16202,12910,9400,643,738,1197,978,1094,729,524,252,10286,8708,9110,8895,11414,11379,7858,11708,11860,13469,16522,12826,7947,9511,9982,10553,13169 +0,4431,8660,13434,15497,19264,25175,32506,37011,46309,44121,33100,25040,22618,18306,21620,108027,84857,81050,60822,48740,74600,91617,105578,66170,69656,71257,88078,77308,88125,103684,86168,10918,18846,26700,30968,29945,33776,37006,48628,83109,105150,115182,145312,177323,149102,104965,99214,33106,35004,17742,13596,13232,11114,5997,4951,4086,5423,5367,7014,6620,13480,19518,18092,40320,65097,76477,88060,101355,81986,74905,95735,35941,38922,50378,62108,58978,59525,48468,70394,84211,76440,71012,80950,74454,68832,55920,43632,41678,40170,31842,25501,19512,14228,11577,5676,1226,1800,2252,3360,5678,5809,4811,7829,13216,14262,14941,16630,17759,20014,15905,12120,8544,10213,12149,11347,6620,6005,5408,6580,7984,7880,7265,9415,9330,7897,6028,5030,5140,12638,22514,34944,32154,42065,55657,54405,80824,76044,91372,85942,95158,99512,96841,75012,33089,35086,26754,25862,24625,19782,26158,21519,9036,23296,43184,44989,84578,65153,56658,69959,40329,32414,19907,18536,16155,12956,11705,9320,17050,18890,16885,11376,7843,4980,3236,1720,0,146,307,500,498,930,878,1052,2036,3282,5697,6536,8952,8568,8110,8008,27162,46872,67576,86736,69915,62464,51423,68075,80205,82112,90645,69917,70260,65986,72517,82607,63316,54758,46895,41434,31861,31146,36744,26806,51792,59694,64939,63997,58112,41794,31495,29171,62270,53566,34109,35436,24596,21574,17366,12360,1085,1594,2254,1899,2320,1362,1013,502,7217,6830,7655,7926,7001,6866,5788,6259,10950,12023,12065,11145,6954,10083,8997,10208,12402 +0,3103,5892,7534,11634,18332,27409,32467,51192,51564,38894,36189,28254,32754,28027,22221,57438,38827,37294,53229,55514,76276,80746,96217,73535,66402,71628,87926,109596,96220,110301,91970,6963,16216,28151,30953,35342,40462,43658,49092,113861,120746,161820,168648,183950,144988,128876,101566,21140,16658,15086,12208,10353,8923,9369,6850,3352,3621,3196,3386,4814,10922,14360,17612,41477,63458,99538,126027,114704,108903,138068,105035,24963,40608,51534,75919,75388,87444,110597,129423,92274,89595,83888,69626,72472,61481,42639,37671,37792,35031,33746,31658,21154,13425,10354,5396,452,1597,2380,3270,4576,3664,4149,5920,12562,12181,16440,20782,19939,14252,11216,11557,11618,9176,10392,8117,8136,7200,7429,5571,6893,5582,6502,5634,6739,5650,4211,3775,4789,9592,11454,17677,31224,35397,55765,53868,74220,89746,112099,100968,101878,81627,76751,63300,56402,53506,57044,42640,37332,25228,23823,18825,7752,21778,39542,51575,75796,74728,59400,83182,57352,58749,41620,31046,20697,20122,14858,14405,30456,22441,17913,15728,10006,6218,3288,1401,0,148,363,581,605,722,1052,1136,1953,3131,3620,6342,9486,8125,7983,7771,15962,37758,72253,80080,105262,131783,130246,100632,115979,85366,71638,62064,56532,62296,83031,113150,86746,58943,42907,45321,36764,38793,31029,27563,62237,51396,39064,56191,59543,52140,36042,29092,74171,61170,48253,33430,29432,23187,22570,14367,1995,1630,1962,2507,2871,2860,2004,1058,4121,3530,3342,4300,4338,5046,4302,3939,6446,6226,8184,6799,8228,10037,9345,7572,8936 +0,3574,7128,12496,14652,22962,22648,32775,48053,44805,30629,29580,24248,31166,28297,28770,52268,45609,51345,61584,50105,68255,67916,75073,67354,69720,86643,80714,76854,87375,102640,68028,13759,21106,28422,37132,35233,37231,43265,48898,90899,96008,148822,144176,139049,155221,148237,107161,26114,29107,26999,24078,26060,19210,11622,5993,2462,2709,2966,3709,6259,9437,12302,22804,35885,64899,85407,105060,80684,110545,158778,144224,60931,73796,62479,85271,97797,108795,121514,124137,91840,107322,114988,94452,106058,70526,51444,51177,38996,34016,37386,33786,34886,23971,16640,6980,342,1308,2275,2778,4118,4024,4703,6874,12134,11396,14127,17141,22384,17061,11721,14190,10101,8162,8262,8348,8311,6442,6851,5902,4771,4397,5858,4720,4406,5341,4790,4356,3231,8577,9581,22855,28028,31730,49579,45792,49271,61668,107858,95166,110489,91692,87096,66616,60594,67724,70322,55764,70548,55319,34648,26854,11062,29708,55902,68243,89484,91570,84788,84641,66590,57671,50774,37000,40064,38676,25948,20128,35644,26299,20670,16504,11657,8132,4480,2364,0,122,251,351,412,556,876,902,1313,2872,3284,5355,5833,5098,6750,5032,33630,64999,94450,85722,102358,123716,149938,126034,121493,97224,86598,123228,106968,107666,127838,109803,83062,63868,48900,45540,40824,38438,37251,43418,66987,59626,51457,69130,65317,64834,69820,57528,72152,70739,65499,40182,27977,24973,26406,14700,5405,4447,5396,4533,3621,3560,2401,1186,3308,3007,2362,2514,3620,3342,2808,2612,4003,5146,5707,4668,7085,7375,8530,5902,7194 +0,4501,8671,15503,13552,18236,29108,32538,40606,39970,30399,28334,21706,27060,41744,42882,63362,49250,54578,67148,51728,57171,83330,77134,59905,68402,88601,74888,76950,69758,75520,67605,22786,23556,25648,39418,36687,46982,50073,43354,85527,75723,97481,119014,131477,158595,140012,116756,36620,33163,42252,48662,33606,19380,14188,7194,1164,1901,3144,3850,6408,8657,14064,25399,46831,46618,69374,81150,79242,102764,143835,123962,89084,105569,103228,95724,160883,127850,136983,102910,123667,141665,127851,83892,108203,77656,81436,73101,28908,38276,35828,38028,40660,26938,18776,10100,272,1264,2002,3013,3689,4637,5233,9484,8353,8996,11748,16422,18342,14693,15611,18626,8275,7486,9308,6670,6386,4773,4343,3710,3856,3509,3475,4344,2786,3867,5266,4986,2898,7096,12308,23808,21579,24430,35946,36269,31949,59962,73655,92899,111675,88387,70714,98200,92561,92892,75302,56614,82784,52918,46336,28335,11368,39030,54378,70110,101354,95234,102926,86445,73088,49482,44466,32448,55048,36674,31216,27208,34738,27034,22962,19239,11043,10075,6526,2768,0,62,144,290,229,300,467,636,1076,1935,2956,2964,2972,3013,3320,3837,47648,85079,94884,76669,83052,98875,152070,106375,112329,95005,112178,142476,162894,129816,131806,130740,91010,84034,64274,56137,59041,63180,46409,48380,72916,78134,65169,90278,77715,90332,104041,77528,65953,72347,74616,42044,36999,27422,21700,17495,7432,8934,7672,5329,4378,2830,2443,1100,1916,1378,1334,1952,2399,2125,1514,1432,2576,3240,4214,4841,3734,4456,5296,5226,7261 +0,3954,8279,15175,15180,15726,18520,27608,36015,25956,27372,22874,17983,29809,56660,51487,75372,57832,63374,70560,54622,69722,89377,78125,68197,93458,103016,82008,72125,71686,83761,64240,23244,30198,37558,48984,58160,67828,63312,77976,118113,107950,106385,136141,140107,148098,156397,97500,55264,48504,39968,50019,43026,29992,14774,7900,564,1644,2417,4736,9386,14889,21970,24384,59017,67912,59022,77835,94686,117176,152966,151968,137958,137664,112468,118650,186125,137750,162280,132428,98382,125541,112247,103985,96904,80865,73882,56782,36064,48058,58513,45340,44074,28194,17537,10266,157,970,1372,2482,3478,4986,5048,9641,9024,9686,12980,15546,15739,15313,13272,16366,10761,8471,7764,6292,4081,3147,2743,2278,1994,1826,2549,3231,2488,3393,5688,5386,1450,6030,9716,16054,19459,19806,23856,25494,21729,41812,49646,64509,77599,76889,87515,112638,97640,93850,64269,61412,82548,64860,41948,28017,15917,40435,79918,96072,106148,112218,115435,92547,108698,79459,60204,56696,51317,42606,32318,36415,35834,33652,24208,20927,20655,17092,9146,4716,0,37,76,140,119,165,217,281,602,962,1224,1473,1629,1920,1512,1711,63430,70326,97522,112090,123818,152719,224271,167337,166540,134524,152234,179976,190192,182758,116466,123197,126142,85862,100653,85676,70798,86866,73829,61844,65450,64675,64353,85672,88851,97746,125855,112400,104575,96090,96557,57572,32215,27182,23275,17175,9556,8106,9500,7454,5898,4158,1979,1066,796,720,732,1074,1234,912,638,662,1430,1852,2192,3024,2418,3410,3779,3946,4806 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5437,10578,13274,15639,11976,11318,14528,19547,25192,26003,27621,22948,24224,36069,37920,35157,43679,65131,74353,59058,54981,48874,33312,33981,32256,21549,15450,8461,16222,27302,26738,36373,30416,33422,23244,22595,14192,11389,5465,0,2434,5264,10110,12571,13036,16049,28339,64821,64949,78211,98533,115621,90906,82198,73152,70352,57336,53513,38995,40365,35427,23307,15453,5880,5754,6740,6557,5209,5980,5221,4811,5186,4806,4973,4846,3377,1914,1397,606,0,340,566,888,1273,1553,2265,2512,2769,3093,3024,3545,5783,6442,5394,6851,8198,10570,9778,13793,15231,11100,10488,7836,8729,6487,5469,3821,1533,2538,4703,4991,698,885,813,732,544,522,586,459,345,278,285,188,72,63,46,20,0,3538,7601,8048,11378,11738,17808,18726,15975,24487,36478,52564,91898,116438,104322,130764,122502,78449,63980,60605,62758,43293,19491,11387,0,50799,86558,142826,163339,211528,228124,202968,186312,210818,199609,251726,331732,280922,274645,243864,217252,196348,148523,136502,119303,98594,81203,33928,71552,65076,56672,70125,69075,61859,50978,55700,74338,54904,46848,48780,38951,55930,73744,95733,155189,167426,141067,194380,191109,214209,168024,117499,60943,67270,66153,50677,54280,54830,59034,85099,110414,102235,135318,131912,97412,79428,100167,66103,56384,58736,62115,44459,37034,31796,23010,11144,0,0,0,0,0,0,0,0,0,196,456,723,1266,2405,2826,3615,3282 +0,37,81,114,224,188,212,264,408,406,329,209,117,144,262,302,1338,6039,8050,11070,12320,13510,10550,10966,24912,23708,21707,20134,21580,22284,34582,32940,36198,48264,72710,70293,56920,52590,53373,39292,34264,33096,35582,23942,11933,23146,31681,38129,38106,27173,34433,24133,23570,18622,13858,9482,3772,7182,8874,13487,16732,22073,25883,29090,76250,74297,83059,107409,79295,76852,68578,72285,69775,58278,50495,42062,48756,38802,22952,19838,5636,5278,4524,4270,4627,5044,4390,4667,5472,5151,5240,3960,2990,2273,1290,629,0,314,600,672,828,1290,1875,1836,2230,3404,3296,4070,5731,5506,5757,5954,8654,8758,10353,11468,13268,10903,7818,8346,6726,6612,4482,3426,1714,3202,5547,4802,792,882,858,746,368,394,523,400,468,399,322,281,139,96,73,38,0,5636,12107,12877,21591,23034,30567,32922,15842,24600,42312,66754,85407,101966,100701,129914,109752,69611,54728,48757,41402,33988,22206,10314,6608,38364,75218,99666,131636,169222,187251,172659,247259,245562,209674,223278,309587,307998,279193,280387,164256,156954,129258,154056,153452,97094,69240,37111,65298,62914,59595,58456,52762,59727,67457,64874,68074,54016,61410,49160,31266,63192,87427,134912,195750,180156,167949,240512,229278,219580,132896,81053,86818,90594,93622,69391,55129,50155,52398,69834,74636,99128,105228,115888,116847,102350,83505,57744,55285,47880,40614,31248,36067,24604,18916,10252,0,28,57,94,66,110,146,142,161,314,632,924,1371,2330,2832,3357,2996 +0,89,162,246,390,444,444,604,1004,790,672,486,278,418,461,694,2481,5433,8246,8725,12931,11589,13567,11668,24477,18932,18604,17544,15151,20598,21966,28421,54124,54701,67848,47756,61822,44614,41628,31290,31093,40004,38130,34478,17751,28938,39530,39161,32483,30259,24790,16913,31035,24467,19394,18829,7740,11198,15320,19773,23186,24606,32684,34107,73602,74806,76082,89630,73270,75748,61396,66329,66181,60200,46240,31474,47914,44756,32396,20632,3960,3288,2896,2311,2769,4695,5099,4936,6768,4891,4861,3240,2713,2154,1486,886,0,252,514,734,646,1094,1244,1238,2110,3529,4402,5640,5288,4290,4957,5056,6745,7223,8544,11714,8326,8111,8562,8139,7965,5890,5550,3287,2147,3654,5229,6230,978,801,724,730,373,413,345,360,492,531,460,341,160,109,82,39,0,6381,13452,18814,29633,32435,42374,50366,12081,26015,47826,90799,103133,109775,99269,89064,77759,66697,49634,36456,32519,23717,19594,10358,12501,30915,51488,63110,89035,117720,116708,100110,235066,205659,169867,132583,275917,222718,265813,261618,126373,116092,120532,148298,144397,102591,58816,32880,56608,49772,62117,83248,58188,69231,63710,52020,82467,61360,56218,41284,28344,91833,140214,170251,213470,246076,267046,317846,217081,206961,163737,108889,143447,139917,105542,97390,50187,45951,39682,43931,67523,73104,76436,99470,108600,94567,58442,43338,41267,34849,29880,20328,23928,14927,10664,4898,0,59,98,187,157,192,279,259,273,515,634,841,1103,1636,2538,2560,3643 +0,129,333,402,528,626,686,776,1310,1145,1100,787,388,534,640,899,3336,5126,7755,6878,9878,9723,10523,10269,19666,20966,18082,16332,18992,22328,23602,22091,60520,79124,78677,62319,68176,45514,40917,34831,42053,46946,42513,40107,28855,27862,39573,32865,29352,29974,23090,20362,23080,21472,21768,22746,10269,18575,20616,21388,32278,31428,27796,26506,79156,63171,77286,83550,114053,82918,86516,72148,48768,44715,42519,37406,34991,36138,32319,30478,2675,2108,1675,2159,2856,3740,3989,4418,6388,4646,4112,2558,1853,1472,926,450,0,164,354,430,406,723,1028,1279,1719,3210,4301,4719,4327,4328,4928,5628,4428,5451,6002,9418,8818,7957,8048,7518,8210,8396,6417,4176,2231,3318,4499,6048,1176,921,773,711,418,358,325,307,662,610,519,426,270,192,113,60,0,9796,21602,27922,33655,45566,49742,58556,13890,32830,62196,80817,85928,93214,80817,64896,51565,47787,38075,30187,27010,23228,14416,8731,15686,31380,46345,52310,63381,83932,91626,75230,221144,184838,140920,111566,213570,200803,168957,194519,165102,120204,132157,133780,115341,81934,70695,32350,61453,61400,85024,89512,71339,71070,94644,73685,122636,109664,75956,59104,33270,83051,120256,146307,316378,339384,298496,314372,271706,194840,137472,103978,144972,163733,144601,115426,64962,59853,36037,37284,106581,83392,74761,94455,102302,79699,59077,44288,31177,27595,23163,19396,18408,13726,9585,4952,0,78,114,248,358,398,308,342,501,754,895,829,1154,1326,1639,2366,2912 +0,207,428,684,913,1262,1248,1346,1611,1662,1415,1090,526,770,1129,1135,4865,5777,5624,5992,5866,5104,6814,10350,16628,17338,22013,19654,19130,19783,15163,16263,87415,73770,46340,43328,58074,51419,49968,45752,52636,43781,36555,44850,39221,44847,40501,34446,16542,17378,13252,20009,23650,24191,35799,33574,16252,23768,27587,28452,31218,26742,32405,27554,62338,78680,116638,103716,117488,98848,95168,84047,25223,27792,32307,36747,32455,29835,37132,27628,1312,992,1132,1583,2275,2706,2880,2752,4667,4313,2726,1898,700,505,392,167,0,46,96,160,200,320,354,738,1477,2910,3484,3780,4390,4008,5595,5591,1938,3092,4405,7913,9297,9828,14393,10416,10241,9196,7233,5184,2724,4542,5551,5264,1222,851,729,462,361,388,298,372,867,823,804,703,414,360,216,130,0,17836,31523,38592,47918,51119,60415,59295,21323,30025,34849,63980,81547,67327,78064,51107,39214,35576,29342,19191,15640,15267,10067,11059,23736,21772,24780,34464,58396,40803,34592,41511,282249,207985,210322,191376,111944,117969,145654,155693,150852,136671,113537,120187,117852,79922,55808,32715,75701,75698,78123,82418,102274,111658,96430,77226,137832,107428,89754,65791,39177,50046,80178,118916,376920,412501,323042,334284,254514,221969,154164,132042,167572,131340,136103,91109,76450,82873,84992,66834,113884,120190,144306,118817,93576,88645,82357,49598,12466,14860,16771,17530,13552,13436,9831,5159,0,68,157,288,457,418,524,568,615,773,914,823,858,1113,1873,1639,2220 +0,222,550,870,1070,1305,1577,1568,2786,2100,2228,2212,2294,1695,1961,1818,5542,4856,6530,6201,7816,7662,7735,12624,17175,18108,21297,19375,11838,11964,9944,10224,61914,55730,49386,41691,45032,50165,38718,42906,41041,43000,33240,33501,25360,33086,24467,25140,13807,14518,18485,23037,25945,32456,34153,56364,36150,33964,34968,42722,48553,43719,44633,47804,59159,73614,77200,87102,102895,82035,93125,63066,33511,34919,29956,29637,31848,27851,35059,26000,793,763,772,1000,1488,2116,2511,2191,3141,3136,2452,1315,453,412,329,134,0,36,90,134,141,202,308,470,1117,2216,2578,3096,2779,3464,4380,3316,1761,3233,4372,7372,10082,8972,9861,9568,7860,9932,8761,4822,1885,3806,5018,4558,1504,1072,626,530,460,405,446,360,730,722,660,556,485,393,191,112,0,15750,25936,33432,42557,48860,62000,56448,31497,34799,53228,54544,59579,63561,101521,90793,23540,29124,26587,16740,15994,18534,12845,15064,21316,28092,38430,47761,55527,42768,37025,45983,234726,178295,211246,148096,105352,119637,131334,151942,114170,100200,77358,93832,108687,86528,49479,22652,64652,81370,86542,72486,116314,98719,75796,65172,116885,89506,78458,62402,50295,73282,98842,98651,298723,362664,360551,239719,301850,225838,169280,148117,218807,143572,164496,122202,59763,69270,67812,67381,140029,133879,122831,113288,79616,63740,58276,36090,9482,13116,15800,15315,8740,9144,8112,4718,0,96,181,282,488,574,756,994,693,884,1014,1015,910,1308,1938,1510,2130 +0,293,552,998,1070,1694,1985,1747,3373,3004,2866,2618,3320,3229,2433,2683,4939,4765,5953,6671,11078,9666,10438,12129,13441,13468,15680,13107,8564,8598,8702,7123,58519,49177,46103,41852,36936,36660,37308,33040,34695,31886,33188,30781,16678,13545,16850,11488,10185,17226,18936,22325,24898,34668,44672,63094,49891,35028,35943,66954,55775,48098,61842,57687,66069,62298,56332,60924,81924,75033,64284,76990,40119,33157,30650,35559,21862,22511,26440,25541,626,692,548,784,1281,1193,1507,1601,2766,2326,1390,888,418,357,210,108,0,26,54,69,98,129,210,306,695,1142,1760,2024,2141,1928,2644,2293,1211,3092,4292,6517,7877,8012,5880,8952,8384,8165,7518,6544,1844,2126,3106,2837,1381,947,652,520,524,556,492,480,633,650,630,576,488,372,242,105,0,16679,28332,29358,46674,54204,71642,56983,46905,48246,60794,72027,58855,93746,100464,129196,12700,16609,18667,13117,15534,19281,17564,16934,25930,27610,41596,40479,40133,41580,41566,46005,208510,180825,144022,132662,106213,118002,131026,90533,95369,77116,58688,76890,116481,70753,37770,15532,85618,108364,104136,107922,99710,88020,73746,48588,72757,66230,66020,69801,77735,85375,100267,119952,336758,374346,341246,290471,321027,284851,245566,199415,241306,227392,145158,95845,44272,47750,67768,78749,159784,126794,122716,102272,67338,58892,40982,24014,7894,7854,9923,8293,7627,5484,4254,3338,0,84,176,453,667,1054,1196,1321,1032,888,945,1069,678,1157,1450,1704,1434 +0,369,852,1176,1432,1759,2102,2518,3056,3290,2833,3874,4841,4000,4092,4895,7661,7718,7714,7654,9553,8733,11684,13784,16205,15138,12668,10205,7947,7834,6266,6238,61515,54948,36990,29824,21610,24086,25450,32114,31122,27126,19820,18364,11982,9334,11140,7318,4901,11880,19640,26246,33660,43444,61270,70786,62690,69102,53466,89656,74054,77690,73417,65854,75867,56738,44062,57282,67114,58480,40814,50858,43719,34649,23067,26500,16670,20330,30390,26000,258,288,305,416,522,584,771,762,1496,1123,682,426,219,159,106,58,0,15,30,33,49,74,124,130,410,672,958,1014,1238,927,1350,1114,1044,2170,2736,4935,6198,5550,4804,6516,6170,6216,6214,5026,2000,2508,2410,2043,1284,980,642,632,539,656,564,658,663,653,662,494,511,349,243,121,0,18614,41669,46754,58926,73025,67398,81840,94927,58756,66290,55564,54628,76108,104204,166272,7460,11678,18425,15668,15460,16122,19144,21031,30940,40252,44297,41000,45298,51208,47346,48344,158523,152586,147138,131728,150246,162004,168812,109260,79814,77938,68832,75772,72292,51533,34233,17280,78304,87309,97326,107836,126473,105570,98509,62984,85392,75226,71468,65890,74050,78914,78838,86424,352232,324876,258075,309698,357156,289414,250207,238397,282083,187119,120540,90668,47337,55161,73026,74226,198754,149389,180530,128992,94795,73167,44424,22730,3736,4445,4914,4897,3709,3204,3194,2229,0,81,191,428,665,924,1383,1534,1284,984,738,854,670,1256,1547,2012,1842 +0,207,369,560,665,1358,1845,2714,3471,4069,6282,7166,7422,9930,9717,7689,9170,10877,11437,13132,12960,13940,16026,16670,14808,15616,14252,14540,11332,9929,6556,5196,73889,58940,65470,47389,44423,51789,53905,49730,34860,29327,14688,11096,10346,8578,4014,2222,188,17295,42461,63569,78157,98858,99279,95414,97425,105196,119469,80276,78750,78876,68326,85174,72699,75442,78426,58599,67727,57812,67398,49463,37234,28188,20882,20921,15840,19944,19421,25962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,2932,4115,5489,5236,4201,5013,5053,5379,6344,7116,5536,5168,4265,3600,2156,1242,1331,1625,1542,1375,1501,1307,1038,689,642,575,567,547,449,360,158,0,17696,34083,47891,83285,86118,128271,144464,112893,131712,127788,168400,229936,245879,244077,186832,0,1017,2473,4144,4522,9366,12243,24380,32056,33297,41962,45984,43252,45230,57752,66120,137402,137541,98420,121523,156151,147588,130089,121388,94632,86760,106542,66431,58849,47646,36806,18998,81398,110299,129829,118367,145558,133784,137306,89677,82223,56292,50923,54417,44219,51264,54411,80226,264046,249733,193422,216863,173960,158002,170863,209974,251676,213860,178294,155922,122523,116515,71706,100347,178070,134661,154548,173999,150561,115351,59670,26162,0,354,696,1096,1199,1533,1730,1530,0,231,471,594,923,1282,1571,1564,1492,1449,1079,1164,925,1256,1650,2361,2301 +19,224,360,580,686,1084,1426,2196,2534,4013,5131,5431,5557,6572,7232,7299,9716,15042,17633,25346,29786,31631,25556,30190,17104,20614,16450,16272,15150,12764,9520,12515,100434,70743,92529,83610,54504,57034,83627,59067,49427,44646,34870,27221,19953,16453,16238,12950,5433,23820,41836,50350,60294,79156,107358,108026,79282,89134,101081,68582,56577,66758,54588,78576,68002,75695,59372,59774,42041,43157,58911,39094,48550,33832,21073,20114,15565,18887,19658,24028,2099,1617,1124,826,342,1752,2732,2644,3191,2050,1469,866,320,256,113,56,0,0,0,0,0,0,0,0,0,5,8,15,24,24,29,33,1062,2548,3746,4358,3709,4222,4756,4364,4965,4974,4704,4179,4517,3766,3510,2162,820,872,1340,1312,876,1254,998,964,1138,838,643,590,438,462,346,172,0,15162,35087,50702,77137,79548,90128,100687,81293,92196,108183,156468,223801,252616,196850,228140,5021,5676,6232,7768,6770,10639,16968,23308,29476,31437,36075,37793,45454,52150,47611,63060,83988,113204,97525,116768,150138,140808,126398,91450,98209,92790,98054,70927,70857,48305,33132,16942,61646,72676,99600,112558,135510,136338,114967,72644,86268,71615,54819,41845,40765,51972,49828,67634,232972,181148,164282,187910,187787,159396,189569,197836,160915,172970,143913,120226,125979,120686,83660,122012,172099,141188,125965,163444,172674,103276,57678,30542,2387,2885,2988,2508,1628,1764,2358,1740,324,496,731,900,1096,1056,1248,1348,1294,1274,1626,1244,913,1404,1548,1914,2512 +42,230,452,634,695,954,1611,1976,2148,2818,3866,4077,4006,4394,3379,4175,8067,18028,24714,42429,44361,42958,40064,37463,21458,23312,21932,22517,14938,15557,16770,20695,95990,94507,112628,119942,89793,92782,92542,75840,69818,68512,52698,35004,26896,29578,28225,28650,9190,18974,35385,40371,63580,63488,87421,106504,80279,94858,81304,73774,53979,53894,67264,67428,69681,63798,56009,44726,37080,39964,44070,39230,44747,30860,19490,14776,16911,24485,27916,29964,3853,2880,2106,1666,770,3482,5485,5550,6732,5710,3598,2084,743,475,248,107,0,0,0,0,0,0,0,0,0,8,14,20,39,52,51,46,940,2013,3148,2700,3995,3245,3492,2944,3963,3411,3819,4017,3105,3292,2574,1782,658,626,625,730,725,798,1078,1263,1351,1153,816,542,478,436,256,130,0,13212,30064,41174,87082,65068,57439,69451,69359,87648,95760,131906,229826,246050,238480,241186,9773,10636,11483,14194,8043,14664,16614,20682,17940,25830,29120,33734,36223,47465,48126,44869,60252,64506,83518,92253,107952,102643,92675,87802,83415,83119,65598,64924,64164,42291,33874,17824,41645,50774,66630,98322,126005,87202,85012,71912,77583,72605,57424,47110,51452,50357,59855,64700,154494,170043,140984,141661,163007,172066,191148,221931,143946,130958,141313,111582,141379,141683,102119,98116,136437,147282,147123,169583,165419,119918,51224,38066,4927,4324,4910,3325,2021,1774,2200,2219,750,872,811,1146,1013,1160,993,1152,1368,1526,1657,1193,1067,1478,1493,1411,1914 +75,294,448,676,858,1124,1803,1844,1488,2020,2569,2908,3264,3060,2846,3525,7016,16548,29444,40212,46444,43162,55142,49308,26212,24858,18422,22344,22838,28386,40798,49565,96583,109414,131725,128087,127349,119724,156701,112552,110806,98376,79361,48194,33400,37308,39832,40896,11160,28914,44964,63814,85502,74372,72058,101443,58989,66698,58694,70676,63368,67534,55766,75400,48287,62169,57557,38926,34075,29204,39465,40512,35921,25637,14721,12928,12788,23530,36598,33556,7872,5299,3726,3062,1425,3692,8662,10442,14579,12666,7249,3354,1457,924,502,230,0,0,0,0,0,0,0,0,0,16,29,36,50,60,66,72,1157,1784,2897,2432,3521,3308,2901,2508,2345,2512,2095,1946,2132,1902,1672,1283,430,506,432,514,610,722,1076,1132,1566,1486,1300,702,338,292,254,122,0,15371,23198,37466,81557,61332,41338,64516,51694,72204,112892,156829,184508,212048,205882,229522,21453,17099,21190,16745,12818,14740,19606,22452,25792,23258,19108,20482,26531,31300,33346,32702,47970,58770,63472,76124,85687,87378,80002,70386,82377,56914,43192,50566,56266,36500,22830,12490,25645,37570,56459,67716,95903,84788,58905,45452,68414,65998,65566,50236,51169,69768,66089,70560,133741,120912,91432,105399,101428,121232,108646,138682,168349,149783,169090,132317,113636,109086,97177,97528,102193,100928,117196,128294,139752,84408,47446,40015,6929,6278,6073,3698,1960,1951,2561,2390,1061,1034,1059,1072,1110,979,979,706,1204,1764,1413,1240,996,1448,1525,1557,1620 +89,408,652,665,1000,1208,1559,1874,937,1520,2260,2142,2404,2626,3591,3133,9434,18930,23246,44928,55778,63540,67448,77026,26203,29340,28611,30286,25659,37104,44347,48924,111437,90902,112389,112915,138740,160615,131552,156899,142548,106601,54044,42400,35660,37651,37368,46631,16051,42363,55037,103026,122304,158729,155749,127151,45152,50536,55322,66299,57720,55785,49589,74408,46331,31263,24296,22447,21682,37774,44608,42024,32581,28201,23411,19106,13464,15831,20504,32157,10050,8008,7631,4126,2432,5798,8272,11901,20899,15066,15162,10116,2135,1614,1081,442,0,0,0,0,0,0,0,0,0,17,27,44,57,75,110,137,987,1539,2442,2124,2674,2708,3289,2573,1006,1062,850,688,754,684,680,848,246,324,318,430,641,768,779,926,1635,1471,1043,578,347,203,140,76,0,16428,32383,51944,55676,61238,62900,51996,23665,68811,117937,133901,149310,177568,245464,195949,28245,23354,21154,18851,14694,13450,16246,19773,26296,29685,26146,18524,11904,10970,9142,12687,34532,48560,63668,78343,75320,57596,65086,38026,62732,57084,48953,47242,48372,35032,28678,16101,14346,37586,54238,61236,70747,66281,43391,24692,45734,48608,38242,64123,75820,68104,60517,87251,90635,84617,110274,110899,79137,53812,51880,52906,139972,118850,94608,101567,119821,88150,99835,84022,52612,91510,110272,114810,109982,73874,56308,34882,8755,6181,4218,3556,2038,1910,2702,2612,1219,1371,1470,1609,1312,876,538,504,1462,1274,912,1078,1098,1498,1485,1276,1572 +120,358,532,624,822,1194,1480,1681,514,988,1601,1841,2952,3152,4048,4372,8006,14922,28659,40362,59448,51965,67963,71211,37580,39005,34684,36186,36333,47105,51821,50843,94136,93748,123196,118021,146574,167908,161223,186044,137884,125830,89958,62240,36800,30390,40220,51090,48280,49461,75453,97344,139989,116286,115674,119407,90714,87276,66416,70680,78784,65482,44109,58264,76436,45360,36328,28411,25210,37980,42104,41712,29655,27323,23456,22939,15790,21622,20604,26445,12355,10168,7076,5877,5035,9010,13279,17274,21392,14798,13890,9070,1954,1762,1224,695,0,0,0,0,0,0,0,0,0,16,33,61,72,110,126,156,702,1099,2007,1817,2561,2482,2151,1971,957,777,826,622,550,458,589,588,410,591,562,714,644,675,779,926,1653,1476,873,631,515,328,206,112,0,15630,31015,34700,47961,50394,48208,47163,38324,70250,110974,121950,136790,159896,173339,175622,43590,34822,33366,25462,20992,16789,18550,19610,17376,19232,17503,13249,13585,13364,13039,16012,30970,35436,50024,56732,65971,44867,44018,28542,44050,40878,41000,37328,38843,31956,20997,11618,11564,26009,30027,30369,63187,51516,33089,17935,32499,33332,33404,54830,58816,57596,58245,90987,69476,85202,74618,62818,73919,47460,47928,41403,97904,84208,64791,83648,117201,99050,92314,72164,43706,91052,128922,106688,113870,77887,44864,35688,21825,13510,8240,5344,3468,2844,3221,3040,1139,1573,1730,2054,1896,1482,816,657,1747,1692,1446,1172,1319,1528,1427,1138,1122 +136,336,429,468,536,685,962,1198,287,584,718,1005,2572,3986,5849,6224,6796,19404,25867,37823,66158,58728,67163,81982,44643,44140,47552,34316,41968,57384,65722,70615,123493,133264,109872,141872,209294,225213,212019,171964,169772,144343,123535,87002,38579,33714,38518,41730,64528,70895,82450,116424,114344,106315,80514,97107,142314,127128,98142,95566,87274,77692,45023,56546,84666,61034,44644,33902,32164,26980,34056,24921,31131,31682,23469,23663,20996,21823,27755,26292,12181,9067,9188,6130,6530,10400,17355,24324,20555,14222,12722,6757,2451,1896,1155,498,0,0,0,0,0,0,0,0,0,23,42,82,73,149,180,177,373,769,1216,1120,1748,1683,1683,1612,676,531,535,536,232,320,418,444,610,598,665,684,596,668,634,993,1298,965,1084,839,585,400,256,114,0,10097,20568,28042,47531,45210,35054,38852,52741,81958,105380,118793,115184,129941,119038,138333,73020,50112,39780,27074,26336,22162,15878,14144,16065,12587,11246,12398,12147,14191,14765,26356,33078,34516,26658,32638,42192,34538,27794,18915,28063,22361,22684,18636,22940,20158,12110,7026,6744,13038,17830,19319,43300,35071,26118,12434,29998,37982,40218,52840,47656,62605,64055,89122,81131,79122,69590,62346,45101,29430,28176,18535,86953,84653,55339,60120,80310,78706,59770,48978,55033,89956,105964,92799,112763,75120,47333,31744,27707,18753,10866,7732,4076,4092,3100,2615,1588,1802,2386,2436,2351,2130,1365,894,1909,2051,1613,1377,1391,1213,902,840,614 +144,200,241,314,365,352,421,488,163,414,590,986,2028,4090,6316,6237,7355,24378,33908,44526,64125,64753,69820,84368,75272,54120,49403,51893,54528,77606,81273,60672,102875,98340,141656,167169,202889,234554,222190,180222,187001,170093,114004,79367,34684,45253,45680,59780,66588,90180,98734,123619,125068,108921,97422,113020,178587,122364,98060,79462,89905,74548,57910,56818,96822,69908,46942,42365,35844,33584,34470,30839,18697,21210,24867,25391,20491,21804,25556,28898,18250,14532,10811,8012,7625,10797,15219,21768,21922,16434,10933,7674,4103,2596,1630,728,0,0,0,0,0,0,0,0,0,23,53,86,72,140,216,203,328,538,656,682,965,830,720,710,372,288,218,246,123,138,181,198,727,756,856,834,680,697,816,927,1304,1143,1022,812,729,446,301,140,0,11894,20794,26186,35748,40088,42394,40798,52351,78027,109448,108573,98886,104854,137253,129324,87900,59413,38314,39490,34094,22344,14536,10799,8468,8104,6620,7122,8765,11032,14964,25263,32524,26314,28272,30053,28463,24720,21778,11328,13760,12221,11987,11354,11701,10194,5309,2934,2860,6005,9930,9042,25912,21672,13273,6767,12003,18734,22743,32867,36061,53201,54802,93152,100715,69722,64232,56250,40500,24016,18318,13964,41365,46310,28504,31624,46090,39248,31492,21236,75007,98321,105821,92651,78080,58707,64556,43542,35936,26324,14429,8806,5027,3963,2894,1949,1478,1924,2031,2013,1982,1912,1929,1392,1744,1748,1654,1201,1423,1061,738,450,346 +150,689,1561,1703,2166,2131,2432,2606,2425,1861,1924,1757,1307,2368,4110,5650,7666,20376,32618,54985,86753,88016,62263,63632,90182,87521,84107,82623,121082,124822,120035,110420,65105,50480,46716,35411,37126,33890,24574,11886,0,11621,21807,47561,58124,47119,52885,75254,82918,56064,37425,26800,12885,10751,13706,15996,13555,15596,21502,20807,18286,32694,50938,64281,81335,76355,60772,67444,83584,83829,73744,78103,90187,66140,69792,60278,43127,36811,27686,27458,22020,20443,17512,14256,10427,9177,12382,12613,11366,8943,7885,4537,1697,970,703,290,0,2,3,4,3,5,6,8,8,12,17,23,36,108,183,241,228,199,194,133,133,92,53,32,24,28,31,25,20,19,12,7,1102,842,492,571,466,660,740,1062,1275,1646,1471,1291,1080,911,612,351,0,3055,6012,9404,10788,10522,8447,8509,12755,19440,28320,25848,30676,55268,64307,78339,85026,54936,44489,34604,18797,14440,12148,9165,10703,9752,10732,13611,19086,27450,31079,28340,31216,23630,19207,24736,23049,16686,16211,13230,13155,10240,5985,4464,4050,2274,1309,771,0,1833,4411,8503,10518,26266,38745,48770,57959,57913,79552,82408,122492,153846,143422,115992,88402,57413,43489,27933,20320,18600,13996,6144,0,0,0,0,0,0,0,0,120705,98291,76422,68858,85848,56675,43720,20246,0,154,336,701,973,1105,1600,1393,1393,1282,937,728,457,674,806,1020,1254,939,808,632,755,659,367,193,0 +174,734,1234,1207,1678,2267,2352,2354,2017,2150,1710,1614,1156,2044,3030,4107,7525,25492,48234,52752,74492,68488,65943,76971,74228,74876,85371,78510,117667,117648,144904,94412,70445,60519,46096,29902,36236,25976,20009,10187,436,10738,24460,32640,53985,51568,46553,58520,110575,73088,44793,36802,26408,19570,16547,17836,14304,17259,19064,19483,20602,35628,44592,63015,65200,67525,49836,65124,64369,69552,56573,61634,74184,70005,49466,48628,37840,39768,24754,20095,17989,19019,14432,15440,10796,9952,12148,10978,12357,9660,6613,4982,2594,2290,1052,532,0,5,7,9,7,12,14,18,12,19,18,26,40,107,147,201,181,386,630,1023,1656,1847,1702,2185,737,1099,1292,1338,1843,2325,2876,3752,869,780,697,544,531,630,538,750,943,1226,1109,959,703,668,365,242,0,2742,5676,9106,9976,10834,11910,11702,17634,20094,29687,29568,38662,50744,68850,77600,83262,62956,33735,29064,15863,13889,12266,10680,9744,13300,16310,18840,20212,21418,28666,28508,26859,23764,27121,22324,22439,16883,20388,17480,13949,9870,5004,4457,5449,3651,2176,1020,0,1480,2699,6263,10494,18361,25695,35888,50712,70538,61498,101258,72161,82589,127221,119368,76167,52286,47609,32152,26044,18122,13162,5906,0,0,0,0,0,0,0,0,112645,97407,82165,73684,73012,60406,43639,21062,1850,1423,876,1219,1480,1744,2325,1824,1471,1168,1019,726,543,786,811,958,727,706,780,652,531,467,395,197,0 +186,729,1122,1200,1779,1824,2222,2342,1884,2134,2170,1612,1298,2037,2364,3668,10582,32610,49968,66513,81841,65625,51568,44061,46315,73900,77202,64172,163746,135226,123659,116406,68253,54894,39050,24897,29890,21705,12919,7104,821,13721,22510,23019,40407,47577,45282,39100,107515,81240,53324,35774,35636,23185,17482,18076,19564,15858,19962,16184,20964,22901,34465,40144,63102,72260,61552,59200,64958,54531,54124,43325,76139,68006,48202,46580,49143,32691,30770,29482,19331,19464,16412,12090,8870,10080,9304,9814,14247,10424,8197,6041,4739,2983,1552,639,0,5,8,12,9,13,20,20,13,22,23,34,30,87,128,168,174,530,910,2202,3562,3353,3946,5748,1763,2202,2652,3020,3742,4113,6447,7328,985,952,680,637,582,560,564,871,794,1042,1036,1054,527,453,260,116,0,1838,4084,6356,10397,10347,12472,17858,18380,27993,28622,27799,41148,49694,50708,57687,61044,40637,25238,22454,16492,14879,10436,10081,10278,15145,20874,26170,15415,25119,28347,31978,22935,29988,29531,27164,30729,29000,21346,21306,10196,6848,4590,4569,5682,3410,2352,959,0,994,2180,4286,6981,14010,18882,23164,33960,43601,70368,91013,55606,80096,93891,93484,83189,66765,45224,41458,26110,15884,11344,6236,0,0,0,0,0,0,0,0,92666,67121,67276,85803,93972,71026,36912,16855,3246,2316,1648,1696,2702,2353,2407,1688,1256,1035,856,682,625,909,986,985,558,564,596,600,512,410,305,156,0 +263,432,776,1231,1508,2004,2118,1712,1874,1662,1644,1269,895,1400,2044,2476,10789,27048,43332,51332,72222,67870,46995,44084,42858,61396,74700,74682,127974,117487,125723,111250,73076,50383,37000,27074,24130,15903,13150,6532,1256,10975,14441,22670,34492,43776,38775,44604,88544,73509,38899,32980,30905,27318,23476,21240,15815,16640,12054,13610,18738,19464,22854,22200,62917,60634,48264,49074,50226,48027,57247,48256,62603,50736,29377,32628,44891,34218,25674,24622,16601,16138,15590,14944,12332,10399,10140,10268,14292,8270,7808,6322,3964,2762,1960,706,0,8,14,14,17,20,23,28,12,17,24,34,41,66,92,122,130,758,1114,3300,5028,6218,8466,9210,2569,3383,4960,4723,6002,8646,10571,11083,1322,962,604,684,460,592,621,878,846,984,944,836,449,404,202,94,0,2000,3832,5740,9329,11739,16571,19400,16380,24447,33134,28666,33647,41372,43274,52032,33140,21794,17489,14369,12062,10858,11744,9646,9894,15524,16152,22020,17571,20960,23741,28074,19444,28261,29619,28318,24827,27108,19957,21062,10717,7162,6088,5224,5567,3763,3009,1394,0,1314,2750,5405,5420,10379,15762,17027,44905,43974,52278,60728,43523,67975,78808,110856,69314,66311,33661,34315,29160,18746,10336,5624,0,0,0,0,0,0,0,0,59361,63127,64882,65586,79806,54928,34807,19608,5379,4058,2825,2820,3150,3140,2958,2439,864,825,863,600,514,622,974,724,606,514,584,468,301,276,188,84,0 +323,626,800,829,1138,1714,1752,1582,2206,1397,867,859,564,954,1137,1254,9647,17131,33126,51047,58785,57564,75421,72985,28301,42882,69862,105104,116158,125576,102477,118168,58437,42360,23009,19278,16326,12671,10825,5877,1282,10812,23002,36248,38692,50387,55399,64593,72785,74960,53010,39882,39736,33938,22281,22792,18614,14045,9594,9058,12706,10882,7209,10095,57211,57792,51934,43496,32422,29241,28007,32060,47689,57138,55785,52099,33308,27122,26009,18992,13438,14968,15039,11938,14546,10619,9787,12888,10716,7585,7077,5575,5121,3494,1820,788,0,7,11,19,22,21,20,29,10,19,28,30,37,52,59,52,65,2210,3718,5732,5908,8482,12929,11906,4519,6157,7788,8402,8028,11694,12918,15193,1520,1518,1139,798,562,819,867,1129,1045,649,564,500,455,347,287,141,0,3687,6313,9833,11576,17136,24607,29168,20974,24408,23547,37712,40870,34194,38030,44550,10302,8302,8252,7446,6704,9440,9801,11046,9708,12906,12348,18568,20592,18332,11534,14405,21502,22846,17139,21287,27673,24370,26804,22274,10812,9125,6640,6663,5489,5182,3808,2211,0,1007,2287,4811,6484,6296,7679,7824,46188,50049,59419,52846,44542,59856,55378,84262,56915,47768,36084,39808,33513,29801,20436,11560,0,0,0,0,0,0,0,0,53841,74775,71957,72418,60923,39959,38699,24745,6666,5204,4731,3988,4139,2985,2794,2940,519,462,380,448,440,320,336,500,538,444,328,318,236,132,85,48,0 +214,513,507,674,861,1028,1237,1206,1691,1290,864,762,459,734,734,766,8519,16587,29092,48440,53999,55176,62556,60418,23912,45921,48527,88388,82943,115172,97104,94751,34552,33443,17528,14384,11733,11136,6661,3832,1080,7991,16933,21510,34456,34626,36637,35830,88421,69330,49136,38012,44846,43024,26916,26292,20699,17208,17191,13852,12223,13408,9708,11920,68082,61708,53297,48970,32945,26021,25667,28899,32389,37708,38667,35134,25304,27427,23252,18387,19011,15812,14773,16733,11324,10095,11268,11778,10456,8874,9693,6670,3440,2828,2040,1117,0,6,9,17,20,28,37,40,20,28,30,30,31,60,56,74,107,1994,5257,5816,7348,10066,12059,14340,8559,9018,8870,9251,8127,11576,16124,15592,1198,1280,930,620,466,618,615,762,1010,629,543,471,443,308,220,104,0,3558,7891,10743,13112,17948,22804,27542,16172,23114,23415,31801,32871,34328,52192,47358,8314,7052,8045,6989,5792,7505,6426,6900,8363,10436,10318,16351,19472,20415,16895,19180,17485,24336,25108,26790,25758,23675,26165,21632,15275,9978,7783,6188,5067,4044,3564,1647,0,1753,2910,7066,6728,11255,11473,11760,35716,39692,54302,40149,41252,48214,52566,90057,46386,34836,34478,31293,22700,20732,14255,6510,0,0,0,0,0,0,0,0,44804,64680,80629,67695,44160,36590,32908,21108,9762,7579,8121,5944,6152,4235,4088,3407,312,344,318,290,311,258,313,454,413,352,298,257,175,124,79,42,0 +172,280,382,593,774,699,719,1052,1005,820,794,572,329,433,642,801,7460,18302,23097,41018,43883,42817,41525,36237,20723,38282,47756,73523,81051,93712,112686,109550,19966,14748,13674,11527,7606,7399,5047,3444,852,7474,11947,18042,19167,24150,28074,30427,82583,64724,55396,54372,38860,32411,35378,27190,19539,23286,21904,20871,14216,13702,12574,14716,57219,58273,60394,39579,39447,33871,28842,27153,28718,31374,33146,35072,22436,23793,17632,16450,20120,15606,17714,18526,11204,10963,12794,13907,9154,10546,9090,6568,2816,2426,1839,1034,0,5,7,12,13,30,42,49,24,32,37,30,30,45,78,90,157,2515,5354,6564,7129,7519,11609,12268,16348,13284,11882,12996,8223,9696,15327,15658,1041,798,818,456,364,417,564,582,771,593,458,314,333,310,187,87,0,4861,8258,11005,13520,18000,21439,25856,13946,18145,24145,28177,31123,36138,51074,42679,7783,5474,5781,5359,4062,4866,4938,5190,8594,8057,10718,9966,12634,21225,23795,23994,17420,20095,26127,28534,30928,27149,26744,22150,15496,14823,10732,7626,3109,2608,2226,982,0,2666,4836,9427,10231,10770,14503,12238,27649,34374,40796,43520,38875,37503,44336,68833,28289,30200,27631,29203,14057,11234,9866,4140,0,0,0,0,0,0,0,0,44129,64222,66336,62014,36662,33666,19802,13815,12053,13653,12556,8229,6121,5489,4170,2543,222,221,170,186,308,242,273,296,354,327,237,212,146,84,48,29,0 +222,214,288,413,566,514,508,819,820,654,466,478,252,313,365,388,6236,10336,18027,30935,29814,31912,29101,32931,21579,33286,47546,67401,59789,85220,89705,97088,13485,9321,10594,7482,5494,4640,3337,2748,1102,4974,7880,10474,10151,13621,13885,15542,90361,62296,75872,69026,48980,47326,46504,35380,20609,19108,19150,25566,24298,21704,23144,20754,57366,59752,46195,38024,33183,24014,22801,18056,16953,18128,19384,20232,15717,15498,13872,17138,19620,16746,18592,19336,14316,13180,14051,11934,7864,7562,7894,5842,3404,2992,1822,1169,0,5,7,12,13,32,47,58,46,58,42,40,34,56,80,92,180,1928,4908,5718,5637,8963,12170,13482,15832,16879,12583,12155,10807,15254,15418,18940,927,734,742,568,346,382,512,408,630,520,423,270,214,166,114,62,0,3533,7781,8987,12237,13052,13804,23856,20153,24976,25962,26302,39674,52817,50703,51848,4870,4548,4304,5014,4269,4000,3872,4020,7308,6650,10056,9434,12105,19224,20728,28854,19596,25622,27521,32395,36631,31334,29456,17606,16252,12914,10580,8109,2514,2356,1834,896,0,2594,4389,9303,12544,13011,19647,16711,22375,23624,23705,35196,32857,47520,51729,66136,30424,26280,16164,19069,11023,7720,6096,2928,0,0,0,0,0,0,0,0,53745,61078,53016,44565,38104,32003,22453,18130,13748,12733,12741,8904,6960,5166,3828,2700,127,122,83,108,162,145,136,140,192,170,134,94,67,48,31,15,0 +224,187,238,171,130,304,406,468,499,375,428,298,152,89,60,34,3184,4127,6848,8494,8329,7238,9248,13547,22304,26900,29331,26273,29500,35704,41850,83329,6502,5220,4083,2956,1500,1517,1253,1265,1458,999,1030,805,548,376,296,172,73450,54346,51305,46539,54768,59994,50149,35868,23308,24274,21282,18915,11651,11348,14586,20472,56871,37291,33737,27184,13773,9449,9336,5514,880,7080,11356,14906,21867,19741,15865,21103,24656,19425,21002,13107,8405,9709,11483,8184,8352,7817,6566,6080,6337,5172,2419,1312,0,5,9,15,24,38,40,40,56,68,58,56,58,81,94,101,180,2994,7164,8726,13479,14857,15772,17998,21168,24110,25047,29972,38229,46305,39060,25666,697,591,396,490,449,367,304,378,472,418,445,373,403,303,219,94,0,2534,4437,9603,12575,18196,18764,20768,22186,30837,41221,47669,42970,55335,54958,47662,2134,3264,4650,4779,5659,5635,3792,4889,4400,5437,7328,9810,11826,13150,19570,27672,22019,20218,18816,17861,18955,18719,19347,13464,12889,8404,6925,4230,3595,1964,1301,666,0,972,2074,2193,3394,10039,13819,17436,18122,28694,50459,51280,65280,63986,57905,75993,24787,21406,14703,12158,10571,9688,6652,2929,0,0,0,0,0,0,0,0,59163,51367,48155,43810,45979,38342,33261,20894,16524,10191,7385,7560,6258,4378,2772,1916,0,2,3,5,5,8,11,13,11,13,11,8,5,5,3,2,0 +298,270,250,196,162,344,388,486,419,456,399,381,436,348,330,372,2791,4194,6509,6508,6303,8265,6897,10734,19569,23428,24408,23964,27458,32578,34714,76284,6409,5078,4877,3670,1726,3336,4356,6364,3704,3537,3417,3314,2827,2856,2401,2496,69305,57560,47840,48260,50421,53233,40322,27784,30600,30248,23076,17754,11042,12409,16082,16279,54440,43594,30880,22243,18806,12529,9108,5808,2229,6741,12112,15269,20189,18612,17696,25696,25537,17054,17272,14586,6911,7903,10626,7430,7155,5304,4857,4688,7131,5268,1798,1150,0,6,12,16,19,30,37,44,49,60,70,58,56,71,86,82,144,3434,5729,9146,10996,14305,20304,22468,22486,22194,20313,25938,27097,31330,37953,24508,600,488,397,404,459,424,374,414,502,439,334,277,406,267,192,92,0,1852,5097,8414,10745,12553,11083,13718,17092,29126,30250,36296,33421,33182,45306,43746,1867,2572,3306,4540,6456,4780,3048,3708,4019,5075,6736,6808,7783,10546,11497,18502,18407,21718,21818,18884,15914,16328,16049,13863,13090,10678,7549,5502,3394,2430,1916,934,0,966,2631,3004,3690,9727,17303,16318,13638,23770,46034,43368,57527,52379,52600,63508,23508,19454,13504,11532,9912,7360,4962,2654,0,0,0,0,0,0,0,0,62792,44524,34102,40178,42450,37724,26763,20816,10220,7484,6313,5554,5687,3708,2482,1881,0,2,4,6,5,9,10,10,12,10,8,8,5,6,5,2,0 +296,313,286,186,194,278,429,484,369,430,530,598,593,570,601,604,3405,3678,4910,4523,4999,5852,7880,9409,16743,18779,24015,30571,19263,33573,39086,66546,7610,5958,4775,3022,2560,5426,8050,13321,6927,5442,5159,6813,5239,6335,5512,5478,42418,47179,47774,59522,52045,34931,35206,21876,33755,30050,24442,14267,7215,9675,12758,11994,52109,41473,27258,16697,19917,14909,7701,5028,3033,6045,9799,16705,15125,20348,21654,30402,23776,21360,13388,10585,7946,7951,8422,7354,4717,5394,4303,5103,6171,3953,2062,957,0,6,10,14,18,24,32,49,51,47,58,60,63,67,66,62,177,2360,4808,8160,12238,17568,19692,23610,17366,12900,13704,22409,19124,21525,28009,19138,462,509,406,418,364,316,360,460,392,447,380,247,320,198,120,72,0,2050,4836,6133,9212,8752,8485,7472,19940,17425,23398,24002,22778,27550,38422,53174,1244,1838,2293,3421,5737,4893,3714,2976,2391,3767,4138,5208,4466,6104,7597,9912,23223,24831,22764,20423,16668,13399,15480,15842,11265,8877,7508,6050,3688,2447,1979,952,0,1182,2524,2492,3016,7278,15030,15462,8472,24614,33798,47580,32382,36991,39305,50384,15739,14240,13342,7982,7364,5343,3904,1738,0,0,0,0,0,0,0,0,49347,40018,26199,26415,30605,32585,24317,16696,6932,6790,5333,4726,3255,2828,1488,1242,0,2,3,5,4,7,8,8,8,8,6,7,4,5,4,2,0 +241,258,244,204,161,254,324,373,231,382,635,625,818,722,646,856,3032,3666,4673,5351,6629,6318,8668,7943,18156,16488,21873,21232,16908,35741,41228,51306,9742,8099,7194,5038,2974,7446,14577,17638,7912,6052,4848,7310,6941,7283,7790,7610,26750,39346,37336,44031,42449,35616,42499,30313,38266,36738,31630,15482,9243,8668,8722,10290,49596,37010,30423,18346,18590,12158,6365,4123,3041,5289,7345,13575,16379,20928,19411,23792,13749,13388,12413,9705,6251,7502,8373,7970,5504,4152,4468,4720,5993,3685,2491,1194,0,6,8,12,15,22,32,39,37,38,44,43,65,50,46,46,150,2272,3631,7214,10246,17341,19124,24788,18452,15436,16185,18482,13193,16562,21412,16402,323,301,343,352,347,362,328,366,410,336,286,208,226,171,112,56,0,2098,3905,5736,9014,8346,7568,8150,14004,16486,25218,24020,19845,23164,26634,37380,1492,1601,2026,3526,4483,4382,3456,3430,1601,2810,2938,4445,4235,5915,5564,7565,18888,17121,16926,15700,12304,14696,11259,13584,10099,9084,6040,4420,2876,2080,1857,829,0,1387,2573,3806,4696,9177,15594,14158,8870,17430,28227,35594,24955,34966,34353,45722,12517,11370,7445,6189,6102,4296,3008,1246,0,0,0,0,0,0,0,0,35933,36331,34008,33098,33466,29118,19084,12857,4651,3957,2642,2622,2538,2248,1038,1048,0,1,2,4,4,6,7,7,7,8,7,7,5,6,5,2,0 +256,192,144,141,184,156,162,241,144,238,382,616,964,910,1116,945,2259,3743,5888,6868,7228,6460,8291,6850,18711,13530,14146,17948,18598,32475,37990,33525,12224,10940,8277,7426,4820,8841,11527,20744,9979,11412,12780,9766,10694,12517,11435,11760,15763,13994,16998,32298,40428,41441,50460,38980,47269,39439,34033,17602,8353,7265,8355,6700,48352,41480,39011,28664,14964,11994,7375,4932,4076,7952,9354,13686,14423,14973,15879,18425,10232,9042,6624,6841,7527,7980,5894,6120,4923,4941,6055,4268,4601,3430,2736,1396,0,2,5,10,10,17,23,30,22,32,38,37,44,43,58,45,82,2906,5092,7982,11732,16708,22628,27956,21544,18748,23576,15894,13703,10991,10726,9305,210,191,242,260,318,328,327,346,349,267,198,159,150,143,99,50,0,1513,2693,5099,5878,6434,8786,7744,10083,13412,12280,13783,21711,38168,44293,53446,1613,2876,3490,3244,3756,3117,2076,2206,578,843,1510,2201,2843,2630,3417,5435,12418,15555,15114,10670,11031,11773,13867,12040,7353,5665,6215,3553,2172,1523,1046,588,0,1455,2987,4480,5418,6503,6853,12290,8192,14881,16806,19738,17320,23656,23699,29821,6303,5839,4539,5118,4020,2994,2204,980,0,0,0,0,0,0,0,0,38622,32510,24212,27964,29745,18973,12582,8398,1856,1438,1087,1100,999,1074,1282,1171,0,0,1,2,2,2,3,4,3,5,4,5,4,5,3,2,0 +188,145,126,156,148,117,129,178,133,338,566,929,1216,1046,1147,1456,2776,3813,6158,5768,7550,5874,5749,5548,15013,13528,14034,14631,13481,26124,31138,28574,12772,12684,8865,7988,3949,8646,13712,20914,15582,17778,18540,14638,13971,14340,17067,18445,17574,18310,18127,31832,33853,36532,45956,36807,44128,32816,28634,18186,12714,12234,12814,8698,39354,30278,24606,22324,17062,13140,8383,7269,6896,9928,10122,12025,11521,10995,15086,16286,9232,6918,4783,5239,4939,4936,5451,5433,4300,4082,4020,3684,3402,2306,1755,1014,0,2,5,10,10,14,22,24,15,23,30,30,41,40,44,34,66,2584,5308,9485,12050,17454,19757,21432,17648,19851,24006,20297,15472,12232,10325,8801,150,164,235,258,249,244,252,214,217,170,150,118,130,108,74,41,0,1070,1640,3131,5088,6062,7229,6688,7064,10208,8797,13508,17375,25414,28120,29380,1191,1880,2867,2900,3071,2293,1764,1652,353,786,1010,1641,2194,2166,2364,3680,9863,9602,13574,9388,6812,8998,10185,9042,5964,5188,5127,2826,1845,1360,872,426,0,1083,1900,3145,4031,5882,4367,8098,6214,10814,11581,13118,16155,18932,17882,23374,4894,5049,2753,3355,2388,2323,1610,702,0,0,0,0,0,0,0,0,27649,25871,15367,18566,27083,16562,12630,7439,1195,1032,911,920,939,817,995,998,0,0,0,1,2,3,4,5,4,6,5,6,5,5,4,2,0 +194,186,160,144,102,91,86,99,85,357,802,1102,1235,1337,1392,1674,3861,3669,4886,4574,6362,5496,5682,4067,12756,10829,12237,13353,8370,11550,20254,24383,13040,14033,10372,6845,4538,10326,16392,21478,22180,23236,19156,15353,20344,18814,17697,22774,22513,22346,25590,32316,28465,34540,35955,37785,46228,27954,21788,24061,14007,14763,17204,15023,32002,19276,15432,13893,13859,14474,12078,9262,8063,10386,11482,11540,11708,14292,12702,12142,5708,5652,4368,4072,3700,3434,3374,4139,3357,3086,2986,2462,1536,1369,1292,663,0,2,4,7,5,9,13,14,11,17,22,18,29,32,26,21,41,4040,7994,11394,14332,11050,13223,14140,18973,14950,17830,16774,12856,12969,12936,10778,133,144,150,149,215,138,108,118,160,139,98,94,73,61,45,22,0,481,991,1520,3325,3361,4147,3770,4007,7095,8222,10618,7620,10239,15567,15173,554,1101,1468,1712,1377,1160,958,1267,193,536,747,1002,1961,2228,1884,2262,7629,9363,8322,7974,5864,6428,5980,5509,5046,3646,3618,1842,1300,770,417,190,0,687,1253,1807,2451,3298,3175,4772,3768,5257,8481,9234,11972,13897,17486,16742,4247,2566,1894,1815,1804,1150,822,437,0,0,0,0,0,0,0,0,16967,15719,12501,13378,18083,14486,8877,5511,753,661,660,703,650,650,571,619,0,0,0,0,1,2,3,4,3,5,4,5,3,4,3,2,0 +157,132,100,94,70,66,65,64,42,357,736,1594,1418,1754,2128,2288,3374,4301,3393,2919,4906,4504,3373,3158,8785,7414,8438,10688,9742,11229,13929,14317,11968,8848,8900,6442,4500,9622,13224,21372,23361,24642,23512,23206,19048,20926,22349,22556,26998,24660,25597,26626,34208,34600,34447,42532,43484,29273,20002,25838,24270,25189,21674,17111,21383,14760,9112,8883,11312,11530,11025,10864,8630,9526,10612,9052,9943,8964,8060,8290,2691,2284,2613,2088,1828,1549,1392,1944,1706,1549,1318,1062,734,738,567,318,0,1,2,5,2,5,7,8,7,10,11,10,15,19,16,12,18,3586,6048,9064,15324,12788,9180,15107,15882,16243,13438,15809,16486,15234,16638,13904,59,70,78,80,106,70,49,44,86,68,41,40,41,28,20,12,0,211,481,765,1586,1680,2481,1774,2255,3572,4187,6244,4322,5444,7609,9938,268,448,785,894,712,512,489,600,107,252,419,412,1174,1204,934,1308,3663,4436,4717,4139,2634,2768,2622,2860,2738,2338,1609,910,744,434,200,92,0,298,507,910,1257,1478,1332,2446,1651,3082,4932,4910,5717,6432,7652,9673,2111,1286,884,772,852,595,371,188,0,0,0,0,0,0,0,0,9911,8165,5550,6004,9042,7383,4340,2706,445,364,378,365,342,330,297,330,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,1,0 +78,80,61,47,17,28,42,51,51,47,56,65,76,75,66,74,64,60,70,64,56,37,33,17,0,0,0,0,0,0,0,0,0,3284,5670,6496,8689,10630,9647,13180,13187,14136,10654,11168,11660,12244,10445,17076,18555,18417,12152,8756,5492,20578,28848,25982,35967,39841,35015,27422,27515,19521,15367,12924,11727,8936,6453,5114,3748,5568,7591,8332,8294,5537,3968,3042,2333,2796,4110,4430,3574,3300,2761,3416,3764,4474,3957,3622,2806,4651,7286,11573,12826,12641,16436,16214,22994,20908,23287,26812,23056,17604,13920,15144,11950,12912,10885,8752,8815,7087,4953,2439,0,0,0,0,0,0,0,0,0,4030,8434,13132,16269,18498,17576,15471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +72,78,61,43,30,34,47,46,40,51,62,72,61,59,55,68,52,45,60,54,48,36,32,16,0,0,0,0,0,0,0,0,1196,3349,5734,7379,12237,11761,10528,12226,15869,12560,14903,14952,13955,15322,21072,21192,12056,13633,11062,9954,11342,21566,25465,36128,27141,33362,32215,32546,20866,19534,14067,12260,29128,18620,15188,10830,5709,8789,13705,19408,22245,20049,12526,10261,6760,6382,5454,5190,4362,5676,4289,6260,5663,6244,6936,5869,3672,6672,12674,13558,18836,22174,25246,27756,19265,16546,15988,17982,16021,13444,19137,16068,15374,14509,11291,11554,9742,8629,7318,7432,0,60,100,118,286,449,459,642,1160,4880,7762,11762,12068,16175,22673,22187,0,1,2,2,2,2,2,4,4,4,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,2,2,4,4,6,4,5,4,4,2,2,2,3,2,5,5,6,5,7,6,7,17,15,10,9,8,9,6,5,0,1,2,2,2,2,2,2,0,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,6,4,6,8,10,8,10,7,7,7,8,7,7,8,10,11,12,8,12,11,11,13,11,8,6,2,2,2,1,0 +46,59,66,50,47,49,46,39,34,56,60,58,46,57,62,65,40,46,36,37,48,36,26,12,0,0,0,0,0,0,0,0,2714,3227,5284,8000,14389,13324,12030,9798,21046,21656,16428,22872,20389,25568,25210,32110,10784,13774,13592,9910,13469,22457,34460,31764,30631,26737,29538,31719,24591,17227,14101,13038,37387,38644,27472,21265,8041,13846,19296,25960,30508,31940,24091,20292,13333,13029,8454,6766,6609,5762,7428,7923,5883,7324,8002,9386,4140,8255,15428,19068,20697,28410,30868,27586,16268,16639,13790,14050,15677,16047,18491,16534,16611,13606,13224,15251,11281,12597,11890,14510,0,116,226,303,541,728,1022,1109,2599,6126,8362,7840,11230,13844,20735,26648,0,2,3,4,3,5,5,7,6,6,4,5,4,5,5,5,0,2,3,4,3,5,4,5,3,5,4,5,3,5,5,5,1,2,4,5,4,6,6,10,6,7,6,6,4,5,5,6,4,7,8,8,9,12,10,12,29,21,20,19,17,13,10,7,0,2,3,4,3,5,4,5,1,2,3,4,3,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,8,10,6,12,15,17,14,12,12,13,12,12,13,10,14,16,22,26,16,18,18,21,22,18,14,10,4,5,4,2,0 +47,56,64,49,54,48,51,46,24,46,39,48,49,48,52,60,40,41,40,43,42,35,26,12,0,0,0,0,0,0,0,0,3820,5312,6150,9720,14264,10766,9790,9744,22936,16362,15757,19952,24353,31698,31355,32416,10775,13184,17646,14527,12118,20228,24058,28467,28010,28750,23856,24596,29052,18105,15008,11573,53391,50688,39594,27462,13590,20879,30112,37453,43109,45033,30074,32154,21708,20202,15962,9118,7214,8422,10055,10456,8162,10700,12113,11620,7849,12102,16324,21911,31871,29440,36312,37280,11227,12486,13732,11614,11386,14664,18392,19608,17677,15770,10855,12964,15486,14184,17826,19886,0,180,295,458,612,1190,1953,1672,4605,6608,7848,8926,14273,17821,18558,27310,0,2,4,5,5,7,7,8,7,7,6,7,6,7,7,7,0,2,4,5,4,6,5,6,4,6,6,7,5,7,7,8,2,5,6,8,7,10,10,14,8,9,8,8,7,10,9,10,6,9,11,15,17,14,16,18,39,38,31,28,22,19,12,10,0,2,4,5,4,6,6,7,2,4,5,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,14,12,18,18,24,24,27,20,22,19,20,22,16,25,26,30,32,23,22,18,26,26,19,13,13,7,8,6,4,0 +41,51,66,60,58,62,52,46,21,28,29,30,36,42,60,70,36,44,48,34,33,34,22,13,0,0,0,0,0,0,0,0,4346,6766,10440,11342,12646,9880,8810,7690,22553,19618,20067,19679,25504,29969,30603,27572,12405,12639,17337,18145,16051,16682,17569,31377,33903,25414,26118,26536,24368,23395,22105,20495,73031,55922,60923,39376,17894,20202,25221,33019,62245,52828,47652,43484,31763,23332,19674,11684,6248,7032,7373,11285,11974,14139,18798,20628,9747,10782,16523,26503,35410,37383,29328,38827,9914,11062,15351,16287,12122,15352,15312,23364,14367,12047,12095,15611,20863,19767,19669,18597,0,245,509,635,838,1538,1982,2788,5910,9884,12930,12839,14662,19198,27382,30784,0,2,3,5,4,6,6,7,7,10,8,8,6,8,8,8,0,2,3,4,3,5,4,5,3,5,6,6,4,7,8,8,2,6,8,8,9,12,10,13,9,9,9,8,8,10,11,12,6,10,14,16,22,17,16,20,43,47,46,34,24,20,20,12,0,2,3,4,3,5,6,6,2,4,4,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,19,18,19,14,13,14,24,31,27,31,26,26,26,17,17,34,31,24,26,32,24,23,24,32,36,28,20,9,7,4,2,0 +116,113,95,90,76,62,64,62,23,30,28,33,34,31,51,46,23,32,37,33,34,29,18,10,0,0,0,0,0,0,0,0,7669,11638,15176,16708,11728,14030,12505,12766,23312,23768,24952,22746,25526,30100,34946,34055,16582,19994,18108,20390,11793,15358,15434,27946,30709,26942,24766,25382,24798,21626,17927,12447,82775,78830,70788,42582,20894,28312,24620,43549,51318,55793,39630,34016,36297,27920,20225,9398,7095,6262,6144,10760,9539,14373,15572,25353,13657,16444,24770,35666,43326,34008,30421,38390,10678,13362,13060,14595,12159,13416,14916,19928,15721,15718,16115,23194,26450,27664,24482,30250,0,248,492,896,1162,2253,2571,3956,7031,10902,14131,11962,9938,15006,20060,22850,0,2,5,7,5,7,8,9,11,10,10,10,8,10,11,12,0,2,5,6,5,7,6,7,5,7,8,8,7,10,9,9,2,8,12,13,11,18,22,24,19,21,17,17,22,20,18,20,10,14,16,21,26,28,34,30,45,44,44,38,27,24,22,14,0,2,5,6,5,7,7,7,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,22,18,18,14,16,20,29,38,36,36,38,30,30,20,19,35,36,34,40,42,44,32,32,36,40,30,22,10,8,6,4,0 +185,175,142,105,81,81,68,51,21,26,25,31,20,23,28,30,17,20,20,25,22,18,12,7,0,0,0,0,0,0,0,0,11002,17712,20244,29453,15937,16430,21748,23347,25071,19882,22732,25808,29473,33982,28333,25834,22421,19956,22524,18377,9082,12401,19310,19733,31870,26299,31098,28584,21167,20242,13383,10763,86971,85913,80482,54924,33352,32671,32536,34961,50925,47915,41113,34450,55999,37529,19408,10379,5980,5385,6811,8035,9299,11891,16732,27084,15206,26288,38717,52718,41170,37878,31570,28511,9950,10776,16984,21903,18050,18207,12952,16196,15584,21185,22023,29491,30796,29232,30434,30956,0,256,555,1052,1383,2217,4106,5402,7918,10868,11692,14796,7093,13338,15168,20796,0,2,4,6,4,7,8,8,11,9,7,8,8,9,10,12,0,2,4,6,4,6,6,7,6,8,8,8,8,11,10,10,3,10,12,13,13,18,26,32,23,29,29,20,28,32,26,24,9,14,16,21,39,44,40,36,46,32,30,32,24,20,19,14,0,2,4,5,4,6,6,6,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,15,10,22,26,35,32,34,44,36,31,32,29,20,35,31,37,50,45,42,40,42,44,38,32,22,7,7,6,4,0 +212,174,184,142,111,90,73,57,20,24,26,24,15,23,26,34,8,11,12,14,13,10,7,5,0,0,0,0,0,0,0,0,10860,12462,20088,25948,27755,24414,33268,24478,32684,29182,25881,28115,23690,27310,33687,26074,32057,32544,24332,21340,9887,14088,19787,21098,29640,23981,23948,28264,15969,15478,9984,9054,97275,83714,71941,50812,46903,47354,50031,51778,54798,62736,45407,43120,57593,44417,15779,8592,6224,5146,5311,6264,6447,11950,18031,27092,28348,30507,46818,46593,34864,32254,35330,35685,8512,8288,13806,17762,19427,14856,13358,14606,18156,20524,25464,30086,29319,36940,43009,30210,0,356,893,1378,1836,3008,4479,7404,8730,9920,12364,10424,8564,13852,16665,23390,0,2,5,7,5,8,8,9,10,9,7,9,7,12,14,14,0,2,5,7,5,7,8,9,7,10,10,8,10,11,12,12,2,8,14,16,18,23,32,28,23,28,31,30,34,30,29,36,13,19,19,32,38,40,49,47,52,38,34,31,23,22,22,14,0,2,5,6,5,7,6,7,5,7,7,8,7,8,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,29,24,17,11,20,30,43,42,46,54,57,47,41,28,25,56,52,54,62,67,64,53,58,38,33,26,19,8,10,7,5,0 +275,190,159,110,55,46,24,18,16,20,29,42,61,65,61,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11941,11570,13595,13478,14344,16736,25390,26454,31884,35578,49632,45193,39996,29398,33190,21818,48972,59619,56899,52978,34726,38027,38466,31805,24546,21164,24358,22822,22548,23587,17323,9272,93787,88962,69679,54590,21817,40735,55981,66620,71120,54784,60741,42838,24744,15587,11763,5778,6681,12657,15906,22012,26420,25617,25962,27253,34460,31016,34705,39697,57837,60288,42799,42260,4447,6376,9276,12442,15741,11925,10947,15047,19582,24916,27954,27280,39369,38636,29254,38081,0,1622,3604,6478,7226,8611,10565,9790,9636,11499,10091,9967,12800,12711,14332,20336,0,2,3,4,3,7,8,10,8,8,9,12,15,15,18,18,0,2,3,5,5,7,6,7,6,8,8,8,7,8,7,8,2,6,8,12,11,15,21,23,26,30,39,53,70,83,72,67,19,24,25,34,31,46,50,50,50,53,41,42,35,26,26,16,0,2,3,5,4,6,6,6,4,6,6,8,9,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,30,31,32,46,44,51,48,44,42,30,12,13,10,12,61,69,86,76,68,65,59,48,36,42,34,31,24,24,15,8,0 +196,188,133,100,69,56,44,32,44,46,46,54,51,68,62,62,9,11,8,6,7,8,8,8,4,5,5,5,4,4,2,1,11695,14032,12886,9856,18977,23316,25238,26412,26211,29062,41536,39756,24499,23092,22154,18038,33194,35386,37198,34610,35017,32887,32752,30720,18423,19023,23550,23828,22775,19486,15546,8872,72297,82366,80849,52122,22314,36393,43444,68620,74176,63718,47922,41780,22988,15075,12036,8438,5913,10170,13560,19031,29882,27562,35075,36885,37817,38062,46242,60298,67490,59712,36453,27948,17836,13128,17411,13436,12520,11880,15202,15410,17742,21719,27017,37084,45306,43376,40797,39280,4160,5422,6228,7367,6044,7942,8755,7982,8103,8573,10583,11120,12476,12256,16216,15371,0,2,5,6,5,10,8,10,14,14,14,17,15,18,16,18,4,6,7,8,5,8,8,8,10,10,9,9,9,12,10,11,2,6,8,10,12,16,16,22,30,38,51,60,54,64,87,68,43,44,40,46,38,55,60,84,55,61,60,60,41,38,36,19,0,2,5,6,5,7,6,7,6,7,7,10,10,10,11,9,2,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,48,42,48,42,52,47,46,51,47,65,70,48,27,29,28,29,63,81,101,94,96,88,66,50,41,42,30,29,28,21,15,9,0 +141,142,139,115,77,69,50,48,65,61,68,58,61,74,63,53,18,17,14,10,13,13,14,14,6,8,8,8,6,7,5,2,11252,13588,13368,12042,17784,19257,25894,23098,25648,22502,20207,28354,15672,15991,17686,22678,28704,27238,30166,28243,29321,31541,28077,21310,19282,17226,19878,20779,17834,12039,11938,5993,62686,67900,71114,47056,16804,26363,40214,69035,83656,75800,46300,33858,14371,17193,15097,11273,7690,11379,12758,16761,26314,33058,39507,37892,43458,48719,55600,57546,62020,48348,34494,26652,27787,29240,21492,15972,12633,14074,14443,14582,12821,16197,23828,26872,39961,40454,48064,44141,10144,8394,8742,7619,4419,7313,9008,8413,6391,7465,8402,9101,10557,12396,12782,10192,0,2,4,5,6,8,8,10,16,18,14,17,16,20,18,17,6,8,8,8,4,7,8,8,10,10,10,10,11,12,12,10,3,5,6,8,8,12,16,18,24,39,48,59,34,50,76,94,72,59,50,47,43,56,74,77,57,72,82,88,54,49,33,22,0,2,4,5,4,5,4,5,6,7,6,8,8,8,9,10,3,5,4,5,3,5,4,5,1,2,4,5,4,5,4,5,51,52,50,51,65,60,55,64,61,60,75,65,39,38,36,39,91,127,122,119,92,84,82,64,55,40,30,25,22,20,12,7,0 +160,150,157,110,90,82,70,48,73,72,87,71,76,78,90,76,29,28,26,24,15,20,20,24,12,13,14,14,9,9,7,5,10358,12314,11135,13002,15021,18950,21843,23620,25956,22320,18161,19572,12136,12928,12149,17769,24553,21784,26306,30316,24632,30218,27611,24979,19766,20084,19470,20602,14882,11483,8826,6349,83318,75828,74994,52746,25644,33494,33357,64242,68581,60106,50767,38992,20378,16098,13186,9354,7330,10120,17101,18734,27910,33723,32002,34918,51016,50694,43253,48368,59263,38094,25826,20241,38705,29810,23294,17696,9808,9978,10151,13870,11176,15416,27313,28405,32954,38600,51604,39442,12712,13816,11320,7422,5391,6740,8753,6645,3535,4521,5285,5664,6262,9226,11354,12582,0,2,5,6,6,8,8,9,16,18,15,16,17,22,21,18,9,10,12,8,5,9,8,12,9,12,10,11,10,11,12,12,4,7,8,9,8,12,16,23,18,30,43,48,33,63,94,92,90,57,55,56,53,68,92,86,81,79,84,88,75,55,29,18,0,2,5,6,5,6,5,6,5,7,6,7,7,8,10,8,5,6,5,6,5,6,5,6,2,5,6,7,6,7,5,6,56,44,52,56,78,80,71,80,94,84,97,91,58,53,38,46,73,86,111,114,89,88,60,60,52,46,34,28,20,18,14,8,0 +149,120,131,106,88,70,46,36,82,72,57,67,74,72,52,55,33,31,34,25,18,18,21,24,13,11,9,10,12,11,6,4,9252,12448,13262,13408,14928,19780,22456,19266,22868,19053,18220,14522,11705,8578,8195,11788,14987,20875,25365,28436,30358,30548,29298,27867,23595,15912,14770,15872,16546,11073,7003,4133,79664,64507,37314,32209,31397,41091,46181,58733,67953,47436,35564,31052,23106,20806,16124,12777,6191,7418,12186,21272,25540,44141,53531,43144,62059,84791,80739,65274,54251,45521,38396,18466,39415,35207,32534,20569,9404,8760,7393,8716,6880,18770,25020,30040,40034,39012,45122,55442,20126,17086,13617,8868,5189,4956,4616,4232,2082,2372,2043,2486,3342,6846,10114,13796,0,2,3,5,4,5,4,5,18,15,14,16,16,20,18,18,12,10,9,7,4,7,9,12,8,10,9,10,8,8,6,7,3,5,6,8,9,12,12,17,13,26,30,37,38,54,83,108,88,67,60,54,44,68,97,109,115,114,104,103,78,65,33,18,0,2,3,5,4,6,6,5,3,5,6,6,4,5,4,5,5,7,6,6,4,6,6,6,2,4,4,6,6,6,4,5,64,56,61,61,72,67,55,68,109,98,128,130,98,102,77,72,77,83,65,104,120,107,73,66,42,36,23,20,22,20,13,7,0 +159,178,194,156,125,114,90,68,82,82,57,81,80,80,48,64,40,37,42,32,16,22,29,31,24,20,13,15,16,14,10,6,14884,16469,15024,17954,22228,18742,25848,18174,24266,19466,20920,18856,11159,9376,10026,10444,12484,17042,17047,16728,23596,22908,20945,21764,22446,15494,11558,10734,15910,9442,7149,4810,79569,64122,64934,62268,31273,42359,46052,52438,62098,42190,30139,27426,22442,20267,13840,10356,7994,13140,19054,25258,38272,49392,42476,48970,54440,70278,78986,45612,51986,37758,35266,21378,50971,41112,31623,29462,11264,11297,10321,14696,8590,18556,24895,25226,43016,43851,33950,47663,23952,16606,14198,9364,6020,7211,4761,4497,1567,1593,1932,1726,2816,4454,8418,10866,0,2,5,6,6,8,8,8,22,18,12,18,14,17,17,18,17,12,10,10,6,8,8,12,8,10,12,12,10,12,11,11,6,8,8,10,12,13,11,16,14,26,35,40,49,74,97,99,88,77,72,65,56,92,84,104,109,115,78,96,68,66,38,26,0,2,4,6,5,7,7,6,4,6,7,7,5,7,7,8,7,10,8,9,7,8,10,8,5,7,7,8,7,8,10,8,49,59,54,82,93,72,66,62,118,99,122,120,149,114,90,76,99,104,94,106,142,117,83,86,73,58,40,41,28,24,22,12,0 +178,214,192,146,123,128,111,74,98,64,56,64,100,87,53,61,47,39,45,36,16,26,28,27,27,27,20,21,14,12,10,6,17978,17250,20198,19987,25788,27352,22327,18596,20893,21884,22023,19940,12124,13554,11311,11679,14007,15197,12442,17978,12363,14618,14820,10614,14809,11090,7426,5844,12084,11402,7026,3337,66848,81425,73260,75047,40534,43563,35544,47611,41781,43823,35808,32254,16578,12254,11616,11524,12232,15662,23188,27990,47314,49654,52166,52957,38486,53464,54704,43206,38434,32415,29678,24392,50303,42017,44124,33531,11300,17290,17796,22419,10056,18437,22932,25561,39032,34836,32928,42468,23954,18270,12963,9608,7787,6735,6106,3579,1411,1288,1194,1261,2339,2938,4225,4174,0,2,4,5,6,10,11,10,19,19,12,15,9,15,20,18,16,13,12,11,6,8,8,12,7,10,12,12,9,10,12,14,7,8,8,9,12,11,10,13,10,29,42,50,70,80,95,98,68,73,64,74,59,77,108,100,136,98,80,86,83,68,52,36,0,2,3,5,4,6,6,5,3,5,6,7,4,7,7,8,8,10,8,10,8,10,9,8,6,8,8,10,7,11,11,10,47,49,62,92,86,90,64,66,86,106,93,103,151,154,113,117,90,98,120,142,126,130,94,81,80,77,67,60,32,30,23,12,0 +168,214,203,140,114,134,144,96,110,86,64,104,122,96,66,80,68,61,58,36,16,24,21,27,28,26,20,22,15,12,12,7,20402,21043,19031,19834,27908,24781,20934,16948,21377,18384,13464,12722,13489,11878,11366,13234,16896,18165,12324,15678,7105,9710,10728,8928,10395,7774,6082,4902,6880,6850,3444,2191,68244,98474,81352,77064,51470,51197,44769,44252,32134,29411,33892,36256,24586,18280,13778,13152,14839,22578,27891,34694,42586,46480,39135,51486,46256,48783,45675,33685,25701,24942,22833,18902,41000,40851,34592,29110,13267,17825,23496,20418,14458,23320,27477,40630,40039,41386,33370,39505,27624,20700,16568,14256,12081,9923,7494,3650,593,608,714,664,994,1586,2030,2015,0,2,5,6,7,10,11,13,15,15,12,15,9,16,22,17,22,18,19,15,10,12,11,14,8,12,11,14,12,12,10,13,8,10,10,12,11,10,10,13,11,34,66,58,78,94,118,118,105,107,72,85,91,88,122,102,97,102,90,84,90,66,56,32,0,1,2,4,4,5,5,5,2,5,6,7,5,8,10,10,8,9,8,10,8,11,10,8,7,9,10,11,8,12,14,13,63,62,71,90,84,72,66,72,93,103,86,104,163,126,99,112,116,122,145,126,105,132,110,98,108,109,73,65,42,36,22,12,0 +158,144,87,97,106,89,96,136,200,184,181,218,185,140,85,80,90,79,63,87,108,86,53,37,29,24,15,13,7,7,6,4,26422,29805,38686,31176,37517,54568,53984,52716,47930,38716,45935,30583,21353,21194,27910,28471,23358,22224,15043,17916,20780,12900,10360,5866,0,0,0,0,0,0,0,0,83008,72149,73683,51231,26549,28530,21748,21489,21819,29796,33431,36982,29043,29080,26198,20377,18770,15177,11743,10295,7006,11815,22042,33524,40034,31382,18691,15914,19988,16670,14746,14234,43361,60216,91282,90081,119990,106760,88836,93359,93496,95482,79380,79692,66990,56712,51729,35269,28740,30623,22353,24467,19458,16842,21042,18806,21602,18861,18146,15913,15812,13203,9320,5088,0,2,3,5,5,12,20,22,26,28,28,25,21,20,24,20,20,26,23,24,22,18,13,13,16,17,11,10,8,8,7,8,7,9,11,12,10,28,47,64,72,70,82,116,154,140,143,119,124,108,55,48,31,21,18,13,9,10,12,18,18,16,18,13,0,2,3,4,3,5,6,8,8,9,10,12,13,12,10,8,6,10,15,19,17,18,23,26,21,20,25,24,15,16,11,10,66,97,145,173,197,187,145,154,181,192,156,124,65,82,89,118,110,120,96,63,57,62,86,109,143,127,110,90,90,60,49,21,0 +170,142,106,90,130,122,121,148,146,180,182,196,142,146,118,108,98,115,171,270,267,397,576,1030,1162,1238,1312,1134,1576,1420,1570,1508,36998,40827,47017,42726,33227,43244,62803,52684,42363,43466,42907,33056,18048,23009,24283,23043,24150,25040,18844,21816,21208,14953,9889,7330,3980,4709,4286,3173,4390,3748,2626,2176,58776,63046,47416,43948,30980,27832,21690,23976,15466,29136,32602,30609,27253,20146,22091,16887,20221,18011,12356,13759,8608,13504,20665,31348,33795,33894,21065,22430,29244,20646,14076,11778,29036,43371,71662,83773,77408,95318,72703,71386,124326,94450,97969,84008,53275,52572,41257,39703,42543,28683,31681,32422,25210,19787,16410,15470,19000,17923,20299,17102,16827,12399,8127,5376,0,2,5,7,7,13,18,17,26,25,26,23,20,23,21,20,21,28,25,24,25,23,22,18,24,20,12,12,10,11,11,12,8,10,10,14,12,30,43,60,75,84,84,103,148,156,121,134,111,113,66,49,31,36,47,39,28,28,21,26,24,21,22,19,0,2,5,6,5,7,7,8,8,11,14,15,12,12,9,10,10,14,15,16,19,18,22,29,15,21,24,21,13,14,14,16,106,128,166,176,211,181,140,142,174,150,149,94,52,80,78,114,78,75,75,66,55,56,74,84,130,133,96,85,99,66,41,24,2 +176,148,123,99,115,124,142,140,105,114,134,137,152,135,139,121,95,160,290,419,424,840,982,2296,2615,2840,2564,2773,3828,3851,3504,3182,46961,52249,62272,48737,28736,33236,53378,55657,56918,45686,41217,33358,17232,18538,17343,23522,26785,31474,29574,31692,17365,16675,13353,10902,7180,9152,8164,8599,8239,7760,5377,4178,57547,53323,43822,42362,30121,31437,26371,28483,15327,19686,24768,24318,18068,16853,17420,15934,21921,21968,16002,19765,13258,15634,19736,25330,29239,27868,30851,32620,33437,23578,17524,11996,22875,30871,39453,46217,67547,66388,57357,51485,119634,109011,102168,73980,48899,46538,43618,26550,44712,37301,36016,29724,24357,21493,16134,11460,20839,21725,18032,16794,12540,9993,9262,7267,0,2,5,7,6,12,14,18,19,29,28,32,24,25,23,20,22,28,28,26,20,25,22,24,27,18,14,19,12,14,11,10,7,8,10,16,16,28,44,52,81,83,92,76,140,167,149,182,147,126,68,56,42,55,60,53,48,38,36,27,22,20,23,24,0,2,4,6,4,7,7,10,8,12,15,15,13,12,8,8,9,12,16,18,16,17,22,26,12,16,14,18,12,12,12,14,133,125,134,114,172,146,154,111,122,125,91,81,55,74,88,91,66,73,56,58,34,53,58,56,114,78,70,63,78,50,38,25,4 +135,123,153,126,129,124,104,106,86,115,147,152,135,136,155,158,86,238,568,601,742,1021,1486,2578,3401,3788,4408,4554,5714,4626,4025,4100,56068,56504,66900,55428,40385,46918,52577,65291,53280,47576,44986,33744,20030,25632,26957,27514,20784,27865,28105,32202,16847,19030,16878,13359,12376,14955,17596,13352,10648,9094,6528,5384,56857,57776,54694,38832,21306,28002,27293,32473,16808,16610,15254,18155,16142,13218,13852,12552,19536,20011,17566,19818,17428,20615,23971,21096,38227,31497,32914,33804,29195,29706,17360,11506,20636,22626,34965,30712,32718,41848,42261,36973,86096,96201,79432,68778,62610,49369,52365,36121,37689,37832,36212,35142,27146,25270,26023,19231,16156,18751,14337,16389,16166,12492,11268,8908,0,4,7,8,8,14,19,20,25,28,29,29,20,24,20,20,25,30,24,24,20,22,24,25,23,24,18,19,19,17,12,11,8,12,12,19,20,40,56,67,77,81,61,64,92,129,155,152,139,97,91,68,48,64,64,60,65,49,37,31,27,22,21,24,0,2,5,7,5,8,8,11,10,13,17,14,12,12,10,9,12,16,15,18,20,21,19,28,12,16,15,20,15,15,14,18,136,121,103,104,187,160,165,118,90,76,74,77,77,84,125,124,60,67,60,55,47,48,61,58,73,66,63,64,67,41,32,21,7 +151,137,136,123,137,110,129,87,65,98,98,134,156,144,121,154,48,289,544,902,1012,2550,3772,3596,4974,3963,4008,4544,5747,7806,7263,5467,67922,75399,61470,54891,50397,66220,61840,67338,66097,59853,44861,30777,29927,21926,23819,27839,22060,17942,18419,17490,21617,26559,24972,21182,18366,20746,17811,21201,17576,14724,10440,9414,72362,63270,54298,41717,20949,17978,19736,22494,15339,16272,18725,18433,12806,14648,11910,9908,24954,28798,25750,26498,22585,21187,22367,20570,34550,41235,39581,45904,38374,33842,24450,16611,27041,23516,16705,13964,10014,11932,19045,22750,91170,88766,69433,72207,56375,38942,35664,29777,48859,43302,46125,46213,39904,30524,28362,17209,10196,14416,17604,17672,16817,12441,10772,8022,0,4,6,8,8,13,21,24,30,28,35,28,20,19,18,17,29,27,20,16,17,18,23,20,26,29,26,20,20,17,12,14,10,17,18,16,18,41,54,79,92,99,79,60,46,102,137,179,101,95,77,72,42,46,48,67,60,52,37,33,36,36,34,34,0,2,3,5,5,8,9,10,12,10,9,12,12,10,7,7,10,16,16,18,24,31,28,36,8,10,13,17,16,17,15,16,131,111,98,106,156,182,160,133,48,68,73,84,77,100,107,136,37,50,46,38,44,61,58,62,58,73,74,66,50,38,31,21,7 +98,100,97,112,120,125,123,87,68,80,88,102,155,112,99,116,56,442,730,1370,2944,4018,4534,5133,7100,5740,4963,5664,6032,7482,7258,7735,67110,64528,69526,45657,32588,42414,62326,52177,57298,49019,45030,55500,49133,41366,44280,55006,19800,16203,18012,20930,28330,24942,24356,25290,19238,17435,21071,18604,21895,17274,10367,10262,70328,53998,51765,46385,21192,25348,27698,27751,12834,13481,14946,13793,10179,11675,8716,7806,25070,25590,30162,22872,15950,16036,24146,20168,46056,38390,36756,33085,29191,31278,16080,11946,25159,21685,16016,13712,10366,14484,14381,16112,78356,69862,51544,42781,40473,33578,24025,23022,34303,42920,36862,43051,36322,26459,23853,21116,11984,12713,16944,17232,16220,15139,13534,12086,0,5,7,8,10,16,20,26,28,32,39,28,28,20,18,18,25,22,18,22,21,20,20,21,22,26,24,22,24,20,14,14,12,16,21,19,22,41,68,73,81,75,73,51,54,82,118,153,172,138,96,84,77,57,53,82,77,80,78,60,47,40,44,44,0,2,5,6,5,10,9,13,16,15,12,14,11,12,8,7,12,15,16,19,24,30,30,32,15,18,18,19,24,26,18,22,134,100,99,122,147,142,141,114,46,82,72,97,128,148,116,146,33,44,41,38,37,48,42,44,45,50,65,48,44,36,36,22,8 +88,78,91,115,147,145,122,85,70,77,72,92,106,114,90,94,82,771,1216,1678,4405,6034,5758,7887,7911,6542,6150,5282,8363,11104,10743,9804,57108,62879,54625,45054,21113,26563,42476,34841,59363,41272,42016,49574,57662,55723,59240,50236,17464,16460,16351,19732,27740,25447,25802,23309,21538,21082,22101,20184,24152,14712,11968,10272,56004,62266,51500,50940,23306,24244,28364,30830,12275,12303,15138,12018,10626,7416,7220,5809,17106,25972,27215,24923,16192,15388,20792,18377,42320,39302,29003,31306,34419,28422,14420,9269,18848,13545,11940,10952,13067,11609,12224,10284,65534,55230,43606,27956,28476,21560,15118,18348,32934,30874,37780,47826,22392,22006,26569,21249,13188,14568,17502,13935,18363,18327,17208,16216,0,4,6,10,9,17,20,24,30,40,36,34,26,21,16,17,20,16,16,22,21,20,20,22,24,24,20,16,20,16,14,10,14,18,20,20,18,48,62,63,59,57,43,46,44,73,98,106,199,174,104,100,89,89,59,78,91,90,93,95,46,39,42,40,0,2,4,5,4,7,9,14,14,15,14,13,10,10,7,6,9,17,18,18,22,22,28,40,24,28,22,26,24,22,22,29,143,125,84,107,136,110,118,98,53,72,102,89,220,162,176,200,25,34,32,37,23,36,38,32,40,45,38,38,50,46,30,20,7 +84,78,64,87,93,106,123,86,72,62,65,76,84,92,107,116,83,1124,1924,2904,4206,6014,6536,7954,8490,6510,6951,6826,9049,10596,11924,11492,66138,56765,34389,27042,22139,27822,32017,34644,39819,39926,48154,58388,65892,57722,50518,59175,12088,11492,13123,21890,27502,23503,27185,21784,22950,27189,19876,24770,22764,20674,18548,14642,55798,55609,33552,42133,36662,31002,34954,33972,15190,14998,13820,11202,11263,7102,5980,4430,19758,28708,34257,27316,18269,19130,23578,28834,44410,33780,32585,29230,29495,22828,13075,8532,14785,13228,12408,13066,15809,12784,11584,11801,30369,32364,26472,20587,19799,14632,10328,11964,24009,26340,28620,37046,25167,31129,33801,31212,18460,20024,24841,17282,16948,16870,13740,16598,0,4,6,8,8,16,17,18,22,28,26,32,27,25,20,20,31,25,20,21,29,29,23,20,21,24,22,21,18,18,13,10,12,16,18,21,16,41,48,49,63,57,36,37,28,58,73,101,219,169,125,114,101,92,78,82,95,96,91,88,55,58,57,62,0,2,5,6,5,7,10,10,12,14,12,13,8,9,7,6,13,16,16,16,13,19,23,40,27,28,24,29,26,28,30,34,143,138,104,100,121,108,98,95,88,99,120,170,293,216,143,178,14,22,20,26,20,23,30,24,30,28,25,28,41,40,23,20,10 +75,78,84,64,46,70,74,76,86,117,152,153,155,138,99,96,71,814,1559,2882,4224,5814,7682,8488,7868,9751,10685,9294,7576,11065,14337,15598,56477,39510,35197,24800,16498,15278,21059,21931,31699,51379,76450,83248,79153,73962,76406,73878,6740,8513,11928,14068,20268,15823,13620,15200,24045,22656,14739,13584,10091,11081,10478,12582,48277,49203,49934,49524,40631,30929,22687,23939,23251,20601,17176,16780,19543,15794,11653,7600,31033,31098,27786,26081,28526,32844,33931,33148,32050,25092,17514,12035,9984,9514,6496,3604,16570,16781,11838,16332,20319,14588,14025,10167,8884,7070,4532,6117,5897,7252,6602,8392,25908,22547,19599,28753,31870,27464,21434,22248,26856,18194,13781,17730,16820,18177,18633,20146,0,5,8,12,12,12,12,17,16,14,9,8,6,14,20,24,32,31,41,45,46,42,30,30,25,26,31,22,19,19,14,8,11,14,13,18,26,32,33,50,50,71,72,67,56,64,78,91,243,240,162,130,138,107,124,110,96,107,112,102,83,70,74,84,0,2,3,4,3,6,7,8,7,7,5,5,3,4,3,2,13,14,12,10,7,18,23,34,38,32,27,40,39,30,24,27,106,76,55,56,39,56,62,76,102,90,115,130,182,198,217,248,0,2,3,5,4,7,8,12,16,18,23,22,20,18,10,12,9 +60,64,69,52,32,56,60,70,65,112,143,154,133,139,92,90,58,850,1270,2275,3560,4673,5850,5984,7424,7801,6996,8501,7188,12326,14191,13878,43820,33134,31557,23410,13943,22457,25360,36539,32642,47492,65976,77352,53735,55603,81350,79392,5839,8080,13545,18290,19644,20555,17515,21761,28356,20871,18573,15188,15372,12605,10822,12996,37360,39970,45840,41002,38149,29499,20681,24528,23817,21918,19157,19192,21518,15920,11224,10000,35446,40065,32815,31636,33872,39960,39435,42026,36664,28525,22950,16932,16079,10860,8105,4468,15543,13720,9196,11458,14848,13376,10872,8986,7047,6376,4192,4942,7399,7144,6812,9654,27261,24218,18567,29070,22300,19253,21305,17267,24592,21244,15990,17411,22244,24001,18514,16699,0,6,12,16,15,15,19,23,27,22,15,14,10,17,21,25,32,34,37,39,38,38,31,26,27,30,38,28,20,20,14,12,17,19,17,22,34,36,39,46,55,66,80,75,60,66,89,72,197,176,189,148,174,162,142,100,102,122,165,105,116,86,79,82,0,2,5,7,5,8,8,10,8,10,12,12,8,8,7,5,15,16,14,14,13,18,22,28,28,24,23,36,38,38,37,42,112,100,53,64,58,62,68,83,96,102,142,148,163,182,180,208,48,42,38,31,29,32,26,39,37,49,56,50,59,44,42,32,20 +44,41,48,41,24,32,41,50,63,88,136,152,143,139,106,98,52,674,1402,2618,2030,2174,3255,4015,6806,6350,6734,6144,8681,11942,15316,17654,40244,36844,25612,19158,14460,33455,41558,48988,41938,51507,48744,61670,42578,54644,64868,55094,5782,8923,13360,22646,27002,20188,23393,28029,24672,22359,18390,21655,16410,13015,13218,12281,30064,36270,36806,41945,30162,30025,20406,26356,16981,18681,16912,16047,20843,17392,15841,14442,48608,33910,31172,29025,41820,45568,50237,46746,29214,21498,21250,15763,16945,13503,10462,6467,14432,11871,9317,10402,15917,15549,10576,11116,5747,5151,4262,5007,6496,8956,9038,9793,29343,24782,19994,31002,18451,18044,14604,21297,28703,26496,18460,19754,25724,19720,20550,18703,0,7,11,14,20,24,20,19,31,27,22,17,11,15,18,23,31,28,28,41,37,30,28,23,27,26,34,31,26,20,11,10,18,17,20,24,34,31,38,52,41,48,64,76,68,79,70,72,155,178,186,142,196,151,122,84,150,167,177,130,123,117,104,84,0,2,5,7,5,8,9,10,10,14,14,13,11,12,8,7,15,17,14,12,15,20,21,24,18,26,25,30,27,38,38,47,137,117,72,60,62,82,81,76,121,129,146,129,91,98,143,133,80,94,76,57,58,60,48,53,53,80,83,66,91,85,60,54,36 +44,48,52,38,26,32,35,47,46,62,112,100,88,112,97,94,55,460,994,1612,1562,1518,2060,2786,6954,5474,5690,5956,7802,11816,18700,16331,25574,23930,24974,20354,16522,34708,48819,49386,50122,45820,60617,55816,48128,54235,55867,66225,7063,11661,18572,25933,34151,32246,32980,29868,28344,24677,20315,24662,18103,22370,22848,19936,22684,32134,29274,34766,31714,25046,25313,20064,15232,14191,12989,18734,18910,21045,18055,16029,63300,41090,32050,34014,34551,49908,47204,46615,34730,32776,24367,18568,18202,12115,12803,6855,8885,7954,8819,8780,13327,10440,7808,8763,6455,6083,4377,5264,5597,7731,8903,8952,28303,20952,15007,19312,19788,14986,15172,17038,23624,21284,13982,22570,27362,22444,19485,16982,0,8,12,16,21,26,21,30,28,30,21,17,10,19,26,26,25,24,23,32,36,30,34,24,32,27,35,32,22,20,12,11,20,19,18,24,26,35,39,41,26,42,65,74,54,70,78,74,156,176,183,162,223,148,137,105,148,174,191,157,140,136,128,138,0,2,5,8,7,8,8,10,14,17,23,23,19,15,11,10,22,16,17,16,19,18,19,24,13,22,24,31,31,42,46,57,98,100,68,74,56,60,75,70,110,112,108,101,90,105,83,94,117,121,110,82,88,82,70,74,99,114,108,108,105,110,82,66,44 +52,47,46,29,21,24,29,38,17,31,51,55,67,84,79,64,57,226,344,490,750,901,1412,1149,6931,5472,6610,6446,8429,9680,9461,14975,9890,11070,11234,17986,23321,21545,22701,31592,61992,49052,38804,51141,52708,49969,58303,74676,7011,11378,20635,30756,31326,32552,32749,32703,22767,24815,20525,20426,27218,22134,12959,16630,17057,22938,33146,33591,33803,29536,20896,19218,12665,14832,16910,22957,22462,17634,21443,16478,58418,54666,36258,33462,36148,40818,40052,51951,45656,51085,41756,25449,18271,15772,8490,4551,4657,6769,6856,8799,9436,6409,5616,7719,7991,6082,6388,5822,5302,6932,8698,6956,23535,24209,22214,25874,22166,20460,21589,13009,26460,22905,21178,19913,23691,22506,16145,13234,0,7,11,17,22,29,27,28,28,24,17,15,10,13,17,27,11,18,28,30,29,24,14,16,32,29,26,20,20,19,12,10,18,18,17,20,26,27,23,33,14,18,25,44,56,66,58,71,202,171,211,207,196,179,196,159,135,123,163,162,162,126,104,136,0,2,4,7,7,10,12,12,14,17,24,26,20,16,10,10,22,18,13,13,16,17,16,17,11,12,13,20,26,29,32,42,97,94,66,71,72,84,72,69,80,90,96,79,73,72,57,52,128,132,111,119,96,90,81,95,140,136,95,97,138,103,74,60,43 +49,42,35,28,19,25,25,26,12,24,46,46,61,62,74,56,38,148,327,390,482,589,1037,854,4420,4808,5552,5760,6521,9388,10793,13416,11204,12892,10061,14924,13668,18718,30896,39500,56934,45868,32520,32804,63442,67303,67476,69632,15426,16736,22812,26032,24048,26293,30950,30560,30620,30188,31670,22521,45909,34114,23887,25677,25493,26166,24731,28618,27499,24902,14354,15536,9938,17218,22004,31178,27007,27047,23230,25027,46120,40158,36827,34540,33954,35982,36714,52751,45981,47754,33347,25011,14475,12332,6828,3952,3558,4774,5960,7334,5423,4689,4292,4868,5355,5363,5718,5288,4602,5736,6978,6306,16949,17463,19303,25644,22559,21294,21298,15264,27124,26050,23488,22366,23858,21470,19048,17479,0,8,15,19,25,30,31,28,28,26,22,22,22,24,18,24,12,22,30,31,27,26,19,18,25,28,26,20,17,18,17,14,15,20,24,21,28,26,21,28,14,23,32,48,57,71,64,66,150,140,226,224,210,172,178,156,163,164,160,156,156,158,138,124,0,2,5,8,11,13,12,14,12,20,24,24,20,14,10,12,16,18,17,18,20,20,23,24,13,18,18,26,34,38,34,42,74,70,62,56,74,72,75,61,63,66,80,65,77,64,77,94,147,118,109,108,102,91,97,110,117,122,132,138,168,136,86,62,47 +36,34,25,18,12,17,19,23,7,17,25,26,44,45,44,53,19,99,209,217,291,500,606,510,2654,3532,5370,4570,4818,7995,11470,14387,9924,9295,12728,11524,10502,19072,30282,49765,41671,45696,41312,36398,57267,64504,68434,57043,30926,32159,25041,21958,27540,28692,21976,23642,32392,37713,35436,35336,54631,42740,36488,35250,28916,28823,26716,25542,22895,17040,14780,16057,9925,16142,29070,37041,33776,37514,31320,35504,33445,32404,30420,27534,26611,27528,36388,45607,42456,40481,32666,22451,15398,12349,5910,2846,2929,3672,3688,4798,3512,3143,3360,4064,4160,4805,4122,3673,3762,4244,4268,4648,14363,20531,19944,27699,17636,14535,16872,20303,21184,22628,18562,25639,17530,17652,21460,19114,0,8,16,22,25,23,26,34,28,25,20,26,30,23,23,24,14,23,28,26,24,19,18,16,20,19,18,20,11,14,15,17,10,17,22,26,20,28,26,23,10,20,29,45,82,96,82,81,155,151,183,196,161,165,168,177,236,255,212,193,175,158,181,143,0,2,5,8,11,11,11,13,12,18,22,20,17,17,11,12,12,16,18,22,28,34,32,29,18,20,26,30,29,33,29,42,46,42,37,47,69,72,56,41,48,60,58,69,60,74,74,111,179,130,97,105,80,99,108,114,88,93,140,180,172,160,112,78,65 +22,21,12,10,7,10,12,14,5,11,14,14,22,26,22,29,12,59,105,113,145,208,268,264,1508,3307,5128,5479,6081,7508,11476,13749,12162,12742,12326,9504,11011,22809,32863,45573,43638,42012,43065,39209,59317,63557,75436,67204,40460,34752,30491,27120,30634,26400,19980,21675,30922,32524,42878,33588,43918,46946,34100,36487,25167,26766,39266,36419,28031,26176,24759,16442,13366,19799,26768,34465,39818,42762,43348,45309,45134,42836,30944,26448,22577,22602,23882,32452,47848,36051,27116,14770,13330,9086,4658,2174,1733,1694,1999,1979,1847,1716,2173,2260,2177,2759,2544,2880,2820,2777,2712,3396,7768,15210,16201,18501,19286,17970,14918,17974,17133,20731,19222,19498,19331,24554,24501,27142,0,8,14,24,25,24,25,30,25,27,24,28,39,38,34,34,18,24,22,25,21,17,15,18,20,19,19,16,10,12,16,16,10,16,23,24,19,26,24,20,14,27,37,66,86,112,126,132,161,136,113,136,146,146,150,199,218,285,202,222,233,228,191,175,0,2,5,10,12,12,12,14,12,19,18,22,20,20,14,14,14,18,24,25,30,34,37,34,26,24,34,42,38,42,37,39,49,56,53,58,55,52,42,26,23,36,36,54,44,77,120,126,164,145,120,89,47,91,108,114,109,114,102,124,162,136,118,74,55 +0,4430,7954,12047,18674,18520,23746,22199,28745,36470,32272,31829,36166,42030,39609,28079,29518,23802,26665,22180,15992,10696,6308,3487,0,2301,5488,9770,15848,13525,16425,14155,18842,15932,12541,6966,4160,2642,1494,794,0,0,0,0,0,0,0,0,0,4968,10139,12260,15504,14100,17372,17462,21262,20246,14158,9404,8217,16680,33373,35758,29756,43014,57181,59020,67454,82882,95587,84888,99668,120119,103194,70857,62578,73028,78248,55223,52710,44564,53889,47594,40694,30537,17915,15318,16691,17756,19955,13244,12165,8112,6639,3050,0,2066,4166,6528,9539,16104,23578,36792,48932,40252,37793,40386,47686,61870,56228,46408,40588,42320,31512,28443,35179,35788,36015,35926,41179,44256,36817,33136,33084,33492,31032,27319,0,2,4,7,7,10,10,11,12,14,18,24,22,18,18,17,11,11,11,10,6,8,8,10,8,8,6,6,4,6,6,10,10,30,40,42,50,129,181,231,228,303,281,230,274,253,317,305,210,252,305,230,265,311,288,349,381,335,231,305,316,288,185,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,17,22,22,21,32,42,41,49,41,33,34,23,18,11,10,10,7,3,4,3,2,0,4,6,11,12,17,16,16,19,18,15,19,18,20,28,44,62 +4,4258,9126,11742,12968,16014,22104,24154,27146,30304,31482,35628,23040,32130,36657,28575,19367,17636,25607,21101,15274,11534,7050,4262,494,3450,7272,9708,18367,16691,15372,19014,11963,12348,10930,8368,7183,6437,5236,6128,3599,4213,4999,4902,4523,4174,3959,3416,3366,6186,9474,9599,16924,17100,20690,18524,20953,21110,19224,22422,14081,26978,28391,38626,23640,39354,38771,54901,56940,61610,68426,73776,72518,94362,76112,77193,80671,72394,80751,68121,53128,53944,55770,47518,51156,31462,20374,14264,19509,17022,22179,16802,13356,9606,7660,3193,0,4082,8526,10941,12214,23190,29314,38766,55150,52600,43285,42735,47752,54424,62919,55681,39069,34468,31092,35498,51089,41007,39412,40644,31615,40046,29462,32997,28827,31974,28886,27951,0,5,7,10,10,11,13,13,19,20,18,22,20,18,19,16,13,13,12,13,10,10,12,12,8,9,7,7,6,8,8,10,22,38,43,59,75,146,194,205,222,218,286,270,203,231,270,214,280,288,317,246,299,354,260,334,396,308,206,286,332,314,212,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,8,8,7,6,11,24,24,32,54,52,59,54,41,40,56,34,46,44,34,26,15,18,17,13,16,14,12,12,14,20,26,23,24,24,27,24,18,20,21,24,24,30,46,43,59 +6,3905,8036,11959,11689,18835,21198,25616,16579,20476,22144,31558,21424,29030,27122,25702,15074,20670,20807,17409,9572,9319,6696,7170,1226,6265,9276,11042,16281,21528,20394,20128,9647,8026,10134,7664,9912,9172,8269,10858,8212,9742,9078,10573,7713,7082,8408,7329,8020,9460,10400,8396,15599,13812,18364,15086,26849,24418,30192,31628,22612,27726,33858,41778,13987,27485,34206,59936,31266,29585,40076,52287,42632,55257,65460,64704,84170,62286,60924,62639,52185,53084,69094,68515,47151,38966,19846,14094,19262,18648,22792,18806,12845,9912,7401,3606,0,5833,10609,18834,20987,30256,35438,41170,65393,58921,47898,37788,42293,48269,65400,58255,38210,33859,43703,39056,50568,46114,33902,33983,36139,39184,29282,35687,27698,26504,23678,21425,0,5,7,9,9,10,12,12,21,26,23,22,18,15,14,10,11,12,12,14,9,10,11,14,7,7,6,7,6,8,8,10,36,48,58,82,99,164,180,242,182,206,223,227,178,154,148,123,290,323,288,260,382,386,337,339,355,338,239,225,344,252,180,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,20,22,14,13,13,12,18,29,44,46,88,72,88,72,40,48,46,44,64,64,42,42,16,20,21,22,23,22,22,24,26,36,38,36,29,32,36,35,21,24,23,34,26,35,47,52,70 +7,3324,8274,12576,12308,16004,21156,19838,11497,12154,14100,23462,28602,31166,23957,17797,15740,16084,14386,12406,8158,9152,10111,8270,2012,5340,9093,8846,14774,16374,16113,17041,7941,7680,6799,7646,9194,10016,10451,17102,11570,14614,12536,12832,11667,14174,13627,14070,11133,10792,11753,11436,14629,12914,12572,12500,35404,27170,39325,37696,34642,36854,39102,36586,10710,17897,23988,44230,35063,39102,38023,43063,30128,36942,44643,46182,63843,57770,81736,70392,71185,73692,73022,59516,53753,35264,17516,15702,30140,20593,21956,17426,14058,10290,6422,3328,0,6770,12482,25718,28410,30401,42214,59302,81441,53366,37380,48487,38586,57861,69482,54298,47672,43272,37562,40741,50609,42909,37032,35284,22192,23344,25243,30901,32103,30874,21242,18827,0,5,7,10,12,12,14,14,24,22,22,21,16,16,12,11,8,11,14,13,12,12,12,15,10,10,8,9,8,8,8,10,52,50,75,112,131,184,186,242,244,232,229,228,168,183,146,97,287,278,340,340,380,381,306,353,307,284,210,258,304,192,132,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,30,28,23,22,22,18,25,43,60,81,122,113,116,93,44,48,47,51,64,70,56,49,17,20,29,33,28,34,37,38,38,46,53,44,36,40,33,32,18,22,22,25,28,35,56,66,65 +7,3044,7053,11268,12948,17110,15715,17619,6433,10772,14270,23168,29926,24395,23143,17250,13251,14294,13424,10344,6562,6560,8764,7097,3599,5498,8600,8544,9674,10877,9573,12712,5722,6594,9862,11883,10049,14483,15180,17124,12407,12219,10101,13934,18316,20776,17794,15046,14412,16482,18845,16355,13533,12756,15553,13990,47808,42717,47405,39852,41694,43216,43541,43282,7994,15810,29826,36193,35852,40632,51774,38627,17085,25867,28748,43435,61583,46168,48733,53124,86847,75076,89074,67928,48802,41340,21563,14044,31895,29422,17490,13301,14678,8712,6661,3432,0,9942,18685,25934,30258,28088,35882,58485,71945,71550,66289,51978,48872,40221,42180,33524,44266,36911,42646,47315,41981,36478,30199,37881,13937,19162,21744,21972,27230,21212,18874,17176,0,2,5,8,10,13,12,13,18,13,11,12,12,10,7,7,6,10,11,10,10,13,12,15,8,10,7,8,8,10,7,8,50,47,61,93,132,119,117,161,241,243,186,200,238,219,130,114,217,286,353,410,368,474,496,536,383,391,284,264,210,139,103,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,47,41,36,34,31,28,28,40,68,75,95,117,123,101,74,37,29,31,49,60,64,63,71,17,23,30,32,34,46,47,45,54,48,41,39,51,44,45,32,16,19,22,27,30,44,45,50,52 +9,3540,5959,9335,10971,14552,14443,14735,13150,13531,16618,22468,33416,29882,27735,22911,13512,13545,14526,11745,10166,10474,9041,7177,5797,6655,9594,8530,8104,9610,7958,8899,7805,10106,10844,9165,8526,12912,12275,20254,21946,21682,20969,26908,26701,30930,25506,17968,18685,17103,18783,20944,17811,18007,15706,16512,55931,45064,39250,36460,30308,33986,41493,29014,6304,12642,23267,28220,31122,33360,32734,31179,16808,23807,32797,49263,44440,50747,50360,54288,81232,67675,70664,56260,49216,49101,25646,21227,24714,26206,20517,15227,16396,12888,5945,2912,0,9974,17284,23536,29459,31306,43072,53608,74515,61889,45973,45566,36773,32089,30245,34931,29884,31499,33910,32458,28742,26888,27639,33170,26442,20640,21227,25517,24961,21150,18209,20869,0,4,7,9,10,13,11,14,18,13,10,12,10,12,9,8,7,11,12,13,8,13,13,17,10,11,10,10,8,9,8,10,60,81,77,100,120,126,136,184,208,184,158,172,238,176,147,125,250,294,292,420,373,442,475,458,310,308,222,198,158,129,115,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,54,46,54,58,36,32,44,74,106,132,134,148,124,141,35,38,31,50,68,66,65,64,23,38,44,47,37,60,55,52,60,54,36,57,54,53,59,37,29,32,30,28,30,35,40,46,43 +11,2484,5979,9646,12464,9969,11034,10523,18246,17412,20109,32371,35110,28309,29488,26884,10324,9990,13256,17108,15542,14242,10208,8975,6408,7433,7739,6327,4302,5778,7597,8179,10686,9663,12702,11074,10890,11142,14687,17205,31309,28404,28372,39241,46396,38179,35846,23631,22020,26682,23766,22218,20976,19388,21468,22867,54590,43996,45815,43583,28629,34748,31431,29509,2940,7589,14332,17468,18308,25638,24542,19498,18290,25320,31244,38889,40281,34705,38087,56308,93289,91348,61996,46873,72004,61483,39534,26234,17622,19384,22302,16531,16207,13076,7668,3467,0,12920,22056,27837,40394,44624,44632,44134,58446,57434,41440,54802,40321,36263,27968,36552,30117,27526,26118,18816,18444,20640,26999,39012,30208,24457,21784,26646,25342,19790,18958,22704,0,4,6,8,6,10,10,10,12,12,9,12,9,10,11,12,7,8,10,12,7,13,15,17,11,14,12,10,6,7,7,8,55,81,97,121,103,87,109,185,129,115,118,130,188,144,132,118,266,268,368,472,374,452,382,372,272,207,177,137,147,107,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,70,83,67,91,77,57,49,57,118,148,150,148,159,154,165,32,35,40,52,86,84,90,79,36,47,46,58,48,46,62,56,49,43,40,55,74,81,64,39,33,35,34,27,30,35,38,30,26 +12,2146,4316,8697,8978,12108,15899,18434,19547,22300,21396,28470,34927,25016,28652,30314,16213,15979,16778,16332,16888,17018,15044,12069,8124,7544,6816,6374,4348,4636,4581,4824,13686,16928,14415,12292,8889,14097,21990,26141,26462,31843,31387,42063,56229,42100,24494,23156,31176,23942,20767,23389,30549,26232,26053,28938,53621,43806,30439,27766,24460,24460,22511,21991,1684,6166,11567,14479,14889,17282,23586,22132,24917,29726,34646,37836,45608,42591,36452,50888,89984,74712,73975,67847,68011,62754,41412,35035,20521,20318,19650,14218,16627,13670,9034,4482,0,10330,21824,25986,37790,37370,31699,28674,48919,34493,36088,44818,45024,40371,28543,31184,27248,23140,20867,16304,16694,17100,19286,28936,31055,24366,21321,20578,20196,19868,16344,24455,0,3,5,7,5,8,9,10,12,14,14,13,12,14,12,13,7,9,10,10,7,13,16,16,10,14,12,10,7,8,7,8,77,108,104,115,122,118,88,126,101,93,97,114,110,116,93,86,267,232,320,435,319,378,281,284,287,204,179,114,92,97,76,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,127,82,76,102,86,70,69,64,124,137,162,173,193,241,251,26,34,40,54,67,77,72,69,47,66,77,60,64,62,80,72,69,54,51,64,70,84,73,53,34,34,32,32,27,24,31,22,16 +9,1670,3051,6449,8361,11475,17481,21015,21621,19494,15113,21193,20654,17592,21046,23612,18868,18084,18653,13562,11008,14784,14857,10348,10668,8992,7046,6965,8092,6231,4850,3764,23297,24622,36102,38323,35496,37298,27965,24411,32928,33089,23799,23222,21167,19062,19399,23947,31795,41471,43936,49322,40865,47731,44427,48850,47138,40195,28600,27092,21436,20285,29216,29290,0,5955,12388,16590,17852,18768,19543,23136,29703,22956,18533,24218,25032,27658,30664,42954,68836,65740,67768,82674,70831,52135,42278,30036,26096,23750,23850,14703,12752,10258,5942,3555,0,991,1833,2393,3238,13051,20174,22398,31236,29161,27602,36586,37892,29073,21890,17239,15357,12940,14260,19212,20357,24102,25760,32928,29770,31134,35044,29140,29379,41398,41325,31130,0,4,6,7,7,9,11,10,9,12,12,12,12,13,15,17,4,5,4,5,5,7,7,8,10,11,8,8,9,10,8,7,87,116,132,147,141,106,103,82,82,78,81,82,73,88,90,72,203,190,156,149,97,141,171,152,206,168,199,181,132,109,120,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,154,203,193,179,140,135,113,57,83,116,163,176,227,217,268,29,34,27,33,46,47,32,53,55,61,52,48,33,36,44,49,82,72,82,70,52,48,52,48,42,37,27,34,36,24,19,12,0 +17,1698,3322,5474,9322,12668,15723,20796,20714,17722,15980,17350,15550,17234,21180,25849,16898,16264,16796,13770,9024,10980,13625,10433,6200,6216,6297,7240,7014,6572,7401,6000,29460,29346,35754,35928,36580,37028,25795,29087,27233,23604,18874,21562,22200,23263,18992,25957,33551,43537,42000,40383,51835,51176,46338,42090,47408,46410,37658,35985,33669,30849,31626,28396,4228,10062,12812,12662,15550,17154,22942,27240,29596,25764,21124,23311,23554,27214,38776,53348,58654,58916,73059,64556,48308,52614,40768,35936,26355,22892,18133,14190,11296,9382,6718,3692,0,731,1648,2312,2227,7949,16322,16563,29908,24682,27420,32602,46011,41868,20474,17498,12282,10620,8480,14577,15976,19226,21878,26266,21706,22450,24875,26054,33130,39694,31445,30967,0,4,7,9,10,10,12,12,8,10,13,13,12,16,17,18,6,8,8,10,8,11,10,15,12,14,10,12,12,11,11,9,90,104,92,108,128,101,78,80,81,72,64,70,46,68,80,74,180,176,149,120,86,122,162,196,177,162,188,162,154,154,104,96,2,2,2,1,0,0,0,0,0,6,10,15,20,28,36,39,148,152,179,136,130,116,122,91,42,87,105,136,142,203,240,286,30,38,37,51,43,51,52,72,39,56,68,58,32,45,68,67,72,82,96,84,50,58,72,52,42,44,44,42,36,30,21,14,0 +19,1802,4046,5807,7439,10047,12028,14598,16983,14588,14082,15565,8530,13073,22508,28018,13346,12196,16993,15174,9482,9680,11712,11473,4552,5028,4643,6519,6583,6081,8139,7530,34119,31818,24858,35910,41808,35502,36046,35943,18265,15172,17940,21923,29608,29964,22896,28003,42677,39839,47290,37490,54742,45262,50258,53738,43006,44464,43370,40478,38735,29652,27360,22938,7210,8539,13972,14038,15245,17810,21280,24734,23238,22958,20452,18272,23043,35183,45459,50325,44258,51653,56914,45788,37030,37131,41917,37238,32256,26790,18508,17764,10985,9643,6662,3587,0,611,1222,2533,1875,4830,7440,8821,20860,22452,22584,31980,41699,37717,27053,24202,8248,6311,6210,8516,8644,13297,17334,16412,23925,25075,22464,22379,25906,23030,30764,24717,0,2,5,7,8,8,8,12,7,10,10,12,9,17,18,20,6,8,10,14,11,12,12,14,14,15,13,12,10,12,10,10,88,84,89,104,78,68,81,62,65,55,53,65,32,53,66,54,112,115,146,113,77,115,172,210,146,109,116,100,138,127,114,117,3,4,3,2,1,0,0,0,0,8,16,26,44,54,76,98,138,146,108,102,75,90,102,68,38,54,92,142,130,185,302,337,32,37,55,75,41,54,62,98,33,46,62,56,37,65,76,80,88,85,81,92,58,54,68,55,55,58,50,47,45,31,28,15,0 +32,1759,3038,6577,7793,9489,9096,14220,12516,12059,10053,11958,7601,12370,13489,21980,11086,11652,14758,13833,13327,12428,8818,8701,4108,4715,4809,8260,7478,6590,7630,6862,25210,25635,31597,31011,37786,34110,40992,31320,19520,16150,19832,22276,25313,26485,22791,24520,36056,39574,49719,45890,43216,44981,46808,54265,53938,51303,62568,43683,42316,46390,35943,34448,10660,11556,11362,12000,10685,13188,13794,15024,20402,20514,24836,21834,24357,38014,49988,65973,39503,41954,40263,34866,23304,28131,26941,29020,29140,21408,13601,15490,10940,8931,5486,2454,0,614,1048,2096,2254,4050,6280,6674,23192,27590,28245,27868,31255,23142,17590,17734,5191,4823,4809,6340,5394,8713,11620,12270,18329,17974,17034,18758,20945,21697,20380,22582,0,2,5,7,7,9,10,12,8,10,10,12,10,16,16,21,8,12,11,16,17,16,16,16,16,16,13,13,10,12,10,10,99,106,110,78,82,72,76,58,66,56,54,41,20,40,48,46,67,82,99,102,79,106,153,168,99,93,90,84,100,80,90,85,5,6,5,4,2,1,0,0,0,15,20,38,61,75,107,106,103,85,76,80,75,78,86,60,42,72,119,144,136,193,245,262,28,48,58,54,53,72,84,102,32,47,50,46,45,64,92,71,76,92,78,105,83,84,101,77,40,48,50,46,46,30,29,12,0 +36,1912,4527,5634,9329,10623,14123,15695,14296,14807,12322,9838,6418,11930,15027,21538,9073,9745,12360,14856,15126,13482,8608,8938,3333,5049,7114,6971,8038,9878,11092,10586,28258,21798,19532,20371,26996,28934,31364,35473,16974,17101,22153,26128,25041,19700,16300,23867,42868,43555,39681,35463,47608,52926,51402,56336,67208,64551,69184,54344,38420,33258,30505,35156,13633,10664,10937,9928,9044,7159,6125,7830,11548,12512,18247,22668,21730,38881,43639,56866,28335,24316,18289,16331,18560,16169,18908,18886,23518,23393,17511,13010,8485,5825,5073,2733,0,710,1256,2055,2186,3342,4384,4004,22924,22816,22351,21318,23792,23922,18194,15401,3384,2826,2372,2805,2556,3187,4716,5538,15193,21086,20371,22594,18952,16945,22736,28441,0,2,3,5,4,6,6,7,7,8,7,9,11,13,11,14,9,14,16,17,17,15,16,19,16,15,12,11,10,11,8,7,144,128,77,64,58,57,70,72,56,36,23,16,14,24,30,46,50,72,71,78,85,108,136,124,65,86,92,74,68,59,50,45,4,5,4,4,2,2,1,0,0,23,52,58,74,99,104,130,55,46,46,61,56,60,58,39,63,107,128,151,124,243,314,364,23,28,31,56,72,94,122,106,42,50,42,55,71,74,75,60,89,80,71,82,109,129,122,98,42,42,39,44,40,33,18,9,0 +27,1833,3322,4772,6776,7748,8286,10431,12859,12583,11082,8312,7012,10121,12501,18116,6846,10004,11609,13722,12452,12658,11812,10849,7402,6704,7409,6302,9600,10293,10954,9655,22450,23430,24193,26230,19049,20276,24993,29380,15012,14140,15895,21671,24045,23216,18860,26341,31324,34507,37816,43768,42676,45253,47887,58338,67736,67368,85381,78855,69250,46608,37301,33322,22239,15251,17819,14701,17753,14542,14539,12084,12700,14854,17966,23274,25354,37224,45257,40800,34466,30374,24548,22118,17420,18127,19504,18674,22868,16078,14034,12970,7509,4660,3538,2073,0,584,1097,1669,1993,2833,3656,3244,14208,16364,16456,17669,17523,20014,14140,9819,2791,2278,1585,2065,1782,2762,3069,4304,14050,15032,14970,15234,12155,13264,18326,17942,0,2,4,5,5,7,7,8,7,10,10,12,12,13,13,16,8,16,19,16,20,19,18,20,13,13,10,11,8,10,8,7,169,119,92,77,54,60,53,54,53,35,20,20,12,21,27,40,35,49,54,50,75,78,81,92,50,53,58,62,45,42,48,40,6,7,6,6,4,4,2,1,0,32,66,92,97,106,126,142,98,78,90,108,80,66,54,45,53,88,118,135,142,206,262,283,17,24,34,54,78,82,110,104,60,63,58,74,86,86,70,76,64,63,62,82,92,104,110,90,37,50,48,48,40,33,18,8,0 +26,1596,2953,3941,5085,5300,6572,7469,9292,7426,8863,8117,6426,8932,12024,13080,6497,8496,12068,13845,13037,11930,11246,9959,10406,9682,8734,6533,8923,8370,7378,6659,25316,22372,23610,24028,19573,20785,21938,14818,18232,16362,16178,23671,21032,19675,18870,21508,29817,32160,39199,47423,51355,43708,56830,57990,68255,83983,109258,114456,95316,54497,33486,28860,28014,25220,20670,22373,28767,23248,23147,16976,13442,17400,17803,20728,21000,32762,35754,42402,40108,40347,28530,27819,15330,13426,14649,16554,15927,15816,15432,12157,4173,4016,2972,1477,0,412,857,991,1242,1506,2461,1932,8480,11455,12288,14905,16706,11979,9345,6751,3354,2786,1546,1947,1081,1845,2932,2515,10224,11565,12404,9114,6916,6518,8654,9129,0,2,3,4,3,5,5,7,4,7,8,8,9,12,11,16,8,12,17,22,17,15,14,13,13,12,8,8,6,7,6,5,147,104,79,58,59,60,42,34,31,25,20,22,9,19,22,20,19,24,26,23,47,50,56,62,21,28,34,29,34,32,30,23,6,7,6,6,4,5,3,2,0,28,63,86,98,130,141,174,126,144,120,143,90,75,58,62,50,86,111,106,119,147,212,222,9,18,32,55,69,86,108,88,78,72,58,75,95,90,80,75,55,53,54,51,71,66,74,80,45,55,46,45,35,29,16,10,0 +31,1370,2568,4938,4710,6326,7274,7714,7596,7876,6567,5808,5702,6572,9393,9739,7960,8692,10601,11472,11734,12078,15795,16626,9858,10636,8881,9216,7348,9112,10071,9900,17583,20364,22571,20098,14173,17520,20412,18670,15440,17445,13681,18976,19265,21274,21795,27942,33878,33898,34941,46778,56494,49965,62765,61508,87556,102636,107804,110368,91672,76214,35134,33892,33981,26218,20606,32204,35888,31858,26356,20512,14068,13908,16367,17726,21050,24803,24526,32120,37978,28704,25960,26245,17056,17383,16345,15114,11804,11849,10690,7204,3882,3147,2571,1233,0,190,446,591,681,997,1214,1240,4541,4920,7472,8180,9029,6876,6139,4420,2208,1690,1218,1148,662,1021,1728,1272,4526,5596,7818,5416,4430,5178,5397,5598,0,1,2,2,2,2,2,4,2,5,7,8,8,12,11,14,9,14,19,20,22,22,20,18,11,11,8,7,5,6,5,5,104,78,77,60,59,44,37,36,31,29,20,22,10,16,17,15,12,14,16,14,27,28,30,30,10,16,16,15,20,19,16,14,5,7,7,7,5,6,4,2,0,34,69,100,101,134,122,149,155,156,140,152,108,95,63,64,52,68,96,86,72,106,188,164,5,15,25,47,61,80,112,88,69,61,63,80,85,96,103,87,60,60,50,59,64,64,65,60,52,50,38,36,23,22,17,9,0 +36,814,1541,2850,3939,6095,6628,7094,8655,8181,9443,8638,6060,6508,6795,7876,8902,10038,12063,11830,8901,10351,10586,8133,6512,9171,13026,15190,12517,13485,11201,11096,14482,27683,47369,56430,59161,48273,52450,62612,54411,43558,36133,51357,51319,41031,32268,29016,33622,41536,40703,27796,26414,18821,13318,7855,0,1924,3956,9010,11888,15606,19858,26734,38534,38396,42325,40399,27362,31165,24746,22055,16287,16580,17576,15931,12306,19543,22845,28004,29356,31189,27991,18254,12108,18260,19442,16026,17203,17566,21100,17583,13408,11269,8280,3400,0,130,305,423,457,498,687,984,1193,1384,1903,1873,1624,1496,1202,1478,1482,1534,1238,849,464,297,183,78,0,526,976,1231,1433,1414,1861,2019,0,0,1,2,2,4,4,5,5,7,8,11,14,12,11,10,10,12,15,17,12,12,13,12,11,12,14,12,9,7,4,2,72,86,83,86,83,66,47,58,54,56,49,48,41,41,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,23,34,33,106,143,172,171,177,160,176,260,243,208,168,152,173,259,244,218,195,220,191,188,256,269,210,234,224,147,176,0,14,25,40,50,71,82,92,82,75,71,76,95,100,102,85,66,88,110,139,122,120,135,101,76,53,51,39,20,14,10,6,0 +50,864,1879,2652,3663,4920,6048,6860,9489,9136,8744,7746,4377,6046,5837,7767,6966,9379,11405,8353,6638,8902,7318,6612,5711,6824,8628,10975,11264,10560,8841,7990,17607,27683,47876,46531,44946,45765,46663,49396,49486,44772,44736,46731,36296,36166,43494,46608,34215,34634,33958,30504,23583,17315,11513,6505,112,1606,2949,7283,11572,13604,18657,23350,39540,40240,40314,31447,25390,20121,25463,19363,16207,13088,17821,13496,10902,13405,16470,20692,25536,23182,22221,15931,12020,14110,12782,15966,12966,18580,19810,14649,10105,8760,7002,3274,37,144,261,350,501,590,644,916,1164,1406,1828,2183,1680,1880,1319,1812,1604,1503,1909,1340,869,538,256,107,7,476,712,1033,1233,1544,1814,2004,0,1,2,3,2,5,5,7,7,9,8,11,16,16,10,12,9,13,17,16,10,14,12,12,14,14,14,12,8,8,6,6,48,56,65,74,74,63,52,53,36,45,56,52,61,43,40,27,14,10,10,8,7,8,7,8,14,14,8,8,8,9,7,5,7,16,26,30,26,76,91,134,153,222,223,272,306,292,249,211,121,150,214,244,207,187,138,141,140,172,249,200,262,230,180,234,17,34,51,55,40,50,76,83,78,62,67,76,86,98,96,97,52,70,105,117,136,134,155,130,108,80,70,54,23,20,14,8,0 +59,855,1670,2350,2468,4068,5098,4914,9467,8975,7540,7492,3708,5552,7076,7496,5595,6720,8590,7772,5236,5978,4968,5477,5659,7032,6718,6618,8460,8840,9861,10887,19871,33249,36716,35316,36456,38764,38938,39892,64394,58267,48084,46456,35936,41099,42046,48516,51176,54267,42277,27290,18978,13995,6255,3758,199,1300,2915,5624,9178,13289,17529,19342,37981,35385,31790,34792,17675,16253,21487,15670,12382,13130,12682,14044,8871,9591,9418,12845,33965,22694,18840,11932,16842,14920,11644,12466,13427,15255,14661,9278,8884,7854,5301,2280,89,212,266,348,401,587,648,834,851,1117,1578,1520,1670,1702,2056,1732,2348,2443,2054,1282,988,732,398,224,13,317,738,739,1439,1520,1880,1868,0,2,3,4,3,5,4,6,7,7,6,8,12,13,10,10,8,10,13,12,7,8,10,9,13,12,11,9,7,7,6,7,34,44,46,50,72,59,56,61,31,38,52,45,66,62,48,55,23,21,15,12,12,14,13,12,23,24,17,15,16,17,11,10,8,13,20,28,28,40,66,99,207,248,318,305,263,265,244,223,96,131,166,170,131,125,120,114,157,168,160,173,230,203,212,196,32,46,62,79,44,57,74,86,58,54,62,73,81,110,114,166,55,58,79,71,138,158,156,142,103,95,66,46,32,26,13,7,0 +69,867,1801,2204,2908,3202,3165,3969,6208,8488,6448,5524,3352,4522,5077,6168,4440,4462,5897,5912,5262,4745,5812,4822,6090,6660,7049,6834,7774,8722,9648,8042,15860,25840,40710,39956,36513,33642,36972,31705,61606,62748,51150,48520,46369,41404,35300,42074,44326,34336,37030,20987,16036,10507,7278,3694,300,1904,2512,5370,9973,11112,14293,14376,41796,37114,28358,29050,16826,16652,21370,15941,11039,9321,10135,11219,7889,8185,9210,9632,31598,23636,13550,12314,17742,14859,12556,10486,19190,16457,18382,12420,10698,8388,5847,2730,145,234,258,394,477,744,1073,1302,751,791,1300,1476,1748,1742,1528,1658,1954,2218,2422,1508,1098,754,565,264,18,286,703,749,1156,1631,1283,1418,0,2,4,5,4,6,5,6,7,8,7,9,9,11,9,10,10,12,14,12,7,9,10,12,10,12,10,10,7,8,7,10,35,44,40,46,59,66,46,48,39,47,61,58,76,68,52,63,37,36,26,28,15,18,20,17,34,32,32,28,21,21,15,14,8,14,20,26,31,46,75,84,208,278,308,342,346,296,236,168,107,132,124,156,142,125,111,110,127,112,144,136,179,158,171,182,63,59,82,79,63,64,74,70,84,74,72,88,67,82,128,172,57,73,77,92,133,133,112,161,98,84,70,52,39,32,22,10,0 +69,691,1120,1687,2382,2662,3452,3061,5269,5302,3687,4370,4328,4086,5377,5888,3022,3322,3239,3918,3860,3973,5258,6130,5771,4826,5245,6562,6494,5966,6043,6256,14243,25828,36796,33073,43526,30511,16187,10491,54743,58505,67549,62595,43533,43286,37902,25414,39884,31980,19331,16952,14152,10513,10119,6166,524,3306,5439,6828,7471,8570,7554,9810,32902,40431,35065,24795,19048,16095,7904,8378,6786,7433,10925,9609,10197,9534,7378,7516,23429,20288,18936,18328,14818,13275,9135,7138,20913,15676,10870,8288,9253,7309,4815,2594,218,270,365,535,566,672,709,981,402,766,892,1045,1710,2357,2317,1722,2432,2212,1622,1603,1296,786,627,281,24,404,702,774,984,1095,1024,738,0,2,3,4,3,5,4,5,5,7,6,7,6,8,8,8,11,13,11,10,6,8,9,9,7,7,6,7,6,10,11,11,34,45,53,60,50,47,32,42,42,39,49,60,68,69,60,71,45,49,43,29,19,22,20,19,38,48,43,29,26,29,23,19,8,19,23,24,34,53,59,81,172,248,251,307,318,297,220,258,136,143,152,140,144,135,83,106,74,70,72,88,98,201,271,288,81,90,102,96,78,68,46,45,105,110,120,101,68,93,105,183,58,71,104,106,150,151,217,193,87,60,56,57,46,36,18,11,0 +87,690,1356,1932,2818,3364,3225,2620,4415,4466,4282,4554,4629,4662,4755,4977,2280,2550,2526,3399,2828,3244,4385,4403,4139,3992,4532,4737,4386,4401,5094,6210,11071,17776,31326,35566,31050,28571,21142,16772,48199,51654,45992,41421,33762,33332,37902,25544,36156,25261,15412,14687,11438,8763,9721,5374,773,2442,4724,5168,4985,6836,6550,9192,46983,42396,34016,26090,28947,19610,15061,10506,7712,10167,12882,10458,12019,10211,8126,7566,23059,23632,14746,16758,13567,11861,9845,10068,17436,12112,13043,9046,7628,6283,3840,1991,276,306,356,412,393,525,614,784,468,574,840,1278,1472,1710,2056,1476,1780,1806,1706,1494,1169,973,635,320,73,413,702,908,992,1007,974,793,0,2,4,5,4,6,5,6,5,8,7,9,7,10,8,10,8,12,10,9,6,8,8,8,7,9,8,12,8,12,12,14,49,58,70,91,75,62,44,64,78,78,72,84,66,73,68,77,60,72,64,40,30,30,34,32,38,46,48,45,44,38,28,20,8,19,21,26,46,52,53,75,155,218,201,267,251,286,203,185,137,136,158,135,151,129,118,103,84,68,87,94,133,206,275,294,109,109,114,93,130,98,74,72,111,136,150,110,127,116,167,178,74,112,122,134,123,169,239,229,108,93,74,54,46,34,16,10,0 +84,634,1306,2275,3459,2928,2936,3325,4682,4879,4156,3884,6203,5520,5754,5038,1723,1449,1726,2038,2045,2771,2813,3696,2856,2577,2952,2807,4102,4050,4514,4569,10690,14710,22340,29596,33414,30579,31417,28868,47739,31567,30570,33226,28301,25224,25503,25498,22610,19628,11615,11296,10264,9648,6190,3507,789,1890,2597,3235,3801,4603,5872,5857,51811,51014,38532,39194,31220,29222,17985,14171,10350,12625,12178,14213,11996,10859,8216,7247,22853,16856,15868,13146,16460,12553,12067,11348,16981,11844,10978,9094,7981,5305,2610,1440,325,342,318,300,206,372,450,820,403,643,688,1156,851,1032,1243,1251,1564,1575,1508,1532,1492,1083,721,462,108,290,612,706,833,766,611,690,0,2,3,4,3,5,5,5,4,7,7,10,6,7,7,10,6,8,8,7,4,6,6,7,6,8,8,12,9,12,12,12,55,77,93,112,99,80,64,82,119,116,101,90,69,73,64,82,92,89,76,58,40,50,43,49,52,58,53,49,51,38,33,22,9,18,26,26,43,41,50,64,181,202,220,214,269,194,212,184,173,169,138,126,147,146,116,80,87,82,97,92,171,195,238,251,126,145,132,144,137,134,108,106,164,148,146,131,150,151,183,155,106,144,159,164,138,197,190,155,130,92,67,51,38,34,18,9,0 +76,774,1762,2620,2816,2806,3198,3198,4772,5080,4746,6018,8082,6212,4973,4210,996,884,907,1347,1469,2039,1911,2165,2007,2342,3188,3080,3361,3872,4526,3800,7072,12803,19044,25192,25688,28560,28617,25468,43306,37610,28953,27950,28067,28256,29100,27498,17672,17788,10638,7220,6075,6517,5170,2790,821,1114,1726,1906,1761,2761,2722,3468,49185,46877,43723,41580,33221,23708,21408,17045,11052,14334,16762,18576,17671,13608,10972,8811,17055,18110,16527,14168,17609,14868,17028,14876,11714,11555,7860,5332,4268,3208,1906,838,346,242,281,250,179,298,294,536,411,591,752,896,892,747,1073,1160,1620,1489,1539,1630,1651,1022,840,446,132,338,464,619,595,713,671,768,0,1,2,3,2,5,5,6,5,7,8,10,7,8,7,9,5,7,7,6,4,5,5,5,4,6,7,11,9,12,11,13,78,111,104,130,132,111,93,105,160,142,141,130,98,100,103,124,120,132,112,71,67,44,47,48,65,72,72,69,64,52,37,28,12,24,25,28,40,44,42,62,141,184,158,206,230,174,158,136,150,156,129,146,108,126,106,84,56,91,122,152,204,257,259,284,109,120,127,116,158,148,152,150,185,142,149,162,218,224,183,170,192,182,219,162,115,164,140,142,176,110,77,57,31,30,22,12,0 +50,419,883,1422,2333,2439,3240,3943,3758,5620,6807,7341,6864,5188,3695,4268,0,90,199,339,450,707,838,1172,1202,1186,1721,3346,3860,3529,4958,4714,6509,11333,14262,20582,20539,21294,21044,27672,33342,41632,48194,53366,41467,38277,23355,24244,15535,13144,11624,11534,14197,9305,7231,3591,798,757,694,496,436,370,185,98,41521,33975,35587,34831,22682,19724,21297,16501,10595,9026,8805,6288,2869,5832,11094,12669,14414,10792,8036,5755,5192,5901,8375,11419,11623,9283,5879,4871,2299,1538,921,526,300,401,567,617,615,520,455,424,548,678,733,673,876,908,800,828,1782,1732,2003,1954,1362,1070,721,354,156,253,275,470,660,595,407,531,0,2,3,5,4,6,6,5,3,5,4,5,5,7,7,7,3,4,3,2,2,2,1,0,0,2,4,7,9,10,10,13,129,133,93,95,95,154,179,166,182,182,132,158,249,177,120,123,129,96,71,66,48,45,43,56,56,43,33,37,34,27,19,24,16,38,65,62,80,69,58,64,86,130,150,216,226,204,274,215,128,123,99,142,136,99,96,62,50,89,102,202,239,196,220,248,106,153,163,175,169,181,179,179,148,114,98,120,123,135,150,151,291,252,199,216,224,235,183,160,173,135,116,124,121,92,64,28,0 +53,480,1000,1318,1844,2339,3687,4108,2900,4020,4674,4911,6303,5186,4291,4876,0,100,178,284,368,682,704,1059,968,1388,1718,2422,2948,2564,3578,3298,6289,9408,12016,12747,20181,20054,19928,19612,32790,38550,30088,35169,31332,28172,16756,19576,13498,13790,10312,10732,9500,7980,5180,2814,669,570,498,396,338,246,151,86,41639,34244,38190,31064,25599,20182,18088,13426,7124,7908,7716,4716,3068,4652,9626,12255,11742,11214,7131,6714,7204,8435,8348,8452,11071,7677,5442,3535,2366,1245,894,417,278,414,424,569,564,495,443,456,532,780,827,760,650,629,667,620,1406,1486,1470,1452,1028,836,762,432,197,203,253,396,390,464,465,472,0,2,5,6,6,7,7,7,5,6,5,7,7,9,8,8,5,6,5,6,6,7,5,6,5,7,7,8,13,15,16,14,95,114,82,94,101,108,136,129,219,178,179,188,230,164,120,138,141,106,66,62,55,60,72,60,77,66,39,46,46,44,30,28,15,32,46,74,68,74,57,67,84,115,176,212,233,268,220,180,115,102,80,114,113,75,64,44,40,88,92,150,199,198,193,230,102,144,115,155,166,143,171,144,176,134,118,106,118,163,198,178,282,236,173,170,247,226,146,139,157,140,149,138,135,98,54,28,4 +58,644,1017,1498,1822,2734,2953,3508,1559,2158,3756,3604,5464,5572,3952,4466,0,113,198,370,385,658,879,998,702,1172,1738,1940,1890,2683,2639,2288,4299,6217,6403,7870,13912,12637,12176,19427,32918,31748,25445,27144,24608,17119,17930,18668,13068,12760,11717,9763,9022,7616,5608,2808,631,529,327,359,205,147,128,109,44831,36320,32953,28373,23176,14138,11788,8933,5960,6020,6675,4436,3412,5662,8089,11109,14029,11904,9196,7438,6822,8053,6611,7255,7146,6954,4611,3108,2122,1291,736,345,300,433,428,522,460,500,443,308,606,548,669,567,543,669,628,512,1578,1857,1653,1454,714,779,599,388,176,189,157,240,303,375,406,477,0,2,4,5,6,7,7,7,4,5,4,6,6,7,7,7,6,7,6,8,8,8,8,10,8,8,9,10,13,17,16,15,62,70,72,88,76,86,84,73,220,200,180,214,168,146,126,122,109,78,70,67,70,67,77,87,92,89,60,77,61,55,46,30,17,27,30,44,61,50,60,92,90,102,153,166,203,168,196,163,70,100,96,142,93,82,47,43,47,76,118,119,109,164,168,188,111,124,104,88,117,135,110,108,146,145,102,105,156,171,186,182,199,181,130,128,227,149,140,162,145,134,135,129,126,111,61,41,6 +60,582,1028,1482,1352,2019,1963,3142,1076,1852,2666,2194,3951,4045,3036,3892,0,129,258,374,509,710,1057,1063,512,864,1086,1418,1531,1545,1868,1576,2726,4572,5050,5570,11028,10500,9404,13522,24504,23349,16749,17640,23816,17768,16815,12606,9510,9632,10311,8196,6206,5115,3862,2442,318,320,218,220,151,134,106,105,46220,38396,29985,28362,17037,11270,9980,7408,5127,5707,5224,4012,4740,4962,7605,10192,7915,8218,8186,6754,7547,7632,8450,9248,6282,5272,4998,2918,2036,1264,1014,498,360,516,624,514,650,575,441,346,508,522,496,501,762,786,790,544,1830,2041,1462,1370,754,692,644,414,158,172,124,210,283,292,333,353,0,2,5,6,5,7,7,7,5,6,5,7,6,7,7,7,6,7,7,10,9,12,12,14,12,10,12,14,17,16,15,17,44,64,61,85,58,84,84,84,189,188,135,150,125,128,100,118,106,76,59,76,98,80,68,83,104,103,76,88,61,70,58,38,14,22,22,36,51,42,48,66,106,120,123,147,139,123,124,130,64,94,107,112,84,70,62,47,43,64,78,101,97,132,156,247,149,128,111,94,101,78,71,94,104,98,82,121,172,148,177,205,261,274,229,182,246,180,170,150,139,124,104,106,120,88,47,29,7 +81,449,691,1114,1494,1519,1817,2536,520,902,1121,1126,1484,1688,2433,2787,0,206,354,422,586,644,840,1142,418,424,577,717,852,540,403,396,1961,3343,5192,6268,8167,8982,11958,14298,14579,13482,12916,11943,15212,15215,15019,13713,9526,8228,5640,4573,2842,2321,1227,1055,125,104,80,99,107,84,68,99,34774,33342,25382,18353,14566,12402,7139,7426,5372,6740,5922,5502,4562,6364,8215,8802,5689,6176,5136,5630,8220,9763,8347,9265,6230,5179,4259,3027,1472,1311,990,542,461,380,360,538,646,610,511,281,611,770,786,927,901,601,452,533,1852,1468,931,1000,832,726,649,379,104,109,128,167,210,271,422,484,0,2,3,4,3,5,4,5,4,6,6,6,4,6,6,6,4,6,6,10,10,12,11,12,12,11,10,12,14,17,17,13,42,62,64,65,58,66,85,74,158,107,100,126,123,119,130,98,66,86,90,104,100,89,92,96,103,102,122,86,88,89,60,36,9,17,24,32,30,36,31,39,94,120,107,96,110,100,124,133,85,101,126,122,108,110,92,60,35,49,72,92,104,181,268,335,156,168,127,86,54,69,78,74,71,114,128,144,168,271,339,349,293,212,213,240,192,193,177,126,123,138,140,131,78,58,39,22,7 +74,320,550,866,1201,1158,1468,1430,477,772,788,984,1174,1366,1636,2608,0,156,248,317,488,552,666,874,262,354,442,484,654,402,288,391,1401,3312,4773,6044,6070,8194,9602,9268,9341,9312,8354,8836,11144,12592,10554,8989,7076,4946,4274,3538,2062,1527,1111,883,180,148,96,117,128,138,128,135,27114,20765,22037,18278,11742,7497,6483,5940,3985,4851,5832,4649,3690,6063,7730,6968,4852,4769,4278,5256,6084,8079,6528,6776,4987,3875,3644,2468,1030,1050,862,568,422,486,395,452,445,576,493,327,576,670,664,816,824,498,347,458,1503,1204,622,742,642,592,416,312,101,91,116,171,188,230,332,363,0,2,4,5,4,6,5,6,5,7,6,7,5,7,6,7,5,7,8,12,10,14,12,14,16,16,14,16,12,16,16,20,37,59,67,56,71,74,69,92,171,136,98,134,143,124,112,96,74,84,108,122,82,111,98,100,122,119,82,88,86,60,56,36,17,22,32,36,29,38,37,52,79,78,72,80,78,86,82,111,86,74,101,87,92,86,66,55,33,54,67,86,98,146,199,244,113,96,116,74,36,46,61,67,50,78,94,124,160,264,346,328,239,233,216,232,200,178,187,138,102,106,98,99,85,74,45,30,16 +73,231,334,401,864,876,942,812,362,575,696,648,972,1080,1262,1470,0,64,126,195,271,392,614,666,221,233,317,405,453,422,292,346,1528,2265,3180,3693,5053,6527,7116,6207,5629,5081,5758,8339,7932,8737,7896,6727,3798,3274,2786,1970,1523,1292,822,582,214,152,156,202,193,199,158,142,14505,14146,11480,10120,5549,4701,4009,3910,3555,3879,3854,3378,3294,5054,5210,4148,2927,3694,3279,3420,5281,4062,3896,3547,2181,1872,1862,1360,878,918,707,396,359,440,422,567,412,326,358,291,624,682,740,647,640,486,370,425,946,684,529,486,545,436,385,317,94,115,98,106,147,225,282,286,0,2,3,4,3,5,4,5,3,5,4,5,3,5,4,5,3,7,8,10,9,12,12,12,18,17,14,16,12,14,18,20,36,44,47,53,60,55,62,87,164,140,106,128,184,150,120,87,77,88,120,124,101,132,133,130,112,101,75,83,72,57,46,32,22,31,36,38,32,42,42,57,48,46,56,45,74,76,72,60,59,65,63,73,52,54,48,33,34,46,70,77,97,113,154,159,116,87,76,63,27,40,50,44,24,44,62,94,162,173,236,350,194,175,208,198,213,174,150,92,92,105,86,74,74,64,63,43,28 +66,126,213,262,512,480,560,488,217,286,326,352,504,570,514,877,0,32,70,109,150,204,323,402,172,220,341,374,414,374,286,276,1011,1550,1813,2160,2130,2618,4111,3870,2476,2474,2772,4582,4733,4306,4143,3396,2181,1682,1178,1066,938,702,397,356,224,196,191,252,272,249,233,188,7907,6752,6402,5690,2836,2720,2329,2082,2090,1998,1791,1708,1605,2648,2994,2272,1734,1845,1874,1532,2607,2060,1708,1978,1138,1012,1131,698,538,550,416,284,337,340,373,428,453,317,345,356,541,614,517,662,736,530,408,386,778,502,316,375,382,324,286,242,88,94,85,105,105,144,128,114,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,8,10,10,15,16,16,18,20,22,22,17,20,21,24,37,34,34,42,52,70,80,90,161,120,99,132,190,156,102,102,101,114,136,116,101,127,108,104,159,105,68,67,49,49,53,41,29,34,30,34,25,38,40,48,38,41,51,46,39,46,40,32,28,38,33,39,27,29,30,26,25,40,50,76,99,104,103,112,87,76,47,46,21,25,28,24,12,26,53,74,124,156,201,258,249,186,198,189,176,140,126,74,63,70,65,56,59,56,50,47,40 +44,36,37,30,13,14,12,10,7,8,8,7,5,5,3,2,0,8,15,24,30,95,138,200,198,233,275,322,264,217,189,241,300,353,298,225,231,203,177,88,26,27,23,24,17,15,11,7,0,44,79,147,183,147,150,202,249,230,226,270,297,312,280,245,222,287,286,216,217,218,243,231,225,201,244,263,204,159,107,78,53,60,57,50,37,33,21,12,0,16,30,46,47,130,187,178,249,222,205,310,361,294,284,379,578,506,402,565,650,452,340,338,357,255,176,162,150,133,132,138,123,85,69,59,40,35,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,11,12,14,18,16,16,17,22,22,17,20,24,28,32,33,30,40,36,72,84,93,103,114,102,125,171,160,126,116,110,114,120,110,97,106,86,109,156,110,61,42,39,42,41,41,31,28,34,27,17,30,33,35,38,29,31,23,18,15,11,7,0,2,4,6,6,12,15,17,18,25,34,48,71,75,77,98,93,57,35,26,11,8,6,4,0,15,29,57,84,98,117,220,258,250,187,186,132,99,66,40,17,26,26,36,34,44,56,43,46 diff --git a/worlds/diamond_world2_iso.jpg b/worlds/diamond_world2_iso.jpg new file mode 100644 index 0000000..15ad13a --- /dev/null +++ b/worlds/diamond_world2_iso.jpg Binary files differ diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/worlds/diamond_world.csv b/worlds/diamond_world.csv index c978edb..367aea9 100644 --- a/worlds/diamond_world.csv +++ b/worlds/diamond_world.csv @@ -1,1025 +1,1025 @@ -50,25,25,17,25,15,18,15,26,14,15,11,16,10,14,13,23,12,12,8,12,7,9,9,16,9,10,9,15,10,15,15,28,14,14,10,14,9,11,9,16,9,9,7,11,8,11,10,19,10,11,8,13,8,11,10,17,10,12,10,17,11,16,16,31,16,16,11,16,9,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,4,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-18,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-11,-17,-17,-36,-18,-18,-12,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-17,-12,-21,-12,-16,-15,-30,-16,-19,-16,-30,-20,-30,-29,-59,-29,-29,-19,-29,-16,-19,-16,-29,-15,-17,-12,-21,-13,-19,-18,-37,-18,-19,-13,-21,-12,-16,-14,-28,-15,-17,-13,-24,-16,-24,-23,-47,-23,-24,-16,-26,-14,-18,-15,-28,-15,-17,-13,-24,-15,-22,-22,-44,-22,-24,-17,-27,-16,-22,-20,-40,-22,-26,-21,-39,-26,-40,-40,-82,-40,-40,-26,-40,-22,-26,-21,-39,-20,-22,-16,-26,-15,-21,-19,-37,-18,-18,-12,-20,-11,-15,-13,-26,-14,-16,-13,-23,-14,-21,-21,-42,-21,-22,-15,-23,-13,-16,-14,-28,-14,-16,-12,-20,-12,-18,-17,-35,-18,-19,-13,-22,-13,-17,-15,-30,-16,-20,-16,-29,-19,-28,-27,-54,-27,-27,-18,-28,-16,-20,-17,-31,-16,-18,-13,-22,-13,-19,-17,-34,-17,-18,-13,-21,-12,-17,-16,-31,-16,-19,-15,-27,-17,-26,-26,-53,-26,-27,-19,-30,-17,-22,-19,-36,-19,-23,-18,-33,-21,-31,-31,-62,-32,-34,-25,-42,-25,-35,-33,-64,-35,-43,-35,-64,-42,-64,-64,-129,-64,-64,-42,-64,-36,-44,-37,-67,-34,-37,-27,-45,-27,-36,-33,-65,-32,-33,-22,-35,-20,-25,-22,-43,-22,-25,-20,-35,-22,-33,-32,-65,-32,-33,-22,-35,-20,-25,-21,-40,-20,-22,-17,-29,-18,-26,-24,-48,-24,-26,-18,-30,-17,-22,-20,-39,-21,-25,-21,-39,-26,-39,-38,-77,-38,-39,-26,-39,-21,-26,-22,-40,-20,-22,-16,-27,-16,-23,-22,-44,-22,-22,-15,-23,-13,-16,-14,-26,-14,-16,-12,-21,-14,-21,-20,-41,-20,-21,-14,-23,-13,-17,-14,-27,-14,-17,-13,-23,-14,-21,-20,-41,-21,-22,-15,-25,-15,-21,-19,-37,-20,-24,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-24,-20,-38,-19,-21,-15,-26,-15,-21,-19,-38,-19,-19,-13,-22,-13,-17,-16,-31,-16,-19,-15,-27,-17,-25,-24,-49,-24,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-17,-10,-15,-14,-27,-14,-15,-10,-17,-9,-12,-11,-22,-12,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-13,-16,-13,-24,-12,-14,-10,-17,-10,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-8,-9,-7,-13,-8,-13,-13,-27,-13,-13,-9,-15,-8,-10,-8,-15,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,9,8,13,9,14,15,29,15,14,10,14,8,8,7,11,6,7,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,5,4,7,4,4,3,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,5,5,8,5,7,7,12,7,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,13,25,13,14,10,16,10,14,13,24,14,17,15,26,18,26,26,50 -26,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,11/2,10,6,6,9/2,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-9,-15/2,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-41,-20,-20,-25/2,-19,-10,-13,-10,-19,-19/2,-10,-15/2,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-10,-6,-9,-8,-17,-8,-8,-6,-10,-11/2,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-15,-15,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-21,-17,-31,-41/2,-32,-32,-64,-32,-32,-21,-32,-18,-22,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-19/2,-12,-11,-21,-21/2,-12,-19/2,-17,-11,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-19,-19/2,-10,-8,-14,-17/2,-12,-12,-24,-12,-13,-9,-15,-8,-10,-19/2,-19,-10,-12,-10,-19,-12,-19,-37/2,-38,-37/2,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-13/2,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-17,-11,-16,-16,-34,-33/2,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-13,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-9/2,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,7/2,4,4,9,5,4,3,5,3,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25 -26,14,27/2,9,13,8,9,8,13,7,15/2,6,9,6,8,7,11,6,13/2,4,6,4,5,5,9,5,6,5,9,6,9,8,15,8,15/2,6,8,5,6,5,8,5,5,4,7,4,11/2,5,10,6,11/2,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,17/2,6,8,5,11/2,5,8,4,9/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,4,4,5,4,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,4,4,7,4,7/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,1,1,1/2,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-6,-4,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-9,-19/2,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-12,-23/2,-8,-13,-7,-17/2,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-7,-12,-7,-21/2,-10,-20,-10,-25/2,-10,-20,-13,-20,-20,-41,-20,-39/2,-12,-19,-10,-13,-10,-19,-10,-21/2,-8,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-21/2,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-31/2,-15,-31,-16,-17,-12,-21,-12,-35/2,-16,-31,-17,-41/2,-17,-31,-20,-63/2,-32,-65,-32,-32,-21,-32,-18,-43/2,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-10,-25/2,-11,-20,-10,-12,-10,-18,-11,-16,-16,-32,-16,-16,-11,-17,-9,-23/2,-10,-19,-10,-21/2,-8,-15,-9,-25/2,-12,-24,-12,-13,-9,-15,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-12,-37/2,-18,-38,-18,-37/2,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-7,-12,-7,-19/2,-9,-18,-9,-11,-9,-17,-11,-33/2,-16,-35,-17,-33/2,-10,-16,-9,-23/2,-10,-18,-9,-10,-7,-13,-8,-21/2,-10,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,6,4,9/2,4,7,5,15/2,8,15,8,8,6,8,5,5,4,6,4,7/2,3,5,3,7/2,4,6,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,2,2,2,5/2,2,4,3,3,3,5,4,9/2,4,9,5,9/2,3,5,3,4,3,3,2,3,3,4,3,3,3,7,4,9/2,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,11/2,4,5,4,5,4,7,4,9/2,4,7,5,13/2,7,12,7,8,6,9,6,15/2,7,13,8,9,8,13,9,13,13,25 -18,10,10,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,7/2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-7/2,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-9/2,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-9,-9/2,-5,-4,-9,-5,-8,-8,-18,-17/2,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-11/2,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-12,-11,-20,-11,-13,-11,-20,-13,-21,-21,-43,-21,-21,-14,-21,-23/2,-14,-12,-22,-11,-12,-8,-14,-8,-11,-21/2,-21,-10,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-21,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-11/2,-10,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-11/2,-11,-7,-10,-10,-23,-11,-10,-6,-10,-6,-8,-6,-12,-6,-6,-4,-8,-9/2,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-9/2,-7,-7,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,5/2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,4,5/2,3,2,2,2,2,2,3,2,2,2,5,3,3,3,4,5/2,3,3,4,5/2,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,5,8,5,5,4,6,4,5,5,9,11/2,6,11/2,9,6,9,9,17 -26,13,13,9,25/2,7,8,7,13,7,8,6,17/2,5,6,6,11,6,6,5,7,5,6,5,10,6,6,6,19/2,6,9,9,14,8,8,6,17/2,6,7,6,8,5,5,4,7,5,6,5,11,6,6,4,13/2,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,15/2,4,5,4,7,4,4,3,9/2,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,11/2,4,6,5,9,5,5,4,11/2,4,4,3,5,3,4,4,11/2,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,3/2,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-6,-13,-7,-8,-6,-19/2,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-25/2,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-23/2,-7,-11,-11,-20,-10,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-39/2,-13,-20,-20,-41,-20,-20,-13,-39/2,-10,-12,-10,-20,-10,-10,-7,-12,-7,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-23/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-17,-8,-9,-6,-19/2,-6,-8,-7,-14,-7,-8,-7,-27/2,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-14,-14,-10,-31/2,-9,-12,-10,-19,-10,-12,-9,-33/2,-10,-16,-15,-31,-16,-17,-12,-43/2,-13,-18,-17,-31,-17,-20,-17,-63/2,-21,-32,-32,-65,-32,-32,-21,-65/2,-18,-22,-18,-33,-17,-18,-13,-43/2,-13,-18,-17,-32,-16,-16,-11,-17,-9,-12,-11,-20,-10,-12,-10,-18,-11,-17,-17,-32,-16,-16,-10,-33/2,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-12,-10,-39/2,-12,-19,-18,-39,-19,-19,-12,-19,-10,-13,-10,-20,-10,-11,-8,-27/2,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-16,-35,-17,-17,-11,-33/2,-9,-11,-10,-18,-9,-10,-7,-25/2,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-12,-12,-22,-10,-10,-7,-23/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-10,-5,-6,-6,-23/2,-8,-12,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,3,3,3,2,2,2,4,3,4,4,6,4,4,4,7,6,9,9,16,8,8,6,15/2,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,3,3,5,3,4,3,7/2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,5/2,2,2,2,4,3,4,3,5,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,7/2,2,3,3,7,4,5,4,5,3,4,4,5,3,3,3,9/2,3,4,5,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,24 -15,8,8,11/2,8,9/2,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,7/2,6,4,4,4,6,4,6,11/2,8,5,5,4,5,7/2,4,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22,-10,-10,-13/2,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-9,-11/2,-9,-8,-17,-8,-9,-13/2,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-35/2,-18,-23/2,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,7/2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,11/2,8,15/2,14 -18,10,19/2,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,9/2,4,6,4,4,4,7,4,4,4,6,4,13/2,6,10,5,5,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,3,2,3,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-5,-4,-9,-4,-5,-4,-10,-6,-19/2,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-13/2,-4,-6,-3,-9/2,-4,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-7,-6,-13,-6,-13/2,-4,-8,-4,-6,-5,-14,-6,-6,-4,-8,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-9,-9,-6,-10,-6,-15/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-10,-21,-10,-11,-8,-14,-8,-12,-11,-20,-11,-27/2,-11,-21,-14,-21,-21,-43,-21,-43/2,-14,-22,-12,-29/2,-12,-22,-11,-12,-8,-14,-8,-11,-11,-21,-10,-11,-7,-12,-6,-15/2,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-9,-5,-15/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-12,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-15/2,-5,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-3,-8,-4,-5,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-12,-6,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-13/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3,3,2,2,3/2,2,3,2,3,3,4,3,3,3,6,5,7,7,11,6,5,4,5,3,4,4,5,3,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,4,2,5/2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,10,6,17/2,8,16 -15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,11/2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-15/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-4,-4,-3,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-18,-18,-12,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-6,-5,-10,-6,-9,-9,-18,-8,-8,-11/2,-10,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-4,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-9/2,-9,-4,-5,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,7/2,5,4,5,5,8,5,6,5,8,5,7,7,13 -27,14,14,9,12,7,8,7,12,7,7,6,9,5,6,6,12,7,7,5,8,5,6,6,19/2,6,6,6,10,7,9,9,14,7,7,5,7,5,6,6,19/2,5,5,4,6,4,5,4,12,7,7,5,8,5,5,4,15/2,4,5,4,7,5,8,8,16,8,8,6,8,5,5,4,13/2,4,4,3,5,3,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,11/2,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-28,-14,-14,-9,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-20,-10,-11,-8,-14,-8,-11,-10,-21,-11,-14,-11,-20,-13,-20,-20,-38,-18,-18,-12,-18,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-10,-9,-21,-10,-11,-7,-11,-6,-8,-7,-27/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-18,-9,-9,-6,-10,-6,-8,-7,-29/2,-8,-9,-7,-12,-8,-12,-12,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-15,-8,-11,-10,-20,-10,-12,-9,-17,-11,-17,-17,-33,-16,-17,-12,-20,-12,-17,-16,-65/2,-18,-22,-18,-32,-21,-32,-32,-67,-33,-34,-22,-34,-18,-22,-18,-67/2,-16,-17,-12,-20,-12,-17,-16,-30,-15,-15,-10,-17,-10,-13,-11,-43/2,-12,-14,-11,-20,-13,-19,-18,-33,-16,-16,-10,-16,-9,-11,-10,-39/2,-10,-11,-8,-15,-9,-13,-12,-26,-13,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-19,-12,-19,-19,-40,-20,-20,-13,-20,-11,-13,-11,-21,-11,-12,-9,-16,-9,-13,-12,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-8,-15,-10,-15,-15,-34,-16,-16,-10,-16,-9,-11,-9,-17,-9,-10,-7,-13,-8,-12,-11,-20,-10,-10,-7,-11,-6,-9,-8,-15,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-22,-10,-10,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-9,-6,-9,-8,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,2,2,2,2,3,2,3,3,11/2,4,5,5,8,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,2,7/2,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,12,7,7,5,8,5,5,4,15/2,4,5,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 -15,8,8,5,7,4,5,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,6,4,4,5/2,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-11/2,-7,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-11/2,-11,-5,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,7,5,7,7,12 -16,9,9,6,7,4,5,5,8,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,3,3,6,4,4,3,6,4,11/2,6,8,4,9/2,3,5,3,7/2,3,5,3,3,3,4,3,7/2,3,7,4,4,3,5,3,3,3,4,3,3,3,5,4,5,5,9,5,6,4,5,3,4,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,6,4,7/2,2,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-5,-11,-6,-13/2,-4,-8,-5,-9,-9,-18,-9,-19/2,-6,-10,-6,-9,-9,-18,-10,-23/2,-9,-17,-11,-17,-17,-37,-18,-18,-12,-18,-10,-23/2,-10,-17,-8,-17/2,-6,-11,-6,-9,-8,-17,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-7,-6,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-12,-6,-6,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,1,1,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,9/2,5,9,5,11/2,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,7,4,5,4,6,4,7/2,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,7,5,7,7,13 -12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,5,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-13/2,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,10 -18,9,9,6,19/2,6,7,6,10,6,6,4,13/2,4,5,5,8,4,4,4,11/2,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,6,4,6,5,12,7,7,5,13/2,4,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-9,-9,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-13,-6,-7,-4,-15/2,-4,-4,-3,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-19/2,-5,-7,-7,-15,-8,-10,-8,-29/2,-9,-14,-13,-24,-12,-12,-8,-23/2,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-12,-5,-5,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-9,-9,-6,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-21,-10,-11,-8,-13,-8,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-45,-22,-22,-14,-43/2,-12,-14,-12,-20,-10,-11,-8,-25/2,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-13,-8,-12,-11,-20,-10,-10,-7,-12,-6,-8,-7,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-27/2,-8,-13,-13,-26,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-8,-6,-12,-6,-7,-5,-10,-6,-8,-8,-13,-6,-6,-4,-6,-3,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,4,11/2,4,6,6,11,6,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,8,5,5,4,13/2,4,4,4,5,3,4,4,11/2,4,6,5,9,5,6,4,13/2,4,5,5,8,5,5,5,8,6,8,8,15 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9 -15,8,17/2,6,8,5,6,5,8,4,9/2,4,6,4,4,4,7,4,9/2,4,4,3,7/2,3,6,4,9/2,4,5,4,5,6,10,6,11/2,4,5,3,4,4,5,3,7/2,3,4,3,3,3,6,4,7/2,2,3,2,5/2,3,4,3,7/2,3,5,4,9/2,4,10,5,5,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-4,-8,-4,-13/2,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-5,-11,-5,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-7,-11,-11,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-9/2,-2,-5,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-7,-7,-17,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-13/2,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-7,-10,-9,-18,-10,-23/2,-10,-18,-12,-18,-18,-36,-17,-17,-11,-18,-10,-23/2,-9,-17,-8,-9,-6,-11,-6,-19/2,-9,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-10,-10,-16,-8,-8,-5,-10,-5,-13/2,-6,-11,-5,-6,-4,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-10,-6,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-11/2,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-13/2,-6,-11,-5,-6,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,5,4,5,5,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,4,3,7/2,4,7,4,9/2,4,6,3,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,5,7,7,12 -15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,4,5,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-7/2,-7,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-33,-16,-16,-10,-16,-17/2,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-10,-9,-15,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-10,-13/2,-10,-10,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,9/2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11 -28,15,15,11,16,9,11,9,16,8,8,6,8,5,6,6,23/2,7,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,4,15/2,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,17,9,8,6,8,5,5,4,6,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-6,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-25/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-37/2,-9,-10,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-12,-12,-20,-10,-10,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-10,-41/2,-10,-11,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-20,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-10,-10,-41/2,-10,-10,-7,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-11,-9,-16,-10,-16,-16,-65/2,-16,-17,-12,-20,-12,-17,-16,-32,-17,-21,-18,-33,-22,-34,-34,-65,-32,-32,-21,-32,-17,-21,-18,-33,-17,-18,-13,-23,-13,-18,-17,-67/2,-16,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-19,-12,-18,-18,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-12,-26,-13,-14,-10,-17,-9,-12,-11,-22,-12,-15,-12,-22,-14,-22,-21,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-14,-8,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-10,-41/2,-10,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-9,-6,-9,-9,-9,-4,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,9,6,7,7,9,5,4,3,3,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,9,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,6,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,13,8,9,7,11,7,10,10,20 -15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,4,7,4,4,7/2,5,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,3,5/2,4,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-10,-17/2,-16,-11,-17,-17,-32,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-21/2,-18,-9,-9,-6,-9,-9/2,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-5,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-5,-5/2,-4,-5/2,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11 -15,8,17/2,6,8,5,13/2,6,8,5,5,4,5,3,4,4,6,4,9/2,4,6,4,5,4,7,4,9/2,4,5,4,11/2,6,10,5,5,4,6,4,4,3,4,3,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,7/2,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,4,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-6,-17/2,-8,-17,-9,-11,-9,-17,-11,-35/2,-18,-33,-16,-33/2,-10,-16,-8,-10,-8,-16,-8,-9,-7,-11,-6,-19/2,-9,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-7,-5,-9,-5,-13/2,-6,-10,-5,-13/2,-6,-11,-7,-11,-11,-18,-9,-9,-6,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-3,-5,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-5,-9,-5,-6,-5,-9,-4,-5,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,1,3,2,3,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,10,5,5,4,6,4,7/2,3,5,3,3,3,4,3,4,4,7,4,7/2,3,4,3,7/2,4,6,4,4,3,5,3,4,4,5,3,2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,6,6,11 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-15/2,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-4,-7/2,-7,-4,-7,-7,-12,-11/2,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8 -16,8,8,6,19/2,6,6,5,9,5,5,4,6,4,4,4,6,4,4,4,11/2,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,4,3,5,3,2,2,5/2,2,2,3,5,3,4,3,7/2,3,4,4,7,4,4,3,9/2,3,4,3,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,5/2,2,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,1,2,2,2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-23/2,-7,-11,-11,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-7,-7,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-5,-19/2,-6,-10,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-36,-18,-18,-12,-35/2,-10,-12,-10,-18,-9,-10,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-21/2,-6,-7,-6,-11,-5,-6,-5,-19/2,-6,-10,-10,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-12,-19,-9,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-3,-4,-4,-11,-5,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,3/2,1,0,0,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,1,1,6,4,4,2,5/2,2,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,5,4,13/2,5,7,7,12 -10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-4,-7/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,7 -13,7,7,5,7,4,5,4,7,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,3,2,3,2,5,3,5/2,2,3,2,2,2,4,3,3,3,3,2,7/2,4,4,3,3,2,3,2,2,2,1,1,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,3,2,5/2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-8,-5,-15/2,-7,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-15/2,-5,-9,-5,-7,-7,-15,-8,-19/2,-8,-14,-9,-15,-15,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,3,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,7/2,3,4,3,7/2,4,7,4,3,2,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5/2,3,5,3,5/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,3,3,2,2,2,3,2,3,3,4,3,7/2,3,5,4,5,5,8 -12,7,7,5,7,4,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,4,4,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,3/2,2,3/2,2,3/2,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -22,11,11,8,11,7,8,6,10,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,3,2,2,1,1,1,0,0,1/2,1,2,2,3,3,4,4,6,3,3,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,3,2,2,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-8,-6,-12,-8,-12,-12,-29,-14,-14,-9,-14,-8,-10,-8,-29/2,-7,-7,-5,-9,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-6,-11,-7,-12,-12,-23,-12,-13,-9,-16,-9,-13,-12,-51/2,-14,-16,-13,-25,-17,-26,-26,-43,-21,-22,-14,-22,-12,-15,-12,-47/2,-12,-12,-8,-14,-8,-12,-11,-25,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-11,-6,-9,-8,-15,-8,-10,-8,-16,-10,-15,-15,-24,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,1,1,1,2,3,2,3,2,3,2,3,2,3,2,3,2,-1,0,0,1,1,1,2,2,3/2,1,0,0,0,0,0,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,13/2,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,15/2,4,5,4,6,4,6,5,8,5,5,4,5,3,3,3,9/2,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,2,2,2,2,7/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,7,13 -13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-5/2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-12,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,4,5/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,11/2,4,6,4,4,3,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,7/2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,5/2,2,2,2,3/2,2,5,3,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,3/2,2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1/2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,1,1,1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-13/2,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-15,-10,-16,-16,-26,-13,-13,-9,-13,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-6,-9,-9,-13,-6,-6,-4,-7,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,3/2,2,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,3,4,3,7/2,3,5,3,7/2,3,5,4,5,5,10,6,11/2,4,6,4,7/2,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,5,3,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,4,4,8 -12,6,6,9/2,6,4,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-11/2,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-5/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,9/2,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6 -20,11,11,7,10,6,6,5,7,4,4,3,7/2,2,3,3,7,4,5,4,6,4,4,4,6,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,3,4,3,3,3,9/2,4,5,5,4,3,3,2,3,2,2,2,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-14,-11,-41/2,-13,-20,-21,-38,-19,-19,-12,-37/2,-10,-12,-10,-18,-9,-10,-7,-13,-7,-10,-10,-21,-10,-10,-6,-21/2,-6,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-18,-8,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,3,2,2,2,7/2,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,6,6,14,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,4,11/2,4,5,5,10 -13,7,7,5,6,4,4,4,5,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,2,3,2,2,2,3,3,4,7/2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-8,-13,-13,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-4,-8,-5,-8,-8,-11,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 -18,9,9,6,8,5,6,5,7,4,4,3,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,4,9/2,3,5,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,3,3,2,3,3,3,2,5/2,2,4,3,9/2,4,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,3/2,2,1,1,3/2,1,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-17/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-13,-20,-20,-35,-17,-17,-11,-16,-8,-21/2,-9,-17,-8,-9,-7,-12,-7,-19/2,-9,-19,-9,-19/2,-6,-10,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-12,-12,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,4,3,5,3,4,4,7,4,9/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,4,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,3/2,2,2,1,1,1,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,4,3,4,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,2,2,2,2,5/2,3,4,3,7/2,3,5,4,5,5,9 -17,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-8,-17/2,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-35,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-11/2,-11,-6,-8,-6,-12,-8,-12,-12,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,5/2,4,3,3,3,5,4,5,5,8 -33,17,16,11,16,9,10,8,14,8,8,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,7,7,25/2,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,7,5,7,7,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,3,11/2,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-25,-12,-11,-7,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-27,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-13,-7,-9,-8,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-46,-23,-23,-15,-23,-13,-16,-13,-25,-13,-14,-10,-18,-11,-15,-14,-28,-14,-14,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-14,-13,-51/2,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-31,-15,-15,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-9,-7,-13,-9,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-17,-34,-18,-20,-15,-25,-15,-21,-20,-40,-22,-26,-21,-39,-26,-40,-40,-70,-34,-34,-22,-34,-18,-22,-19,-35,-18,-19,-13,-22,-13,-18,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-13,-15,-12,-22,-14,-21,-20,-40,-20,-20,-13,-20,-11,-14,-12,-23,-12,-13,-10,-18,-11,-16,-15,-30,-15,-16,-11,-19,-11,-16,-14,-28,-15,-18,-15,-27,-17,-25,-25,-32,-15,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-10,-8,-16,-11,-17,-17,-36,-17,-17,-11,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,6,6,12,7,8,7,11,8,11,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,31/2,8,8,5,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,5,7,7,14 -17,9,8,6,9,5,6,9/2,8,4,4,7/2,5,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,3/2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-12,-11/2,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-10,-7,-12,-7,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-35,-17,-17,-11,-17,-9,-11,-9,-17,-17/2,-9,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-6,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,6,4,4,4,6,4,6,11/2,12,6,6,4,6,4,4,4,6,7/2,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,7 -16,8,8,6,9,5,11/2,4,8,4,9/2,4,5,4,5,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,5/2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,7/2,4,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3/2,2,1,1,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-5,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-3,-5,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-4,-8,-5,-8,-8,-16,-8,-19/2,-7,-12,-7,-10,-10,-19,-10,-13,-10,-20,-13,-39/2,-20,-36,-17,-17,-11,-17,-9,-23/2,-10,-18,-9,-9,-6,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-15/2,-6,-10,-6,-9,-9,-20,-10,-19/2,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-15/2,-5,-10,-5,-7,-6,-13,-7,-8,-7,-12,-8,-12,-12,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-2,0,1/2,0,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,3,2,3,4,6,4,9/2,4,6,4,11/2,5,12,6,13/2,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,9/2,4,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1,1,6,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,3,3,4,4,7 -11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,4,5/2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-2,-1/2,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,5/2,3,2,2,2,2,2,3,3,4,3,3,5/2,4,3,4,7/2,8,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,5/2,4,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -16,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,2,1,1,0,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-9/2,-2,-4,-5,-14,-7,-7,-4,-13/2,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-4,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-8,-7,-23,-11,-12,-8,-23/2,-6,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-11/2,-3,-4,-4,-6,-3,-3,-2,-11/2,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-7,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-8,-5,-8,-8,-17,-9,-10,-7,-12,-7,-11,-10,-19,-10,-12,-10,-20,-13,-20,-20,-37,-18,-18,-12,-37/2,-10,-12,-10,-18,-9,-9,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-10,-5,-6,-5,-12,-6,-7,-5,-10,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-7,-5,-10,-6,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-14,-7,-9,-7,-25/2,-8,-12,-12,-18,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,-1,-4,-1,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,5,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,3,4,3,4,4,11,6,6,4,11/2,4,4,4,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,2,5/2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,1,3/2,2,2,2,6,4,4,3,3,2,3,3,4,3,3,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,3,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,8 -9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -11,6,6,4,5,3,4,3,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-16,-8,-15/2,-4,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-8,-5,-7,-6,-13,-7,-17/2,-7,-13,-8,-13,-13,-24,-12,-12,-8,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-11/2,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-11/2,-6,-11,-5,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,1,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,5/2,3,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,5,3,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-11,-6,-7,-6,-10,-5,-5,-7/2,-7,-4,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4 -18,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,4,3,4,3,4,4,11/2,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,1,1,1,1,2,2,2,2,7/2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-7,-6,-26,-13,-13,-8,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-9,-6,-10,-10,-15,-7,-7,-4,-7,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-7,-7,-19,-10,-11,-8,-13,-8,-11,-10,-21,-11,-14,-12,-23,-15,-22,-22,-38,-19,-19,-12,-18,-10,-13,-11,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-9,-14,-8,-10,-8,-31/2,-8,-8,-6,-12,-7,-9,-9,-18,-9,-9,-6,-11,-6,-8,-6,-25/2,-6,-8,-7,-13,-8,-13,-13,-21,-10,-9,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-9/2,-5,-7/2,-7,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1/2,0,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3 -11,6,11/2,4,6,4,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-13,-13,-21,-10,-21/2,-6,-10,-5,-7,-6,-12,-6,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-7,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,0,0,1/2,0,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,2,3,2,3,2,2,2,5/2,3,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3 -9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-16,-15/2,-8,-9/2,-7,-7/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-5/2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2 -15,8,7,5,7,4,5,4,6,3,3,3,4,3,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-33/2,-10,-16,-16,-27,-13,-12,-8,-25/2,-7,-9,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-17/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-18,-8,-8,-5,-7,-3,-4,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,1,2,2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,7/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,5/2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -13,7,13/2,5,7,4,5,4,5,3,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-15,-7,-7,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-7,-5,-8,-5,-7,-7,-13,-7,-9,-8,-14,-9,-14,-15,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-15/2,-7,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,6,4,7/2,3,4,2,5/2,2,4,3,7/2,3,5,3,4,4,6,4,7/2,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,5/2,2,4,3,3,3,3,3,4,4,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4 -13,7,6,5,7,4,4,3,5,3,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-11/2,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-13/2,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-7/2,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,3/2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,6,4,4,3,4,5/2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -24,12,12,8,12,7,8,7,11,6,6,4,5,3,4,4,11/2,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,9/2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,1,1,1,1,1,1,2,1,1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-29,-14,-14,-9,-15,-8,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-45/2,-12,-13,-9,-16,-9,-13,-13,-26,-14,-17,-15,-28,-19,-29,-29,-46,-22,-22,-15,-23,-12,-15,-13,-24,-12,-14,-10,-18,-11,-15,-14,-55/2,-13,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-10,-15,-15,-33,-16,-15,-10,-15,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-23,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-16,-30,-14,-14,-8,-12,-6,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,11,6,7,5,8,5,6,6,10,6,6,4,6,4,6,6,21/2,6,6,4,5,3,4,4,7,4,5,4,5,3,4,3,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,17/2,5,5,4,6,4,5,4,6,3,3,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,13,7,7,6,9,5,6,5,9,5,6,4,6,4,4,4,11/2,4,4,3,3,2,2,2,2,2,2,2,4,3,4,4,6 -13,7,7,5,7,4,5,4,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-13/2,-6,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-11/2,-11,-11/2,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -13,7,7,5,7,4,5,4,6,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-3/2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-13/2,-7,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-13/2,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-26,-13,-13,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-6,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,1,1,3/2,1,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,7/2,4,6,3,3,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,2,2,5/2,2,4,3,4,3,6,4,4,3,4,3,7/2,3,3,2,2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,9/2,3,5,3,4,3,5,3,7/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3 -10,5,5,4,5,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1/2,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-5/2,-4,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-9/2,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -16,9,9,6,8,5,5,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,7/2,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-3,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-17,-8,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-8,-31/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-21/2,-6,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-10,-19,-9,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,2,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,1,2,1,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,4,3,4,3,9/2,3,4,4,6,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,9/2,3,4,3,3,2,3,2,7/2,2,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,4,3,9/2,3,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3 -10,11/2,6,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -12,6,13/2,4,6,4,4,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,2,2,3/2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-6,-15/2,-6,-12,-8,-12,-12,-25,-12,-25/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,1,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,7,4,7/2,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-11/2,-7,-6,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -21,11,11,7,10,6,7,5,8,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,9/2,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,0,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,3,2,2,2,7/2,2,3,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-18,-9,-9,-5,-8,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-21,-14,-22,-22,-44,-22,-22,-14,-22,-12,-14,-12,-43/2,-11,-12,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-9,-13,-13,-22,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-21,-10,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,11/2,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,3 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-7,-4,-6,-13/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-5,-4,-8,-9/2,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-11,-5,-6,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2 -13,7,13/2,4,7,4,9/2,4,6,4,7/2,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-27/2,-14,-29,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-15/2,-8,-16,-8,-17/2,-6,-9,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-13/2,-5,-9,-5,-8,-8,-14,-6,-13/2,-4,-6,-3,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-14,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,0,0,1/2,0,4,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,6,4,7/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,5/2,3,6,4,7/2,3,3,2,2,2,3,2,2,2,2,2,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1 -11,6,6,4,6,7/2,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-21/2,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-11/2,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1 -18,9,9,6,17/2,5,6,5,7,4,4,3,9/2,3,3,3,6,4,4,2,5/2,2,2,2,4,2,2,1,1,1,1,0,1,1,1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,9/2,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-10,-4,-4,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-5,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-7,-12,-7,-11,-10,-18,-10,-12,-10,-39/2,-13,-20,-20,-43,-21,-20,-13,-20,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-10,-21,-10,-11,-7,-23/2,-6,-9,-8,-13,-7,-8,-6,-25/2,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-12,-6,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-21/2,-5,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,5,3,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,3,2,3,2,7/2,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-28,-27/2,-13,-17/2,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-14,-13/2,-7,-4,-7,-4,-5,-9/2,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-7/2,-5,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,5/2,4,5/2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1 -17,9,9,6,9,5,11/2,4,7,4,4,3,4,3,7/2,3,5,3,3,2,2,2,3/2,2,3,2,1,1,1,1,1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,3,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-5,-3,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-7,-4,-9/2,-4,-10,-5,-13/2,-5,-10,-6,-19/2,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-39/2,-20,-43,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-14,-8,-21/2,-10,-21,-10,-10,-6,-11,-6,-8,-7,-13,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,6,4,7/2,3,3,2,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,4,4,7,4,9/2,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,3,2,7/2,4,8,4,9/2,3,4,2,2,2,2,2,3/2,2,2,1,1,1,3,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1/2,0,0 -17,9,9,6,9,5,6,9/2,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,4,3,3,3,5,7/2,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-4,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-11/2,-16,-15/2,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-42,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-13,-15/2,-10,-10,-21,-10,-10,-6,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1/2,0 -32,17,17,12,17,10,12,10,18,10,10,8,12,7,9,8,15,8,9,7,10,6,8,7,12,6,6,5,7,5,6,6,12,6,6,4,5,3,3,3,4,2,2,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,3,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,4,4,6,3,3,2,2,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-6,-9,-9,-18,-9,-9,-7,-12,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-7,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-33,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-16,-16,-69/2,-17,-17,-11,-18,-9,-11,-9,-16,-8,-9,-7,-12,-7,-11,-10,-21,-10,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-11,-21,-11,-14,-11,-20,-13,-19,-19,-38,-19,-21,-16,-27,-16,-22,-21,-41,-22,-26,-21,-39,-26,-40,-40,-85,-42,-42,-28,-42,-23,-27,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-16,-14,-26,-14,-16,-13,-23,-15,-22,-22,-44,-21,-21,-14,-21,-11,-14,-12,-23,-12,-13,-10,-18,-11,-17,-17,-34,-17,-17,-12,-20,-11,-15,-13,-24,-13,-15,-13,-24,-15,-23,-22,-91/2,-22,-22,-14,-22,-12,-14,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-40,-20,-20,-13,-20,-11,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-41/2,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,4,6,4,5,5,8,5,7,7,25/2,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1 -16,9,9,6,9,6,7,6,10,6,6,9/2,7,4,5,9/2,8,9/2,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-15/2,-13,-7,-10,-10,-20,-11,-13,-10,-19,-25/2,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-10,-15/2,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-7,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-19,-9,-10,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,5/2,3,2,3,2,3,3,5,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,9,9,6,9,6,7,6,10,6,11/2,4,7,4,9/2,4,8,4,9/2,4,6,4,4,4,6,4,4,3,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,4,3,7/2,3,5,4,9/2,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-6,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-9,-19,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-39/2,-20,-42,-20,-41/2,-13,-21,-11,-27/2,-11,-21,-10,-21/2,-8,-13,-8,-11,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-22,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-15/2,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-11,-6,-7,-6,-10,-5,-11/2,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-19,-9,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,7,4,7/2,2,4,3,3,3,4,2,5/2,2,4,3,7/2,3,4,2,5/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,5/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0 -11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-28,-27/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-8,-5,-7,-6,-14,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,8,8,6,9,6,7,6,9,5,5,4,6,4,4,4,10,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,3,7,4,4,3,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-6,-19/2,-5,-6,-5,-11,-6,-7,-6,-21/2,-6,-9,-9,-20,-10,-10,-7,-25/2,-8,-11,-10,-19,-10,-12,-10,-20,-13,-21,-21,-43,-21,-20,-13,-41/2,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-12,-6,-8,-6,-11,-7,-11,-11,-23,-11,-10,-6,-21/2,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-12,-6,-7,-6,-21/2,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-11/2,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,7,4,4,3,7/2,2,3,3,4,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,2,2,3,3,4,3,5,5,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,1,2,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1/2,1,1,1,0 -10,5,5,4,5,7/2,4,4,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0 -12,6,13/2,5,6,4,9/2,4,6,4,4,3,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-27/2,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-7/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,5,3,3,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,-1 -10,11/2,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-7/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1 -17,9,8,6,8,5,5,5,8,5,5,3,4,3,3,3,10,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,2,3,3,4,4,8,5,5,3,4,2,2,2,7/2,2,2,2,2,1,1,0,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-5,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-10,-11,-8,-14,-8,-12,-10,-41/2,-11,-13,-11,-21,-13,-20,-20,-45,-22,-22,-14,-22,-12,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-25,-12,-13,-8,-13,-7,-9,-8,-29/2,-7,-8,-6,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-8,-6,-11,-7,-11,-11,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3/2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,4,3,5,5,8,4,4,3,4,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-5/2,0,0,0,0,0,-1,-1,-3 -9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-13/2,-10,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -10,5,5,3,4,3,3,3,5,3,3,2,3,2,5/2,2,6,4,7/2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-3/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-7,-11,-11,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-3,-5,-3,-11/2,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,0,1,1,1,1,1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,1,1,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,3,3,2,3,2,3/2,2,2,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -11,6,5,4,5,3,4,3,5,3,2,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,1,1,0,0,1/2,0,0,1,3,2,2,2,5/2,2,3,3,4,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-13,-6,-6,-4,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-10,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-32,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-17/2,-4,-6,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-6,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,3/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3/2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-2 -7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-5,-5,-10,-9/2,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -8,4,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,4,2,5/2,2,2,2,5/2,2,3,2,2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-23/2,-12,-27,-13,-13,-8,-13,-7,-17/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-7,-13/2,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-7,-4,-15/2,-7,-17,-8,-15/2,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,5,3,5/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,-1,0,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2 -7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-10,-21/2,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-16,-7,-7,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,0,0,1/2,1,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,1/2,0,1/2,0,1/2,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -13,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,6,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-18,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-11,-8,-15,-9,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-51,-25,-26,-17,-26,-14,-17,-13,-24,-12,-13,-10,-18,-11,-15,-14,-28,-13,-13,-9,-14,-8,-11,-10,-19,-9,-10,-8,-14,-9,-13,-13,-31,-15,-15,-10,-15,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-10,-43/2,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-31,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-5,-8,-4,-6,-6,-27/2,-6,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,11/2,4,4,3,4,3,3,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,1,1,1,1,1,1,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3 -7,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-11/2,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1 -6,3,3,3,4,3,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1/2,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-10,-5,-5,-3,-4,-2,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-13/2,-6,-11,-7,-21/2,-10,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-13/2,-6,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,5,3,5/2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,0,1,3/2,2,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1 -4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,3,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,3/2,2,3/2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1 -6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,1,4,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-18,-9,-9,-6,-17/2,-4,-6,-5,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,4,3,3,2,5/2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,5,3,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1/2,1,2,2,0,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,1,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-16,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1/2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-17/2,-9,-21,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,1,0,0,1/2,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,2,1,1/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-19,-9,-8,-5,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,0,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-7/2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,-1,1,1,1,0,-1,0,-1,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,-7,-3,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-16,-7,-7,-4,-6,-3,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-2,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-6,-25/2,-6,-8,-7,-14,-9,-15,-15,-36,-18,-18,-11,-17,-9,-11,-10,-37/2,-9,-9,-6,-10,-6,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-2,-11,-5,-5,-4,-7,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,1,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4 -3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-19,-9,-9,-11/2,-9,-5,-6,-5,-10,-9/2,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,3,3,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-8,-5,-9,-9,-22,-10,-21/2,-6,-11,-6,-7,-6,-12,-6,-11/2,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-14,-6,-13/2,-4,-7,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,0,0,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,-3,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-7/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-7,-12,-5,-5,-3,-11/2,-3,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-13,-6,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-3,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-10,-5,-6,-5,-21/2,-7,-12,-12,-31,-15,-15,-10,-31/2,-8,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-12,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,-1,0,0,0,-3/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,7,4,4,3,4,3,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,8,5,5,3,4,3,3,3,3,2,3,2,7/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,2,2,3/2,2,2,1,0,1,1,1,3/2,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-7/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-20,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-4,-6,-5/2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-13/2,-7,-13,-6,-5,-3,-6,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-7,-4,-6,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-31,-15,-15,-10,-16,-8,-21/2,-9,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-4,-11/2,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,6,4,7/2,3,4,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,8,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,5/2,2,3,2,7/2,3,5,3,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3 -4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-3,-6,-3,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-4,-3,-7,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-30,-15,-15,-10,-15,-8,-10,-17/2,-16,-8,-8,-6,-10,-6,-8,-15/2,-16,-8,-8,-5,-9,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-17,-8,-8,-11/2,-9,-9/2,-6,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-7/2,-5,-9/2,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3 -8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-2,-4,-4,-17/2,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-26,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-24,-11,-11,-7,-12,-6,-7,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-5,-10,-6,-10,-10,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-16,-13,-23,-15,-23,-23,-61,-30,-30,-20,-30,-16,-19,-15,-28,-14,-15,-11,-19,-11,-15,-14,-28,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-10,-11,-8,-13,-8,-11,-10,-19,-10,-12,-10,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-22,-10,-10,-6,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,1,0,0,12,7,7,5,8,5,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,4,13/2,4,4,3,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,5,3,3,3,4,3,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 -5,3,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-13/2,-8,-6,-11,-7,-11,-11,-30,-15,-15,-10,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3 -5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-5,-6,-2,-5/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-15/2,-6,-12,-8,-23/2,-11,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-9,-9,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-9,-6,-19/2,-10,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,3/2,1,1,1,1/2,0,7,4,4,3,5,3,4,3,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3/2,2,3/2,2,2,1,1,2,1,1,1,0,0,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,0,1,1,1,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-5/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-10,-5,-5,-3,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-13,-13,-34,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-17,-8,-8,-5,-17/2,-4,-5,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-4,-2,-9/2,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,8,4,4,3,5,3,3,3,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,0,1,1,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,9/2,3,3,2,4,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,3,6,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,0,0,0,0,1/2,1,2,2,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,2,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -2,1,1,1,2,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-4,-9,-6,-9,-9,-25,-12,-12,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-6,-4,-13/2,-7,-12,-6,-6,-4,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,7,4,7/2,3,4,3,3,2,4,2,2,2,1,1,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,1,1,2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,2,4,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,0,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-9,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-4,-6,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-7,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-41,-20,-20,-13,-20,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-9,-8,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-15,-7,-8,-6,-10,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-10,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,12,6,6,4,5,3,4,4,11/2,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,7/2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,9/2,3,3,3,4,3,4,4,5,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-7 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,3/2,2,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,2,2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 -2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-6,-3,-3,-2,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3,-3,-5,-2,-3,-2,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-11,-5,-9/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,1,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 -2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1/2,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-17/2,-8,-11/2,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,6,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,0,0,0,1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-19/2,-5,-7,-7,-16,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,5,3,3,2,7/2,2,3,2,5,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,2,2,3,3,5,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5 -1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-3,-2,-3,-1,-1,-1/2,-2,-1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-5/2,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 -1,1,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-4,-4,-9,-4,-11/2,-4,-8,-4,-6,-6,-11,-6,-7,-6,-10,-7,-11,-11,-28,-14,-14,-9,-14,-8,-19/2,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-8,-7,-15,-7,-7,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,1,1,1,9,5,11/2,4,6,4,7/2,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1/2,1,2,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4 -1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-11/2,-11,-6,-7,-6,-10,-7,-11,-10,-27,-13,-13,-17/2,-13,-7,-9,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4 -0,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-13,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-21,-55,-27,-28,-18,-28,-15,-18,-15,-28,-14,-14,-10,-17,-10,-14,-14,-55/2,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-14,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-39/2,-10,-10,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-30,-15,-15,-9,-14,-7,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,16,8,8,6,8,5,7,6,11,6,6,5,7,5,6,5,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,11/2,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,3,4,2,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-9/2,-2,-2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-9 -0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-21/2,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4 -0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-23/2,-12,-30,-15,-15,-9,-15,-8,-9,-7,-15,-7,-7,-5,-9,-5,-15/2,-7,-14,-6,-13/2,-4,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,5,3,4,4,5,3,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3 -0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-5,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2 --2,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-10,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-5,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-7,-4,-15/2,-4,-6,-5,-12,-6,-8,-7,-13,-9,-14,-14,-35,-17,-17,-11,-35/2,-9,-11,-9,-16,-8,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,11,6,6,4,6,4,5,4,6,4,4,4,11/2,4,4,4,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-1,-1,-3 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1 --2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-4,-3,-5,-5,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-7,-6,-12,-8,-12,-12,-29,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-8,-5,-8,-7,-15,-7,-15/2,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,9,5,11/2,4,6,4,4,4,6,4,7/2,3,5,4,9/2,4,7,4,4,3,3,2,3,3,4,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-9/2,-5,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-28,-27/2,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,5/2,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-19,-9,-8,-5,-8,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-22,-15,-23,-23,-55,-27,-26,-17,-26,-14,-17,-14,-51/2,-12,-13,-9,-16,-10,-15,-14,-26,-13,-13,-9,-14,-8,-11,-10,-37/2,-9,-10,-8,-14,-9,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-12,-7,-9,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,3,16,9,9,6,8,5,6,6,19/2,6,6,4,6,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-6,-11/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-30,-29/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-9,-5,-8,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-11/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-17/2,-7,-14,-9,-15,-15,-36,-18,-35/2,-11,-16,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-8,-17,-8,-17/2,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-8,-4,-11/2,-5,-10,-5,-13/2,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,2,2,3/2,2,0,1,3/2,2,2,2,2,2,11,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,5,4,5,3,4,3,4,3,4,4,5,4,11/2,5,7,4,9/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,3,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2 --4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-29,-14,-14,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,3/2,2,2,2,2,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,7/2,5,9/2,7,4,4,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 --8,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-7,-3,-4,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-19,-9,-9,-6,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-9,-6,-10,-10,-20,-9,-9,-6,-9,-5,-6,-4,-10,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-12,-6,-8,-6,-11,-7,-10,-10,-18,-9,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-14,-21,-22,-53,-26,-26,-17,-51/2,-14,-16,-13,-26,-13,-13,-9,-16,-9,-13,-12,-27,-13,-14,-9,-27/2,-8,-10,-9,-18,-9,-10,-8,-15,-9,-14,-14,-31,-15,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-8,-17,-8,-9,-6,-21/2,-6,-8,-7,-16,-8,-10,-8,-27/2,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,3/2,1,1,1,0,1,1,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,12,6,6,4,6,4,5,5,6,4,5,4,15/2,6,8,7,12,7,7,5,6,4,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,3,7,4,4,4,13/2,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,9/2,3,4,3,5,3,3,2,7/2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1/2,1,1,1,3,2,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4 --5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-13/2,-13,-7,-9,-7,-14,-9,-14,-14,-35,-17,-17,-11,-17,-9,-10,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-19/2,-10,-6,-10,-5,-7,-11/2,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-7/2,-5,-4,-10,-5,-6,-9/2,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-7,-4,-13/2,-7,-14,-7,-7,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-6,-9,-9,-20,-9,-9,-6,-10,-5,-11/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-10,-5,-6,-5,-10,-6,-19/2,-9,-18,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-43/2,-22,-52,-25,-25,-16,-26,-14,-16,-13,-25,-12,-27/2,-10,-16,-10,-27/2,-13,-26,-13,-27/2,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,3,17,9,9,6,9,6,7,6,10,6,13/2,5,7,5,6,6,12,6,13/2,4,6,4,5,5,6,4,5,4,6,5,7,7,12,6,13/2,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,9/2,4,7,4,9/2,4,6,4,6,6,10,6,13/2,5,6,4,4,3,5,3,7/2,3,4,3,7/2,3,6,3,3,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-9/2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-22,-22,-51,-25,-25,-16,-26,-14,-16,-13,-25,-12,-13,-19/2,-16,-10,-14,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-17/2,-18,-17/2,-9,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-8,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-10,-9/2,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3 --17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-15,-10,-15,-15,-61/2,-15,-16,-10,-16,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-19,-12,-19,-20,-39,-19,-18,-12,-18,-10,-12,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-30,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-11,-18,-10,-14,-13,-25,-13,-15,-12,-21,-13,-20,-19,-39,-20,-22,-16,-28,-17,-23,-22,-44,-24,-30,-25,-45,-30,-45,-45,-103,-51,-50,-33,-50,-27,-33,-28,-51,-26,-29,-21,-35,-21,-29,-28,-55,-27,-28,-19,-29,-17,-22,-19,-37,-19,-22,-17,-30,-19,-27,-26,-52,-26,-26,-17,-27,-15,-18,-15,-29,-15,-16,-11,-19,-11,-16,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,4,5,33,17,18,12,18,11,13,11,19,10,10,8,12,8,11,10,19,10,10,7,11,7,8,8,14,8,9,7,11,7,10,10,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,3,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-5,-9/2,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-19/2,-10,-15/2,-13,-8,-11,-10,-22,-12,-14,-12,-22,-14,-22,-22,-51,-25,-25,-16,-25,-13,-16,-27/2,-25,-25/2,-14,-10,-17,-10,-14,-27/2,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-9,-13,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-13/2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,17,9,10,7,10,6,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4 --8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-4,-7,-4,-15/2,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-8,-4,-5,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-15/2,-5,-8,-4,-13/2,-6,-11,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-22,-12,-29/2,-12,-22,-14,-43/2,-22,-51,-25,-25,-16,-25,-14,-33/2,-14,-25,-12,-27/2,-10,-18,-10,-29/2,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-10,-8,-15,-9,-27/2,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-3,-5,-5,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,18,10,19/2,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,5,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,7/2,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-5,-3,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-9/2,-8,-9/2,-6,-6,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-34,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-12,-13/2,-9,-9,-18,-17/2,-9,-6,-10,-5,-6,-11/2,-12,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,12,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3 --8,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-1,0,-3,-1,-1,0,0,0,0,0,2,1,1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-9,-5,-6,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-51,-25,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-35/2,-10,-15,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-15,-9,-14,-13,-25,-12,-13,-8,-13,-7,-8,-7,-14,-7,-7,-5,-19/2,-5,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,2,1,1,2,2,5/2,2,3,3,18,10,10,7,21/2,6,8,7,11,6,7,5,7,4,5,5,10,6,6,4,13/2,4,5,5,6,4,4,4,11/2,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,4,4,6,4,4,3,7/2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5 --4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-7/2,-6,-5,-12,-6,-7,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-8,-5,-8,-4,-5,-9/2,-9,-5,-6,-4,-8,-5,-7,-7,-14,-13/2,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,-1/2,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,1,1,2,2,2,2,2,2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2 --5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-9,-7,-14,-9,-14,-14,-35,-17,-33/2,-11,-17,-9,-23/2,-10,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,3,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,7/2,4,4,3,3,3,4,3,3,3,8,4,9/2,3,4,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3 --4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-29,-14,-14,-9,-14,-8,-10,-8,-14,-7,-8,-11/2,-10,-6,-8,-7,-16,-15/2,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-9/2,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,5/2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3 --8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-2,-3,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-20,-13,-20,-21,-54,-27,-27,-17,-26,-14,-18,-15,-55/2,-14,-15,-11,-19,-11,-15,-14,-29,-14,-14,-9,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-13,-27,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,18,10,10,7,11,6,7,6,11,6,6,4,6,4,5,5,10,6,6,4,6,4,4,4,13/2,4,4,3,5,4,5,5,11,6,6,4,4,3,3,3,4,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,2,2,2,2,5/2,2,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-27,-13,-14,-17/2,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-13/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,2,3,2,2,2,3,2,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 --4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-11,-29,-14,-29/2,-9,-14,-8,-19/2,-8,-14,-7,-7,-5,-10,-6,-15/2,-7,-15,-7,-7,-4,-7,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,2,2,2,2,3,2,5/2,2,10,6,6,4,7,4,9/2,4,7,4,4,3,4,3,4,3,6,4,7/2,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,7/2,2,3,2,2,2,3,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-3 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1/2,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-2 --6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-4,-2,-3,-2,-11/2,-4,-7,-7,-9,-4,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-2,0,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,0,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-7,-5,-17/2,-5,-7,-6,-11,-6,-8,-6,-25/2,-8,-12,-13,-36,-17,-17,-11,-17,-9,-11,-9,-18,-9,-9,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,2,1,1,1,2,2,3,3,12,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,9,5,5,3,7/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-4 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,7,4,4,3,5,3,4,3,5,3,3,5/2,4,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2 --4,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-8,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-10,-30,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3 --4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-19/2,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 --8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-22,-10,-10,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-55,-27,-27,-18,-28,-15,-18,-15,-28,-14,-15,-11,-18,-11,-15,-14,-53/2,-13,-13,-9,-14,-8,-10,-9,-17,-9,-11,-8,-15,-9,-13,-13,-23,-11,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-9,-5,-8,-7,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,21/2,6,5,4,5,3,4,4,6,3,3,2,3,3,4,4,12,6,6,4,5,3,3,3,4,3,3,2,2,1,1,0,-3/2,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-28,-13,-13,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,7/2,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,2,2,2,1,2,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-3,-1,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-12,-6,-11/2,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,3,2,5/2,2,2,2,2,2,8,4,9/2,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,7,4,4,3,3,2,5/2,2,2,2,3/2,1,2,1,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2 --2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,3,2,2,2,2,2,2,2,7,4,4,4,11/2,4,4,3,5,3,3,3,4,3,4,4,8,4,4,3,7/2,2,3,2,4,2,2,2,5/2,2,2,2,8,5,5,4,9/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-3 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,5,3,3,5/2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 -0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,1,1,1/2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,0,0,-1/2,-1,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,6,4,4,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,5,3,7/2,3,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,-1,-3 -0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3 --1,0,0,1,1,1,1,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,0,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-2,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-7,-9,-7,-14,-9,-14,-13,-41,-20,-21,-14,-21,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-7,-11,-10,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,1,8,5,5,3,4,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,0,1,1,1,0,0,0,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 -0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,1/2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-21/2,-11,-7,-11,-6,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,3/2,2,3/2,2,1,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 -0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,1,1,0,0,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,-1,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-25,-12,-25/2,-8,-13,-7,-8,-6,-13,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,3/2,1,5,3,5/2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-2,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 -0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,2,2,2,1,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,4,3,3,2,2,1,1,0,1,1,0,0,1/2,0,0,1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-5,-11,-7,-11,-10,-37,-18,-17,-11,-17,-9,-11,-9,-18,-9,-10,-7,-13,-7,-10,-10,-18,-9,-9,-6,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,5,3,3,3,9/2,3,3,3,5,3,3,2,3,2,3,3,7,4,3,2,3,2,2,2,4,2,2,1,1,1,1,1,4,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,2,2,5/2,2,2,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-8 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-24,-11,-11,-7,-11,-11/2,-7,-11/2,-11,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5 -0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,1,2,2,3/2,2,4,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-6,-5,-10,-6,-9,-9,-35,-17,-17,-11,-16,-8,-21/2,-8,-16,-8,-9,-7,-12,-7,-19/2,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-9,-5,-8,-8,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-13,-6,-11/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-3,-5,-5,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1/2,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,1,1,1,1,3/2,2,3,2,3/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-7 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-34,-33/2,-16,-21/2,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,2,3/2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --2,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,9/2,2,2,2,2,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-7,-7,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-19,-12,-18,-18,-69,-34,-33,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-13,-18,-17,-34,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-9,-16,-10,-16,-16,-63/2,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-26,-12,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-13,-13,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-35/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-8,-3,-3,-2,-3,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-9/2,-6,-9/2,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -0,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,-1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-2,-3,-2,-7/2,-4,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-19/2,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-8,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-6,-6,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,4,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1/2,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,-1,-2,-2,-6,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,2,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5 -1,1,2,2,3/2,2,2,1,2,2,2,2,3/2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,2,5/2,2,3,3,4,2,2,2,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,2,3,2,1,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,3,2,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-6,-3,-3,-2,-5/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-6,-5,-19/2,-6,-10,-10,-34,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-8,-8,-16,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-14,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,2,1,1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8 -1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,3/2,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 -1,1,3/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,0,1,3/2,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,3,2,3/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-5,-2,-7/2,-3,-7,-4,-6,-6,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,2,2,3,2,3,2,2,2,2,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,0,-2,-1,-2,-2,2,2,3/2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6 -1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-3/2,-4,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,3/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,3,4,4,4,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,1,1,3/2,2,2,1,1,0,-1,-1,2,1,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,-2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,3/2,1,1,1,0,0,0,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3/2,2,2,2,2,1,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-36,-17,-17,-11,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,1/2,0,0,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 -0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,1,2,1,1,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,2,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,4,2,5/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,1,1,3/2,2,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 --2,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,0,1,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,1,0,-1/2,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,2,2,-2,0,0,0,-1,0,0,1,2,1,1,1,3/2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,1,1,-5,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-4,-15/2,-4,-7,-7,-27,-13,-12,-8,-25/2,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-5,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,3/2,1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,1,1,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8 --1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-16,-15/2,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 --1,0,0,1,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-13/2,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,0,0,1/2,0,1,1,1/2,1,2,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,3/2,1,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-5/2,-2,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7 --1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,1/2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-22,-10,-10,-7,-11,-11/2,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-2,-4,-3,-5,-4,-11,-5,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,1,1,1,1,1/2,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7 --3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,5,3,4,4,6,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,1,3/2,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-19/2,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-44,-22,-22,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-22,-10,-10,-6,-9,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-21/2,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-8,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 --1,0,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-3/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-22,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 --2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-1,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,1,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,1,1,1,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,-2,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-4,-3/2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,2,2,2,3/2,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,2,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,1,0,0,1,1,0,0,-1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-27,-13,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-4,-15/2,-5,-8,-7,0,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-8,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-16,-7,-7,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,0,1,3/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-13/2,-6,-22,-10,-21/2,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,3/2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-20,-19/2,-10,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-3,-7 --4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,1,1,1,1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-22,-11,-11,-7,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-5,-10,-7,-11,-11,-38,-19,-19,-13,-20,-10,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-7,-6,-21/2,-5,-6,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,7/2,2,3,3,4,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-12,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-20,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 --2,0,-1/2,0,-1,0,1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,5/2,3,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,-1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-13/2,-7,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-13/2,-5,-9,-5,-13/2,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,2,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7 --5,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,1,1,1,1,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,3,2,2,1,1/2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-23,-11,-10,-6,-10,-5,-7,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-5,-21/2,-6,-10,-10,-37,-18,-18,-12,-35/2,-9,-11,-9,-18,-9,-10,-7,-25/2,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-10,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,7/2,3,4,3,5,3,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,2,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 --3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-13/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-3/2,0,-2,-1,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-35/2,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-19/2,-9,-18,-9,-19/2,-6,-10,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-9,-20,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,7/2,2,3,2,7/2,4,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1/2,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1/2,-2,-1,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-6,-10,-5,-6,-11/2,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,4,5/2,3,2,3,3,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 --10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-7,-7,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-5,-10,-6,-9,-9,-37/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-45,-22,-22,-14,-21,-11,-13,-10,-19,-9,-10,-7,-11,-7,-10,-9,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-9,-8,-15,-8,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-16,-9,-12,-10,-20,-11,-14,-11,-21,-14,-21,-21,-74,-37,-37,-24,-37,-20,-25,-21,-38,-19,-20,-14,-24,-14,-20,-19,-37,-18,-19,-13,-20,-11,-14,-12,-24,-13,-15,-12,-22,-14,-21,-21,-42,-21,-21,-13,-20,-11,-13,-10,-19,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-33,-16,-15,-10,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-10,-8,-16,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-9,-15,-8,-11,-10,-19,-10,-13,-11,-21,-14,-21,-21,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-1,0,0,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-12,-25 --4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-37,-18,-18,-12,-18,-10,-12,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-17/2,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-15/2,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-13/2,-10,-10,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-22,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-7,-4,-11/2,-5,-9,-5,-6,-5,-10,-6,-10,-10,-38,-18,-18,-12,-18,-10,-12,-10,-19,-9,-19/2,-7,-12,-7,-10,-9,-18,-8,-17/2,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-4,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-10,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3,3,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,0,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,1,1,1,0,1,2,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-11/2,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-13/2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 --3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-22,-10,-10,-7,-11,-5,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-4,-5,-5,-8,-4,-5,-5,-10,-6,-10,-10,-39,-19,-19,-12,-35/2,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-9,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-5,-4,-10,-5,-7,-6,-11,-7,-11,-11,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-5/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-4,-6,-6,0,0,0,1,3/2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6 --2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-16,-7,-7,-4,-7,-3,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,1,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8 --1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1/2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-13,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,0,0,1/2,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-25,-12,-12,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-42,-20,-20,-13,-20,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,-2,-1,-1,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,0,0,0,0,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-5,-5,-11 --1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-3/2,-2,-2,0,0,0,0,0,0,0,0,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,-3,-1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-14,-6,-13/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6 --1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4 --2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,0,0,0,1,3/2,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-1,0,-1,0,-3/2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1/2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-13,-8,-25/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,-1,0,0,0,1/2,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,2,1,1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-16,-7,-7,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-11,-6,-7,-6,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,-1,0,0,1,0,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-7 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-4,-4,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,-1,-2,-2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,3/2,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-3,-1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,-1,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-30,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-48,-24,-24,-16,-24,-13,-15,-12,-23,-11,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-5,-9,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,7/2,2,2,1,0,1,1,1,0,1,1,1,2,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-1,0,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-16 --3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-24,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-3/2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8 --4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,3,2,1,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-5/2,-2,-1,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-5,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-25,-12,-25/2,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-11/2,-4,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-7,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,1,1,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-7/2,-4,-8 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-9/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-28,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-19/2,-6,-8,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,-1,0,0,0,-1,0,1,1,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,1,1,1,1,3/2,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,1,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1/2,0,-1,-1,-1,-1,-2,-2,-7/2,-2,-4,-4,-9 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,1/2,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,-1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,2,2,2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-13,-6,-6,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-9/2,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,3/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5 --9,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,0,-1,3,2,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-6,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-21,-10,-10,-6,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-37,-18,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,0,0,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1/2,0,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --5,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-13,-6,-11/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-9/2,-4,-23,-11,-11,-7,-11,-6,-15/2,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-11/2,-5,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,0,1,0,-1/2,0,-3,-1,-1,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-4,-3,3,2,2,2,5/2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-6,-18,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-14,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-34,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-6,-23/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-5,-8,-8,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-8,-8,-11,-5,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,0,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7 --4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,-1/2,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-22,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-5,-5,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 --7,-3,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-17,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-17/2,-8,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,0,1,2,2,3/2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,-3/2,-1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-5/2,-2,-6 --6,-5/2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-10,-9/2,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-15/2,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6 --13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-3,-3,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-36,-17,-17,-11,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-17,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-17,-17,-11,-17,-9,-11,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-66,-32,-32,-21,-33,-18,-21,-17,-31,-16,-17,-12,-20,-12,-17,-16,-32,-16,-16,-11,-17,-9,-12,-10,-20,-11,-13,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-33,-16,-15,-10,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-45/2,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-12,-19,-19,-27,-13,-14,-9,-15,-8,-10,-8,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-3,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 --6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,2,2,2,2,2,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-10,-16,-8,-10,-8,-15,-15/2,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-15/2,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-13,-6,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7 --6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-34,-16,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-17/2,-9,-14,-7,-7,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-3,-4,-5/2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-23,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,3,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,2,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,0,0,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-1,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-5,-20,-9,-9,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-6,-36,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-17,-8,-8,-5,-8,-4,-6,-5,-7,-3,-4,-3,-11/2,-3,-4,-3,-10,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-14,-7,-7,-4,-15/2,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-8 --3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 --5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,4,2,2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-5,-3,-4,-4,-26,-13,-13,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 --4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,0,0,-1,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,1,1,1/2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-25,-12,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-5,-43,-21,-20,-13,-20,-11,-13,-11,-20,-10,-11,-7,-12,-7,-10,-10,-19,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-4,-11,-5,-5,-4,-7,-4,-6,-5,-19/2,-5,-6,-5,-9,-6,-10,-10,-20,-9,-9,-6,-9,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-5,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,1,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-23,-11,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-11,-5,-11/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3 --9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,1,1,1,1,0,0,5,3,3,2,7/2,2,3,3,5,3,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-37,-18,-18,-12,-18,-9,-11,-9,-17,-8,-8,-6,-21/2,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,1,1,-1,0,0,0,-1/2,0,0,1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,-3,-1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6 --6,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-9/2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-23,-11,-11,-7,-11,-6,-7,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4 --9,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-3,-5,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-15/2,-7,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-4,-4,-34,-16,-16,-10,-17,-9,-11,-9,-16,-8,-17/2,-6,-9,-5,-7,-7,-15,-7,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-17/2,-8,-19,-9,-9,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6 --8,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-33,-16,-16,-10,-16,-17/2,-10,-8,-15,-15/2,-8,-11/2,-9,-5,-7,-7,-14,-13/2,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-13/2,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-7 --17,-8,-8,-5,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,13/2,4,4,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-8,-8,-31/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-39/2,-10,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-15,-14,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-18,-12,-18,-18,-36,-18,-18,-12,-18,-10,-12,-9,-17,-9,-10,-7,-12,-7,-9,-8,-33/2,-8,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-67,-33,-32,-21,-32,-18,-22,-18,-33,-16,-17,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-19,-12,-17,-17,-36,-18,-18,-12,-19,-10,-12,-10,-18,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-11,-25,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-21/2,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-9,-7,-14,-9,-14,-13,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-7,-3,-2,-1,-1,0,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-15 --8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-12,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-34,-33/2,-16,-21/2,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,3,2,2,2,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-4,-8,-5,-15/2,-8,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-36,-18,-35/2,-12,-17,-9,-11,-9,-18,-9,-19/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-8 --7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-11/2,-6,-7/2,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-26,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --13,-6,-5,-3,-9/2,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-23,-11,-12,-8,-23/2,-6,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-16,-7,-7,-4,-15/2,-4,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-42,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-12,-8,-27/2,-8,-11,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-24,-12,-12,-8,-12,-6,-8,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8 --8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-14,-13/2,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-9,-4,-4,-5/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --11,-5,-9/2,-2,-4,-2,-2,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-4,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7 --10,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-19/2,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-18,-17/2,-8,-5,-8,-4,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --19,-9,-8,-5,-8,-4,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-7,-8,-6,-12,-8,-13,-13,-30,-15,-15,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-17,-8,-9,-6,-10,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-8,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-21,-10,-11,-8,-13,-7,-10,-9,-37/2,-10,-12,-10,-19,-12,-19,-19,-36,-18,-18,-11,-17,-9,-10,-8,-33/2,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-9,-24,-11,-11,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-10,-10,-64,-31,-31,-21,-32,-17,-20,-17,-63/2,-16,-16,-11,-19,-11,-16,-15,-29,-14,-15,-10,-17,-9,-12,-10,-39/2,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-16,-9,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-13,-13,-29,-14,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-12 --10,-9/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-9/2,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-15/2,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,2,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-20,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-8,-7,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-11,-6,-7,-6,-10,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-42,-20,-41/2,-13,-21,-11,-13,-11,-20,-10,-10,-7,-12,-7,-21/2,-10,-20,-9,-9,-6,-11,-6,-8,-6,-12,-6,-15/2,-6,-12,-7,-10,-10,-21,-10,-21/2,-6,-10,-5,-13/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,1/2,1,0,0,1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8 --9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-34,-16,-16,-21/2,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-17/2,-5,-8,-9,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-17/2,-5,-8,-8,-15,-7,-8,-6,-19/2,-6,-8,-8,-14,-7,-9,-7,-14,-9,-14,-14,-30,-14,-14,-9,-29/2,-8,-9,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-9,-5,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-16,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-13,-13,-9,-14,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-11,-8,-27/2,-8,-11,-10,-18,-9,-11,-9,-35/2,-12,-18,-18,-38,-19,-19,-12,-18,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-16,-8,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-23/2,-8,-12,-12,-25,-12,-12,-8,-23/2,-6,-7,-6,-13,-6,-7,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-10,-61,-30,-30,-20,-61/2,-16,-20,-17,-30,-15,-16,-12,-39/2,-12,-16,-15,-30,-15,-15,-10,-33/2,-9,-11,-10,-20,-10,-12,-9,-33/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-18,-9,-10,-7,-25/2,-7,-10,-9,-17,-8,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-7,-6,-11,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-25/2,-8,-13,-13,-29,-14,-14,-9,-27/2,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,1,1,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-11 --11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-11/2,-14,-6,-6,-4,-7,-7/2,-5,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-5,-8,-9,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-40,-20,-20,-13,-20,-21/2,-13,-11,-20,-10,-10,-15/2,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-12,-6,-11/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-19/2,-8,-15,-10,-15,-15,-31,-15,-29/2,-9,-14,-8,-19/2,-8,-15,-7,-15/2,-6,-9,-5,-15/2,-7,-15,-7,-8,-5,-9,-5,-13/2,-6,-11,-5,-6,-5,-9,-6,-17/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-27/2,-14,-28,-13,-13,-9,-15,-8,-19/2,-8,-16,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-10,-6,-9,-9,-17,-8,-17/2,-6,-9,-5,-7,-6,-13,-6,-15/2,-6,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-23/2,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-17/2,-6,-10,-5,-7,-7,-13,-6,-15/2,-6,-11,-7,-21/2,-10,-23,-11,-11,-7,-12,-6,-15/2,-6,-10,-5,-6,-4,-8,-4,-13/2,-6,-14,-6,-6,-4,-8,-5,-7,-6,-13,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-25/2,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-8,-8,-15,-7,-15/2,-5,-9,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-59/2,-20,-30,-16,-20,-17,-31,-16,-33/2,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-23/2,-10,-20,-10,-23/2,-9,-16,-10,-31/2,-15,-31,-15,-16,-10,-16,-8,-21/2,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-18,-9,-19/2,-6,-10,-5,-13/2,-6,-13,-7,-8,-6,-10,-6,-19/2,-10,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-13/2,-6,-12,-6,-13/2,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-15/2,-9,-8,-15,-7,-8,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-6,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-11,-8,-13,-15/2,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-12,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-7,-7,-13,-7,-8,-6,-11,-7,-11,-11,-23,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-9/2,-7,-6,-14,-13/2,-7,-9/2,-8,-5,-7,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-11,-11/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-30,-20,-30,-16,-20,-17,-31,-31/2,-16,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-16,-10,-16,-15,-31,-15,-15,-10,-16,-8,-10,-9,-17,-17/2,-9,-7,-12,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-5,-7,-7,-15,-8,-9,-7,-13,-8,-13,-13,-27,-14,-15,-11,-19,-11,-16,-15,-29,-16,-20,-17,-32,-21,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-13,-22,-13,-18,-17,-33,-16,-17,-12,-19,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-37,-18,-18,-12,-20,-11,-13,-11,-20,-10,-12,-10,-18,-11,-16,-15,-31,-15,-16,-12,-20,-12,-16,-15,-29,-16,-20,-16,-30,-20,-30,-30,-61,-30,-30,-19,-29,-16,-19,-16,-29,-15,-16,-11,-18,-11,-15,-14,-28,-14,-14,-10,-17,-10,-13,-11,-22,-11,-13,-10,-19,-12,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-8,-15,-9,-14,-13,-27,-14,-15,-11,-19,-11,-15,-14,-29,-16,-20,-16,-30,-20,-30,-31,-127/2,-31,-30,-20,-30,-16,-18,-15,-27,-13,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-11,-7,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-18,-9,-10,-7,-12,-7,-11,-11,-23,-12,-15,-12,-21,-14,-22,-22,-122,-60,-60,-40,-61,-33,-40,-34,-62,-32,-34,-24,-40,-24,-34,-32,-63,-32,-33,-22,-35,-20,-25,-22,-41,-22,-25,-20,-36,-23,-35,-34,-68,-34,-34,-22,-33,-18,-22,-19,-35,-18,-20,-15,-25,-16,-23,-22,-44,-22,-24,-17,-27,-16,-21,-18,-35,-19,-22,-18,-34,-22,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-17,-11,-18,-10,-14,-13,-26,-14,-16,-13,-23,-14,-21,-20,-41,-20,-20,-14,-22,-12,-15,-13,-24,-13,-15,-12,-21,-13,-18,-18,-36,-18,-19,-14,-23,-14,-20,-19,-38,-21,-25,-21,-39,-26,-40,-40,-81,-40,-41,-27,-41,-23,-28,-23,-42,-21,-22,-16,-26,-16,-22,-20,-39,-19,-20,-14,-24,-14,-18,-16,-31,-16,-19,-15,-26,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-24,-12,-14,-11,-19,-12,-17,-16,-33,-16,-17,-12,-21,-12,-15,-14,-27,-14,-16,-12,-22,-14,-22,-22,-44,-22,-22,-15,-23,-12,-15,-13,-24,-12,-13,-9,-16,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,4,7,4,3,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --17,-8,-8,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-8,-10,-8,-14,-9,-14,-14,-30,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-8,-15,-19/2,-14,-15,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-11/2,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-17,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-15/2,-11,-10,-22,-11,-12,-8,-13,-7,-10,-17/2,-17,-9,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-13/2,-10,-11/2,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-11,-13/2,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-40,-20,-20,-13,-20,-11,-13,-11,-20,-10,-10,-15/2,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-7,-12,-6,-8,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-19/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-8,-5,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-8,-4,-11/2,-4,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-15/2,-6,-10,-6,-15/2,-7,-14,-8,-19/2,-8,-14,-9,-29/2,-14,-30,-15,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-5,-4,-9,-4,-11/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-9,-8,-15,-10,-29/2,-14,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,3,2,3,2,3,3,4,4,7,4,7/2,3,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,2,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-33/2,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-23/2,-9,-17,-11,-33/2,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-8,-23/2,-10,-22,-11,-12,-8,-13,-7,-19/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-19/2,-6,-10,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-19/2,-9,-19,-10,-13,-10,-19,-12,-39/2,-20,-41,-20,-20,-13,-20,-11,-13,-11,-20,-10,-21/2,-8,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-17/2,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-23/2,-7,-12,-6,-15/2,-6,-11,-6,-13/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-21/2,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-12 --11,-5,-5,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-40,-19,-19,-13,-20,-21/2,-13,-11,-20,-10,-11,-15/2,-13,-15/2,-10,-19/2,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-11/2,-7,-6,-12,-11/2,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-12,-6,-6,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-9/2,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-4,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7 --17,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-10,-8,-31/2,-10,-15,-15,-32,-15,-15,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-9,-9,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-14,-9,-15,-15,-32,-16,-16,-10,-29/2,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-13,-6,-6,-4,-15/2,-4,-5,-5,-11,-6,-7,-5,-19/2,-6,-8,-7,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-7,-7,-13,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-32,-16,-16,-10,-29/2,-8,-9,-7,-14,-7,-7,-5,-17/2,-5,-7,-6,-14,-7,-7,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,4,2,2,2,7/2,3,4,4,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-5,-21/2,-6,-10,-10,-60,-30,-30,-20,-59/2,-16,-20,-17,-31,-15,-16,-12,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-12,-9,-16,-10,-16,-16,-33,-16,-16,-10,-33/2,-9,-11,-10,-19,-9,-10,-7,-25/2,-8,-11,-11,-21,-11,-12,-8,-27/2,-7,-9,-8,-18,-9,-11,-8,-31/2,-10,-14,-14,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-23/2,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-6,-21/2,-6,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-41,-20,-20,-13,-41/2,-11,-14,-11,-21,-11,-12,-8,-14,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-25/2,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-6,-21/2,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,5/2,2,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,1,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,1,2,2,2,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3/2,1,0,0,2,2,2,2,3/2,2,2,2,3,2,1,1,1,1,0,0,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11 --9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,1/2,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-6,-11,-11/2,-6,-4,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-15/2,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-6,-6,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-4,-13/2,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-6,-4,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,1,-2,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-40,-19,-19,-12,-19,-10,-13,-11,-20,-10,-11,-8,-14,-8,-21/2,-10,-20,-10,-10,-6,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-21/2,-7,-11,-6,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-13/2,-5,-10,-6,-19/2,-9,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-6,-4,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-8,-4,-5,-4,-6,-4,-6,-6,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-13/2,-6,-12,-6,-17/2,-7,-13,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,4,3,3,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,2,2,2,2,1,1,1/2,1,1,1,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8 --9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-17/2,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-16,-33,-16,-16,-10,-16,-9,-11,-9,-18,-9,-10,-7,-11,-7,-10,-9,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-32,-16,-16,-10,-15,-8,-10,-8,-31/2,-8,-8,-6,-10,-5,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-21/2,-5,-6,-5,-10,-6,-9,-8,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-11,-5,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-34,-17,-17,-11,-16,-8,-10,-8,-29/2,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,3/2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,3,4,4,8,4,4,3,5,3,2,2,5/2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-6,-12,-7,-11,-11,-59,-29,-30,-20,-30,-17,-21,-17,-32,-16,-16,-11,-19,-11,-15,-14,-29,-14,-15,-10,-16,-9,-12,-10,-19,-10,-11,-8,-15,-10,-15,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-9,-10,-7,-13,-8,-11,-10,-22,-11,-11,-7,-12,-7,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-11,-9,-33/2,-8,-8,-6,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-12,-6,-8,-7,-29/2,-7,-8,-6,-11,-7,-10,-10,-17,-9,-10,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-18,-12,-19,-19,-41,-20,-20,-13,-20,-11,-14,-12,-45/2,-11,-12,-9,-15,-8,-11,-10,-18,-9,-10,-7,-12,-6,-8,-7,-29/2,-8,-9,-7,-14,-9,-13,-12,-24,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-3,-1,0,1,1,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,1/2,1,1,1,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-21,-10,-10,-6,-10,-5,-7,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,3/2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-4,-2,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-13/2,-7,-19,-9,-19/2,-6,-9,-4,-11/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,3,5,3,7/2,3,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-5,-10,-6,-21/2,-10,-22,-10,-21/2,-6,-11,-6,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,2,2,1,1,2,2,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,4,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-7 --6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-5/2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-14,-7,-7,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-24,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-9/2,-8,-15/2,-16,-15/2,-8,-9/2,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --10,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-20,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-7,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-15,-7,-7,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-23/2,-6,-7,-5,-11,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,-1,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-4,-5,-4,-15/2,-4,-7,-7,-41,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-11,-8,-25/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-11,-7,-11,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-7,-5,-17/2,-4,-6,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-12,-8,-25/2,-7,-9,-7,-16,-8,-8,-6,-10,-5,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,0,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,3/2,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,1,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-6,-7/2,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-25,-12,-12,-15/2,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-7/2,-7,-5,-8,-8,-16,-15/2,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-4,-11/2,-4,-9,-4,-7/2,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-21,-10,-9,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3,3,6,3,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3,3,0,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-35,-17,-16,-10,-17,-9,-11,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-7,-11,-11,-22,-11,-11,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3/2,1,2,1,1/2,0,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,1,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-14,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-32,-31/2,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-4,-3,-6,-4,-6,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 --15,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-16,-10,-15,-15,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-10,-7,-11,-11,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-9,-5,-7,-7,-15,-8,-9,-8,-15,-10,-15,-14,-30,-14,-14,-9,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-8,-8,-31/2,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-24,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-38,-18,-18,-11,-17,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-35/2,-8,-8,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1/2,1,2,2,2,2,3,3,4,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-63,-31,-30,-19,-29,-15,-18,-15,-28,-14,-16,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-18,-11,-17,-17,-32,-15,-15,-10,-15,-8,-10,-9,-17,-8,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-7,-12,-7,-10,-9,-18,-10,-12,-9,-17,-11,-16,-16,-33,-16,-16,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-10,-10,-43/2,-10,-11,-8,-14,-8,-11,-11,-22,-12,-15,-12,-22,-14,-20,-20,-41,-20,-20,-13,-20,-11,-13,-10,-18,-9,-10,-8,-14,-8,-12,-11,-45/2,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-6,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-5/2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,2,2,2,1,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-13/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,2,2,3,5/2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-31,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-16,-8,-8,-9/2,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-7,-4,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-5 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-15/2,-8,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,4,3,4,3,5,3,3,2,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-32,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-8,-4,-9/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-11,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-11/2,-6,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,2,2,3/2,2,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1/2,0,1,1,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,1,3,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-2,-3,-3,-6 --5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,1,3,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-4,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,2,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,1,2,2,2,2,7/2,3,4,4,6,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,7/2,3,4,3,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-5,-34,-16,-16,-10,-31/2,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-7,-3,-4,-3,-9,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-11,-6,-8,-6,-23/2,-8,-12,-12,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,4,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 --4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-19,-9,-9,-5,-9,-9/2,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,0,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3,3,5,3,5/2,2,3,2,3/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,3/2,2,0,0,1/2,1,0,0,1/2,1,0,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,2,1,1,0,1,0,0,0,1/2,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-6 --10,-5,-5,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-6,-5,-9,-6,-10,-10,-25,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-8,-8,-26,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,0,1,1,1,1,3/2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,7/2,2,3,2,3,2,3,4,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-40,-19,-19,-12,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-3,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-13,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-25,-12,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,4,2,2,2,2,2,3,3,9/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-13 --5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-21,-10,-10,-6,-9,-5,-6,-9/2,-9,-4,-4,-5/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-6,-5,-15,-7,-15/2,-4,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-16,-8,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-23,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-5,-3,-4,-4,-13,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-5,-7,-3,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,2,2,3/2,2,2,2,3/2,1,3,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3/2,1,1,2,3/2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-6 --9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-23,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,-1,0,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,0,1,1,1,2,2,2,3,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-31,-15,-15,-10,-31/2,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-6,-5,-8,-4,-4,-4,-15/2,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-7,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,7/2,3,4,3,5,3,3,2,7/2,2,3,3,3,2,2,2,7/2,3,4,4,2,2,2,2,5/2,2,1,1,3,2,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-19,-9,-9,-6,-10,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-5,-3,-5,-4,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-3,-7 --8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-28,-14,-27/2,-9,-14,-7,-17/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-13/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-11,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,7/2,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-5/2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-4,-2,-2,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-5/2,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,-1/2,-1,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-9,-8,-15,-10,-15,-15,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-33/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-40,-20,-20,-13,-20,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-11,-23,-11,-12,-8,-13,-7,-10,-9,-17,-8,-9,-7,-13,-8,-12,-11,-45/2,-11,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-44,-22,-22,-15,-23,-13,-16,-13,-25,-12,-13,-10,-17,-10,-13,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-9,-37/2,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-9,-4,-4,-2,-3,-1,0,1,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-54,-26,-26,-17,-26,-14,-17,-13,-24,-12,-13,-9,-16,-9,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-41/2,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-59/2,-14,-14,-10,-16,-9,-11,-10,-20,-10,-11,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-11,-23,-12,-15,-12,-21,-14,-22,-22,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-10,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-9,-9,-6,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-6,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,1,1,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-11/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 --8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-10,-6,-10,-5,-6,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1/2,-4,-2,-2,-1/2,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-15,-7,-8,-5,-7,-7/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-10,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-19/2,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-12,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1/2,1,-4,-2,-3/2,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-6,-11,-6,-7,-5,-10,-6,-21/2,-10,-15,-7,-15/2,-5,-7,-4,-9/2,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,4,3,3,3,5,3,7/2,3,4,3,9/2,4,1,1,1,1,2,2,2,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-5,-3,-5,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,1,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-10,-9/2,-4,-3,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-5,-4,-17/2,-5,-8,-8,-9,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,3,3,4,2,2,1,1,1,2,2,1,1,1,1,3/2,2,2,1,2,2,2,1,1/2,0,0,1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-28,-13,-13,-8,-13,-7,-9,-7,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-7,-16,-7,-7,-4,-15/2,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-11,-6,-7,-6,-23/2,-7,-11,-11,-17,-8,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-3,-3,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,5/2,2,3,3,4,3,4,3,5,4,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-11/2,-5,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,0,0,0,0,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,2,2,2,1,2,2,2,2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-11/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,4,3,3,3,0,0,0,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 --3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,1/2,2,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,5/2,3,3,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-7,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-24,-11,-11,-7,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-16,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9/2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-31,-15,-15,-10,-15,-8,-10,-8,-14,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-19/2,-5,-6,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-6,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,1,1,0,-3/2,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,2,3,2,3,3,5,3,4,3,4,3,5,5,-1,0,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-6,-2,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,0,2,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-9,-6,-9,-8,-17 --2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9 --2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,2,2,3/2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-10,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-5,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,5/2,2,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-5/2,-1,-2,-3,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,1,0,0,0,0,1/2,1,2,2,3,2,2,2,7/2,2,3,3,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-14,-7,-7,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,2,2,2,3/2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,9/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-11,-5,-5,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-5,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-39,-19,-20,-13,-20,-11,-13,-11,-20,-10,-10,-7,-11,-6,-9,-8,-35/2,-8,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-22,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,3,5,3,3,3,5,4,5,4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-22 --2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-18,-8,-17/2,-6,-9,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,0,0,-4,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-7,-3,-4,-3,-7,-4,-7,-7,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,-4,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 --1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-3,-6,-2,-2,-1,-5/2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-20,-9,-9,-6,-10,-5,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,-6,-2,-2,-2,-7/2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-13/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,0,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-6,-5/2,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7 --3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-6,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-3,-1,-1,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-7/2,-4,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-6,-4,-7,-7,-8,-4,-7/2,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-10 --3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-5/2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-16,-15/2,-8,-9/2,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 --6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-6,-29,-14,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,0,0,1,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,1,1,2,2,3,2,3,2,7/2,2,2,2,3,3,4,4,-12,-6,-6,-3,-5,-2,-2,-1,-3/2,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-31,-15,-15,-10,-15,-8,-10,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-5,-4,-15/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-14,-9,-13,-13,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,0,0,0,1,1,1,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20 --3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11 --3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,-7,-3,-7/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,0,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-4,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-8,-4,-4,-3,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14 --2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-12 --4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-2,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-9/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-28,-14,-14,-9,-27/2,-7,-8,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,5/2,2,2,2,4,3,4,3,9/2,3,4,5,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-11/2,-3,-5,-4,-7,-3,-4,-4,-15/2,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-8,-7,-13,-7,-8,-6,-25/2,-8,-12,-12,-11,-5,-5,-4,-13/2,-3,-4,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,0,0,0,0,0,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-7/2,-7,-4,-7,-7,-15 --4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-6,-6,-28,-14,-27/2,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-11/2,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,5/2,2,2,2,2,3,4,3,7/2,3,6,4,11/2,6,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-11,-7,-11,-11,-23 --5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-9/2,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-7/2,-7,-9/2,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,6,4,6,6,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-11,-7,-11,-11,-23 --11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-7,-15,-8,-10,-8,-15,-10,-16,-16,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-12,-12,-59,-29,-29,-19,-28,-15,-19,-16,-30,-15,-17,-13,-22,-13,-18,-17,-34,-17,-17,-11,-18,-10,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-20,-10,-10,-7,-12,-7,-11,-10,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,5,5,9,6,9,10,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-53,-26,-26,-17,-25,-14,-17,-14,-27,-13,-14,-10,-17,-10,-13,-12,-23,-11,-12,-8,-12,-7,-9,-9,-18,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-11,-9,-18,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-9,-12,-11,-21,-11,-12,-10,-18,-11,-17,-17,-36,-17,-17,-11,-18,-9,-11,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-11,-14,-12,-22,-15,-23,-23,-21,-10,-11,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-10,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-13,-9,-16,-9,-12,-11,-23,-12,-15,-13,-24,-15,-23,-23,-46 --5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,3,5/2,3,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-10,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-26,-12,-12,-8,-12,-13/2,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-10,-9/2,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-9/2,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --5,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-7/2,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-15/2,-6,-11,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,2,2,4,3,7/2,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-26,-12,-12,-8,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-4,-9,-4,-5,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-3,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 --5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-5,-29,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,11/2,4,5,5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-26,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-16,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-11,-11,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3,2,1,1,1,1,1,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,2,2,0,0,0,1,3/2,2,2,2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-21/2,-7,-11,-11,-22 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-4,-7/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,2,2,2,2,1,1,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,3/2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,5/2,2,4,3,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-9/2,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,1,1,1,0,0,0,0,0,0,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 --2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-5,-5,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-7/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-15/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,3/2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-8,-31/2,-8,-9,-7,-12,-7,-9,-9,-17,-8,-8,-6,-10,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,4,4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-13,-6,-6,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-26,-12,-12,-8,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-17,-8,-8,-5,-9,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-5,-10,-6,-10,-11,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-6,-12,-6,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-7,-11,-11,-23 --1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-1,-5,-2,-5/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-15,-7,-15/2,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,5/2,2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-13 --1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-4,-3/2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --2,-1,-1,0,0,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-13,-6,-6,-4,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-1,-1,-1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-3,-3,-6,-5/2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-5/2,-4,-4,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,0,0,1/2,0,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,0,0,1/2,1,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,0,1,1,1,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-3/2,-1,-2,-1,-3,-3,-15,-7,-15/2,-5,-8,-4,-6,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-9/2,-4,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1/2,0,0,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-43/2,-10,-11,-7,-12,-7,-9,-9,-18,-9,-10,-7,-13,-8,-13,-12,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-8,-33,-16,-16,-10,-15,-8,-10,-9,-17,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-7,-4,-7,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-9,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,-1/2,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-9/2,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-3/2,-1,-4,-2,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12 -0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -0,1,1,1,1/2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,1,1,1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-3,-4,-4,1,1,0,0,1/2,0,0,0,1,1,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,-5,-2,-3,-2,-4,-2,-3,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-10,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13 -0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-12,-11/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-7 -0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,2,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-17,-8,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,3,2,2,2,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,3,2,2,2,2,2,2,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-19,-9,-9,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,3/2,1,1,1,1,1,1,0,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-2,-29,-14,-13,-8,-13,-7,-8,-6,-21/2,-4,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,1,1,1,4,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-18 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-18,-8,-8,-5,-8,-4,-9/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-3/2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-11/2,-6,-12 -0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,0,1,1,1,0,1/2,0,1/2,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10 --2,-1,-1,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-4,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,2,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-28,-13,-12,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-8,-8,-5,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-16,-8,-15/2,-5,-8,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-4,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-26,-12,-25/2,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-11/2,-6,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-5/2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-7/2,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-26,-12,-12,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 --8,-3,-3,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,7,4,4,3,4,2,2,2,2,1,1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-37,-18,-18,-12,-19,-10,-13,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-11,-8,-14,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-53,-26,-26,-17,-26,-14,-17,-14,-26,-13,-15,-11,-18,-10,-14,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-12,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-8,-8,-35/2,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-11,-23,-11,-12,-8,-13,-7,-9,-8,-17,-9,-11,-10,-19,-12,-18,-18,-37 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1/2,-1,0,0,-1/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,4,2,2,2,2,2,2,1,2,1,1,1/2,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-8,-18 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-1/2,-1,-1,0,-1,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,4,2,5/2,2,2,2,3/2,1,2,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-7,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-13/2,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-9,-9,-11/2,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-6,-4,-6,-11/2,-12 --3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,3,2,2,2,2,1,1,1,1,1,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-17/2,-4,-4,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-5,-11,-5,-6,-4,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,3,2,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-3,-1,-1,0,-1/2,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-20 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1/2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-21,-10,-10,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-3,-3,-5/2,-5,-3,-6,-6,-13 --2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-4,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-19,-9,-9,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-33,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-6,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-5,-4,-8,-5,-7,-7,-2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-12,-12,-25 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-3,-5,-3,-6,-6,-13 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-19,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-1,0,0,0,-1,0,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 -0,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-25,-12,-12,-8,-23/2,-6,-8,-7,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-4,-13/2,-4,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 -0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-15/2,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-23,-11,-21/2,-6,-11,-6,-7,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-19/2,-9,-19 -1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-22,-21/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-7/2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-7,-3,-4,-2,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-4,-4,-9,-9/2,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-8,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-28,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-45,-22,-22,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-9,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-38 -1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1/2,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-20 -2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,-2,-1,-3/2,-2,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,1,1,1,1,2,2,3/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,1/2,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-16 -2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-21/2,-6,-8,-6,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-3,-3,-13/2,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-30,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-4,-4,-4,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,0,1,1,1,3/2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-27 -2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 -2,2,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-25,-12,-23/2,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-21/2,-10,-22 -2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20 -3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-19/2,-5,-6,-4,-8,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-8,-6,-11,-6,-8,-8,-33/2,-9,-11,-9,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-8,-33/2,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-9,-9,-26,-12,-12,-7,-11,-6,-8,-6,-23/2,-6,-6,-4,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1/2,0,0,0,-2,-1,-3,-3,-45,-22,-22,-14,-22,-12,-14,-12,-43/2,-10,-11,-8,-13,-7,-10,-9,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,0,1,1,1,2,2,2,1,1/2,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-15,-7,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-16,-8,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 -2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-24,-12,-12,-15/2,-12,-6,-7,-6,-11,-5,-5,-4,-7,-7/2,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-8,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-12,-8,-23/2,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-3/2,-2,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-4,-11/2,-6,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-24,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1/2,0,0,1,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-10,-12,-10,-37/2,-12,-18,-18,-35,-17,-17,-11,-35/2,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-9,-4,-4,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-22,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-43,-21,-20,-13,-41/2,-11,-13,-11,-19,-9,-10,-7,-12,-7,-9,-9,-16,-7,-7,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-9,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-7,-25/2,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-12,-6,-8,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-9/2,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-28,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-3,-5/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-10,-21/2,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-19/2,-9,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-11,-6,-7,-6,-10,-6,-21/2,-10,-22,-10,-10,-6,-11,-6,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-42,-20,-20,-13,-20,-11,-13,-10,-18,-9,-19/2,-7,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-7,-4,-11/2,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-18,-9,-19/2,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-9/2,-6,-4,-8,-5,-8,-15/2,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-15/2,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-6,-11,-13/2,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-11,-11/2,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-41,-20,-20,-13,-20,-10,-12,-10,-18,-9,-9,-13/2,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-13/2,-14,-7,-7,-5,-7,-4,-6,-5,-11,-11/2,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-11,-14,-12,-23,-15,-23,-23,-46,-23,-23,-15,-23,-12,-15,-13,-25,-13,-15,-11,-20,-12,-18,-18,-36,-18,-19,-13,-21,-12,-16,-15,-29,-15,-17,-14,-25,-16,-25,-24,-49,-24,-25,-17,-26,-15,-19,-16,-30,-16,-18,-14,-24,-15,-22,-21,-42,-21,-23,-17,-28,-17,-23,-21,-41,-22,-26,-21,-39,-25,-37,-37,-71,-35,-34,-22,-34,-18,-22,-18,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-16,-11,-19,-11,-14,-12,-24,-12,-14,-11,-20,-13,-19,-18,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,4,6,5,7,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-2,-3,-4,-83,-41,-41,-27,-42,-23,-28,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-17,-15,-28,-15,-17,-14,-25,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-25,-13,-15,-12,-21,-13,-19,-18,-37,-18,-19,-14,-23,-13,-17,-15,-29,-15,-18,-15,-27,-18,-27,-27,-55,-27,-27,-18,-28,-15,-19,-15,-28,-14,-16,-12,-21,-13,-19,-18,-35,-17,-18,-12,-20,-11,-15,-13,-25,-13,-15,-11,-19,-12,-17,-17,-35,-17,-17,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-15,-14,-29,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,-24,-12,-12,-8,-12,-7,-10,-9,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-38,-19,-20,-14,-22,-12,-16,-14,-27,-14,-15,-11,-20,-13,-19,-18,-36,-18,-19,-14,-24,-15,-21,-20,-39,-21,-26,-22,-40,-27,-41,-41,-83 -1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-11/2,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-17/2,-18,-17/2,-8,-5,-9,-9/2,-6,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-3/2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-23,-11,-12,-7,-12,-6,-8,-6,-12,-6,-7,-11/2,-10,-6,-9,-9,-18,-9,-9,-13/2,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-9,-4,-5,-9/2,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-10,-6,-21/2,-11,-23,-11,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-15,-8,-17/2,-6,-12,-8,-23/2,-12,-25,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-21/2,-10,-20,-10,-11,-8,-13,-8,-21/2,-10,-20,-10,-25/2,-10,-19,-12,-37/2,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-15,-7,-8,-5,-8,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-9,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1,2,3,2,2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-17/2,-7,-13,-8,-13,-13,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-8,-4,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-20,-20,-41 -1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-9/2,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-23,-11,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-6,-7/2,-5,-4,-9,-9/2,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-7/2,-6,-3,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27 -1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-10,-11,-24,-11,-11,-7,-23/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-7,-15,-7,-8,-6,-23/2,-7,-11,-11,-25,-12,-12,-8,-23/2,-6,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-9,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-41,-20,-20,-13,-39/2,-11,-14,-11,-22,-11,-11,-8,-27/2,-8,-11,-11,-20,-10,-10,-6,-21/2,-6,-8,-7,-15,-8,-10,-8,-27/2,-8,-12,-11,-24,-11,-11,-7,-23/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-9,-6,-21/2,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-26,-13,-13,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-6,-19/2,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-5,-11,-5,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-11/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-41 -1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-11/2,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-10,-11/2,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,3/2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-13/2,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-11/2,-5,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-28,-14,-14,-9,-13,-7,-17/2,-7,-15,-7,-7,-5,-8,-5,-8,-7,-12,-6,-7,-5,-7,-4,-11/2,-5,-10,-5,-6,-4,-9,-5,-15/2,-7,-16,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,0,1,1,1,2,2,3/2,1,2,2,3/2,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-7,-4,-13/2,-6,-13,-7,-9,-7,-14,-9,-27/2,-13,-27 -1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-5/2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -2,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-25,-12,-12,-7,-11,-6,-8,-6,-25/2,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-11,-6,-8,-7,-27/2,-7,-8,-6,-12,-7,-11,-11,-25,-12,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-9,-17,-11,-17,-16,-38,-18,-18,-12,-18,-10,-12,-9,-33/2,-8,-9,-6,-10,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-5,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,11/2,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,9/2,3,3,3,4,3,3,2,0,0,0,0,0,1,1,2,5/2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-43,-21,-21,-14,-22,-12,-15,-12,-22,-11,-12,-8,-14,-8,-12,-11,-19,-9,-10,-7,-12,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-10,-8,-33/2,-8,-10,-7,-12,-7,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-27/2,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-13,-7,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,0,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,0,0,0,1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,0,0,-1/2,0,0,1,2,2,2,2,-1,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-8,-8,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-20,-41 -2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,1/2,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-22,-21/2,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-11/2,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-21 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-6,-17/2,-8,-21,-10,-19/2,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1/2,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-24,-12,-23/2,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-11/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,0,1/2,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-11/2,-15,-7,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,1/2,0,0,1,0,1,1,1,0,0,0,1,2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-17/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,1,1,0,0,1/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-30,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-4,-4,-10,-5,-6,-4,-17/2,-6,-9,-9,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-11,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27 -3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,3,3,2,3,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,5/2,2,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,3/2,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-5,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-13/2,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-11,-6,-7,-6,-11,-7,-11,-11,-23 -4,3,3,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,2,3/2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-9/2,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22 -7,4,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,0,1,1,1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,1,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-7,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-11,-6,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-8,-10,-8,-14,-9,-14,-14,-36,-17,-17,-11,-18,-10,-12,-10,-19,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-9,-16,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,3,11/2,3,2,2,2,2,3,3,4,3,3,2,3,2,1,1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-48,-23,-23,-15,-24,-13,-15,-12,-23,-12,-13,-9,-15,-9,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-8,-35/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-11,-7,-12,-7,-11,-10,-20,-11,-13,-11,-20,-14,-22,-22,-45 -4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 -4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-4,-2,-9/2,-4,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-6,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-11/2,-6,-4,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-7/2,-5,-7/2,-7,-9/2,-7,-8,-17 -4,2,2,2,7/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,1/2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,4,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,1,1/2,1,2,2,0,0,0,1,1,1,0,0,-2,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,3,4,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-12,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5/2,-1,-2,-3,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-11,-6,-7,-6,-23/2,-8,-13,-13,-27 -3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-3/2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -3,2,5/2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,2,2,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,5/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-3,-5,-5,-9,-5,-6,-4,-8,-5,-9,-9,-20 -3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,-18,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -6,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-23,-11,-10,-6,-10,-5,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-11,-9,-17,-9,-10,-7,-12,-7,-9,-8,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,-1,-7/2,-2,-2,-2,-4,-2,-4,-5,-5,-2,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-2,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-35 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-11/2,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-11/2,-9,-9,-18 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3,3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,1/2,1,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,1,1,1,1,1,1,1/2,0,0,0,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-11,-6,-13/2,-5,-10,-5,-6,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-10,-21 -3,2,3,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,7/2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,7/2,3,4,4,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,6,4,4,3,3,2,2,2,2,1,1,1,3/2,1,0,0,2,1,1,1,1,1,2,2,0,1,1,1,3/2,1,1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,2,2,3/2,1,0,0,2,2,2,1,1,1,0,0,0,1,1,1,3/2,2,2,2,0,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-28,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-2,-3,-3,-14,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -4,5/2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1,-3,-2,-3,-2,-18,-8,-8,-5,-9,-9/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19 -6,4,7/2,3,4,2,5/2,2,3,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,7/2,3,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3/2,1,2,1,1/2,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-13,-7,-8,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-8,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-14,-6,-6,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-7,-19/2,-8,-14,-9,-14,-14,-29 -6,4,4,3,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-2,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-13,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-9,-15/2,-14,-9,-14,-14,-28 -12,7,7,5,6,4,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,2,1,1,0,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,2,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-15,-7,-8,-5,-8,-4,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,0,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-9,-6,-9,-9,-50,-24,-24,-15,-23,-12,-15,-12,-23,-12,-13,-9,-15,-9,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-15,-9,-13,-13,-27,-13,-14,-9,-15,-8,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-5,-9,-9,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-12,-13,-9,-16,-10,-14,-14,-28,-15,-18,-15,-28,-18,-28,-28,-57 -6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,6,4,4,5/2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-8,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-28 -6,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,3,2,7/2,4,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,6,4,7/2,2,4,3,7/2,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,-1/2,-2,0,0,0,-2,0,0,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-9/2,-9,-6,-9,-9,-19 -6,4,4,3,5,3,4,4,4,3,3,3,4,3,4,3,5,3,3,2,5/2,2,1,1,1,1,1,1,3/2,2,2,2,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,5/2,2,4,4,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,7,4,3,2,3,2,3,3,6,4,4,3,9/2,3,3,2,3,2,3,2,3,2,2,2,3,2,1,1,1/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,0,-3,-1,-2,-1,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-7/2,-2,-4,-4,-25,-12,-11,-7,-21/2,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,0,1,1,1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-14,-6,-6,-4,-13/2,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-13,-7,-9,-8,-15,-10,-15,-15,-30 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,5/2,1,1,2,1,2,1,1,1,2,2,2,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -4,3,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,3,2,2,3/2,1,2,1,1,1,3,2,2,1,2,2,3/2,2,5,3,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,1,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,2,2,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-3/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-17,-8,-15/2,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-3/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,1/2,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21 -3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,3/2,1,1,1,1,1,3/2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,7,4,5,4,5,3,3,2,3,2,3,2,3,2,1,1,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,1,1,0,1,1,1,5,3,3,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,0,0,0,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,6,4,4,3,4,2,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-28,-13,-13,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-27/2,-7,-8,-7,-14,-9,-15,-15,-32 -3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,1/2,0,1/2,0,1/2,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-5,-2,-3,-2,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-2,-1/2,-1,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-17 -4,3,3,2,2,2,5/2,2,4,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,4,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,2,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,2,4,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-6,-3,-3,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,0,-2,0,-1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-19 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 -6,4,4,3,7/2,3,4,3,4,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,1,1,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,7/2,3,4,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,-1,-8,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-2,-2,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-17,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,3/2,2,2,2,3,2,2,1,1,1,1,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-7,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,3,3,3,2,3,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,5,3,4,3,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,-1,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-13/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3/2,0,-2,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-4,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,3,2,3/2,1,2,2,3/2,2,1,1,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,0,0,1,1,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 -8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,4,6,6,8,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,9/2,3,4,3,4,2,2,2,3,2,1,1,1,1,2,2,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-31,-15,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,-1,-7/2,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-11,-21,-13,-20,-20,-42 -4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,1,1,2,3/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,1/2,0,1/2,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 -4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,4,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,5/2,2,4,2,5/2,2,1,1,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-11,-7,-11,-11,-23 -3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,2,1,0,0,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 -4,2,2,2,5/2,2,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,7/2,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,9/2,2,2,2,4,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,3,6,4,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3/2,1,1,1,5,3,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-18,-9,-9,-6,-17/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-3,-2,-4,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-27 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 -3,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,3,4,3,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,6,3,3,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,4,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-12,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-5/2,-3,-7,-3,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,1,-1,0,1/2,0,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-11,-7,-11,-11,-22 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,3,2,2,3/2,2,2,2,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-13/2,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,3/2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-9/2,-6,-5,-10,-6,-10,-10,-20 -6,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,7/2,2,2,2,4,3,5,5,9,5,5,4,5,3,2,2,5/2,2,2,2,2,2,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,3,4,4,9,5,5,4,7,5,6,5,15/2,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,7,4,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-27,-13,-13,-9,-14,-7,-9,-8,-29/2,-7,-7,-5,-8,-4,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-22,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1/2,1,2,2,2,2,2,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,2,2,3,2,3,2,3,2,3,2,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-10,-6,-9,-8,-35/2,-10,-12,-10,-18,-12,-19,-19,-40 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,5/2,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-7/2,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1,-3,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,3,6,4,7/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,3,2,5/2,3,6,4,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,3,5,3,3,2,3,2,3,2,3,2,3,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-15/2,-6,-11,-8,-25/2,-12,-26 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,3,3,5/2,3,3,4,3,3,2,3,2,2,5/2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21 -6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9/2,4,5,5,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,3,3,4,3,3,2,3,2,3,3,2,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-23,-11,-12,-8,-25/2,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,1,3/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-9/2,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-20,-10,-10,-6,-21/2,-5,-6,-5,-8,-4,-5,-4,-13/2,-4,-5,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,2,2,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-19,-10,-12,-10,-18,-12,-18,-18,-38 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-5/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-25 -4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-15/2,-8,-23,-11,-23/2,-8,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,-1,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,2,2,3/2,2,3,2,5/2,2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-17/2,-9,-16,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-13/2,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-19/2,-9,-18,-10,-12,-10,-18,-12,-37/2,-19,-39 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,7/2,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-9,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-11,-13/2,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-39 -7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,6,6,10,7,9,9,33/2,9,10,7,10,6,7,6,10,5,5,4,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,3,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,0,0,1,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-10,-6,-9,-9,-18,-9,-11,-9,-16,-10,-16,-16,-46,-22,-22,-14,-22,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-42,-20,-20,-13,-20,-11,-13,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-8,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,4,-19,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-8,-10,-8,-16,-11,-18,-18,-34,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-28,-14,-14,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-14,-11,-20,-13,-19,-19,-38,-19,-21,-15,-24,-14,-20,-19,-39,-21,-25,-21,-38,-25,-38,-39,-79 -4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-3/2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-11/2,-7,-6,-11,-5,-5,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,1/2,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-9,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-39 -5,3,5/2,2,2,2,3/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,5/2,2,5,3,7/2,4,5,4,9/2,5,9,5,5,4,5,3,3,3,5,3,7/2,3,3,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,3,7,4,4,3,4,3,4,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-6,-15/2,-6,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-20,-10,-10,-6,-10,-5,-7,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,0,0,0,1,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-9,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1/2,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27 -5,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,5,3,2,2,5/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,1/2,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-6,-9,-9,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,1/2,1,1,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,2,2,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-17/2,-4,-5,-4,-9,-4,-4,-3,-13/2,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-8,-18,-9,-10,-6,-21/2,-6,-8,-7,-13,-7,-8,-6,-21/2,-6,-10,-9,-20,-10,-10,-7,-25/2,-7,-10,-10,-19,-10,-13,-10,-39/2,-13,-20,-20,-42 -3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,3/2,0,1,1,1,1,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-7,-11/2,-10,-7,-11,-11,-23 -4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,2,2,3,2,3/2,2,2,2,5/2,3,4,3,3,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,2,1,1/2,0,1,1,2,2,1,1,3/2,1,1,1,3/2,1,2,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-7/2,-4,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,1,1,1,3/2,2,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-12,-6,-6,-4,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-3,-6,-3,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-17/2,-7,-13,-8,-27/2,-14,-29 -3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24 -5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,2,3,2,3,3,9/2,3,4,3,5,4,5,5,5,3,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,2,5/2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-2,0,0,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-1,0,0,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,2,2,6,3,3,2,2,2,2,2,5/2,2,1,1,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-4,-5,-4,-9,-6,-9,-10,-20,-9,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-24,-12,-13,-9,-15,-9,-12,-11,-45/2,-12,-14,-12,-22,-14,-22,-22,-44 -3,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-7,-6,-11,-7,-11,-11,-23 -3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,2,2,2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-13,-8,-25/2,-12,-26 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19 -3,2,3,2,3,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,4,4,6,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-15/2,-4,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,5,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-8,-8,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-10,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-8,-16,-9,-11,-9,-33/2,-10,-16,-16,-33 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,3,2,5/2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-13/2,-7,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-4,-3,-8,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-8,-19/2,-8,-14,-9,-14,-14,-29 -2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,3,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1/2,0,1/2,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-13/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-28 -3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,17/2,4,4,3,5,3,3,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-33/2,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,11/2,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-4,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-2,-1,-2,0,0,0,0,1,2,2,3,2,2,2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-3,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-19,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-14,-15,-11,-18,-11,-15,-14,-27,-14,-17,-14,-27,-18,-27,-28,-57 -2,2,2,1,2,2,2,2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-13,-7,-8,-7,-13,-9,-14,-14,-29 -2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,5/2,2,2,2,3/2,2,3,2,3,3,3,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-12,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,0,0,0,1,1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1/2,0,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-2,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-8,-5,-9,-5,-15/2,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-30 -2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 -3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,7/2,2,3,3,2,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,5/2,2,2,3,1,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,1,2,1,1,1,2,2,2,2,-4,-2,-2,0,-1/2,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,0,-1/2,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-9/2,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,0,1,1,1,1/2,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,3,2,3,2,3,3,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-2,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-16,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-16,-11,-17,-17,-34 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-10,-10,-20 -2,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,3/2,1,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,1,1,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-5,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-12,-15/2,-12,-12,-24 -1,1,1,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,-1,0,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,0,1,1,1,1/2,0,0,1,1,1,1,0,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-11,-7,-11,-11,-20,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,7/2,2,3,2,3,3,4,4,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,2,2,3/2,1,1,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-21/2,-6,-7,-5,-10,-6,-9,-9,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-22,-11,-12,-9,-15,-8,-11,-10,-20,-11,-13,-11,-22,-15,-23,-23,-46 -1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1/2,1,1,1,1,1,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-8,-4,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-25 -1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,5/2,2,4,2,3/2,1,2,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,1,1,1,2,2,3,2,2,1,1,1,3/2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-5,-9,-5,-6,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 -0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1/2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,1/2,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,7/2,2,3,3,5,3,3,2,5/2,2,2,1,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,-6,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-12,-6,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3,-13/2,-4,-6,-6,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-17,-8,-7,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,1,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,2,2,5,3,3,2,3,2,3,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,2,1,0,0,-1/2,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,0,-1/2,0,0,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-7,-25/2,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-40 --1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1/2,0,0,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-26 --3,-1,-1,0,-1,0,1/2,0,0,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,7/2,4,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,4,2,5/2,2,4,3,3,3,5,3,2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-11,-7,-21/2,-10,-20,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-5/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-15,-7,-13/2,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3,3,-6,-2,-2,-1,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-9,-9,-9,-4,-9/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-19,-19,-39 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,4,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-11,-11/2,-6,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-8,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-11,-13,-10,-19,-25/2,-19,-19,-38 --7,-3,-2,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,4,7,4,5,5,8,5,7,7,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,8,4,4,3,5,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-10,-13,-11,-21,-14,-22,-22,-40,-20,-20,-13,-21,-11,-14,-11,-20,-10,-11,-7,-12,-7,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-9,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,0,1,1,1,1,1,2,2,3,4,7,4,3,2,3,2,2,2,3,2,3,3,5,4,5,5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-18,-9,-9,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-9,-4,-5,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-10,-18,-11,-17,-17,-34,-17,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-38,-38,-77 --3,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,3,5/2,4,3,3,3,3,2,3,3,4,3,3,2,4,3,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,3,6,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1/2,0,0,-2,-1,-1,-1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-2,-4,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-9/2,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-19,-19,-38 --3,-1,-1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-3,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,5/2,2,4,2,2,2,4,3,3,3,3,2,2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-4,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-14,-6,-13/2,-4,-7,-3,-3,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-12,-7,-9,-9,-19,-10,-25/2,-10,-18,-12,-19,-19,-39 --2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 --4,-1,-1,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,3,-5,-2,-2,-1,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,5,3,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,3,2,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-6,-25/2,-8,-13,-13,-23,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-11/2,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,7/2,2,3,3,4,3,3,2,5/2,2,3,3,7,4,4,3,7/2,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-5,-19/2,-6,-10,-10,-12,-6,-6,-4,-11/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-7,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-8,-17,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-39/2,-13,-20,-20,-41 --2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-9/2,-9,-9/2,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,4,3,3,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,5,3,7/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-17/2,-7,-14,-9,-14,-14,-29 --3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1/2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1/2,0,1/2,1,1,2,2,2,3/2,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,1,0,0,0,1,1,1,4,2,2,2,3,2,2,2,5/2,2,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,-6,-2,-1,0,0,1,1,1,3/2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,2,2,2,1,0,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,1,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-29,-14,-14,-9,-13,-7,-8,-7,-29/2,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-3,-4,-4,-8,-5,-8,-8,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,3,3,4,4,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,0,1,2,2,3,3,4,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,-1/2,0,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-8,-6,-12,-8,-12,-13,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-3,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-8,-7,-27/2,-7,-8,-6,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-12,-15,-13,-24,-16,-24,-23,-47 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,3,2,3/2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,5,3,7/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,3,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-27/2,-14,-28 --1,0,0,0,0,1/2,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-4,-2,-2,-1,-2,0,0,-1/2,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-13/2,-10,-10,-21 --3,-1,-1,0,-1,0,0,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,2,2,5/2,2,2,1,0,0,0,1,3/2,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,-4,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,3,2,3,3,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,3,-1,0,0,0,1/2,0,0,1,3,2,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-14,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-6,-6,-11,-5,-6,-5,-9,-6,-9,-8,-16,-8,-8,-6,-23/2,-6,-9,-9,-16,-9,-11,-9,-18,-12,-18,-18,-37 --1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23 --2,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1/2,1,-3,-1,-1,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,2,2,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,-1,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-21/2,-7,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,4,3,7/2,3,1,1,1/2,0,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-11/2,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-11/2,-6,-13,-6,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-14,-8,-19/2,-8,-15,-10,-16,-16,-33 --2,0,0,0,-1,0,0,1,1,1,0,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-13/2,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,2,2,2,3,5/2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-15,-15,-32 --6,-2,-2,-1,-2,0,1,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-39/2,-10,-11,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-45,-22,-22,-14,-22,-12,-14,-11,-20,-10,-11,-8,-14,-8,-12,-11,-21,-11,-12,-8,-14,-8,-11,-9,-18,-9,-11,-9,-16,-10,-15,-14,-29,-14,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-27,-13,-12,-8,-12,-6,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-6,-29/2,-7,-7,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,2,1,1,1,1,1,1,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15/2,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,11/2,3,3,2,2,2,3,3,4,3,3,3,6,4,5,5,1,1,1,1,2,1,1,1,0,1,1,2,3,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-8,-15,-10,-17,-17,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-31,-15,-16,-12,-20,-12,-17,-15,-30,-16,-20,-16,-30,-20,-30,-31,-63 --2,0,0,0,0,1/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-32 --2,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,-1,-1,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-25,-12,-23/2,-7,-12,-6,-7,-6,-11,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-11/2,-4,-9,-5,-15/2,-8,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-2,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,0,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-9/2,-2,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-9,-16,-10,-16,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-7,-9/2,-8,-4,-6,-6,-11,-6,-8,-6,-12,-15/2,-12,-12,-25 --3,-1,0,0,-1/2,0,0,1,0,0,0,0,1/2,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,-1/2,0,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-27/2,-9,-14,-14,-30,-14,-14,-9,-13,-7,-9,-7,-12,-6,-6,-4,-8,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-10,-6,-19/2,-4,-5,-4,-7,-3,-4,-2,-4,-3,-5,-5,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,2,3,2,1,1,1,1,1,1,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,2,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,1,1,1,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-11/2,-4,-6,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-9,-21,-11,-12,-8,-27/2,-8,-10,-10,-19,-10,-12,-10,-41/2,-13,-20,-20,-41 --2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-11,-5,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-5,-12,-6,-7,-9/2,-8,-9/2,-6,-6,-11,-6,-7,-6,-12,-8,-12,-12,-24 --3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24,-11,-11,-7,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,3,5,3,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-6,-12,-6,-11/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-6,-17/2,-8,-17,-8,-19/2,-6,-12,-7,-19/2,-8,-16,-8,-10,-9,-17,-11,-16,-16,-33 --2,-1/2,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-21/2,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-16,-8,-8,-6,-11,-6,-8,-8,-15,-8,-10,-8,-15,-10,-15,-15,-30 --5,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-7,-3,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-6,-6,-25/2,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-8,-14,-8,-11,-10,-41/2,-11,-13,-11,-20,-13,-21,-21,-44,-22,-22,-14,-22,-12,-14,-11,-39/2,-10,-10,-7,-12,-7,-11,-11,-21,-10,-10,-7,-12,-7,-10,-8,-33/2,-8,-10,-8,-14,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-6,-8,-8,-16,-8,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-29,-14,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-15,-7,-8,-5,-9,-5,-6,-5,-19/2,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1/2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,4,4,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,3,3,2,2,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,7/2,2,2,2,4,3,4,4,8,4,4,2,2,1,1,1,3/2,1,1,1,2,2,3,3,6,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,1,1/2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-16,-9,-11,-10,-39/2,-10,-12,-9,-17,-10,-15,-15,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-17,-31,-20,-30,-29,-59 --2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24,-12,-12,-15/2,-12,-6,-7,-11/2,-10,-5,-5,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-16,-16,-32 --2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,1,-1,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,-1,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-6,-12,-8,-27/2,-14,-28,-14,-14,-9,-14,-7,-9,-7,-12,-6,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-3,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-10,-10,-22,-11,-11,-8,-14,-8,-21/2,-10,-21,-11,-27/2,-11,-20,-13,-39/2,-19,-39 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-7,-7,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-3/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-13/2,-12,-6,-8,-8,-17,-9,-11,-9,-16,-21/2,-16,-16,-33 --2,0,0,0,-1/2,0,-1,-1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-7,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-39/2,-13,-20,-20,-42,-20,-20,-13,-41/2,-11,-14,-11,-20,-10,-10,-7,-12,-7,-10,-10,-22,-11,-11,-8,-25/2,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-8,-12,-7,-9,-8,-16,-8,-8,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-21/2,-6,-9,-8,-14,-7,-8,-7,-27/2,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-15/2,-4,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-10,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,3,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,6,5,9,5,5,4,9/2,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,7/2,2,3,2,3,2,2,2,7/2,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-15/2,-4,-6,-5,-13,-7,-8,-6,-25/2,-8,-13,-13,-27,-13,-14,-9,-27/2,-7,-9,-7,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-9,-7,-15,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-23/2,-6,-8,-7,-15,-8,-10,-8,-15,-9,-14,-14,-29,-14,-14,-10,-16,-9,-11,-10,-21,-11,-12,-10,-35/2,-11,-16,-16,-32,-16,-18,-13,-43/2,-12,-17,-15,-31,-17,-20,-16,-61/2,-20,-30,-30,-60 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-11,-6,-7,-6,-14,-7,-8,-6,-12,-7,-10,-10,-21,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-21/2,-20,-13,-20,-20,-40 --2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-6,-11,-6,-19/2,-10,-19,-10,-21/2,-8,-14,-8,-21/2,-10,-20,-11,-27/2,-11,-20,-13,-20,-21,-42,-20,-41/2,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-12,-6,-17/2,-8,-15,-8,-19/2,-8,-14,-8,-12,-12,-25,-12,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-12,-7,-19/2,-9,-18,-9,-19/2,-7,-11,-6,-8,-8,-14,-7,-17/2,-7,-14,-8,-25/2,-12,-27,-13,-25/2,-8,-12,-6,-17/2,-7,-12,-6,-6,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-7,-4,-13/2,-6,-12,-6,-13/2,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,4,11/2,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,2,2,4,2,5/2,2,3,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,3,4,3,9/2,5,9,5,4,3,3,2,3,2,2,2,3/2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,3/2,1,2,1,1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,1,1,1,1,1,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-9,-14,-7,-17/2,-7,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-15,-7,-8,-5,-8,-5,-7,-7,-13,-7,-9,-7,-12,-8,-12,-12,-26,-12,-25/2,-8,-12,-7,-9,-8,-15,-8,-17/2,-6,-11,-6,-19/2,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-21/2,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-23/2,-10,-21,-11,-25/2,-10,-18,-11,-33/2,-16,-33,-16,-17,-12,-22,-13,-35/2,-16,-31,-17,-20,-16,-31,-20,-30,-30,-60 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-17/2,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-10,-19,-10,-11,-8,-14,-8,-10,-10,-20,-11,-14,-11,-20,-13,-21,-21,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-15/2,-15,-8,-10,-8,-14,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-11,-6,-8,-15/2,-15,-15/2,-9,-7,-14,-17/2,-13,-25/2,-26,-25/2,-12,-8,-12,-6,-8,-7,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-17/2,-18,-8,-8,-11/2,-9,-9/2,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,5,5,9,5,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,2,2,2,2,2,3/2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-13/2,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-13/2,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-15/2,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-12,-10,-20,-21/2,-12,-19/2,-18,-11,-16,-16,-33,-16,-17,-12,-21,-25/2,-17,-16,-31,-17,-20,-16,-31,-20,-30,-30,-61 --5,-2,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-4,-8,-5,-9,-10,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-7,-5,-10,-7,-11,-11,-22,-11,-12,-8,-14,-8,-11,-9,-18,-10,-12,-10,-19,-12,-19,-18,-37,-18,-18,-12,-18,-10,-13,-11,-20,-10,-11,-8,-15,-9,-13,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-7,-11,-11,-22,-11,-11,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-15,-16,-12,-20,-11,-15,-14,-28,-15,-19,-15,-28,-18,-28,-29,-59,-29,-29,-19,-29,-15,-18,-15,-27,-14,-15,-11,-18,-11,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-16,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-16,-10,-14,-14,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-34,-17,-17,-12,-19,-10,-13,-11,-21,-11,-13,-10,-17,-10,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-28,-56,-28,-28,-18,-28,-15,-18,-15,-27,-13,-14,-10,-16,-10,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-11,-8,-15,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-32,-16,-16,-11,-17,-9,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-11,-7,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-29,-16,-19,-16,-29,-19,-30,-30,-60,-30,-30,-20,-31,-17,-21,-17,-32,-16,-16,-11,-19,-11,-16,-15,-30,-15,-15,-11,-18,-10,-12,-11,-21,-11,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-9,-7,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-16,-9,-13,-12,-25,-13,-16,-13,-23,-15,-24,-24,-49,-24,-25,-17,-26,-14,-17,-15,-28,-14,-16,-12,-20,-12,-17,-16,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-20,-16,-29,-19,-28,-27,-55,-27,-28,-19,-31,-17,-22,-19,-37,-19,-22,-17,-29,-18,-27,-26,-53,-27,-28,-20,-32,-19,-26,-24,-48,-26,-31,-25,-46,-31,-47,-47,-94,-47,-47,-31,-48,-26,-31,-26,-47,-24,-26,-19,-31,-18,-25,-24,-47,-23,-24,-16,-25,-14,-19,-17,-32,-17,-19,-15,-28,-17,-25,-25,-50,-25,-25,-17,-27,-15,-18,-15,-28,-14,-16,-12,-21,-12,-17,-16,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-16,-30,-20,-30,-30,-62,-30,-30,-19,-29,-16,-20,-16,-30,-15,-16,-12,-20,-12,-16,-15,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-11,-20,-13,-19,-19,-40,-20,-20,-13,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-14,-14,-28,-14,-14,-9,-15,-9,-12,-10,-20,-11,-13,-11,-20,-13,-20,-20,-41,-20,-21,-14,-22,-12,-14,-12,-22,-11,-13,-10,-17,-10,-15,-14,-29,-15,-16,-11,-19,-11,-14,-13,-25,-13,-16,-13,-23,-14,-21,-20,-41,-20,-21,-14,-23,-12,-15,-13,-25,-13,-14,-10,-18,-11,-17,-16,-32,-16,-18,-13,-21,-13,-19,-18,-35,-19,-23,-18,-33,-22,-33,-33,-67,-33,-34,-23,-35,-19,-23,-20,-37,-19,-21,-16,-27,-16,-22,-21,-41,-21,-22,-16,-26,-15,-20,-18,-35,-19,-22,-18,-33,-22,-33,-32,-65,-32,-33,-22,-35,-20,-26,-23,-43,-23,-26,-20,-35,-23,-34,-33,-67,-34,-36,-26,-42,-25,-35,-33,-64,-35,-41,-34,-62,-41,-61,-61,-123 --2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-5/2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-17/2,-14,-14,-28,-14,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-15/2,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-23/2,-24,-13,-15,-12,-22,-15,-23,-23,-46,-23,-23,-15,-24,-13,-15,-12,-23,-23/2,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-7,-5,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-15/2,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-17/2,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-19/2,-18,-9,-10,-7,-13,-7,-10,-10,-20,-10,-10,-7,-13,-7,-10,-17/2,-17,-9,-10,-17/2,-16,-21/2,-16,-16,-32,-16,-16,-11,-17,-10,-13,-11,-21,-11,-12,-9,-17,-11,-16,-16,-33,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-13/2,-4,-9,-5,-15/2,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-9,-7,-13,-8,-27/2,-14,-28,-14,-27/2,-9,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-14,-9,-29/2,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-15,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-4,-11/2,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-8,-15,-8,-19/2,-8,-14,-9,-13,-13,-27,-13,-27/2,-10,-15,-8,-21/2,-9,-18,-9,-11,-8,-15,-9,-27/2,-13,-26,-13,-27/2,-10,-16,-9,-25/2,-12,-24,-13,-15,-12,-22,-14,-22,-22,-46,-22,-45/2,-15,-24,-13,-31/2,-12,-23,-12,-25/2,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-25/2,-12,-25,-12,-12,-8,-12,-6,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-29/2,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-11,-5,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-21/2,-8,-16,-10,-16,-16,-33,-16,-33/2,-11,-18,-10,-23/2,-10,-17,-9,-10,-7,-12,-7,-21/2,-10,-21,-10,-10,-7,-13,-7,-19/2,-8,-17,-9,-21/2,-9,-17,-11,-16,-16,-32,-16,-16,-11,-18,-10,-13,-11,-21,-11,-12,-9,-17,-11,-33/2,-16,-34,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --1,0,0,0,0,1,1,1,0,0,0,1/2,0,1/2,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20,-19/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-3,-6,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-3,-5,-4,-10,-9/2,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-6,-8,-15/2,-15,-8,-9,-8,-14,-9,-14,-14,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-10,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-5,-10,-6,-10,-10,-22,-21/2,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-13/2,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-12,-6,-8,-7,-13,-13/2,-7,-6,-11,-7,-10,-10,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 --2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-10,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-15/2,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-27/2,-9,-14,-14,-29,-14,-14,-9,-27/2,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-13/2,-3,-4,-3,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-27,-13,-14,-9,-27/2,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-5,-8,-8,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-31/2,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-15,-7,-7,-5,-17/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-9,-8,-15,-8,-9,-7,-27/2,-9,-14,-14,-28,-14,-15,-10,-16,-9,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-22,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-29/2,-8,-12,-11,-22,-11,-11,-7,-12,-7,-9,-8,-15,-7,-8,-6,-25/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-6,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-15,-8,-10,-8,-29/2,-10,-15,-15,-33,-16,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-17/2,-4,-6,-5,-11,-5,-6,-4,-13/2,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-4,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-5,-19/2,-6,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-15,-15,-33,-16,-16,-11,-35/2,-10,-12,-10,-17,-8,-9,-7,-25/2,-8,-11,-10,-21,-10,-11,-8,-25/2,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-31,-15,-16,-11,-35/2,-10,-13,-11,-19,-10,-11,-9,-17,-11,-16,-15,-34,-17,-18,-13,-22,-13,-18,-16,-31,-17,-20,-16,-30,-20,-30,-30,-61 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-6,-9,-5,-6,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-34 --2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-5,-13/2,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-7,-4,-5,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-11/2,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-17/2,-8,-15,-8,-9,-7,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-23,-11,-12,-8,-14,-8,-12,-11,-21,-11,-27/2,-11,-21,-13,-20,-20,-41 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-5,-9,-9/2,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-19/2,-12,-9,-17,-11,-17,-17,-35 --5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,-1,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-5,-19/2,-5,-6,-4,-7,-4,-5,-5,-12,-6,-7,-5,-8,-4,-6,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-29,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-6,-25/2,-6,-8,-6,-12,-8,-13,-13,-25,-12,-12,-8,-12,-6,-7,-6,-23/2,-6,-7,-5,-9,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-33/2,-8,-9,-6,-11,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-8,-17,-8,-8,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-27/2,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-35/2,-9,-10,-8,-14,-8,-12,-12,-28,-14,-14,-9,-15,-9,-12,-11,-22,-12,-14,-12,-23,-15,-22,-22,-46,-22,-22,-15,-23,-12,-15,-12,-22,-11,-11,-8,-13,-8,-11,-10,-24,-11,-11,-7,-12,-7,-9,-8,-15,-8,-9,-7,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-10,-6,-9,-9,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-16,-34,-16,-15,-9,-14,-7,-9,-7,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-18,-9,-9,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-23/2,-6,-6,-5,-9,-6,-9,-9,-23,-11,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-15,-15,-33,-16,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-35/2,-10,-12,-10,-18,-11,-17,-17,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-9,-16,-10,-15,-15,-34,-17,-18,-13,-22,-13,-18,-17,-33,-18,-21,-17,-31,-21,-32,-32,-64 --2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-7/2,-7,-4,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-16,-10,-16,-16,-33 --2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-8,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-7,-7,-5,-7,-4,-5,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-8,-4,-5,-5,-13,-6,-13/2,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-16,-8,-17/2,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-18,-9,-9,-7,-12,-7,-9,-9,-18,-9,-11,-9,-17,-11,-17,-17,-35 --1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-6,-3,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-13/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-4,-6,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26 --3,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-19,-9,-9,-6,-19/2,-5,-6,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-21/2,-6,-10,-10,-19,-9,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-13,-6,-7,-5,-9,-5,-7,-7,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-12,-6,-6,-4,-11/2,-3,-5,-4,-9,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-7,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-10,-6,-21/2,-5,-6,-5,-11,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-25/2,-7,-10,-10,-21,-11,-13,-11,-21,-14,-21,-21,-43 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-5,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-26 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-5/2,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-5/2,-2,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-7,-3,-7/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-25/2,-13,-26,-12,-25/2,-8,-12,-6,-8,-7,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-12,-6,-6,-4,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-9,-17,-11,-35/2,-17,-35 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-9/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-23/2,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --6,-3,-3,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-3,-6,-6,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-7,-13,-6,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-27,-13,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11,-5,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-8,-17,-9,-12,-10,-18,-11,-17,-17,-29,-14,-14,-9,-14,-7,-9,-7,-12,-6,-7,-5,-10,-6,-8,-7,-29/2,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-30,-14,-14,-9,-15,-8,-11,-9,-17,-9,-10,-8,-14,-9,-13,-12,-51/2,-13,-14,-10,-17,-10,-13,-12,-24,-13,-15,-13,-24,-16,-24,-24,-47,-23,-23,-15,-22,-12,-15,-13,-24,-12,-13,-9,-14,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-9,-8,-17,-9,-10,-7,-13,-8,-12,-12,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-10,-15,-8,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-23/2,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-7,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-29/2,-7,-8,-5,-8,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-9,-16,-10,-16,-15,-32,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-7,-13,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-29,-14,-15,-10,-16,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-59/2,-14,-15,-11,-18,-11,-15,-14,-28,-16,-20,-17,-31,-20,-31,-31,-64 --2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-8,-4,-4,-7/2,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,-32 --2,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,0,1,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,3,2,2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,1,1,1,-2,0,-1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-3,-1,-3/2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-23,-11,-23/2,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-11,-5,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-5,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-3/2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-11,-7,-11,-11,-23 --3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-9,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-5/2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-7/2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-19/2,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-5,-6,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-13,-7,-8,-7,-27/2,-9,-14,-14,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-9,-5,-7,-6,-11,-7,-11,-11,-18,-9,-9,-6,-19/2,-5,-7,-6,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-36 --1,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,0,0,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-17/2,-7,-13,-8,-25/2,-13,-27 --1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --2,-1,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,1,1,2,2,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-4,-5,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-20,-9,-9,-6,-10,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-11,-17,-17,-28,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-15/2,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-25/2,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-31/2,-8,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-14,-11,-21,-14,-22,-22,-45 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-4,-8,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-24 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,-2,0,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-7/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 --2,0,0,0,1/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1/2,0,0,0,1,1,2,2,3/2,1,0,0,-6,-2,-2,-2,-7/2,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-17,-8,-8,-5,-9,-4,-5,-4,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-12,-8,-23/2,-6,-7,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-4,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-12,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-13/2,-4,-5,-5,-13,-6,-7,-5,-17/2,-4,-6,-5,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-9,-9,-19,-9,-10,-7,-13,-7,-9,-8,-17,-9,-12,-10,-35/2,-11,-17,-17,-36 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-13,-8,-25/2,-13,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-11,-7,-10,-10,-21,-10,-9,-6,-10,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-19/2,-6,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-17/2,-8,-17,-9,-21/2,-8,-16,-10,-33/2,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-5,-3,-5,-9/2,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-9/2,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-16,-17/2,-10,-8,-16,-10,-16,-16,-33 --2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-37/2,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-8,-4,-4,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-13,-8,-12,-12,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-12,-7,-11,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-10,-16,-16,-34,-17,-17,-11,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-7,-8,-6,-12,-7,-10,-9,-37/2,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-24,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-25,-25,-42,-20,-20,-13,-19,-10,-13,-10,-19,-9,-10,-7,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-6,-8,-7,-15,-7,-7,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-25,-12,-13,-9,-15,-9,-13,-12,-24,-12,-14,-11,-20,-13,-20,-20,-42,-21,-21,-14,-21,-11,-14,-11,-20,-10,-11,-9,-16,-10,-14,-13,-25,-12,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-11,-17,-18,-37,-19,-20,-14,-22,-12,-16,-14,-26,-13,-15,-12,-22,-14,-20,-19,-38,-19,-20,-15,-25,-15,-20,-18,-34,-18,-22,-18,-33,-22,-33,-33,-66 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-4,-3,-6,-4,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-13/2,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 --1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-6,-2,-5/2,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-4,-3,-6,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-8,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-11/2,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-8,-15/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-15/2,-6,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-19/2,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-11/2,-11,-7,-10,-10,-22 -0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-11/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,1/2,0,0,0,3,2,2,2,3/2,2,2,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-11,-6,-7,-6,-21/2,-7,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-23/2,-7,-10,-9,-18,-10,-12,-10,-35/2,-11,-17,-17,-34 -1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-2,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,1/2,0,1,1,1/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,1/2,1,0,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 -1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-3/2,-1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-13/2,-10,-10,-21 -1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,1,1,1,2,2,2,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,4,3,3,2,3,2,2,1,1/2,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-13,-6,-6,-4,-6,-3,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-14,-7,-8,-7,-27/2,-7,-8,-6,-10,-5,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-25/2,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-15,-7,-8,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-9,-9,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-8,-13,-8,-12,-11,-43/2,-12,-14,-11,-21,-13,-20,-20,-40 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-11,-6,-7,-11/2,-11,-7,-10,-10,-21 -2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-1,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1/2,0,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-4,-4,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-4,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-11,-23 -2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-8,-17 -2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,3/2,1,0,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-3,-4,-4,-15/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-15/2,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-8,-9,-8,-15,-9,-14,-14,-29 -2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-5,-4,-9,-5,-8,-8,-18 -3,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-1,0,0,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1/2,0,1,1,0,0,-1,0,1/2,0,2,2,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-9/2,-4,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-6,-13,-8,-12,-12,-25 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 -4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-4,-7,-7,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-12,-8,-12,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-12,-12,-33,-16,-15,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-27/2,-6,-7,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-7,-13,-7,-9,-7,-13,-8,-11,-11,-23,-12,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23 -3,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-17,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-19,-9,-9,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-9,-4,-5,-3,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-7,-8,-6,-12,-8,-13,-13,-26 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15 -3,2,2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,3,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-19/2,-9,-19 -3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-3/2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-5,-3,-7,-4,-5,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-17 -5,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-4,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,7/2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-10,-5,-7,-6,-21/2,-5,-5,-4,-7,-4,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-15/2,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-11,-17,-17,-34 -4,5/2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-7/2,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18 -5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-11,-22 -5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-13,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-11/2,-9,-9,-18 -8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-3,-2,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,0,-1/2,0,0,0,-1,0,1,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,7/2,2,3,3,4,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,1,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-8,-8,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-8,-4,-5,-4,-17/2,-6,-9,-9,-25,-12,-12,-7,-19/2,-5,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-17/2,-5,-8,-8,-14,-7,-7,-4,-15/2,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-23/2,-6,-9,-8,-19,-10,-12,-9,-33/2,-10,-16,-16,-33 -6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-11/2,-16,-8,-8,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 -8,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,3,4,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-17/2,-8,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,4,2,2,2,2,2,5/2,3,5,3,3,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-25,-12,-23/2,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-11/2,-4,-7,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-11,-6,-17/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-16,-32 -8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-5/2,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-24,-23/2,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-9,-10,-8,-15,-10,-15,-15,-31 -15,8,8,5,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-17,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-11,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,1,1,1,2,2,4,3,3,3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-37,-18,-19,-13,-20,-11,-13,-11,-22,-11,-13,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-9,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-31/2,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-15,-7,-8,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-49,-24,-23,-15,-23,-13,-16,-13,-24,-12,-13,-10,-17,-10,-13,-12,-24,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-30,-15,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-11,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-16,-9,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-10,-9,-19,-10,-11,-9,-17,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-15,-30,-15,-17,-12,-20,-12,-16,-15,-31,-17,-20,-17,-32,-21,-31,-31,-62 -8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-8,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-17/2,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-9,-9,-24,-23/2,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -7,4,9/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-8,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,-1,-2,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,5/2,2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-10,-5,-5,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-5,-9,-5,-6,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,2,2,7/2,2,3,3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-14,-7,-7,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-26,-13,-13,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-7,-16,-8,-10,-8,-29/2,-10,-15,-15,-30 -4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1/2,0,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-11/2,-6,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-21 -4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,0,1,1,1,2,2,2,2,5/2,2,2,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-7,-5,-8,-8,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,3/2,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,-5,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-4,-4,-4,-8,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-27,-13,-13,-9,-14,-7,-8,-6,-25/2,-6,-6,-4,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-15,-10,-16,-16,-33 -4,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -3,2,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,1,1,1/2,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,1,2,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19 -2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,1,2,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 -3,2,2,2,5/2,2,2,2,4,2,2,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,-1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-2,-11/2,-3,-5,-5,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,1,1/2,1,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,2,2,2,2,1,1,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,1,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7/2,3,4,4,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,1,3/2,2,2,2,2,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-3,-3,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-21/2,-7,-11,-11,-24 -2,1,1,1,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-15 -2,1,1,1,2,2,3/2,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,-2,0,0,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-2,-3,-2,-4,-2,-4,-5,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,3/2,2,2,2,2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-6,-6,-15,-7,-15/2,-4,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-19/2,-10,-21 -2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,2,3,5/2,4,3,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,1/2,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-13/2,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20 -3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,1,1/2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5/2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-23/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-13,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-8,-5,-9,-5,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-40 -2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1/2,-1,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-2,-1,-2,-1,-3,-3/2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-20 -2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,1,1,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,7/2,3,4,3,4,4,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-13/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,1,1,0,0,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-10,-6,-19/2,-10,-20 -2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,0,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,9/2,4,5,5,0,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-16,-7,-7,-4,-6,-3,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-2,-3,-2,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-21 -2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,-1/2,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-3,-5,-5,-12 -2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,1,1,2,2,2,2,2,1,2,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,4,3,4,4,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 -1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,2,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,3,2,2,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,2,3,7,4,3,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,3,5,3,4,3,5,3,3,3,7,4,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,2,2,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-5,-10,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-6,-11,-7,-12,-12,-26 -1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,1/2,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-14 -1,1,1,1,2,2,3/2,2,0,0,1/2,1,2,2,2,2,0,1,1,1,0,1,3/2,2,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,2,1,1,1,0,1,3/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,3,2,5/2,2,5,3,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,9/2,4,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-5,-8,-8,-17 -1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,0,1,1,1,0,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-7/2,-6,-6,-13 -0,0,0,0,1/2,1,2,2,0,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1/2,0,0,0,-3,-1,-1,0,-1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,2,3/2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,2,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,4,3,7/2,3,4,4,7,4,4,3,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,3,3,2,4,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,-1,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-3/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,0,1,1,1,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,6,4,9/2,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,5,5,7,4,9/2,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-1,0,1/2,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-5,-13,-6,-13/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-11,-23 --2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,0,1,0,1,1,2,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,4,7,4,4,7/2,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,7/2,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-1,0,0,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-11/2,-10,-6,-10,-11,-23 --5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,1,1,2,2,2,1,1,1,2,2,5/2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,3,3,4,4,6,3,3,3,4,3,4,5,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,4,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,1,2,2,2,2,4,3,4,4,7,4,5,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,4,5,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,4,4,7,5,6,5,8,5,7,7,27/2,7,7,5,8,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,3,5,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-11,-6,-8,-7,-15,-8,-10,-9,-17,-11,-18,-18,-29,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-14,-14,-59/2,-14,-15,-10,-16,-9,-12,-10,-20,-10,-12,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-47 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,5/2,3,5/2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,5,3,4,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,3/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,1,1,1,0,1,3/2,2,2,1,1/2,0,2,2,3/2,1,1,1,3/2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,2,2,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,7,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,7/2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,4,6,4,5,5,7,4,9/2,4,5,3,7/2,3,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-16 --3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,0,0,0,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,3/2,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,7/2,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,4,4,11/2,4,6,6,6,4,4,3,7/2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,5,4,13/2,4,6,6,8,5,5,3,4,3,3,3,4,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-5,-4,-6,-3,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-25 --1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,2,3/2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,3,0,0,0,1,1,1,1/2,0,2,1,1,1,2,2,3/2,2,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,2,2,0,0,0,1,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16 --3,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,4,3,3,2,3,2,2,2,3/2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,2,5/2,1,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,15/2,4,5,4,6,4,6,7,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13/2,4,4,4,7,5,8,8,11,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,5,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-20,-9,-9,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-3,-14,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-31 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,5,5,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 --2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,4,9/2,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,1,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-8,-18 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,3/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 --2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,2,7/2,2,2,2,4,2,2,2,3/2,2,2,1,3,2,2,1,1/2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,0,0,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,5,3,3,2,7/2,2,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,7/2,3,4,4,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,5,5,6,4,4,3,9/2,3,3,3,5,3,4,3,4,3,4,4,4,2,2,2,7/2,2,3,3,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,5/2,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,2,2,2,3/2,1,1,1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-17/2,-4,-6,-6,-12,-6,-8,-6,-25/2,-8,-13,-13,-26 --1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,3/2,2,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,3,2,3,5/2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1/2,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-16 --2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,1,1,1,1,1,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,2,1,1/2,1,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,1,1,3/2,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,3,3,9/2,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,7/2,3,4,2,2,2,4,2,2,2,3,2,7/2,4,8,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,7/2,3,3,2,7/2,4,4,3,3,3,4,3,4,4,7,4,9/2,4,7,5,7,7,11,6,6,4,5,3,7/2,3,5,3,7/2,2,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-2,-6,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1/2,0,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-9/2,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-12,-7,-11,-11,-23 --4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,3/2,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,4,4,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,11/2,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,3,3,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9/2,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,5/2,2,2,3,5,3,4,4,8,5,5,4,7,5,8,8,6,4,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,16,9,9,6,8,5,7,6,10,6,7,5,8,5,6,5,17/2,4,4,3,5,4,5,5,9,6,7,6,10,7,9,9,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,17/2,5,6,4,6,4,5,5,10,6,7,6,10,7,10,11,19,10,10,7,9,5,5,4,7,4,5,4,5,3,4,4,15/2,4,4,3,4,3,4,3,5,3,3,2,3,2,2,1,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,7/2,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-14,-9,-14,-14,-28,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-6,-21,-10,-10,-6,-10,-5,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-14,-9,-14,-13,-25,-12,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-45/2,-11,-12,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-22,-22,-46 --1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1/2,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,3/2,1,2,1,1/2,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,10,5,5,4,6,3,3,3,5,3,7/2,2,4,3,3,3,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-25 -0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,5/2,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18 -0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,2,3,3,3,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,-1,0,-1,0,-1,0,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,2,2,4,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,0,0,0,1,3/2,2,2,1,2,2,2,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,4,3,9/2,4,5,5,5,3,3,3,9/2,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,8,5,6,4,13/2,4,6,6,12,7,7,5,6,4,5,4,6,4,4,4,11/2,4,5,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,5,7,7,11,6,6,4,11/2,3,3,2,5,3,3,3,9/2,3,3,3,6,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-21,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-14,-6,-6,-4,-11/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-9,-8,-15,-10,-15,-15,-30 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-18 -0,0,1/2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,2,1,1,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,3,2,5/2,3,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,5,3,4,3,4,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,4,3,5,4,11/2,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,5,3,7/2,3,4,3,7/2,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,4,7,5,6,6,8,5,5,4,5,3,3,2,4,2,5/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24 -1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,2,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,5,3,3,3,4,5/2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -1,1,1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,2,2,1,1,1,1,0,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,9/2,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,9/2,3,4,3,4,3,3,3,7,4,4,3,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,1,3,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,1,2,2,2,2,3,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,5,7,7,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,10,7,9,9,17,9,10,7,11,6,7,6,11,6,7,6,9,6,7,6,9,5,5,4,5,4,5,5,9,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,4,2,2,1,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-32,-15,-15,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20,-10,-11,-7,-12,-6,-8,-6,-25/2,-6,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-43/2,-12,-14,-11,-21,-14,-21,-21,-42 -1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,11/2,10,11/2,6,4,6,4,4,4,6,4,4,7/2,5,7/2,4,4,6,3,3,5/2,4,3,3,3,6,4,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,9/2,5,4,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,3,5/2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,2,2,3/2,1,1,1,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,3/2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,3,2,5/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,5,3,7/2,3,3,2,7/2,4,5,3,7/2,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,13/2,6,11,6,13/2,4,7,4,5,4,7,4,9/2,4,6,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,13/2,6,11,6,13/2,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,7,4,11/2,5,7,4,11/2,5,8,6,15/2,7,9,5,5,4,5,3,7/2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3/2,2,1,1,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-22,-10,-21/2,-6,-10,-5,-6,-5,-11,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-27/2,-14,-28 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,6,11/2,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,11/2,9,5,6,4,6,4,4,4,6,4,4,7/2,5,4,5,9/2,8,9/2,5,4,6,7/2,4,4,6,4,4,4,6,9/2,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,2,2,2,2,0,0,0,1,3/2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,6,3,3,2,5/2,2,2,1,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-13/2,-4,-6,-6,10,6,6,4,11/2,4,4,3,5,3,3,2,7/2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,5,3,4,3,9/2,3,4,4,6,4,4,3,9/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,4,6,6,12,7,7,5,13/2,4,6,6,11,6,6,5,17/2,6,9,9,16,9,9,6,8,5,6,5,10,6,6,5,15/2,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,13,7,7,6,9,6,7,6,10,6,6,6,19/2,7,10,10,13,7,7,5,7,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,7/2,3,4,3,3,2,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-12,-11,-33,-16,-16,-10,-33/2,-9,-11,-9,-17,-8,-9,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-19,-9,-9,-6,-17/2,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-8,-27/2,-8,-11,-10,-19,-10,-13,-11,-20,-13,-20,-20,-41 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,3/2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,7/2,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-22,-10,-10,-6,-11,-6,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1/2,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,10,6,11/2,4,6,4,4,3,5,3,7/2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,5/2,2,3,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,9,5,5,4,6,4,5,5,7,4,9/2,4,6,4,13/2,6,11,6,7,5,6,4,5,5,9,6,13/2,5,8,6,17/2,8,16,8,17/2,6,9,6,13/2,6,9,5,11/2,4,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,10,7,19/2,9,16,9,9,7,10,6,13/2,6,10,6,13/2,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,13/2,6,10,7,21/2,10,13,7,15/2,5,7,4,5,4,7,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-23/2,-11,-33,-16,-16,-10,-17,-9,-21/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-9,-5,-7,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-3,-4,-3,-8,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-6,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,11,6,6,4,6,4,4,3,5,3,4,5/2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,11/2,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,11/2,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,9/2,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,9,13/2,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,8,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-33,-16,-16,-10,-17,-9,-10,-9,-17,-17/2,-10,-7,-12,-7,-10,-9,-19,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-7/2,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-9/2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-13,-13/2,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 --1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,1,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,11/2,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,3,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,3,4,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,10,8,13,8,11,11,20,12,14,12,20,14,20,20,26,13,13,9,12,7,7,6,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-8,-9,-6,-11,-7,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-68,-33,-33,-22,-34,-19,-23,-19,-34,-17,-19,-14,-24,-15,-21,-20,-39,-19,-20,-14,-22,-12,-16,-14,-26,-14,-16,-13,-23,-14,-21,-21,-42,-20,-20,-13,-21,-11,-13,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-14,-9,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-11,-9,-18,-9,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-11,-17,-17,-34,-16,-16,-11,-17,-9,-11,-10,-19,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-12,-14,-11,-19,-12,-17,-17,-34,-17,-18,-12,-20,-12,-16,-15,-29,-16,-19,-16,-29,-19,-28,-28,-58,-29,-29,-19,-29,-16,-20,-17,-32,-16,-18,-13,-23,-14,-19,-18,-35,-18,-19,-13,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-27,-27,-54,-27,-28,-19,-30,-17,-22,-19,-35,-18,-20,-15,-26,-16,-24,-23,-46,-23,-24,-17,-28,-17,-23,-21,-41,-22,-26,-22,-40,-26,-40,-40,-80 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,11,6,6,9/2,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,5/2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,7,9/2,6,6,10,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-9/2,-10,-5,-7,-6,-11,-7,-11,-11,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-6,-8,-13/2,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-15/2,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-8,-15,-15/2,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-10,-11/2,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-9,-17,-17/2,-10,-7,-12,-8,-12,-11,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-39 -0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,9/2,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,9/2,4,8,4,9/2,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,1,1,1,1/2,0,0,0,1/2,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,4,4,6,4,5,5,9,5,11/2,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,11/2,6,10,6,7,6,10,7,21/2,10,14,8,8,5,7,4,9/2,4,5,3,3,2,4,2,5/2,2,4,2,2,2,3,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-10,-5,-7,-6,-12,-7,-11,-11,-33,-16,-16,-10,-16,-8,-21/2,-9,-16,-8,-9,-6,-11,-6,-19/2,-9,-20,-10,-10,-6,-10,-6,-15/2,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-6,-9,-5,-6,-6,-12,-6,-13/2,-5,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-14,-8,-19/2,-8,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-15/2,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-21/2,-9,-16,-8,-19/2,-7,-12,-8,-23/2,-11,-22,-11,-23/2,-8,-14,-8,-11,-10,-21,-11,-13,-11,-20,-13,-19,-19,-39 -0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,7/2,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,8,9/2,5,4,5,3,4,3,4,3,3,2,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,9/2,5,4,7,5,7,7,10,6,6,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-6,-3,-4,-7/2,-8,-9/2,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-14,-7,-9,-7,-13,-8,-13,-13,-26 -0,1,1,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,7/2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3/2,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,3,2,2,2,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,13/2,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,11/2,4,6,5,8,5,5,4,13/2,4,6,6,11,6,7,6,19/2,7,10,10,15,8,8,6,8,5,5,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-5,-7,-6,-23/2,-8,-12,-12,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-23/2,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-22,-10,-10,-6,-19/2,-5,-6,-5,-9,-4,-5,-3,-11/2,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-15,-8,-10,-8,-29/2,-9,-14,-14,-30,-15,-15,-10,-15,-8,-9,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-15,-8,-9,-7,-27/2,-8,-12,-12,-29,-14,-14,-10,-31/2,-8,-10,-9,-16,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-27/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-13,-20,-20,-40 -0,1,1,1,0,1,1,1,0,0,0,1/2,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,6,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1/2,0,0,1,1,1,-1,0,1,1,0,0,1/2,1,0,0,1/2,0,1,1,3/2,1,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,7,4,4,3,5,3,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,3,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,9/2,5,8,4,9/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,4,4,6,4,4,4,7,4,9/2,4,7,5,7,7,10,5,5,4,6,4,4,3,3,2,3,2,3,2,3/2,1,4,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-9/2,-4,-7,-4,-15/2,-8,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-8,-4,-6,-5,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-14,-6,-6,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-13,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-19/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-20,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-11/2,-4,-9,-5,-15/2,-7,-15,-7,-15/2,-6,-9,-5,-15/2,-6,-14,-7,-9,-7,-14,-9,-27/2,-13,-27 -0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,0,0,0,1,1,1,-1,0,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,3,2,3,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-6,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-5,-8,-8,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-4,-6,-5,-12,-6,-7,-6,-11,-7,-10,-10,-22 --1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,9,5,5,4,5,3,4,4,13/2,4,4,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,9/2,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,7,7,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,6,6,8,5,5,5,8,5,6,6,21/2,6,8,7,12,8,11,11,15,8,8,5,7,4,4,4,11/2,3,3,2,3,2,2,2,6,3,3,2,2,2,2,1,1/2,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-16,-16,-10,-16,-8,-10,-8,-31/2,-8,-9,-7,-12,-7,-9,-8,-20,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-3,-4,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-11,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-18,-9,-9,-6,-9,-5,-8,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-18,-9,-10,-7,-11,-6,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-12,-24,-12,-12,-9,-15,-9,-12,-11,-22,-12,-14,-11,-21,-13,-20,-20,-40 -0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,1,0,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-11/2,-10,-6,-10,-10,-21 -0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,6,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,1,1,1,1,1,1,1,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,-1,0,0,1,0,0,0,1,2,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,7/2,4,7,4,5,4,8,5,7,7,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-19,-9,-9,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-13/2,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-23 -0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,5/2,5,3,4,7/2,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -0,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,1,1,1,1,2,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-3,8,5,5,4,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,2,2,2,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,2,2,2,0,0,0,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,4,4,11/2,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,8,5,6,5,9,6,8,8,12,7,7,5,7,4,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,-2,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-5,-3,-6,-6,-24,-12,-12,-7,-21/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-3,-9,-4,-5,-4,-17/2,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-7,-14,-9,-13,-13,-28 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-3/2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,4,5/2,2,2,3,2,2,2,5,3,4,7/2,6,4,5,5,8,9/2,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-3/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-4,-8,-5,-8,-8,-17 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,9/2,3,5,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,5/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,3,4,3,7/2,3,5,4,5,5,7,4,9/2,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,3,3,6,4,9/2,4,7,5,13/2,6,10,6,11/2,4,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,-1,0,0,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-1,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-17,-8,-17/2,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-14,-7,-15/2,-6,-10,-6,-15/2,-7,-13,-7,-8,-6,-12,-8,-23/2,-12,-24 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,5,3,4,3,5,3,3,2,3,5/2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1/2,0,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,10,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,0,0,0,0,-1,0,0,0,0,1,2,2,4,3,4,4,15/2,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,8,4,4,3,5,3,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-6,12,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,10,5,5,4,6,4,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,5,6,5,8,5,7,7,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,11/2,3,3,2,3,2,3,3,5,3,4,4,6,5,7,8,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,11,18,10,10,7,9,5,6,5,8,4,4,3,4,3,3,2,7/2,2,2,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-39,-19,-19,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-32,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-11,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-15,-23,-23,-47 -0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,1,0,1,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-2,-1,-2,-2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,5/2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5/2,4,3,4,3,4,3,4,4,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24 -0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,3,2,2,2,4,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,1,1,3/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-5/2,-2,7,4,7/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,1,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,3,4,3,7/2,3,4,3,9/2,4,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,3,3,6,4,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,11/2,4,6,4,4,3,5,3,5/2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,0,0,0,0,0,0,1/2,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-23/2,-12,-25 -0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,3/2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-4,-5,-7/2,-7,-5,-8,-8,-17 --1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,-1,1,1,2,2,3/2,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,7,4,4,3,4,3,3,2,4,2,2,2,7/2,2,3,3,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,2,2,0,1,1,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,4,3,3,3,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,9/2,3,4,5,7,4,4,3,4,3,4,4,6,4,4,3,7/2,2,3,3,8,5,5,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,11,6,6,4,11/2,4,4,3,6,3,3,2,7/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-1,0,0,0,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-20,-10,-10,-6,-21/2,-6,-7,-5,-9,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-13,-13,-27 -0,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1/2,1,3,2,2,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,-1,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,3,3,3,2,2,2,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,4,3,4,4,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,8,4,9/2,3,4,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-13,-6,-11/2,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-20 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1/2,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,5/2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,11/2,7,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 -0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,2,2,9/2,3,3,2,3,3,4,4,2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,6,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,8,4,4,3,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3/2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,19/2,6,6,6,10,7,10,9,12,7,7,5,6,4,4,3,9/2,2,2,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34 -0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-11/2,-9,-9,-18 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,3,2,2,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,4,3,7/2,4,1,1,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,8,4,9/2,3,4,3,3,3,3,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-3,-7,-3,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15 -0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,5/2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,4,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,5/2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,3,5,4,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,13/2,4,5,5,7,4,4,4,11/2,4,4,4,5,3,3,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,8,6,8,9,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-17,-8,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-27 -1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,5/2,4,3,4,7/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,4,5,4,9/2,4,5,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,1,1,3/2,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-4,-3,-7,-4,-13/2,-6,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-11/2,-6,-11,-6,-8,-6,-12,-8,-25/2,-12,-26 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,5/2,3,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,5,7/2,4,4,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,9/2,6,4,4,7/2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-25 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,0,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,9/2,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,-1,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,9/2,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,6,4,4,4,7,5,7,7,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,15/2,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,5,9,6,8,8,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,29/2,8,8,6,10,6,7,6,10,6,7,5,8,6,8,8,14,8,9,7,11,7,9,9,17,10,11,9,16,11,16,17,25,13,13,9,13,7,8,7,11,6,5,4,5,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-12,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-31,-15,-16,-11,-17,-9,-11,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-25,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-11,-11,-7,-12,-7,-9,-8,-17,-9,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-10,-14,-13,-27,-14,-17,-14,-26,-17,-25,-25,-50 -1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,1,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,7/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-13/2,-12,-6,-6,-3,-5,-5/2,-3,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-7/2,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-13/2,-8,-7,-13,-8,-12,-12,-25 -1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,1,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,7/2,4,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,4,3,7/2,2,4,2,5/2,2,5,3,7/2,3,5,4,5,5,1,1,1/2,0,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,4,7/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-12,-12,-25 -1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,1,1,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,5/2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1,1,2,2,2,2,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,2,2,2,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,0,0,1,1,1,0,-1,0,-1,-1,3,2,1,1,1,1,2,2,4,2,2,2,5/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,0,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,1,1,1,2,2,4,3,3,2,7/2,3,4,3,2,2,2,2,5/2,2,2,1,2,2,2,2,5/2,2,2,3,4,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,5,3,3,3,9/2,4,5,5,0,1,1,1,1/2,1,1,2,2,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,4,8,4,4,3,9/2,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,13,7,8,6,8,5,5,4,6,4,4,3,3,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-4,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-26 -1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,0,1,1,1,0,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1/2,0,0,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,9/2,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 -0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,1,0,1,1,1,1,1,1,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,0,1,1,1/2,0,2,2,2,1,2,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,3,3,2,3,2,3,2,5/2,2,4,3,7/2,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,-1/2,-1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-17 -0,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,2,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,-1/2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-2,-3,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-7,-7,-14 --2,0,0,1,1,1,2,2,5/2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,-4,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,1,1/2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,5/2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,7/2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,0,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,7,4,4,3,4,2,2,2,7/2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,11/2,4,4,3,5,3,4,4,2,2,2,1,1,1,2,2,7/2,2,2,2,3,2,3,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,10,5,5,4,6,4,6,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,4,13/2,4,4,3,4,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-2,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-24,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-15,-7,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-8,-4,-6,-6,-25/2,-6,-8,-6,-12,-8,-12,-12,-26 -0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,1,1,2,2,2,2,5/2,2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,0,0,1/2,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,5,3,4,3,3,2,5/2,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,3,3,5,3,4,4,6,4,11/2,6,7,4,9/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,1,1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-3,-7,-4,-7,-7,-15 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,9/2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11 --1,0,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,3/2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,3/2,2,2,2,2,2,2,1,1/2,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,3,3,4,3,3,2,2,1,1,0,-1,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,7/2,3,4,3,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,2,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,4,6,4,5,4,13/2,4,6,7,10,6,6,4,11/2,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1/2,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,9/2,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,1,0,0,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,1,1,0,0,0,0,1/2,1,0,1,1,1,2,2,2,2,3,2,1,1,-1,0,1/2,1,0,1,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,2,1,2,2,5/2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,3,3,3,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-3/2,-2,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-5,-8,-8,-17 --2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,3/2,1,1,-1,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-16 --5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3,3,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,13/2,4,3,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,11,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,13/2,4,4,4,6,4,5,5,9,6,7,6,9,6,9,9,15,8,8,5,7,4,5,4,5,3,4,3,5,3,3,3,5,3,3,2,3,2,1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-4,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-24,-12,-12,-8,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-5,-4,-9,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-8,-33/2,-8,-9,-6,-10,-5,-7,-7,-14,-7,-9,-8,-16,-10,-16,-16,-33 --2,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,5,3,4,7/2,5,4,5,5,8,5,5,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-3/2,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 --3,-1,-1,0,-1,0,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,0,-1,0,1,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,5,3,5/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,3,4,2,5/2,2,3,3,4,4,5,3,4,4,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,3/2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17 --2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --3,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,7/2,3,4,4,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,4,11/2,4,6,6,11,6,6,4,11/2,3,3,3,3,2,2,2,5/2,2,3,3,1,1,1,1,2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-2,-2,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1/2,0,0,-1,-2,-1,-2,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-4,-3,-8,-4,-5,-4,-17/2,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --2,-1,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,1,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,7/2,3,4,2,5/2,2,4,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,9,5,9/2,3,5,3,3,3,4,2,5/2,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-12,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-14 --1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,1,1,2,2,2,3/2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1/2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,9/2,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-13 --2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,1,1,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,5,3,3,2,3,2,1,1,1/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,15/2,5,6,6,10,7,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,1,1,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-25 -0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-6,-6,-13 -0,1,1,1,-1,0,1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,7/2,4,6,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,4,5,4,9/2,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-7,-7,-15 -0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-12 --1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-3,-1,-1,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,9/2,3,4,4,9,5,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,3,4,3,3,2,5/2,2,3,3,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,5,8,5,6,5,17/2,6,8,9,15,8,7,5,13/2,4,5,4,8,4,4,3,7/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-9/2,-3,-5,-5,-2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,11/2,5,4,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-5,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14 --2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,5,3,4,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,11/2,5,10,6,11/2,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,4,3,7/2,3,5,4,9/2,4,9,5,11/2,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,15/2,5,8,5,11/2,4,7,4,4,3,4,3,3,3,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-11/2,-5,-12,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-15,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,7/2,5,4,6,5,10,6,6,4,6,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,4,5/2,3,2,4,5/2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,7/2,4,4,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,0,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,4,5,5,8,5,5,3,4,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,6,8,9,35/2,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,9,5,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,9,9,16,9,11,9,15,11,16,16,27,14,15,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,2,1,0,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-6,-9,-9,-37,-18,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-14,-8,-12,-12,-47/2,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-16,-11,-17,-17,-32,-15,-15,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-16,-9,-12,-10,-19,-10,-13,-10,-19,-12,-18,-17,-35,-17,-18,-12,-20,-11,-13,-11,-22,-11,-13,-10,-17,-10,-14,-13,-26,-13,-13,-9,-15,-8,-11,-9,-18,-9,-11,-9,-16,-10,-16,-16,-33,-16,-17,-11,-17,-9,-12,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-16,-11,-17,-10,-13,-12,-24,-12,-14,-11,-21,-14,-21,-21,-43 --2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,5/2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,3,3,6,4,4,3,4,5/2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,5/2,3,5/2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-9/2,-9,-9/2,-6,-9/2,-9,-11/2,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,3,7/2,3,4,3,7/2,3,3,2,3,3,4,3,3,3,6,4,4,3,4,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,4,5,4,5,5,9,6,13/2,6,8,6,17/2,8,14,8,15/2,6,8,5,5,4,8,5,5,4,5,4,9/2,4,6,4,4,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,6,4,7/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,2,2,3/2,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-11/2,-4,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-13/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 -0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,9/2,6,6,10,6,6,4,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-11/2,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-14 --1,0,0,0,0,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,6,4,4,3,7/2,3,4,4,4,3,3,2,3,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,9/2,3,4,5,10,6,6,4,13/2,4,5,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,3,3,3,2,2,2,7/2,3,4,4,6,4,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,9,5,6,4,11/2,4,6,6,10,6,6,6,19/2,6,9,9,14,8,8,5,13/2,4,4,4,8,5,5,4,5,4,5,4,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,5,3,3,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-5/2,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-19,-9,-8,-5,-17/2,-4,-6,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-9,-9,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22 -0,1/2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-11/2,-12 -1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,7/2,4,7,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,3,3,2,2,2,3,3,7,4,9/2,3,4,3,9/2,4,8,5,5,4,8,5,7,7,9,5,5,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,4,3,3,2,3,2,3/2,2,2,1,1,1,1,1,1,1,4,2,5/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-14 -1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,3/2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 -1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-3,-1,-1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,1,1,1,1,2,3,2,3,3,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,-1,0,1,1,2,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,2,-1,0,0,0,0,1,1,1,3/2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,1,1,1,1,2,2,5,3,3,2,3,2,3,3,9/2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,4,2,2,2,2,2,2,2,9/2,3,4,3,5,4,5,4,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,10,6,6,5,8,5,6,6,23/2,7,8,7,11,7,10,10,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,7/2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,1,1/2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-2,-1,-1,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-6,-6,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21 -1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,3/2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,1,1/2,0,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,3/2,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,3,2,7/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,3,3,3,3,2,7/2,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,7/2,4,6,4,4,4,6,4,13/2,6,8,4,9/2,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,5/2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-11/2,-6,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-11/2,-6,-12 -2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,5,3,3,3,5,4,5,5,6,7/2,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,-1,1,1,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,0,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,3/2,1,1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,-1,0,0,1,2,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-3/2,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,5,3,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,11,6,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,9/2,3,3,3,6,4,4,3,9/2,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,0,0,0,0,-3/2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-11/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-8,-8,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,5/2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,6,7/2,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-4,-4,-8 -2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,1,0,1,3/2,1,1,1,2,2,1,1,2,2,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,2,2,3/2,2,2,2,5/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,0,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,5,3,3,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,7/2,3,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,2,4,3,7/2,4,10,5,5,4,5,3,3,3,5,3,5/2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,7,4,4,3,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,9/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,3/2,1,2,2,3/2,1,0,0,0,0,-1,0,-3/2,-2,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-13,-6,-11/2,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-12 -2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,2,3/2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1/2,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,4,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,9,5,5,7/2,4,3,3,3,4,5/2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,5/2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,4,4,7/2,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12 -3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,3,-1,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,10,5,5,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,7/2,2,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,2,4,2,2,2,3,2,3,3,6,4,5,5,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,17,9,9,6,9,6,7,6,11,6,6,4,6,4,4,4,15/2,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,23/2,6,7,5,8,5,6,6,11,7,8,7,13,9,13,13,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7/2,2,2,1,1,1,0,0,0,0,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,1,1,1,1,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-23,-11,-11,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-12,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-9,-23,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1/2,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,3/2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12 -3,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,1,2,5/2,2,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,5,3,3,2,3,2,3/2,2,3,2,2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,9,5,11/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,5,5,8,6,8,8,8,4,9/2,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,-1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-13/2,-6,-10,-4,-9/2,-2,-5,-2,-7/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-9/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13 -3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,3/2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,6,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9 -6,4,4,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,5/2,2,2,3,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,5/2,2,3,3,7,4,3,2,3,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,-1,-1,2,2,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,-1/2,0,0,-1,-1,0,-1,0,-3/2,-1,-2,-1,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,-1,6,3,3,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,3,3,2,7/2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,4,4,5,3,4,3,9/2,3,4,4,6,4,4,3,5,4,5,5,6,4,4,4,11/2,4,4,4,6,4,6,5,17/2,6,8,8,8,5,5,4,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-13,-6,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-7,-7,-14 -4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,5,5,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 -6,4,4,3,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,5/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,5/2,2,3,2,3/2,1,2,2,2,2,2,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,0,0,-5,-2,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,0,0,1/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,5/2,2,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,3,2,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,5,5,5,3,7/2,3,5,3,4,3,5,4,5,4,7,5,7,7,7,4,9/2,4,4,3,7/2,3,5,3,4,3,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-6,-3,-9/2,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 -6,3,3,5/2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,3/2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,3/2,2,2,2,3/2,2,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1/2,0,1/2,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-10 -10,6,6,4,5,3,4,3,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,11/2,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,3,3,3,4,2,2,1,1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,1,1,1,0,0,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,-1,0,0,1,1,1,0,0,1/2,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,4,3,5,5,8,5,5,3,4,3,3,3,6,3,3,2,3,2,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,8,5,5,4,6,4,6,5,9,6,8,7,12,8,12,12,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,1,2,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,4,3,3,3,4,3,3,2,5/2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-4,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-19 -6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,5,3,3,3,4,3,4,7/2,6,4,5,4,7,5,7,7,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-9/2,-10 -8,4,9/2,3,4,3,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,7/2,3,4,2,5/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,0,-1/2,0,-1,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,5,3,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,11/2,4,7,5,7,7,9,5,11/2,4,6,4,4,4,5,3,7/2,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-11 -7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,3/2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1/2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,5/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-8 -11,6,6,4,11/2,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,7/2,2,2,2,3,2,3,2,3,3,4,4,3,2,2,2,3/2,1,1,1,3,2,3,2,3,3,4,4,5,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-2,-2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1/2,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,-7,-3,-3,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,2,2,2,2,3,3,4,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,5,3,3,3,9/2,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,9/2,3,4,4,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,3,3,4,3,3,3,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,12,7,7,5,15/2,5,6,5,8,4,4,3,9/2,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,1,1,2,0,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,1,4,3,3,2,2,2,2,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-15 -8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,3,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,9,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,3,2,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,7/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,5,4,5,4,10,5,5,4,5,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,13/2,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,5,7,4,9/2,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,4,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,4,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,4,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,9/2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-5/2,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-5,-4,-8,-5,-7,-7,-15 -21,11,12,9,13,8,9,8,13,7,7,5,7,5,6,5,9,5,5,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,6,6,10,6,6,4,6,3,3,2,3,2,2,2,2,2,3,3,6,3,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,18,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,10,17,12,18,18,25,13,13,9,12,7,8,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,4,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,5,3,3,2,3,2,3,2,3,2,1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-19/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-21,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,9/2,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,-1/2,-2,-2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,13/2,10,10,13,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 -12,7,7,5,8,5,11/2,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,2,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,9/2,4,6,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,7/2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,7/2,3,4,3,7/2,3,4,3,9/2,4,10,5,5,4,6,4,7/2,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,5,4,5,4,11/2,5,8,5,6,5,8,6,10,10,14,8,15/2,5,6,4,5,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,0,0,1/2,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-15 -8,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,3,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,2,2,3,3,4,7/2,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,9/2,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 -12,7,7,5,15/2,4,5,4,7,4,4,3,9/2,3,4,4,5,3,4,3,7/2,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,6,4,4,3,7/2,3,4,3,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,5,5,8,4,4,3,5,3,3,2,4,3,3,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,0,0,1,1,0,0,-1/2,0,0,-1,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,-7,-3,-4,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,1,1,2,2,2,2,4,3,3,2,5/2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,1,3/2,2,2,1,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,11/2,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,10,6,6,4,11/2,3,3,3,5,3,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,5/2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,14,7,7,5,7,4,5,5,8,5,5,4,5,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,2,2,2,2,3/2,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-17 -7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,3/2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,2,5/2,6,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,8,9/2,4,3,5,3,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-10 -8,5,5,4,6,4,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,2,2,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,6,4,9/2,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,1,1/2,1,2,1,1/2,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,4,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,3,7,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,4,3,3,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,10,6,11/2,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,-1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13 -7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,3,2,3,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,5/2,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-11 -13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,11/2,3,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,9/2,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,2,2,2,3/2,1,1,1,0,0,-1,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,0,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-2,5,3,3,2,3,2,3,2,7/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,7,4,4,3,5,3,3,3,5,4,5,4,7,5,6,6,13,7,7,5,6,4,4,4,13/2,4,4,3,4,3,3,3,8,5,5,4,5,3,3,3,9/2,3,3,3,4,3,5,5,4,3,3,2,2,2,3,3,11/2,4,4,3,5,3,4,4,10,5,5,4,6,4,6,6,21/2,6,8,6,10,7,10,11,16,9,9,7,10,6,7,6,17/2,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,4,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-21/2,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-5,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-12,-7,-11,-11,-22 -8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,5/2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,2,2,2,3/2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12 -9,5,5,4,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,3,3,4,2,5/2,3,4,3,3,3,4,3,4,4,5,3,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,4,9/2,4,7,4,4,3,5,3,3,2,2,2,3/2,2,2,2,2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,5/2,2,3,2,3/2,1,1,1,1/2,0,0,0,1/2,0,2,1,1,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,0,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,3/2,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,4,3,3,2,4,2,2,2,4,3,4,3,5,3,4,4,9,5,5,4,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,7/2,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,7/2,3,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,3/2,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-6,-6,-12,-5,-5,-3,-7,-3,-4,-3,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14 -8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,5/2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,7/2,4,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,-1/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,4,6,4,6,6,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1/2,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11 -13,7,6,4,13/2,4,5,5,8,5,5,4,13/2,4,5,5,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,13/2,4,4,4,8,5,6,5,7,4,5,5,9,5,5,4,6,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,7/2,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,1,1,1,2,2,5,3,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,2,1,1,1,3/2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,3,4,4,5,3,3,3,9/2,4,5,5,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,10,6,7,6,10,7,10,9,13,7,7,5,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1/2,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1/2,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-9,-9,-6,-17/2,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-9,-6,-9,-9,-19 -9,5,4,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,6,7/2,4,3,5,3,4,7/2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,1,1,1,0,0,0,0,0,-1/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,5/2,3,5/2,3,7/2,7,4,5,4,7,5,7,6,8,5,5,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,3/2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,1/2,1,1,0,0,0,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 -13,7,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,7/2,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,5,3,5/2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1/2,1,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,11,6,6,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,4,3,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,7/2,3,4,3,4,5,9,6,13/2,5,9,6,9,9,11,6,6,4,6,3,3,2,5,3,3,2,4,3,3,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-7,-7,-16,-8,-15/2,-5,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-5,-4,-8,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-9/2,-4,-7,-5,-8,-8,-17 -13,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,5/2,4,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1/2,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,7/2,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,4,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,9/2,8,5,6,5,8,6,8,17/2,10,6,6,4,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,1,1,1,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-15/2,-16 -24,13,13,9,12,7,9,8,14,8,9,7,10,6,7,6,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,8,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,11/2,4,4,3,5,3,4,4,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,5,7,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,6,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,20,10,10,7,9,5,6,5,8,4,4,3,5,4,5,5,19/2,6,6,4,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,7,6,9,6,9,9,17,10,11,9,15,11,16,16,18,9,9,6,8,5,5,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,0,0,0,0,0,1,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-6,-13,-7,-8,-7,-13,-9,-15,-15,-28,-14,-14,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-9,-18,-9,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-8,-35/2,-8,-9,-6,-11,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-33 -13,7,7,5,7,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -14,8,15/2,6,8,5,11/2,5,8,5,5,4,5,4,9/2,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,4,5,5,8,4,9/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-1,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,3/2,1,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4,3,7/2,3,6,4,7/2,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,4,4,5,4,11/2,6,11,6,11/2,4,6,4,4,3,5,3,3,2,4,3,7/2,4,6,4,7/2,3,3,2,3,3,3,2,3,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,5,9,5,6,5,8,6,9,9,10,6,11/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-8,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18 -10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,7/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,6,5,7,7,8,9/2,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -15,8,8,6,17/2,5,6,6,8,4,4,4,11/2,4,5,5,7,4,4,3,9/2,4,5,5,6,4,4,4,13/2,4,6,6,11,6,6,4,9/2,3,3,2,5,3,3,3,4,3,3,3,5,3,4,4,11/2,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,6,4,4,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,6,4,4,3,7/2,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,12,7,7,5,13/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,4,3,4,4,11/2,4,6,6,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,12,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-4,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-19/2,-6,-10,-10,-20,-10,-10,-6,-21/2,-6,-8,-7,-13,-6,-6,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22 -9,5,5,4,6,7/2,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,8,5,5,7/2,5,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,5,3,3,2,4,2,2,2,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,7/2,3,5,3,3,3,5,3,4,4,6,4,7/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,4,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,6,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,10,6,11/2,4,6,4,4,4,5,3,7/2,3,4,3,7/2,3,6,4,7/2,2,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,7/2,3,5,3,3,2,3,2,7/2,4,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,0,1,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-4,-3,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-17/2,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17 -11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,5/2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,5/2,4,4,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,6,4,6,4,6,5,17/2,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,10,5,5,4,6,4,5,5,17/2,5,6,5,9,6,9,9,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,11/2,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-5/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,5/2,2,2,2,2,2,3,3,8,5,5,3,4,3,3,3,11/2,3,3,2,3,2,3,3,5,3,2,2,2,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,2,7/2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,4,4,4,9,5,5,4,6,4,6,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,7,6,21/2,6,7,6,9,6,8,8,11,6,7,6,10,6,8,8,27/2,8,10,9,15,11,16,16,18,9,9,6,8,5,5,4,15/2,4,5,4,7,5,6,6,6,4,4,3,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-16,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-9,-6,-9,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-7,-6,-27/2,-7,-8,-6,-10,-6,-8,-7,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-20,-10,-10,-6,-10,-6,-8,-7,-27/2,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-6,-8,-8,-19,-9,-10,-6,-10,-6,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30 -12,13/2,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,6,7/2,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-9/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -14,8,15/2,6,7,4,11/2,5,7,4,5,4,6,4,5,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,10,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,3/2,2,1,1,1,1,-1,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,5,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,6,4,9/2,4,7,5,13/2,6,12,6,13/2,4,7,4,9/2,4,6,4,7/2,3,5,3,7/2,3,6,4,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,9/2,4,5,4,9/2,4,6,4,9/2,4,6,4,11/2,5,8,5,5,4,6,4,6,5,9,6,13/2,6,10,7,21/2,10,12,6,6,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-22,-10,-21/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-10,-20 -12,13/2,6,5,6,4,4,4,6,4,4,7/2,5,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,3,4,3,4,7/2,5,3,4,4,6,4,6,6,10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,7,4,4,3,5,7/2,5,4,7,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-5/2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -22,12,12,8,23/2,6,7,6,11,6,7,6,17/2,6,8,7,11,6,6,5,7,4,5,5,8,5,6,5,17/2,6,9,9,17,9,9,6,19/2,6,7,6,7,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,8,5,6,5,17/2,6,8,8,14,7,7,5,15/2,4,5,5,7,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,9/2,3,3,3,4,3,3,2,7/2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,5/2,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,2,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,2,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,1,2,2,2,2,4,3,3,2,7/2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,7/2,2,3,3,7,4,5,4,6,4,5,5,9,5,6,6,19/2,6,9,9,18,9,9,6,9,5,5,4,7,4,4,4,11/2,4,5,4,8,4,4,4,11/2,4,4,4,7,4,4,4,6,5,7,7,10,6,6,4,13/2,4,5,5,8,5,6,5,15/2,6,8,7,12,7,7,5,15/2,5,6,6,12,7,9,8,14,10,15,15,17,9,9,6,8,5,5,4,8,5,6,5,7,5,6,6,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,1,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-9,-9,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-7,-7,-16,-8,-10,-8,-31/2,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-9,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-10,-7,-23/2,-6,-9,-8,-16,-8,-10,-8,-31/2,-10,-15,-15,-31 -15,8,8,6,8,9/2,5,4,8,9/2,5,4,6,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,5,3,3,3,4,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,7/2,4,4,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-9/2,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-10,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -22,12,12,8,11,6,15/2,6,11,6,13/2,5,8,5,7,7,11,6,13/2,5,7,4,11/2,6,9,6,13/2,5,8,6,17/2,9,17,9,9,6,10,6,13/2,5,7,4,5,4,6,4,11/2,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,17/2,8,15,8,8,6,8,5,11/2,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,2,1,1,1,3,2,2,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,1,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,4,7,4,9/2,4,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,4,9/2,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,27/2,14,16,8,17/2,6,8,5,11/2,4,8,5,5,4,6,4,6,5,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-13/2,-4,-6,-3,-5,-4,-6,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-10,-6,-19/2,-10,-21,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-7,-7,-13,-6,-13/2,-4,-7,-4,-5,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-19/2,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-15/2,-7,-13,-7,-17/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-8,-15,-10,-15,-15,-32,-16,-31/2,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-14,-7,-17/2,-7,-13,-8,-25/2,-12,-26,-13,-13,-8,-14,-7,-17/2,-7,-15,-7,-8,-6,-11,-6,-19/2,-9,-19,-9,-9,-6,-12,-7,-19/2,-8,-16,-8,-21/2,-8,-16,-10,-31/2,-15,-31 -21,11,11,8,11,7,8,13/2,11,6,6,5,8,5,7,13/2,11,6,6,5,7,9/2,6,6,10,6,7,11/2,9,6,9,9,17,9,9,6,9,11/2,6,5,8,9/2,5,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,5/2,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,3/2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,7/2,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-14,-7,-8,-7,-14,-7,-8,-6,-11,-13/2,-10,-9,-19,-9,-9,-6,-12,-7,-9,-8,-17,-9,-10,-8,-16,-10,-16,-15,-31 -41,21,21,14,21,13,16,14,24,13,13,10,16,10,14,13,23,12,12,9,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,13,8,10,9,15,11,16,16,31,16,16,11,16,9,10,8,13,7,8,6,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,7,12,8,11,10,18,9,9,7,10,6,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,0,1,1,2,2,2,3,5,3,4,4,6,4,6,6,21/2,6,7,5,8,5,6,5,9,5,6,5,7,5,8,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,12,12,22,11,11,8,12,7,7,6,10,6,7,5,8,6,8,7,13,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,24,13,13,9,13,7,8,6,10,6,7,5,8,5,6,6,11,6,7,5,8,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,22,11,11,8,11,7,9,8,13,7,7,5,8,6,8,7,13,7,6,4,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,6,5,8,5,7,7,13,8,9,8,13,9,12,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,21,12,13,10,17,11,16,16,31,16,17,12,18,11,13,11,20,11,13,10,17,11,16,15,28,15,15,11,18,11,15,14,27,16,19,16,28,19,27,27,28,15,15,10,15,8,9,7,12,7,7,5,8,6,8,8,15,8,9,7,10,6,7,6,11,7,8,7,11,7,10,10,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,9,16,11,17,17,33,17,18,13,19,11,13,11,20,11,13,10,16,10,13,13,24,13,14,10,16,10,12,11,19,10,11,9,14,9,13,13,24,13,13,9,12,7,8,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-11,-6,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-8,-8,-6,-11,-6,-8,-8,-16,-9,-11,-9,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-17,-35,-18,-19,-14,-24,-14,-19,-18,-35,-19,-23,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-23,-19,-35,-17,-18,-13,-22,-13,-18,-16,-32,-16,-17,-12,-19,-11,-14,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-17,-17,-11,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-18,-12,-18,-19,-39,-19,-20,-13,-21,-12,-15,-13,-25,-13,-14,-10,-18,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-18,-38,-19,-19,-12,-19,-10,-13,-11,-21,-11,-12,-10,-18,-11,-16,-15,-31,-16,-17,-13,-22,-13,-18,-16,-32,-17,-21,-18,-33,-21,-32,-32,-64 -21,11,11,8,11,7,8,7,12,7,7,11/2,8,6,8,7,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,9/2,7,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,4,5/2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,9/2,5,4,6,4,5,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,17/2,14,10,14,14,15,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,17,9,10,7,10,6,7,6,10,6,7,6,8,5,7,7,13,7,7,5,9,11/2,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,5/2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-13/2,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-16,-33/2,-34,-33/2,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-11/2,-9,-5,-6,-11/2,-11,-6,-7,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-9,-9,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-15/2,-8,-6,-11,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -21,11,23/2,8,11,7,8,7,12,7,15/2,6,8,6,8,7,12,6,6,5,8,5,11/2,5,9,5,5,4,7,4,11/2,6,9,5,11/2,4,5,4,9/2,4,6,4,4,3,4,3,9/2,4,6,4,9/2,4,5,3,4,4,7,5,6,5,8,6,17/2,8,16,9,9,6,9,5,11/2,4,6,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,5,5,9,5,5,4,5,3,7/2,3,3,2,3,2,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,4,8,4,4,3,6,4,5,5,8,5,6,5,8,5,6,6,11,6,13/2,5,6,4,4,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,4,6,4,13/2,7,13,7,7,5,7,4,9/2,4,5,3,4,3,4,3,7/2,4,6,4,7/2,3,5,3,4,4,6,4,7/2,3,5,4,5,5,10,6,11/2,4,6,4,5,4,7,4,4,3,5,4,9/2,4,7,4,5,4,4,3,7/2,3,5,4,9/2,4,6,4,13/2,7,11,6,11/2,4,6,4,9/2,4,7,4,9/2,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,9/2,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,13/2,6,9,6,8,8,16,9,9,6,10,6,15/2,6,11,6,7,6,10,6,8,8,15,8,8,6,10,6,17/2,8,13,8,9,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,4,11/2,6,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,5,8,6,17/2,9,17,9,19/2,7,10,6,15/2,6,10,6,7,6,8,5,7,7,13,7,7,5,9,6,13/2,6,10,6,6,5,8,5,7,7,13,7,13/2,4,7,4,5,4,6,3,3,3,3,2,3,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-8,-4,-11/2,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-9,-16,-10,-33/2,-17,-33,-16,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-17/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-10,-7,-10,-5,-7,-6,-12,-6,-13/2,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,4,3,4,4,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,5/2,3,3,5,3,3,5/2,4,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,5/2,3,2,3,3,4,3,3,2,4,5/2,3,3,4,5/2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,4,3,4,7/2,5,3,4,3,3,2,3,3,4,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,9/2,7,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,5/2,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,7,5,7,9/2,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -20,11,11,8,23/2,7,8,7,12,7,8,6,17/2,6,7,7,13,7,7,5,15/2,4,5,5,9,5,6,5,15/2,5,7,6,9,5,5,4,5,4,5,5,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,15,8,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,3,3,2,2,2,9/2,3,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,3,2,1,1,1,1,1,1,2,1,1,0,-1/2,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-2,0,0,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,4,3,3,3,5,3,4,4,6,4,4,3,7/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,5,4,5,5,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,6,4,13/2,4,6,7,12,6,6,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,4,3,9/2,3,4,4,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,10,6,6,4,11/2,4,4,4,7,4,5,4,11/2,4,4,4,7,4,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,12,6,6,5,15/2,5,6,5,11,6,6,5,17/2,6,8,8,17,9,10,7,19/2,6,8,7,12,7,8,6,10,7,9,9,15,8,8,6,21/2,7,9,8,12,7,9,8,14,9,13,13,14,8,8,5,7,4,4,4,8,5,5,4,6,4,6,5,9,5,5,4,11/2,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,15/2,6,8,8,17,9,9,7,10,6,8,7,11,6,6,5,8,5,7,6,12,7,8,6,17/2,5,6,6,8,5,5,4,13/2,5,7,7,13,7,7,5,13/2,4,5,4,6,3,3,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3/2,1,0,0,1,1,2,2,5/2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-4,-5,-4,-9,-6,-10,-10,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-33/2,-10,-16,-17,-32,-16,-16,-10,-33/2,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-19/2,-6,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-10,-5,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-16,-8,-8,-6,-10,-6,-9,-8,-15,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,7/2,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,9/2,6,5,8,6,8,8,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -13,7,8,6,8,5,11/2,5,9,5,11/2,4,6,4,9/2,4,8,5,5,3,5,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,4,3,7/2,4,6,4,4,4,6,4,6,6,11,6,13/2,5,7,4,9/2,4,4,3,3,3,5,3,4,4,6,4,7/2,3,5,3,7/2,3,5,3,5/2,2,3,2,7/2,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,5/2,2,4,3,7/2,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,5,3,7/2,3,6,4,11/2,5,9,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,3,5,3,4,3,6,4,11/2,6,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,7,4,7/2,3,4,3,3,3,6,4,7/2,3,5,3,7/2,4,9,5,5,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,12,6,13/2,5,8,5,6,5,9,5,6,5,8,5,7,6,10,6,11/2,4,7,4,11/2,5,8,5,13/2,6,10,7,9,9,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,6,6,12,6,13/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,8,5,5,4,5,3,4,4,6,4,7/2,3,5,4,11/2,6,10,6,11/2,4,4,3,7/2,3,4,2,2,2,2,2,3/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,3,2,2,2,1,1,3/2,1,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-9,-5,-13/2,-5,-11,-7,-11,-11,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20 -11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,6,7/2,4,3,5,3,4,9/2,10,11/2,6,4,7,4,5,9/2,8,9/2,5,4,7,9/2,6,11/2,8,9/2,4,3,5,4,5,9/2,7,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17 -20,11,11,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,4,3,3,3,4,3,5,5,17/2,5,6,6,10,7,10,9,17,9,10,7,10,6,6,5,15/2,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,2,2,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,9/2,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,11/2,3,3,2,3,3,4,4,5,3,4,3,5,3,4,3,5,3,3,3,5,4,5,5,12,6,6,4,6,4,4,3,9/2,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,12,7,7,5,6,4,5,4,13/2,4,4,4,6,4,5,4,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,13/2,4,6,5,8,6,9,9,11,6,6,4,6,4,4,4,15/2,4,5,4,6,4,4,4,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,13,7,7,5,8,5,6,5,17/2,5,5,4,7,5,8,8,17,9,10,7,11,7,9,8,13,7,8,6,9,6,9,9,13,7,7,5,8,5,7,7,25/2,7,8,7,12,8,12,13,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,7,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,5,13,7,7,5,6,4,4,4,13/2,4,6,5,8,5,7,7,14,8,8,6,8,5,5,4,11/2,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-9,-18,-12,-18,-18,-30,-15,-15,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-35/2,-9,-11,-9,-16,-10,-16,-15,-31 -11,6,6,4,6,4,5,4,7,4,5,4,5,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,2,2,3/2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,6,4,4,5/2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16 -12,6,13/2,4,7,4,5,4,8,5,5,4,5,4,5,4,6,4,7/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,3,2,2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,6,4,7/2,3,3,2,2,2,2,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,4,3,3,3,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,7/2,3,4,3,3,3,6,4,11/2,6,6,4,7/2,2,3,2,5/2,2,5,3,3,3,3,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,3,6,4,4,3,5,3,7/2,4,5,3,4,3,5,3,4,4,9,5,6,4,7,4,5,4,8,5,5,4,5,4,11/2,6,9,5,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,8,8,9,5,11/2,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,7/2,3,6,4,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,9/2,3,5,3,3,3,4,2,2,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-9/2,-5,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-11/2,-4,-8,-5,-8,-8,-17 -9,5,5,4,6,7/2,4,7/2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,9/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,5/2,3,3,3,2,3,2,4,3,3,3,7,4,5,7/2,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,7/2,5,3,4,3,4,3,3,2,3,2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,3,4,4,5,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 -15,8,8,6,17/2,5,6,5,10,5,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,2,2,2,2,7/2,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,4,4,8,5,5,4,11/2,4,4,4,7,4,4,3,5,3,4,3,3,2,3,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,2,2,2,2,5/2,2,3,3,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,5/2,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,9/2,3,4,5,9,5,5,4,5,3,4,3,3,2,3,2,7/2,2,3,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,9/2,3,4,4,5,3,4,4,13/2,5,7,7,6,4,4,3,4,3,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,8,4,4,3,5,3,3,3,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,4,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,5,5,4,13/2,4,6,6,11,6,6,5,15/2,5,6,5,8,5,6,5,8,6,9,9,11,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,9/2,4,5,5,12,7,7,5,7,5,6,5,6,4,4,3,5,3,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,11/2,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,5/2,2,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-6,-8,-6,-23/2,-8,-12,-12,-18,-9,-9,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-20 -10,11/2,6,4,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1/2,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,7/2,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,3,5/2,4,5/2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,7/2,8,4,4,3,5,3,4,3,4,3,3,5/2,4,5/2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 -13,7,15/2,6,8,5,11/2,5,9,5,5,4,5,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,3,5,4,11/2,5,9,5,11/2,4,7,4,9/2,4,7,4,9/2,3,5,4,5,5,6,4,4,3,5,3,4,3,3,2,5/2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,3,3,8,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,9/2,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,7,5,15/2,8,10,6,11/2,4,6,4,7/2,3,5,3,4,3,4,3,4,3,5,3,7/2,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,3,3,4,3,9/2,4,10,5,5,4,6,4,5,4,6,4,7/2,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-5,-9,-6,-19/2,-10,-15,-7,-15/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-16 -13,7,7,5,7,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1/2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,10,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -24,13,13,9,14,8,10,8,13,7,7,6,9,6,7,6,19/2,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,5,8,6,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,25/2,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,5,4,6,6,0,1,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,4,6,6,13,7,8,6,8,5,6,5,7,4,4,3,5,3,3,3,9/2,3,4,3,4,3,4,4,7,4,5,4,5,4,6,6,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,19/2,6,6,5,7,5,6,6,12,7,8,6,10,7,10,11,7,4,3,2,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,14,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,10,11,8,12,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,13,8,11,10,17,10,11,9,15,10,13,13,20,11,11,8,11,6,7,5,8,5,5,4,6,4,5,4,15/2,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,15,8,9,6,9,5,6,5,7,4,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,9,5,4,3,4,3,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-19/2,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-33/2,-8,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-18,-28,-14,-14,-9,-13,-7,-9,-8,-15,-7,-8,-5,-8,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-16,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-4,-5,-4,-7,-4,-7,-6,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-15,-10,-15,-15,-30 -13,7,7,5,8,5,6,5,7,4,4,3,5,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,7/2,5,3,4,3,5,3,4,4,7,4,4,7/2,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,5/2,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,7,9/2,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,3/2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-13,-6,-7,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-15 -13,7,15/2,6,8,5,6,5,7,4,4,3,6,4,4,3,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,9/2,4,5,3,7/2,3,5,3,4,4,7,4,9/2,4,5,4,9/2,4,6,4,4,4,6,4,5,5,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,0,1,3/2,2,2,2,2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,3,2,7/2,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,2,2,2,2,3,2,3,3,5,3,7/2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,13/2,4,7,4,9/2,4,5,3,3,2,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,8,5,5,3,5,3,7/2,3,5,3,5/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,4,2,5/2,2,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,3,8,4,9/2,3,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,1,1,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-9,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -9,5,5,4,6,4,4,4,6,7/2,4,3,4,3,3,5/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,4,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9 -14,7,7,5,8,5,6,5,9,5,5,4,11/2,4,4,3,4,3,4,3,5,3,4,4,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,13/2,4,6,5,6,4,4,3,4,3,3,2,3,2,3,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,7/2,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,-1,0,1,1,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,7,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,4,13/2,4,6,6,5,3,3,2,2,2,2,1,3,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,15/2,6,8,8,11,6,7,5,7,4,5,4,5,3,3,2,7/2,3,4,4,4,3,3,3,9/2,3,3,3,5,3,3,3,9/2,4,5,5,7,4,4,3,9/2,3,4,4,4,2,2,2,7/2,2,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,7/2,3,4,4,10,5,5,4,11/2,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,4,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,5/2,2,2,2,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1/2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-5/2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-3,-3,-8 -10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,7/2,3,4,3,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,3,2,2,2,5/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,-1,-1,-2,0,-1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,4,3,3,3,6,4,4,3,4,3,9/2,5,4,3,3,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,3,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,6,4,7/2,3,4,2,5/2,2,3,2,7/2,3,3,2,2,2,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,2,5/2,2,4,2,5/2,2,3,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,2,1,1,2,2,2,2,3/2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-3,-8,-4,-5,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 -9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,4,3,3,3,6,7/2,3,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,7/2,6,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,4,5,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,1,1,2,2,3,2,3,2,3,2,3,2,3,2,3,3,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,3,3,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,2,2,5/2,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,9/2,3,4,4,6,4,5,5,-2,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,7/2,2,2,2,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,4,5,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,4,3,3,3,4,3,3,3,11/2,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,6,4,5,5,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,6,9,9,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-19/2,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-6,-11,-7,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-3,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,5/2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9 -10,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,7/2,4,3,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,3,5,4,5,4,7,4,4,3,4,3,7/2,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,1,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,3,2,3,3,-2,0,0,0,0,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,2,4,3,3,3,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,4,2,2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,7/2,3,6,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,3,7/2,4,5,3,4,4,6,4,6,6,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,7,4,4,3,4,3,7/2,3,5,3,3,2,4,3,3,3,3,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,3,2,4,3,3,3,5,3,7/2,3,5,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,4,3,9/2,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,7/2,3,6,4,4,3,3,2,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-10 -9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,1,1/2,0,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-4,-4,-8 -15,8,8,6,15/2,4,5,5,8,4,4,4,11/2,4,5,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,3,7,4,4,4,11/2,4,6,5,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,0,0,1,1,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,2,2,2,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,3/2,2,2,1,0,1,1,2,5/2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,5,5,-3,-1,-1,0,1/2,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,2,5,3,4,3,7/2,2,2,2,2,2,2,1,1,1,1,2,4,3,3,3,4,3,5,5,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,17/2,6,8,8,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,3,2,1,1,1,1,1,1,2,2,10,6,6,4,13/2,4,4,4,7,4,5,4,5,3,4,4,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,6,4,5,4,7,5,7,7,10,5,5,4,6,4,5,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,2,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,5,3,3,2,5/2,2,1,1,0,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-3,-13/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-6,-11,-7,-10,-10,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-7,-16 -10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,5/2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1/2,1,1,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 -15,8,8,6,8,5,5,4,7,4,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,5,3,5/2,2,3,2,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,4,5,4,11/2,5,10,6,6,4,5,3,7/2,3,4,3,3,2,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,2,2,5/2,2,3,2,5/2,2,3,3,4,4,-2,0,0,0,0,1,3/2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,6,4,9/2,4,8,5,11/2,5,8,6,8,8,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,2,2,2,2,1,1,3/2,2,10,6,6,4,6,4,4,3,6,4,7/2,2,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,7/2,3,5,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,4,3,6,4,5,5,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,7,4,7/2,3,3,2,5/2,2,4,2,2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,1,1,1,2,2,1,1,1,1,-1,0,0,0,-4,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-7,-5,-10,-6,-10,-10,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-13/2,-7,-15 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,5/2,4,3,6,4,4,3,4,5/2,3,5/2,4,5/2,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,11/2,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,2,3/2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,10,6,6,4,6,4,4,3,5,3,3,2,3,5/2,3,3,5,3,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-10,-5,-6,-5,-10,-6,-10,-10,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-14 -28,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,5,7,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,4,4,6,4,6,6,21/2,6,6,4,6,4,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,4,6,7,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,2,2,2,2,2,2,2,2,4,3,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,8,5,7,7,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,3,3,6,4,5,4,7,5,6,6,25/2,7,8,6,8,5,6,5,8,5,6,5,9,6,8,8,14,8,8,7,11,7,9,8,14,8,9,8,14,10,15,15,6,3,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,7,4,3,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,20,10,10,7,10,6,6,5,7,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,6,4,4,3,5,4,5,4,7,4,5,5,8,6,8,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-4,-19/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-13,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-2,-6,-4,-6,-6,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-10,-7,-12,-7,-9,-8,-15,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-12,-14,-12,-22,-14,-21,-21,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-13,-14,-29 -15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,3,5/2,4,3,6,4,4,3,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,5/2,3,2,4,3,4,4,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -15,8,8,6,8,5,6,5,8,5,11/2,4,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,4,3,4,3,9/2,4,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,9/2,3,5,3,7/2,3,5,3,7/2,3,5,4,5,4,8,4,9/2,4,6,4,11/2,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,2,2,11,6,11/2,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,4,9/2,4,6,4,6,6,9,5,5,4,5,3,7/2,4,5,3,7/2,3,3,2,7/2,3,6,4,7/2,3,3,2,2,2,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,7/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-12,-6,-11/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-10,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -11,6,6,4,6,4,4,7/2,6,4,4,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,3,4,4,5,3,4,4,6,4,6,6,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,8,8,6,17/2,5,6,5,10,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,13/2,4,5,5,8,5,5,4,9/2,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,7/2,3,4,3,6,3,3,2,7/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1/2,0,0,1,-1,0,1,1,1,1,1,2,4,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,3,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,17/2,6,9,9,4,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,7/2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,11,6,6,4,6,3,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,2,4,3,3,2,7/2,3,4,3,8,5,5,3,4,3,3,3,6,4,4,4,13/2,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,7,4,4,3,7/2,2,3,3,6,4,4,3,9/2,3,4,4,5,3,3,2,7/2,2,2,1,2,2,2,1,1,1,1,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,5,4,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,0,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-11,-6,-7,-6,-23/2,-7,-10,-10,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13 -10,5,5,4,5,3,4,3,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,11/2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -12,7,7,5,6,4,5,4,7,4,9/2,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,5/2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,3,3,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,0,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,3/2,2,3,2,3/2,2,1,1,3/2,1,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,2,3/2,1,4,3,3,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,7,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,6,3,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3/2,1,1,2,3/2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1/2,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -21,11,11,7,10,6,8,7,11,6,6,4,6,4,6,6,8,5,5,4,6,4,5,4,15/2,5,6,5,7,4,5,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,3,4,3,4,4,15/2,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,2,1,1,1,4,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,9/2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,19/2,6,8,7,11,8,11,11,8,4,4,3,5,3,3,3,9/2,3,3,2,3,2,2,1,4,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,2,2,2,7/2,2,2,1,1,1,1,1,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,11/2,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,6,7,13,7,7,5,6,4,4,4,13/2,4,4,3,3,2,3,3,8,5,5,3,4,3,4,4,11/2,4,4,3,5,4,5,5,6,3,3,2,3,2,2,2,5/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,3,4,4,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,1,1,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-11,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13 -12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,3,2,2,3/2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,7/2,4,4,6,9/2,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 -13,7,7,5,6,4,9/2,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,3,4,2,5/2,2,1,1,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,7/2,3,5,3,3,2,2,2,5/2,2,4,3,3,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,4,9/2,4,7,5,7,7,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,3,2,2,3/2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,6,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,3,3,6,7/2,4,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -16,9,9,6,17/2,5,6,5,8,5,5,4,11/2,4,5,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,4,2,2,2,7/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,2,5/2,2,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,3,3,6,4,4,3,9/2,3,3,3,7,4,4,3,7/2,2,3,2,4,3,3,2,3,2,2,2,6,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,11/2,4,4,4,8,4,4,4,11/2,4,5,4,7,4,5,4,5,4,5,4,6,4,4,4,15/2,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,5/2,2,3,3,7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,9,5,4,3,9/2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,4,3,4,4,11/2,4,5,5,9,5,6,4,11/2,4,4,3,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,3,3,3,2,2,2,7/2,3,4,4,5,3,3,2,5/2,2,2,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,0,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 -10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,3,5/2,3,3,4,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,5/2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -14,8,8,6,8,5,11/2,4,7,4,9/2,4,5,4,9/2,4,7,4,9/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,4,5,3,3,2,3,2,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,2,1,1,3/2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,5/2,2,4,3,3,3,8,4,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,3,4,3,4,4,6,4,4,4,7,5,6,6,6,4,7/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3,2,2,2,5/2,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,3,2,3,2,2,2,3,3,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,3,2,7/2,4,6,4,4,3,4,3,7/2,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,7/2,4,5,3,3,2,3,2,5/2,3,5,3,7/2,3,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -14,8,8,6,8,5,6,9/2,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,5/2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,8,4,4,3,4,3,4,4,7,4,4,4,5,7/2,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,9/2,6,6,6,4,4,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,3,5/2,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-2,-3,-5/2,-6 -27,14,15,10,15,9,10,8,13,7,7,6,9,6,8,8,27/2,8,8,5,7,5,6,6,10,6,6,5,7,5,7,7,10,6,6,4,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,3,3,4,3,4,4,11,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,3,3,2,2,2,3,2,3,2,3,2,3,2,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,6,4,5,5,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,11/2,4,4,3,3,2,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,5,4,5,5,15,8,9,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,7,12,8,12,12,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,4,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,21/2,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -14,8,8,6,8,5,6,5,7,4,4,7/2,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,3,2,3,3,5,3,3,5/2,3,2,3,3,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,3,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,4,3,6,4,4,3,3,2,5/2,2,5,3,3,3,3,2,7/2,4,10,6,11/2,4,6,4,9/2,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,7/2,4,6,4,5,4,7,5,7,7,6,4,7/2,3,4,3,3,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,3,2,3,3,5,4,9/2,4,6,4,5,5,9,5,9/2,4,5,3,4,4,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5 -11,6,6,9/2,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3 -18,10,10,7,21/2,6,7,5,7,4,4,4,6,4,5,5,8,4,4,3,9/2,4,5,5,6,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,2,2,2,2,1,3,2,1,1,1,1,1,2,4,2,2,2,3/2,1,0,0,2,1,1,1,2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,9/2,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,12,7,7,5,13/2,4,5,4,8,5,5,4,13/2,4,6,6,8,5,5,4,11/2,4,4,4,8,5,5,5,8,6,8,8,7,4,4,3,9/2,3,4,3,5,3,4,3,7/2,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,4,3,7/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,3,6,4,4,4,13/2,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,0,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,1,0,1,1,1,1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-3,-2,-5 -11,6,6,5,7,4,5,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,5/2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,9/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3 -15,8,8,6,9,5,6,5,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,4,3,3,2,2,2,2,1,2,2,3/2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,5/2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,5,10,6,11/2,4,6,4,4,4,7,4,9/2,4,6,4,5,5,6,4,7/2,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,1,1,1,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,3,2,3,2,5/2,2,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,7/2,3,5,3,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-6,-4,-11/2,-6,0,1,1,1,0,0,1/2,1,0,0,0,1,1,1,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4 -14,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,4,3,3,2,3,2,2,3/2,2,2,2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,7/2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4 -26,14,14,10,14,8,8,6,21/2,6,6,4,6,4,6,6,12,6,6,5,7,4,5,5,17/2,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,9/2,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,6,4,5,5,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,9/2,3,3,2,2,2,3,3,1,1,1,1,1,1,2,2,5/2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,15/2,5,6,5,9,6,8,8,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,5,17/2,5,6,5,9,7,11,11,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,9/2,2,2,2,3,2,2,2,6,4,5,4,6,4,4,4,13/2,4,4,3,5,4,5,6,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,7/2,2,3,3,6,5,7,7,9,5,5,4,6,4,5,5,17/2,5,5,4,7,4,5,5,7,4,4,3,5,3,4,4,15/2,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,6,4,4,3,3,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-8,-4,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,6,4,6,13/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,4,3,3,3,4,3,3,2,3,2,3,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 -18,10,10,7,10,6,13/2,5,7,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,4,6,4,7/2,3,4,3,4,3,6,4,7/2,3,4,3,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,9/2,4,9,5,5,4,6,4,4,4,5,3,7/2,3,4,3,9/2,4,6,4,4,3,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,4,3,4,3,7/2,3,3,2,2,2,2,2,5/2,2,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,3,2,5/2,2,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-2,-4,-2,-3,-3,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1/2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,29/2,8,10,8,11,6,7,6,17/2,6,7,6,10,6,6,4,11/2,4,5,5,9,5,6,4,11/2,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,5,3,4,4,6,4,6,6,8,5,5,4,9/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,5/2,2,3,3,2,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,7,5,6,5,17/2,6,9,9,16,9,9,6,17/2,5,6,5,8,5,5,4,13/2,4,6,6,9,5,5,4,7,5,6,6,11,7,8,6,19/2,7,10,10,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,7,4,4,3,9/2,3,3,3,5,3,3,2,7/2,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,5,5,10,5,5,4,11/2,4,4,3,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,6,4,4,4,11/2,4,6,6,12,7,7,5,13/2,4,5,4,8,5,5,4,6,4,5,5,7,4,5,4,11/2,4,4,4,8,5,5,4,15/2,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,9/2,3,3,3,8,5,5,4,11/2,4,4,4,7,4,5,4,11/2,4,6,6,7,4,5,4,5,3,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-1,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-9,-9,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6 -18,10,10,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,9/2,7,5,7,7,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,5/2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,5/2,3,2,4,5/2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,14,8,19/2,8,12,7,7,6,9,6,7,6,10,6,11/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,5,3,4,4,6,4,11/2,6,9,5,5,4,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,0,1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,3,4,2,5/2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,11/2,4,7,5,13/2,6,11,6,6,4,6,4,9/2,4,7,4,11/2,5,8,6,9,9,16,8,17/2,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,6,15/2,6,10,7,19/2,10,11,6,6,4,5,3,7/2,3,4,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,5,4,11/2,5,10,6,11/2,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,9/2,4,6,4,9/2,4,7,4,9/2,4,5,3,4,4,8,5,11/2,4,8,5,7,7,11,6,6,4,7,4,5,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,9/2,4,6,4,11/2,5,7,4,9/2,4,5,3,4,3,5,3,4,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-5 -26,14,14,10,14,8,10,8,12,7,7,6,9,6,7,6,10,6,6,4,6,4,5,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,9,5,5,4,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,2,2,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,6,7,6,10,7,10,10,11,6,6,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,5,4,6,11/2,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-17/2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -52,27,27,18,26,14,16,13,23,12,13,10,15,10,13,12,23,12,13,9,14,9,11,9,16,9,9,7,10,7,10,9,17,9,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,16,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1/2,1,1,1,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,11,11,22,11,11,7,10,6,7,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,6,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,15,9,11,10,18,12,17,17,20,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,9,7,10,10,18,10,11,8,12,8,10,9,15,9,11,9,15,10,15,14,21,11,11,8,11,7,8,7,13,7,7,6,9,6,9,9,17,9,9,6,9,6,8,7,13,7,7,6,9,6,9,8,15,8,7,5,7,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-3,-3,0,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-6,-5,-11,-7,-12,-12,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-7,-31/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15/2,-3,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10 -27,14,14,9,13,15/2,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,5/2,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,4,7/2,5,7/2,4,4,8,5,6,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,9/2,6,4,4,4,7,4,4,7/2,5,7/2,5,5,9,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,9/2,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4 -27,14,27/2,9,13,8,17/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,9/2,3,5,3,7/2,3,4,2,2,2,3,2,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,4,3,7/2,4,6,4,6,6,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,7/2,2,4,2,5/2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,3,2,5/2,3,5,3,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,0,1,1,1,2,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,3,3,5,3,3,2,4,3,3,3,5,3,5/2,2,2,2,5/2,3,4,3,7/2,4,6,4,11/2,6,10,6,11/2,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,9/2,4,5,4,9/2,4,8,5,13/2,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,7/2,3,3,2,5/2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,7,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,9/2,4,5,4,6,6,10,5,5,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,5,4,5,3,3,3,6,4,4,3,5,4,11/2,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,15/2,8,12,6,6,5,7,4,9/2,4,7,4,9/2,4,4,3,9/2,5,9,5,11/2,4,5,4,9/2,4,6,4,4,3,6,4,5,5,9,5,9/2,4,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-3,-6,-6,-14,-6,-6,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 -18,9,9,6,9,11/2,6,5,8,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,2,4,5/2,3,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,4,3,4,3,5,7/2,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,5/2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,5,7,7,6,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,7/2,3,3,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,3,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,7/2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 -26,13,13,9,27/2,8,9,8,12,7,7,6,17/2,6,7,6,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,9/2,3,4,3,3,2,2,2,3,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,3,3,9/2,3,3,3,4,3,3,3,6,5,7,7,9,5,5,4,5,3,4,3,4,2,2,2,7/2,2,3,3,6,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,5,3,3,3,9/2,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,9/2,2,2,2,5,3,3,2,3,2,2,2,5,3,2,2,5/2,2,3,3,4,3,4,3,5,4,6,6,10,6,6,4,13/2,4,6,5,6,4,4,4,11/2,4,4,4,7,4,5,4,11/2,4,5,5,9,6,7,6,19/2,7,10,10,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,9/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,11/2,4,5,4,7,4,4,4,11/2,4,5,4,9,5,5,4,9/2,3,3,3,6,4,4,3,9/2,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,9/2,4,5,5,9,5,6,4,13/2,4,6,5,6,4,5,4,6,4,5,5,10,5,5,4,11/2,3,3,3,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,5,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,3,4,2,2,1,1,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-9/2,-3,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-1,-3 -15,8,8,6,8,5,6,5,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -19,10,19/2,7,10,6,13/2,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,0,1,3/2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,7/2,3,4,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3/2,2,2,2,2,2,6,4,7/2,3,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,3,3,2,3,2,4,3,4,3,6,4,4,3,4,3,9/2,4,8,4,4,3,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,6,3,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,4,2,2,2,3,2,5/2,3,4,3,3,3,3,2,7/2,4,3,2,5/2,2,3,2,7/2,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,9/2,3,5,3,4,4,6,4,4,3,6,4,11/2,5,10,6,11/2,4,5,3,4,4,5,3,4,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,1,1,1,1,2,2,5/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-11/2,-6,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-2 -16,17/2,8,6,9,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -29,15,15,10,14,8,10,8,27/2,8,8,6,10,6,8,7,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,9,5,5,4,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,1,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,7/2,2,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,5,5,17/2,5,6,4,6,5,7,7,11,6,6,4,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,11/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,15/2,4,4,4,6,4,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,9,6,9,9,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,4,3,3,2,3,3,4,4,15/2,5,6,5,7,5,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,3,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,9/2,3,3,3,4,3,5,6,10,5,5,4,6,4,5,5,19/2,6,6,5,7,5,7,7,16,9,9,6,9,5,6,5,17/2,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3/2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3/2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,5,3,3,2,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-4,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,4,2,2,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,-1,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2 -16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,6,7/2,4,5/2,4,2,2,2,3,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,3,2,3,2,2,2,3,2,3,7/2,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,3,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1 -17,9,9,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,5,5,4,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,2,0,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,5/2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,0,0,1/2,0,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,7/2,4,5,3,7/2,3,4,3,9/2,4,5,3,7/2,2,4,2,2,2,3,2,2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,3,2,4,3,7/2,3,5,3,7/2,4,5,4,5,5,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,3,2,5/2,2,3,2,2,2,4,3,7/2,3,4,3,4,4,4,3,7/2,3,3,2,3,3,5,3,3,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,6,4,4,3,4,3,7/2,3,6,4,4,3,4,3,9/2,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,2,3,2,5/2,2,4,3,4,4,6,3,3,3,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,1,1,1,1,0,1,3/2,2,3,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-9/2,-4,4,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1 -13,7,7,5,6,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0 -20,11,11,8,21/2,6,8,7,12,7,8,6,9,6,7,6,10,6,6,4,11/2,4,4,3,5,3,3,3,9/2,4,5,5,6,4,4,3,9/2,3,3,3,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,5,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,4,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,1,2,2,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,6,3,3,2,3,2,2,2,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,3/2,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,7/2,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,11/2,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,13/2,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,11/2,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,7/2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,1,1,3/2,2,2,1,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,-1,-1,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,5,3,2,2,3/2,2,2,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-2,0,0,0,-3/2,0,0,0,2,1,1,1,2,1,1,1,0 -13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,5/2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1 -18,9,9,7,9,6,7,6,11,6,7,5,8,5,7,6,10,6,11/2,4,5,3,4,4,5,3,4,4,6,4,11/2,5,6,4,4,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,2,5/2,2,4,3,4,4,3,2,2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,3/2,1,6,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,1,1,1,1,0,1,3/2,2,1,1,3/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,9/2,5,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,3,2,5/2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,7,4,5,4,5,4,11/2,5,8,5,5,3,4,3,3,2,4,2,5/2,2,3,2,3,3,7,4,7/2,2,4,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,-1/2,0,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,0,0,0,1,0,0,1/2,0,0,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,1,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,4,2,5/2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,2,2,2 -17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,10,6,6,4,5,3,4,4,5,3,4,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,2,4,3,3,3,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,5/2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,0,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,4,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2 -32,17,17,12,18,11,13,11,18,10,10,8,12,8,11,10,39/2,10,11,8,11,7,8,7,11,6,7,5,8,6,9,9,10,6,6,4,5,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,3,5,4,5,5,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,9/2,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,3,4,4,11/2,4,4,4,6,4,5,5,8,5,5,5,8,6,8,7,5,3,4,3,4,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,2,3,3,5,3,3,2,3,2,3,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,7,4,4,3,4,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,11/2,4,4,3,3,3,4,4,6,4,4,3,4,3,4,4,8,5,6,5,7,4,5,5,8,4,4,3,5,3,4,4,17/2,5,6,5,8,5,6,6,11,6,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,8,6,9,6,8,8,29/2,8,8,6,8,5,6,5,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,15/2,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,1,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,6,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,3,2,3,2,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-18,-8,-8,-5,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-10,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,4 -17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,6,3,3,5/2,3,5/2,3,3,5,3,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -17,9,19/2,7,10,6,15/2,6,10,6,6,5,7,5,13/2,6,10,6,6,4,7,4,5,4,6,4,4,3,5,4,11/2,5,6,3,3,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,7/2,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,1,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,1,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,3/2,1,5,3,3,2,3,2,3/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,3/2,2,1,1,2,2,4,3,3,2,3,2,3/2,1,1,1,1,1,1,1,2,2,4,3,3,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,2,2,3/2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,2,2,5/2,3,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,3,3,5,4,9/2,5,4,3,3,2,3,2,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,1,1,1,1,1,6,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,5,3,7/2,2,3,2,3,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,5,7,4,11/2,5,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,7/2,3,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,5/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,1,1,1,0,1,3/2,1,1,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,3,2,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2 -12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,5/2,4,5/2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-2,-3,-3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -19,10,11,8,23/2,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,7,5,6,5,6,4,4,4,11/2,4,6,6,7,4,4,3,9/2,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,2,1,1,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,2,2,2,2,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,3,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,4,4,3,4,3,5,4,6,6,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3/2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,4,3,9/2,3,4,5,7,4,3,2,3,2,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,4,5,5,8,5,6,4,13/2,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,13/2,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,7/2,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-2,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,2,2,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,3 -12,13/2,7,5,7,4,5,4,7,4,4,4,5,7/2,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,10,5,5,4,5,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,2,3/2,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2 -15,8,8,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,3,5,4,9/2,4,6,3,3,3,5,4,5,4,6,4,7/2,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3,2,3,2,3,3,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,3,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,1,1,1,1,2,2,5/2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,9/2,4,6,3,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,4,6,4,4,3,5,4,11/2,5,13,7,7,5,6,4,9/2,4,6,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,5/2,3,6,4,7/2,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-4,-4,3,2,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3 -13,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,1,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,3,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,7/2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,5/2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,4 -24,13,13,9,12,8,10,8,29/2,8,9,7,10,6,8,7,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,7/2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,9/2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,5,3,4,3,5,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,6,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,2,7,4,4,3,3,2,3,3,4,3,4,4,7,5,6,6,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,3,4,4,15/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,13/2,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,11,6,7,6,9,6,8,8,22,11,11,7,10,6,8,6,21/2,6,7,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,5,4,5,5,6,4,4,3,4,2,2,2,5/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,3,3,9/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,3,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,0,2,1,1,1,0,1,1,1,1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-4,-6,-6,4,3,3,2,2,2,2,1,1/2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,1,1,2,1,1,1,3/2,1,1,1,2,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,3,5,3,4,4,7 -13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,13,7,7,9/2,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 -15,8,17/2,6,8,5,13/2,6,10,5,5,4,6,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,5/2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,3,2,3,3,2,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,4,3,7/2,3,1,1,2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,5,3,3,3,5,4,5,4,6,3,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,5,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,11/2,6,15,8,8,5,7,4,5,4,6,4,9/2,4,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,4,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,3,3,4,2,5/2,3,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,2,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-3,-2,-3,-3,3,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,2,2,4 -12,7,7,5,7,4,5,9/2,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,12,7,7,9/2,6,7/2,4,7/2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3 -20,11,11,8,12,7,9,7,12,7,7,5,15/2,5,6,6,12,6,6,4,13/2,4,5,5,7,4,5,4,11/2,4,5,5,7,4,4,3,9/2,3,3,3,5,3,4,3,4,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,9/2,3,4,4,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,6,4,4,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,3,4,2,2,2,2,2,2,1,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,3,2,3,2,3,2,2,2,0,1,1,1,3/2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,5,3,3,2,7/2,2,3,3,5,3,4,3,5,3,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,2,5,3,3,2,7/2,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,3,9/2,3,4,5,10,6,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,9,5,4,3,9/2,4,5,5,10,6,6,5,17/2,6,8,8,21,11,11,7,9,6,7,6,9,5,6,5,8,5,6,6,10,6,6,5,7,4,4,4,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,4,3,5,4,5,5,5,3,3,2,5/2,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,3,2,7/2,3,4,4,7,4,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,3/2,2,2,2,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-14,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-3,-1,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,3,2,2,2,3/2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,4,3,3,3,9/2,3,3,3,5 -14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,5/2,3,2,3,7/2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,6,6,14,15/2,8,5,6,4,5,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,3,5/2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,4 -20,10,10,7,10,6,15/2,6,11,6,7,5,8,5,13/2,6,11,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,4,4,7,4,5,4,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,2,3,2,3,2,3,2,7/2,4,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,5/2,2,1,1,2,2,3,2,3,3,4,3,3,3,6,4,7/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,2,4,3,3,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,2,2,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,0,1,1,1,2,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,7/2,3,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,3,2,3,2,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,5,4,5,5,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,4,4,3,5,5,9,5,6,5,8,6,8,8,20,10,21/2,7,9,5,6,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,7/2,4,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,5,5,4,2,5/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,7/2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,5,3,3,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,7,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,1,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,5,3,7/2,3,5,4,9/2,4,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,1,1,3/2,2,1,1,1,1,2,2,2,1,1,1,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -20,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,3,2,3,3,4,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,5,4,7,4,4,7/2,5,7/2,5,5,8,5,6,5,8,6,8,8,20,10,10,7,9,5,6,6,10,11/2,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,5/2,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3/2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,7/2,4,3,5,3,4,4,6,4,4,3,5,4,5,9/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,3,2,2,2,4,3,3,3,5 -39,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,21,11,11,8,11,6,7,6,10,6,7,5,8,6,8,8,27/2,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,3,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-8,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,0,-1,0,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,7,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,8,9,8,13,9,14,14,38,20,20,14,20,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,23/2,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,6,9,6,7,6,11,6,7,6,9,6,8,8,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,5,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,8,8,8,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-26,-13,-13,-8,-13,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-8,-8,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,4,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,5,9 -20,11,11,8,11,13/2,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,3,2,4,3,4,3,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,5/2,4,5/2,3,3,4,3,4,7/2,6,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,1/2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,1,1,1,1,1,1,0,1/2,0,1/2,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,4,3,4,4,6,7/2,4,5/2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,5,7/2,5,5,5,3,3,3,4,5/2,3,5/2,3,2,3,5/2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,4,5,4,7,9/2,5,9/2,7,5,8,8,20,11,11,8,10,6,7,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,5/2,4,5/2,3,5/2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,7/2,5,4,5,5,5,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,3,3,5 -21,11,11,8,11,6,15/2,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,5,3,3,3,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,3,2,4,3,7/2,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,3,3,5,3,4,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,4,2,5/2,2,3,2,3,3,4,3,4,3,6,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,1,1,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,5/2,3,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,4,3,4,4,5,3,7/2,2,3,2,3,3,5,3,7/2,3,5,3,7/2,4,7,4,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,5,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,3,7,4,9/2,4,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,11/2,5,11,6,6,4,5,4,5,5,8,5,11/2,5,7,5,8,8,21,11,11,8,10,6,8,7,10,6,6,5,8,5,13/2,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,4,3,3,2,3,2,5/2,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,4,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,5,3,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,3,2,3/2,1,1,1,3/2,2,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,3/2,2,3,2,3,3,5 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,9/2,8,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,3,5/2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,7/2,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,3/2,2,3/2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3 -21,11,12,8,23/2,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,13/2,4,5,4,6,3,3,3,4,3,5,5,9,5,4,3,9/2,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,4,4,4,3,4,3,9/2,4,5,5,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,8,4,4,3,7/2,2,3,2,2,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,0,0,0,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,3,2,3,2,3,2,3,3,1,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3/2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,7,4,4,3,3,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,13/2,4,5,5,12,7,7,5,6,4,5,5,9,5,6,5,9,6,8,8,24,12,12,8,23/2,7,8,7,11,6,7,5,15/2,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,5,3,3,3,4,3,4,5,6,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,4,3,3,2,7/2,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,7/2,2,3,2,3,2,2,2,4,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,7/2,3,4,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,2,2,2,3/2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,9/2,4,6,6,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3/2,2,2,2,3 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,7/2,8,4,4,3,4,3,4,3,5,3,4,7/2,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,5/2,4,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2 -15,8,8,6,8,5,11/2,5,9,5,11/2,4,6,4,5,5,9,5,6,4,5,3,4,3,6,3,3,3,4,3,3,3,6,4,7/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,3,3,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,5/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,10,5,5,4,5,4,9/2,4,6,4,9/2,4,7,5,13/2,7,18,9,9,6,9,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,4,5,3,7/2,4,6,4,7/2,3,4,3,7/2,4,7,4,4,3,5,3,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,6,4,4,3,3,2,3,3,4,2,5/2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,0,-1,0,1,1,0,1,3/2,2,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,4,4,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2 -14,7,7,5,7,4,5,4,8,9/2,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-2,-1/2,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,13/2,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,2 -25,13,13,9,13,7,8,7,25/2,7,8,6,10,7,9,8,15,8,7,5,7,4,5,5,9,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,3,8,5,5,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,4,8,5,5,4,5,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,8,4,4,3,4,3,3,2,5/2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,7/2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,3,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,1,1,1,1,1,1,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,1,1,6,3,3,2,2,2,2,2,5/2,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,8,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,17,9,10,7,10,6,7,6,19/2,6,6,4,6,4,6,6,15,8,8,6,9,5,6,6,21/2,6,8,7,12,8,12,12,29,15,14,10,14,8,10,8,29/2,8,8,6,8,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,4,3,3,3,9/2,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,1,1,2,2,2,1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,5,3,3,2,3,2,1,1,1,1,2,2,3,2,3,3,5,3,3,2,2,1,1,1,3/2,2,2,2,3,3,4,4,2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,4,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3 -14,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,9/2,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,16,17/2,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,6,5,9,5,5,4,5,3,7/2,4,5,3,7/2,2,4,3,7/2,3,6,4,4,3,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,1,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,5,3,7/2,2,4,3,3,3,5,3,4,3,5,4,9/2,4,11,6,6,4,6,4,4,4,8,4,9/2,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,13/2,6,10,5,5,4,5,4,5,5,8,5,5,3,5,3,7/2,3,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,3,3,2,3,2,3,2,7/2,3,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,6,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,7/2,3,3,2,3,3,4,3,3,2,2,2,3,3,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,0,0,1,0,0,-1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,5/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2 -11,6,6,9/2,6,4,5,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,9,5,5,7/2,5,3,4,7/2,7,4,4,7/2,5,4,5,4,8,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -18,9,9,6,19/2,6,6,5,9,5,5,4,13/2,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,7/2,2,3,3,9,5,5,3,4,3,3,3,4,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,3,7/2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,0,2,2,2,2,5/2,2,4,4,7,4,4,3,7/2,2,3,2,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,7/2,3,4,4,7,4,4,3,5,3,4,4,5,3,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,1,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,7/2,2,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,3,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,5/2,2,2,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,6,6,14,8,8,6,15/2,5,6,5,11,6,6,5,17/2,6,7,7,14,7,7,5,15/2,5,6,5,10,6,7,6,19/2,7,10,10,25,13,13,9,13,8,9,8,13,7,8,6,8,5,6,6,11,6,6,4,13/2,4,5,4,7,4,5,4,11/2,4,6,5,10,5,5,4,11/2,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,9/2,3,4,3,5,3,3,3,9/2,3,4,3,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,5,7,4,4,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-3/2,0,0,0,0,1,1,1,3/2,2,2,1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,7/2,2,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,3/2,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,4 -12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,8,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,11/2,6,11/2,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -17,9,17/2,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,3,3,9,5,9/2,4,4,3,3,2,3,2,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,4,3,3,3,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,3,7/2,4,6,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,4,2,2,2,3,2,5/2,2,2,2,2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,7/2,3,5,4,11/2,6,14,8,8,5,7,5,6,6,11,6,13/2,5,8,5,7,7,13,7,13/2,5,7,5,6,6,10,6,7,6,10,7,10,9,25,13,25/2,8,13,8,9,8,13,7,15/2,5,8,5,13/2,6,10,6,11/2,4,6,4,9/2,4,8,5,5,4,6,4,6,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,7/2,3,6,3,3,2,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,1/2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,7/2,4,4,2,5/2,2,3,2,5/2,2,4,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,7/2,2,3,2,2,2,3,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4 -16,17/2,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,9,5,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,14,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,12,13/2,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,25/2,12,8,12,7,9,8,13,7,7,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,1,1,1,0,1/2,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,35/2,10,10,7,9,5,6,5,8,5,5,4,5,4,5,5,16,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,4,5,4,5,3,3,2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,3,4,4,8,5,6,5,9,6,9,9,11,6,6,4,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,6,5,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,0,0,0,0,-3/2,0,0,1,2,1,1,1,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,19/2,6,6,5,8,5,7,7,12,7,9,7,12,8,10,10,26,14,14,10,14,9,11,9,16,9,10,8,13,9,13,12,23,12,13,10,16,10,12,11,20,11,13,11,18,12,18,17,47,24,24,16,24,13,15,12,20,11,11,8,13,8,10,10,35/2,9,9,7,10,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,4,5,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,17/2,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,7/2,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,5,5,9,5,4,3,4,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,4,4,6,3,3,3,4,2,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-3,-3,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,7,4,5,4,5,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,5,6,5,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7 -16,9,9,6,9,11/2,6,11/2,9,5,6,5,7,5,6,5,10,6,6,4,5,3,3,3,5,3,3,5/2,3,5/2,3,3,9,5,5,3,5,3,3,3,3,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,6,4,4,5/2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,1,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1/2,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,5/2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,6,7,6,10,7,10,19/2,25,13,13,9,13,7,8,7,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,3,5/2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,4,3,5,3,4,4,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4 -17,9,19/2,7,10,6,13/2,6,10,6,6,5,7,5,6,5,10,6,11/2,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,9,5,5,3,5,3,7/2,3,3,2,2,2,2,2,5/2,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,4,4,3,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,5,3,7/2,4,6,4,11/2,5,7,4,7/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3,3,3,2,7/2,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,7,5,13/2,6,15,8,8,6,8,5,6,6,9,5,6,5,8,6,15/2,7,12,7,15/2,6,9,6,15/2,7,12,7,8,7,11,8,21/2,10,27,14,14,10,13,8,17/2,7,11,6,7,5,8,5,13/2,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,9/2,4,6,4,7/2,3,4,3,4,3,6,3,3,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,0,0,1/2,0,1,1,1,1,-1,0,1/2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-3/2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,0,0,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,4,4,3,7/2,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5 -13,7,7,5,7,4,5,9/2,8,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,9/2,7,5,6,6,10,6,6,5,9,6,8,8,20,11,11,7,10,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,7,4,4,3,4,3,4,3,4,5/2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -20,11,11,8,21/2,6,7,6,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,4,3,5,4,5,5,10,6,6,4,11/2,4,4,3,4,2,2,2,3,2,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,6,4,4,4,13/2,5,7,7,8,4,4,3,9/2,3,4,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,1,1,1,1,1,1,2,5/2,2,2,2,5,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,11/2,4,6,5,6,3,3,2,7/2,2,2,2,5,3,4,3,4,3,4,4,3,2,2,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,18,9,9,6,19/2,6,7,7,10,6,7,6,9,6,9,9,14,8,9,7,10,7,9,9,16,9,10,8,14,10,14,13,33,17,17,11,31/2,9,10,8,13,7,8,6,19/2,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,-1,0,1,1,1,1,0,0,-1,0,0,1,1,1,2,2,4,3,3,2,2,2,2,2,4,3,3,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,11/2,4,6,6,9,5,5,4,9/2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-2,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-1,0,0,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,7/2,2,3,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,6,6,5,3,3,3,5,3,4,4,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,4,4,6,4,4,4,11/2,4,6,6,7,4,5,4,11/2,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,4,4,5,3,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,5/2,2,3,3,3,2,3,2,7/2,3,4,3,5 -13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,5/2,3,3,5,3,4,3,4,5/2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,6,10,6,7,6,9,13/2,9,9,21,11,11,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,5/2,3,5/2,3,2,3,3,3,2,3,2,4,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3 -18,10,19/2,7,9,6,7,6,10,6,6,5,7,4,11/2,5,10,6,6,4,6,4,9/2,4,6,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,5/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,6,3,3,3,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,4,4,7,5,13/2,6,14,8,15/2,6,8,5,13/2,6,9,6,13/2,5,8,5,7,7,12,7,7,5,9,6,15/2,7,13,8,9,8,13,9,12,12,28,14,14,9,13,8,17/2,7,12,7,7,5,8,5,7,6,12,6,13/2,4,7,4,5,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,5/2,2,3,2,3,3,3,2,7/2,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1/2,0,1,1,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,4,3,7/2,3,5,4,9/2,4,5,3,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,4,3,4,3,9/2,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,3,2,7/2,4,4,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4 -17,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,9,11/2,6,5,8,5,7,7,11,6,7,5,8,5,7,7,12,7,9,7,12,8,11,11,26,13,13,17/2,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,5/2,4,3,4,3,4,3,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,5/2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4 -33,17,18,12,18,10,12,10,33/2,9,10,7,10,7,9,8,18,10,10,7,9,6,7,6,21/2,6,8,6,10,6,8,8,14,7,7,5,8,5,6,4,13/2,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,7/2,2,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15/2,4,5,4,7,5,8,8,14,8,8,6,8,5,5,4,9/2,3,4,3,4,3,4,4,3,2,1,1,1,1,2,2,3/2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,3,2,3,2,3,2,2,2,3/2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,5/2,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,2,7/2,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,13/2,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,8,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,23/2,7,8,6,10,7,11,11,23,12,12,9,13,8,11,10,17,10,11,8,13,9,13,13,21,11,12,9,14,9,13,12,45/2,13,15,12,20,14,21,21,48,24,24,16,24,13,15,12,41/2,11,12,9,14,9,11,11,21,11,12,9,13,8,9,8,27/2,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,19/2,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,9/2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,6,4,5,5,8,4,4,3,4,3,3,3,9/2,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,15/2,4,5,4,7,5,8,8,12,6,6,4,5,3,2,2,5/2,2,1,1,1,1,1,1,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,5,4,6,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,17/2,5,6,5,7,5,6,5,7,4,3,2,3,2,3,3,5,3,3,3,5,4,5,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6 -18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,7/2,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,5/2,3,2,2,2,3,2,3,3,2,3/2,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,7/2,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,11/2,8,8,12,7,7,6,9,6,8,7,13,8,9,7,12,8,12,12,27,14,14,10,14,8,9,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,9/2,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -21,11,23/2,8,11,7,8,7,10,6,13/2,5,6,4,11/2,5,11,6,13/2,4,6,4,5,5,8,5,11/2,4,7,5,6,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,6,3,3,3,3,2,2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,7/2,3,5,4,11/2,6,9,5,5,4,6,4,7/2,3,3,2,5/2,2,3,2,3,3,3,2,2,1,2,2,3/2,1,2,1,1,1,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,-1,0,0,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,3,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,9/2,4,6,4,5,5,8,4,9/2,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,17/2,6,9,6,15/2,7,12,7,15/2,6,9,6,9,9,15,8,9,7,11,7,10,9,16,9,21/2,8,14,10,14,14,32,16,33/2,12,16,9,21/2,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,8,5,11/2,5,7,5,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,7/2,2,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,4,5,3,4,4,8,5,5,3,4,3,7/2,4,6,4,4,3,6,4,9/2,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,4,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,4,3,3,2,3,2,3,3,5,3,3,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4 -18,19/2,10,7,9,11/2,6,6,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,5,5,7/2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3/2,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,7,11/2,8,5,7,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,9/2,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,5/2,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1/2,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,31/2,9,10,9,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,8,13,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,5,8,4,4,3,3,2,2,2,5,3,4,3,7/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,6,4,4,3,7/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,3,2,3,3,4,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,15/2,4,4,3,5,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,1,1,3/2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,5/2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,9/2,4,5,5,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,13/2,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,25/2,8,12,12,23,12,13,9,13,8,10,9,18,10,12,9,29/2,10,13,12,22,12,13,10,16,10,13,13,24,14,16,13,21,14,21,21,47,24,24,16,24,14,16,14,22,12,13,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,8,7,11,7,10,9,14,7,7,5,15/2,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,11/2,4,5,5,7,4,5,4,6,4,6,5,10,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,13/2,4,6,6,10,5,5,4,5,3,3,3,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-14,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,-1,-2,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,3,3,9/2,3,4,4,9,5,5,4,11/2,4,4,3,3,2,3,2,7/2,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,5,7,7,10,6,6,4,13/2,4,4,4,8,5,5,5,8,5,7,7,11,6,6,4,11/2,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,13/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,4,3,7/2,2,3,3,4,3,3,3,11/2,4,5,5,7,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4 -21,11,11,8,10,6,7,6,10,6,6,4,7,9/2,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,7/2,5,3,3,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,5/2,3,2,3,2,2,5/2,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,4,5,9/2,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,9,6,9,6,7,13/2,12,7,8,6,10,7,9,9,16,9,9,7,11,7,9,9,16,19/2,11,9,15,10,14,14,32,16,16,11,16,19/2,11,9,15,8,9,13/2,10,6,8,15/2,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,6,10,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,5/2,3,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1/2,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,7/2,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,3,2,4,3,3,5/2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,15,9,21/2,9,15,8,17/2,6,10,6,8,8,15,8,17/2,6,9,5,6,6,10,6,13/2,6,9,6,17/2,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,7/2,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,5,4,7,5,13/2,7,13,7,13/2,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-3/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3,3,4,2,2,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,7/2,2,4,3,3,3,5,3,4,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,13/2,6,12,6,13/2,5,7,5,6,6,10,6,6,5,7,5,13/2,6,13,7,7,5,7,5,13/2,6,12,7,8,7,12,8,12,12,22,12,25/2,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,27/2,10,17,11,14,13,24,14,31/2,13,22,15,21,21,47,24,24,16,24,14,16,13,23,12,25/2,9,14,9,12,11,20,11,11,8,11,7,17/2,7,12,7,8,6,10,7,9,9,15,8,7,5,7,5,6,5,9,5,11/2,4,7,4,11/2,6,10,6,6,4,6,4,11/2,5,8,5,11/2,4,6,4,13/2,6,10,6,13/2,4,7,4,4,4,7,4,4,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,3,5,3,7/2,3,4,2,5/2,2,4,3,7/2,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,10,6,11/2,4,5,3,7/2,3,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,2,1,1/2,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-6,-3,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,7/2,3,4,3,5,5,8,4,4,3,4,3,7/2,3,4,3,3,3,4,3,3,3,6,3,3,2,4,3,7/2,3,5,3,7/2,4,6,4,13/2,6,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,13/2,6,11,6,6,4,6,4,9/2,4,7,4,9/2,4,7,5,7,7,12,6,13/2,4,6,4,4,3,5,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,4,3,7/2,3,5,4,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,2,2,3,2,5/2,2,3,2,3,3,4 -31,16,16,11,15,9,10,9,15,8,8,6,10,13/2,9,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,8,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,5/2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,5/2,3,7/2,6,4,5,4,7,5,6,7,13,7,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,3/2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,6,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,5/2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,7,6,12,7,8,7,12,8,12,12,22,12,12,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,21/2,17,11,14,13,24,14,16,13,22,15,22,22,47,24,24,16,24,14,16,13,23,12,13,9,14,9,12,11,19,10,11,8,11,7,8,7,13,7,8,6,10,7,9,8,15,8,8,5,7,5,6,5,9,5,6,9/2,7,9/2,6,6,10,6,6,4,6,4,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,7,4,4,4,7,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3,5,3,4,3,4,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4 -60,31,31,21,30,17,20,17,30,16,17,13,20,13,17,16,31,16,17,12,17,10,12,11,20,11,12,10,17,12,17,17,32,16,16,11,15,9,11,9,15,8,9,6,9,6,9,8,15,8,9,7,11,7,9,8,13,8,9,8,14,10,14,13,25,13,14,10,14,8,10,9,17,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,13,51/2,14,14,10,15,9,11,10,17,10,11,8,13,8,10,10,18,10,10,7,11,7,8,7,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,13,10,15,9,10,9,16,9,10,7,11,7,10,10,18,9,9,7,10,6,7,6,9,5,6,5,8,6,8,8,15,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,3,4,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,2,2,3,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,39/2,10,10,8,12,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,10,6,8,8,15,9,11,10,17,12,18,19,37,19,19,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,12,22,13,15,12,21,14,21,21,40,21,22,15,23,14,17,14,25,14,16,13,22,14,20,19,37,20,21,16,25,16,22,21,41,23,27,23,41,28,42,42,92,46,46,31,46,26,31,26,47,25,26,19,31,19,26,24,44,23,23,16,23,14,17,14,25,14,16,13,22,14,20,20,38,19,19,13,19,11,14,12,20,11,11,8,13,8,11,11,21,11,12,9,13,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,10,12,10,17,9,10,8,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,19,10,11,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,8,29/2,8,8,6,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,7,13,8,9,8,14,9,13,13,25,13,13,9,14,8,9,7,12,7,7,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,5,7,4,5,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,4,5,4,7 -31,16,16,11,16,9,10,9,16,9,9,7,11,7,9,9,16,17/2,9,6,9,11/2,6,6,11,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,5,4,5,9/2,8,5,5,4,6,4,5,4,7,4,5,5,7,5,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,7,9/2,6,6,9,5,5,4,6,4,5,4,7,9/2,5,5,8,6,8,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,5/2,4,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,5,5,10,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,7/2,5,7/2,4,4,8,5,6,5,9,13/2,10,10,19,10,10,7,11,13/2,8,7,12,7,7,6,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,11,20,11,11,8,12,7,9,15/2,13,15/2,8,7,12,8,11,10,19,10,11,17/2,13,8,11,11,21,12,14,12,21,15,22,22,47,24,24,16,24,14,16,14,24,13,14,10,16,10,14,12,23,12,12,8,12,7,9,8,13,8,9,7,11,15/2,10,10,20,10,10,7,10,6,7,6,11,6,6,5,7,9/2,6,6,11,6,6,5,7,9/2,6,5,8,5,6,9/2,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,8,5,6,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,7/2,5,3,4,7/2,6,4,4,7/2,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,5/2,4 -31,16,16,11,16,9,21/2,9,16,9,9,7,11,7,19/2,9,16,8,17/2,6,9,6,13/2,6,11,6,7,6,9,6,9,9,17,9,17/2,6,8,5,6,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,4,4,6,4,5,5,7,5,8,8,14,8,8,6,8,5,11/2,5,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,9/2,4,6,4,13/2,6,11,6,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,4,4,7,4,9/2,3,5,4,9/2,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,11/2,5,9,5,11/2,4,7,4,11/2,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,15/2,7,13,7,15/2,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,5,4,6,5,7,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,8,4,7/2,3,4,3,3,3,5,3,5/2,2,4,2,5/2,2,5,3,5/2,2,2,2,3/2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,5,5,10,6,6,5,6,4,9/2,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,8,4,4,3,4,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,6,5,9,6,19/2,10,19,10,10,7,11,6,15/2,6,12,7,7,6,8,5,7,7,13,7,15/2,6,8,5,7,7,11,7,8,7,11,8,11,11,20,10,21/2,8,12,7,17/2,7,13,8,17/2,7,12,8,11,10,19,10,23/2,9,13,8,11,11,22,13,15,13,22,15,22,22,47,24,24,16,24,14,33/2,14,24,13,27/2,10,16,10,27/2,12,23,12,12,8,12,7,9,8,13,8,9,7,11,8,21/2,10,20,10,10,7,10,6,7,6,11,6,6,5,6,4,6,6,11,6,13/2,4,7,4,11/2,5,9,5,11/2,4,8,6,8,8,15,8,9,6,8,5,6,5,9,5,11/2,4,8,5,6,6,11,6,13/2,5,6,4,11/2,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,7/2,2,3,2,7/2,4,7,4,9/2,4,5,4,9/2,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,5,3,3,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,4,3,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,13,7,7,5,7,4,5,4,7,4,9/2,3,4,3,4,4,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,4,5,5,8,4,9/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3 -21,11,11,8,11,13/2,8,6,11,6,6,5,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,7/2,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,5/2,4,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,32,17,17,23/2,17,10,12,10,16,9,10,7,11,7,9,8,16,8,8,6,8,5,7,6,9,11/2,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,5/2,5,3,3,3,4,3,4,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,5/2,3,5/2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,5/2,3,3,4,5/2,2,2,3,5/2,3,3,6,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -30,15,15,11,16,9,11,9,16,9,9,7,21/2,7,10,9,16,9,9,6,9,6,7,6,10,6,6,5,9,6,9,9,17,9,10,7,19/2,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,5,4,13/2,5,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,13/2,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,11/2,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,5,4,7,5,8,8,12,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,9,5,6,4,13/2,4,5,5,8,5,5,4,15/2,6,8,8,14,8,8,6,15/2,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,4,3,4,3,5,4,6,6,7,4,4,3,3,2,3,3,5,3,3,2,5/2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,4,3,4,4,11/2,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,11/2,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,4,5,5,9,6,7,6,9,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,11,7,10,10,19,10,10,7,21/2,6,8,7,13,7,8,6,21/2,7,10,10,19,11,12,9,29/2,10,13,12,22,13,15,13,22,15,22,22,49,25,25,17,25,14,16,14,24,13,13,10,31/2,10,12,12,24,12,12,8,25/2,8,10,8,14,8,9,7,21/2,7,10,10,19,10,10,7,19/2,6,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,6,5,9,5,5,4,7,5,6,6,11,6,6,4,11/2,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,9/2,3,4,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3 -17,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,6,11/2,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,8,5,5,7/2,5,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,5/2,4,4,4,5/2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,7/2,4,7/2,5,4,6,6,12,13/2,6,9/2,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,6,4,4,4,7,9/2,6,6,11,6,6,4,6,4,5,4,8,9/2,5,4,6,9/2,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,9,6,7,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 -21,11,11,8,12,7,15/2,6,11,6,13/2,5,7,5,7,7,12,6,13/2,5,7,4,11/2,5,8,5,5,4,6,4,13/2,6,13,7,7,5,6,4,9/2,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,4,11/2,5,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,5,7,4,9/2,4,5,3,4,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,2,3,5,3,7/2,2,3,2,3,3,5,3,4,3,5,4,11/2,6,9,5,5,4,6,4,9/2,4,6,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,3,3,6,4,4,4,5,4,6,6,10,6,11/2,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,5,3,4,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,9/2,4,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,3,4,4,6,4,4,4,6,5,7,7,15,8,15/2,5,8,5,6,5,8,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,4,4,6,4,9/2,4,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,15/2,7,12,7,8,6,10,7,9,8,15,9,10,9,15,10,31/2,16,33,17,35/2,12,17,10,23/2,10,17,9,19/2,7,11,7,9,8,17,9,17/2,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,5,4,11/2,6,12,6,13/2,5,6,4,5,4,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,7/2,3,6,4,7/2,3,5,4,9/2,4,8,5,5,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,2,3,2,3,3,6,4,7/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,2,4,3,3,2,4,3,3,3,4,3,7/2,3,6,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,4,3,7/2,3,4,3,5,5,8,5,5,4,4,3,4,3,5,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3 -18,9,9,7,10,6,7,6,9,5,5,4,6,4,6,6,11,6,6,9/2,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,5/2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,11/2,9,6,8,7,13,8,9,8,13,9,13,27/2,28,15,15,10,14,8,10,8,14,8,8,6,9,6,8,7,14,7,7,5,8,5,6,5,9,5,6,4,7,9/2,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,3,5/2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -31,16,16,11,16,9,11,9,31/2,8,8,6,10,7,10,9,19,10,11,8,12,7,9,8,13,8,9,7,11,7,10,10,20,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,15/2,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,15/2,5,6,5,7,5,6,6,8,4,4,3,4,3,4,3,9/2,3,4,3,5,4,5,5,7,4,4,2,2,2,2,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,11/2,4,5,5,8,6,8,7,14,7,7,5,7,4,5,5,17/2,5,6,4,6,4,5,4,8,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,9,5,6,4,6,4,5,5,17/2,5,6,5,9,7,10,11,22,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,5,6,6,19/2,6,7,7,12,8,12,11,18,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,11,9,14,9,13,12,45/2,13,16,14,24,16,24,24,50,26,26,18,26,15,17,14,49/2,13,14,10,16,10,13,12,24,13,13,9,14,9,11,9,16,9,10,7,11,7,10,10,19,10,10,8,12,7,9,7,12,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,7,18,9,9,6,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,5,7,4,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,3,3,2,7/2,2,2,2,4,3,3,3,9,5,5,4,5,4,5,4,7,4,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,3,2,3,3,9/2,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,11/2,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,3,3,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,2,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,11/2,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,13/2,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,15/2,4,5,4,6,4,5,5,7,4,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5 -17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,11/2,10,6,6,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,5/2,4,3,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,3,3,3,2,3,3,4,3,5,4,8,4,4,3,4,3,3,3,5,3,4,5/2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,13/2,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,6,10,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,9,8,13,9,13,13,27,14,14,10,14,8,9,8,14,15/2,8,6,9,6,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,5/2,4,3,3,3,4,3,3,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -18,10,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,11,6,13/2,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,5,3,7/2,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,7/2,3,3,2,2,2,2,2,3,3,6,3,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,7/2,2,4,3,7/2,3,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,4,4,5,3,4,3,4,3,7/2,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,5/2,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,4,2,5/2,2,3,2,3,2,4,2,5/2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,3,3,2,3,3,4,3,5,5,9,5,9/2,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,5/2,2,5,3,4,3,4,3,7/2,3,6,4,4,3,6,4,6,7,13,7,13/2,4,6,4,9/2,4,7,4,4,4,5,4,9/2,4,7,4,4,3,6,4,4,4,6,4,9/2,4,7,5,7,7,11,6,6,5,6,4,11/2,5,8,5,6,5,6,4,6,6,11,6,13/2,6,9,6,15/2,7,14,8,19/2,8,15,10,29/2,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,7,14,8,15/2,6,8,5,7,6,9,5,11/2,4,6,4,6,6,12,6,6,5,7,4,11/2,4,7,4,7/2,3,4,3,7/2,3,5,3,7/2,2,4,3,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,7/2,3,5,4,9/2,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,7,4,7/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,3,3,2,3,3,6,4,7/2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-5/2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,4,2,2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3 -14,8,8,6,8,5,5,9/2,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,7/2,5,5,9,5,5,3,5,3,3,3,4,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,3/2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,7,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -22,12,12,9,13,8,9,7,13,7,8,6,17/2,6,8,7,13,7,8,6,17/2,5,6,6,10,6,6,5,15/2,5,6,6,13,7,7,5,7,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,2,2,2,3,2,2,2,7/2,3,4,5,12,6,6,4,11/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,3,3,6,4,4,2,5/2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,13/2,4,5,5,6,4,4,3,5,3,4,4,8,4,4,4,11/2,4,4,4,6,4,5,4,6,4,6,6,8,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,7/2,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,9/2,3,4,4,5,3,2,2,2,2,2,2,5,3,3,3,4,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,10,5,5,4,6,3,3,3,6,3,3,2,3,3,4,4,5,3,3,2,3,3,4,4,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,7,4,5,4,13/2,5,7,8,15,8,8,6,8,5,5,5,8,5,6,5,7,5,6,6,9,5,6,4,11/2,4,4,4,6,4,5,4,15/2,6,8,8,12,7,7,5,7,4,5,5,9,5,6,5,17/2,6,7,7,14,8,8,6,21/2,7,10,9,16,10,12,10,18,12,17,17,35,18,18,12,18,11,13,11,18,10,10,8,12,8,10,9,17,9,10,7,19/2,6,7,7,12,6,6,5,15/2,6,8,7,15,8,8,6,15/2,5,6,5,7,4,5,4,11/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,3,3,4,3,4,4,13,7,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,5,3,4,3,4,3,4,5,9,5,4,3,4,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,3,4,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,3,4,4,3,2,2,2,2,2,3,3,4,2,2,2,7/2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,3,2,2,2,3,2,3,3,3,2,2,2,7/2,3,4,4,4,3,3,2,7/2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,2,2,2,7/2,2,2,2,5,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,4 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,5/2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,7/2,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,9/2,7,5,6,6,10,6,8,7,12,8,11,11,22,12,12,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,8,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,5/2,4,5/2,3,3,6,7/2,3,3,4,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3 -19,10,10,7,11,7,8,6,11,6,13/2,5,8,5,7,6,12,7,7,5,8,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,9/2,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,4,4,10,6,11/2,4,4,3,4,4,5,3,7/2,3,4,3,7/2,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,5/2,3,5,3,3,2,3,2,7/2,3,5,3,4,3,5,3,4,4,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,7/2,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,5,3,3,3,5,3,5/2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,5,3,7/2,3,4,2,5/2,3,5,3,3,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,4,3,7/2,3,5,4,5,5,9,5,9/2,3,5,3,3,2,5,3,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,6,4,4,3,4,3,7/2,3,6,4,4,4,6,4,13/2,7,12,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,9/2,4,7,4,5,4,6,4,4,4,6,4,9/2,4,7,5,13/2,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,13/2,6,13,7,15/2,6,10,6,8,8,14,8,21/2,9,16,11,31/2,16,31,16,31/2,10,15,9,11,9,15,8,17/2,7,10,6,17/2,8,14,8,15/2,6,8,5,13/2,6,10,6,6,5,8,5,13/2,6,13,7,13/2,4,6,4,9/2,4,6,4,4,3,5,3,3,3,5,3,7/2,2,4,3,4,3,5,3,7/2,2,3,2,7/2,4,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,3,4,4,2,2,3/2,2,2,2,3/2,2,3,2,3,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,7/2,3,5,3,4,3,9,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3 -18,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,5,4,5,5,9,5,4,3,4,3,3,2,4,5/2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,8,6,10,6,8,8,14,8,10,17/2,15,10,15,15,30,15,15,10,15,9,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,5/2,3,5/2,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,5/2,3,2,2,2,5,3,4,3,4,3,4,3,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,5,8,5,6,5,15/2,4,5,4,6,4,4,3,5,3,4,4,7,5,7,7,19,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,19/2,6,6,4,6,4,4,4,6,4,5,4,6,4,5,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,4,4,15/2,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,16,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,25/2,7,7,5,6,4,5,5,8,5,6,5,8,6,9,9,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,5,4,5,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,3,5,3,4,4,6,4,5,5,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,21/2,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,16,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,11,22,11,11,8,11,7,8,8,14,7,7,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,11,11,19,10,10,7,10,6,8,7,12,7,8,7,12,8,12,12,45/2,12,13,10,16,10,14,13,24,14,17,15,26,18,27,27,57,29,29,19,28,16,19,16,28,15,16,12,19,12,15,13,24,13,13,10,15,9,11,10,18,10,11,9,14,9,12,11,21,11,10,7,10,6,8,7,11,6,7,5,8,5,5,5,8,5,5,3,4,3,3,3,6,4,4,4,7,5,7,6,18,9,9,6,8,5,6,5,8,5,5,4,5,4,6,6,19/2,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,13/2,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,5,7,7,3,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,16,8,8,6,9,5,6,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,10,6,6,5,7,4,5,4,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6 -18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,6,11,6,6,9/2,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,7,10,13/2,8,7,13,7,7,11/2,8,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,7,6,11,6,13/2,5,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,4,9/2,4,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,3,6,4,7/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,3,4,4,9,5,9/2,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,4,11/2,6,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,3,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,1/2,0,0,0,0,1,2,2,3/2,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,4,3,5,4,9/2,5,9,5,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,4,6,4,5,5,12,6,6,4,7,4,5,4,7,4,4,3,4,3,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,6,6,10,6,11/2,4,6,4,5,4,8,5,11/2,4,7,5,7,7,12,7,7,6,10,6,17/2,8,13,8,19/2,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,13/2,6,12,6,13/2,5,6,4,5,4,6,4,4,3,5,3,4,4,4,3,7/2,2,2,2,2,2,5,3,3,3,4,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,3,2,7/2,4,4,3,7/2,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,7,4,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-5,-2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,2,2,5/2,2,2,2,3,3,9,5,9/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4 -14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,4,5/2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,2,3/2,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,6,4,4,3,4,3,4,9/2,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3 -21,11,10,7,10,6,7,6,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,15/2,5,6,5,7,4,4,3,4,3,4,3,4,3,3,2,7/2,2,3,2,4,3,4,4,11/2,4,5,5,13,7,7,5,6,4,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,7/2,2,3,2,5,3,4,3,7/2,3,4,4,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,9/2,3,4,4,9,5,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,4,3,4,4,7,4,4,3,5,3,3,2,5,3,4,3,7/2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,3,2,3,2,7/2,2,3,3,0,0,0,0,0,0,0,0,1,1,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,6,4,4,4,11/2,4,5,5,8,5,5,3,4,3,3,3,5,3,2,2,5/2,2,3,3,7,4,4,3,3,2,3,2,3,2,3,3,11/2,4,4,4,3,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,11/2,4,5,5,13,7,7,5,15/2,4,5,5,7,4,4,3,5,4,5,5,9,5,6,4,11/2,4,4,4,9,5,6,4,13/2,5,7,7,12,7,7,5,15/2,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,21/2,7,9,9,16,9,11,10,17,12,17,17,34,17,17,12,17,10,11,9,17,9,10,8,23/2,8,10,9,15,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,11,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,4,3,9/2,4,5,5,8,5,5,4,9/2,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3/2,2,3,3,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-1,0,0,0,1/2,1,1,1,-6,-2,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,7/2,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,4,10,5,5,4,9/2,3,3,2,5,3,2,2,2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,3,2,7/2,3,4,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,7/2,2,2,2,4,3,4,3,9/2,3,3,3,5 -13,7,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,5,7/2,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,11/2,9,5,5,4,6,7/2,4,4,6,4,4,3,5,7/2,5,9/2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -16,8,8,6,7,4,11/2,5,8,5,5,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,4,3,3,3,4,3,4,4,11,6,11/2,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,8,4,4,3,5,3,4,4,5,3,7/2,3,4,3,7/2,4,4,3,7/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,7/2,3,3,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,7/2,3,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,3,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,5,3,7/2,4,6,4,4,3,6,4,11/2,5,10,6,13/2,4,7,4,5,5,8,5,11/2,4,7,5,13/2,6,10,6,13/2,5,8,5,7,7,12,7,9,8,13,9,27/2,13,26,14,14,9,13,8,9,7,12,7,7,6,9,6,15/2,7,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,5,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,8,4,9/2,4,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,2,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,-2,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,4,3,3,3,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,5/2,2,2,2,3/2,1,1,1,1/2,0,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,5/2,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -14,7,7,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,5/2,3,7/2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,9/2,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,6,7/2,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 -24,12,12,8,12,7,8,7,11,6,7,6,9,6,8,7,15,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,8,5,5,4,13/2,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,9/2,4,5,5,8,6,8,8,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,7,4,4,3,5,4,5,5,19/2,6,6,5,9,6,8,8,14,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,2,2,2,7/2,2,2,2,4,3,4,4,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,11/2,4,4,4,6,4,6,5,6,3,3,3,4,3,4,4,11/2,4,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,6,16,9,9,7,10,6,7,6,9,5,6,5,7,5,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,6,8,8,19,10,10,7,10,6,8,7,25/2,8,9,7,12,8,11,11,18,10,10,8,12,8,10,10,39/2,12,14,12,21,14,21,21,42,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,17,9,10,8,12,7,9,8,27/2,8,8,6,10,7,9,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,12,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,3,3,4,4,11/2,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,6,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,11,6,6,4,6,4,5,4,13/2,4,4,3,4,3,4,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,6,3,3,3,4,2,2,2,5/2,2,2,1,1,1,1,2,-1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,1,1,3/2,2,2,1,1,1,1,2,4,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,1,1,1/2,0,0,0,0,1,1,2,7,4,4,3,4,2,2,2,7/2,2,2,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,9,5,6,4,6,4,4,3,5,3,3,2,3,2,3,4,8,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,9/2,2,2,2,2,1,1,1,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,5,5,8 -13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,4,7/2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,9/2,5,4,7,5,7,13/2,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,11/2,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,5/2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5 -15,8,8,6,8,5,6,5,8,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,6,4,9/2,4,6,4,11/2,6,10,6,6,4,5,3,7/2,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,6,6,11,6,6,4,6,4,4,4,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,5,3,4,3,5,3,3,3,4,3,3,3,3,3,4,4,6,4,5,4,6,4,11/2,6,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,3,2,5,3,4,3,4,2,2,2,3,2,3/2,2,2,2,5/2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,3,9/2,4,6,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,4,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,5,3,4,3,3,2,3,3,4,2,2,2,4,3,9/2,4,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,13/2,5,6,4,11/2,5,8,5,11/2,4,8,6,8,7,12,7,7,6,9,6,15/2,7,13,8,9,8,14,10,27/2,14,26,14,27/2,9,13,8,17/2,7,13,7,7,6,8,6,8,7,12,6,6,5,8,5,5,5,9,5,5,4,7,4,11/2,5,10,5,5,4,5,3,3,3,6,4,7/2,3,4,3,4,4,7,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,5/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,4,4,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,3,3,7,4,9/2,3,4,3,7/2,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,7/2,4,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,4,2,2,2,2,1,1,1,3,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,3/2,2,2,2,3/2,2,3,2,3,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6 -13,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,7/2,5,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,11/2,6,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,21,11,11,15/2,11,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,7/2,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,2,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6 -22,11,11,8,21/2,6,8,6,11,6,7,5,15/2,5,6,5,10,6,6,4,13/2,4,6,5,8,5,6,5,9,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,6,4,5,4,7,5,7,8,15,8,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,6,4,11/2,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,3,3,5,3,3,2,3,3,4,4,7,4,4,4,11/2,4,4,4,12,7,8,6,17/2,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,11/2,4,4,3,7,4,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,7,4,5,4,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,3,6,4,4,3,9/2,3,4,3,5,3,3,3,4,3,5,5,0,0,0,1,3/2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,5/2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,5,4,6,6,8,5,5,4,11/2,4,4,3,5,3,3,2,3,2,3,4,5,3,3,2,3,2,2,2,6,4,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,3,2,7/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,3,3,5,4,5,6,13,7,7,5,8,5,5,4,6,4,4,4,13/2,4,6,6,12,6,6,5,15/2,5,6,6,10,6,6,6,19/2,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,37/2,10,12,10,18,10,10,7,11,7,10,10,17,9,9,6,17/2,5,6,6,12,7,8,6,17/2,6,8,7,13,7,7,5,13/2,4,5,4,7,4,5,4,11/2,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,11/2,4,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,7/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,9/2,4,5,5,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,3,3,9,5,6,4,11/2,4,4,4,6,4,4,3,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,4,-1,0,0,1,1,1,1,1,0,1,1,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,4,4,6,4,6,6,11 -15,8,8,5,8,9/2,6,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,2,2,2,3,2,3,5/2,3,3,4,7/2,5,3,4,3,4,5/2,3,3,4,3,3,5/2,3,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,8,5,5,4,6,7/2,4,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,3,4,3,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,5/2,4,7/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,5/2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,4,5,7/2,4,4,7,4,4,4,7,9/2,6,6,11,6,6,4,7,4,5,4,7,4,5,4,7,5,7,13/2,11,6,7,11/2,8,11/2,7,7,12,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,7/2,6,7/2,4,3,4,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,3,4,3,5,5,8 -22,11,21/2,7,11,6,15/2,6,10,6,11/2,4,6,4,11/2,5,10,6,11/2,4,6,4,5,5,8,5,11/2,5,8,5,7,7,12,6,13/2,5,7,4,9/2,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,9/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,3,3,4,3,3,3,4,3,9/2,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,7,4,4,3,5,3,4,4,12,7,7,5,8,4,9/2,4,7,4,4,3,5,3,4,4,5,3,7/2,3,5,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,6,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,3,3,2,2,2,2,3,7,4,9/2,4,4,3,3,3,5,3,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,7/2,4,6,4,7/2,3,4,3,4,4,6,4,5,4,6,4,13/2,7,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,4,3,7/2,3,5,3,4,3,5,4,9/2,4,7,4,9/2,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,5,3,4,4,5,3,7/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,5,4,6,4,6,6,11,6,13/2,5,7,5,6,6,10,6,13/2,6,10,6,17/2,8,16,8,8,6,10,6,15/2,6,11,6,15/2,6,10,7,10,9,16,9,10,8,12,8,21/2,10,17,10,23/2,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,6,10,6,6,5,7,5,13/2,6,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,9,5,5,3,5,3,7/2,3,5,3,7/2,4,6,4,6,5,9,5,5,4,6,4,9/2,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,7/2,4,8,4,9/2,4,5,3,3,3,5,3,3,3,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,0,1,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-4,-4,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,4,4,-1,0,1,1,1,1,1,1,0,1,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,3,5,3,4,4,6,5,7,7,12 -21,11,10,7,11,6,7,6,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,9/2,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,9/2,8,4,4,7/2,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,4,8,5,5,4,7,5,7,7,12,6,6,5,6,4,4,4,7,4,4,7/2,5,3,4,4,6,3,3,5/2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,9/2,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,11/2,9,6,8,8,16,17/2,9,6,10,6,8,13/2,11,6,7,6,10,7,10,9,17,9,10,8,12,8,10,19/2,17,10,12,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,9,9,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,12 -41,21,22,15,23,14,17,14,25,13,14,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,12,8,12,12,45/2,12,12,9,13,8,10,9,16,9,9,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,14,10,14,13,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,7,6,9,5,5,4,7,5,7,8,29/2,8,8,6,9,5,6,6,10,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,7,6,9,6,7,7,13,7,8,7,11,8,12,12,22,12,12,8,12,7,8,6,10,6,6,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,5,13,7,7,5,8,5,6,5,8,5,5,3,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,6,5,8,6,8,8,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,11,8,12,12,12,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,7,7,27/2,8,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,10,21,11,11,7,10,6,7,7,12,7,8,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,9,15,10,15,16,31,16,16,11,17,10,13,12,22,12,14,12,20,13,18,18,35,18,19,14,23,14,18,17,32,18,21,18,32,22,33,33,67,34,34,22,32,18,21,18,32,17,18,13,20,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,12,22,12,12,9,13,8,9,8,14,8,8,6,10,7,10,10,19,10,10,7,11,7,9,8,15,9,10,8,12,8,11,10,17,9,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,6,5,7,7,25/2,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,2,2,2,1,1,1,2,2,4,3,3,3,5,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,9,9,14,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,7,5,6,5,8,5,7,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,24 -21,11,12,8,12,7,9,8,13,7,8,6,9,6,8,15/2,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,6,6,5,7,9/2,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,12,13/2,6,4,6,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,5,7,7,7,4,4,3,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,17,10,11,10,17,12,17,17,34,18,18,12,17,10,11,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,6,11/2,9,11/2,6,5,7,5,7,6,12,6,6,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,8,4,4,3,5,3,3,3,4,5/2,3,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,6,4,6,7,13 -22,12,23/2,8,12,7,17/2,8,13,7,15/2,6,9,6,8,8,13,7,15/2,6,9,5,11/2,5,9,5,5,4,7,5,13/2,6,12,6,6,4,7,4,11/2,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,5/2,2,4,3,4,4,13,7,6,4,6,4,5,4,6,4,9/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,6,4,9/2,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,7/2,4,5,3,4,4,7,5,7,7,7,4,4,3,6,4,4,4,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,4,6,4,5,4,7,4,9/2,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,16,9,9,7,9,6,15/2,7,12,7,8,7,11,7,10,10,19,10,21/2,8,12,8,21/2,10,17,10,11,10,17,12,35/2,18,34,18,18,12,17,10,11,10,17,9,9,7,10,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,7,5,7,6,12,6,13/2,5,7,5,6,5,8,5,5,4,6,4,11/2,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,4,7/2,3,3,2,5/2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,4,3,5,3,4,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-2,-4,-2,-7/2,-4,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,3,2,3,2,7/2,4,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,1,3/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,4,5,5,7,4,9/2,4,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,13/2,7,13 -15,8,8,6,8,5,6,11/2,9,5,5,4,7,9/2,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,7/2,5,5,9,5,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,7/2,5,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,5/2,4,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9 -22,12,12,8,25/2,8,9,8,12,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,6,6,14,7,7,5,15/2,5,6,5,8,5,6,4,13/2,4,5,5,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,4,13,7,7,5,7,4,5,5,6,4,4,4,6,4,4,4,6,4,4,4,11/2,4,4,4,6,4,4,4,13/2,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,9/2,3,4,3,5,3,4,3,7/2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,4,3,2,2,2,2,2,2,1,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,2,4,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,4,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,3,3,8,5,5,3,4,3,3,3,6,4,5,5,8,6,8,8,7,4,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,9/2,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,4,6,4,4,4,13/2,4,6,6,14,7,7,5,13/2,4,6,5,6,4,4,4,6,4,6,5,9,5,6,4,13/2,4,6,6,9,5,6,6,19/2,6,9,9,17,9,9,7,11,7,9,8,13,7,8,6,21/2,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,35,18,18,12,18,11,13,11,18,10,10,8,23/2,8,10,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,12,6,6,4,13/2,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,3,3,2,7/2,3,4,3,6,3,3,2,3,2,3,2,4,2,2,2,3,3,4,4,6,4,4,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,4,5,4,9,5,6,4,11/2,4,4,3,4,3,3,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,3/2,2,2,1,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,1/2,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,9/2,4,5,5,9,5,6,4,13/2,4,5,5,8,5,6,5,15/2,5,7,7,13 -13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,5,3,4,7/2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,5,7/2,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,6,7/2,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,10,6,6,5,7,9/2,6,5,8,5,5,4,6,9/2,6,6,12,7,7,5,8,5,7,6,11,13/2,8,6,10,7,10,10,20,11,11,15/2,11,7,8,6,11,6,6,5,7,5,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,5/2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8 -17,9,9,7,10,6,13/2,6,8,5,5,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,9/2,5,9,5,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,6,4,7/2,2,4,3,7/2,3,5,4,9/2,4,7,5,6,6,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,7,4,3,2,4,3,3,3,3,2,3,2,4,3,4,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,4,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,7,7,13,7,15/2,6,8,5,13/2,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,19/2,8,13,9,25/2,12,25,13,13,9,13,8,9,7,13,7,7,5,8,5,7,7,11,6,13/2,5,6,4,9/2,4,7,4,5,4,5,4,5,5,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,9/2,5,9,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,5,5,8,5,5,4,5,3,7/2,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,3,3,4,3,7/2,3,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,1,3/2,1,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,4,3,4,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10 -15,8,8,6,8,5,6,5,8,5,5,4,7,9/2,6,11/2,9,5,5,4,5,3,4,7/2,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,4,4,4,6,9/2,6,6,12,13/2,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,13/2,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8 -26,14,14,10,14,8,10,8,27/2,8,8,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,10,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,7,5,8,8,14,8,8,6,9,5,6,5,17/2,5,6,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,6,5,15/2,4,4,3,4,3,5,5,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,3,4,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,1,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,4,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,1,1,1,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,4,5,4,9,5,5,4,6,4,5,5,17/2,5,6,5,9,6,8,8,8,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,10,6,6,4,6,4,4,3,9/2,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,21,11,12,8,12,8,10,9,16,9,10,8,12,8,12,11,20,11,12,9,13,9,12,12,22,12,14,11,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,13,9,12,11,16,9,9,7,10,6,8,6,21/2,6,7,5,8,6,8,8,15,8,9,6,9,5,6,6,19/2,6,6,5,9,6,7,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,6,4,4,4,13/2,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,3,3,3,4,3,4,4,13/2,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,4,4,5,3,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1,1,1,2,3,2,3,2,7/2,2,3,3,4,3,3,3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,5,5,17/2,5,5,4,7,5,7,7,14 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,7,4,4,7/2,5,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,5,5,7/2,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,12,13/2,7,5,7,5,6,5,9,5,6,9/2,7,5,7,6,11,6,7,5,7,5,7,7,12,7,8,13/2,11,15/2,11,11,20,11,11,15/2,11,6,7,6,11,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8 -16,9,9,6,8,5,11/2,5,8,5,11/2,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,5,3,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,6,4,4,3,6,4,4,3,4,3,7/2,4,5,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,6,4,4,3,5,3,7/2,3,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,9/2,4,6,4,6,6,6,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,11/2,4,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,6,4,4,3,6,4,13/2,6,13,7,7,5,8,5,13/2,6,9,5,11/2,4,7,5,7,7,12,7,7,6,8,6,15/2,8,14,8,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,6,4,5,4,7,4,5,4,6,4,11/2,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,2,2,3,3,4,2,5/2,2,4,3,4,4,8,4,4,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,3,2,3/2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,7,4,4,3,2,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,2,2,2,3,3,3,2,2,2,3,2,5/2,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,9/2,4,8 -12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,9/2,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,9/2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,7/2,5,5,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,5,5,7,4,4,7/2,6,4,5,5,10,6,6,5,7,5,6,6,11,13/2,7,6,10,7,10,10,18,19/2,10,7,10,6,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,7/2,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 -20,10,10,7,11,7,8,6,10,6,7,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,7,7,6,4,4,4,11/2,4,4,4,7,4,5,4,6,4,5,5,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,10,6,6,4,13/2,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,4,2,5/2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,3,9/2,3,4,4,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,4,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,4,2,2,2,5/2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,1/2,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,3,2,2,2,3,2,2,2,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,15/2,5,6,6,9,5,5,4,5,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,4,9/2,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,4,11/2,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,5,8,5,5,4,7,5,8,8,17,9,9,7,21/2,6,8,7,11,6,6,5,17/2,6,8,8,16,9,10,7,11,7,10,10,19,11,12,10,33/2,11,16,16,29,15,15,10,31/2,9,11,9,16,9,9,7,21/2,7,9,8,14,8,8,6,8,5,6,5,9,5,6,5,17/2,6,7,7,14,7,7,5,7,4,5,4,7,4,5,4,15/2,5,6,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,11/2,4,5,5,6,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,11/2,4,5,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,7/2,2,3,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,8,4,4,3,7/2,2,3,2,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,11/2,4,4,4,7,4,5,4,13/2,4,6,6,11 -13,7,7,5,7,9/2,5,4,7,4,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,5,3,3,3,5,7/2,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,5/2,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,5/2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,2,5/2,4,3,4,4,7,4,4,3,3,2,3,3,4,5/2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,9/2,6,5,8,9/2,5,4,6,4,6,6,11,6,7,5,8,5,7,7,12,7,8,13/2,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,9/2,8 -18,10,19/2,7,10,6,13/2,6,9,5,11/2,4,6,4,13/2,6,12,6,13/2,4,6,4,4,4,7,4,4,4,6,4,6,6,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,5,3,7/2,3,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,4,4,7,4,9/2,4,5,3,4,4,7,4,7/2,3,4,3,4,4,6,4,9/2,4,5,4,5,5,6,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,5/2,3,5,3,7/2,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,0,0,0,0,0,0,4,3,3,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,9/2,4,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,5/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,1,1,1,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,13/2,6,8,5,5,4,5,3,4,4,6,4,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,7/2,4,6,4,5,5,9,5,5,4,4,3,4,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,6,6,13,7,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,7,5,7,7,15,8,17/2,6,10,6,15/2,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,19/2,9,16,9,11,9,15,10,14,14,25,13,27/2,9,13,8,10,8,14,8,8,6,10,6,17/2,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,13/2,4,6,4,9/2,4,7,4,9/2,4,6,4,11/2,5,9,5,9/2,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,13/2,4,6,4,5,4,7,4,9/2,4,5,3,4,4,7,4,5,4,6,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,3,5,3,7/2,3,4,3,9/2,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,1,3,2,1,1,1,1,1/2,1,1,1,1/2,1,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,3,7,4,7/2,3,4,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,4,3,4,3,4,4,6,4,9/2,4,7,5,7,6,11 -18,10,10,7,10,6,6,11/2,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,5,7,4,4,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,1/2,0,0,0,0,0,0,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,2,1,2,2,2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,13/2,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,15,8,8,6,9,6,7,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,10,9,16,9,11,9,14,10,14,14,24,13,13,9,13,8,9,8,13,15/2,8,6,9,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,7/2,5,7/2,5,9/2,8,9/2,5,4,6,4,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1/2,0,1/2,0,1,3,2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11 -34,18,18,12,17,10,13,11,20,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,8,9,7,11,7,10,10,11,6,7,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,5,9,6,7,7,13,7,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,5,3,4,3,3,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,25/2,7,8,6,8,5,7,7,12,7,8,6,9,7,10,10,11,6,6,4,6,4,6,5,9,5,6,5,8,5,6,6,19/2,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3/2,1,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,8,4,4,3,5,3,3,2,3,2,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,15,8,9,6,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,15,8,9,6,9,6,8,7,13,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,7,8,6,10,7,11,11,23,12,12,8,11,6,7,6,11,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,11,7,8,7,12,8,12,13,29,15,16,12,18,11,13,11,20,11,12,10,17,11,16,15,57/2,15,16,12,18,12,16,15,29,16,18,15,26,18,27,27,47,24,24,16,23,13,16,13,23,13,14,11,18,11,15,14,53/2,14,14,10,14,9,11,10,18,10,11,9,15,10,13,13,22,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,9,7,10,6,8,8,15,8,9,7,12,9,13,13,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,7,10,10,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,6,10,7,9,9,19,10,11,8,11,7,8,7,12,7,7,5,8,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,-1,-7/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,3,2,2,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,4,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5/2,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,4,4,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,21/2,6,6,4,6,4,6,6,11,7,8,7,11,8,11,11,21 -18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,1,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,15,8,9,7,10,6,7,6,11,6,7,6,9,6,9,17/2,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,15/2,9,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,9/2,5,9/2,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,2,2,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,3/2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,13/2,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,11/2,5,6,4,7/2,3,4,2,5/2,2,4,3,3,3,3,2,7/2,4,6,4,7/2,3,5,3,3,3,5,3,7/2,3,4,3,9/2,4,10,6,11/2,4,6,4,7/2,3,4,3,7/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,12,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,5,5,7,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,6,3,3,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,3,3,3,2,7/2,4,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,7/2,3,3,2,3,3,6,4,4,3,5,4,9/2,4,7,4,4,4,7,5,7,7,9,5,5,4,6,4,4,3,6,3,3,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,4,9/2,4,7,4,9/2,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,9/2,4,6,4,6,6,14,8,15/2,5,7,4,5,5,7,4,5,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,5,4,8,6,8,8,15,8,9,7,10,6,7,6,11,6,7,6,10,7,19/2,9,16,9,9,7,10,7,9,9,16,9,11,9,15,10,29/2,15,26,14,14,10,14,8,19/2,8,13,8,17/2,7,11,7,9,9,16,8,8,6,8,5,6,6,11,6,13/2,6,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,9/2,4,8,5,11/2,4,6,4,11/2,5,8,5,5,4,7,5,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,3,3,7,4,4,3,4,3,7/2,4,5,3,7/2,4,6,4,6,6,10,6,11/2,4,7,4,9/2,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,3,2,2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,3/2,1,2,2,3/2,2,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,3,2,2,2,2,2,3/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,1,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,2,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,3,2,3,2,5/2,3,6,3,3,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,7,4,9/2,4,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,12 -13,7,7,5,7,9/2,6,5,8,9/2,5,4,6,4,5,5,8,4,4,3,5,3,4,7/2,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,3,4,7/2,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,7/2,5,3,3,5/2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,7/2,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,7/2,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,7/2,4,7/2,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,3,2,3,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,7/2,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,5/2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,5,5,9 -20,10,10,7,21/2,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,15/2,5,6,5,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,4,4,11/2,4,4,3,6,4,4,3,9/2,4,5,5,12,6,6,4,11/2,3,3,3,4,3,4,4,11/2,4,5,5,8,4,4,3,5,3,4,4,4,3,3,3,9/2,3,4,4,6,3,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,9/2,3,4,4,6,4,5,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,9/2,4,5,5,4,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,3,2,3,3,4,3,4,4,3,2,2,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,5/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,1,1,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,3,4,4,5,3,4,3,5,4,5,5,6,4,4,4,13/2,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,11/2,4,5,4,8,5,5,4,9/2,3,4,4,8,5,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,5,4,15/2,5,7,7,10,6,6,4,13/2,4,6,5,8,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,5,10,6,6,4,13/2,4,5,5,9,5,6,5,17/2,6,9,9,17,9,10,7,21/2,6,8,7,12,7,8,7,23/2,8,10,10,18,10,10,8,13,8,10,10,18,10,12,10,33/2,12,17,17,30,16,16,11,16,9,11,9,16,9,9,7,12,8,11,10,18,9,9,6,19/2,6,8,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,15/2,5,6,6,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,13/2,4,6,6,10,5,5,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,8,5,5,4,6,4,5,5,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,11/2,4,4,3,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,2,5/2,2,3,3,1,1,1,1,3/2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,1,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,3,2,2,1,1/2,0,0,0,2,2,2,1,1/2,0,0,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,1,0,0,0,0,1/2,0,0,0,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,7,4,4,3,9/2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,4,11/2,4,4,4,5,3,4,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,6,4,13/2,5,7,7,13 -12,6,6,5,7,4,5,9/2,7,4,4,4,6,4,4,9/2,8,4,4,3,5,3,4,7/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,3,3,4,3,3,2,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,6,7/2,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,5,8,5,5,9/2,8,5,6,6,11,6,6,5,8,5,6,6,11,13/2,8,6,10,15/2,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,7/2,4,3,4,3,4,4,6,7/2,4,3,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,9 -16,8,8,6,10,6,7,6,10,6,11/2,4,7,4,11/2,6,10,6,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,7/2,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,9/2,3,4,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,11,6,6,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,9/2,4,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,7/2,2,4,2,5/2,2,5,3,3,3,3,2,7/2,4,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,1,6,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3,4,3,2,2,2,2,2,3/2,1,2,1,1,1,0,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,5,3,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,1,2,5/2,2,3,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,2,5/2,2,4,2,5/2,2,2,2,7/2,4,4,3,3,3,4,3,4,4,5,3,7/2,4,6,4,6,6,12,7,7,5,7,4,9/2,4,6,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,3,6,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,11/2,5,9,5,11/2,4,6,4,4,4,7,4,5,4,6,4,13/2,7,15,8,15/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,7,6,10,6,17/2,8,15,8,17/2,6,11,7,17/2,8,14,8,10,8,14,10,14,14,24,12,12,9,13,8,9,7,14,8,8,6,9,6,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,14,8,15/2,5,7,4,5,5,8,4,9/2,4,5,3,4,4,8,4,9/2,4,5,4,5,5,7,4,5,4,8,6,8,8,12,6,13/2,5,7,4,5,4,7,4,9/2,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,4,3,6,4,5,5,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,9/2,4,7,5,7,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,1,1,1,3,2,2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,4,2,5/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,1,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,2,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,-1,0,0,1,0,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,7,4,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12 -15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,4,2,2,2,4,3,3,5/2,3,5/2,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,7/2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,9,5,5,4,5,7/2,4,4,6,4,5,4,6,4,6,13/2,14,8,8,5,7,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,6,4,5,9/2,7,5,7,7,12,7,7,11/2,8,5,6,6,10,6,7,6,9,6,8,8,14,15/2,8,6,10,6,8,15/2,13,8,9,8,13,9,13,13,22,11,11,8,12,7,9,7,12,7,8,6,9,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,9/2,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,8,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,7,5,7,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,3/2,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 -27,14,14,10,14,8,10,9,31/2,8,8,6,10,7,9,8,16,8,8,6,9,6,7,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,6,8,4,4,3,4,3,4,4,11/2,4,4,4,6,5,7,7,14,7,7,5,6,4,4,4,11/2,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,3,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,15/2,4,5,5,8,6,8,7,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,9,5,4,3,4,3,3,3,9/2,2,2,2,3,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,6,4,6,6,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,2,2,5/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5/2,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,11/2,4,4,3,4,3,5,5,6,4,5,4,6,4,6,5,17/2,5,6,5,9,6,9,9,22,12,12,8,12,7,8,6,21/2,6,7,5,8,5,7,7,13,7,6,4,6,4,5,5,8,5,6,5,7,5,8,8,16,9,9,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,10,6,7,6,21/2,6,8,7,12,8,12,12,26,13,13,9,14,8,10,8,27/2,8,8,6,10,6,7,7,12,7,7,5,8,5,6,6,23/2,7,8,7,12,8,12,13,23,12,12,9,14,8,10,10,35/2,10,10,8,14,10,14,14,25,13,14,11,17,11,15,14,25,14,17,14,24,16,24,24,42,22,22,15,21,12,14,12,45/2,12,14,11,18,11,15,14,25,13,13,9,12,7,9,8,27/2,8,9,7,12,8,11,11,23,12,12,8,12,7,9,8,25/2,6,6,5,7,5,6,6,14,8,9,7,10,6,8,7,13,8,9,7,12,9,13,13,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,9,7,10,6,7,6,21/2,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,17/2,5,6,4,6,4,6,6,15,8,9,7,10,6,8,7,25/2,8,9,7,12,8,11,11,16,9,9,7,10,6,7,6,21/2,6,6,5,7,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,6,3,3,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,0,0,0,0,0,0,1/2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,8,6,9,6,7,6,23/2,7,8,6,10,7,11,11,20 -15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,10,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,9/2,5,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,13/2,8,8,14,8,10,8,14,19/2,14,14,24,13,13,9,12,7,8,7,13,7,8,13/2,10,7,9,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,13/2,13,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,9/2,8,5,5,4,7,5,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,7/2,6,7/2,4,3,4,3,4,4,8,5,5,4,6,4,5,9/2,8,5,6,9/2,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,4,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,3/2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,7/2,4,4,7,4,5,4,6,4,6,6,11 -18,10,10,7,10,6,7,6,10,6,6,5,7,5,13/2,6,11,6,11/2,4,6,4,4,4,6,4,9/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,9,5,9/2,3,4,3,3,3,3,2,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,7/2,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,4,9/2,4,5,3,7/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,5,3,4,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,5,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,3,2,3,3,4,3,7/2,4,6,4,9/2,4,6,5,7,7,14,8,15/2,6,8,5,11/2,5,8,5,11/2,4,6,4,5,5,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,11,6,6,4,7,4,11/2,5,8,5,11/2,5,8,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,8,5,5,5,8,6,17/2,8,16,8,8,6,10,6,15/2,6,12,7,15/2,6,10,7,9,9,16,9,9,7,12,8,19/2,9,16,10,23/2,10,16,11,16,16,29,15,15,10,15,9,21/2,9,15,8,19/2,8,12,8,10,9,17,9,17/2,6,9,6,13/2,6,10,6,6,5,8,6,15/2,8,15,8,9,6,8,5,11/2,5,8,4,9/2,4,6,4,11/2,5,9,5,11/2,4,7,4,11/2,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,5,4,6,4,11/2,5,10,6,6,5,6,4,5,5,7,4,5,4,6,4,11/2,6,11,6,6,4,6,4,5,4,7,4,9/2,4,5,4,9/2,4,9,5,6,5,6,4,11/2,5,9,6,13/2,5,8,6,8,8,10,6,11/2,4,6,4,9/2,4,7,4,9/2,4,4,3,3,3,5,3,3,2,3,2,3,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,5,3,5/2,2,3,2,3/2,1,2,1,1/2,0,1,1,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,9/2,4,8,5,5,4,6,4,5,5,8,5,11/2,4,7,5,7,7,12 -15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,2,3,3,3,2,3,2,2,2,2,2,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,3,4,4,3,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,4,3,5,4,6,6,12,13/2,6,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,6,10,6,6,9/2,6,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,8,11/2,7,7,13,7,8,6,10,6,8,8,13,8,10,8,13,9,13,13,24,13,13,9,12,7,9,8,13,7,8,6,10,6,8,8,14,15/2,8,5,8,5,6,5,8,5,5,4,7,5,6,13/2,12,7,7,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,5,4,6,4,4,4,8,9/2,5,9/2,8,11/2,8,8,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,9/2,5,4,5,4,5,9/2,8,5,6,9/2,7,5,7,7,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,5/2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,5/2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,6,10 -25,13,13,9,27/2,8,10,8,14,8,9,7,10,7,9,8,15,8,9,6,19/2,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,5,4,6,6,9,5,4,3,9/2,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,4,3,4,3,5,4,5,4,8,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,3,3,17,9,8,6,17/2,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,5,3,3,2,7/2,3,4,4,8,5,5,4,5,3,4,4,8,5,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,6,4,4,3,7/2,2,3,3,4,2,2,2,7/2,2,3,3,5,3,3,3,5,3,4,4,4,3,4,4,7,5,8,8,5,3,3,2,2,2,2,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,5,3,3,2,2,2,2,2,5/2,2,2,2,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,4,3,9/2,3,4,4,8,5,6,5,8,6,8,9,21,11,12,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,8,23/2,7,8,7,12,7,7,6,17/2,6,8,8,16,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,12,22,12,12,8,25/2,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,33/2,10,14,13,22,13,15,13,45/2,16,23,23,42,22,22,15,43/2,12,15,13,22,12,14,10,33/2,10,14,13,23,12,13,9,13,8,10,8,14,8,9,7,11,8,11,11,21,11,12,8,12,7,8,6,10,6,7,5,8,5,7,7,12,7,7,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,12,8,12,7,8,7,12,7,8,6,19/2,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,8,8,16,8,8,6,8,5,6,6,10,6,7,6,17/2,6,8,7,13,7,8,6,9,6,7,7,14,8,9,7,12,8,11,11,14,8,8,6,9,5,6,5,10,6,6,4,13/2,4,4,4,7,4,5,4,11/2,4,4,3,5,3,4,3,7/2,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,3,2,1,1,1,1,1,1,1/2,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,6,3,3,2,3,2,2,1,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,-4,-1,-1,0,-1/2,0,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,4,5,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,17/2,6,8,9,17 -17,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,7/2,4,3,4,3,3,3,4,3,4,4,6,3,3,2,4,5/2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,5/2,3,2,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,5,7/2,5,9/2,6,4,4,3,4,5/2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,5,4,6,5,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,7/2,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,11/2,6,11/2,9,5,6,4,7,9/2,6,6,10,11/2,6,4,6,4,5,5,8,9/2,5,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,11/2,9,6,8,8,15,8,9,7,11,7,9,9,15,9,10,9,15,11,16,31/2,28,15,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,17/2,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,15/2,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,9/2,6,5,9,5,6,11/2,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,9/2,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,4,7,4,5,5,9,11/2,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-2,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,5/2,4,3,4,4,7,4,4,7/2,6,4,5,4,7,4,4,4,6,4,6,6,12 -24,12,12,9,14,8,19/2,8,14,8,17/2,6,10,7,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,7,5,8,5,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,11/2,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,17,9,9,6,8,5,6,5,10,6,11/2,4,7,4,11/2,5,9,5,11/2,4,6,4,5,4,8,4,9/2,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,4,4,7,4,5,4,6,4,6,6,9,5,11/2,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,4,7,5,15/2,7,4,2,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,3,2,3,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,7,5,6,5,7,6,17/2,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,13/2,5,7,4,11/2,5,10,6,7,6,9,6,19/2,10,19,10,10,7,12,7,8,7,11,6,7,5,8,6,8,8,15,8,17/2,6,9,6,7,7,13,7,8,7,12,8,25/2,12,25,13,13,9,14,8,9,8,13,7,8,6,10,6,17/2,8,15,8,8,6,9,6,15/2,7,11,6,15/2,7,12,8,23/2,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,12,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,45/2,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,27/2,13,23,12,25/2,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,21/2,8,11,6,7,6,10,6,13/2,5,8,5,7,7,12,7,15/2,6,10,6,15/2,7,12,7,17/2,8,12,8,25/2,12,24,12,12,9,13,8,17/2,8,13,7,8,6,9,6,8,8,13,7,15/2,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,13/2,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,15/2,7,13,8,9,7,11,8,21/2,11,14,8,17/2,6,8,5,5,5,9,5,5,4,6,4,4,4,8,4,9/2,4,5,3,7/2,3,5,3,7/2,3,4,3,3,3,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,7/2,4,7,4,7/2,2,4,2,3/2,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,5,3,5/2,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,0,0,-1,0,1/2,1,0,0,0,1,1,1,2,2,3,2,3/2,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,9/2,5,10,6,11/2,4,5,4,9/2,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,13/2,6,10,6,13/2,5,8,6,9,9,17 -24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,8,14,8,8,6,8,5,6,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,16,9,9,6,9,5,6,5,9,5,6,4,7,9/2,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,7/2,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,11/2,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,7,5,7,7,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,9/2,5,5,7,11/2,8,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,11/2,9,6,8,8,15,8,8,6,9,6,7,7,13,15/2,9,15/2,13,9,13,25/2,24,13,13,9,14,8,9,8,14,15/2,8,6,10,13/2,9,8,15,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,23/2,12,9,15,10,13,12,22,13,15,13,22,15,22,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,13,25/2,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,10,15/2,11,6,7,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,9,8,13,9,13,25/2,24,12,12,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,7,13,15/2,8,7,11,15/2,10,11,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,9/2,8,4,4,7/2,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,5/2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,5,3,2,2,3,2,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,1/2,0,0,0,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,3,2,3,3,5,3,4,5/2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17 -46,24,24,16,24,14,17,14,24,13,14,11,19,12,17,16,30,16,17,12,18,11,14,13,23,13,14,11,17,11,16,16,30,16,16,11,16,9,11,9,15,8,9,7,10,7,9,8,15,8,8,6,9,6,7,7,13,7,8,7,11,8,11,11,21,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,31,16,16,11,17,10,12,10,17,10,11,9,14,9,12,12,23,12,12,9,14,9,11,10,17,10,11,9,15,10,14,13,25,13,13,9,14,8,9,7,12,7,8,6,10,6,8,7,13,7,7,5,7,4,5,5,9,5,6,5,9,6,9,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,9,13,8,10,9,15,8,9,7,10,6,8,8,14,8,8,7,11,7,10,9,16,9,11,9,15,10,14,14,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,8,8,14,8,9,7,10,6,8,8,15,9,10,9,16,11,16,16,42,22,22,15,23,13,16,13,22,12,13,9,14,9,12,11,21,11,12,9,13,8,11,10,19,11,13,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,11,9,14,9,13,13,24,13,14,11,17,11,15,14,26,15,18,15,26,17,25,24,95/2,24,24,17,26,15,17,15,26,14,15,11,18,12,16,16,30,16,17,12,19,12,16,15,28,16,19,16,27,18,26,26,52,27,27,19,28,16,20,18,33,18,20,16,26,17,23,23,44,23,25,19,30,19,25,24,45,25,30,25,44,30,44,44,82,42,42,28,42,24,28,23,41,22,23,18,29,18,25,24,45,23,24,16,24,14,17,15,28,15,17,14,23,15,21,21,40,21,21,14,21,12,14,12,21,11,12,10,16,10,14,14,26,14,14,11,17,11,14,12,22,13,16,14,24,16,24,24,95/2,24,24,17,26,15,17,14,25,14,15,11,18,11,15,14,26,13,13,9,14,9,11,10,18,11,13,11,18,12,18,18,35,18,19,13,19,11,13,12,21,11,12,9,14,9,13,12,22,12,13,10,16,10,13,12,23,13,15,13,22,15,21,21,29,15,16,11,16,9,11,9,16,9,10,8,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,12,23,12,12,8,12,7,9,8,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,3,2,1,1,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,2,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,9,9,16,11,17,17,32 -23,12,13,9,12,7,9,7,12,7,8,6,10,7,9,9,16,9,9,7,9,6,8,7,12,7,7,6,9,6,9,8,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,9/2,8,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,9/2,6,4,4,7/2,5,3,3,3,3,5/2,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,16,9,9,6,9,11/2,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,5,7,5,6,11/2,9,11/2,6,5,8,11/2,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,8,9/2,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,9,22,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,11/2,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,9,11,10,17,9,10,8,14,9,12,12,22,12,13,10,16,10,13,25/2,23,13,16,13,23,16,23,23,42,22,22,15,22,12,14,12,21,23/2,12,19/2,15,10,13,25/2,23,12,12,9,13,8,9,8,15,8,9,7,12,8,11,11,21,11,11,8,11,13/2,8,7,11,6,6,11/2,8,6,8,8,14,8,8,6,9,6,8,13/2,11,7,8,7,13,9,12,12,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,13/2,11,6,6,5,8,5,7,7,12,7,7,11/2,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,6,5,6,4,6,6,12,6,6,4,7,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,7,4,5,9/2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,3/2,1,1,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,2,3,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,5,8,6,9,9,17 -23,12,13,9,12,7,17/2,7,12,7,15/2,6,11,7,9,9,16,9,9,7,9,6,8,7,11,6,7,5,9,6,9,8,15,8,17/2,6,8,5,11/2,5,7,4,5,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,5,3,3,3,3,2,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,4,2,2,2,3,2,3/2,1,1,1,3/2,2,2,2,2,2,17,9,9,6,9,6,13/2,6,9,6,13/2,5,7,5,13/2,6,12,6,13/2,5,7,5,6,6,9,6,13/2,5,9,6,7,7,13,7,15/2,5,8,5,5,4,7,4,9/2,4,6,4,9/2,4,6,4,7/2,3,3,2,3,3,5,3,4,3,4,3,5,5,11,6,11/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,8,5,11/2,4,6,4,5,5,8,5,5,5,8,6,17/2,9,22,12,12,8,13,8,17/2,7,12,7,7,5,7,5,6,6,12,6,6,5,8,5,13/2,6,10,6,13/2,6,9,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,8,6,9,6,15/2,7,13,8,19/2,8,14,9,13,13,24,13,13,9,13,8,19/2,8,14,8,17/2,6,10,6,17/2,8,15,8,9,7,10,6,17/2,8,14,8,19/2,8,14,10,14,14,27,14,14,10,14,9,11,10,16,9,21/2,8,14,9,25/2,12,22,12,25/2,10,16,10,27/2,13,23,13,16,13,23,16,23,23,42,22,22,15,22,12,29/2,12,22,12,25/2,10,16,10,27/2,13,24,12,25/2,9,13,8,9,8,15,8,9,7,12,8,23/2,11,21,11,21/2,8,10,6,15/2,7,11,6,13/2,6,8,6,15/2,8,15,8,8,6,10,6,15/2,6,11,7,8,7,13,9,25/2,12,24,12,25/2,9,13,8,19/2,8,13,7,8,6,10,6,17/2,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,19/2,7,10,6,8,7,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,6,13/2,6,9,5,6,5,6,4,6,6,12,6,6,4,7,4,11/2,5,7,4,5,4,7,5,7,7,12,6,13/2,4,7,4,11/2,5,7,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,5,3,3,2,2,2,3/2,2,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-3,-1,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,2,3,2,5/2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,5,3,4,4,7,5,6,5,8,6,19/2,9,17 -16,17/2,9,6,9,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,5,5,8,9/2,5,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,4,3,4,4,8,4,4,7/2,5,3,4,3,4,5/2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,12,7,7,5,6,4,5,4,7,4,5,4,5,7/2,4,4,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,15,8,9,6,9,11/2,6,5,8,5,5,4,5,4,5,5,8,4,4,7/2,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,9,6,7,6,10,13/2,9,9,17,9,9,6,9,6,7,6,10,6,6,5,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,13/2,9,8,15,8,9,7,11,7,10,9,16,9,11,9,16,11,16,16,29,15,15,10,15,9,10,9,15,8,8,13/2,11,7,10,9,16,9,9,6,9,11/2,6,6,10,6,6,5,8,6,8,8,14,15/2,7,5,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,6,4,7,9/2,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,8,4,4,4,6,4,6,5,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,7/2,5,7/2,5,5,9,5,5,7/2,5,3,4,4,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,7/2,4,4,6,5,7,13/2,12 -23,12,13,9,13,8,9,8,12,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,9/2,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,13/2,4,6,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,1,1,1,1,2,2,3/2,2,2,2,18,10,10,7,19/2,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,7,14,7,7,5,7,4,5,4,8,5,5,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,9/2,4,5,6,11,6,6,4,5,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,9,5,6,5,17/2,6,7,7,5,3,3,2,7/2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,3,3,4,3,4,3,9/2,3,4,4,9,5,5,4,9/2,3,3,3,5,3,2,2,5/2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,4,3,4,3,9/2,4,5,5,9,5,6,5,15/2,5,6,6,10,6,7,6,19/2,7,10,10,23,12,13,9,27/2,8,10,8,12,7,7,5,8,5,7,7,12,7,7,5,15/2,5,6,6,9,5,6,5,17/2,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,12,7,7,6,9,6,8,7,13,8,9,8,14,9,13,13,26,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,21/2,7,9,8,14,8,10,8,29/2,10,15,15,27,14,14,10,29/2,9,12,10,16,9,10,8,14,9,12,12,22,12,13,10,16,10,14,13,23,13,16,14,47/2,16,24,24,43,22,22,15,45/2,13,15,13,22,12,13,10,31/2,10,13,13,24,12,12,9,13,8,10,9,14,8,10,8,25/2,8,11,11,21,11,11,8,21/2,6,8,7,12,7,7,6,17/2,6,8,8,16,9,9,7,11,7,8,7,12,7,9,8,25/2,9,13,13,24,13,13,9,14,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,21/2,8,11,11,19,10,10,7,19/2,6,8,7,11,6,7,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,11,8,12,12,16,9,9,6,19/2,6,7,6,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,5,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,3,2,2,2,5/2,2,2,2,5,3,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-3,-1,-1,0,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,3,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,3,6,4,4,3,5,3,4,4,8,5,6,6,19/2,7,10,9,17 -13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,11/2,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,3,3,4,3,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,9/2,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,15/2,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,4,6,4,6,5,7,4,4,7/2,5,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,11/2,8,5,6,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,7,4,4,7/2,6,4,5,5,9,5,6,9/2,7,4,5,5,8,5,6,5,8,11/2,8,8,13,7,8,11/2,8,5,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,12,6,6,4,6,4,5,9/2,7,4,4,7/2,5,4,5,9/2,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,5,4,6,7/2,4,3,5,3,4,9/2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,11/2,10 -16,9,9,7,9,6,13/2,6,8,5,11/2,5,7,5,7,7,12,6,13/2,4,6,4,4,4,7,4,5,4,6,4,11/2,5,11,6,6,4,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,9/2,4,9,5,11/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,1,1/2,0,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,12,6,13/2,4,7,4,5,4,7,4,9/2,4,5,4,9/2,4,10,6,11/2,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,11/2,4,6,4,7/2,3,6,4,4,3,4,3,4,4,4,2,5/2,2,2,2,5/2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,6,4,9/2,4,6,4,11/2,5,4,2,5/2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,7,4,7/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,8,5,5,4,6,4,5,5,8,5,11/2,5,7,5,15/2,8,17,9,19/2,7,10,6,7,6,8,5,11/2,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,13/2,6,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,10,7,9,9,18,10,19/2,7,10,6,8,7,11,6,6,5,7,5,13/2,6,11,6,7,5,8,5,13/2,6,10,6,15/2,6,10,7,21/2,10,20,10,21/2,7,11,7,17/2,7,12,7,8,6,10,6,17/2,8,16,9,10,8,12,8,21/2,10,16,9,11,9,17,12,33/2,16,30,16,31/2,11,15,9,10,9,15,8,17/2,6,11,7,9,9,16,9,9,7,9,6,15/2,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,6,8,5,5,4,7,5,6,6,11,6,13/2,5,8,5,6,6,10,6,7,6,9,6,19/2,9,15,8,17/2,6,9,5,6,5,10,5,5,4,6,4,11/2,5,10,5,5,4,5,4,5,5,7,4,11/2,5,8,6,15/2,8,15,8,7,5,8,5,6,5,9,5,5,4,6,4,11/2,5,9,5,5,4,6,4,11/2,5,8,5,11/2,5,8,6,8,8,11,6,13/2,5,7,5,6,5,7,4,5,4,6,4,11/2,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,0,0,1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,11/2,6,4,5,3,4,7/2,6,7/2,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,6,13/2,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,9/2,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,11/2,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,11/2,7,6,10,5,5,4,6,4,6,5,10,11/2,6,9/2,7,9/2,6,5,9,5,6,5,9,6,9,9,17,9,9,6,10,6,7,6,10,6,7,5,8,11/2,8,7,14,8,8,13/2,10,7,9,8,14,8,10,8,15,10,14,14,25,13,13,9,13,8,9,8,13,7,7,11/2,9,6,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,9/2,8,4,4,7/2,5,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,7,7,10,6,6,9/2,6,4,5,4,6,4,4,4,6,4,5,5,8,9/2,5,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,11/2,10 -24,13,13,9,12,7,8,8,27/2,8,8,7,11,7,10,9,18,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,14,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,5,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,9,5,5,3,4,3,4,4,11/2,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,15/2,5,6,5,8,6,8,8,4,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,6,4,4,3,3,2,2,2,9/2,3,4,3,4,3,5,5,9,5,5,4,7,4,5,4,15/2,4,5,4,7,5,6,5,12,7,7,5,8,6,8,7,25/2,7,8,7,11,8,11,11,27,14,14,10,14,8,10,8,27/2,8,8,6,9,6,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,9,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,29,15,16,11,16,9,11,10,33/2,9,9,7,10,7,9,9,17,9,10,8,12,7,9,8,31/2,9,11,9,16,11,16,16,30,16,16,11,16,10,12,10,37/2,10,11,8,13,9,12,12,25,13,14,11,18,11,14,14,51/2,14,17,14,24,16,24,24,44,22,22,15,22,13,15,13,22,12,13,10,15,9,12,12,25,13,14,10,14,8,10,9,15,9,10,8,14,9,13,13,20,11,11,8,12,7,8,8,27/2,8,8,6,10,6,8,8,18,10,10,7,11,7,9,8,29/2,8,10,8,14,10,14,14,22,11,11,8,11,7,8,8,14,8,8,6,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,8,13,7,8,6,8,5,7,6,23/2,7,8,7,11,8,12,12,18,10,10,7,10,6,8,7,23/2,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,15/2,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,15/2,4,4,3,3,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,7,4,5,4,5,3,3,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,7,4,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,9/2,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,13/2,4,5,5,9,6,9,9,18 -13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,7,4,5,4,6,9/2,6,6,15,8,8,6,8,5,6,5,8,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,15/2,8,6,10,6,8,8,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,12,7,7,11/2,8,5,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,5/2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,10 -13,7,15/2,5,7,4,5,4,8,5,5,4,6,4,11/2,6,9,5,6,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,9,5,4,3,5,3,3,3,4,2,5/2,2,4,3,7/2,3,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,11,6,6,4,6,4,9/2,4,7,4,4,3,4,3,7/2,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,3,5,3,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,3,2,4,3,7/2,4,6,4,4,3,3,2,3,3,4,3,7/2,3,5,4,9/2,4,6,4,7/2,2,3,2,5/2,2,4,3,3,2,2,2,7/2,3,5,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3,3,2,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,3,2,7/2,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,8,17/2,6,8,5,11/2,5,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,5,3,7/2,3,5,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,6,6,9,5,11/2,4,6,4,5,5,8,5,13/2,6,9,6,17/2,8,17,9,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,10,6,6,5,7,4,11/2,6,10,6,7,6,10,7,19/2,9,17,9,19/2,7,9,6,15/2,6,11,6,7,5,8,6,15/2,7,15,8,17/2,6,10,6,17/2,8,15,9,10,9,14,10,14,14,25,13,13,9,13,8,9,7,13,7,8,6,9,6,8,7,14,8,8,6,8,5,13/2,6,9,5,6,5,8,6,8,8,12,6,13/2,5,7,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,11/2,5,9,6,13/2,5,9,6,17/2,8,13,7,7,5,7,4,11/2,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,5,4,6,5,7,7,13,7,15/2,6,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,15/2,8,11,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,5,5,8,5,5,3,5,3,4,4,5,3,4,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,5,3,7/2,3,4,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,5,3,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,1,1,1,2,2,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,0,0,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,6,3,3,2,2,2,5/2,2,3,2,2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,4,3,3,3,5,3,4,4,6,4,5,5,10 -10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,9/2,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,3,5/2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,8,5,5,7/2,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,7/2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,3,5,4,5,5,13,7,7,5,6,4,4,4,6,7/2,4,3,4,3,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,7/2,4,3,5,7/2,5,5,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,9/2,8,5,6,5,8,6,8,7,13,7,8,11/2,7,5,6,5,9,5,6,4,6,9/2,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,9/2,5,4,7,5,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10,11/2,6,4,6,7/2,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,4,2,2,1,2,2,2,1,2,2,2,2,2,3/2,2,1,1,1,0,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,9/2,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,5/2,2,3,3,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,12,6,6,5,7,4,5,4,9,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,11/2,4,6,6,12,6,6,4,11/2,4,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,7/2,3,4,3,3,2,3,2,7/2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,4,3,3,2,2,1,1,1,4,3,3,2,7/2,3,4,3,3,2,2,2,4,3,4,3,5,3,3,2,7/2,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,8,4,4,3,9/2,4,5,5,9,5,5,4,13/2,4,5,5,8,5,6,5,15/2,6,8,8,21,11,10,7,21/2,6,7,6,8,5,6,4,13/2,4,6,6,8,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,7,6,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,22,12,12,8,25/2,7,8,7,12,7,7,6,9,6,7,7,12,7,7,6,9,6,8,7,14,8,9,8,13,9,12,12,21,11,11,8,12,7,9,7,14,8,8,6,10,7,9,9,18,10,10,8,13,8,11,10,18,11,13,11,18,12,18,18,30,16,16,11,15,9,10,9,17,9,10,7,11,7,10,9,16,9,9,7,11,7,9,8,13,7,8,7,11,7,10,10,15,8,8,6,17/2,5,6,5,10,6,6,5,7,5,6,6,14,8,8,6,17/2,5,6,6,11,6,7,6,21/2,7,10,10,15,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,6,5,8,6,9,9,16,8,8,6,17/2,5,6,6,8,5,6,5,15/2,6,8,7,11,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,7,9,5,6,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,2,2,2,5/2,2,2,2,8,4,4,3,9/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,5,3,3,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,0,1,1,1,1/2,1,1,1,2,2,2,1,1/2,1,2,2,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,5/2,2,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,2,3,2,3,3,7,4,4,3,7/2,3,4,3,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,7,4,3,2,3,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,11 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,5/2,3,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,8,4,4,7/2,5,3,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,3,2,3,2,3,2,4,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,2,2,5/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,3,2,4,3,4,3,6,4,4,3,4,3,4,7/2,6,4,4,7/2,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,5,9/2,7,5,7,7,14,8,8,11/2,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,19,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,11/2,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,7/2,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,3,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7 -12,7,7,5,6,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,5,11/2,4,5,3,7/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,5,3,3,3,6,4,7/2,3,4,3,4,4,6,3,3,3,5,3,4,4,6,3,3,3,4,3,7/2,4,8,4,9/2,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,11,6,13/2,5,7,4,4,4,8,4,4,3,4,3,7/2,4,6,4,7/2,3,3,2,3,3,5,3,7/2,3,6,4,11/2,6,11,6,5,4,5,3,4,4,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,7/2,3,5,3,7/2,2,3,3,4,4,7,4,4,3,5,3,7/2,4,7,4,5,4,6,4,11/2,5,7,4,4,3,4,2,5/2,2,3,2,3,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,5,3,4,4,6,4,13/2,7,5,3,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,7,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,3,3,4,4,8,4,9/2,3,4,3,4,4,7,4,4,3,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,6,5,7,5,15/2,8,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,13,7,15/2,6,8,5,6,5,8,5,11/2,5,7,5,13/2,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,13/2,6,9,6,15/2,7,11,6,13/2,5,8,5,13/2,6,12,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,17/2,7,11,7,9,8,14,8,21/2,9,15,10,31/2,16,26,14,27/2,9,13,8,10,8,14,8,9,7,10,6,17/2,8,14,8,8,6,9,6,7,6,11,6,15/2,6,9,6,17/2,8,13,7,15/2,6,8,5,11/2,5,9,5,6,5,7,5,6,6,11,6,13/2,5,6,4,6,6,10,6,7,6,9,6,17/2,8,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,6,4,7,4,11/2,5,8,5,5,5,7,5,7,7,14,8,15/2,5,7,5,6,5,8,4,9/2,4,6,4,11/2,5,9,5,6,4,6,4,9/2,4,8,5,6,5,8,6,17/2,9,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,11/2,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,5,3,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,3/2,2,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,11/2,6,10 -12,6,6,9/2,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,10,6,6,9/2,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,10,11/2,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,13/2,6,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,10,6,8,15/2,13,8,10,8,14,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,7,13,7,7,11/2,8,5,7,6,11,6,7,6,9,6,8,8,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,9/2,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,8,6,9,9,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,3,5/2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,4,5/2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9 -22,12,12,8,11,7,9,8,14,8,8,6,9,6,8,8,15,8,9,6,9,6,7,6,9,5,6,5,7,5,6,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,19/2,6,6,4,6,4,5,5,8,5,5,5,8,5,7,6,14,7,7,5,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,19,10,9,6,9,6,7,6,10,6,6,4,6,4,6,6,19/2,6,6,5,7,5,7,7,12,7,9,7,12,8,11,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,7,6,11,8,12,12,11,6,7,5,8,5,5,5,8,5,5,4,6,4,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,11/2,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,14,10,14,14,31,16,16,11,17,10,11,9,16,8,8,6,9,6,8,7,25/2,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,41/2,11,11,8,12,8,10,9,16,10,12,10,17,12,17,17,33,17,17,12,18,11,13,11,20,11,12,9,15,9,12,12,22,12,13,9,14,9,12,11,21,12,14,12,20,13,18,18,34,18,18,13,19,11,14,12,20,11,12,9,15,10,14,14,26,14,15,12,20,13,17,16,30,17,19,16,28,19,29,29,49,25,26,18,26,15,17,14,24,13,14,11,18,11,14,13,25,13,13,9,14,9,11,11,20,11,12,10,17,11,16,16,24,12,12,8,11,7,8,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,10,9,16,9,10,8,14,10,15,15,25,13,14,10,14,8,10,9,15,8,9,7,10,7,9,9,33/2,9,10,8,12,7,9,9,16,9,10,8,13,9,13,13,25,13,14,10,14,8,10,9,16,9,9,7,12,8,10,9,16,9,10,7,11,8,11,10,19,11,12,10,17,12,17,17,25,13,13,9,14,8,9,8,14,8,8,7,11,8,11,11,41/2,10,10,7,11,7,9,8,15,8,9,7,11,7,10,10,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,15/2,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,9/2,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,2,2,2,2,1,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,2,2,3,3,4,2,2,2,2,2,3,3,9,5,5,4,6,4,5,4,6,4,4,3,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17 -11,6,6,9/2,6,4,5,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,10,5,5,4,5,7/2,4,7/2,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,13/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,16,17/2,8,6,9,11/2,6,5,9,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,13/2,10,7,9,9,16,9,10,9,15,10,15,15,26,27/2,14,10,14,8,9,8,13,7,8,6,10,6,8,7,14,15/2,8,11/2,8,5,6,6,11,6,7,6,9,6,9,9,13,7,6,9/2,6,4,5,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,7,6,9,13/2,9,9,14,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,5/2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,9 -11,6,6,5,6,4,5,4,7,4,9/2,4,6,4,5,5,8,5,11/2,4,6,4,5,4,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,5,3,4,4,8,4,9/2,4,5,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,1/2,1,10,5,5,4,6,4,9/2,4,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,9/2,4,6,4,6,6,10,6,11/2,4,5,3,3,3,4,2,5/2,2,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,8,4,9/2,4,5,3,7/2,4,6,4,4,3,4,3,7/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,4,5,5,7,4,5,4,5,3,7/2,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,13/2,7,7,4,9/2,4,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,5/2,2,2,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,7/2,4,5,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,4,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,9/2,4,7,4,5,4,5,4,5,5,8,5,11/2,5,8,6,15/2,8,17,9,17/2,6,9,6,13/2,6,9,5,11/2,4,5,4,9/2,4,7,4,7/2,3,4,3,3,3,6,4,9/2,4,5,4,5,6,13,7,15/2,6,8,5,6,5,7,4,5,4,8,5,13/2,6,12,6,13/2,5,7,5,6,5,9,6,13/2,6,9,6,9,9,17,9,19/2,6,9,6,15/2,6,11,6,13/2,5,8,5,13/2,6,12,7,15/2,6,8,5,7,6,11,7,8,7,10,7,9,9,19,10,10,7,11,7,8,7,12,7,15/2,6,8,6,8,8,15,8,9,7,10,7,9,9,16,9,21/2,9,16,11,31/2,16,27,14,14,10,14,8,9,8,14,8,17/2,6,10,6,8,7,15,8,17/2,6,8,5,7,7,11,6,15/2,6,10,7,9,9,13,7,13/2,5,6,4,5,4,6,4,9/2,4,5,4,11/2,6,10,6,6,4,6,4,11/2,5,9,5,11/2,5,8,6,17/2,8,14,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,9,5,6,4,7,4,11/2,5,8,5,11/2,4,8,5,7,7,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,11/2,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,19/2,10,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,6,4,5,5,9,5,11/2,4,6,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,7,4,7/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,2,1,-1,0,-1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,5/2,2,2,2,5/2,2,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,3,7/2,4,6,4,9/2,4,5,4,11/2,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,4,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,5/2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,6,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,7/2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,6,4,5,4,5,3,4,3,6,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,5,7,7,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,6,9/2,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,23/2,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,9/2,6,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,11/2,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,7/2,5,4,7,9/2,5,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,7/2,5,5,6,4,4,3,4,3,3,5/2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,5/2,3,3,4,3,4,3,4,3,4,4,7 -12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,11/2,4,4,4,7,4,4,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,11,6,6,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,13/2,5,7,7,10,6,6,4,5,3,4,4,4,3,3,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,7,5,7,6,7,4,5,4,11/2,4,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,7,8,9,5,5,4,9/2,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,2,2,2,2,4,3,3,3,8,4,4,3,9/2,3,4,3,4,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,7/2,2,3,3,3,2,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,13/2,4,6,5,9,5,6,6,19/2,6,9,9,18,9,9,7,10,6,6,5,10,6,6,4,13/2,4,6,5,8,4,4,3,9/2,3,4,4,7,4,5,4,13/2,5,7,7,15,8,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,6,6,9,6,7,6,9,6,9,10,19,10,10,7,10,6,8,7,13,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,21/2,8,11,11,20,10,10,7,11,7,8,7,13,7,8,6,21/2,7,9,8,18,10,10,8,23/2,8,10,9,16,10,12,10,17,12,18,18,30,16,16,10,29/2,8,10,8,15,9,10,8,23/2,8,10,9,17,9,9,7,11,7,9,8,12,7,8,7,23/2,8,10,10,14,7,7,5,15/2,5,6,5,7,4,4,4,6,4,6,6,10,6,6,4,13/2,4,6,6,9,5,6,5,17/2,6,9,10,16,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,10,6,6,5,15/2,5,6,6,9,6,7,6,9,6,8,8,16,8,8,6,17/2,5,6,5,9,5,6,5,7,5,6,6,10,6,7,5,8,5,7,6,11,7,8,7,23/2,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,15/2,5,6,5,10,6,6,5,15/2,6,8,7,9,5,6,4,11/2,4,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,7/2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,6,4,4,3,3,2,3,3,2,1,1,1,3/2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,4,3,3,2,5/2,2,2,3,4,3,3,2,2,2,2,2,4,2,2,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,6,6,11 -7,4,5,7/2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,6,10,6,8,13/2,10,7,11,11,18,10,10,13/2,9,5,6,5,9,11/2,6,5,7,5,6,11/2,10,6,6,9/2,7,9/2,6,5,8,5,5,4,7,5,6,6,9,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,6,6,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,7/2,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,6,7/2,4,3,5,3,4,4,6,4,5,4,5,3,4,4,7,9/2,5,9/2,8,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,7/2,5,4,8,5,5,7/2,5,3,4,7/2,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,1,0,1,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,4,4,7 -9,5,6,4,5,3,4,4,6,4,9/2,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,2,1,1,1,8,4,4,3,5,3,4,3,5,3,7/2,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,5,7,4,9/2,3,4,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,3,5,3,5/2,2,4,3,3,3,5,3,4,4,5,4,6,6,7,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,2,2,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,3,5,3,7/2,3,3,2,2,2,3,2,5/2,2,3,2,3,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,5,4,5,4,5,4,8,5,11/2,4,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,7/2,3,5,3,4,4,6,4,6,6,11,6,13/2,5,8,5,11/2,5,7,4,5,4,6,4,11/2,5,10,5,5,4,6,4,5,5,7,4,11/2,4,7,5,15/2,8,14,8,15/2,5,7,5,6,5,10,5,5,4,6,4,11/2,5,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,9,9,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,13,8,19/2,8,13,9,27/2,14,23,12,25/2,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,12,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,8,5,5,4,6,4,5,5,8,5,5,4,8,6,15/2,8,12,7,7,5,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,11/2,4,6,4,5,5,7,4,5,4,8,5,6,6,12,6,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,6,4,11/2,5,9,6,13/2,6,10,7,9,9,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,9/2,4,6,4,11/2,6,6,4,4,3,4,3,3,3,3,2,3,2,3,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,2,2,2,2,2,7,4,7/2,2,3,2,3,3,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,6,4,4,3,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,-2,0,-1/2,0,0,1,3/2,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,3/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,2,4,3,4,3,5,3,3,3,4,3,3,3,6,4,7/2,3,5,3,4,4,5,3,7/2,3,5,4,5,5,10 -8,5,5,4,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,5/2,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,7/2,6,7/2,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,7/2,5,7/2,4,4,7,9/2,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,7,4,5,4,5,7/2,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,9/2,5,9/2,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,8,6,8,11/2,7,7,12,7,8,7,12,17/2,12,13,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,12,7,7,5,8,5,6,5,9,11/2,6,5,8,5,7,7,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,5,7/2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9 -14,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,5,3,3,3,4,3,3,2,3,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,11/2,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,9/2,2,2,2,3,2,1,1,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,11,6,7,5,8,5,6,5,15/2,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,5,8,6,8,7,11,6,5,4,5,3,4,4,13/2,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,6,5,8,5,6,6,19/2,6,6,5,8,5,7,7,11,6,5,4,5,3,4,4,13/2,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,17/2,6,7,6,10,7,10,10,13,7,7,5,8,5,5,4,15/2,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,4,4,12,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,14,8,9,7,10,6,8,6,21/2,6,6,4,6,4,6,6,10,6,7,6,9,6,7,7,13,7,8,6,10,7,11,11,20,11,11,7,10,6,8,7,13,7,7,5,8,6,8,7,9,5,6,4,6,4,5,4,15/2,4,5,5,8,6,8,9,19,10,10,7,10,6,8,8,27/2,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,25/2,7,8,7,12,9,13,13,24,12,12,9,13,8,10,8,14,8,8,7,11,7,8,8,16,9,9,7,10,6,8,7,25/2,7,8,7,12,9,13,13,28,14,14,10,15,9,11,9,16,9,10,8,12,8,11,11,24,13,13,10,15,10,13,12,43/2,13,16,13,23,16,23,23,39,20,20,14,20,11,13,11,20,11,12,9,15,9,12,11,22,12,12,9,13,8,10,9,33/2,9,10,8,13,9,12,12,19,10,11,8,11,7,8,6,21/2,6,7,5,8,6,8,7,12,7,7,5,8,6,8,7,25/2,7,8,7,13,9,13,13,19,10,10,7,11,7,8,6,10,6,7,6,9,6,7,7,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,23/2,6,6,5,8,6,8,8,15,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,23,12,12,8,12,7,8,8,27/2,8,8,6,9,6,9,8,16,9,9,7,10,6,8,7,23/2,6,7,6,9,6,8,8,10,5,5,3,4,3,3,3,11/2,4,4,3,4,3,3,3,10,5,5,4,6,4,4,4,11/2,3,3,3,4,3,4,3,13,7,6,4,6,4,5,4,13/2,4,4,4,6,4,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,10,5,5,4,6,4,4,3,5,3,4,3,5,3,3,3,1,1,1,1,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,3,3,5,3,3,2,2,2,2,2,7/2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,8,5,6,5,17/2,5,6,5,9,6,9,9,17 -8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,7/2,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,7/2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,7/2,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,7/2,4,4,8,9/2,5,4,6,5,7,7,11,6,6,9/2,6,4,5,9/2,8,4,4,3,5,7/2,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,8,9/2,5,4,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,15/2,16,8,8,6,9,5,6,5,9,5,6,5,7,5,6,13/2,13,7,8,6,9,6,8,7,12,15/2,9,8,13,9,13,13,22,12,12,8,12,7,8,7,11,6,7,11/2,9,11/2,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,3,5,4,5,4,7,4,5,9/2,7,5,8,15/2,11,6,6,4,7,4,5,4,6,4,4,7/2,5,7/2,4,4,9,5,5,4,6,4,5,4,8,9/2,5,4,6,4,6,6,10,6,6,9/2,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,7/2,5,4,5,5,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10 -9,5,6,4,5,4,9/2,4,7,4,5,4,5,4,5,4,7,4,7/2,2,4,3,7/2,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,7/2,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,7/2,3,6,4,11/2,5,7,4,7/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,11/2,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,4,3,6,4,9/2,4,5,3,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,5,9,5,11/2,4,7,4,11/2,5,6,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,15/2,6,7,5,6,5,9,5,9/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,13,7,13/2,4,7,4,11/2,5,9,5,5,4,6,4,11/2,6,10,6,6,5,6,4,11/2,5,9,5,6,5,8,6,9,9,16,8,17/2,6,8,5,13/2,6,9,5,6,4,7,5,6,5,10,6,6,5,6,4,11/2,5,8,5,5,5,8,6,17/2,8,18,10,19/2,6,10,6,7,6,11,6,7,6,9,6,15/2,8,15,8,17/2,6,10,6,17/2,8,14,9,11,9,15,10,15,15,26,14,14,10,14,8,19/2,8,13,7,8,6,10,6,8,8,14,8,15/2,6,8,5,7,6,10,6,13/2,6,9,6,8,8,13,7,7,5,8,5,11/2,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,11/2,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,8,5,5,4,6,4,11/2,5,10,6,6,5,7,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,7,4,5,5,10,6,7,6,10,7,10,10,15,8,17/2,6,8,5,13/2,6,9,5,5,4,6,4,11/2,6,11,6,11/2,4,6,4,5,5,8,4,9/2,4,6,4,6,6,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,8,5,5,4,4,3,7/2,3,4,3,3,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,7,4,4,3,4,3,3,3,3,2,3,2,4,3,3,3,1,1,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,1,0,0,0,0,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,-3,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,4,2,5/2,2,3,2,2,2,4,3,7/2,4,6,3,3,3,5,3,4,4,5,3,4,3,4,3,3,3,8,4,4,3,5,3,4,4,6,4,9/2,4,6,4,6,6,11 -8,9/2,5,4,4,3,4,3,5,3,4,3,4,3,4,7/2,6,3,3,2,3,2,3,5/2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,5/2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,7/2,5,4,5,6,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,6,4,5,9/2,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,6,5,7,5,8,8,13,7,7,5,7,4,5,9/2,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,11/2,8,5,6,5,9,5,6,5,8,5,6,13/2,13,7,7,5,8,5,7,7,12,7,9,15/2,12,8,12,12,22,11,11,8,11,13/2,8,13/2,11,6,7,5,8,5,7,6,11,6,6,9/2,6,4,5,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,7/2,5,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,7/2,5,5,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,1,1,1,1/2,0,0,0,0,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9 -13,7,8,6,15/2,4,5,5,8,5,5,4,6,4,6,6,9,5,4,3,9/2,3,3,3,7,4,4,3,9/2,4,5,5,7,4,4,3,9/2,3,4,3,3,2,2,2,9/2,4,5,5,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,9/2,2,2,2,4,3,3,2,5/2,2,2,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,9/2,3,4,3,6,4,4,4,11/2,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,7,4,4,4,11/2,4,4,4,6,4,5,4,7,5,6,6,11,6,5,4,5,3,4,3,7,4,4,4,11/2,4,6,5,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,13,7,7,5,7,5,6,5,8,5,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,8,5,6,4,13/2,4,6,5,10,6,6,5,15/2,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,5,7,7,10,6,6,4,11/2,4,4,4,7,4,5,4,6,4,6,6,9,5,6,4,11/2,4,4,4,7,4,4,4,6,5,7,7,11,6,7,5,8,5,6,6,9,5,6,4,13/2,4,6,6,12,7,7,5,8,5,7,7,11,7,8,6,21/2,8,11,11,18,10,10,7,11,7,9,8,11,6,6,5,15/2,5,6,6,9,5,6,4,11/2,4,6,5,9,5,6,5,17/2,6,8,9,18,9,9,6,9,6,7,6,12,7,7,6,17/2,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,25/2,9,14,14,21,11,11,8,25/2,7,8,7,14,8,8,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,12,8,12,12,25,13,13,9,25/2,8,9,8,16,9,10,8,13,8,11,11,22,12,13,9,14,9,11,11,20,12,14,12,43/2,15,22,22,38,20,20,13,37/2,11,13,11,18,10,11,8,27/2,8,11,10,18,10,10,7,21/2,6,8,7,15,9,10,8,25/2,8,12,11,19,10,10,8,23/2,7,8,7,10,6,7,5,8,5,7,7,12,7,8,6,17/2,6,7,7,12,7,8,7,11,8,12,12,18,10,10,7,19/2,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,17/2,6,7,6,12,7,7,6,9,6,9,9,16,9,9,7,10,6,7,7,12,7,8,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,21,11,11,8,12,7,9,8,12,7,7,6,9,6,7,7,14,8,8,6,15/2,5,6,6,10,6,6,5,15/2,5,7,7,12,6,6,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,9,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,3,10,6,6,4,13/2,4,4,3,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,10,6,6,4,11/2,4,4,4,4,3,3,2,7/2,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,4,3,3,2,5/2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,7,4,3,2,3,2,2,2,6,4,4,3,5,4,5,5,8,5,5,4,11/2,4,4,3,5,3,4,3,9/2,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,11/2,4,4,4,10,5,5,4,11/2,4,4,4,9,5,6,5,15/2,6,8,8,15 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,5,6,5,8,4,4,7/2,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,6,5,6,4,5,9/2,8,5,5,4,6,4,6,6,9,5,6,4,7,9/2,6,5,9,11/2,6,5,8,6,9,9,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,11/2,6,6,11,6,7,6,9,6,8,8,15,8,9,13/2,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,12,7,9,7,12,7,7,6,9,6,7,7,12,7,7,5,7,9/2,6,5,10,6,7,5,8,6,8,8,13,7,7,11/2,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,9/2,8,9/2,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,9/2,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,7/2,4,4,7,4,4,3,5,7/2,5,5,8,4,4,3,4,5/2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,5/2,4,3,4,7/2,6,3,3,3,4,3,3,5/2,4,3,3,5/2,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,10 -13,7,7,5,7,4,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,4,3,7/2,3,6,4,4,3,5,3,4,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,8,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,5,9,5,9/2,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,3,3,3,5,4,5,5,7,4,5,4,6,4,11/2,5,8,5,6,5,8,6,9,9,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,5,5,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,6,6,10,6,11/2,4,7,4,9/2,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,9/2,4,6,4,9/2,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,5,7,7,10,6,6,5,8,5,11/2,5,8,5,6,5,6,4,6,6,12,6,13/2,5,7,5,13/2,6,12,7,15/2,6,10,7,10,10,19,10,10,7,10,6,15/2,6,11,6,13/2,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,18,10,19/2,7,9,6,7,6,12,7,7,5,9,6,15/2,8,13,7,8,6,10,6,17/2,8,13,8,9,7,12,9,13,13,21,11,23/2,8,12,7,17/2,7,12,7,7,5,9,6,15/2,7,12,7,7,5,9,6,8,7,11,7,8,7,11,8,11,11,22,12,25/2,8,12,8,19/2,9,16,9,10,8,13,8,23/2,11,21,11,12,9,13,8,23/2,11,20,12,27/2,12,20,14,20,20,36,19,19,13,18,10,25/2,10,18,10,10,8,13,8,10,10,18,10,19/2,7,10,6,8,7,14,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,9,6,13/2,5,8,5,13/2,7,12,7,7,5,8,5,13/2,6,12,7,8,7,11,8,23/2,11,19,10,10,7,10,6,15/2,6,11,6,7,6,8,6,8,7,13,7,7,5,8,5,6,6,11,6,13/2,6,9,6,9,9,16,9,9,7,10,6,15/2,6,11,7,8,6,9,6,8,8,15,8,8,6,9,6,15/2,7,14,8,19/2,8,14,9,13,13,21,11,11,8,11,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,15/2,5,7,5,6,6,10,6,11/2,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,8,5,5,3,5,3,4,3,4,2,5/2,2,3,2,3,3,11,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,7/2,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,9,5,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,7,4,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,8,4,4,3,5,3,7/2,3,6,4,4,3,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,8,5,5,4,8,5,7,7,14 -12,7,7,5,6,4,4,4,6,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,9/2,4,7/2,5,3,4,4,6,4,4,3,5,7/2,4,5,9,5,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,9/2,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,7,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,13/2,11,6,6,5,7,5,6,6,10,11/2,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,10,7,9,6,7,6,11,13/2,7,5,9,6,7,7,13,7,8,6,10,6,8,8,13,8,9,15/2,13,9,13,13,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,9,6,7,7,11,7,8,7,11,8,11,11,22,12,12,8,12,8,10,9,16,9,10,8,13,17/2,12,11,21,11,12,9,13,17/2,12,11,20,12,14,12,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,13/2,8,7,13,8,9,7,12,8,11,11,19,10,10,7,11,6,7,6,9,11/2,6,5,7,5,6,13/2,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,6,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,6,11/2,9,6,9,9,16,9,9,7,10,6,8,13/2,11,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,13,9,13,13,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,5,7,5,6,6,10,6,6,4,6,4,6,6,11,6,6,4,6,7/2,4,4,6,4,4,3,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,3,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,7/2,3,2,3,2,3,3,4,3,3,3,5,7/2,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,6,4,4,4,8,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,9/2,8,5,5,4,7,5,7,7,13 -23,12,12,8,12,7,8,7,11,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,23/2,6,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,6,5,7,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,14,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,7,6,10,7,11,11,43/2,11,10,7,10,6,7,6,10,6,7,5,8,6,9,9,16,9,9,7,12,8,11,10,19,11,12,10,18,12,18,18,23,12,13,9,13,8,9,7,12,7,8,6,10,6,8,8,15,8,9,7,11,7,8,7,13,7,8,7,12,8,11,10,19,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,9,8,13,8,9,7,12,9,13,13,20,11,11,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,11,7,10,10,41/2,11,11,7,10,6,8,7,13,7,8,7,12,8,10,10,18,10,10,7,11,7,10,10,18,11,13,11,18,12,18,19,36,19,19,13,19,11,12,10,18,10,11,9,15,10,14,13,24,13,13,10,15,9,12,11,20,11,13,11,18,12,18,17,65/2,17,17,12,17,10,13,12,21,12,14,11,18,12,16,15,29,15,16,12,19,12,16,15,28,16,18,15,25,17,25,25,40,20,20,14,21,13,16,14,24,13,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,23,15,22,22,85/2,22,22,16,24,14,17,15,26,14,16,13,22,14,20,19,36,19,21,16,25,16,22,21,40,23,27,23,40,27,40,40,70,36,36,25,37,21,25,21,37,20,21,15,24,15,19,18,34,18,18,13,20,12,14,12,22,12,14,12,21,14,20,20,75/2,19,19,13,20,12,14,12,20,11,13,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,13,21,14,21,21,36,19,19,13,19,11,14,12,21,11,12,9,14,9,11,11,20,11,11,8,13,8,11,11,20,11,12,10,17,11,16,16,63/2,16,17,12,17,10,13,12,21,11,12,10,16,10,13,13,24,13,14,10,16,10,14,14,27,15,18,15,25,17,25,25,41,21,21,14,21,12,14,12,21,11,12,9,14,9,12,11,19,10,10,7,11,7,8,7,11,7,8,7,11,8,11,11,21,11,11,7,9,5,6,5,8,5,6,5,7,5,6,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,20,10,10,7,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,16,8,8,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,13/2,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,7,4,5,4,5,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,2,3,2,3,2,3,3,4,5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,7,5,8,5,6,6,10,6,6,5,7,5,8,8,14,8,8,6,8,5,5,5,8,5,6,5,9,6,9,8,31/2,8,8,6,8,5,7,6,11,6,7,5,8,6,9,9,16,9,10,7,11,7,8,8,14,8,9,7,12,9,13,13,25 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,19,10,10,7,10,6,6,11/2,10,6,6,5,8,6,8,7,12,7,7,11/2,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,13/2,9,6,7,6,11,13/2,8,6,10,6,8,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,20,10,10,7,11,7,8,7,13,7,7,11/2,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,12,7,9,8,14,8,8,7,12,8,10,10,18,10,11,8,13,9,12,11,21,12,14,12,21,14,21,21,36,19,19,13,19,11,13,11,19,21/2,11,8,13,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,11,15/2,10,10,20,10,10,7,11,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,7,13,8,9,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,6,10,6,6,11/2,9,6,9,9,17,9,9,13/2,9,6,7,13/2,11,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,13/2,8,13/2,11,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,9,5,4,7/2,5,7/2,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,4,5/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,9/2,4,8,4,4,3,4,3,3,2,4,3,3,2,4,3,7/2,4,7,4,9/2,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,3,3,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,9/2,4,9,5,5,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,9/2,4,7,4,7/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,13/2,6,11,6,11/2,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,11/2,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,8,5,11/2,4,6,4,5,5,6,4,4,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,6,4,9/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,13/2,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,11/2,4,7,4,5,5,10,6,7,6,10,7,10,10,19,10,21/2,7,10,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,15/2,6,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,15/2,6,10,6,17/2,8,16,9,9,7,10,7,9,8,14,8,19/2,8,14,9,13,13,20,10,21/2,7,10,6,17/2,7,13,7,15/2,6,9,6,15/2,8,13,7,8,6,9,6,8,7,13,8,9,8,13,9,25/2,12,23,12,12,8,12,7,9,8,14,8,17/2,7,12,8,10,10,18,10,11,8,14,9,12,11,22,12,29/2,12,21,14,21,21,36,19,19,13,19,11,13,11,20,11,11,8,13,8,11,10,18,10,19/2,7,10,6,8,7,11,6,7,6,11,8,21/2,10,20,11,11,8,12,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,10,6,7,7,13,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,11,6,7,5,8,5,7,7,11,6,13/2,5,7,5,6,6,10,6,13/2,6,9,6,19/2,10,18,10,10,7,10,6,15/2,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,15,8,19/2,8,13,9,27/2,14,21,11,23/2,8,11,6,15/2,6,11,6,13/2,5,8,5,13/2,6,10,6,11/2,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,7/2,3,5,3,4,3,4,3,3,3,5,3,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,10,6,11/2,4,5,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,9,5,9/2,4,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,3/2,1,0,0,0,0,4,2,5/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,1,1,2,2,-5,-2,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,7/2,3,5,4,9/2,4,8,5,5,4,5,3,7/2,3,5,3,4,3,5,4,11/2,5,8,4,4,3,5,3,4,4,7,4,4,3,5,4,11/2,5,9,5,5,4,7,4,5,5,8,5,5,4,7,5,8,8,14 -9,5,5,4,5,3,3,3,4,3,3,2,3,3,4,7/2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,4,3,3,3,5,7/2,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,5/2,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,7/2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,11/2,8,5,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,8,5,6,4,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,13/2,9,9,14,15/2,8,5,7,9/2,6,5,9,5,6,4,6,4,6,6,10,11/2,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,16,8,8,6,8,5,6,11/2,10,6,6,5,9,6,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,9/2,8,6,8,15/2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,9/2,7,4,5,5,9,6,7,5,9,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,5/2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,7/2,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10 -13,7,7,5,15/2,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,11/2,4,6,5,10,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,3,8,4,4,3,5,4,5,4,7,4,4,3,9/2,3,4,4,5,3,3,2,7/2,3,4,4,5,3,3,3,9/2,4,5,5,10,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,4,5,3,4,3,9/2,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,5,4,7,5,6,6,11,6,6,4,11/2,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,15/2,5,6,6,12,7,8,7,23/2,8,12,11,13,7,7,5,7,4,5,5,8,5,6,4,13/2,4,6,6,9,5,6,4,13/2,4,5,5,6,4,4,3,5,4,5,6,11,6,7,5,15/2,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,13/2,4,4,3,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,13,7,7,5,13/2,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,15/2,5,6,6,10,6,7,6,21/2,7,10,11,22,12,12,8,23/2,7,8,6,11,6,7,6,19/2,6,8,8,13,7,8,6,17/2,6,7,6,11,7,8,6,10,7,10,10,17,9,9,7,11,6,7,6,12,7,7,6,19/2,7,10,10,16,9,10,7,11,7,9,9,14,8,10,8,27/2,10,14,14,20,10,10,7,21/2,6,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,8,13,9,12,12,24,13,13,9,25/2,8,9,8,15,9,10,8,13,8,11,10,19,11,12,9,14,9,13,12,23,13,15,13,22,15,22,22,38,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,19,10,11,8,23/2,7,8,8,12,7,8,6,21/2,7,10,10,22,12,12,8,25/2,7,8,7,13,7,8,6,19/2,6,9,9,15,8,8,6,10,6,8,7,14,8,10,8,13,9,12,12,20,11,11,8,25/2,7,8,7,13,7,8,6,17/2,6,7,7,13,7,7,6,17/2,5,6,6,11,6,7,6,21/2,8,11,11,19,10,10,7,21/2,6,8,7,13,7,8,6,9,6,9,8,15,9,10,8,23/2,8,10,9,15,9,10,8,29/2,10,14,14,23,12,12,8,12,7,8,7,11,6,6,5,17/2,6,7,7,11,6,6,4,13/2,4,5,4,7,4,5,4,13/2,4,6,6,12,6,6,5,7,4,4,3,6,3,3,2,7/2,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,10,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,1,1,0,0,0,1,1,1,3,2,1,1,1/2,0,0,0,4,3,3,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,1,1,1,2,2,2,1,1,1,2,2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,9/2,3,3,3,6,4,4,4,11/2,4,4,4,9,5,5,4,9/2,3,4,3,6,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,15/2,6,8,8,14 -8,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,3,3,3,4,5/2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,7/2,5,3,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,5/2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,9/2,5,4,5,7/2,4,4,7,4,5,4,6,9/2,6,6,10,6,6,9/2,7,4,4,4,7,4,5,4,6,4,6,6,9,5,6,9/2,7,9/2,6,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,8,8,11/2,8,5,6,5,9,5,6,5,8,5,7,6,11,13/2,7,11/2,8,6,8,7,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,13,7,7,11/2,8,5,7,13/2,11,6,7,5,7,9/2,5,5,8,5,5,4,6,9/2,6,6,13,7,7,5,8,5,5,9/2,8,9/2,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,5,9/2,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,6,9,11/2,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,9/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,2,3/2,1,1,1,1,1,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8 -9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,3,4,2,5/2,2,2,2,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,2,4,2,5/2,2,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,3,3,2,5/2,2,5,3,5/2,2,4,3,7/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,4,4,2,5/2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,3,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,5,3,3,2,4,3,3,3,4,3,7/2,4,6,4,5,5,9,5,5,3,5,3,4,4,5,3,7/2,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,8,8,11,6,6,4,6,4,9/2,4,7,4,9/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,4,3,7/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,7/2,3,6,4,5,4,7,5,7,7,8,5,5,4,6,4,7/2,3,5,3,3,2,3,3,4,4,5,3,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,4,3,7/2,3,6,4,4,3,5,4,5,5,7,4,4,3,6,4,5,5,8,5,11/2,5,8,6,17/2,8,16,9,9,6,8,5,13/2,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,11/2,4,8,6,15/2,8,13,7,7,5,8,5,11/2,5,9,5,6,5,7,5,7,7,11,6,7,5,8,5,13/2,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,11/2,6,8,5,11/2,4,7,5,13/2,6,12,7,7,5,7,5,13/2,6,10,6,7,6,10,7,10,9,18,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,14,8,9,7,10,7,9,9,17,10,11,9,16,11,16,16,29,15,29/2,10,15,9,21/2,9,16,9,9,7,10,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,15/2,8,17,9,9,7,10,6,13/2,6,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,15/2,6,10,7,10,9,16,9,9,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,6,6,5,6,4,5,4,8,5,11/2,5,8,6,8,8,13,7,7,5,7,4,11/2,5,10,6,13/2,5,8,5,7,7,11,6,13/2,5,9,6,15/2,7,12,7,15/2,6,11,8,11,11,16,9,9,6,8,5,6,5,9,5,11/2,4,7,4,11/2,6,8,5,5,3,5,3,7/2,4,5,3,7/2,3,5,4,9/2,5,10,6,11/2,4,5,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,8,5,5,4,5,3,7/2,4,5,3,7/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,2,2,2,1,1,1,1/2,0,2,1,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,2,2,2,2,2,5/2,2,6,3,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,5,3,7/2,4,6,4,9/2,4,6,4,6,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,5/2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,5,8,5,5,9/2,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,9/2,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,7/2,4,4,6,9/2,6,6,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,15/2,14,8,8,11/2,8,5,6,5,9,5,5,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,11/2,11,6,6,5,6,4,6,5,9,5,6,5,9,6,9,8,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,9/2,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,10,14,7,7,5,7,4,5,5,8,9/2,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,7/2,4,4,6,4,6,5,9 -15,8,8,6,8,5,6,6,19/2,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,6,6,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,6,5,11,6,5,4,5,3,4,4,11/2,4,4,3,3,3,4,4,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,1,1,2,2,3,2,3,2,7/2,2,3,3,5,4,5,5,9,5,5,4,5,3,4,4,15/2,4,4,3,4,3,3,3,7,4,5,4,6,4,4,4,15/2,4,5,4,5,4,5,5,11,6,6,4,5,3,4,4,11/2,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,9/2,3,3,3,4,3,4,4,12,6,6,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,8,5,6,6,15,8,8,6,10,6,8,8,27/2,8,9,7,12,9,13,13,19,10,10,7,11,7,8,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,15/2,4,5,5,8,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,6,7,6,11,8,11,10,13,7,8,6,8,5,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,17/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,15/2,5,6,5,7,5,7,7,10,6,6,4,6,4,6,6,23/2,7,8,8,14,10,14,13,25,13,13,9,13,8,10,9,31/2,9,10,8,12,7,9,9,14,8,8,6,9,6,8,7,12,7,9,7,12,8,11,11,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,11,18,10,10,7,11,7,10,10,35/2,10,11,9,15,10,15,15,22,12,12,9,13,8,10,8,27/2,8,8,6,10,7,9,9,19,10,11,8,13,8,10,9,31/2,9,11,9,16,11,15,14,28,15,15,11,16,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,15,10,13,13,25,14,16,14,24,16,24,25,46,24,24,17,25,14,17,14,25,13,14,11,17,11,14,13,24,13,13,9,14,9,11,10,35/2,10,11,9,15,10,13,12,26,14,14,10,15,9,10,8,14,8,9,7,12,8,11,11,22,12,13,9,14,8,10,9,31/2,9,11,9,16,11,15,14,27,14,15,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,6,8,5,6,6,11,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,12,8,11,10,18,10,11,8,12,8,10,10,37/2,10,12,10,18,12,18,17,24,12,12,8,12,7,9,8,13,8,9,7,11,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,4,13,7,8,6,8,5,6,5,17/2,5,5,3,4,3,3,3,6,4,4,3,4,3,3,2,7/2,2,3,2,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,4,2,2,1,1,1,1,1,3/2,1,0,0,0,0,0,0,9,5,6,4,6,4,4,4,13/2,4,4,3,4,3,4,3,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,2,2,3/2,2,2,2,4,3,4,4,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,11/2,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,13/2,4,4,3,5,4,6,6,9,5,5,4,7,4,5,5,17/2,5,6,5,8,5,6,6,12,6,6,5,7,5,6,5,17/2,5,6,6,10,7,10,9,17 -9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,15/2,11,6,6,9/2,7,4,5,4,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,15/2,8,5,7,5,6,5,8,5,6,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,10,6,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,9,6,8,15/2,14,8,9,8,13,9,13,27/2,25,13,13,9,14,8,10,8,14,15/2,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,11/2,7,7,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,11/2,10,11/2,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9 -10,6,11/2,4,5,3,4,4,7,4,4,4,6,4,9/2,4,8,4,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,2,2,0,1,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,4,3,3,3,5,3,7/2,3,6,4,11/2,6,8,5,11/2,4,6,4,9/2,4,7,4,5,4,5,4,9/2,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,7,4,5,4,7,4,5,5,10,6,6,4,5,4,9/2,4,6,4,4,4,5,4,5,5,8,5,11/2,4,6,4,9/2,4,6,4,9/2,3,4,3,9/2,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,13/2,6,9,5,9/2,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,6,4,4,3,3,2,3,3,6,4,4,4,5,4,5,5,9,5,9/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,7,4,5,4,5,4,9/2,4,8,5,6,5,10,7,19/2,9,15,8,17/2,6,8,5,6,5,9,5,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,11/2,5,8,5,7,7,11,6,13/2,5,8,5,11/2,5,8,5,11/2,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,11/2,5,9,5,11/2,4,7,5,6,6,12,7,7,5,8,5,13/2,6,10,6,7,6,10,7,19/2,9,16,9,9,7,9,6,7,6,10,6,7,6,10,6,17/2,8,13,7,15/2,6,10,6,17/2,8,15,9,10,9,15,10,29/2,15,28,14,29/2,10,16,9,21/2,9,15,8,9,7,11,7,9,8,16,9,9,7,9,6,15/2,6,12,7,15/2,6,9,6,8,8,16,9,19/2,6,9,6,13/2,6,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,13/2,6,10,7,19/2,10,17,9,9,6,9,6,13/2,6,11,6,7,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,11/2,5,7,5,15/2,8,14,8,15/2,6,8,5,6,5,9,5,11/2,4,7,5,13/2,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,23/2,11,15,8,8,6,7,5,6,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,4,9/2,4,6,4,4,4,6,4,9/2,4,8,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,7,4,9/2,3,5,3,7/2,4,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,7/2,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,8,4,4,3,4,3,7/2,3,6,4,4,4,6,4,11/2,6,10 -9,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,9/2,7,4,4,3,5,3,4,3,6,7/2,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,8,9/2,5,4,6,9/2,6,7,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,4,8,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,7/2,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,10,6,6,9/2,6,4,4,4,7,4,4,7/2,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,11/2,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,23,12,12,8,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,11/2,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,11/2,8,5,6,5,7,4,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,9/2,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,9/2,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,11/2,9,6,9,9,12,6,6,9/2,6,4,4,4,7,4,4,4,6,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8 -15,8,8,6,8,5,7,6,9,5,5,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,11/2,4,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,0,1,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,9/2,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,15/2,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,17/2,6,7,6,13,7,8,6,21/2,8,11,11,21,11,11,8,12,7,8,6,12,7,8,6,9,6,8,7,13,7,8,6,15/2,4,5,5,8,5,6,4,13/2,4,6,6,13,7,8,6,8,5,5,5,8,5,6,4,13/2,4,6,5,8,5,6,4,13/2,4,5,5,7,4,5,5,17/2,6,8,8,12,6,6,4,11/2,4,4,3,6,4,4,3,4,3,3,3,8,5,5,4,5,4,5,4,8,5,6,5,15/2,5,6,6,11,6,6,4,6,4,5,5,7,4,4,3,5,4,6,6,10,6,6,5,15/2,5,6,6,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,10,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,9,9,14,8,8,6,9,6,7,6,9,5,6,5,17/2,6,8,8,14,8,8,6,19/2,6,8,7,12,7,9,8,25/2,8,12,12,17,9,9,7,10,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,19/2,6,8,7,13,8,9,7,12,8,11,11,21,11,11,8,23/2,7,9,8,13,7,8,7,23/2,8,10,10,18,10,10,8,12,8,10,10,19,11,13,11,39/2,14,20,20,39,20,20,14,21,12,14,11,21,11,12,9,29/2,9,12,11,21,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,23,12,13,9,13,7,8,7,12,7,8,6,21/2,7,10,10,18,10,10,8,23/2,7,8,7,12,7,8,8,27/2,9,13,13,23,12,12,8,23/2,7,8,7,14,8,8,6,9,6,7,7,14,8,8,6,8,5,7,6,10,6,8,6,21/2,7,10,10,20,11,11,8,11,7,9,8,12,7,7,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,15,10,14,14,20,10,10,7,19/2,6,7,6,11,6,6,5,17/2,6,7,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,5/2,2,3,3,9,5,5,4,11/2,4,4,4,7,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,6,4,4,3,9/2,3,3,3,3,2,3,3,4,3,3,3,6,4,4,3,9/2,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,0,0,0,1,3/2,2,2,1,1,1,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,9/2,4,5,5,8,4,4,3,7/2,3,4,4,4,3,3,3,11/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,12 -10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,3,4,5/2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,4,6,7/2,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,9/2,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,5,9,6,8,8,14,15/2,8,5,7,4,5,9/2,8,5,5,4,7,9/2,6,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,15/2,8,11/2,8,5,6,11/2,9,5,6,5,8,5,7,7,12,7,7,11/2,8,11/2,7,7,13,8,9,8,13,9,13,13,25,13,13,9,13,8,9,15/2,14,15/2,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,11/2,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,9,5,6,6,10,7,9,9,14,7,7,5,7,4,5,4,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,5/2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,7/2,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8 -14,8,15/2,6,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,5/2,2,3,2,5/2,2,3,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,3,3,4,3,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,8,4,9/2,4,5,3,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,3,4,3,4,4,6,4,4,4,7,5,13/2,6,12,6,13/2,5,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,8,5,7,6,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,15/2,6,9,6,15/2,7,12,7,7,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,12,7,7,5,7,4,11/2,4,7,4,9/2,4,6,4,9/2,4,8,5,5,4,6,4,9/2,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,5,3,4,4,7,4,11/2,4,6,4,13/2,6,10,6,6,4,6,4,5,4,8,4,9/2,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,7,8,7,12,8,12,12,20,10,21/2,7,10,6,7,6,11,6,13/2,5,9,6,15/2,7,12,7,7,5,8,5,6,5,9,5,11/2,5,8,6,8,8,14,8,15/2,5,7,4,11/2,5,9,5,6,5,7,5,7,7,12,7,15/2,6,8,6,15/2,7,12,7,17/2,7,12,8,11,11,16,8,8,6,9,6,13/2,6,10,6,6,5,8,6,8,8,14,8,15/2,6,8,5,7,6,11,6,15/2,6,11,8,21/2,10,19,10,21/2,7,11,7,17/2,8,12,7,8,7,10,7,9,9,18,10,21/2,8,12,8,10,10,18,11,13,11,18,13,19,19,35,18,37/2,13,18,10,25/2,10,19,10,11,8,14,9,23/2,11,20,11,11,8,12,8,19/2,8,15,9,10,8,12,8,11,11,21,11,11,8,11,6,15/2,6,11,6,7,6,10,7,19/2,10,17,9,10,7,10,6,15/2,7,12,7,8,7,12,9,13,13,20,10,21/2,8,10,6,15/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,6,8,5,6,5,9,6,7,6,9,6,9,9,19,10,21/2,7,10,6,8,7,12,6,13/2,5,8,5,7,7,14,8,15/2,6,9,6,7,7,12,7,17/2,8,13,9,13,13,20,10,21/2,7,10,6,7,6,11,6,6,5,8,5,13/2,6,10,6,11/2,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,4,3,7/2,4,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,9/2,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3/2,2,3,2,3,3,2,2,3/2,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,9/2,3,4,3,4,3,5,3,7/2,3,5,3,4,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,3,4,4,9,5,11/2,4,7,4,11/2,5,8,4,9/2,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,5,3,4,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,9,5,6,9/2,6,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,5/2,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,7/2,5,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,4,6,9/2,6,6,11,6,6,5,7,5,6,5,8,5,6,9/2,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,12,7,7,5,7,9/2,6,9/2,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,4,4,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,7,8,7,12,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,9/2,6,5,8,5,6,5,7,5,7,7,12,7,7,11/2,8,11/2,7,7,12,7,8,7,11,8,11,11,16,8,8,6,9,11/2,6,6,10,6,6,5,8,6,8,7,13,7,7,5,8,5,6,6,10,6,8,13/2,11,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,9,9,17,19/2,10,8,12,8,10,19/2,17,10,12,21/2,18,25/2,18,18,34,35/2,18,12,18,10,12,10,18,10,11,8,13,8,11,11,20,11,11,8,12,15/2,9,8,14,8,9,7,11,8,11,11,20,11,11,8,11,13/2,8,7,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,17/2,12,12,20,10,10,15/2,10,6,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,17/2,12,12,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,9/2,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,5/2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,4,4,6,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,8,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11 -26,14,14,10,15,9,11,9,16,9,9,7,10,6,8,8,31/2,8,8,6,8,5,6,6,10,6,7,5,8,6,9,9,11,6,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,11,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,4,6,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,4,3,4,4,7,5,7,7,8,5,5,3,4,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,8,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,15/2,4,5,4,5,4,5,5,8,5,5,4,7,5,8,8,15,8,8,6,9,5,6,5,8,5,6,5,7,4,5,5,17/2,5,6,5,8,6,8,7,13,8,9,7,12,8,12,12,21,11,12,9,13,8,10,8,14,8,9,8,14,9,13,13,24,13,14,10,15,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,11,13,11,18,10,11,9,14,9,12,12,43/2,11,11,8,12,7,9,8,15,8,9,7,12,8,12,12,22,12,12,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,6,9,6,8,8,16,9,11,9,16,11,15,15,20,11,11,8,12,7,8,7,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,18,10,10,7,11,7,8,7,13,8,9,7,11,7,10,10,35/2,10,10,8,12,8,11,11,20,12,14,12,21,14,21,21,37,19,19,13,20,12,14,12,20,11,13,10,16,10,14,13,49/2,13,14,10,15,9,11,10,18,10,12,10,16,11,15,15,25,13,14,10,16,10,12,10,18,10,11,9,15,10,13,12,45/2,12,13,9,14,9,11,11,20,12,14,12,21,14,21,21,31,16,16,11,16,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,16,10,12,11,19,11,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,13,11,18,12,18,17,33,18,20,15,24,15,20,19,36,20,23,19,34,23,34,34,66,34,34,23,35,20,24,20,35,19,21,16,25,16,22,20,38,19,19,13,20,12,14,13,23,13,14,12,20,14,20,20,38,20,20,14,21,12,15,13,23,13,14,11,18,12,16,16,63/2,16,16,12,18,11,14,13,25,14,17,14,25,16,23,23,38,20,20,14,20,11,13,11,20,11,12,9,15,10,14,13,47/2,13,14,10,15,9,12,11,21,12,13,11,18,12,17,17,38,19,19,13,20,11,13,11,20,11,13,10,16,10,14,14,26,14,14,10,15,10,13,12,22,13,15,13,22,15,22,23,37,19,19,14,21,12,15,12,21,11,12,9,14,9,11,10,37/2,10,11,8,12,7,9,8,15,9,10,8,12,8,11,10,16,9,9,6,9,5,6,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,16,9,9,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,6,4,4,3,5,4,5,5,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,6,6,10,5,5,4,6,4,6,6,23/2,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,29/2,8,9,7,10,6,8,7,12,7,8,7,12,8,12,11,21 -14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,5,5,6,7/2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,5/2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,9/2,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,13/2,12,13/2,6,5,7,9/2,5,9/2,8,5,5,4,5,7/2,4,4,8,4,4,7/2,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,6,11/2,9,6,8,8,14,15/2,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,11/2,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,13/2,8,7,11,6,7,6,10,7,10,10,17,10,11,8,13,8,11,10,19,11,12,10,18,12,18,18,34,18,18,25/2,18,11,13,11,18,10,11,17/2,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,8,7,14,8,9,8,13,9,13,13,20,11,11,8,11,6,7,6,11,6,7,11/2,8,6,8,7,12,7,8,6,8,5,7,6,11,6,7,6,10,7,9,9,20,21/2,10,7,11,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,11/2,7,7,12,7,8,7,12,8,12,12,20,10,10,8,11,7,8,7,12,13/2,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,5/2,3,2,3,3,4,3,3,3,4,3,3,3,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,6,11 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,5,5,3,4,3,7/2,3,7,4,5,4,5,4,5,5,6,4,7/2,2,4,3,3,3,4,3,7/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,4,4,6,4,11/2,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,4,3,6,4,7/2,2,3,2,7/2,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,3,4,3,9/2,5,9,5,5,4,5,3,7/2,3,4,3,3,3,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,7,5,13/2,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,15/2,6,9,6,7,6,12,7,8,7,12,8,12,12,22,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,11/2,5,9,5,11/2,4,6,4,6,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,11/2,4,6,4,5,5,10,6,6,5,9,6,9,8,11,6,7,5,7,4,5,5,8,5,5,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,5,4,6,5,7,7,11,6,13/2,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,13/2,6,12,7,17/2,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,13/2,6,9,6,17/2,8,15,8,17/2,6,10,6,7,6,10,6,7,6,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,19/2,6,10,6,7,6,11,6,6,5,8,6,15/2,8,13,7,8,6,8,5,13/2,6,11,6,15/2,6,10,7,21/2,11,19,10,21/2,8,12,7,17/2,8,12,7,15/2,6,10,7,11,11,18,10,11,9,13,8,23/2,11,20,11,13,11,19,13,39/2,20,36,19,19,13,19,11,13,11,19,10,23/2,9,14,9,12,11,21,11,11,8,12,7,17/2,8,13,8,17/2,7,11,8,11,11,22,12,23/2,8,12,7,9,7,14,8,9,7,10,7,10,10,18,10,10,7,11,7,17/2,8,15,9,10,8,14,10,14,14,22,12,12,8,12,7,8,7,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,7,11,6,15/2,6,10,7,10,10,22,12,23/2,8,11,7,8,7,12,7,7,6,10,6,17/2,8,14,8,17/2,6,8,6,15/2,7,12,7,9,8,12,8,25/2,13,21,11,11,8,12,7,17/2,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,13/2,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,7/2,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,7/2,4,6,3,3,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,7,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,-1/2,0,0,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,4,3,3,3,4,3,3,3,4,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,9/2,4,8,5,5,4,5,4,9/2,4,7,4,5,4,7,5,15/2,7,12 -11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,5,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,9/2,7,5,6,5,9,11/2,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,6,4,4,7/2,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,9/2,5,4,6,5,7,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,4,5,5,9,11/2,6,5,9,13/2,10,10,16,17/2,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,14,8,8,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,11/2,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,6,8,8,14,8,8,13/2,10,13/2,9,8,14,8,10,8,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,10,7,9,17/2,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,17/2,8,6,9,11/2,7,11/2,10,6,7,5,8,6,8,7,13,7,8,11/2,8,5,6,6,11,7,8,6,10,15/2,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,9/2,6,4,5,5,8,5,6,5,8,11/2,8,8,16,17/2,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,6,4,6,5,9,6,7,6,10,7,10,10,16,9,9,13/2,10,6,6,5,10,11/2,6,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,5/2,3,3,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,7/2,5,3,4,7/2,6,4,6,6,10 -18,10,10,7,19/2,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,11/2,4,4,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,6,4,11/2,4,5,5,8,5,5,4,13/2,4,6,6,11,6,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7/2,3,4,5,7,4,4,3,9/2,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,7/2,2,3,3,5,3,4,3,9/2,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,7/2,3,4,4,5,3,4,3,4,3,3,3,7,4,5,4,13/2,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,11/2,4,4,4,6,4,4,3,9/2,4,5,5,8,5,5,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,9,6,8,8,16,9,9,7,21/2,7,9,8,15,9,10,8,27/2,10,14,14,26,13,13,9,13,8,9,8,13,7,8,6,19/2,6,8,8,15,8,8,6,15/2,5,6,6,9,5,6,5,15/2,5,7,7,14,8,8,6,15/2,5,6,5,9,5,6,5,15/2,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,13,7,7,5,8,5,7,6,10,6,6,4,13/2,4,6,6,9,5,5,4,13/2,4,4,4,7,5,6,5,15/2,5,7,7,13,7,7,5,15/2,5,6,6,11,6,7,6,9,6,8,7,11,6,7,5,8,5,7,7,15,9,10,8,29/2,10,15,15,25,13,14,10,29/2,8,9,8,14,8,9,7,21/2,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,19/2,7,10,10,17,9,10,7,21/2,6,8,7,13,7,8,6,10,6,8,8,16,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,22,12,12,8,11,7,9,8,13,7,8,6,9,6,9,9,15,8,9,6,19/2,6,8,7,14,8,9,7,12,8,12,12,22,12,12,9,14,8,10,9,14,8,9,8,13,9,12,12,22,12,12,10,31/2,10,13,12,22,13,15,13,22,15,23,23,43,22,22,15,45/2,13,16,14,23,12,13,10,33/2,10,14,13,24,12,12,8,25/2,8,10,9,15,8,9,8,25/2,8,12,12,25,13,14,10,27/2,8,10,8,16,9,10,8,13,9,12,11,21,11,11,8,12,8,10,9,17,10,11,10,33/2,11,16,16,27,14,14,10,29/2,9,11,9,16,9,9,7,23/2,8,10,10,16,9,9,7,21/2,6,8,7,13,8,9,8,25/2,8,12,12,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,8,15,9,10,9,31/2,11,16,16,26,14,14,10,31/2,9,10,8,15,8,9,7,10,7,9,8,13,7,8,6,8,5,7,6,10,6,6,5,15/2,6,8,7,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,3,9,5,5,4,9/2,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,6,6,13,7,7,5,7,4,4,3,5,3,3,3,9/2,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,9/2,3,4,4,11,6,7,5,15/2,5,6,5,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,16 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,9,11/2,6,5,9,13/2,10,19/2,16,9,9,6,9,5,6,5,9,5,6,5,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,11/2,8,8,14,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,17/2,10,9,15,8,9,7,10,7,9,17/2,15,8,8,6,8,5,7,6,10,11/2,6,5,8,6,8,8,16,17/2,9,6,9,11/2,7,11/2,10,6,6,5,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,7,5,6,6,11,6,6,5,7,9/2,6,5,9,11/2,6,6,10,7,10,10,17,9,9,7,10,6,6,5,10,11/2,6,5,6,9/2,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,6,3,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,6,7/2,4,3,4,3,4,7/2,6,4,4,7/2,6,4,6,6,11 -15,8,17/2,6,8,5,11/2,5,8,5,11/2,4,7,5,6,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,2,4,3,3,3,6,4,7/2,2,4,3,3,3,5,4,9/2,4,6,4,6,5,10,6,11/2,4,5,3,3,3,6,4,4,3,4,3,4,3,5,3,7/2,3,4,3,4,4,6,4,4,4,6,4,13/2,7,14,8,15/2,5,7,4,11/2,5,8,5,6,5,7,5,13/2,7,14,8,8,6,9,6,7,7,13,8,9,7,11,8,12,12,21,11,23/2,8,12,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,7,5,6,4,6,5,8,5,5,5,7,5,13/2,6,12,6,6,4,6,4,5,4,7,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,5,11/2,5,8,5,7,7,11,6,13/2,5,7,5,6,5,7,4,4,3,6,4,9/2,4,9,5,5,4,6,4,9/2,4,7,4,5,4,7,5,13/2,6,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,8,5,7,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,25/2,12,22,12,23/2,8,12,7,15/2,7,12,7,15/2,6,8,6,15/2,7,14,8,8,6,9,5,6,6,10,6,13/2,6,8,6,17/2,8,15,8,9,6,10,6,7,6,10,6,13/2,5,8,5,7,6,13,7,13/2,5,8,5,6,6,11,7,8,7,12,8,23/2,12,20,11,11,7,10,6,7,6,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,8,5,13/2,6,11,7,8,6,10,7,21/2,10,19,10,10,8,12,7,8,7,12,7,15/2,6,11,7,10,10,19,10,11,8,12,8,21/2,10,18,10,25/2,11,19,13,19,19,36,19,19,13,20,12,27/2,12,20,11,12,9,14,9,12,11,19,10,21/2,8,10,7,9,8,13,7,8,7,11,8,11,11,21,11,11,8,12,7,9,7,14,8,17/2,6,10,7,9,9,16,9,19/2,7,10,6,8,7,14,8,9,8,14,10,27/2,14,24,12,25/2,9,14,8,10,8,13,7,15/2,6,10,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,12,8,21/2,10,20,10,21/2,8,11,7,8,7,11,6,13/2,5,9,6,8,7,14,8,17/2,6,9,6,8,7,12,7,8,7,13,9,13,13,24,12,25/2,9,13,7,8,7,13,7,8,6,8,6,15/2,7,10,6,6,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,4,3,4,3,5,3,5/2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,7,4,4,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,5,3,5/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,3,4,4,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,4,3,4,3,7/2,4,5,3,4,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,4,9,5,5,4,6,4,4,4,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,8,6,8,8,15 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,5/2,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,6,4,5,5,8,5,5,9/2,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,9/2,6,4,6,5,8,5,5,9/2,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,9/2,6,4,6,5,9,5,6,9/2,7,5,6,6,10,6,6,5,7,5,7,7,12,7,8,7,11,8,12,12,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,13/2,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,7,10,19/2,18,10,10,15/2,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,11,18,10,10,7,10,13/2,8,7,12,7,8,7,11,8,11,10,19,10,10,7,11,13/2,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,13,15/2,9,8,13,9,12,13,23,12,12,9,13,8,9,8,12,7,8,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,4,5/2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,3/2,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,7/2,5,4,5,5,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,7,7,14 -27,14,14,10,16,9,11,9,31/2,8,9,7,10,6,8,8,17,9,9,7,10,6,7,6,10,6,7,5,8,6,9,9,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,13,7,8,6,8,5,6,6,21/2,6,7,5,8,5,7,7,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,9/2,3,3,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,3,3,5,3,3,3,6,4,4,3,4,3,4,4,15/2,4,5,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,9,16,9,9,6,8,5,6,6,19/2,6,6,4,6,4,6,6,10,6,6,5,7,5,6,6,19/2,6,7,6,11,8,11,11,23,12,12,8,12,8,10,8,29/2,8,10,8,12,8,12,11,25,13,14,11,17,10,13,12,43/2,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,8,11,6,7,6,11,6,7,5,8,6,9,9,16,9,9,7,10,6,8,8,29/2,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,7,11,8,11,11,19,10,11,8,11,7,9,9,16,9,9,7,11,7,10,10,18,10,11,9,14,9,13,12,22,13,15,13,23,16,23,22,39,20,20,13,19,11,14,12,20,11,11,8,13,9,12,11,24,13,13,9,14,8,10,10,35/2,10,11,9,15,10,14,14,27,14,14,10,15,9,12,10,18,10,10,7,11,7,10,10,20,11,12,9,14,9,11,10,18,11,13,11,18,13,19,19,35,18,17,12,17,10,12,10,18,10,10,8,13,9,12,12,22,12,13,10,15,9,11,10,18,10,12,10,17,12,17,17,35,18,18,13,20,12,15,13,23,13,14,11,18,12,17,17,34,18,19,15,24,15,19,18,67/2,19,23,19,34,23,33,33,64,33,33,23,34,19,23,20,35,19,21,16,25,16,22,20,34,17,17,12,18,11,14,13,47/2,13,15,12,20,13,19,19,36,19,19,13,20,12,14,12,45/2,12,14,10,16,11,15,14,28,15,16,11,17,10,13,12,23,13,15,13,22,15,23,23,44,23,23,16,24,14,16,14,47/2,12,13,10,16,10,14,14,25,13,14,10,15,9,12,11,41/2,12,14,11,18,12,18,18,36,19,19,13,18,10,12,11,19,10,11,8,13,9,12,12,26,14,15,11,17,11,14,12,22,13,15,13,23,16,23,22,43,22,22,15,21,12,15,12,43/2,12,12,9,13,9,12,11,18,10,10,7,11,7,8,8,14,8,8,7,11,7,10,10,19,10,9,6,9,6,7,6,9,5,5,4,5,4,5,5,7,4,5,4,6,4,4,4,15/2,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,5/2,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,6,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,2,2,4,3,3,3,11/2,4,4,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,5,8,5,5,4,5,4,5,5,10,5,5,3,4,3,4,4,11/2,3,3,3,4,3,5,5,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,26 -15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,7,13/2,12,13/2,7,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,10,11/2,6,4,6,4,5,9/2,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,5,9,5,6,4,7,5,6,6,11,6,6,5,8,5,7,7,13,8,9,8,13,9,13,13,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,11/2,7,6,10,6,6,9/2,7,9/2,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,11/2,7,6,10,6,7,6,10,7,10,10,20,10,10,15/2,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,9,14,9,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,13,11,20,11,12,9,14,9,12,11,19,10,10,7,10,13/2,8,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,9,6,9,8,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,25,13,13,9,14,8,9,8,14,15/2,8,6,10,6,8,8,14,8,8,6,9,11/2,7,7,12,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,11/2,7,7,15,8,9,7,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,7,9,15/2,12,7,7,5,8,5,7,7,10,6,6,9/2,6,4,5,5,8,5,5,4,7,9/2,6,6,11,6,5,4,5,7/2,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1/2,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,7/2,4,4,5,4,6,11/2,11,6,6,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,7/2,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,9/2,8,5,5,5,8,11/2,8,8,15 -18,10,19/2,7,10,6,7,6,11,6,13/2,5,7,5,13/2,6,12,6,13/2,5,6,4,9/2,4,7,4,5,4,6,4,6,6,9,5,5,4,4,3,4,4,6,4,4,3,4,3,9/2,5,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,11,6,6,4,5,4,9/2,4,5,3,7/2,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,5,3,7/2,2,5,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,6,4,7/2,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,13/2,6,10,6,6,4,6,4,9/2,4,7,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,4,4,7,4,11/2,5,8,6,15/2,8,15,8,8,6,8,5,7,6,10,6,13/2,6,8,6,8,8,16,9,10,7,11,7,10,9,14,8,19/2,8,14,10,29/2,14,26,14,27/2,10,14,8,19/2,8,14,8,9,7,11,7,17/2,8,15,8,17/2,6,8,5,6,6,9,6,13/2,5,8,5,7,7,13,7,8,6,8,5,11/2,5,8,4,9/2,4,6,4,6,6,10,6,6,5,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,15,8,17/2,6,8,5,6,5,8,5,5,4,6,4,5,5,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,7,5,8,8,14,8,15/2,6,8,5,6,6,11,6,13/2,5,8,6,15/2,8,13,7,15/2,6,10,6,8,8,15,9,21/2,9,16,11,15,15,26,14,27/2,9,14,8,19/2,8,14,8,8,6,9,6,17/2,8,15,8,17/2,6,9,6,15/2,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,15/2,7,12,7,7,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,24,12,12,8,12,7,17/2,8,12,7,15/2,6,9,6,17/2,8,15,8,17/2,6,10,6,8,7,12,7,17/2,7,11,8,23/2,12,23,12,25/2,9,13,8,19/2,8,16,9,10,8,13,8,23/2,12,23,12,27/2,10,16,10,13,12,22,13,31/2,13,22,15,22,22,43,22,22,15,22,13,15,13,23,13,14,11,17,11,14,13,23,12,12,8,12,8,10,9,16,9,21/2,8,14,9,13,13,24,13,27/2,10,14,8,10,9,16,9,19/2,7,11,7,10,10,18,10,10,8,12,8,19/2,9,16,9,21/2,9,15,10,31/2,16,31,16,16,11,16,9,11,10,16,9,19/2,8,12,8,10,10,17,9,19/2,7,10,6,17/2,8,14,8,9,7,12,8,25/2,12,24,12,25/2,8,12,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,21/2,9,16,11,31/2,15,29,15,29/2,10,15,9,21/2,9,15,8,8,6,9,6,17/2,8,12,7,7,5,7,4,11/2,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,4,3,4,3,7,4,4,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,13/2,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,7/2,4,7,4,7/2,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,9,5,5,4,6,4,9/2,4,7,4,4,3,5,4,9/2,4,8,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,17 -15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,11/2,10,11/2,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,9/2,5,7/2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,9/2,9,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,5/2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,11/2,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,9/2,6,7,13,7,7,5,7,9/2,6,5,8,5,5,5,7,5,7,7,14,8,8,6,9,6,8,15/2,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,8,5,5,5,7,5,7,7,13,7,8,11/2,7,9/2,5,5,7,4,4,7/2,5,4,5,5,9,5,6,4,6,4,5,9/2,8,9/2,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,9,5,6,4,7,5,6,13/2,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,22,12,12,8,12,7,8,7,11,13/2,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,15/2,11,11,20,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,11/2,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,17/2,14,17/2,11,10,18,21/2,12,11,18,12,18,18,35,18,18,25/2,18,11,13,11,19,11,12,9,14,9,12,11,19,10,10,7,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,15,8,9,7,10,13/2,8,8,14,8,9,8,13,9,13,13,26,14,14,19/2,14,8,9,8,14,8,8,13/2,10,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,10,10,20,10,10,7,10,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,15/2,9,8,12,7,7,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,9/2,7,5,7,13/2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,12,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,7/2,6,7/2,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,4,5,9/2,8,11/2,8,8,15 -25,13,14,10,29/2,8,10,8,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,10,6,6,5,8,6,9,9,13,7,8,6,15/2,5,6,6,8,5,6,5,7,5,7,6,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,15/2,5,6,5,9,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,5,3,3,3,5,3,4,4,4,3,3,3,11/2,4,6,6,10,5,5,4,5,3,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,15/2,5,7,7,12,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,6,5,17/2,6,9,9,14,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,6,10,6,6,4,13/2,4,6,6,10,6,7,6,21/2,8,12,12,23,12,12,8,12,7,9,8,13,8,9,8,25/2,8,12,12,24,13,13,10,31/2,10,13,12,22,12,14,12,21,14,21,21,39,20,20,14,41/2,12,15,13,21,11,12,10,31/2,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,23/2,8,10,10,19,10,10,8,23/2,7,8,7,12,7,7,5,8,6,8,8,15,8,8,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,13,9,13,8,9,8,12,7,7,6,9,6,8,8,16,8,8,6,19/2,6,8,7,13,7,8,6,21/2,7,10,11,21,11,11,8,23/2,7,9,8,16,9,9,7,11,8,11,11,20,11,12,9,14,9,12,11,20,12,14,12,43/2,14,21,21,40,20,20,14,39/2,12,14,12,19,10,11,8,27/2,9,12,12,21,11,12,8,25/2,8,10,9,16,9,11,9,29/2,10,14,14,24,13,14,10,29/2,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,27/2,8,10,9,18,10,12,10,37/2,12,18,18,35,18,18,12,37/2,10,12,10,19,10,11,9,14,9,12,12,22,12,13,9,14,9,11,10,17,10,11,10,33/2,11,16,16,33,17,18,12,18,11,14,12,23,13,14,11,37/2,12,17,17,34,18,19,14,47/2,15,20,18,32,18,21,18,32,22,32,32,62,32,32,22,65/2,19,23,20,33,18,19,15,24,15,20,19,34,18,18,13,39/2,12,16,14,24,14,16,13,43/2,14,19,19,36,19,19,14,41/2,12,14,12,22,12,13,10,15,10,14,14,27,14,15,11,35/2,11,14,13,24,14,17,14,24,16,23,23,46,24,24,16,49/2,14,17,14,24,13,14,11,17,11,15,14,26,14,14,10,29/2,9,12,11,20,11,13,10,17,12,17,17,35,18,18,12,35/2,10,12,10,20,11,11,8,27/2,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,23,15,22,22,43,22,22,15,43/2,12,15,13,21,11,12,9,27/2,9,12,11,18,10,10,7,21/2,6,8,7,13,8,9,8,25/2,8,12,11,19,10,10,7,21/2,6,8,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,4,4,8,5,5,4,6,4,5,5,10,6,6,4,13/2,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,9/2,3,4,4,4,3,3,3,9/2,3,4,5,8,5,5,3,4,3,3,3,6,4,4,3,3,2,2,2,5,3,3,3,9/2,3,4,3,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,7/2,2,3,3,7,4,4,3,9/2,2,2,2,5,3,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,7/2,3,4,3,6,4,4,4,11/2,4,5,5,7,4,5,4,11/2,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,9,20,10,10,7,9,6,7,6,10,6,6,4,13/2,4,6,5,8,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,12,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,6,12,7,8,6,10,7,9,8,12,7,8,7,25/2,9,14,14,26 -17,9,10,7,10,6,7,6,11,6,7,11/2,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,9/2,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,6,6,9,11/2,6,11/2,8,6,8,8,16,9,9,7,10,7,9,8,15,9,10,9,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,8,5,6,6,9,11/2,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,7,5,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,7,15/2,15,8,8,6,8,5,6,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,10,6,8,7,11,6,7,5,8,11/2,7,7,12,7,7,6,9,6,7,6,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,22,12,12,17/2,13,8,10,8,15,9,10,8,12,8,12,12,23,12,13,10,16,10,13,12,21,12,14,12,22,15,22,22,42,22,22,15,22,13,15,13,22,12,13,10,16,10,14,13,23,12,13,9,14,17/2,11,10,16,19/2,11,9,14,19/2,13,13,24,13,13,9,14,8,9,8,15,8,9,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,12,10,16,11,16,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,17,9,10,7,11,7,10,9,16,9,11,9,16,21/2,15,15,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,11/2,6,5,8,6,8,8,13,7,7,5,7,9/2,6,9/2,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,3,2,2,2,4,3,3,7/2,6,7/2,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,9,5,6,5,9,7,10,10,18 -25,13,14,10,15,9,10,9,16,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,11/2,4,7,5,7,6,12,7,7,5,7,4,11/2,5,8,5,6,5,8,6,15/2,8,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,8,5,5,4,6,4,9/2,4,6,4,9/2,3,4,3,4,4,9,5,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,5,4,5,3,4,4,7,4,4,3,4,3,7/2,4,7,4,4,3,5,4,9/2,4,8,5,11/2,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,13/2,5,8,5,6,5,10,6,6,5,9,6,17/2,8,14,8,8,6,9,6,13/2,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,11/2,5,9,6,13/2,6,10,7,11,11,21,11,11,8,11,7,9,8,13,8,9,8,12,8,12,12,23,12,27/2,10,15,10,25/2,12,23,13,15,13,21,14,43/2,22,40,21,21,14,21,12,29/2,12,21,12,13,10,16,10,27/2,12,22,12,12,9,12,7,17/2,8,13,8,17/2,7,11,7,10,10,18,10,10,7,10,6,7,6,12,7,8,6,9,6,8,8,14,8,8,6,9,6,15/2,7,12,7,9,7,12,8,12,12,23,12,25/2,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,17/2,7,12,8,11,11,22,12,12,8,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,27/2,12,21,14,41/2,20,40,20,41/2,14,20,12,27/2,12,20,11,11,9,14,9,12,11,21,11,12,9,14,8,21/2,9,17,10,21/2,8,14,10,27/2,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,18,10,11,8,12,8,19/2,9,17,10,12,10,18,12,35/2,18,34,17,17,12,18,10,12,10,19,10,23/2,9,14,9,13,13,24,13,27/2,10,15,9,11,10,18,10,23/2,10,17,12,17,17,32,17,35/2,12,19,11,27/2,12,22,12,27/2,11,18,12,17,17,33,18,19,14,23,14,37/2,17,31,18,43/2,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,39/2,15,24,15,20,19,34,18,19,13,20,12,31/2,14,24,14,31/2,12,21,14,39/2,19,36,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,29/2,14,24,14,17,14,23,16,23,23,46,24,47/2,16,24,14,17,14,25,14,15,11,17,11,15,14,26,14,14,10,15,9,12,11,20,11,25/2,10,18,12,35/2,18,35,18,18,12,18,10,12,11,19,10,23/2,9,14,9,13,13,25,13,27/2,10,16,10,14,13,23,13,31/2,13,23,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,23/2,11,19,10,21/2,8,12,7,17/2,8,14,8,9,7,12,8,23/2,11,20,10,10,7,10,6,15/2,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,7/2,4,5,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,6,4,7/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,5,5,9,5,11/2,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,11,8,21/2,10,19,10,10,7,10,6,7,6,10,6,11/2,4,6,4,11/2,5,8,5,5,4,5,3,7/2,3,6,4,4,3,6,4,11/2,6,12,7,7,5,7,4,11/2,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,17/2,8,14,10,27/2,14,26 -25,13,14,10,15,9,10,9,16,9,10,7,11,7,10,9,16,8,8,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,9/2,7,5,7,13/2,12,7,7,5,7,9/2,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,9,11/2,6,11/2,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,11,7,9,8,14,8,9,8,12,8,12,12,23,12,13,10,15,10,13,12,23,13,15,13,21,29/2,22,22,41,21,21,14,21,12,14,12,21,12,13,10,16,10,13,12,22,12,12,9,12,7,8,15/2,13,15/2,8,7,11,7,10,10,18,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,15/2,8,7,12,8,11,11,22,12,12,17/2,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,40,21,21,14,20,12,14,12,20,11,12,9,14,9,12,11,21,11,12,9,14,8,10,9,17,10,11,9,14,10,14,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,19,10,11,8,12,8,10,9,17,10,12,10,18,12,18,17,33,17,17,12,17,10,12,11,19,21/2,12,9,15,10,13,13,24,13,14,10,15,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,19,11,14,12,21,12,13,11,18,12,17,17,33,18,19,14,22,14,18,17,31,18,22,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,19,29/2,23,29/2,19,18,34,18,19,13,20,12,15,14,24,14,16,25/2,21,14,20,19,37,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,14,27/2,24,14,16,14,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,11,18,11,15,14,26,14,14,10,15,9,12,11,20,11,12,10,18,12,18,18,34,18,18,12,18,10,12,11,19,21/2,12,9,14,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,22,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,12,11,20,21/2,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,15/2,11,13/2,8,6,10,6,6,9/2,7,4,5,5,8,9/2,5,4,6,4,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,9,8,14,10,14,14,26 -50,26,27,19,28,16,20,17,30,16,18,13,21,13,18,17,31,16,16,11,16,10,12,10,18,10,11,9,16,10,14,14,27,14,15,10,15,9,11,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,10,9,16,9,11,9,16,10,14,14,27,14,14,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,13,7,7,5,8,5,7,7,12,7,7,5,8,6,8,8,14,8,9,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,12,8,11,11,21,11,12,9,14,9,11,10,18,10,12,10,16,11,15,15,28,15,15,11,17,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,8,10,10,18,11,13,11,20,14,21,21,41,21,21,15,22,13,17,15,27,15,17,14,24,16,23,23,44,23,25,19,30,19,25,23,44,25,29,24,42,28,42,42,82,41,41,27,40,23,28,23,41,22,24,18,30,19,25,23,44,23,23,16,24,14,16,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,17,11,16,15,28,15,15,11,18,11,14,13,23,13,15,13,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,12,20,13,18,17,32,17,17,12,18,11,15,14,25,14,16,13,22,15,21,21,42,22,23,16,25,15,18,16,28,15,17,13,22,15,22,21,41,22,23,17,27,17,22,21,39,22,26,22,39,27,40,40,80,41,41,27,40,22,26,22,39,21,23,17,28,17,23,22,42,22,23,17,26,16,20,18,32,18,21,17,28,18,26,25,48,25,26,18,27,16,20,17,31,17,18,14,24,15,20,19,37,20,21,15,24,15,19,17,32,19,23,19,34,23,34,33,65,33,33,22,33,19,24,21,37,20,22,17,29,19,26,25,47,25,26,18,28,17,21,19,34,19,22,19,33,22,32,32,62,32,33,23,36,21,26,23,41,22,25,20,34,23,33,33,64,34,36,27,43,26,35,33,62,35,42,35,62,42,62,62,123,62,62,42,62,35,43,36,65,34,37,28,45,28,37,35,67,35,36,26,40,23,29,26,48,26,30,24,41,27,38,37,73,37,38,26,38,22,26,22,40,22,24,19,31,20,28,27,52,27,29,21,34,21,28,26,48,27,31,26,46,31,45,45,89,45,46,31,47,27,33,28,49,26,28,21,35,22,30,28,52,27,27,19,29,18,23,21,38,21,24,20,34,23,34,34,67,34,35,24,36,20,24,20,36,20,22,17,27,18,26,25,48,25,26,19,31,19,26,24,46,26,30,25,43,29,43,43,85,43,43,29,43,24,29,24,43,23,24,18,28,17,22,21,39,20,21,15,23,14,17,15,26,15,17,14,24,16,22,21,41,21,21,14,21,12,14,11,19,10,11,8,13,8,9,8,15,8,9,7,10,6,8,7,11,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,10,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,8,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,10,10,18,11,13,11,20,13,19,19,37,19,20,14,20,12,14,12,20,11,11,8,12,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,13,8,11,10,17,10,11,9,14,9,12,12,22,12,14,11,17,11,15,14,26,15,17,15,26,18,26,26,50 +50,26,26,18,26,15,18,16,29,16,17,13,20,13,17,16,30,16,16,11,15,9,12,10,18,10,11,8,13,9,12,12,24,12,12,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,7,12,7,9,8,14,9,13,13,26,14,15,11,18,12,16,15,29,17,20,17,29,19,28,28,55,28,29,20,29,16,19,16,27,15,16,12,18,12,16,15,29,15,14,10,14,9,11,9,16,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,7,7,12,7,7,5,8,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,11,10,18,10,10,8,12,8,12,11,21,11,12,9,13,8,10,9,17,10,12,10,18,12,17,17,33,17,17,12,18,11,13,11,20,11,13,10,16,11,15,15,29,16,17,13,20,13,18,17,32,18,21,18,32,22,33,33,66,33,33,23,34,19,23,19,34,18,20,16,27,17,23,22,43,23,24,17,26,15,19,17,31,17,20,16,28,19,27,27,52,27,27,19,28,16,19,16,28,15,17,13,21,14,19,18,33,18,19,14,23,14,18,17,32,18,21,17,30,20,30,30,59,30,31,21,31,18,21,18,31,17,18,13,21,13,17,16,29,15,15,10,15,9,11,10,17,10,11,9,16,11,15,15,28,15,15,10,14,9,11,9,16,9,10,8,14,9,13,12,23,12,13,10,16,10,14,14,26,15,19,16,29,20,29,29,56,29,29,20,30,17,21,17,30,17,19,15,24,15,21,20,39,20,21,14,21,13,16,14,26,15,17,14,24,16,23,23,44,23,23,16,24,14,18,16,30,17,19,16,28,19,27,26,51,27,28,21,33,21,28,27,51,29,34,28,50,34,50,50,98,50,50,34,51,29,36,31,56,30,33,25,40,26,36,34,66,35,37,27,42,25,33,30,57,32,37,31,55,37,54,54,107,54,55,38,59,34,42,37,68,37,42,33,57,37,53,52,102,53,57,42,69,42,57,53,102,57,68,56,100,67,100,100,199,100,100,67,101,57,68,57,102,53,57,43,70,43,58,54,104,53,55,39,60,35,44,39,73,40,46,36,62,40,58,56,110,56,56,39,59,34,42,36,64,34,38,29,47,30,42,40,76,39,41,29,46,27,35,32,59,33,38,31,54,36,54,54,106,54,54,36,54,30,36,30,52,28,30,23,37,23,31,29,55,28,29,21,32,19,25,23,42,23,26,21,37,25,36,35,68,35,35,24,36,21,26,23,41,22,24,19,32,20,28,26,50,26,27,19,30,18,24,23,43,24,28,23,40,26,38,37,72,37,37,25,38,22,26,22,39,21,23,17,28,17,23,21,40,21,21,15,22,13,17,15,27,15,17,14,23,15,21,20,39,20,21,14,21,13,16,15,27,15,17,14,23,15,21,20,39,20,21,16,25,16,21,20,37,21,25,21,38,26,39,39,76,39,39,26,39,23,28,24,42,23,25,19,32,21,30,29,55,29,30,22,34,20,26,24,44,24,28,23,39,26,37,37,72,37,37,26,40,23,28,25,45,24,27,21,36,23,33,32,62,32,34,25,41,25,34,32,60,34,41,34,61,41,61,62,123,62,62,42,63,35,42,35,63,33,35,26,43,27,37,34,65,33,34,24,37,22,27,24,43,24,27,21,36,24,34,33,65,33,34,24,36,21,25,21,38,21,23,18,29,18,25,24,46,24,26,19,29,18,23,21,38,22,26,21,37,25,37,37,73,37,36,24,36,21,25,21,38,20,22,17,29,18,25,24,46,24,24,17,27,16,21,19,34,19,21,17,28,19,27,26,51,26,27,18,27,16,19,16,29,16,17,13,21,14,19,18,35,19,20,14,22,14,18,17,31,18,21,18,31,22,33,33,65,33,32,22,32,18,21,18,32,17,19,15,24,15,21,19,36,19,19,13,19,11,14,13,23,13,15,12,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,19,10,11,8,12,7,9,9,16,9,10,9,15,10,15,15,28,15,16,12,20,13,17,15,28,16,19,16,27,18,26,26,50 +25,13,14,10,13,8,9,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,14,14,28,14,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,5,8,5,6,5,8,5,5,4,7,4,6,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,10,9,16,10,11,10,16,11,17,17,34,17,17,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,15,11,16,9,11,9,16,9,10,8,13,8,11,11,20,11,11,8,11,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,26,14,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,16,17,13,21,13,18,17,34,18,19,14,21,13,17,16,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,29,19,27,26,51,27,29,22,35,22,29,27,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,27,29,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,30,17,21,18,32,17,19,15,24,15,21,20,38,20,21,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,19,13,18,18,34,18,18,13,18,11,13,12,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,19,13,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,11,7,8,8,14,8,9,8,12,8,11,11,20,11,11,8,13,8,11,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,28,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,19,14,21,12,15,13,23,13,14,11,18,12,17,16,32,17,18,13,21,13,18,17,30,17,21,18,31,21,31,31,62,32,32,22,32,18,21,18,32,17,18,14,22,14,19,18,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,17,33,17,18,12,19,11,13,11,19,11,12,9,15,10,13,13,24,13,14,10,15,9,12,11,19,11,14,11,19,13,19,19,37,19,19,13,19,11,13,11,20,11,12,9,15,10,13,13,23,12,12,9,14,8,11,10,17,10,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,11,8,10,10,18,10,10,7,12,8,10,9,16,10,11,10,16,11,17,17,33,17,17,12,17,10,11,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +25,13,14,10,13,8,9,8,15,8,8,6,10,7,9,9,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,28,14,14,10,16,9,11,9,14,8,8,6,10,7,9,9,15,8,8,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,8,6,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,31,16,16,11,16,10,12,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,16,11,16,10,12,10,16,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,25,13,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,15,16,12,21,13,18,17,34,18,19,14,21,13,17,15,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,28,19,27,26,51,27,28,21,35,22,30,28,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,28,30,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,29,17,21,18,32,17,18,14,24,15,21,20,38,20,20,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,18,12,18,18,34,18,18,13,18,11,13,11,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,20,14,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,11,7,8,8,15,9,10,8,12,8,11,11,20,11,12,9,13,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,29,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,20,14,21,12,15,13,24,13,14,11,18,12,17,16,32,17,18,14,21,13,18,17,30,17,20,17,31,21,31,31,61,31,32,22,32,18,21,18,31,17,18,14,22,14,18,17,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,18,33,17,18,12,19,11,13,11,19,11,12,9,15,10,14,13,24,13,14,10,15,9,12,11,19,11,14,12,19,13,19,19,38,20,20,13,19,11,14,12,20,11,12,9,15,10,14,13,23,12,12,9,14,8,10,9,17,10,12,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,12,8,10,9,17,10,12,10,16,11,17,17,33,17,17,12,17,10,12,10,17,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,9,13,13,25 +17,9,10,7,9,6,7,6,10,6,6,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,6,9,6,6,5,7,5,7,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,11,6,8,6,11,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,20,10,11,8,11,7,8,7,11,6,7,6,9,6,8,7,14,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,17,33,17,17,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,10,14,9,12,10,19,11,13,11,19,13,19,19,36,19,19,14,20,12,15,13,24,13,15,12,19,13,18,18,34,18,19,14,24,15,20,19,34,20,23,20,35,23,34,34,67,34,34,23,34,20,23,20,35,19,20,15,24,15,20,19,36,18,19,14,20,12,15,14,25,14,16,13,22,14,20,20,37,19,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,14,10,16,10,12,11,20,12,13,11,19,13,19,18,36,19,19,13,18,11,13,11,17,10,11,8,13,8,11,10,19,10,10,8,11,7,9,8,15,8,10,8,12,8,12,12,23,12,12,9,12,8,9,8,14,8,9,7,11,7,9,9,18,10,10,7,11,7,8,8,15,8,10,8,14,10,14,13,25,13,13,9,14,8,10,8,13,8,8,6,10,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,7,13,8,9,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,10,20,10,11,8,12,8,10,8,15,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,16,9,10,8,12,8,12,11,21,12,12,10,15,9,12,11,20,12,14,12,21,14,21,21,41,21,22,15,22,12,14,12,21,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,8,9,8,12,8,12,12,22,12,12,8,13,8,9,8,13,8,8,6,10,7,9,9,17,9,9,7,10,6,8,8,13,8,9,8,13,9,13,13,26,14,14,9,13,8,10,8,14,8,9,7,10,7,10,9,16,9,9,6,9,6,7,6,12,7,8,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,7,5,8,5,7,6,12,7,8,7,11,8,12,12,22,12,12,8,12,7,9,7,12,7,8,6,8,6,7,7,13,7,7,5,7,4,6,5,8,5,6,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,4,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,6,6,10,6,6,6,10,7,9,9,17 +26,13,13,9,14,8,10,9,15,8,8,6,9,6,9,8,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,7,5,7,7,13,7,7,5,8,6,8,8,14,8,10,9,15,10,14,14,28,15,15,11,16,9,10,8,13,8,9,7,11,7,9,9,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,12,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,16,11,17,17,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,12,21,11,11,8,12,7,9,8,17,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,17,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,13,7,6,4,6,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,8,6,8,7,14,8,10,9,15,10,15,15,29,15,16,11,16,9,11,10,15,8,9,7,12,8,10,10,20,11,11,8,12,7,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,25,13,14,10,16,10,14,13,25,14,17,15,26,17,25,25,49,25,25,17,26,15,18,15,29,16,17,13,21,13,18,17,34,18,18,13,21,13,17,15,28,16,19,16,28,19,29,29,53,27,28,20,30,18,22,19,35,19,21,17,28,19,27,26,50,27,29,22,35,22,29,27,51,29,34,29,52,35,51,50,100,51,51,34,51,29,35,29,53,28,30,22,36,23,31,29,53,27,28,20,30,18,22,20,38,21,23,19,32,21,30,29,55,28,28,19,29,17,20,17,32,17,18,14,22,14,19,19,38,20,20,15,23,14,17,16,30,17,20,16,28,19,28,27,54,28,28,19,27,15,18,15,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,11,18,13,19,19,33,17,17,12,18,11,13,11,21,11,12,9,15,10,14,13,26,14,14,10,16,10,13,12,22,12,14,12,20,13,19,19,36,19,19,13,20,11,13,11,19,10,11,9,14,9,11,10,22,11,11,8,12,7,8,7,14,8,9,7,12,8,11,11,21,11,11,8,12,7,9,8,16,9,9,7,12,8,12,11,20,11,11,8,12,8,11,10,18,11,13,11,20,13,19,19,37,19,19,13,20,12,14,12,23,13,14,11,17,11,15,14,29,15,15,11,17,11,14,12,21,12,14,12,20,14,20,19,36,19,19,13,20,12,15,13,24,13,14,11,18,12,17,16,31,17,18,14,22,13,17,16,29,17,20,17,31,21,31,31,61,31,31,21,32,18,22,18,30,16,18,14,22,14,19,18,33,17,18,13,19,12,15,13,22,12,14,11,18,12,18,18,33,17,18,12,18,11,13,11,20,11,12,9,14,9,12,12,25,13,13,10,15,9,12,11,20,12,14,12,20,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,13,24,13,13,9,13,8,10,9,18,10,12,9,15,10,13,13,27,14,14,10,14,8,9,8,16,9,10,8,12,8,10,10,17,9,9,7,11,7,9,8,17,10,12,10,16,11,16,17,31,16,17,12,18,10,12,10,18,10,10,8,12,8,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,8,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,7,4,5,5,10,6,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,6,9,6,9,9,17,9,10,7,10,6,7,6,9,5,6,4,7,5,6,6,11,6,7,5,7,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,9,9,14,8,8,6,9,6,8,8,15,8,10,9,15,10,14,14,28,15,15,10,15,9,10,9,16,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,12,10,16,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,29,20,29,28,56,29,29,20,29,17,20,17,30,16,17,13,21,13,18,17,30,16,16,12,17,10,13,12,21,12,13,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,10,8,13,8,11,11,21,11,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,15,9,10,9,15,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,12,7,8,7,11,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,13,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,8,7,11,7,10,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,8,11,7,9,8,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15 +18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,5,4,5,5,9,5,6,4,6,4,5,5,9,6,7,6,10,7,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,6,4,6,6,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,8,7,10,7,11,11,20,11,12,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,6,5,8,6,9,9,14,8,8,6,9,6,7,6,10,6,7,6,10,7,11,11,17,9,10,8,11,7,10,10,18,10,12,10,18,12,17,17,34,18,18,12,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,15,9,11,10,19,11,14,12,19,13,19,19,36,19,19,13,20,12,14,13,24,13,15,12,20,13,18,18,33,18,20,15,23,15,20,18,35,20,24,20,35,24,35,34,67,34,34,23,35,20,24,20,35,19,20,15,25,16,21,20,36,19,20,14,21,12,15,14,25,14,16,13,22,14,20,19,37,19,19,13,19,11,13,12,21,11,12,9,15,10,13,12,24,13,14,10,15,9,12,11,21,12,14,11,19,13,18,18,35,18,18,12,18,10,12,10,18,10,10,8,12,8,10,10,20,10,10,8,12,8,10,9,14,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,13,9,14,14,24,13,14,9,14,8,10,8,13,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,13,8,9,8,14,10,14,13,26,14,14,9,13,8,9,8,15,9,10,8,11,8,11,10,19,10,10,8,12,7,9,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,10,9,17,9,10,8,13,8,11,11,21,11,12,9,15,9,12,11,20,12,14,12,21,14,21,21,42,21,21,15,21,12,14,12,20,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,9,10,8,14,9,12,12,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,17,9,9,7,11,7,8,7,13,8,9,8,13,9,12,13,25,13,14,10,14,8,10,8,15,8,8,6,11,7,9,9,17,9,10,7,9,6,8,7,12,7,8,6,10,7,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,11,20,11,11,8,11,7,8,7,12,7,7,5,8,5,6,6,13,7,8,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,3,3,4,4,4,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,10,7,10,10,18 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,8,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,4,7,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,15,8,9,7,10,6,9,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,8,12,8,11,10,18,10,10,8,12,8,9,9,16,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,13,10,17,11,15,15,27,15,16,12,20,13,17,16,29,17,20,17,29,20,29,29,56,28,28,19,29,17,20,17,29,16,17,13,21,13,18,17,31,16,17,12,18,11,13,12,21,12,14,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,17,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,6,7,7,12,7,8,7,11,8,12,12,21,11,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,11,7,8,7,12,8,12,11,22,12,12,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,9,7,11,7,9,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,17,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,11,7,8,8,13,8,9,7,12,8,11,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,7,10,11,21,11,11,8,12,7,9,7,13,7,7,6,9,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,7,7,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,11,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,15 +27,14,13,9,13,8,9,8,15,8,9,6,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,4,7,7,11,6,6,5,8,6,8,8,14,8,9,8,14,10,15,15,25,13,14,10,14,8,10,8,14,8,9,7,11,7,9,9,15,8,8,5,6,4,5,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,15,8,9,6,9,6,7,6,10,6,6,5,9,6,7,7,11,6,7,6,9,6,7,6,11,6,7,6,9,6,9,10,19,10,10,8,12,7,8,7,12,7,7,6,10,7,10,10,16,9,9,7,12,8,10,9,16,9,11,10,17,12,17,17,31,16,16,11,16,9,11,10,17,9,10,8,13,9,12,11,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,14,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,9,17,9,10,8,12,7,9,9,16,9,11,9,16,11,15,15,32,16,16,11,17,10,12,10,18,10,11,8,13,8,11,10,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,7,11,6,7,6,9,6,8,8,14,8,10,9,15,10,15,15,32,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,17,9,9,7,11,7,9,8,13,8,9,8,13,9,13,13,21,11,11,8,13,8,10,9,15,9,11,9,16,11,16,15,26,14,15,11,18,11,15,14,27,15,18,15,25,17,24,24,50,25,25,17,26,15,18,16,28,15,17,13,22,14,19,18,32,17,18,13,21,13,16,15,28,16,20,17,29,20,29,29,53,27,28,20,30,17,21,19,34,19,22,18,30,20,28,27,48,25,27,21,34,21,29,27,52,29,34,29,51,34,51,51,100,50,50,34,51,29,34,29,52,28,30,23,37,23,32,30,55,28,29,21,32,19,23,21,38,21,24,19,32,21,29,29,55,28,29,20,30,17,21,18,32,17,19,14,23,14,19,18,34,18,20,15,23,14,18,16,30,17,20,17,29,19,28,27,51,26,26,18,26,15,17,15,26,14,15,11,18,12,16,15,30,16,17,12,18,11,14,12,22,13,15,12,21,14,20,19,33,17,18,13,19,11,14,12,21,11,12,9,14,9,12,12,25,13,14,10,16,10,12,11,20,12,14,12,20,14,20,20,37,19,18,12,18,10,12,10,18,10,10,8,12,8,11,10,22,12,12,9,13,8,10,8,14,8,9,7,12,8,12,11,23,12,12,9,14,9,11,9,16,9,10,8,13,9,12,11,23,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,38,19,19,13,20,12,14,12,22,12,13,11,18,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,13,18,18,37,19,20,14,22,13,15,13,24,13,15,12,19,12,17,16,31,16,17,13,21,13,18,16,30,17,20,17,30,20,30,30,62,31,31,21,30,17,21,17,30,16,17,12,19,12,16,16,33,17,18,13,19,11,14,13,24,13,14,11,19,13,18,18,34,18,18,12,18,10,12,11,19,10,11,9,14,9,12,11,24,13,13,9,14,9,11,10,18,10,12,10,17,12,18,18,36,19,19,13,19,11,14,12,22,12,13,10,16,10,14,13,25,13,13,9,14,9,11,10,17,9,10,8,13,9,12,12,27,14,14,10,15,9,11,9,16,9,9,7,12,8,10,9,18,10,10,7,11,7,9,9,16,9,11,9,15,11,16,16,29,15,15,10,15,9,11,10,17,9,10,8,12,7,9,9,19,10,10,7,10,6,8,8,14,8,9,7,10,7,10,10,18,9,9,6,9,6,7,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,26 +14,8,7,5,7,4,5,5,8,5,5,4,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,4,5,4,5,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,11,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,12,10,16,11,15,14,25,14,15,11,18,11,15,15,27,16,18,15,27,18,27,27,52,26,26,18,27,15,18,16,27,15,16,12,19,12,17,16,29,15,16,11,17,10,12,11,20,11,13,10,17,11,16,15,29,15,15,11,16,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,12,8,10,9,16,9,11,9,15,10,15,14,27,14,14,10,14,8,9,8,14,8,9,6,10,7,9,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,10,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,16,9,11,9,16,11,16,16,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,9,17,9,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14 +15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,6,8,9,15,8,8,6,8,5,6,5,8,5,6,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,3,4,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,7,5,6,6,8,5,6,5,9,6,8,8,18,10,10,7,10,6,8,6,11,6,7,5,8,5,7,6,10,6,6,5,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,19,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,8,8,12,7,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,10,9,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,19,11,12,10,17,11,16,15,27,15,16,12,19,12,16,16,29,17,20,16,29,19,28,29,55,28,28,19,28,16,20,17,29,15,16,13,20,13,18,17,31,16,17,12,18,11,13,12,22,12,14,11,17,12,17,16,31,16,16,11,17,10,12,10,18,10,10,8,12,8,10,10,18,10,10,8,13,8,10,9,16,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,16,9,10,7,11,7,10,9,17,9,10,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,22,12,12,8,10,6,8,7,11,6,6,5,8,5,7,6,13,7,8,6,8,5,5,5,9,5,6,5,7,5,8,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,8,7,13,7,8,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,17,11,16,17,35,18,17,12,17,10,11,10,16,9,10,7,10,7,9,9,18,10,10,7,11,7,9,8,13,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,10,7,10,11,20,11,11,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,14 +12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,7,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,5,8,6,8,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,6,3,3,3,3,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,13,8,9,8,15,8,9,8,13,8,12,11,20,11,12,9,14,9,12,12,21,12,15,12,21,14,21,21,41,21,21,14,21,12,15,12,21,11,12,10,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,5,9,5,6,5,9,6,9,8,14,7,7,5,8,5,5,5,9,5,6,4,7,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,26,13,13,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,7,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,8,5,8,5,5,5,8,5,5,4,5,4,5,4,8,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10 +19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,5,4,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,4,4,3,3,3,4,3,4,4,8,5,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,12,8,11,11,22,11,11,8,11,7,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,9,9,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,7,5,7,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,8,14,8,8,6,9,6,8,8,12,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,8,5,5,4,5,3,4,3,7,4,4,4,6,4,6,5,9,5,6,5,8,5,7,6,12,7,9,7,12,8,12,11,22,12,12,8,12,7,8,7,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,5,11,6,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,17,17,32,17,17,12,18,11,13,11,18,10,11,8,13,9,13,13,21,11,12,9,14,9,11,11,20,11,13,11,18,12,18,19,36,19,19,13,20,12,15,13,24,13,15,12,20,13,19,18,32,17,19,14,23,15,20,19,34,19,23,19,33,23,34,34,66,33,33,23,34,19,23,19,34,18,20,15,24,15,20,19,36,19,19,14,21,13,16,14,25,14,16,12,20,14,20,19,35,18,18,12,18,11,13,11,20,11,12,9,14,9,12,11,21,11,12,9,14,9,12,11,18,10,12,10,18,12,17,17,34,18,18,12,18,11,13,11,19,10,11,8,12,8,11,10,19,10,10,8,12,7,8,7,14,8,10,8,14,9,13,13,22,12,12,8,12,7,9,7,14,8,8,6,10,7,9,8,16,9,9,7,11,7,8,7,14,8,10,8,14,10,14,13,26,14,14,9,13,8,9,8,12,7,8,6,9,6,9,8,16,8,8,6,8,5,6,5,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,16,9,9,7,10,6,7,7,13,7,8,7,12,8,12,12,26,14,14,10,14,9,11,9,16,9,10,7,11,8,11,11,18,10,11,8,12,7,9,9,16,9,9,7,12,8,11,11,24,13,13,9,14,9,11,10,17,10,11,8,13,9,12,11,20,11,12,9,14,9,12,11,19,11,13,11,18,13,19,19,42,21,21,14,20,12,14,12,19,10,10,8,12,8,11,11,22,12,12,9,13,8,11,10,16,9,10,8,14,10,14,13,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,9,8,15,8,9,7,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,6,10,7,10,9,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,14,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,4,3,2,2,2,2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16 +12,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,5,3,4,3,4,2,3,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,23,12,12,8,13,8,10,8,15,8,9,8,12,8,12,11,20,11,12,9,15,10,13,12,21,12,15,12,20,14,21,21,41,21,21,14,21,12,15,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,12,6,7,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,8,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,12,12,26,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,4,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,4,6,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,7,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10 +17,9,8,6,9,5,6,5,9,5,5,4,6,4,4,4,9,5,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,4,4,2,2,2,4,3,4,4,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,7,11,6,6,4,6,4,6,5,8,5,5,4,8,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,9,6,8,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,7,4,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,6,5,10,6,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,31,16,16,11,17,10,13,11,19,11,12,10,16,11,15,15,27,15,16,12,20,13,17,16,29,17,20,16,27,19,28,28,55,28,28,19,28,16,20,17,29,15,16,12,21,13,18,17,31,16,16,12,18,11,14,13,22,12,14,11,19,13,18,17,29,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,10,9,15,10,14,14,29,15,14,10,15,9,10,9,15,8,8,6,11,7,10,9,15,8,8,6,10,6,7,6,12,7,8,7,12,8,11,11,20,11,11,7,10,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,8,5,7,6,11,7,8,7,12,8,12,11,21,11,11,8,11,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,9,5,6,6,12,7,8,7,10,7,10,10,22,12,12,8,12,7,9,8,14,8,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,11,7,9,8,13,7,8,7,10,7,10,9,17,9,10,8,12,8,10,9,16,9,11,9,15,11,16,16,36,18,18,12,18,10,12,10,17,9,10,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,11,8,12,12,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,10,7,10,10,21,11,10,7,10,6,8,7,12,7,7,6,10,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,11,6,6,5,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +16,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,5,6,5,8,6,9,9,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,9,6,10,6,8,7,14,8,9,8,13,9,13,13,23,12,13,9,13,8,9,8,14,8,8,6,10,7,10,10,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,29,15,15,11,16,10,12,10,18,10,11,9,15,10,14,14,26,14,15,11,18,12,16,15,27,16,18,15,26,18,26,26,51,26,26,18,27,16,19,16,27,15,16,12,19,12,16,16,29,15,16,11,17,10,13,12,21,12,13,11,18,12,17,16,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,16,9,9,7,10,6,9,8,15,8,10,8,14,9,13,13,27,14,14,9,14,8,9,8,14,8,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,19,10,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,21,11,11,8,11,7,8,7,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,8,10,8,14,10,15,15,34,17,17,12,17,10,11,9,16,9,9,7,11,7,10,9,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,9,9,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,13 +29,15,14,10,14,8,9,8,14,8,9,7,10,6,8,7,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,17,9,9,7,10,6,7,5,8,5,5,5,8,5,7,7,12,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,11,6,6,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,4,7,4,4,4,6,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,16,16,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,9,16,9,9,6,8,5,6,5,7,4,4,4,6,4,5,4,13,7,7,5,7,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,6,9,9,10,6,6,4,5,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,12,19,10,10,7,10,6,8,7,13,8,9,7,11,8,11,11,21,11,12,9,14,9,11,10,17,10,11,9,16,11,16,16,34,18,18,13,19,11,12,10,18,10,10,8,12,8,11,10,19,10,10,7,11,7,8,7,13,8,9,8,13,9,12,12,25,13,13,9,12,7,8,7,11,7,8,6,10,6,8,8,15,9,10,8,12,8,10,10,18,10,12,10,17,11,16,16,34,18,18,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,11,8,12,8,10,9,15,9,10,8,13,9,12,11,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,18,18,33,17,17,12,17,10,11,9,15,8,9,7,11,7,10,9,17,9,9,7,11,7,9,8,14,8,10,8,13,9,12,11,20,11,11,8,13,8,10,9,15,9,10,8,14,10,14,14,28,15,16,12,19,12,16,15,28,16,19,16,27,18,25,25,44,22,22,15,23,13,16,14,24,13,14,11,19,13,18,18,34,18,20,15,23,14,18,17,32,18,21,17,29,20,29,29,56,29,30,21,33,19,24,21,38,21,23,18,30,19,26,25,49,26,28,20,32,20,27,25,47,27,32,27,47,32,48,49,98,49,49,33,50,28,33,28,49,26,28,21,34,22,30,29,55,28,29,21,32,19,24,22,40,22,25,20,33,21,30,30,50,26,26,18,26,15,18,15,27,15,16,12,20,13,17,16,30,16,17,13,20,12,15,14,26,15,17,15,26,17,25,25,52,26,26,18,27,15,17,14,24,13,15,11,18,12,16,15,27,14,15,11,16,10,12,11,19,11,13,11,19,13,19,18,36,19,19,13,20,12,14,12,21,11,12,9,14,9,12,12,22,12,13,10,15,9,12,12,22,13,15,12,20,14,20,20,38,20,20,14,21,12,14,12,20,11,11,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,10,8,14,9,13,13,24,13,13,10,15,9,11,10,17,9,10,8,12,8,11,11,22,12,12,9,14,9,11,10,18,11,13,11,18,12,17,17,39,20,20,14,21,12,15,13,23,12,13,10,16,10,14,14,27,14,15,11,16,10,12,11,19,11,13,10,17,12,18,18,34,18,18,13,20,12,14,12,21,12,14,11,18,12,16,16,30,16,17,13,20,13,17,16,29,16,19,16,27,18,27,27,65,33,33,22,33,19,22,18,32,17,18,13,21,13,18,17,32,17,17,12,18,11,13,12,21,12,14,12,20,13,19,19,32,17,17,12,18,10,12,11,19,10,11,9,14,9,12,11,20,11,11,8,12,8,10,9,16,9,11,9,16,11,16,16,36,19,19,13,19,11,14,12,21,12,13,10,17,11,15,14,26,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,28,15,15,10,15,9,11,9,15,8,9,7,11,8,11,10,19,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,29,15,15,10,14,8,10,9,15,9,10,8,12,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,14,7,7,5,8,5,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,23 +15,8,8,6,7,4,5,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,6,4,4,3,3,2,3,3,4,3,3,2,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,16,11,17,10,12,11,20,11,12,10,16,10,14,14,25,14,14,11,17,11,14,13,24,14,17,14,24,17,25,25,50,25,25,17,26,15,17,14,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,10,17,11,16,16,26,14,14,9,14,8,10,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,8,8,13,8,9,8,14,9,13,13,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,6,5,8,5,6,6,12,7,7,6,8,5,6,6,12,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,5,6,5,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,12,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,20,10,10,7,11,6,8,7,12,7,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,9,8,15,9,10,8,14,10,14,14,34,17,17,12,17,10,12,10,16,9,10,7,11,7,10,9,16,9,9,6,9,6,7,6,11,7,8,7,11,7,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,15,8,8,5,7,5,6,5,8,5,6,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,12 +15,8,8,6,7,5,6,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,9,14,8,8,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,10,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,6,4,6,5,10,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,24,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,9,15,10,15,15,30,16,16,11,18,10,12,11,20,11,12,10,17,11,14,14,26,14,14,11,17,11,15,14,25,15,18,15,25,17,26,26,50,26,26,18,27,15,18,15,25,13,14,11,18,12,16,15,29,15,16,11,17,10,13,12,22,12,14,11,18,12,16,16,26,14,14,9,14,8,10,9,14,8,8,7,11,7,9,9,16,9,10,7,11,7,9,8,13,8,10,8,14,10,14,13,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,18,10,10,7,11,7,8,7,12,6,6,5,8,5,6,6,12,7,8,6,8,5,6,6,12,7,8,6,10,7,10,11,21,11,12,8,11,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,7,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,6,4,7,5,7,7,12,6,6,5,7,5,6,6,9,5,6,6,9,6,9,9,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,10,9,15,9,10,8,15,10,14,15,35,18,17,12,18,10,12,10,16,9,10,7,12,8,10,9,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,11,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,16,8,8,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,4,6,4,5,5,6,4,4,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,6,6,11 +11,6,6,4,5,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,11,13,11,18,12,18,18,35,18,18,12,19,11,12,10,17,9,10,8,13,9,12,11,20,11,11,8,12,7,9,8,15,9,10,8,13,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,9,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,5,6,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,9,5,6,5,7,5,7,8,15,8,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,6,4,7,5,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,24,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,4,3,3,3,5,4,5,5,5,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,8 +16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,7,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,5,3,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,7,10,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,18,10,10,8,12,7,8,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,5,9,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,6,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,5,7,4,5,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,5,8,6,8,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,15,14,26,13,13,9,12,7,8,7,14,8,9,7,11,7,10,10,19,11,12,9,14,9,12,11,19,11,12,10,16,11,15,15,32,17,17,12,18,11,13,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,15,15,27,15,18,15,27,18,27,28,53,27,27,19,28,16,19,15,26,14,16,12,20,13,17,16,31,16,16,12,18,11,14,13,23,13,15,12,20,13,18,17,29,15,14,10,14,9,11,9,16,9,9,7,12,8,10,10,17,9,10,8,12,7,9,8,13,8,10,8,14,10,14,14,29,15,15,10,15,9,10,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,7,6,13,8,9,7,11,8,11,11,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,6,7,6,10,7,10,9,20,11,11,7,10,6,7,6,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,10,7,10,10,20,10,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,8,6,10,7,9,9,16,9,10,9,15,10,15,15,37,19,18,12,18,10,12,11,17,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,14,8,9,8,13,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,6,4,6,6,11,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,2,2,2,1,1,1,4,3,3,2,2,2,3,3,5,3,4,3,4,3,5,5,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,8,4,4,3,4,3,5,5,6,4,4,3,4,3,4,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,11 +9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,5,5,8,5,6,4,7,5,6,6,11,6,7,5,8,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,17,9,9,7,11,7,9,9,16,9,11,9,16,11,16,16,31,16,16,11,16,10,11,9,15,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,13,8,9,7,12,8,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,4,4,4,6,4,6,6,12,7,7,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,6,9,6,9,9,22,11,11,8,11,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7 +11,6,6,4,7,4,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,8,6,8,8,11,6,6,4,7,4,4,4,8,4,4,3,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,6,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,6,11,6,6,5,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,12,11,20,10,10,7,10,6,6,6,10,6,7,5,8,6,8,8,14,8,8,6,10,7,9,8,14,8,9,8,12,8,12,12,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,15,9,12,11,21,12,14,12,21,14,21,21,38,20,20,14,20,12,14,12,19,11,12,9,14,9,12,12,23,12,13,9,14,8,10,9,16,9,10,8,14,9,12,12,22,12,12,8,11,7,8,7,12,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,6,5,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,10,7,10,6,6,5,8,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,8,7,14,8,8,5,7,4,5,5,8,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,27,14,14,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,7,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,6,6,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,8,11,11,20,11,11,8,13,8,11,10,18,11,13,11,18,13,19,19,34,17,17,12,18,10,12,10,17,10,11,8,13,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,10,20,11,11,7,10,6,7,6,10,6,7,5,7,5,6,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,7,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,7 +18,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,7,5,8,5,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,5,6,5,8,6,9,9,12,7,7,5,7,5,6,6,10,6,7,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,11,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,16,9,9,6,8,5,6,5,8,5,6,5,8,5,6,6,7,4,5,4,7,5,7,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,10,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,10,6,8,7,12,9,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,6,8,7,14,8,8,6,9,5,6,5,9,5,6,5,8,6,9,9,18,9,9,6,9,6,7,6,10,6,7,6,9,7,10,10,16,9,10,7,11,7,10,10,18,10,12,10,17,12,18,18,31,16,16,11,16,9,11,10,17,9,10,8,14,9,12,11,23,12,13,10,16,10,12,11,20,11,13,11,20,13,19,19,37,19,20,14,20,12,16,14,26,14,16,13,21,14,20,19,36,19,20,15,24,15,20,18,33,19,22,19,34,23,34,34,62,32,32,22,32,18,21,18,32,17,18,14,23,15,20,19,39,20,20,14,20,12,15,13,24,13,15,12,20,13,18,18,36,19,19,13,18,11,13,11,18,10,11,9,14,9,11,11,22,12,12,9,13,8,10,9,16,9,11,9,16,11,15,15,34,17,17,12,17,10,12,10,18,10,11,8,12,8,11,11,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,23,12,11,8,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,30,15,15,10,15,9,10,8,14,8,8,7,11,7,9,8,12,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,15,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,9,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,9,17,9,10,8,12,7,9,8,14,8,9,8,14,9,13,13,24,13,13,9,12,8,10,9,15,8,9,7,11,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,18,18,43,22,22,15,21,12,14,12,22,12,13,10,16,10,13,12,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,13,22,12,12,9,13,8,9,8,14,7,7,5,8,5,7,7,15,8,8,6,8,5,7,7,12,7,9,8,13,9,12,12,23,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,18,9,9,7,10,6,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,6,8,5,6,5,8,5,5,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,7,7,4,5,4,5,3,3,3,4,2,2,2,2,2,2,2,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,7,5,6,6,10,6,7,5,8,5,7,7,12 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,7,4,5,4,7,4,4,3,5,4,5,4,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,7,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,13,7,7,6,9,6,7,6,11,6,7,6,11,8,11,11,20,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,13,8,11,10,18,10,12,11,19,13,19,19,34,18,18,12,18,10,12,10,18,10,10,8,13,8,11,11,21,11,11,8,11,7,9,8,13,8,9,7,11,7,10,10,20,11,11,7,10,6,7,6,10,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,10,6,7,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7 +11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,4,6,4,4,4,7,4,5,5,8,6,8,8,11,6,7,5,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,5,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,9,6,8,7,15,8,8,6,10,6,8,7,13,7,8,7,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,8,14,9,13,12,23,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,20,12,14,12,20,11,12,9,14,9,12,12,24,12,12,8,13,8,10,8,15,9,10,8,12,8,11,11,22,12,12,8,11,7,8,7,11,7,8,6,9,6,8,7,14,8,8,6,8,5,6,6,10,6,8,7,11,7,10,10,21,11,10,7,11,7,8,7,12,7,8,6,9,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,6,6,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,7,5,6,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,11,6,7,6,11,8,11,11,26,13,13,9,13,8,10,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,4,2,2,2,4,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,11,10,17,12,17,17,31,16,16,11,16,9,11,10,16,9,10,8,12,8,10,10,19,10,10,7,10,6,8,6,12,7,8,6,10,7,9,9,17,9,9,6,9,6,6,5,9,6,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,5,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,7,4,6,5,9,5,6,5,9,6,9,9,20,10,11,8,11,7,8,7,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,8,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,5,6,5,8,5,6,6,9,6,7,6,10,7,11,11,16,9,9,6,8,5,7,6,10,6,6,4,6,4,4,4,9,5,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,8,6,8,7,14,7,7,5,8,5,7,6,12,7,8,7,11,8,12,12,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,8,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,10,6,7,5,8,6,8,7,13,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,14,8,10,9,16,11,15,15,24,13,13,9,13,8,9,8,16,9,9,7,12,8,11,10,20,11,11,8,12,7,9,9,17,10,11,9,16,11,16,16,30,16,17,12,18,11,14,12,21,12,14,11,18,12,17,17,31,17,18,13,20,12,16,15,27,15,18,16,28,19,28,28,53,27,27,18,27,15,18,16,28,15,16,12,20,13,18,17,31,16,16,11,16,10,12,10,19,11,12,10,16,11,15,15,29,15,15,10,15,9,10,8,15,8,9,7,12,8,11,10,20,11,11,8,12,7,9,8,13,8,10,8,14,9,13,13,26,14,14,10,15,9,11,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,24,13,13,9,13,8,9,8,12,7,7,5,8,6,8,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,6,13,7,8,6,8,5,6,5,9,5,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,9,8,14,10,15,15,33,17,17,12,18,10,12,11,17,9,10,8,14,9,11,11,19,10,10,7,10,6,8,7,13,8,9,7,12,8,12,11,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,7,8,6,10,6,8,7,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,4,6,4,5,4,8,5,6,5,7,5,7,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,7,4,5,4,5,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,11 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,6,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,5,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,4,7,5,6,6,9,6,7,6,11,7,10,10,16,9,9,6,9,6,6,6,11,6,6,5,8,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,18,10,12,11,18,12,18,18,34,18,18,12,18,10,12,11,18,10,11,8,13,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,17,9,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,7,6,9,6,8,7,13,7,7,5,7,4,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,3,4,3,3,2,4,2,3,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,5,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,15,8,8,6,8,5,6,5,7,4,4,4,6,4,6,5,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,7,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,8,8,13,8,10,8,15,10,14,14,23,12,12,9,13,8,9,8,15,8,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,15,29,15,16,11,17,10,12,11,20,11,12,10,17,11,16,15,29,15,16,12,19,12,16,15,27,15,18,15,26,18,26,26,49,25,26,18,26,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,27,14,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,12,7,8,7,14,8,9,7,13,9,12,12,25,13,14,10,13,8,10,9,15,8,9,7,11,7,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,9,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,7,5,6,6,9,5,6,5,10,7,10,10,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,10,6,7,6,11,6,6,5,9,6,9,9,16,9,9,7,10,6,8,8,14,8,10,8,14,10,14,14,31,16,16,11,17,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,8,6,8,9,19,10,10,7,9,5,6,6,10,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,6,4,6,6,10 +11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,8,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,8,8,13,8,9,8,14,10,14,14,22,12,12,8,12,8,9,8,14,8,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,11,16,10,12,11,20,11,12,10,17,11,15,15,28,15,16,12,19,12,16,14,26,15,18,15,26,17,25,25,48,25,25,17,26,15,18,15,26,14,16,12,19,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,15,10,14,14,26,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,8,7,14,8,9,7,12,8,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,30,16,16,11,16,10,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,19,10,10,7,9,5,6,6,10,6,6,5,8,6,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,10 +20,10,10,7,10,6,8,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,8,8,8,5,5,4,6,4,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,7,7,12,7,7,6,10,7,9,9,17,9,10,8,12,8,10,10,18,10,12,11,19,13,19,19,25,13,13,9,13,8,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,5,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,20,11,11,8,12,8,10,9,16,9,11,9,14,9,12,12,22,12,12,9,15,10,13,12,23,13,16,13,22,15,21,21,27,14,15,11,16,9,11,10,17,9,10,8,12,8,11,10,19,10,11,8,12,7,9,9,16,9,10,8,13,9,12,12,24,13,13,9,13,8,9,8,13,7,8,6,9,6,9,9,17,9,10,7,10,7,9,8,14,8,10,8,14,10,15,15,32,16,16,11,17,10,13,12,21,12,13,10,16,10,13,12,23,12,12,8,11,7,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,15,8,9,7,12,8,11,11,20,11,12,9,13,9,12,11,21,12,14,12,20,13,19,19,35,18,18,12,18,11,13,11,20,11,12,10,17,11,15,14,26,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,26,14,14,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,17,12,18,11,15,14,26,15,18,15,27,18,26,26,42,22,22,15,23,13,16,14,24,13,15,12,19,12,17,16,31,16,16,12,18,11,15,14,26,15,18,16,28,19,27,27,54,28,28,19,29,17,22,19,34,18,20,16,27,18,26,25,49,26,28,21,34,21,28,26,50,28,33,28,50,33,49,49,94,48,48,32,48,27,31,26,46,24,26,19,31,20,27,25,47,24,25,18,27,16,19,17,31,17,20,16,26,17,25,25,49,25,26,18,26,15,18,16,28,15,16,12,18,12,16,15,28,15,16,12,18,11,15,14,25,14,16,13,22,15,22,22,47,24,23,16,23,13,16,14,25,14,15,12,19,12,16,15,28,15,15,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,16,11,15,9,10,9,16,9,10,8,13,9,12,11,21,11,12,9,13,8,11,10,19,11,13,11,19,13,19,19,43,22,22,15,22,13,16,14,25,13,14,11,18,11,15,13,24,13,13,9,14,8,10,9,15,8,9,7,12,8,11,11,20,10,10,7,10,6,7,7,12,7,8,7,11,8,11,10,19,10,11,8,12,8,11,10,19,11,12,10,18,12,17,17,24,13,13,10,15,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,10,7,9,9,16,9,11,10,17,11,16,16,30,16,16,11,17,10,13,11,20,11,11,9,14,9,13,12,23,12,13,10,17,10,13,12,23,13,16,14,26,18,26,26,59,30,30,21,32,18,22,19,33,18,19,14,23,14,19,18,34,18,19,13,20,12,14,13,23,13,15,12,19,13,19,19,36,19,19,13,19,11,13,11,18,10,11,9,14,9,12,12,23,12,13,10,15,9,11,10,19,11,13,10,17,12,17,16,37,19,19,13,19,11,13,11,19,10,10,7,11,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,8,11,11,20,11,11,7,10,6,7,7,12,7,8,6,9,6,7,6,11,6,7,5,8,5,7,6,11,7,9,8,14,10,15,15,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,9,9,18 +10,6,6,4,6,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,7,4,5,5,8,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,3,3,4,3,4,3,5,4,5,5,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,14,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,9,6,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,13,25,14,15,11,17,11,14,13,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,14,10,16,10,14,13,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,8,8,7,12,8,11,11,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,8,14,10,14,14,30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,8,6,8,8,11,6,6,5,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,10 +10,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,6,4,4,4,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,4,3,4,3,4,3,5,5,2,2,2,2,1,1,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,13,7,8,7,12,8,12,11,14,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,10,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,10,6,8,7,11,6,7,5,9,6,8,7,12,7,7,5,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,17,9,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,10,7,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,15,15,27,14,14,10,15,9,11,10,17,10,11,9,15,10,14,13,25,14,15,11,17,11,14,13,26,15,18,15,26,18,26,26,48,25,25,17,25,14,16,14,24,13,14,10,17,11,15,14,24,13,13,9,14,8,10,9,16,9,10,8,13,9,12,12,26,14,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,14,8,8,7,12,8,11,11,25,13,12,8,13,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,7,12,7,8,6,9,6,8,7,12,8,10,9,14,10,14,14,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,6,6,10 +7,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,4,3,3,3,6,3,3,3,4,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,4,4,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,7,7,5,7,4,6,5,8,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,7,12,7,8,7,11,7,10,10,17,10,10,8,12,8,10,9,18,10,13,11,18,12,18,18,33,17,17,12,17,10,11,9,17,9,10,7,12,8,10,10,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,9,18,10,10,7,9,6,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,4,6,5,8,5,6,4,7,4,6,5,8,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,12,6,7,6,8,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,6,4,4,4,8,4,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,13,7,7,5,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,3,3,4,3,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,6,8,7,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,10,5,5,4,5,4,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,13,7,7,6,9,6,7,7,10,6,7,6,10,7,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,15,21,11,11,8,12,7,9,8,13,8,9,7,11,7,9,9,18,10,10,7,10,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,25,13,14,11,18,11,15,14,26,15,18,16,28,19,27,27,49,25,25,17,26,14,16,13,25,13,14,11,17,11,15,14,25,13,14,10,14,8,10,9,16,9,10,8,14,9,13,13,28,15,15,10,14,8,9,8,15,8,9,7,11,7,8,8,15,8,8,6,9,6,8,7,14,8,9,7,12,8,12,12,26,13,13,9,14,8,9,8,14,8,8,6,10,7,9,9,17,9,9,7,10,6,7,7,11,6,7,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,7,6,10,5,5,4,6,4,4,4,5,3,4,4,6,4,5,5,11,6,6,5,8,5,7,6,9,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,10,6,6,4,6,4,6,5,10,6,7,6,9,6,9,8,17,9,9,7,10,6,7,6,12,7,7,6,10,6,8,8,12,7,7,6,10,6,7,7,12,7,9,9,16,11,16,15,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,21,11,11,7,10,6,8,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,8,21,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,6,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,2,3,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,11 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,5,8,5,6,5,8,6,8,9,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,7,10,7,9,8,15,9,11,9,16,11,16,16,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,4,3,5,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,4,7,5,6,5,9,6,9,9,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,5,3,4,3,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,6,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,5,6,5,8,5,7,7,10,6,6,5,9,5,6,6,10,6,7,6,10,7,10,10,15,8,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,8,12,8,11,10,18,11,13,11,19,13,19,19,34,18,18,12,19,11,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,7,10,9,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,8,7,10,6,7,5,8,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,9,5,6,5,7,5,6,6,9,5,6,4,7,4,5,4,7,4,5,4,5,4,6,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,3,3,3,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,6,6,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,15,8,7,5,7,5,6,5,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,7,7,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,5,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,13,7,8,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,9,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,30,15,15,11,16,9,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,7,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,5,4,4,4,5,3,3,3,4,3,5,5,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,5,4,5,5,7,4,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6 +10,6,6,5,7,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,11,6,5,4,5,3,4,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,16,9,9,6,8,5,6,6,10,6,6,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,11,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,8,6,10,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,10,6,8,8,14,8,9,7,10,6,7,7,12,7,7,6,10,7,10,10,15,8,8,6,10,7,9,9,16,9,10,9,15,11,16,16,24,13,13,9,14,8,10,8,14,8,9,7,12,8,11,10,18,10,11,8,12,7,9,9,16,9,11,10,17,11,16,16,29,15,15,11,17,10,12,10,18,10,12,9,15,10,14,14,27,15,16,12,20,12,16,15,28,16,20,17,29,19,28,28,54,27,27,18,26,15,17,15,26,14,15,11,17,11,15,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,14,30,16,16,11,17,10,11,9,16,9,9,7,11,7,9,9,14,8,8,6,9,6,8,8,14,8,10,8,13,9,13,13,28,15,15,11,16,9,11,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,11,8,11,11,28,15,15,10,15,9,10,8,14,8,9,7,11,7,9,9,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,13,7,8,6,8,5,5,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,9,7,10,6,7,6,10,6,6,4,6,4,5,4,11,6,7,5,8,5,6,6,11,6,7,6,10,6,8,8,21,11,11,8,13,8,10,8,14,8,9,7,10,7,9,9,16,9,9,7,11,7,8,8,14,9,11,9,16,11,16,16,31,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,11,7,9,8,15,9,10,8,13,9,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,6,8,8,21,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,4,3,5,5,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10 +5,3,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,11,7,9,8,15,9,11,9,16,11,15,15,29,15,15,10,14,8,10,8,14,8,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,6,6,5,8,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,5,6,5,8,6,8,8,8,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,5,8,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,9,10,8,13,8,10,9,17,10,12,10,18,12,17,17,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,5,6,6,10,6,7,6,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,9,5,5,4,6,4,6,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,6,4,5,3,4,4,6,4,4,3,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,13,7,6,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,10,7,10,10,18,9,9,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,5,12,6,6,5,8,5,6,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,4,6 +4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,7,4,5,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,13,8,9,8,14,9,13,13,24,12,12,9,13,8,9,8,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,14,7,7,5,8,5,6,5,7,4,4,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,6,5,8,5,7,7,9,5,5,4,6,4,4,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,4,5,5,11,6,6,5,8,5,6,6,9,5,6,6,10,7,10,10,9,5,6,4,6,4,4,4,5,3,3,2,3,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,7,5,6,6,9,5,5,4,7,4,5,5,8,5,5,4,5,4,5,4,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,9,9,12,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,6,8,7,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,7,11,8,11,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,22,22,40,21,21,14,21,12,14,12,20,11,11,8,12,8,11,10,20,11,11,7,10,6,8,7,12,7,8,7,11,7,10,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,10,6,7,6,10,7,10,10,21,11,11,7,10,6,7,6,12,7,7,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,8,5,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,5,8,6,8,8,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,5,4,5,4,5,5,6,4,5,4,6,4,6,7,10,5,5,4,6,4,4,3,7,4,4,3,4,3,3,3,8,4,4,3,4,3,5,5,7,4,5,4,6,4,6,5,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,7,6,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,6,8,7,13,7,8,6,8,5,7,6,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,4,5,4,9,5,5,4,6,4,6,6,16,9,9,6,9,6,7,6,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,7,4,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,13,8,9,8,13,7,7,6,8,6,7,7,12,7,7,5,7,4,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,7,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,7,4,5,5,8,5,6,5,8,6,9,9,7,4,5,4,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,6,5,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,7,10,10,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,10,10,19,10,11,9,14,9,12,11,20,12,14,11,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,12,8,10,9,16,9,9,6,9,6,8,7,11,7,8,6,9,6,9,9,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,18,9,9,6,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,4,6,4,4,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,6,5,8,5,7,7,20,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,13,7,7,5,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,9,5,6,6,10,6,7,6,11,8,11,11,17,9,9,7,9,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,7,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,4,2,2,2,3,3,4,4,6 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,10,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,7,12,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,19,13,19,19,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,9,9,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,9,6,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,6,5,9,5,6,5,7,5,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,5,6,3,3,3,3,2,3,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,13,7,7,5,8,5,6,5,9,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5 +7,4,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,5,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,3,2,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,6,8,8,14,8,10,9,16,11,16,16,13,7,7,5,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,11,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,7,5,8,5,7,6,11,7,8,7,12,9,14,14,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,18,10,10,7,10,6,8,7,11,7,8,6,10,7,9,8,14,8,9,7,10,6,8,7,12,7,9,8,14,10,14,15,20,11,11,8,12,7,8,7,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,7,12,7,8,7,12,8,11,11,17,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,11,13,11,18,12,18,19,32,17,17,12,17,10,12,10,18,10,11,9,14,9,13,12,23,12,12,9,14,9,11,11,20,11,13,11,18,13,19,19,33,17,17,12,19,11,14,12,22,12,14,11,19,13,18,18,34,18,19,14,23,15,20,19,36,21,25,21,37,25,37,37,69,35,35,23,33,19,22,18,31,16,17,12,19,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,12,17,16,36,18,18,13,19,11,13,11,18,10,10,8,12,8,11,11,21,12,13,10,15,9,12,11,19,11,12,10,16,11,16,16,32,17,17,12,17,10,11,9,15,8,9,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,24,13,13,9,13,8,10,9,15,8,9,7,10,6,8,7,12,7,8,6,10,6,8,7,13,8,9,8,13,9,13,13,36,19,19,13,20,11,13,11,19,10,11,8,12,8,11,10,18,10,10,7,9,6,7,7,12,7,7,6,10,6,8,8,10,6,6,5,7,5,6,6,10,6,7,6,9,6,8,7,12,7,8,6,10,6,8,7,13,8,9,7,11,7,10,10,16,9,9,7,10,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,6,4,5,4,7,5,8,8,24,13,13,9,14,9,11,10,17,9,10,8,12,8,11,11,20,11,11,8,13,9,12,12,22,13,15,12,21,14,20,20,30,15,15,11,16,10,12,10,17,9,10,8,12,8,11,11,20,11,11,8,13,8,10,9,15,9,10,8,12,8,12,12,23,12,12,8,12,7,9,8,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,7,6,9,6,9,9,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,7,12,7,8,6,10,6,8,7,13,7,8,7,12,8,10,10,11,6,7,5,7,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,6,10,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,6,7,5,8,5,7,6,10,6,6,5,8,5,7,7,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,4,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,5,9 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,16,8,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,8,12,8,11,10,19,11,13,11,19,13,20,20,36,19,19,12,18,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,7,6,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,5,12,7,7,5,7,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,5,3,3,3,3,3,4,3,5 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,5,3,4,4,5,3,4,4,5,4,6,5,6,3,3,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,4,7,4,5,5,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,8,8,12,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,5,7,4,5,4,7,4,4,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,7,6,10,7,11,11,17,9,9,6,10,6,7,6,11,6,7,6,9,6,7,7,13,7,6,5,7,5,6,6,11,7,8,7,10,7,10,11,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,8,13,8,11,10,20,12,14,12,20,14,21,21,38,20,20,13,19,11,13,11,17,9,9,7,10,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,10,7,10,9,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,7,20,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,4,3,5,3,3,3,6,3,2,2,3,2,2,2,4,3,4,3,4,3,5,5,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,8,12,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,4,5,5,6,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,5,3,3,3,3,3,4,4,6 +3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,5,3,3,3,4,3,3,3,5,4,4,4,6,5,7,7,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,3,5,3,3,3,5,4,4,4,7,4,5,4,6,4,4,4,7,4,5,5,8,6,8,8,12,6,6,5,7,4,5,4,8,5,5,4,7,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,15,15,28,14,14,10,14,8,9,8,13,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,5,8,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,14,8,8,6,8,5,5,4,8,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4 +3,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,5,3,4,4,7,5,7,7,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,10,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,5,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,13,7,8,6,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,5,4,7,4,5,4,7,5,7,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,8,5,7,7,12,7,8,7,12,9,13,13,22,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,23,12,13,9,14,9,12,11,23,13,16,13,23,16,23,23,44,22,22,15,21,12,14,12,20,11,11,8,12,8,10,10,18,9,9,7,10,7,9,8,13,8,9,7,12,8,11,10,21,11,10,7,10,6,7,6,10,5,5,4,6,4,6,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,10,6,6,5,8,5,6,5,9,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,5,6,5,9,5,5,4,6,4,4,4,9,5,5,4,7,5,8,8,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,6,4,5,4,6,4,4,3,5,3,3,3,5,4,5,5,7,4,4,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,12,8,12,12,17,9,9,7,10,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,8,5,6,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,5,14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,6 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,14,8,10,8,14,10,14,14,26,14,14,9,13,8,9,8,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,4,5,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,3,5,3,4,3,6,4,6,6,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,8,11,6,6,4,6,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,6,6,10,7,10,10,14,8,8,6,9,5,6,6,10,6,6,5,9,6,7,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,11,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,17,10,12,10,16,9,9,7,11,7,9,8,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,17,9,8,6,8,5,6,5,8,4,4,3,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,6,8,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,6,5,7,4,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,4,5,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,4,4,4,8,5,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,6,6,9,7,10,10,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,8,17,9,10,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,8,6,7,7,15,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 +2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,2,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,6,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,8,5,5,4,6,4,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,4,7,4,5,5,8,5,6,5,8,5,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,10,6,8,8,14,8,10,8,14,9,13,13,23,12,12,9,13,8,9,8,13,7,7,6,9,6,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,13,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,15,8,9,6,9,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,15,16,25,13,14,10,14,9,11,10,18,10,11,8,12,8,11,10,20,11,11,8,11,7,10,9,16,9,11,10,17,12,18,18,31,16,16,12,18,11,13,11,20,11,13,10,16,11,15,15,31,17,18,13,21,13,17,16,30,17,20,17,31,21,31,31,59,30,30,20,30,17,19,16,28,15,15,11,17,11,15,14,27,14,14,10,16,9,11,10,18,10,12,9,15,10,13,13,27,14,14,10,14,8,10,8,14,8,8,7,11,7,9,8,16,9,9,7,11,7,8,8,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,16,9,9,7,12,8,10,9,15,8,8,6,10,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,13,8,9,8,13,7,7,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,31,16,16,11,16,9,11,9,15,8,9,7,11,7,9,8,12,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,17,9,9,7,11,7,9,8,14,8,9,7,10,7,9,9,19,10,11,8,12,7,9,9,16,9,11,9,16,11,16,16,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,14,8,8,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,3,4,4,6,4,5,4,6,4,6,5,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,4,5,4,5,4,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,8,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,6,8,5,7,6,10,6,7,5,7,5,7,6,11,6,7,5,7,4,6,5,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,17,12,17,17,33,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,5,5,8,4,5,4,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,7,5,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,6,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,9,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,13,7,8,6,8,5,6,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,9,8,14,8,8,7,12,8,10,10,21,11,12,9,13,9,12,11,20,12,14,12,20,14,20,20,39,20,20,13,20,11,13,11,19,10,11,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,5,9,5,6,4,5,3,4,4,8,4,4,4,6,4,5,4,7,4,5,4,7,5,8,8,20,10,10,7,11,7,8,6,10,6,6,5,8,5,6,5,9,5,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,4,2,2,2,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,11,6,7,6,11,7,10,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,11,6,7,5,7,5,6,6,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,17,9,10,7,11,7,10,9,16,10,11,10,16,11,17,17,32,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,6,11,6,7,5,7,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4 +-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,4,3,4,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,6,6,10,7,9,9,10,5,5,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,4,6,4,5,5,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,9,5,6,4,6,4,4,4,7,4,5,5,8,6,8,7,12,7,8,6,9,6,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,7,4,5,4,8,5,5,5,8,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,6,5,7,7,12,7,7,5,8,6,8,7,12,7,8,7,11,8,11,12,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,8,14,8,9,8,14,10,15,15,26,13,13,9,14,8,10,9,17,9,10,8,12,8,11,11,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,15,29,15,16,12,19,12,17,16,28,16,19,16,28,19,28,29,55,28,28,19,28,16,18,15,27,15,16,12,18,11,15,14,27,14,14,10,15,9,11,10,17,9,10,8,14,9,13,12,23,12,12,8,12,7,8,7,14,8,9,7,12,8,10,9,15,8,9,7,10,7,9,8,16,9,10,8,13,9,13,13,25,13,13,9,14,8,9,8,16,9,9,7,10,6,8,8,14,8,9,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,11,8,11,7,8,7,13,7,8,6,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,10,10,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,13,7,7,5,6,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,7,6,12,7,7,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,9,8,14,10,15,15,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,4,4,5,3,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,18,9,9,7,10,6,7,6,12,6,7,6,8,5,7,7,13,7,7,6,8,6,7,6,11,6,8,6,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,11,8,11,10,20,11,11,8,13,8,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,12,10,18,10,11,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,6,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,10,6,6,5,7,4,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,7,6,9,5,5,4,7,4,6,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,6,5,8,6,9,9,9,5,4,3,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,4,4,7,4,5,5,8,6,8,7,13,7,8,6,8,6,8,7,13,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,7,7,12,6,6,5,6,4,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,9,11,9,17,9,10,8,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,11,21,11,12,10,16,11,16,15,30,16,17,13,19,12,16,15,29,17,20,16,28,19,28,28,53,27,27,18,27,15,18,15,27,14,15,11,18,11,15,14,27,14,14,10,15,9,11,10,16,9,10,8,14,9,12,12,22,12,12,8,13,7,8,8,13,7,8,7,11,7,10,9,16,9,10,7,10,7,9,8,16,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,8,11,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,9,8,16,9,10,7,10,6,8,8,14,8,10,9,15,11,16,16,19,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,8,6,8,8,13,7,6,5,7,4,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,8,5,6,5,8,6,9,9,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,9,6,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25,13,13,10,14,9,11,9,16,9,10,8,11,7,10,10,19,10,11,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,12,21,11,12,10,16,11,16,15,30,16,17,13,20,12,16,15,29,16,19,16,28,19,28,28,52,26,26,18,26,15,18,15,27,14,15,11,18,11,15,14,26,14,14,10,15,9,11,10,16,9,10,8,13,9,12,12,22,12,12,8,13,8,9,8,13,7,8,7,11,7,10,9,16,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,8,8,16,9,9,7,10,6,8,8,14,8,10,9,15,11,16,16,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,7 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,4,3,5,5,8,5,5,4,6,5,7,7,12,7,7,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,9,17,9,10,8,12,8,11,11,20,11,13,11,19,13,18,18,15,8,8,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,8,7,11,8,12,12,22,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,13,10,16,10,13,12,23,13,15,12,21,14,21,21,27,14,14,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,11,8,12,8,10,9,17,10,11,9,15,10,14,14,26,14,14,10,15,9,11,10,17,10,11,9,14,9,13,12,23,13,14,11,17,11,14,13,24,14,16,13,23,15,22,22,44,22,22,15,21,12,14,12,22,12,13,10,16,10,14,14,27,14,15,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,12,9,13,8,9,8,14,8,9,8,13,9,13,12,23,12,13,9,14,9,12,11,21,12,13,11,19,13,19,20,35,18,18,12,18,11,14,12,22,12,13,10,16,11,15,14,27,14,14,10,15,9,12,11,19,11,13,10,17,11,16,16,31,16,16,12,18,11,13,11,20,11,13,11,18,12,17,17,32,17,18,13,20,13,17,16,30,17,19,15,26,18,26,25,49,25,25,17,26,15,19,17,30,16,18,13,21,13,18,17,32,17,17,12,19,12,16,15,27,15,17,14,24,16,23,23,44,23,23,16,25,15,19,17,30,17,19,16,28,19,27,26,51,27,29,22,35,22,30,28,54,30,36,31,55,37,54,54,103,52,52,35,51,28,33,28,49,26,28,20,32,20,27,25,48,25,26,18,28,16,20,18,33,18,21,17,28,18,26,26,50,26,26,18,26,15,17,14,25,14,15,12,19,12,17,16,30,16,17,13,20,12,16,14,25,14,17,14,24,16,24,24,48,24,24,16,24,14,17,15,26,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,13,7,8,7,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,17,18,51,26,26,17,25,14,17,14,25,13,14,11,18,12,16,15,28,15,15,11,16,10,13,11,20,11,12,9,15,10,13,13,25,13,13,9,14,8,10,9,16,9,9,7,12,8,11,10,19,10,11,8,11,7,9,8,15,8,9,8,13,9,13,13,25,13,13,9,13,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,38,19,19,13,20,12,15,13,23,13,14,11,18,12,17,16,30,16,17,12,19,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,12,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,11,10,19,10,11,9,15,10,15,15,28,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,20,10,10,7,9,5,6,6,10,6,6,5,7,5,7,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,7,10,6,7,6,11,6,7,5,7,5,6,6,10,5,5,4,5,4,5,4,7,5,6,5,8,6,9,9,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,5,4,5,3,4,4,6,4,5,4,7,5,8,8,14,7,7,5,7,4,5,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,13,25,13,13,9,13,8,10,9,15,9,10,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,8,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,52,26,26,18,26,15,17,14,25,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,10,11,9,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,10,6,9,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,10,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,9,6,10,7,9,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,6,5,9,6,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,4,3,4,3,4,4,7 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,7,11,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,8,6,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,6,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,13,8,10,9,15,9,10,7,12,8,10,9,17,9,10,7,10,6,8,8,14,8,10,8,13,9,12,12,23,12,12,9,14,8,10,9,16,9,11,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,53,27,26,18,26,15,18,15,26,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,9,10,8,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,5,9,5,6,5,9,7,10,10,27,14,14,9,13,8,10,8,12,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,8,6,10,7,9,8,15,9,10,9,16,11,15,15,18,9,9,7,10,6,6,5,10,6,6,5,8,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,4,3,4,4,7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,6,3,3,3,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,4,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,7,5,7,6,11,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,9,6,7,6,10,6,7,5,8,6,7,7,12,6,7,5,7,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,7,8,6,11,7,10,10,17,9,10,8,12,8,11,10,19,11,13,11,19,13,19,19,36,18,18,12,18,10,12,10,18,10,10,7,12,8,10,9,17,9,10,7,10,6,7,6,12,6,7,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,7,5,6,6,10,6,7,6,11,8,10,10,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,1,3,2,3,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,11,8,12,12,14,7,7,5,6,4,4,4,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,7,6,13,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,10,9,16,9,9,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,14,8,9,7,12,8,11,10,17,9,10,7,10,7,9,8,15,9,10,8,12,8,12,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,15,25,13,14,11,18,11,15,14,27,15,18,16,28,19,27,27,54,27,27,18,26,15,17,14,26,14,15,11,17,11,14,13,25,13,13,9,14,9,11,9,17,9,10,8,14,9,13,13,25,13,13,9,12,7,8,7,13,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,8,13,9,13,13,24,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,12,6,6,4,6,4,5,5,10,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,12,7,7,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,11,11,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,14,8,8,6,10,6,8,8,14,8,10,9,16,11,15,15,19,10,10,7,10,6,6,5,11,6,7,5,8,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,8,6,9,9,13,7,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,3,3,3,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,3,3,5,3,4,3,4,3,4,4,8 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,8,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,8,7,11,7,9,8,16,9,10,9,16,11,15,15,31,16,15,10,15,9,10,8,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,8,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,6,6,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,5,6,5,9,5,6,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,9,7,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,13,8,10,10,19,11,12,10,19,13,18,18,37,19,18,12,18,10,12,10,19,10,11,8,12,8,10,9,17,9,10,7,10,6,7,6,12,7,7,6,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,4,4,6,4,6,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,3,4,4,6 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,8,4,5,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,5,9,5,5,5,7,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,31,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,10,5,5,4,6,4,5,5,10,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,3,4,4,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,11,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,7,10,6,6,5,9,6,7,6,9,6,8,8,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,26,14,14,10,14,8,9,7,12,7,7,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,5,7,7,13,8,9,7,12,8,11,11,23,12,12,9,14,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,8,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,8,8,14,8,9,8,14,10,14,14,25,13,13,9,13,8,10,9,15,9,10,8,12,8,11,10,17,9,10,7,11,7,8,8,14,8,9,7,12,8,11,11,24,13,13,10,15,9,12,10,18,10,12,10,16,11,15,15,27,15,16,12,18,11,15,15,28,16,18,15,27,18,27,27,56,29,29,19,28,16,19,16,28,15,15,11,17,11,14,14,26,14,14,10,15,9,10,9,16,9,11,9,14,9,13,12,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,8,17,9,10,7,10,6,8,7,12,7,9,8,13,9,14,14,23,12,13,9,13,7,8,7,12,7,8,6,9,6,9,9,16,9,9,7,11,7,8,7,12,7,7,6,10,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,7,6,10,6,7,5,8,5,6,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,19,10,11,8,11,7,8,7,11,6,7,6,10,7,9,8,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,5,3,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,5,3,4,3,4,3,5,5,10 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,5,3,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,15,10,15,15,30,16,16,10,15,9,11,9,15,8,8,6,9,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,5,5,3,5,3,4,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,5,4,5,5,8,5,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,17,17,11,17,10,12,10,16,9,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,9,6,7,6,9,7,10,10,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,2,2,2,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,24,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,8,8,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,1,1,1,1,1,1,0,0,3,2,1,1,0,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,4,7,5,6,5,8,6,8,8,6,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,1,1,1,1,0,0,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,10,6,6,4,6,4,6,6,12,7,7,5,7,5,6,6,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,9,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,11,6,7,5,8,5,7,7,16,9,9,7,10,6,7,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,11,13,11,19,10,11,8,13,9,12,11,20,11,11,8,11,7,9,8,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,8,5,5,4,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,5,4,6,6,11,6,5,3,4,3,3,3,6,4,4,4,6,4,4,4,9,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,15,8,8,6,8,5,5,5,7,4,5,4,7,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,3,7,4,5,4,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,24,12,12,8,13,8,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,7,4,4,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5 +1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,5,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,7,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,7,9,9,16,9,11,9,17,11,16,16,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,2,2,3,5,3,4,3,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,5,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,8,8,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,9,16,9,11,9,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,11,6,6,5,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,10,5,5,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,7,6,11,8,11,12,8,4,4,3,5,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,11,6,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,5,6,5,9,7,10,10,14,8,8,5,7,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,8,12,13,29,15,16,11,16,9,10,8,14,8,8,7,11,7,9,8,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,11,7,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,20,11,12,9,13,8,10,10,18,10,12,10,17,11,15,15,31,16,16,11,15,9,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,11,9,14,9,13,12,25,13,13,10,15,9,12,10,18,10,11,9,16,10,14,14,26,14,15,12,19,12,16,16,30,17,20,17,29,20,29,29,59,30,31,21,31,18,21,18,31,17,18,13,20,13,17,16,31,16,16,11,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,10,7,9,9,16,9,11,9,14,10,14,14,25,13,14,10,15,9,10,9,16,9,9,7,12,8,10,9,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,11,8,12,7,9,8,14,8,9,7,11,7,9,8,15,8,9,7,11,7,9,8,15,9,11,9,15,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,9,6,7,6,11,6,7,5,7,4,5,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,7,12,8,11,11,20,11,11,8,13,8,10,10,18,11,13,11,18,12,18,18,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,9,6,9,9,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,10,5,5,4,5,3,4,3,4,3,3,3,5,4,5,5,11,6,6,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,6,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,6,4,4,4,7,5,7,7,12 +1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,6,4,6,6,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,8,6,10,7,9,9,16,9,11,9,15,10,15,15,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,6,6,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,7,5,7,7,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,2,2,2,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,6,4,6,6,10,6,6,4,7,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,31,16,17,12,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,5,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,8,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,5,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,9,5,4,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,6,4,6,6,10,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,4,5,4,4,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,5,8,5,7,7,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,4,4,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,2,3,2,3,2,3,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,4,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,6 +0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,7,4,5,4,7,5,7,7,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,5,5,8,5,7,7,16,9,9,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,15,8,9,7,10,6,7,7,10,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,9,9,17,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,14,8,9,7,12,8,10,9,17,10,11,10,17,12,17,17,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,10,19,10,10,8,12,7,9,7,11,6,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,11,6,6,5,8,5,6,5,9,5,6,6,10,7,9,9,14,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,10,7,9,9,16,8,8,5,7,5,6,5,6,4,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,4,3,5,5,9 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,4,5,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,5,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,4,4,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,4,4,4,6,4,6,5,7,4,4,4,6,5,7,7,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,10,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,5,6,4,5,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,10,6,6,5,8,6,7,7,12,7,9,8,13,9,13,13,22,12,11,8,11,7,8,7,12,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,-1,0,0,1,2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,4,3,4,3,4,4,6,4,5,5,8,6,8,7,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,9,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,7,7,12,7,8,7,12,8,11,11,23,12,12,9,13,8,10,8,14,8,9,7,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,8,5,6,5,13,7,7,5,7,5,6,6,10,6,7,7,12,8,11,11,19,10,10,8,12,7,9,7,12,7,8,7,11,7,10,9,12,7,7,5,7,5,7,7,12,7,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,12,9,15,9,12,12,22,13,15,13,23,16,23,23,41,21,21,14,21,12,14,12,21,11,11,8,13,9,12,11,22,12,12,9,13,8,9,8,14,8,9,7,10,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,13,13,16,8,8,6,9,6,7,6,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,6,6,10,6,7,7,12,8,11,11,24,12,12,9,13,8,9,8,13,7,7,5,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,7,12,7,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,6,11,8,11,11,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,4,5,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,4,2,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14 +1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,10,6,7,6,9,6,7,7,12,7,9,8,13,9,13,13,22,12,12,8,12,7,8,7,12,6,6,5,7,5,7,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,9,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,5,3,3,3,5,3,4,3,5,3,3,2,3,2,3,4,8,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,7,8,6,10,6,8,8,14,8,10,9,14,10,14,15,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,13,7,7,6,9,5,6,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,5,5,8,4,4,3,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,5,9,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,3,2,2,2,3,2,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,5,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,3,2,2,2,2,3,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,9 +2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,1,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,0,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,6,6,11,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,5,5,4,6,4,5,5,11,6,7,6,10,7,9,9,22,11,11,8,12,7,9,8,13,7,8,6,10,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,6,10,7,10,9,15,8,8,6,10,6,7,7,10,6,6,5,8,6,8,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,9,7,12,8,11,10,19,11,13,11,20,14,20,20,35,18,18,12,17,10,11,10,17,9,9,7,11,7,9,9,18,10,10,7,11,6,7,6,12,7,7,5,8,6,9,9,17,9,9,6,8,5,7,6,11,6,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,5,7,7,10,5,5,4,6,4,5,5,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,12,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,6,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,3,3,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,3,2,3,2,2,2,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,2,2,5,3,3,2,2,2,2,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,3,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12 +2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,6,9,5,6,4,7,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,4,6,4,4,4,8,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,8,4,5,4,7,5,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,14,14,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,3,3,4,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,7,7,5,7,4,5,5,7,4,5,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,6,6,1,1,2,1,2,1,1,1,3,2,2,1,2,2,2,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,14,8,8,6,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,4,4,4,5,3,4,4,8,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,11,10,18,11,13,11,19,13,20,20,33,17,16,11,16,9,11,9,15,8,9,7,11,7,10,9,17,9,9,7,9,5,6,6,11,6,7,6,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,9,5,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,8,5,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,1,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,6,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,7,5,8,5,6,6,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,10,10,18,11,13,11,19,13,20,20,32,16,16,11,16,9,11,9,15,8,9,7,11,7,9,9,16,9,9,6,9,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +4,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,7,14,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,7,6,10,7,10,10,3,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,2,2,-11,-5,-5,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,0,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,26,14,14,10,14,8,10,8,13,7,8,6,9,6,8,7,12,6,6,5,7,5,7,7,12,7,8,7,12,8,11,10,19,10,10,7,11,7,9,8,14,8,9,7,10,7,10,10,18,9,9,7,10,7,9,8,15,9,10,8,14,9,13,13,27,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,14,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,7,10,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,9,11,9,15,10,15,15,43,22,22,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,10,15,9,12,11,19,11,12,9,15,10,14,14,26,14,14,10,15,9,11,10,19,10,11,9,14,9,13,12,22,12,12,9,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,16,10,12,11,19,10,11,8,13,9,12,11,21,11,12,9,14,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,18,11,14,13,23,13,15,13,23,15,22,21,41,22,23,17,27,17,23,21,39,22,26,22,39,26,38,38,61,31,32,22,33,19,23,20,35,19,20,15,24,15,20,19,35,18,18,12,18,11,13,11,20,11,13,11,18,12,16,15,29,15,15,10,15,9,11,10,17,10,11,8,13,9,13,13,24,13,13,9,14,9,12,11,19,11,14,12,20,13,19,19,20,11,11,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,8,7,11,8,11,11,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,16,10,13,11,20,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,21,11,11,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,5,7,7,12,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,26,14,14,10,15,9,12,10,18,10,11,9,15,10,13,12,23,12,12,9,13,8,11,10,17,10,12,10,18,12,17,17,31,16,15,10,15,9,11,10,17,9,10,7,11,8,11,10,19,10,10,7,11,6,7,6,11,6,7,6,10,7,11,11,20,10,10,7,9,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,22,12,12,8,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,11,8,11,10,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,2,2,1,1,1,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,9,6,8,7,12,8,11,11,22 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,6,5,10,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,10,7,10,10,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,7,5,6,6,12 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,3,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,6,5,10,6,6,4,5,4,5,5,9,5,6,5,7,5,8,8,15,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,9,17,9,10,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,16,9,9,6,8,5,6,6,9,5,6,5,7,5,8,7,13,7,8,5,7,5,6,6,11,7,8,7,10,7,11,11,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,8,5,6,5,10,6,7,6,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,4,6,6,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,4,7,5,6,6,12 +2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,5,7,7,12,6,7,5,7,5,6,5,9,6,6,5,8,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,14,22,11,11,8,12,7,8,7,13,7,7,6,8,6,8,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,5,4,5,4,8,5,6,5,7,5,8,8,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-3,-1,0,1,1,1,2,2,1,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,14,7,7,5,7,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,5,10,6,7,5,8,6,9,9,15,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,8,4,4,3,5,4,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,6,5,8,5,6,5,8,6,8,8,24,13,13,9,14,8,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,9,9,6,9,5,6,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,15,8,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,6,5,9,7,10,10,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,23,13,14,10,16,10,13,12,21,12,14,12,20,14,21,21,33,17,17,12,17,10,12,10,19,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,10,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,7,6,11,7,8,6,10,7,11,11,12,7,7,5,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,5,7,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,7,6,10,6,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,4,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,5,8,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,4,3,4,3,3,2,5,3,3,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,4,5,4,7,5,7,7,14 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,8,5,5,4,5,3,3,3,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,-1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,2,2,2,2,10,6,6,4,6,4,4,3,6,3,3,2,4,2,2,2,5,3,3,3,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,6,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,17,9,10,7,10,6,6,5,9,5,6,4,6,4,6,6,12,6,6,5,8,5,5,4,7,5,6,4,6,4,6,6,13,7,6,5,6,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,7,12,6,6,5,8,5,6,6,10,6,6,5,10,7,9,9,18,10,10,8,11,7,10,9,15,9,10,8,15,11,16,16,23,12,12,8,12,7,8,7,13,7,7,5,9,6,7,7,14,7,7,5,7,5,6,5,7,4,4,3,5,4,6,6,12,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,4,4,3,5,4,6,5,8,4,4,3,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,6,4,6,6,10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,16,9,9,7,10,6,8,8,13,8,9,8,13,9,14,14,20,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,7,5,6,4,5,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,9,5,4,3,4,3,3,2,2,2,2,2,2,2,2,3,1,1,2,2,3,2,3,3,4,3,3,3,4,3,5,6,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,3,4,4,8,5,5,5,8,5,7,7,6,3,3,2,3,2,3,2,3,2,1,1,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,6,6,10,6,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,5,5,4,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,11,6,6,5,7,5,6,6,12,7,9,8,13,9,12,12,28,15,15,10,14,8,10,8,14,8,9,7,11,7,9,8,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,20,10,10,7,9,5,6,6,10,6,7,6,9,6,7,7,16,8,8,6,8,5,6,6,10,6,7,6,10,7,9,8,19,10,10,7,11,7,8,6,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,6,11,7,8,6,10,7,10,11,20,11,11,8,13,8,10,9,16,9,10,9,15,10,14,14,29,15,15,11,17,11,14,13,23,13,16,14,24,16,24,24,35,18,18,12,17,10,12,10,18,10,11,9,14,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,19,10,10,7,11,7,8,7,11,6,7,6,10,7,9,9,13,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,14,13,26,14,14,9,13,8,9,7,12,7,8,6,10,6,8,7,11,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,7,7,5,8,6,8,7,13,8,9,8,13,9,12,12,21,11,10,7,10,6,7,6,10,6,6,5,7,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,5,4,5,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,7,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,8,5,6,6,10,7,10,9,17 +1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,10,6,8,7,13,8,9,8,13,9,13,13,19,10,10,7,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10 +2,1,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,9,5,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,9,5,6,4,7,5,6,5,11,6,6,5,6,4,5,5,7,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,13,7,8,6,9,6,7,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,9,8,14,8,10,8,15,10,15,15,22,12,12,8,10,6,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,7,4,5,4,7,4,5,5,12,6,6,4,7,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,6,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,4,3,4,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,2,2,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,9,5,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,7,7,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,7,11,7,8,7,12,8,12,12,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9 +2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,5,4,6,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,13,7,8,6,9,6,7,6,9,5,6,4,6,4,6,6,10,5,5,4,6,4,6,6,11,6,7,6,10,7,11,11,18,10,11,8,12,7,8,7,13,7,8,7,12,8,12,12,23,12,12,9,14,9,12,11,18,10,12,11,19,13,19,19,29,15,15,10,14,8,10,8,13,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,10,6,7,5,8,5,7,6,16,9,9,6,8,5,5,4,9,5,6,5,7,5,8,8,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,3,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,12,7,7,5,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,5,6,5,9,6,9,9,17,9,9,6,8,5,6,5,7,4,5,4,6,4,4,4,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,16 +2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,4,8,5,5,5,8,5,7,7,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,19,10,10,7,9,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,5,4,5,4,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,7,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,4,5,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,11 +3,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,3,4,3,6,3,3,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,4,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,17,9,8,6,9,5,6,5,8,5,5,4,5,4,6,5,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,6,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,7,10,10,16,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,18,12,18,18,26,14,14,9,13,7,8,7,12,7,8,6,8,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,8,5,5,4,8,5,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,5,4,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,6,4,6,5,10,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,3,3,4,4,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,3,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,2,3,3,4,3,3,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,7,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,17,12,18,18,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,3,4,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,3,2,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,4,5,5,9,5,6,5,9,6,8,8,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,9,5,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,8,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,10,9,15,10,15,15,31,16,15,10,14,8,9,8,14,8,8,6,10,7,10,9,17,9,9,7,11,7,8,7,12,7,8,7,11,7,10,9,20,11,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,20,13,19,19,42,21,21,14,20,12,14,12,21,11,12,9,14,9,13,12,22,12,12,9,14,9,11,9,16,9,10,8,14,9,13,12,27,14,14,10,14,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,7,11,8,11,11,21,11,12,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,29,16,17,12,19,11,14,13,24,14,16,13,21,14,20,20,38,20,21,16,25,15,20,18,34,19,22,19,33,23,34,34,49,25,26,18,26,15,17,15,26,14,14,10,16,10,13,12,22,11,11,8,12,7,9,8,14,8,9,7,10,7,10,9,25,13,14,10,14,8,10,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,11,10,18,10,12,9,15,10,14,13,20,10,10,7,9,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,14,8,8,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,16,11,15,15,31,16,16,11,16,10,12,11,19,10,10,7,11,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,8,13,9,12,11,15,8,9,7,10,6,7,6,10,6,7,6,10,7,10,10,18,10,10,8,13,8,10,9,17,10,11,9,15,10,15,15,27,14,14,10,15,9,10,8,14,8,8,6,9,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,5,3,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,5,4,7,5,7,6,11,6,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,7,5,7,8,14,8,8,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,7,8,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,9,8,13,9,14,14,28 +2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,17,9,8,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,11,7,10,10,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,26,14,14,10,14,8,9,8,14,8,8,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,7,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,7,5,7,6,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,15 +2,2,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,6,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,3,5,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,9,9,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,9,5,6,5,6,4,4,4,7,4,5,4,7,5,6,5,12,6,6,4,7,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,7,6,12,7,8,7,11,8,11,11,24,13,13,9,13,8,9,8,12,7,7,6,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,12,9,14,9,12,11,19,11,12,11,18,12,18,19,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,4,3,4,4,9,5,4,3,5,3,4,4,4,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,6,3,3,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,5,6,5,7,5,7,6,9,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,6,4,4,3,3,2,2,2,3,2,3,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,5,8,5,5,3,4,3,3,2,4,3,3,2,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,2,4,3,4,4,6,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,16 +1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,5,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,13,9,14,14,20,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,10,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,5,4,6,6,11 +1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,12,7,7,5,7,4,4,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,6,4,5,5,8,5,7,6,10,7,10,10,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,6,8,7,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,12,8,11,11,19,10,10,8,12,8,10,9,14,8,9,7,12,8,12,12,24,13,14,10,16,10,14,13,23,13,15,12,21,14,21,21,31,16,16,11,16,9,11,9,17,9,10,7,10,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,13,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,5,11,7,8,7,11,8,11,10,20,11,11,8,12,7,9,8,12,7,8,6,9,6,7,7,10,5,5,4,6,4,4,4,8,5,5,4,5,4,5,5,11,6,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,6,6,5,7,4,5,4,8,4,4,3,5,4,5,5,10,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,3,5,4,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,4,3,6,3,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,8,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,17 +0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,5,3,4,4,9,5,5,4,5,4,5,4,5,4,4,4,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,9,8,14,8,9,8,13,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,8,5,5,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,11 +-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,2,2,2,2,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,7,4,5,4,4,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,6,5,6,4,6,5,8,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,7,5,6,5,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,23,12,12,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,11,10,19,11,12,10,18,12,18,18,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,9,5,4,4,5,3,4,3,4,3,4,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,7,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,5,6,6,9,5,6,5,7,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,4,8,5,5,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,13 +-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,10,5,5,4,6,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,5,8,5,5,4,5,3,4,4,4,3,3,3,5,4,5,5,8,5,5,5,8,6,8,8,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,0,-1,-1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,13,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,13,7,8,6,9,6,7,7,13,8,9,8,13,9,13,13,29,15,16,11,16,9,11,9,16,9,9,7,10,6,8,8,14,8,9,7,10,6,8,7,12,7,8,7,11,7,9,9,19,10,10,7,11,7,9,8,14,8,9,7,10,6,8,8,18,10,10,8,13,8,10,10,18,10,12,10,18,12,18,18,41,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,24,13,14,10,15,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,13,8,10,9,16,9,10,8,12,8,10,10,20,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,24,13,13,9,14,9,11,9,16,9,10,8,13,8,11,11,18,10,10,8,12,8,11,10,18,10,12,10,16,11,16,16,30,16,16,12,18,11,14,12,21,12,14,11,19,13,18,17,31,17,18,14,22,14,19,17,32,18,22,18,32,22,32,32,43,22,22,15,22,13,15,13,22,12,12,9,13,9,12,11,22,12,12,8,11,7,8,7,12,7,7,6,10,7,10,9,21,11,11,8,12,7,9,8,13,7,7,6,9,6,9,9,15,8,9,7,10,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,4,3,4,4,7,5,6,6,14,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,10,6,8,8,14,8,9,8,14,10,14,15,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,15,8,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,8,6,8,5,5,5,8,5,6,5,7,5,6,6,13,7,8,6,9,6,7,6,11,7,8,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,14,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,9,7,12,8,10,9,16,9,11,9,16,11,16,16,19,10,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,3,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,7,7,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,7,5,8,5,5,5,8,5,5,4,7,5,6,5,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,8,7,11,8,12,12,24 +-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,9,5,6,4,5,4,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,2,3,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,7,10,11,23,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,14,8,8,6,9,6,7,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,7,6,9,5,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,18,12,18,18,24,12,13,9,12,7,9,7,12,7,7,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,5,8,6,8,9,16,9,9,6,9,6,7,6,9,5,6,4,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,7,5,6,5,10,6,7,6,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,5,4,6,5,9,5,4,3,5,3,3,3,5,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,6,9,6,7,7,13,7,8,7,13,9,12,13,27,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,7,10,6,8,7,11,6,7,6,10,7,9,9,15,8,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,11,6,6,5,9,6,8,8,17,9,9,6,9,6,8,7,10,6,6,5,8,6,8,8,12,7,8,6,8,5,7,7,12,7,8,6,11,8,11,11,20,11,11,8,12,8,10,8,15,9,10,8,12,8,12,12,21,12,13,10,15,9,12,11,22,13,15,13,22,15,22,22,27,14,15,10,14,8,10,8,14,8,8,6,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,10,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,6,4,5,4,8,5,5,4,6,5,7,7,11,6,7,5,8,5,6,6,12,7,8,7,11,7,10,11,13,7,7,5,7,4,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,4,5,4,5,5,9,5,5,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,4,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,5,4,8,5,7,7,14,8,8,5,7,5,6,6,8,5,5,4,7,5,7,7,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,10,11,8,12,8,10,9,18,10,12,10,18,12,18,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,4,6,4,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,2,2,2,1,1,1,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,17,9,10,7,10,6,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,6,6,11,6,6,5,8,6,9,9,15,8,8,6,9,5,5,4,7,4,4,4,6,4,6,6,13,7,7,6,9,6,8,7,13,8,9,8,13,9,14,14,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,11,7,10,10,19,10,10,8,12,7,9,7,12,7,8,6,10,7,10,9,17,10,11,8,13,8,11,11,19,11,13,11,18,13,19,19,39,20,20,14,20,12,14,12,20,11,11,9,14,9,12,12,24,13,13,9,14,8,10,9,17,10,11,9,14,9,13,13,23,12,12,9,13,8,10,9,16,9,10,8,12,8,11,10,20,11,12,9,13,8,10,9,14,8,10,8,13,9,13,12,24,12,12,8,12,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,18,10,12,9,15,10,15,15,30,16,16,12,18,11,13,12,21,12,14,11,18,12,17,17,30,16,18,13,21,13,18,16,32,18,22,18,32,22,32,32,39,20,20,14,20,11,13,11,19,10,11,9,14,9,12,11,22,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,9,9,14,8,9,7,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,9,7,10,6,8,7,11,7,8,7,11,8,11,11,18,9,9,7,10,6,8,7,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,14,8,9,7,10,7,9,8,17,10,12,10,16,11,15,15,17,9,9,6,9,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,6,4,5,5,8,6,8,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,4,4,6,4,5,5,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,7,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,4,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,12,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,6,5,9,6,6,6,9,6,10,10,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,7,9,8,16,9,9,6,9,6,7,6,12,7,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,6,10,6,7,6,9,6,9,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,13,7,7,6,8,6,7,7,12,7,8,6,11,8,11,11,21,11,11,8,12,8,9,8,14,8,9,7,12,8,12,11,21,11,12,9,15,9,12,11,22,12,15,12,22,15,22,22,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,6,4,4,4,7,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,16 +-3,-1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,6,4,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,12,7,8,7,12,7,8,7,11,7,9,9,17,9,10,8,13,9,12,11,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,9,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,38,20,20,14,20,12,14,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,9,8,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,12,6,6,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,7,11,7,8,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,17,9,9,7,10,6,6,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,8,6,8,9,16,9,9,7,10,6,8,7,11,6,7,5,9,6,9,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,6,4,4,4,6,4,4,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,7,9,9,17,9,10,8,13,8,11,10,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,22,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,8,14,8,9,7,11,8,11,11,19,10,11,8,13,8,11,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,20,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,31,18,21,18,32,22,32,32,37,19,19,13,20,11,13,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,11,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,9,16,9,9,7,10,6,7,6,11,6,7,5,9,6,8,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,4,4,3,5,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,23,12,13,9,13,8,9,7,12,7,8,7,11,7,10,9,16,9,10,8,12,8,10,9,15,9,10,8,14,9,13,13,24,12,12,9,13,7,8,7,12,7,7,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,12,23,12,12,9,13,8,10,9,16,9,9,7,12,8,11,11,20,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,27,15,18,15,26,18,26,26,52,27,27,18,26,15,19,16,29,16,17,14,23,15,22,21,40,21,21,15,24,15,19,17,31,17,20,16,28,19,27,27,53,27,27,19,28,16,20,17,30,17,19,15,24,15,21,21,40,21,23,17,26,16,22,21,39,22,26,22,40,27,39,39,76,39,39,27,40,23,28,23,41,22,23,18,29,19,26,24,46,24,24,17,26,16,20,17,31,17,19,15,25,17,24,24,47,24,24,17,25,15,18,15,27,15,17,13,22,15,21,21,40,21,22,16,26,16,22,21,41,23,28,23,40,27,39,39,76,38,38,26,39,23,28,24,44,23,25,19,31,20,27,26,50,26,28,20,31,18,23,21,38,21,24,19,32,21,30,30,59,30,31,22,33,20,26,23,43,23,26,21,35,23,33,32,62,33,35,26,42,26,35,33,63,35,42,35,63,42,62,62,73,37,37,25,37,21,26,22,38,20,22,17,27,17,24,23,45,23,24,17,26,16,20,18,32,18,20,16,28,19,27,27,53,27,27,19,29,17,21,18,31,17,18,14,22,14,18,17,33,17,18,13,21,13,16,15,28,16,19,16,28,19,28,28,55,28,28,19,28,16,20,17,31,17,18,14,22,14,20,19,36,19,19,14,22,14,18,16,29,16,18,14,24,16,23,23,44,23,23,16,25,15,19,16,29,16,18,14,23,15,20,20,38,20,21,15,23,14,19,18,33,18,21,17,30,20,29,28,54,28,28,19,28,16,19,15,26,14,15,11,18,12,16,15,29,15,15,11,17,10,13,12,21,12,13,10,15,10,14,14,27,14,14,10,14,9,11,9,16,9,10,8,12,8,11,11,20,11,11,8,13,8,11,11,21,12,15,13,23,16,23,23,44,22,22,15,22,13,16,14,25,14,15,12,19,12,17,17,32,17,18,13,20,12,15,14,25,14,17,14,23,16,23,23,45,23,23,16,23,14,17,15,26,14,15,12,19,13,18,17,32,17,18,13,20,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,13,12,21,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,8,10,9,17,9,9,6,7,4,5,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,9,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,14,8,10,8,14,8,9,7,11,8,11,11,20,11,11,8,12,7,9,8,14,8,9,8,13,9,12,11,21,11,12,9,14,9,11,10,17,10,11,8,13,9,13,12,23,12,13,10,17,11,14,13,24,13,15,13,22,15,21,21,41,21,22,15,23,13,16,13,23,12,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,22,14,20,20,38,19,19,13,20,11,13,11,20,11,11,9,14,10,14,13,25,13,14,11,17,10,13,12,23,13,16,14,24,16,24,24,46 +-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12,6,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,8,9,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,10,9,15,9,10,8,13,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,16,9,10,8,13,9,13,13,24,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,11,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,30,16,16,12,17,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,19,13,19,11,13,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,9,16,9,10,8,12,8,10,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,19,10,11,8,12,8,10,9,17,10,11,9,15,10,15,15,28,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,12,8,12,8,9,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,5,9,6,6,5,7,5,7,6,12,6,7,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,13,9,12,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,15,9,10,8,12,9,13,13,23,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,12,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,31,16,16,12,18,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,18,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,28,14,14,10,15,9,10,9,16,9,10,8,12,8,10,9,18,10,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,15,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,7,9,6,8,7,11,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,13,9,12,12,24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,12,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,4,3,4,3,4,3,4,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,9,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,8,6,9,6,8,7,14,8,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,12,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,7,5,8,6,7,7,14,8,8,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,26,14,14,10,14,8,10,8,15,8,8,6,10,7,9,9,16,8,9,6,9,6,7,6,10,6,7,6,8,6,9,9,16,8,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,9,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,18,10,10,8,11,7,9,8,13,8,9,7,12,8,11,11,21,11,11,8,12,8,9,8,15,8,10,8,12,8,12,12,21,11,12,9,15,9,12,12,21,12,15,12,22,15,21,21,25,13,12,8,12,7,8,8,13,7,8,6,10,6,8,8,16,8,9,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,6,8,6,7,6,12,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,6,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,4,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,11,7,10,10,13,7,7,5,7,4,5,4,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,9,5,6,5,9,6,8,8,16 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,18,9,9,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,26,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,21,11,12,9,13,8,11,10,17,10,11,9,15,10,14,14,28,15,15,11,16,9,11,10,15,9,10,8,12,8,12,12,22,12,13,9,14,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,12,14,12,22,12,12,9,15,10,13,12,23,12,13,9,14,9,11,9,15,8,9,7,12,8,12,12,23,12,13,9,13,8,9,8,15,9,10,8,12,8,12,11,21,11,12,9,14,9,12,12,21,12,14,12,20,14,20,20,37,19,20,14,20,12,15,13,21,11,12,10,16,11,15,14,27,14,14,10,16,10,12,11,20,11,12,10,17,11,16,16,32,17,17,12,18,11,14,12,22,12,14,11,18,12,18,17,30,16,18,13,21,13,18,17,31,18,21,18,32,21,31,31,37,19,18,12,18,11,13,11,19,11,12,9,14,9,12,11,23,12,12,9,14,8,10,9,16,9,11,9,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,11,7,10,9,18,10,10,7,11,7,8,8,15,9,10,9,16,11,15,15,27,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,22,12,12,9,13,8,9,8,13,7,8,6,10,7,10,10,19,10,11,8,12,8,10,9,17,9,10,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,9,7,10,6,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,5,7,7,10,6,7,5,8,5,7,7,10,6,7,7,12,9,13,13,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,9,17,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,10,10,16,9,10,7,11,7,9,8,15,9,10,9,16,11,15,15,19,10,10,7,10,6,7,6,12,7,7,5,7,5,6,5,10,5,5,4,6,4,5,5,7,5,6,5,8,5,7,6,9,5,5,4,5,3,4,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,5,5,4,6,4,5,4,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,14,7,7,5,8,6,8,7,11,6,7,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,7,7,5,8,5,6,6,13,8,9,7,12,8,12,12,24 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,11,6,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,7,6,9,6,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,7,12,8,12,12,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,8,16,8,8,6,9,6,7,6,12,7,7,6,10,6,9,9,18,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,21,11,10,7,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,7,9,5,6,5,9,5,5,4,7,4,6,5,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,9,6,6,6,10,7,9,9,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,-2,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,4,2,2,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,13,7,6,4,7,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,6,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,8,16,9,9,7,9,5,6,6,11,6,6,5,9,6,8,9,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,15,8,8,6,10,7,9,9,15,9,10,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,19,10,10,7,11,7,9,8,14,8,8,7,11,7,10,10,21,11,12,8,12,8,10,9,14,8,9,7,12,8,12,12,20,11,12,9,14,9,12,12,21,12,14,12,22,15,21,21,25,13,12,8,13,8,10,8,13,7,8,6,9,6,8,8,16,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,11,6,7,6,11,6,6,5,8,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,9,7,10,10,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,8,6,8,5,6,6,11,7,8,7,12,8,11,11,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,4,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,16 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,7,4,6,6,11,6,7,5,7,4,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,5,5,9,5,6,5,8,5,7,8,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,13,7,7,6,9,6,8,7,13,8,9,8,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,6,9,6,8,7,12,7,7,6,9,6,8,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,4,4,4,5,4,5,5,10,6,6,4,7,4,5,5,9,6,6,5,8,6,8,8,18,9,9,7,10,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,-2,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,6,5,7,5,6,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,7,7,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,7,4,5,4,6,4,4,4,6,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,18,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,8,6,10,6,8,8,14,8,9,7,12,8,12,12,25,13,13,10,15,9,11,10,17,9,10,7,11,7,9,9,19,10,11,8,13,8,10,9,16,9,11,9,16,11,15,15,28,14,14,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,12,9,15,9,12,11,20,11,13,11,19,13,20,20,38,19,19,13,20,12,14,12,20,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,12,12,8,12,7,9,8,15,8,9,7,11,7,10,10,24,13,14,11,17,11,14,13,23,13,15,12,21,14,21,20,38,19,19,13,20,12,15,13,22,12,14,11,17,11,15,14,29,15,16,11,16,10,13,11,20,11,12,9,15,10,14,14,32,17,18,13,19,11,13,11,20,11,13,11,18,12,17,17,29,16,17,13,20,13,18,17,32,18,21,18,31,21,30,30,35,18,18,12,18,11,13,11,20,11,12,9,15,9,12,11,24,13,13,9,13,8,10,8,14,8,9,8,13,9,12,12,30,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,10,14,8,9,8,14,8,9,7,10,7,10,10,16,9,9,7,11,7,9,8,13,8,9,7,12,8,11,11,20,10,10,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,12,7,9,8,15,9,10,8,14,10,15,15,31,16,16,11,17,10,12,10,17,9,10,8,12,7,9,9,16,9,9,7,11,7,8,7,12,7,8,6,10,7,9,8,13,7,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,9,8,14,8,9,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,24,13,14,10,15,9,10,9,16,9,10,8,12,8,10,9,19,10,11,8,12,8,11,10,18,10,12,10,17,11,16,16,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,8,5,6,5,8,5,7,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,5,5,9,5,4,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,7,7,12,7,8,7,11,8,11,12,24,13,13,9,14,8,10,8,14,8,8,6,9,6,9,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,11,11,22,12,12,8,11,7,8,8,14,8,9,7,11,7,9,9,14,8,8,6,9,6,7,6,11,7,9,8,13,9,13,13,25 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,20,10,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,20,10,11,8,11,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,17,9,10,7,10,6,7,6,11,6,7,6,10,7,9,9,15,8,9,7,11,7,10,9,17,10,11,10,17,11,16,16,18,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,6,9,9,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,7,5,7,7,13 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,5,6,6,10,6,6,5,6,4,6,5,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,7,5,6,6,9,5,6,4,7,5,6,6,14,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,21,11,12,8,11,7,8,7,12,7,7,6,9,6,8,8,16,9,9,6,9,6,7,6,11,6,7,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,6,10,7,10,10,16,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,19,10,10,7,10,6,7,7,12,6,6,5,8,5,6,6,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,17,9,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,6,9,5,6,5,8,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,5,4,6,6,9,5,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,5,7,5,8,8,13,7,8,6,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,4,6,4,6,7,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,13,7,7,5,6,4,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,14 +-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,8,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,4,5,5,7,4,5,4,5,4,5,5,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,15,8,9,6,9,5,6,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,7,7,14,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,4,3,5,5,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,4,3,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,9,7,10,6,8,8,15,9,10,8,14,10,14,14,26,13,13,9,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,6,8,5,6,6,9,5,6,5,8,6,8,9,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,17,9,9,7,11,7,9,9,15,9,10,9,16,11,15,15,24,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,19,10,10,7,10,6,7,7,13,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,7,11,7,10,10,20,11,12,9,13,9,12,11,22,13,15,13,22,15,21,21,23,12,12,9,13,8,9,8,13,7,8,6,8,6,8,7,15,8,8,6,8,5,6,6,9,5,6,5,8,6,9,9,22,12,12,8,12,7,9,7,10,6,7,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,5,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,16,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,7,7,14,8,10,8,14,9,12,12,13,7,8,6,8,5,5,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,5,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,5,8,5,6,6,8,5,5,5,8,6,8,8,18,9,9,7,10,6,6,5,11,6,6,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,5,4,7,5,7,6,10,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,17 +-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,9,6,6,6,10,7,10,10,15,8,8,6,9,6,7,6,10,6,6,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,6,4,7,5,7,7,13,7,7,5,8,5,5,5,9,5,5,4,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,14,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,13,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,14,9,13,13,20,11,11,8,12,7,9,8,13,7,8,6,9,6,9,9,16,9,9,6,9,5,6,6,11,7,8,6,9,6,9,9,17,9,9,7,10,6,7,6,12,7,7,6,9,6,9,9,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,18,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,5,7,7,18,10,10,7,10,6,8,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,10,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,5,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,15 +-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,13,9,12,12,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,17,17,18,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,9,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,10,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,6,14,8,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,14 +-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,17,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,15,8,7,5,7,4,4,4,6,3,3,3,4,3,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,7,6,11,7,10,10,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,23,12,13,9,14,8,10,9,15,9,10,8,14,9,13,12,22,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,22,13,15,13,22,12,13,10,15,9,12,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,12,12,21,11,11,8,13,8,9,8,14,8,9,8,14,9,13,13,24,13,14,11,17,11,14,13,24,14,16,13,23,16,23,22,36,19,19,13,20,12,14,12,21,12,13,10,16,11,15,15,28,15,15,11,16,10,12,11,21,12,13,10,17,11,16,16,29,15,15,11,16,10,13,11,20,11,13,10,17,11,15,15,28,15,17,13,20,13,17,17,32,18,22,18,32,22,32,32,35,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,7,9,8,15,9,10,8,12,8,12,12,31,16,17,12,18,10,12,11,19,10,11,8,13,9,12,11,20,11,11,8,12,8,10,9,17,10,12,10,16,10,14,14,23,12,12,9,14,8,9,8,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,31,16,16,11,16,9,10,8,13,7,8,6,9,6,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,17,9,9,7,11,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,13,9,13,13,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,6,10,7,10,10,28,14,14,10,14,8,10,8,14,8,10,8,13,8,11,11,20,11,12,9,13,8,10,10,18,11,13,11,18,12,18,18,19,10,10,7,10,6,7,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,4,7,7,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,8,5,6,5,7,5,8,8,9,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,9,7,12,7,7,6,10,7,9,8,14,8,9,7,11,7,9,8,14,8,9,8,14,10,14,14,27 +-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,17,17,18,9,9,7,10,6,6,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,6,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,7,4,6,6,11,6,7,5,7,5,6,6,9,6,7,6,9,7,10,10,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,10,6,6,4,5,3,4,3,4,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,12,7,8,6,9,6,7,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,6,9,6,7,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,16,9,10,8,12,8,10,10,16,10,12,10,17,12,18,18,18,9,9,7,10,6,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,17,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,9,5,6,5,9,7,10,10,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,5,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,12,7,7,5,6,4,4,4,5,3,3,2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,8,8,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,5,10,5,5,4,5,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,5,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,8,5,7,7,13,8,9,7,12,8,12,12,26,13,13,9,13,8,9,8,12,7,8,6,9,6,7,7,13,7,7,5,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,6,8,7,13,8,9,7,12,8,12,12,21,11,10,7,10,6,7,6,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,12,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,18,10,10,8,13,8,11,10,17,10,12,10,18,13,19,19,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,7,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,5,5,9,5,6,5,8,5,7,7,18,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,6,5,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,14,8,8,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,10,6,7,6,10,8,12,12,12,6,6,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,2,2,2,2,3,3,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,7,12,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,17 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,8,5,5,4,5,4,5,4,8,5,6,5,7,5,7,7,16,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,8,5,7,6,10,6,7,6,11,8,11,11,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,5,4,6,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,5,9,5,6,5,7,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,21,11,11,8,10,6,8,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,7,6,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,13,7,8,6,10,6,8,8,13,8,9,8,13,9,14,14,15,8,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,5,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,5,8,5,5,4,7,5,6,5,8,5,6,5,8,6,9,9,9,5,4,3,5,3,3,3,5,3,2,2,3,2,2,2,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,7,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,5,3,3,2,2,2,3,3,4,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,3,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,4,6,4,4,4,7,5,8,8,17,9,9,6,9,6,7,6,9,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,8,8,14,8,10,9,15,10,15,15,34,18,18,12,17,10,11,9,16,9,9,7,10,7,9,9,15,8,9,7,10,6,8,8,14,8,9,7,11,8,11,11,18,9,9,6,9,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,28,14,14,10,15,9,10,8,14,8,10,8,13,8,11,11,18,10,10,8,13,8,10,9,16,9,11,9,15,10,13,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,10,21,11,12,10,16,10,13,12,22,12,14,12,21,15,22,22,25,13,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,8,5,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,15,8,9,7,10,6,8,7,12,7,7,6,10,7,10,9,12,7,7,5,7,5,6,5,8,5,5,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,6,7,6,10,6,6,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,7,5,8,5,6,5,8,5,6,5,9,6,9,9,17,9,9,7,11,7,8,7,12,7,8,6,9,5,6,6,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,5,6,6,10,6,7,5,8,6,8,8,13,7,8,7,11,7,9,8,15,9,10,8,14,10,15,15,16,8,8,6,8,5,6,5,7,4,4,4,6,4,5,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,5,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,3,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,5,5,9,6,8,8,17,9,9,6,8,5,7,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22 +-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,7,4,4,3,4,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,6,4,7,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,12,6,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,8,7,5,7,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,3,4,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,5,8,5,6,6,10,7,10,9,22,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,14,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,7,4,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,5,4,6,4,4,3,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,7,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11 +-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,2,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,11,6,5,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,14,8,9,7,10,6,8,7,14,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,17,9,8,6,8,5,6,6,12,7,7,6,10,7,9,9,16,9,9,7,10,6,7,6,13,8,10,8,14,10,14,13,24,13,13,9,14,8,10,8,12,7,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,8,7,13,8,9,7,11,7,9,9,17,9,10,8,12,8,11,10,19,11,13,11,18,12,18,18,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,9,6,7,6,9,6,9,9,15,8,8,6,10,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,7,11,6,6,5,8,6,8,7,13,8,10,8,14,10,14,14,17,9,9,6,9,5,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,8,6,9,5,6,5,8,4,4,3,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,18 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,7,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,20,10,11,8,10,6,7,6,9,5,6,5,7,4,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,12,6,7,5,8,5,7,7,13,8,9,7,12,8,12,12,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,11,6,6,5,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,4,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,3,3,4,4,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,5,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,29,15,15,10,14,8,10,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,10,6,6,6,10,6,8,8,16,8,8,6,8,5,7,6,11,6,7,5,9,6,9,8,16,9,9,6,10,6,7,7,12,7,8,7,12,8,12,12,22,12,12,8,13,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,11,7,10,9,17,9,10,7,11,7,10,9,18,10,12,10,17,12,17,17,24,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,14,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,5,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,4,6,6,9,5,6,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,28,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,9,6,6,6,9,6,8,8,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,10,6,7,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,5,4,5,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,8,5,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,14,10,14,14,16,8,9,6,9,5,6,5,8,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,6,6,9,6,9,9,17 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,2,2,3,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,9,5,6,5,7,5,8,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,-3,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,18,9,9,7,10,6,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,20,11,13,11,20,13,19,19,55,28,28,19,28,16,19,16,28,15,16,12,20,13,18,17,33,17,18,12,18,11,14,12,22,12,14,11,17,11,16,16,30,16,16,11,17,10,12,11,20,11,12,9,15,10,13,12,23,12,13,10,15,9,12,11,21,12,14,12,22,15,22,22,41,21,22,15,22,13,15,13,23,12,13,10,16,10,12,11,21,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,37,19,19,13,19,12,15,13,23,13,15,12,21,14,20,20,38,20,21,15,24,15,19,18,34,19,23,19,33,22,33,32,45,23,23,16,25,14,17,14,25,14,15,11,17,10,13,12,23,12,12,8,12,7,9,8,15,9,10,9,15,10,14,14,27,14,13,9,13,8,9,8,13,7,7,6,9,6,9,8,15,8,9,6,9,5,6,5,9,5,6,5,9,6,8,8,16,8,8,5,7,4,5,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,6,10,7,10,10,30,15,15,11,16,10,12,10,17,9,9,7,11,7,9,9,17,9,9,6,8,5,6,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,10,9,15,10,14,14,25,13,14,10,14,8,9,8,14,8,9,8,13,8,11,11,20,11,12,9,14,8,10,9,17,9,10,8,14,10,14,14,26,14,14,10,14,9,12,11,19,11,12,10,16,11,15,15,28,15,16,12,19,12,16,16,30,17,20,16,28,19,28,27,31,16,16,11,15,9,11,10,17,10,11,8,13,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,7,9,8,15,8,7,5,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,6,6,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,15,8,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,5,5,8,5,7,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,7,11,7,9,8,15,8,9,8,13,9,12,12,25,13,13,9,12,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,16,9,9,6,9,6,8,8,14,8,9,7,12,8,11,10,18,10,11,8,13,8,10,9,16,10,12,10,18,12,18,17,33 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,5,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,9,17,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,6,6,11,7,8,7,11,8,11,12,21,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,23,12,12,9,13,8,9,8,13,7,8,6,9,6,7,6,12,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,9,5,6,4,5,4,5,5,7,4,5,4,7,5,6,6,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,10,18,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,12,20,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,24,12,12,9,14,8,10,8,13,7,8,6,9,6,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,8,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,4,8,5,5,4,6,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,2,4,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,13,8,9,7,12,8,12,12,16,9,9,6,10,6,7,6,9,5,6,4,6,4,5,4,8,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,5,5,8,4,4,3,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,13 +-2,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,-1,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,7,4,5,4,5,4,5,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,7,4,5,5,11,6,7,6,10,7,10,10,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,6,7,6,11,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,8,12,7,9,8,13,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,11,18,12,18,18,24,13,13,9,14,8,10,8,14,8,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,5,5,8,5,7,7,15,8,8,5,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,5,5,8,6,9,9,13,7,7,5,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,13,7,7,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,10,7,9,9,15,9,11,9,16,11,16,16,16,9,9,6,8,5,6,6,10,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,7,6,10,7,10,10,19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,4,3,5,4,5,6,8,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,11 +-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,2,2,2,3,4,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,4,3,3,3,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,5,3,4,5,6,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,22,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,7,11,7,8,8,14,8,9,8,13,9,13,13,17,9,9,7,9,5,6,6,9,5,5,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,3,6,4,6,5,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,10,5,5,4,5,3,4,3,5,3,4,3,6,4,5,5,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,4,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14 +-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,10,6,6,4,7,4,5,5,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,7,7,12,7,7,5,6,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,5,4,4,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,1,1,2,1,1,1,2,1,1,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,3,6,4,6,5,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,4,3,5,4,5,4,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,7,8,4,4,3,5,4,5,5,10,6,7,7,12,8,12,11,34,18,18,12,17,10,12,10,18,10,11,8,13,8,10,9,22,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,14,8,8,6,10,6,7,6,11,6,7,6,9,6,8,7,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,6,13,7,8,6,10,6,8,7,12,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,23,13,14,10,16,10,13,12,22,13,15,12,20,14,20,20,26,14,14,10,15,9,10,8,14,8,9,7,10,6,8,7,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,15,8,8,6,9,5,6,5,7,4,5,4,5,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,10,16,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,9,5,6,5,8,5,7,6,10,6,6,5,9,7,10,10,15,8,8,6,8,5,7,6,10,6,6,5,9,6,9,8,19,10,11,8,13,8,10,9,16,10,12,10,17,12,18,18,17,9,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,5,10,6,7,5,8,5,6,6,11,7,8,7,12,8,11,11,21 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,7,5,7,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,4,4,6,4,4,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,11,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12 +-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,20,11,11,7,10,6,7,6,10,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,6,4,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,8,6,8,8,13,7,8,6,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,16,8,8,6,9,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,5,12,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,5,3,4,4,5,3,3,3,5,3,4,3,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,13 +0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,12,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,5,4,9,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,6,10 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,4,6,5,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,2,1,1,1,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,5,3,3,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,11,6,5,4,5,3,3,3,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,10,6,7,6,10,7,10,9,24,12,12,9,13,8,9,8,13,7,8,6,10,7,9,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,15,8,9,6,9,6,7,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,7,8,6,10,7,9,9,15,8,9,7,10,6,7,6,12,7,9,7,12,8,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,20,10,10,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,6,4,4,3,5,4,5,5,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,5,10,6,7,6,9,6,7,7,14,8,8,6,9,6,8,7,11,7,8,7,12,9,13,13,14,7,7,5,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,9,9,17 +0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,6,7,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,4,5,9,6,7,6,9,6,8,8,21,11,12,8,12,7,9,7,12,7,8,6,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,9,13,7,8,6,9,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,12,8,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,8,5,8,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,9,6,7,6,10,6,7,6,11,8,12,12,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16 +-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,16,9,10,7,11,7,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16 +-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,7,5,8,8,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,6,4,6,6,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,3,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,1,1,1,0,0,0,1,1,1,2,2,2,1,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,16,9,9,6,8,5,7,6,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,5,9,5,6,4,6,4,6,6,12,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,39,20,21,14,21,12,15,12,21,11,12,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,15,10,14,14,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,23,12,13,10,15,9,11,10,19,11,12,10,17,11,16,16,31,16,17,13,21,13,17,15,27,15,18,15,27,18,27,28,32,17,17,12,17,10,12,10,18,10,10,7,11,7,9,8,15,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,7,4,4,3,3,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,5,5,11,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,13,7,8,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,6,4,4,4,7,5,6,6,13,7,7,5,7,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,7,14,8,10,8,13,8,11,11,24,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,22,12,13,10,16,10,14,13,23,13,15,12,21,14,21,21,21,11,11,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,6,4,5,3,3,3,5,3,4,3,5,4,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,6,7,7,4,4,3,4,2,2,2,2,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,1,6,4,4,3,3,2,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,2,2,3,3,5,3,3,2,3,3,4,4,7,5,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,15,15,30 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,6,8,5,6,6,10,6,6,5,8,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,4,4,8,5,6,6,9,6,9,9,13,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,14,8,10,8,14,10,14,15,17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,6,8,7,12,7,8,7,11,8,11,11,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,4,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,8,8,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,4,3,4,4,6,4,5,4,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,6,4,6,4,4,4,9,5,6,6,10,7,10,9,14,7,7,5,9,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,15,9,10,8,15,10,15,16,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,8,5,7,7,8,4,4,3,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,5,4,8,5,6,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,12,6,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,16 +0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,7,5,6,6,15,8,9,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,7,4,5,5,8,5,7,7,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,7,6,11,7,8,6,11,8,11,12,14,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,6,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,11 +-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,6,5,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,7,4,4,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,4,10,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,6,10,7,10,9,24,13,13,9,14,8,9,8,12,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,5,9,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,11,7,8,7,12,8,11,11,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,17,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,4,3,7,4,4,3,5,4,5,4,7,4,4,4,6,4,5,4,9,5,6,5,9,6,9,8,14,7,7,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,7,10,6,8,8,14,8,9,7,12,9,13,14,12,7,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,6,3,3,2,3,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,8,5,5,4,7,5,6,6,8,5,6,5,9,6,9,9,17 +0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,9,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,7,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,4,4,6,4,6,6,10 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,4,3,4,3,5,4,5,4,6,3,3,2,4,3,4,4,7,4,4,4,7,5,8,7,19,10,11,8,11,7,8,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,13,9,14,14,18,10,10,7,10,6,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,7,6,11,7,8,7,10,7,11,11,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,6,5,7,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,14,8,9,7,10,6,8,8,14,8,9,8,12,9,13,13,17,9,9,6,9,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12 +-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,2,3,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,3,2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,10,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,5,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,9,5,6,5,7,5,6,5,9,6,7,6,9,7,10,10,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,8,14,8,9,7,12,8,12,11,18,9,9,6,9,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,13,13,26,14,14,10,16,10,12,10,18,10,12,9,15,10,13,13,26,14,16,12,19,12,16,14,26,14,16,13,23,16,24,24,32,16,16,11,16,9,11,9,16,9,10,8,12,7,9,9,16,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,6,4,4,4,6,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,5,5,4,6,4,6,6,10,6,8,7,12,8,11,11,20,11,11,8,12,7,9,7,12,7,8,7,11,7,10,10,22,12,13,10,15,9,12,10,18,10,12,10,18,13,19,19,17,9,9,6,8,5,7,6,10,6,6,5,7,4,5,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,2,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,23 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,19,10,9,6,9,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,8,10,8,13,9,14,14,18,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,7,5,7,7,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,6,9,6,7,6,10,6,7,6,11,8,11,11,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,7,5,7,7,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,7,5,8,8,13,7,7,5,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,7,13,7,8,5,7,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,6,9,5,6,5,10,7,10,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,16,11,16,16,21,11,11,8,11,7,8,7,11,6,6,5,9,6,8,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,3,2,2,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,7,6,12,7,8,7,13,9,12,13,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,7,5,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,18,10,10,7,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,11,8,10,11,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,2,2,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,8,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,6,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,6,6,9,6,7,6,10,7,10,10,31,16,16,11,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,9,6,7,6,13,7,8,6,10,7,10,10,18,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,6,9,6,8,7,11,7,8,6,10,7,10,10,19,10,10,7,11,7,9,8,12,7,8,6,9,6,8,8,15,8,9,7,10,7,9,8,12,7,9,8,13,9,13,13,24,13,13,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,10,16,10,13,13,25,14,17,14,24,16,24,23,32,16,16,11,16,9,11,10,16,9,9,7,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,6,10,7,10,10,18,9,9,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,10,7,10,10,18,10,11,8,12,7,9,9,18,11,13,11,19,13,19,19,16,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,5,5,9,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22 +-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,9,5,6,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,16,9,9,6,10,6,7,7,11,6,7,6,10,6,9,9,17,9,10,7,11,7,9,9,17,10,11,9,16,11,16,16,22,11,11,8,11,7,8,7,11,6,7,5,8,6,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,12,7,7,6,8,5,7,6,12,7,9,8,13,9,13,13,11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,1,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,6,9,7,10,10,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,13,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,11,7,8,7,11,8,12,12,23 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,14,8,8,5,7,4,5,4,8,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,8,7,11,8,12,12,23 +-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,5,4,6,7,14,8,8,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,14,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,6,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,9,6,8,8,16,9,9,7,12,7,9,9,16,9,10,8,14,9,13,12,23,12,13,10,15,9,12,12,22,12,14,11,19,13,18,18,62,31,31,21,31,18,22,19,33,17,18,14,22,14,18,17,32,17,18,13,20,12,16,14,26,15,17,13,22,15,22,22,43,22,23,16,24,14,17,15,26,14,16,12,19,12,16,16,30,16,16,12,18,11,14,13,23,13,15,13,22,14,20,20,38,20,20,14,20,12,14,13,23,12,13,10,17,11,14,13,24,13,13,10,16,10,12,11,20,11,13,11,19,13,19,18,35,18,19,13,19,12,15,13,24,14,16,13,21,14,20,20,40,22,24,18,30,19,25,24,45,26,31,26,45,30,45,45,65,33,32,22,32,18,21,18,32,17,18,13,21,13,17,16,31,16,17,12,17,10,13,12,21,11,12,9,15,10,13,13,25,13,12,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,8,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,11,13,11,19,12,17,17,32,16,16,11,15,9,10,9,15,8,9,7,11,7,9,8,15,8,8,6,10,6,7,6,11,7,8,7,12,9,13,13,24,13,13,9,14,9,12,11,19,11,12,9,15,10,14,14,27,15,17,13,21,13,18,17,32,19,23,19,34,23,35,35,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,6,6,11,7,8,6,10,7,10,10,18,9,9,6,9,5,5,4,5,3,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-3,-1,-1,0,0,1,1,1,0,1,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,4,5,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,13,7,8,7,11,8,11,10,19,11,12,9,14,9,11,10,19,11,13,12,21,15,22,22,44 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,32,16,16,11,16,10,12,10,17,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,11,13,10,16,10,13,12,23,13,16,13,23,16,23,23,33,17,17,11,16,9,11,9,17,9,10,7,11,7,9,9,16,8,9,6,9,6,7,6,11,6,7,5,8,6,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,7,13,7,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,11,7,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,12,12,23 +-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,5,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,10,32,17,17,11,16,10,12,10,16,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,10,8,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,7,10,7,10,10,20,11,13,10,16,10,14,13,22,13,16,13,23,15,22,23,33,17,17,11,16,9,11,9,17,9,10,8,12,8,10,9,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,2,2,3,5,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,5,3,4,4,5,4,5,5,10,6,6,4,7,4,5,4,7,4,5,4,6,4,6,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,9,5,6,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,12,8,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,9,6,7,6,11,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,3,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,22,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,9,7,11,7,9,9,15,9,11,9,15,10,15,15,23,12,12,8,11,6,8,6,12,6,7,6,8,6,7,7,10,6,6,4,6,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,6,4,4,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,8,6,7,6,11,7,8,7,11,8,12,12,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,2,4,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,5,4,8,6,8,8,16 +-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,2,2,4,3,5,5,7,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,9,5,5,3,4,3,4,4,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,13,7,6,4,6,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,32,16,16,11,16,10,12,10,16,9,10,8,12,8,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,9,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,12,8,11,11,20,11,11,8,12,7,9,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,11,8,11,7,8,7,14,8,9,7,10,7,10,11,20,11,13,10,16,10,14,13,22,13,15,13,22,15,23,23,35,18,18,12,16,9,11,9,17,9,10,8,12,8,11,10,15,8,8,6,9,6,7,7,11,6,6,5,7,5,7,7,12,7,7,5,6,4,5,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,7,5,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,10,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,5,7,7,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,9,10,8,12,8,10,9,16,9,11,9,16,11,17,17,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,7,5,7,5,7,6,9,6,7,6,11,8,12,12,24 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,4,5,4,7,5,7,7,14 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,2,2,4,3,3,2,3,2,2,2,2,2,2,3,7,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,22,12,12,8,11,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,7,10,7,10,9,16,9,10,9,15,11,16,16,24,12,12,8,11,6,7,6,12,7,8,6,9,6,8,7,11,6,6,4,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,2,1,0,0,1,1,1,1,2,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,7,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,12,7,8,6,8,5,7,7,12,7,8,7,11,8,12,12,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,5,5,6,4,6,5,8,6,8,9,17 +-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,19,10,10,7,9,6,7,6,10,6,7,5,8,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,14,7,7,5,8,5,5,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,6,8,6,8,8,14,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,8,14 +-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,4,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,33,17,17,12,17,10,12,10,18,10,11,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,8,7,11,8,11,11,19,11,12,9,14,9,13,13,24,14,16,13,23,16,23,23,35,18,17,12,17,10,12,10,16,9,10,8,13,8,11,11,16,9,9,6,9,6,7,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,6,4,5,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,8,8,18,10,11,8,12,8,11,10,18,10,12,10,17,12,17,17,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,3,3,6,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,8,5,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,8,7,11,8,12,13,25 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,13,8,9,8,13,9,12,12,19,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,5,7,7,13 +-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,4,3,4,3,6,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,20,10,10,7,11,6,7,6,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,4,3,5,4,6,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,13,7,8,5,7,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,8,14,8,9,8,14,9,13,13,21,11,11,8,10,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,5,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,8,5,6,6,11,6,7,6,11,7,10,10,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,4,5,4,6,5,7,7,14 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,5,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,4,3,5,4,6,6,10 +-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,4,4,6,4,6,6,7,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,9,5,6,5,8,5,6,6,9,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,13,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,5,5,10,5,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,7,6,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,8,16,9,11,9,16,11,16,16,27,14,14,10,14,8,8,7,13,7,8,6,10,6,8,8,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,11,6,6,4,4,3,4,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,6,6,14,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,5,3,4,4,6,4,5,5,8,6,9,9,16 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,11,6,6,4,5,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,5,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,3,3,5,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,5,3,3,3,4,2,3,3,4,3,3,3,5,4,6,6,10 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,3,2,2,2,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,24,12,12,9,13,8,9,8,12,7,8,6,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,15,8,8,5,7,5,6,5,8,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,13,9,14,14,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,13,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,4,7,5,7,7,13 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,8,7,12,8,13,13,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,5,3,4,4,7,5,7,7,12 +-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,1,1,2,2,3,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,6,4,5,5,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,16,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,9,6,9,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,10,6,7,5,8,5,6,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,8,15,9,11,9,15,10,15,16,44,23,23,16,24,14,17,14,24,13,14,11,17,11,14,13,24,13,13,9,12,7,9,8,13,7,8,7,12,8,11,11,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,27,14,13,9,13,8,9,8,13,7,7,6,9,6,8,8,15,8,8,6,8,5,7,7,12,7,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,8,7,12,8,10,10,18,10,10,8,12,8,11,11,20,12,14,12,21,15,22,23,41,21,21,14,21,13,16,14,24,13,14,10,15,10,13,12,22,12,12,8,11,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,11,6,5,4,5,3,3,3,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,7,6,11,6,7,6,11,7,10,10,14,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,22,11,11,8,12,7,9,8,13,7,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,11,7,10,10,17,9,10,8,12,7,9,9,16,9,10,8,14,9,12,12,22,12,12,9,14,9,12,11,21,12,13,11,18,12,18,18,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,7,7,5,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,4,3,4,3,-2,0,0,1,1,1,2,2,4,3,4,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,16,8,8,6,9,6,7,6,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,13,7,8,6,8,6,7,7,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,4,3,5,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,4,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,6,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,13,13,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,4,4,3,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,17,9,9,6,9,6,7,6,10,6,6,5,7,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,4,5,4,7,5,8,8,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8 +-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,3,4,3,4,3,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,26,13,13,9,14,8,9,8,15,8,8,6,10,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,7,7,11,7,9,8,13,9,14,14,27,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,14,7,7,5,8,5,7,6,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,8,5,6,5,7,5,7,6,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,8,5,5,3,4,3,4,3,5,3,3,3,5,4,5,5,12,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,8,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,12,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,7,5,8,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,5,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,1,0,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,2,2,1,1,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,3,4,3,4,4,7 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,1,1,1,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,21,11,10,7,10,6,7,6,12,6,6,5,8,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,13,7,8,6,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,4,6,4,6,6,10,6,7,6,11,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,6,6,5,7,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,3,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,9 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,7,6,10,6,6,4,7,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,19,10,11,7,11,6,8,7,11,6,7,6,8,6,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,8,5,5,4,5,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8 +-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,0,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,3,3,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,4,6,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,10,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,10,9,15,10,14,14,36,18,18,12,18,10,12,10,18,10,11,8,12,8,10,9,17,9,9,6,9,6,7,7,12,7,9,7,12,8,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,8,21,11,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,7,5,7,5,6,5,8,5,6,5,8,6,8,9,13,7,8,6,9,6,7,6,10,6,7,5,8,6,8,8,16,9,10,7,11,7,10,9,16,9,11,10,17,12,19,19,35,18,18,13,20,12,14,12,21,12,13,10,15,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,10,6,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,8,4,4,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,7,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,16,9,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,10,15,15,15,8,8,5,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,4,3,4,2,2,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,-2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,7,6,9,6,8,8,15 +-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,6,8,8,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,4,4,4,5,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,6,5,9,5,6,6,10,7,11,11,20,10,10,8,11,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9 +-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,9,5,6,4,5,3,4,3,5,3,3,3,4,3,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,9,5,6,6,9,6,9,9,23,12,12,8,11,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,6,4,7,5,6,5,10,6,6,5,9,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,10 +-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,5,7,5,8,8,19,10,10,7,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8 +-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,4,4,6,5,7,7,9,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,7,14,8,9,7,12,9,13,13,32,16,16,11,16,9,10,9,16,9,10,8,12,8,10,9,17,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,20,10,10,7,11,7,8,7,10,6,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,7,17,9,10,7,10,6,8,7,9,5,6,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,5,7,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,9,15,9,11,9,16,11,16,16,33,17,17,12,18,10,12,11,19,10,11,9,14,9,11,10,19,10,10,7,10,6,7,7,10,6,7,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,5,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,5,7,7,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,17,9,9,6,9,5,6,5,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,13 +-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,5,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,9,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,6,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,5,4,6,4,6,5,9,6,7,6,10,7,10,10,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,5,5,7,5,8,8,10,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,13,7,8,7,13,9,12,12,30,16,16,11,15,9,11,9,15,9,10,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,6,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,7,15,8,8,6,8,5,6,6,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,7,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,15,9,10,9,15,10,15,15,32,17,17,12,18,10,12,10,17,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,8,7,13,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,13,9,12,12,29,15,16,11,15,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,6,9,6,9,8,15,9,10,9,15,10,15,15,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,18,9,9,6,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,11,6,7,6,8,6,8,7,13,8,9,8,13,9,14,14,17,9,9,6,9,5,6,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-24,-11,-11,-7,-11,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,7,6,11,8,11,12,30,16,16,11,17,10,12,10,18,10,10,7,10,7,9,8,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,9,13,8,10,9,16,9,11,9,14,9,12,12,23,12,12,9,14,9,11,10,18,10,12,10,17,11,16,16,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,11,12,9,14,9,13,13,24,13,15,13,22,15,23,23,57,29,29,20,29,17,20,16,28,15,17,13,20,13,18,17,32,17,17,12,18,11,14,13,23,13,14,12,20,13,19,18,34,17,17,12,18,11,13,11,19,10,11,8,13,9,12,12,22,12,12,8,12,8,10,9,15,8,9,7,12,9,13,13,28,14,14,10,14,9,11,10,17,9,9,7,11,7,10,9,17,9,10,7,10,7,9,8,15,8,9,7,12,8,11,11,22,12,12,9,13,8,10,8,14,8,10,8,14,9,13,13,24,13,15,11,18,12,17,16,30,17,20,17,29,20,29,29,63,32,31,21,31,18,21,17,29,15,16,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,14,10,14,14,26,13,13,9,13,8,9,8,13,8,9,7,11,7,9,9,17,9,9,6,9,6,7,6,9,6,7,6,9,6,9,9,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,9,7,10,10,25,13,13,9,14,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,10,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,9,6,9,6,9,8,15,8,9,7,12,8,12,12,27,14,13,9,13,8,10,8,14,8,8,6,9,6,9,9,16,9,9,6,9,6,8,8,14,8,9,8,14,10,14,14,28,15,16,11,17,10,13,12,21,12,14,11,19,13,18,17,32,17,18,13,20,13,17,15,28,16,19,16,27,18,27,27,33,17,17,12,17,10,11,10,17,9,9,7,10,6,8,8,15,8,8,6,9,5,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,6,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,6,5,7,4,5,5,7,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,4,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,6,7,5,8,5,6,6,11,7,8,8,14,10,14,14,27 +-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,9,17,9,9,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,5,7,7,15,8,8,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,16,9,10,9,15,10,15,15,32,16,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,4,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,5,3,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,3,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,10,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,30,16,16,11,15,9,10,9,15,8,9,7,11,7,9,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,15,8,8,5,8,5,6,5,9,5,6,4,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,6,4,6,6,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,8,6,11,7,10,9,16,9,10,9,15,10,15,15,33,17,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,4,4,5,4,6,6,14,8,8,6,7,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,18,9,9,6,10,6,6,6,10,6,6,4,6,4,6,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,7,4,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,12,6,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,8,5,7,6,11,6,7,6,10,7,11,11,23,12,11,8,11,6,8,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,4,2,3,3,5,3,4,4,5,4,6,6,10 +-13,-6,-6,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,3,2,3,2,3,2,3,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,13,7,8,6,8,5,6,6,12,7,7,6,10,7,10,10,11,6,7,5,8,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,7,6,11,6,7,5,8,6,8,7,13,7,8,7,12,9,13,13,31,16,16,11,16,10,12,10,16,9,10,8,12,8,10,9,17,9,10,7,10,6,7,7,14,8,9,7,12,8,11,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,16,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,7,12,8,10,9,17,10,11,9,15,11,16,16,35,18,18,12,16,9,11,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,5,5,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,3,2,3,2,3,2,3,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,4,4,5,3,4,4,6,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,5,8,6,8,7,11,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,5,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,12,7,9,9,16,9,11,9,14,10,15,15,20,10,10,7,11,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,4,4,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,3,3,3,3,2,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,15 +-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,5,5,7,5,8,8,18,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,12,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +-10,-4,-4,-3,-6,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,4,4,6,4,4,3,4,2,2,2,5,3,3,3,5,4,5,5,12,7,7,5,7,5,6,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,9,6,7,6,9,6,9,9,21,11,11,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,7,5,6,6,11,6,7,6,8,6,8,8,13,7,8,6,7,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,12,7,9,7,11,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,5,10,6,6,4,7,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,4,5,4,6,6,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,6,4,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,8,6,9,6,7,6,12,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,11 +-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,11,7,8,6,10,6,6,4,7,4,6,5,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,4,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,10 +-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,9,5,5,3,4,3,3,3,6,4,4,4,7,5,8,8,19,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,5,8,6,8,8,15,8,9,6,9,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,13,7,8,6,10,7,9,8,14,8,10,8,13,9,13,13,33,17,17,12,17,10,12,10,18,10,11,9,14,9,11,10,21,11,12,8,12,7,9,9,16,9,10,8,14,9,12,11,19,10,10,7,11,7,8,6,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,9,5,6,5,7,5,8,8,20,10,10,7,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,7,7,16,9,9,6,8,5,7,6,10,6,7,6,9,6,9,9,18,10,11,8,13,8,11,10,18,10,12,11,19,13,19,19,40,20,20,14,20,11,13,11,18,10,11,8,13,8,10,9,19,10,10,7,10,6,7,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,7,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,4,6,4,5,4,6,4,4,3,5,4,6,6,16,9,9,6,8,5,6,5,9,5,5,4,7,4,5,4,8,5,5,3,4,3,4,4,7,4,5,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,7,12,7,9,8,13,9,12,12,21,11,11,8,11,7,9,8,14,8,9,7,12,8,12,11,19,10,11,8,13,8,11,10,18,10,12,10,18,12,18,17,24,12,12,8,11,7,8,7,12,7,8,6,9,6,8,8,10,6,6,5,7,4,5,4,6,4,5,4,7,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,5,9,5,5,4,6,4,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,9,17 +-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,9 +-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,12,8,11,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,13,7,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,12,8,12,12,25,13,13,9,13,7,8,7,11,6,6,5,9,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,3,3,2,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,4,5,5,10 +-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,11,6,7,6,9,6,7,6,11,6,7,6,11,8,11,12,27,14,14,10,16,9,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,12,7,8,6,10,7,10,9,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,8,14,10,15,15,34,17,17,11,16,9,11,9,15,8,9,7,11,7,8,7,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,5,5,12,7,7,5,8,5,6,5,8,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,17,9,10,7,10,6,8,7,10,6,6,5,7,5,7,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,10,7,10,7,9,8,14,8,9,8,14,10,15,15,22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,6,4,5,4,8,4,5,4,8,5,7,8,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,22,11,11,8,11,6,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,7,5,7,4,5,5,7,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,14,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,9,5,6,6,11,6,7,6,11,7,10,10,26,14,14,10,15,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,5,6,4,5,5,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,4,12,6,6,5,8,5,5,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,5,8,5,6,6,16,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,3,4,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,6,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,5,6,6,15,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-34,-17,-17,-11,-16,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,4,7,4,5,5,8,5,7,7,5,3,3,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,9,6,9,8,15,9,10,8,13,9,12,12,23,12,13,9,14,8,10,8,14,8,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,18,10,10,7,11,6,7,6,11,6,7,6,9,6,9,9,17,9,9,7,11,7,8,7,13,7,8,7,12,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,11,20,11,11,8,11,7,8,7,12,7,8,7,11,8,11,11,20,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,49,25,25,17,24,13,15,13,22,12,13,10,16,10,14,13,24,13,13,9,14,9,11,10,19,11,13,10,17,11,15,15,27,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,16,9,9,7,12,7,9,9,16,8,8,6,9,6,8,8,14,8,8,6,10,7,9,9,27,14,15,11,17,10,12,11,20,11,12,10,17,11,15,14,27,14,15,11,17,11,14,14,26,15,17,14,25,17,26,26,61,31,31,21,31,17,20,16,27,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,14,8,9,7,11,7,10,9,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,7,12,8,12,12,10,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,29,15,16,11,16,9,11,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,11,17,10,12,10,18,10,12,10,17,11,15,15,28,15,15,11,18,12,16,15,29,16,18,15,26,18,26,26,39,20,19,13,19,11,13,11,19,10,11,8,12,8,10,10,18,10,10,7,11,7,8,6,10,6,6,5,9,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,4,6,4,5,4,6,4,6,5,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,3,5,4,6,6,8,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,7,5,7,5,7,6,11,6,7,5,8,6,8,8,15 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,8,7,11,8,11,11,26,13,13,9,13,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,8,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,21,11,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +-18,-9,-9,-5,-9,-4,-5,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,4,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,13,7,8,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,7,5,7,6,12,7,8,6,9,6,8,7,13,7,8,7,12,8,11,11,27,14,14,9,14,8,9,7,13,7,8,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,10,7,9,9,16,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,16,9,9,6,9,6,7,7,12,7,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,14,14,34,17,17,11,17,10,11,9,15,8,8,6,10,7,9,8,14,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,7,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,7,17,9,9,6,9,5,6,5,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,7,11,7,10,9,16,9,10,9,15,10,15,15,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,7,5,6,4,4,4,6,4,4,4,5,4,6,6,12,6,6,5,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,10,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,10,6,6,4,5,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,5,8,5,6,6,11,7,8,6,10,7,9,9,17,9,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,6,15,8,8,6,8,5,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,30,16,16,11,16,9,10,8,15,8,9,7,11,7,9,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,6,9,9,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,19,10,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,10,7,10,7,9,8,16,9,11,9,16,11,16,16,40,20,19,13,18,10,12,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,11,7,8,6,10,7,10,9,21,11,10,7,10,6,7,6,12,7,8,6,9,6,8,8,12,7,7,5,8,5,7,6,10,6,7,6,10,7,10,11,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,20,11,11,8,12,8,11,10,18,11,13,11,18,12,18,18,28,14,14,10,14,8,10,9,14,8,9,7,10,6,8,7,14,7,7,5,7,4,5,5,7,4,5,4,7,5,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,6,5,8,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,5,3,3,3,4,3,4,4,3,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,9 +-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,12,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,7,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,18,9,9,6,9,5,6,6,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6 +-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,5,7,7,13,7,8,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,9,6,8,7,12,7,9,7,13,9,12,12,25,13,13,9,13,8,9,7,12,7,8,6,9,6,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,10,6,6,5,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,6,4,6,6,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,8,10,8,14,10,14,14,32,16,16,11,16,9,11,9,14,8,9,7,10,7,9,8,12,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,9,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,10,7,10,6,8,8,15,9,11,9,16,11,16,16,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,12,6,6,4,7,4,5,5,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,11,6,6,4,5,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8 +-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,6,7,7,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,12,7,7,6,9,6,7,7,12,7,9,7,13,9,12,12,30,15,15,10,15,9,10,8,13,7,8,6,9,6,8,7,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,2,3,2,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,7,15,8,9,7,10,6,8,8,14,8,10,8,15,10,14,14,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8 +-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,8,8,6,10,6,8,7,12,7,9,7,12,8,12,11,23,12,12,8,12,7,9,8,13,7,8,6,10,6,7,7,14,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,16,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,10,8,12,8,10,9,16,9,10,8,13,9,14,14,24,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,11,7,8,8,14,8,9,7,10,7,10,9,20,10,10,7,11,7,8,8,14,8,9,7,12,8,11,10,19,11,12,9,14,9,12,12,22,13,15,13,22,15,21,21,42,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,19,10,11,8,12,7,9,9,16,9,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,13,8,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,9,10,8,12,8,10,9,17,9,9,7,11,7,8,8,14,8,9,8,13,9,12,11,27,14,14,10,15,9,11,10,18,10,11,9,15,10,14,14,22,12,12,9,15,10,13,12,22,13,15,13,23,15,22,22,57,29,28,19,27,15,18,15,25,13,14,11,18,11,14,13,21,11,11,8,12,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,6,5,8,6,9,9,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,6,4,6,6,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,21,11,11,8,11,7,8,7,11,6,7,6,9,6,9,8,14,8,8,6,9,5,6,6,10,6,7,5,8,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,9,7,11,7,9,9,16,9,10,9,15,10,14,14,31,16,17,12,17,10,12,10,16,9,10,8,13,9,12,11,17,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,27,14,14,10,15,9,11,10,18,10,11,9,15,10,13,13,27,14,15,11,18,11,15,14,26,15,18,15,27,18,26,26,48,24,24,16,23,13,15,13,22,12,12,9,14,9,12,12,21,11,11,8,11,7,9,8,13,8,9,8,13,9,12,12,24,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,3,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,8,5,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14 +-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,32,16,16,11,15,9,10,8,14,8,8,6,10,6,8,8,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,4,5,5,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,9,13,8,9,8,13,7,7,5,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8 +-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,5,6,4,5,5,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,7,12,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,9,9,7,9,5,6,5,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,18,9,9,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,11,7,10,9,15,9,11,9,16,11,16,16,38,19,19,13,18,10,12,10,17,9,10,8,12,8,10,9,14,8,8,6,8,5,7,6,11,6,6,5,8,6,8,7,12,6,6,5,6,4,4,4,6,4,4,3,5,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,12,7,8,7,10,7,10,10,21,11,11,8,11,7,8,7,10,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,9,5,6,6,11,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,17,9,10,8,13,8,11,10,18,10,12,10,18,12,18,18,33,17,17,11,16,9,10,9,16,8,8,6,11,7,8,8,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,4,5,5,7,4,4,4,7,5,6,6,12,6,6,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,9 +-18,-8,-8,-5,-8,-4,-6,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,4,6,5,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,12,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,5,4,4,4,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,6,9,6,7,6,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,11,7,9,8,15,9,10,9,15,10,15,15,28,15,15,10,14,8,9,8,13,7,7,6,9,6,7,7,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8 +-33,-16,-16,-10,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-5,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,8,5,6,5,10,6,6,4,6,4,6,6,15,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,16,9,9,6,9,6,7,7,13,8,9,8,13,9,14,14,26,13,13,9,14,8,10,9,13,7,8,6,10,6,8,8,17,9,10,8,12,7,9,8,14,8,8,7,11,7,10,9,20,11,11,8,12,7,8,7,12,7,8,7,11,7,9,9,17,10,11,8,13,8,11,10,19,11,14,12,20,14,21,21,39,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,18,10,10,7,10,7,9,8,14,8,9,8,14,10,14,13,25,13,14,10,14,8,9,8,15,8,9,7,12,8,10,10,18,10,10,7,10,6,8,7,14,8,10,8,14,10,14,13,25,13,14,10,14,9,11,9,15,9,10,8,12,7,9,9,17,9,9,7,10,6,8,8,12,7,9,8,13,9,12,12,26,14,14,10,14,9,11,10,17,9,10,8,13,9,13,12,21,11,12,9,15,10,13,12,22,13,15,13,22,15,22,22,55,28,28,19,28,16,19,16,27,14,15,11,18,11,14,13,21,11,12,8,12,8,10,9,16,9,9,7,10,7,9,9,19,10,9,6,9,6,7,6,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,9,7,10,6,8,8,17,10,12,10,16,11,16,15,31,16,16,11,16,9,11,9,15,9,10,8,12,8,10,10,18,10,10,8,12,7,9,9,14,8,10,9,15,10,14,14,28,15,15,11,16,10,12,11,19,10,11,9,14,9,13,13,25,13,14,11,18,11,15,14,26,15,18,15,26,18,26,26,50,26,26,18,26,14,16,13,23,12,13,10,16,10,13,12,23,12,12,8,12,7,8,7,15,9,10,8,12,8,11,11,21,11,11,8,12,7,9,8,13,7,8,6,10,7,9,8,13,7,7,5,8,5,7,7,11,6,7,6,9,6,8,8,17,9,9,7,10,6,6,5,10,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,5,4,7,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,6,6,9,6,10,10,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,6,7,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,8,7,13,8,10,8,13,9,14,14,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,36,19,19,13,19,11,13,11,18,10,10,8,12,8,10,9,15,8,8,6,9,6,7,6,11,6,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,8,11,10,21,11,11,8,11,6,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,8,13,7,8,6,10,7,9,9,17,9,10,8,12,8,11,10,18,10,12,10,17,12,18,18,33,17,17,12,18,10,11,9,16,9,9,7,11,7,9,8,16,8,8,6,8,5,6,6,10,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-4,-6,-6,-14,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,12,7,8,6,8,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,12,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,13,7,8,7,10,7,9,9,17,9,10,8,12,7,8,7,14,8,9,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,11,7,10,9,17,9,10,8,13,8,11,10,20,12,14,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,18,10,10,7,11,7,8,8,14,8,10,8,14,9,13,13,25,13,14,10,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,28,19,28,16,18,15,26,14,14,11,17,11,14,13,22,12,12,9,13,8,10,9,15,8,8,6,10,7,10,10,19,10,10,7,10,6,6,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,12,9,16,11,16,15,31,16,16,11,16,9,11,9,15,8,9,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,10,9,14,10,14,14,27,14,14,10,16,10,12,11,18,10,12,9,15,10,14,13,25,14,15,11,18,12,16,15,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,4,5,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,14,8,9,7,11,7,9,9,17,9,10,8,11,7,8,7,13,8,9,7,11,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,13,8,11,10,20,11,13,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,13,8,11,10,19,10,10,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,13,9,13,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,13,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,27,18,27,16,18,15,26,14,15,11,17,11,14,13,23,12,12,9,13,8,10,9,15,8,9,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,11,9,16,11,16,16,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,10,17,9,9,7,11,7,9,8,15,8,10,9,14,10,14,14,27,14,14,10,15,9,12,11,18,10,12,9,15,10,14,13,25,14,15,11,17,11,15,14,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,5,7,5,7,7,13 +-70,-35,-35,-23,-34,-19,-23,-19,-35,-17,-18,-12,-20,-11,-15,-14,-28,-14,-14,-9,-13,-7,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-19,-19,-40,-20,-20,-13,-20,-11,-13,-10,-19,-9,-9,-6,-11,-6,-9,-9,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-9,-8,-15,-9,-14,-14,-28,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-5,-7,-7,-15,-7,-6,-3,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,1,1,1,1,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,8,8,15,8,9,8,13,9,12,11,20,12,15,13,23,16,23,24,47,24,25,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,13,9,14,8,10,8,14,8,8,7,11,7,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,31,16,17,12,18,11,14,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,14,12,22,13,15,13,22,15,21,21,41,21,21,15,22,13,17,15,27,15,16,12,19,12,17,17,32,17,19,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,34,19,23,19,34,18,20,15,25,16,22,20,38,20,20,14,22,13,16,14,24,14,16,13,21,14,19,19,37,19,20,14,22,13,16,14,24,13,15,12,19,12,16,16,30,16,17,13,21,13,17,16,31,18,21,17,30,20,30,30,58,30,30,21,31,18,21,18,32,17,19,15,24,15,20,19,36,19,19,13,20,12,15,14,25,14,16,13,22,14,20,20,38,20,21,15,22,13,17,15,27,15,17,14,24,16,22,21,40,21,23,17,28,17,23,21,40,23,27,23,40,27,41,42,104,53,54,37,55,31,38,32,56,29,31,23,38,23,31,29,56,29,29,21,32,19,24,21,37,21,24,20,34,22,32,31,61,31,31,21,31,18,22,19,33,17,18,14,22,14,19,18,34,18,18,13,21,13,18,17,32,18,21,17,30,20,28,28,54,28,28,19,29,17,20,17,30,16,18,14,24,15,21,20,37,19,20,15,24,15,19,17,31,18,21,17,29,19,27,27,53,27,27,19,29,17,22,19,35,19,22,17,28,18,26,26,51,27,29,21,34,21,27,25,48,27,31,26,45,30,45,45,88,45,45,30,45,26,31,26,46,24,26,20,32,20,26,24,45,23,24,17,27,16,20,17,31,17,20,16,26,17,23,23,44,23,23,16,24,14,17,14,25,14,16,12,20,13,17,17,32,17,18,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,35,20,23,20,35,19,21,17,28,18,24,23,45,23,24,17,26,16,20,18,34,19,23,19,33,22,32,32,64,33,33,23,34,20,24,21,37,20,23,18,31,20,28,27,51,27,30,22,36,22,29,27,52,29,34,28,49,33,49,49,98,49,49,33,49,28,33,28,50,27,29,21,34,21,28,26,49,25,26,18,28,16,20,18,33,18,20,16,27,18,26,25,49,25,26,18,26,15,18,15,27,15,16,13,22,14,20,19,36,19,19,13,20,12,15,13,24,13,15,12,21,14,21,21,42,22,22,15,23,14,17,15,27,15,16,12,20,13,18,17,31,16,17,12,19,12,17,16,29,16,18,15,26,18,26,25,49,25,25,17,25,14,17,15,27,15,17,14,23,15,21,20,39,21,22,17,27,17,23,22,41,23,28,23,41,28,41,40,79,40,41,28,41,24,29,24,43,23,25,18,29,18,24,22,41,21,21,14,21,13,16,14,24,13,14,11,19,13,18,18,34,17,17,12,18,11,13,11,20,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,19,11,12,10,18,12,16,16,30,16,16,11,15,9,11,9,15,8,9,7,12,7,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,10,9,16,9,9,7,10,6,8,7,13,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,26 +-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,8,7,12,8,12,12,24,12,13,9,13,8,9,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,16,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,9,8,14,8,8,6,10,7,9,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,10,11,8,11,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,15,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,11,7,10,9,16,9,11,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,15,11,18,11,14,13,25,14,16,14,23,16,23,23,45,23,23,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,17,12,17,17,34,18,18,12,18,10,12,10,18,10,11,9,15,10,13,12,23,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,26,14,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,25,17,25,14,17,15,25,14,15,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,8,14,8,8,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,8,13,9,14,13,25,13,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,21,14,21,20,40,21,21,14,21,12,15,12,22,12,13,10,15,10,13,12,21,11,11,8,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,7,6,11,6,6,5,8,6,7,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,13 +-35,-17,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,5,7,5,6,6,10,6,7,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,8,14,8,8,7,11,7,10,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,20,10,10,7,11,7,8,7,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,16,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,18,10,10,8,12,8,10,9,18,10,10,8,11,7,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,14,11,18,11,14,13,25,14,17,14,24,16,23,23,45,23,24,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,18,10,12,10,19,11,12,9,15,10,13,12,22,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,27,15,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,24,17,25,14,17,15,25,13,14,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,13,7,8,7,11,7,9,9,16,9,9,7,10,7,9,9,16,9,10,8,13,9,14,13,24,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,19,10,11,9,13,9,12,11,20,12,14,12,21,14,20,20,41,21,21,14,20,12,14,12,22,12,12,9,16,10,13,12,21,11,11,7,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,9,5,6,4,5,3,4,4,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,7,13 +-23,-11,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,5,10,6,6,5,8,5,7,6,11,6,7,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,20,10,11,7,11,6,8,7,12,6,7,6,9,6,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,35,18,18,13,19,11,13,11,20,10,11,8,14,8,11,10,20,11,11,8,12,7,9,8,13,8,8,7,12,8,12,11,21,11,11,8,11,7,8,7,12,7,7,6,8,6,7,6,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,6,8,6,7,6,11,6,7,6,10,7,9,9,18,9,9,7,10,6,7,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,6,12,7,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,5,8,5,6,6,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,12,24,12,12,8,12,7,9,8,13,8,8,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,8,8,13,8,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,17,9,9,7,11,6,7,7,12,6,7,6,10,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,11,6,7,6,9,7,10,9,16,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,14,14,10,14,8,9,8,15,8,8,7,11,7,9,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,12,6,6,5,7,4,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,3,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,5,9 +-35,-17,-17,-11,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-9,-6,-9,-9,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,7,5,7,6,10,6,8,7,11,8,11,12,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,7,5,6,6,8,5,5,5,8,6,8,8,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,6,11,7,8,7,11,7,10,10,20,11,11,7,10,6,8,7,14,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,10,17,12,17,17,33,17,17,12,17,10,12,10,17,9,10,8,13,8,11,11,20,11,11,7,10,6,8,7,13,7,8,7,11,7,9,9,20,11,11,7,10,6,7,7,11,7,8,6,10,7,9,9,16,9,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,15,10,15,9,11,10,17,9,10,8,12,8,10,9,18,10,10,7,11,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,9,7,12,8,11,11,21,11,12,9,14,9,12,11,21,12,14,12,20,14,21,21,53,27,27,19,28,16,20,17,29,16,17,13,20,13,17,15,30,16,16,12,18,11,14,12,19,11,13,11,18,12,17,17,30,15,15,11,16,10,12,10,18,10,10,8,12,8,10,9,17,9,10,8,12,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,12,8,10,9,16,9,11,9,14,9,13,13,25,13,14,10,14,8,10,9,18,10,12,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,14,24,16,23,22,45,23,24,16,24,14,16,13,23,12,13,10,17,11,14,13,25,13,14,10,14,9,11,9,18,10,11,9,14,9,12,12,24,13,13,9,12,7,8,7,13,8,9,7,11,7,10,9,16,9,9,7,10,7,9,9,17,10,11,9,16,11,17,17,36,19,19,13,18,11,13,11,19,10,11,9,14,9,13,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,16,16,32,17,17,12,17,10,13,11,19,11,12,10,16,11,15,14,27,15,16,12,18,11,15,14,27,15,17,14,25,17,25,25,48,24,24,16,24,14,17,15,24,13,14,11,17,11,15,14,25,13,14,10,16,9,11,10,17,10,11,9,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,9,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,21,11,11,8,12,7,9,8,13,8,9,7,12,8,10,10,16,9,9,7,10,7,9,9,16,9,11,9,14,10,14,14,23,12,12,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,20,41,21,20,14,20,12,14,12,21,12,13,10,16,10,13,12,20,11,11,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,8,5,5,5,9,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,6,4,4,4,6,4,4,4,6,4,5,4,6,4,6,6,12 +-19,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,6,6,6,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,31,16,16,11,16,10,12,10,16,9,10,7,11,7,10,9,17,9,9,7,11,7,8,7,11,7,8,7,11,7,10,10,17,9,9,7,9,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,5,9,5,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,9,8,15,8,9,6,10,6,8,8,14,8,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,11,6,7,5,8,6,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,9,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,12,7,8,7,11,6,7,6,9,6,7,7,13,7,7,5,6,4,4,4,8,5,6,5,7,5,6,6,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,10,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,5,6,5,8,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,14,10,15,15,38,19,19,13,19,11,14,12,19,10,11,8,12,8,11,10,20,11,11,8,13,8,9,8,14,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,6,11,6,6,5,9,6,8,7,14,8,8,6,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,10,7,10,9,17,9,10,7,12,8,10,10,17,10,12,10,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,7,12,7,9,9,17,9,10,7,9,6,7,6,13,7,8,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,25,13,13,9,13,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,10,6,8,7,13,7,8,7,11,8,12,12,21,11,12,8,12,7,9,8,13,7,8,7,11,7,10,9,18,10,10,8,12,8,10,10,18,10,12,10,17,12,17,17,32,16,16,11,16,10,12,10,17,9,10,8,11,7,10,9,16,9,10,7,11,7,8,7,11,7,8,6,10,7,10,9,17,9,9,6,9,5,6,6,11,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,6,4,6,6,10,6,7,6,10,7,10,9,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,13,7,8,6,9,6,8,7,13,8,10,8,13,9,13,13,27,14,14,10,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8 +-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,12,7,7,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,6,6,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,7,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,12,9,13,13,32,16,16,11,16,9,11,10,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,7,12,7,8,7,11,8,10,10,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,6,5,9,5,5,4,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,10,6,6,6,9,6,8,8,15,8,9,6,10,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,6,9,8,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,7,6,9,6,6,5,8,6,8,8,14,8,8,6,8,5,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-32,-15,-15,-10,-16,-8,-9,-7,-14,-7,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,21,11,11,8,11,6,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,7,12,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,10,6,8,8,14,8,10,9,16,11,16,16,33,17,16,11,16,10,12,10,17,9,10,7,11,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,9,9,21,11,11,8,12,7,8,7,12,7,8,7,11,7,10,10,17,9,9,7,11,7,10,9,16,9,11,9,16,11,15,15,26,14,14,10,15,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,11,7,8,6,10,6,7,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,7,6,9,7,10,10,22,12,13,10,15,9,12,11,20,12,14,12,22,15,21,21,58,29,29,20,30,17,20,17,29,15,16,12,18,11,15,14,29,15,16,12,18,11,14,12,22,12,14,12,20,13,18,18,32,17,17,11,16,9,11,10,18,10,10,7,11,7,10,9,16,8,8,6,9,6,8,8,14,8,10,9,15,10,15,15,27,14,13,9,13,8,9,8,14,8,9,7,12,8,10,10,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,16,9,10,9,15,10,14,14,26,14,14,11,17,11,14,14,26,15,17,14,25,17,24,23,46,23,23,16,23,13,16,14,24,13,14,10,16,10,13,13,25,13,13,9,14,9,11,10,18,10,11,9,14,10,14,14,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,11,7,10,9,17,10,12,10,18,12,18,18,38,19,19,13,20,12,14,11,19,11,12,9,14,9,13,13,22,12,13,10,15,9,12,11,20,11,13,11,18,12,17,17,32,17,17,12,18,11,13,12,21,12,13,10,15,10,14,14,28,15,16,12,19,12,16,14,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,13,10,15,10,14,13,24,13,13,9,13,8,10,9,16,9,10,9,15,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,11,7,10,10,17,9,9,6,9,6,7,7,13,8,9,7,12,8,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,7,10,10,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,7,9,8,14,8,9,8,13,9,12,12,19,10,10,8,12,8,10,10,18,11,13,11,19,13,19,19,41,21,21,14,20,11,13,11,18,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,10,6,8,7,12,7,8,6,10,6,8,8,15,8,8,6,8,5,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,5,7,7,12 +-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,5,7,6,11,7,8,7,12,8,11,11,31,16,15,11,16,9,11,9,16,8,9,7,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,12,24,12,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,20,11,11,8,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,7,12,7,7,6,9,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,14,9,13,13,25,13,13,9,13,8,9,8,13,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,7 +-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,11,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,5,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,33,17,16,11,17,10,11,10,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,13,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,9,13,13,25,13,14,10,14,8,9,8,15,8,8,6,9,6,8,8,14,8,8,6,8,5,7,6,11,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,6,12,7,8,7,11,8,11,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,15,9,10,9,15,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,7,5,6,6,9,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,6,10,6,8,6,10,7,10,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,6,4,5,3,4,4,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,7 +-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,25,13,12,9,13,8,9,7,13,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,6,4,5,5,9,6,6,5,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,7,7,12,7,7,6,8,5,7,7,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,13,7,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,6,4,5,4,6,4,5,5,6,4,5,4,6,4,5,5,7,4,5,4,6,4,6,6,14,7,7,5,6,4,5,4,8,5,6,5,7,5,6,6,12,7,7,5,6,4,4,4,7,4,5,5,8,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,8,12,7,8,6,12,7,7,5,8,5,7,7,11,6,7,5,7,4,5,4,9,5,6,5,8,5,6,6,15,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,12,7,8,7,11,8,11,11,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,41,21,20,14,20,12,14,11,20,11,11,8,12,8,10,9,18,10,10,7,11,7,8,7,15,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,11,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,19,10,9,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,30,15,15,11,16,9,11,9,18,10,11,8,12,8,10,9,16,9,9,7,10,6,7,6,13,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,14,8,8,7,11,7,10,10,17,9,10,7,10,6,8,8,15,9,10,8,14,9,13,13,23,12,13,9,14,8,10,9,17,9,10,8,14,9,12,11,20,11,12,9,13,8,11,10,18,10,12,10,17,11,16,16,32,17,17,11,16,9,11,10,16,9,9,7,10,6,8,8,17,9,9,6,9,6,8,7,10,6,7,6,10,7,10,10,16,9,9,6,8,5,5,5,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,9,13,7,7,5,8,5,7,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,7,7,11,7,8,7,12,9,13,13,29,15,15,10,14,8,9,7,12,7,8,6,10,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,5,7,7,10,6,6,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,5,5,10 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,4,4,3,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,5,4,5,5,7,4,5,4,5,3,4,3,6,4,4,4,5,4,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,25,13,13,9,13,8,9,7,13,7,7,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,7,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,5,10,6,6,4,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,6,9,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,6,5,9,5,6,5,10,7,10,10,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,4,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,6,8,6,11,8,11,11,34,18,18,12,18,10,12,10,17,9,10,7,11,7,8,8,15,8,8,6,9,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,6,9,6,8,7,13,7,8,7,12,8,12,12,26,14,14,10,14,8,9,8,15,8,8,6,10,7,9,8,15,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,8,5,7,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,15,9,10,8,15,10,14,14,26,14,14,9,13,8,10,8,13,7,8,6,9,6,7,7,13,7,8,6,7,5,6,5,8,5,6,5,9,6,8,8,12,6,6,5,6,4,5,4,8,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,6,5,6,4,6,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,7,4,4,3,5,4,6,6,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,8,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,32,17,17,11,17,10,11,10,16,9,9,7,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,6,7,7,12,7,8,7,11,8,11,11,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,8,5,7,6,12,7,7,6,10,7,10,10,19,10,10,8,12,7,9,8,14,8,8,7,11,7,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,10,14,14,24,13,13,9,12,7,9,7,12,7,7,5,8,6,7,7,12,6,7,5,7,5,6,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +-33,-16,-15,-10,-15,-8,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-8,-8,-5,-9,-4,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,2,3,3,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,11,8,12,12,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,13,7,7,5,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,6,10,6,8,7,13,8,9,7,11,7,10,10,19,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,6,9,6,8,8,14,8,9,7,12,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,9,9,16,9,9,7,11,7,10,10,19,11,12,10,16,11,16,16,36,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,9,7,12,8,10,9,25,13,12,8,12,7,8,7,12,7,7,6,10,7,10,10,18,10,10,7,11,7,9,9,17,10,11,9,16,11,17,17,22,11,11,8,11,7,8,7,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,6,8,8,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,18,10,11,9,14,9,11,10,19,11,13,11,18,12,18,19,62,31,31,21,32,18,20,17,29,15,16,12,19,12,16,14,26,14,14,10,15,9,12,11,20,12,14,11,19,13,18,18,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,19,10,11,8,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,17,9,9,6,9,6,7,7,13,8,9,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,8,7,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,21,47,24,24,17,25,14,17,15,27,14,15,11,17,11,14,14,26,14,14,10,16,10,12,10,18,10,12,10,17,11,15,15,26,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,16,9,9,7,11,7,10,10,19,11,12,10,17,12,17,17,40,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,24,13,14,10,15,9,11,10,18,11,13,11,20,13,19,19,36,19,19,14,22,13,16,14,25,14,15,12,19,12,17,17,33,18,19,14,21,12,15,14,25,14,17,14,24,16,24,25,45,23,23,15,22,13,16,14,24,13,14,11,17,11,14,12,22,12,12,9,13,8,9,8,15,9,10,9,15,10,15,15,20,11,11,8,11,7,9,8,14,8,9,7,11,8,11,11,22,12,13,9,14,9,11,9,16,9,11,9,14,9,12,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,18,10,12,10,16,11,15,15,21,11,12,9,13,8,9,8,15,8,9,7,11,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,20,13,19,18,43,22,22,15,21,12,14,12,22,12,12,9,15,10,13,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,11,11,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,14,8,8,6,10,6,8,7,13,8,9,7,11,7,10,9,19,10,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,6,10,7,10,10,17,9,9,6,9,5,6,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,13 +-16,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,9,6,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,32,16,16,11,17,10,11,9,15,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,8,12,7,9,8,13,8,8,6,10,7,9,9,17,10,10,8,11,7,8,8,13,8,9,8,13,9,13,13,23,12,12,8,12,7,9,8,12,7,8,6,9,6,7,7,12,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,5,9,5,6,4,7,4,5,5,9,5,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,4,4,5,3,4,3,6,4,4,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,33,17,17,12,17,10,12,10,16,8,8,6,10,6,8,8,14,8,8,6,9,5,6,6,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,5,4,5,4,7,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,25,13,13,9,14,8,9,8,15,8,8,6,10,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,20,10,10,8,12,7,9,8,14,8,8,7,10,7,10,9,18,10,11,8,12,7,9,8,14,8,10,8,13,9,14,14,23,12,12,8,12,7,9,8,12,7,8,6,8,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,9,6,8,8,12,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,5,4,6,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,7,10,10,23,12,12,8,11,7,8,7,12,7,7,6,8,5,7,6,12,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,5,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,3,3,4,2,3,2,4,3,3,3,5,3,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,5,4,7,5,6,5,8,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,5,4,7,5,6,6,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-16,-8,-8,-5,-8,-4,-5,-3,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,5,7,7,9,5,5,4,6,4,5,4,6,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,7,5,8,5,7,7,9,5,6,4,6,4,5,5,9,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,11,6,7,5,8,5,7,6,12,7,8,6,10,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,6,10,7,11,11,36,18,18,12,18,10,12,10,17,9,10,7,10,7,9,9,15,8,9,6,9,6,8,7,13,8,9,7,12,8,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,7,8,7,12,8,12,12,26,14,14,10,15,9,10,8,16,9,10,7,11,7,9,9,14,8,8,6,8,5,6,5,10,6,6,5,9,6,9,9,15,8,8,6,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,6,12,7,8,6,10,7,9,9,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,12,7,8,7,11,8,11,10,21,11,12,9,14,8,10,9,16,9,10,8,12,8,11,10,20,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,24,13,13,9,14,8,10,9,13,7,7,5,8,6,8,7,13,7,7,5,7,4,5,4,8,5,7,6,10,7,9,9,14,8,8,6,8,5,5,5,9,5,6,5,8,6,8,7,11,6,6,5,8,5,6,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,11,11,25,13,13,9,12,7,9,8,13,7,8,6,10,6,8,7,13,7,8,6,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,3,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,9,5,6,5,7,4,5,5,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,4,4,4,5,4,5,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,7,7,22,11,11,8,11,6,7,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,6,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,12,7,7,6,8,5,6,6,9,5,6,5,7,5,7,6,12,7,7,5,8,5,6,5,10,6,6,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,7,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,6,4,4,3,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,4,3,5,4,6,5,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,28,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,5,8,5,6,5,9,5,6,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,5,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,3,5,3,4,3,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,7,11,6,6,4,7,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,9,5,6,4,7,4,5,5,10,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,8,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,5,3,4,4,8,5,6,6,10,6,6,4,7,4,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,4,6,4,4,4,7,4,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,4,4,5,4,5,6,12,7,7,5,7,4,5,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,25,13,12,8,12,7,8,6,11,6,7,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,4,5,4,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,5,5,7,5,7,7,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,4,7,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,4,4,4,6,4,5,5,8,6,8,8,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,7,5,8,5,6,5,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,22,11,11,7,10,6,7,6,11,6,7,6,9,6,8,8,12,7,7,5,7,5,6,6,11,7,8,6,10,7,9,8,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,16,9,9,7,10,7,9,8,14,8,9,7,12,8,12,12,15,8,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,4,5,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,12,45,23,23,16,23,13,14,11,19,10,11,8,13,8,11,11,20,11,11,8,12,7,9,9,16,9,9,7,12,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,7,6,13,7,8,6,8,5,7,6,10,6,7,6,11,7,10,10,23,12,12,8,11,7,8,7,12,7,8,6,10,6,8,8,15,8,8,5,7,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,7,6,10,6,6,5,8,5,7,7,10,6,7,6,9,6,8,8,14,8,9,8,13,9,13,13,30,16,16,11,15,9,11,10,18,10,11,8,13,8,11,11,18,10,10,7,9,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,12,7,9,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,11,11,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,25,13,14,10,16,9,11,10,18,10,12,9,15,9,12,12,26,14,14,10,15,9,12,11,20,11,13,11,19,13,18,18,30,16,16,11,17,10,12,10,16,9,9,7,11,7,10,9,14,8,8,6,9,5,6,5,8,5,6,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,9,6,7,6,10,6,6,5,7,5,8,8,12,7,7,5,7,5,6,6,10,6,6,5,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,15,8,9,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,15,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,6,9,6,7,6,11,6,6,5,8,6,8,8,12,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,10,6,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,2,8,5,5,3,4,3,4,3,5,4,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,5,5,10 +-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,25,13,13,9,13,7,8,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,5,8,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,14,8,8,6,9,6,7,6,10,6,7,6,9,6,7,7,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,2,3,3,4,3,7,4,5,4,4,3,4,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,8,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,10,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,28,15,15,10,14,8,8,7,13,7,7,6,9,6,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,5,3,4,4,7,5,6,6,14,8,8,5,7,5,6,5,7,5,6,5,7,5,6,5,9,5,6,4,5,3,4,4,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,6,5,9,6,8,8,19,10,10,7,10,6,8,7,12,7,7,5,9,6,8,7,11,6,7,5,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,8,6,8,7,15,8,9,7,10,6,8,7,11,7,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,4,3,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,6,5,10,6,6,5,6,4,6,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7 +-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,22,12,12,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,5,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,6,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,10,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,4,9,5,5,4,6,4,5,4,4,3,3,3,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,5,5,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,9,7,10,10,12,6,6,4,6,4,4,3,6,4,5,4,6,4,5,5,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,7,5,6,5,8,6,9,10,37,19,18,12,18,10,11,9,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,7,5,7,4,4,4,6,4,4,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,11,8,11,11,26,14,14,9,13,8,9,8,15,8,9,7,11,7,10,9,15,8,8,6,10,6,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,9,9,22,11,11,8,11,7,8,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,9,9,19,10,11,8,12,7,9,9,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,17,10,12,10,16,11,16,16,27,14,13,9,13,8,9,8,14,7,7,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,5,5,9,6,8,8,15,8,8,5,7,4,5,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,5,5,4,6,4,6,6,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,14,7,7,5,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,2,2,2,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9 +-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,6,6,24,12,12,8,12,7,8,6,12,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,5,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,4,4,8,5,5,5,7,5,7,7,17,9,9,6,9,5,6,5,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,6,4,4,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,4,5,6,4,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,6,6,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,7,5,7,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,11,6,6,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,12,7,7,6,9,6,9,9,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,9,35,18,17,12,17,10,11,9,17,9,9,7,10,6,8,8,16,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,6,4,7,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,8,6,9,9,22,12,12,8,11,7,8,7,12,7,7,5,9,6,8,7,11,6,7,5,7,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,7,9,8,14,8,9,7,11,8,11,10,20,11,12,9,13,8,10,10,18,10,12,9,16,11,16,16,26,13,13,9,13,7,8,7,13,7,8,6,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,7,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,5,7,4,5,4,8,5,7,7,14,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,6,7,9,5,4,3,5,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,8,6,8,8,34,18,17,12,17,10,11,9,16,9,9,7,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,9,6,9,9,22,11,11,8,11,7,8,7,12,7,7,5,8,6,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,8,13,8,9,7,11,7,10,10,19,10,11,8,13,8,10,10,18,10,11,9,16,11,16,16,26,13,13,9,13,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,7,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,9,5,5,3,5,3,4,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-20,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,9,7,10,10,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,24,13,13,9,13,8,9,7,12,7,7,6,9,6,7,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,7,6,11,6,6,5,7,5,7,7,13,7,8,6,10,6,7,7,12,7,8,7,11,8,12,12,27,14,15,11,17,10,13,11,19,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,10,8,14,9,13,13,25,13,14,10,15,9,10,9,15,8,9,7,10,7,10,9,17,9,10,8,14,9,11,11,20,11,12,10,17,12,17,17,20,11,11,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,9,6,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,18,10,11,8,12,7,9,8,15,9,11,9,15,11,16,16,67,34,33,22,33,19,22,19,33,17,18,13,20,12,16,15,29,15,15,11,17,10,12,11,20,11,12,9,15,10,14,14,26,13,13,9,14,8,9,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,8,8,15,8,9,7,11,8,11,11,33,17,18,12,18,11,13,11,18,10,10,8,12,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,11,6,6,5,8,6,9,9,16,9,10,8,13,8,11,11,20,11,13,11,18,12,18,18,46,24,24,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,14,10,16,10,13,11,20,11,13,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,10,8,13,9,14,14,26,14,14,11,17,10,12,11,20,11,12,10,17,12,17,17,42,21,21,14,20,12,14,12,21,11,12,10,16,10,14,14,27,14,15,11,16,10,12,11,21,12,14,12,20,13,19,18,34,18,18,13,19,11,14,12,21,12,13,10,17,11,16,16,32,17,19,14,23,14,18,17,32,18,21,17,30,20,30,30,50,26,26,17,25,14,16,14,24,13,14,10,16,10,14,13,25,13,13,9,14,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,11,9,15,10,14,13,27,14,14,10,16,10,12,10,18,10,10,7,11,7,10,10,18,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,22,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,20,11,11,9,14,9,12,11,20,12,14,12,21,14,20,20,35,18,18,13,20,12,14,12,20,11,11,8,11,7,10,9,16,9,9,6,9,6,7,7,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,16,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,9,9,16 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,34,18,17,12,17,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,17,9,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,9,5,6,6,11,6,7,6,9,6,9,9,22,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,11,9,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,6,8,5,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,6,4,6,5,7,4,4,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,16,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,14,8,8,6,8,5,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,6,4,6,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,7,5,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,12,10,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,7,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,24,12,12,8,12,7,8,7,12,6,7,5,8,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,5,4,5,4,12,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,6,9,5,6,5,7,4,6,5,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,6,5,8,5,5,4,7,5,6,6,12,6,7,6,8,6,7,6,12,7,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,6 +-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,5,4,6,4,6,6,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,5,8,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,8,5,7,6,10,6,7,6,9,6,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,6,7,6,10,7,10,9,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,8,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,35,18,18,12,18,11,13,11,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,9,8,14,8,9,7,10,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,16,8,8,6,8,5,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,23,12,12,8,12,7,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,6,7,7,10,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,18,10,12,10,16,11,16,16,27,14,14,10,14,8,9,8,13,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,9,7,10,6,7,6,10,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,7,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,8,5,7,7,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,4,3,4,3,5,4,5,5,8 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,20,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5 +-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,5,3,3,2,4,3,4,3,6,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,7,4,5,4,7,4,5,5,9,5,6,4,5,3,4,4,5,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,25,13,13,9,13,8,9,8,12,7,7,6,9,6,8,7,13,7,8,5,7,5,6,5,8,5,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,13,7,7,5,8,5,5,4,6,3,3,2,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,6,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,16,9,9,7,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,10,7,10,6,7,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,6,4,6,5,11,6,6,4,7,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,5,3,4,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,22,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,12,6,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,5,7,4,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,7,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,3,3,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,3,3,5,3,4,4,13,7,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,3,3,4,3,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,7,6,10,7,9,9,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,9,39,20,20,13,19,11,13,11,18,10,10,7,11,7,9,9,21,11,12,9,13,8,9,8,13,7,8,7,11,7,10,10,18,9,9,7,10,6,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,20,11,11,8,11,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,6,5,8,5,7,7,14,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,25,13,14,10,15,9,10,9,16,9,9,7,10,6,8,8,13,7,8,6,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,8,14,8,8,7,11,8,11,11,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,9,18,10,10,7,10,6,8,7,12,7,7,6,10,7,10,9,20,11,11,8,13,8,10,8,14,8,8,6,10,7,10,10,18,10,11,8,12,8,11,10,18,11,13,11,18,12,18,17,27,14,14,10,15,9,11,9,16,8,8,6,9,6,8,7,12,7,7,5,8,5,7,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,10,6,7,6,9,6,7,7,13,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,19,10,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,5,5,8,6,8,8,9,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,4,5,9 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,21,11,11,7,11,6,7,6,10,6,6,4,6,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,9,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,4,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,2,8,4,4,3,5,3,4,3,4,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,3,3,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,23,12,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,12,6,6,4,6,4,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,10,7,10,10,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,7 +-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,18,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,9,5,5,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,29,15,14,10,14,8,10,9,15,8,8,6,10,6,8,8,17,9,9,7,10,6,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,5,7,7,13,7,7,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,5,3,4,4,6,4,5,5,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,20,10,10,7,11,7,8,7,13,7,7,5,8,5,7,6,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,11,6,7,6,10,7,9,8,14,8,9,8,13,9,13,13,21,11,12,8,12,7,9,7,13,7,8,6,8,5,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,5,8,5,7,7,11,6,6,5,8,5,5,5,8,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,11,6,7,5,8,5,6,6,10,6,7,5,8,6,8,9,15,8,9,6,9,6,7,6,9,5,6,5,8,5,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,6,4,4,4,5,4,6,6,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,4,5,5,8,5,5,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,3,2,2,2,3,2,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,6,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,4,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,4,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,5,3,4,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,27,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,4,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,11,6,7,5,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,10,6,6,5,8,6,8,7,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,5,9 +-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,8,5,7,7,26,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,6,6,18,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,3,5,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,9,5,5,4,7,5,6,5,9,6,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8 +-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,5,4,6,6,7,4,4,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,3,4,4,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,5,4,5,6,16,9,9,6,8,5,6,5,9,6,7,6,9,6,9,8,15,8,8,6,8,5,7,7,12,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,8,15,9,10,8,13,9,14,14,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,10,9,17,10,11,9,15,10,14,14,51,26,26,17,25,15,18,15,27,15,16,12,19,12,15,14,25,13,13,9,14,8,10,9,16,9,11,9,14,10,14,13,21,11,10,7,10,6,7,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,8,8,14,8,9,7,11,8,12,12,20,11,11,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,5,7,7,15,8,9,6,9,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,6,10,7,10,10,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,11,7,10,9,17,9,10,8,13,9,12,12,24,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,12,9,13,13,29,15,15,11,16,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,11,7,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,36,18,18,12,18,10,12,11,19,10,10,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,11,7,10,10,18,10,10,7,9,6,7,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,10,6,7,5,8,5,7,6,11,7,8,6,10,7,9,9,16,9,9,6,9,6,8,8,14,8,10,8,14,10,15,15,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,6,5,7,4,5,5,8,4,4,3,5,4,6,6,10,6,7,6,10,7,9,9,6,3,3,3,4,3,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,8,15 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,6,5,7,5,7,7,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,8,7,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,11,6,6,4,6,4,4,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,2,4,3,3,3,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,6,4,5,4,7,4,5,4,4,3,4,4,8,5,5,4,5,3,4,5,8,5,6,5,8,5,7,7,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,8,8,12,6,6,4,7,4,4,3,6,4,4,3,5,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,5,7,7,11,6,6,4,7,4,4,3,5,3,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,3,3,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,8,6,11,7,10,10,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,4,4,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,5,5,4,6,4,4,3,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,4,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,7,8,6,10,7,9,9,29,15,16,11,16,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,8,7,10,6,7,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,12,7,7,5,8,5,5,4,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,5,7,4,5,4,7,5,7,7,24,12,12,8,12,7,8,7,14,8,8,6,8,5,6,6,12,7,7,5,8,5,7,7,10,6,7,6,10,7,10,9,16,9,9,6,9,6,7,6,11,6,7,5,7,5,6,5,10,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,4,5,5,7,4,4,3,5,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,5,8,5,6,6,13,8,9,7,12,8,11,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,10 +-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,4,4,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,7,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,3,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,13,7,8,6,7,5,6,5,9,5,6,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,7,4,4,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,6,6,20,11,11,7,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,8,5,6,5,7,4,4,4,6,4,6,5,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,9,6,9,9,19,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,8,4,4,4,6,4,4,4,8,5,5,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,6,4,5,5,9,5,6,4,6,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,2,2,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,2,2,3,6,4,4,4,5,3,4,4,8 +-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,6,7,7,12,6,7,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,7,4,4,4,5,4,5,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,9,6,9,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,3,5,3,4,3,5,3,4,4,8 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,3,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,2,2,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,9,5,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,6,4,4,4,6,4,5,4,6,4,5,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,5,7,5,6,6,10,6,8,7,11,8,11,11,17,9,9,6,9,5,6,5,7,4,5,4,5,4,5,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,13,9,13,13,39,20,20,14,21,12,14,12,21,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,15,8,8,6,10,7,9,9,21,11,10,7,10,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,10,7,9,9,35,18,18,13,20,11,13,11,20,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,9,13,13,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,19,10,10,8,12,7,9,7,12,7,7,5,8,5,7,7,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,15,8,9,7,11,7,10,10,18,10,11,9,16,11,16,15,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,14,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,8,5,5,4,5,4,5,5,10,6,6,5,9,6,8,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,8,5,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,16,9,9,6,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,14 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,20,10,10,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,7,4,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,11,6,6,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,4,3,4,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,26,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,14,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,24,12,12,9,13,8,9,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,10,6,6,5,8,5,6,6,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,5,3,3,3,4,2,2,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,5,4,5,5,9 +-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,20,10,10,7,11,6,7,6,12,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,12,7,7,5,7,4,4,4,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,6,5,10,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,38,19,19,13,20,11,13,11,19,10,11,9,14,9,12,11,20,11,11,8,12,7,8,7,13,7,8,7,11,7,9,9,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,20,11,12,9,13,8,11,10,18,10,10,8,12,7,9,8,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,9,14,8,10,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,10,6,8,7,14,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,20,10,10,7,10,6,8,7,9,5,6,5,8,5,7,7,10,5,5,4,6,4,5,4,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,4,5,6,11 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,2,8,5,5,4,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,23,12,12,8,12,7,8,7,14,8,8,6,9,6,8,7,13,7,7,6,8,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,6,4,7,5,6,6,10,6,7,6,9,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,7,4,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,6,5,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-5,-12,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,7,11,6,6,5,6,4,5,5,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,19,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,7,5,6,5,8,6,8,8,34,17,17,12,18,10,12,11,20,11,12,9,13,8,11,10,19,10,10,8,11,7,8,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,12,7,8,6,9,6,8,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,14,8,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,19,10,10,7,10,6,8,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,4,6,6,10 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,5,5,7,5,7,7,12,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,6,8,8,34,17,17,12,18,10,12,11,19,10,11,9,13,8,11,10,19,10,10,8,11,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,13,7,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,10 +-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,19,10,10,8,12,7,8,7,12,7,7,6,10,6,8,7,13,7,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,10,6,7,6,10,6,6,5,8,6,9,9,17,9,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,24,12,12,9,13,8,9,8,13,7,7,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,9,8,14,10,14,14,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,11,21,11,12,9,14,8,10,9,16,9,11,9,16,11,16,16,31,16,16,11,16,9,10,9,15,8,8,6,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,6,8,8,15,8,9,7,11,7,10,10,19,11,13,11,18,13,19,19,72,36,36,25,37,21,24,20,34,18,19,15,24,15,20,19,35,18,19,13,20,12,15,13,24,13,15,12,20,13,18,18,34,18,18,13,20,12,15,13,22,12,12,9,15,10,14,13,25,14,15,11,17,10,13,12,22,12,13,11,18,12,17,17,34,18,18,12,18,10,12,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,16,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,68,34,34,23,35,20,24,20,34,18,19,15,24,15,21,20,39,20,21,15,22,13,17,15,28,16,18,14,23,15,21,20,39,20,20,13,19,11,13,11,18,10,12,9,15,9,12,12,22,12,12,9,15,9,11,10,19,11,12,10,16,11,15,15,30,16,16,11,15,9,10,8,14,8,8,7,11,7,10,10,18,10,10,8,13,8,11,11,21,12,13,11,19,13,20,20,38,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,13,24,14,17,14,24,17,26,26,56,29,29,20,29,17,20,17,31,17,18,13,21,13,17,16,29,15,15,11,17,10,12,11,19,10,11,9,14,9,12,12,23,12,12,8,12,7,9,9,16,9,9,7,11,7,10,9,16,9,10,7,11,7,10,9,16,9,11,9,15,11,16,16,30,16,16,11,17,11,14,12,22,12,13,10,16,11,15,14,27,14,15,11,16,10,13,12,22,13,15,12,20,13,18,18,35,18,18,13,19,11,14,12,22,12,13,11,18,12,17,17,32,17,17,12,18,11,14,13,23,13,16,14,24,16,23,23,38,19,19,13,20,12,15,13,23,12,13,10,15,10,14,13,24,13,14,10,15,9,10,9,16,9,11,9,16,11,15,14,27,14,14,10,16,10,13,11,20,11,12,9,15,10,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,28,15,15,10,15,9,10,8,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,11,7,8,6,10,7,9,9,18,9,9,6,8,5,6,5,7,4,4,3,4,3,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,7,10,10,18 +-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,19,11,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,20,10,11,8,12,7,9,8,15,9,10,8,12,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,7,12,7,9,8,13,9,14,14,28,15,15,10,15,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,7,4,5,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,9,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,3,3,3,4,4,6,4,4,4,6,4,6,5,9 +-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,4,3,13,7,8,6,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,5,7,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,18,10,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,19,10,11,8,12,8,10,9,15,9,10,8,12,8,12,11,20,10,10,7,10,6,6,5,10,6,6,5,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,14,14,10,16,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,6,8,7,11,6,6,5,8,6,8,7,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,10,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,11,11,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,5,3,4,4,6,4,6,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,5,4,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,24,13,13,9,12,7,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,6,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,24,12,12,8,12,7,8,7,12,7,7,6,8,6,7,7,13,7,8,6,8,6,7,6,10,6,7,6,8,6,8,8,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,6,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,12,6,7,5,7,4,6,5,8,5,6,5,8,6,9,9,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-9,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,14,7,7,5,8,5,6,5,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,8,8,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,8,8,17,9,8,6,8,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,35,18,18,12,18,11,13,11,17,9,10,8,12,8,11,10,20,10,10,7,11,7,8,7,14,8,8,7,11,7,9,9,19,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,6,10,6,8,7,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,9,5,6,5,9,6,9,9,35,18,18,12,18,10,12,10,18,10,11,8,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,19,10,10,7,10,6,6,5,11,6,7,6,9,6,7,6,12,7,7,5,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,6,10,7,10,11,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,13,8,10,8,14,10,15,15,29,15,16,11,16,9,11,9,15,8,8,6,10,7,9,9,15,8,8,6,8,5,6,6,9,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,5,9,6,7,6,9,6,8,8,17,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,9,5,6,5,8,5,7,7,16,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,5,4,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,10,6,6,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,4,2,2,2,4,3,3,3,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,6,4,4,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,4,3,4,4,7,4,4,3,5,4,5,5,12,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,24,12,12,8,13,7,8,7,12,7,8,6,9,6,8,7,15,8,7,5,8,5,6,5,10,6,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,23,12,12,8,13,8,9,7,13,7,8,6,8,6,8,7,13,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,6,5,10,6,8,7,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,7,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,8,4,4,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6 +-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,10,6,7,5,8,5,7,6,13,7,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,7,6,11,6,7,5,8,5,6,5,9,5,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-6,-9,-9,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,8,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,3,11,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,8,4,4,3,5,4,5,5,8,5,5,4,5,4,6,6,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,15,8,8,6,9,5,6,5,9,5,6,5,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,5,9,6,8,8,12,6,6,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,9,6,7,7,18,9,9,7,10,6,7,6,10,6,6,4,6,4,6,5,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,7,6,10,7,10,9,34,18,18,13,19,11,13,11,18,10,11,8,12,8,11,11,22,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,16,9,10,7,11,7,8,7,13,8,9,8,13,9,12,12,17,9,10,7,10,6,6,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,5,3,3,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,34,18,18,13,19,11,12,10,18,10,11,9,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,8,13,8,11,11,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,6,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,5,6,5,9,5,6,5,9,7,10,10,19,10,10,8,12,7,9,7,12,7,7,6,10,7,10,9,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,29,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,13,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,13,7,8,6,8,5,5,5,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,6,5,9,6,9,9,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,11,7,9,9,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,13,9,13,13,20,11,11,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,7,5,6,4,5,5,8,5,6,5,7,5,6,6,15,8,8,6,9,5,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,13,7,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3,3,4,3,4,5,9 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,7,4,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,4,3,3,3,6,4,4,4,6,4,5,5,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,5 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,3,8,5,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,6,4,4,4,6,4,5,5,19,10,11,8,10,6,8,7,11,6,6,5,7,5,6,6,12,7,8,6,8,5,6,5,9,5,6,5,8,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,11,6,6,4,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,4,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,8,12,7,7,6,11,6,7,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,7,4,5,5,9,5,6,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,12,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,4,5,3,4,4,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,23,12,12,8,12,7,9,8,13,7,7,5,8,6,8,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,5,10,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,23,12,13,9,14,8,9,7,12,7,7,5,8,6,8,7,13,7,8,6,9,5,6,6,12,7,7,6,10,7,9,9,14,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,10,6,7,5,8,5,7,7,11,6,7,5,8,5,7,7,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,14,8,8,5,7,5,6,6,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,8,5,7,6,10,7,11,11,14,8,8,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,8,4,4,3,4,3,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,6 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3 +0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,6,3,3,3,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,5,3,3,3,4,3,4,3,5,4,6,6,8,4,4,3,3,2,3,3,3,2,2,2,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,6,5,19,10,10,7,11,7,8,7,12,7,7,5,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,6,9,6,8,8,15,8,8,6,7,4,5,4,8,5,5,4,5,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,5,6,5,6,4,6,6,20,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,9,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,3,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,5,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3 +0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,7,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,13,7,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,5,4,4,3,5,4,5,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,16,9,9,6,9,6,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,2,2,2,1,1,1,1,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,3,3,4,3,4,5,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,10,6,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,22,12,12,9,13,8,9,8,13,7,7,5,8,5,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,7,7,10,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,7,6,11,6,7,6,10,7,9,9,35,18,19,13,19,11,14,12,20,11,12,9,15,10,13,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,14,27,14,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,10,8,13,9,14,14,24,13,13,9,12,7,8,7,11,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,4,4,3,3,2,3,3,5,4,5,4,7,5,7,7,14,8,8,6,10,6,7,7,12,7,9,7,12,8,11,11,36,19,19,13,19,11,14,12,21,11,12,8,12,8,11,10,18,10,10,7,11,7,9,8,13,7,8,7,12,8,12,12,19,10,9,6,8,5,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,18,9,9,7,10,6,8,8,14,8,8,7,11,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,18,12,17,17,34,17,17,11,16,9,11,10,17,9,9,7,11,6,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,19,10,11,8,12,7,9,7,12,7,8,6,9,6,9,9,16,9,9,7,10,6,8,8,15,9,11,9,15,11,16,16,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,6,13,7,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,22,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,4,5,4,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,4 +0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,14,8,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,10,6,5,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,5,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,4,6,6,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,8,5,7,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,19,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,7,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,9,6,7,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,4,5,13,7,7,5,7,4,4,4,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,4,2,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,5,5,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,6,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,3,3,5,4,4,4,5,4,5,5,13,7,7,5,8,5,6,5,8,4,5,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,6,3,3,2,2,2,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 +1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,1,2,1,1,1,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,4,6,4,5,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,14,7,7,5,6,4,5,5,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,20,11,11,8,11,7,9,8,13,7,8,6,8,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,9,5,5,4,7,4,5,5,9,5,6,5,8,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,3,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,10,6,6,5,7,4,5,4,8,5,5,5,8,5,7,7,20,10,10,7,11,7,8,7,11,6,6,5,8,5,6,5,11,6,6,5,8,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,5,5,11,6,6,4,6,4,5,5,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,11,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,6,9,5,6,5,8,6,9,9,12,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,5,3,4,3,4,3,4,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,8,4,4,3,3,2,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,5,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,12,6,6,4,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,4,4,8,4,4,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,4,5,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,5,7,4,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,2,3,3,5,3,3,2,3,3,4,4,17,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,5,8,6,8,8,25,13,13,9,14,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,9,7,11,7,10,10,20,10,10,7,10,6,7,7,12,7,7,5,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,6,3,3,2,3,2,3,3,6,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,23,12,12,9,14,8,9,8,14,8,8,6,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,6,9,5,5,3,4,3,4,4,6,4,4,3,5,4,6,6,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,13,7,8,6,10,6,8,7,13,8,9,8,13,9,13,12,24,13,13,9,12,7,8,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,9,6,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,6,9,6,7,7,12,7,8,7,11,7,10,10,16,8,8,6,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,4,4,3,5,4,5,5,10,5,5,4,5,3,3,2,2,1,1,1,0,0,0,1,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,5,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,2,3,3,4,4,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,3,3,4,3,5,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,9,6,7,6,9,5,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,4,5,4,5,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,3,4,3,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,4,5,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2 +1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,12,7,8,7,13,7,7,6,9,6,9,9,14,8,8,6,10,6,7,7,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,6,10,5,5,4,6,5,7,7,11,6,7,6,11,7,10,10,19,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,6,9,6,7,6,10,7,10,9,21,11,11,8,12,7,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,6,9,6,7,6,12,7,9,7,12,8,12,11,18,9,9,6,8,5,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,9,9,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,5,11,6,6,5,8,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,3,4,4,6,4,4,4,14,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,4,3,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,4,5,4,4,4,6,4,4,4,6,4,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,4,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-3,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,6,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,8,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,17,9,9,7,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,10,7,10,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,7,10,10,17,9,8,6,8,5,6,5,10,6,6,4,5,4,5,4,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,12,7,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,7,5,6,4,5,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,9,16,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,9,6,9,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,13,7,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,7,7,6,8,5,7,6,10,6,7,6,11,7,10,10,16,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,8,5,6,5,9,6,8,8,10,5,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,26,13,13,9,14,8,10,8,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,9,8,14,9,13,13,41,21,20,14,20,12,15,13,22,12,14,11,18,12,16,15,29,15,16,11,16,9,11,10,18,10,12,10,18,12,17,17,32,17,17,12,19,11,14,12,21,11,12,9,14,9,12,12,23,12,13,10,16,10,13,12,21,12,13,10,17,12,17,17,31,16,16,10,14,8,10,8,13,8,9,7,11,7,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,9,17,9,9,6,9,6,8,7,12,7,8,6,9,6,8,7,13,7,8,6,10,7,9,8,14,8,10,9,16,11,17,17,39,20,19,13,19,11,14,12,20,11,12,9,15,9,12,11,20,11,12,9,13,8,11,10,18,10,11,9,14,10,14,14,26,14,14,10,15,9,10,8,14,8,8,6,9,6,7,6,11,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,25,13,12,8,12,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,11,7,10,10,20,11,11,8,11,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,19,11,14,12,20,13,19,19,31,16,16,11,16,9,10,8,13,7,7,6,9,6,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,21,11,11,8,11,7,8,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,10,8,12,7,9,9,16,9,11,10,18,12,18,18,26,14,14,10,14,8,10,9,16,9,9,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,9,7,12,8,11,11,21,11,12,8,12,7,9,7,12,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,23,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,2,2,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,9,7,10,6,8,7,11,6,7,5,7,5,6,6,12,7,7,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,4,7,4,4,4,6,4,5,4,8,5,6,5,9,6,9,9,20,10,10,7,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,6,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,7,5,6,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,8,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,4,4,8,5,6,5,9,7,10,10,21,11,11,8,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,2,2,2,2,2,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,5,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,4,3,4,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,5,6,5,8,6,8,8,23,12,12,8,12,7,9,7,13,7,8,6,10,6,8,8,16,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,7,11,6,7,5,8,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,15,8,7,5,6,4,5,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,8,7,12,8,12,12,16,8,8,6,8,5,5,4,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,3,3,2,3,3,4,3,4,4,13,7,8,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,6,7,6,10,7,10,10,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,13,7,6,4,6,4,5,5,7,4,4,3,4,3,4,3,6,3,3,2,2,2,3,3,2,2,2,2,4,3,4,4,13,7,7,5,6,4,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,7,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,11,6,6,4,5,3,4,3,6,3,3,3,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,18,10,10,7,9,6,7,6,9,5,6,5,8,5,6,6,11,6,7,5,6,4,5,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,4,3,4,3,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0 +1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,4,3,4,3,4,4,6,3,3,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,15,8,8,6,9,5,6,5,9,5,5,4,5,3,4,3,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,7,4,5,4,5,4,6,6,10,6,6,5,8,6,9,9,30,15,15,10,14,8,10,9,15,8,9,7,10,7,9,8,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,7,12,8,11,11,17,9,9,6,8,5,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,14,8,8,5,7,4,5,5,8,4,4,3,5,4,5,5,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,24,13,13,9,14,8,10,9,15,8,8,6,10,6,8,8,11,6,7,5,7,4,5,4,7,4,5,4,7,5,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,5,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,14,14,18,9,9,7,10,6,7,6,10,6,6,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,2,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,10,6,7,7,12,7,9,7,12,8,11,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,5,4,6,5,7,7,15,8,7,5,7,5,6,5,8,5,5,4,5,3,4,3,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,12,7,7,5,6,4,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3 +0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,5,7,4,5,4,8,5,6,5,8,6,8,7,13,7,6,5,7,5,6,5,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,9,5,4,3,5,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,5,5,8,6,8,9,11,6,6,4,7,4,4,4,7,4,4,3,4,3,3,3,6,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,9,5,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,5,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-2,0,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-5,-3,-4,-4,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,8,5,5,4,6,4,4,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,8,8,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,8,5,6,5,7,5,7,6,11,6,6,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,5,6,6,12,7,8,7,12,8,11,11,20,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,7,4,5,4,7,5,8,8,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,7,6,11,6,7,6,11,8,12,12,15,8,8,6,8,5,5,4,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,3,4,3,4,4,11,6,6,4,5,3,4,3,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6 +1,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,5,3,4,3,4,3,5,4,7,4,4,4,5,4,5,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-3,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,6,4,4,3,5,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,6,5,7,7,22,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,8,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,9,5,6,5,7,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,8,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,10,6,6,6,10,7,11,11,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,3,4,3,4,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,5,7,7,12,6,6,5,8,5,5,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,4,3,3,2,3,3,9,5,6,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,5,7,7,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,18,9,9,6,9,6,6,6,10,6,6,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,5,3,4,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,6,6,10,7,10,10,14,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,4,4,4,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-9,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-7,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,10,5,5,3,4,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,2,1,1,1,1,1,1,2,3,2,3,2,6,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,6,4,4,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,40,21,21,14,21,12,15,13,23,12,13,10,15,9,12,11,21,11,12,9,13,8,9,8,15,9,11,9,15,10,15,15,23,12,12,8,12,7,9,8,14,8,9,7,11,7,9,9,16,9,9,7,11,7,10,10,18,10,12,11,19,13,19,18,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,8,10,9,17,10,12,11,19,13,19,19,34,17,17,11,16,9,11,10,17,9,9,7,11,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,8,5,6,6,10,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,13,8,11,11,20,11,13,11,20,14,20,19,26,13,13,9,13,7,8,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,6,5,9,6,7,6,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,8,5,7,7,12,7,7,5,6,4,5,4,6,4,5,4,6,4,6,6,15,8,9,6,9,6,8,7,13,7,8,6,9,6,9,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,23,12,12,9,14,8,9,8,14,8,8,7,11,7,10,9,16,9,9,6,9,6,7,7,12,7,7,6,10,7,9,9,20,10,10,7,9,5,6,5,9,5,4,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,5,4,6,6,16,8,8,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-13 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,9,5,6,4,5,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,21,11,11,8,11,7,8,7,13,7,7,6,8,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,10,14,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,5,3,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,9,5,6,4,6,4,4,3,5,3,2,2,4,2,2,2,5,3,2,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,22,12,12,8,12,7,8,7,14,8,8,6,8,6,8,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,8,6,10,7,10,10,16,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,5,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,5,5,8,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,4,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,11,6,6,4,6,4,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-7 +0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,16,9,9,6,9,5,6,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,2,2,3,3,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,25,13,13,9,14,8,10,9,16,9,9,7,10,7,9,8,14,8,8,6,9,6,7,6,12,7,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,6,12,7,9,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,11,6,7,5,8,5,6,5,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,6,9,6,8,7,10,6,8,7,12,8,11,11,24,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,7,8,6,10,7,9,8,15,9,10,8,14,9,13,13,16,8,8,6,8,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,7,13,7,8,6,8,5,6,5,6,4,4,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,15,8,8,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,3,5,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,3,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,5,10,6,6,5,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,20,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,6,4,6,4,4,3,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,4,5,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,6,6,4,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,12,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,5,8,8,12,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,11,7,8,6,11,8,11,10,11,6,6,4,5,4,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,1,1,1,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,5,6,11,6,6,4,6,4,5,4,7,4,3,2,3,2,3,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,7,4,5,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,36,19,19,13,20,12,14,12,21,11,11,8,13,8,10,9,20,11,11,8,13,8,10,9,16,9,11,9,14,9,13,13,24,12,12,9,13,8,10,8,14,8,8,6,9,6,9,9,14,8,8,6,10,7,10,9,17,10,12,10,18,12,18,18,29,15,16,11,16,9,11,9,15,9,10,8,12,8,10,9,18,9,9,6,9,6,7,7,12,7,8,7,11,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,9,16,9,10,9,15,10,15,16,33,17,17,12,18,10,12,10,17,10,11,8,13,8,11,10,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,7,15,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,11,6,6,5,8,6,8,8,18,10,10,8,12,8,11,11,20,11,13,11,19,13,19,19,21,11,11,8,11,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,7,5,7,8,16,8,8,6,9,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,6,5,8,5,6,5,9,6,9,8,18,9,9,6,8,5,5,4,7,4,5,4,5,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,9,8,12,7,8,6,9,6,7,7,12,7,9,8,13,9,13,13,20,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,8,6,9,6,7,6,11,7,8,6,10,6,8,8,16,9,9,6,9,5,6,5,8,5,6,5,7,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,4,3,4,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,20,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,13,7,7,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,11,6,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,4,4,6,4,5,5,5,3,4,3,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,24,12,12,9,13,8,10,8,13,7,7,5,8,5,7,6,13,7,8,6,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,9,8,14,8,8,6,9,5,6,5,8,5,6,5,6,4,6,6,12,7,7,5,9,6,8,8,13,8,10,8,14,10,14,14,14,7,7,5,6,4,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,13,7,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,7,7,20,10,10,7,11,7,8,7,11,6,6,5,7,4,6,5,11,6,6,5,7,4,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,8,4,5,4,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,12,8,12,11,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,3,3,4,4,7,4,4,3,4,3,5,5,8,5,5,5,8,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,4,6,6,10,6,6,4,6,4,4,3,7,4,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,34,17,17,12,18,11,13,11,18,10,10,8,12,7,9,9,18,10,10,7,11,7,9,8,13,8,9,8,13,9,12,12,22,11,11,8,12,7,9,7,13,7,8,6,8,6,8,8,15,8,9,7,11,7,9,9,17,10,12,10,16,11,16,16,29,15,15,11,16,9,11,9,16,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,11,7,8,7,12,8,12,11,19,10,11,8,11,7,8,8,14,8,9,7,11,7,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,16,16,32,16,16,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,5,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,7,7,13,8,9,7,12,8,12,12,21,11,12,8,12,7,9,7,12,7,8,7,11,7,10,10,19,10,11,8,13,8,11,10,18,11,13,11,20,13,19,19,18,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,18,9,9,6,8,5,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,13,7,8,7,12,8,12,12,21,11,11,8,11,7,9,8,13,7,8,6,10,7,9,9,14,8,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,6,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,4,4,10,5,5,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,4,2,3,2,3,2,3,2,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,23,12,12,8,12,7,9,7,12,7,7,6,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,6,7,6,11,6,7,5,8,5,7,7,12,6,7,5,7,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,8,8,6,10,6,8,7,13,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,4,8,5,6,4,7,4,6,6,10,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,7,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,9,5,5,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,4,3,4,3,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,11,12,9,14,9,11,10,19,11,12,10,16,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,15,8,8,6,10,6,6,5,9,5,6,5,8,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,13,7,8,6,11,7,10,10,18,10,11,8,14,9,12,11,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,7,5,6,6,12,7,7,6,8,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,10,6,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-6,-4,-6,-6,-14 +1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,10,5,5,3,5,3,4,3,4,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,33,17,18,12,17,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,11,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,10,11,8,14,9,11,10,19,11,12,10,17,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,9,9,15,8,8,6,9,6,6,5,9,5,6,5,7,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,14,8,8,6,11,7,10,10,18,10,11,8,14,9,11,10,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,7,5,7,6,12,7,7,6,8,5,7,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-10,-5,-7,-6,-11,-7,-12,-12,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-9,-14,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-11,-23,-12,-13,-9,-15,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-38,-18,-18,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-1,-1,0,0,0,0,1,1,1,2,2,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,6,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,9,5,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,5,3,4,4,7,6,9,9,17,9,10,7,10,6,7,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,7,6,11,6,7,6,10,7,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,8,11,10,19,10,11,8,13,8,11,11,21,12,14,12,22,15,22,21,66,33,33,23,34,19,22,19,33,18,19,15,25,16,21,20,38,20,20,14,21,12,15,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,19,12,16,16,30,16,17,13,20,12,16,15,28,16,18,15,25,17,25,25,49,25,25,17,26,15,17,15,26,14,15,11,17,11,15,14,26,14,15,11,17,10,13,12,22,12,14,11,19,13,18,18,34,18,18,12,18,11,13,11,19,11,13,10,17,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,30,21,31,31,62,31,31,21,32,18,21,18,32,17,19,14,23,15,21,20,39,20,21,15,24,14,18,16,30,16,18,15,25,17,24,24,46,24,24,16,23,13,16,14,24,13,15,12,20,13,18,17,33,18,19,14,21,13,17,15,27,15,17,14,24,16,23,23,44,23,23,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,11,17,11,14,13,24,13,15,12,20,14,20,20,39,20,21,15,22,13,16,14,25,14,16,12,20,13,18,17,33,18,19,14,22,14,19,18,34,20,24,21,37,25,38,38,34,18,18,12,18,11,14,12,21,11,12,9,15,9,12,11,20,11,11,8,12,7,9,8,14,8,9,7,10,7,10,10,19,10,11,8,13,8,9,8,15,8,9,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,8,10,9,16,9,9,7,10,7,9,8,15,8,9,7,11,7,8,7,13,8,9,8,13,9,12,12,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,14,27,14,15,11,18,11,14,12,22,13,16,13,23,15,22,22,44,22,22,15,21,12,15,12,21,11,11,8,11,7,9,8,13,7,7,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-13,-27 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,7,11,6,8,7,13,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,9,7,10,7,9,8,15,9,10,9,15,11,16,16,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,11,20,10,11,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,8,11,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13 +0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,2,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,13,7,7,6,9,6,8,8,13,7,8,6,9,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,8,16,9,10,9,15,11,16,16,32,17,17,12,17,10,12,10,17,9,10,8,12,8,11,11,19,10,10,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,9,7,10,6,8,8,15,8,9,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-2,-3,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,4,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,7,4,4,4,6,4,6,6,10,6,6,4,7,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,6,8,6,8,7,13,7,7,6,9,6,7,6,11,6,7,5,9,6,8,8,16,8,8,6,8,5,6,6,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,5,7,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,4,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,8,13,9,13,13,12,6,6,5,7,4,6,5,8,4,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,8,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,2,1,1,0,1,1,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,6,4,4,3,3,2,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,5,5,10,6,6,5,7,5,7,7,10,6,8,7,11,8,11,11,33,17,17,12,17,10,11,10,18,10,10,8,12,8,11,10,20,10,10,7,10,6,7,7,14,8,8,7,11,7,10,10,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,9,13,7,8,6,9,6,7,7,14,8,8,6,9,6,7,7,13,8,9,7,11,7,10,10,18,9,9,7,10,6,7,7,10,6,6,5,8,6,8,8,14,8,9,7,10,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,18,10,12,10,17,9,10,8,12,8,10,10,18,10,11,8,12,7,9,8,15,8,9,7,12,8,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,10,7,9,8,15,9,10,8,12,8,12,12,23,12,11,7,10,6,7,7,11,6,6,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,10,11,18,10,10,7,11,7,9,8,12,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,17,10,13,11,19,13,19,19,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,5,5,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,11,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,8,8,12,6,6,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,6,6,5,8,6,8,7,12,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,6,4,6,6,11,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,12,7,9,8,14,10,14,14,12,6,6,5,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,6,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,8,4,5,4,6,4,5,5,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,9,9,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,5,6,6,10,6,8,7,12,8,12,12,10,6,6,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,4,2,3,3,4,3,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,5,4,6,4,6,5,9,5,5,4,7,4,5,4,7,4,4,4,6,4,4,4,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,4,11,6,6,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,3,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,3,3,6,4,4,4,6,4,5,5,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,34,17,17,12,18,10,11,9,16,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,10,6,8,8,14,8,8,6,10,7,10,10,13,7,8,6,9,6,8,7,12,7,9,8,14,10,14,14,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,9,7,12,8,11,11,17,9,9,7,11,7,8,7,12,7,7,6,10,7,10,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,16,16,11,17,10,11,9,16,9,9,7,12,8,11,10,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,21,11,12,8,12,7,9,7,12,7,7,5,8,6,8,8,17,9,10,7,10,7,9,8,14,8,9,8,13,9,12,12,23,12,12,8,11,6,7,6,10,6,6,5,7,5,7,7,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,11,11,9,14,9,11,10,18,11,13,11,20,14,20,20,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,16,9,10,7,11,7,9,8,14,8,10,8,13,9,12,12,18,9,9,6,8,5,6,5,9,5,6,5,7,4,5,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,6,5,7,5,7,7,10,5,5,4,4,3,4,3,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,19,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,4,4,3,5,4,5,4,7,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,6,5,9,5,6,6,10,7,10,10,18,9,9,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,5,6,4,6,4,6,6,12,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,10,6,6,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,10,6,7,7,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,4,3,4,3,6,4,4,3,4,3,4,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,10,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,4,4,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,5,6,5,8,6,8,9,22,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,15,8,8,6,9,6,7,6,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,10,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,7,6,10,6,8,7,11,8,11,11,20,11,11,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,11,7,9,8,14,9,13,13,14,7,7,5,6,4,5,5,7,4,4,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,7,4,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,5,5,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,4,5,4,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,4,7,5,6,5,9,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,5,6,5,8,5,5,5,7,5,7,7,12,7,7,5,7,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,8,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,10,6,8,7,11,8,11,11,12,6,6,4,5,3,4,3,5,3,3,2,4,3,4,4,6,3,3,3,3,3,4,3,5,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,7,4,5,5,9,5,6,5,8,6,8,8,9,5,5,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,6,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,11,6,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9 +-3,-1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,2,2,4,3,3,3,4,3,5,5,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,6,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,2,2,2,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,11,6,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,7,6,9,6,8,8,14,8,10,8,14,9,13,13,35,18,18,12,18,11,13,11,18,10,11,8,13,8,10,10,18,10,10,7,11,7,8,8,14,8,9,8,14,9,12,12,21,11,11,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,6,7,6,10,6,7,6,10,7,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,11,15,8,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,10,17,9,10,8,12,7,9,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,9,9,20,10,10,7,11,6,7,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,15,8,9,8,13,9,13,13,26,13,13,9,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,7,12,7,7,6,9,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,19,13,18,18,19,10,10,7,9,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15,8,9,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,15,8,8,5,7,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-9,-19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,5,3,3,2,4,3,3,3,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,6,4,5,4,8,5,6,5,7,5,7,7,10,6,6,5,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,8,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,4,4,4,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,6,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-6 +-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,1,1,2,2,2,2,2,2,2,2,2,2,2,3,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,6,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,4,6,4,6,6,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,5,5,11,6,6,4,6,3,3,3,6,4,4,4,6,4,6,5,6,4,5,4,6,4,4,4,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,9,5,5,3,4,3,3,3,7,4,5,4,6,5,7,7,9,5,6,5,8,5,7,6,9,5,6,6,10,7,11,11,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,7,5,6,6,16,8,8,6,9,5,6,5,8,4,4,3,6,4,5,5,9,5,6,4,5,3,4,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,5,8,4,4,3,4,2,2,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,8,6,8,8,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,6,4,6,7,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-2,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6 +-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,5,8,5,7,6,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,6,11,7,10,10,27,14,13,9,12,7,8,7,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,7,6,9,6,9,9,12,7,7,5,8,5,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,10,6,6,4,5,3,4,4,8,5,5,4,7,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,24,12,12,9,13,8,9,7,11,6,6,4,6,4,5,5,12,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,18,10,10,7,9,5,6,6,10,6,6,4,5,4,5,4,10,6,6,5,7,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,12,7,7,5,6,4,4,3,5,3,4,3,5,3,4,3,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,5,9,6,7,6,11,8,12,12,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,5,7,7,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,4,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,1,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,3,4,3,3,3,3,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,5,8,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,8,6,8,8,8,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,7,5,7,8,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,0,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,2,2,3,2,2,2,4,3,3,3,-5,-2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,8,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,8,8,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,9,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,4,5,5,11,6,7,6,10,7,10,10,9,5,6,4,6,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,4,3,3,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,16,9,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,7,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,6,4,4,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,5,8,5,5,4,6,4,5,5,10,6,7,6,8,6,8,8,22,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,7,5,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,11,6,6,4,7,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,10,7,10,10,5,3,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,8,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,20,11,11,7,10,6,7,6,10,6,6,4,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,10,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,1,1,1,2,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,11,6,7,6,9,6,8,8,15,9,11,9,16,11,15,15,40,20,20,13,19,11,12,10,18,10,10,8,12,8,10,10,19,10,10,7,10,6,8,7,11,6,7,6,11,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,14,8,9,7,10,6,8,7,13,8,9,7,11,8,11,11,17,9,9,6,9,6,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,8,8,14,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,10,17,12,17,17,40,20,20,13,19,11,13,11,19,10,11,8,13,8,10,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,6,10,6,7,5,8,5,7,7,26,14,14,10,15,9,11,10,17,9,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,8,7,11,8,11,11,20,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,11,10,19,11,14,12,20,13,19,19,17,9,9,6,9,5,6,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,8,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,11,8,12,8,10,9,16,9,11,10,18,12,18,18,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,5,3,2,1,1,1,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25 +-3,-1,-2,-1,-2,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,7,10,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,10,6,6,5,7,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-7,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,11,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,9,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,6,7,11,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,0,-1,0,-1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,8,4,5,4,5,4,5,5,8,5,6,5,7,5,8,8,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,-8,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,4,3,3,3,4,3,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,10,5,5,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,6,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,20,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,8,5,6,5,8,6,8,7,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,9,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,3,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,3,4,3,3,2,1,1,2,2,3,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,15,8,8,6,7,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,3,2,2,2,5,3,3,3,5,3,4,5,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,14,8,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,3,2,4,3,3,3,4,2,2,2,3,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,4,7,4,4,4,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,8,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,4,5,5,8,5,5,4,7,5,8,8,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,5,8,6,8,7,8,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,5,7,5,8,8,14,8,9,7,12,9,13,13,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,6,5,8,5,7,7,12,7,9,7,12,8,11,11,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,1,1,1,0,-1,0,1,1,1,1,1,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,5,3,3,2,4,3,4,3,5,4,4,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,2,1,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,3,3,3,4,3,4,3,4,3,5,4,5,5,14,8,8,5,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,4,8,5,6,5,7,5,8,8,8,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,-1,0,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,4,5,4,6,6,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,8,5,5,3,4,3,4,3,7,4,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,7,4,5,4,5,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,8,4,4,3,4,3,5,5,9,6,7,6,10,6,8,8,14,7,7,5,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,9,5,6,5,8,6,9,10,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,7,4,4,4,6,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,3,2,1,1,1,1,2,2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 +2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,4,4,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,4,6,4,5,5,8,5,5,4,8,6,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,7,5,7,7,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-5,-11 +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,4,5,5,8,5,5,4,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,7,7,2,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,9,5,6,4,6,4,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,5,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,4,4,7,5,6,5,8,6,9,9,25,13,13,9,14,9,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,18,10,10,7,10,6,8,7,13,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,20,10,10,7,9,6,7,6,10,6,6,5,9,6,7,7,12,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,5,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,5,5,10,6,6,5,8,5,7,7,13,8,10,8,14,10,14,14,21,11,11,8,11,6,6,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,5,5,8,6,8,8,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,8,5,5,4,7,5,6,6,14,8,8,6,10,6,7,6,11,6,7,6,9,6,7,7,12,7,7,5,7,5,7,7,12,7,8,7,12,9,13,13,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,1,1,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,6,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,6,4,5,5,7,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,2,2,5,3,4,4,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,8,8,12,6,6,4,7,4,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,8,5,6,5,7,5,8,8,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-11 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,11,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,5,4,6,6,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-5,-3,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,5,3,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,11,6,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,5,8,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,4,4,6,4,6,5,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,10,6,7,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,5,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,5,6,6,4,4,3,4,3,3,2,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,9,9,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,1,0,0,0,1,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,7,11,6,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,3,2,3,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,1,1,1,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,9,9,22,12,12,9,13,8,10,8,14,8,8,6,9,6,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,15,8,8,6,10,6,7,7,12,7,7,6,9,6,7,6,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,16,9,9,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,11,8,12,12,18,10,10,7,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,13,7,6,4,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,7,7,12,7,9,7,12,8,10,10,0,0,0,0,-1,0,0,0,-1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,6,6,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,1,2,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,5,4,6,4,4,4,6,5,7,7,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,10,6,6,4,6,4,4,4,8,5,5,3,5,3,4,4,9,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,10,6,6,4,7,4,4,4,8,5,5,4,6,4,5,4,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,6,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,5,3,4,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,8,4,4,3,4,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,4,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,23,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,9,6,8,8,13,7,8,6,8,5,6,5,7,4,4,3,4,3,4,4,10,5,5,4,6,4,4,4,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,10,5,5,4,6,4,6,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,4,6,4,6,6,12,7,7,5,8,5,7,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,13,7,7,5,6,4,5,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,7,4,4,4,6,4,6,6,11,6,7,5,8,5,6,6,12,7,7,6,10,7,9,9,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-7,-4,-6,-6,-14 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,4,3,4,2,3,2,3,2,3,2,3,2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,8,5,5,4,7,5,6,6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,2,2,2,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,8,5,6,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,8,8,13,7,8,6,8,5,6,5,10,6,6,5,7,5,7,7,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,13,9,13,7,8,7,13,7,8,6,10,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-25,-12,-13,-8,-13,-7,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-22,-11,-12,-8,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,2,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,16,8,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,6,7,6,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,13,19,19,47,24,24,16,24,14,16,13,23,12,13,10,17,11,15,15,29,15,15,10,15,9,12,11,19,11,12,10,16,11,15,15,30,16,16,11,15,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,26,13,13,9,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,7,11,8,11,10,19,11,13,10,17,12,17,18,29,15,15,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,13,9,14,9,11,10,17,10,12,10,16,11,15,15,28,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,11,8,11,12,23,12,11,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,10,15,15,28,14,14,10,14,8,10,9,15,9,10,8,14,9,13,12,22,11,11,8,12,8,10,9,17,10,12,10,18,12,17,17,40,21,21,15,22,13,15,13,22,12,13,9,14,9,13,12,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,21,11,11,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,6,9,6,8,7,12,7,9,8,14,10,14,13,25,13,14,10,14,8,9,7,12,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,27,14,15,11,16,10,12,10,18,10,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,10,9,15,10,15,15,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,1,1,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-24 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,10,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,6,5,10,7,9,9,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-7,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,5,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,8,6,8,7,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,10,7,10,10,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,5,5,8,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 +0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7 +0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-5,-4,-7,-4,-5,-4,-8,-5,-9,-9,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,1,1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,3,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,9,5,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,7,7,11,7,8,6,10,7,10,10,25,13,13,9,14,8,9,8,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,5,10,6,6,5,9,6,9,10,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,22,12,12,8,11,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,6,4,5,4,8,5,6,5,8,5,7,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,4,7,5,8,8,13,7,8,6,8,5,5,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,5,8,6,8,8,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11 +1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,5,4,5,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,4,3,3,3,7,4,4,4,7,5,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,5,8,5,5,4,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,1,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,7,7,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-9,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,1,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,29,15,15,10,15,9,10,8,14,8,9,7,10,7,10,9,17,9,9,6,9,6,7,6,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,5,8,5,6,5,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,10,7,9,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,6,4,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,6,11,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,14,7,7,5,7,4,5,4,6,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,11,10,21,11,11,8,11,7,8,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,7,5,6,5,7,5,7,7,17,9,9,7,9,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,3,2,2,3,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,5,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6 +1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4 +0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-3,-11,-5,-6,-4,-6,-3,-4,-3,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,3,2,2,1,0,0,0,0,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,9,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,13,7,7,5,6,4,5,4,8,5,5,4,5,4,5,5,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,6,4,6,7,13,7,8,6,8,5,6,5,7,4,4,3,5,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,5,7,7,17,9,8,6,8,5,5,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,6,4,4,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,4,6,4,6,6,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-8 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,4,2,3,2,3,2,3,2,3,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,5,4,4,4,6,4,6,6,14,7,7,5,8,5,5,4,8,4,4,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,4,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,4,5,9,5,6,4,5,4,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,11,6,5,4,5,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,1,1,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,2,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,1,1,1,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,3,2,2,1,1,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,4,5,5,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,4,5,4,5,5,7,4,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,6,4,4,3,3,3,4,4,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,3,6,4,4,3,5,4,5,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,3,2,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,3,5,3,4,3,5,3,4,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 +-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-5,-10,-6,-9,-9,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,3,4,3,5,6,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,11,9,15,10,15,15,35,18,18,13,19,11,13,11,18,10,11,8,12,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,22,11,11,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,8,6,9,5,6,6,10,6,6,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,12,6,6,4,6,4,6,5,9,5,6,4,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,11,27,14,14,10,16,9,11,9,16,9,9,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,4,5,4,12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,6,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,5,4,6,5,7,7,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,12,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,4,6,4,5,5,9,5,6,5,8,6,8,9,20,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,4,4,5,4,5,5,13,7,6,5,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,0,0,0,0,0,1,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,10,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,10,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,8,8,6,8,5,5,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,9,6,9,9,12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,5,5,6,4,4,4,6,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,4,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,5,3,3,3,4,3,3,3,8,5,5,3,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,4,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,5,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,9,5,5,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,5,6,5,7,5,8,8,19,10,10,7,10,6,8,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,6,5,11,6,6,4,7,4,5,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,8,8,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,3,2,2,2,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,4,4,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,17,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,2,1,1,1,5,3,3,3,5,3,4,3,5,3,4,3,5,4,6,6,15,8,9,6,9,5,6,5,8,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,12,9,13,13,32,17,17,11,16,10,12,10,17,9,10,7,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,11,6,7,5,7,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,22,12,12,8,11,7,8,7,11,7,8,6,10,6,8,8,10,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,3,3,3,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,8,4,4,3,6,4,4,4,8,5,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-3,-6,-3,-5,-5,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,6,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,13,7,7,5,8,5,5,5,7,4,5,4,6,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,5,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,7,6,12,7,8,7,12,9,13,13,29,15,16,11,16,9,10,8,16,9,9,7,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,6,6,10,6,7,6,10,7,11,11,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,9,5,6,6,10,7,9,9,16,8,8,6,9,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,8,4,4,3,5,4,5,5,9,5,6,5,8,6,9,9,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17 +-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,5,4,5,4,8,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,3,3,2,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,4,4,4,6,4,5,4,6,4,6,6,12,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,6,9,5,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,4,3,6,4,4,4,8,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,7,4,5,4,6,4,5,4,7,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-8,-5,-7,-7,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,11,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,7,5,8,8,25,13,13,9,13,7,8,6,10,6,6,5,7,5,6,6,11,6,7,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,10,7,9,9,18,10,10,8,12,8,11,11,21,12,15,13,23,16,23,23,53,27,26,18,26,15,17,14,24,13,14,11,17,11,14,14,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,28,14,14,10,15,9,11,10,19,10,11,8,13,9,12,11,21,11,12,9,15,9,12,11,19,11,14,12,21,14,20,20,35,18,18,12,16,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,9,9,18,9,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,9,16,11,17,17,32,17,17,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,20,11,11,8,12,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,10,10,18,10,12,10,17,11,16,15,44,22,22,15,23,13,16,13,22,12,12,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-7,-16,-8,-10,-8,-16,-11,-17,-17,-34 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,7,4,4,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,13,9,12,12,28,14,14,10,14,8,10,8,13,7,8,6,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,12,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,6,5,9,5,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,4,4,4,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,4,6,4,6,5,10,6,6,4,7,4,5,5,7,4,4,4,6,4,6,6,12,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3,-3,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,15,8,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,9,8,14,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,8,6,8,7,15,8,9,7,10,6,7,7,11,6,6,5,8,6,9,9,18,10,10,7,10,6,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,6,9,5,6,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,6,6,4,6,4,4,3,3,2,2,2,4,3,4,4,7,4,4,4,6,4,5,4,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,6,10,7,9,9,24,13,13,9,12,7,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,9,5,5,4,5,4,5,4,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,14,8,8,5,7,4,5,5,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,4,5,3,4,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,6,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,8,6,10,7,10,10,21,11,10,7,10,6,8,6,11,6,6,4,6,4,6,5,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,7,5,6,5,9,6,9,9,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,8,7,17,9,9,6,8,5,6,6,9,5,5,4,7,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,9,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,7,6,9,6,9,9,17,10,12,10,17,11,16,16,34,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,19,10,11,8,12,7,9,8,14,8,8,7,11,7,10,10,21,11,11,7,10,6,7,6,10,6,7,6,10,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,6,5,7,5,8,8,15,8,8,5,7,4,4,3,4,3,4,3,5,3,4,4,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,19,10,11,8,11,6,7,6,11,6,6,5,8,5,7,6,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,5,10,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,5,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,5,3,4,3,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,10,21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,7,5,6,5,10,6,6,4,6,4,6,5,7,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,3,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,5,3,3,2,3,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,7,16,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,8,6,9,6,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,5,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-5,-5,-12 +-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,1,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,7,7,10,6,7,6,11,8,12,12,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,4,3,3,3,4,3,3,3,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,7,4,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,6,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,8,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,10,8,13,9,14,14,25,13,14,10,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,5,4,6,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,20,10,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,8,13,9,13,13,24,13,13,9,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,5,8,5,7,7,13,7,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-10,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,2,3,3,5,3,3,3,5,4,5,5,3,2,2,2,4,3,4,4,6,3,3,3,4,3,5,5,8,5,5,5,8,5,7,7,12,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,26,15,18,15,27,18,26,26,46,24,24,16,23,14,17,15,26,14,15,11,17,11,14,14,26,14,14,10,16,10,13,11,20,11,13,11,18,12,17,16,28,14,14,10,15,9,12,10,18,10,11,9,14,9,12,12,23,12,13,10,15,9,12,11,21,12,14,11,19,13,19,19,32,16,16,11,17,10,12,10,17,9,10,8,12,8,11,11,22,11,11,8,11,7,9,8,13,7,8,7,11,7,10,10,24,12,12,9,13,8,9,7,12,7,7,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,11,7,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,6,6,13,7,8,6,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,7,13,8,10,9,16,11,16,16,37,19,19,13,19,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,10,6,6,5,9,5,6,4,6,5,7,7,10,6,6,4,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,4,6,3,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-13,-6,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-10,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-10,-13,-10,-19,-13,-20,-20,-42 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,4,7,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 +-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,9,5,6,5,9,5,6,5,9,6,7,7,14,8,8,7,10,6,8,8,15,9,10,9,15,10,15,15,26,14,14,9,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,7,7,11,7,8,6,11,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,14,7,7,5,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,6,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,6,4,4,4,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,10,6,8,7,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,12,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-6,-3,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,9,5,5,4,6,5,8,8,16,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,19,10,11,8,12,8,10,10,18,9,9,7,10,7,9,8,12,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,10,8,13,9,12,12,22,12,12,9,13,8,9,7,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,10,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,11,6,7,5,8,5,6,5,9,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,7,5,8,5,5,4,7,4,4,3,4,3,5,5,6,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,20,10,10,7,11,6,7,6,12,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,7,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-3,-2,-3,-2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-5,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,4,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,6,6,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,14,8,10,9,14,10,14,15,26,13,13,9,14,8,10,8,15,8,9,7,10,7,9,9,14,8,8,6,8,5,6,6,10,6,6,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,13,7,8,6,8,5,6,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,7,4,5,4,7,5,8,8,15,8,8,6,7,5,6,5,10,5,5,4,6,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,5,3,4,3,4,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,5,10,6,6,5,7,5,6,5,9,5,6,6,9,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,6,6,5,9,6,9,9,15,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,12,7,7,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,7,9,6,6,6,9,6,6,5,7,5,6,6,9,5,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,7,5,6,5,9,5,5,4,5,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,6,5,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 +-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,1,1,2,3,2,3,3,5,4,6,6,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,21,11,10,7,10,6,7,6,10,6,6,5,8,5,6,6,13,7,8,6,10,6,8,7,13,7,8,6,10,7,11,11,19,10,11,8,13,8,11,10,17,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,47,24,24,16,24,14,17,15,26,14,15,11,18,12,16,15,24,12,12,9,13,8,11,10,17,10,11,9,15,11,16,16,29,15,15,11,17,10,12,10,18,10,11,9,14,10,14,14,22,12,12,9,15,9,12,11,20,11,12,10,17,12,17,17,31,16,17,12,17,10,11,10,17,9,10,8,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,12,23,12,11,8,11,7,9,8,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,9,16,8,8,6,9,6,8,8,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,5,8,5,6,5,8,5,5,5,8,6,8,9,16,9,10,8,12,8,10,9,17,10,12,10,17,11,16,16,33,17,17,12,17,10,12,10,18,10,11,8,12,7,9,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,14,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,13,7,7,6,8,5,7,6,11,7,8,6,10,7,9,9,17,9,10,8,11,7,10,9,17,10,12,10,17,12,18,18,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,9,6,9,6,8,7,11,7,8,6,10,7,11,11,20,10,10,7,12,7,8,7,13,7,8,6,9,7,10,9,15,8,8,6,11,7,9,8,14,8,8,7,11,8,12,12,21,11,12,8,11,7,8,7,11,6,7,6,8,6,8,7,12,6,6,5,8,5,6,6,9,6,7,6,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,9,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,6,4,4,4,8,5,5,4,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-13,-27 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,7,5,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,15,10,15,9,10,8,14,8,9,7,10,7,9,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,10,10,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-5,-4,-10,-5,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-27,-13,-12,-8,-12,-6,-8,-6,-12,-5,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,7,6,10,6,8,7,11,8,11,11,20,11,11,8,12,8,10,9,17,9,10,8,14,9,13,13,25,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,49,25,26,18,26,15,17,14,24,13,15,11,18,11,15,14,26,13,13,9,14,9,11,10,17,10,11,9,16,11,17,17,30,16,16,11,17,10,11,10,18,10,11,9,14,10,14,13,22,12,13,10,16,10,12,11,20,11,13,10,17,12,17,17,32,17,17,12,17,10,11,10,16,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,7,10,6,7,7,13,8,9,7,12,8,12,13,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,7,4,5,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,5,5,8,6,8,9,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-14,-7,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 +-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-4,-3,-6,-3,-5,-5,-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,6,5,8,5,7,7,14,8,8,6,8,6,7,6,12,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,10,12,10,18,12,18,18,33,17,17,12,18,10,12,10,16,9,10,8,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,10,9,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,8,12,7,8,7,11,6,7,6,8,6,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,11,11,22,11,11,8,11,6,8,6,11,6,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-13,-13,-26 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,4,3,6,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,17,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,49,25,25,17,26,15,18,14,24,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,17,10,12,10,17,11,16,16,31,16,16,11,17,10,12,10,18,10,12,9,15,10,14,13,23,12,13,10,15,9,12,11,20,11,12,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,7,13,9,12,12,22,12,12,8,13,7,8,7,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,10,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,8,6,8,5,5,5,8,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-11,-7,-11,-10,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-40 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,16,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,50,25,25,17,26,15,18,14,25,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,18,10,12,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,12,9,15,10,13,13,23,12,13,10,15,9,12,11,20,11,13,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,22,12,12,8,13,8,9,8,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,7,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-13,-10,-19,-13,-20,-20,-40 +-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,7,6,10,7,11,11,22,12,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,17,12,19,12,16,15,28,16,19,15,26,18,27,27,53,27,27,19,29,17,20,17,31,17,18,13,20,13,17,17,32,17,17,12,18,11,14,13,25,14,16,13,23,16,24,24,46,24,25,17,26,15,19,17,31,17,20,16,28,19,28,27,53,28,30,22,36,22,30,28,52,30,36,30,53,36,53,53,106,54,54,36,54,30,36,30,53,28,30,22,36,22,30,28,53,27,28,20,32,19,24,21,38,21,24,19,33,21,30,30,58,29,29,20,29,17,21,18,31,17,18,14,23,15,21,21,40,21,21,15,23,14,18,16,30,17,19,16,28,18,26,26,51,26,27,19,28,16,20,17,30,16,17,13,22,14,19,17,32,17,18,13,21,13,16,14,26,15,18,15,26,17,25,25,49,25,25,18,27,16,21,19,34,19,21,16,26,17,24,24,46,24,26,19,30,18,24,23,43,24,29,24,43,29,44,44,86,43,43,29,42,24,28,23,41,22,23,17,28,17,23,21,40,21,21,15,23,14,17,14,25,14,16,13,22,15,21,21,40,21,21,15,24,14,18,16,28,16,18,14,23,15,20,20,38,20,21,16,25,15,20,19,35,20,23,19,33,22,33,33,64,33,33,23,34,19,23,20,35,19,20,16,26,16,22,21,40,21,22,16,25,15,20,18,34,19,23,19,32,21,31,31,61,32,33,23,35,21,26,23,41,22,25,20,34,22,31,30,58,31,33,24,38,23,30,28,52,29,34,28,50,34,50,50,99,50,51,34,51,29,35,29,51,27,28,21,33,20,26,24,46,24,24,17,27,16,20,17,30,17,19,16,28,18,26,26,50,25,25,17,26,15,19,16,29,15,16,12,20,13,17,17,32,17,17,12,19,12,15,14,27,15,17,14,24,16,22,22,42,22,22,15,22,13,15,12,21,11,12,10,16,10,14,13,23,12,13,10,16,10,13,12,22,13,15,13,22,14,20,20,39,20,20,14,21,13,16,14,25,14,16,12,20,13,19,19,36,19,21,16,25,16,21,20,38,21,25,21,37,25,38,38,74,38,38,26,38,22,26,22,39,21,22,17,27,17,22,20,37,19,20,15,24,15,19,17,30,17,20,16,27,18,26,26,50,26,26,18,27,16,19,16,27,15,17,13,22,14,19,18,34,18,18,13,21,13,16,15,27,15,18,15,26,18,26,26,50,25,25,17,25,14,16,14,24,13,14,11,19,12,16,15,28,15,16,11,17,10,13,12,23,13,16,14,24,16,23,23,46,24,24,17,25,15,18,16,28,16,18,15,25,16,23,22,43,23,25,19,30,18,24,22,42,23,27,22,39,26,38,38,76,38,38,26,38,22,26,23,41,22,24,18,29,18,24,23,44,23,24,17,25,15,18,16,29,16,17,14,23,15,22,21,41,21,22,15,22,13,15,13,23,13,14,11,19,13,18,17,32,17,18,13,20,12,16,15,27,15,18,15,27,19,28,28,56,29,29,20,29,17,20,17,30,16,17,12,19,12,15,14,25,13,13,10,15,10,13,12,22,12,13,11,18,12,17,17,32,16,16,11,16,9,11,9,16,9,10,8,13,9,12,12,22,12,12,9,14,9,12,11,19,11,13,11,18,12,17,16,30,16,16,11,15,9,11,9,15,8,8,6,8,5,5,4,6,3,2,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-8,-16,-8,-10,-9,-17,-11,-17,-17,-34,-17,-18,-12,-19,-10,-13,-11,-21,-11,-13,-10,-19,-12,-18,-18,-38,-20,-22,-16,-27,-16,-23,-21,-42,-23,-27,-23,-42,-27,-40,-40,-81 +-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,13,9,13,8,10,9,16,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,27,18,27,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,11,9,16,9,10,8,12,8,11,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,11,7,8,8,13,8,10,8,14,9,13,13,25,13,13,10,14,9,11,10,17,10,11,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,21,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,32,17,17,12,18,10,12,10,18,10,11,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,17,12,18,11,13,12,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,18,15,26,14,14,11,17,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,8,11,11,20,11,13,11,19,13,20,20,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,14,8,9,7,12,8,10,10,17,9,9,7,11,7,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,6,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,8,8,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-20,-13,-20,-20,-40 +-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,10,7,10,6,8,7,14,8,9,7,12,8,12,12,23,12,12,9,13,8,10,9,17,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,26,18,26,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,10,9,16,9,10,8,12,8,12,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,13,27,14,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,13,8,10,8,14,9,13,13,25,13,14,10,14,9,11,10,17,9,10,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,8,11,11,20,11,12,9,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,12,10,16,11,17,17,32,16,16,11,18,10,12,10,19,11,12,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,17,15,26,14,14,11,18,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,9,12,11,20,12,14,11,20,14,20,20,38,20,20,13,19,11,14,11,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,13,7,8,7,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,7,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,19,13,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,11,7,8,7,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,7,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,0,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-21,-11,-14,-11,-20,-13,-20,-20,-41 +-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,7,4,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,7,5,7,4,6,5,10,6,7,6,9,6,9,9,16,9,9,6,9,6,7,6,12,7,7,6,10,7,10,10,18,10,11,8,12,8,11,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,11,8,13,8,11,10,19,10,10,8,11,7,8,8,13,7,8,7,12,8,11,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,6,5,9,6,7,6,10,6,9,9,17,9,9,6,9,6,7,7,12,6,7,6,10,6,9,8,15,8,9,7,10,6,8,8,14,8,10,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,7,7,14,8,8,6,9,5,6,6,9,5,6,5,8,6,7,7,13,7,8,6,8,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,14,8,11,10,18,10,12,10,17,12,17,18,34,17,17,12,18,10,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,7,6,10,6,7,6,10,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,8,8,15,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,8,6,10,6,9,8,16,8,8,6,10,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-27 +-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,4,4,6,5,7,7,10,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,16,8,8,6,9,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,8,14,8,9,8,13,9,13,13,24,12,12,9,13,8,10,9,17,10,11,9,15,10,14,14,27,14,15,11,18,12,16,15,26,15,18,15,26,18,26,26,52,26,26,18,27,16,19,16,27,15,16,12,20,13,17,15,28,15,15,11,16,10,13,11,18,10,12,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,9,7,12,8,12,11,20,11,12,9,14,8,10,9,15,9,10,8,14,9,13,13,27,14,15,11,16,9,11,9,16,9,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,10,9,17,10,11,9,14,9,13,12,22,12,13,9,14,9,12,11,20,12,14,12,22,15,22,21,42,22,22,15,22,13,15,12,20,11,11,9,14,9,12,11,21,11,11,8,11,7,8,7,14,8,9,7,12,8,10,10,21,11,12,8,12,7,8,7,13,8,9,7,12,8,11,10,20,11,11,8,12,8,10,9,18,10,11,9,16,11,16,16,33,17,17,12,17,10,13,11,19,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,16,9,11,9,16,11,16,16,31,16,17,12,17,10,13,11,19,11,13,11,18,12,16,15,31,17,18,13,20,12,16,15,27,15,17,14,25,17,25,26,50,25,25,17,26,15,18,15,26,14,15,11,18,11,14,13,25,13,13,9,14,9,11,10,15,9,11,9,15,10,14,14,24,13,13,9,14,9,11,9,16,9,9,7,11,7,10,9,15,8,9,7,11,7,8,8,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,19,11,13,11,20,14,20,19,38,20,20,14,20,12,14,11,20,11,11,9,14,9,11,11,21,11,12,8,12,8,10,9,17,9,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,8,9,7,12,8,10,9,17,9,10,7,10,6,8,8,15,9,10,8,14,10,14,13,26,14,14,9,13,8,10,8,13,7,8,6,10,7,9,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,11,22,12,13,10,15,9,12,12,21,12,13,11,19,13,19,20,38,19,19,13,20,12,14,12,20,11,12,9,14,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,12,12,21,11,11,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,15,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,15,8,8,6,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,4,6,4,6,6,9,5,6,5,8,6,8,8,16,8,7,5,6,4,5,4,7,4,5,4,5,3,3,3,3,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-20,-10,-11,-7,-12,-7,-10,-9,-21,-11,-13,-11,-20,-13,-20,-20,-41 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,11,9,15,8,9,7,11,7,10,9,16,9,9,6,9,6,7,6,10,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,9,6,6,5,8,6,8,8,16,8,9,6,9,6,7,5,9,5,5,4,7,4,5,5,10,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,24,12,12,9,13,8,9,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,5,4,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,8,15,10,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,9,5,5,4,7,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,11,6,7,5,8,5,7,7,11,7,8,7,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,12,22,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-22 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,18,11,13,11,17,9,10,8,12,8,12,11,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,8,8,14,8,8,6,10,6,7,6,11,7,8,6,10,7,9,9,19,10,10,7,11,7,8,6,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,9,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,14,8,8,6,7,4,5,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,7,5,8,7,13,7,8,6,9,6,7,7,12,7,8,7,10,7,10,10,22,12,12,8,12,7,8,7,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,21,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,21,11,12,9,13,8,10,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,11,7,10,10,16,9,9,7,9,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,9,13,13,26,14,14,10,14,8,10,8,13,7,8,6,10,6,8,7,15,8,8,6,8,5,6,6,12,7,8,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,6,11,7,8,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,9,13,8,10,9,14,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,10,7,10,10,20,10,10,7,10,6,8,6,10,6,6,5,7,5,6,6,8,5,6,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-8,-7,-12,-8,-12,-13,-27 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,15,9,10,8,15,10,15,15,30,15,15,10,15,9,10,9,14,8,8,6,10,7,10,9,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,4,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,6,9,6,7,6,12,7,7,5,7,4,5,5,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,9,5,5,5,8,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,3,5,3,4,3,5,4,6,6,8,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,16,9,10,7,11,7,10,9,16,9,10,8,13,9,13,13,25,13,14,10,14,9,11,9,16,9,9,7,12,8,10,9,17,9,10,7,11,7,8,8,14,8,9,8,14,10,14,14,25,13,14,10,15,9,11,9,16,9,11,9,15,10,14,14,26,14,15,11,18,11,15,14,26,15,18,15,25,17,25,26,53,27,27,18,27,15,17,14,25,13,14,11,18,12,16,15,27,14,15,11,16,10,12,10,18,10,12,10,17,11,16,16,27,14,14,9,13,8,9,8,14,8,9,7,11,8,11,11,20,10,10,7,11,7,9,9,16,9,10,9,15,10,14,13,27,14,13,9,13,8,9,8,15,8,9,7,11,7,9,8,17,9,9,7,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,15,9,10,9,16,9,10,8,13,8,11,11,21,11,12,9,14,9,11,11,20,12,14,12,21,14,21,21,40,20,20,13,19,11,14,12,20,11,12,9,13,8,11,10,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,15,15,32,17,17,12,19,11,14,12,20,11,12,9,13,8,11,11,21,11,12,9,14,9,11,9,16,9,11,10,17,12,17,17,32,17,17,12,17,10,12,10,18,10,12,9,15,11,16,16,32,17,18,13,20,12,16,14,26,15,18,16,28,19,27,27,53,27,27,19,28,16,18,15,26,14,14,10,16,10,13,12,25,13,14,10,16,10,12,10,18,10,12,10,17,11,15,15,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,14,7,7,5,8,5,7,7,12,7,8,7,13,9,12,12,22,11,11,7,10,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,15,9,12,12,22,13,15,13,22,15,21,20,39,20,19,13,19,11,14,12,20,11,12,9,13,8,11,11,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,9,15,10,14,14,27,14,14,10,15,9,10,8,13,7,8,6,10,7,10,10,15,8,9,7,11,7,9,8,14,8,9,8,13,9,12,12,21,11,12,8,12,7,9,8,15,8,9,7,11,8,11,10,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,21,14,21,12,14,12,20,11,11,9,14,9,13,12,23,12,12,8,12,7,9,8,14,8,9,8,13,8,11,11,23,12,12,8,12,7,9,8,13,7,8,6,9,6,9,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,30,16,16,11,15,9,10,8,14,8,8,7,11,7,9,8,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,28,14,14,10,14,8,9,8,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,10,9,15,10,15,14,28,14,14,10,15,9,10,8,14,8,8,6,9,6,7,7,13,7,8,6,9,5,6,6,10,6,7,6,9,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20 +-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,3,6,4,4,3,5,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,15,15,30,15,15,11,15,9,10,9,15,8,8,7,10,7,10,9,16,8,8,6,10,6,7,6,12,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,5,11,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,12,7,8,6,9,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,8,5,6,5,6,4,6,6,11,6,6,4,6,4,4,4,7,5,6,4,7,5,6,6,10,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,19,10,10,7,10,6,7,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,17,9,10,8,12,7,9,8,14,8,10,9,16,11,16,15,29,15,15,11,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,7,5,6,5,8,5,6,4,7,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,6,5,7,4,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,8,6,9,6,7,7,13,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,6,5,8,6,8,8,16,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,11,23,12,12,8,12,7,9,7,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,8,5,6,6,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21 +-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,6,4,5,5,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,6,4,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,4,3,4,5,5,3,3,3,4,3,3,3,7,4,4,3,5,4,5,6,10,6,6,5,8,5,7,7,11,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,17,17,36,18,18,12,18,10,12,10,18,10,11,8,12,8,11,11,19,10,11,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,10,7,11,7,9,8,16,9,9,7,10,6,7,6,12,7,7,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,6,9,5,6,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,13,7,8,6,9,5,6,5,11,6,7,6,10,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,12,7,7,6,10,7,10,9,18,9,9,7,10,6,6,5,10,6,6,5,9,6,8,8,13,7,8,6,8,5,6,6,11,6,7,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,6,8,8,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,27,14,14,10,14,8,10,9,14,8,8,6,9,6,8,8,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,5,4,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,5,11,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,6,6,10,6,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,7,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,4,2,2,3,6,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,5,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,9,15,10,14,15,30,16,16,11,16,9,11,9,15,9,10,7,11,7,10,9,17,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,17,9,8,6,8,5,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,7,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,21,11,12,8,12,7,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,12,7,7,5,6,4,6,5,10,6,6,6,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,14,8,10,9,16,11,16,15,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,7,5,6,5,6,4,6,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,12,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,7,4,5,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,12,22,12,12,8,11,7,9,8,12,7,8,6,9,6,8,8,14,8,8,6,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,9,17,9,9,6,9,5,6,6,9,5,6,5,7,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,9,6,6,5,8,6,7,7,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,17,9,10,7,10,6,8,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,8,9,7,10,6,8,8,13,8,10,8,15,10,15,14,27,14,14,10,14,8,10,9,15,8,9,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18 +-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-2,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,6,6,5,3,3,3,4,3,4,3,5,3,4,4,6,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,15,15,28,15,15,10,14,8,10,8,13,7,8,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,10,8,14,10,15,15,23,12,12,9,13,8,10,9,15,9,10,8,14,9,13,13,24,13,14,10,16,10,14,13,23,13,16,14,25,17,26,26,54,28,28,20,30,17,20,17,31,17,18,14,22,14,19,17,32,17,17,12,18,11,14,13,24,13,15,12,19,12,17,16,29,15,15,10,14,8,9,8,14,8,9,7,12,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,16,11,15,15,21,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,10,18,10,11,9,16,10,14,14,26,14,14,9,13,8,9,8,13,7,8,6,10,7,10,10,18,10,10,8,13,9,12,12,22,13,15,12,20,14,20,20,38,19,19,13,19,11,13,11,20,11,12,9,14,9,12,12,23,12,13,10,15,9,11,10,17,10,11,9,14,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,9,6,9,9,16,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,34,17,17,12,17,10,12,10,16,9,10,8,12,8,11,10,19,10,11,8,13,8,10,10,18,10,12,10,18,12,17,17,30,16,16,12,18,11,13,11,19,11,12,10,16,11,15,15,29,16,17,13,20,12,16,15,28,16,19,15,26,18,26,27,51,26,26,18,27,15,17,14,25,13,14,11,18,11,15,14,26,14,14,10,14,8,10,9,17,10,11,9,15,10,14,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,9,16,9,9,7,11,7,8,7,12,7,8,7,11,8,11,11,24,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,12,6,6,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,12,8,12,7,9,9,16,9,10,8,13,9,13,12,23,12,12,9,14,9,12,11,21,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,22,12,13,9,14,9,12,11,21,11,11,8,13,8,10,8,14,8,10,8,13,9,12,12,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,9,17,9,9,7,11,7,9,9,17,9,10,8,14,10,14,14,24,12,12,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,20,11,11,8,13,8,10,9,15,8,9,7,11,7,10,10,19,11,12,9,14,9,11,10,18,11,13,11,19,13,20,20,38,20,20,14,20,12,15,13,23,12,13,10,17,11,14,13,24,13,13,9,13,8,9,8,13,7,8,7,12,8,11,11,22,12,12,8,11,7,9,8,13,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,17,11,15,15,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,8,7,12,7,8,6,9,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,7,10,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36 +-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,7,5,8,8,14,8,8,5,8,5,6,5,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,15,15,11,16,9,11,9,16,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,15,8,8,6,7,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,7,5,7,8,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,8,14,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,6,9,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18 +-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,14,14,28,15,15,11,16,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,16,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,5,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,6,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,6,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,21,11,10,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,7,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,6,6,5,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,4,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,6,9,5,6,6,10,7,9,8,16,8,8,5,8,5,6,5,9,5,5,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-9,-19 +0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,6,4,4,4,6,4,6,5,9,5,6,5,7,4,6,5,9,6,6,6,9,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,6,5,9,5,6,5,8,5,7,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,5,5,6,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,8,4,4,4,6,4,5,5,8,4,5,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,5,4,4,3,5,4,4,3,5,4,5,5,7,4,4,3,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,4,4,4,7,5,6,4,7,5,7,8,13,7,7,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,5,6,5,8,6,9,9,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,14,8,8,6,10,6,8,7,14,8,9,8,14,10,15,15,30,15,15,11,16,10,12,10,18,10,10,7,11,7,10,10,18,10,10,7,10,6,8,7,14,8,9,7,12,8,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,9,14,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,8,6,11,6,7,5,8,5,7,7,11,6,7,5,8,5,6,5,10,6,6,5,8,6,8,7,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,10,6,7,5,8,6,8,8,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,10,7,10,6,7,7,12,7,8,6,10,7,10,9,16,9,9,7,10,6,8,8,16,9,10,9,15,10,15,15,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,6,9,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,9,7,12,8,11,11,22,12,12,9,13,8,9,7,13,7,8,6,9,6,8,8,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,5,6,5,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,12,7,9,8,12,7,7,5,8,6,8,8,14,7,7,5,7,4,5,4,7,5,6,5,8,5,7,7,14,7,7,5,6,4,4,4,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,3,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,7,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,6,6,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,11,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,8,7,11,8,12,11,22,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,7,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,6,5,7,4,5,5,8,5,6,5,8,6,8,9,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,6,4,4,4,8,5,5,4,5,4,6,6,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,5,8,5,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,4,4,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,8,4,4,3,6,4,4,3,6,4,4,3,4,3,5,5,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,4,7,5,6,6,10,5,5,4,6,4,4,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,6,5,9,6,7,6,10,7,11,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,6,5,7,5,6,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,9,6,8,8,14,7,7,5,8,5,7,6,10,6,6,5,8,6,8,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,11,8,13,8,10,9,16,10,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,12,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,20,10,10,7,11,7,8,6,10,6,7,6,9,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,8,7,16,8,8,6,9,5,6,5,8,5,5,4,7,5,7,7,15,8,9,7,10,6,8,7,12,7,8,7,13,9,14,14,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,7,11,6,7,5,7,5,6,6,11,7,8,6,10,7,9,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,24,12,12,8,12,7,8,7,12,7,8,6,9,6,8,8,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,19,10,11,8,12,7,9,8,14,8,10,8,13,8,11,11,19,10,10,8,12,8,11,10,18,10,12,10,18,12,18,18,38,19,19,13,20,11,12,10,17,10,11,8,13,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,13,7,8,6,10,7,9,8,14,8,9,7,12,8,12,12,28,15,15,10,14,8,10,9,16,9,10,7,11,7,9,9,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,6,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,13,7,7,5,7,4,5,5,9,5,6,5,7,5,6,6,15,8,9,7,10,6,7,6,11,6,7,6,9,6,7,7,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,10,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,11,7,10,10,20,10,10,7,9,5,6,5,8,4,4,3,5,4,6,6,8,5,5,3,4,3,4,4,7,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-25 +-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,12,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,9,6,7,6,10,6,8,7,11,8,11,12,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,5,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,5,6,4,5,5,8,5,6,5,9,6,9,9,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,15,8,8,5,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,24,12,12,9,13,7,8,6,12,7,7,6,9,6,8,7,14,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,4,3,5,3,4,3,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,9,5,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,19,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,6,5,8,5,5,5,8,6,8,8,13,7,8,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,6,9,6,9,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,6,5,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,10,7,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,9,9,14,8,8,6,9,5,6,6,11,6,7,6,10,7,9,8,17,9,10,8,12,8,10,9,13,8,10,9,16,11,16,16,28,15,15,11,16,9,11,9,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,14,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,6,12,7,9,7,12,8,12,12,18,10,10,7,9,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,7,5,6,5,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,14,31,16,16,11,16,9,10,8,16,9,9,7,12,8,11,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,9,5,6,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,5,5,8,6,9,9,12,7,7,5,6,4,5,4,6,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,12,7,8,6,10,7,10,10,26,14,14,9,13,8,9,7,14,8,9,7,10,6,8,7,11,6,6,5,8,5,6,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,7,4,5,4,9,5,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,7,10,6,7,6,10,7,10,11,18,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,5,8,5,7,7,13,7,7,5,6,4,4,3,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,7,5,8,5,7,6,9,6,7,6,11,8,11,11,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,6,4,4,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,10,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,4,4,9,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,6,7,6,9,6,9,9,21,11,11,7,11,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,4,6,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,7,5,7,7,18,10,10,6,9,5,6,5,9,5,6,5,7,4,6,5,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,4,6,6,8,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,13,8,10,8,15,10,15,15,27,14,14,10,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,10,6,7,6,9,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,11,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,19,10,10,7,10,6,7,6,10,6,7,5,9,6,8,7,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,7,13,9,12,12,30,15,15,10,15,9,10,8,15,8,8,6,10,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,5,8,5,6,5,9,5,6,4,6,4,4,4,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,26,14,14,9,13,7,8,7,12,7,8,6,9,6,8,7,10,5,5,4,6,4,5,4,8,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,8,9,7,10,6,8,7,13,8,9,7,12,8,12,12,29,15,15,10,14,8,10,8,15,8,8,6,10,7,9,9,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,6,9,6,7,6,10,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,9,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,5,4,5,6,12,6,6,4,5,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,9,6,9,8,15,9,11,9,16,11,17,17,28,14,14,10,14,8,10,9,17,9,10,8,12,8,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,14,26,14,14,10,14,9,11,10,18,10,11,8,13,9,12,12,22,12,13,10,15,10,14,14,26,15,18,15,27,19,28,28,51,26,25,17,25,14,16,13,23,12,13,9,14,9,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,15,30,16,16,11,17,10,12,10,17,9,10,8,13,8,11,10,19,10,11,8,13,8,11,10,19,11,12,10,18,12,18,19,27,14,15,10,15,9,11,9,15,8,9,7,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,8,12,7,9,8,15,8,9,7,12,9,13,13,24,13,13,10,16,10,12,11,21,12,14,12,20,14,20,20,29,15,15,11,17,10,12,10,17,9,9,7,11,7,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,10,11,8,12,7,8,7,13,7,8,6,10,7,10,10,18,10,10,8,13,8,10,10,18,10,11,9,14,10,14,14,35,18,18,12,17,10,12,11,19,10,11,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,10,9,15,10,15,15,28,15,15,11,16,10,12,11,19,10,11,8,13,9,12,12,23,13,14,10,16,10,13,12,22,13,15,13,22,15,23,23,56,28,28,19,29,17,20,17,30,16,17,13,20,13,17,16,31,16,16,12,18,11,13,12,21,11,12,10,16,10,14,14,27,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,24,13,14,10,15,9,12,11,21,11,12,10,16,11,15,15,20,11,12,9,13,8,10,8,14,8,8,7,11,7,8,8,14,8,9,7,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,12,7,7,6,10,7,11,11,20,11,12,9,15,9,12,11,20,11,12,10,17,11,16,16,49,25,25,17,25,14,16,13,22,12,12,9,14,9,11,10,18,10,10,7,11,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,10,6,6,5,8,5,5,4,6,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,8,6,8,9,25,13,13,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,9,7,12,8,10,10,18,11,13,11,18,13,19,19,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,13,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,8,6,8,5,7,6,10,6,8,7,11,8,11,10,22,12,12,9,13,8,9,8,13,7,7,5,6,4,5,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,2,2,2,2,4,3,4,3,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-7,-12,-7,-11,-10,-21,-11,-13,-11,-21,-13,-20,-20,-42 +0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,14,8,10,8,14,10,15,15,26,14,13,9,13,8,9,7,12,7,7,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,7,4,4,4,5,4,6,5,10,6,6,4,7,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,7,6,12,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,11,6,7,6,8,6,8,8,11,6,6,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,6,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,17,9,10,7,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,9,6,8,8,14,8,10,8,15,10,15,15,26,14,14,9,14,8,9,8,12,7,8,6,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,8,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,7,7,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,10,5,5,4,7,5,6,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,5,4,6,5,10,6,6,4,6,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,6,8,5,6,6,12,7,8,7,11,8,12,12,29,15,15,10,16,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,12,7,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,10,6,7,6,8,6,8,8,11,6,6,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,24,12,12,9,13,7,8,7,12,7,7,5,8,5,7,6,10,6,6,5,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,5,4,6,4,6,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,3,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 +0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,6,9,5,5,4,7,5,7,7,12,7,7,5,6,4,5,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,12,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,15,9,11,9,16,11,16,15,26,14,14,10,14,8,10,8,13,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,7,6,8,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,7,7,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,6,10,6,7,5,8,5,5,5,9,5,6,4,6,4,5,4,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,6,8,7,18,9,9,6,9,5,6,5,10,6,6,4,6,4,6,5,10,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,12,12,28,15,15,11,16,10,12,10,15,8,8,6,10,7,9,9,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,5,6,6,8,5,6,5,7,5,6,6,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,12,12,8,12,7,9,8,13,7,8,6,9,5,6,6,11,6,7,5,7,5,6,5,8,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-11,-23 +0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,7,9,6,7,6,9,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,4,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12 +0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,3,2,3,2,3,2,3,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,6,4,5,5,7,5,6,5,7,5,7,7,17,9,9,6,9,5,6,5,9,5,6,5,7,4,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-7,-15 +-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,17,9,10,7,10,6,7,6,9,5,6,4,7,4,6,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-6,-13 +-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,8,5,7,6,11,7,8,6,10,7,11,11,18,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,9,8,14,8,8,7,11,7,9,9,17,10,11,8,13,8,11,10,17,10,12,10,16,11,15,15,28,15,15,10,15,9,11,9,16,9,9,6,9,6,7,7,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,10,7,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,11,19,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,3,3,3,4,3,4,4,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,8,11,11,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,12,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,7,5,8,6,8,7,11,6,7,5,7,4,5,5,9,5,6,5,9,6,7,7,15,8,9,6,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,10,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,26,14,14,10,15,9,10,9,15,8,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,7,10,10,16,9,9,7,10,6,8,7,11,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,9,5,6,5,8,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,1,1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,6,5,7,5,6,6,9,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,11,6,6,5,7,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,9,16,8,8,6,9,5,6,6,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,3,4,4,9,5,5,3,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,4,4,8,5,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,3,5,3,2,2,4,3,4,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,6,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,18,10,10,7,10,6,6,6,9,5,6,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,9,5,6,4,5,3,4,3,4,3,4,3,3,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,2,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,4,3,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,12,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,7,7,5,7,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,5,3,3,2,4,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,4,5,5,6,4,4,4,6,4,5,5,9,5,6,4,6,5,7,7,14,7,7,5,8,5,7,7,11,6,7,6,9,6,8,7,12,7,7,6,10,7,9,8,14,8,9,7,12,8,12,12,18,9,9,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,13,7,7,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,13,7,7,5,6,4,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,7,4,5,5,8,6,8,8,22,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,11,7,8,7,13,7,7,5,8,5,6,5,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,3,2,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,9,5,5,3,4,3,3,2,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,4,3,3,3,5,4,5,5,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-1,-1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,6,11,6,7,5,8,5,7,7,12,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,4,7,5,7,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,5,5,3,4,3,3,2,2,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,9,6,8,7,11,6,7,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-5,-2,-2,-1,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,6,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,27,14,14,10,16,9,11,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,11,20,11,13,11,19,13,20,20,28,14,14,9,13,8,9,7,12,7,8,6,9,6,8,7,12,7,7,6,9,6,7,7,12,7,8,6,10,7,10,9,13,7,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,10,7,11,11,24,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,6,5,9,6,9,9,17,9,10,8,12,7,9,8,14,8,10,8,13,9,13,13,23,12,12,8,11,7,8,6,10,6,7,5,8,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,16,8,8,5,7,4,5,5,8,5,5,4,7,4,5,5,8,5,5,4,7,5,7,7,12,7,8,7,11,7,10,10,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,11,6,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,9,7,12,8,10,9,17,10,11,9,15,10,15,15,32,17,17,11,16,10,12,10,17,9,10,8,12,8,10,9,16,8,8,6,8,5,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,13,7,7,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,3,4,3,3,3,4,3,3,3,5,3,4,4,17,9,9,6,8,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,4,6,6,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,5,3,3,2,3,2,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-13,-27 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,20,10,10,7,10,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 +-3,-1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,6,12,7,8,7,11,8,12,12,15,8,8,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,5,7,7,13,7,8,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,5,3,4,4,6,3,3,2,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,21,11,10,7,11,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,6,4,5,5,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,5,6,11,6,5,4,5,3,4,4,6,4,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,10,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,4,5,5,9,5,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,15,8,7,5,8,5,6,5,9,5,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,5,6,4,4,3,5,4,5,5,9,5,6,5,8,6,8,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,14,8,8,6,10,6,7,5,8,5,5,4,6,4,5,5,11,6,5,4,5,4,5,4,7,4,4,3,4,3,5,5,10,5,5,3,4,3,4,3,6,4,5,4,6,4,6,6,10,6,7,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,3,8,5,5,4,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,4,3,4,3,4,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,8,5,6,5,7,5,6,6,22,12,12,8,12,7,9,8,13,7,8,6,8,5,7,6,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,12,7,7,5,6,4,5,5,9,5,5,4,5,4,5,5,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,14,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14 +-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,4,4,5,3,4,3,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,4,14,8,8,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,6,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8 +-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,7,5,8,8,15,8,7,5,7,5,6,5,8,5,6,5,7,5,6,5,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,12,8,11,11,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,7,5,6,5,8,5,5,5,8,6,9,9,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,3,4,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,6,10,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,17,9,9,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,11,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,9,5,5,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,5,4,6,5,7,7,12,7,9,8,14,10,14,13,25,13,13,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,7,12,7,7,6,10,7,10,10,24,13,13,9,12,7,9,8,14,8,9,7,12,8,12,12,24,13,13,10,15,9,11,10,19,11,13,11,19,13,20,20,19,10,10,7,11,6,7,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,9,5,6,6,10,6,7,6,9,6,8,8,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,15,10,15,15,15,8,8,6,9,5,5,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,5,8,6,8,8,31,16,16,11,17,10,11,9,16,9,10,7,11,7,9,9,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,7,5,6,6,10,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,9,8,14,8,8,6,9,6,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,8,5,5,4,5,4,5,5,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,10,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,11,6,6,4,7,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,18,10,10,7,10,6,7,6,9,5,6,4,7,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,8,5,5,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,9,6,9,9,17,9,9,6,8,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,16,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,7,13,8,10,8,13,9,14,14,12,7,7,5,8,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,4,2,2,2,3,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,21,11,12,8,12,7,8,6,10,6,6,5,8,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,12,12,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,18,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +-2,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,8,7,12,8,12,12,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,12,11,23,12,13,10,15,9,12,11,20,11,13,11,20,13,19,19,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,4,3,6,4,4,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,6,8,8,16,9,9,6,8,5,5,5,8,5,6,5,8,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,8,13,8,10,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,7,5,7,7,13,7,7,5,8,5,5,4,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,6,4,4,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,32,16,16,11,16,9,10,8,15,8,8,6,10,6,8,7,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,21,11,11,8,12,7,9,8,11,6,6,5,8,5,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,4,4,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,8,8,14,8,9,8,14,9,13,13,11,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,5,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,4,3,4,4,21,11,11,8,11,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,15,8,8,6,8,5,6,5,8,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-10 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,14,9,12,11,21,12,14,11,20,14,20,19,16,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,13,8,10,9,14,10,14,14,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,8,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,13,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,7,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,6,4,4,4,8,5,5,3,5,3,4,3,4,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,1,0,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,21,12,12,9,14,9,12,11,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,14,8,10,9,14,10,14,14,14,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,13,9,12,13,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,4,4,3,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,5,4,7,5,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,4,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,20,11,11,7,10,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,7,6,10,7,10,9,17,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,20,11,11,8,13,9,12,11,21,12,15,12,21,15,22,22,42,21,21,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,21,21,40,21,22,15,23,14,18,16,28,15,17,13,22,14,20,19,37,20,21,16,25,16,22,21,39,22,27,22,39,26,38,37,28,14,14,10,15,9,10,8,14,8,8,6,10,6,7,6,11,6,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,5,4,7,5,8,8,14,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,28,15,15,10,14,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,8,7,11,8,12,12,22,12,13,10,17,11,14,14,26,15,18,15,27,18,27,27,27,14,14,10,15,9,11,9,15,8,8,6,10,7,9,9,16,9,9,6,8,5,7,6,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,6,5,9,5,5,4,7,4,5,5,8,5,6,5,9,7,10,10,20,11,11,8,12,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,7,6,10,7,11,11,21,11,11,8,11,7,8,6,10,6,7,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,60,30,30,21,31,17,20,17,29,16,17,13,22,14,18,17,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,21,11,11,8,13,8,9,8,13,7,7,5,8,5,7,7,12,7,8,6,10,6,8,8,15,8,9,7,12,8,12,12,24,13,14,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,13,9,14,9,12,11,21,12,14,11,19,12,17,17,33,17,17,12,17,10,11,10,17,9,10,8,13,9,13,12,23,12,13,10,16,10,13,12,22,13,15,13,24,16,24,24,42,21,21,14,21,12,14,11,18,10,10,7,11,7,10,10,18,10,10,7,10,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,9,6,7,6,9,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,11,11,42,22,22,15,22,13,15,13,24,13,14,10,16,10,13,12,21,11,12,9,14,9,11,10,18,10,11,9,16,11,15,15,30,15,15,11,16,10,12,11,19,10,11,8,13,8,11,10,19,10,11,8,11,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,3,3,4,3,3,3,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-16,-33 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,4,4,5,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,12,14,12,20,14,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,6,9,6,8,7,14,8,10,8,14,10,14,14,14,8,8,6,8,5,6,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,13,9,12,13,22,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-16 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,5,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,10,6,6,5,6,4,6,6,11,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,12,8,10,10,20,12,14,11,19,13,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,10,6,6,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,5,9,6,8,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,17,9,9,6,9,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,13,22,12,12,8,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 +0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,6,7,7,14,8,10,8,13,9,13,13,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,10,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,20,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11 +0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,3,2,2,1,0,0,0,-1,12,6,6,5,7,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,3,3,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,5,8,5,7,7,10,6,6,4,6,4,6,6,12,7,9,7,12,8,12,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,12,12,8,12,7,9,8,15,9,10,8,12,8,11,11,20,11,11,8,12,8,11,10,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,14,7,7,5,6,4,4,3,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,13,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,4,6,6,30,16,16,11,16,9,11,9,14,8,8,6,10,7,9,9,18,9,9,6,9,5,6,5,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,5,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,9,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,6,12,7,8,7,13,9,13,13,21,11,10,7,10,6,7,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,5,7,7,21,11,12,8,12,7,8,7,11,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-8,-17 +0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,9,5,6,5,7,5,7,6,11,6,7,5,7,5,7,6,12,7,8,6,11,8,11,11,9,5,5,4,5,3,4,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,4,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,11,6,5,4,6,4,4,3,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9 +0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,8,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,5,9,6,7,6,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,9,13,13,11,6,6,4,6,4,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,9,9,10,6,6,4,6,4,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,6,4,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,4,4,5,4,6,6,10,6,6,5,6,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,14,7,7,5,7,4,5,5,7,4,4,3,6,4,6,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,6,5,11,6,7,5,6,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,2,1,0,1,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-3,-5,-5,-10 +1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,7,4,5,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,11,6,7,5,7,5,7,6,11,7,8,6,10,7,11,11,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,5,8,6,7,7,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,1,1,1,0,1,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,1,0,0,0,0,13,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,7,4,3,2,3,2,3,3,4,3,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,8,6,8,8,14,8,9,7,12,9,13,13,24,12,12,8,11,7,8,7,12,6,6,5,7,5,7,7,12,7,7,6,9,6,7,6,10,6,6,5,9,7,10,10,22,12,12,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,10,17,12,17,18,16,8,8,6,9,5,6,5,7,4,4,3,3,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,12,14,8,8,6,9,5,6,5,9,5,6,5,7,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,31,16,16,11,17,10,12,10,16,9,9,7,10,7,9,9,19,10,11,8,11,6,7,6,10,6,6,5,8,5,6,6,9,5,4,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,9,5,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,6,10,6,8,7,11,7,10,10,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,14,10,14,14,18,9,9,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,6,5,7,4,5,5,13,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,4,5,5,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,7,16,9,9,6,9,5,6,6,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,10,6,6,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,9,10,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,0,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,8,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,5,5,9,5,5,4,7,5,8,8,14,7,7,5,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,7,5,6,6,12,7,8,6,9,5,6,6,12,7,8,6,11,7,10,10,9,5,6,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,7,4,4,4,6,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8 +1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,0,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,10,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,4,3,7,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,7,6,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,6,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,4,2,2,2,1,1,2,2,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,5,7,4,5,4,7,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,11,8,11,11,9,5,6,4,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,6,4,4,3,5,3,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,8,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,2,2,1,1,2,2,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,3,3,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,4,4,4,7,5,6,6,5,3,4,3,4,3,3,3,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,7,4,4,3,5,3,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,14,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,7,8,5,5,4,6,4,6,6,11,6,7,6,10,7,9,9,16,9,10,7,11,7,10,10,18,10,11,9,16,11,16,16,27,14,14,10,14,8,8,7,11,6,6,5,8,5,7,7,12,7,7,5,8,5,5,5,8,5,6,5,9,6,9,9,20,11,11,8,12,8,10,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,10,18,10,12,11,19,13,19,19,16,9,9,6,8,5,5,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,6,4,6,6,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,3,2,3,2,3,3,10,6,6,4,5,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,5,9,6,7,6,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,5,5,15,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,8,8,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,38,20,20,14,20,12,14,12,20,11,12,9,14,9,11,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,4,7,7,9,5,6,4,6,4,5,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,7,10,10,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,7,11,7,8,8,14,8,10,8,14,10,14,14,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,14,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,14,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,20,10,10,7,10,6,8,7,13,7,8,6,10,6,8,8,14,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,4,5,3,3,3,4,3,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-6,-9,-9,-19 +0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,3,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,11,6,6,5,6,4,5,5,8,4,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,3,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,6,4,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,6,3,3,3,4,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,6,6,5,3,3,2,4,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,2,1,1,1,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,10,6,6,5,7,5,7,6,11,7,8,6,10,7,10,10,15,8,8,6,8,5,5,4,8,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,11,7,8,6,10,7,11,11,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,3,7,4,4,4,6,4,5,4,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,5,3,3,3,4,3,3,3,3,2,3,3,4,3,5,5,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-11 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,13,7,8,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,3,3,3,4,3,6,4,4,4,6,4,6,6,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,3,3,2,3,2,3,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,5,3,3,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,15,8,9,6,9,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,3,4,3,5,4,5,4,2,2,2,1,1,1,2,2,2,2,2,2,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,9,8,13,9,13,12,18,10,10,7,9,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,6,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,13,8,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,5,3,2,2,2,2,2,2,4,3,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,3,2,3,3,4,4,7,4,5,4,5,4,6,6,7,4,4,3,3,2,3,2,3,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,28,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,13,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,4,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,9,9,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,5,4,6,5,7,7,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,4,4,7,5,6,6,14,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,4,3,5,5,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,8,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,8,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,2,1,1,1,1,1,1,1,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,4,3,4,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,8,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,-3,-1,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,12,7,9,7,12,8,12,12,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,3,5,3,2,2,2,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,11,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,5,3,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,5,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,12,7,7,5,8,5,6,5,10,6,6,4,7,5,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,8,5,7,7,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,5,4,6,5,5,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,4,2,2,2,2,2,2,2,5,3,4,3,5,4,6,6,5,3,4,3,3,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15 +3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,5,3,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,4,3,3,2,2,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,9,9,19,10,11,8,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,18,10,11,8,12,8,11,11,20,12,14,12,21,15,22,22,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,9,10,9,15,10,13,13,25,13,14,10,16,10,13,13,24,14,16,13,23,15,21,21,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,4,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,11,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,5,5,8,6,9,9,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,47,24,23,15,22,13,15,12,21,12,13,10,15,10,13,12,21,11,11,8,11,6,7,6,11,6,7,6,11,8,11,10,19,10,10,8,12,7,9,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,7,10,10,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,16,8,8,6,8,5,6,5,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,4,19,10,11,8,11,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,14,9,12,12,23,12,13,9,13,8,9,8,14,8,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-9,-8,-15,-10,-16,-16,-33 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,6,8,6,7,7,12,7,8,7,12,8,11,11,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,1,1,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,5,5,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,7,6,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,8,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,6,8,7,12,7,8,7,12,8,11,11,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,1,1,2,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,5,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,7,8,6,8,5,6,6,11,6,6,4,7,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,5,5,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,4,6,6,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,17,9,9,6,9,5,6,5,8,5,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,2,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,4,3,3,2,2,2,2,1,1,1,1,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,11,8,12,12,13,7,7,5,8,5,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,7,12,8,11,11,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,5,7,7,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,25,13,13,9,13,8,9,7,12,7,8,6,9,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,4,3,3,2,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,3,3,7,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,1,1,1,2,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16 +2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,4,5,4,5,4,7,4,5,4,7,5,7,7,1,1,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,4,3,3,2,2,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,4,6,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,3,4,3,5,3,4,3,4,3,4,5,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,18,10,10,7,9,6,7,6,9,5,6,5,7,4,5,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,3,2,2,2,3,3,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,3,6,4,6,5,8,4,4,3,5,3,4,3,4,3,3,2,3,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11 +2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,2,2,2,1,1,1,2,2,3,2,2,2,2,2,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10 +2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,8,6,10,6,8,8,14,8,9,8,13,9,14,14,18,9,9,6,9,5,6,6,10,6,6,5,7,5,6,5,7,4,4,3,5,4,6,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,12,7,8,6,9,6,8,8,14,8,9,8,13,9,12,12,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,7,5,3,4,3,4,3,3,2,2,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,6,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,5,3,3,2,3,2,2,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,29,15,14,10,14,8,10,8,14,8,8,6,9,6,8,7,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,1,1,0,0,0,0,0,0,0,1,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,5,3,4,3,4,3,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19 +2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3,5,3,4,3,5,4,5,5,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +3,2,2,1,0,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,7,5,6,5,8,5,7,7,10,5,5,4,6,4,4,4,9,5,5,4,6,4,6,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,9,7,10,10,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,19,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,4,4,12,7,7,5,8,5,5,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,3,3,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,6,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,8,5,5,4,6,4,5,4,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,7,4,4,4,6,4,5,5,9,5,6,4,6,4,5,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-4,-2,-4,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,4,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,4,2,3,3,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,6,4,4,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,17,9,9,7,10,6,7,6,9,5,6,5,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,10,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,5,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,4,3,4,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,6,6,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,16,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14 +4,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,3,5,3,3,3,5,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,11,8,12,13,18,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,18,10,11,8,12,8,10,9,16,9,11,9,16,11,16,17,25,13,14,10,14,8,10,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,9,22,11,11,8,11,7,8,6,10,6,6,5,7,5,7,7,14,8,8,7,11,7,10,9,17,10,12,10,16,11,16,16,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,5,8,6,8,7,3,2,2,2,2,2,2,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,8,4,4,3,3,2,2,2,3,2,3,3,5,4,5,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,31,16,17,12,17,10,13,11,20,11,11,9,14,9,11,11,20,11,11,8,11,6,7,6,10,6,7,5,8,6,8,7,17,9,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,9,8,18,9,9,7,10,6,7,6,11,6,6,4,5,3,4,4,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,6,4,6,6,14,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,5,8,6,8,8,13,7,7,5,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,11,7,9,8,13,7,7,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,4,7,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,8,19,10,10,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,10,6,6,4,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-13,-14,-29 +2,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,5,9,5,6,5,9,6,9,9,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +2,1,1,1,2,2,2,1,0,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,5,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,5,11,6,7,5,7,5,6,6,10,6,6,5,9,7,10,10,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,9,5,6,4,6,4,5,4,8,5,6,5,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,6,9,5,6,5,9,7,10,10,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,17,9,10,7,10,6,8,7,12,6,6,5,8,5,7,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-7,-4,-7,-7,-15 +2,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,5,4,5,4,6,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,5,4,5,5,7,4,5,4,7,5,7,7,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7,4,4,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-3,-5,-3,-5,-5,-11 +2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,4,8,5,5,4,6,4,4,4,7,4,5,5,8,6,9,9,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,8,5,7,6,11,6,7,6,10,7,11,11,17,9,8,6,8,5,6,6,10,6,6,5,7,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,10,7,11,11,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,3,4,4,6,4,4,4,4,3,3,2,2,2,3,3,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-2,-4,-4,19,10,10,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,3,3,3,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,4,3,7,4,4,4,6,4,6,6,10,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-9,-9,-19 +2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,4,3,3,3,3,3,4,3,8,4,4,3,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,5,6,4,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,7,5,6,6,9,5,6,5,8,6,9,9,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,6,4,6,4,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,4,3,5,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15 +3,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,13,7,8,6,8,5,6,6,10,6,7,6,10,7,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,24,12,12,8,12,7,8,7,13,7,7,6,9,6,8,8,15,8,9,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,7,8,6,9,6,7,7,13,7,8,6,10,7,9,9,16,9,11,9,15,10,15,15,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,1,0,0,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,28,15,15,11,16,10,12,10,17,9,9,7,11,7,9,8,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,5,8,5,5,4,6,4,5,4,7,4,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,4,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,5,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,9,5,5,4,7,5,7,7,9,5,5,4,6,3,3,3,4,2,2,2,3,2,3,4,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-13,-6,-7,-5,-10,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,4,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,6,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,8,6,10,7,10,10,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,7,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,3,2,2,2,3,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,5,3,4,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,-1,0,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,14,8,7,5,7,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,6,9,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,3,2,3,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,5,6,5,10,6,6,5,8,5,7,7,14,8,8,7,11,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,8,6,10,7,10,9,16,9,9,7,10,6,7,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,8,7,9,5,6,5,8,6,8,7,13,7,7,6,9,6,9,8,15,9,10,8,14,9,13,13,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,3,2,3,2,3,2,3,2,2,1,1,1,2,1,1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,26,13,13,9,14,8,10,9,15,8,8,6,9,6,7,7,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,8,5,6,5,8,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,6,7,11,6,7,5,7,4,5,4,6,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-30 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-4,-5,-4,-9,-4,-6,-4,-9,-6,-9,-9,-19 +1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,11,7,10,9,16,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,8,6,8,6,8,8,13,8,9,8,14,10,14,13,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,14,9,14,8,10,9,14,8,8,6,9,6,8,8,14,8,8,6,7,5,6,6,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,8,6,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,1,1,1,2,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,25,13,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,7,5,6,6,9,5,5,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,6,7,5,7,5,6,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,10,6,7,7,12,8,12,11,21,11,12,9,14,9,11,10,18,10,11,9,14,10,14,14,27,14,14,10,16,10,14,13,24,14,16,13,23,16,23,23,44,23,23,16,24,14,17,14,24,13,14,10,16,10,14,13,25,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,26,14,14,10,15,9,11,9,16,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,23,13,15,13,23,16,23,23,45,23,23,16,23,13,15,12,21,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,20,12,14,12,20,13,19,19,37,19,19,14,21,12,15,14,25,14,15,12,19,13,18,17,33,17,18,14,22,13,17,16,29,16,19,15,26,17,25,25,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,9,5,4,3,4,2,2,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-8,50,25,25,17,25,14,16,13,22,12,13,10,16,10,12,11,21,11,11,8,11,7,8,7,13,8,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,7,5,8,5,7,7,13,8,9,7,11,8,12,12,22,11,11,8,12,7,8,7,12,7,7,5,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,8,15,8,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,7,5,7,7,13,7,7,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,4,7,5,7,7,12,7,7,5,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-9,-12,-11,-22,-11,-13,-10,-19,-11,-16,-16,-32,-16,-17,-12,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-28,-28,-58 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,11,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,22,11,11,8,12,7,8,6,11,6,7,5,8,5,7,6,13,7,8,6,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,12,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,8,8,15,9,10,8,14,9,13,13,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,6,5,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,4,7,4,5,4,6,4,5,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,13,7,7,6,8,5,6,5,9,5,6,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,10,6,9,9,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,3,2,3,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,6,5,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,7,6,9,6,8,7,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,7,7,12,7,9,7,12,8,12,12,22,12,12,8,11,6,7,6,10,6,6,5,8,5,7,6,14,7,7,5,8,5,7,7,10,6,7,6,10,7,10,10,19,10,11,8,12,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,6,8,8,16,9,11,9,14,9,13,13,0,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,3,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,13,9,13,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,6,4,5,5,9,5,6,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,8,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-8,-6,-12,-8,-12,-13,-27 +2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-7,-15 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,5,3,3,2,4,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,7,5,7,7,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,3,2,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14 +3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,3,3,6,4,5,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,9,6,7,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,13,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,8,8,7,11,7,8,8,14,8,9,7,11,8,11,11,22,12,12,8,12,7,8,6,10,6,6,4,6,4,6,6,14,8,8,6,9,6,8,7,12,7,7,6,9,6,9,9,17,9,9,6,8,5,6,6,10,6,7,6,9,6,8,8,13,7,8,6,10,6,8,8,14,8,10,8,13,9,12,11,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,1,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,26,13,13,9,13,7,8,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,3,2,3,2,3,2,3,3,4,3,4,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,7,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,5,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-13,-13,-26 +2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,3,3,3,3,3,4,4,7,4,4,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,5,6,4,4,3,4,3,3,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,13,7,8,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,4,6,4,6,6,13,7,8,5,8,5,5,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,15,8,8,6,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,5,8,5,5,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,11,6,6,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,4,6,4,4,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,5,4,6,6,6,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,9,5,6,5,8,5,6,6,8,5,5,5,8,6,8,7,17,9,9,6,9,5,5,4,8,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,5,5,6,4,4,3,5,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,5,7,7,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,16,8,8,6,8,5,5,4,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,2,2,2,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,5,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,1,1,0,0,0,0,0,1,1,1,0,0,0,0,4,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,3,2,3,2,5,3,3,2,3,3,4,4,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16 +4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,4,3,3,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,7,4,5,5,7,5,8,8,16,9,9,6,9,5,6,6,9,5,6,4,6,4,4,5,8,4,4,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,3,4,4,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,2,3,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,2,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,9,5,6,4,6,4,4,4,8,4,4,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,0,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-12 +11,6,6,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,3,5,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,2,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,6,5,7,7,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,7,7,13,8,9,8,13,9,13,13,29,15,15,10,15,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,6,5,7,5,8,8,19,10,10,7,10,6,8,8,14,8,8,6,10,6,8,8,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,25,13,12,8,12,7,8,6,10,5,5,4,6,4,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,11,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,6,7,6,11,8,11,11,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,25,13,12,8,12,7,9,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,3,4,5,16,9,9,6,8,5,5,4,7,4,5,4,6,4,4,4,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,10,5,5,4,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,3,2,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,4,3,5,5,6,4,4,3,4,3,4,3,5,3,3,2,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,13,7,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,9,5,5,4,5,3,3,3,4,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,3,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,5,6,5,8,6,8,7,16,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,6,4,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +8,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,2,2,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,7,4,5,4,6,4,5,4,7,4,5,4,5,4,5,5,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,3,6,4,5,4,6,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,6,6,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,9,5,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7 +6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +11,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,0,0,0,1,1,1,2,2,4,2,2,2,3,2,3,3,7,4,5,4,5,3,3,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,8,5,6,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,8,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,7,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,13,7,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,3,2,1,1,1,1,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,1,1,1,1,1,2,7,4,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,2,6,4,4,3,3,3,4,4,6,4,5,4,7,5,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,5,5,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12 +6,4,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,4,5,3,4,4,11,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,5,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,7,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,7,4,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7 +6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +11,6,5,4,5,3,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,2,1,1,1,1,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,5,3,4,4,6,4,6,6,17,9,8,6,8,5,6,6,10,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,13,7,8,6,9,5,6,5,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,5,10,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,9,5,5,4,5,3,4,3,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,7,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,3,2,3,3,4,3,4,4,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,5,3,3,2,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-2,-2,-6 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,5,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,7,4,4,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,8,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,7,2,2,2,1,2,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,5,5,4,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,2,2,2,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,7,4,4,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,7,4,5,4,7,5,7,7,2,2,2,1,2,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +17,9,9,6,7,4,4,4,6,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,1,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,5,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,8,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,6,8,8,14,8,10,8,14,10,14,13,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,14,7,7,5,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,14,7,7,5,7,4,5,5,8,5,5,4,5,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,5,9,5,4,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,11,6,6,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,6,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,3,3,6,5,7,7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,5,3,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 +9,5,5,3,4,3,3,3,4,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,3,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,7,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +10,5,5,3,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,8,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,0,0,0,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +10,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,0,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,5,5,9,5,5,4,6,4,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,9,5,4,3,4,3,3,2,4,3,3,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,5,3,3,2,3,2,2,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,6,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,5,3,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,4,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,0,0,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,4,3,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,5,10,6,6,5,7,5,6,6,10,6,7,6,11,7,10,10,6,3,2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,9,5,5,4,6,4,4,3,4,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,6,4,6,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 +7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,5,3,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,5,3,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,2,2,2,4,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,2,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +10,5,5,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,12,7,7,5,6,4,4,4,7,4,4,4,6,4,6,5,7,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,5,4,5,5,9,5,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,5,7,7,6,3,3,2,3,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,5,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,2,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,2,3,3,4,3,4,4,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,2,1,1,1,1,1,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,16,8,8,6,9,6,8,7,12,7,8,6,10,6,8,7,13,7,7,5,8,5,7,7,12,7,7,6,10,7,11,11,7,4,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,1,1,1,1,1,0,0,-1,0,-1,0,4,3,3,2,3,2,2,2,2,1,1,1,0,0,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-3,-3,-12,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,1,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,3,4,4,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,3,2,1,1,1,1,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 +8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8 +8,4,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,13,7,7,5,7,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,-7,-3,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9 +6,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +8,5,5,3,4,3,4,3,3,2,2,2,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,4,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,9,5,6,4,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,4,3,3,3,14,8,8,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,4,3,4,3,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,9,5,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,-1,-1,0,0,0,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,1,1,1,1,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-11 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,12,6,6,5,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-3,-3,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-8 +12,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,21,11,10,7,10,6,7,7,12,7,7,5,8,5,6,6,11,6,7,5,7,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,5,3,3,3,4,3,5,5,8,5,6,5,9,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,9,5,3,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,9,5,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-7,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-12,-12,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,5,5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-4,-4,-9 +9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,14,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,5,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,5,3,2,2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-6,-4,-8,-5,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-3,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,7,7,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8 +14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,5,3,4,3,4,3,4,3,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,7,5,7,7,11,6,6,5,7,5,6,5,6,4,5,4,6,4,6,6,11,6,6,4,6,4,6,6,10,6,6,5,9,6,8,8,4,3,3,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,6,3,3,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-3,-1,0,0,0,1,1,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,4,3,5,5,8,4,4,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10 +14,8,8,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,4,3,4,3,4,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3,3,4,3,4,3,5,3,4,4,5,4,6,6,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,6,4,4,3,5,3,4,4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +14,8,8,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,19,10,10,7,9,6,7,6,10,6,6,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +26,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,36,19,19,13,20,12,14,12,20,11,12,9,14,9,12,11,19,10,11,8,11,7,8,8,14,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,3,4,4,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,5,6,11,6,7,5,8,5,7,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,9,16,9,10,9,15,10,15,15,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,9,5,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-6,-12,-8,-12,-12,-24,-12,-12,-7,-11,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-22,-22,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,0,1,1,1,0,1,1,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,8,8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-8,-9,-7,-13,-8,-13,-14,-29 +14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-4,-3,-6,-4,-6,-6,-14 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,6,4,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,6,5,8,5,6,5,7,5,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-7,-4,-6,-6,-14 +10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9 +15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,5,5,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,6,5,7,4,5,4,7,5,8,8,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-9,-4,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,3,4,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13 +9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7 +12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,14,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,-1,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9 +11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8 +20,10,10,7,9,6,7,6,9,5,5,4,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,11,6,7,5,7,4,5,4,5,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,21,11,11,8,11,6,7,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,7,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,1,1,1,1,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-2,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-7,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-14,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15 +11,6,6,4,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,3,3,3,3,4,4,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7 +13,7,7,4,5,3,4,4,5,3,3,3,3,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,13,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,3,2,3,3,3,3,4,4,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-4,-4,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6 +16,8,8,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,3,3,3,4,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,3,2,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,0,1,1,1,2,2,2,1,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,5,3,3,3,4,3,5,5,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11 +10,6,6,4,5,3,4,3,5,3,3,3,4,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7 +14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,1,1,2,2,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-5,-5,-11 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,5,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +27,14,14,10,14,8,9,8,13,7,7,5,8,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,6,5,9,5,6,6,10,7,9,9,18,9,9,6,8,5,5,5,8,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,5,5,12,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,4,5,5,8,6,8,8,28,14,14,9,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,6,9,6,7,6,9,5,6,5,9,6,8,7,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,5,3,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-16,-11,-17,-17,-17,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,7,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,5,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-2,2,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-21 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,15,8,8,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,15,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,0,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,0,0,0,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,5,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +19,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,6,4,5,4,6,5,7,7,14,7,7,5,6,4,4,3,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,5,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12 +12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,13,7,6,4,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +25,13,13,9,12,7,9,8,14,8,8,6,9,6,7,7,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,3,7,4,4,3,4,3,3,3,6,4,5,5,8,5,7,7,22,11,11,8,11,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,1,1,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,2,2,2,1,1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-7,-14,-9,-13,-13,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,-2,-2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +14,8,7,5,7,4,5,5,8,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,13,7,7,5,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,4,3,3,2,5,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10 +14,8,7,5,8,5,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,3,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +24,13,13,9,13,8,9,8,11,6,6,5,8,5,7,7,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,5,3,4,4,8,5,7,7,20,10,10,7,10,6,7,6,8,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-10,-5,-7,-6,-12,-7,-11,-11,-11,-5,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-2,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16 +16,9,9,6,9,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +23,12,12,8,13,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,19,10,10,7,10,6,6,5,9,5,6,4,5,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-6,-6,-10,-5,-6,-5,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +23,12,12,8,12,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +44,22,22,15,21,12,13,11,18,10,10,7,11,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,9,6,7,6,11,6,7,6,10,6,8,8,14,8,8,7,11,7,9,8,15,9,11,10,17,12,17,17,32,17,17,12,18,10,12,11,19,11,12,9,15,9,12,11,21,11,11,8,13,8,9,8,13,7,8,6,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,35,18,19,13,19,11,12,10,17,9,10,7,10,6,8,7,12,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,4,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,2,2,3,3,4,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,3,3,3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-6,-11,-7,-12,-12,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-11,-12,-9,-15,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-23,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,1,1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-15,-15,-30 +23,12,12,8,11,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,7,9,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +23,12,12,8,12,7,8,6,10,6,6,5,7,5,6,5,9,5,6,5,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,17,9,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,12,6,7,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +26,13,13,9,14,8,8,7,11,6,6,5,7,4,5,5,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,9,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,5,8,5,7,7,18,10,10,7,11,6,7,6,10,5,5,4,6,4,4,4,7,4,3,2,3,2,3,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,3,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,3,2,3,2,3,4,4,3,3,3,4,2,2,2,4,2,2,2,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15 +16,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,11,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +20,10,10,7,10,6,6,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,7,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 +18,9,9,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +32,16,16,11,15,9,10,8,14,8,8,6,9,6,7,6,13,7,7,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,11,6,7,5,7,4,5,5,9,6,7,6,11,7,10,10,22,12,12,8,12,7,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,1,0,0,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-14,-9,-15,-15,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,1,1,1,1,2,2,2,1,1,1,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18 +18,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-7,-4,-7,-8,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +20,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,7,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,11,6,6,5,6,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-6,-5,-9,-5,-8,-9,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 +16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +27,14,14,9,13,8,9,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,6,10,7,10,10,19,10,9,6,9,5,6,5,8,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,0,0,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +24,12,12,8,12,7,8,7,10,6,6,5,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,4,4,10,6,6,4,5,3,4,3,5,3,4,4,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,6,4,7,5,6,6,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-11,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 +23,12,12,8,12,7,8,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,4,4,10,5,5,4,5,3,4,3,5,3,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +44,22,22,15,22,13,16,13,23,12,13,9,13,8,10,9,17,9,10,7,11,7,8,7,11,6,7,6,9,6,9,8,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,10,18,10,11,8,12,7,9,8,13,8,9,7,11,7,10,9,20,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,7,6,10,6,8,7,11,7,10,10,25,13,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-9,-19,-10,-13,-11,-20,-13,-21,-21,-26,-12,-12,-8,-13,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,6,3,3,3,4,3,3,3,4,2,2,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,3,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-12,-25 +23,12,12,8,12,7,9,8,12,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-12 +24,12,12,9,12,7,9,8,13,7,8,5,8,5,6,5,10,6,6,5,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +27,14,14,10,14,8,10,9,15,8,9,6,9,6,7,6,13,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,6,6,5,7,5,7,6,13,7,7,5,8,5,5,5,10,6,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,16,9,9,6,9,6,7,6,8,5,5,4,6,4,6,5,8,5,5,3,4,2,2,2,4,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-17,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,4,3,3,3,4,3,3,2,2,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +22,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,11,6,6,5,7,4,4,4,7,4,4,4,7,5,6,5,11,6,6,5,6,4,4,4,8,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-6,-4,-6,-5,-11,-5,-6,-5,-11,-7,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,6,4,5,4,7,4,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +40,21,21,14,20,12,14,12,22,12,12,9,13,8,11,10,19,10,10,7,11,7,9,8,15,8,9,8,13,8,11,10,20,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,12,10,16,11,17,17,28,15,15,11,16,9,11,10,17,9,10,7,11,7,8,8,17,9,10,7,10,6,8,7,12,7,8,6,10,7,9,9,20,11,11,7,10,6,8,7,13,7,8,6,9,6,9,8,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,25,13,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,1,1,1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-7,-10,-10,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 +23,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,12,6,6,5,7,4,5,5,9,5,5,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,12,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,4,6,4,6,6,14,8,7,5,8,5,5,5,8,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,7,7,11,6,7,6,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-16 +23,12,12,8,12,7,9,8,13,7,7,5,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,6,11,6,6,4,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,6,6,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,7,14,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-13 +40,21,21,15,22,13,15,13,22,12,12,9,15,10,13,12,23,12,12,8,12,7,8,7,15,8,9,7,11,7,10,10,20,10,10,7,11,7,9,8,13,8,9,7,11,7,10,10,17,9,9,7,10,7,10,9,15,9,10,9,15,10,15,15,28,15,15,11,16,9,11,9,17,9,9,7,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,5,7,7,11,6,7,6,11,8,12,12,24,12,12,8,12,7,9,8,13,7,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,8,4,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-12,-7,-11,-11,-24 +27,14,14,10,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,11,8,11,6,7,6,12,6,7,5,7,5,6,6,11,6,6,5,7,4,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-12,-12,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +39,20,20,14,22,13,15,13,22,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,12,7,8,7,13,7,8,6,10,7,9,9,17,9,10,7,10,6,8,8,15,9,10,9,14,10,14,15,28,15,16,11,16,9,10,9,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-11,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +39,20,20,14,21,12,15,13,22,12,13,10,16,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,15,9,10,9,14,10,14,15,29,15,16,11,16,9,10,9,16,9,9,7,10,6,8,8,15,8,9,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +77,39,38,25,37,21,24,20,35,19,20,15,23,14,19,18,33,17,18,12,18,10,12,11,19,11,12,10,16,11,16,15,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-13,-14,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-13,-10,-19,-12,-19,-19,-39,-19,-19,-13,-21,-12,-15,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-18,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-37,-37,-55,-27,-28,-18,-28,-15,-18,-14,-26,-13,-15,-11,-19,-11,-16,-15,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-13,-27,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-21,-44,-21,-21,-14,-21,-11,-14,-12,-24,-12,-14,-10,-18,-11,-16,-15,-31,-15,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-18,-12,-18,-17,-35,-17,-18,-12,-18,-10,-13,-11,-20,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-10,-16,-9,-13,-12,-24,-12,-14,-11,-21,-13,-20,-20,-40,-20,-20,-13,-19,-10,-12,-10,-19,-9,-10,-7,-13,-8,-11,-11,-22,-11,-11,-8,-14,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-37,-18,-19,-12,-19,-11,-14,-12,-24,-12,-14,-10,-17,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-24,-13,-16,-13,-25,-16,-25,-24,-49,-24,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-35,-17,-18,-12,-19,-10,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-24,-13,-15,-12,-21,-13,-19,-19,-38,-19,-19,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-12,-12,-24,-12,-13,-9,-16,-9,-13,-12,-25,-14,-17,-14,-26,-17,-25,-25,-50 +39,20,19,13,19,11,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-7,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-7,-6,-14,-6,-7,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-24 +38,19,19,13,19,11,12,11,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-24 +25,13,13,9,13,7,8,8,12,7,7,6,8,6,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-18,-8,-9,-6,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 +37,19,18,12,18,10,12,11,17,9,10,8,12,8,11,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-20,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-20,-13,-20,-20,-27,-13,-13,-8,-13,-7,-9,-7,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-5,-4,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-11,-6,-7,-5,-10,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-19,-9,-9,-6,-10,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-9,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-12,-12,-24 +21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +25,13,12,8,12,7,8,7,13,7,8,6,9,6,8,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-2,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,1,1,0,1,0,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-8,-5,-8,-7,-15,-7,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16 +21,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +37,19,20,14,20,11,13,11,19,10,10,8,12,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,9,6,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,5,3,3,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,3,2,1,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-21,-11,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-13,-20,-20,-27,-13,-13,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-11,-23 +20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-11,-6,-10,-10,-13,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,6,4,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-6,-11,-6,-8,-6,-12,-7,-11,-11,-14,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-14,-6,-6,-4,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12 +17,9,9,6,9,5,6,6,9,5,5,4,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-5,-2,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +27,14,14,10,14,8,10,9,14,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,7,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,2,1,1,1,0,1,1,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +23,12,12,8,12,7,9,8,12,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +21,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10 +40,20,20,13,19,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,7,5,6,4,5,5,9,5,5,4,5,3,3,2,2,2,2,2,2,1,0,0,-1,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,12,7,7,5,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,1,1,1,0,-1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-6,-3,-3,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-20,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-8,-11,-10,-21,-11,-14,-12,-22,-14,-22,-22,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-7,-11,-10,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-10,-6,-10,-10,-24,-11,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-19 +20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +20,11,11,7,10,6,8,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10 +14,8,8,6,8,5,6,5,7,4,5,4,5,4,4,4,8,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-4,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +21,11,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,0,0,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-4,-6,-4,-8,-5,-8,-8,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6 +13,7,7,5,8,5,5,5,8,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +24,13,13,9,14,8,10,8,13,7,7,5,8,5,7,7,15,8,8,6,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-3,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5 +14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-6,-5,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6 +11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-5 +18,9,9,7,10,6,7,7,11,6,6,5,8,5,6,6,11,6,7,5,8,5,5,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,5,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,1,1,2,1,1,0,1,1,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-6,-8,-6,-12,-7,-11,-11,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,3,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-4,-9 +12,6,6,5,7,4,5,5,8,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5 +16,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,4,6,5,9,5,5,4,6,4,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-4,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8 +16,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7 +31,16,17,12,17,10,11,10,17,9,10,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,5,3,3,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-21,-20,-28,-13,-13,-8,-12,-6,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-14,-9,-15,-15,-27,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-29,-14,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-14 +16,9,9,6,9,5,6,5,9,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-2,-3,-7 +17,9,9,6,9,5,6,5,8,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-3,-1,-1,0,-1,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-7 +12,6,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4 +17,9,10,7,10,6,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-16,-8,-8,-5,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7 +10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +11,6,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +17,9,9,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,6,4,4,4,6,4,6,5,11,6,6,4,5,3,4,3,5,3,3,2,2,2,2,2,7,4,4,2,2,1,1,1,0,1,1,1,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,3,2,3,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,2,3,3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-3,-3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,4,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4 +8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +18,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,5,3,4,3,5,3,4,3,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,1,1,1,1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,7,4,4,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,5,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,0,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,0,0,0,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-2,0,0,0,-2,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,4,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-12,-6,-6,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +13,7,7,5,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,2,2,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1 +11,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,2,2,3,2,2,1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +10,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +18,10,10,7,10,6,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,3,4,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,3,4,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-8,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-9,-21,-10,-9,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-7,-5,-9,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,1,1,0,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,7,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 +15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-5,-7,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +28,14,14,9,13,7,8,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-18,-48,-23,-23,-15,-24,-13,-16,-13,-23,-12,-13,-9,-15,-9,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-10,-7,-12,-7,-11,-10,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,16,8,8,6,8,5,5,4,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-13,-9,-14,-14,-26,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-8,-16,-8,-10,-8,-14,-8,-12,-11,-23,-11,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-10,-8,-16,-10,-16,-16,-35,-17,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 +15,8,7,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 +15,8,7,5,8,5,5,4,7,4,4,3,5,3,4,3,6,3,3,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +11,6,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +16,9,9,6,8,5,5,5,7,4,4,3,4,3,4,4,7,4,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-5,-12,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +12,6,6,4,5,3,4,4,5,3,4,3,3,2,2,2,6,3,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,5,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +17,9,9,6,9,5,6,5,8,4,4,3,5,3,4,3,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,3,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-23,-11,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,2,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +10,6,6,4,5,3,4,4,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-2,-2,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2 +11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,0,-2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,1,1,1,1,2,2,2,1,0,1,1,1,0,0,-1,-1,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-2,-5 +7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 +10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-3,-1,-2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5 +10,6,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,4,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4 +19,10,9,6,9,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,5,3,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-18,-9,-9,-6,-10,-5,-7,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-17,-8,-8,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,8,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4 +10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-8,-7,-11,-5,-6,-4,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3,-3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-12,-5,-5,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,4,3,4,3,3,3,3,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3 +13,7,7,5,7,4,5,4,6,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-11,-17,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,2,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,8,5,5,4,5,3,3,3,4,2,2,2,2,1,1,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-7 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +9,5,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-7,-11,-5,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3 +7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,7,4,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-5 +8,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 +11,6,6,4,5,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,6,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +21,11,12,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-11,-6,-9,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-12,-7,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-33,-16,-16,-10,-16,-8,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,15,8,8,5,7,4,4,3,5,3,3,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-9,-14,-13,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-9,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9 +11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-4,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-2,-2,-4,-2,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-4,-3,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-6,-4,-6,-7,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-10,-5,-5,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,6,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,6,6,4,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,1,2,2,2,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3 +9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +16,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,-5,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-18,-8,-8,-5,-8,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-8,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-5,-8,-3,-3,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,1,1,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1 +23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,13,7,7,5,7,5,6,5,8,5,5,5,8,6,8,7,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,1,1,1,0,0,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-4,-5,-4,-9,-5,-8,-8,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-6,-10,-10,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-21,-10,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-37,-18,-17,-11,-17,-9,-10,-8,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,6,3,3,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-12,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,8,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3 +12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-8,-19,-9,-9,-6,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-4,-7,-4,-7,-8,-20,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,8,8,6,8,5,5,5,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-24,-12,-12,-8,-12,-6,-7,-5,-10,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,2,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +12,6,6,4,7,4,4,4,8,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1 +11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +20,11,11,8,11,7,8,7,12,7,7,6,10,6,8,8,14,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-7,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-12,-12,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-35,-17,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-11,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1 +12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +14,8,8,5,7,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1 +12,7,7,5,6,4,5,4,8,4,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-20,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,2,3,2,2,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-8,-7,-14,-9,-14,-13,-36,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,6,5,8,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-14,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-4,-5,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,5,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,3,4,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-13,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-6,-11,-6,-9,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0 +42,22,22,15,21,12,14,12,20,11,11,9,14,8,10,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-9,-17,-8,-9,-7,-13,-8,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-15,-15,-22,-11,-11,-7,-10,-6,-8,-7,-13,-6,-7,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-18,-17,-35,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-14,-14,-29,-15,-16,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-27,-55,-27,-27,-18,-27,-15,-18,-15,-27,-14,-15,-11,-19,-12,-17,-16,-31,-15,-16,-11,-18,-10,-13,-11,-21,-11,-12,-10,-18,-11,-17,-16,-33,-16,-16,-11,-17,-9,-12,-10,-20,-10,-11,-8,-14,-9,-13,-13,-26,-13,-13,-9,-15,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-11,-18,-11,-15,-14,-27,-15,-18,-15,-27,-17,-25,-25,-76,-37,-37,-24,-36,-20,-24,-19,-35,-18,-19,-13,-22,-13,-19,-17,-34,-17,-17,-11,-17,-9,-11,-9,-18,-9,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-37,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-12,-10,-19,-9,-10,-7,-13,-8,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-12,-15,-13,-24,-16,-24,-24,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,0,1,1,1,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,-1,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3,2,2,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-11,-11,-23,-11,-12,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0 +21,11,11,8,11,7,8,6,10,6,6,5,7,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-5,-10,-5,-5,-3,-6,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-4,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-5,-5,-10,-6,-7,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-6,-14,-7,-8,-7,-14,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-10,-5,-7,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-4,-9,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-6,-5,-10,-6,-8,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-6,-5,-8,-4,-4,-3,-6,-4,-5,-4,-10,-5,-5,-3,-5,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-4,-4,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-25,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0 +20,10,10,7,10,6,7,6,9,5,5,4,6,4,6,5,10,5,5,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-14,-9,-14,-8,-10,-8,-13,-7,-8,-6,-10,-6,-8,-7,-17,-8,-8,-5,-8,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-10,-6,-10,-5,-7,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-17,-8,-9,-6,-10,-6,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-8,-6,-12,-8,-12,-12,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-6,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0 +13,7,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-7,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-7,-5,-8,-8,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1 +10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1 +17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-6,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-7,-4,-6,-5,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-36,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-7,-11,-6,-9,-8,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-8,-13,-13,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +10,6,6,4,5,3,3,3,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2 +8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1 +10,6,6,4,5,3,3,3,6,3,3,2,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +16,8,8,5,7,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-8,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-31,-15,-16,-10,-16,-8,-10,-9,-17,-8,-8,-5,-9,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-6,-7,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-40,-20,-20,-13,-21,-11,-14,-11,-21,-10,-10,-7,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3 +8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +8,4,4,3,4,3,4,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-5,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-8,-5,-8,-4,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,2,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0 +7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0 +6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0 +11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-16,-8,-8,-5,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,3,3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,1,1,2,2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1 +4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-19,-9,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0 +5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0 +9,5,6,5,7,5,6,5,8,5,5,4,7,5,6,6,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,4,3,5,5,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-6,-9,-9,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-29,-14,-14,-9,-14,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-37,-18,-19,-12,-19,-10,-12,-10,-18,-9,-9,-7,-12,-7,-11,-10,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,1,1,2,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0 +5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0 +4,3,3,3,3,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-10,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-9,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,2,3,2,2,1,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-3,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,0,0,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-8,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,1,1,1,1,1,1,1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-2,0,0,0,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,-1,0,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-13,-6,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,1,1,1,0,0,0,1,1,1,1,0,0,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3 +7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-9,-4,-4,-2,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,2,3,3,5,3,3,3,5,4,6,6,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-5,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-15,-7,-8,-5,-6,-3,-4,-3,-8,-4,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2 +6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-9,-5,-8,-4,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,4,2,2,2,3,2,3,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3 +4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3 +5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,1,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,4 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 +8,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-26,-12,-12,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-3,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,1,1,1,1,1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-5,-8,-8,-13,-6,-7,-5,-8,-5,-8,-7,-13,-7,-8,-7,-14,-9,-14,-13,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-14,-7,-7,-5,-8,-4,-6,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,0,1,1,2,3,2,3,3,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,3,2,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-2,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,9 +5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6 +8,4,4,3,4,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-5,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,4,3,5,5,8 +8,4,4,3,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8 +14,8,8,5,7,4,4,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-34,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-20,-9,-9,-6,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-8,-10,-9,-17,-11,-18,-18,-38,-18,-18,-12,-18,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-27,-51,-25,-25,-16,-25,-13,-16,-13,-25,-12,-12,-8,-14,-8,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-30,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-9,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-23,-11,-12,-8,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,3,3,4,4,7,4,5,5,9,6,9,9,16,8,8,6,8,5,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-5,-7,-4,-5,-4,-6,-3,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,3,4,4,8 +6,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6 +9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-9,-9,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,-2,0,0,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8 +6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5 +7,4,4,3,3,2,2,2,4,2,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-3,-5,-5,-14,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-5,-2,-3,-3,-9,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,2,1,1,2,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +9,5,6,4,6,4,5,4,6,3,3,2,2,2,2,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-4,-7,-7,-22,-11,-11,-7,-11,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-6,-6,-15,-7,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-16,-15,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,2,2,2,1,1,1,2,2,4,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9 +5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5 +6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4 +8,4,4,3,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-7,-7,-4,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6 +5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6 +10,5,5,4,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,3,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-3,-3,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-8,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-17,-11,-16,-16,-36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,8,4,4,3,4,2,2,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,0,0,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,5,4,5,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-12,-6,-6,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5 +5,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5 +7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +14,8,8,5,7,5,6,5,8,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,3,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,8,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8 +8,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-2,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +10,6,6,4,6,4,5,4,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-5,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-5,-4,-6,-4,-6,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,6,4,4,3,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +16,9,9,6,8,5,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-10,-5,-6,-5,-10,-7,-11,-11,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,6,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,1,2,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,-4,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,-1,0,1,1,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,-1,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6 +15,8,9,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,2,2,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +29,15,15,10,15,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,3,2,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-10,-30,-14,-14,-9,-15,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,4,3,3,2,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-13,-11,-20,-13,-21,-21,-56,-27,-27,-18,-28,-15,-18,-15,-27,-13,-14,-9,-14,-8,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-9,-14,-14,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,9,5,5,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,3,5,4,5,4,7,5,6,5,8,6,9,9,16 +15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,5,5,9 +15,8,8,6,8,5,6,5,6,4,4,3,4,3,4,3,6,3,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-3,-4,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9 +11,6,6,4,6,4,4,4,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,4,7 +17,9,9,6,8,5,6,5,6,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-4,-16,-8,-8,-5,-8,-4,-5,-3,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-17,-8,-7,-4,-7,-4,-5,-4,-10,-5,-5,-3,-6,-4,-6,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-11,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,6,4,4,3,4,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,-1,4,3,3,2,3,2,3,3,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,5,4,6,6,11 +10,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,3,4,4,7 +13,7,6,4,6,4,4,4,5,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-12,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,3,5,3,3,3,4,3,5,5,8 +12,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +21,11,10,7,10,6,7,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-33,-16,-16,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-9,-8,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-9,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,6,6,12 +11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7 +12,6,6,4,7,4,4,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,8 +9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7 +15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,2,2,2,2,2,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,-1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,5,5,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13 +10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9 +14,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-10,-5,-6,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +13,7,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +25,13,13,8,11,6,7,6,9,5,5,4,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-8,-27,-13,-12,-8,-12,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-12,-12,-24,-13,-15,-12,-22,-14,-22,-21,-45,-22,-21,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-15,-8,-9,-7,-14,-9,-14,-14,-22,-10,-10,-6,-10,-5,-7,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,6,6,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 +13,7,7,5,6,4,4,4,5,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,12 +14,7,7,5,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-25,-12,-12,-7,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,13 +11,6,6,4,5,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +18,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-16,-8,-9,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,3,2,3,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,9,8,15 +11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,9 +15,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-9,-5,-6,-6,-13,-7,-8,-6,-11,-7,-12,-12,-25,-12,-12,-8,-11,-6,-8,-7,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5,-2,-1,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,12 +14,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12 +27,14,14,9,13,8,9,7,12,7,8,6,9,6,7,6,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-28,-14,-14,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-11,-24,-12,-12,-9,-15,-9,-12,-12,-24,-13,-16,-13,-23,-15,-23,-23,-45,-22,-22,-14,-22,-12,-15,-13,-24,-12,-14,-10,-17,-10,-15,-14,-27,-13,-13,-9,-15,-8,-11,-9,-18,-9,-10,-8,-14,-8,-12,-12,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-7,-13,-7,-9,-8,-16,-8,-10,-8,-15,-9,-13,-13,-28,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-7,-14,-9,-14,-14,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,2,2,2,2,1,1,1,2,2,2,2,6,4,4,3,3,2,1,1,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,8,6,9,6,7,6,11,6,7,6,10,7,11,11,22 +15,8,8,6,8,5,5,4,7,4,5,4,5,4,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,3,4,4,8,4,5,4,6,4,5,4,7,4,4,4,6,5,7,7,13 +18,10,10,7,9,5,6,5,8,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-6,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,8,6,8,8,16 +15,8,8,6,8,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-9,-5,-7,-6,-14,-6,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,14 +26,13,13,9,13,8,9,7,11,6,6,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,2,2,2,2,2,2,4,2,2,2,2,2,3,3,6,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-8,-11,-11,-22,-11,-11,-8,-14,-8,-12,-11,-23,-12,-15,-12,-23,-15,-23,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-12,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-16,-8,-9,-7,-14,-9,-14,-14,-27,-13,-13,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-9,-7,-14,-9,-14,-14,-28,-13,-13,-8,-13,-7,-8,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,7,6,9,6,8,7,11,7,8,7,12,9,13,13,25 +18,9,9,6,9,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-6,-7,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-15,-8,-10,-8,-13,-8,-13,-13,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-6,-4,-6,-6,-14,-7,-7,-5,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,4,3,4,3,4,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,5,9,6,7,6,12,7,8,7,13,9,14,14,26 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-8,-9,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,13,9,13,13,26 +50,25,25,17,24,13,15,12,21,11,11,8,12,8,10,9,17,9,9,7,10,6,6,5,9,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,3,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-8,-7,-13,-9,-14,-15,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-10,-7,-12,-7,-10,-10,-21,-10,-10,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-39,-19,-20,-13,-21,-11,-14,-12,-22,-11,-13,-9,-16,-10,-15,-15,-30,-15,-15,-11,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-26,-53,-27,-28,-19,-30,-17,-21,-18,-34,-18,-20,-15,-27,-17,-24,-23,-45,-23,-24,-18,-30,-18,-26,-24,-48,-26,-32,-26,-47,-31,-46,-46,-94,-46,-46,-31,-47,-25,-30,-25,-46,-23,-25,-19,-32,-20,-28,-26,-51,-25,-26,-18,-28,-16,-21,-19,-36,-19,-22,-17,-29,-19,-28,-27,-54,-27,-27,-18,-28,-15,-19,-16,-30,-15,-17,-13,-23,-14,-21,-20,-40,-20,-21,-14,-23,-13,-18,-16,-32,-17,-19,-15,-28,-18,-28,-28,-57,-28,-27,-18,-27,-15,-18,-15,-27,-14,-15,-10,-17,-10,-14,-13,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-10,-8,-14,-9,-13,-12,-25,-13,-14,-11,-19,-11,-16,-15,-29,-16,-19,-16,-30,-19,-29,-29,-58,-28,-28,-19,-29,-15,-18,-15,-28,-14,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-5,-5,-3,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,8,16,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,13,7,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,4,6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,3,3,4,4,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,11,11,20,11,12,9,15,9,12,12,22,13,16,14,25,17,25,25,50 diff --git a/worlds/diamond_world2.csv b/worlds/diamond_world2.csv new file mode 100644 index 0000000..d51e78a --- /dev/null +++ b/worlds/diamond_world2.csv @@ -0,0 +1,257 @@ +54,102,116,132,158,159,140,207,229,196,157,171,261,284,275,322,482,460,363,438,641,901,1431,1938,2724,2943,3854,4444,3889,4374,5896,6636,5925,6653,9764,12769,12864,9305,7398,9721,9630,7535,5882,4872,4098,7778,9385,10017,13287,10766,6878,7037,8674,10026,10329,12788,14776,11178,7584,6270,5816,4793,3297,2901,2281,1952,1514,1512,2230,1570,1413,891,514,920,1062,2164,2972,3805,3680,4377,3728,3423,2090,2491,2623,2053,1559,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,198,394,561,1230,1520,1995,2107,1602,1349,1696,1557,1097,692,480,144,183,258,312,336,567,652,938,1053,718,682,560,295,264,185,176,240,202,114,78,32,25,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,827,1035,1444,1569,1188,1324,2036,2913,3602,4379,3896,3696,3039,4308,5187,5234,5454,5259,3759,3158,3156,2434,2461,3302,3722,3143,3070,2444,1845,2378,2234,2386,1996,1579,1173,787,534,236,0,26,43,96,118,111,109,143,198,435,729,1418,2085,3296,4312,5042,7529,8380,8128,6343,5903,4959,4039,6504,6962,6717,4329,3425,2243,3978,4792,4876,4724,3767,2925,2772,3398,2407,2155,1020,0,12,24,31,48,39,39,44,56 +41,70,132,151,160,164,190,228,156,162,182,259,294,312,349,366,406,354,339,446,788,989,1440,2132,2859,3879,4451,3884,5894,5785,6928,5117,9479,8944,8882,9244,8506,7222,6220,6822,8140,7512,4746,5536,5603,8872,13548,12820,10124,10644,6286,7120,7084,8630,10278,10881,9791,10136,8670,6297,6179,4585,3641,3050,3005,2500,1744,1516,1807,1498,1023,778,355,952,1020,2133,4002,4108,4928,4747,3051,2948,1666,1927,2881,2138,1741,985,183,174,136,119,80,66,32,18,0,1,2,2,2,5,5,7,4,174,374,578,881,1278,1903,2477,3279,2030,2260,1918,1770,1380,1036,640,408,422,607,707,752,766,909,888,1530,1088,792,660,350,308,199,350,398,433,393,437,289,249,216,247,263,270,258,201,108,216,330,397,350,289,227,231,91,101,121,138,0,26,54,59,138,195,182,218,50,368,629,1068,1788,1732,1582,1630,2299,2576,2308,2999,3179,3566,4023,4280,4935,5181,4782,4696,3109,3260,3532,3146,1546,2124,2902,2541,2657,2672,2132,2148,2007,1598,1446,1250,1014,681,613,274,130,158,149,234,336,338,275,302,306,556,1054,1588,2440,2953,2880,4318,5856,5977,5619,5900,5060,4874,3930,5878,7622,5992,4926,4130,2930,3908,4600,5122,4191,3036,2320,2624,3235,2977,3248,2414,537,454,448,368,334,262,216,128,43 +33,66,110,183,227,187,181,268,130,126,147,243,233,366,407,407,283,341,439,455,842,1077,1650,1816,3787,3523,4724,4828,6627,6756,7043,5634,10664,8572,9575,8976,7290,5319,4652,6281,7554,6226,5942,5906,8240,10155,13952,15263,8829,8094,7972,7892,5903,9171,10106,11464,8832,8317,8050,6156,5091,3988,3592,3860,2901,1981,1532,1258,1132,1109,1076,858,297,925,1441,2588,3878,5115,5634,6016,2050,1684,1904,2434,3270,2692,1650,1007,371,299,280,326,190,118,76,46,0,2,4,5,4,7,8,11,6,294,537,725,1450,1728,1751,2593,3560,2610,2506,1884,1949,1463,1162,824,566,726,950,1114,927,1064,1070,1045,1648,1562,1275,632,310,316,286,344,485,579,764,792,639,496,505,626,602,561,456,409,254,424,556,708,719,622,518,385,192,208,262,327,0,58,110,140,285,364,360,409,116,364,564,910,2015,1843,1538,1355,1876,1908,2144,3081,2456,3870,4770,4738,3385,3412,4216,4850,3759,3730,3518,3548,1284,1311,1564,2237,3517,3165,2741,2152,1768,1535,1030,951,821,742,534,354,304,333,289,419,698,495,500,366,357,655,1196,1452,2215,2595,2638,4427,3651,3673,4441,5546,3881,5098,4840,6112,7255,5345,4954,4006,3974,4142,4283,4018,2774,2230,2200,3251,2909,4092,4108,3240,1067,872,736,824,569,515,422,261,36 +36,61,99,172,251,224,208,318,124,159,212,261,272,332,354,412,176,495,722,628,954,1132,1229,1844,4269,4028,5194,5382,7081,5824,5730,5373,9529,9947,8936,8470,7134,5555,5378,4561,6648,6787,5624,7102,7951,8523,11987,13608,9303,7582,5878,7194,6839,10309,9502,9698,9737,9020,6341,5617,4089,3664,4053,3892,2398,1708,1482,1010,876,1044,997,858,277,808,1357,2278,3520,4738,5474,7014,2045,2036,1884,2844,2775,2042,1488,928,549,432,461,412,327,199,106,58,0,4,6,7,7,11,10,17,10,478,1008,1254,2218,1706,1678,2930,2641,2772,3122,2266,1817,1602,1287,968,985,1047,1458,1534,1205,1382,1146,1184,1650,1370,1197,661,268,372,365,446,682,793,861,962,1003,826,576,883,928,764,444,466,512,730,853,1073,1286,989,605,548,328,291,443,500,0,81,172,245,326,508,714,712,208,598,956,1110,1623,1700,2373,2399,1453,1866,1430,2154,3237,3480,4554,4977,4278,3952,3941,3594,2928,3839,3498,4120,1578,1666,1312,1690,2687,3002,2430,2328,1010,1110,853,1124,1372,901,504,383,436,507,594,658,873,636,577,461,438,936,1559,2006,2557,2563,2079,3056,2541,2627,3879,4406,3763,4554,3412,4730,4908,4753,5214,5174,4391,5022,4454,4256,2160,2534,2143,3686,3924,5439,5707,5660,1449,1274,789,1078,1222,1016,728,396,25 +31,65,120,166,200,218,320,336,170,217,292,299,357,517,514,525,100,214,410,791,1072,1309,1279,2138,3386,4128,3610,4500,5626,5241,3576,3564,9429,7379,5484,5116,6090,6102,6224,4794,5022,8233,9129,10492,8628,10028,13826,14730,8683,8122,5196,6046,7248,9273,9994,11641,9015,6314,3811,3191,2767,3288,4158,4456,2234,2538,2003,1587,744,761,774,759,376,1088,1874,2233,2637,4046,4527,6164,2458,2391,1854,1696,2283,1624,1613,1395,658,573,624,487,428,374,228,99,0,4,6,7,7,10,13,23,13,818,1706,2126,2513,2722,3187,3955,3033,2419,1594,1635,1658,1398,1461,988,1122,1210,1539,1806,1922,1247,949,893,1855,1540,1282,831,306,320,420,670,715,884,985,842,1050,1221,1239,1385,961,766,614,692,731,702,966,1315,1537,1432,1093,614,433,650,690,744,0,69,151,262,435,710,965,1222,308,496,678,1128,1772,2294,2768,3467,1392,2128,2274,2442,3056,4089,6722,7916,3851,3976,4006,2799,2856,3260,4140,4106,1379,1976,2458,2821,2934,2628,3156,2762,512,806,1258,1223,1549,1139,1022,653,661,746,989,1065,929,1036,826,595,524,941,1403,1882,3098,2822,2406,1707,2387,2176,2810,3121,4372,5180,5238,3752,5000,4376,3699,4442,4357,4334,2913,3319,2029,2793,3084,4817,6005,4315,4342,6805,2035,1844,1519,1433,1670,1347,823,478,12 +52,84,94,124,165,256,241,320,188,256,229,234,279,354,386,343,78,404,637,1060,1530,1766,1286,2191,2850,3546,3680,4388,6196,4938,5058,3482,10454,7318,5137,3890,5945,6336,5014,4191,5255,6476,6725,8554,9045,8378,9202,12976,5074,5696,5131,5144,5797,7589,9541,9943,7806,5833,4037,3304,2491,3509,4158,4782,3000,3338,2799,2224,2314,1646,988,1008,482,1496,2625,2889,2620,3394,5073,5460,3190,3010,2522,2267,2139,2021,1524,1192,677,610,756,584,475,390,226,116,0,5,7,10,8,14,22,27,21,648,1747,2301,2635,2846,4031,3768,3686,2692,2082,1721,1804,1351,1611,1098,1423,1564,1578,1866,2757,2232,1546,1478,2424,1880,1770,1084,482,725,1008,1355,1444,1378,1022,1070,1203,1410,1798,1812,2327,1867,1397,999,884,1203,1731,1972,1992,2212,2401,1596,952,1136,1221,926,0,74,124,234,442,728,1030,1070,854,898,920,1207,1266,2051,2274,2533,1570,1617,1784,2354,2396,4320,5250,5439,4116,3415,4316,3553,2556,3083,3487,3592,1326,2332,2314,2666,2694,2267,2090,2278,766,1184,1538,1780,1698,1442,1383,966,1016,1058,1279,1066,1122,1090,752,578,495,1102,1517,2322,2278,2004,2057,1923,2260,2690,3010,4668,4081,4358,4327,3914,4891,4744,3735,4706,4262,4930,4416,4426,2833,3548,3809,4340,4840,5014,5148,7168,3848,3768,2595,2524,2055,1398,1050,473,12 +83,95,86,75,171,254,268,236,276,271,246,237,250,264,210,194,46,452,957,1081,1825,1518,1878,1789,2717,2852,4240,3786,4750,4955,5158,4376,10835,6927,5854,4958,6478,6282,5166,4925,6066,5636,6989,5506,6501,6788,9158,13448,3983,3584,4232,4250,4810,5843,6297,7684,8722,5364,4102,3099,2260,3880,5346,6268,4256,3950,3090,2301,3111,2578,1670,1128,505,2037,2928,3428,2578,2679,4055,4098,3125,2962,2409,2696,2405,2067,1266,1062,629,836,812,656,683,466,237,134,0,5,7,8,8,18,22,28,29,556,1226,2225,2214,3268,3880,3453,3531,2699,2076,1928,1407,1466,1472,1017,1427,1599,1724,2543,3110,2264,2150,1468,2395,1695,1778,1060,537,1351,1854,2096,1840,1529,1232,1175,1352,1418,1867,2262,4348,3184,1753,1459,1010,1741,2152,2312,3300,2738,2979,2662,1393,1138,1448,1441,0,70,150,208,399,686,995,1090,1448,962,946,788,1225,1900,2338,2162,1534,1664,1700,2004,2179,2436,3464,4239,4686,4376,4110,4102,1644,2795,3428,3410,1404,1680,2302,2637,1600,1536,1861,2720,1225,1338,1736,2382,1754,1726,1689,1133,1380,1077,1158,878,1014,825,764,706,567,1540,2030,3265,2316,2215,2052,2216,2088,2018,2766,3107,3600,3439,3793,3332,4352,4337,4510,5014,5160,5988,4957,3734,2840,3750,4094,5148,4271,4808,5708,9182,6564,4691,4368,4416,1777,1676,1447,684,8 +132,128,96,80,100,154,242,200,222,218,162,182,189,186,142,124,20,486,820,1247,2190,2106,2357,2294,2575,3356,3566,4736,4451,4580,5516,5121,8905,6719,5854,4044,5408,4625,5962,4546,5389,5466,6665,4668,4380,5374,8267,9236,1710,1952,2474,3070,4274,4269,5009,6744,5170,4208,4277,3388,2006,3502,4448,6597,6392,5783,4880,3214,3088,2922,1985,1258,539,1916,2564,2938,3285,3578,2788,3712,2513,2304,2204,1764,1823,1564,1080,974,703,669,586,666,633,440,322,164,0,5,7,10,12,20,25,30,34,532,832,1604,1676,2726,3937,3530,2746,2349,2620,2006,1283,1196,1223,1006,1438,1586,1620,2706,2527,2547,2359,2055,1810,1732,2004,1341,718,1436,2490,2148,2138,2294,2102,1581,1186,1460,1801,2285,4268,3311,2445,1794,1091,2149,2154,2692,3287,3242,3387,3428,2538,2192,1707,1524,0,102,221,285,484,598,921,1147,1368,1206,1013,916,1138,2008,1886,2784,1279,1794,1689,2437,2920,3466,4364,3636,3737,3981,2927,3116,1667,2694,2890,3483,950,1326,1632,2148,1394,1400,1388,1726,1315,2166,2238,2352,2448,2112,1831,1281,1572,1438,1532,1356,1236,1008,755,778,554,1353,1975,3350,2828,2952,2606,3534,1406,2098,3238,3246,2906,3598,3395,3488,4525,4723,3294,4682,4647,4815,5474,5135,4703,4870,5150,3736,4136,5366,5806,8656,6950,7070,6052,4623,3121,2540,1912,1102,5 +172,178,198,178,196,158,185,222,229,239,209,173,93,71,54,26,0,426,841,1386,1536,2154,2288,2380,2536,2932,2974,3231,4097,3932,3269,4141,7287,5723,5666,3237,1402,2021,2406,3193,4852,4887,4580,5015,7267,7539,8661,6374,0,176,356,564,720,1286,2301,2886,3558,4194,3876,4881,4996,6557,6726,6386,9020,9632,10300,8260,7326,5288,3874,2546,422,1048,1357,2081,2195,3632,4262,4221,2267,1453,1011,908,503,870,976,850,1024,1059,828,746,688,644,398,231,0,5,8,12,11,22,29,34,31,738,1473,1745,2414,3842,4366,3968,2483,2129,1506,923,466,822,978,1253,1134,824,740,887,1067,1556,2458,2421,1720,1752,2415,2347,3403,2813,2899,2603,3414,2751,2677,3596,4769,3968,3454,3363,5292,5556,4165,5327,6326,6191,4907,4756,3409,3864,4552,4264,3702,2868,2281,1956,0,96,217,368,404,964,1435,1637,1778,1845,1304,1245,1129,2066,2634,2920,999,1062,962,1458,1748,1893,1870,3245,3603,4076,5502,5015,4786,4516,3909,3708,812,622,662,639,436,1198,1565,1545,1886,1441,1185,1468,1511,1378,1106,1176,1426,1177,1087,1415,1644,1409,1189,937,519,832,1471,2260,3964,4371,5043,4298,942,1633,2571,3145,2800,2868,2856,3650,3841,4090,3104,2920,3340,3773,5128,5395,5782,7408,6762,5564,6739,6663,8074,9540,9852,7768,6503,4701,3705,2784,1755,1014,0 +148,173,206,202,216,180,224,236,222,197,206,155,128,92,62,27,2,294,646,1200,1237,1788,1764,1872,1877,2354,2661,2776,3298,3116,2572,3191,7137,5147,3767,3145,1535,1840,2193,3382,3651,4270,4074,4763,5149,6369,8185,5060,0,245,352,765,748,1702,2650,3393,3654,3811,2937,3128,4237,5467,6078,7542,10336,10171,7855,7321,5520,4604,5240,3012,1948,2065,1922,2816,4134,4043,4573,4595,1522,1180,985,888,900,964,943,951,1028,869,857,732,576,504,346,172,0,6,12,16,22,26,32,35,34,637,974,1410,1805,2768,3571,4654,3426,2320,1418,1096,832,924,943,1169,2358,2060,1402,1657,1344,1748,2180,2690,1470,1569,2128,2398,2673,2462,2613,3180,4051,3116,3006,4136,3812,3595,3711,3196,5464,6236,5207,4087,5811,4956,4395,3302,2538,3366,4668,4183,3084,2554,2044,1610,0,96,199,310,445,842,1031,1570,1650,1719,1066,1002,1042,1373,2234,2610,1361,1660,1345,1551,1831,2112,2640,3680,3210,3880,3956,3502,3356,3922,4733,4736,666,662,522,621,353,972,1555,1286,1932,1678,1364,1606,1229,1278,1377,1214,1766,1711,1872,1441,1550,1158,970,808,521,792,1231,2292,3448,4311,3789,5092,782,1416,1912,2242,2154,2570,3783,3756,3204,3801,3481,2588,3913,4498,5592,6875,4886,5719,8496,8200,6928,7901,10068,15414,15263,13083,11664,7708,4797,4888,3201,2330,1540 +144,174,172,202,203,236,200,255,207,177,145,149,128,77,60,32,3,224,463,876,1511,1414,1852,2169,1606,2272,2559,2383,2248,2345,2870,2428,5915,5223,3536,2646,1496,1641,1872,2415,2776,3549,3886,4758,3805,3963,5027,3933,0,278,500,646,677,1664,2504,3339,2698,2164,2546,3003,4596,6412,6328,6031,9536,6829,7132,4744,6433,5123,4996,4204,4432,3644,2327,2859,5248,4493,4730,6642,1057,1154,898,699,1071,1063,871,896,881,710,640,415,591,422,246,138,0,7,13,23,29,28,32,34,30,459,881,1082,1459,2156,2326,3815,3252,2097,1800,1726,1000,1087,1351,1446,2843,2670,2134,2068,1974,2665,2608,1936,1160,1498,1775,2515,1830,1905,2852,3580,4548,4238,3167,3868,3381,3931,3328,2636,7645,6171,5003,4374,5546,3616,2580,1847,2661,3317,3972,4036,3608,2450,2278,1606,0,122,210,230,345,784,1116,1535,1025,1172,1240,1265,666,1185,1562,1754,1734,1764,1730,1790,2401,3060,3336,3931,2287,2862,2748,2836,3520,3954,4239,3880,742,784,614,558,313,694,1162,1104,1750,1798,1405,1802,1416,1789,1636,1521,2684,2380,2076,1578,1032,1098,1112,882,503,834,1407,2140,3151,3682,4066,4663,568,923,1324,1093,2576,3015,3673,4361,3343,4005,3744,3162,4793,4957,5518,6200,4843,5460,7734,7590,8456,13855,16102,20632,20141,18254,15122,9441,6753,6906,4893,3816,2924 +202,232,142,150,178,145,148,259,171,162,151,137,142,82,69,38,5,214,472,682,1430,1726,1885,1604,1840,1966,2121,2156,1762,1984,2338,1939,5574,5207,2845,2932,2289,2492,1845,2860,2720,2958,3012,3138,2528,2782,3196,2897,0,340,667,772,801,1362,2079,2194,2469,1946,1956,2970,4771,5731,6912,8068,8016,7246,8004,5656,6266,5684,4411,4908,5902,4262,3570,3477,5476,4434,4306,6268,1260,1284,1026,970,973,1063,604,628,904,595,481,350,314,275,208,92,0,12,24,27,44,34,35,38,29,379,980,1001,1496,1920,2085,2783,3750,2628,1992,1804,1534,1582,1432,1476,3532,2554,1776,1940,2557,2312,2208,2070,669,960,1208,1718,1481,2341,2995,3986,7077,5625,4156,4972,3955,3588,3298,3688,7592,7152,4195,3614,4891,4194,2613,2384,2913,3010,2806,2697,3034,2528,1814,1316,0,114,217,270,444,704,1054,1166,962,998,852,956,743,908,945,1207,2151,2272,2435,2434,2589,2860,3506,3536,1254,2226,2594,2610,2895,3278,4594,4326,502,510,588,478,401,745,856,988,1753,1406,1374,1400,1776,1564,1327,1466,2287,2592,2615,1739,1289,1293,1343,800,411,894,1194,1690,2434,3114,3260,4266,372,620,1195,1224,1730,2521,3231,3880,2326,3290,4488,4085,5227,6030,6398,7754,4756,6365,7248,7210,7564,15862,23973,25307,23159,17669,15273,10115,6410,6096,5297,5156,4043 +260,268,190,174,127,201,215,246,161,128,122,116,118,72,48,22,4,149,329,738,954,1388,1846,1821,2090,2204,1749,1646,1372,936,773,738,5415,5776,5160,4042,2797,2466,2717,2573,1781,1884,1600,2088,2150,1846,1273,914,0,244,495,672,915,1070,889,1205,1470,2578,3436,4205,4411,5973,9081,10774,6859,6360,4905,6255,6104,6430,5552,4638,6307,6047,5011,4927,5678,7986,8698,7228,1148,990,952,957,1060,1093,1048,836,739,568,384,255,168,155,114,50,0,10,15,28,45,44,54,65,17,384,800,914,1244,1764,2237,2394,4023,3697,2709,2634,1815,1506,1580,1526,3371,2560,2655,2524,2624,2810,2171,2190,328,539,894,909,1158,1527,1789,2840,7925,8184,9050,6790,6306,5850,7735,5566,8410,8722,7751,6416,2985,3139,2377,1977,2727,2265,1801,1936,1898,1931,2084,1788,0,90,180,306,394,588,669,857,872,1008,909,986,772,679,830,821,1968,2059,2919,2529,2810,3306,3194,2818,547,937,1775,2330,3228,3306,2735,2631,279,433,454,489,414,405,555,1034,1603,1410,1860,1555,1548,1549,1574,1269,2528,2638,2195,1979,1636,1132,1148,794,505,1057,1277,1708,2473,3357,3216,3626,198,467,654,1029,1334,2448,2952,2904,1414,2220,3876,3930,4598,6139,6500,8761,3403,3898,4452,5189,5570,10044,16185,19920,24950,21127,21348,13906,8331,8732,8943,7224,4934 +264,201,173,146,141,179,158,218,188,112,114,98,118,80,58,30,6,114,306,588,578,1132,1354,1314,1447,1384,1237,1024,1330,846,667,585,3832,4541,3480,2689,2032,1936,1980,1897,1090,1384,1230,1684,1492,1160,1077,714,0,175,393,506,693,698,602,1176,1046,1605,2420,3232,2933,5196,7614,10361,7532,6540,7056,7329,7794,7938,6683,6187,6462,5635,5974,5974,5916,6543,6230,7360,2033,2896,2169,2422,1918,1838,1410,942,502,412,338,174,176,135,111,52,0,10,22,34,49,50,65,62,32,332,542,852,1274,1570,2255,2230,2894,2904,2112,1934,1349,1538,1444,1719,3143,2866,3087,3166,2448,2310,2708,2463,398,699,849,1212,974,1658,1985,3062,7653,8897,8478,7915,5233,5132,5479,5448,8682,7408,5781,4852,2466,2340,2051,1543,2145,1982,1245,1642,1179,1580,1680,1596,0,76,122,194,295,454,488,645,792,718,724,834,1000,1064,978,758,1630,1722,2310,2543,3014,2889,2289,2444,572,1032,1292,1930,2634,2858,2541,2700,246,338,304,334,318,395,385,732,1219,1390,1299,1363,1421,1468,1552,1520,2325,2084,1848,1466,1587,1098,874,569,436,683,745,1206,1501,2201,2251,2888,116,326,538,754,1012,1508,1855,2256,948,1806,3169,3278,4324,5222,6220,9012,4712,6422,10277,11928,8814,12812,20807,31296,25722,28928,18144,18143,12857,11855,13726,12316,12089 +194,129,108,154,161,135,171,220,159,113,99,98,126,110,58,33,6,107,181,279,331,589,718,890,1108,1163,860,797,902,861,565,447,2021,2008,2114,2159,1379,1031,1053,938,816,1059,1066,1218,915,931,758,566,0,101,238,391,293,520,608,754,691,926,1554,2406,1941,4000,6374,8886,5860,6333,6992,7000,8546,10140,9697,5861,4959,6211,6903,7826,6287,5550,5138,5089,3783,3474,4076,3316,2737,2070,2178,1358,284,286,230,163,126,86,74,38,0,10,21,26,48,64,58,61,53,255,394,703,1040,1405,1552,1349,2382,2473,2126,1319,794,1034,1641,1857,2716,2270,2818,2744,2202,1968,2433,2027,648,707,1004,1640,1261,1956,2882,3018,6733,5853,7214,8106,3947,4522,4003,4552,8631,6025,5136,3306,2589,1726,1232,988,1806,1646,1208,1687,969,1456,1555,1254,0,36,84,122,248,374,432,539,452,512,527,547,945,940,1076,720,1867,1707,1446,1712,2289,2356,2394,2294,810,944,1091,1772,2488,2599,2274,2427,144,152,220,229,236,221,276,379,1144,1433,1298,1414,1310,1358,1616,1500,2163,1671,1329,1020,1296,1103,806,414,236,406,450,706,1065,1212,1532,2048,61,198,422,787,636,764,1220,1178,532,1464,1952,2884,3063,5397,6625,10116,5887,11172,18890,18074,12026,18582,30224,40808,36294,26032,18902,17653,19977,15624,14598,17871,16324 +184,126,120,161,193,156,178,181,169,118,121,91,113,83,52,33,6,43,108,145,191,288,360,492,597,526,480,364,437,387,290,232,876,969,1058,1009,726,552,631,504,354,474,582,620,528,526,333,251,0,53,105,186,141,223,305,432,379,571,1072,1555,1420,3426,5525,8938,4423,6876,7086,8149,8951,8958,11993,9060,7849,7558,6750,5642,4462,3961,4579,4967,4628,3956,3948,3828,2860,2530,2024,1206,232,214,171,147,108,91,55,30,0,12,29,36,50,59,63,64,67,272,402,635,980,1535,1844,1899,2524,2091,1794,1134,755,1154,1421,2190,2560,2448,2424,2506,2240,2518,2863,2018,1026,878,1174,1390,1283,2238,3317,3771,5190,5480,7418,5700,5128,5972,5238,4735,7714,6208,4458,3329,1706,1207,970,554,724,920,927,1126,895,1134,1651,1424,0,21,48,64,109,174,201,259,229,352,489,626,974,1016,1355,1234,1669,1421,1444,1562,1774,1606,1244,1641,994,1064,1122,1320,1891,1827,1832,1892,62,102,130,126,119,126,176,236,617,875,796,1210,1393,1378,1475,1692,1713,1418,1466,1168,880,673,549,304,194,223,299,354,457,568,910,967,26,104,213,345,360,444,700,704,237,828,1381,2074,2019,3332,4245,6924,6136,14894,26236,27980,23007,33378,33312,30328,35774,28618,18830,17451,24184,19180,17111,16296,19720 +126,109,112,96,113,127,120,102,61,63,71,64,54,44,23,13,4,6,6,6,4,5,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2535,4902,5449,7849,7269,9893,9724,4772,4716,3925,3182,1591,1305,642,365,0,117,211,387,617,1556,2386,3232,4454,3078,2790,2873,2737,2927,2194,1440,996,592,363,299,146,105,56,34,0,16,34,45,53,79,135,154,190,358,576,718,970,1224,1913,1906,2248,1506,1178,1130,879,1198,1391,1393,1298,1339,1509,1003,944,1056,1573,1451,1158,1716,2686,3005,3821,3944,4383,4356,6436,9074,8901,8959,8948,7981,6839,6395,4808,4001,3645,2611,767,610,530,277,82,140,159,198,175,712,1086,1131,0,20,44,80,93,121,169,154,151,379,537,690,913,957,1235,1302,1482,2010,2052,1761,2190,3252,3931,3638,3635,3321,2907,1814,1250,1418,1353,1444,0,0,0,0,0,0,0,0,0,134,320,529,769,1343,1663,1921,1949,1506,1547,1893,1735,1498,1035,622,0,0,0,0,0,0,0,0,0,1332,2790,3521,5052,5829,8526,8165,10216,10163,8593,7708,5606,6039,4782,5827,8467,9957,10786,9430,9853,15394,15863,21493,21924,18056,15136,16732,25184,22627,23025,17582,18619 +126,114,119,102,93,91,81,84,51,50,66,50,50,42,23,16,6,40,58,90,74,130,217,230,1089,1275,1176,1274,652,1144,1514,1892,410,617,574,638,650,524,339,200,362,506,734,692,724,710,988,870,157,202,187,237,152,112,104,64,8,1961,4109,4150,5852,6768,8151,7902,5598,4866,3593,2570,1284,983,776,470,304,512,693,886,782,1866,2783,2928,5560,3423,2751,3114,2968,2923,2220,1766,793,467,288,232,240,192,116,57,0,17,36,46,63,83,119,136,163,502,780,807,1320,1463,2451,2196,1882,1781,1716,1280,901,1141,1071,1017,1354,1166,1100,944,1072,1372,1366,1504,1003,1400,2500,2768,3756,4590,4516,6254,5999,8376,6044,6074,9270,9007,7930,5760,3640,3434,3490,3353,2204,1739,1420,912,423,450,473,474,476,1286,1642,1740,249,251,340,273,176,181,191,222,204,427,715,744,893,1200,1631,1976,1541,1683,2133,1982,1872,2305,2544,2746,3472,3307,2211,1850,1359,1318,1659,1566,51,71,87,96,122,155,217,216,124,240,309,610,763,1139,1273,1728,1764,1790,1679,1644,1237,1298,1024,777,165,158,177,191,92,96,91,44,90,1292,2312,3256,3650,4872,6232,9203,8698,9713,8430,7670,6242,5276,4877,5091,8891,9306,9501,9528,8710,12082,17202,16902,17260,19840,14977,14050,18965,18548,16558,14314,14214 +149,106,96,131,99,77,68,97,48,45,45,38,32,30,24,19,6,60,117,196,141,274,359,372,2386,2240,2224,1802,1620,3056,3544,4359,845,874,1274,1306,1363,867,608,378,714,1098,1286,1362,1536,1355,1776,2048,353,435,449,430,281,210,179,157,16,1360,2730,3150,4675,6363,8858,7107,4623,4250,3463,2592,1385,1253,902,627,564,772,1096,1792,962,2001,2856,3070,6949,6460,3868,2886,3123,2850,1960,1610,573,356,222,190,254,181,168,91,0,20,36,63,98,107,94,132,132,521,839,1343,1660,2032,2320,2344,1889,2173,1882,1554,1149,1117,980,800,997,816,728,727,972,1440,1544,1240,750,1377,1988,3016,4120,5140,5837,7471,7736,5408,5374,4309,9858,8968,8002,8144,3471,3632,3150,2706,3208,3026,2195,1370,880,789,848,726,622,1702,2228,2510,448,570,551,413,206,266,280,222,293,492,692,835,895,1071,1514,1866,1265,1654,1695,1456,1295,1757,2173,1815,2181,2287,1861,1600,1532,1614,1438,1303,109,134,188,178,241,298,373,363,243,358,447,908,1118,1219,1084,1280,1665,1968,1825,1946,937,1396,1419,918,298,334,338,328,224,206,162,103,199,1185,1969,2614,2547,4949,6640,7356,9900,8280,8690,6545,5800,5210,3470,2774,6764,7078,8842,11095,11822,12885,18176,17712,20951,22455,18202,12137,12574,15892,14380,10430,11241 +137,122,102,118,106,92,66,82,50,55,60,37,32,32,24,18,7,64,117,234,290,386,549,613,4052,3418,3165,2438,2535,3140,3470,5700,1100,1404,2090,1988,1836,1662,926,596,816,1755,2348,2156,2001,3108,3969,3618,626,613,687,592,388,350,302,184,28,1206,2311,3796,4358,5977,9148,8088,4572,4002,2557,2362,1418,1101,1076,738,592,969,1055,1719,1898,2730,2764,3667,7688,4891,4881,2898,2474,2305,2169,1502,430,341,195,190,282,236,192,98,0,28,44,73,131,133,136,157,181,534,858,1460,1868,1866,2533,2614,1576,1930,1677,1374,1075,1044,1199,1196,898,825,869,854,1081,1295,1483,1466,618,1215,2110,2545,3451,4632,4738,6583,5623,5966,6132,5126,8770,6953,6426,6054,2252,2910,4502,3726,5030,3563,2626,2375,1322,1052,1146,1194,1130,2103,2105,3255,865,912,677,588,355,352,386,324,398,613,707,843,1016,1224,1471,2137,806,944,1252,978,1129,1243,1311,1240,1865,1325,1245,1122,1162,1114,1218,1090,140,277,253,253,339,458,488,672,302,354,461,776,1045,1017,1059,1066,2471,1776,1704,1537,1196,1453,1308,1140,568,524,404,326,297,263,282,158,300,965,1505,2090,2880,3868,4595,7361,9202,9294,7355,6620,5037,4436,2582,2603,4365,5109,5487,8296,11162,13536,12892,15124,15304,13139,12276,11746,8754,11565,11142,11852,11322 +89,63,64,93,105,115,126,97,72,69,56,40,34,34,22,15,5,115,188,265,394,472,547,716,4579,5183,5332,4450,3872,4584,6147,7278,1736,1893,1955,2612,2462,2001,2065,1201,1166,2290,2754,2699,3333,3158,3666,3498,1004,1044,775,589,658,483,454,310,49,906,1557,3134,5046,5618,5955,6864,4232,3213,3481,3241,1972,1933,1476,1222,851,1336,1988,1856,2502,3159,3190,3693,6836,6688,5780,4191,2598,2712,2242,1547,387,446,468,361,380,320,240,126,0,34,55,96,135,176,169,170,177,677,1196,1288,1623,2057,2459,1922,1727,1834,1817,1478,1078,932,1026,1392,927,1194,1253,1054,1190,1451,1488,1240,431,1444,2053,2588,3052,3540,4663,5972,5857,7456,7198,7528,5723,5150,5267,7336,1935,3103,3457,3828,5427,4620,2514,2628,1324,1402,1691,1811,1858,2139,2473,2305,1041,845,757,561,576,552,348,353,371,498,789,1009,1184,1271,1269,1706,434,346,412,610,647,704,807,804,970,945,858,938,942,716,655,737,235,279,434,389,397,405,515,838,503,638,567,785,1040,1178,1165,894,3066,2135,1882,1884,1342,908,863,1040,881,776,415,499,474,408,276,154,356,616,1010,1716,2330,4297,5397,7539,10415,7304,5739,4500,3122,2055,1986,1599,3387,5248,6168,7271,7519,5825,7003,8371,10092,8474,5224,6792,7262,9136,10153,9311,12996 +120,108,102,128,100,114,101,116,63,62,63,44,43,28,22,16,6,358,706,910,784,1327,1748,2201,6661,6400,7620,4800,4529,5704,6588,9919,4180,3632,2999,2766,3068,2034,2080,1674,1312,2140,2280,4447,4479,4336,5032,7739,3229,2168,1675,1858,1610,1379,1210,702,80,636,1134,2090,3440,4009,3394,3935,3594,2824,3330,2698,2043,2164,1764,1680,1348,2068,1952,1914,3175,3453,3136,4475,6976,5820,5466,3096,2182,1862,1642,1326,624,669,643,370,550,462,294,124,0,42,88,140,170,210,214,266,259,763,1176,1360,1242,1599,2232,1856,957,1288,1093,1212,723,766,896,1101,757,1092,1003,912,999,1042,1217,986,754,1612,1640,2518,3894,4688,5274,7768,6126,6792,6769,6626,6548,5660,4780,8511,4069,4786,3172,4812,8077,8002,5240,3514,1647,2046,1787,1746,1596,2175,2125,1940,1027,832,937,728,484,440,474,382,470,670,917,1086,1388,1304,1459,2074,430,339,474,556,539,504,632,542,738,672,904,758,1133,990,561,766,222,266,440,428,420,462,633,778,630,757,843,1104,766,1007,1031,891,2834,2498,1654,1411,1468,1170,968,1182,1134,1006,682,620,606,552,411,212,543,784,972,1522,2008,4031,4405,6476,8992,7051,5327,3737,2803,1996,1616,1284,2280,3718,4880,5331,6189,5136,5063,7646,6936,5129,5296,5188,5772,5845,7690,6890,9891 +151,140,150,153,92,103,106,118,59,55,53,38,38,28,22,13,5,507,1128,1302,1542,1911,2916,3356,8389,7295,8304,4645,4797,5848,7377,10382,5665,4901,3717,3313,2923,1906,1696,1769,1218,1640,2405,4241,5434,5506,7460,9686,5343,3404,3057,3298,3332,2420,2265,1064,125,511,1046,1937,1815,1934,1922,1654,1925,2183,2602,1996,1597,1800,2660,2832,2483,2133,2715,2532,3680,3732,3546,3982,6790,5715,3939,2302,2202,2080,1352,1288,917,656,664,515,821,516,324,160,0,58,121,160,185,256,314,433,314,585,1134,1125,876,1331,1356,1248,644,702,736,830,640,578,530,803,844,900,1020,988,1022,1098,814,784,1230,1573,1832,2605,3574,4728,4556,9495,7466,7864,7831,6942,6798,5559,4969,7074,6507,5073,3862,5883,9942,7943,6890,4882,2187,2376,2018,1934,1738,1659,1520,1678,890,926,970,939,398,392,562,416,472,840,962,1163,1395,1391,1503,1966,286,392,388,386,271,302,290,252,331,449,727,726,1145,854,738,797,211,258,392,363,487,648,633,832,671,863,880,1217,843,621,664,463,2291,1842,1832,1801,1573,1777,1520,1048,1256,1007,942,659,943,798,412,195,737,843,1074,1442,2104,3193,3694,5376,8740,6910,3990,2344,1900,1248,764,795,2188,3606,4142,4471,4130,4614,4009,5240,3612,3973,3620,4933,2713,3594,3888,3306,3951 +155,146,155,146,83,88,101,104,78,72,54,36,41,27,20,14,6,598,1552,2654,3290,5094,5386,5354,8020,7366,9991,5714,4165,6857,8475,11971,5886,5682,5841,4076,3217,2486,1653,1698,2116,2740,2608,5224,6725,9528,10284,17216,5626,5647,4692,5113,4032,3354,2874,1432,189,428,621,946,768,1065,802,765,1220,1681,2024,1532,1466,2187,2696,2881,3498,3014,3291,2702,3878,3852,3903,4943,5932,4253,3435,2135,1912,1840,1476,1134,761,710,800,692,904,522,299,126,0,70,165,186,265,330,347,445,364,556,870,961,1024,1328,1159,1358,270,385,392,414,394,412,382,538,825,858,888,780,790,754,431,395,2012,1765,2003,2752,3512,4502,5196,9982,6928,6354,6284,6142,6924,5336,6147,7897,6714,7315,5590,7224,10742,8506,6187,3968,2494,2200,1826,1940,1469,1382,1403,1813,1234,1024,778,632,437,558,700,614,595,759,896,904,1254,1138,1284,1704,404,413,444,352,182,184,185,150,195,400,500,702,973,694,832,975,266,286,443,420,467,601,986,1094,1098,976,612,868,969,622,482,376,1982,1829,2288,2006,2029,2372,2350,1704,1684,1528,1426,1202,1126,774,568,336,898,1037,1253,1290,1532,2450,2172,3356,5129,3956,3140,1782,1101,776,514,398,975,1462,1791,1972,1890,2302,1891,2168,1951,2264,1954,1848,1621,1845,1953,1434,1593 +187,233,241,204,163,151,128,115,104,85,38,28,17,16,13,11,5,1747,3828,5816,7349,6215,5829,6994,8706,9705,8641,12651,18377,13699,10491,14075,7659,7202,5680,3655,2168,1711,1865,2157,2822,6478,9255,13613,14013,12303,15536,21901,6938,5926,3328,2682,2396,2086,1485,955,206,202,238,182,147,126,70,30,272,819,1506,1968,2828,2725,2414,2376,3492,3721,3899,4049,5470,4748,6396,7026,3964,4179,4307,4284,3059,1844,1386,1120,950,765,608,357,119,95,54,24,0,41,78,102,166,168,214,306,523,657,824,870,906,950,793,913,0,49,92,152,207,294,336,598,814,729,544,482,297,260,137,62,2289,2953,4119,3624,3696,4464,5090,7204,8375,6355,6383,5238,6442,8455,10960,8285,8823,9426,7720,6740,4950,3154,2527,3122,2954,2501,1838,1749,1874,2292,2431,2494,1310,1823,1741,1510,1325,1324,1181,846,820,850,674,969,1234,1136,960,1110,393,384,317,186,83,67,59,34,0,208,441,570,722,698,983,900,390,591,812,841,990,1073,1319,1283,1194,1177,894,551,399,273,234,104,1532,1521,1221,891,650,993,1052,1413,1790,1446,1467,1023,560,412,344,161,859,1072,1506,1740,1888,1828,1916,1796,2118,1698,2007,2136,1818,1202,783,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,148,194,214,138,140,130,139,126,100,51,46,26,20,19,12,5,1600,2865,4802,4835,4811,6572,5852,6016,7476,8462,11404,16429,14294,10761,13772,11965,9464,7356,5464,4612,4179,4632,2964,2828,6233,9136,11312,18148,23407,21589,34114,6571,8413,8046,8654,7403,6911,5887,4208,1068,1208,1152,1490,1657,1292,1318,731,235,1020,1399,1938,2564,2210,2138,2788,2905,2824,3316,3642,4419,4483,5324,5459,3154,3952,3125,2838,3580,2316,1346,1208,944,686,446,302,153,131,73,46,0,49,120,136,225,262,314,411,438,708,838,868,1011,1071,966,984,406,398,470,572,614,926,1631,1530,1656,1516,1195,960,747,658,434,433,3166,2893,3805,3494,3718,4260,5444,5690,5201,6188,6252,5451,5509,7529,9120,8767,9529,9092,6607,5382,5168,3858,1964,2686,1888,2429,2075,1768,2273,2698,2966,2994,1708,1430,1792,1857,1583,1403,1316,909,1144,1017,874,1044,1342,1162,1036,1206,310,327,341,209,106,92,92,61,51,224,421,454,678,732,773,750,353,694,901,1100,1080,1358,1314,1554,2001,1724,1428,970,878,582,534,304,1496,1740,1471,996,654,768,1202,1363,1697,1424,1442,1110,836,602,501,288,906,1147,1297,1350,1574,1636,1304,1918,1737,1652,2042,1729,1920,1293,494,279,0,199,456,592,640,568,650,570,440,542,662,795,1044,1228,1465,1630,2132 +93,125,119,119,162,130,122,145,122,82,75,54,27,24,18,11,4,1294,2460,3240,4542,4036,5297,5814,5524,6591,8724,11260,13614,16581,16058,15398,16723,13605,8055,6831,5967,5496,6076,5522,3183,7219,11650,14267,17651,22535,37376,42319,9190,11653,15017,13220,9956,11527,9562,7807,1713,1791,2199,2488,3484,3569,2545,1769,266,771,1081,1601,1751,1930,1492,1978,2240,2505,2038,2908,2652,2726,3527,3476,2462,3264,3224,3003,3017,1834,1500,902,1075,756,486,313,210,182,124,72,0,59,132,164,272,317,370,488,360,540,960,1198,1122,1304,1204,1234,690,809,842,1348,1072,1720,2592,3213,3242,3201,2129,2099,1192,1108,888,624,4074,3893,2468,2384,2708,3777,4180,5121,3373,4915,5198,4360,4391,6450,8804,10035,9226,6084,5118,4091,5073,3557,2298,2092,1576,2168,2060,2711,3048,2805,2764,2859,1685,1718,1476,1559,1566,1522,1100,1076,1346,1413,1092,1460,1211,1322,994,1334,266,271,296,264,101,122,105,74,93,210,392,350,443,375,424,444,243,556,1136,1269,1124,1735,1865,1749,2854,2570,2050,1379,1276,848,800,659,1747,1560,1367,1034,689,718,971,1078,2368,1662,1427,1152,930,917,728,377,1120,1247,1102,838,1362,1063,1160,1484,1793,1415,1429,1238,1483,1028,422,195,0,392,814,1104,1095,1408,1350,1279,736,1046,1124,1454,1945,2297,2628,2973,4699 +66,92,113,121,145,126,104,115,137,85,60,53,36,34,23,16,5,1008,2229,2758,3870,4050,3444,3853,3162,4904,6195,10134,14001,12607,17643,18002,14670,13584,8418,9736,9374,8488,6386,6676,5620,8963,14896,16184,19614,22642,32066,45810,13388,15773,16982,19110,17600,18557,17131,11179,2502,2746,3766,4455,6499,5845,4689,3635,255,648,929,1170,1386,1719,1291,1664,2001,1810,1513,2029,2083,2746,3761,3352,2447,2586,2513,1978,2232,1608,1662,1067,766,664,467,382,287,194,177,72,0,86,152,207,315,364,381,454,490,652,842,1006,1308,1199,1398,1525,1161,964,1000,1284,1381,2360,2439,3808,3200,3244,2472,2442,1418,1306,1331,1050,4030,3366,2414,2501,2741,3117,3202,4928,2492,3988,5254,4836,3859,6357,7198,10121,7708,8545,7373,6508,5982,4326,2383,2217,1870,2685,2515,3416,3439,2594,2260,2794,2264,1771,1491,1700,2011,1662,1304,1088,1636,1634,1209,1546,1380,1490,1464,1412,147,150,254,196,148,148,190,157,124,250,311,354,477,418,389,424,161,535,1060,1632,1468,1738,1766,1831,3569,3528,3185,2504,1576,1298,898,656,1229,1356,1326,1101,970,863,828,948,2233,1729,1249,1290,1662,1188,833,480,1072,985,967,694,940,800,628,724,1964,1984,1470,1316,894,658,270,158,0,552,1439,1581,2201,1944,2049,1458,986,1704,2261,2216,2684,3062,3142,4673,6439 +43,51,66,85,96,124,129,104,107,100,87,72,48,43,34,21,4,852,1457,2807,3412,2573,2501,2634,1721,6425,10047,13223,13784,13056,11617,21239,17471,19445,20871,14004,12494,9003,6284,6024,7234,11109,12474,16058,21432,30849,32756,48554,15649,17964,25386,28671,29025,26906,19939,12385,3212,3371,4296,5304,7834,7306,7025,6033,167,256,447,703,855,731,938,1360,1189,1896,2317,2631,2296,4078,4610,4260,1730,2054,2625,2873,2206,1958,1690,1444,665,464,370,409,321,294,184,86,0,49,118,203,320,279,369,505,470,748,955,1220,1195,1608,1679,1734,1312,1859,2260,2562,2161,2708,3903,4388,4377,3966,4100,3479,1922,1743,1727,1349,3572,2875,2677,2154,2084,3690,4213,6060,2822,2429,2851,4781,5160,5284,7499,9323,9208,6230,5317,5520,5327,4047,3424,2572,2254,3164,3336,3278,2940,2537,2258,2661,2500,2656,2945,2298,2356,1935,1855,1650,1434,1226,1249,1728,1748,1642,1511,1240,41,72,94,161,179,193,172,176,142,236,275,360,488,369,243,263,88,401,641,1355,1670,1646,2186,2186,3698,3143,4084,3713,2294,2474,1850,1116,1086,1257,1472,1087,1175,1063,732,647,1923,1977,1635,1625,1927,1516,1173,616,1050,1062,985,862,492,431,280,342,2344,2035,1687,1129,600,335,222,123,0,808,2005,1963,2863,2972,2641,2609,1407,1806,1973,2567,3336,4214,4764,6388,8390 +60,66,61,90,76,102,112,100,85,84,58,56,47,38,33,18,5,580,1193,1961,2424,2205,1624,1953,1268,5366,6268,8476,13278,13395,13806,22746,16453,17798,15995,13481,14240,11354,10460,8778,12771,13382,17470,18092,27214,27132,26790,35166,21758,21050,25070,32839,37866,33838,30032,21968,6362,6562,7514,8012,8264,10642,10158,6525,119,244,343,506,745,698,901,1440,817,1134,1744,1726,2019,2607,3582,2798,1164,1595,1570,1652,1594,1358,1258,853,393,297,341,284,213,198,104,62,0,71,121,226,291,338,425,457,527,674,930,977,1074,1223,1295,1392,1774,1913,2726,2644,3088,3314,4536,4396,4490,4297,4472,3476,2716,2425,1419,1512,3432,2325,2721,2154,1669,2808,3910,5296,4351,3190,3226,3597,4756,5980,5607,7736,8534,6765,4927,5228,5136,4596,4300,3326,2364,2892,2731,3066,2489,2134,2193,2244,1760,2228,2054,2108,2340,2319,1636,1852,1302,1166,1243,1500,1577,1252,1012,939,36,62,82,137,142,172,194,156,208,243,202,340,339,252,235,216,170,434,781,1245,2187,2341,2345,2092,3694,3935,4167,3182,2302,1814,1573,1384,1455,1679,1394,1408,1487,1192,1557,1346,2938,2488,2726,2528,2820,1986,1724,936,780,862,832,699,549,496,435,398,2293,1721,1339,884,433,356,175,115,0,950,2161,2486,3086,3294,2937,3236,3330,4378,5202,5984,7027,5439,5556,6581,8354 +72,75,66,79,70,72,90,84,45,44,52,54,40,38,24,15,3,325,795,1139,1848,1922,1549,1845,742,3092,4412,5715,10920,12887,15582,18943,10738,11819,14460,15045,13960,15275,13042,15439,14439,14000,20501,26242,25698,27998,33648,33805,36034,35617,23894,39879,54431,38474,35865,19332,7642,8546,10044,8174,11705,12590,10300,9556,62,175,326,438,513,654,664,928,604,871,904,889,1157,1920,2324,2361,767,864,1076,1377,1148,1040,686,532,223,240,222,194,108,77,70,38,0,86,144,272,189,309,379,316,541,715,808,1222,785,884,1314,1398,1928,2163,2344,2312,3303,4012,4252,4469,6089,5749,3724,3016,2938,1742,1381,1544,2443,1881,1930,1876,2024,3087,3884,5558,4765,4763,3684,3848,3421,5501,6028,7260,5993,5199,4456,4960,3612,4381,3817,3797,3625,3645,3446,2983,1673,1932,1650,1971,1326,1568,1835,2471,2294,1875,2204,1591,1472,1440,1262,1324,1343,1149,759,783,22,40,72,154,142,152,154,173,237,242,204,326,254,224,250,226,306,461,741,1190,2317,2517,2005,1880,4396,3870,3034,2461,2382,1832,2042,1823,1732,1428,1762,2068,1914,1896,2150,2617,3177,2607,2950,3341,3194,2932,2290,1680,840,888,740,715,499,540,518,382,1798,1869,1320,833,368,231,170,88,0,1200,2146,3197,3058,3292,4406,4552,6579,8243,7632,8868,11471,7807,6016,7640,7385 +82,68,60,72,56,62,72,64,38,46,44,41,36,26,20,12,2,192,400,578,861,926,645,856,357,2026,3638,5497,7006,8018,14228,19450,11287,14782,16138,15640,13577,13504,12964,14385,17274,20602,23814,27126,20476,29628,37949,41728,35020,32875,32029,40682,61726,46436,41962,26824,14561,11890,8380,11862,11868,11331,8044,6861,27,88,180,236,289,290,306,396,320,332,386,412,502,866,1150,1152,461,474,618,684,615,446,280,262,98,128,119,96,57,46,38,23,0,82,166,213,215,280,296,336,498,632,711,974,864,892,1199,1275,1728,2430,2773,2718,3282,3252,3931,4214,4197,4579,4307,3170,2680,1710,1633,1652,2486,2152,1634,2126,2682,3099,3171,4387,4788,4430,4078,3434,2223,3020,3751,4998,5284,4654,5660,5486,3527,3438,4122,3832,3802,3963,3901,2547,1597,1552,1419,1676,1726,1500,1341,1803,2000,2282,2284,1940,1630,1518,1592,1086,978,828,510,462,11,41,96,142,198,191,191,204,189,189,242,230,216,218,261,216,337,508,806,1170,2151,2107,2697,2502,3834,3146,2805,2482,2250,1804,2249,1558,1514,2081,2454,2198,2172,1888,1858,2333,2948,3320,3412,3197,3577,2718,1887,1638,863,758,616,698,565,662,616,446,1178,1203,723,487,356,263,178,84,0,1347,2859,4158,4975,5664,4760,6654,7957,9852,9294,9638,15084,12824,8001,8792,8468 +64,2122,4177,5746,6026,6539,9546,10042,8374,11374,15283,14883,18564,15097,17178,18928,15405,12864,14754,12678,8076,5086,3263,1726,0,2545,5672,9741,11801,15814,17196,19674,15750,11460,5709,4930,2767,2118,1318,739,0,3455,8092,10282,15128,15677,15704,30115,36363,40917,33575,21326,15700,14476,8500,4772,0,574,1343,2504,3022,2804,3933,5977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,137,148,204,239,304,410,522,535,450,415,439,381,368,392,487,450,288,173,85,69,57,24,0,417,802,936,1199,1046,1046,1299,2692,2444,2053,1474,1132,1347,1599,1699,1990,1774,1973,1438,1427,1192,658,379,0,118,280,371,452,516,458,475,540,688,677,583,715,829,923,1241,1629,1159,1060,943,792,845,717,566,326,403,647,774,917,983,1305,1400,1125,1140,1159,1004,811,790,645,433,406,338,171,163,151,169,200,217,406,577,612,464,502,508,459,404,275,293,273,258,181,348,442,618,799,1120,1101,1153,1411,1276,1252,1204,868,1100,1106,1088,1439,1719,1474,1316,822,1330,1913,3203,4694,3560,3180,3872,5517,5380,5022,8037,10889,17820,18835,17311,17114,16494,11589,13362,12851,11574,14544,12831,9098,10344,8921,7380,4179,6946,10286,12024,12155 +64,1810,3392,4875,5031,5951,7883,8948,8529,12400,15981,12696,12954,11986,16481,12903,14035,12805,11621,8706,5318,4770,3577,1976,235,2242,6157,7142,10551,12606,15695,14321,17470,12638,5142,4940,2746,2631,2678,2737,1959,5862,10708,13844,18966,20629,25139,28784,44892,34770,23458,18882,14269,11911,7703,3888,412,1070,1828,2243,3484,3212,3963,4891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,199,323,377,472,711,870,600,638,692,650,440,612,504,604,460,462,455,352,209,261,354,279,346,1135,1929,1972,2086,2252,2198,3040,3186,2752,2491,2112,1687,1688,2042,1931,1700,2232,1626,1909,1308,1008,529,324,0,98,230,277,372,458,489,478,469,528,514,568,852,910,882,980,1404,1110,1002,813,615,742,596,462,294,512,700,941,921,1137,1194,1228,1084,1192,1121,906,643,512,456,406,509,406,254,232,157,150,172,170,327,668,687,748,1054,1484,1667,2380,2686,1792,1184,1079,1094,988,870,1188,2338,3250,3802,5681,6868,7087,5912,6746,4492,5099,3865,4418,4680,4594,4002,3294,1102,1718,2553,4394,4565,4040,3721,4343,4565,4497,4682,7884,10848,14768,12706,15922,23733,19858,19355,13278,10920,11054,8655,9633,8850,9620,9237,9058,5925,10266,12020,11440,11766 +56,800,1864,2582,4223,3982,5176,5060,6654,10766,11606,11158,12811,12120,11794,14475,13148,9842,10708,7970,5104,4404,3090,1803,452,2903,4695,5242,7608,9486,10846,11209,14729,9024,6094,5852,3269,3801,4642,5266,3418,8196,12938,19001,18356,21720,29334,40980,38520,25448,24490,18993,19502,16168,9558,4933,970,1238,1791,3220,2884,3029,4114,6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,271,507,469,709,1023,1367,677,919,916,1050,646,701,816,1040,654,559,524,575,368,592,648,530,677,1925,2930,2696,3116,3006,3128,4003,3327,2792,3094,2278,1990,2120,2496,2262,1971,1838,2008,1700,1514,1048,611,357,0,64,120,205,318,391,430,418,373,372,528,804,719,1027,994,948,1727,1203,1024,1143,686,581,483,446,170,480,647,759,1112,1183,1001,980,1005,812,929,736,600,418,380,355,472,449,366,335,197,160,124,108,407,764,876,1066,1741,2757,2890,3309,4429,3451,2204,2187,1799,1507,1434,2027,3626,5140,7519,10159,12513,13065,12598,13002,8456,8588,7421,7847,6384,8010,7161,5654,1295,2339,2754,3927,4395,4556,3842,4777,3734,3998,4122,6132,10536,11200,11985,14089,28398,26046,21118,14310,13419,8410,6984,5086,9465,10736,9790,7702,8792,9272,13754,11366,11305 +39,570,1298,1606,3298,2990,2554,3020,6821,8020,7818,9562,10534,9834,7522,9947,14030,11128,11103,9144,6296,6675,5470,2872,584,2540,4047,6114,5990,7692,7625,7535,9152,6553,4119,5376,4628,7266,9283,12134,5639,12829,15246,24704,24541,25153,30253,40327,43382,40833,30003,21678,16554,14686,7338,3806,1315,1316,1666,2510,3274,3608,4016,7682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,273,583,504,1009,1294,1584,480,696,779,1076,1260,1114,1308,1765,907,724,768,748,672,750,820,842,797,1914,2930,3194,3956,3647,3262,4934,4160,3905,3835,2965,2342,3146,3330,2985,1258,1502,2127,1978,1681,1176,684,384,0,55,78,124,218,304,367,340,403,529,714,822,762,914,812,1030,1770,1514,1350,1122,780,624,498,404,131,337,522,708,831,810,700,866,946,875,826,538,416,424,413,260,451,408,326,246,202,146,147,112,291,807,1046,1649,1818,3288,3731,4710,5767,4133,3658,2878,2180,2164,2455,3602,5999,7269,8816,12374,15680,17380,19617,18526,18002,13128,12205,10190,10366,11988,12038,9407,1035,2256,2746,4340,5202,5324,6262,5820,2853,3702,4783,5751,7104,8743,8544,11996,28947,28290,20009,16376,12215,8628,6251,5067,6547,7374,8761,7276,9165,15010,15250,18838,20150 +36,317,736,874,1398,1793,1794,1278,7597,5332,5206,7421,8712,8451,6700,6606,21187,17039,13466,11055,8532,6642,5468,3618,651,2253,4217,5336,5506,5219,3567,3126,6972,6260,8074,7437,5288,8178,9269,10994,9254,20566,25252,27424,35173,53516,57308,57967,57543,44551,41989,29646,14874,13005,7239,3708,1468,1751,1984,2586,3072,4011,6130,10286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,244,608,786,1431,1667,1707,500,761,798,1032,1488,1682,1529,2146,1104,1454,1350,1389,1088,946,1132,942,1030,2551,3748,3835,4530,4523,5282,5970,4710,3386,2909,2623,2880,3088,2446,2136,1153,1260,1124,1027,1394,977,864,388,0,22,45,82,96,99,136,281,456,581,655,793,707,1000,994,1176,2516,2361,2113,1475,1020,904,546,356,123,246,432,593,690,486,415,400,810,786,670,451,403,402,353,272,400,343,247,243,184,146,112,125,191,807,1162,1587,2456,3058,4128,7288,6120,5471,3973,3391,2736,4836,6150,5241,10262,9266,12004,16483,18367,19797,17951,19353,21921,23364,23178,19523,11770,12054,13096,12759,1174,1918,3381,5414,5882,6226,6843,7508,1737,3222,3953,3951,4538,5719,8580,11456,37820,38257,31328,18337,10954,11412,8583,5815,4784,5136,4791,5993,8940,12999,18832,19322,22809 +26,402,896,1312,1067,1352,1532,1522,4803,4680,3399,5278,8318,7058,5539,5990,19118,18138,17502,12224,12320,7336,5054,3530,1432,2876,4429,4554,4340,4787,3809,4973,5967,6196,6491,8364,10149,10546,10877,16180,9228,14246,18254,26426,37077,44815,38335,41908,51628,42332,36629,25024,14230,12108,10126,5404,1560,1562,1526,2218,2667,4660,5851,11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,355,828,974,1340,1908,1890,753,1172,1277,1499,1356,1886,1785,2803,948,1342,1648,1528,998,1078,1510,1399,1395,3118,3854,3956,5331,5126,5304,5652,4567,3170,2413,2893,2436,2458,2581,1759,966,1144,1154,1260,1410,954,787,510,0,20,32,72,78,96,119,185,351,438,478,592,536,504,751,711,1710,1698,1920,1494,969,648,397,238,122,223,352,440,728,945,775,822,514,517,477,401,340,355,232,169,390,272,254,223,160,148,105,112,178,626,851,1426,2447,4092,4778,8362,8534,9474,8416,6496,7355,9672,9067,11152,10949,13652,13020,17194,26033,24068,22706,20386,21659,24021,25803,17271,10455,10774,12688,11328,2137,3235,3348,4865,4078,4532,6295,5286,1734,2753,3627,3464,4261,5173,7966,9124,55060,43104,33557,32636,19850,20523,15472,11424,7608,7466,10484,10620,11336,14827,15538,17403,19377 +23,486,980,1665,1094,1060,1506,1861,4256,3406,3267,3267,6334,6570,5847,5571,22172,18111,16530,15771,13868,11396,6996,4182,2803,4081,4145,4001,5324,5886,5686,7479,4375,6304,6324,8078,11803,13737,15884,18276,13616,16980,19064,27970,32145,31680,28794,31236,56852,37762,32238,20303,17016,16695,11055,6092,1282,1520,1452,2759,2899,6353,8352,10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,488,734,1210,1395,1752,2068,991,1542,1954,1576,1373,1832,2482,3213,1256,1319,1426,1452,856,1153,1472,1527,1361,3434,4678,5056,5902,6260,5482,6122,4642,3552,2602,2524,3085,2148,1932,1810,1144,1446,1436,1204,1012,1082,834,668,0,16,30,46,49,66,76,122,152,258,291,260,218,313,324,445,1658,1686,1548,1135,831,675,296,165,87,206,318,501,744,946,1193,1209,373,380,452,391,227,187,162,140,316,312,223,141,113,124,130,143,124,508,880,1093,2637,5054,6782,6577,8275,10036,12422,9994,10593,11959,13898,18370,12756,14961,16416,18145,35884,30315,24888,19172,27372,23362,22329,19256,13599,15195,13139,12855,3797,4032,3798,4915,4122,3852,3668,4484,1226,1512,2360,3252,4351,4755,6976,8237,55950,54194,43920,44106,34660,25213,19467,17953,13140,11592,13304,10246,18846,18801,15092,12743,13920 +12,461,1049,1636,1552,1449,1468,1647,3427,2828,2180,2356,3273,3827,3956,4838,26952,25816,25586,21216,14278,11702,9629,5511,2695,2998,3651,3391,3261,4198,4624,6176,3121,5490,6760,9798,10438,14736,18776,20006,15762,17574,19457,24026,45345,37302,25546,36322,54154,36607,23605,23263,15271,13544,9571,6265,1736,1521,1717,2696,2808,5845,7410,10753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,469,758,1138,1763,2275,1963,1353,1840,2307,1726,2143,2418,2977,3500,1426,1530,1458,1389,1288,1568,1896,2232,2112,3738,5137,5851,7947,7440,5591,6124,3166,2570,1978,2195,2022,1901,1747,1420,908,1016,1318,1194,900,1066,676,636,0,9,17,22,29,34,36,54,94,116,144,150,125,152,135,198,1826,1494,1162,1165,863,640,353,195,51,191,247,347,511,793,1111,1622,255,232,242,217,202,176,123,118,196,203,182,141,135,128,104,112,177,594,964,1546,2234,3668,4997,7720,11562,13416,12304,14278,13164,18544,19204,19319,16747,23735,24505,27624,31879,33743,32852,24237,24362,19192,18613,16184,13749,10588,11322,11435,4876,4589,3049,3316,3021,2980,3064,2962,1526,1710,2473,2689,3874,3988,3824,4351,40714,59503,64262,57186,41356,38374,30441,21167,15883,15314,16130,15258,18065,18754,22562,18780,17009 +0,61,149,217,323,847,1519,1651,2152,3187,4715,6017,5432,5664,6529,6119,28265,25154,31076,24890,17569,16738,12501,8883,3866,4114,4620,4527,3048,4350,6273,6260,2652,4703,6006,9528,12794,16956,16796,20480,25025,35652,47832,49170,51062,49419,48260,45092,44163,45256,49298,48770,39238,24573,12631,8681,1838,2086,2752,4428,5433,6154,5073,6977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,407,622,996,1485,2036,2166,1938,3592,4085,5131,5186,6098,5893,4247,2170,1373,1128,927,843,896,1367,2413,3160,3748,4876,4713,5966,7959,7532,6971,2944,3491,3408,2572,2396,1585,1171,847,520,576,530,488,493,598,547,568,0,2,3,5,4,5,4,5,4,6,6,6,4,5,3,2,1576,1400,1138,1276,1136,898,709,375,0,135,328,632,792,1237,1586,1632,75,100,165,167,188,159,141,148,169,158,101,93,121,113,150,110,183,1080,2056,3393,6331,7706,9113,12819,12705,15149,12684,15109,14628,14974,20148,17477,20786,15352,10929,9051,9144,16105,18829,17325,23898,29645,38444,33172,31470,24776,23064,17760,7082,9344,8678,7986,5725,4054,2941,2665,2191,2044,1668,1565,1690,1194,1247,1294,42891,40277,52577,42393,48325,37762,33690,21181,15662,14220,17488,16676,14286,21018,21533,16581,16998 +0,202,378,531,534,1129,1417,2010,3028,3882,4318,5720,5615,5920,5278,5373,31591,23290,29055,22547,16219,15696,9492,8176,2958,3086,4146,3226,2575,4003,5292,6191,2086,3612,4489,8360,11128,11330,11749,15599,18905,28156,30678,38304,40543,38414,41471,35369,43382,45582,47578,44864,28833,19985,13072,8269,2434,3039,3618,5496,5995,5798,5544,9270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,464,752,715,1323,1996,1670,2526,3449,4154,5010,4966,5521,4818,4188,2818,2757,2637,1704,1929,1954,2126,2902,2966,4000,6030,6644,7744,9396,8967,7074,2000,2670,2494,2024,1664,1794,1004,1035,391,504,622,516,656,556,453,504,144,149,148,139,161,104,50,40,8,44,61,85,110,144,279,296,975,852,768,871,758,630,453,280,0,154,263,550,628,1072,1132,1244,244,232,232,243,218,196,183,188,162,142,111,108,119,130,142,120,182,1684,3809,6123,7621,8286,9709,15062,11398,13413,13903,18466,19384,23536,23198,21412,19896,16650,9457,10290,7976,13550,18937,20601,37866,33836,36651,29346,41094,34996,27645,19066,7729,8630,8359,6776,6177,5270,3208,2952,1700,1916,2254,2594,4006,2997,2917,4402,56444,49884,45324,40874,43050,34959,32966,20486,11248,12927,16958,14206,14238,15069,15699,14485,15149 +0,342,590,915,873,1083,1814,2478,2965,4477,4528,6074,5050,6332,5794,5880,25983,21790,20532,14492,12989,12275,10120,7681,1960,1994,2816,2558,3241,4006,3473,4358,1662,3272,4072,5074,6042,7466,9992,10670,13593,19614,24048,33180,26556,28196,22838,21502,42756,45127,35826,23577,20804,17415,10949,6795,2278,3396,4372,7902,8639,8124,8002,8520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,436,635,751,932,1430,1258,2416,3134,4830,4581,6073,5924,4442,3281,4575,4440,4244,2654,3286,3841,3123,3718,3290,4046,6785,5359,11395,9268,8100,6089,1326,2008,2051,1662,1745,1301,1153,930,307,582,770,806,990,681,501,380,243,240,334,279,308,170,96,46,11,73,136,172,261,376,475,609,702,696,592,692,669,555,362,211,0,108,214,563,743,1004,954,1225,346,247,245,266,272,271,181,198,105,120,101,121,77,125,136,119,220,2419,4802,6277,8060,9181,14109,17060,6540,11964,15604,16119,22462,23910,23382,19742,17288,13014,11438,11311,9381,9674,12773,16959,45008,40926,34047,38300,47846,35556,23064,16570,8040,8088,5960,4464,8662,7516,4335,2509,1425,1700,2376,3562,5810,4344,4484,6859,56168,60824,55168,51818,45538,29594,27386,24867,8892,12118,14878,13386,9875,10709,12278,15355,14589 +0,367,708,1240,1309,1566,2583,2996,4725,5490,4597,6426,6532,7318,6710,6829,15638,15868,14983,14903,13160,11689,9103,7916,1184,1686,2129,2396,2476,3255,3388,3758,1238,2148,2722,3729,3475,5680,6407,6132,11063,15465,14912,20586,21084,21380,20159,25248,38798,32167,26895,19976,20620,15654,8512,6158,1839,3258,3536,5988,9742,8732,6224,8785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,266,428,484,751,897,1072,2505,3188,4897,4782,5819,5553,4111,4242,4500,4470,6027,4422,3816,4475,4293,5190,4204,6384,6979,6554,10067,9607,9884,8286,1113,1317,1556,1196,1147,916,837,903,352,592,925,942,1277,789,547,466,466,548,569,453,402,272,139,72,12,106,214,308,334,538,674,974,714,565,599,564,478,490,381,182,0,111,206,507,500,570,640,1004,451,381,260,322,272,233,158,169,89,106,92,105,67,96,123,114,382,2964,5030,7746,9942,10471,11670,13415,5390,10520,14721,17054,22725,21138,22460,22112,13322,10860,9044,8875,7183,12584,13659,16196,47806,52578,39739,38540,39581,34374,22720,14492,7485,7460,7405,6324,6571,6500,5022,2728,1071,1992,2532,5224,8208,8750,8008,10676,57376,54661,40837,40405,36386,29150,23577,19384,5912,9458,9261,10254,8718,8370,7748,10582,11776 +0,516,986,1828,2394,2186,2566,3577,5586,7429,7365,7186,7556,8607,8875,9046,9780,9356,8899,9058,8956,10363,9316,8601,866,1361,1526,1886,2214,2476,2163,2547,519,758,1031,1102,1386,1690,1830,1945,8780,9000,13119,11592,11984,18374,23395,29335,31998,22589,22844,22942,15916,9482,6964,5009,2270,4204,5294,6051,7777,8291,6041,8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,180,203,268,397,685,778,2651,3349,4142,5137,4776,3985,3397,3114,4368,4100,2851,4076,4408,3710,4476,5727,4567,4576,4630,8449,10312,11427,11276,8242,1416,939,631,531,387,620,928,1081,398,537,680,1217,1368,941,970,736,782,748,721,646,435,321,318,201,14,102,226,456,559,809,1073,1028,644,668,613,486,406,314,130,70,0,54,121,210,383,520,571,553,545,411,284,255,303,234,157,124,113,87,58,50,56,83,122,108,544,3732,5736,7716,9010,10172,9540,12669,2816,4837,8282,14851,20865,15684,17416,22241,6647,8874,9379,7618,7831,11013,13380,17439,50075,53587,41138,40512,40436,34412,30384,15510,10178,9807,6450,7708,6956,5712,3378,2002,1173,3161,4385,8287,10204,8990,8715,11139,43315,49084,40099,36606,23762,27700,23997,15307,3358,5955,6750,6854,9050,7245,6263,4994,6207 +0,844,1917,2714,3397,4901,3915,4664,6727,8664,8684,9489,9326,7966,9090,8376,8663,9472,11106,9912,8815,7569,7308,6402,1095,1470,1442,1745,1634,1920,2436,2560,491,690,950,1064,1367,1393,1592,1974,6157,6330,11878,11784,10831,16199,13890,20755,17902,20996,21490,16742,11918,7351,5674,4004,2312,2694,3429,5046,8647,7722,5668,7054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,332,414,476,596,921,994,2257,3036,2970,3967,3757,3754,2840,3087,3064,3170,3455,3378,4821,5264,4437,5894,3612,4736,5732,7964,10182,10497,10778,7232,1216,911,671,464,574,660,778,871,336,628,737,1240,1285,1098,972,822,1169,796,934,673,666,422,316,235,34,168,310,426,722,966,978,1190,498,492,452,390,231,180,94,58,0,62,110,240,327,453,521,715,756,622,434,374,371,286,150,106,109,73,54,45,44,69,86,90,542,2839,4848,7796,8905,13224,11247,14502,6294,7211,7609,11340,22600,25248,16334,19678,7728,9662,11357,9788,9795,14639,13932,21360,56636,48900,42656,37004,36711,32229,29082,15488,12766,10371,5154,6729,7841,5054,3334,1998,1055,2930,4213,5894,8817,10200,11587,16728,42656,37926,32311,28581,18378,20814,17478,12766,2310,5122,6854,7998,13375,10014,12038,8979,8037 +0,1240,2456,3583,5179,5087,6452,8648,8341,10525,10371,9180,8619,9539,10650,7958,8672,10376,10798,9348,5795,5275,5198,4252,1662,1936,1668,1684,1323,1498,1943,2040,590,673,728,758,927,1122,1214,1477,4438,6741,7360,8235,8923,10187,10785,13644,11628,10984,13732,11206,7509,6097,4062,2748,1690,2082,3234,4948,6925,5985,5504,4555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,550,639,591,861,1057,1337,1598,2463,3264,3671,4477,4102,3166,2768,3077,3774,3258,3183,4690,5985,5962,7048,4112,6391,6566,7839,10228,10433,8034,5928,829,770,487,588,649,630,655,774,386,734,1031,1818,1499,1571,1194,1059,1287,1134,933,620,681,603,406,205,50,194,315,410,831,1195,1337,1310,239,267,290,249,142,116,73,39,0,80,140,276,255,485,616,730,979,610,542,476,365,339,202,122,74,58,56,38,27,42,72,71,455,2639,5734,7574,9901,10248,15402,13314,9841,10345,8787,9938,30115,28426,21360,15450,9096,10504,15728,13077,16127,15092,17696,36387,45295,39101,45058,48145,25631,28305,24640,20552,11663,7427,6270,6376,7991,4642,3112,1723,798,3012,5126,7434,11465,14548,13058,15459,29901,29619,29030,22886,17024,11926,12482,7412,1099,3680,6631,10634,15148,15071,13943,14818,11231 +0,1538,2914,4981,6126,5855,5507,6242,10327,9622,10420,9227,11530,9356,10076,9336,8834,10431,10429,8786,5086,4836,5497,4564,2246,2091,1616,1332,1135,1198,1210,1395,545,526,512,566,572,602,799,702,2185,3537,3628,4259,6262,6534,5526,7088,7410,6582,8277,7522,4000,3704,2102,1578,1449,1747,1999,3106,3783,3935,3877,3682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,654,938,1012,1228,1635,1566,1889,2392,3318,3616,4646,3636,3442,2547,3331,3694,4513,4210,5071,5572,4248,5508,4000,6040,7500,7360,9751,8172,7315,4967,463,447,371,499,687,781,885,734,623,1034,1214,1636,2015,1742,1242,1348,1537,1162,978,770,579,556,481,252,97,313,438,600,1062,1338,1706,1524,132,150,136,127,69,50,43,21,0,84,154,272,279,460,585,908,939,792,594,454,398,318,240,133,34,40,42,30,23,37,51,56,486,2980,7315,9201,8589,11728,14182,14859,14062,13501,16973,16138,22532,24738,17976,15341,13945,14532,20550,18697,20622,21954,27641,35965,44310,38424,33619,35872,27620,23826,16722,17278,15176,10106,9466,6930,6904,5036,3892,2247,341,3048,4892,8814,13590,11874,11650,15774,29386,21262,15599,14008,10628,7426,8236,4285,620,3236,5764,11044,12740,13232,12854,16296,14335 +0,468,999,1868,2578,2143,2293,2915,4660,7928,8741,11344,13663,15867,12806,10018,10531,10892,8566,10096,9769,8116,10470,9173,10777,11720,8806,8543,5996,4591,3452,2034,501,475,588,439,360,324,210,88,0,288,716,801,1106,997,956,1613,1822,1166,1034,966,906,860,598,279,0,226,461,650,842,1780,2673,3695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,48,58,89,148,235,304,366,384,338,384,526,1369,1976,2646,3314,2734,2040,1655,872,631,341,296,204,732,1080,2192,2895,2842,3666,3823,0,140,257,374,483,758,892,1088,969,1637,2122,2213,2331,2234,2052,1762,1642,1562,1503,942,596,520,619,612,520,914,1675,1735,2003,1770,1540,1943,0,25,48,74,129,127,182,279,330,260,305,398,400,516,476,609,912,878,723,601,364,308,360,367,388,406,331,288,334,278,131,88,439,1546,2604,3490,5250,9808,12174,11716,12576,16431,16593,19541,19474,19368,26251,24939,18542,19063,20530,20572,25825,15898,13754,15384,16089,14221,19004,27148,27550,24308,21249,20266,15418,15511,15760,11520,8116,6113,5273,3200,2146,3227,4292,5335,8135,8328,10245,16597,22922,21114,19434,19244,15365,22723,22793,24134,27271,28242,27864,27153,32829,36453,33839,22524,17356 +0,433,970,1652,1833,2580,3002,4720,3598,5248,5997,11928,10118,12168,8002,7777,9475,8346,10792,10632,13154,11502,10463,11089,9728,9912,7773,7313,4900,3776,3695,2260,506,441,496,403,285,293,256,154,90,314,826,838,990,852,1180,1511,1669,1447,1111,894,716,728,520,206,0,220,372,586,809,1612,2320,2834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,58,77,67,142,251,323,311,387,511,500,764,1480,1783,3002,4557,3604,2700,2133,1324,796,380,278,168,720,1272,2274,2732,2380,2813,3841,0,108,225,266,468,674,630,804,723,1234,2038,1713,2150,1904,1569,1721,1698,1392,1411,970,687,498,511,616,433,806,1334,1652,1618,1530,1524,1793,0,26,52,84,144,114,163,230,264,239,295,448,595,667,694,686,676,742,646,555,322,350,334,358,215,276,268,276,270,212,135,85,433,1654,2368,4219,6954,11344,10137,12030,8984,13254,17558,17396,15242,13368,17463,18894,15471,20308,25646,26528,20004,18282,12790,14377,14093,15202,20722,25202,25276,20802,20762,17444,20034,16822,16212,12150,9911,8750,6295,4188,3436,4270,5344,6212,7590,6480,8469,14208,29642,27650,23834,17631,12190,19384,24826,23089,25321,24898,28094,27378,38760,37080,29903,22636,12704 +0,568,1001,1413,1711,3132,4352,5830,1960,3431,4352,8545,11532,9431,7015,6064,6511,7732,10294,10283,12337,11727,10012,7743,11867,10904,8412,5786,3649,3386,2855,2308,558,436,386,496,282,247,230,185,210,518,740,703,708,700,1018,1200,1880,1930,1544,1238,728,582,446,186,0,202,436,645,789,1558,1868,1773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,53,70,62,186,334,428,352,446,544,534,1110,1808,2053,2505,5013,3896,3324,2599,1404,1111,483,251,150,990,1564,1778,2704,2380,2162,3300,0,87,172,171,393,400,528,556,593,786,1282,1416,1709,2044,1756,1396,1283,1079,945,718,552,474,433,370,258,609,1060,1391,1518,1353,1604,1221,0,31,51,77,117,138,149,235,144,251,324,499,592,529,700,981,743,640,622,477,397,373,396,425,145,187,188,273,303,208,118,85,343,1660,2980,4667,7610,11473,12378,12862,6807,10853,13162,16921,8972,11539,10836,9082,19849,24763,24160,29262,22140,16333,15822,10940,9379,14896,15966,14746,21454,17444,13612,12982,23958,22148,19886,14204,13326,10668,5654,3942,4129,4631,4664,5990,4884,5570,5997,9271,28234,29004,26480,20418,13854,18790,18622,21774,17361,19609,22650,21281,36112,24935,23430,15590,11565 +0,510,1003,1763,2306,2882,3125,4571,1493,3066,3848,6589,7820,6027,6248,5644,5764,10094,12376,12327,11335,11658,9527,8916,13059,9338,5929,4592,3731,3723,3822,2410,562,580,387,478,362,359,298,216,292,402,594,551,491,690,1139,1566,2291,1760,1566,1160,994,760,654,342,0,183,376,634,789,1357,2029,1848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,41,72,97,205,346,390,414,736,873,902,1331,1684,1889,2469,4838,4404,2875,2480,1891,1120,575,331,92,691,950,1220,1979,1625,1810,2374,0,45,118,142,257,282,374,397,621,748,1156,1215,1524,1555,1254,1164,744,710,555,604,388,474,474,431,230,696,1012,1346,1582,1465,2093,1676,0,26,39,55,86,117,98,154,96,222,375,554,561,657,532,809,547,446,376,456,469,440,391,422,85,130,137,178,178,142,114,89,360,2098,3069,5042,6178,9097,8669,12328,5408,6990,9287,13165,7349,8948,12165,11082,22268,21604,21607,19338,23742,17318,14342,10623,7750,10898,10062,12464,13711,13529,10934,10880,22496,19413,17667,16354,14394,10608,7952,6562,3708,4959,4039,5082,4485,4750,5902,9714,25425,24948,29040,19638,15390,21012,24188,27792,24876,25853,23847,20606,30045,23342,17343,14118,11098 +0,629,1069,2097,2824,3352,2793,3276,1288,2298,3186,4642,5184,6172,5953,4766,6914,10073,9879,12500,11716,9155,10996,10937,12561,11412,9020,7836,4500,3717,2407,2367,759,757,848,702,533,563,476,350,307,265,282,273,320,506,884,1403,2558,2510,1766,1846,1408,1032,916,458,0,165,358,463,580,1064,1241,1694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,63,79,105,128,191,295,493,488,677,884,1163,1207,1768,2296,4944,3798,4020,2343,1829,1503,963,555,64,332,592,1362,1724,2168,2575,2810,0,31,62,90,139,163,139,180,735,710,642,1029,1366,973,823,709,242,283,316,346,344,367,468,342,267,658,907,1328,1318,1251,1735,1631,0,12,24,39,68,66,87,128,62,388,604,820,806,963,1106,1053,205,232,354,510,501,455,331,401,62,101,111,111,136,123,115,77,358,1970,3836,5700,6289,8441,10182,13222,5154,6904,8870,8465,8319,7988,8082,7087,23974,23058,25931,21483,21876,20221,11946,10383,7716,10094,10541,10580,8619,9082,9740,8882,21042,14876,15972,17930,16311,10877,7862,5374,4591,3286,3483,3375,4785,6056,6011,5345,34439,27062,18287,21673,21686,22417,18901,22676,24174,25020,21696,18346,19180,21196,16716,12782,10861 +0,464,905,1564,2272,2689,2697,3926,1658,2202,3306,4496,3234,4520,5806,4276,6570,7058,8967,9078,9042,7783,8748,8869,7604,8246,6872,5806,5484,4228,2326,1910,592,849,687,544,405,472,449,449,458,399,467,476,719,1074,1429,1827,2244,1870,1445,1566,1314,909,759,331,0,138,302,348,653,1033,1124,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,109,182,271,286,234,320,480,476,575,899,837,1207,1647,2412,4678,3888,3177,2384,1862,1378,1008,612,106,371,672,1102,1186,1667,1844,1902,0,20,55,70,92,126,131,116,478,651,636,966,857,714,610,542,140,214,283,328,283,390,364,350,356,566,887,913,998,1126,1282,1464,0,12,28,45,50,54,94,106,56,343,622,620,584,782,976,1088,317,384,509,506,577,571,440,446,63,92,130,96,150,101,88,60,261,2244,3194,5125,7440,9392,10129,14052,6444,6474,8603,7580,6477,6860,8174,6365,30194,26770,26920,23322,24071,17172,14671,8957,5792,8060,9054,8508,7522,6512,6876,6494,21108,18668,19605,14510,14455,9810,10836,7926,3890,4043,4994,4589,3558,4096,4216,4538,28112,24593,15704,19732,16355,17497,20506,17386,19790,17522,14646,12986,17186,14689,12731,13874,14965 +0,445,793,1302,2216,2926,3480,4414,2158,3259,3570,5513,2590,3675,5512,5922,5985,5716,6229,5615,5629,6165,7660,8734,6409,5811,5380,4794,4894,3896,3110,2081,698,561,640,733,405,394,452,479,710,562,666,598,1058,1535,1809,1836,2156,2267,1632,1230,838,554,462,237,0,101,227,363,638,922,956,805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,168,302,357,353,372,390,691,579,436,654,889,1325,1360,1815,2902,2798,2948,2166,1461,1008,1018,730,152,354,547,837,1141,933,1048,1118,0,14,30,49,78,71,89,118,439,516,542,688,446,406,238,242,97,127,196,176,348,266,256,277,336,516,584,736,778,981,1220,1410,0,13,22,46,42,66,77,94,63,238,442,774,491,746,788,778,408,432,517,485,531,520,515,430,80,114,110,96,114,77,64,50,129,1731,3064,4172,6990,7376,10166,11774,7120,7408,5577,5102,4908,5880,5968,5490,28245,20158,19735,23470,18732,13102,12762,8160,3579,4888,5944,5286,4677,4238,5060,7036,14208,17773,17120,14078,14827,14629,11382,7729,4428,4524,4851,4650,3425,3699,4446,2854,27995,20479,15863,14468,13025,12427,17262,11978,9836,8524,11080,12691,13775,16713,14976,12332,15547 +0,396,551,1130,1663,2328,2566,2998,2805,3397,3569,4551,2630,4292,7512,6530,5857,4334,5376,4046,5686,6260,6471,6186,5690,4046,4882,5040,4856,4172,2448,1878,571,606,497,533,483,484,480,448,860,760,842,832,1068,1870,1681,2300,2257,1644,1464,1163,472,361,342,174,0,115,216,400,583,748,744,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,175,260,433,365,419,368,602,489,297,462,444,768,732,1362,3160,3027,2267,1871,1508,1140,1071,652,305,397,416,455,630,602,600,716,0,9,14,28,47,40,51,60,256,273,255,370,246,201,141,140,50,104,186,178,292,262,226,279,388,460,483,491,637,993,1301,1300,0,12,25,45,53,51,58,68,57,238,480,535,705,790,812,904,727,582,495,530,487,552,544,327,103,135,114,78,71,54,42,28,63,2025,3797,4922,5642,8519,8066,8325,6270,6692,7116,4944,4119,4764,5089,2971,26799,21259,18255,18378,14725,10292,9285,6168,2748,4138,3435,3254,3916,4792,5067,7420,18962,18239,17302,14381,11485,10478,8415,6370,6498,5287,4057,4538,3412,3615,4163,2534,21350,20477,19273,17451,12088,13076,13348,9112,4990,5472,8703,11166,12341,13248,15648,11656,14703 +0,636,1259,1520,1876,1973,1702,2238,2764,3493,4505,8195,11193,11824,12921,11096,3888,3609,4074,6792,8366,10020,9214,7505,5755,5154,5124,4362,2279,1549,1192,929,470,371,281,291,246,310,320,613,747,1049,1022,865,1066,1027,1101,1649,1693,1243,714,480,261,233,166,88,0,89,153,251,416,593,586,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,106,143,192,249,357,386,524,476,279,244,138,179,244,406,3284,2313,1994,1511,788,578,611,557,356,355,371,316,268,230,188,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,75,114,115,211,333,402,467,535,664,835,1214,1106,1086,1084,0,13,22,31,49,70,77,66,68,224,428,533,720,787,847,808,1034,974,911,957,782,606,518,349,171,176,126,146,137,127,85,38,0,485,1013,1271,1836,2962,4165,6042,7320,7504,6554,6910,6080,5551,3608,1815,23803,19518,8817,6899,5561,4111,4110,2560,1546,2206,2810,3607,3802,5350,7401,8062,21926,20820,18684,21177,20883,16951,17795,10994,7402,8811,7307,5200,5296,3255,2653,1495,18091,18581,14842,11388,11862,9756,9893,6819,2374,1824,1766,2388,2395,4370,6771,10596,12435 +0,538,1129,1260,1150,1444,1462,1836,3317,3828,3254,5583,10011,9536,10218,8609,2836,3392,4500,5938,7245,7365,6182,5968,4101,4279,3811,3194,2092,1446,935,904,566,322,285,277,246,291,349,482,548,742,838,832,772,1106,1145,1804,1140,981,627,434,405,304,158,84,0,96,139,296,396,566,432,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,89,214,202,342,429,488,402,454,289,238,144,224,277,340,2932,2430,1848,1416,804,589,671,428,288,280,308,281,268,196,176,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,115,125,186,334,435,419,437,626,777,1314,1230,1155,1178,0,13,24,30,52,68,84,68,64,238,316,442,729,822,768,542,693,746,765,739,568,542,519,286,151,176,165,144,145,102,78,40,0,475,904,1337,2280,3058,3943,5674,6451,6170,6463,6621,6470,5115,2740,1674,17609,11560,9240,7142,4464,4090,3519,2790,2141,2948,2882,3837,4817,5743,9289,7124,18953,21226,18078,19633,23584,21412,16290,12268,7828,8489,6654,5041,4280,2907,2516,1199,12171,15148,10360,9477,7216,6562,7837,5462,2305,2394,1976,2766,3388,4594,6563,7776,9843 +0,332,623,793,948,1224,1412,1394,2867,3841,3535,5210,7656,6114,6179,5596,2556,2515,3542,4481,4016,4984,5450,5302,3856,4104,3138,2176,1542,1433,1050,638,530,321,261,259,259,376,498,606,568,446,528,581,538,910,1346,1906,1143,878,777,488,431,265,220,116,0,80,156,199,303,300,414,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,92,159,274,404,441,420,433,412,343,223,116,220,288,375,3393,2762,1870,1374,697,500,538,322,340,306,314,228,248,226,128,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,55,117,152,209,297,401,246,451,516,562,1100,1197,1222,1650,0,11,22,23,45,67,67,76,38,144,272,392,552,694,667,483,613,717,620,598,555,496,429,264,111,147,156,160,110,80,65,30,0,542,1066,1528,2174,2217,3288,4216,6202,6296,5488,4606,6206,4583,2662,1555,9725,8325,6708,6151,4593,4425,3538,3218,2905,3800,3920,4737,4945,6235,8906,7775,17346,16636,18393,16088,19340,16970,15765,9605,7337,5829,6550,5312,2947,2106,1772,1029,8982,8644,10318,7994,4661,5902,5454,4307,1954,2235,2993,3251,4585,4601,4302,6126,7177 +0,228,447,598,937,1024,967,1204,2398,2982,2166,3279,5023,4520,5548,3914,3062,3076,2302,3266,3571,3995,4757,3864,3030,3444,2941,1888,1396,1132,838,682,423,349,265,316,245,406,602,640,318,338,392,548,604,857,1201,1632,1077,1048,786,537,374,286,177,118,0,52,93,148,158,210,276,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,76,164,206,364,390,420,238,254,221,180,137,267,269,362,2628,2332,1464,1213,575,468,373,270,226,202,246,204,160,160,90,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,42,94,140,161,238,314,177,368,447,487,844,1010,911,1070,0,11,22,27,33,50,45,60,43,158,277,348,542,552,543,378,650,622,671,534,537,362,394,186,98,102,113,123,90,70,48,28,0,540,1119,1437,2304,2176,3057,4325,5352,5940,5915,4573,4204,3128,2551,1268,4928,4700,3847,4024,4681,3545,2864,2853,3360,3784,5753,6447,5530,7273,7744,8146,17985,12780,18198,16624,20399,21166,17222,11293,7085,5534,4918,4772,3758,2684,2294,1152,8214,7266,6625,4923,2810,3464,3587,4260,1333,2542,3983,4078,5697,4508,3725,4507,5828 +0,140,241,396,684,882,879,818,1534,2344,3106,3473,3206,3011,2445,2392,3385,4300,4398,3000,2942,2971,2069,1254,2614,2214,2347,1797,1142,787,765,463,359,365,474,446,350,327,368,409,93,157,295,441,563,1091,1545,1344,1489,1415,1063,646,414,339,244,126,0,22,40,60,80,103,122,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,135,184,222,327,325,346,152,154,192,140,122,216,315,337,1806,1167,785,686,470,505,388,215,196,224,178,134,98,63,51,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,76,85,113,142,173,199,87,163,226,487,646,619,603,881,0,9,18,26,26,27,26,32,33,112,242,294,354,377,424,363,681,632,473,508,383,278,162,128,119,96,67,68,76,45,31,15,0,654,1220,1437,2052,2518,3614,4088,4392,3648,2804,2378,2960,2004,1254,616,2552,2410,3424,3873,3354,4050,4026,3691,3478,6579,8144,8566,8736,8236,8124,5686,12782,10981,11530,12017,16478,12127,11670,11934,4901,3931,3686,3831,4287,3821,2604,1406,5857,5808,4624,3334,2262,2782,4439,4246,1095,2156,2521,3294,5563,5422,3877,3334,3200 +0,108,222,329,544,648,565,646,1190,1832,2875,2918,2539,1903,1625,1741,2986,2710,2772,2330,2892,2236,1775,1175,2043,1756,1398,1351,1010,716,518,314,308,288,372,346,218,256,302,359,78,157,194,338,506,724,1286,1176,1070,818,882,523,252,234,141,86,0,17,33,48,66,86,94,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,114,121,156,228,266,270,120,126,150,122,97,172,245,272,1474,1063,640,544,276,327,296,186,131,130,111,99,69,58,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,51,64,74,88,152,196,71,128,199,338,416,520,608,692,0,8,14,17,24,26,18,24,20,116,220,244,270,281,263,228,594,496,491,400,340,240,116,93,66,60,53,50,53,38,27,16,0,432,931,1178,1311,1982,2487,2476,3746,3409,1896,2094,2588,1644,1104,535,1924,2112,2295,2758,3774,3569,3425,3724,4473,7152,7848,8712,7358,7478,7551,8857,17492,11912,11215,10656,15579,11788,10414,10918,4591,3918,2909,3526,3739,3516,2531,1242,4090,4316,4732,3170,2244,2670,3363,5073,1619,2324,3054,3844,4088,4598,3620,3335,3528 +0,90,176,289,433,478,410,419,1010,1116,1736,1890,1512,1284,1047,1054,1695,1917,1952,1948,2037,1296,1184,898,1528,1398,1092,903,599,396,265,182,216,217,266,213,145,184,172,271,62,103,165,216,383,596,774,870,516,516,427,351,152,144,104,54,0,17,28,36,40,60,84,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,64,66,99,121,139,172,52,58,78,78,85,142,152,163,954,812,532,325,173,198,171,121,77,70,80,75,51,44,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,31,38,46,65,92,156,62,88,122,169,310,386,447,500,0,5,8,13,18,15,14,15,12,64,124,102,122,126,174,128,402,449,356,353,237,140,88,53,42,51,46,45,37,23,16,8,0,253,592,785,780,1155,1258,1659,2348,2336,1731,1115,1524,1444,912,475,1152,1236,1844,2060,3006,4153,4301,4398,6075,8112,7862,7258,6638,10056,10488,14310,16717,13677,11012,10266,9504,6852,7050,6867,3106,3635,3046,3185,4840,2968,1624,824,1767,2821,3762,3640,1797,2989,3772,5131,2517,2430,3364,4290,3940,4321,4029,3998,3074 +0,49,82,134,199,192,234,198,554,694,868,1040,761,631,431,526,990,879,925,856,1178,802,622,482,715,590,495,356,338,196,158,110,100,130,134,89,62,89,85,137,37,52,80,92,202,250,338,360,282,272,233,152,75,72,46,25,0,10,17,24,22,34,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,32,40,50,58,82,94,29,34,43,41,44,67,63,86,528,370,233,160,79,82,75,60,38,42,34,36,31,24,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,17,22,20,36,45,75,33,46,73,106,152,213,269,246,0,2,5,7,9,9,8,8,7,32,58,52,51,65,98,70,207,230,192,177,134,82,39,27,25,26,22,24,22,14,10,6,0,158,307,393,406,522,685,741,1369,1270,973,664,670,656,503,214,527,1090,1458,2140,2895,3156,3676,4390,5091,8069,8445,9248,7133,11283,15212,14274,14141,14907,15626,11694,11627,9784,9414,7021,3412,3434,2777,3741,3771,2528,1424,794,887,1768,2622,3170,2694,2759,2591,4089,4280,3842,3552,5382,6024,5639,4924,4029,2976 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,887,959,1484,1793,2298,2767,3564,2519,2494,2163,2408,3020,3528,4996,5352,6086,5768,6962,9577,8466,11249,10943,8698,7479,6391,7664,7684,5233,4808,5000,4962,5204,4299,3885,2488,2221,2641,4078,4676,4643,4412,4280,4958,4206,3281,3081,4086 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10883,11507,11764,8240,4892,4517,4528,2788,7762,7454,4224,2926,1968,1327,1104,592,0,12,26,42,66,67,85,123,110,118,112,90,77,58,30,15,374,518,786,928,1106,957,880,550,2396,1816,1282,1081,854,544,312,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,1042,696,674,227,220,130,69,0,0,0,0,0,0,0,0,98,186,205,256,370,518,464,708,1822,1606,1427,1654,834,714,329,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,797,1046,1479,1872,1769,2842,3142,2158,1854,2353,2388,2690,3103,4474,5675,5514,5408,8855,9370,10592,11037,10686,9167,7022,5568,4879,5630,4358,3443,4508,4570,4858,3781,3182,2964,2636,2437,3718,5426,3997,4053,3986,5160,4918,3540,4346,5944 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24308,23593,19744,17760,10836,9321,8486,6812,18816,16600,9474,7156,3343,2536,2183,1146,0,26,56,83,114,140,172,288,214,216,243,177,138,99,54,30,796,886,1341,1883,2284,1835,1914,1163,5935,4219,2596,2350,1937,1469,614,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2448,1863,1670,1299,548,446,246,130,0,0,0,0,0,0,0,0,217,312,458,476,705,750,1134,1367,3299,2654,3222,3450,1800,1227,809,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,620,964,1074,1489,1653,1724,3426,2491,1852,2004,1775,2176,2890,2998,6916,8260,7028,10590,11118,11905,13840,10491,10354,6906,6792,5807,4691,3522,3224,3738,4361,3010,2933,2244,2969,3172,3211,3660,4860,4030,4096,3201,4003,5186,5416,6808,6009 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33179,32663,34328,24516,15480,16438,16656,8963,22938,18754,9813,7906,5228,4194,3035,1678,0,36,75,145,164,239,309,366,456,362,330,314,254,190,112,49,1446,1741,1504,2072,2350,2650,2671,1993,8746,6945,4452,3424,2382,1490,1056,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3210,2752,2286,1543,749,536,389,188,0,0,0,0,0,0,0,0,371,476,654,811,1018,1472,1679,2377,7520,6020,5264,4587,2840,2286,1874,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,507,687,650,1034,1492,1649,2877,2054,1332,1560,1614,2062,2631,2876,8248,9616,8946,10850,12815,13160,16131,14576,13556,9081,5194,5258,3321,3552,3774,4184,3608,2468,1908,2212,2114,2522,2424,2836,4475,4404,3626,3138,3908,5030,5471,5872,5860 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43440,32260,36696,34782,27094,17045,14774,10410,28388,21379,24061,15460,8642,6301,5587,2935,0,56,120,219,272,372,369,406,687,800,670,539,332,276,198,95,2141,2546,2154,3086,3386,3406,2773,2320,9670,7862,5374,3794,2942,2722,2035,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3707,3225,2464,2018,960,666,406,244,0,0,0,0,0,0,0,0,476,616,1048,1088,1155,1722,3004,3816,10322,10772,7853,7385,5200,4484,2335,1474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,217,404,523,669,924,1607,2345,1751,1408,1180,1402,1250,1378,2038,8100,6965,7167,9041,11524,13442,13672,17160,14181,14662,10938,8281,3420,3079,2032,2458,2595,2478,2241,2027,1770,2058,2524,2264,5172,3780,3991,4270,4172,3612,4634,4561,5837 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52558,54068,53587,53064,39568,29778,28248,21702,30294,29097,28000,17120,10290,7108,4514,1946,0,60,110,206,345,408,556,566,708,707,675,490,404,295,250,117,2246,2234,2981,4147,3976,4380,3336,4059,11394,10042,6104,5232,3326,3136,2029,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4343,4302,3634,2514,928,892,567,252,0,0,0,0,0,0,0,0,899,1814,3367,3899,4462,4390,6612,6710,11719,10504,7195,7206,4297,3708,2194,1924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,340,446,746,839,1326,1442,3072,2522,1362,1591,1585,1658,1429,1519,7088,7653,9990,11854,10742,14014,14740,17997,12725,12595,7909,6002,3785,2732,2324,1946,3431,3162,3008,2901,1656,3045,3682,3994,8488,6826,5599,4196,4814,5743,6318,7840,10467 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65417,70158,68066,54485,41042,46242,38942,28511,40295,36898,23640,19122,9074,6467,4199,1750,0,64,126,189,506,539,572,583,597,612,459,410,424,320,276,120,1955,2430,3408,4511,3578,3852,4662,5503,14336,12349,7146,6302,3694,2900,1623,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5221,4941,4272,2659,1281,997,592,333,0,0,0,0,0,0,0,0,1112,2594,5114,5540,7030,8485,8042,7316,10485,7510,8180,5762,4613,4122,2962,2658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,433,624,747,1025,1626,1952,2950,2521,1912,1544,1600,1434,1284,1402,8206,9316,11339,15271,12441,13560,15574,15792,11481,7148,6104,4345,3558,3113,2054,1976,4383,4069,3599,3398,2271,4496,5773,7882,10458,8090,6198,5842,5223,5306,7536,9675,13071 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52776,62464,62093,51128,47335,42998,35440,35263,31332,33790,21941,18662,9413,6810,4712,2350,0,70,171,248,460,487,473,701,881,864,620,518,406,354,321,156,2127,2662,3722,4732,5544,5398,6298,7702,13695,11666,5581,5758,3690,2254,1275,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8866,8155,6842,3742,1550,1267,637,355,0,0,0,0,0,0,0,0,1485,3924,7062,7024,6867,9496,12818,13406,11246,7727,6761,6366,4511,3643,3063,2504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,393,716,712,1128,2104,2116,2924,1806,1315,1764,1586,1182,1055,834,12732,11186,11724,13642,13265,12760,13690,12417,9532,7712,6900,4526,3266,3184,1996,1308,5215,4572,3468,4118,2707,5448,5932,9386,9962,8370,9980,6704,6761,6085,7539,10160,11807 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55104,62194,62170,56876,57627,53254,54708,42310,33042,26160,19813,19188,23602,16558,15579,7696,0,132,319,690,897,698,826,814,1150,1051,1021,792,505,384,309,181,2394,4308,5231,5889,5801,9233,12531,10497,12316,8797,8386,7535,6052,4116,2082,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12949,9174,9137,9474,9033,6506,3622,1955,0,0,0,0,0,0,0,0,1377,4428,6678,11591,13754,11224,8760,9632,14160,13635,13862,11870,12693,7632,5046,4074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,432,950,1172,1477,1775,1644,1984,1797,1704,1590,1510,1023,823,396,15913,16620,13971,12664,14243,14243,11624,11152,11516,10151,8136,8502,6278,5069,2591,1441,5928,8434,10976,12544,11458,10375,11373,12898,10187,9531,9065,8568,9869,8548,8070,10326,13040 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84297,75106,60232,50648,63758,66673,43638,43766,24794,22163,16592,18869,19171,18328,13519,7032,0,172,381,788,1057,774,762,1166,1187,1258,1051,949,996,728,752,765,11225,12098,11849,13866,15608,18375,17538,13734,11568,11242,7900,7469,5512,4139,2265,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15628,13337,10326,12240,9719,6199,3215,1843,0,282,548,962,1274,1102,1153,1514,6032,8521,12891,14124,19200,13027,12456,13315,27530,24024,20340,20731,19446,11640,6522,4406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,483,868,1042,1312,1181,1316,2258,1838,1389,1239,1631,1309,1006,688,14092,17245,17836,17820,11626,15179,12711,12955,11472,9733,8407,6620,5074,3654,3104,1560,4379,5346,7883,8266,10962,10851,9157,12040,10462,8446,9232,8287,11182,10318,7924,9588,9605 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99824,72706,53926,40920,64430,62159,44572,30462,17578,17908,18032,15004,21150,15660,12010,5758,0,192,463,744,1321,978,920,1200,1672,1583,1306,1238,1496,1257,1306,1036,17853,16568,20987,20572,24340,19452,19705,16161,16368,15227,11300,7722,5485,4144,3480,1754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15366,13896,14388,12888,8235,5382,4209,2201,0,454,919,1741,2761,2394,1982,2620,10833,14619,19660,19133,22066,17229,12565,17964,32985,34709,28468,28147,21530,17960,10800,5366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,440,789,1134,904,867,1221,2170,1942,1204,1027,1621,1220,1338,1059,14667,15442,18212,18002,12498,15091,15864,15146,11090,10190,8271,4706,6001,5135,3308,1958,4214,5472,5472,6211,10067,10678,8319,13682,11847,9132,8592,6232,13291,12075,11220,10031,10531 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93825,84452,73387,64769,65203,58114,32628,29480,12168,14638,15353,14758,14728,10600,8393,4391,0,364,700,1040,1651,1211,946,1300,2109,1584,1243,1314,1436,1806,1659,1477,27457,23200,21563,27932,34003,29224,21205,18373,17966,16776,14910,9630,6385,4376,4001,1757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19207,17132,22062,16082,12706,7261,4782,2007,0,896,2123,2363,4322,3888,3364,4966,15526,17490,27287,25500,25262,23889,22056,21404,38481,43428,33453,34034,30632,21471,14080,7862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,343,585,880,1058,972,1548,2163,2138,1235,1118,1491,1270,1361,1343,13941,13786,18995,18784,17868,16771,17680,17114,9040,8810,7755,4596,4650,3234,2110,1370,5362,4699,4706,4908,8543,10826,11626,13778,12033,12138,9509,9707,14068,11452,13185,12288,13520 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128109,122646,92774,73669,76259,66737,57629,33382,11586,12157,11605,7926,6650,5846,4153,1743,0,294,666,1272,1508,1407,1319,1347,1979,2100,1877,1866,1743,2048,2282,2310,31209,40809,48904,49447,40698,27190,16407,10419,17311,11916,12109,11085,8813,6907,4160,2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22083,25658,22092,16804,14245,9686,9509,4179,0,1300,2401,3654,5335,5963,4894,6883,21828,31524,32669,31202,33114,36920,32006,22033,49803,52616,49447,46529,34200,29431,18291,10918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,297,414,662,982,1395,1192,2328,2550,2029,1354,1167,1322,1212,1326,15584,14480,15360,13617,17408,22464,23215,17439,5324,4592,4470,3354,2604,2105,1389,938,6266,6274,5824,5422,4260,5869,6992,9050,9931,9394,11815,13952,11826,13688,14798,15434,14883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100736,118528,81538,76434,63512,61726,43166,29766,11229,9118,10004,7432,6162,4179,3970,1699,0,453,860,1562,1493,1522,1339,1360,1948,2140,2586,2602,2124,2262,2542,2592,37336,38720,43738,44361,43466,34858,24992,19826,22249,16134,12742,12530,7234,6580,3788,2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17918,17442,20682,17456,13697,11040,6593,4098,0,1944,3819,5102,5702,7016,9096,13574,32651,36058,29239,24876,32032,29080,25841,25171,63292,56820,54895,50850,40287,24639,18019,10606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,304,406,700,1066,1184,1182,1807,2044,1692,2177,1519,1496,1406,1426,14149,12630,14687,17096,13684,16369,15141,13701,4647,4464,4021,3134,2403,2250,1411,962,4608,4866,4626,4972,6995,6294,7116,9542,6831,9844,10550,10956,10097,9804,14663,13176,11862 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83181,78517,73147,72913,75686,56355,41416,19718,7516,7216,7350,6484,4465,3853,2764,1646,0,656,1150,1490,1084,1266,1490,1676,2227,2079,2662,2336,1862,2358,3588,3250,42467,41366,49572,56782,41262,36119,25910,24223,20861,18647,18847,14798,6988,5937,4421,2634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13212,12066,13812,9241,10884,7450,5942,3391,0,2204,4577,6729,7759,12034,13166,19388,39050,31217,33982,23718,33405,29818,31821,30386,58956,56789,52411,45233,34482,29097,14136,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,222,457,561,788,1239,1486,1254,1730,1970,2680,1962,1655,1367,1359,14304,10910,10642,11775,14132,10866,11894,15555,5023,4175,5188,3940,1425,1590,1658,1077,2315,3314,4950,5270,8652,7188,5582,7146,6991,8678,10086,8849,6065,7234,10769,14436,14471 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99531,84944,67346,59402,56276,49642,32485,19125,4056,3171,3964,2964,2242,2148,1304,724,0,594,1306,1700,1491,1588,1869,1949,2558,2084,2242,2216,1504,2961,3547,4278,41314,45088,42776,47768,45640,35158,40426,27000,22686,18349,16052,14302,9141,5826,4235,2164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16597,17796,15559,15093,11066,7608,5658,2816,0,2028,5228,7947,9940,13320,20288,27666,38239,38812,35135,29824,26670,34752,34231,38399,60126,43022,43756,41398,31071,24940,15505,9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,320,410,547,722,968,1028,1000,1466,1967,2944,3705,3152,2360,2291,9881,9112,7113,9367,13055,9475,9351,12023,5360,4664,6072,3906,1728,1916,1555,1605,1692,3560,5290,7598,7006,7360,6035,7416,9602,10208,10897,8293,5668,6992,7901,10350,10630 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100087,86369,51504,42580,36239,23242,18204,7874,0,0,0,0,0,0,0,0,0,892,1534,2141,3488,3965,3824,3877,4863,3866,4634,5626,8410,9816,9480,7150,56114,64833,64337,76937,73711,59946,66339,44365,31092,28081,29635,24806,12431,8404,4608,1879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16177,20640,22357,32540,51019,47956,63787,55622,50617,51418,53680,45400,49654,49003,46648,46798,35098,23956,15972,17916,16871,16420,13355,20931,24212,18766,21229,21108,17925,15685,10182,6074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,804,1251,2234,2406,3082,4240,7765,6683,5502,3820,2354,1894,1260,508,0,47,89,110,155,546,961,1179,1430,2054,2567,3032,3308,5596,6806,6892,6911,7730,8232,9668,11828,10934,8752,6856,6973 +0,1,2,2,2,3,4,5,2,4,4,5,4,5,5,5,2,195,470,774,1206,2468,3976,4222,9633,7874,6135,6608,4984,7302,6228,5558,91714,77124,68496,55960,50660,33508,29997,21924,13270,12722,11118,6752,3067,2822,1877,1258,0,946,1347,2909,2672,3278,3784,3571,5564,4759,3789,5802,7330,6923,6257,6092,56732,55489,75263,68166,60318,62546,46083,38364,33994,29819,30799,24252,20707,15030,6874,4415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17043,17718,26934,28376,42034,41986,54992,41632,69117,52332,57669,56315,47593,48659,45871,41754,31844,26522,21002,18900,25796,20376,15939,19600,18960,21894,22510,16782,12313,12216,8737,6586,912,1254,1712,2076,2144,2371,1998,1272,1025,1006,986,732,693,522,261,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,859,1336,1865,2315,2948,4000,6232,5398,5579,3760,2998,2456,1128,676,4,60,111,154,162,553,956,1412,1222,2364,2407,3334,2509,4446,5922,6964,5279,5895,5248,7030,12019,10143,8993,6692,5465 +0,2,3,4,3,5,6,8,4,6,6,7,6,7,7,7,3,470,854,1317,2939,5083,7623,9853,17751,15142,15328,11470,12279,10795,14439,10950,69663,69958,75432,88786,58057,52948,42483,46757,32510,26152,25006,14323,6678,6472,4422,1847,0,725,1738,2023,2267,2645,3015,3363,4422,3480,3624,6044,5440,5895,5558,5306,69790,80751,65092,70797,48490,43848,42914,40433,44089,38744,31432,21338,24940,15898,10606,6162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14725,22846,27039,29017,42561,33984,38474,37502,77950,72579,72452,67922,41013,47740,40061,42920,37088,36170,23482,23011,28204,27417,18503,17387,16751,19340,18134,13529,10684,10002,7090,5816,1690,2262,3056,3341,4937,5189,4090,2631,1982,1783,1796,1587,1568,1058,638,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,848,1041,1518,2934,3378,4332,5399,3792,3860,3017,2751,2044,1419,853,6,52,120,188,121,394,795,1136,1527,2533,3205,2798,2359,3822,4878,4530,3782,4670,4528,5508,9454,8270,6840,4626,4036 +0,2,4,5,5,8,10,12,6,8,12,12,10,10,10,12,5,623,1904,2638,4439,7392,12488,13165,21393,15094,13477,16152,12712,13834,16209,15934,111888,94386,86319,64766,66688,69156,73634,63116,34818,35764,32606,22190,11298,8603,7099,3818,0,706,1688,1777,1730,2288,2428,2776,3635,4002,3296,4434,4433,4094,4657,3734,72299,67394,45226,54400,49631,42932,45916,41193,48573,41012,33624,26521,24332,13062,10309,5210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22001,23728,30045,25117,36084,31103,26768,22892,85417,73506,63682,64747,52894,47587,38590,31120,23322,23603,18068,19860,20990,25568,17376,20014,12724,16782,18106,14770,10347,9326,7748,7932,2978,3293,3905,5329,7299,6844,4796,3422,3860,3178,2470,1864,1995,1302,784,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,667,1366,2039,2854,4315,4966,4460,3733,3600,2400,2290,1779,857,542,9,44,106,158,153,510,720,925,1251,2061,2522,3046,2038,2660,3478,3546,2792,3366,3303,4068,6146,4612,4169,3618,2303 +0,2,3,5,5,10,11,12,6,8,8,10,13,19,20,18,4,1201,2474,3952,5690,7565,11363,11702,25422,26197,20447,22699,18655,14366,15215,17398,121823,121510,89214,74213,74138,69025,66604,54726,50360,52264,37656,25489,20766,12276,7848,3459,0,302,659,1349,2050,2099,2248,2760,3590,3772,3890,3201,3358,2317,1730,1648,69157,56722,67143,45521,45188,59740,62407,70334,57693,65862,52770,42434,24016,20666,13399,5716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27806,25056,33555,32883,29296,26594,24548,19574,67712,58860,57174,48577,51988,45765,31340,29719,19762,20999,21391,25523,24216,22344,22045,21195,10605,7502,7596,7424,9554,10614,8425,8269,4471,7165,7860,8626,8530,6529,3723,2857,5213,4472,4590,3859,2401,1489,888,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,1456,1714,2200,2268,1981,3456,3400,3666,3119,2215,1890,1246,675,318,12,41,79,125,150,294,555,745,785,1384,1852,1865,2155,1632,1301,1944,1748,1594,1502,2557,2851,2305,1867,1569,1226 +0,2,5,7,7,11,13,14,8,12,14,16,14,18,18,22,6,1416,3032,5316,8432,9742,15264,16682,18129,20309,21982,19530,20737,19411,18844,21018,144953,133725,121284,88310,77770,66999,68818,50762,58314,49528,31987,24766,22540,14572,11238,4950,0,280,487,1172,1760,1860,1718,2096,3117,2826,3015,2889,2414,1964,1604,1501,74608,59784,53809,41911,40936,47468,59048,66800,63617,49034,39998,38125,22181,15153,11870,4962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22301,26870,30446,31006,35978,28686,27642,20304,41742,48652,55823,50156,38437,35086,32306,23050,17504,19958,23188,16818,21772,23890,21759,18063,7723,7518,8153,6315,9268,9546,7691,7710,8123,9522,11830,9946,10576,8783,5417,5806,6665,4900,6148,4474,3275,2934,1323,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,924,1264,1296,1856,2144,2841,3100,2853,2666,1920,1729,1010,508,232,19,46,63,84,106,280,557,754,564,1063,1763,1492,1879,1667,1750,2214,1723,1900,1567,2258,2612,2290,2485,2348,1605 +0,2,4,6,8,14,18,20,10,14,16,18,13,19,20,26,6,2463,4472,6363,8386,14824,17453,26758,19340,16695,18567,23260,19452,20220,20888,21430,137185,148297,117962,109078,63487,51490,61496,54922,53565,43145,36882,22087,23251,14747,11682,5939,0,200,390,638,1011,1515,1518,1538,2441,2343,2152,1792,1506,1150,1295,1319,79067,65149,41964,34836,41731,56736,53452,76967,52879,44154,40486,26742,26682,16716,8738,4853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23156,27478,26148,33326,39045,33134,25676,24966,30364,34355,46244,38025,28814,24092,25210,21658,22424,23851,18434,20543,20109,15355,17624,15185,6237,6079,6171,4595,7410,5702,6484,7801,13117,10350,11900,8254,11640,11326,8005,8674,8359,6299,6110,4748,4657,3117,2214,1312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,808,1056,921,1312,1700,2098,2220,1756,1560,1416,1112,671,341,218,20,36,54,72,107,294,438,763,395,753,1316,1166,2112,2226,2325,2559,2125,2251,2086,2220,3005,2299,2524,2439,2747 +0,2,5,7,8,16,19,20,17,17,20,20,16,18,22,28,5,2812,6458,8542,10318,11883,18288,22842,22025,19754,23777,19211,13809,17786,23204,25592,151536,115979,120571,91982,72095,79625,87507,84376,53846,46893,50231,30148,19790,14552,9906,4735,0,98,204,346,409,586,841,732,1170,1298,1524,1279,1165,1006,1474,1282,73399,61936,51290,36370,37914,42624,56967,73608,52812,48388,43991,29338,23511,16339,8470,4287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25464,30160,24239,25227,38112,26781,22228,26588,28031,31041,42978,32813,26679,28160,22864,19473,31927,28546,25292,21358,18609,13183,14858,8979,4000,3331,3697,3445,4736,5240,5260,8228,14207,14048,16182,14302,12226,13515,11498,11027,7227,5708,5765,5328,5878,4364,3699,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,446,664,868,972,1456,1723,1014,864,809,648,602,342,183,112,30,47,57,68,117,198,292,445,232,488,773,964,1411,1952,2250,2377,2491,2342,1966,2316,2219,1970,2612,3322,3908 +0,4,6,12,14,17,19,18,21,23,21,18,16,23,22,24,3,5796,11214,13734,17926,22974,32675,30565,31878,30644,30556,39437,36315,33468,36745,30829,144220,152177,174202,163330,186448,138473,145905,96426,76836,59091,65975,49524,32760,27363,13358,7245,0,0,0,0,0,0,0,0,0,145,333,581,776,892,724,1089,93560,79086,60715,69237,55356,43779,38166,52410,56457,36867,29874,31883,24134,20444,15210,8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22420,18667,13093,11213,9485,12330,11980,15797,25988,27022,19953,12498,4690,11688,15569,19897,36845,30705,25523,24862,26780,20064,15175,7443,2437,2976,2829,4299,5999,6858,8902,10327,15352,19366,19624,16924,18880,14726,17576,15567,9452,8514,6134,6104,7621,4848,2934,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,653,846,1044,1357,1354,1434,0,8,16,19,26,34,40,42,35,50,59,80,81,62,60,82,0,389,748,1158,1193,1268,1552,2200,2527,3840,4098,3399,4280,4534,4225,4752,4230 +0,6,10,13,17,21,20,22,24,22,20,20,16,23,23,28,5,6473,11402,16722,23879,33432,38405,44058,50627,43462,37613,34310,43662,34902,37182,31101,162398,151772,131312,149052,154457,157864,134511,89450,69957,61882,50113,44633,24738,21028,17754,8496,0,126,352,446,839,710,732,1008,1281,1554,1920,2011,1691,2379,2335,2220,86680,73720,59909,57086,57269,55850,45503,50346,53311,38508,30345,31287,24924,18350,13832,6512,0,0,0,0,0,0,0,0,0,304,518,809,802,740,580,630,22170,20426,15052,12865,9450,8234,12455,11934,16761,15977,15124,12598,9089,11650,19701,20030,39625,30945,29621,30824,23497,19132,14540,6793,2328,2850,3538,4433,5308,6708,8808,8895,12343,15450,18766,18709,15484,13235,13230,11705,7048,7978,7815,8072,9034,5610,2848,1273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,462,702,711,844,1193,876,0,9,14,20,20,26,33,35,34,38,53,62,70,70,74,70,0,249,618,893,886,1070,1465,1680,1562,2660,2828,2856,4171,4346,3668,4101,4917 +0,7,11,17,18,23,24,20,22,21,20,20,19,26,31,31,6,8234,14880,23708,23122,40146,45933,48582,59234,53780,42766,36061,37075,36396,39280,31843,133054,118335,111854,92765,177920,149405,97413,79950,88373,62509,46398,35541,26859,20092,18061,9158,0,324,616,946,1589,1766,1494,1905,2352,2956,2942,4046,2516,3276,4788,4711,105516,99936,68034,42566,41213,53913,51716,55579,59516,48326,39259,36017,26096,18423,13406,7092,0,0,0,0,0,0,0,0,0,636,1095,1937,1524,1284,1201,1423,28737,27372,21513,14426,9336,10685,9182,11153,10290,12045,10762,9824,11437,13762,18604,19690,39808,33583,29504,26851,16789,17144,13968,8753,2097,3099,3770,3619,6155,5271,6314,4361,7856,11003,14522,13076,18024,14086,11500,9670,5325,5165,7384,8238,7624,5580,2782,1285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,372,523,648,727,719,620,0,6,10,22,15,23,27,28,22,34,48,43,53,64,66,56,0,176,416,510,704,802,900,1284,1232,1740,2305,2355,2932,3421,3021,3668,4402 +0,6,12,18,21,22,22,24,17,20,20,18,18,30,36,32,10,9925,18161,24110,28643,35673,42030,55803,66136,68969,48786,50640,29020,36138,41802,37187,137734,135034,99290,104762,145882,125247,92585,85442,59970,59241,35382,32686,25296,21614,19338,9920,0,408,1096,1352,1875,2155,1468,1896,3134,4192,3229,4415,4161,5344,8453,7381,74744,82511,53359,45368,28457,41504,50347,53712,54166,36842,40540,32298,18398,15772,13518,7006,0,0,0,0,0,0,0,0,0,929,1710,2534,2900,2627,2798,2828,24236,22404,20822,13874,7685,8084,6681,8040,7871,10794,9488,12242,13258,12609,15238,17373,47586,42630,32353,28852,19231,17248,15429,9019,1726,2892,3426,3908,4753,5152,5884,4682,7347,8974,8772,11584,14884,11008,8356,6958,6091,6117,7910,6852,5410,3498,1929,1043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,248,360,393,515,425,412,0,6,12,19,17,20,27,30,21,30,43,46,54,61,66,63,0,170,411,546,747,698,613,869,1031,1222,2077,2382,2919,2530,2734,3346,2792 +0,5,8,13,20,20,24,23,10,14,16,17,22,30,32,28,9,8460,18068,24405,28400,47607,56532,49824,81150,57676,56475,39862,26168,31014,32175,31623,171581,168735,147332,123919,68660,79830,86336,61224,53107,49952,35027,33942,25957,19998,11613,5203,0,725,1211,1805,2702,4146,4302,3542,5451,5142,5092,6027,6635,5254,5908,7668,72928,82252,71295,49647,29534,24444,29560,30284,56103,40096,41583,35756,18607,14738,6478,2977,0,0,0,0,0,0,0,0,0,695,1558,2616,4312,4406,5129,4850,23323,19032,15322,11477,7346,7238,8337,6226,5119,5320,7780,12063,14268,15915,16890,18902,49006,36760,35994,31826,25803,24241,15539,9377,1858,1831,2011,3447,4657,3473,2695,3124,5362,5998,6364,9102,12171,11040,8765,6872,5963,4929,5779,4603,3993,2888,2610,1290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,178,270,205,172,226,0,5,7,12,16,13,12,18,16,23,35,38,42,44,34,40,0,157,312,438,668,531,564,618,859,1158,1296,1936,2620,2361,1607,1664,2203 +0,6,9,16,23,26,22,26,17,21,24,33,34,34,30,29,12,9803,17954,20492,32029,43874,60430,61501,93178,86744,52604,49182,26590,25260,38199,38236,159434,134634,125404,88402,61042,63241,61608,56772,57586,43896,38542,30921,25153,17172,12771,5314,0,882,1940,2882,6554,7067,7966,6662,6193,7928,6266,7884,10689,8749,10262,11531,57706,64186,54840,46799,24703,24106,37728,36818,37349,35811,36191,22212,13442,12063,6650,2929,0,0,0,0,0,0,0,0,0,1474,2076,4493,6636,8789,8511,9968,20982,18068,12375,9149,6493,6090,7462,6439,4406,5388,7214,10798,15658,14382,16424,23018,50815,43866,37068,34266,33185,26122,17124,8702,1558,1648,1695,2670,3466,2762,2342,2708,5913,7327,6722,9040,11995,8892,7009,5307,3951,3304,4819,3994,3608,2446,1755,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,125,172,191,158,118,178,0,6,8,11,12,12,9,14,14,20,23,34,34,32,28,32,0,107,224,372,474,380,469,390,592,774,980,1428,2575,1734,1299,1642,2026 +0,6,10,18,22,27,26,24,17,24,28,29,37,34,29,34,12,9857,16796,18648,34438,39130,59502,59624,94426,77308,74268,73309,33358,33530,34238,38179,117279,95450,98304,100867,40524,43337,51374,69860,53538,46780,40119,35868,26876,16650,10020,5566,0,1179,2908,4094,9264,11482,10019,9852,9941,8088,8623,7998,15757,15407,12196,17255,63827,58309,53831,35647,22468,34494,38046,41296,30408,27001,27884,21618,9188,8268,5776,3388,0,0,0,0,0,0,0,0,0,1616,3523,5532,9404,10127,13484,14779,24643,16404,13036,7575,5041,6660,6069,3951,2345,5143,8726,9281,12131,13984,18509,30066,37685,36891,36822,36461,35619,30236,21804,11018,805,896,1160,1805,1842,1770,2504,2857,5989,6856,9790,7324,8051,7760,5986,5063,3315,2961,2303,2796,2228,1722,998,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,60,124,157,103,94,98,0,5,7,11,7,7,6,8,7,12,14,18,21,26,22,25,0,71,162,236,298,342,367,291,360,690,879,989,1798,1409,1244,1174,1411 +0,6,10,16,16,24,22,21,19,24,34,34,31,36,35,36,16,7586,15910,18978,35372,35605,49939,58985,70660,69074,84733,63937,60928,45066,46152,51680,67209,78137,76196,83466,45422,54258,60268,69870,51441,39562,34164,29374,24682,16295,9969,4904,0,1676,3347,6228,9459,11880,14088,16472,18451,15780,13810,13607,17952,13983,14875,15450,52005,41023,43452,42368,35407,39826,32080,27132,29368,22417,17208,13404,6807,6043,4008,2312,0,0,0,0,0,0,0,0,0,2712,5280,7732,11402,10220,11624,17495,23004,16381,12254,6194,4385,4160,4584,2796,1005,6164,11507,11772,15422,18772,26234,31562,39992,41733,40326,35834,36072,26979,19992,10718,450,526,695,1174,982,1386,1846,2545,8642,8164,8496,7421,8566,6120,4519,3477,1962,1480,968,1452,1103,859,547,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,32,56,68,60,56,53,0,2,5,7,5,5,4,5,5,7,8,10,12,13,11,12,0,40,85,108,123,172,201,150,198,304,500,512,917,714,500,718,791 +0,0,0,0,0,0,0,0,0,3008,6079,11734,14065,16028,17029,30491,34833,36528,53568,54657,52020,51484,36003,28117,30444,45598,52202,51271,66690,52236,53547,49166,48234,37766,40332,43831,38817,42967,32912,38830,33012,24885,14890,13298,16427,9960,5430,2648,0,0,0,0,0,0,0,0,0,3055,5872,10156,12409,15430,15975,15961,26835,23290,30726,30870,21854,13743,11678,5797,0,0,0,0,0,0,0,0,0,796,1634,1731,2568,4390,7596,9190,15364,17195,16045,13148,16560,18947,21302,19296,20534,12946,11263,9814,10631,8924,9625,9872,7392,8582,7853,5568,4651,3270,2606,1500,0,122,294,333,468,598,969,1957,2322,2774,2712,3552,3927,4480,3839,2787,11968,11398,11589,8512,7016,9650,14178,15486,15912,15956,12634,7556,3669,2974,3056,2168,1619,2032,2478,2690,2367,2400,2114,1701,1914,1572,782,547,305,222,201,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +0,472,1154,1804,3252,4206,5201,7196,13348,22858,23268,30164,38753,43752,61507,60198,23486,37468,37373,48132,60795,51796,40830,43578,45776,56536,57300,69872,88086,97756,108289,91950,39517,41181,42296,47442,25482,31750,34541,30964,28089,24344,12815,13196,11204,9108,6669,3336,0,1,2,5,2,4,4,5,5,2760,6461,8264,10254,10333,14938,17062,41027,34896,35716,36076,25603,23227,18103,11609,6427,5058,4624,5195,3459,6049,8447,12346,8655,10310,12206,14798,13025,13402,20649,28605,26078,22947,21298,18556,16022,16024,14614,17343,16352,12539,7024,8892,10932,8386,8491,8060,5525,6371,7651,4602,4764,3350,2686,1422,0,168,280,404,581,710,793,1230,2900,3112,3188,2911,4100,4406,3334,3464,11278,12298,14935,14520,12043,19946,17524,19546,26122,18085,15013,10429,6862,6267,5047,4766,2860,2675,1925,2144,3050,3297,2891,2076,2466,1980,1832,1190,745,738,884,978,0,44,89,160,118,183,259,200,265,256,271,218,120,68,55,54,87,81,90,83,70,73,68,54,30,39,53,54,44,35,23,13,0,13,19,32,30,34,45,38,22,26,29,24,19,16,10,6,126,126,91,96,43,47,74,74,17,34,46,40,32,30,16,12,0,0,0,0,0,0,1,0,0,1,2,2,2,2,2,1,2,5,5,6,5,6,5,6,10,8,5,5,2,2,2,1,0 +0,974,2180,3884,7477,9704,9853,10578,25699,36428,50718,60452,75303,94978,86002,95982,23553,25727,36634,41474,61169,45957,51902,70250,64131,78783,74558,69805,129555,129066,155402,126355,47798,51616,46288,37728,21628,25561,29060,26355,23001,18197,16541,11020,11190,9011,5938,3537,0,2,4,7,5,7,6,7,7,2733,5120,9261,7071,8968,12735,9942,56157,41573,45975,45036,35824,25341,18834,16305,11768,10569,7870,12364,8093,9688,16022,22172,14648,21009,21740,26156,27474,25306,30196,39714,28120,28450,25894,19013,20703,19444,13042,12059,9260,7468,6076,7700,11995,9218,8148,7742,6181,6752,6760,4955,4959,3035,2269,1355,0,204,376,512,503,698,920,1199,3272,3380,3344,2229,3734,4049,4258,3602,10395,15048,15240,17121,21272,20063,28266,29834,29542,24342,16904,12340,8988,9894,8056,8165,3598,3471,2280,2503,5079,4278,3764,2836,2729,2512,2335,1509,1513,1654,1642,2060,0,93,192,285,224,360,432,388,632,484,538,467,217,194,118,103,212,211,150,140,164,166,116,104,57,88,108,92,104,68,42,19,0,21,42,65,60,83,82,78,43,52,52,49,33,27,15,10,221,177,208,146,87,105,140,149,32,53,77,83,74,48,36,22,0,0,0,0,1,2,2,2,1,2,3,4,3,4,3,2,5,7,8,10,7,8,8,8,15,12,8,7,3,4,3,2,0 +0,1682,3016,5845,8792,12282,11698,16773,27186,54222,91182,76362,98684,91528,100592,105936,21464,24268,35199,34488,49808,45692,69859,67542,83168,96300,102819,105479,109105,133293,149679,137065,36690,35052,33470,34926,26057,24496,35034,27738,27009,17103,12427,9216,10022,7432,5732,2862,0,2,5,9,8,10,10,13,10,2170,3519,6989,8348,10563,12133,13962,63361,48449,59425,44521,28812,23598,17057,18302,13096,11766,9491,15180,17255,23364,25372,31836,20935,21960,22944,31252,29690,31230,43001,50758,34182,35650,37342,26224,22116,17466,19258,15438,7142,6036,7218,6237,9499,8386,5790,5454,5112,5794,4745,3935,3834,2309,1733,925,0,172,322,608,752,822,1189,1342,4689,3754,4154,2682,2984,3052,3470,3242,13482,19438,16822,21253,26430,26048,39796,41040,34953,24238,24264,20838,12254,11022,12083,10577,5221,4126,2948,3845,5474,4663,3449,2820,3082,3094,2456,2478,1730,2700,2880,2620,0,148,233,440,327,509,724,740,793,603,649,472,397,298,204,166,251,220,144,229,221,172,173,174,117,152,139,145,144,101,73,34,0,34,50,70,90,108,120,114,70,78,69,52,41,38,16,10,342,324,330,222,131,134,166,175,67,78,92,95,103,62,37,25,0,0,0,1,2,2,2,2,2,3,4,5,4,5,4,3,8,11,11,12,12,14,14,16,21,19,13,10,5,5,4,2,0 +0,3571,7153,10146,11737,17112,21047,24158,39275,39416,49171,82791,113460,112605,85582,111768,15597,23058,41182,42419,47856,57706,70810,63528,81273,91204,106648,135971,124134,129874,119270,112077,21605,20105,27042,23484,30314,23266,25885,23817,26072,15973,10940,9958,8160,5546,3420,1438,0,2,5,10,10,14,20,17,10,1770,3133,6172,7726,6614,7653,12215,59915,46076,41908,37998,30386,23328,27339,24473,17068,17534,21997,21933,23096,26818,32224,36895,26400,32744,36110,32504,42231,42005,54576,56871,31135,30306,37868,33034,24657,23869,20896,11290,7177,8440,9503,7448,6787,7490,6376,4706,4553,5836,5622,4585,3606,3252,2150,966,0,277,492,622,774,671,877,896,5639,4427,4968,3264,1867,2141,2191,2093,22442,17834,17084,28739,32898,24633,28433,33528,36156,24466,20268,17968,17058,13797,17211,14309,7053,5992,6930,6572,4995,4321,2774,1751,3271,3350,2630,2978,2770,2623,3452,3443,0,188,370,391,568,659,734,875,1080,986,763,737,550,392,256,162,340,289,242,316,294,302,223,232,150,131,123,145,166,116,98,57,0,22,46,86,120,152,145,139,123,96,78,60,58,42,27,17,476,503,391,225,162,239,250,315,79,75,70,105,108,91,61,39,0,0,1,2,2,2,3,2,2,2,3,4,3,4,3,2,10,13,18,20,16,17,12,17,23,16,12,10,4,5,3,2,0 +0,3404,7703,12022,13018,16793,23748,27286,46469,53452,82300,110766,121556,124219,99769,119091,11607,24744,32115,34430,40062,59561,57519,69058,97878,107156,104411,135817,102554,105620,108834,113249,14120,16154,21871,18540,25754,17979,22424,17574,18387,14060,8816,6983,6368,4368,3431,1544,0,3,6,10,10,15,17,20,12,1356,2853,4058,7386,6653,7560,8962,48053,43561,38680,28839,31228,27475,24443,21866,17446,26328,30280,32780,36336,39019,46453,50012,27863,41584,55671,58520,44869,49780,53612,64715,43659,38988,54486,41729,27062,27912,19878,12218,6141,6392,6700,5987,4458,5970,5216,3949,3494,4003,3993,3384,2786,2632,1688,708,0,291,444,684,766,1302,2502,2778,7186,5539,6258,5341,3804,3598,3527,4568,18654,17644,22936,30550,24895,22318,23877,23876,47808,33434,25194,20145,16044,18252,17664,16170,11728,8630,10351,7679,6760,6416,4565,2560,3446,3561,2488,2922,2514,3242,4319,3385,0,192,341,352,640,810,1035,904,1274,980,957,911,650,563,349,324,369,392,288,340,508,387,288,257,126,128,140,178,177,134,108,52,0,30,60,109,192,168,130,134,159,137,126,104,78,66,33,19,936,854,523,550,586,406,434,406,205,180,141,153,192,134,114,76,0,0,2,2,2,5,5,5,2,5,5,5,4,5,5,5,22,26,22,20,19,16,13,18,28,22,19,16,6,7,5,2,0 +0,4246,7305,9959,12047,20064,29658,27611,51763,93742,106774,152193,150204,137124,104690,114838,12050,17634,18936,23594,41927,56255,60621,58888,102130,105180,125190,120067,48841,85912,118833,131236,6545,9090,12210,15828,13451,15503,14000,14618,12879,9580,8525,5656,5883,4944,3153,1835,0,2,5,9,11,13,18,22,10,695,1638,2547,4751,5764,6866,6291,41878,28860,29802,22963,27070,23055,22499,20210,22768,35780,37822,54002,67367,71216,58727,60683,31051,41937,65918,81627,39651,54258,65204,71338,44516,41235,52973,42959,33100,25887,24088,16038,7221,7467,5371,5373,4138,4333,4944,4938,3027,2542,2676,2636,1929,1434,1475,748,0,219,492,794,903,2061,3746,3654,6440,7851,6692,6296,5127,4739,5960,5667,19884,22624,26111,32688,16169,19523,26678,26824,45983,37161,27335,22503,20738,18794,22603,26265,14348,12645,10879,10352,10740,7780,5804,4333,2688,2493,3244,3575,2404,3164,3786,4138,0,161,318,424,816,1110,1188,1146,1443,1019,1064,908,587,617,482,384,407,436,458,402,561,352,316,293,156,189,182,203,145,127,88,51,0,34,70,91,199,167,154,155,186,196,168,135,98,82,42,25,1338,1092,876,740,837,816,553,455,270,191,202,204,233,175,139,83,0,1,2,2,3,5,4,5,3,5,4,5,3,5,4,5,31,34,28,20,16,17,16,18,23,22,20,17,6,7,5,2,0 +0,3892,7923,14791,20026,27733,31474,35220,49093,82692,105542,124866,147890,136105,119000,127862,9808,11058,16906,20826,29816,43468,58449,74944,115228,87190,109243,85569,42179,88013,114910,127221,3448,4702,7415,8086,7880,8482,8224,7146,7391,7567,6289,3948,3068,2638,2066,887,0,2,5,9,10,15,22,22,13,542,1540,2240,3559,4296,3544,4500,48580,39166,24557,18752,21862,23789,18622,18982,22184,29366,40941,59956,63314,64098,73003,76998,32308,54727,68078,86127,73804,66494,80558,58218,56846,54098,47595,45957,40240,39236,26810,24776,11208,9846,6886,5372,3140,2619,3678,3052,2613,2536,1936,2044,1537,1497,1214,560,0,265,514,784,1280,2166,4658,5297,7283,6918,7286,7566,8480,6816,7827,8944,20654,26234,29102,23120,19061,20424,23827,24397,33467,28966,21877,24128,25489,23831,23007,24758,16566,14646,10584,10236,9784,8902,7336,5563,2366,3170,3118,2704,2454,3256,4183,4194,0,184,383,630,752,910,1151,1532,1750,1410,1276,969,809,716,408,368,529,472,545,520,616,454,323,332,243,211,216,189,158,128,82,49,0,52,115,162,260,290,238,246,245,208,180,146,125,104,44,26,1474,1564,1306,1109,1058,890,569,455,440,346,270,284,218,215,170,118,0,0,2,2,2,5,5,5,2,5,5,5,2,5,5,5,61,44,40,28,19,20,18,22,22,26,21,17,7,8,7,4,0 +0,6599,12847,24273,28405,24992,29450,44150,48709,69116,99005,127390,150921,139983,123906,145958,5696,25710,47148,57550,77516,91537,98795,92134,95566,90744,107018,192682,235288,187040,180253,236093,0,111,228,378,551,1077,1440,2908,3790,3836,2811,1738,1155,864,465,222,0,5,8,12,12,14,18,22,19,81,134,265,375,1063,1476,1558,40378,32720,31558,32536,42368,33355,37400,37557,29558,40231,39353,46315,66499,58877,40333,61868,45535,58575,57223,69962,59862,39532,37952,55114,66224,51616,55786,41961,38965,37080,27199,29247,14158,11816,8738,9101,6434,4342,3829,3401,2202,1967,1380,1482,1350,926,605,316,0,1416,2445,3610,5065,5263,6404,5333,6288,6256,5268,6688,10838,11092,15036,13242,22970,23310,23445,29993,34226,30752,42120,40985,29668,36764,37888,33464,28946,36496,33299,25661,14407,10801,9025,6459,2188,2898,3311,3493,2676,2902,2249,2506,2147,2477,3011,3453,0,172,314,586,786,1103,1467,1518,1537,1759,1410,960,884,804,780,536,655,515,556,404,159,183,249,266,296,278,188,128,116,79,77,38,0,53,113,120,163,175,166,215,286,338,334,308,241,170,154,86,1963,1670,1801,1476,1135,1199,1117,731,490,404,400,413,409,342,206,143,0,0,1,2,2,2,3,2,2,2,3,2,2,2,3,2,80,55,42,36,33,30,22,29,27,24,16,22,21,13,8,5,0 +0,5751,11778,17358,19118,23861,26298,30418,38357,68540,74143,110148,112474,107927,93757,114269,8534,22302,31636,45643,68695,82063,97782,87802,73623,95428,115002,173614,147146,161812,197912,228001,11281,10290,13054,11433,13400,11442,9471,12074,14464,10930,7861,5722,3189,2734,1296,734,0,5,8,10,11,14,18,18,15,61,114,224,312,903,1162,1266,39920,39810,37104,30444,55196,38018,27132,25618,22110,30063,36182,53043,51327,51384,52481,76674,41771,47670,37286,45259,66059,47336,35998,44063,99578,82742,68330,61308,51504,40689,32289,29155,11277,11422,10265,6704,6136,4036,3938,2756,1891,2040,2222,1927,1697,2131,2082,1838,1115,2036,4124,4414,6883,8098,9808,10652,5848,6855,5534,8268,10734,12693,12434,13428,20678,24227,23828,34810,25918,31714,35088,35208,30729,34614,26524,25597,28908,29456,40646,31094,15250,13164,7463,6398,3732,4461,4783,3846,3451,2980,2856,2740,2217,3424,3963,3980,438,638,515,987,980,1226,1770,1826,1941,1534,1142,973,721,747,681,542,801,659,540,354,194,244,316,274,312,255,250,193,139,105,106,56,0,51,91,100,144,200,164,242,677,712,639,532,444,426,482,454,1237,1294,1680,1146,1185,1180,734,540,365,476,504,518,467,348,454,392,0,18,33,42,81,92,79,123,18,28,36,44,50,62,76,94,109,116,150,164,228,258,230,180,124,121,134,120,101,63,40,20,0 +0,3494,7796,11783,16296,24198,25945,33065,44829,60029,83244,106670,90798,82670,94682,74796,14624,22403,31568,28899,70611,69213,74301,71938,37667,72258,96632,148653,110408,140744,151873,221562,23653,26171,24096,18924,24013,21534,16551,19894,24406,18001,15576,11194,6494,4165,2418,1303,0,4,6,8,10,11,12,14,12,51,101,152,268,693,1090,1590,50016,53927,40402,32668,51698,44337,27924,19713,11763,23781,41504,45316,51432,49481,60716,57773,48158,41201,33053,41261,66430,66228,48414,38152,106433,90747,71829,76482,52670,44322,35010,39211,12284,10319,8574,5797,4730,5074,3894,2640,1590,1672,2394,3414,2037,3237,4012,3717,1928,3130,4895,4938,9447,10971,10795,14792,5207,7317,7402,7558,9979,12174,14398,14671,27306,31006,30258,22996,20658,23740,27025,25325,37305,29297,24627,22974,33691,29049,35380,33943,13983,12375,9446,7660,6242,6914,5662,4686,3335,2887,3092,2607,3262,3072,4218,4602,756,940,908,1150,1274,1807,1758,2033,1811,1378,1414,1354,484,422,562,476,992,749,660,388,320,276,294,289,384,352,232,234,135,138,100,50,0,47,78,103,102,166,217,344,1032,848,824,674,713,825,729,743,989,958,1065,1250,1256,1094,578,385,398,380,523,542,584,615,604,498,0,38,66,70,140,128,164,216,37,40,57,75,119,130,158,183,147,156,217,314,466,400,364,317,218,218,218,174,152,91,66,38,0 +0,3340,6541,10651,18371,19948,22907,26416,36888,58988,64794,84258,79494,70262,76908,56204,16484,22836,22508,27382,51907,52393,61981,78126,26114,45850,54112,109128,87995,112682,139888,195722,30790,34716,38055,29316,37031,31270,29243,33856,37547,29712,28933,16786,11746,6686,3440,2016,0,2,5,6,7,9,8,11,12,62,115,150,173,496,778,1310,34943,32991,36831,36756,45502,33354,22974,15106,8762,21502,30808,36584,41049,56877,75839,67636,42565,43423,44023,48150,63670,53922,36452,33336,115354,89944,81354,69342,53907,46306,39428,33033,9544,8636,7075,4862,3051,3682,2838,2336,2011,2032,2156,3454,2878,4186,5065,4606,4058,5154,7978,6556,8206,9626,9549,14822,5916,7451,8572,9368,10438,14316,16139,14166,21517,28089,31193,25086,24115,23667,19666,20562,28945,34470,36156,26204,28342,38128,39725,37336,8362,9360,7090,7653,8875,7625,8268,7486,5216,5268,3328,2974,3534,4220,6322,5897,1167,1533,1351,1819,1641,2561,2332,2446,1833,1842,1476,1198,463,572,816,822,1121,812,755,534,372,322,262,292,554,512,319,252,204,183,122,62,0,32,70,121,125,188,259,340,1348,1200,825,836,739,750,903,845,1267,1008,970,1046,879,936,504,314,346,571,551,682,713,694,743,706,0,52,79,118,140,188,212,360,48,72,84,122,175,230,262,290,153,180,208,424,604,625,584,436,289,300,242,197,163,137,80,42,0 +0,4269,8347,12746,14876,18028,16028,13636,39047,54113,53042,61651,58706,60754,55135,52297,19731,17320,17770,18472,24700,53126,73835,88819,21089,44006,56368,63381,65860,89008,102836,204068,42843,46346,37374,37094,38345,38610,43829,46983,41096,33966,25758,18202,14236,10302,5139,2614,0,0,1,2,2,4,4,5,12,58,87,129,145,552,900,1101,34322,33914,25948,35747,35585,26980,25731,15537,7452,12429,18166,25909,40981,43609,67472,57388,51293,55594,44468,42868,42726,42106,30468,27926,91592,68981,50836,54150,64328,56048,38635,25088,5990,5321,5442,4050,2418,2173,2273,1816,1858,3044,4066,3694,4873,4790,6913,5950,5471,4571,5578,6972,9438,9991,9324,10938,6928,7231,10804,10871,14398,14460,12385,8613,22161,14554,13965,17876,20414,14058,9740,11826,32548,35417,29360,29500,32484,28067,37498,30460,6896,7582,6149,8338,8606,7296,9378,7124,5441,4565,3870,4007,3179,4887,5153,5589,1533,1522,1786,2296,2468,2550,3133,2648,2121,2031,1428,954,568,787,863,992,1677,1172,1064,633,314,317,237,316,610,508,511,426,228,212,158,69,0,32,77,141,170,152,207,336,1234,1141,1399,1232,856,1015,1175,1011,1260,1479,1378,1069,813,811,596,337,323,383,464,709,1045,981,946,997,0,31,72,143,206,270,384,455,68,93,154,221,253,270,330,403,135,392,541,627,708,706,669,482,394,320,362,263,220,176,84,46,0 +0,3448,6193,6897,8546,10295,11175,12384,30067,40260,42405,51634,64646,54600,69966,67298,25470,29670,38527,31056,29540,41355,57070,64178,13073,25853,41480,52616,57781,75812,93713,167113,37712,43668,35616,39724,60845,61970,53734,59355,66471,38202,25798,23802,34318,20490,7324,4228,0,0,0,1,2,4,5,6,10,40,61,78,121,487,607,989,50060,45869,32520,37580,35490,30646,22010,14362,4905,10848,14826,23024,46980,53988,76360,69598,69882,57596,39978,54374,54724,54738,41390,49358,82783,64768,58586,64600,76813,69535,34896,26508,4571,3983,4286,3240,1725,1574,1907,1708,1346,4304,6391,7333,6794,7271,11106,8832,13072,11362,8138,9495,19203,16573,13579,15463,8930,10776,16446,16630,12685,13801,12819,12628,19882,18335,22144,21222,17664,14846,13529,13098,30583,28193,30620,28882,22599,28446,27936,26910,7999,8922,10440,8336,6074,9398,11514,9438,7250,6361,6185,4771,5072,4980,5048,7416,1756,2249,2444,3003,2110,2485,3120,2622,1743,1934,2332,1453,1927,1706,1434,1458,1866,1608,967,692,425,388,389,378,501,456,443,381,181,153,124,61,0,61,119,203,347,339,404,460,1593,1284,1242,1414,778,1013,1280,1456,1261,1417,1443,1118,655,512,524,273,264,588,750,1317,1006,1278,1610,1896,0,40,84,148,261,299,369,419,225,296,392,409,438,420,387,399,409,468,582,722,1316,1089,860,828,552,600,569,478,494,361,228,123,0 +0,1978,4181,4950,4859,6113,6054,7228,20662,25135,33886,59024,69269,75327,66042,71234,38786,39975,46852,48493,28183,35963,36715,42416,11580,17303,24489,29632,34291,73497,99536,165181,51217,53988,49847,47281,85528,66105,74314,84174,73637,61616,33302,27802,46110,26699,12598,6413,0,0,0,0,1,2,3,4,8,22,42,56,97,371,612,807,60334,52597,53937,46645,34652,34056,24628,11892,3166,9930,16880,24632,47918,64091,68471,48402,83526,62663,53792,48252,62110,61624,58849,71360,114316,99962,68554,60305,85990,52219,31928,19999,3679,3165,2092,1310,1071,1020,914,1046,1103,3980,8196,11036,9327,9751,13726,14241,17203,13499,14308,14678,26380,21162,13545,14988,13455,13053,18577,22486,14000,10830,11266,8451,24896,24711,26732,23910,18700,14765,14613,15481,35124,33804,25157,20898,22383,29339,26566,22198,12896,9982,11421,9122,5795,9493,10156,12119,11723,8314,8042,6864,5700,6433,6692,6719,2723,2102,2394,2859,2028,2358,2708,2508,1997,2708,2528,2176,3285,2824,2120,1585,2182,1896,1344,806,478,502,436,417,482,508,377,295,154,109,68,41,0,85,192,375,522,646,608,760,1804,1710,1360,1710,1054,1113,1375,1297,1407,1744,1594,1288,598,405,294,147,131,668,1086,1542,1391,1950,2209,2200,0,48,84,140,326,432,394,376,325,468,536,482,483,665,628,568,754,835,795,846,1528,1352,1077,1002,889,794,806,684,759,510,480,274,0 +0,814,1910,2234,2182,2402,2582,4132,8531,18014,32754,54500,63800,67944,66110,76140,51511,60388,66925,58910,39541,29882,25327,26961,6852,9876,19588,21558,26128,58759,75038,136707,60621,58445,50802,71223,101946,75746,80826,89110,88214,52044,35232,36384,42828,30828,15218,8164,0,0,0,0,0,1,2,2,5,16,21,27,40,194,367,342,76411,66463,41481,38525,38630,28715,21833,11374,1414,12314,22589,23628,51230,57242,53655,65682,85920,71111,62948,48476,47483,66145,65647,70374,99934,88807,59810,70747,81935,53198,40227,19556,2158,1418,925,671,485,563,444,435,512,4364,8123,10445,13667,16264,21322,21434,22714,19209,17765,18155,28153,26738,15773,20131,16310,19083,15680,20712,15602,14020,9422,9182,25970,22394,28974,19395,18653,16570,19577,21603,26404,23204,21888,19719,14586,16992,16372,18378,15357,14928,17023,11725,7662,7833,9379,12424,13142,11996,7271,6379,6273,6960,6648,7337,3217,2417,2624,3424,2566,2781,2673,2945,3388,3381,4195,3338,3642,3196,2084,1764,2547,2181,1558,1054,692,504,416,381,476,396,395,270,190,126,87,44,0,114,250,377,522,904,908,1412,1908,1814,2564,2164,1755,1734,1951,1686,2011,1866,1751,1274,567,474,256,126,67,876,1490,1933,2151,2482,2457,3040,0,59,122,186,308,377,436,373,389,476,665,606,459,525,722,820,835,1104,1155,1082,1332,1164,1208,1053,852,922,1336,1007,814,596,478,242,0 +0,5828,13870,34751,44772,58832,57087,55899,55225,75062,70678,70161,99794,74786,60669,77740,69956,76640,62461,78054,70259,73569,55653,66669,66458,91408,90903,82552,106518,87444,83821,93084,98252,76313,55119,46504,31965,30914,30818,26352,22942,19892,19392,16017,17126,10464,5728,2337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68617,59662,48013,31367,20265,43210,58695,71229,110212,102111,139315,131318,144765,115429,100482,71412,73755,80172,83586,106493,123316,136908,116210,81855,81403,74879,45815,42976,36162,24414,22539,12898,0,2453,4573,8668,11730,17539,18983,17716,17060,14868,12434,10197,5093,11769,17005,17960,21711,22316,26464,27048,36882,35446,31457,29919,28014,33652,29690,27585,28072,29282,22065,16227,27379,30862,47076,50840,64294,60838,64926,45802,49357,49690,41247,42125,36265,31564,26971,19335,18357,11511,9270,7596,4750,4753,4979,7394,11420,9190,5666,4966,3754,4073,4059,5663,3369,5172,5311,5258,6348,5370,3932,5414,5091,3875,4282,3404,3937,2518,2160,1990,2636,2284,2261,3437,3541,3624,3645,3009,2857,2304,1467,1216,1088,788,432,197,0,390,741,1086,1343,1047,1266,1790,2331,2348,2389,3278,3571,2819,2042,2554,2922,3090,4698,5172,5826,5479,7747,5634,5678,5548,4961,3648,2238,2492,1917,3388,0,154,325,335,502,508,759,600,682,677,500,433,552,688,1044,1165,1034,1144,1111,1083,801,628,533,453,354,366,272,219,117,82,63,28,0 +0,7272,19472,28156,36495,42168,55043,50803,50637,52822,57832,65300,100068,88425,62820,85479,76799,69096,54657,77619,71898,63413,60817,83910,79289,80705,77383,81872,110385,102007,89331,81200,110842,90270,59342,39976,35334,35258,42235,40760,30503,29236,26114,22826,11682,9394,4855,2221,0,136,283,536,655,664,556,760,948,750,712,484,308,239,135,95,68482,52414,32000,26344,22353,37301,60523,95266,174346,157763,135598,142770,127115,112043,66004,57248,51172,72968,89054,112917,103311,115202,114400,86486,52783,54120,51165,42344,31661,31240,26460,12850,0,3016,5830,12026,16963,17041,23970,23860,16081,15354,16044,11256,7616,13466,16931,17846,22948,26732,25696,29696,29376,32756,24856,23633,30812,30000,22551,22997,34370,26365,17035,11074,30908,32420,46338,45922,57920,46263,53082,53806,51316,56028,49565,41150,23817,22962,23656,15158,18967,15398,10762,13054,9630,11304,11677,11974,14038,11682,9028,6138,3368,4778,6230,8648,3954,5494,5638,6036,5417,4263,4409,5663,4518,4116,3011,3288,3450,2746,2307,1751,2923,2806,2064,2884,3389,3164,4015,3356,2369,2150,1241,961,909,748,312,181,0,307,807,953,1117,1012,1102,1488,1750,2320,2187,2448,3379,2756,1713,2210,3945,4042,4770,5588,5432,6201,5270,5242,4170,4196,4296,3461,1907,1879,2008,3180,79,216,485,584,526,564,717,632,494,616,740,737,890,1065,1201,1394,910,1122,1068,1030,725,646,702,780,656,576,449,360,305,279,309,191,52 +0,11085,21133,29679,25841,36400,41444,39533,41137,47792,45277,41392,82170,88684,90466,82777,71902,65774,69712,78802,59684,71901,62938,86468,85635,72762,46144,62952,115944,89726,93246,109896,115364,107546,68180,38042,36211,43686,41149,41126,31445,39943,36308,27394,11480,8808,5150,2358,0,335,568,854,1367,1130,1376,1719,1800,1604,1326,909,545,442,292,238,59528,39156,29091,28433,31606,42523,50687,102522,195225,221990,179200,178230,116417,95803,63674,72349,38639,47183,71650,83018,74966,68548,76271,56944,49028,53558,45318,57699,30960,30092,21566,10338,0,4515,7628,15486,19783,16810,21020,28494,18111,13386,15345,12933,10291,10405,14762,14512,23772,27260,26692,27642,32513,23579,19629,18736,28547,23787,24782,19367,29424,24878,13982,7426,33002,35768,42548,34863,39572,38320,46588,41322,58223,59635,43744,39296,19726,17575,15952,11962,14490,12672,15506,21771,18036,16862,18529,19681,16944,12353,13134,9465,4547,6389,7866,9278,3447,4218,5094,5135,4340,4320,3510,5049,2664,2437,2045,2348,4409,3442,2788,2219,2855,3038,2604,2593,3648,3112,3742,2800,2170,1808,1320,1050,840,576,325,176,0,275,608,893,985,1095,1164,1322,1505,2519,3053,2458,2378,2267,1670,1976,5636,4127,3552,3428,3838,5269,5354,4278,3356,3533,2575,2459,989,1541,1598,2442,152,321,486,734,598,716,732,745,455,770,870,735,1422,1480,1518,1744,790,823,932,834,950,923,902,868,1161,799,786,552,521,536,455,338,125 +0,9752,20137,30422,29408,26960,38122,34768,41092,41702,31950,40577,58697,64718,65316,79238,68088,79836,105286,82213,64234,63477,69916,69744,59149,59077,37570,58260,88729,97503,86739,91552,123752,109458,64631,62944,47475,43168,51247,45786,37371,39578,34620,23814,10814,9848,5946,2678,0,520,1008,1244,2344,2420,3134,2847,2470,1836,2088,1332,916,734,491,378,62893,41972,26512,25207,28063,51790,69267,96821,161003,199660,213265,149763,87900,81414,47741,60726,25513,36423,67488,79799,62887,71635,78590,82610,52190,47238,49645,53924,33314,30668,16782,8012,0,6028,12306,17332,18665,19894,22073,35105,19582,20020,15610,14494,11746,10016,12475,13890,25749,21308,18756,22808,22452,18988,13104,12590,23577,18471,18652,19098,22679,15928,11263,6601,29950,35698,43302,33740,31437,31811,53220,37872,57729,43709,45530,29948,21550,18458,19766,15230,20142,17530,24868,22350,28956,32762,29293,26993,23885,19002,19445,12992,5567,8100,9629,10444,2872,4370,4639,4964,5630,4620,3667,5541,2681,2178,2205,2322,3662,3956,3264,2463,2706,3180,3247,3422,3509,3433,3676,2990,1444,1382,926,712,640,528,351,208,0,297,460,650,803,840,1080,1097,1924,2330,2408,2252,1836,1613,1607,1693,6008,5352,3821,3610,2980,3841,4706,3991,2970,3078,1969,1682,1017,1204,1211,1950,314,674,986,1176,1152,943,1168,1215,594,996,1036,1350,1748,1853,2295,2076,680,798,892,884,843,1044,1287,1240,1438,1278,972,820,762,655,793,555,173 +0,6448,12601,17056,25723,30583,28404,25249,48339,45728,60827,44064,38557,42441,55232,69633,93497,83842,62786,75777,91592,116368,106542,95837,59812,61410,84622,75538,62828,46293,35759,30398,124495,116048,112380,85562,51777,58231,52911,48198,47322,39142,40081,30894,14280,8476,4854,2724,0,616,1159,2199,2630,2652,3927,3348,3379,2703,2813,2109,1258,1117,869,531,49094,44903,53119,41190,32436,38572,49624,81284,171004,134920,88599,96240,100718,92385,60130,62787,14449,36440,55576,68002,74883,95289,88128,89786,57586,66452,54375,46274,39319,30847,14248,8247,0,8214,14615,18300,23295,20998,28429,30309,15344,15858,14560,14578,14904,10179,9148,12132,21596,19228,12198,14094,11303,10333,9648,7351,16484,12266,11742,12424,16748,14627,10579,6220,39232,43860,38844,39414,31500,35054,31166,37063,41599,44892,45005,39143,23564,26203,21767,14454,24424,25293,22278,23945,31744,28414,29260,33686,27634,19572,10811,7705,7222,5997,7650,12948,2536,2368,3181,3950,5279,7786,7835,5852,2018,2573,2969,2456,3165,3383,2553,1939,2108,2062,2449,2828,3290,2551,2297,1982,871,721,878,727,620,459,218,103,0,186,356,596,887,796,816,839,2272,2344,2823,2778,1998,1490,1618,2435,6984,5364,3841,2789,2161,1734,2025,2354,3689,2364,1906,1340,800,1447,2078,2004,468,491,610,1045,1459,1751,1973,1922,582,746,981,1526,2054,2360,2292,1830,745,680,598,658,908,1144,1389,1502,1776,1758,1403,1142,1060,1001,691,507,282 +0,5406,10582,13662,20852,23985,26469,23822,39367,41948,52262,47227,36594,29914,42880,42174,88794,90128,50835,74907,75504,83028,80902,85866,59252,54604,56876,59291,48407,31718,33206,29860,119466,119600,120542,91660,50115,63396,57149,58284,51992,38279,39789,31442,18804,11535,7640,3964,0,596,1311,1879,2799,3553,4167,3596,3967,2992,3412,2054,1318,1002,820,525,44494,59163,61450,52960,35694,44927,57176,77258,138280,120558,77891,88708,73308,71334,57061,44239,18168,31390,40896,56815,74218,83627,71895,62070,66130,51324,48668,41767,31001,23382,12831,6399,0,6765,11284,16558,25581,28657,33294,37205,24989,24006,26588,21404,30137,26696,17982,23206,15988,14598,11573,10474,8112,8058,9298,8791,19598,13274,12324,12345,13709,10923,9178,5130,49123,44486,40942,35075,30652,24801,26681,25968,43788,38524,34280,30644,17469,20604,17953,14273,23499,27825,29330,26077,34157,27150,26829,26194,21384,18871,11066,8888,10159,8561,9914,13790,1715,2155,2994,3619,4769,4820,6706,6464,1944,2560,2042,2228,3241,2938,2427,1676,1920,2020,1989,2409,2412,2328,1805,1385,823,705,897,726,457,436,218,98,0,192,426,567,748,912,1284,1414,2780,3373,4378,3356,3367,2924,2520,3392,4699,4524,4234,3965,2864,3096,3521,3265,4308,3362,2684,2260,1320,1498,2222,1779,615,832,1044,1512,2161,2167,2356,2384,1522,1518,1184,1707,2377,2022,1808,1842,553,662,701,768,927,1181,1479,1320,2136,1896,1656,1390,1362,1070,687,558,342 +0,4135,7438,10925,18527,22289,26185,19601,41830,43154,40390,41156,32660,29591,24618,30210,85658,69688,60482,77122,39954,76496,89812,87673,70643,66125,45379,39268,35934,31336,21521,19791,121381,96817,105050,97371,51331,72437,73662,76952,40463,38619,31668,31441,21910,13139,9812,5369,0,676,1159,1844,3618,2966,3661,3906,4372,4219,3166,2095,1272,927,757,581,40450,48594,66591,53662,39843,48229,61130,50537,159010,114309,68808,49792,54227,54086,35988,35502,15974,28161,42379,59176,58914,61209,50499,38544,54797,45903,40031,31116,27413,23363,12865,5426,0,4452,9584,12456,24263,33833,36106,35868,27574,28321,32297,27662,40758,33056,29317,25711,16244,13486,9860,9343,4694,5658,8722,11385,18881,16978,11934,9200,11139,7828,7924,5329,50696,47741,47286,35809,20943,17936,17192,19272,31520,21933,22418,13866,15129,16714,12746,16992,18018,19612,29496,21944,33148,27588,18618,17130,21880,15608,16466,13655,10786,9642,9780,15675,1251,1643,2458,2843,5454,4671,6068,6942,2372,2201,1926,1613,2686,2346,1594,1052,2507,2678,1958,1503,2689,1640,1314,1066,562,577,730,655,498,376,178,85,0,232,401,650,637,1018,1378,2369,4209,4022,4834,5046,3944,3648,4002,5687,4594,4976,4123,4947,3440,4535,4407,3729,4645,3524,3471,2931,1601,1481,1732,1428,983,1146,1454,1833,2873,2898,2652,2942,2038,1605,1734,2273,2457,1994,1744,1640,447,631,791,1183,785,1415,1644,1944,2363,1688,1752,1627,1495,1075,1016,828,481 +0,4257,7816,11326,12360,19380,19030,17826,32036,28630,30720,31664,23514,16964,14738,17086,61095,64060,48788,47223,34944,40954,55881,65800,51697,54041,39781,28661,27245,21378,13860,12728,110800,119432,92885,110376,94604,83586,89274,82038,51034,43752,31094,30810,23119,16747,12231,6094,0,821,1412,1980,3093,3782,3743,3850,4382,3558,3398,2172,1137,864,578,526,26668,40146,64733,66578,61247,59514,76750,63360,144821,89411,52478,39747,29844,32353,22744,19410,13045,23350,34090,35518,55324,48392,39668,35200,48939,42571,42110,27900,26934,19765,11122,5691,0,4430,10174,14450,19839,29802,36146,31046,29422,34626,29698,42286,68592,44547,44310,42443,9171,7778,6541,6470,5082,8056,8395,14531,17261,15998,13506,10127,11198,8025,5434,3712,50755,35576,45656,35574,17260,17630,16382,16326,15146,14310,17337,12502,13736,13053,14199,16080,22434,26776,43185,42406,35657,33294,21064,24876,27292,22979,20328,13902,10960,10628,8246,12392,1106,1826,2214,2670,3390,3742,3828,4336,2472,2156,1800,1884,1917,1653,1213,786,2530,2446,1460,1360,2034,1324,972,963,733,606,758,572,357,249,144,68,0,192,378,762,840,1236,1456,2562,3738,4401,4607,3674,4722,3813,4014,5584,6260,6120,4662,5554,6807,6366,5712,4813,4071,3405,2673,2490,2617,1984,1672,1080,1401,1360,1552,1818,2931,3051,3415,2920,2484,2272,1724,2178,2163,2226,1504,1516,245,507,877,1064,1170,1481,2140,1744,2146,1894,1851,1862,1439,1184,1132,666,532 +0,5765,10527,15853,24815,29213,37027,31634,29727,26777,23125,18650,8970,8725,10161,8214,53771,58158,68074,68653,89298,58592,52559,55610,46006,39105,25982,28293,34105,18472,11575,4664,113095,104342,80080,45940,19237,29156,39738,37298,46296,37348,21307,16332,7894,5825,3848,2011,0,322,723,853,1215,1149,1616,2868,4134,4527,4334,3365,2678,2182,1012,602,15566,45006,62758,70202,81005,99951,106742,83608,83268,80648,63033,48795,44129,27772,21516,11608,15177,12241,11216,10353,7071,13117,22381,26715,42572,38355,25435,24119,31223,22793,11875,7044,0,5096,10214,12178,17460,30097,40229,47844,40736,46933,47792,48286,63964,74938,60957,58056,2824,6036,11991,15032,21799,24612,30195,30214,22126,13120,9824,7370,5373,3762,3170,2174,37596,37447,50796,47065,37571,33004,28384,19914,4890,3894,3307,3450,4933,9545,11260,16981,28948,33634,38732,37688,48343,49031,45515,30210,28659,19221,16748,15515,16690,13341,16058,14833,1409,1571,1563,1495,1906,2610,2714,2781,3014,3072,2772,2532,1725,1115,1023,478,1907,1572,1488,1358,1666,1746,1337,1358,929,916,870,836,585,391,303,176,0,626,1499,2072,2965,3161,3757,4217,3890,4081,3642,2937,1450,3557,5222,5683,7376,7840,6459,5054,5246,4693,3982,4594,3848,3060,3495,3519,3417,2982,1879,930,1475,1368,1066,1624,1831,2167,2640,2489,2978,2462,1605,1836,1905,2108,1671,1393,0,121,238,424,486,912,1384,1668,1701,1853,1701,1434,802,754,717,646,542 +0,4398,8375,14386,17532,26866,33559,27900,22818,21762,17354,11503,8613,10218,9702,7384,41084,51268,60540,75322,91061,83242,49778,55356,35210,33704,26098,26256,21527,15595,11956,5494,112198,90652,76122,53685,26860,31205,36907,51445,31144,29272,18934,14658,9914,7020,4471,2328,0,698,1403,1710,2412,2542,2400,3366,4250,5044,4940,4048,3441,3288,4026,3254,11864,37656,52549,57709,92620,89139,87455,96584,88222,87237,64058,69129,64184,60661,61882,38986,40475,33903,28965,23148,39278,45522,44156,44066,28437,31330,31346,29230,27880,18988,10032,8549,12520,15470,20663,20787,18036,33002,40610,40866,43135,57092,45862,59372,45394,55814,67908,71454,4975,7703,12344,12534,21973,25058,23848,23075,22926,13328,12057,8686,5320,5230,4469,3334,23940,31744,40004,38468,37390,34891,28160,17248,4797,3942,4027,4046,5512,6582,9833,11126,28910,33122,37344,39118,47906,40140,43301,32519,30195,25206,17082,16658,13320,13587,11421,10277,1894,1503,1907,1812,2227,2072,2185,2512,3828,3188,2968,2234,2005,1838,1334,1049,2823,2443,2449,2414,1837,1620,1121,980,753,742,541,609,458,334,306,156,0,590,1383,1716,1918,3020,3033,3338,2754,3349,3781,2634,1903,4449,6348,6038,8132,8005,6552,5726,4846,4591,4162,3483,4208,3719,3035,3766,2576,2390,1684,1210,1354,1162,1332,1566,1718,1934,1974,2626,3244,2306,1596,1555,1968,2017,1934,1676,98,162,248,372,495,731,1342,1410,2120,2136,1433,1135,1074,946,1055,894,515 +0,2676,6526,9648,14124,19208,21620,24526,19714,15109,15698,11545,10988,8160,8095,5342,42794,43254,52262,69501,69344,54538,57802,43974,25079,23830,19038,18871,16726,11709,9622,6142,84130,87298,72910,50323,33728,41761,50820,54722,26180,24910,18814,15945,11300,9444,5481,2748,0,966,1790,3051,3468,3165,3643,3614,5792,4732,5342,5686,4240,5795,6258,5916,12680,35352,53190,60037,91956,84252,68510,105235,72077,65542,86764,88223,88272,78594,81668,60901,59796,46547,40526,42045,66279,69810,83938,75645,22859,31644,31482,34879,23573,19761,12305,10761,20976,27474,27348,22964,25406,23962,29594,36413,64817,71508,57987,69420,37201,38450,57064,54006,8874,9850,9486,11659,21934,22636,17526,16699,19877,19942,15463,14816,6891,6271,5737,3483,21518,27026,30519,24724,28188,31169,23960,14246,4988,4276,5151,4679,6181,8770,8882,6919,19829,20862,31487,41280,34643,41510,35332,31280,21993,24790,19812,12907,10450,11708,9220,9338,1830,2136,2110,2228,2105,1984,1414,1905,3876,3320,2394,1848,2553,1618,1233,1507,4255,3843,3214,2947,2246,1639,1045,1036,598,452,468,456,320,272,237,110,0,504,1074,1409,1675,2431,2832,2824,2590,2470,2986,2702,1737,3771,6481,7028,6408,5834,5426,5109,6159,5007,3739,2971,4188,3472,3758,4544,2500,2096,1844,1388,1664,1273,1154,1106,1433,1352,1704,2280,2459,1560,1398,1107,1509,1257,1553,1673,196,298,305,382,392,537,876,939,2105,1553,1688,1180,1253,1050,1131,757,400 +0,2130,4338,8873,9691,12221,16742,16928,15182,12510,11488,9217,10799,8967,6635,5418,31957,40392,35828,53327,51715,46552,51983,35658,16752,17290,17907,15210,12232,12744,11720,6573,59807,63872,41913,36996,28843,42086,43105,46829,24859,26720,23732,17370,10737,9091,5294,3315,0,980,1841,2808,4147,6018,6113,5862,4768,5729,6302,6420,6402,8791,8534,10160,14193,28900,42099,41802,65645,78102,72202,98186,70896,63402,109222,101718,80036,80364,81140,80119,56042,54308,63036,55036,83948,87538,84980,84636,21642,21574,25628,29320,23464,23545,15267,20804,31344,32240,36380,37046,31460,34172,36994,39647,67600,59290,57361,66862,45430,60128,51007,51489,8816,9742,7082,9844,13270,15960,14893,12806,24994,18804,20733,15074,10888,8333,6504,3646,22074,26834,26933,20891,19440,20090,18472,10565,4695,4780,5003,6039,5776,5824,7884,6366,13670,17582,22161,28186,32480,33504,27189,25020,27623,25522,24688,18768,8916,8970,10392,8590,1497,1698,1648,1769,1440,1509,1335,1464,3673,3202,2336,2246,2414,1708,1478,1514,5138,4608,4418,3500,3055,2246,1305,926,606,414,375,432,292,266,159,98,0,455,750,1098,1786,2263,2708,3116,1553,1868,2211,2504,2086,4632,5523,6500,6645,5268,4988,5352,5240,4516,3569,2440,3285,3276,3216,3556,2807,2650,2586,1894,1696,1276,1200,1395,1562,1700,1858,2306,1787,1357,1066,1183,1573,1496,1786,1582,342,438,412,384,470,622,835,799,2257,1902,1655,1046,1269,1214,1168,740,523 +0,1499,2973,4847,8845,9502,7459,5980,7225,7764,9716,7480,7204,8450,7162,5866,18695,28036,39944,48521,47054,29514,22130,23916,11237,14645,16725,14173,13708,10798,9918,6292,26797,29693,34610,31970,31514,43157,51564,55577,32872,19292,14707,15946,13472,12713,8220,4114,0,1316,2945,3204,4945,7350,9285,9908,5838,4402,4608,5697,7861,10343,10357,10712,16748,21421,34759,49330,55575,56810,52829,68725,65382,75301,82811,78429,106962,88359,89609,83427,71403,64055,78588,100345,97764,93718,92516,85726,15851,15862,15755,20513,29873,37800,40832,39103,34639,36920,39326,47310,40874,36826,45165,45425,56822,70700,61523,53588,51000,49454,56343,61409,12350,12535,11899,12599,10872,9582,6404,6455,26718,18232,17037,14447,11732,7357,6536,4549,17652,16794,16922,19122,17702,13939,6980,5285,3983,3700,3652,4322,6284,5538,4371,3940,7614,9389,9788,15658,20792,15598,16148,17585,25359,22311,17713,13819,6976,7164,8194,9026,1872,1602,1602,1259,1476,1418,1360,1189,3986,4092,3549,2908,2871,3037,3176,2394,5570,5747,4378,4548,3342,2732,1597,1098,582,551,586,550,344,277,185,86,0,466,836,1040,1460,2154,2130,2300,641,953,1166,2000,2408,2714,4008,5469,6225,5173,5968,5053,4424,3375,3504,2214,3144,3427,3585,2866,2812,2456,1528,1618,1196,1071,1036,1397,1612,1594,1464,1642,1139,1059,1089,1397,1238,1576,1438,1297,607,456,483,618,623,805,825,796,2577,2247,2014,1395,1135,1135,996,892,778 +0,1084,2146,3507,6202,7042,5676,5380,4839,5336,6578,6368,5044,6157,5781,4706,10816,16306,31036,32832,31790,24124,16402,16856,7947,9952,10500,12746,11939,11113,9764,7610,27361,26692,29064,34038,31251,37684,35030,41870,29550,23538,15120,10872,11085,7732,6994,3252,0,1298,2516,3650,4857,7019,7046,7622,6124,6460,6149,6728,9981,11588,9765,10768,16032,23036,27782,42486,41025,47960,55710,78802,68070,73311,73566,84660,117667,94893,123500,103283,84575,76496,102641,104924,86592,93522,106912,108474,36912,29826,26667,26908,41434,42729,48959,51438,36362,29442,37552,37200,26511,31154,45939,41370,67318,64822,72151,59919,39199,53584,52041,44108,21370,16746,14664,12744,9076,8494,6600,7036,28151,19200,14479,10951,12163,8596,6522,4216,16525,16998,10978,15332,13439,10774,7022,5636,4508,4682,4982,6338,7136,6648,5783,4771,10930,8213,11251,13774,20062,19548,14764,19775,17273,15368,14326,11549,9526,7208,6151,6183,3948,3274,2667,1626,1779,1757,1846,1762,4154,4772,3441,2980,3133,3558,3431,2702,5478,4762,4134,3777,4631,2998,2159,1442,410,496,492,428,257,202,141,68,0,336,655,868,856,1232,1406,1878,501,795,1323,2228,2859,3778,4461,7126,6088,5860,6918,4418,4269,3622,2791,2098,2678,2456,3426,3034,3171,3206,2539,2218,2086,1664,1593,1806,1648,1448,1535,1894,1436,1308,1234,1008,1176,1106,1001,1202,886,858,967,1040,917,1049,996,1056,2631,2218,1802,1798,1566,1134,1080,850,738 +0,863,1502,2174,5139,4546,4161,3560,2483,3320,4143,4555,2955,2520,2650,2644,7901,12068,13319,16608,19780,19498,14250,13128,6305,5988,7761,9292,10879,8287,8828,8956,19914,26382,24530,27048,22368,26450,31231,25740,29274,19551,15828,9369,6120,4352,4054,1792,0,1400,2479,5142,4487,4946,6456,8293,4727,6849,7800,8122,16261,15042,13276,13712,19471,25843,29800,35071,46633,54713,66545,95509,56154,69883,67664,88519,149236,166047,136012,104214,77599,89201,97859,136121,118032,93768,103408,106448,50108,42350,33216,35827,45227,38161,44120,39148,28662,37336,34374,37296,22278,32144,42566,58439,60317,60184,58948,52106,38313,42120,37466,33381,24536,17601,18811,14123,7771,7924,7873,8292,23074,17165,16035,11376,12661,10174,7074,4714,14340,10252,10455,10610,15566,9982,8855,5714,4436,4980,7724,7632,6382,7313,6296,7524,11320,9474,9079,10985,14408,14036,19037,19531,15509,15183,14784,11457,9710,8055,6688,6726,4829,3196,3136,1744,1636,1676,2010,1659,3134,3134,3480,2767,3076,3777,3926,4733,4450,4251,3302,4024,4691,3610,2010,1114,404,389,254,194,108,104,68,41,0,236,426,446,590,864,1156,1252,390,737,1192,2222,3260,4530,5600,7590,4001,4568,5682,4459,2829,2115,1769,1657,2280,2535,2492,2756,2570,2970,3094,2322,2420,2043,1911,1851,1794,1583,1888,1675,1386,1129,1106,845,756,820,894,1185,883,919,1186,1413,1004,1227,1418,1736,3114,2838,2446,1950,1555,1102,988,675,521 +0,458,741,1050,2990,2882,2410,1848,1142,1630,2188,2446,1714,1650,1526,1350,3332,4664,7214,8071,9976,9650,6642,6836,2870,3730,4650,5370,7831,9167,9633,11212,16754,22152,21447,20297,24307,25625,26614,22112,25162,20196,12966,9540,5609,4776,3606,1978,0,1404,2079,4087,5941,6804,6434,7416,6068,8506,8844,9842,16074,15862,18244,13257,18601,25606,31917,38129,53504,57290,77616,93712,71480,69458,67328,104254,151868,160661,122411,105716,99764,115788,128727,110364,108608,97802,102881,104376,72876,78048,54450,45040,42990,40717,33578,39115,43874,38198,29358,34943,25824,31545,43252,52772,71081,63874,57353,49566,46579,38374,34783,30179,27675,21313,24422,18024,9088,11193,11107,8213,16582,14584,11934,11934,11668,9388,6106,4796,9726,8068,7884,7980,9076,5819,5564,4540,4408,6322,8476,7545,8119,9736,10357,9668,12536,8907,6865,8587,10756,12560,14129,20213,14452,15674,13450,10795,11018,8562,7367,7182,5302,4322,3312,2002,1531,1941,2453,2004,3158,3636,4018,2624,2798,3338,5036,4886,5488,5000,4802,4504,4493,3521,2028,1285,232,228,126,114,64,52,34,23,0,134,234,257,350,444,678,590,210,881,1403,1888,3293,3566,4142,4940,3735,4572,5874,4972,2960,2250,1432,1360,1743,2066,2167,2891,2278,3122,3498,2792,2148,2626,2366,2286,1891,1670,2096,1639,1456,1282,1040,850,1002,986,792,1020,895,1000,969,1421,1604,1480,1533,2159,2328,2538,2384,2114,2070,1748,1607,989,668 +0,757,1407,1784,2163,5502,10396,17121,19926,21214,17539,22191,29510,30643,33818,32444,20699,14903,7348,5517,2180,1586,1094,574,0,2526,5074,9491,15039,18454,22045,24888,23131,25330,37205,32558,30119,27725,20272,24294,24282,15585,12096,8214,3558,2611,1413,787,0,62,114,162,166,412,633,900,1177,1435,1461,1724,1858,3670,6761,9164,8578,9890,8728,7639,8801,9067,7701,5238,5375,3817,3734,3286,3896,2626,2299,1142,0,2150,4094,5809,8154,10489,11077,12569,13036,13082,14307,14507,13080,16163,14598,12870,10088,7501,5464,6784,6720,8783,8378,9888,9508,9843,10550,9399,9519,16215,20629,24735,21099,33733,40848,44352,40667,38951,32555,26698,27128,27054,20416,9757,3453,3976,3668,3151,3281,2642,1954,2462,2200,1558,1355,1558,1882,1505,847,709,660,555,318,167,0,16953,32838,35793,53209,60467,66699,59177,60754,81825,90284,106582,107215,105888,71866,74591,96912,69096,43014,30071,14357,8329,4331,1831,0,0,0,0,0,0,0,0,0,5659,9687,12188,17277,23002,22766,26924,36250,36591,41622,40238,27398,34066,34417,35451,28272,36962,37985,38316,28298,25563,23673,17572,5706,4978,3053,1975,1609,1074,756,354,0,3462,6419,7244,9678,9032,6872,8873,11975,16535,16012,18913,21196,25104,23764,24123,23284,27068,23140,20211,23348,20273,18364,12912,12811,10118,7705,7016,9585,5678,3239,1918,0,0,0,0,0,0,0,0,0,254,426,638,760,877,782,732,899 +0,588,1258,1694,1696,4169,7790,11195,12274,15664,18052,19282,27458,23558,34031,29196,47434,32530,17122,14568,7607,5830,5414,2240,242,2192,4928,8370,14346,15845,17697,17913,27319,34477,39950,39167,26971,30103,29774,22236,23635,18545,13664,9990,4817,3501,1600,974,1662,1746,2069,2280,2870,2286,1325,1091,1053,1459,1736,2016,2476,5142,7977,8205,7296,6534,7084,5940,6762,6515,8508,6258,4333,4406,4164,3535,3318,2215,2246,1035,0,1674,2963,4999,6928,8137,7156,8111,11842,12976,11966,12580,11191,13478,14108,10972,9456,7856,6036,6789,6953,7208,5727,6293,9960,9477,7862,8530,10868,11672,17056,16831,17689,30473,44120,46890,41234,42998,33046,29756,31728,22209,16462,10866,6354,4270,5365,3580,3696,2690,2849,3088,2117,2326,2404,2486,1984,2028,2384,1806,1487,992,566,350,10194,22887,27073,39734,48872,58874,57949,62300,64642,71568,81978,91474,98744,89670,74021,66756,131976,116514,85265,41112,16603,11484,10308,4406,0,0,0,0,0,0,0,0,0,4675,10660,13578,18679,19921,23534,22968,27353,30730,37349,37304,33899,32360,39370,33735,39986,41910,38637,29992,30840,34277,29714,18476,7595,5236,3969,2793,1504,1212,1250,658,0,2607,5218,6882,7716,7656,8505,11158,15352,16574,18433,19235,18000,20024,22467,23496,19389,17478,21968,21155,17906,15081,12584,11796,9553,6990,6258,7764,8657,5649,2611,1472,599,521,426,447,450,360,184,162,1383,1006,890,944,832,902,1030,1185,1295 +0,416,994,1671,1312,3704,5684,8355,10744,13827,15964,17952,21231,23439,25980,16220,60171,40168,34373,23980,12742,8801,8300,3854,521,2287,4792,6007,14958,11903,12744,12870,23798,23261,33900,36547,23912,22480,30554,24380,26607,16712,11910,6706,5373,3784,2310,1566,4039,4083,3688,4784,5198,4436,2658,1589,1234,1800,1880,2886,3825,5175,7106,6374,6106,4667,4002,5208,4523,5153,6609,5145,3287,3670,3529,3068,3128,2003,1720,924,0,943,1928,3182,6107,4798,5778,6632,11427,11408,10928,13191,10318,8368,9646,10597,7176,5939,6756,5847,5838,5517,4804,4196,8322,6861,7120,5259,8846,10570,8988,10764,14910,28850,37056,48371,39137,42008,36826,26011,26518,18248,17698,13376,9410,8724,6484,4452,4082,2898,2913,2646,2129,2648,3966,3922,2441,2958,3576,3371,2029,1840,1086,568,24225,25649,25784,28866,55308,70882,70032,72625,53330,70332,74036,86659,59506,59027,63342,74736,191202,172652,100953,63420,23275,17183,12892,6799,0,0,0,0,0,0,0,0,0,3758,8294,13170,15994,19044,18270,21283,17488,30437,38670,29988,36713,40780,34113,30401,41731,38046,29144,28626,43183,29075,28906,19426,9386,8121,5225,4035,1996,1514,1530,836,0,2804,4800,6785,4018,7458,8896,11063,17006,18475,17096,17167,20581,25388,23914,18282,17934,17742,13686,12413,8817,8371,11810,8643,4987,4476,5056,6708,8664,5994,2792,1524,1122,979,970,894,1037,688,444,338,2742,2402,1295,1796,1283,1149,1008,1274,1392 +0,620,1333,1566,1550,3132,3777,5932,11657,18515,24021,25523,24467,25300,22465,11546,69505,48651,36020,23614,17819,16726,18030,8952,809,2014,3288,5109,9719,9365,15006,15923,27036,25149,38109,33908,24934,23546,23394,20184,22780,18356,9910,7294,4238,3068,2548,2118,6500,6624,5588,7260,7360,5428,5317,2940,1144,1956,2279,3382,3700,4246,5981,6740,3921,4251,5074,4837,4842,5938,5630,5036,3983,3120,2984,3292,2749,1924,1938,950,0,876,1453,2870,3978,3911,3938,3417,8240,8082,7242,8637,7316,8524,7872,8228,8628,7590,8033,6298,5751,4884,4674,5601,6684,7124,6087,5920,6630,6539,6275,8411,20095,27820,28586,36934,40590,33520,38322,34314,34193,32920,24871,18052,15982,10456,9277,4733,3639,3314,3632,2812,2194,3708,4318,4342,3954,4380,4742,4500,2943,2219,1325,672,26754,24986,27001,31576,47353,54294,56814,79188,52692,62560,64482,76024,64593,70367,85939,87967,161049,166382,98218,72502,25380,25074,16676,7676,0,0,0,0,0,0,0,0,0,4409,11254,12520,13448,18606,17736,17314,17021,24712,38087,34633,34669,39833,39070,52310,40144,28860,34872,26322,34148,27222,22354,16706,10419,9036,7465,4989,3274,2319,1760,992,0,1638,2802,5088,3156,6402,9798,10570,21928,14740,13361,17046,15560,19832,19694,16191,16490,16645,12456,9954,6332,6490,8075,6000,3506,4125,5073,5760,6549,4664,2641,2311,1816,1846,1438,1253,1361,1172,777,588,3970,2560,1487,2038,1525,1578,1424,2054,2105 +0,514,1036,1382,1929,3132,5294,5343,15805,18622,21141,20280,21360,18090,10881,7242,67191,58048,54414,40042,30400,26124,14777,7163,850,2213,4122,6279,7249,7800,11534,10068,25183,22535,30239,34417,28393,22032,23691,19172,24288,18787,18834,10076,4986,4956,3333,2873,6857,8888,11338,10970,10202,7373,5546,2742,776,1752,2598,3344,4398,5221,7140,6229,3223,3531,4886,5175,6236,4284,4424,3602,5381,6042,5336,3690,2510,2064,1567,713,0,460,974,1210,1749,1674,1971,1844,4948,7432,7593,7266,6348,7543,9585,9024,9059,7500,6622,6410,4414,5620,7301,7844,4513,3790,4186,4300,4668,5018,6117,5665,28072,33621,39080,28013,30308,25390,23517,20689,37480,31455,19998,16908,18766,13781,8056,4995,3165,2713,3043,3785,3310,3412,3386,4016,6023,5250,5312,4946,4418,2995,2033,1149,34855,31610,39646,37763,32325,43750,56116,83597,51105,62643,70637,61345,62752,89849,100101,93170,187000,180676,134064,93338,33206,20558,12960,5340,0,0,0,0,0,0,0,0,0,4582,8043,14760,17362,13077,10210,14176,14779,22914,34100,41308,34920,36047,50232,66537,47643,42366,55558,49716,34518,30547,16740,14111,13405,9888,5731,4999,4180,3364,2830,1184,0,809,1782,2600,2881,3832,5074,7598,21339,17848,17458,14917,16294,14760,9287,11870,17222,14595,9189,6019,3282,3118,3083,3746,2454,3455,3333,3290,4864,4630,4026,3387,2681,2115,2247,1810,2256,1865,1832,1054,4214,4414,3289,3174,2130,2697,2499,2658,2820 +0,367,738,896,1757,2766,3679,4422,9396,14786,15807,15906,16446,14238,7653,6344,75651,54616,51543,41908,40762,33187,19755,12748,3204,4790,7325,8758,7372,11406,11831,15830,22064,24687,32613,30669,32971,23836,24900,20666,24324,15796,14594,12886,7799,6176,4501,3229,9159,10948,18314,15776,16233,10456,6623,4030,584,1578,2025,3535,3781,6200,6379,7836,4719,3522,3944,5466,7112,5828,4220,4371,6210,4520,4196,3512,2992,2174,1503,780,0,398,650,962,962,1080,1082,1202,4170,5283,4684,5730,3574,5264,6066,6784,6951,6064,5935,5000,3063,4564,5752,5451,3109,3366,3536,3306,2740,3890,3665,3980,27018,32121,35743,27054,44736,36705,33951,29448,32600,23898,21356,20624,21502,16108,10300,6825,3051,3588,2803,3692,3423,4528,7132,9346,8984,7306,8153,5465,4608,3494,2112,1164,28646,40977,39435,48288,36257,55250,59768,81174,58079,59228,55351,65166,53469,82648,90839,71420,394162,242357,180076,112724,49117,40637,24862,13132,0,0,0,0,0,0,0,0,0,3290,6250,9871,11244,11920,15352,16056,17158,24024,35845,29316,49039,52988,65952,74206,52566,45320,49495,42431,37107,26326,16119,16362,15109,10890,9249,6147,6235,4140,2897,1467,0,992,2281,2380,2900,5464,5568,8162,14912,19762,15802,16139,17704,13653,9585,11474,15442,13117,9513,5421,3326,3790,5047,5711,5144,5316,4602,5157,9390,8593,5690,6238,4888,4257,3980,3686,3345,3348,2963,2516,5146,3946,2760,2654,1824,2528,2633,2666,3032 +0,400,674,872,1318,2388,2918,3716,6149,10368,12006,15982,9884,6982,6366,4398,59477,48855,51655,34896,56979,38579,27614,17306,5116,8433,10446,10948,8930,9652,12854,17259,20661,25706,24874,18774,26918,22560,24952,23983,18011,16766,13645,13774,10445,7034,4985,3393,15874,14927,20697,16605,18656,11917,9982,4426,243,1301,2370,4021,4990,6984,7313,7676,5948,4046,3813,6660,5778,5144,3901,4146,5064,3585,3268,3611,2551,2094,1586,926,0,278,546,842,546,638,610,779,2732,3628,3648,4395,2372,4042,4894,5687,5388,4765,4310,3618,2864,3402,3593,4293,2978,3145,2914,2271,1522,2146,2612,2822,32862,39456,33838,22118,45056,34794,36645,27770,26646,23691,16223,22220,20624,20309,14429,10306,3233,3723,3625,3358,3328,6352,8508,10968,15232,11037,8786,7279,6016,4974,2368,1223,29070,40503,45572,41827,47813,74430,90750,105281,63447,70572,63094,55506,41637,47054,66726,55822,472640,404950,241540,162770,77422,57400,46403,25722,0,0,0,0,0,0,0,0,0,3105,7178,10081,10503,13925,15784,16516,26461,24702,31742,28096,57048,79878,77648,81402,42721,52722,45273,35525,30600,22853,16302,16271,15486,11284,10038,6826,7233,6567,3918,1983,0,878,2106,2310,2174,5150,8396,11839,13805,15832,18916,15952,14343,13423,11084,12660,15841,11824,7733,5312,3141,4786,5524,6378,7212,6150,6652,6437,12835,8546,8255,9454,6662,6564,4648,4469,5993,5778,3846,4032,4826,3863,3301,3221,1200,1518,2574,3854,4290 +0,154,356,413,785,1331,1705,1749,3411,4972,5448,6787,4726,3707,2568,2252,70782,57712,47793,44904,64338,39243,27466,17997,5884,7307,11151,13442,15113,15913,13988,18567,20942,23633,27429,23324,24331,20144,19289,16329,14879,14248,13031,9934,12488,7945,6006,5474,18988,24686,31598,22622,16918,15666,11224,5246,106,1038,2180,3092,3757,5540,6279,7978,5300,5002,5623,6396,7079,4874,4009,4110,4369,3992,2951,3104,3040,2001,1831,908,0,128,306,444,290,317,344,415,1543,1635,1637,1584,985,1720,2252,2916,2317,2676,2294,1792,1234,1774,1559,2068,1521,1636,1568,1192,675,1136,1193,1146,31613,31868,28010,24621,40258,33674,31949,27300,30910,32788,20705,27206,23391,23887,20478,14476,2653,3306,4656,3926,5138,7202,9884,16766,19616,15131,11694,8486,6593,4890,3558,1710,34786,49316,43580,51820,55292,81212,66910,94066,72443,66794,43860,39950,40463,40639,39754,32917,413263,361170,224652,170042,146742,86500,54960,23854,0,0,0,0,0,0,0,0,0,2754,6611,7920,12332,13930,18589,21936,28686,29910,34642,40696,47984,69908,71809,65412,31396,41247,37718,37624,26289,23895,16330,12970,10427,9596,8614,6921,6914,5432,3856,1879,0,1083,1882,2171,2253,5298,9737,9506,14984,16936,14380,16302,11596,13660,11670,11403,12338,10126,6404,4910,3596,4278,8145,8296,8988,11870,11304,11018,12136,13026,15925,12772,7265,7366,5038,5616,5544,4244,4944,4664,4204,3596,2898,2404,1360,1846,2543,3123,3883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62127,59684,71612,65214,60962,49630,39684,25867,7218,8868,13779,15786,19820,21973,23231,21388,20442,23625,30556,24799,23932,24890,18632,12403,10177,8295,7856,9863,9322,6141,4616,5083,27172,24488,28582,24913,20889,16098,9208,4963,0,2238,5576,8108,9081,12456,12589,13743,7011,5278,4373,3347,3579,3555,3589,3995,3918,4398,4881,4322,3124,1994,1571,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25176,22101,24452,21500,11445,14230,15240,23452,29354,35464,37803,38784,29011,21446,20334,16209,2345,10934,15990,20606,21015,25702,29281,24849,21008,18324,19752,21834,18253,11712,6052,3033,51974,44276,25965,20290,24691,38380,44188,51485,62460,48893,28538,19496,6552,5345,4430,2002,553573,476572,510933,508509,382949,272691,250182,108901,0,0,0,0,0,0,0,0,0,1396,2964,3476,5306,9866,11373,22082,29404,21300,21766,29371,31482,48761,53589,55824,29360,32700,35640,37296,30379,22968,12525,10211,9346,8256,5448,5133,5705,5044,2831,1275,0,2839,6427,9308,10430,10331,7308,8590,12438,13481,14495,9648,9239,7122,7206,7958,10315,11211,10336,9275,6877,6445,8612,10950,9774,8415,6798,9200,12432,14220,14048,15648,7867,7298,4529,5840,5336,5482,4544,4275,5218,4297,3769,2966,3306,3142,2928,3461,3601 +0,586,1128,1662,3534,3353,3092,3048,5376,9220,12518,17467,14583,16010,19538,17790,57998,63122,75816,57522,46494,47634,54624,48544,15318,19629,21772,21126,34232,28040,28520,28645,17142,21850,25204,23787,18250,18582,13715,14640,11123,9806,11642,10645,11556,9692,7305,5814,28095,22606,23333,23828,18880,18810,14807,9592,971,3511,5224,7014,7564,9697,12068,11118,5010,4306,3729,3148,3197,3446,3182,2977,4150,4520,4018,3404,3451,2180,1235,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,811,941,1121,1072,945,883,727,508,510,500,410,192,629,1077,801,24567,22480,23418,18862,10484,15162,12278,17822,21052,27957,31127,28584,32354,23244,18576,12379,3267,9146,11296,17250,22976,28868,29952,25830,18963,25043,26564,22244,23081,19646,14656,11281,45752,44446,32501,38340,27217,33538,41734,49554,49137,42308,28372,21259,7882,7237,5927,5228,497662,572082,476519,450248,395294,316563,197239,111378,0,0,0,0,0,0,0,0,0,2222,4172,5214,6346,10174,11609,20092,31124,30654,25602,38007,33487,39464,46153,68072,24791,29812,39014,39359,33984,24581,13533,10043,7213,6526,4730,4150,5228,4012,2658,1074,0,2384,4586,7653,10030,8390,7727,7802,8170,10462,9996,7577,8086,6236,6499,7213,8587,8222,9470,7724,6886,8143,7234,7968,8592,8098,7181,9647,11678,12298,13017,13738,7263,7732,7362,7061,6862,6350,5639,5070,5200,5586,5293,4924,4795,3817,4978,4111,3337 +0,844,1964,3176,6657,7933,7674,5697,9400,16442,21377,31066,35929,29402,36381,29915,53628,56922,56232,43898,47912,56463,68420,60148,28266,27128,23471,23776,39960,43126,37163,27609,20393,24543,21274,20098,12587,9977,10600,12662,13935,13132,13004,12269,13775,12860,8782,7396,20679,20613,22930,27271,25406,17746,18214,13914,2258,4144,5918,7964,6795,8588,8530,6454,3029,3123,2198,2312,2630,2015,2381,1727,3197,3467,2676,2502,3148,2266,1438,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1867,1616,1793,1838,2174,1804,1762,1255,1066,1128,864,775,403,1286,1822,1971,21311,17214,20208,16686,13071,12985,14660,15660,12605,13638,21170,20707,26308,24476,20146,12878,3946,7350,12034,13668,27850,27746,30234,28202,23290,28835,28838,25829,30615,26494,20242,17744,37267,43580,35688,44835,38117,43790,44926,54576,44331,37427,35718,25450,12385,10784,9718,7676,634404,597821,545778,506411,315741,271407,189370,80948,0,0,0,0,0,0,0,0,0,2110,5160,8372,7620,9517,14118,24083,38059,34964,39678,49353,38971,47137,59198,65220,23947,29073,35160,32988,33045,21151,15706,9187,7745,4923,4048,3195,4572,3247,1846,990,0,2138,4054,6056,8474,6707,7574,8094,7005,8739,8962,6100,7105,5734,5032,4754,9132,8471,5559,5049,5733,5820,8443,8681,8031,7913,9260,9919,11204,11206,12520,13460,9586,9041,8576,7141,7783,7280,6178,5864,7167,7900,6358,5862,6381,5628,5402,4520,3592 +0,3071,4777,6570,8190,8522,12240,13135,15565,27825,36550,43508,44515,55309,53871,57942,67947,74777,62737,49175,53135,75826,78666,91456,38165,33830,24490,34154,42963,47542,51327,44324,14845,17236,19086,21020,16666,13718,13940,12774,19321,15884,15276,14885,15126,11066,9194,8054,22390,21234,28070,25700,20719,19138,14510,16351,3792,4456,7095,8226,7722,7197,8453,5974,2086,2050,1708,1766,1493,1444,1824,1290,2649,2654,1899,2017,2356,1564,1165,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,2594,3213,3054,2789,2297,2360,1539,1583,1774,1418,1140,738,1698,2626,3212,28248,20614,23012,16544,9332,13056,14326,13738,10155,10684,14984,14268,19336,16779,12435,9792,4563,8732,10703,14466,19756,24102,33740,31393,31592,29136,21336,26725,26262,32474,36685,30039,27061,30223,37558,47100,55544,52916,48444,57345,48615,35290,23075,19006,16799,11910,11266,11280,674056,660707,613183,470296,342889,197719,122938,74626,0,0,0,0,0,0,0,0,0,2818,4737,8152,7529,13010,17154,20316,45936,38276,43994,56718,47873,55685,58868,66278,18323,24934,27613,24118,29514,16604,11936,8024,5440,4970,3314,2606,2960,1998,1566,740,0,1593,2872,3878,5622,5510,4596,8183,4388,7402,8359,6367,5203,4656,4694,3745,8399,8370,4700,4528,4734,6380,8888,7425,7620,8653,11490,10362,14128,14266,14722,18509,13764,12461,10290,10735,8423,8492,6225,4988,9296,7594,5950,7000,6949,7652,8692,6804,4948 +0,2395,4051,8061,11858,14074,13322,17361,22853,30470,40823,48510,59223,49152,53357,57283,116134,98918,63307,52510,45530,57195,57588,80124,43661,43915,34012,34428,46911,63030,60732,63737,13700,10428,9843,11032,15598,13659,16664,16794,24498,22192,19143,18792,14540,10906,8256,6726,19505,16007,16217,21363,22012,23564,19029,22068,5992,8000,8733,10352,9524,8868,7686,6935,1225,1244,1199,795,592,926,1051,1008,1412,1371,1910,1571,1448,1009,474,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,3964,3161,3005,4068,4240,3617,2196,2021,1600,1759,1420,882,2313,3620,4815,27939,21784,21446,17042,7990,8082,7775,10212,8862,12764,13354,13685,11058,10236,8242,6088,4086,7200,12034,18434,19586,29186,36728,43848,49613,37534,29863,28347,26924,39095,41484,33045,14601,21208,35300,40198,62726,48269,57666,54796,46357,31726,27182,22164,16324,14775,11354,11816,821635,779777,744653,541762,269288,202342,113318,51889,0,0,0,0,0,0,0,0,0,2436,5886,8802,9868,11075,10559,15349,43651,53721,51862,54133,50716,47300,64667,62285,17744,14247,13947,17621,18151,14411,12662,7324,2489,1917,1533,1322,1608,995,660,324,0,627,1331,2322,2903,4726,5842,5560,3912,5582,6465,5049,5844,4895,3189,2792,10236,9123,8791,6982,3086,3560,3789,4952,6510,7980,11349,13283,16660,20365,18587,23608,16860,16018,15474,13806,12946,10838,5644,5774,12167,9908,9173,7846,8557,6817,5445,4903,6128 +0,5750,12531,15339,13381,18929,26734,33032,30525,35040,56903,58956,69947,58902,61318,82234,160925,114665,78851,82580,160781,127926,124909,151113,88302,96768,91370,79715,54366,63093,68799,65140,12496,10840,10481,12735,15753,18439,20087,20662,17279,19406,20822,18856,18912,13903,9108,8349,19459,17866,14137,18699,20136,18055,16835,21482,8413,8535,8615,10514,13156,9514,7336,5764,1162,1083,1051,704,497,700,868,786,856,1032,1064,1111,967,755,336,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4846,4356,4974,4998,6706,4976,4006,3236,1600,1652,1848,1310,1186,2216,4000,5042,16982,19240,16700,14090,5690,6151,8801,9298,7703,11149,9777,9130,9827,8737,7454,5724,4340,7130,8564,11321,20953,27274,38650,47424,53771,51424,30627,33420,36697,40034,35586,28444,28283,41516,48399,43876,66174,67413,53236,64902,56856,39318,32129,28359,18969,18076,14037,14252,573968,543586,621958,388410,206306,177648,119191,54682,0,0,0,0,0,0,0,0,0,3416,5880,9728,15490,17628,19435,16223,44549,43034,44544,41391,41710,41157,58526,51260,14027,14445,14166,15022,12796,10561,10781,5750,1843,1650,1261,1183,1362,918,511,238,0,534,1015,1583,2426,3367,3254,3676,3309,3410,5501,4755,5212,3922,2671,2433,6930,7664,5657,4702,3630,4054,3292,4801,4270,5536,9447,13012,12630,16266,13693,17916,14351,18116,17696,17630,12744,9494,7479,7162,11935,8150,10166,8320,7807,7186,5676,5982,6427 +0,9711,19767,32158,19944,28512,39692,47953,50635,56008,79679,87956,91026,84948,81958,87746,156359,125586,98200,107402,242303,176744,174934,166805,152860,148354,140923,108477,82709,79310,71266,76301,8690,8998,10789,13934,13595,15587,19634,20834,15693,16462,17863,16356,18644,13383,13784,14334,24126,24183,18536,18568,16184,13567,14518,20262,9359,7097,7739,10256,13631,8455,5131,3780,795,767,614,505,246,384,414,377,584,645,714,699,514,346,249,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6338,5426,5558,6314,7707,6490,3609,3133,1642,1683,1447,871,1137,2781,3634,4328,12740,12907,11758,9070,6210,7842,8036,7221,7985,6936,7954,5920,6364,5982,4777,4861,5975,6140,8126,10754,21745,32815,33207,47820,40919,35814,43164,45474,40508,48400,43236,46853,38326,42497,66187,64779,92764,92358,62633,58082,62024,50935,31525,28194,17248,16634,19948,16790,454624,403110,301131,280720,160187,115204,95429,45917,0,0,0,0,0,0,0,0,0,3253,6238,10113,22593,26679,23719,23556,39336,32235,26432,28812,32728,34544,33092,45084,12165,12445,10803,9994,10844,9156,5786,2982,1424,1258,1036,737,1066,805,382,201,0,397,662,1226,1213,1632,1968,2196,2306,3023,3466,3716,4071,2502,2064,1956,6023,6344,5162,3970,3278,3851,3571,3337,3436,5382,7580,9342,12555,10486,12064,10225,14569,13364,17632,20342,10570,10895,8588,10283,10041,8905,9741,10806,8336,5966,5958,6566,7279 +0,10210,25977,36716,31934,39364,43570,50702,57752,84260,83398,97256,127998,105314,112959,130258,126812,130660,146034,182578,312369,277087,261908,278780,264301,201631,249438,204024,128763,111917,80969,102178,3488,5324,5748,8948,13680,13848,16908,21745,20975,17635,25017,26242,26032,26850,21880,25094,27685,22306,22550,18686,15771,17589,15934,21644,16784,14938,10211,13178,13997,8032,3828,2775,406,422,352,242,122,178,222,203,330,326,322,352,288,195,135,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7809,7160,6051,6569,7602,5432,4798,4046,2576,2342,1930,1231,1227,2740,4422,5768,8877,8168,7971,5830,4266,5920,7254,5991,6441,5374,5422,5732,4626,4948,4604,4128,4673,5102,6355,9856,15102,24765,30802,46063,33636,32022,39953,44101,45174,51578,45132,45688,40679,55286,68939,79083,73360,76650,43416,62122,54574,45296,27860,26252,22272,25930,26981,27927,399114,268866,221794,227980,118475,104275,58239,33403,0,0,0,0,0,0,0,0,0,3582,6997,11075,25332,24234,30572,29701,38224,29306,26518,29429,29546,32539,28194,31320,7142,6332,4938,4268,5160,3947,2894,1628,790,632,590,484,554,392,171,96,0,156,303,606,635,806,953,1004,1348,1656,1550,1726,2061,1286,1036,787,6762,5924,5634,3418,2384,2471,2530,2074,1647,2830,3898,4556,8427,8075,7855,9122,12288,12582,14364,16050,13597,9632,7588,9670,7817,8493,9518,9164,9091,7622,6786,6953,7766 +0,886,1681,3501,5010,16397,26928,27839,35561,55824,76718,77309,75060,124237,140267,117072,142456,165780,163990,135850,98950,123140,118650,176406,185769,225468,276276,302020,245783,168651,165885,131000,0,3764,7316,11136,16120,17592,26819,31654,31224,30193,25044,37890,38676,38276,45839,43914,32321,24035,17888,14952,9947,7206,7009,9108,12870,9368,7229,8514,8485,5538,3315,1840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11155,11246,13484,11489,9544,10582,15086,17488,20470,22178,19870,15811,11918,10015,5611,5758,6432,7152,5509,3844,2392,2932,3252,3510,3688,2542,1876,1706,1298,1408,1676,2473,5116,17106,23708,28650,34415,38704,35102,40890,40818,42434,53863,57893,43265,45696,52029,48096,46792,39612,37248,28915,32679,32363,23854,17418,6822,14791,26070,31900,42370,47365,44243,44275,381273,395941,365818,427042,414236,486181,479397,373732,287868,205188,116951,120326,87169,51819,37582,18959,0,1890,4635,8877,11178,12284,10347,11290,16059,14321,16432,11878,7902,16617,22531,31032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8160,8488,11255,8694,9624,9918,10726,14798,20475,26040,23980,17989,14693,14805,14636,14507,12756,8740,7024,5403,5064,6629,7825,7615,10806,9507,6543,4792,1738,3102,5558,6638,6516 +0,1192,2838,5075,9070,19128,28071,36545,33664,58272,72290,63378,101477,106749,115600,107455,156801,135568,161598,134875,121122,164946,186521,219494,153623,192120,243178,241238,188729,172024,127894,108167,2647,7768,12121,12916,17574,21712,25026,30436,35823,34164,29330,32910,46180,40226,51808,42548,29340,26201,26779,17332,11959,7935,8309,8622,13029,9042,8066,8036,8036,5974,5172,3275,7435,7548,10020,8666,11344,14848,11892,10892,5864,7291,8566,6330,7060,7032,5728,5003,9435,7424,4581,5552,5232,5310,5607,5462,2296,1951,2498,2632,3118,2649,1914,758,10880,10696,10336,8820,9000,11014,12948,17901,15106,15132,17641,15013,10236,8072,6368,5058,5987,5538,6126,5434,2826,3278,3854,3899,5056,4155,4129,3438,3478,3707,3329,3722,3823,11774,22199,28686,40703,45310,30806,36750,53495,50510,56540,63190,59493,80921,104199,83084,39868,35718,26564,28042,22140,21972,19149,15866,8116,18016,32885,39038,43717,49946,45164,37684,403410,357838,309987,321650,287445,326325,310639,259800,219146,201987,111990,91167,76257,47173,36629,16502,0,2335,4816,6893,8746,7940,8286,10690,17578,15592,13923,12141,12024,17695,28808,30576,6004,9300,9326,9768,17115,12772,8378,7360,8720,7070,6219,4870,4072,3696,3483,3940,4972,3816,2817,2437,3360,3662,3134,3147,4226,3282,3434,3517,2592,2094,1352,756,17667,14550,9866,9666,8181,10559,12686,13623,19218,19682,22665,16360,15118,14508,11229,13126,10397,8944,7899,5328,4537,6086,5579,6320,11680,10260,9824,6705,4658,6299,5320,6495,6790 +0,2272,4514,6283,11595,25916,41420,46489,47883,48980,50218,46060,96982,84090,104377,104463,128555,197035,200353,145831,166020,229473,221812,236164,112260,150122,162530,222861,167488,146366,120012,104624,6047,7933,13166,12437,17184,24942,30546,37441,32243,33646,30996,24154,44734,38030,45140,43296,32875,30427,30663,27601,13064,10382,7279,7002,10958,10167,8435,6019,8354,7150,5990,5815,14393,18613,16795,16189,20337,24832,24880,21020,13164,13587,14864,14812,17380,15460,13354,10256,17052,14598,10812,13365,9125,11135,12587,14046,4037,4075,5336,5407,7646,6587,3363,1730,9191,9014,6850,6078,8335,11932,11764,14312,13666,12453,10042,12895,8178,5756,5686,4878,5876,7076,6161,5779,3418,3902,4512,3502,6016,5535,5946,5888,5747,5061,5226,7481,2706,8242,16560,35566,33732,42850,39658,50807,79271,77502,71934,107317,97282,95406,131338,166114,27858,22084,24346,21147,17521,13146,12324,9824,10655,17596,32001,32435,54219,51834,33082,29149,321652,302688,293731,292438,181011,160822,201734,176744,204673,143700,82412,55337,61758,48284,34387,16675,0,2179,4768,7007,7972,8104,7734,8752,17640,17306,12440,13514,15543,18463,25990,29985,13094,16418,20346,21934,30429,25734,17976,14831,15050,12629,12652,9137,8003,6724,8432,8727,8606,7793,6312,5703,6610,7348,7276,6644,9306,8966,6794,7252,5099,4758,3356,1962,24008,17027,11259,11037,8885,13471,14124,14848,23426,15786,15678,14692,13002,9652,9935,7787,7591,6042,6228,3997,2984,3151,4283,6153,11438,12634,13062,12169,9079,6359,6268,9362,10207 +0,3568,5578,7333,9746,28716,52488,58903,44438,48418,59126,63812,83313,83676,92978,105328,143082,179233,207624,221304,194544,199258,190653,208169,89177,116268,129118,155750,119020,122995,87265,60981,9607,10364,9886,11329,16219,22098,24699,38494,35730,30646,26144,31758,36716,39049,43167,40162,35143,31152,28051,29274,18443,13422,12857,9192,10270,10865,9786,7324,9102,8000,5909,6772,29413,33114,32222,26934,27238,29042,30009,38539,22198,18743,26231,21792,22223,24768,18206,15525,23392,21632,17407,19264,12915,15556,21344,22128,7913,7925,7517,7360,9637,8106,5052,2528,9849,6876,7950,5462,6489,8759,10056,11396,14101,11068,9516,10540,7093,4826,3972,3594,8152,8718,8840,6902,5211,6382,4917,3999,6087,6051,6838,8236,7236,6192,5890,8241,2736,11304,18980,32948,32304,41582,31395,40146,68922,71614,84571,109161,100368,127241,154508,184895,15020,17238,18243,18928,16107,14406,11965,9984,17117,24820,27728,34440,52560,37131,22774,28804,268601,256158,188448,196708,169954,143582,194947,147418,129343,101190,61202,48038,49320,33515,27836,11734,0,2071,2774,4986,4770,5768,6910,9452,13139,16954,17979,19098,18732,22476,29000,21456,20900,25906,31477,34216,41257,37888,24694,21620,20672,16062,17870,14743,9054,10508,10827,14100,11639,11742,11141,9301,9128,9537,11992,11950,12999,13735,10587,10817,10166,8302,5944,2828,23892,24154,18230,14471,10222,10741,13195,13231,20388,18602,13584,11826,13499,10122,10087,8154,10416,8058,5653,3896,2501,4196,4741,6474,11910,13928,11409,14906,13130,11209,8315,7535,7774 +0,3844,7956,11802,12440,20669,25372,52636,45954,46799,57898,77072,73926,95321,89841,89309,187599,236720,249545,288535,262544,250253,312488,260590,75592,78318,92063,85711,107146,74184,43779,37470,12855,11197,7996,9358,12714,18192,30102,30630,32474,33262,31409,33901,44223,36211,26546,33522,31676,30980,22187,17184,18447,17554,13629,10623,10439,11251,11513,9887,7876,6678,5260,6281,35405,31062,19672,20056,30022,43088,51184,45289,31179,30212,39764,42375,31749,21495,17299,13632,32529,28557,38040,31457,22562,25908,33542,35423,11616,14901,15112,14686,12272,10025,5600,2366,10342,10345,7370,5425,4372,7832,9569,13336,11123,10488,8283,9169,8235,6217,3616,2676,12374,11510,13216,12337,7755,8319,7654,6471,6412,8964,10089,9370,8332,8274,10304,11260,3855,10101,14894,24067,30573,33276,31684,44732,90624,117755,129078,109340,131503,171959,174090,147345,6279,12750,15757,17192,19246,13961,10862,7636,18576,27550,35740,39806,38825,32752,20118,17245,134195,190788,188099,191463,153268,128390,158072,124153,50469,33566,23714,24244,22932,15975,9656,5582,0,628,1419,2508,3622,5771,9716,10620,13209,13043,12729,17682,20801,24860,24744,27035,35721,35038,40694,37789,44498,49338,46421,46190,21794,21284,20151,16344,11603,12286,9491,13217,13312,11651,8126,10032,11980,11886,10870,12914,18166,13064,10777,14346,14844,8380,4495,2038,26492,20294,20874,14547,10774,10273,12719,12332,16478,12853,11171,10434,11206,8557,4886,5172,11606,10280,8018,4464,2328,5161,6474,8646,17385,16530,15330,14188,16524,13645,11183,8910,8674 +0,3325,5859,8876,9768,19127,24158,40520,40282,56020,80100,85352,75473,82884,76380,90764,215204,213625,246576,254319,302756,296662,314417,214042,56579,68898,96790,109385,88773,73458,59940,45525,18388,13818,12649,10519,11615,20510,25859,27960,37318,38810,31878,32358,32477,29056,34170,48704,35876,32068,27988,25778,17660,14729,10657,8369,7510,8058,8515,7566,6734,5926,6807,6878,35913,36651,41476,31835,42800,52630,59388,51273,35945,37233,46394,44652,52727,39449,26558,24204,46514,41333,54190,39166,21979,27320,38718,37679,20342,19844,21258,19750,13247,10516,5938,3130,9269,8048,7274,5401,5459,7200,8508,13216,11689,10266,7458,8683,7780,6423,3934,2929,14661,12418,13533,10724,6730,6096,6135,5818,5035,8019,10835,10228,6730,8544,8826,10123,4946,11190,13876,27702,40438,54642,56315,76946,92296,108749,107742,104648,133070,144210,201402,165454,4983,11127,15460,15330,13805,13770,10333,9118,12928,21231,29989,34957,38434,32162,20791,20812,121620,142006,108647,107527,149214,122974,116689,109295,31901,24450,18863,18402,20750,12140,8568,4522,0,522,1134,2182,2070,5318,7126,10477,13300,11492,14387,15599,18248,19264,17992,22822,27401,30326,37692,37894,39762,47970,50003,40600,35265,32120,29460,22902,24514,22496,23830,21653,11800,13734,10638,12484,14505,15478,16133,19485,29858,24838,19336,16160,16690,11276,5516,2454,21746,23862,21542,18588,13349,12223,10380,8230,11360,9994,8186,7624,8185,6306,3946,3509,15649,11122,7140,5922,2427,6520,10135,11845,17458,18216,15574,11430,15220,12335,13947,11998,9336 +0,2541,5513,7172,10905,19962,25574,34366,45916,56653,76096,79203,61662,55472,68214,86176,190638,200667,176794,202588,328219,278948,215500,148158,46290,88457,112182,105572,80825,85421,69766,53749,26306,16537,14456,14597,7988,15321,26300,33408,44282,37269,34147,28606,23195,45359,53474,70818,44278,47507,44410,29789,23498,19476,9722,6042,5207,6904,6514,6895,7338,7624,6552,5890,48423,56959,53509,60658,58801,58202,68955,78624,46910,54534,47535,52568,58282,56459,45486,35103,55561,44728,52574,39641,31260,38696,42861,34228,26921,31250,27069,20592,18757,13698,6784,3332,7931,5634,5755,5813,6855,8251,9376,10798,11350,10229,8852,8813,9391,7613,5281,4952,12104,12154,10702,10007,4000,5613,5888,5614,5006,7932,9044,8264,5014,7728,9942,10239,5928,12052,19129,34736,53421,61018,70554,87388,73190,110505,119252,114389,149298,182003,187693,172439,2814,7172,11103,11246,8452,8281,10736,10828,12041,21934,27709,32412,28252,27961,20555,21620,79639,74115,73614,51964,102066,101287,98096,87858,28240,22667,14748,13611,13802,9367,7560,3622,0,505,898,1794,1444,3355,6774,8202,10052,9704,12109,15588,10229,13877,14259,14729,30328,28517,30080,35960,32688,33970,46871,55369,37235,32207,33432,38843,48652,50694,43674,34958,12954,15863,14944,15251,15552,15896,17822,29665,31690,26772,23604,19372,16672,9995,5579,2314,22504,25900,22212,23489,17035,14931,9447,5388,6525,6795,6973,7836,3392,2348,2254,2233,16126,14090,9039,5852,2785,7492,11118,16470,16810,13834,13407,11666,17661,16049,16946,14412,10440 +0,2864,4386,6727,11952,19880,21175,30734,48870,50860,72298,58548,50072,46784,48923,48196,219597,242497,222984,224010,251536,248516,185413,110152,52258,86216,127305,96114,82366,79468,63779,66293,26106,19718,13661,13277,8861,18760,26357,26557,42722,37110,35184,27640,22613,52112,55145,65328,50860,50668,44672,30898,21621,18382,7656,6657,6282,5786,7435,7560,6886,7652,10458,7647,66149,56790,64474,66944,71736,67400,61252,84356,47432,54778,54830,56002,81264,67865,71941,51337,58227,50222,47772,44104,41122,40284,46991,39082,31096,30424,37454,26403,20283,17668,10136,4589,4877,4526,5254,5940,6390,6572,7613,10572,10057,10918,8559,10667,8663,7913,5706,6131,12909,12412,10340,9791,3888,4542,4179,5875,6486,7799,11399,8891,5924,7328,9607,9098,4334,15822,21055,29955,46282,50488,75229,93827,104537,123112,129616,122179,120229,125415,167669,160488,1258,4163,7587,8579,6849,9406,13615,13028,13578,18160,25091,31331,29706,29820,23200,26748,32992,31381,29690,31886,49068,46836,46450,41633,13760,10444,8641,8158,7847,5261,3390,1736,0,374,714,1179,1108,1882,3172,4635,6571,7096,8813,11512,7498,11731,11642,14240,36708,32882,32877,41622,40821,43514,44992,52444,32877,38170,48338,60717,62603,60657,39923,38792,16687,14572,16596,19802,27414,25576,21047,34199,29644,23708,28603,22340,22857,15786,8439,3322,26132,27305,19498,25862,20592,16010,12006,7354,2652,2769,3659,3444,1519,1228,1202,1014,16915,13950,9148,6638,3141,6708,9936,14110,19043,15280,11105,14302,15601,18313,20796,16127,9466 +0,6084,11557,24773,31396,36914,48567,55355,44580,42875,52273,34340,30697,34338,33484,26707,217715,209056,175110,120672,61814,69130,58005,56510,61929,71112,70795,95125,91953,91981,118729,112671,31351,35070,33065,28331,28324,27154,23097,21773,31092,35645,53726,51548,74920,59613,61349,62307,66083,66637,49439,30299,16214,15181,11074,7573,5878,6696,9167,8752,11387,13090,14629,12536,68110,72516,71275,76382,59866,63406,61217,72351,64930,64501,59722,47705,27976,32406,26500,39031,57568,43474,38418,24976,23105,26460,34001,38486,36120,38212,39736,33786,23748,16753,15700,8316,3301,4339,3952,3356,3278,4336,4843,7672,10818,9493,8764,13428,15970,13870,15769,12022,11927,13070,14474,13090,10592,8619,7470,6335,8248,6637,6504,9830,10440,10542,12000,11838,4736,20915,31182,42423,54830,63356,85534,99192,106283,96928,88287,98567,105320,90856,88150,140140,0,1340,2545,5194,6196,11218,13127,18903,20602,34614,38004,35839,38058,44084,49782,45674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,289,426,725,1094,1905,2098,2210,5683,11581,13828,14465,11528,10434,14586,44008,48507,45501,51965,53310,61966,66250,54054,41496,51269,54446,62580,78550,55567,48448,44378,15177,15053,13375,10754,10108,22926,32758,30901,37940,44000,44574,42686,28560,21844,14084,6750,27276,19667,17862,11897,3070,2282,993,589,0,0,0,0,0,0,0,0,16487,17749,13711,14644,17563,16410,22611,19699,15981,19221,20447,19850,16874,12978,14366,14444,11139 +0,5778,11135,19137,28741,33262,47064,47310,33128,37346,38969,32064,30994,30038,35004,26073,204634,186582,131782,93779,57438,63641,75538,82236,54638,80494,98935,109878,78396,98427,79854,89448,25321,27056,31616,30486,30404,26138,29073,33908,54777,72560,97965,115014,128204,93198,80175,99464,62427,53907,42848,25695,14998,12291,7564,6430,6281,6846,8752,8844,8703,11843,19944,16334,54831,67612,83024,73634,79402,75314,72172,80544,53000,44188,42862,44088,36543,43051,38270,57073,75830,64946,53114,41442,39611,44608,39395,38950,42247,33586,34820,26370,24213,20395,12269,7218,2431,3270,4140,3094,4082,4998,4446,8096,10790,10599,10137,11014,13383,14532,18525,12432,8395,11409,13729,13658,7537,7505,7992,6999,9523,7398,8384,9799,8932,9846,9625,8076,5376,16707,35949,47781,53296,68298,53376,83138,79985,88602,81772,75922,88218,90134,97350,112262,11311,9342,12236,14470,13061,12354,18928,20584,18400,25524,40204,46908,56791,50746,53692,47090,17748,15007,7472,6772,5394,5120,3635,3662,5716,5920,5197,3824,2455,1824,1016,555,0,178,349,383,520,1016,1522,1622,2007,5188,10247,11770,12106,10824,8381,12233,35158,39054,47154,71284,54122,56356,46512,44906,48046,59854,63864,80182,69258,66214,57389,56496,27556,27360,19684,16822,15972,19320,27766,28168,32198,33968,41868,44118,52567,38695,20995,12228,26916,26846,27180,20327,9952,10142,8202,5628,354,440,556,504,604,480,286,136,14279,14660,12162,10834,11880,13632,13671,13848,16622,15318,21943,17303,12776,10259,10717,10876,11765 +0,5199,10791,14967,26533,25272,34813,37350,36330,36020,34409,22278,23782,23797,26036,32678,155930,122516,128514,80757,59056,80580,87798,94420,68251,77650,95312,83938,77348,68273,75281,102404,17698,20711,20815,23012,26180,30174,27154,33220,74626,86235,127602,125330,154001,123222,97778,98006,56785,46735,27682,20309,12730,9040,7430,6820,6091,6594,6312,8726,7706,11661,19396,17581,50148,73387,77824,67191,117869,102703,90798,103555,38544,35924,44781,45592,55251,57196,52379,83917,91617,81020,56947,65440,58953,53148,57437,45644,39722,41444,29708,20281,27421,16732,10758,5675,2448,2324,3229,3103,5108,5501,4061,8856,13168,12243,10604,11678,12328,16198,15638,16087,8945,8323,10533,12294,7720,6296,6580,7254,7704,8998,9130,10283,10226,7636,8389,5728,4607,16492,29476,45824,34790,41767,46243,48667,69679,60273,78892,83327,115217,116119,107416,102028,25849,26180,18050,23944,21976,18213,20272,22889,10674,26395,34117,54777,78994,59614,57312,53231,31146,23662,18660,12737,13395,12268,9009,6708,9725,8841,10353,6582,5002,3549,1936,896,0,159,349,490,499,990,1216,1224,1563,3766,5592,6866,10630,9119,7008,8666,40815,52953,50018,73875,48406,36405,41845,36484,61019,58178,74400,82189,68973,61512,59450,59754,32993,27557,29880,23396,19598,19418,20857,17486,40439,49925,48552,56110,61011,40876,31304,23436,34448,35117,36143,30834,18149,16202,12910,9400,643,738,1197,978,1094,729,524,252,10286,8708,9110,8895,11414,11379,7858,11708,11860,13469,16522,12826,7947,9511,9982,10553,13169 +0,4431,8660,13434,15497,19264,25175,32506,37011,46309,44121,33100,25040,22618,18306,21620,108027,84857,81050,60822,48740,74600,91617,105578,66170,69656,71257,88078,77308,88125,103684,86168,10918,18846,26700,30968,29945,33776,37006,48628,83109,105150,115182,145312,177323,149102,104965,99214,33106,35004,17742,13596,13232,11114,5997,4951,4086,5423,5367,7014,6620,13480,19518,18092,40320,65097,76477,88060,101355,81986,74905,95735,35941,38922,50378,62108,58978,59525,48468,70394,84211,76440,71012,80950,74454,68832,55920,43632,41678,40170,31842,25501,19512,14228,11577,5676,1226,1800,2252,3360,5678,5809,4811,7829,13216,14262,14941,16630,17759,20014,15905,12120,8544,10213,12149,11347,6620,6005,5408,6580,7984,7880,7265,9415,9330,7897,6028,5030,5140,12638,22514,34944,32154,42065,55657,54405,80824,76044,91372,85942,95158,99512,96841,75012,33089,35086,26754,25862,24625,19782,26158,21519,9036,23296,43184,44989,84578,65153,56658,69959,40329,32414,19907,18536,16155,12956,11705,9320,17050,18890,16885,11376,7843,4980,3236,1720,0,146,307,500,498,930,878,1052,2036,3282,5697,6536,8952,8568,8110,8008,27162,46872,67576,86736,69915,62464,51423,68075,80205,82112,90645,69917,70260,65986,72517,82607,63316,54758,46895,41434,31861,31146,36744,26806,51792,59694,64939,63997,58112,41794,31495,29171,62270,53566,34109,35436,24596,21574,17366,12360,1085,1594,2254,1899,2320,1362,1013,502,7217,6830,7655,7926,7001,6866,5788,6259,10950,12023,12065,11145,6954,10083,8997,10208,12402 +0,3103,5892,7534,11634,18332,27409,32467,51192,51564,38894,36189,28254,32754,28027,22221,57438,38827,37294,53229,55514,76276,80746,96217,73535,66402,71628,87926,109596,96220,110301,91970,6963,16216,28151,30953,35342,40462,43658,49092,113861,120746,161820,168648,183950,144988,128876,101566,21140,16658,15086,12208,10353,8923,9369,6850,3352,3621,3196,3386,4814,10922,14360,17612,41477,63458,99538,126027,114704,108903,138068,105035,24963,40608,51534,75919,75388,87444,110597,129423,92274,89595,83888,69626,72472,61481,42639,37671,37792,35031,33746,31658,21154,13425,10354,5396,452,1597,2380,3270,4576,3664,4149,5920,12562,12181,16440,20782,19939,14252,11216,11557,11618,9176,10392,8117,8136,7200,7429,5571,6893,5582,6502,5634,6739,5650,4211,3775,4789,9592,11454,17677,31224,35397,55765,53868,74220,89746,112099,100968,101878,81627,76751,63300,56402,53506,57044,42640,37332,25228,23823,18825,7752,21778,39542,51575,75796,74728,59400,83182,57352,58749,41620,31046,20697,20122,14858,14405,30456,22441,17913,15728,10006,6218,3288,1401,0,148,363,581,605,722,1052,1136,1953,3131,3620,6342,9486,8125,7983,7771,15962,37758,72253,80080,105262,131783,130246,100632,115979,85366,71638,62064,56532,62296,83031,113150,86746,58943,42907,45321,36764,38793,31029,27563,62237,51396,39064,56191,59543,52140,36042,29092,74171,61170,48253,33430,29432,23187,22570,14367,1995,1630,1962,2507,2871,2860,2004,1058,4121,3530,3342,4300,4338,5046,4302,3939,6446,6226,8184,6799,8228,10037,9345,7572,8936 +0,3574,7128,12496,14652,22962,22648,32775,48053,44805,30629,29580,24248,31166,28297,28770,52268,45609,51345,61584,50105,68255,67916,75073,67354,69720,86643,80714,76854,87375,102640,68028,13759,21106,28422,37132,35233,37231,43265,48898,90899,96008,148822,144176,139049,155221,148237,107161,26114,29107,26999,24078,26060,19210,11622,5993,2462,2709,2966,3709,6259,9437,12302,22804,35885,64899,85407,105060,80684,110545,158778,144224,60931,73796,62479,85271,97797,108795,121514,124137,91840,107322,114988,94452,106058,70526,51444,51177,38996,34016,37386,33786,34886,23971,16640,6980,342,1308,2275,2778,4118,4024,4703,6874,12134,11396,14127,17141,22384,17061,11721,14190,10101,8162,8262,8348,8311,6442,6851,5902,4771,4397,5858,4720,4406,5341,4790,4356,3231,8577,9581,22855,28028,31730,49579,45792,49271,61668,107858,95166,110489,91692,87096,66616,60594,67724,70322,55764,70548,55319,34648,26854,11062,29708,55902,68243,89484,91570,84788,84641,66590,57671,50774,37000,40064,38676,25948,20128,35644,26299,20670,16504,11657,8132,4480,2364,0,122,251,351,412,556,876,902,1313,2872,3284,5355,5833,5098,6750,5032,33630,64999,94450,85722,102358,123716,149938,126034,121493,97224,86598,123228,106968,107666,127838,109803,83062,63868,48900,45540,40824,38438,37251,43418,66987,59626,51457,69130,65317,64834,69820,57528,72152,70739,65499,40182,27977,24973,26406,14700,5405,4447,5396,4533,3621,3560,2401,1186,3308,3007,2362,2514,3620,3342,2808,2612,4003,5146,5707,4668,7085,7375,8530,5902,7194 +0,4501,8671,15503,13552,18236,29108,32538,40606,39970,30399,28334,21706,27060,41744,42882,63362,49250,54578,67148,51728,57171,83330,77134,59905,68402,88601,74888,76950,69758,75520,67605,22786,23556,25648,39418,36687,46982,50073,43354,85527,75723,97481,119014,131477,158595,140012,116756,36620,33163,42252,48662,33606,19380,14188,7194,1164,1901,3144,3850,6408,8657,14064,25399,46831,46618,69374,81150,79242,102764,143835,123962,89084,105569,103228,95724,160883,127850,136983,102910,123667,141665,127851,83892,108203,77656,81436,73101,28908,38276,35828,38028,40660,26938,18776,10100,272,1264,2002,3013,3689,4637,5233,9484,8353,8996,11748,16422,18342,14693,15611,18626,8275,7486,9308,6670,6386,4773,4343,3710,3856,3509,3475,4344,2786,3867,5266,4986,2898,7096,12308,23808,21579,24430,35946,36269,31949,59962,73655,92899,111675,88387,70714,98200,92561,92892,75302,56614,82784,52918,46336,28335,11368,39030,54378,70110,101354,95234,102926,86445,73088,49482,44466,32448,55048,36674,31216,27208,34738,27034,22962,19239,11043,10075,6526,2768,0,62,144,290,229,300,467,636,1076,1935,2956,2964,2972,3013,3320,3837,47648,85079,94884,76669,83052,98875,152070,106375,112329,95005,112178,142476,162894,129816,131806,130740,91010,84034,64274,56137,59041,63180,46409,48380,72916,78134,65169,90278,77715,90332,104041,77528,65953,72347,74616,42044,36999,27422,21700,17495,7432,8934,7672,5329,4378,2830,2443,1100,1916,1378,1334,1952,2399,2125,1514,1432,2576,3240,4214,4841,3734,4456,5296,5226,7261 +0,3954,8279,15175,15180,15726,18520,27608,36015,25956,27372,22874,17983,29809,56660,51487,75372,57832,63374,70560,54622,69722,89377,78125,68197,93458,103016,82008,72125,71686,83761,64240,23244,30198,37558,48984,58160,67828,63312,77976,118113,107950,106385,136141,140107,148098,156397,97500,55264,48504,39968,50019,43026,29992,14774,7900,564,1644,2417,4736,9386,14889,21970,24384,59017,67912,59022,77835,94686,117176,152966,151968,137958,137664,112468,118650,186125,137750,162280,132428,98382,125541,112247,103985,96904,80865,73882,56782,36064,48058,58513,45340,44074,28194,17537,10266,157,970,1372,2482,3478,4986,5048,9641,9024,9686,12980,15546,15739,15313,13272,16366,10761,8471,7764,6292,4081,3147,2743,2278,1994,1826,2549,3231,2488,3393,5688,5386,1450,6030,9716,16054,19459,19806,23856,25494,21729,41812,49646,64509,77599,76889,87515,112638,97640,93850,64269,61412,82548,64860,41948,28017,15917,40435,79918,96072,106148,112218,115435,92547,108698,79459,60204,56696,51317,42606,32318,36415,35834,33652,24208,20927,20655,17092,9146,4716,0,37,76,140,119,165,217,281,602,962,1224,1473,1629,1920,1512,1711,63430,70326,97522,112090,123818,152719,224271,167337,166540,134524,152234,179976,190192,182758,116466,123197,126142,85862,100653,85676,70798,86866,73829,61844,65450,64675,64353,85672,88851,97746,125855,112400,104575,96090,96557,57572,32215,27182,23275,17175,9556,8106,9500,7454,5898,4158,1979,1066,796,720,732,1074,1234,912,638,662,1430,1852,2192,3024,2418,3410,3779,3946,4806 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5437,10578,13274,15639,11976,11318,14528,19547,25192,26003,27621,22948,24224,36069,37920,35157,43679,65131,74353,59058,54981,48874,33312,33981,32256,21549,15450,8461,16222,27302,26738,36373,30416,33422,23244,22595,14192,11389,5465,0,2434,5264,10110,12571,13036,16049,28339,64821,64949,78211,98533,115621,90906,82198,73152,70352,57336,53513,38995,40365,35427,23307,15453,5880,5754,6740,6557,5209,5980,5221,4811,5186,4806,4973,4846,3377,1914,1397,606,0,340,566,888,1273,1553,2265,2512,2769,3093,3024,3545,5783,6442,5394,6851,8198,10570,9778,13793,15231,11100,10488,7836,8729,6487,5469,3821,1533,2538,4703,4991,698,885,813,732,544,522,586,459,345,278,285,188,72,63,46,20,0,3538,7601,8048,11378,11738,17808,18726,15975,24487,36478,52564,91898,116438,104322,130764,122502,78449,63980,60605,62758,43293,19491,11387,0,50799,86558,142826,163339,211528,228124,202968,186312,210818,199609,251726,331732,280922,274645,243864,217252,196348,148523,136502,119303,98594,81203,33928,71552,65076,56672,70125,69075,61859,50978,55700,74338,54904,46848,48780,38951,55930,73744,95733,155189,167426,141067,194380,191109,214209,168024,117499,60943,67270,66153,50677,54280,54830,59034,85099,110414,102235,135318,131912,97412,79428,100167,66103,56384,58736,62115,44459,37034,31796,23010,11144,0,0,0,0,0,0,0,0,0,196,456,723,1266,2405,2826,3615,3282 +0,37,81,114,224,188,212,264,408,406,329,209,117,144,262,302,1338,6039,8050,11070,12320,13510,10550,10966,24912,23708,21707,20134,21580,22284,34582,32940,36198,48264,72710,70293,56920,52590,53373,39292,34264,33096,35582,23942,11933,23146,31681,38129,38106,27173,34433,24133,23570,18622,13858,9482,3772,7182,8874,13487,16732,22073,25883,29090,76250,74297,83059,107409,79295,76852,68578,72285,69775,58278,50495,42062,48756,38802,22952,19838,5636,5278,4524,4270,4627,5044,4390,4667,5472,5151,5240,3960,2990,2273,1290,629,0,314,600,672,828,1290,1875,1836,2230,3404,3296,4070,5731,5506,5757,5954,8654,8758,10353,11468,13268,10903,7818,8346,6726,6612,4482,3426,1714,3202,5547,4802,792,882,858,746,368,394,523,400,468,399,322,281,139,96,73,38,0,5636,12107,12877,21591,23034,30567,32922,15842,24600,42312,66754,85407,101966,100701,129914,109752,69611,54728,48757,41402,33988,22206,10314,6608,38364,75218,99666,131636,169222,187251,172659,247259,245562,209674,223278,309587,307998,279193,280387,164256,156954,129258,154056,153452,97094,69240,37111,65298,62914,59595,58456,52762,59727,67457,64874,68074,54016,61410,49160,31266,63192,87427,134912,195750,180156,167949,240512,229278,219580,132896,81053,86818,90594,93622,69391,55129,50155,52398,69834,74636,99128,105228,115888,116847,102350,83505,57744,55285,47880,40614,31248,36067,24604,18916,10252,0,28,57,94,66,110,146,142,161,314,632,924,1371,2330,2832,3357,2996 +0,89,162,246,390,444,444,604,1004,790,672,486,278,418,461,694,2481,5433,8246,8725,12931,11589,13567,11668,24477,18932,18604,17544,15151,20598,21966,28421,54124,54701,67848,47756,61822,44614,41628,31290,31093,40004,38130,34478,17751,28938,39530,39161,32483,30259,24790,16913,31035,24467,19394,18829,7740,11198,15320,19773,23186,24606,32684,34107,73602,74806,76082,89630,73270,75748,61396,66329,66181,60200,46240,31474,47914,44756,32396,20632,3960,3288,2896,2311,2769,4695,5099,4936,6768,4891,4861,3240,2713,2154,1486,886,0,252,514,734,646,1094,1244,1238,2110,3529,4402,5640,5288,4290,4957,5056,6745,7223,8544,11714,8326,8111,8562,8139,7965,5890,5550,3287,2147,3654,5229,6230,978,801,724,730,373,413,345,360,492,531,460,341,160,109,82,39,0,6381,13452,18814,29633,32435,42374,50366,12081,26015,47826,90799,103133,109775,99269,89064,77759,66697,49634,36456,32519,23717,19594,10358,12501,30915,51488,63110,89035,117720,116708,100110,235066,205659,169867,132583,275917,222718,265813,261618,126373,116092,120532,148298,144397,102591,58816,32880,56608,49772,62117,83248,58188,69231,63710,52020,82467,61360,56218,41284,28344,91833,140214,170251,213470,246076,267046,317846,217081,206961,163737,108889,143447,139917,105542,97390,50187,45951,39682,43931,67523,73104,76436,99470,108600,94567,58442,43338,41267,34849,29880,20328,23928,14927,10664,4898,0,59,98,187,157,192,279,259,273,515,634,841,1103,1636,2538,2560,3643 +0,129,333,402,528,626,686,776,1310,1145,1100,787,388,534,640,899,3336,5126,7755,6878,9878,9723,10523,10269,19666,20966,18082,16332,18992,22328,23602,22091,60520,79124,78677,62319,68176,45514,40917,34831,42053,46946,42513,40107,28855,27862,39573,32865,29352,29974,23090,20362,23080,21472,21768,22746,10269,18575,20616,21388,32278,31428,27796,26506,79156,63171,77286,83550,114053,82918,86516,72148,48768,44715,42519,37406,34991,36138,32319,30478,2675,2108,1675,2159,2856,3740,3989,4418,6388,4646,4112,2558,1853,1472,926,450,0,164,354,430,406,723,1028,1279,1719,3210,4301,4719,4327,4328,4928,5628,4428,5451,6002,9418,8818,7957,8048,7518,8210,8396,6417,4176,2231,3318,4499,6048,1176,921,773,711,418,358,325,307,662,610,519,426,270,192,113,60,0,9796,21602,27922,33655,45566,49742,58556,13890,32830,62196,80817,85928,93214,80817,64896,51565,47787,38075,30187,27010,23228,14416,8731,15686,31380,46345,52310,63381,83932,91626,75230,221144,184838,140920,111566,213570,200803,168957,194519,165102,120204,132157,133780,115341,81934,70695,32350,61453,61400,85024,89512,71339,71070,94644,73685,122636,109664,75956,59104,33270,83051,120256,146307,316378,339384,298496,314372,271706,194840,137472,103978,144972,163733,144601,115426,64962,59853,36037,37284,106581,83392,74761,94455,102302,79699,59077,44288,31177,27595,23163,19396,18408,13726,9585,4952,0,78,114,248,358,398,308,342,501,754,895,829,1154,1326,1639,2366,2912 +0,207,428,684,913,1262,1248,1346,1611,1662,1415,1090,526,770,1129,1135,4865,5777,5624,5992,5866,5104,6814,10350,16628,17338,22013,19654,19130,19783,15163,16263,87415,73770,46340,43328,58074,51419,49968,45752,52636,43781,36555,44850,39221,44847,40501,34446,16542,17378,13252,20009,23650,24191,35799,33574,16252,23768,27587,28452,31218,26742,32405,27554,62338,78680,116638,103716,117488,98848,95168,84047,25223,27792,32307,36747,32455,29835,37132,27628,1312,992,1132,1583,2275,2706,2880,2752,4667,4313,2726,1898,700,505,392,167,0,46,96,160,200,320,354,738,1477,2910,3484,3780,4390,4008,5595,5591,1938,3092,4405,7913,9297,9828,14393,10416,10241,9196,7233,5184,2724,4542,5551,5264,1222,851,729,462,361,388,298,372,867,823,804,703,414,360,216,130,0,17836,31523,38592,47918,51119,60415,59295,21323,30025,34849,63980,81547,67327,78064,51107,39214,35576,29342,19191,15640,15267,10067,11059,23736,21772,24780,34464,58396,40803,34592,41511,282249,207985,210322,191376,111944,117969,145654,155693,150852,136671,113537,120187,117852,79922,55808,32715,75701,75698,78123,82418,102274,111658,96430,77226,137832,107428,89754,65791,39177,50046,80178,118916,376920,412501,323042,334284,254514,221969,154164,132042,167572,131340,136103,91109,76450,82873,84992,66834,113884,120190,144306,118817,93576,88645,82357,49598,12466,14860,16771,17530,13552,13436,9831,5159,0,68,157,288,457,418,524,568,615,773,914,823,858,1113,1873,1639,2220 +0,222,550,870,1070,1305,1577,1568,2786,2100,2228,2212,2294,1695,1961,1818,5542,4856,6530,6201,7816,7662,7735,12624,17175,18108,21297,19375,11838,11964,9944,10224,61914,55730,49386,41691,45032,50165,38718,42906,41041,43000,33240,33501,25360,33086,24467,25140,13807,14518,18485,23037,25945,32456,34153,56364,36150,33964,34968,42722,48553,43719,44633,47804,59159,73614,77200,87102,102895,82035,93125,63066,33511,34919,29956,29637,31848,27851,35059,26000,793,763,772,1000,1488,2116,2511,2191,3141,3136,2452,1315,453,412,329,134,0,36,90,134,141,202,308,470,1117,2216,2578,3096,2779,3464,4380,3316,1761,3233,4372,7372,10082,8972,9861,9568,7860,9932,8761,4822,1885,3806,5018,4558,1504,1072,626,530,460,405,446,360,730,722,660,556,485,393,191,112,0,15750,25936,33432,42557,48860,62000,56448,31497,34799,53228,54544,59579,63561,101521,90793,23540,29124,26587,16740,15994,18534,12845,15064,21316,28092,38430,47761,55527,42768,37025,45983,234726,178295,211246,148096,105352,119637,131334,151942,114170,100200,77358,93832,108687,86528,49479,22652,64652,81370,86542,72486,116314,98719,75796,65172,116885,89506,78458,62402,50295,73282,98842,98651,298723,362664,360551,239719,301850,225838,169280,148117,218807,143572,164496,122202,59763,69270,67812,67381,140029,133879,122831,113288,79616,63740,58276,36090,9482,13116,15800,15315,8740,9144,8112,4718,0,96,181,282,488,574,756,994,693,884,1014,1015,910,1308,1938,1510,2130 +0,293,552,998,1070,1694,1985,1747,3373,3004,2866,2618,3320,3229,2433,2683,4939,4765,5953,6671,11078,9666,10438,12129,13441,13468,15680,13107,8564,8598,8702,7123,58519,49177,46103,41852,36936,36660,37308,33040,34695,31886,33188,30781,16678,13545,16850,11488,10185,17226,18936,22325,24898,34668,44672,63094,49891,35028,35943,66954,55775,48098,61842,57687,66069,62298,56332,60924,81924,75033,64284,76990,40119,33157,30650,35559,21862,22511,26440,25541,626,692,548,784,1281,1193,1507,1601,2766,2326,1390,888,418,357,210,108,0,26,54,69,98,129,210,306,695,1142,1760,2024,2141,1928,2644,2293,1211,3092,4292,6517,7877,8012,5880,8952,8384,8165,7518,6544,1844,2126,3106,2837,1381,947,652,520,524,556,492,480,633,650,630,576,488,372,242,105,0,16679,28332,29358,46674,54204,71642,56983,46905,48246,60794,72027,58855,93746,100464,129196,12700,16609,18667,13117,15534,19281,17564,16934,25930,27610,41596,40479,40133,41580,41566,46005,208510,180825,144022,132662,106213,118002,131026,90533,95369,77116,58688,76890,116481,70753,37770,15532,85618,108364,104136,107922,99710,88020,73746,48588,72757,66230,66020,69801,77735,85375,100267,119952,336758,374346,341246,290471,321027,284851,245566,199415,241306,227392,145158,95845,44272,47750,67768,78749,159784,126794,122716,102272,67338,58892,40982,24014,7894,7854,9923,8293,7627,5484,4254,3338,0,84,176,453,667,1054,1196,1321,1032,888,945,1069,678,1157,1450,1704,1434 +0,369,852,1176,1432,1759,2102,2518,3056,3290,2833,3874,4841,4000,4092,4895,7661,7718,7714,7654,9553,8733,11684,13784,16205,15138,12668,10205,7947,7834,6266,6238,61515,54948,36990,29824,21610,24086,25450,32114,31122,27126,19820,18364,11982,9334,11140,7318,4901,11880,19640,26246,33660,43444,61270,70786,62690,69102,53466,89656,74054,77690,73417,65854,75867,56738,44062,57282,67114,58480,40814,50858,43719,34649,23067,26500,16670,20330,30390,26000,258,288,305,416,522,584,771,762,1496,1123,682,426,219,159,106,58,0,15,30,33,49,74,124,130,410,672,958,1014,1238,927,1350,1114,1044,2170,2736,4935,6198,5550,4804,6516,6170,6216,6214,5026,2000,2508,2410,2043,1284,980,642,632,539,656,564,658,663,653,662,494,511,349,243,121,0,18614,41669,46754,58926,73025,67398,81840,94927,58756,66290,55564,54628,76108,104204,166272,7460,11678,18425,15668,15460,16122,19144,21031,30940,40252,44297,41000,45298,51208,47346,48344,158523,152586,147138,131728,150246,162004,168812,109260,79814,77938,68832,75772,72292,51533,34233,17280,78304,87309,97326,107836,126473,105570,98509,62984,85392,75226,71468,65890,74050,78914,78838,86424,352232,324876,258075,309698,357156,289414,250207,238397,282083,187119,120540,90668,47337,55161,73026,74226,198754,149389,180530,128992,94795,73167,44424,22730,3736,4445,4914,4897,3709,3204,3194,2229,0,81,191,428,665,924,1383,1534,1284,984,738,854,670,1256,1547,2012,1842 +0,207,369,560,665,1358,1845,2714,3471,4069,6282,7166,7422,9930,9717,7689,9170,10877,11437,13132,12960,13940,16026,16670,14808,15616,14252,14540,11332,9929,6556,5196,73889,58940,65470,47389,44423,51789,53905,49730,34860,29327,14688,11096,10346,8578,4014,2222,188,17295,42461,63569,78157,98858,99279,95414,97425,105196,119469,80276,78750,78876,68326,85174,72699,75442,78426,58599,67727,57812,67398,49463,37234,28188,20882,20921,15840,19944,19421,25962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,2932,4115,5489,5236,4201,5013,5053,5379,6344,7116,5536,5168,4265,3600,2156,1242,1331,1625,1542,1375,1501,1307,1038,689,642,575,567,547,449,360,158,0,17696,34083,47891,83285,86118,128271,144464,112893,131712,127788,168400,229936,245879,244077,186832,0,1017,2473,4144,4522,9366,12243,24380,32056,33297,41962,45984,43252,45230,57752,66120,137402,137541,98420,121523,156151,147588,130089,121388,94632,86760,106542,66431,58849,47646,36806,18998,81398,110299,129829,118367,145558,133784,137306,89677,82223,56292,50923,54417,44219,51264,54411,80226,264046,249733,193422,216863,173960,158002,170863,209974,251676,213860,178294,155922,122523,116515,71706,100347,178070,134661,154548,173999,150561,115351,59670,26162,0,354,696,1096,1199,1533,1730,1530,0,231,471,594,923,1282,1571,1564,1492,1449,1079,1164,925,1256,1650,2361,2301 +19,224,360,580,686,1084,1426,2196,2534,4013,5131,5431,5557,6572,7232,7299,9716,15042,17633,25346,29786,31631,25556,30190,17104,20614,16450,16272,15150,12764,9520,12515,100434,70743,92529,83610,54504,57034,83627,59067,49427,44646,34870,27221,19953,16453,16238,12950,5433,23820,41836,50350,60294,79156,107358,108026,79282,89134,101081,68582,56577,66758,54588,78576,68002,75695,59372,59774,42041,43157,58911,39094,48550,33832,21073,20114,15565,18887,19658,24028,2099,1617,1124,826,342,1752,2732,2644,3191,2050,1469,866,320,256,113,56,0,0,0,0,0,0,0,0,0,5,8,15,24,24,29,33,1062,2548,3746,4358,3709,4222,4756,4364,4965,4974,4704,4179,4517,3766,3510,2162,820,872,1340,1312,876,1254,998,964,1138,838,643,590,438,462,346,172,0,15162,35087,50702,77137,79548,90128,100687,81293,92196,108183,156468,223801,252616,196850,228140,5021,5676,6232,7768,6770,10639,16968,23308,29476,31437,36075,37793,45454,52150,47611,63060,83988,113204,97525,116768,150138,140808,126398,91450,98209,92790,98054,70927,70857,48305,33132,16942,61646,72676,99600,112558,135510,136338,114967,72644,86268,71615,54819,41845,40765,51972,49828,67634,232972,181148,164282,187910,187787,159396,189569,197836,160915,172970,143913,120226,125979,120686,83660,122012,172099,141188,125965,163444,172674,103276,57678,30542,2387,2885,2988,2508,1628,1764,2358,1740,324,496,731,900,1096,1056,1248,1348,1294,1274,1626,1244,913,1404,1548,1914,2512 +42,230,452,634,695,954,1611,1976,2148,2818,3866,4077,4006,4394,3379,4175,8067,18028,24714,42429,44361,42958,40064,37463,21458,23312,21932,22517,14938,15557,16770,20695,95990,94507,112628,119942,89793,92782,92542,75840,69818,68512,52698,35004,26896,29578,28225,28650,9190,18974,35385,40371,63580,63488,87421,106504,80279,94858,81304,73774,53979,53894,67264,67428,69681,63798,56009,44726,37080,39964,44070,39230,44747,30860,19490,14776,16911,24485,27916,29964,3853,2880,2106,1666,770,3482,5485,5550,6732,5710,3598,2084,743,475,248,107,0,0,0,0,0,0,0,0,0,8,14,20,39,52,51,46,940,2013,3148,2700,3995,3245,3492,2944,3963,3411,3819,4017,3105,3292,2574,1782,658,626,625,730,725,798,1078,1263,1351,1153,816,542,478,436,256,130,0,13212,30064,41174,87082,65068,57439,69451,69359,87648,95760,131906,229826,246050,238480,241186,9773,10636,11483,14194,8043,14664,16614,20682,17940,25830,29120,33734,36223,47465,48126,44869,60252,64506,83518,92253,107952,102643,92675,87802,83415,83119,65598,64924,64164,42291,33874,17824,41645,50774,66630,98322,126005,87202,85012,71912,77583,72605,57424,47110,51452,50357,59855,64700,154494,170043,140984,141661,163007,172066,191148,221931,143946,130958,141313,111582,141379,141683,102119,98116,136437,147282,147123,169583,165419,119918,51224,38066,4927,4324,4910,3325,2021,1774,2200,2219,750,872,811,1146,1013,1160,993,1152,1368,1526,1657,1193,1067,1478,1493,1411,1914 +75,294,448,676,858,1124,1803,1844,1488,2020,2569,2908,3264,3060,2846,3525,7016,16548,29444,40212,46444,43162,55142,49308,26212,24858,18422,22344,22838,28386,40798,49565,96583,109414,131725,128087,127349,119724,156701,112552,110806,98376,79361,48194,33400,37308,39832,40896,11160,28914,44964,63814,85502,74372,72058,101443,58989,66698,58694,70676,63368,67534,55766,75400,48287,62169,57557,38926,34075,29204,39465,40512,35921,25637,14721,12928,12788,23530,36598,33556,7872,5299,3726,3062,1425,3692,8662,10442,14579,12666,7249,3354,1457,924,502,230,0,0,0,0,0,0,0,0,0,16,29,36,50,60,66,72,1157,1784,2897,2432,3521,3308,2901,2508,2345,2512,2095,1946,2132,1902,1672,1283,430,506,432,514,610,722,1076,1132,1566,1486,1300,702,338,292,254,122,0,15371,23198,37466,81557,61332,41338,64516,51694,72204,112892,156829,184508,212048,205882,229522,21453,17099,21190,16745,12818,14740,19606,22452,25792,23258,19108,20482,26531,31300,33346,32702,47970,58770,63472,76124,85687,87378,80002,70386,82377,56914,43192,50566,56266,36500,22830,12490,25645,37570,56459,67716,95903,84788,58905,45452,68414,65998,65566,50236,51169,69768,66089,70560,133741,120912,91432,105399,101428,121232,108646,138682,168349,149783,169090,132317,113636,109086,97177,97528,102193,100928,117196,128294,139752,84408,47446,40015,6929,6278,6073,3698,1960,1951,2561,2390,1061,1034,1059,1072,1110,979,979,706,1204,1764,1413,1240,996,1448,1525,1557,1620 +89,408,652,665,1000,1208,1559,1874,937,1520,2260,2142,2404,2626,3591,3133,9434,18930,23246,44928,55778,63540,67448,77026,26203,29340,28611,30286,25659,37104,44347,48924,111437,90902,112389,112915,138740,160615,131552,156899,142548,106601,54044,42400,35660,37651,37368,46631,16051,42363,55037,103026,122304,158729,155749,127151,45152,50536,55322,66299,57720,55785,49589,74408,46331,31263,24296,22447,21682,37774,44608,42024,32581,28201,23411,19106,13464,15831,20504,32157,10050,8008,7631,4126,2432,5798,8272,11901,20899,15066,15162,10116,2135,1614,1081,442,0,0,0,0,0,0,0,0,0,17,27,44,57,75,110,137,987,1539,2442,2124,2674,2708,3289,2573,1006,1062,850,688,754,684,680,848,246,324,318,430,641,768,779,926,1635,1471,1043,578,347,203,140,76,0,16428,32383,51944,55676,61238,62900,51996,23665,68811,117937,133901,149310,177568,245464,195949,28245,23354,21154,18851,14694,13450,16246,19773,26296,29685,26146,18524,11904,10970,9142,12687,34532,48560,63668,78343,75320,57596,65086,38026,62732,57084,48953,47242,48372,35032,28678,16101,14346,37586,54238,61236,70747,66281,43391,24692,45734,48608,38242,64123,75820,68104,60517,87251,90635,84617,110274,110899,79137,53812,51880,52906,139972,118850,94608,101567,119821,88150,99835,84022,52612,91510,110272,114810,109982,73874,56308,34882,8755,6181,4218,3556,2038,1910,2702,2612,1219,1371,1470,1609,1312,876,538,504,1462,1274,912,1078,1098,1498,1485,1276,1572 +120,358,532,624,822,1194,1480,1681,514,988,1601,1841,2952,3152,4048,4372,8006,14922,28659,40362,59448,51965,67963,71211,37580,39005,34684,36186,36333,47105,51821,50843,94136,93748,123196,118021,146574,167908,161223,186044,137884,125830,89958,62240,36800,30390,40220,51090,48280,49461,75453,97344,139989,116286,115674,119407,90714,87276,66416,70680,78784,65482,44109,58264,76436,45360,36328,28411,25210,37980,42104,41712,29655,27323,23456,22939,15790,21622,20604,26445,12355,10168,7076,5877,5035,9010,13279,17274,21392,14798,13890,9070,1954,1762,1224,695,0,0,0,0,0,0,0,0,0,16,33,61,72,110,126,156,702,1099,2007,1817,2561,2482,2151,1971,957,777,826,622,550,458,589,588,410,591,562,714,644,675,779,926,1653,1476,873,631,515,328,206,112,0,15630,31015,34700,47961,50394,48208,47163,38324,70250,110974,121950,136790,159896,173339,175622,43590,34822,33366,25462,20992,16789,18550,19610,17376,19232,17503,13249,13585,13364,13039,16012,30970,35436,50024,56732,65971,44867,44018,28542,44050,40878,41000,37328,38843,31956,20997,11618,11564,26009,30027,30369,63187,51516,33089,17935,32499,33332,33404,54830,58816,57596,58245,90987,69476,85202,74618,62818,73919,47460,47928,41403,97904,84208,64791,83648,117201,99050,92314,72164,43706,91052,128922,106688,113870,77887,44864,35688,21825,13510,8240,5344,3468,2844,3221,3040,1139,1573,1730,2054,1896,1482,816,657,1747,1692,1446,1172,1319,1528,1427,1138,1122 +136,336,429,468,536,685,962,1198,287,584,718,1005,2572,3986,5849,6224,6796,19404,25867,37823,66158,58728,67163,81982,44643,44140,47552,34316,41968,57384,65722,70615,123493,133264,109872,141872,209294,225213,212019,171964,169772,144343,123535,87002,38579,33714,38518,41730,64528,70895,82450,116424,114344,106315,80514,97107,142314,127128,98142,95566,87274,77692,45023,56546,84666,61034,44644,33902,32164,26980,34056,24921,31131,31682,23469,23663,20996,21823,27755,26292,12181,9067,9188,6130,6530,10400,17355,24324,20555,14222,12722,6757,2451,1896,1155,498,0,0,0,0,0,0,0,0,0,23,42,82,73,149,180,177,373,769,1216,1120,1748,1683,1683,1612,676,531,535,536,232,320,418,444,610,598,665,684,596,668,634,993,1298,965,1084,839,585,400,256,114,0,10097,20568,28042,47531,45210,35054,38852,52741,81958,105380,118793,115184,129941,119038,138333,73020,50112,39780,27074,26336,22162,15878,14144,16065,12587,11246,12398,12147,14191,14765,26356,33078,34516,26658,32638,42192,34538,27794,18915,28063,22361,22684,18636,22940,20158,12110,7026,6744,13038,17830,19319,43300,35071,26118,12434,29998,37982,40218,52840,47656,62605,64055,89122,81131,79122,69590,62346,45101,29430,28176,18535,86953,84653,55339,60120,80310,78706,59770,48978,55033,89956,105964,92799,112763,75120,47333,31744,27707,18753,10866,7732,4076,4092,3100,2615,1588,1802,2386,2436,2351,2130,1365,894,1909,2051,1613,1377,1391,1213,902,840,614 +144,200,241,314,365,352,421,488,163,414,590,986,2028,4090,6316,6237,7355,24378,33908,44526,64125,64753,69820,84368,75272,54120,49403,51893,54528,77606,81273,60672,102875,98340,141656,167169,202889,234554,222190,180222,187001,170093,114004,79367,34684,45253,45680,59780,66588,90180,98734,123619,125068,108921,97422,113020,178587,122364,98060,79462,89905,74548,57910,56818,96822,69908,46942,42365,35844,33584,34470,30839,18697,21210,24867,25391,20491,21804,25556,28898,18250,14532,10811,8012,7625,10797,15219,21768,21922,16434,10933,7674,4103,2596,1630,728,0,0,0,0,0,0,0,0,0,23,53,86,72,140,216,203,328,538,656,682,965,830,720,710,372,288,218,246,123,138,181,198,727,756,856,834,680,697,816,927,1304,1143,1022,812,729,446,301,140,0,11894,20794,26186,35748,40088,42394,40798,52351,78027,109448,108573,98886,104854,137253,129324,87900,59413,38314,39490,34094,22344,14536,10799,8468,8104,6620,7122,8765,11032,14964,25263,32524,26314,28272,30053,28463,24720,21778,11328,13760,12221,11987,11354,11701,10194,5309,2934,2860,6005,9930,9042,25912,21672,13273,6767,12003,18734,22743,32867,36061,53201,54802,93152,100715,69722,64232,56250,40500,24016,18318,13964,41365,46310,28504,31624,46090,39248,31492,21236,75007,98321,105821,92651,78080,58707,64556,43542,35936,26324,14429,8806,5027,3963,2894,1949,1478,1924,2031,2013,1982,1912,1929,1392,1744,1748,1654,1201,1423,1061,738,450,346 +150,689,1561,1703,2166,2131,2432,2606,2425,1861,1924,1757,1307,2368,4110,5650,7666,20376,32618,54985,86753,88016,62263,63632,90182,87521,84107,82623,121082,124822,120035,110420,65105,50480,46716,35411,37126,33890,24574,11886,0,11621,21807,47561,58124,47119,52885,75254,82918,56064,37425,26800,12885,10751,13706,15996,13555,15596,21502,20807,18286,32694,50938,64281,81335,76355,60772,67444,83584,83829,73744,78103,90187,66140,69792,60278,43127,36811,27686,27458,22020,20443,17512,14256,10427,9177,12382,12613,11366,8943,7885,4537,1697,970,703,290,0,2,3,4,3,5,6,8,8,12,17,23,36,108,183,241,228,199,194,133,133,92,53,32,24,28,31,25,20,19,12,7,1102,842,492,571,466,660,740,1062,1275,1646,1471,1291,1080,911,612,351,0,3055,6012,9404,10788,10522,8447,8509,12755,19440,28320,25848,30676,55268,64307,78339,85026,54936,44489,34604,18797,14440,12148,9165,10703,9752,10732,13611,19086,27450,31079,28340,31216,23630,19207,24736,23049,16686,16211,13230,13155,10240,5985,4464,4050,2274,1309,771,0,1833,4411,8503,10518,26266,38745,48770,57959,57913,79552,82408,122492,153846,143422,115992,88402,57413,43489,27933,20320,18600,13996,6144,0,0,0,0,0,0,0,0,120705,98291,76422,68858,85848,56675,43720,20246,0,154,336,701,973,1105,1600,1393,1393,1282,937,728,457,674,806,1020,1254,939,808,632,755,659,367,193,0 +174,734,1234,1207,1678,2267,2352,2354,2017,2150,1710,1614,1156,2044,3030,4107,7525,25492,48234,52752,74492,68488,65943,76971,74228,74876,85371,78510,117667,117648,144904,94412,70445,60519,46096,29902,36236,25976,20009,10187,436,10738,24460,32640,53985,51568,46553,58520,110575,73088,44793,36802,26408,19570,16547,17836,14304,17259,19064,19483,20602,35628,44592,63015,65200,67525,49836,65124,64369,69552,56573,61634,74184,70005,49466,48628,37840,39768,24754,20095,17989,19019,14432,15440,10796,9952,12148,10978,12357,9660,6613,4982,2594,2290,1052,532,0,5,7,9,7,12,14,18,12,19,18,26,40,107,147,201,181,386,630,1023,1656,1847,1702,2185,737,1099,1292,1338,1843,2325,2876,3752,869,780,697,544,531,630,538,750,943,1226,1109,959,703,668,365,242,0,2742,5676,9106,9976,10834,11910,11702,17634,20094,29687,29568,38662,50744,68850,77600,83262,62956,33735,29064,15863,13889,12266,10680,9744,13300,16310,18840,20212,21418,28666,28508,26859,23764,27121,22324,22439,16883,20388,17480,13949,9870,5004,4457,5449,3651,2176,1020,0,1480,2699,6263,10494,18361,25695,35888,50712,70538,61498,101258,72161,82589,127221,119368,76167,52286,47609,32152,26044,18122,13162,5906,0,0,0,0,0,0,0,0,112645,97407,82165,73684,73012,60406,43639,21062,1850,1423,876,1219,1480,1744,2325,1824,1471,1168,1019,726,543,786,811,958,727,706,780,652,531,467,395,197,0 +186,729,1122,1200,1779,1824,2222,2342,1884,2134,2170,1612,1298,2037,2364,3668,10582,32610,49968,66513,81841,65625,51568,44061,46315,73900,77202,64172,163746,135226,123659,116406,68253,54894,39050,24897,29890,21705,12919,7104,821,13721,22510,23019,40407,47577,45282,39100,107515,81240,53324,35774,35636,23185,17482,18076,19564,15858,19962,16184,20964,22901,34465,40144,63102,72260,61552,59200,64958,54531,54124,43325,76139,68006,48202,46580,49143,32691,30770,29482,19331,19464,16412,12090,8870,10080,9304,9814,14247,10424,8197,6041,4739,2983,1552,639,0,5,8,12,9,13,20,20,13,22,23,34,30,87,128,168,174,530,910,2202,3562,3353,3946,5748,1763,2202,2652,3020,3742,4113,6447,7328,985,952,680,637,582,560,564,871,794,1042,1036,1054,527,453,260,116,0,1838,4084,6356,10397,10347,12472,17858,18380,27993,28622,27799,41148,49694,50708,57687,61044,40637,25238,22454,16492,14879,10436,10081,10278,15145,20874,26170,15415,25119,28347,31978,22935,29988,29531,27164,30729,29000,21346,21306,10196,6848,4590,4569,5682,3410,2352,959,0,994,2180,4286,6981,14010,18882,23164,33960,43601,70368,91013,55606,80096,93891,93484,83189,66765,45224,41458,26110,15884,11344,6236,0,0,0,0,0,0,0,0,92666,67121,67276,85803,93972,71026,36912,16855,3246,2316,1648,1696,2702,2353,2407,1688,1256,1035,856,682,625,909,986,985,558,564,596,600,512,410,305,156,0 +263,432,776,1231,1508,2004,2118,1712,1874,1662,1644,1269,895,1400,2044,2476,10789,27048,43332,51332,72222,67870,46995,44084,42858,61396,74700,74682,127974,117487,125723,111250,73076,50383,37000,27074,24130,15903,13150,6532,1256,10975,14441,22670,34492,43776,38775,44604,88544,73509,38899,32980,30905,27318,23476,21240,15815,16640,12054,13610,18738,19464,22854,22200,62917,60634,48264,49074,50226,48027,57247,48256,62603,50736,29377,32628,44891,34218,25674,24622,16601,16138,15590,14944,12332,10399,10140,10268,14292,8270,7808,6322,3964,2762,1960,706,0,8,14,14,17,20,23,28,12,17,24,34,41,66,92,122,130,758,1114,3300,5028,6218,8466,9210,2569,3383,4960,4723,6002,8646,10571,11083,1322,962,604,684,460,592,621,878,846,984,944,836,449,404,202,94,0,2000,3832,5740,9329,11739,16571,19400,16380,24447,33134,28666,33647,41372,43274,52032,33140,21794,17489,14369,12062,10858,11744,9646,9894,15524,16152,22020,17571,20960,23741,28074,19444,28261,29619,28318,24827,27108,19957,21062,10717,7162,6088,5224,5567,3763,3009,1394,0,1314,2750,5405,5420,10379,15762,17027,44905,43974,52278,60728,43523,67975,78808,110856,69314,66311,33661,34315,29160,18746,10336,5624,0,0,0,0,0,0,0,0,59361,63127,64882,65586,79806,54928,34807,19608,5379,4058,2825,2820,3150,3140,2958,2439,864,825,863,600,514,622,974,724,606,514,584,468,301,276,188,84,0 +323,626,800,829,1138,1714,1752,1582,2206,1397,867,859,564,954,1137,1254,9647,17131,33126,51047,58785,57564,75421,72985,28301,42882,69862,105104,116158,125576,102477,118168,58437,42360,23009,19278,16326,12671,10825,5877,1282,10812,23002,36248,38692,50387,55399,64593,72785,74960,53010,39882,39736,33938,22281,22792,18614,14045,9594,9058,12706,10882,7209,10095,57211,57792,51934,43496,32422,29241,28007,32060,47689,57138,55785,52099,33308,27122,26009,18992,13438,14968,15039,11938,14546,10619,9787,12888,10716,7585,7077,5575,5121,3494,1820,788,0,7,11,19,22,21,20,29,10,19,28,30,37,52,59,52,65,2210,3718,5732,5908,8482,12929,11906,4519,6157,7788,8402,8028,11694,12918,15193,1520,1518,1139,798,562,819,867,1129,1045,649,564,500,455,347,287,141,0,3687,6313,9833,11576,17136,24607,29168,20974,24408,23547,37712,40870,34194,38030,44550,10302,8302,8252,7446,6704,9440,9801,11046,9708,12906,12348,18568,20592,18332,11534,14405,21502,22846,17139,21287,27673,24370,26804,22274,10812,9125,6640,6663,5489,5182,3808,2211,0,1007,2287,4811,6484,6296,7679,7824,46188,50049,59419,52846,44542,59856,55378,84262,56915,47768,36084,39808,33513,29801,20436,11560,0,0,0,0,0,0,0,0,53841,74775,71957,72418,60923,39959,38699,24745,6666,5204,4731,3988,4139,2985,2794,2940,519,462,380,448,440,320,336,500,538,444,328,318,236,132,85,48,0 +214,513,507,674,861,1028,1237,1206,1691,1290,864,762,459,734,734,766,8519,16587,29092,48440,53999,55176,62556,60418,23912,45921,48527,88388,82943,115172,97104,94751,34552,33443,17528,14384,11733,11136,6661,3832,1080,7991,16933,21510,34456,34626,36637,35830,88421,69330,49136,38012,44846,43024,26916,26292,20699,17208,17191,13852,12223,13408,9708,11920,68082,61708,53297,48970,32945,26021,25667,28899,32389,37708,38667,35134,25304,27427,23252,18387,19011,15812,14773,16733,11324,10095,11268,11778,10456,8874,9693,6670,3440,2828,2040,1117,0,6,9,17,20,28,37,40,20,28,30,30,31,60,56,74,107,1994,5257,5816,7348,10066,12059,14340,8559,9018,8870,9251,8127,11576,16124,15592,1198,1280,930,620,466,618,615,762,1010,629,543,471,443,308,220,104,0,3558,7891,10743,13112,17948,22804,27542,16172,23114,23415,31801,32871,34328,52192,47358,8314,7052,8045,6989,5792,7505,6426,6900,8363,10436,10318,16351,19472,20415,16895,19180,17485,24336,25108,26790,25758,23675,26165,21632,15275,9978,7783,6188,5067,4044,3564,1647,0,1753,2910,7066,6728,11255,11473,11760,35716,39692,54302,40149,41252,48214,52566,90057,46386,34836,34478,31293,22700,20732,14255,6510,0,0,0,0,0,0,0,0,44804,64680,80629,67695,44160,36590,32908,21108,9762,7579,8121,5944,6152,4235,4088,3407,312,344,318,290,311,258,313,454,413,352,298,257,175,124,79,42,0 +172,280,382,593,774,699,719,1052,1005,820,794,572,329,433,642,801,7460,18302,23097,41018,43883,42817,41525,36237,20723,38282,47756,73523,81051,93712,112686,109550,19966,14748,13674,11527,7606,7399,5047,3444,852,7474,11947,18042,19167,24150,28074,30427,82583,64724,55396,54372,38860,32411,35378,27190,19539,23286,21904,20871,14216,13702,12574,14716,57219,58273,60394,39579,39447,33871,28842,27153,28718,31374,33146,35072,22436,23793,17632,16450,20120,15606,17714,18526,11204,10963,12794,13907,9154,10546,9090,6568,2816,2426,1839,1034,0,5,7,12,13,30,42,49,24,32,37,30,30,45,78,90,157,2515,5354,6564,7129,7519,11609,12268,16348,13284,11882,12996,8223,9696,15327,15658,1041,798,818,456,364,417,564,582,771,593,458,314,333,310,187,87,0,4861,8258,11005,13520,18000,21439,25856,13946,18145,24145,28177,31123,36138,51074,42679,7783,5474,5781,5359,4062,4866,4938,5190,8594,8057,10718,9966,12634,21225,23795,23994,17420,20095,26127,28534,30928,27149,26744,22150,15496,14823,10732,7626,3109,2608,2226,982,0,2666,4836,9427,10231,10770,14503,12238,27649,34374,40796,43520,38875,37503,44336,68833,28289,30200,27631,29203,14057,11234,9866,4140,0,0,0,0,0,0,0,0,44129,64222,66336,62014,36662,33666,19802,13815,12053,13653,12556,8229,6121,5489,4170,2543,222,221,170,186,308,242,273,296,354,327,237,212,146,84,48,29,0 +222,214,288,413,566,514,508,819,820,654,466,478,252,313,365,388,6236,10336,18027,30935,29814,31912,29101,32931,21579,33286,47546,67401,59789,85220,89705,97088,13485,9321,10594,7482,5494,4640,3337,2748,1102,4974,7880,10474,10151,13621,13885,15542,90361,62296,75872,69026,48980,47326,46504,35380,20609,19108,19150,25566,24298,21704,23144,20754,57366,59752,46195,38024,33183,24014,22801,18056,16953,18128,19384,20232,15717,15498,13872,17138,19620,16746,18592,19336,14316,13180,14051,11934,7864,7562,7894,5842,3404,2992,1822,1169,0,5,7,12,13,32,47,58,46,58,42,40,34,56,80,92,180,1928,4908,5718,5637,8963,12170,13482,15832,16879,12583,12155,10807,15254,15418,18940,927,734,742,568,346,382,512,408,630,520,423,270,214,166,114,62,0,3533,7781,8987,12237,13052,13804,23856,20153,24976,25962,26302,39674,52817,50703,51848,4870,4548,4304,5014,4269,4000,3872,4020,7308,6650,10056,9434,12105,19224,20728,28854,19596,25622,27521,32395,36631,31334,29456,17606,16252,12914,10580,8109,2514,2356,1834,896,0,2594,4389,9303,12544,13011,19647,16711,22375,23624,23705,35196,32857,47520,51729,66136,30424,26280,16164,19069,11023,7720,6096,2928,0,0,0,0,0,0,0,0,53745,61078,53016,44565,38104,32003,22453,18130,13748,12733,12741,8904,6960,5166,3828,2700,127,122,83,108,162,145,136,140,192,170,134,94,67,48,31,15,0 +224,187,238,171,130,304,406,468,499,375,428,298,152,89,60,34,3184,4127,6848,8494,8329,7238,9248,13547,22304,26900,29331,26273,29500,35704,41850,83329,6502,5220,4083,2956,1500,1517,1253,1265,1458,999,1030,805,548,376,296,172,73450,54346,51305,46539,54768,59994,50149,35868,23308,24274,21282,18915,11651,11348,14586,20472,56871,37291,33737,27184,13773,9449,9336,5514,880,7080,11356,14906,21867,19741,15865,21103,24656,19425,21002,13107,8405,9709,11483,8184,8352,7817,6566,6080,6337,5172,2419,1312,0,5,9,15,24,38,40,40,56,68,58,56,58,81,94,101,180,2994,7164,8726,13479,14857,15772,17998,21168,24110,25047,29972,38229,46305,39060,25666,697,591,396,490,449,367,304,378,472,418,445,373,403,303,219,94,0,2534,4437,9603,12575,18196,18764,20768,22186,30837,41221,47669,42970,55335,54958,47662,2134,3264,4650,4779,5659,5635,3792,4889,4400,5437,7328,9810,11826,13150,19570,27672,22019,20218,18816,17861,18955,18719,19347,13464,12889,8404,6925,4230,3595,1964,1301,666,0,972,2074,2193,3394,10039,13819,17436,18122,28694,50459,51280,65280,63986,57905,75993,24787,21406,14703,12158,10571,9688,6652,2929,0,0,0,0,0,0,0,0,59163,51367,48155,43810,45979,38342,33261,20894,16524,10191,7385,7560,6258,4378,2772,1916,0,2,3,5,5,8,11,13,11,13,11,8,5,5,3,2,0 +298,270,250,196,162,344,388,486,419,456,399,381,436,348,330,372,2791,4194,6509,6508,6303,8265,6897,10734,19569,23428,24408,23964,27458,32578,34714,76284,6409,5078,4877,3670,1726,3336,4356,6364,3704,3537,3417,3314,2827,2856,2401,2496,69305,57560,47840,48260,50421,53233,40322,27784,30600,30248,23076,17754,11042,12409,16082,16279,54440,43594,30880,22243,18806,12529,9108,5808,2229,6741,12112,15269,20189,18612,17696,25696,25537,17054,17272,14586,6911,7903,10626,7430,7155,5304,4857,4688,7131,5268,1798,1150,0,6,12,16,19,30,37,44,49,60,70,58,56,71,86,82,144,3434,5729,9146,10996,14305,20304,22468,22486,22194,20313,25938,27097,31330,37953,24508,600,488,397,404,459,424,374,414,502,439,334,277,406,267,192,92,0,1852,5097,8414,10745,12553,11083,13718,17092,29126,30250,36296,33421,33182,45306,43746,1867,2572,3306,4540,6456,4780,3048,3708,4019,5075,6736,6808,7783,10546,11497,18502,18407,21718,21818,18884,15914,16328,16049,13863,13090,10678,7549,5502,3394,2430,1916,934,0,966,2631,3004,3690,9727,17303,16318,13638,23770,46034,43368,57527,52379,52600,63508,23508,19454,13504,11532,9912,7360,4962,2654,0,0,0,0,0,0,0,0,62792,44524,34102,40178,42450,37724,26763,20816,10220,7484,6313,5554,5687,3708,2482,1881,0,2,4,6,5,9,10,10,12,10,8,8,5,6,5,2,0 +296,313,286,186,194,278,429,484,369,430,530,598,593,570,601,604,3405,3678,4910,4523,4999,5852,7880,9409,16743,18779,24015,30571,19263,33573,39086,66546,7610,5958,4775,3022,2560,5426,8050,13321,6927,5442,5159,6813,5239,6335,5512,5478,42418,47179,47774,59522,52045,34931,35206,21876,33755,30050,24442,14267,7215,9675,12758,11994,52109,41473,27258,16697,19917,14909,7701,5028,3033,6045,9799,16705,15125,20348,21654,30402,23776,21360,13388,10585,7946,7951,8422,7354,4717,5394,4303,5103,6171,3953,2062,957,0,6,10,14,18,24,32,49,51,47,58,60,63,67,66,62,177,2360,4808,8160,12238,17568,19692,23610,17366,12900,13704,22409,19124,21525,28009,19138,462,509,406,418,364,316,360,460,392,447,380,247,320,198,120,72,0,2050,4836,6133,9212,8752,8485,7472,19940,17425,23398,24002,22778,27550,38422,53174,1244,1838,2293,3421,5737,4893,3714,2976,2391,3767,4138,5208,4466,6104,7597,9912,23223,24831,22764,20423,16668,13399,15480,15842,11265,8877,7508,6050,3688,2447,1979,952,0,1182,2524,2492,3016,7278,15030,15462,8472,24614,33798,47580,32382,36991,39305,50384,15739,14240,13342,7982,7364,5343,3904,1738,0,0,0,0,0,0,0,0,49347,40018,26199,26415,30605,32585,24317,16696,6932,6790,5333,4726,3255,2828,1488,1242,0,2,3,5,4,7,8,8,8,8,6,7,4,5,4,2,0 +241,258,244,204,161,254,324,373,231,382,635,625,818,722,646,856,3032,3666,4673,5351,6629,6318,8668,7943,18156,16488,21873,21232,16908,35741,41228,51306,9742,8099,7194,5038,2974,7446,14577,17638,7912,6052,4848,7310,6941,7283,7790,7610,26750,39346,37336,44031,42449,35616,42499,30313,38266,36738,31630,15482,9243,8668,8722,10290,49596,37010,30423,18346,18590,12158,6365,4123,3041,5289,7345,13575,16379,20928,19411,23792,13749,13388,12413,9705,6251,7502,8373,7970,5504,4152,4468,4720,5993,3685,2491,1194,0,6,8,12,15,22,32,39,37,38,44,43,65,50,46,46,150,2272,3631,7214,10246,17341,19124,24788,18452,15436,16185,18482,13193,16562,21412,16402,323,301,343,352,347,362,328,366,410,336,286,208,226,171,112,56,0,2098,3905,5736,9014,8346,7568,8150,14004,16486,25218,24020,19845,23164,26634,37380,1492,1601,2026,3526,4483,4382,3456,3430,1601,2810,2938,4445,4235,5915,5564,7565,18888,17121,16926,15700,12304,14696,11259,13584,10099,9084,6040,4420,2876,2080,1857,829,0,1387,2573,3806,4696,9177,15594,14158,8870,17430,28227,35594,24955,34966,34353,45722,12517,11370,7445,6189,6102,4296,3008,1246,0,0,0,0,0,0,0,0,35933,36331,34008,33098,33466,29118,19084,12857,4651,3957,2642,2622,2538,2248,1038,1048,0,1,2,4,4,6,7,7,7,8,7,7,5,6,5,2,0 +256,192,144,141,184,156,162,241,144,238,382,616,964,910,1116,945,2259,3743,5888,6868,7228,6460,8291,6850,18711,13530,14146,17948,18598,32475,37990,33525,12224,10940,8277,7426,4820,8841,11527,20744,9979,11412,12780,9766,10694,12517,11435,11760,15763,13994,16998,32298,40428,41441,50460,38980,47269,39439,34033,17602,8353,7265,8355,6700,48352,41480,39011,28664,14964,11994,7375,4932,4076,7952,9354,13686,14423,14973,15879,18425,10232,9042,6624,6841,7527,7980,5894,6120,4923,4941,6055,4268,4601,3430,2736,1396,0,2,5,10,10,17,23,30,22,32,38,37,44,43,58,45,82,2906,5092,7982,11732,16708,22628,27956,21544,18748,23576,15894,13703,10991,10726,9305,210,191,242,260,318,328,327,346,349,267,198,159,150,143,99,50,0,1513,2693,5099,5878,6434,8786,7744,10083,13412,12280,13783,21711,38168,44293,53446,1613,2876,3490,3244,3756,3117,2076,2206,578,843,1510,2201,2843,2630,3417,5435,12418,15555,15114,10670,11031,11773,13867,12040,7353,5665,6215,3553,2172,1523,1046,588,0,1455,2987,4480,5418,6503,6853,12290,8192,14881,16806,19738,17320,23656,23699,29821,6303,5839,4539,5118,4020,2994,2204,980,0,0,0,0,0,0,0,0,38622,32510,24212,27964,29745,18973,12582,8398,1856,1438,1087,1100,999,1074,1282,1171,0,0,1,2,2,2,3,4,3,5,4,5,4,5,3,2,0 +188,145,126,156,148,117,129,178,133,338,566,929,1216,1046,1147,1456,2776,3813,6158,5768,7550,5874,5749,5548,15013,13528,14034,14631,13481,26124,31138,28574,12772,12684,8865,7988,3949,8646,13712,20914,15582,17778,18540,14638,13971,14340,17067,18445,17574,18310,18127,31832,33853,36532,45956,36807,44128,32816,28634,18186,12714,12234,12814,8698,39354,30278,24606,22324,17062,13140,8383,7269,6896,9928,10122,12025,11521,10995,15086,16286,9232,6918,4783,5239,4939,4936,5451,5433,4300,4082,4020,3684,3402,2306,1755,1014,0,2,5,10,10,14,22,24,15,23,30,30,41,40,44,34,66,2584,5308,9485,12050,17454,19757,21432,17648,19851,24006,20297,15472,12232,10325,8801,150,164,235,258,249,244,252,214,217,170,150,118,130,108,74,41,0,1070,1640,3131,5088,6062,7229,6688,7064,10208,8797,13508,17375,25414,28120,29380,1191,1880,2867,2900,3071,2293,1764,1652,353,786,1010,1641,2194,2166,2364,3680,9863,9602,13574,9388,6812,8998,10185,9042,5964,5188,5127,2826,1845,1360,872,426,0,1083,1900,3145,4031,5882,4367,8098,6214,10814,11581,13118,16155,18932,17882,23374,4894,5049,2753,3355,2388,2323,1610,702,0,0,0,0,0,0,0,0,27649,25871,15367,18566,27083,16562,12630,7439,1195,1032,911,920,939,817,995,998,0,0,0,1,2,3,4,5,4,6,5,6,5,5,4,2,0 +194,186,160,144,102,91,86,99,85,357,802,1102,1235,1337,1392,1674,3861,3669,4886,4574,6362,5496,5682,4067,12756,10829,12237,13353,8370,11550,20254,24383,13040,14033,10372,6845,4538,10326,16392,21478,22180,23236,19156,15353,20344,18814,17697,22774,22513,22346,25590,32316,28465,34540,35955,37785,46228,27954,21788,24061,14007,14763,17204,15023,32002,19276,15432,13893,13859,14474,12078,9262,8063,10386,11482,11540,11708,14292,12702,12142,5708,5652,4368,4072,3700,3434,3374,4139,3357,3086,2986,2462,1536,1369,1292,663,0,2,4,7,5,9,13,14,11,17,22,18,29,32,26,21,41,4040,7994,11394,14332,11050,13223,14140,18973,14950,17830,16774,12856,12969,12936,10778,133,144,150,149,215,138,108,118,160,139,98,94,73,61,45,22,0,481,991,1520,3325,3361,4147,3770,4007,7095,8222,10618,7620,10239,15567,15173,554,1101,1468,1712,1377,1160,958,1267,193,536,747,1002,1961,2228,1884,2262,7629,9363,8322,7974,5864,6428,5980,5509,5046,3646,3618,1842,1300,770,417,190,0,687,1253,1807,2451,3298,3175,4772,3768,5257,8481,9234,11972,13897,17486,16742,4247,2566,1894,1815,1804,1150,822,437,0,0,0,0,0,0,0,0,16967,15719,12501,13378,18083,14486,8877,5511,753,661,660,703,650,650,571,619,0,0,0,0,1,2,3,4,3,5,4,5,3,4,3,2,0 +157,132,100,94,70,66,65,64,42,357,736,1594,1418,1754,2128,2288,3374,4301,3393,2919,4906,4504,3373,3158,8785,7414,8438,10688,9742,11229,13929,14317,11968,8848,8900,6442,4500,9622,13224,21372,23361,24642,23512,23206,19048,20926,22349,22556,26998,24660,25597,26626,34208,34600,34447,42532,43484,29273,20002,25838,24270,25189,21674,17111,21383,14760,9112,8883,11312,11530,11025,10864,8630,9526,10612,9052,9943,8964,8060,8290,2691,2284,2613,2088,1828,1549,1392,1944,1706,1549,1318,1062,734,738,567,318,0,1,2,5,2,5,7,8,7,10,11,10,15,19,16,12,18,3586,6048,9064,15324,12788,9180,15107,15882,16243,13438,15809,16486,15234,16638,13904,59,70,78,80,106,70,49,44,86,68,41,40,41,28,20,12,0,211,481,765,1586,1680,2481,1774,2255,3572,4187,6244,4322,5444,7609,9938,268,448,785,894,712,512,489,600,107,252,419,412,1174,1204,934,1308,3663,4436,4717,4139,2634,2768,2622,2860,2738,2338,1609,910,744,434,200,92,0,298,507,910,1257,1478,1332,2446,1651,3082,4932,4910,5717,6432,7652,9673,2111,1286,884,772,852,595,371,188,0,0,0,0,0,0,0,0,9911,8165,5550,6004,9042,7383,4340,2706,445,364,378,365,342,330,297,330,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,1,0 +78,80,61,47,17,28,42,51,51,47,56,65,76,75,66,74,64,60,70,64,56,37,33,17,0,0,0,0,0,0,0,0,0,3284,5670,6496,8689,10630,9647,13180,13187,14136,10654,11168,11660,12244,10445,17076,18555,18417,12152,8756,5492,20578,28848,25982,35967,39841,35015,27422,27515,19521,15367,12924,11727,8936,6453,5114,3748,5568,7591,8332,8294,5537,3968,3042,2333,2796,4110,4430,3574,3300,2761,3416,3764,4474,3957,3622,2806,4651,7286,11573,12826,12641,16436,16214,22994,20908,23287,26812,23056,17604,13920,15144,11950,12912,10885,8752,8815,7087,4953,2439,0,0,0,0,0,0,0,0,0,4030,8434,13132,16269,18498,17576,15471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +72,78,61,43,30,34,47,46,40,51,62,72,61,59,55,68,52,45,60,54,48,36,32,16,0,0,0,0,0,0,0,0,1196,3349,5734,7379,12237,11761,10528,12226,15869,12560,14903,14952,13955,15322,21072,21192,12056,13633,11062,9954,11342,21566,25465,36128,27141,33362,32215,32546,20866,19534,14067,12260,29128,18620,15188,10830,5709,8789,13705,19408,22245,20049,12526,10261,6760,6382,5454,5190,4362,5676,4289,6260,5663,6244,6936,5869,3672,6672,12674,13558,18836,22174,25246,27756,19265,16546,15988,17982,16021,13444,19137,16068,15374,14509,11291,11554,9742,8629,7318,7432,0,60,100,118,286,449,459,642,1160,4880,7762,11762,12068,16175,22673,22187,0,1,2,2,2,2,2,4,4,4,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,2,2,4,4,6,4,5,4,4,2,2,2,3,2,5,5,6,5,7,6,7,17,15,10,9,8,9,6,5,0,1,2,2,2,2,2,2,0,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,6,4,6,8,10,8,10,7,7,7,8,7,7,8,10,11,12,8,12,11,11,13,11,8,6,2,2,2,1,0 +46,59,66,50,47,49,46,39,34,56,60,58,46,57,62,65,40,46,36,37,48,36,26,12,0,0,0,0,0,0,0,0,2714,3227,5284,8000,14389,13324,12030,9798,21046,21656,16428,22872,20389,25568,25210,32110,10784,13774,13592,9910,13469,22457,34460,31764,30631,26737,29538,31719,24591,17227,14101,13038,37387,38644,27472,21265,8041,13846,19296,25960,30508,31940,24091,20292,13333,13029,8454,6766,6609,5762,7428,7923,5883,7324,8002,9386,4140,8255,15428,19068,20697,28410,30868,27586,16268,16639,13790,14050,15677,16047,18491,16534,16611,13606,13224,15251,11281,12597,11890,14510,0,116,226,303,541,728,1022,1109,2599,6126,8362,7840,11230,13844,20735,26648,0,2,3,4,3,5,5,7,6,6,4,5,4,5,5,5,0,2,3,4,3,5,4,5,3,5,4,5,3,5,5,5,1,2,4,5,4,6,6,10,6,7,6,6,4,5,5,6,4,7,8,8,9,12,10,12,29,21,20,19,17,13,10,7,0,2,3,4,3,5,4,5,1,2,3,4,3,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,8,10,6,12,15,17,14,12,12,13,12,12,13,10,14,16,22,26,16,18,18,21,22,18,14,10,4,5,4,2,0 +47,56,64,49,54,48,51,46,24,46,39,48,49,48,52,60,40,41,40,43,42,35,26,12,0,0,0,0,0,0,0,0,3820,5312,6150,9720,14264,10766,9790,9744,22936,16362,15757,19952,24353,31698,31355,32416,10775,13184,17646,14527,12118,20228,24058,28467,28010,28750,23856,24596,29052,18105,15008,11573,53391,50688,39594,27462,13590,20879,30112,37453,43109,45033,30074,32154,21708,20202,15962,9118,7214,8422,10055,10456,8162,10700,12113,11620,7849,12102,16324,21911,31871,29440,36312,37280,11227,12486,13732,11614,11386,14664,18392,19608,17677,15770,10855,12964,15486,14184,17826,19886,0,180,295,458,612,1190,1953,1672,4605,6608,7848,8926,14273,17821,18558,27310,0,2,4,5,5,7,7,8,7,7,6,7,6,7,7,7,0,2,4,5,4,6,5,6,4,6,6,7,5,7,7,8,2,5,6,8,7,10,10,14,8,9,8,8,7,10,9,10,6,9,11,15,17,14,16,18,39,38,31,28,22,19,12,10,0,2,4,5,4,6,6,7,2,4,5,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,14,12,18,18,24,24,27,20,22,19,20,22,16,25,26,30,32,23,22,18,26,26,19,13,13,7,8,6,4,0 +41,51,66,60,58,62,52,46,21,28,29,30,36,42,60,70,36,44,48,34,33,34,22,13,0,0,0,0,0,0,0,0,4346,6766,10440,11342,12646,9880,8810,7690,22553,19618,20067,19679,25504,29969,30603,27572,12405,12639,17337,18145,16051,16682,17569,31377,33903,25414,26118,26536,24368,23395,22105,20495,73031,55922,60923,39376,17894,20202,25221,33019,62245,52828,47652,43484,31763,23332,19674,11684,6248,7032,7373,11285,11974,14139,18798,20628,9747,10782,16523,26503,35410,37383,29328,38827,9914,11062,15351,16287,12122,15352,15312,23364,14367,12047,12095,15611,20863,19767,19669,18597,0,245,509,635,838,1538,1982,2788,5910,9884,12930,12839,14662,19198,27382,30784,0,2,3,5,4,6,6,7,7,10,8,8,6,8,8,8,0,2,3,4,3,5,4,5,3,5,6,6,4,7,8,8,2,6,8,8,9,12,10,13,9,9,9,8,8,10,11,12,6,10,14,16,22,17,16,20,43,47,46,34,24,20,20,12,0,2,3,4,3,5,6,6,2,4,4,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,19,18,19,14,13,14,24,31,27,31,26,26,26,17,17,34,31,24,26,32,24,23,24,32,36,28,20,9,7,4,2,0 +116,113,95,90,76,62,64,62,23,30,28,33,34,31,51,46,23,32,37,33,34,29,18,10,0,0,0,0,0,0,0,0,7669,11638,15176,16708,11728,14030,12505,12766,23312,23768,24952,22746,25526,30100,34946,34055,16582,19994,18108,20390,11793,15358,15434,27946,30709,26942,24766,25382,24798,21626,17927,12447,82775,78830,70788,42582,20894,28312,24620,43549,51318,55793,39630,34016,36297,27920,20225,9398,7095,6262,6144,10760,9539,14373,15572,25353,13657,16444,24770,35666,43326,34008,30421,38390,10678,13362,13060,14595,12159,13416,14916,19928,15721,15718,16115,23194,26450,27664,24482,30250,0,248,492,896,1162,2253,2571,3956,7031,10902,14131,11962,9938,15006,20060,22850,0,2,5,7,5,7,8,9,11,10,10,10,8,10,11,12,0,2,5,6,5,7,6,7,5,7,8,8,7,10,9,9,2,8,12,13,11,18,22,24,19,21,17,17,22,20,18,20,10,14,16,21,26,28,34,30,45,44,44,38,27,24,22,14,0,2,5,6,5,7,7,7,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,22,18,18,14,16,20,29,38,36,36,38,30,30,20,19,35,36,34,40,42,44,32,32,36,40,30,22,10,8,6,4,0 +185,175,142,105,81,81,68,51,21,26,25,31,20,23,28,30,17,20,20,25,22,18,12,7,0,0,0,0,0,0,0,0,11002,17712,20244,29453,15937,16430,21748,23347,25071,19882,22732,25808,29473,33982,28333,25834,22421,19956,22524,18377,9082,12401,19310,19733,31870,26299,31098,28584,21167,20242,13383,10763,86971,85913,80482,54924,33352,32671,32536,34961,50925,47915,41113,34450,55999,37529,19408,10379,5980,5385,6811,8035,9299,11891,16732,27084,15206,26288,38717,52718,41170,37878,31570,28511,9950,10776,16984,21903,18050,18207,12952,16196,15584,21185,22023,29491,30796,29232,30434,30956,0,256,555,1052,1383,2217,4106,5402,7918,10868,11692,14796,7093,13338,15168,20796,0,2,4,6,4,7,8,8,11,9,7,8,8,9,10,12,0,2,4,6,4,6,6,7,6,8,8,8,8,11,10,10,3,10,12,13,13,18,26,32,23,29,29,20,28,32,26,24,9,14,16,21,39,44,40,36,46,32,30,32,24,20,19,14,0,2,4,5,4,6,6,6,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,15,10,22,26,35,32,34,44,36,31,32,29,20,35,31,37,50,45,42,40,42,44,38,32,22,7,7,6,4,0 +212,174,184,142,111,90,73,57,20,24,26,24,15,23,26,34,8,11,12,14,13,10,7,5,0,0,0,0,0,0,0,0,10860,12462,20088,25948,27755,24414,33268,24478,32684,29182,25881,28115,23690,27310,33687,26074,32057,32544,24332,21340,9887,14088,19787,21098,29640,23981,23948,28264,15969,15478,9984,9054,97275,83714,71941,50812,46903,47354,50031,51778,54798,62736,45407,43120,57593,44417,15779,8592,6224,5146,5311,6264,6447,11950,18031,27092,28348,30507,46818,46593,34864,32254,35330,35685,8512,8288,13806,17762,19427,14856,13358,14606,18156,20524,25464,30086,29319,36940,43009,30210,0,356,893,1378,1836,3008,4479,7404,8730,9920,12364,10424,8564,13852,16665,23390,0,2,5,7,5,8,8,9,10,9,7,9,7,12,14,14,0,2,5,7,5,7,8,9,7,10,10,8,10,11,12,12,2,8,14,16,18,23,32,28,23,28,31,30,34,30,29,36,13,19,19,32,38,40,49,47,52,38,34,31,23,22,22,14,0,2,5,6,5,7,6,7,5,7,7,8,7,8,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,29,24,17,11,20,30,43,42,46,54,57,47,41,28,25,56,52,54,62,67,64,53,58,38,33,26,19,8,10,7,5,0 +275,190,159,110,55,46,24,18,16,20,29,42,61,65,61,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11941,11570,13595,13478,14344,16736,25390,26454,31884,35578,49632,45193,39996,29398,33190,21818,48972,59619,56899,52978,34726,38027,38466,31805,24546,21164,24358,22822,22548,23587,17323,9272,93787,88962,69679,54590,21817,40735,55981,66620,71120,54784,60741,42838,24744,15587,11763,5778,6681,12657,15906,22012,26420,25617,25962,27253,34460,31016,34705,39697,57837,60288,42799,42260,4447,6376,9276,12442,15741,11925,10947,15047,19582,24916,27954,27280,39369,38636,29254,38081,0,1622,3604,6478,7226,8611,10565,9790,9636,11499,10091,9967,12800,12711,14332,20336,0,2,3,4,3,7,8,10,8,8,9,12,15,15,18,18,0,2,3,5,5,7,6,7,6,8,8,8,7,8,7,8,2,6,8,12,11,15,21,23,26,30,39,53,70,83,72,67,19,24,25,34,31,46,50,50,50,53,41,42,35,26,26,16,0,2,3,5,4,6,6,6,4,6,6,8,9,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,30,31,32,46,44,51,48,44,42,30,12,13,10,12,61,69,86,76,68,65,59,48,36,42,34,31,24,24,15,8,0 +196,188,133,100,69,56,44,32,44,46,46,54,51,68,62,62,9,11,8,6,7,8,8,8,4,5,5,5,4,4,2,1,11695,14032,12886,9856,18977,23316,25238,26412,26211,29062,41536,39756,24499,23092,22154,18038,33194,35386,37198,34610,35017,32887,32752,30720,18423,19023,23550,23828,22775,19486,15546,8872,72297,82366,80849,52122,22314,36393,43444,68620,74176,63718,47922,41780,22988,15075,12036,8438,5913,10170,13560,19031,29882,27562,35075,36885,37817,38062,46242,60298,67490,59712,36453,27948,17836,13128,17411,13436,12520,11880,15202,15410,17742,21719,27017,37084,45306,43376,40797,39280,4160,5422,6228,7367,6044,7942,8755,7982,8103,8573,10583,11120,12476,12256,16216,15371,0,2,5,6,5,10,8,10,14,14,14,17,15,18,16,18,4,6,7,8,5,8,8,8,10,10,9,9,9,12,10,11,2,6,8,10,12,16,16,22,30,38,51,60,54,64,87,68,43,44,40,46,38,55,60,84,55,61,60,60,41,38,36,19,0,2,5,6,5,7,6,7,6,7,7,10,10,10,11,9,2,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,48,42,48,42,52,47,46,51,47,65,70,48,27,29,28,29,63,81,101,94,96,88,66,50,41,42,30,29,28,21,15,9,0 +141,142,139,115,77,69,50,48,65,61,68,58,61,74,63,53,18,17,14,10,13,13,14,14,6,8,8,8,6,7,5,2,11252,13588,13368,12042,17784,19257,25894,23098,25648,22502,20207,28354,15672,15991,17686,22678,28704,27238,30166,28243,29321,31541,28077,21310,19282,17226,19878,20779,17834,12039,11938,5993,62686,67900,71114,47056,16804,26363,40214,69035,83656,75800,46300,33858,14371,17193,15097,11273,7690,11379,12758,16761,26314,33058,39507,37892,43458,48719,55600,57546,62020,48348,34494,26652,27787,29240,21492,15972,12633,14074,14443,14582,12821,16197,23828,26872,39961,40454,48064,44141,10144,8394,8742,7619,4419,7313,9008,8413,6391,7465,8402,9101,10557,12396,12782,10192,0,2,4,5,6,8,8,10,16,18,14,17,16,20,18,17,6,8,8,8,4,7,8,8,10,10,10,10,11,12,12,10,3,5,6,8,8,12,16,18,24,39,48,59,34,50,76,94,72,59,50,47,43,56,74,77,57,72,82,88,54,49,33,22,0,2,4,5,4,5,4,5,6,7,6,8,8,8,9,10,3,5,4,5,3,5,4,5,1,2,4,5,4,5,4,5,51,52,50,51,65,60,55,64,61,60,75,65,39,38,36,39,91,127,122,119,92,84,82,64,55,40,30,25,22,20,12,7,0 +160,150,157,110,90,82,70,48,73,72,87,71,76,78,90,76,29,28,26,24,15,20,20,24,12,13,14,14,9,9,7,5,10358,12314,11135,13002,15021,18950,21843,23620,25956,22320,18161,19572,12136,12928,12149,17769,24553,21784,26306,30316,24632,30218,27611,24979,19766,20084,19470,20602,14882,11483,8826,6349,83318,75828,74994,52746,25644,33494,33357,64242,68581,60106,50767,38992,20378,16098,13186,9354,7330,10120,17101,18734,27910,33723,32002,34918,51016,50694,43253,48368,59263,38094,25826,20241,38705,29810,23294,17696,9808,9978,10151,13870,11176,15416,27313,28405,32954,38600,51604,39442,12712,13816,11320,7422,5391,6740,8753,6645,3535,4521,5285,5664,6262,9226,11354,12582,0,2,5,6,6,8,8,9,16,18,15,16,17,22,21,18,9,10,12,8,5,9,8,12,9,12,10,11,10,11,12,12,4,7,8,9,8,12,16,23,18,30,43,48,33,63,94,92,90,57,55,56,53,68,92,86,81,79,84,88,75,55,29,18,0,2,5,6,5,6,5,6,5,7,6,7,7,8,10,8,5,6,5,6,5,6,5,6,2,5,6,7,6,7,5,6,56,44,52,56,78,80,71,80,94,84,97,91,58,53,38,46,73,86,111,114,89,88,60,60,52,46,34,28,20,18,14,8,0 +149,120,131,106,88,70,46,36,82,72,57,67,74,72,52,55,33,31,34,25,18,18,21,24,13,11,9,10,12,11,6,4,9252,12448,13262,13408,14928,19780,22456,19266,22868,19053,18220,14522,11705,8578,8195,11788,14987,20875,25365,28436,30358,30548,29298,27867,23595,15912,14770,15872,16546,11073,7003,4133,79664,64507,37314,32209,31397,41091,46181,58733,67953,47436,35564,31052,23106,20806,16124,12777,6191,7418,12186,21272,25540,44141,53531,43144,62059,84791,80739,65274,54251,45521,38396,18466,39415,35207,32534,20569,9404,8760,7393,8716,6880,18770,25020,30040,40034,39012,45122,55442,20126,17086,13617,8868,5189,4956,4616,4232,2082,2372,2043,2486,3342,6846,10114,13796,0,2,3,5,4,5,4,5,18,15,14,16,16,20,18,18,12,10,9,7,4,7,9,12,8,10,9,10,8,8,6,7,3,5,6,8,9,12,12,17,13,26,30,37,38,54,83,108,88,67,60,54,44,68,97,109,115,114,104,103,78,65,33,18,0,2,3,5,4,6,6,5,3,5,6,6,4,5,4,5,5,7,6,6,4,6,6,6,2,4,4,6,6,6,4,5,64,56,61,61,72,67,55,68,109,98,128,130,98,102,77,72,77,83,65,104,120,107,73,66,42,36,23,20,22,20,13,7,0 +159,178,194,156,125,114,90,68,82,82,57,81,80,80,48,64,40,37,42,32,16,22,29,31,24,20,13,15,16,14,10,6,14884,16469,15024,17954,22228,18742,25848,18174,24266,19466,20920,18856,11159,9376,10026,10444,12484,17042,17047,16728,23596,22908,20945,21764,22446,15494,11558,10734,15910,9442,7149,4810,79569,64122,64934,62268,31273,42359,46052,52438,62098,42190,30139,27426,22442,20267,13840,10356,7994,13140,19054,25258,38272,49392,42476,48970,54440,70278,78986,45612,51986,37758,35266,21378,50971,41112,31623,29462,11264,11297,10321,14696,8590,18556,24895,25226,43016,43851,33950,47663,23952,16606,14198,9364,6020,7211,4761,4497,1567,1593,1932,1726,2816,4454,8418,10866,0,2,5,6,6,8,8,8,22,18,12,18,14,17,17,18,17,12,10,10,6,8,8,12,8,10,12,12,10,12,11,11,6,8,8,10,12,13,11,16,14,26,35,40,49,74,97,99,88,77,72,65,56,92,84,104,109,115,78,96,68,66,38,26,0,2,4,6,5,7,7,6,4,6,7,7,5,7,7,8,7,10,8,9,7,8,10,8,5,7,7,8,7,8,10,8,49,59,54,82,93,72,66,62,118,99,122,120,149,114,90,76,99,104,94,106,142,117,83,86,73,58,40,41,28,24,22,12,0 +178,214,192,146,123,128,111,74,98,64,56,64,100,87,53,61,47,39,45,36,16,26,28,27,27,27,20,21,14,12,10,6,17978,17250,20198,19987,25788,27352,22327,18596,20893,21884,22023,19940,12124,13554,11311,11679,14007,15197,12442,17978,12363,14618,14820,10614,14809,11090,7426,5844,12084,11402,7026,3337,66848,81425,73260,75047,40534,43563,35544,47611,41781,43823,35808,32254,16578,12254,11616,11524,12232,15662,23188,27990,47314,49654,52166,52957,38486,53464,54704,43206,38434,32415,29678,24392,50303,42017,44124,33531,11300,17290,17796,22419,10056,18437,22932,25561,39032,34836,32928,42468,23954,18270,12963,9608,7787,6735,6106,3579,1411,1288,1194,1261,2339,2938,4225,4174,0,2,4,5,6,10,11,10,19,19,12,15,9,15,20,18,16,13,12,11,6,8,8,12,7,10,12,12,9,10,12,14,7,8,8,9,12,11,10,13,10,29,42,50,70,80,95,98,68,73,64,74,59,77,108,100,136,98,80,86,83,68,52,36,0,2,3,5,4,6,6,5,3,5,6,7,4,7,7,8,8,10,8,10,8,10,9,8,6,8,8,10,7,11,11,10,47,49,62,92,86,90,64,66,86,106,93,103,151,154,113,117,90,98,120,142,126,130,94,81,80,77,67,60,32,30,23,12,0 +168,214,203,140,114,134,144,96,110,86,64,104,122,96,66,80,68,61,58,36,16,24,21,27,28,26,20,22,15,12,12,7,20402,21043,19031,19834,27908,24781,20934,16948,21377,18384,13464,12722,13489,11878,11366,13234,16896,18165,12324,15678,7105,9710,10728,8928,10395,7774,6082,4902,6880,6850,3444,2191,68244,98474,81352,77064,51470,51197,44769,44252,32134,29411,33892,36256,24586,18280,13778,13152,14839,22578,27891,34694,42586,46480,39135,51486,46256,48783,45675,33685,25701,24942,22833,18902,41000,40851,34592,29110,13267,17825,23496,20418,14458,23320,27477,40630,40039,41386,33370,39505,27624,20700,16568,14256,12081,9923,7494,3650,593,608,714,664,994,1586,2030,2015,0,2,5,6,7,10,11,13,15,15,12,15,9,16,22,17,22,18,19,15,10,12,11,14,8,12,11,14,12,12,10,13,8,10,10,12,11,10,10,13,11,34,66,58,78,94,118,118,105,107,72,85,91,88,122,102,97,102,90,84,90,66,56,32,0,1,2,4,4,5,5,5,2,5,6,7,5,8,10,10,8,9,8,10,8,11,10,8,7,9,10,11,8,12,14,13,63,62,71,90,84,72,66,72,93,103,86,104,163,126,99,112,116,122,145,126,105,132,110,98,108,109,73,65,42,36,22,12,0 +158,144,87,97,106,89,96,136,200,184,181,218,185,140,85,80,90,79,63,87,108,86,53,37,29,24,15,13,7,7,6,4,26422,29805,38686,31176,37517,54568,53984,52716,47930,38716,45935,30583,21353,21194,27910,28471,23358,22224,15043,17916,20780,12900,10360,5866,0,0,0,0,0,0,0,0,83008,72149,73683,51231,26549,28530,21748,21489,21819,29796,33431,36982,29043,29080,26198,20377,18770,15177,11743,10295,7006,11815,22042,33524,40034,31382,18691,15914,19988,16670,14746,14234,43361,60216,91282,90081,119990,106760,88836,93359,93496,95482,79380,79692,66990,56712,51729,35269,28740,30623,22353,24467,19458,16842,21042,18806,21602,18861,18146,15913,15812,13203,9320,5088,0,2,3,5,5,12,20,22,26,28,28,25,21,20,24,20,20,26,23,24,22,18,13,13,16,17,11,10,8,8,7,8,7,9,11,12,10,28,47,64,72,70,82,116,154,140,143,119,124,108,55,48,31,21,18,13,9,10,12,18,18,16,18,13,0,2,3,4,3,5,6,8,8,9,10,12,13,12,10,8,6,10,15,19,17,18,23,26,21,20,25,24,15,16,11,10,66,97,145,173,197,187,145,154,181,192,156,124,65,82,89,118,110,120,96,63,57,62,86,109,143,127,110,90,90,60,49,21,0 +170,142,106,90,130,122,121,148,146,180,182,196,142,146,118,108,98,115,171,270,267,397,576,1030,1162,1238,1312,1134,1576,1420,1570,1508,36998,40827,47017,42726,33227,43244,62803,52684,42363,43466,42907,33056,18048,23009,24283,23043,24150,25040,18844,21816,21208,14953,9889,7330,3980,4709,4286,3173,4390,3748,2626,2176,58776,63046,47416,43948,30980,27832,21690,23976,15466,29136,32602,30609,27253,20146,22091,16887,20221,18011,12356,13759,8608,13504,20665,31348,33795,33894,21065,22430,29244,20646,14076,11778,29036,43371,71662,83773,77408,95318,72703,71386,124326,94450,97969,84008,53275,52572,41257,39703,42543,28683,31681,32422,25210,19787,16410,15470,19000,17923,20299,17102,16827,12399,8127,5376,0,2,5,7,7,13,18,17,26,25,26,23,20,23,21,20,21,28,25,24,25,23,22,18,24,20,12,12,10,11,11,12,8,10,10,14,12,30,43,60,75,84,84,103,148,156,121,134,111,113,66,49,31,36,47,39,28,28,21,26,24,21,22,19,0,2,5,6,5,7,7,8,8,11,14,15,12,12,9,10,10,14,15,16,19,18,22,29,15,21,24,21,13,14,14,16,106,128,166,176,211,181,140,142,174,150,149,94,52,80,78,114,78,75,75,66,55,56,74,84,130,133,96,85,99,66,41,24,2 +176,148,123,99,115,124,142,140,105,114,134,137,152,135,139,121,95,160,290,419,424,840,982,2296,2615,2840,2564,2773,3828,3851,3504,3182,46961,52249,62272,48737,28736,33236,53378,55657,56918,45686,41217,33358,17232,18538,17343,23522,26785,31474,29574,31692,17365,16675,13353,10902,7180,9152,8164,8599,8239,7760,5377,4178,57547,53323,43822,42362,30121,31437,26371,28483,15327,19686,24768,24318,18068,16853,17420,15934,21921,21968,16002,19765,13258,15634,19736,25330,29239,27868,30851,32620,33437,23578,17524,11996,22875,30871,39453,46217,67547,66388,57357,51485,119634,109011,102168,73980,48899,46538,43618,26550,44712,37301,36016,29724,24357,21493,16134,11460,20839,21725,18032,16794,12540,9993,9262,7267,0,2,5,7,6,12,14,18,19,29,28,32,24,25,23,20,22,28,28,26,20,25,22,24,27,18,14,19,12,14,11,10,7,8,10,16,16,28,44,52,81,83,92,76,140,167,149,182,147,126,68,56,42,55,60,53,48,38,36,27,22,20,23,24,0,2,4,6,4,7,7,10,8,12,15,15,13,12,8,8,9,12,16,18,16,17,22,26,12,16,14,18,12,12,12,14,133,125,134,114,172,146,154,111,122,125,91,81,55,74,88,91,66,73,56,58,34,53,58,56,114,78,70,63,78,50,38,25,4 +135,123,153,126,129,124,104,106,86,115,147,152,135,136,155,158,86,238,568,601,742,1021,1486,2578,3401,3788,4408,4554,5714,4626,4025,4100,56068,56504,66900,55428,40385,46918,52577,65291,53280,47576,44986,33744,20030,25632,26957,27514,20784,27865,28105,32202,16847,19030,16878,13359,12376,14955,17596,13352,10648,9094,6528,5384,56857,57776,54694,38832,21306,28002,27293,32473,16808,16610,15254,18155,16142,13218,13852,12552,19536,20011,17566,19818,17428,20615,23971,21096,38227,31497,32914,33804,29195,29706,17360,11506,20636,22626,34965,30712,32718,41848,42261,36973,86096,96201,79432,68778,62610,49369,52365,36121,37689,37832,36212,35142,27146,25270,26023,19231,16156,18751,14337,16389,16166,12492,11268,8908,0,4,7,8,8,14,19,20,25,28,29,29,20,24,20,20,25,30,24,24,20,22,24,25,23,24,18,19,19,17,12,11,8,12,12,19,20,40,56,67,77,81,61,64,92,129,155,152,139,97,91,68,48,64,64,60,65,49,37,31,27,22,21,24,0,2,5,7,5,8,8,11,10,13,17,14,12,12,10,9,12,16,15,18,20,21,19,28,12,16,15,20,15,15,14,18,136,121,103,104,187,160,165,118,90,76,74,77,77,84,125,124,60,67,60,55,47,48,61,58,73,66,63,64,67,41,32,21,7 +151,137,136,123,137,110,129,87,65,98,98,134,156,144,121,154,48,289,544,902,1012,2550,3772,3596,4974,3963,4008,4544,5747,7806,7263,5467,67922,75399,61470,54891,50397,66220,61840,67338,66097,59853,44861,30777,29927,21926,23819,27839,22060,17942,18419,17490,21617,26559,24972,21182,18366,20746,17811,21201,17576,14724,10440,9414,72362,63270,54298,41717,20949,17978,19736,22494,15339,16272,18725,18433,12806,14648,11910,9908,24954,28798,25750,26498,22585,21187,22367,20570,34550,41235,39581,45904,38374,33842,24450,16611,27041,23516,16705,13964,10014,11932,19045,22750,91170,88766,69433,72207,56375,38942,35664,29777,48859,43302,46125,46213,39904,30524,28362,17209,10196,14416,17604,17672,16817,12441,10772,8022,0,4,6,8,8,13,21,24,30,28,35,28,20,19,18,17,29,27,20,16,17,18,23,20,26,29,26,20,20,17,12,14,10,17,18,16,18,41,54,79,92,99,79,60,46,102,137,179,101,95,77,72,42,46,48,67,60,52,37,33,36,36,34,34,0,2,3,5,5,8,9,10,12,10,9,12,12,10,7,7,10,16,16,18,24,31,28,36,8,10,13,17,16,17,15,16,131,111,98,106,156,182,160,133,48,68,73,84,77,100,107,136,37,50,46,38,44,61,58,62,58,73,74,66,50,38,31,21,7 +98,100,97,112,120,125,123,87,68,80,88,102,155,112,99,116,56,442,730,1370,2944,4018,4534,5133,7100,5740,4963,5664,6032,7482,7258,7735,67110,64528,69526,45657,32588,42414,62326,52177,57298,49019,45030,55500,49133,41366,44280,55006,19800,16203,18012,20930,28330,24942,24356,25290,19238,17435,21071,18604,21895,17274,10367,10262,70328,53998,51765,46385,21192,25348,27698,27751,12834,13481,14946,13793,10179,11675,8716,7806,25070,25590,30162,22872,15950,16036,24146,20168,46056,38390,36756,33085,29191,31278,16080,11946,25159,21685,16016,13712,10366,14484,14381,16112,78356,69862,51544,42781,40473,33578,24025,23022,34303,42920,36862,43051,36322,26459,23853,21116,11984,12713,16944,17232,16220,15139,13534,12086,0,5,7,8,10,16,20,26,28,32,39,28,28,20,18,18,25,22,18,22,21,20,20,21,22,26,24,22,24,20,14,14,12,16,21,19,22,41,68,73,81,75,73,51,54,82,118,153,172,138,96,84,77,57,53,82,77,80,78,60,47,40,44,44,0,2,5,6,5,10,9,13,16,15,12,14,11,12,8,7,12,15,16,19,24,30,30,32,15,18,18,19,24,26,18,22,134,100,99,122,147,142,141,114,46,82,72,97,128,148,116,146,33,44,41,38,37,48,42,44,45,50,65,48,44,36,36,22,8 +88,78,91,115,147,145,122,85,70,77,72,92,106,114,90,94,82,771,1216,1678,4405,6034,5758,7887,7911,6542,6150,5282,8363,11104,10743,9804,57108,62879,54625,45054,21113,26563,42476,34841,59363,41272,42016,49574,57662,55723,59240,50236,17464,16460,16351,19732,27740,25447,25802,23309,21538,21082,22101,20184,24152,14712,11968,10272,56004,62266,51500,50940,23306,24244,28364,30830,12275,12303,15138,12018,10626,7416,7220,5809,17106,25972,27215,24923,16192,15388,20792,18377,42320,39302,29003,31306,34419,28422,14420,9269,18848,13545,11940,10952,13067,11609,12224,10284,65534,55230,43606,27956,28476,21560,15118,18348,32934,30874,37780,47826,22392,22006,26569,21249,13188,14568,17502,13935,18363,18327,17208,16216,0,4,6,10,9,17,20,24,30,40,36,34,26,21,16,17,20,16,16,22,21,20,20,22,24,24,20,16,20,16,14,10,14,18,20,20,18,48,62,63,59,57,43,46,44,73,98,106,199,174,104,100,89,89,59,78,91,90,93,95,46,39,42,40,0,2,4,5,4,7,9,14,14,15,14,13,10,10,7,6,9,17,18,18,22,22,28,40,24,28,22,26,24,22,22,29,143,125,84,107,136,110,118,98,53,72,102,89,220,162,176,200,25,34,32,37,23,36,38,32,40,45,38,38,50,46,30,20,7 +84,78,64,87,93,106,123,86,72,62,65,76,84,92,107,116,83,1124,1924,2904,4206,6014,6536,7954,8490,6510,6951,6826,9049,10596,11924,11492,66138,56765,34389,27042,22139,27822,32017,34644,39819,39926,48154,58388,65892,57722,50518,59175,12088,11492,13123,21890,27502,23503,27185,21784,22950,27189,19876,24770,22764,20674,18548,14642,55798,55609,33552,42133,36662,31002,34954,33972,15190,14998,13820,11202,11263,7102,5980,4430,19758,28708,34257,27316,18269,19130,23578,28834,44410,33780,32585,29230,29495,22828,13075,8532,14785,13228,12408,13066,15809,12784,11584,11801,30369,32364,26472,20587,19799,14632,10328,11964,24009,26340,28620,37046,25167,31129,33801,31212,18460,20024,24841,17282,16948,16870,13740,16598,0,4,6,8,8,16,17,18,22,28,26,32,27,25,20,20,31,25,20,21,29,29,23,20,21,24,22,21,18,18,13,10,12,16,18,21,16,41,48,49,63,57,36,37,28,58,73,101,219,169,125,114,101,92,78,82,95,96,91,88,55,58,57,62,0,2,5,6,5,7,10,10,12,14,12,13,8,9,7,6,13,16,16,16,13,19,23,40,27,28,24,29,26,28,30,34,143,138,104,100,121,108,98,95,88,99,120,170,293,216,143,178,14,22,20,26,20,23,30,24,30,28,25,28,41,40,23,20,10 +75,78,84,64,46,70,74,76,86,117,152,153,155,138,99,96,71,814,1559,2882,4224,5814,7682,8488,7868,9751,10685,9294,7576,11065,14337,15598,56477,39510,35197,24800,16498,15278,21059,21931,31699,51379,76450,83248,79153,73962,76406,73878,6740,8513,11928,14068,20268,15823,13620,15200,24045,22656,14739,13584,10091,11081,10478,12582,48277,49203,49934,49524,40631,30929,22687,23939,23251,20601,17176,16780,19543,15794,11653,7600,31033,31098,27786,26081,28526,32844,33931,33148,32050,25092,17514,12035,9984,9514,6496,3604,16570,16781,11838,16332,20319,14588,14025,10167,8884,7070,4532,6117,5897,7252,6602,8392,25908,22547,19599,28753,31870,27464,21434,22248,26856,18194,13781,17730,16820,18177,18633,20146,0,5,8,12,12,12,12,17,16,14,9,8,6,14,20,24,32,31,41,45,46,42,30,30,25,26,31,22,19,19,14,8,11,14,13,18,26,32,33,50,50,71,72,67,56,64,78,91,243,240,162,130,138,107,124,110,96,107,112,102,83,70,74,84,0,2,3,4,3,6,7,8,7,7,5,5,3,4,3,2,13,14,12,10,7,18,23,34,38,32,27,40,39,30,24,27,106,76,55,56,39,56,62,76,102,90,115,130,182,198,217,248,0,2,3,5,4,7,8,12,16,18,23,22,20,18,10,12,9 +60,64,69,52,32,56,60,70,65,112,143,154,133,139,92,90,58,850,1270,2275,3560,4673,5850,5984,7424,7801,6996,8501,7188,12326,14191,13878,43820,33134,31557,23410,13943,22457,25360,36539,32642,47492,65976,77352,53735,55603,81350,79392,5839,8080,13545,18290,19644,20555,17515,21761,28356,20871,18573,15188,15372,12605,10822,12996,37360,39970,45840,41002,38149,29499,20681,24528,23817,21918,19157,19192,21518,15920,11224,10000,35446,40065,32815,31636,33872,39960,39435,42026,36664,28525,22950,16932,16079,10860,8105,4468,15543,13720,9196,11458,14848,13376,10872,8986,7047,6376,4192,4942,7399,7144,6812,9654,27261,24218,18567,29070,22300,19253,21305,17267,24592,21244,15990,17411,22244,24001,18514,16699,0,6,12,16,15,15,19,23,27,22,15,14,10,17,21,25,32,34,37,39,38,38,31,26,27,30,38,28,20,20,14,12,17,19,17,22,34,36,39,46,55,66,80,75,60,66,89,72,197,176,189,148,174,162,142,100,102,122,165,105,116,86,79,82,0,2,5,7,5,8,8,10,8,10,12,12,8,8,7,5,15,16,14,14,13,18,22,28,28,24,23,36,38,38,37,42,112,100,53,64,58,62,68,83,96,102,142,148,163,182,180,208,48,42,38,31,29,32,26,39,37,49,56,50,59,44,42,32,20 +44,41,48,41,24,32,41,50,63,88,136,152,143,139,106,98,52,674,1402,2618,2030,2174,3255,4015,6806,6350,6734,6144,8681,11942,15316,17654,40244,36844,25612,19158,14460,33455,41558,48988,41938,51507,48744,61670,42578,54644,64868,55094,5782,8923,13360,22646,27002,20188,23393,28029,24672,22359,18390,21655,16410,13015,13218,12281,30064,36270,36806,41945,30162,30025,20406,26356,16981,18681,16912,16047,20843,17392,15841,14442,48608,33910,31172,29025,41820,45568,50237,46746,29214,21498,21250,15763,16945,13503,10462,6467,14432,11871,9317,10402,15917,15549,10576,11116,5747,5151,4262,5007,6496,8956,9038,9793,29343,24782,19994,31002,18451,18044,14604,21297,28703,26496,18460,19754,25724,19720,20550,18703,0,7,11,14,20,24,20,19,31,27,22,17,11,15,18,23,31,28,28,41,37,30,28,23,27,26,34,31,26,20,11,10,18,17,20,24,34,31,38,52,41,48,64,76,68,79,70,72,155,178,186,142,196,151,122,84,150,167,177,130,123,117,104,84,0,2,5,7,5,8,9,10,10,14,14,13,11,12,8,7,15,17,14,12,15,20,21,24,18,26,25,30,27,38,38,47,137,117,72,60,62,82,81,76,121,129,146,129,91,98,143,133,80,94,76,57,58,60,48,53,53,80,83,66,91,85,60,54,36 +44,48,52,38,26,32,35,47,46,62,112,100,88,112,97,94,55,460,994,1612,1562,1518,2060,2786,6954,5474,5690,5956,7802,11816,18700,16331,25574,23930,24974,20354,16522,34708,48819,49386,50122,45820,60617,55816,48128,54235,55867,66225,7063,11661,18572,25933,34151,32246,32980,29868,28344,24677,20315,24662,18103,22370,22848,19936,22684,32134,29274,34766,31714,25046,25313,20064,15232,14191,12989,18734,18910,21045,18055,16029,63300,41090,32050,34014,34551,49908,47204,46615,34730,32776,24367,18568,18202,12115,12803,6855,8885,7954,8819,8780,13327,10440,7808,8763,6455,6083,4377,5264,5597,7731,8903,8952,28303,20952,15007,19312,19788,14986,15172,17038,23624,21284,13982,22570,27362,22444,19485,16982,0,8,12,16,21,26,21,30,28,30,21,17,10,19,26,26,25,24,23,32,36,30,34,24,32,27,35,32,22,20,12,11,20,19,18,24,26,35,39,41,26,42,65,74,54,70,78,74,156,176,183,162,223,148,137,105,148,174,191,157,140,136,128,138,0,2,5,8,7,8,8,10,14,17,23,23,19,15,11,10,22,16,17,16,19,18,19,24,13,22,24,31,31,42,46,57,98,100,68,74,56,60,75,70,110,112,108,101,90,105,83,94,117,121,110,82,88,82,70,74,99,114,108,108,105,110,82,66,44 +52,47,46,29,21,24,29,38,17,31,51,55,67,84,79,64,57,226,344,490,750,901,1412,1149,6931,5472,6610,6446,8429,9680,9461,14975,9890,11070,11234,17986,23321,21545,22701,31592,61992,49052,38804,51141,52708,49969,58303,74676,7011,11378,20635,30756,31326,32552,32749,32703,22767,24815,20525,20426,27218,22134,12959,16630,17057,22938,33146,33591,33803,29536,20896,19218,12665,14832,16910,22957,22462,17634,21443,16478,58418,54666,36258,33462,36148,40818,40052,51951,45656,51085,41756,25449,18271,15772,8490,4551,4657,6769,6856,8799,9436,6409,5616,7719,7991,6082,6388,5822,5302,6932,8698,6956,23535,24209,22214,25874,22166,20460,21589,13009,26460,22905,21178,19913,23691,22506,16145,13234,0,7,11,17,22,29,27,28,28,24,17,15,10,13,17,27,11,18,28,30,29,24,14,16,32,29,26,20,20,19,12,10,18,18,17,20,26,27,23,33,14,18,25,44,56,66,58,71,202,171,211,207,196,179,196,159,135,123,163,162,162,126,104,136,0,2,4,7,7,10,12,12,14,17,24,26,20,16,10,10,22,18,13,13,16,17,16,17,11,12,13,20,26,29,32,42,97,94,66,71,72,84,72,69,80,90,96,79,73,72,57,52,128,132,111,119,96,90,81,95,140,136,95,97,138,103,74,60,43 +49,42,35,28,19,25,25,26,12,24,46,46,61,62,74,56,38,148,327,390,482,589,1037,854,4420,4808,5552,5760,6521,9388,10793,13416,11204,12892,10061,14924,13668,18718,30896,39500,56934,45868,32520,32804,63442,67303,67476,69632,15426,16736,22812,26032,24048,26293,30950,30560,30620,30188,31670,22521,45909,34114,23887,25677,25493,26166,24731,28618,27499,24902,14354,15536,9938,17218,22004,31178,27007,27047,23230,25027,46120,40158,36827,34540,33954,35982,36714,52751,45981,47754,33347,25011,14475,12332,6828,3952,3558,4774,5960,7334,5423,4689,4292,4868,5355,5363,5718,5288,4602,5736,6978,6306,16949,17463,19303,25644,22559,21294,21298,15264,27124,26050,23488,22366,23858,21470,19048,17479,0,8,15,19,25,30,31,28,28,26,22,22,22,24,18,24,12,22,30,31,27,26,19,18,25,28,26,20,17,18,17,14,15,20,24,21,28,26,21,28,14,23,32,48,57,71,64,66,150,140,226,224,210,172,178,156,163,164,160,156,156,158,138,124,0,2,5,8,11,13,12,14,12,20,24,24,20,14,10,12,16,18,17,18,20,20,23,24,13,18,18,26,34,38,34,42,74,70,62,56,74,72,75,61,63,66,80,65,77,64,77,94,147,118,109,108,102,91,97,110,117,122,132,138,168,136,86,62,47 +36,34,25,18,12,17,19,23,7,17,25,26,44,45,44,53,19,99,209,217,291,500,606,510,2654,3532,5370,4570,4818,7995,11470,14387,9924,9295,12728,11524,10502,19072,30282,49765,41671,45696,41312,36398,57267,64504,68434,57043,30926,32159,25041,21958,27540,28692,21976,23642,32392,37713,35436,35336,54631,42740,36488,35250,28916,28823,26716,25542,22895,17040,14780,16057,9925,16142,29070,37041,33776,37514,31320,35504,33445,32404,30420,27534,26611,27528,36388,45607,42456,40481,32666,22451,15398,12349,5910,2846,2929,3672,3688,4798,3512,3143,3360,4064,4160,4805,4122,3673,3762,4244,4268,4648,14363,20531,19944,27699,17636,14535,16872,20303,21184,22628,18562,25639,17530,17652,21460,19114,0,8,16,22,25,23,26,34,28,25,20,26,30,23,23,24,14,23,28,26,24,19,18,16,20,19,18,20,11,14,15,17,10,17,22,26,20,28,26,23,10,20,29,45,82,96,82,81,155,151,183,196,161,165,168,177,236,255,212,193,175,158,181,143,0,2,5,8,11,11,11,13,12,18,22,20,17,17,11,12,12,16,18,22,28,34,32,29,18,20,26,30,29,33,29,42,46,42,37,47,69,72,56,41,48,60,58,69,60,74,74,111,179,130,97,105,80,99,108,114,88,93,140,180,172,160,112,78,65 +22,21,12,10,7,10,12,14,5,11,14,14,22,26,22,29,12,59,105,113,145,208,268,264,1508,3307,5128,5479,6081,7508,11476,13749,12162,12742,12326,9504,11011,22809,32863,45573,43638,42012,43065,39209,59317,63557,75436,67204,40460,34752,30491,27120,30634,26400,19980,21675,30922,32524,42878,33588,43918,46946,34100,36487,25167,26766,39266,36419,28031,26176,24759,16442,13366,19799,26768,34465,39818,42762,43348,45309,45134,42836,30944,26448,22577,22602,23882,32452,47848,36051,27116,14770,13330,9086,4658,2174,1733,1694,1999,1979,1847,1716,2173,2260,2177,2759,2544,2880,2820,2777,2712,3396,7768,15210,16201,18501,19286,17970,14918,17974,17133,20731,19222,19498,19331,24554,24501,27142,0,8,14,24,25,24,25,30,25,27,24,28,39,38,34,34,18,24,22,25,21,17,15,18,20,19,19,16,10,12,16,16,10,16,23,24,19,26,24,20,14,27,37,66,86,112,126,132,161,136,113,136,146,146,150,199,218,285,202,222,233,228,191,175,0,2,5,10,12,12,12,14,12,19,18,22,20,20,14,14,14,18,24,25,30,34,37,34,26,24,34,42,38,42,37,39,49,56,53,58,55,52,42,26,23,36,36,54,44,77,120,126,164,145,120,89,47,91,108,114,109,114,102,124,162,136,118,74,55 +0,4430,7954,12047,18674,18520,23746,22199,28745,36470,32272,31829,36166,42030,39609,28079,29518,23802,26665,22180,15992,10696,6308,3487,0,2301,5488,9770,15848,13525,16425,14155,18842,15932,12541,6966,4160,2642,1494,794,0,0,0,0,0,0,0,0,0,4968,10139,12260,15504,14100,17372,17462,21262,20246,14158,9404,8217,16680,33373,35758,29756,43014,57181,59020,67454,82882,95587,84888,99668,120119,103194,70857,62578,73028,78248,55223,52710,44564,53889,47594,40694,30537,17915,15318,16691,17756,19955,13244,12165,8112,6639,3050,0,2066,4166,6528,9539,16104,23578,36792,48932,40252,37793,40386,47686,61870,56228,46408,40588,42320,31512,28443,35179,35788,36015,35926,41179,44256,36817,33136,33084,33492,31032,27319,0,2,4,7,7,10,10,11,12,14,18,24,22,18,18,17,11,11,11,10,6,8,8,10,8,8,6,6,4,6,6,10,10,30,40,42,50,129,181,231,228,303,281,230,274,253,317,305,210,252,305,230,265,311,288,349,381,335,231,305,316,288,185,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,17,22,22,21,32,42,41,49,41,33,34,23,18,11,10,10,7,3,4,3,2,0,4,6,11,12,17,16,16,19,18,15,19,18,20,28,44,62 +4,4258,9126,11742,12968,16014,22104,24154,27146,30304,31482,35628,23040,32130,36657,28575,19367,17636,25607,21101,15274,11534,7050,4262,494,3450,7272,9708,18367,16691,15372,19014,11963,12348,10930,8368,7183,6437,5236,6128,3599,4213,4999,4902,4523,4174,3959,3416,3366,6186,9474,9599,16924,17100,20690,18524,20953,21110,19224,22422,14081,26978,28391,38626,23640,39354,38771,54901,56940,61610,68426,73776,72518,94362,76112,77193,80671,72394,80751,68121,53128,53944,55770,47518,51156,31462,20374,14264,19509,17022,22179,16802,13356,9606,7660,3193,0,4082,8526,10941,12214,23190,29314,38766,55150,52600,43285,42735,47752,54424,62919,55681,39069,34468,31092,35498,51089,41007,39412,40644,31615,40046,29462,32997,28827,31974,28886,27951,0,5,7,10,10,11,13,13,19,20,18,22,20,18,19,16,13,13,12,13,10,10,12,12,8,9,7,7,6,8,8,10,22,38,43,59,75,146,194,205,222,218,286,270,203,231,270,214,280,288,317,246,299,354,260,334,396,308,206,286,332,314,212,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,8,8,7,6,11,24,24,32,54,52,59,54,41,40,56,34,46,44,34,26,15,18,17,13,16,14,12,12,14,20,26,23,24,24,27,24,18,20,21,24,24,30,46,43,59 +6,3905,8036,11959,11689,18835,21198,25616,16579,20476,22144,31558,21424,29030,27122,25702,15074,20670,20807,17409,9572,9319,6696,7170,1226,6265,9276,11042,16281,21528,20394,20128,9647,8026,10134,7664,9912,9172,8269,10858,8212,9742,9078,10573,7713,7082,8408,7329,8020,9460,10400,8396,15599,13812,18364,15086,26849,24418,30192,31628,22612,27726,33858,41778,13987,27485,34206,59936,31266,29585,40076,52287,42632,55257,65460,64704,84170,62286,60924,62639,52185,53084,69094,68515,47151,38966,19846,14094,19262,18648,22792,18806,12845,9912,7401,3606,0,5833,10609,18834,20987,30256,35438,41170,65393,58921,47898,37788,42293,48269,65400,58255,38210,33859,43703,39056,50568,46114,33902,33983,36139,39184,29282,35687,27698,26504,23678,21425,0,5,7,9,9,10,12,12,21,26,23,22,18,15,14,10,11,12,12,14,9,10,11,14,7,7,6,7,6,8,8,10,36,48,58,82,99,164,180,242,182,206,223,227,178,154,148,123,290,323,288,260,382,386,337,339,355,338,239,225,344,252,180,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,20,22,14,13,13,12,18,29,44,46,88,72,88,72,40,48,46,44,64,64,42,42,16,20,21,22,23,22,22,24,26,36,38,36,29,32,36,35,21,24,23,34,26,35,47,52,70 +7,3324,8274,12576,12308,16004,21156,19838,11497,12154,14100,23462,28602,31166,23957,17797,15740,16084,14386,12406,8158,9152,10111,8270,2012,5340,9093,8846,14774,16374,16113,17041,7941,7680,6799,7646,9194,10016,10451,17102,11570,14614,12536,12832,11667,14174,13627,14070,11133,10792,11753,11436,14629,12914,12572,12500,35404,27170,39325,37696,34642,36854,39102,36586,10710,17897,23988,44230,35063,39102,38023,43063,30128,36942,44643,46182,63843,57770,81736,70392,71185,73692,73022,59516,53753,35264,17516,15702,30140,20593,21956,17426,14058,10290,6422,3328,0,6770,12482,25718,28410,30401,42214,59302,81441,53366,37380,48487,38586,57861,69482,54298,47672,43272,37562,40741,50609,42909,37032,35284,22192,23344,25243,30901,32103,30874,21242,18827,0,5,7,10,12,12,14,14,24,22,22,21,16,16,12,11,8,11,14,13,12,12,12,15,10,10,8,9,8,8,8,10,52,50,75,112,131,184,186,242,244,232,229,228,168,183,146,97,287,278,340,340,380,381,306,353,307,284,210,258,304,192,132,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,30,28,23,22,22,18,25,43,60,81,122,113,116,93,44,48,47,51,64,70,56,49,17,20,29,33,28,34,37,38,38,46,53,44,36,40,33,32,18,22,22,25,28,35,56,66,65 +7,3044,7053,11268,12948,17110,15715,17619,6433,10772,14270,23168,29926,24395,23143,17250,13251,14294,13424,10344,6562,6560,8764,7097,3599,5498,8600,8544,9674,10877,9573,12712,5722,6594,9862,11883,10049,14483,15180,17124,12407,12219,10101,13934,18316,20776,17794,15046,14412,16482,18845,16355,13533,12756,15553,13990,47808,42717,47405,39852,41694,43216,43541,43282,7994,15810,29826,36193,35852,40632,51774,38627,17085,25867,28748,43435,61583,46168,48733,53124,86847,75076,89074,67928,48802,41340,21563,14044,31895,29422,17490,13301,14678,8712,6661,3432,0,9942,18685,25934,30258,28088,35882,58485,71945,71550,66289,51978,48872,40221,42180,33524,44266,36911,42646,47315,41981,36478,30199,37881,13937,19162,21744,21972,27230,21212,18874,17176,0,2,5,8,10,13,12,13,18,13,11,12,12,10,7,7,6,10,11,10,10,13,12,15,8,10,7,8,8,10,7,8,50,47,61,93,132,119,117,161,241,243,186,200,238,219,130,114,217,286,353,410,368,474,496,536,383,391,284,264,210,139,103,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,47,41,36,34,31,28,28,40,68,75,95,117,123,101,74,37,29,31,49,60,64,63,71,17,23,30,32,34,46,47,45,54,48,41,39,51,44,45,32,16,19,22,27,30,44,45,50,52 +9,3540,5959,9335,10971,14552,14443,14735,13150,13531,16618,22468,33416,29882,27735,22911,13512,13545,14526,11745,10166,10474,9041,7177,5797,6655,9594,8530,8104,9610,7958,8899,7805,10106,10844,9165,8526,12912,12275,20254,21946,21682,20969,26908,26701,30930,25506,17968,18685,17103,18783,20944,17811,18007,15706,16512,55931,45064,39250,36460,30308,33986,41493,29014,6304,12642,23267,28220,31122,33360,32734,31179,16808,23807,32797,49263,44440,50747,50360,54288,81232,67675,70664,56260,49216,49101,25646,21227,24714,26206,20517,15227,16396,12888,5945,2912,0,9974,17284,23536,29459,31306,43072,53608,74515,61889,45973,45566,36773,32089,30245,34931,29884,31499,33910,32458,28742,26888,27639,33170,26442,20640,21227,25517,24961,21150,18209,20869,0,4,7,9,10,13,11,14,18,13,10,12,10,12,9,8,7,11,12,13,8,13,13,17,10,11,10,10,8,9,8,10,60,81,77,100,120,126,136,184,208,184,158,172,238,176,147,125,250,294,292,420,373,442,475,458,310,308,222,198,158,129,115,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,54,46,54,58,36,32,44,74,106,132,134,148,124,141,35,38,31,50,68,66,65,64,23,38,44,47,37,60,55,52,60,54,36,57,54,53,59,37,29,32,30,28,30,35,40,46,43 +11,2484,5979,9646,12464,9969,11034,10523,18246,17412,20109,32371,35110,28309,29488,26884,10324,9990,13256,17108,15542,14242,10208,8975,6408,7433,7739,6327,4302,5778,7597,8179,10686,9663,12702,11074,10890,11142,14687,17205,31309,28404,28372,39241,46396,38179,35846,23631,22020,26682,23766,22218,20976,19388,21468,22867,54590,43996,45815,43583,28629,34748,31431,29509,2940,7589,14332,17468,18308,25638,24542,19498,18290,25320,31244,38889,40281,34705,38087,56308,93289,91348,61996,46873,72004,61483,39534,26234,17622,19384,22302,16531,16207,13076,7668,3467,0,12920,22056,27837,40394,44624,44632,44134,58446,57434,41440,54802,40321,36263,27968,36552,30117,27526,26118,18816,18444,20640,26999,39012,30208,24457,21784,26646,25342,19790,18958,22704,0,4,6,8,6,10,10,10,12,12,9,12,9,10,11,12,7,8,10,12,7,13,15,17,11,14,12,10,6,7,7,8,55,81,97,121,103,87,109,185,129,115,118,130,188,144,132,118,266,268,368,472,374,452,382,372,272,207,177,137,147,107,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,70,83,67,91,77,57,49,57,118,148,150,148,159,154,165,32,35,40,52,86,84,90,79,36,47,46,58,48,46,62,56,49,43,40,55,74,81,64,39,33,35,34,27,30,35,38,30,26 +12,2146,4316,8697,8978,12108,15899,18434,19547,22300,21396,28470,34927,25016,28652,30314,16213,15979,16778,16332,16888,17018,15044,12069,8124,7544,6816,6374,4348,4636,4581,4824,13686,16928,14415,12292,8889,14097,21990,26141,26462,31843,31387,42063,56229,42100,24494,23156,31176,23942,20767,23389,30549,26232,26053,28938,53621,43806,30439,27766,24460,24460,22511,21991,1684,6166,11567,14479,14889,17282,23586,22132,24917,29726,34646,37836,45608,42591,36452,50888,89984,74712,73975,67847,68011,62754,41412,35035,20521,20318,19650,14218,16627,13670,9034,4482,0,10330,21824,25986,37790,37370,31699,28674,48919,34493,36088,44818,45024,40371,28543,31184,27248,23140,20867,16304,16694,17100,19286,28936,31055,24366,21321,20578,20196,19868,16344,24455,0,3,5,7,5,8,9,10,12,14,14,13,12,14,12,13,7,9,10,10,7,13,16,16,10,14,12,10,7,8,7,8,77,108,104,115,122,118,88,126,101,93,97,114,110,116,93,86,267,232,320,435,319,378,281,284,287,204,179,114,92,97,76,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,127,82,76,102,86,70,69,64,124,137,162,173,193,241,251,26,34,40,54,67,77,72,69,47,66,77,60,64,62,80,72,69,54,51,64,70,84,73,53,34,34,32,32,27,24,31,22,16 +9,1670,3051,6449,8361,11475,17481,21015,21621,19494,15113,21193,20654,17592,21046,23612,18868,18084,18653,13562,11008,14784,14857,10348,10668,8992,7046,6965,8092,6231,4850,3764,23297,24622,36102,38323,35496,37298,27965,24411,32928,33089,23799,23222,21167,19062,19399,23947,31795,41471,43936,49322,40865,47731,44427,48850,47138,40195,28600,27092,21436,20285,29216,29290,0,5955,12388,16590,17852,18768,19543,23136,29703,22956,18533,24218,25032,27658,30664,42954,68836,65740,67768,82674,70831,52135,42278,30036,26096,23750,23850,14703,12752,10258,5942,3555,0,991,1833,2393,3238,13051,20174,22398,31236,29161,27602,36586,37892,29073,21890,17239,15357,12940,14260,19212,20357,24102,25760,32928,29770,31134,35044,29140,29379,41398,41325,31130,0,4,6,7,7,9,11,10,9,12,12,12,12,13,15,17,4,5,4,5,5,7,7,8,10,11,8,8,9,10,8,7,87,116,132,147,141,106,103,82,82,78,81,82,73,88,90,72,203,190,156,149,97,141,171,152,206,168,199,181,132,109,120,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,154,203,193,179,140,135,113,57,83,116,163,176,227,217,268,29,34,27,33,46,47,32,53,55,61,52,48,33,36,44,49,82,72,82,70,52,48,52,48,42,37,27,34,36,24,19,12,0 +17,1698,3322,5474,9322,12668,15723,20796,20714,17722,15980,17350,15550,17234,21180,25849,16898,16264,16796,13770,9024,10980,13625,10433,6200,6216,6297,7240,7014,6572,7401,6000,29460,29346,35754,35928,36580,37028,25795,29087,27233,23604,18874,21562,22200,23263,18992,25957,33551,43537,42000,40383,51835,51176,46338,42090,47408,46410,37658,35985,33669,30849,31626,28396,4228,10062,12812,12662,15550,17154,22942,27240,29596,25764,21124,23311,23554,27214,38776,53348,58654,58916,73059,64556,48308,52614,40768,35936,26355,22892,18133,14190,11296,9382,6718,3692,0,731,1648,2312,2227,7949,16322,16563,29908,24682,27420,32602,46011,41868,20474,17498,12282,10620,8480,14577,15976,19226,21878,26266,21706,22450,24875,26054,33130,39694,31445,30967,0,4,7,9,10,10,12,12,8,10,13,13,12,16,17,18,6,8,8,10,8,11,10,15,12,14,10,12,12,11,11,9,90,104,92,108,128,101,78,80,81,72,64,70,46,68,80,74,180,176,149,120,86,122,162,196,177,162,188,162,154,154,104,96,2,2,2,1,0,0,0,0,0,6,10,15,20,28,36,39,148,152,179,136,130,116,122,91,42,87,105,136,142,203,240,286,30,38,37,51,43,51,52,72,39,56,68,58,32,45,68,67,72,82,96,84,50,58,72,52,42,44,44,42,36,30,21,14,0 +19,1802,4046,5807,7439,10047,12028,14598,16983,14588,14082,15565,8530,13073,22508,28018,13346,12196,16993,15174,9482,9680,11712,11473,4552,5028,4643,6519,6583,6081,8139,7530,34119,31818,24858,35910,41808,35502,36046,35943,18265,15172,17940,21923,29608,29964,22896,28003,42677,39839,47290,37490,54742,45262,50258,53738,43006,44464,43370,40478,38735,29652,27360,22938,7210,8539,13972,14038,15245,17810,21280,24734,23238,22958,20452,18272,23043,35183,45459,50325,44258,51653,56914,45788,37030,37131,41917,37238,32256,26790,18508,17764,10985,9643,6662,3587,0,611,1222,2533,1875,4830,7440,8821,20860,22452,22584,31980,41699,37717,27053,24202,8248,6311,6210,8516,8644,13297,17334,16412,23925,25075,22464,22379,25906,23030,30764,24717,0,2,5,7,8,8,8,12,7,10,10,12,9,17,18,20,6,8,10,14,11,12,12,14,14,15,13,12,10,12,10,10,88,84,89,104,78,68,81,62,65,55,53,65,32,53,66,54,112,115,146,113,77,115,172,210,146,109,116,100,138,127,114,117,3,4,3,2,1,0,0,0,0,8,16,26,44,54,76,98,138,146,108,102,75,90,102,68,38,54,92,142,130,185,302,337,32,37,55,75,41,54,62,98,33,46,62,56,37,65,76,80,88,85,81,92,58,54,68,55,55,58,50,47,45,31,28,15,0 +32,1759,3038,6577,7793,9489,9096,14220,12516,12059,10053,11958,7601,12370,13489,21980,11086,11652,14758,13833,13327,12428,8818,8701,4108,4715,4809,8260,7478,6590,7630,6862,25210,25635,31597,31011,37786,34110,40992,31320,19520,16150,19832,22276,25313,26485,22791,24520,36056,39574,49719,45890,43216,44981,46808,54265,53938,51303,62568,43683,42316,46390,35943,34448,10660,11556,11362,12000,10685,13188,13794,15024,20402,20514,24836,21834,24357,38014,49988,65973,39503,41954,40263,34866,23304,28131,26941,29020,29140,21408,13601,15490,10940,8931,5486,2454,0,614,1048,2096,2254,4050,6280,6674,23192,27590,28245,27868,31255,23142,17590,17734,5191,4823,4809,6340,5394,8713,11620,12270,18329,17974,17034,18758,20945,21697,20380,22582,0,2,5,7,7,9,10,12,8,10,10,12,10,16,16,21,8,12,11,16,17,16,16,16,16,16,13,13,10,12,10,10,99,106,110,78,82,72,76,58,66,56,54,41,20,40,48,46,67,82,99,102,79,106,153,168,99,93,90,84,100,80,90,85,5,6,5,4,2,1,0,0,0,15,20,38,61,75,107,106,103,85,76,80,75,78,86,60,42,72,119,144,136,193,245,262,28,48,58,54,53,72,84,102,32,47,50,46,45,64,92,71,76,92,78,105,83,84,101,77,40,48,50,46,46,30,29,12,0 +36,1912,4527,5634,9329,10623,14123,15695,14296,14807,12322,9838,6418,11930,15027,21538,9073,9745,12360,14856,15126,13482,8608,8938,3333,5049,7114,6971,8038,9878,11092,10586,28258,21798,19532,20371,26996,28934,31364,35473,16974,17101,22153,26128,25041,19700,16300,23867,42868,43555,39681,35463,47608,52926,51402,56336,67208,64551,69184,54344,38420,33258,30505,35156,13633,10664,10937,9928,9044,7159,6125,7830,11548,12512,18247,22668,21730,38881,43639,56866,28335,24316,18289,16331,18560,16169,18908,18886,23518,23393,17511,13010,8485,5825,5073,2733,0,710,1256,2055,2186,3342,4384,4004,22924,22816,22351,21318,23792,23922,18194,15401,3384,2826,2372,2805,2556,3187,4716,5538,15193,21086,20371,22594,18952,16945,22736,28441,0,2,3,5,4,6,6,7,7,8,7,9,11,13,11,14,9,14,16,17,17,15,16,19,16,15,12,11,10,11,8,7,144,128,77,64,58,57,70,72,56,36,23,16,14,24,30,46,50,72,71,78,85,108,136,124,65,86,92,74,68,59,50,45,4,5,4,4,2,2,1,0,0,23,52,58,74,99,104,130,55,46,46,61,56,60,58,39,63,107,128,151,124,243,314,364,23,28,31,56,72,94,122,106,42,50,42,55,71,74,75,60,89,80,71,82,109,129,122,98,42,42,39,44,40,33,18,9,0 +27,1833,3322,4772,6776,7748,8286,10431,12859,12583,11082,8312,7012,10121,12501,18116,6846,10004,11609,13722,12452,12658,11812,10849,7402,6704,7409,6302,9600,10293,10954,9655,22450,23430,24193,26230,19049,20276,24993,29380,15012,14140,15895,21671,24045,23216,18860,26341,31324,34507,37816,43768,42676,45253,47887,58338,67736,67368,85381,78855,69250,46608,37301,33322,22239,15251,17819,14701,17753,14542,14539,12084,12700,14854,17966,23274,25354,37224,45257,40800,34466,30374,24548,22118,17420,18127,19504,18674,22868,16078,14034,12970,7509,4660,3538,2073,0,584,1097,1669,1993,2833,3656,3244,14208,16364,16456,17669,17523,20014,14140,9819,2791,2278,1585,2065,1782,2762,3069,4304,14050,15032,14970,15234,12155,13264,18326,17942,0,2,4,5,5,7,7,8,7,10,10,12,12,13,13,16,8,16,19,16,20,19,18,20,13,13,10,11,8,10,8,7,169,119,92,77,54,60,53,54,53,35,20,20,12,21,27,40,35,49,54,50,75,78,81,92,50,53,58,62,45,42,48,40,6,7,6,6,4,4,2,1,0,32,66,92,97,106,126,142,98,78,90,108,80,66,54,45,53,88,118,135,142,206,262,283,17,24,34,54,78,82,110,104,60,63,58,74,86,86,70,76,64,63,62,82,92,104,110,90,37,50,48,48,40,33,18,8,0 +26,1596,2953,3941,5085,5300,6572,7469,9292,7426,8863,8117,6426,8932,12024,13080,6497,8496,12068,13845,13037,11930,11246,9959,10406,9682,8734,6533,8923,8370,7378,6659,25316,22372,23610,24028,19573,20785,21938,14818,18232,16362,16178,23671,21032,19675,18870,21508,29817,32160,39199,47423,51355,43708,56830,57990,68255,83983,109258,114456,95316,54497,33486,28860,28014,25220,20670,22373,28767,23248,23147,16976,13442,17400,17803,20728,21000,32762,35754,42402,40108,40347,28530,27819,15330,13426,14649,16554,15927,15816,15432,12157,4173,4016,2972,1477,0,412,857,991,1242,1506,2461,1932,8480,11455,12288,14905,16706,11979,9345,6751,3354,2786,1546,1947,1081,1845,2932,2515,10224,11565,12404,9114,6916,6518,8654,9129,0,2,3,4,3,5,5,7,4,7,8,8,9,12,11,16,8,12,17,22,17,15,14,13,13,12,8,8,6,7,6,5,147,104,79,58,59,60,42,34,31,25,20,22,9,19,22,20,19,24,26,23,47,50,56,62,21,28,34,29,34,32,30,23,6,7,6,6,4,5,3,2,0,28,63,86,98,130,141,174,126,144,120,143,90,75,58,62,50,86,111,106,119,147,212,222,9,18,32,55,69,86,108,88,78,72,58,75,95,90,80,75,55,53,54,51,71,66,74,80,45,55,46,45,35,29,16,10,0 +31,1370,2568,4938,4710,6326,7274,7714,7596,7876,6567,5808,5702,6572,9393,9739,7960,8692,10601,11472,11734,12078,15795,16626,9858,10636,8881,9216,7348,9112,10071,9900,17583,20364,22571,20098,14173,17520,20412,18670,15440,17445,13681,18976,19265,21274,21795,27942,33878,33898,34941,46778,56494,49965,62765,61508,87556,102636,107804,110368,91672,76214,35134,33892,33981,26218,20606,32204,35888,31858,26356,20512,14068,13908,16367,17726,21050,24803,24526,32120,37978,28704,25960,26245,17056,17383,16345,15114,11804,11849,10690,7204,3882,3147,2571,1233,0,190,446,591,681,997,1214,1240,4541,4920,7472,8180,9029,6876,6139,4420,2208,1690,1218,1148,662,1021,1728,1272,4526,5596,7818,5416,4430,5178,5397,5598,0,1,2,2,2,2,2,4,2,5,7,8,8,12,11,14,9,14,19,20,22,22,20,18,11,11,8,7,5,6,5,5,104,78,77,60,59,44,37,36,31,29,20,22,10,16,17,15,12,14,16,14,27,28,30,30,10,16,16,15,20,19,16,14,5,7,7,7,5,6,4,2,0,34,69,100,101,134,122,149,155,156,140,152,108,95,63,64,52,68,96,86,72,106,188,164,5,15,25,47,61,80,112,88,69,61,63,80,85,96,103,87,60,60,50,59,64,64,65,60,52,50,38,36,23,22,17,9,0 +36,814,1541,2850,3939,6095,6628,7094,8655,8181,9443,8638,6060,6508,6795,7876,8902,10038,12063,11830,8901,10351,10586,8133,6512,9171,13026,15190,12517,13485,11201,11096,14482,27683,47369,56430,59161,48273,52450,62612,54411,43558,36133,51357,51319,41031,32268,29016,33622,41536,40703,27796,26414,18821,13318,7855,0,1924,3956,9010,11888,15606,19858,26734,38534,38396,42325,40399,27362,31165,24746,22055,16287,16580,17576,15931,12306,19543,22845,28004,29356,31189,27991,18254,12108,18260,19442,16026,17203,17566,21100,17583,13408,11269,8280,3400,0,130,305,423,457,498,687,984,1193,1384,1903,1873,1624,1496,1202,1478,1482,1534,1238,849,464,297,183,78,0,526,976,1231,1433,1414,1861,2019,0,0,1,2,2,4,4,5,5,7,8,11,14,12,11,10,10,12,15,17,12,12,13,12,11,12,14,12,9,7,4,2,72,86,83,86,83,66,47,58,54,56,49,48,41,41,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,23,34,33,106,143,172,171,177,160,176,260,243,208,168,152,173,259,244,218,195,220,191,188,256,269,210,234,224,147,176,0,14,25,40,50,71,82,92,82,75,71,76,95,100,102,85,66,88,110,139,122,120,135,101,76,53,51,39,20,14,10,6,0 +50,864,1879,2652,3663,4920,6048,6860,9489,9136,8744,7746,4377,6046,5837,7767,6966,9379,11405,8353,6638,8902,7318,6612,5711,6824,8628,10975,11264,10560,8841,7990,17607,27683,47876,46531,44946,45765,46663,49396,49486,44772,44736,46731,36296,36166,43494,46608,34215,34634,33958,30504,23583,17315,11513,6505,112,1606,2949,7283,11572,13604,18657,23350,39540,40240,40314,31447,25390,20121,25463,19363,16207,13088,17821,13496,10902,13405,16470,20692,25536,23182,22221,15931,12020,14110,12782,15966,12966,18580,19810,14649,10105,8760,7002,3274,37,144,261,350,501,590,644,916,1164,1406,1828,2183,1680,1880,1319,1812,1604,1503,1909,1340,869,538,256,107,7,476,712,1033,1233,1544,1814,2004,0,1,2,3,2,5,5,7,7,9,8,11,16,16,10,12,9,13,17,16,10,14,12,12,14,14,14,12,8,8,6,6,48,56,65,74,74,63,52,53,36,45,56,52,61,43,40,27,14,10,10,8,7,8,7,8,14,14,8,8,8,9,7,5,7,16,26,30,26,76,91,134,153,222,223,272,306,292,249,211,121,150,214,244,207,187,138,141,140,172,249,200,262,230,180,234,17,34,51,55,40,50,76,83,78,62,67,76,86,98,96,97,52,70,105,117,136,134,155,130,108,80,70,54,23,20,14,8,0 +59,855,1670,2350,2468,4068,5098,4914,9467,8975,7540,7492,3708,5552,7076,7496,5595,6720,8590,7772,5236,5978,4968,5477,5659,7032,6718,6618,8460,8840,9861,10887,19871,33249,36716,35316,36456,38764,38938,39892,64394,58267,48084,46456,35936,41099,42046,48516,51176,54267,42277,27290,18978,13995,6255,3758,199,1300,2915,5624,9178,13289,17529,19342,37981,35385,31790,34792,17675,16253,21487,15670,12382,13130,12682,14044,8871,9591,9418,12845,33965,22694,18840,11932,16842,14920,11644,12466,13427,15255,14661,9278,8884,7854,5301,2280,89,212,266,348,401,587,648,834,851,1117,1578,1520,1670,1702,2056,1732,2348,2443,2054,1282,988,732,398,224,13,317,738,739,1439,1520,1880,1868,0,2,3,4,3,5,4,6,7,7,6,8,12,13,10,10,8,10,13,12,7,8,10,9,13,12,11,9,7,7,6,7,34,44,46,50,72,59,56,61,31,38,52,45,66,62,48,55,23,21,15,12,12,14,13,12,23,24,17,15,16,17,11,10,8,13,20,28,28,40,66,99,207,248,318,305,263,265,244,223,96,131,166,170,131,125,120,114,157,168,160,173,230,203,212,196,32,46,62,79,44,57,74,86,58,54,62,73,81,110,114,166,55,58,79,71,138,158,156,142,103,95,66,46,32,26,13,7,0 +69,867,1801,2204,2908,3202,3165,3969,6208,8488,6448,5524,3352,4522,5077,6168,4440,4462,5897,5912,5262,4745,5812,4822,6090,6660,7049,6834,7774,8722,9648,8042,15860,25840,40710,39956,36513,33642,36972,31705,61606,62748,51150,48520,46369,41404,35300,42074,44326,34336,37030,20987,16036,10507,7278,3694,300,1904,2512,5370,9973,11112,14293,14376,41796,37114,28358,29050,16826,16652,21370,15941,11039,9321,10135,11219,7889,8185,9210,9632,31598,23636,13550,12314,17742,14859,12556,10486,19190,16457,18382,12420,10698,8388,5847,2730,145,234,258,394,477,744,1073,1302,751,791,1300,1476,1748,1742,1528,1658,1954,2218,2422,1508,1098,754,565,264,18,286,703,749,1156,1631,1283,1418,0,2,4,5,4,6,5,6,7,8,7,9,9,11,9,10,10,12,14,12,7,9,10,12,10,12,10,10,7,8,7,10,35,44,40,46,59,66,46,48,39,47,61,58,76,68,52,63,37,36,26,28,15,18,20,17,34,32,32,28,21,21,15,14,8,14,20,26,31,46,75,84,208,278,308,342,346,296,236,168,107,132,124,156,142,125,111,110,127,112,144,136,179,158,171,182,63,59,82,79,63,64,74,70,84,74,72,88,67,82,128,172,57,73,77,92,133,133,112,161,98,84,70,52,39,32,22,10,0 +69,691,1120,1687,2382,2662,3452,3061,5269,5302,3687,4370,4328,4086,5377,5888,3022,3322,3239,3918,3860,3973,5258,6130,5771,4826,5245,6562,6494,5966,6043,6256,14243,25828,36796,33073,43526,30511,16187,10491,54743,58505,67549,62595,43533,43286,37902,25414,39884,31980,19331,16952,14152,10513,10119,6166,524,3306,5439,6828,7471,8570,7554,9810,32902,40431,35065,24795,19048,16095,7904,8378,6786,7433,10925,9609,10197,9534,7378,7516,23429,20288,18936,18328,14818,13275,9135,7138,20913,15676,10870,8288,9253,7309,4815,2594,218,270,365,535,566,672,709,981,402,766,892,1045,1710,2357,2317,1722,2432,2212,1622,1603,1296,786,627,281,24,404,702,774,984,1095,1024,738,0,2,3,4,3,5,4,5,5,7,6,7,6,8,8,8,11,13,11,10,6,8,9,9,7,7,6,7,6,10,11,11,34,45,53,60,50,47,32,42,42,39,49,60,68,69,60,71,45,49,43,29,19,22,20,19,38,48,43,29,26,29,23,19,8,19,23,24,34,53,59,81,172,248,251,307,318,297,220,258,136,143,152,140,144,135,83,106,74,70,72,88,98,201,271,288,81,90,102,96,78,68,46,45,105,110,120,101,68,93,105,183,58,71,104,106,150,151,217,193,87,60,56,57,46,36,18,11,0 +87,690,1356,1932,2818,3364,3225,2620,4415,4466,4282,4554,4629,4662,4755,4977,2280,2550,2526,3399,2828,3244,4385,4403,4139,3992,4532,4737,4386,4401,5094,6210,11071,17776,31326,35566,31050,28571,21142,16772,48199,51654,45992,41421,33762,33332,37902,25544,36156,25261,15412,14687,11438,8763,9721,5374,773,2442,4724,5168,4985,6836,6550,9192,46983,42396,34016,26090,28947,19610,15061,10506,7712,10167,12882,10458,12019,10211,8126,7566,23059,23632,14746,16758,13567,11861,9845,10068,17436,12112,13043,9046,7628,6283,3840,1991,276,306,356,412,393,525,614,784,468,574,840,1278,1472,1710,2056,1476,1780,1806,1706,1494,1169,973,635,320,73,413,702,908,992,1007,974,793,0,2,4,5,4,6,5,6,5,8,7,9,7,10,8,10,8,12,10,9,6,8,8,8,7,9,8,12,8,12,12,14,49,58,70,91,75,62,44,64,78,78,72,84,66,73,68,77,60,72,64,40,30,30,34,32,38,46,48,45,44,38,28,20,8,19,21,26,46,52,53,75,155,218,201,267,251,286,203,185,137,136,158,135,151,129,118,103,84,68,87,94,133,206,275,294,109,109,114,93,130,98,74,72,111,136,150,110,127,116,167,178,74,112,122,134,123,169,239,229,108,93,74,54,46,34,16,10,0 +84,634,1306,2275,3459,2928,2936,3325,4682,4879,4156,3884,6203,5520,5754,5038,1723,1449,1726,2038,2045,2771,2813,3696,2856,2577,2952,2807,4102,4050,4514,4569,10690,14710,22340,29596,33414,30579,31417,28868,47739,31567,30570,33226,28301,25224,25503,25498,22610,19628,11615,11296,10264,9648,6190,3507,789,1890,2597,3235,3801,4603,5872,5857,51811,51014,38532,39194,31220,29222,17985,14171,10350,12625,12178,14213,11996,10859,8216,7247,22853,16856,15868,13146,16460,12553,12067,11348,16981,11844,10978,9094,7981,5305,2610,1440,325,342,318,300,206,372,450,820,403,643,688,1156,851,1032,1243,1251,1564,1575,1508,1532,1492,1083,721,462,108,290,612,706,833,766,611,690,0,2,3,4,3,5,5,5,4,7,7,10,6,7,7,10,6,8,8,7,4,6,6,7,6,8,8,12,9,12,12,12,55,77,93,112,99,80,64,82,119,116,101,90,69,73,64,82,92,89,76,58,40,50,43,49,52,58,53,49,51,38,33,22,9,18,26,26,43,41,50,64,181,202,220,214,269,194,212,184,173,169,138,126,147,146,116,80,87,82,97,92,171,195,238,251,126,145,132,144,137,134,108,106,164,148,146,131,150,151,183,155,106,144,159,164,138,197,190,155,130,92,67,51,38,34,18,9,0 +76,774,1762,2620,2816,2806,3198,3198,4772,5080,4746,6018,8082,6212,4973,4210,996,884,907,1347,1469,2039,1911,2165,2007,2342,3188,3080,3361,3872,4526,3800,7072,12803,19044,25192,25688,28560,28617,25468,43306,37610,28953,27950,28067,28256,29100,27498,17672,17788,10638,7220,6075,6517,5170,2790,821,1114,1726,1906,1761,2761,2722,3468,49185,46877,43723,41580,33221,23708,21408,17045,11052,14334,16762,18576,17671,13608,10972,8811,17055,18110,16527,14168,17609,14868,17028,14876,11714,11555,7860,5332,4268,3208,1906,838,346,242,281,250,179,298,294,536,411,591,752,896,892,747,1073,1160,1620,1489,1539,1630,1651,1022,840,446,132,338,464,619,595,713,671,768,0,1,2,3,2,5,5,6,5,7,8,10,7,8,7,9,5,7,7,6,4,5,5,5,4,6,7,11,9,12,11,13,78,111,104,130,132,111,93,105,160,142,141,130,98,100,103,124,120,132,112,71,67,44,47,48,65,72,72,69,64,52,37,28,12,24,25,28,40,44,42,62,141,184,158,206,230,174,158,136,150,156,129,146,108,126,106,84,56,91,122,152,204,257,259,284,109,120,127,116,158,148,152,150,185,142,149,162,218,224,183,170,192,182,219,162,115,164,140,142,176,110,77,57,31,30,22,12,0 +50,419,883,1422,2333,2439,3240,3943,3758,5620,6807,7341,6864,5188,3695,4268,0,90,199,339,450,707,838,1172,1202,1186,1721,3346,3860,3529,4958,4714,6509,11333,14262,20582,20539,21294,21044,27672,33342,41632,48194,53366,41467,38277,23355,24244,15535,13144,11624,11534,14197,9305,7231,3591,798,757,694,496,436,370,185,98,41521,33975,35587,34831,22682,19724,21297,16501,10595,9026,8805,6288,2869,5832,11094,12669,14414,10792,8036,5755,5192,5901,8375,11419,11623,9283,5879,4871,2299,1538,921,526,300,401,567,617,615,520,455,424,548,678,733,673,876,908,800,828,1782,1732,2003,1954,1362,1070,721,354,156,253,275,470,660,595,407,531,0,2,3,5,4,6,6,5,3,5,4,5,5,7,7,7,3,4,3,2,2,2,1,0,0,2,4,7,9,10,10,13,129,133,93,95,95,154,179,166,182,182,132,158,249,177,120,123,129,96,71,66,48,45,43,56,56,43,33,37,34,27,19,24,16,38,65,62,80,69,58,64,86,130,150,216,226,204,274,215,128,123,99,142,136,99,96,62,50,89,102,202,239,196,220,248,106,153,163,175,169,181,179,179,148,114,98,120,123,135,150,151,291,252,199,216,224,235,183,160,173,135,116,124,121,92,64,28,0 +53,480,1000,1318,1844,2339,3687,4108,2900,4020,4674,4911,6303,5186,4291,4876,0,100,178,284,368,682,704,1059,968,1388,1718,2422,2948,2564,3578,3298,6289,9408,12016,12747,20181,20054,19928,19612,32790,38550,30088,35169,31332,28172,16756,19576,13498,13790,10312,10732,9500,7980,5180,2814,669,570,498,396,338,246,151,86,41639,34244,38190,31064,25599,20182,18088,13426,7124,7908,7716,4716,3068,4652,9626,12255,11742,11214,7131,6714,7204,8435,8348,8452,11071,7677,5442,3535,2366,1245,894,417,278,414,424,569,564,495,443,456,532,780,827,760,650,629,667,620,1406,1486,1470,1452,1028,836,762,432,197,203,253,396,390,464,465,472,0,2,5,6,6,7,7,7,5,6,5,7,7,9,8,8,5,6,5,6,6,7,5,6,5,7,7,8,13,15,16,14,95,114,82,94,101,108,136,129,219,178,179,188,230,164,120,138,141,106,66,62,55,60,72,60,77,66,39,46,46,44,30,28,15,32,46,74,68,74,57,67,84,115,176,212,233,268,220,180,115,102,80,114,113,75,64,44,40,88,92,150,199,198,193,230,102,144,115,155,166,143,171,144,176,134,118,106,118,163,198,178,282,236,173,170,247,226,146,139,157,140,149,138,135,98,54,28,4 +58,644,1017,1498,1822,2734,2953,3508,1559,2158,3756,3604,5464,5572,3952,4466,0,113,198,370,385,658,879,998,702,1172,1738,1940,1890,2683,2639,2288,4299,6217,6403,7870,13912,12637,12176,19427,32918,31748,25445,27144,24608,17119,17930,18668,13068,12760,11717,9763,9022,7616,5608,2808,631,529,327,359,205,147,128,109,44831,36320,32953,28373,23176,14138,11788,8933,5960,6020,6675,4436,3412,5662,8089,11109,14029,11904,9196,7438,6822,8053,6611,7255,7146,6954,4611,3108,2122,1291,736,345,300,433,428,522,460,500,443,308,606,548,669,567,543,669,628,512,1578,1857,1653,1454,714,779,599,388,176,189,157,240,303,375,406,477,0,2,4,5,6,7,7,7,4,5,4,6,6,7,7,7,6,7,6,8,8,8,8,10,8,8,9,10,13,17,16,15,62,70,72,88,76,86,84,73,220,200,180,214,168,146,126,122,109,78,70,67,70,67,77,87,92,89,60,77,61,55,46,30,17,27,30,44,61,50,60,92,90,102,153,166,203,168,196,163,70,100,96,142,93,82,47,43,47,76,118,119,109,164,168,188,111,124,104,88,117,135,110,108,146,145,102,105,156,171,186,182,199,181,130,128,227,149,140,162,145,134,135,129,126,111,61,41,6 +60,582,1028,1482,1352,2019,1963,3142,1076,1852,2666,2194,3951,4045,3036,3892,0,129,258,374,509,710,1057,1063,512,864,1086,1418,1531,1545,1868,1576,2726,4572,5050,5570,11028,10500,9404,13522,24504,23349,16749,17640,23816,17768,16815,12606,9510,9632,10311,8196,6206,5115,3862,2442,318,320,218,220,151,134,106,105,46220,38396,29985,28362,17037,11270,9980,7408,5127,5707,5224,4012,4740,4962,7605,10192,7915,8218,8186,6754,7547,7632,8450,9248,6282,5272,4998,2918,2036,1264,1014,498,360,516,624,514,650,575,441,346,508,522,496,501,762,786,790,544,1830,2041,1462,1370,754,692,644,414,158,172,124,210,283,292,333,353,0,2,5,6,5,7,7,7,5,6,5,7,6,7,7,7,6,7,7,10,9,12,12,14,12,10,12,14,17,16,15,17,44,64,61,85,58,84,84,84,189,188,135,150,125,128,100,118,106,76,59,76,98,80,68,83,104,103,76,88,61,70,58,38,14,22,22,36,51,42,48,66,106,120,123,147,139,123,124,130,64,94,107,112,84,70,62,47,43,64,78,101,97,132,156,247,149,128,111,94,101,78,71,94,104,98,82,121,172,148,177,205,261,274,229,182,246,180,170,150,139,124,104,106,120,88,47,29,7 +81,449,691,1114,1494,1519,1817,2536,520,902,1121,1126,1484,1688,2433,2787,0,206,354,422,586,644,840,1142,418,424,577,717,852,540,403,396,1961,3343,5192,6268,8167,8982,11958,14298,14579,13482,12916,11943,15212,15215,15019,13713,9526,8228,5640,4573,2842,2321,1227,1055,125,104,80,99,107,84,68,99,34774,33342,25382,18353,14566,12402,7139,7426,5372,6740,5922,5502,4562,6364,8215,8802,5689,6176,5136,5630,8220,9763,8347,9265,6230,5179,4259,3027,1472,1311,990,542,461,380,360,538,646,610,511,281,611,770,786,927,901,601,452,533,1852,1468,931,1000,832,726,649,379,104,109,128,167,210,271,422,484,0,2,3,4,3,5,4,5,4,6,6,6,4,6,6,6,4,6,6,10,10,12,11,12,12,11,10,12,14,17,17,13,42,62,64,65,58,66,85,74,158,107,100,126,123,119,130,98,66,86,90,104,100,89,92,96,103,102,122,86,88,89,60,36,9,17,24,32,30,36,31,39,94,120,107,96,110,100,124,133,85,101,126,122,108,110,92,60,35,49,72,92,104,181,268,335,156,168,127,86,54,69,78,74,71,114,128,144,168,271,339,349,293,212,213,240,192,193,177,126,123,138,140,131,78,58,39,22,7 +74,320,550,866,1201,1158,1468,1430,477,772,788,984,1174,1366,1636,2608,0,156,248,317,488,552,666,874,262,354,442,484,654,402,288,391,1401,3312,4773,6044,6070,8194,9602,9268,9341,9312,8354,8836,11144,12592,10554,8989,7076,4946,4274,3538,2062,1527,1111,883,180,148,96,117,128,138,128,135,27114,20765,22037,18278,11742,7497,6483,5940,3985,4851,5832,4649,3690,6063,7730,6968,4852,4769,4278,5256,6084,8079,6528,6776,4987,3875,3644,2468,1030,1050,862,568,422,486,395,452,445,576,493,327,576,670,664,816,824,498,347,458,1503,1204,622,742,642,592,416,312,101,91,116,171,188,230,332,363,0,2,4,5,4,6,5,6,5,7,6,7,5,7,6,7,5,7,8,12,10,14,12,14,16,16,14,16,12,16,16,20,37,59,67,56,71,74,69,92,171,136,98,134,143,124,112,96,74,84,108,122,82,111,98,100,122,119,82,88,86,60,56,36,17,22,32,36,29,38,37,52,79,78,72,80,78,86,82,111,86,74,101,87,92,86,66,55,33,54,67,86,98,146,199,244,113,96,116,74,36,46,61,67,50,78,94,124,160,264,346,328,239,233,216,232,200,178,187,138,102,106,98,99,85,74,45,30,16 +73,231,334,401,864,876,942,812,362,575,696,648,972,1080,1262,1470,0,64,126,195,271,392,614,666,221,233,317,405,453,422,292,346,1528,2265,3180,3693,5053,6527,7116,6207,5629,5081,5758,8339,7932,8737,7896,6727,3798,3274,2786,1970,1523,1292,822,582,214,152,156,202,193,199,158,142,14505,14146,11480,10120,5549,4701,4009,3910,3555,3879,3854,3378,3294,5054,5210,4148,2927,3694,3279,3420,5281,4062,3896,3547,2181,1872,1862,1360,878,918,707,396,359,440,422,567,412,326,358,291,624,682,740,647,640,486,370,425,946,684,529,486,545,436,385,317,94,115,98,106,147,225,282,286,0,2,3,4,3,5,4,5,3,5,4,5,3,5,4,5,3,7,8,10,9,12,12,12,18,17,14,16,12,14,18,20,36,44,47,53,60,55,62,87,164,140,106,128,184,150,120,87,77,88,120,124,101,132,133,130,112,101,75,83,72,57,46,32,22,31,36,38,32,42,42,57,48,46,56,45,74,76,72,60,59,65,63,73,52,54,48,33,34,46,70,77,97,113,154,159,116,87,76,63,27,40,50,44,24,44,62,94,162,173,236,350,194,175,208,198,213,174,150,92,92,105,86,74,74,64,63,43,28 +66,126,213,262,512,480,560,488,217,286,326,352,504,570,514,877,0,32,70,109,150,204,323,402,172,220,341,374,414,374,286,276,1011,1550,1813,2160,2130,2618,4111,3870,2476,2474,2772,4582,4733,4306,4143,3396,2181,1682,1178,1066,938,702,397,356,224,196,191,252,272,249,233,188,7907,6752,6402,5690,2836,2720,2329,2082,2090,1998,1791,1708,1605,2648,2994,2272,1734,1845,1874,1532,2607,2060,1708,1978,1138,1012,1131,698,538,550,416,284,337,340,373,428,453,317,345,356,541,614,517,662,736,530,408,386,778,502,316,375,382,324,286,242,88,94,85,105,105,144,128,114,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,8,10,10,15,16,16,18,20,22,22,17,20,21,24,37,34,34,42,52,70,80,90,161,120,99,132,190,156,102,102,101,114,136,116,101,127,108,104,159,105,68,67,49,49,53,41,29,34,30,34,25,38,40,48,38,41,51,46,39,46,40,32,28,38,33,39,27,29,30,26,25,40,50,76,99,104,103,112,87,76,47,46,21,25,28,24,12,26,53,74,124,156,201,258,249,186,198,189,176,140,126,74,63,70,65,56,59,56,50,47,40 +44,36,37,30,13,14,12,10,7,8,8,7,5,5,3,2,0,8,15,24,30,95,138,200,198,233,275,322,264,217,189,241,300,353,298,225,231,203,177,88,26,27,23,24,17,15,11,7,0,44,79,147,183,147,150,202,249,230,226,270,297,312,280,245,222,287,286,216,217,218,243,231,225,201,244,263,204,159,107,78,53,60,57,50,37,33,21,12,0,16,30,46,47,130,187,178,249,222,205,310,361,294,284,379,578,506,402,565,650,452,340,338,357,255,176,162,150,133,132,138,123,85,69,59,40,35,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,11,12,14,18,16,16,17,22,22,17,20,24,28,32,33,30,40,36,72,84,93,103,114,102,125,171,160,126,116,110,114,120,110,97,106,86,109,156,110,61,42,39,42,41,41,31,28,34,27,17,30,33,35,38,29,31,23,18,15,11,7,0,2,4,6,6,12,15,17,18,25,34,48,71,75,77,98,93,57,35,26,11,8,6,4,0,15,29,57,84,98,117,220,258,250,187,186,132,99,66,40,17,26,26,36,34,44,56,43,46 diff --git a/worlds/diamond_world2_iso.jpg b/worlds/diamond_world2_iso.jpg new file mode 100644 index 0000000..15ad13a --- /dev/null +++ b/worlds/diamond_world2_iso.jpg Binary files differ diff --git a/worlds/diamond_world2_topo.jpg b/worlds/diamond_world2_topo.jpg new file mode 100644 index 0000000..67fbe5b --- /dev/null +++ b/worlds/diamond_world2_topo.jpg Binary files differ diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/worlds/diamond_world.csv b/worlds/diamond_world.csv index c978edb..367aea9 100644 --- a/worlds/diamond_world.csv +++ b/worlds/diamond_world.csv @@ -1,1025 +1,1025 @@ -50,25,25,17,25,15,18,15,26,14,15,11,16,10,14,13,23,12,12,8,12,7,9,9,16,9,10,9,15,10,15,15,28,14,14,10,14,9,11,9,16,9,9,7,11,8,11,10,19,10,11,8,13,8,11,10,17,10,12,10,17,11,16,16,31,16,16,11,16,9,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,4,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-18,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-11,-17,-17,-36,-18,-18,-12,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-17,-12,-21,-12,-16,-15,-30,-16,-19,-16,-30,-20,-30,-29,-59,-29,-29,-19,-29,-16,-19,-16,-29,-15,-17,-12,-21,-13,-19,-18,-37,-18,-19,-13,-21,-12,-16,-14,-28,-15,-17,-13,-24,-16,-24,-23,-47,-23,-24,-16,-26,-14,-18,-15,-28,-15,-17,-13,-24,-15,-22,-22,-44,-22,-24,-17,-27,-16,-22,-20,-40,-22,-26,-21,-39,-26,-40,-40,-82,-40,-40,-26,-40,-22,-26,-21,-39,-20,-22,-16,-26,-15,-21,-19,-37,-18,-18,-12,-20,-11,-15,-13,-26,-14,-16,-13,-23,-14,-21,-21,-42,-21,-22,-15,-23,-13,-16,-14,-28,-14,-16,-12,-20,-12,-18,-17,-35,-18,-19,-13,-22,-13,-17,-15,-30,-16,-20,-16,-29,-19,-28,-27,-54,-27,-27,-18,-28,-16,-20,-17,-31,-16,-18,-13,-22,-13,-19,-17,-34,-17,-18,-13,-21,-12,-17,-16,-31,-16,-19,-15,-27,-17,-26,-26,-53,-26,-27,-19,-30,-17,-22,-19,-36,-19,-23,-18,-33,-21,-31,-31,-62,-32,-34,-25,-42,-25,-35,-33,-64,-35,-43,-35,-64,-42,-64,-64,-129,-64,-64,-42,-64,-36,-44,-37,-67,-34,-37,-27,-45,-27,-36,-33,-65,-32,-33,-22,-35,-20,-25,-22,-43,-22,-25,-20,-35,-22,-33,-32,-65,-32,-33,-22,-35,-20,-25,-21,-40,-20,-22,-17,-29,-18,-26,-24,-48,-24,-26,-18,-30,-17,-22,-20,-39,-21,-25,-21,-39,-26,-39,-38,-77,-38,-39,-26,-39,-21,-26,-22,-40,-20,-22,-16,-27,-16,-23,-22,-44,-22,-22,-15,-23,-13,-16,-14,-26,-14,-16,-12,-21,-14,-21,-20,-41,-20,-21,-14,-23,-13,-17,-14,-27,-14,-17,-13,-23,-14,-21,-20,-41,-21,-22,-15,-25,-15,-21,-19,-37,-20,-24,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-24,-20,-38,-19,-21,-15,-26,-15,-21,-19,-38,-19,-19,-13,-22,-13,-17,-16,-31,-16,-19,-15,-27,-17,-25,-24,-49,-24,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-17,-10,-15,-14,-27,-14,-15,-10,-17,-9,-12,-11,-22,-12,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-13,-16,-13,-24,-12,-14,-10,-17,-10,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-8,-9,-7,-13,-8,-13,-13,-27,-13,-13,-9,-15,-8,-10,-8,-15,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,9,8,13,9,14,15,29,15,14,10,14,8,8,7,11,6,7,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,5,4,7,4,4,3,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,5,5,8,5,7,7,12,7,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,13,25,13,14,10,16,10,14,13,24,14,17,15,26,18,26,26,50 -26,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,11/2,10,6,6,9/2,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-9,-15/2,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-41,-20,-20,-25/2,-19,-10,-13,-10,-19,-19/2,-10,-15/2,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-10,-6,-9,-8,-17,-8,-8,-6,-10,-11/2,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-15,-15,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-21,-17,-31,-41/2,-32,-32,-64,-32,-32,-21,-32,-18,-22,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-19/2,-12,-11,-21,-21/2,-12,-19/2,-17,-11,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-19,-19/2,-10,-8,-14,-17/2,-12,-12,-24,-12,-13,-9,-15,-8,-10,-19/2,-19,-10,-12,-10,-19,-12,-19,-37/2,-38,-37/2,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-13/2,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-17,-11,-16,-16,-34,-33/2,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-13,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-9/2,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,7/2,4,4,9,5,4,3,5,3,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25 -26,14,27/2,9,13,8,9,8,13,7,15/2,6,9,6,8,7,11,6,13/2,4,6,4,5,5,9,5,6,5,9,6,9,8,15,8,15/2,6,8,5,6,5,8,5,5,4,7,4,11/2,5,10,6,11/2,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,17/2,6,8,5,11/2,5,8,4,9/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,4,4,5,4,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,4,4,7,4,7/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,1,1,1/2,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-6,-4,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-9,-19/2,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-12,-23/2,-8,-13,-7,-17/2,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-7,-12,-7,-21/2,-10,-20,-10,-25/2,-10,-20,-13,-20,-20,-41,-20,-39/2,-12,-19,-10,-13,-10,-19,-10,-21/2,-8,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-21/2,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-31/2,-15,-31,-16,-17,-12,-21,-12,-35/2,-16,-31,-17,-41/2,-17,-31,-20,-63/2,-32,-65,-32,-32,-21,-32,-18,-43/2,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-10,-25/2,-11,-20,-10,-12,-10,-18,-11,-16,-16,-32,-16,-16,-11,-17,-9,-23/2,-10,-19,-10,-21/2,-8,-15,-9,-25/2,-12,-24,-12,-13,-9,-15,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-12,-37/2,-18,-38,-18,-37/2,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-7,-12,-7,-19/2,-9,-18,-9,-11,-9,-17,-11,-33/2,-16,-35,-17,-33/2,-10,-16,-9,-23/2,-10,-18,-9,-10,-7,-13,-8,-21/2,-10,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,6,4,9/2,4,7,5,15/2,8,15,8,8,6,8,5,5,4,6,4,7/2,3,5,3,7/2,4,6,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,2,2,2,5/2,2,4,3,3,3,5,4,9/2,4,9,5,9/2,3,5,3,4,3,3,2,3,3,4,3,3,3,7,4,9/2,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,11/2,4,5,4,5,4,7,4,9/2,4,7,5,13/2,7,12,7,8,6,9,6,15/2,7,13,8,9,8,13,9,13,13,25 -18,10,10,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,7/2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-7/2,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-9/2,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-9,-9/2,-5,-4,-9,-5,-8,-8,-18,-17/2,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-11/2,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-12,-11,-20,-11,-13,-11,-20,-13,-21,-21,-43,-21,-21,-14,-21,-23/2,-14,-12,-22,-11,-12,-8,-14,-8,-11,-21/2,-21,-10,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-21,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-11/2,-10,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-11/2,-11,-7,-10,-10,-23,-11,-10,-6,-10,-6,-8,-6,-12,-6,-6,-4,-8,-9/2,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-9/2,-7,-7,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,5/2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,4,5/2,3,2,2,2,2,2,3,2,2,2,5,3,3,3,4,5/2,3,3,4,5/2,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,5,8,5,5,4,6,4,5,5,9,11/2,6,11/2,9,6,9,9,17 -26,13,13,9,25/2,7,8,7,13,7,8,6,17/2,5,6,6,11,6,6,5,7,5,6,5,10,6,6,6,19/2,6,9,9,14,8,8,6,17/2,6,7,6,8,5,5,4,7,5,6,5,11,6,6,4,13/2,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,15/2,4,5,4,7,4,4,3,9/2,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,11/2,4,6,5,9,5,5,4,11/2,4,4,3,5,3,4,4,11/2,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,3/2,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-6,-13,-7,-8,-6,-19/2,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-25/2,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-23/2,-7,-11,-11,-20,-10,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-39/2,-13,-20,-20,-41,-20,-20,-13,-39/2,-10,-12,-10,-20,-10,-10,-7,-12,-7,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-23/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-17,-8,-9,-6,-19/2,-6,-8,-7,-14,-7,-8,-7,-27/2,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-14,-14,-10,-31/2,-9,-12,-10,-19,-10,-12,-9,-33/2,-10,-16,-15,-31,-16,-17,-12,-43/2,-13,-18,-17,-31,-17,-20,-17,-63/2,-21,-32,-32,-65,-32,-32,-21,-65/2,-18,-22,-18,-33,-17,-18,-13,-43/2,-13,-18,-17,-32,-16,-16,-11,-17,-9,-12,-11,-20,-10,-12,-10,-18,-11,-17,-17,-32,-16,-16,-10,-33/2,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-12,-10,-39/2,-12,-19,-18,-39,-19,-19,-12,-19,-10,-13,-10,-20,-10,-11,-8,-27/2,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-16,-35,-17,-17,-11,-33/2,-9,-11,-10,-18,-9,-10,-7,-25/2,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-12,-12,-22,-10,-10,-7,-23/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-10,-5,-6,-6,-23/2,-8,-12,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,3,3,3,2,2,2,4,3,4,4,6,4,4,4,7,6,9,9,16,8,8,6,15/2,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,3,3,5,3,4,3,7/2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,5/2,2,2,2,4,3,4,3,5,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,7/2,2,3,3,7,4,5,4,5,3,4,4,5,3,3,3,9/2,3,4,5,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,24 -15,8,8,11/2,8,9/2,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,7/2,6,4,4,4,6,4,6,11/2,8,5,5,4,5,7/2,4,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22,-10,-10,-13/2,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-9,-11/2,-9,-8,-17,-8,-9,-13/2,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-35/2,-18,-23/2,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,7/2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,11/2,8,15/2,14 -18,10,19/2,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,9/2,4,6,4,4,4,7,4,4,4,6,4,13/2,6,10,5,5,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,3,2,3,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-5,-4,-9,-4,-5,-4,-10,-6,-19/2,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-13/2,-4,-6,-3,-9/2,-4,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-7,-6,-13,-6,-13/2,-4,-8,-4,-6,-5,-14,-6,-6,-4,-8,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-9,-9,-6,-10,-6,-15/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-10,-21,-10,-11,-8,-14,-8,-12,-11,-20,-11,-27/2,-11,-21,-14,-21,-21,-43,-21,-43/2,-14,-22,-12,-29/2,-12,-22,-11,-12,-8,-14,-8,-11,-11,-21,-10,-11,-7,-12,-6,-15/2,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-9,-5,-15/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-12,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-15/2,-5,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-3,-8,-4,-5,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-12,-6,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-13/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3,3,2,2,3/2,2,3,2,3,3,4,3,3,3,6,5,7,7,11,6,5,4,5,3,4,4,5,3,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,4,2,5/2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,10,6,17/2,8,16 -15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,11/2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-15/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-4,-4,-3,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-18,-18,-12,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-6,-5,-10,-6,-9,-9,-18,-8,-8,-11/2,-10,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-4,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-9/2,-9,-4,-5,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,7/2,5,4,5,5,8,5,6,5,8,5,7,7,13 -27,14,14,9,12,7,8,7,12,7,7,6,9,5,6,6,12,7,7,5,8,5,6,6,19/2,6,6,6,10,7,9,9,14,7,7,5,7,5,6,6,19/2,5,5,4,6,4,5,4,12,7,7,5,8,5,5,4,15/2,4,5,4,7,5,8,8,16,8,8,6,8,5,5,4,13/2,4,4,3,5,3,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,11/2,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-28,-14,-14,-9,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-20,-10,-11,-8,-14,-8,-11,-10,-21,-11,-14,-11,-20,-13,-20,-20,-38,-18,-18,-12,-18,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-10,-9,-21,-10,-11,-7,-11,-6,-8,-7,-27/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-18,-9,-9,-6,-10,-6,-8,-7,-29/2,-8,-9,-7,-12,-8,-12,-12,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-15,-8,-11,-10,-20,-10,-12,-9,-17,-11,-17,-17,-33,-16,-17,-12,-20,-12,-17,-16,-65/2,-18,-22,-18,-32,-21,-32,-32,-67,-33,-34,-22,-34,-18,-22,-18,-67/2,-16,-17,-12,-20,-12,-17,-16,-30,-15,-15,-10,-17,-10,-13,-11,-43/2,-12,-14,-11,-20,-13,-19,-18,-33,-16,-16,-10,-16,-9,-11,-10,-39/2,-10,-11,-8,-15,-9,-13,-12,-26,-13,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-19,-12,-19,-19,-40,-20,-20,-13,-20,-11,-13,-11,-21,-11,-12,-9,-16,-9,-13,-12,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-8,-15,-10,-15,-15,-34,-16,-16,-10,-16,-9,-11,-9,-17,-9,-10,-7,-13,-8,-12,-11,-20,-10,-10,-7,-11,-6,-9,-8,-15,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-22,-10,-10,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-9,-6,-9,-8,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,2,2,2,2,3,2,3,3,11/2,4,5,5,8,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,2,7/2,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,12,7,7,5,8,5,5,4,15/2,4,5,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 -15,8,8,5,7,4,5,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,6,4,4,5/2,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-11/2,-7,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-11/2,-11,-5,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,7,5,7,7,12 -16,9,9,6,7,4,5,5,8,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,3,3,6,4,4,3,6,4,11/2,6,8,4,9/2,3,5,3,7/2,3,5,3,3,3,4,3,7/2,3,7,4,4,3,5,3,3,3,4,3,3,3,5,4,5,5,9,5,6,4,5,3,4,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,6,4,7/2,2,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-5,-11,-6,-13/2,-4,-8,-5,-9,-9,-18,-9,-19/2,-6,-10,-6,-9,-9,-18,-10,-23/2,-9,-17,-11,-17,-17,-37,-18,-18,-12,-18,-10,-23/2,-10,-17,-8,-17/2,-6,-11,-6,-9,-8,-17,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-7,-6,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-12,-6,-6,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,1,1,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,9/2,5,9,5,11/2,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,7,4,5,4,6,4,7/2,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,7,5,7,7,13 -12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,5,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-13/2,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,10 -18,9,9,6,19/2,6,7,6,10,6,6,4,13/2,4,5,5,8,4,4,4,11/2,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,6,4,6,5,12,7,7,5,13/2,4,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-9,-9,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-13,-6,-7,-4,-15/2,-4,-4,-3,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-19/2,-5,-7,-7,-15,-8,-10,-8,-29/2,-9,-14,-13,-24,-12,-12,-8,-23/2,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-12,-5,-5,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-9,-9,-6,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-21,-10,-11,-8,-13,-8,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-45,-22,-22,-14,-43/2,-12,-14,-12,-20,-10,-11,-8,-25/2,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-13,-8,-12,-11,-20,-10,-10,-7,-12,-6,-8,-7,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-27/2,-8,-13,-13,-26,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-8,-6,-12,-6,-7,-5,-10,-6,-8,-8,-13,-6,-6,-4,-6,-3,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,4,11/2,4,6,6,11,6,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,8,5,5,4,13/2,4,4,4,5,3,4,4,11/2,4,6,5,9,5,6,4,13/2,4,5,5,8,5,5,5,8,6,8,8,15 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9 -15,8,17/2,6,8,5,6,5,8,4,9/2,4,6,4,4,4,7,4,9/2,4,4,3,7/2,3,6,4,9/2,4,5,4,5,6,10,6,11/2,4,5,3,4,4,5,3,7/2,3,4,3,3,3,6,4,7/2,2,3,2,5/2,3,4,3,7/2,3,5,4,9/2,4,10,5,5,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-4,-8,-4,-13/2,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-5,-11,-5,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-7,-11,-11,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-9/2,-2,-5,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-7,-7,-17,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-13/2,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-7,-10,-9,-18,-10,-23/2,-10,-18,-12,-18,-18,-36,-17,-17,-11,-18,-10,-23/2,-9,-17,-8,-9,-6,-11,-6,-19/2,-9,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-10,-10,-16,-8,-8,-5,-10,-5,-13/2,-6,-11,-5,-6,-4,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-10,-6,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-11/2,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-13/2,-6,-11,-5,-6,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,5,4,5,5,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,4,3,7/2,4,7,4,9/2,4,6,3,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,5,7,7,12 -15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,4,5,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-7/2,-7,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-33,-16,-16,-10,-16,-17/2,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-10,-9,-15,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-10,-13/2,-10,-10,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,9/2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11 -28,15,15,11,16,9,11,9,16,8,8,6,8,5,6,6,23/2,7,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,4,15/2,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,17,9,8,6,8,5,5,4,6,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-6,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-25/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-37/2,-9,-10,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-12,-12,-20,-10,-10,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-10,-41/2,-10,-11,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-20,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-10,-10,-41/2,-10,-10,-7,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-11,-9,-16,-10,-16,-16,-65/2,-16,-17,-12,-20,-12,-17,-16,-32,-17,-21,-18,-33,-22,-34,-34,-65,-32,-32,-21,-32,-17,-21,-18,-33,-17,-18,-13,-23,-13,-18,-17,-67/2,-16,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-19,-12,-18,-18,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-12,-26,-13,-14,-10,-17,-9,-12,-11,-22,-12,-15,-12,-22,-14,-22,-21,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-14,-8,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-10,-41/2,-10,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-9,-6,-9,-9,-9,-4,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,9,6,7,7,9,5,4,3,3,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,9,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,6,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,13,8,9,7,11,7,10,10,20 -15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,4,7,4,4,7/2,5,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,3,5/2,4,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-10,-17/2,-16,-11,-17,-17,-32,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-21/2,-18,-9,-9,-6,-9,-9/2,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-5,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-5,-5/2,-4,-5/2,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11 -15,8,17/2,6,8,5,13/2,6,8,5,5,4,5,3,4,4,6,4,9/2,4,6,4,5,4,7,4,9/2,4,5,4,11/2,6,10,5,5,4,6,4,4,3,4,3,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,7/2,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,4,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-6,-17/2,-8,-17,-9,-11,-9,-17,-11,-35/2,-18,-33,-16,-33/2,-10,-16,-8,-10,-8,-16,-8,-9,-7,-11,-6,-19/2,-9,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-7,-5,-9,-5,-13/2,-6,-10,-5,-13/2,-6,-11,-7,-11,-11,-18,-9,-9,-6,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-3,-5,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-5,-9,-5,-6,-5,-9,-4,-5,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,1,3,2,3,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,10,5,5,4,6,4,7/2,3,5,3,3,3,4,3,4,4,7,4,7/2,3,4,3,7/2,4,6,4,4,3,5,3,4,4,5,3,2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,6,6,11 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-15/2,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-4,-7/2,-7,-4,-7,-7,-12,-11/2,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8 -16,8,8,6,19/2,6,6,5,9,5,5,4,6,4,4,4,6,4,4,4,11/2,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,4,3,5,3,2,2,5/2,2,2,3,5,3,4,3,7/2,3,4,4,7,4,4,3,9/2,3,4,3,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,5/2,2,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,1,2,2,2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-23/2,-7,-11,-11,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-7,-7,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-5,-19/2,-6,-10,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-36,-18,-18,-12,-35/2,-10,-12,-10,-18,-9,-10,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-21/2,-6,-7,-6,-11,-5,-6,-5,-19/2,-6,-10,-10,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-12,-19,-9,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-3,-4,-4,-11,-5,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,3/2,1,0,0,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,1,1,6,4,4,2,5/2,2,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,5,4,13/2,5,7,7,12 -10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-4,-7/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,7 -13,7,7,5,7,4,5,4,7,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,3,2,3,2,5,3,5/2,2,3,2,2,2,4,3,3,3,3,2,7/2,4,4,3,3,2,3,2,2,2,1,1,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,3,2,5/2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-8,-5,-15/2,-7,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-15/2,-5,-9,-5,-7,-7,-15,-8,-19/2,-8,-14,-9,-15,-15,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,3,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,7/2,3,4,3,7/2,4,7,4,3,2,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5/2,3,5,3,5/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,3,3,2,2,2,3,2,3,3,4,3,7/2,3,5,4,5,5,8 -12,7,7,5,7,4,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,4,4,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,3/2,2,3/2,2,3/2,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -22,11,11,8,11,7,8,6,10,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,3,2,2,1,1,1,0,0,1/2,1,2,2,3,3,4,4,6,3,3,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,3,2,2,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-8,-6,-12,-8,-12,-12,-29,-14,-14,-9,-14,-8,-10,-8,-29/2,-7,-7,-5,-9,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-6,-11,-7,-12,-12,-23,-12,-13,-9,-16,-9,-13,-12,-51/2,-14,-16,-13,-25,-17,-26,-26,-43,-21,-22,-14,-22,-12,-15,-12,-47/2,-12,-12,-8,-14,-8,-12,-11,-25,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-11,-6,-9,-8,-15,-8,-10,-8,-16,-10,-15,-15,-24,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,1,1,1,2,3,2,3,2,3,2,3,2,3,2,3,2,-1,0,0,1,1,1,2,2,3/2,1,0,0,0,0,0,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,13/2,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,15/2,4,5,4,6,4,6,5,8,5,5,4,5,3,3,3,9/2,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,2,2,2,2,7/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,7,13 -13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-5/2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-12,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,4,5/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,11/2,4,6,4,4,3,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,7/2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,5/2,2,2,2,3/2,2,5,3,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,3/2,2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1/2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,1,1,1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-13/2,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-15,-10,-16,-16,-26,-13,-13,-9,-13,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-6,-9,-9,-13,-6,-6,-4,-7,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,3/2,2,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,3,4,3,7/2,3,5,3,7/2,3,5,4,5,5,10,6,11/2,4,6,4,7/2,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,5,3,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,4,4,8 -12,6,6,9/2,6,4,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-11/2,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-5/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,9/2,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6 -20,11,11,7,10,6,6,5,7,4,4,3,7/2,2,3,3,7,4,5,4,6,4,4,4,6,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,3,4,3,3,3,9/2,4,5,5,4,3,3,2,3,2,2,2,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-14,-11,-41/2,-13,-20,-21,-38,-19,-19,-12,-37/2,-10,-12,-10,-18,-9,-10,-7,-13,-7,-10,-10,-21,-10,-10,-6,-21/2,-6,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-18,-8,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,3,2,2,2,7/2,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,6,6,14,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,4,11/2,4,5,5,10 -13,7,7,5,6,4,4,4,5,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,2,3,2,2,2,3,3,4,7/2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-8,-13,-13,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-4,-8,-5,-8,-8,-11,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 -18,9,9,6,8,5,6,5,7,4,4,3,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,4,9/2,3,5,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,3,3,2,3,3,3,2,5/2,2,4,3,9/2,4,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,3/2,2,1,1,3/2,1,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-17/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-13,-20,-20,-35,-17,-17,-11,-16,-8,-21/2,-9,-17,-8,-9,-7,-12,-7,-19/2,-9,-19,-9,-19/2,-6,-10,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-12,-12,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,4,3,5,3,4,4,7,4,9/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,4,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,3/2,2,2,1,1,1,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,4,3,4,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,2,2,2,2,5/2,3,4,3,7/2,3,5,4,5,5,9 -17,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-8,-17/2,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-35,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-11/2,-11,-6,-8,-6,-12,-8,-12,-12,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,5/2,4,3,3,3,5,4,5,5,8 -33,17,16,11,16,9,10,8,14,8,8,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,7,7,25/2,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,7,5,7,7,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,3,11/2,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-25,-12,-11,-7,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-27,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-13,-7,-9,-8,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-46,-23,-23,-15,-23,-13,-16,-13,-25,-13,-14,-10,-18,-11,-15,-14,-28,-14,-14,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-14,-13,-51/2,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-31,-15,-15,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-9,-7,-13,-9,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-17,-34,-18,-20,-15,-25,-15,-21,-20,-40,-22,-26,-21,-39,-26,-40,-40,-70,-34,-34,-22,-34,-18,-22,-19,-35,-18,-19,-13,-22,-13,-18,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-13,-15,-12,-22,-14,-21,-20,-40,-20,-20,-13,-20,-11,-14,-12,-23,-12,-13,-10,-18,-11,-16,-15,-30,-15,-16,-11,-19,-11,-16,-14,-28,-15,-18,-15,-27,-17,-25,-25,-32,-15,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-10,-8,-16,-11,-17,-17,-36,-17,-17,-11,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,6,6,12,7,8,7,11,8,11,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,31/2,8,8,5,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,5,7,7,14 -17,9,8,6,9,5,6,9/2,8,4,4,7/2,5,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,3/2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-12,-11/2,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-10,-7,-12,-7,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-35,-17,-17,-11,-17,-9,-11,-9,-17,-17/2,-9,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-6,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,6,4,4,4,6,4,6,11/2,12,6,6,4,6,4,4,4,6,7/2,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,7 -16,8,8,6,9,5,11/2,4,8,4,9/2,4,5,4,5,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,5/2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,7/2,4,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3/2,2,1,1,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-5,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-3,-5,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-4,-8,-5,-8,-8,-16,-8,-19/2,-7,-12,-7,-10,-10,-19,-10,-13,-10,-20,-13,-39/2,-20,-36,-17,-17,-11,-17,-9,-23/2,-10,-18,-9,-9,-6,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-15/2,-6,-10,-6,-9,-9,-20,-10,-19/2,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-15/2,-5,-10,-5,-7,-6,-13,-7,-8,-7,-12,-8,-12,-12,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-2,0,1/2,0,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,3,2,3,4,6,4,9/2,4,6,4,11/2,5,12,6,13/2,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,9/2,4,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1,1,6,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,3,3,4,4,7 -11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,4,5/2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-2,-1/2,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,5/2,3,2,2,2,2,2,3,3,4,3,3,5/2,4,3,4,7/2,8,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,5/2,4,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -16,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,2,1,1,0,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-9/2,-2,-4,-5,-14,-7,-7,-4,-13/2,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-4,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-8,-7,-23,-11,-12,-8,-23/2,-6,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-11/2,-3,-4,-4,-6,-3,-3,-2,-11/2,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-7,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-8,-5,-8,-8,-17,-9,-10,-7,-12,-7,-11,-10,-19,-10,-12,-10,-20,-13,-20,-20,-37,-18,-18,-12,-37/2,-10,-12,-10,-18,-9,-9,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-10,-5,-6,-5,-12,-6,-7,-5,-10,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-7,-5,-10,-6,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-14,-7,-9,-7,-25/2,-8,-12,-12,-18,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,-1,-4,-1,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,5,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,3,4,3,4,4,11,6,6,4,11/2,4,4,4,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,2,5/2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,1,3/2,2,2,2,6,4,4,3,3,2,3,3,4,3,3,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,3,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,8 -9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -11,6,6,4,5,3,4,3,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-16,-8,-15/2,-4,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-8,-5,-7,-6,-13,-7,-17/2,-7,-13,-8,-13,-13,-24,-12,-12,-8,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-11/2,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-11/2,-6,-11,-5,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,1,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,5/2,3,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,5,3,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-11,-6,-7,-6,-10,-5,-5,-7/2,-7,-4,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4 -18,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,4,3,4,3,4,4,11/2,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,1,1,1,1,2,2,2,2,7/2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-7,-6,-26,-13,-13,-8,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-9,-6,-10,-10,-15,-7,-7,-4,-7,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-7,-7,-19,-10,-11,-8,-13,-8,-11,-10,-21,-11,-14,-12,-23,-15,-22,-22,-38,-19,-19,-12,-18,-10,-13,-11,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-9,-14,-8,-10,-8,-31/2,-8,-8,-6,-12,-7,-9,-9,-18,-9,-9,-6,-11,-6,-8,-6,-25/2,-6,-8,-7,-13,-8,-13,-13,-21,-10,-9,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-9/2,-5,-7/2,-7,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1/2,0,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3 -11,6,11/2,4,6,4,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-13,-13,-21,-10,-21/2,-6,-10,-5,-7,-6,-12,-6,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-7,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,0,0,1/2,0,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,2,3,2,3,2,2,2,5/2,3,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3 -9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-16,-15/2,-8,-9/2,-7,-7/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-5/2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2 -15,8,7,5,7,4,5,4,6,3,3,3,4,3,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-33/2,-10,-16,-16,-27,-13,-12,-8,-25/2,-7,-9,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-17/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-18,-8,-8,-5,-7,-3,-4,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,1,2,2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,7/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,5/2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -13,7,13/2,5,7,4,5,4,5,3,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-15,-7,-7,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-7,-5,-8,-5,-7,-7,-13,-7,-9,-8,-14,-9,-14,-15,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-15/2,-7,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,6,4,7/2,3,4,2,5/2,2,4,3,7/2,3,5,3,4,4,6,4,7/2,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,5/2,2,4,3,3,3,3,3,4,4,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4 -13,7,6,5,7,4,4,3,5,3,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-11/2,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-13/2,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-7/2,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,3/2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,6,4,4,3,4,5/2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -24,12,12,8,12,7,8,7,11,6,6,4,5,3,4,4,11/2,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,9/2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,1,1,1,1,1,1,2,1,1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-29,-14,-14,-9,-15,-8,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-45/2,-12,-13,-9,-16,-9,-13,-13,-26,-14,-17,-15,-28,-19,-29,-29,-46,-22,-22,-15,-23,-12,-15,-13,-24,-12,-14,-10,-18,-11,-15,-14,-55/2,-13,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-10,-15,-15,-33,-16,-15,-10,-15,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-23,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-16,-30,-14,-14,-8,-12,-6,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,11,6,7,5,8,5,6,6,10,6,6,4,6,4,6,6,21/2,6,6,4,5,3,4,4,7,4,5,4,5,3,4,3,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,17/2,5,5,4,6,4,5,4,6,3,3,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,13,7,7,6,9,5,6,5,9,5,6,4,6,4,4,4,11/2,4,4,3,3,2,2,2,2,2,2,2,4,3,4,4,6 -13,7,7,5,7,4,5,4,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-13/2,-6,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-11/2,-11,-11/2,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -13,7,7,5,7,4,5,4,6,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-3/2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-13/2,-7,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-13/2,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-26,-13,-13,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-6,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,1,1,3/2,1,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,7/2,4,6,3,3,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,2,2,5/2,2,4,3,4,3,6,4,4,3,4,3,7/2,3,3,2,2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,9/2,3,5,3,4,3,5,3,7/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3 -10,5,5,4,5,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1/2,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-5/2,-4,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-9/2,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -16,9,9,6,8,5,5,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,7/2,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-3,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-17,-8,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-8,-31/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-21/2,-6,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-10,-19,-9,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,2,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,1,2,1,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,4,3,4,3,9/2,3,4,4,6,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,9/2,3,4,3,3,2,3,2,7/2,2,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,4,3,9/2,3,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3 -10,11/2,6,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -12,6,13/2,4,6,4,4,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,2,2,3/2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-6,-15/2,-6,-12,-8,-12,-12,-25,-12,-25/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,1,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,7,4,7/2,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-11/2,-7,-6,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -21,11,11,7,10,6,7,5,8,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,9/2,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,0,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,3,2,2,2,7/2,2,3,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-18,-9,-9,-5,-8,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-21,-14,-22,-22,-44,-22,-22,-14,-22,-12,-14,-12,-43/2,-11,-12,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-9,-13,-13,-22,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-21,-10,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,11/2,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,3 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-7,-4,-6,-13/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-5,-4,-8,-9/2,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-11,-5,-6,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2 -13,7,13/2,4,7,4,9/2,4,6,4,7/2,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-27/2,-14,-29,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-15/2,-8,-16,-8,-17/2,-6,-9,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-13/2,-5,-9,-5,-8,-8,-14,-6,-13/2,-4,-6,-3,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-14,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,0,0,1/2,0,4,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,6,4,7/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,5/2,3,6,4,7/2,3,3,2,2,2,3,2,2,2,2,2,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1 -11,6,6,4,6,7/2,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-21/2,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-11/2,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1 -18,9,9,6,17/2,5,6,5,7,4,4,3,9/2,3,3,3,6,4,4,2,5/2,2,2,2,4,2,2,1,1,1,1,0,1,1,1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,9/2,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-10,-4,-4,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-5,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-7,-12,-7,-11,-10,-18,-10,-12,-10,-39/2,-13,-20,-20,-43,-21,-20,-13,-20,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-10,-21,-10,-11,-7,-23/2,-6,-9,-8,-13,-7,-8,-6,-25/2,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-12,-6,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-21/2,-5,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,5,3,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,3,2,3,2,7/2,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-28,-27/2,-13,-17/2,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-14,-13/2,-7,-4,-7,-4,-5,-9/2,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-7/2,-5,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,5/2,4,5/2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1 -17,9,9,6,9,5,11/2,4,7,4,4,3,4,3,7/2,3,5,3,3,2,2,2,3/2,2,3,2,1,1,1,1,1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,3,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-5,-3,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-7,-4,-9/2,-4,-10,-5,-13/2,-5,-10,-6,-19/2,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-39/2,-20,-43,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-14,-8,-21/2,-10,-21,-10,-10,-6,-11,-6,-8,-7,-13,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,6,4,7/2,3,3,2,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,4,4,7,4,9/2,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,3,2,7/2,4,8,4,9/2,3,4,2,2,2,2,2,3/2,2,2,1,1,1,3,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1/2,0,0 -17,9,9,6,9,5,6,9/2,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,4,3,3,3,5,7/2,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-4,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-11/2,-16,-15/2,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-42,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-13,-15/2,-10,-10,-21,-10,-10,-6,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1/2,0 -32,17,17,12,17,10,12,10,18,10,10,8,12,7,9,8,15,8,9,7,10,6,8,7,12,6,6,5,7,5,6,6,12,6,6,4,5,3,3,3,4,2,2,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,3,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,4,4,6,3,3,2,2,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-6,-9,-9,-18,-9,-9,-7,-12,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-7,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-33,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-16,-16,-69/2,-17,-17,-11,-18,-9,-11,-9,-16,-8,-9,-7,-12,-7,-11,-10,-21,-10,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-11,-21,-11,-14,-11,-20,-13,-19,-19,-38,-19,-21,-16,-27,-16,-22,-21,-41,-22,-26,-21,-39,-26,-40,-40,-85,-42,-42,-28,-42,-23,-27,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-16,-14,-26,-14,-16,-13,-23,-15,-22,-22,-44,-21,-21,-14,-21,-11,-14,-12,-23,-12,-13,-10,-18,-11,-17,-17,-34,-17,-17,-12,-20,-11,-15,-13,-24,-13,-15,-13,-24,-15,-23,-22,-91/2,-22,-22,-14,-22,-12,-14,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-40,-20,-20,-13,-20,-11,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-41/2,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,4,6,4,5,5,8,5,7,7,25/2,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1 -16,9,9,6,9,6,7,6,10,6,6,9/2,7,4,5,9/2,8,9/2,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-15/2,-13,-7,-10,-10,-20,-11,-13,-10,-19,-25/2,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-10,-15/2,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-7,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-19,-9,-10,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,5/2,3,2,3,2,3,3,5,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,9,9,6,9,6,7,6,10,6,11/2,4,7,4,9/2,4,8,4,9/2,4,6,4,4,4,6,4,4,3,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,4,3,7/2,3,5,4,9/2,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-6,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-9,-19,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-39/2,-20,-42,-20,-41/2,-13,-21,-11,-27/2,-11,-21,-10,-21/2,-8,-13,-8,-11,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-22,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-15/2,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-11,-6,-7,-6,-10,-5,-11/2,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-19,-9,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,7,4,7/2,2,4,3,3,3,4,2,5/2,2,4,3,7/2,3,4,2,5/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,5/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0 -11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-28,-27/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-8,-5,-7,-6,-14,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,8,8,6,9,6,7,6,9,5,5,4,6,4,4,4,10,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,3,7,4,4,3,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-6,-19/2,-5,-6,-5,-11,-6,-7,-6,-21/2,-6,-9,-9,-20,-10,-10,-7,-25/2,-8,-11,-10,-19,-10,-12,-10,-20,-13,-21,-21,-43,-21,-20,-13,-41/2,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-12,-6,-8,-6,-11,-7,-11,-11,-23,-11,-10,-6,-21/2,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-12,-6,-7,-6,-21/2,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-11/2,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,7,4,4,3,7/2,2,3,3,4,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,2,2,3,3,4,3,5,5,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,1,2,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1/2,1,1,1,0 -10,5,5,4,5,7/2,4,4,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0 -12,6,13/2,5,6,4,9/2,4,6,4,4,3,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-27/2,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-7/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,5,3,3,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,-1 -10,11/2,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-7/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1 -17,9,8,6,8,5,5,5,8,5,5,3,4,3,3,3,10,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,2,3,3,4,4,8,5,5,3,4,2,2,2,7/2,2,2,2,2,1,1,0,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-5,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-10,-11,-8,-14,-8,-12,-10,-41/2,-11,-13,-11,-21,-13,-20,-20,-45,-22,-22,-14,-22,-12,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-25,-12,-13,-8,-13,-7,-9,-8,-29/2,-7,-8,-6,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-8,-6,-11,-7,-11,-11,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3/2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,4,3,5,5,8,4,4,3,4,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-5/2,0,0,0,0,0,-1,-1,-3 -9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-13/2,-10,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -10,5,5,3,4,3,3,3,5,3,3,2,3,2,5/2,2,6,4,7/2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-3/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-7,-11,-11,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-3,-5,-3,-11/2,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,0,1,1,1,1,1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,1,1,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,3,3,2,3,2,3/2,2,2,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -11,6,5,4,5,3,4,3,5,3,2,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,1,1,0,0,1/2,0,0,1,3,2,2,2,5/2,2,3,3,4,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-13,-6,-6,-4,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-10,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-32,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-17/2,-4,-6,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-6,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,3/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3/2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-2 -7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-5,-5,-10,-9/2,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -8,4,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,4,2,5/2,2,2,2,5/2,2,3,2,2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-23/2,-12,-27,-13,-13,-8,-13,-7,-17/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-7,-13/2,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-7,-4,-15/2,-7,-17,-8,-15/2,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,5,3,5/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,-1,0,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2 -7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-10,-21/2,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-16,-7,-7,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,0,0,1/2,1,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,1/2,0,1/2,0,1/2,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -13,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,6,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-18,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-11,-8,-15,-9,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-51,-25,-26,-17,-26,-14,-17,-13,-24,-12,-13,-10,-18,-11,-15,-14,-28,-13,-13,-9,-14,-8,-11,-10,-19,-9,-10,-8,-14,-9,-13,-13,-31,-15,-15,-10,-15,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-10,-43/2,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-31,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-5,-8,-4,-6,-6,-27/2,-6,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,11/2,4,4,3,4,3,3,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,1,1,1,1,1,1,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3 -7,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-11/2,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1 -6,3,3,3,4,3,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1/2,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-10,-5,-5,-3,-4,-2,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-13/2,-6,-11,-7,-21/2,-10,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-13/2,-6,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,5,3,5/2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,0,1,3/2,2,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1 -4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,3,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,3/2,2,3/2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1 -6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,1,4,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-18,-9,-9,-6,-17/2,-4,-6,-5,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,4,3,3,2,5/2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,5,3,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1/2,1,2,2,0,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,1,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-16,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1/2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-17/2,-9,-21,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,1,0,0,1/2,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,2,1,1/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-19,-9,-8,-5,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,0,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-7/2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,-1,1,1,1,0,-1,0,-1,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,-7,-3,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-16,-7,-7,-4,-6,-3,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-2,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-6,-25/2,-6,-8,-7,-14,-9,-15,-15,-36,-18,-18,-11,-17,-9,-11,-10,-37/2,-9,-9,-6,-10,-6,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-2,-11,-5,-5,-4,-7,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,1,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4 -3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-19,-9,-9,-11/2,-9,-5,-6,-5,-10,-9/2,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,3,3,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-8,-5,-9,-9,-22,-10,-21/2,-6,-11,-6,-7,-6,-12,-6,-11/2,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-14,-6,-13/2,-4,-7,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,0,0,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,-3,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-7/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-7,-12,-5,-5,-3,-11/2,-3,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-13,-6,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-3,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-10,-5,-6,-5,-21/2,-7,-12,-12,-31,-15,-15,-10,-31/2,-8,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-12,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,-1,0,0,0,-3/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,7,4,4,3,4,3,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,8,5,5,3,4,3,3,3,3,2,3,2,7/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,2,2,3/2,2,2,1,0,1,1,1,3/2,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-7/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-20,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-4,-6,-5/2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-13/2,-7,-13,-6,-5,-3,-6,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-7,-4,-6,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-31,-15,-15,-10,-16,-8,-21/2,-9,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-4,-11/2,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,6,4,7/2,3,4,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,8,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,5/2,2,3,2,7/2,3,5,3,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3 -4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-3,-6,-3,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-4,-3,-7,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-30,-15,-15,-10,-15,-8,-10,-17/2,-16,-8,-8,-6,-10,-6,-8,-15/2,-16,-8,-8,-5,-9,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-17,-8,-8,-11/2,-9,-9/2,-6,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-7/2,-5,-9/2,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3 -8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-2,-4,-4,-17/2,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-26,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-24,-11,-11,-7,-12,-6,-7,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-5,-10,-6,-10,-10,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-16,-13,-23,-15,-23,-23,-61,-30,-30,-20,-30,-16,-19,-15,-28,-14,-15,-11,-19,-11,-15,-14,-28,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-10,-11,-8,-13,-8,-11,-10,-19,-10,-12,-10,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-22,-10,-10,-6,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,1,0,0,12,7,7,5,8,5,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,4,13/2,4,4,3,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,5,3,3,3,4,3,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 -5,3,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-13/2,-8,-6,-11,-7,-11,-11,-30,-15,-15,-10,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3 -5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-5,-6,-2,-5/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-15/2,-6,-12,-8,-23/2,-11,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-9,-9,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-9,-6,-19/2,-10,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,3/2,1,1,1,1/2,0,7,4,4,3,5,3,4,3,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3/2,2,3/2,2,2,1,1,2,1,1,1,0,0,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,0,1,1,1,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-5/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-10,-5,-5,-3,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-13,-13,-34,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-17,-8,-8,-5,-17/2,-4,-5,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-4,-2,-9/2,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,8,4,4,3,5,3,3,3,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,0,1,1,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,9/2,3,3,2,4,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,3,6,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,0,0,0,0,1/2,1,2,2,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,2,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -2,1,1,1,2,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-4,-9,-6,-9,-9,-25,-12,-12,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-6,-4,-13/2,-7,-12,-6,-6,-4,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,7,4,7/2,3,4,3,3,2,4,2,2,2,1,1,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,1,1,2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,2,4,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,0,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-9,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-4,-6,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-7,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-41,-20,-20,-13,-20,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-9,-8,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-15,-7,-8,-6,-10,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-10,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,12,6,6,4,5,3,4,4,11/2,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,7/2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,9/2,3,3,3,4,3,4,4,5,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-7 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,3/2,2,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,2,2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 -2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-6,-3,-3,-2,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3,-3,-5,-2,-3,-2,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-11,-5,-9/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,1,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 -2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1/2,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-17/2,-8,-11/2,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,6,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,0,0,0,1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-19/2,-5,-7,-7,-16,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,5,3,3,2,7/2,2,3,2,5,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,2,2,3,3,5,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5 -1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-3,-2,-3,-1,-1,-1/2,-2,-1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-5/2,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 -1,1,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-4,-4,-9,-4,-11/2,-4,-8,-4,-6,-6,-11,-6,-7,-6,-10,-7,-11,-11,-28,-14,-14,-9,-14,-8,-19/2,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-8,-7,-15,-7,-7,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,1,1,1,9,5,11/2,4,6,4,7/2,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1/2,1,2,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4 -1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-11/2,-11,-6,-7,-6,-10,-7,-11,-10,-27,-13,-13,-17/2,-13,-7,-9,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4 -0,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-13,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-21,-55,-27,-28,-18,-28,-15,-18,-15,-28,-14,-14,-10,-17,-10,-14,-14,-55/2,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-14,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-39/2,-10,-10,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-30,-15,-15,-9,-14,-7,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,16,8,8,6,8,5,7,6,11,6,6,5,7,5,6,5,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,11/2,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,3,4,2,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-9/2,-2,-2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-9 -0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-21/2,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4 -0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-23/2,-12,-30,-15,-15,-9,-15,-8,-9,-7,-15,-7,-7,-5,-9,-5,-15/2,-7,-14,-6,-13/2,-4,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,5,3,4,4,5,3,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3 -0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-5,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2 --2,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-10,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-5,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-7,-4,-15/2,-4,-6,-5,-12,-6,-8,-7,-13,-9,-14,-14,-35,-17,-17,-11,-35/2,-9,-11,-9,-16,-8,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,11,6,6,4,6,4,5,4,6,4,4,4,11/2,4,4,4,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-1,-1,-3 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1 --2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-4,-3,-5,-5,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-7,-6,-12,-8,-12,-12,-29,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-8,-5,-8,-7,-15,-7,-15/2,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,9,5,11/2,4,6,4,4,4,6,4,7/2,3,5,4,9/2,4,7,4,4,3,3,2,3,3,4,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-9/2,-5,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-28,-27/2,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,5/2,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-19,-9,-8,-5,-8,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-22,-15,-23,-23,-55,-27,-26,-17,-26,-14,-17,-14,-51/2,-12,-13,-9,-16,-10,-15,-14,-26,-13,-13,-9,-14,-8,-11,-10,-37/2,-9,-10,-8,-14,-9,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-12,-7,-9,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,3,16,9,9,6,8,5,6,6,19/2,6,6,4,6,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-6,-11/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-30,-29/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-9,-5,-8,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-11/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-17/2,-7,-14,-9,-15,-15,-36,-18,-35/2,-11,-16,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-8,-17,-8,-17/2,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-8,-4,-11/2,-5,-10,-5,-13/2,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,2,2,3/2,2,0,1,3/2,2,2,2,2,2,11,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,5,4,5,3,4,3,4,3,4,4,5,4,11/2,5,7,4,9/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,3,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2 --4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-29,-14,-14,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,3/2,2,2,2,2,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,7/2,5,9/2,7,4,4,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 --8,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-7,-3,-4,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-19,-9,-9,-6,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-9,-6,-10,-10,-20,-9,-9,-6,-9,-5,-6,-4,-10,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-12,-6,-8,-6,-11,-7,-10,-10,-18,-9,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-14,-21,-22,-53,-26,-26,-17,-51/2,-14,-16,-13,-26,-13,-13,-9,-16,-9,-13,-12,-27,-13,-14,-9,-27/2,-8,-10,-9,-18,-9,-10,-8,-15,-9,-14,-14,-31,-15,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-8,-17,-8,-9,-6,-21/2,-6,-8,-7,-16,-8,-10,-8,-27/2,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,3/2,1,1,1,0,1,1,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,12,6,6,4,6,4,5,5,6,4,5,4,15/2,6,8,7,12,7,7,5,6,4,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,3,7,4,4,4,13/2,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,9/2,3,4,3,5,3,3,2,7/2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1/2,1,1,1,3,2,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4 --5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-13/2,-13,-7,-9,-7,-14,-9,-14,-14,-35,-17,-17,-11,-17,-9,-10,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-19/2,-10,-6,-10,-5,-7,-11/2,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-7/2,-5,-4,-10,-5,-6,-9/2,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-7,-4,-13/2,-7,-14,-7,-7,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-6,-9,-9,-20,-9,-9,-6,-10,-5,-11/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-10,-5,-6,-5,-10,-6,-19/2,-9,-18,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-43/2,-22,-52,-25,-25,-16,-26,-14,-16,-13,-25,-12,-27/2,-10,-16,-10,-27/2,-13,-26,-13,-27/2,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,3,17,9,9,6,9,6,7,6,10,6,13/2,5,7,5,6,6,12,6,13/2,4,6,4,5,5,6,4,5,4,6,5,7,7,12,6,13/2,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,9/2,4,7,4,9/2,4,6,4,6,6,10,6,13/2,5,6,4,4,3,5,3,7/2,3,4,3,7/2,3,6,3,3,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-9/2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-22,-22,-51,-25,-25,-16,-26,-14,-16,-13,-25,-12,-13,-19/2,-16,-10,-14,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-17/2,-18,-17/2,-9,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-8,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-10,-9/2,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3 --17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-15,-10,-15,-15,-61/2,-15,-16,-10,-16,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-19,-12,-19,-20,-39,-19,-18,-12,-18,-10,-12,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-30,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-11,-18,-10,-14,-13,-25,-13,-15,-12,-21,-13,-20,-19,-39,-20,-22,-16,-28,-17,-23,-22,-44,-24,-30,-25,-45,-30,-45,-45,-103,-51,-50,-33,-50,-27,-33,-28,-51,-26,-29,-21,-35,-21,-29,-28,-55,-27,-28,-19,-29,-17,-22,-19,-37,-19,-22,-17,-30,-19,-27,-26,-52,-26,-26,-17,-27,-15,-18,-15,-29,-15,-16,-11,-19,-11,-16,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,4,5,33,17,18,12,18,11,13,11,19,10,10,8,12,8,11,10,19,10,10,7,11,7,8,8,14,8,9,7,11,7,10,10,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,3,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-5,-9/2,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-19/2,-10,-15/2,-13,-8,-11,-10,-22,-12,-14,-12,-22,-14,-22,-22,-51,-25,-25,-16,-25,-13,-16,-27/2,-25,-25/2,-14,-10,-17,-10,-14,-27/2,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-9,-13,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-13/2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,17,9,10,7,10,6,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4 --8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-4,-7,-4,-15/2,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-8,-4,-5,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-15/2,-5,-8,-4,-13/2,-6,-11,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-22,-12,-29/2,-12,-22,-14,-43/2,-22,-51,-25,-25,-16,-25,-14,-33/2,-14,-25,-12,-27/2,-10,-18,-10,-29/2,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-10,-8,-15,-9,-27/2,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-3,-5,-5,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,18,10,19/2,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,5,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,7/2,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-5,-3,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-9/2,-8,-9/2,-6,-6,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-34,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-12,-13/2,-9,-9,-18,-17/2,-9,-6,-10,-5,-6,-11/2,-12,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,12,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3 --8,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-1,0,-3,-1,-1,0,0,0,0,0,2,1,1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-9,-5,-6,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-51,-25,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-35/2,-10,-15,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-15,-9,-14,-13,-25,-12,-13,-8,-13,-7,-8,-7,-14,-7,-7,-5,-19/2,-5,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,2,1,1,2,2,5/2,2,3,3,18,10,10,7,21/2,6,8,7,11,6,7,5,7,4,5,5,10,6,6,4,13/2,4,5,5,6,4,4,4,11/2,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,4,4,6,4,4,3,7/2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5 --4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-7/2,-6,-5,-12,-6,-7,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-8,-5,-8,-4,-5,-9/2,-9,-5,-6,-4,-8,-5,-7,-7,-14,-13/2,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,-1/2,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,1,1,2,2,2,2,2,2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2 --5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-9,-7,-14,-9,-14,-14,-35,-17,-33/2,-11,-17,-9,-23/2,-10,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,3,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,7/2,4,4,3,3,3,4,3,3,3,8,4,9/2,3,4,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3 --4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-29,-14,-14,-9,-14,-8,-10,-8,-14,-7,-8,-11/2,-10,-6,-8,-7,-16,-15/2,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-9/2,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,5/2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3 --8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-2,-3,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-20,-13,-20,-21,-54,-27,-27,-17,-26,-14,-18,-15,-55/2,-14,-15,-11,-19,-11,-15,-14,-29,-14,-14,-9,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-13,-27,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,18,10,10,7,11,6,7,6,11,6,6,4,6,4,5,5,10,6,6,4,6,4,4,4,13/2,4,4,3,5,4,5,5,11,6,6,4,4,3,3,3,4,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,2,2,2,2,5/2,2,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-27,-13,-14,-17/2,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-13/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,2,3,2,2,2,3,2,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 --4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-11,-29,-14,-29/2,-9,-14,-8,-19/2,-8,-14,-7,-7,-5,-10,-6,-15/2,-7,-15,-7,-7,-4,-7,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,2,2,2,2,3,2,5/2,2,10,6,6,4,7,4,9/2,4,7,4,4,3,4,3,4,3,6,4,7/2,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,7/2,2,3,2,2,2,3,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-3 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1/2,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-2 --6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-4,-2,-3,-2,-11/2,-4,-7,-7,-9,-4,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-2,0,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,0,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-7,-5,-17/2,-5,-7,-6,-11,-6,-8,-6,-25/2,-8,-12,-13,-36,-17,-17,-11,-17,-9,-11,-9,-18,-9,-9,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,2,1,1,1,2,2,3,3,12,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,9,5,5,3,7/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-4 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,7,4,4,3,5,3,4,3,5,3,3,5/2,4,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2 --4,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-8,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-10,-30,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3 --4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-19/2,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 --8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-22,-10,-10,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-55,-27,-27,-18,-28,-15,-18,-15,-28,-14,-15,-11,-18,-11,-15,-14,-53/2,-13,-13,-9,-14,-8,-10,-9,-17,-9,-11,-8,-15,-9,-13,-13,-23,-11,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-9,-5,-8,-7,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,21/2,6,5,4,5,3,4,4,6,3,3,2,3,3,4,4,12,6,6,4,5,3,3,3,4,3,3,2,2,1,1,0,-3/2,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-28,-13,-13,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,7/2,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,2,2,2,1,2,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-3,-1,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-12,-6,-11/2,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,3,2,5/2,2,2,2,2,2,8,4,9/2,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,7,4,4,3,3,2,5/2,2,2,2,3/2,1,2,1,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2 --2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,3,2,2,2,2,2,2,2,7,4,4,4,11/2,4,4,3,5,3,3,3,4,3,4,4,8,4,4,3,7/2,2,3,2,4,2,2,2,5/2,2,2,2,8,5,5,4,9/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-3 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,5,3,3,5/2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 -0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,1,1,1/2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,0,0,-1/2,-1,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,6,4,4,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,5,3,7/2,3,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,-1,-3 -0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3 --1,0,0,1,1,1,1,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,0,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-2,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-7,-9,-7,-14,-9,-14,-13,-41,-20,-21,-14,-21,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-7,-11,-10,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,1,8,5,5,3,4,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,0,1,1,1,0,0,0,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 -0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,1/2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-21/2,-11,-7,-11,-6,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,3/2,2,3/2,2,1,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 -0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,1,1,0,0,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,-1,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-25,-12,-25/2,-8,-13,-7,-8,-6,-13,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,3/2,1,5,3,5/2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-2,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 -0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,2,2,2,1,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,4,3,3,2,2,1,1,0,1,1,0,0,1/2,0,0,1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-5,-11,-7,-11,-10,-37,-18,-17,-11,-17,-9,-11,-9,-18,-9,-10,-7,-13,-7,-10,-10,-18,-9,-9,-6,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,5,3,3,3,9/2,3,3,3,5,3,3,2,3,2,3,3,7,4,3,2,3,2,2,2,4,2,2,1,1,1,1,1,4,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,2,2,5/2,2,2,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-8 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-24,-11,-11,-7,-11,-11/2,-7,-11/2,-11,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5 -0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,1,2,2,3/2,2,4,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-6,-5,-10,-6,-9,-9,-35,-17,-17,-11,-16,-8,-21/2,-8,-16,-8,-9,-7,-12,-7,-19/2,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-9,-5,-8,-8,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-13,-6,-11/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-3,-5,-5,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1/2,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,1,1,1,1,3/2,2,3,2,3/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-7 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-34,-33/2,-16,-21/2,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,2,3/2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --2,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,9/2,2,2,2,2,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-7,-7,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-19,-12,-18,-18,-69,-34,-33,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-13,-18,-17,-34,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-9,-16,-10,-16,-16,-63/2,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-26,-12,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-13,-13,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-35/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-8,-3,-3,-2,-3,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-9/2,-6,-9/2,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -0,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,-1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-2,-3,-2,-7/2,-4,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-19/2,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-8,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-6,-6,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,4,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1/2,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,-1,-2,-2,-6,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,2,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5 -1,1,2,2,3/2,2,2,1,2,2,2,2,3/2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,2,5/2,2,3,3,4,2,2,2,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,2,3,2,1,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,3,2,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-6,-3,-3,-2,-5/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-6,-5,-19/2,-6,-10,-10,-34,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-8,-8,-16,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-14,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,2,1,1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8 -1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,3/2,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 -1,1,3/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,0,1,3/2,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,3,2,3/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-5,-2,-7/2,-3,-7,-4,-6,-6,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,2,2,3,2,3,2,2,2,2,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,0,-2,-1,-2,-2,2,2,3/2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6 -1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-3/2,-4,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,3/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,3,4,4,4,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,1,1,3/2,2,2,1,1,0,-1,-1,2,1,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,-2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,3/2,1,1,1,0,0,0,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3/2,2,2,2,2,1,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-36,-17,-17,-11,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,1/2,0,0,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 -0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,1,2,1,1,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,2,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,4,2,5/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,1,1,3/2,2,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 --2,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,0,1,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,1,0,-1/2,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,2,2,-2,0,0,0,-1,0,0,1,2,1,1,1,3/2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,1,1,-5,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-4,-15/2,-4,-7,-7,-27,-13,-12,-8,-25/2,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-5,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,3/2,1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,1,1,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8 --1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-16,-15/2,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 --1,0,0,1,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-13/2,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,0,0,1/2,0,1,1,1/2,1,2,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,3/2,1,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-5/2,-2,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7 --1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,1/2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-22,-10,-10,-7,-11,-11/2,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-2,-4,-3,-5,-4,-11,-5,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,1,1,1,1,1/2,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7 --3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,5,3,4,4,6,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,1,3/2,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-19/2,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-44,-22,-22,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-22,-10,-10,-6,-9,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-21/2,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-8,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 --1,0,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-3/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-22,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 --2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-1,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,1,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,1,1,1,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,-2,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-4,-3/2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,2,2,2,3/2,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,2,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,1,0,0,1,1,0,0,-1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-27,-13,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-4,-15/2,-5,-8,-7,0,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-8,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-16,-7,-7,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,0,1,3/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-13/2,-6,-22,-10,-21/2,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,3/2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-20,-19/2,-10,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-3,-7 --4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,1,1,1,1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-22,-11,-11,-7,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-5,-10,-7,-11,-11,-38,-19,-19,-13,-20,-10,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-7,-6,-21/2,-5,-6,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,7/2,2,3,3,4,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-12,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-20,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 --2,0,-1/2,0,-1,0,1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,5/2,3,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,-1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-13/2,-7,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-13/2,-5,-9,-5,-13/2,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,2,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7 --5,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,1,1,1,1,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,3,2,2,1,1/2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-23,-11,-10,-6,-10,-5,-7,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-5,-21/2,-6,-10,-10,-37,-18,-18,-12,-35/2,-9,-11,-9,-18,-9,-10,-7,-25/2,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-10,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,7/2,3,4,3,5,3,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,2,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 --3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-13/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-3/2,0,-2,-1,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-35/2,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-19/2,-9,-18,-9,-19/2,-6,-10,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-9,-20,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,7/2,2,3,2,7/2,4,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1/2,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1/2,-2,-1,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-6,-10,-5,-6,-11/2,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,4,5/2,3,2,3,3,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 --10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-7,-7,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-5,-10,-6,-9,-9,-37/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-45,-22,-22,-14,-21,-11,-13,-10,-19,-9,-10,-7,-11,-7,-10,-9,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-9,-8,-15,-8,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-16,-9,-12,-10,-20,-11,-14,-11,-21,-14,-21,-21,-74,-37,-37,-24,-37,-20,-25,-21,-38,-19,-20,-14,-24,-14,-20,-19,-37,-18,-19,-13,-20,-11,-14,-12,-24,-13,-15,-12,-22,-14,-21,-21,-42,-21,-21,-13,-20,-11,-13,-10,-19,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-33,-16,-15,-10,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-10,-8,-16,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-9,-15,-8,-11,-10,-19,-10,-13,-11,-21,-14,-21,-21,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-1,0,0,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-12,-25 --4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-37,-18,-18,-12,-18,-10,-12,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-17/2,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-15/2,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-13/2,-10,-10,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-22,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-7,-4,-11/2,-5,-9,-5,-6,-5,-10,-6,-10,-10,-38,-18,-18,-12,-18,-10,-12,-10,-19,-9,-19/2,-7,-12,-7,-10,-9,-18,-8,-17/2,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-4,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-10,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3,3,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,0,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,1,1,1,0,1,2,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-11/2,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-13/2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 --3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-22,-10,-10,-7,-11,-5,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-4,-5,-5,-8,-4,-5,-5,-10,-6,-10,-10,-39,-19,-19,-12,-35/2,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-9,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-5,-4,-10,-5,-7,-6,-11,-7,-11,-11,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-5/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-4,-6,-6,0,0,0,1,3/2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6 --2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-16,-7,-7,-4,-7,-3,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,1,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8 --1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1/2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-13,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,0,0,1/2,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-25,-12,-12,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-42,-20,-20,-13,-20,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,-2,-1,-1,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,0,0,0,0,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-5,-5,-11 --1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-3/2,-2,-2,0,0,0,0,0,0,0,0,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,-3,-1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-14,-6,-13/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6 --1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4 --2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,0,0,0,1,3/2,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-1,0,-1,0,-3/2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1/2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-13,-8,-25/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,-1,0,0,0,1/2,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,2,1,1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-16,-7,-7,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-11,-6,-7,-6,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,-1,0,0,1,0,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-7 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-4,-4,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,-1,-2,-2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,3/2,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-3,-1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,-1,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-30,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-48,-24,-24,-16,-24,-13,-15,-12,-23,-11,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-5,-9,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,7/2,2,2,1,0,1,1,1,0,1,1,1,2,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-1,0,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-16 --3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-24,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-3/2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8 --4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,3,2,1,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-5/2,-2,-1,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-5,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-25,-12,-25/2,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-11/2,-4,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-7,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,1,1,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-7/2,-4,-8 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-9/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-28,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-19/2,-6,-8,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,-1,0,0,0,-1,0,1,1,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,1,1,1,1,3/2,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,1,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1/2,0,-1,-1,-1,-1,-2,-2,-7/2,-2,-4,-4,-9 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,1/2,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,-1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,2,2,2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-13,-6,-6,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-9/2,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,3/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5 --9,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,0,-1,3,2,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-6,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-21,-10,-10,-6,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-37,-18,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,0,0,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1/2,0,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --5,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-13,-6,-11/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-9/2,-4,-23,-11,-11,-7,-11,-6,-15/2,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-11/2,-5,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,0,1,0,-1/2,0,-3,-1,-1,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-4,-3,3,2,2,2,5/2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-6,-18,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-14,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-34,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-6,-23/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-5,-8,-8,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-8,-8,-11,-5,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,0,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7 --4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,-1/2,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-22,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-5,-5,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 --7,-3,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-17,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-17/2,-8,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,0,1,2,2,3/2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,-3/2,-1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-5/2,-2,-6 --6,-5/2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-10,-9/2,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-15/2,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6 --13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-3,-3,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-36,-17,-17,-11,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-17,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-17,-17,-11,-17,-9,-11,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-66,-32,-32,-21,-33,-18,-21,-17,-31,-16,-17,-12,-20,-12,-17,-16,-32,-16,-16,-11,-17,-9,-12,-10,-20,-11,-13,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-33,-16,-15,-10,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-45/2,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-12,-19,-19,-27,-13,-14,-9,-15,-8,-10,-8,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-3,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 --6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,2,2,2,2,2,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-10,-16,-8,-10,-8,-15,-15/2,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-15/2,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-13,-6,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7 --6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-34,-16,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-17/2,-9,-14,-7,-7,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-3,-4,-5/2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-23,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,3,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,2,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,0,0,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-1,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-5,-20,-9,-9,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-6,-36,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-17,-8,-8,-5,-8,-4,-6,-5,-7,-3,-4,-3,-11/2,-3,-4,-3,-10,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-14,-7,-7,-4,-15/2,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-8 --3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 --5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,4,2,2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-5,-3,-4,-4,-26,-13,-13,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 --4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,0,0,-1,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,1,1,1/2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-25,-12,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-5,-43,-21,-20,-13,-20,-11,-13,-11,-20,-10,-11,-7,-12,-7,-10,-10,-19,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-4,-11,-5,-5,-4,-7,-4,-6,-5,-19/2,-5,-6,-5,-9,-6,-10,-10,-20,-9,-9,-6,-9,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-5,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,1,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-23,-11,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-11,-5,-11/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3 --9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,1,1,1,1,0,0,5,3,3,2,7/2,2,3,3,5,3,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-37,-18,-18,-12,-18,-9,-11,-9,-17,-8,-8,-6,-21/2,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,1,1,-1,0,0,0,-1/2,0,0,1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,-3,-1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6 --6,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-9/2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-23,-11,-11,-7,-11,-6,-7,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4 --9,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-3,-5,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-15/2,-7,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-4,-4,-34,-16,-16,-10,-17,-9,-11,-9,-16,-8,-17/2,-6,-9,-5,-7,-7,-15,-7,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-17/2,-8,-19,-9,-9,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6 --8,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-33,-16,-16,-10,-16,-17/2,-10,-8,-15,-15/2,-8,-11/2,-9,-5,-7,-7,-14,-13/2,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-13/2,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-7 --17,-8,-8,-5,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,13/2,4,4,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-8,-8,-31/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-39/2,-10,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-15,-14,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-18,-12,-18,-18,-36,-18,-18,-12,-18,-10,-12,-9,-17,-9,-10,-7,-12,-7,-9,-8,-33/2,-8,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-67,-33,-32,-21,-32,-18,-22,-18,-33,-16,-17,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-19,-12,-17,-17,-36,-18,-18,-12,-19,-10,-12,-10,-18,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-11,-25,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-21/2,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-9,-7,-14,-9,-14,-13,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-7,-3,-2,-1,-1,0,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-15 --8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-12,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-34,-33/2,-16,-21/2,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,3,2,2,2,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-4,-8,-5,-15/2,-8,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-36,-18,-35/2,-12,-17,-9,-11,-9,-18,-9,-19/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-8 --7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-11/2,-6,-7/2,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-26,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --13,-6,-5,-3,-9/2,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-23,-11,-12,-8,-23/2,-6,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-16,-7,-7,-4,-15/2,-4,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-42,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-12,-8,-27/2,-8,-11,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-24,-12,-12,-8,-12,-6,-8,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8 --8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-14,-13/2,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-9,-4,-4,-5/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --11,-5,-9/2,-2,-4,-2,-2,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-4,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7 --10,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-19/2,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-18,-17/2,-8,-5,-8,-4,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --19,-9,-8,-5,-8,-4,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-7,-8,-6,-12,-8,-13,-13,-30,-15,-15,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-17,-8,-9,-6,-10,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-8,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-21,-10,-11,-8,-13,-7,-10,-9,-37/2,-10,-12,-10,-19,-12,-19,-19,-36,-18,-18,-11,-17,-9,-10,-8,-33/2,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-9,-24,-11,-11,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-10,-10,-64,-31,-31,-21,-32,-17,-20,-17,-63/2,-16,-16,-11,-19,-11,-16,-15,-29,-14,-15,-10,-17,-9,-12,-10,-39/2,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-16,-9,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-13,-13,-29,-14,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-12 --10,-9/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-9/2,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-15/2,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,2,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-20,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-8,-7,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-11,-6,-7,-6,-10,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-42,-20,-41/2,-13,-21,-11,-13,-11,-20,-10,-10,-7,-12,-7,-21/2,-10,-20,-9,-9,-6,-11,-6,-8,-6,-12,-6,-15/2,-6,-12,-7,-10,-10,-21,-10,-21/2,-6,-10,-5,-13/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,1/2,1,0,0,1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8 --9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-34,-16,-16,-21/2,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-17/2,-5,-8,-9,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-17/2,-5,-8,-8,-15,-7,-8,-6,-19/2,-6,-8,-8,-14,-7,-9,-7,-14,-9,-14,-14,-30,-14,-14,-9,-29/2,-8,-9,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-9,-5,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-16,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-13,-13,-9,-14,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-11,-8,-27/2,-8,-11,-10,-18,-9,-11,-9,-35/2,-12,-18,-18,-38,-19,-19,-12,-18,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-16,-8,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-23/2,-8,-12,-12,-25,-12,-12,-8,-23/2,-6,-7,-6,-13,-6,-7,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-10,-61,-30,-30,-20,-61/2,-16,-20,-17,-30,-15,-16,-12,-39/2,-12,-16,-15,-30,-15,-15,-10,-33/2,-9,-11,-10,-20,-10,-12,-9,-33/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-18,-9,-10,-7,-25/2,-7,-10,-9,-17,-8,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-7,-6,-11,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-25/2,-8,-13,-13,-29,-14,-14,-9,-27/2,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,1,1,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-11 --11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-11/2,-14,-6,-6,-4,-7,-7/2,-5,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-5,-8,-9,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-40,-20,-20,-13,-20,-21/2,-13,-11,-20,-10,-10,-15/2,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-12,-6,-11/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-19/2,-8,-15,-10,-15,-15,-31,-15,-29/2,-9,-14,-8,-19/2,-8,-15,-7,-15/2,-6,-9,-5,-15/2,-7,-15,-7,-8,-5,-9,-5,-13/2,-6,-11,-5,-6,-5,-9,-6,-17/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-27/2,-14,-28,-13,-13,-9,-15,-8,-19/2,-8,-16,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-10,-6,-9,-9,-17,-8,-17/2,-6,-9,-5,-7,-6,-13,-6,-15/2,-6,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-23/2,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-17/2,-6,-10,-5,-7,-7,-13,-6,-15/2,-6,-11,-7,-21/2,-10,-23,-11,-11,-7,-12,-6,-15/2,-6,-10,-5,-6,-4,-8,-4,-13/2,-6,-14,-6,-6,-4,-8,-5,-7,-6,-13,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-25/2,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-8,-8,-15,-7,-15/2,-5,-9,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-59/2,-20,-30,-16,-20,-17,-31,-16,-33/2,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-23/2,-10,-20,-10,-23/2,-9,-16,-10,-31/2,-15,-31,-15,-16,-10,-16,-8,-21/2,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-18,-9,-19/2,-6,-10,-5,-13/2,-6,-13,-7,-8,-6,-10,-6,-19/2,-10,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-13/2,-6,-12,-6,-13/2,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-15/2,-9,-8,-15,-7,-8,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-6,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-11,-8,-13,-15/2,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-12,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-7,-7,-13,-7,-8,-6,-11,-7,-11,-11,-23,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-9/2,-7,-6,-14,-13/2,-7,-9/2,-8,-5,-7,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-11,-11/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-30,-20,-30,-16,-20,-17,-31,-31/2,-16,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-16,-10,-16,-15,-31,-15,-15,-10,-16,-8,-10,-9,-17,-17/2,-9,-7,-12,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-5,-7,-7,-15,-8,-9,-7,-13,-8,-13,-13,-27,-14,-15,-11,-19,-11,-16,-15,-29,-16,-20,-17,-32,-21,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-13,-22,-13,-18,-17,-33,-16,-17,-12,-19,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-37,-18,-18,-12,-20,-11,-13,-11,-20,-10,-12,-10,-18,-11,-16,-15,-31,-15,-16,-12,-20,-12,-16,-15,-29,-16,-20,-16,-30,-20,-30,-30,-61,-30,-30,-19,-29,-16,-19,-16,-29,-15,-16,-11,-18,-11,-15,-14,-28,-14,-14,-10,-17,-10,-13,-11,-22,-11,-13,-10,-19,-12,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-8,-15,-9,-14,-13,-27,-14,-15,-11,-19,-11,-15,-14,-29,-16,-20,-16,-30,-20,-30,-31,-127/2,-31,-30,-20,-30,-16,-18,-15,-27,-13,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-11,-7,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-18,-9,-10,-7,-12,-7,-11,-11,-23,-12,-15,-12,-21,-14,-22,-22,-122,-60,-60,-40,-61,-33,-40,-34,-62,-32,-34,-24,-40,-24,-34,-32,-63,-32,-33,-22,-35,-20,-25,-22,-41,-22,-25,-20,-36,-23,-35,-34,-68,-34,-34,-22,-33,-18,-22,-19,-35,-18,-20,-15,-25,-16,-23,-22,-44,-22,-24,-17,-27,-16,-21,-18,-35,-19,-22,-18,-34,-22,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-17,-11,-18,-10,-14,-13,-26,-14,-16,-13,-23,-14,-21,-20,-41,-20,-20,-14,-22,-12,-15,-13,-24,-13,-15,-12,-21,-13,-18,-18,-36,-18,-19,-14,-23,-14,-20,-19,-38,-21,-25,-21,-39,-26,-40,-40,-81,-40,-41,-27,-41,-23,-28,-23,-42,-21,-22,-16,-26,-16,-22,-20,-39,-19,-20,-14,-24,-14,-18,-16,-31,-16,-19,-15,-26,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-24,-12,-14,-11,-19,-12,-17,-16,-33,-16,-17,-12,-21,-12,-15,-14,-27,-14,-16,-12,-22,-14,-22,-22,-44,-22,-22,-15,-23,-12,-15,-13,-24,-12,-13,-9,-16,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,4,7,4,3,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --17,-8,-8,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-8,-10,-8,-14,-9,-14,-14,-30,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-8,-15,-19/2,-14,-15,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-11/2,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-17,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-15/2,-11,-10,-22,-11,-12,-8,-13,-7,-10,-17/2,-17,-9,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-13/2,-10,-11/2,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-11,-13/2,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-40,-20,-20,-13,-20,-11,-13,-11,-20,-10,-10,-15/2,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-7,-12,-6,-8,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-19/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-8,-5,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-8,-4,-11/2,-4,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-15/2,-6,-10,-6,-15/2,-7,-14,-8,-19/2,-8,-14,-9,-29/2,-14,-30,-15,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-5,-4,-9,-4,-11/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-9,-8,-15,-10,-29/2,-14,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,3,2,3,2,3,3,4,4,7,4,7/2,3,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,2,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-33/2,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-23/2,-9,-17,-11,-33/2,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-8,-23/2,-10,-22,-11,-12,-8,-13,-7,-19/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-19/2,-6,-10,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-19/2,-9,-19,-10,-13,-10,-19,-12,-39/2,-20,-41,-20,-20,-13,-20,-11,-13,-11,-20,-10,-21/2,-8,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-17/2,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-23/2,-7,-12,-6,-15/2,-6,-11,-6,-13/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-21/2,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-12 --11,-5,-5,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-40,-19,-19,-13,-20,-21/2,-13,-11,-20,-10,-11,-15/2,-13,-15/2,-10,-19/2,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-11/2,-7,-6,-12,-11/2,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-12,-6,-6,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-9/2,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-4,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7 --17,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-10,-8,-31/2,-10,-15,-15,-32,-15,-15,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-9,-9,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-14,-9,-15,-15,-32,-16,-16,-10,-29/2,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-13,-6,-6,-4,-15/2,-4,-5,-5,-11,-6,-7,-5,-19/2,-6,-8,-7,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-7,-7,-13,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-32,-16,-16,-10,-29/2,-8,-9,-7,-14,-7,-7,-5,-17/2,-5,-7,-6,-14,-7,-7,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,4,2,2,2,7/2,3,4,4,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-5,-21/2,-6,-10,-10,-60,-30,-30,-20,-59/2,-16,-20,-17,-31,-15,-16,-12,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-12,-9,-16,-10,-16,-16,-33,-16,-16,-10,-33/2,-9,-11,-10,-19,-9,-10,-7,-25/2,-8,-11,-11,-21,-11,-12,-8,-27/2,-7,-9,-8,-18,-9,-11,-8,-31/2,-10,-14,-14,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-23/2,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-6,-21/2,-6,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-41,-20,-20,-13,-41/2,-11,-14,-11,-21,-11,-12,-8,-14,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-25/2,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-6,-21/2,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,5/2,2,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,1,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,1,2,2,2,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3/2,1,0,0,2,2,2,2,3/2,2,2,2,3,2,1,1,1,1,0,0,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11 --9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,1/2,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-6,-11,-11/2,-6,-4,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-15/2,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-6,-6,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-4,-13/2,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-6,-4,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,1,-2,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-40,-19,-19,-12,-19,-10,-13,-11,-20,-10,-11,-8,-14,-8,-21/2,-10,-20,-10,-10,-6,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-21/2,-7,-11,-6,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-13/2,-5,-10,-6,-19/2,-9,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-6,-4,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-8,-4,-5,-4,-6,-4,-6,-6,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-13/2,-6,-12,-6,-17/2,-7,-13,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,4,3,3,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,2,2,2,2,1,1,1/2,1,1,1,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8 --9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-17/2,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-16,-33,-16,-16,-10,-16,-9,-11,-9,-18,-9,-10,-7,-11,-7,-10,-9,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-32,-16,-16,-10,-15,-8,-10,-8,-31/2,-8,-8,-6,-10,-5,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-21/2,-5,-6,-5,-10,-6,-9,-8,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-11,-5,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-34,-17,-17,-11,-16,-8,-10,-8,-29/2,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,3/2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,3,4,4,8,4,4,3,5,3,2,2,5/2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-6,-12,-7,-11,-11,-59,-29,-30,-20,-30,-17,-21,-17,-32,-16,-16,-11,-19,-11,-15,-14,-29,-14,-15,-10,-16,-9,-12,-10,-19,-10,-11,-8,-15,-10,-15,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-9,-10,-7,-13,-8,-11,-10,-22,-11,-11,-7,-12,-7,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-11,-9,-33/2,-8,-8,-6,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-12,-6,-8,-7,-29/2,-7,-8,-6,-11,-7,-10,-10,-17,-9,-10,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-18,-12,-19,-19,-41,-20,-20,-13,-20,-11,-14,-12,-45/2,-11,-12,-9,-15,-8,-11,-10,-18,-9,-10,-7,-12,-6,-8,-7,-29/2,-8,-9,-7,-14,-9,-13,-12,-24,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-3,-1,0,1,1,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,1/2,1,1,1,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-21,-10,-10,-6,-10,-5,-7,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,3/2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-4,-2,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-13/2,-7,-19,-9,-19/2,-6,-9,-4,-11/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,3,5,3,7/2,3,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-5,-10,-6,-21/2,-10,-22,-10,-21/2,-6,-11,-6,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,2,2,1,1,2,2,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,4,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-7 --6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-5/2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-14,-7,-7,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-24,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-9/2,-8,-15/2,-16,-15/2,-8,-9/2,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --10,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-20,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-7,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-15,-7,-7,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-23/2,-6,-7,-5,-11,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,-1,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-4,-5,-4,-15/2,-4,-7,-7,-41,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-11,-8,-25/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-11,-7,-11,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-7,-5,-17/2,-4,-6,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-12,-8,-25/2,-7,-9,-7,-16,-8,-8,-6,-10,-5,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,0,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,3/2,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,1,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-6,-7/2,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-25,-12,-12,-15/2,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-7/2,-7,-5,-8,-8,-16,-15/2,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-4,-11/2,-4,-9,-4,-7/2,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-21,-10,-9,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3,3,6,3,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3,3,0,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-35,-17,-16,-10,-17,-9,-11,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-7,-11,-11,-22,-11,-11,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3/2,1,2,1,1/2,0,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,1,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-14,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-32,-31/2,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-4,-3,-6,-4,-6,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 --15,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-16,-10,-15,-15,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-10,-7,-11,-11,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-9,-5,-7,-7,-15,-8,-9,-8,-15,-10,-15,-14,-30,-14,-14,-9,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-8,-8,-31/2,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-24,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-38,-18,-18,-11,-17,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-35/2,-8,-8,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1/2,1,2,2,2,2,3,3,4,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-63,-31,-30,-19,-29,-15,-18,-15,-28,-14,-16,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-18,-11,-17,-17,-32,-15,-15,-10,-15,-8,-10,-9,-17,-8,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-7,-12,-7,-10,-9,-18,-10,-12,-9,-17,-11,-16,-16,-33,-16,-16,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-10,-10,-43/2,-10,-11,-8,-14,-8,-11,-11,-22,-12,-15,-12,-22,-14,-20,-20,-41,-20,-20,-13,-20,-11,-13,-10,-18,-9,-10,-8,-14,-8,-12,-11,-45/2,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-6,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-5/2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,2,2,2,1,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-13/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,2,2,3,5/2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-31,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-16,-8,-8,-9/2,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-7,-4,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-5 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-15/2,-8,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,4,3,4,3,5,3,3,2,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-32,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-8,-4,-9/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-11,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-11/2,-6,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,2,2,3/2,2,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1/2,0,1,1,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,1,3,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-2,-3,-3,-6 --5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,1,3,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-4,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,2,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,1,2,2,2,2,7/2,3,4,4,6,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,7/2,3,4,3,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-5,-34,-16,-16,-10,-31/2,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-7,-3,-4,-3,-9,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-11,-6,-8,-6,-23/2,-8,-12,-12,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,4,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 --4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-19,-9,-9,-5,-9,-9/2,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,0,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3,3,5,3,5/2,2,3,2,3/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,3/2,2,0,0,1/2,1,0,0,1/2,1,0,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,2,1,1,0,1,0,0,0,1/2,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-6 --10,-5,-5,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-6,-5,-9,-6,-10,-10,-25,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-8,-8,-26,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,0,1,1,1,1,3/2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,7/2,2,3,2,3,2,3,4,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-40,-19,-19,-12,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-3,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-13,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-25,-12,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,4,2,2,2,2,2,3,3,9/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-13 --5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-21,-10,-10,-6,-9,-5,-6,-9/2,-9,-4,-4,-5/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-6,-5,-15,-7,-15/2,-4,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-16,-8,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-23,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-5,-3,-4,-4,-13,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-5,-7,-3,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,2,2,3/2,2,2,2,3/2,1,3,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3/2,1,1,2,3/2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-6 --9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-23,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,-1,0,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,0,1,1,1,2,2,2,3,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-31,-15,-15,-10,-31/2,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-6,-5,-8,-4,-4,-4,-15/2,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-7,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,7/2,3,4,3,5,3,3,2,7/2,2,3,3,3,2,2,2,7/2,3,4,4,2,2,2,2,5/2,2,1,1,3,2,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-19,-9,-9,-6,-10,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-5,-3,-5,-4,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-3,-7 --8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-28,-14,-27/2,-9,-14,-7,-17/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-13/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-11,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,7/2,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-5/2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-4,-2,-2,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-5/2,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,-1/2,-1,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-9,-8,-15,-10,-15,-15,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-33/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-40,-20,-20,-13,-20,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-11,-23,-11,-12,-8,-13,-7,-10,-9,-17,-8,-9,-7,-13,-8,-12,-11,-45/2,-11,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-44,-22,-22,-15,-23,-13,-16,-13,-25,-12,-13,-10,-17,-10,-13,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-9,-37/2,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-9,-4,-4,-2,-3,-1,0,1,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-54,-26,-26,-17,-26,-14,-17,-13,-24,-12,-13,-9,-16,-9,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-41/2,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-59/2,-14,-14,-10,-16,-9,-11,-10,-20,-10,-11,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-11,-23,-12,-15,-12,-21,-14,-22,-22,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-10,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-9,-9,-6,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-6,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,1,1,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-11/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 --8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-10,-6,-10,-5,-6,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1/2,-4,-2,-2,-1/2,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-15,-7,-8,-5,-7,-7/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-10,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-19/2,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-12,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1/2,1,-4,-2,-3/2,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-6,-11,-6,-7,-5,-10,-6,-21/2,-10,-15,-7,-15/2,-5,-7,-4,-9/2,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,4,3,3,3,5,3,7/2,3,4,3,9/2,4,1,1,1,1,2,2,2,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-5,-3,-5,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,1,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-10,-9/2,-4,-3,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-5,-4,-17/2,-5,-8,-8,-9,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,3,3,4,2,2,1,1,1,2,2,1,1,1,1,3/2,2,2,1,2,2,2,1,1/2,0,0,1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-28,-13,-13,-8,-13,-7,-9,-7,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-7,-16,-7,-7,-4,-15/2,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-11,-6,-7,-6,-23/2,-7,-11,-11,-17,-8,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-3,-3,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,5/2,2,3,3,4,3,4,3,5,4,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-11/2,-5,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,0,0,0,0,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,2,2,2,1,2,2,2,2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-11/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,4,3,3,3,0,0,0,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 --3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,1/2,2,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,5/2,3,3,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-7,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-24,-11,-11,-7,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-16,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9/2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-31,-15,-15,-10,-15,-8,-10,-8,-14,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-19/2,-5,-6,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-6,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,1,1,0,-3/2,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,2,3,2,3,3,5,3,4,3,4,3,5,5,-1,0,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-6,-2,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,0,2,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-9,-6,-9,-8,-17 --2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9 --2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,2,2,3/2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-10,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-5,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,5/2,2,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-5/2,-1,-2,-3,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,1,0,0,0,0,1/2,1,2,2,3,2,2,2,7/2,2,3,3,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-14,-7,-7,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,2,2,2,3/2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,9/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-11,-5,-5,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-5,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-39,-19,-20,-13,-20,-11,-13,-11,-20,-10,-10,-7,-11,-6,-9,-8,-35/2,-8,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-22,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,3,5,3,3,3,5,4,5,4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-22 --2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-18,-8,-17/2,-6,-9,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,0,0,-4,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-7,-3,-4,-3,-7,-4,-7,-7,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,-4,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 --1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-3,-6,-2,-2,-1,-5/2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-20,-9,-9,-6,-10,-5,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,-6,-2,-2,-2,-7/2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-13/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,0,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-6,-5/2,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7 --3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-6,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-3,-1,-1,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-7/2,-4,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-6,-4,-7,-7,-8,-4,-7/2,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-10 --3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-5/2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-16,-15/2,-8,-9/2,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 --6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-6,-29,-14,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,0,0,1,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,1,1,2,2,3,2,3,2,7/2,2,2,2,3,3,4,4,-12,-6,-6,-3,-5,-2,-2,-1,-3/2,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-31,-15,-15,-10,-15,-8,-10,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-5,-4,-15/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-14,-9,-13,-13,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,0,0,0,1,1,1,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20 --3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11 --3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,-7,-3,-7/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,0,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-4,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-8,-4,-4,-3,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14 --2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-12 --4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-2,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-9/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-28,-14,-14,-9,-27/2,-7,-8,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,5/2,2,2,2,4,3,4,3,9/2,3,4,5,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-11/2,-3,-5,-4,-7,-3,-4,-4,-15/2,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-8,-7,-13,-7,-8,-6,-25/2,-8,-12,-12,-11,-5,-5,-4,-13/2,-3,-4,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,0,0,0,0,0,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-7/2,-7,-4,-7,-7,-15 --4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-6,-6,-28,-14,-27/2,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-11/2,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,5/2,2,2,2,2,3,4,3,7/2,3,6,4,11/2,6,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-11,-7,-11,-11,-23 --5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-9/2,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-7/2,-7,-9/2,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,6,4,6,6,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-11,-7,-11,-11,-23 --11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-7,-15,-8,-10,-8,-15,-10,-16,-16,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-12,-12,-59,-29,-29,-19,-28,-15,-19,-16,-30,-15,-17,-13,-22,-13,-18,-17,-34,-17,-17,-11,-18,-10,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-20,-10,-10,-7,-12,-7,-11,-10,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,5,5,9,6,9,10,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-53,-26,-26,-17,-25,-14,-17,-14,-27,-13,-14,-10,-17,-10,-13,-12,-23,-11,-12,-8,-12,-7,-9,-9,-18,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-11,-9,-18,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-9,-12,-11,-21,-11,-12,-10,-18,-11,-17,-17,-36,-17,-17,-11,-18,-9,-11,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-11,-14,-12,-22,-15,-23,-23,-21,-10,-11,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-10,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-13,-9,-16,-9,-12,-11,-23,-12,-15,-13,-24,-15,-23,-23,-46 --5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,3,5/2,3,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-10,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-26,-12,-12,-8,-12,-13/2,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-10,-9/2,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-9/2,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --5,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-7/2,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-15/2,-6,-11,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,2,2,4,3,7/2,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-26,-12,-12,-8,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-4,-9,-4,-5,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-3,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 --5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-5,-29,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,11/2,4,5,5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-26,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-16,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-11,-11,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3,2,1,1,1,1,1,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,2,2,0,0,0,1,3/2,2,2,2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-21/2,-7,-11,-11,-22 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-4,-7/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,2,2,2,2,1,1,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,3/2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,5/2,2,4,3,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-9/2,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,1,1,1,0,0,0,0,0,0,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 --2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-5,-5,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-7/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-15/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,3/2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-8,-31/2,-8,-9,-7,-12,-7,-9,-9,-17,-8,-8,-6,-10,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,4,4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-13,-6,-6,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-26,-12,-12,-8,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-17,-8,-8,-5,-9,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-5,-10,-6,-10,-11,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-6,-12,-6,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-7,-11,-11,-23 --1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-1,-5,-2,-5/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-15,-7,-15/2,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,5/2,2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-13 --1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-4,-3/2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --2,-1,-1,0,0,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-13,-6,-6,-4,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-1,-1,-1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-3,-3,-6,-5/2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-5/2,-4,-4,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,0,0,1/2,0,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,0,0,1/2,1,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,0,1,1,1,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-3/2,-1,-2,-1,-3,-3,-15,-7,-15/2,-5,-8,-4,-6,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-9/2,-4,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1/2,0,0,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-43/2,-10,-11,-7,-12,-7,-9,-9,-18,-9,-10,-7,-13,-8,-13,-12,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-8,-33,-16,-16,-10,-15,-8,-10,-9,-17,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-7,-4,-7,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-9,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,-1/2,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-9/2,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-3/2,-1,-4,-2,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12 -0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -0,1,1,1,1/2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,1,1,1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-3,-4,-4,1,1,0,0,1/2,0,0,0,1,1,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,-5,-2,-3,-2,-4,-2,-3,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-10,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13 -0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-12,-11/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-7 -0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,2,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-17,-8,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,3,2,2,2,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,3,2,2,2,2,2,2,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-19,-9,-9,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,3/2,1,1,1,1,1,1,0,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-2,-29,-14,-13,-8,-13,-7,-8,-6,-21/2,-4,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,1,1,1,4,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-18 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-18,-8,-8,-5,-8,-4,-9/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-3/2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-11/2,-6,-12 -0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,0,1,1,1,0,1/2,0,1/2,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10 --2,-1,-1,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-4,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,2,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-28,-13,-12,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-8,-8,-5,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-16,-8,-15/2,-5,-8,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-4,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-26,-12,-25/2,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-11/2,-6,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-5/2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-7/2,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-26,-12,-12,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 --8,-3,-3,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,7,4,4,3,4,2,2,2,2,1,1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-37,-18,-18,-12,-19,-10,-13,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-11,-8,-14,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-53,-26,-26,-17,-26,-14,-17,-14,-26,-13,-15,-11,-18,-10,-14,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-12,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-8,-8,-35/2,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-11,-23,-11,-12,-8,-13,-7,-9,-8,-17,-9,-11,-10,-19,-12,-18,-18,-37 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1/2,-1,0,0,-1/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,4,2,2,2,2,2,2,1,2,1,1,1/2,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-8,-18 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-1/2,-1,-1,0,-1,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,4,2,5/2,2,2,2,3/2,1,2,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-7,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-13/2,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-9,-9,-11/2,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-6,-4,-6,-11/2,-12 --3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,3,2,2,2,2,1,1,1,1,1,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-17/2,-4,-4,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-5,-11,-5,-6,-4,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,3,2,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-3,-1,-1,0,-1/2,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-20 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1/2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-21,-10,-10,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-3,-3,-5/2,-5,-3,-6,-6,-13 --2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-4,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-19,-9,-9,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-33,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-6,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-5,-4,-8,-5,-7,-7,-2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-12,-12,-25 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-3,-5,-3,-6,-6,-13 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-19,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-1,0,0,0,-1,0,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 -0,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-25,-12,-12,-8,-23/2,-6,-8,-7,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-4,-13/2,-4,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 -0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-15/2,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-23,-11,-21/2,-6,-11,-6,-7,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-19/2,-9,-19 -1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-22,-21/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-7/2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-7,-3,-4,-2,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-4,-4,-9,-9/2,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-8,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-28,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-45,-22,-22,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-9,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-38 -1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1/2,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-20 -2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,-2,-1,-3/2,-2,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,1,1,1,1,2,2,3/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,1/2,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-16 -2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-21/2,-6,-8,-6,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-3,-3,-13/2,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-30,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-4,-4,-4,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,0,1,1,1,3/2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-27 -2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 -2,2,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-25,-12,-23/2,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-21/2,-10,-22 -2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20 -3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-19/2,-5,-6,-4,-8,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-8,-6,-11,-6,-8,-8,-33/2,-9,-11,-9,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-8,-33/2,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-9,-9,-26,-12,-12,-7,-11,-6,-8,-6,-23/2,-6,-6,-4,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1/2,0,0,0,-2,-1,-3,-3,-45,-22,-22,-14,-22,-12,-14,-12,-43/2,-10,-11,-8,-13,-7,-10,-9,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,0,1,1,1,2,2,2,1,1/2,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-15,-7,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-16,-8,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 -2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-24,-12,-12,-15/2,-12,-6,-7,-6,-11,-5,-5,-4,-7,-7/2,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-8,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-12,-8,-23/2,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-3/2,-2,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-4,-11/2,-6,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-24,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1/2,0,0,1,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-10,-12,-10,-37/2,-12,-18,-18,-35,-17,-17,-11,-35/2,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-9,-4,-4,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-22,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-43,-21,-20,-13,-41/2,-11,-13,-11,-19,-9,-10,-7,-12,-7,-9,-9,-16,-7,-7,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-9,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-7,-25/2,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-12,-6,-8,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-9/2,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-28,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-3,-5/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-10,-21/2,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-19/2,-9,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-11,-6,-7,-6,-10,-6,-21/2,-10,-22,-10,-10,-6,-11,-6,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-42,-20,-20,-13,-20,-11,-13,-10,-18,-9,-19/2,-7,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-7,-4,-11/2,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-18,-9,-19/2,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-9/2,-6,-4,-8,-5,-8,-15/2,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-15/2,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-6,-11,-13/2,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-11,-11/2,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-41,-20,-20,-13,-20,-10,-12,-10,-18,-9,-9,-13/2,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-13/2,-14,-7,-7,-5,-7,-4,-6,-5,-11,-11/2,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-11,-14,-12,-23,-15,-23,-23,-46,-23,-23,-15,-23,-12,-15,-13,-25,-13,-15,-11,-20,-12,-18,-18,-36,-18,-19,-13,-21,-12,-16,-15,-29,-15,-17,-14,-25,-16,-25,-24,-49,-24,-25,-17,-26,-15,-19,-16,-30,-16,-18,-14,-24,-15,-22,-21,-42,-21,-23,-17,-28,-17,-23,-21,-41,-22,-26,-21,-39,-25,-37,-37,-71,-35,-34,-22,-34,-18,-22,-18,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-16,-11,-19,-11,-14,-12,-24,-12,-14,-11,-20,-13,-19,-18,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,4,6,5,7,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-2,-3,-4,-83,-41,-41,-27,-42,-23,-28,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-17,-15,-28,-15,-17,-14,-25,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-25,-13,-15,-12,-21,-13,-19,-18,-37,-18,-19,-14,-23,-13,-17,-15,-29,-15,-18,-15,-27,-18,-27,-27,-55,-27,-27,-18,-28,-15,-19,-15,-28,-14,-16,-12,-21,-13,-19,-18,-35,-17,-18,-12,-20,-11,-15,-13,-25,-13,-15,-11,-19,-12,-17,-17,-35,-17,-17,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-15,-14,-29,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,-24,-12,-12,-8,-12,-7,-10,-9,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-38,-19,-20,-14,-22,-12,-16,-14,-27,-14,-15,-11,-20,-13,-19,-18,-36,-18,-19,-14,-24,-15,-21,-20,-39,-21,-26,-22,-40,-27,-41,-41,-83 -1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-11/2,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-17/2,-18,-17/2,-8,-5,-9,-9/2,-6,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-3/2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-23,-11,-12,-7,-12,-6,-8,-6,-12,-6,-7,-11/2,-10,-6,-9,-9,-18,-9,-9,-13/2,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-9,-4,-5,-9/2,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-10,-6,-21/2,-11,-23,-11,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-15,-8,-17/2,-6,-12,-8,-23/2,-12,-25,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-21/2,-10,-20,-10,-11,-8,-13,-8,-21/2,-10,-20,-10,-25/2,-10,-19,-12,-37/2,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-15,-7,-8,-5,-8,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-9,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1,2,3,2,2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-17/2,-7,-13,-8,-13,-13,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-8,-4,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-20,-20,-41 -1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-9/2,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-23,-11,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-6,-7/2,-5,-4,-9,-9/2,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-7/2,-6,-3,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27 -1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-10,-11,-24,-11,-11,-7,-23/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-7,-15,-7,-8,-6,-23/2,-7,-11,-11,-25,-12,-12,-8,-23/2,-6,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-9,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-41,-20,-20,-13,-39/2,-11,-14,-11,-22,-11,-11,-8,-27/2,-8,-11,-11,-20,-10,-10,-6,-21/2,-6,-8,-7,-15,-8,-10,-8,-27/2,-8,-12,-11,-24,-11,-11,-7,-23/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-9,-6,-21/2,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-26,-13,-13,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-6,-19/2,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-5,-11,-5,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-11/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-41 -1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-11/2,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-10,-11/2,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,3/2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-13/2,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-11/2,-5,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-28,-14,-14,-9,-13,-7,-17/2,-7,-15,-7,-7,-5,-8,-5,-8,-7,-12,-6,-7,-5,-7,-4,-11/2,-5,-10,-5,-6,-4,-9,-5,-15/2,-7,-16,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,0,1,1,1,2,2,3/2,1,2,2,3/2,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-7,-4,-13/2,-6,-13,-7,-9,-7,-14,-9,-27/2,-13,-27 -1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-5/2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -2,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-25,-12,-12,-7,-11,-6,-8,-6,-25/2,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-11,-6,-8,-7,-27/2,-7,-8,-6,-12,-7,-11,-11,-25,-12,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-9,-17,-11,-17,-16,-38,-18,-18,-12,-18,-10,-12,-9,-33/2,-8,-9,-6,-10,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-5,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,11/2,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,9/2,3,3,3,4,3,3,2,0,0,0,0,0,1,1,2,5/2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-43,-21,-21,-14,-22,-12,-15,-12,-22,-11,-12,-8,-14,-8,-12,-11,-19,-9,-10,-7,-12,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-10,-8,-33/2,-8,-10,-7,-12,-7,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-27/2,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-13,-7,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,0,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,0,0,0,1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,0,0,-1/2,0,0,1,2,2,2,2,-1,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-8,-8,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-20,-41 -2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,1/2,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-22,-21/2,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-11/2,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-21 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-6,-17/2,-8,-21,-10,-19/2,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1/2,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-24,-12,-23/2,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-11/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,0,1/2,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-11/2,-15,-7,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,1/2,0,0,1,0,1,1,1,0,0,0,1,2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-17/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,1,1,0,0,1/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-30,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-4,-4,-10,-5,-6,-4,-17/2,-6,-9,-9,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-11,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27 -3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,3,3,2,3,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,5/2,2,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,3/2,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-5,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-13/2,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-11,-6,-7,-6,-11,-7,-11,-11,-23 -4,3,3,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,2,3/2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-9/2,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22 -7,4,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,0,1,1,1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,1,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-7,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-11,-6,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-8,-10,-8,-14,-9,-14,-14,-36,-17,-17,-11,-18,-10,-12,-10,-19,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-9,-16,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,3,11/2,3,2,2,2,2,3,3,4,3,3,2,3,2,1,1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-48,-23,-23,-15,-24,-13,-15,-12,-23,-12,-13,-9,-15,-9,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-8,-35/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-11,-7,-12,-7,-11,-10,-20,-11,-13,-11,-20,-14,-22,-22,-45 -4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 -4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-4,-2,-9/2,-4,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-6,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-11/2,-6,-4,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-7/2,-5,-7/2,-7,-9/2,-7,-8,-17 -4,2,2,2,7/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,1/2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,4,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,1,1/2,1,2,2,0,0,0,1,1,1,0,0,-2,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,3,4,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-12,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5/2,-1,-2,-3,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-11,-6,-7,-6,-23/2,-8,-13,-13,-27 -3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-3/2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -3,2,5/2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,2,2,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,5/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-3,-5,-5,-9,-5,-6,-4,-8,-5,-9,-9,-20 -3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,-18,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -6,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-23,-11,-10,-6,-10,-5,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-11,-9,-17,-9,-10,-7,-12,-7,-9,-8,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,-1,-7/2,-2,-2,-2,-4,-2,-4,-5,-5,-2,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-2,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-35 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-11/2,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-11/2,-9,-9,-18 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3,3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,1/2,1,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,1,1,1,1,1,1,1/2,0,0,0,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-11,-6,-13/2,-5,-10,-5,-6,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-10,-21 -3,2,3,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,7/2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,7/2,3,4,4,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,6,4,4,3,3,2,2,2,2,1,1,1,3/2,1,0,0,2,1,1,1,1,1,2,2,0,1,1,1,3/2,1,1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,2,2,3/2,1,0,0,2,2,2,1,1,1,0,0,0,1,1,1,3/2,2,2,2,0,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-28,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-2,-3,-3,-14,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -4,5/2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1,-3,-2,-3,-2,-18,-8,-8,-5,-9,-9/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19 -6,4,7/2,3,4,2,5/2,2,3,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,7/2,3,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3/2,1,2,1,1/2,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-13,-7,-8,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-8,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-14,-6,-6,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-7,-19/2,-8,-14,-9,-14,-14,-29 -6,4,4,3,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-2,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-13,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-9,-15/2,-14,-9,-14,-14,-28 -12,7,7,5,6,4,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,2,1,1,0,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,2,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-15,-7,-8,-5,-8,-4,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,0,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-9,-6,-9,-9,-50,-24,-24,-15,-23,-12,-15,-12,-23,-12,-13,-9,-15,-9,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-15,-9,-13,-13,-27,-13,-14,-9,-15,-8,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-5,-9,-9,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-12,-13,-9,-16,-10,-14,-14,-28,-15,-18,-15,-28,-18,-28,-28,-57 -6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,6,4,4,5/2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-8,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-28 -6,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,3,2,7/2,4,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,6,4,7/2,2,4,3,7/2,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,-1/2,-2,0,0,0,-2,0,0,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-9/2,-9,-6,-9,-9,-19 -6,4,4,3,5,3,4,4,4,3,3,3,4,3,4,3,5,3,3,2,5/2,2,1,1,1,1,1,1,3/2,2,2,2,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,5/2,2,4,4,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,7,4,3,2,3,2,3,3,6,4,4,3,9/2,3,3,2,3,2,3,2,3,2,2,2,3,2,1,1,1/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,0,-3,-1,-2,-1,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-7/2,-2,-4,-4,-25,-12,-11,-7,-21/2,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,0,1,1,1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-14,-6,-6,-4,-13/2,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-13,-7,-9,-8,-15,-10,-15,-15,-30 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,5/2,1,1,2,1,2,1,1,1,2,2,2,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -4,3,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,3,2,2,3/2,1,2,1,1,1,3,2,2,1,2,2,3/2,2,5,3,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,1,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,2,2,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-3/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-17,-8,-15/2,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-3/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,1/2,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21 -3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,3/2,1,1,1,1,1,3/2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,7,4,5,4,5,3,3,2,3,2,3,2,3,2,1,1,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,1,1,0,1,1,1,5,3,3,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,0,0,0,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,6,4,4,3,4,2,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-28,-13,-13,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-27/2,-7,-8,-7,-14,-9,-15,-15,-32 -3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,1/2,0,1/2,0,1/2,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-5,-2,-3,-2,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-2,-1/2,-1,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-17 -4,3,3,2,2,2,5/2,2,4,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,4,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,2,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,2,4,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-6,-3,-3,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,0,-2,0,-1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-19 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 -6,4,4,3,7/2,3,4,3,4,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,1,1,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,7/2,3,4,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,-1,-8,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-2,-2,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-17,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,3/2,2,2,2,3,2,2,1,1,1,1,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-7,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,3,3,3,2,3,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,5,3,4,3,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,-1,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-13/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3/2,0,-2,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-4,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,3,2,3/2,1,2,2,3/2,2,1,1,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,0,0,1,1,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 -8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,4,6,6,8,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,9/2,3,4,3,4,2,2,2,3,2,1,1,1,1,2,2,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-31,-15,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,-1,-7/2,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-11,-21,-13,-20,-20,-42 -4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,1,1,2,3/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,1/2,0,1/2,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 -4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,4,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,5/2,2,4,2,5/2,2,1,1,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-11,-7,-11,-11,-23 -3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,2,1,0,0,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 -4,2,2,2,5/2,2,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,7/2,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,9/2,2,2,2,4,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,3,6,4,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3/2,1,1,1,5,3,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-18,-9,-9,-6,-17/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-3,-2,-4,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-27 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 -3,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,3,4,3,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,6,3,3,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,4,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-12,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-5/2,-3,-7,-3,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,1,-1,0,1/2,0,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-11,-7,-11,-11,-22 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,3,2,2,3/2,2,2,2,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-13/2,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,3/2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-9/2,-6,-5,-10,-6,-10,-10,-20 -6,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,7/2,2,2,2,4,3,5,5,9,5,5,4,5,3,2,2,5/2,2,2,2,2,2,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,3,4,4,9,5,5,4,7,5,6,5,15/2,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,7,4,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-27,-13,-13,-9,-14,-7,-9,-8,-29/2,-7,-7,-5,-8,-4,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-22,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1/2,1,2,2,2,2,2,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,2,2,3,2,3,2,3,2,3,2,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-10,-6,-9,-8,-35/2,-10,-12,-10,-18,-12,-19,-19,-40 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,5/2,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-7/2,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1,-3,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,3,6,4,7/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,3,2,5/2,3,6,4,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,3,5,3,3,2,3,2,3,2,3,2,3,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-15/2,-6,-11,-8,-25/2,-12,-26 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,3,3,5/2,3,3,4,3,3,2,3,2,2,5/2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21 -6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9/2,4,5,5,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,3,3,4,3,3,2,3,2,3,3,2,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-23,-11,-12,-8,-25/2,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,1,3/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-9/2,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-20,-10,-10,-6,-21/2,-5,-6,-5,-8,-4,-5,-4,-13/2,-4,-5,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,2,2,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-19,-10,-12,-10,-18,-12,-18,-18,-38 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-5/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-25 -4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-15/2,-8,-23,-11,-23/2,-8,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,-1,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,2,2,3/2,2,3,2,5/2,2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-17/2,-9,-16,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-13/2,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-19/2,-9,-18,-10,-12,-10,-18,-12,-37/2,-19,-39 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,7/2,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-9,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-11,-13/2,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-39 -7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,6,6,10,7,9,9,33/2,9,10,7,10,6,7,6,10,5,5,4,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,3,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,0,0,1,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-10,-6,-9,-9,-18,-9,-11,-9,-16,-10,-16,-16,-46,-22,-22,-14,-22,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-42,-20,-20,-13,-20,-11,-13,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-8,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,4,-19,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-8,-10,-8,-16,-11,-18,-18,-34,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-28,-14,-14,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-14,-11,-20,-13,-19,-19,-38,-19,-21,-15,-24,-14,-20,-19,-39,-21,-25,-21,-38,-25,-38,-39,-79 -4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-3/2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-11/2,-7,-6,-11,-5,-5,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,1/2,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-9,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-39 -5,3,5/2,2,2,2,3/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,5/2,2,5,3,7/2,4,5,4,9/2,5,9,5,5,4,5,3,3,3,5,3,7/2,3,3,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,3,7,4,4,3,4,3,4,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-6,-15/2,-6,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-20,-10,-10,-6,-10,-5,-7,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,0,0,0,1,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-9,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1/2,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27 -5,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,5,3,2,2,5/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,1/2,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-6,-9,-9,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,1/2,1,1,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,2,2,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-17/2,-4,-5,-4,-9,-4,-4,-3,-13/2,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-8,-18,-9,-10,-6,-21/2,-6,-8,-7,-13,-7,-8,-6,-21/2,-6,-10,-9,-20,-10,-10,-7,-25/2,-7,-10,-10,-19,-10,-13,-10,-39/2,-13,-20,-20,-42 -3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,3/2,0,1,1,1,1,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-7,-11/2,-10,-7,-11,-11,-23 -4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,2,2,3,2,3/2,2,2,2,5/2,3,4,3,3,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,2,1,1/2,0,1,1,2,2,1,1,3/2,1,1,1,3/2,1,2,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-7/2,-4,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,1,1,1,3/2,2,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-12,-6,-6,-4,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-3,-6,-3,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-17/2,-7,-13,-8,-27/2,-14,-29 -3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24 -5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,2,3,2,3,3,9/2,3,4,3,5,4,5,5,5,3,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,2,5/2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-2,0,0,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-1,0,0,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,2,2,6,3,3,2,2,2,2,2,5/2,2,1,1,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-4,-5,-4,-9,-6,-9,-10,-20,-9,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-24,-12,-13,-9,-15,-9,-12,-11,-45/2,-12,-14,-12,-22,-14,-22,-22,-44 -3,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-7,-6,-11,-7,-11,-11,-23 -3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,2,2,2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-13,-8,-25/2,-12,-26 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19 -3,2,3,2,3,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,4,4,6,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-15/2,-4,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,5,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-8,-8,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-10,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-8,-16,-9,-11,-9,-33/2,-10,-16,-16,-33 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,3,2,5/2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-13/2,-7,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-4,-3,-8,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-8,-19/2,-8,-14,-9,-14,-14,-29 -2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,3,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1/2,0,1/2,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-13/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-28 -3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,17/2,4,4,3,5,3,3,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-33/2,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,11/2,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-4,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-2,-1,-2,0,0,0,0,1,2,2,3,2,2,2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-3,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-19,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-14,-15,-11,-18,-11,-15,-14,-27,-14,-17,-14,-27,-18,-27,-28,-57 -2,2,2,1,2,2,2,2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-13,-7,-8,-7,-13,-9,-14,-14,-29 -2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,5/2,2,2,2,3/2,2,3,2,3,3,3,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-12,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,0,0,0,1,1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1/2,0,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-2,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-8,-5,-9,-5,-15/2,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-30 -2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 -3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,7/2,2,3,3,2,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,5/2,2,2,3,1,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,1,2,1,1,1,2,2,2,2,-4,-2,-2,0,-1/2,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,0,-1/2,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-9/2,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,0,1,1,1,1/2,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,3,2,3,2,3,3,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-2,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-16,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-16,-11,-17,-17,-34 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-10,-10,-20 -2,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,3/2,1,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,1,1,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-5,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-12,-15/2,-12,-12,-24 -1,1,1,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,-1,0,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,0,1,1,1,1/2,0,0,1,1,1,1,0,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-11,-7,-11,-11,-20,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,7/2,2,3,2,3,3,4,4,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,2,2,3/2,1,1,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-21/2,-6,-7,-5,-10,-6,-9,-9,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-22,-11,-12,-9,-15,-8,-11,-10,-20,-11,-13,-11,-22,-15,-23,-23,-46 -1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1/2,1,1,1,1,1,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-8,-4,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-25 -1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,5/2,2,4,2,3/2,1,2,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,1,1,1,2,2,3,2,2,1,1,1,3/2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-5,-9,-5,-6,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 -0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1/2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,1/2,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,7/2,2,3,3,5,3,3,2,5/2,2,2,1,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,-6,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-12,-6,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3,-13/2,-4,-6,-6,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-17,-8,-7,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,1,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,2,2,5,3,3,2,3,2,3,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,2,1,0,0,-1/2,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,0,-1/2,0,0,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-7,-25/2,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-40 --1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1/2,0,0,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-26 --3,-1,-1,0,-1,0,1/2,0,0,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,7/2,4,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,4,2,5/2,2,4,3,3,3,5,3,2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-11,-7,-21/2,-10,-20,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-5/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-15,-7,-13/2,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3,3,-6,-2,-2,-1,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-9,-9,-9,-4,-9/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-19,-19,-39 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,4,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-11,-11/2,-6,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-8,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-11,-13,-10,-19,-25/2,-19,-19,-38 --7,-3,-2,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,4,7,4,5,5,8,5,7,7,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,8,4,4,3,5,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-10,-13,-11,-21,-14,-22,-22,-40,-20,-20,-13,-21,-11,-14,-11,-20,-10,-11,-7,-12,-7,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-9,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,0,1,1,1,1,1,2,2,3,4,7,4,3,2,3,2,2,2,3,2,3,3,5,4,5,5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-18,-9,-9,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-9,-4,-5,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-10,-18,-11,-17,-17,-34,-17,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-38,-38,-77 --3,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,3,5/2,4,3,3,3,3,2,3,3,4,3,3,2,4,3,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,3,6,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1/2,0,0,-2,-1,-1,-1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-2,-4,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-9/2,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-19,-19,-38 --3,-1,-1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-3,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,5/2,2,4,2,2,2,4,3,3,3,3,2,2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-4,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-14,-6,-13/2,-4,-7,-3,-3,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-12,-7,-9,-9,-19,-10,-25/2,-10,-18,-12,-19,-19,-39 --2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 --4,-1,-1,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,3,-5,-2,-2,-1,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,5,3,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,3,2,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-6,-25/2,-8,-13,-13,-23,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-11/2,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,7/2,2,3,3,4,3,3,2,5/2,2,3,3,7,4,4,3,7/2,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-5,-19/2,-6,-10,-10,-12,-6,-6,-4,-11/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-7,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-8,-17,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-39/2,-13,-20,-20,-41 --2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-9/2,-9,-9/2,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,4,3,3,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,5,3,7/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-17/2,-7,-14,-9,-14,-14,-29 --3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1/2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1/2,0,1/2,1,1,2,2,2,3/2,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,1,0,0,0,1,1,1,4,2,2,2,3,2,2,2,5/2,2,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,-6,-2,-1,0,0,1,1,1,3/2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,2,2,2,1,0,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,1,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-29,-14,-14,-9,-13,-7,-8,-7,-29/2,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-3,-4,-4,-8,-5,-8,-8,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,3,3,4,4,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,0,1,2,2,3,3,4,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,-1/2,0,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-8,-6,-12,-8,-12,-13,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-3,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-8,-7,-27/2,-7,-8,-6,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-12,-15,-13,-24,-16,-24,-23,-47 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,3,2,3/2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,5,3,7/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,3,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-27/2,-14,-28 --1,0,0,0,0,1/2,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-4,-2,-2,-1,-2,0,0,-1/2,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-13/2,-10,-10,-21 --3,-1,-1,0,-1,0,0,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,2,2,5/2,2,2,1,0,0,0,1,3/2,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,-4,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,3,2,3,3,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,3,-1,0,0,0,1/2,0,0,1,3,2,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-14,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-6,-6,-11,-5,-6,-5,-9,-6,-9,-8,-16,-8,-8,-6,-23/2,-6,-9,-9,-16,-9,-11,-9,-18,-12,-18,-18,-37 --1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23 --2,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1/2,1,-3,-1,-1,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,2,2,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,-1,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-21/2,-7,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,4,3,7/2,3,1,1,1/2,0,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-11/2,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-11/2,-6,-13,-6,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-14,-8,-19/2,-8,-15,-10,-16,-16,-33 --2,0,0,0,-1,0,0,1,1,1,0,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-13/2,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,2,2,2,3,5/2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-15,-15,-32 --6,-2,-2,-1,-2,0,1,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-39/2,-10,-11,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-45,-22,-22,-14,-22,-12,-14,-11,-20,-10,-11,-8,-14,-8,-12,-11,-21,-11,-12,-8,-14,-8,-11,-9,-18,-9,-11,-9,-16,-10,-15,-14,-29,-14,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-27,-13,-12,-8,-12,-6,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-6,-29/2,-7,-7,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,2,1,1,1,1,1,1,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15/2,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,11/2,3,3,2,2,2,3,3,4,3,3,3,6,4,5,5,1,1,1,1,2,1,1,1,0,1,1,2,3,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-8,-15,-10,-17,-17,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-31,-15,-16,-12,-20,-12,-17,-15,-30,-16,-20,-16,-30,-20,-30,-31,-63 --2,0,0,0,0,1/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-32 --2,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,-1,-1,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-25,-12,-23/2,-7,-12,-6,-7,-6,-11,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-11/2,-4,-9,-5,-15/2,-8,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-2,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,0,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-9/2,-2,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-9,-16,-10,-16,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-7,-9/2,-8,-4,-6,-6,-11,-6,-8,-6,-12,-15/2,-12,-12,-25 --3,-1,0,0,-1/2,0,0,1,0,0,0,0,1/2,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,-1/2,0,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-27/2,-9,-14,-14,-30,-14,-14,-9,-13,-7,-9,-7,-12,-6,-6,-4,-8,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-10,-6,-19/2,-4,-5,-4,-7,-3,-4,-2,-4,-3,-5,-5,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,2,3,2,1,1,1,1,1,1,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,2,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,1,1,1,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-11/2,-4,-6,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-9,-21,-11,-12,-8,-27/2,-8,-10,-10,-19,-10,-12,-10,-41/2,-13,-20,-20,-41 --2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-11,-5,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-5,-12,-6,-7,-9/2,-8,-9/2,-6,-6,-11,-6,-7,-6,-12,-8,-12,-12,-24 --3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24,-11,-11,-7,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,3,5,3,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-6,-12,-6,-11/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-6,-17/2,-8,-17,-8,-19/2,-6,-12,-7,-19/2,-8,-16,-8,-10,-9,-17,-11,-16,-16,-33 --2,-1/2,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-21/2,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-16,-8,-8,-6,-11,-6,-8,-8,-15,-8,-10,-8,-15,-10,-15,-15,-30 --5,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-7,-3,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-6,-6,-25/2,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-8,-14,-8,-11,-10,-41/2,-11,-13,-11,-20,-13,-21,-21,-44,-22,-22,-14,-22,-12,-14,-11,-39/2,-10,-10,-7,-12,-7,-11,-11,-21,-10,-10,-7,-12,-7,-10,-8,-33/2,-8,-10,-8,-14,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-6,-8,-8,-16,-8,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-29,-14,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-15,-7,-8,-5,-9,-5,-6,-5,-19/2,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1/2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,4,4,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,3,3,2,2,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,7/2,2,2,2,4,3,4,4,8,4,4,2,2,1,1,1,3/2,1,1,1,2,2,3,3,6,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,1,1/2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-16,-9,-11,-10,-39/2,-10,-12,-9,-17,-10,-15,-15,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-17,-31,-20,-30,-29,-59 --2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24,-12,-12,-15/2,-12,-6,-7,-11/2,-10,-5,-5,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-16,-16,-32 --2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,1,-1,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,-1,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-6,-12,-8,-27/2,-14,-28,-14,-14,-9,-14,-7,-9,-7,-12,-6,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-3,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-10,-10,-22,-11,-11,-8,-14,-8,-21/2,-10,-21,-11,-27/2,-11,-20,-13,-39/2,-19,-39 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-7,-7,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-3/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-13/2,-12,-6,-8,-8,-17,-9,-11,-9,-16,-21/2,-16,-16,-33 --2,0,0,0,-1/2,0,-1,-1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-7,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-39/2,-13,-20,-20,-42,-20,-20,-13,-41/2,-11,-14,-11,-20,-10,-10,-7,-12,-7,-10,-10,-22,-11,-11,-8,-25/2,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-8,-12,-7,-9,-8,-16,-8,-8,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-21/2,-6,-9,-8,-14,-7,-8,-7,-27/2,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-15/2,-4,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-10,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,3,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,6,5,9,5,5,4,9/2,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,7/2,2,3,2,3,2,2,2,7/2,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-15/2,-4,-6,-5,-13,-7,-8,-6,-25/2,-8,-13,-13,-27,-13,-14,-9,-27/2,-7,-9,-7,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-9,-7,-15,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-23/2,-6,-8,-7,-15,-8,-10,-8,-15,-9,-14,-14,-29,-14,-14,-10,-16,-9,-11,-10,-21,-11,-12,-10,-35/2,-11,-16,-16,-32,-16,-18,-13,-43/2,-12,-17,-15,-31,-17,-20,-16,-61/2,-20,-30,-30,-60 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-11,-6,-7,-6,-14,-7,-8,-6,-12,-7,-10,-10,-21,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-21/2,-20,-13,-20,-20,-40 --2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-6,-11,-6,-19/2,-10,-19,-10,-21/2,-8,-14,-8,-21/2,-10,-20,-11,-27/2,-11,-20,-13,-20,-21,-42,-20,-41/2,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-12,-6,-17/2,-8,-15,-8,-19/2,-8,-14,-8,-12,-12,-25,-12,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-12,-7,-19/2,-9,-18,-9,-19/2,-7,-11,-6,-8,-8,-14,-7,-17/2,-7,-14,-8,-25/2,-12,-27,-13,-25/2,-8,-12,-6,-17/2,-7,-12,-6,-6,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-7,-4,-13/2,-6,-12,-6,-13/2,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,4,11/2,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,2,2,4,2,5/2,2,3,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,3,4,3,9/2,5,9,5,4,3,3,2,3,2,2,2,3/2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,3/2,1,2,1,1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,1,1,1,1,1,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-9,-14,-7,-17/2,-7,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-15,-7,-8,-5,-8,-5,-7,-7,-13,-7,-9,-7,-12,-8,-12,-12,-26,-12,-25/2,-8,-12,-7,-9,-8,-15,-8,-17/2,-6,-11,-6,-19/2,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-21/2,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-23/2,-10,-21,-11,-25/2,-10,-18,-11,-33/2,-16,-33,-16,-17,-12,-22,-13,-35/2,-16,-31,-17,-20,-16,-31,-20,-30,-30,-60 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-17/2,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-10,-19,-10,-11,-8,-14,-8,-10,-10,-20,-11,-14,-11,-20,-13,-21,-21,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-15/2,-15,-8,-10,-8,-14,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-11,-6,-8,-15/2,-15,-15/2,-9,-7,-14,-17/2,-13,-25/2,-26,-25/2,-12,-8,-12,-6,-8,-7,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-17/2,-18,-8,-8,-11/2,-9,-9/2,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,5,5,9,5,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,2,2,2,2,2,3/2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-13/2,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-13/2,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-15/2,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-12,-10,-20,-21/2,-12,-19/2,-18,-11,-16,-16,-33,-16,-17,-12,-21,-25/2,-17,-16,-31,-17,-20,-16,-31,-20,-30,-30,-61 --5,-2,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-4,-8,-5,-9,-10,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-7,-5,-10,-7,-11,-11,-22,-11,-12,-8,-14,-8,-11,-9,-18,-10,-12,-10,-19,-12,-19,-18,-37,-18,-18,-12,-18,-10,-13,-11,-20,-10,-11,-8,-15,-9,-13,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-7,-11,-11,-22,-11,-11,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-15,-16,-12,-20,-11,-15,-14,-28,-15,-19,-15,-28,-18,-28,-29,-59,-29,-29,-19,-29,-15,-18,-15,-27,-14,-15,-11,-18,-11,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-16,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-16,-10,-14,-14,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-34,-17,-17,-12,-19,-10,-13,-11,-21,-11,-13,-10,-17,-10,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-28,-56,-28,-28,-18,-28,-15,-18,-15,-27,-13,-14,-10,-16,-10,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-11,-8,-15,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-32,-16,-16,-11,-17,-9,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-11,-7,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-29,-16,-19,-16,-29,-19,-30,-30,-60,-30,-30,-20,-31,-17,-21,-17,-32,-16,-16,-11,-19,-11,-16,-15,-30,-15,-15,-11,-18,-10,-12,-11,-21,-11,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-9,-7,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-16,-9,-13,-12,-25,-13,-16,-13,-23,-15,-24,-24,-49,-24,-25,-17,-26,-14,-17,-15,-28,-14,-16,-12,-20,-12,-17,-16,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-20,-16,-29,-19,-28,-27,-55,-27,-28,-19,-31,-17,-22,-19,-37,-19,-22,-17,-29,-18,-27,-26,-53,-27,-28,-20,-32,-19,-26,-24,-48,-26,-31,-25,-46,-31,-47,-47,-94,-47,-47,-31,-48,-26,-31,-26,-47,-24,-26,-19,-31,-18,-25,-24,-47,-23,-24,-16,-25,-14,-19,-17,-32,-17,-19,-15,-28,-17,-25,-25,-50,-25,-25,-17,-27,-15,-18,-15,-28,-14,-16,-12,-21,-12,-17,-16,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-16,-30,-20,-30,-30,-62,-30,-30,-19,-29,-16,-20,-16,-30,-15,-16,-12,-20,-12,-16,-15,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-11,-20,-13,-19,-19,-40,-20,-20,-13,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-14,-14,-28,-14,-14,-9,-15,-9,-12,-10,-20,-11,-13,-11,-20,-13,-20,-20,-41,-20,-21,-14,-22,-12,-14,-12,-22,-11,-13,-10,-17,-10,-15,-14,-29,-15,-16,-11,-19,-11,-14,-13,-25,-13,-16,-13,-23,-14,-21,-20,-41,-20,-21,-14,-23,-12,-15,-13,-25,-13,-14,-10,-18,-11,-17,-16,-32,-16,-18,-13,-21,-13,-19,-18,-35,-19,-23,-18,-33,-22,-33,-33,-67,-33,-34,-23,-35,-19,-23,-20,-37,-19,-21,-16,-27,-16,-22,-21,-41,-21,-22,-16,-26,-15,-20,-18,-35,-19,-22,-18,-33,-22,-33,-32,-65,-32,-33,-22,-35,-20,-26,-23,-43,-23,-26,-20,-35,-23,-34,-33,-67,-34,-36,-26,-42,-25,-35,-33,-64,-35,-41,-34,-62,-41,-61,-61,-123 --2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-5/2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-17/2,-14,-14,-28,-14,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-15/2,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-23/2,-24,-13,-15,-12,-22,-15,-23,-23,-46,-23,-23,-15,-24,-13,-15,-12,-23,-23/2,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-7,-5,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-15/2,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-17/2,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-19/2,-18,-9,-10,-7,-13,-7,-10,-10,-20,-10,-10,-7,-13,-7,-10,-17/2,-17,-9,-10,-17/2,-16,-21/2,-16,-16,-32,-16,-16,-11,-17,-10,-13,-11,-21,-11,-12,-9,-17,-11,-16,-16,-33,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-13/2,-4,-9,-5,-15/2,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-9,-7,-13,-8,-27/2,-14,-28,-14,-27/2,-9,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-14,-9,-29/2,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-15,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-4,-11/2,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-8,-15,-8,-19/2,-8,-14,-9,-13,-13,-27,-13,-27/2,-10,-15,-8,-21/2,-9,-18,-9,-11,-8,-15,-9,-27/2,-13,-26,-13,-27/2,-10,-16,-9,-25/2,-12,-24,-13,-15,-12,-22,-14,-22,-22,-46,-22,-45/2,-15,-24,-13,-31/2,-12,-23,-12,-25/2,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-25/2,-12,-25,-12,-12,-8,-12,-6,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-29/2,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-11,-5,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-21/2,-8,-16,-10,-16,-16,-33,-16,-33/2,-11,-18,-10,-23/2,-10,-17,-9,-10,-7,-12,-7,-21/2,-10,-21,-10,-10,-7,-13,-7,-19/2,-8,-17,-9,-21/2,-9,-17,-11,-16,-16,-32,-16,-16,-11,-18,-10,-13,-11,-21,-11,-12,-9,-17,-11,-33/2,-16,-34,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --1,0,0,0,0,1,1,1,0,0,0,1/2,0,1/2,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20,-19/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-3,-6,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-3,-5,-4,-10,-9/2,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-6,-8,-15/2,-15,-8,-9,-8,-14,-9,-14,-14,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-10,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-5,-10,-6,-10,-10,-22,-21/2,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-13/2,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-12,-6,-8,-7,-13,-13/2,-7,-6,-11,-7,-10,-10,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 --2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-10,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-15/2,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-27/2,-9,-14,-14,-29,-14,-14,-9,-27/2,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-13/2,-3,-4,-3,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-27,-13,-14,-9,-27/2,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-5,-8,-8,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-31/2,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-15,-7,-7,-5,-17/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-9,-8,-15,-8,-9,-7,-27/2,-9,-14,-14,-28,-14,-15,-10,-16,-9,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-22,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-29/2,-8,-12,-11,-22,-11,-11,-7,-12,-7,-9,-8,-15,-7,-8,-6,-25/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-6,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-15,-8,-10,-8,-29/2,-10,-15,-15,-33,-16,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-17/2,-4,-6,-5,-11,-5,-6,-4,-13/2,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-4,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-5,-19/2,-6,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-15,-15,-33,-16,-16,-11,-35/2,-10,-12,-10,-17,-8,-9,-7,-25/2,-8,-11,-10,-21,-10,-11,-8,-25/2,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-31,-15,-16,-11,-35/2,-10,-13,-11,-19,-10,-11,-9,-17,-11,-16,-15,-34,-17,-18,-13,-22,-13,-18,-16,-31,-17,-20,-16,-30,-20,-30,-30,-61 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-6,-9,-5,-6,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-34 --2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-5,-13/2,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-7,-4,-5,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-11/2,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-17/2,-8,-15,-8,-9,-7,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-23,-11,-12,-8,-14,-8,-12,-11,-21,-11,-27/2,-11,-21,-13,-20,-20,-41 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-5,-9,-9/2,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-19/2,-12,-9,-17,-11,-17,-17,-35 --5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,-1,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-5,-19/2,-5,-6,-4,-7,-4,-5,-5,-12,-6,-7,-5,-8,-4,-6,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-29,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-6,-25/2,-6,-8,-6,-12,-8,-13,-13,-25,-12,-12,-8,-12,-6,-7,-6,-23/2,-6,-7,-5,-9,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-33/2,-8,-9,-6,-11,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-8,-17,-8,-8,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-27/2,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-35/2,-9,-10,-8,-14,-8,-12,-12,-28,-14,-14,-9,-15,-9,-12,-11,-22,-12,-14,-12,-23,-15,-22,-22,-46,-22,-22,-15,-23,-12,-15,-12,-22,-11,-11,-8,-13,-8,-11,-10,-24,-11,-11,-7,-12,-7,-9,-8,-15,-8,-9,-7,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-10,-6,-9,-9,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-16,-34,-16,-15,-9,-14,-7,-9,-7,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-18,-9,-9,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-23/2,-6,-6,-5,-9,-6,-9,-9,-23,-11,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-15,-15,-33,-16,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-35/2,-10,-12,-10,-18,-11,-17,-17,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-9,-16,-10,-15,-15,-34,-17,-18,-13,-22,-13,-18,-17,-33,-18,-21,-17,-31,-21,-32,-32,-64 --2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-7/2,-7,-4,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-16,-10,-16,-16,-33 --2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-8,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-7,-7,-5,-7,-4,-5,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-8,-4,-5,-5,-13,-6,-13/2,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-16,-8,-17/2,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-18,-9,-9,-7,-12,-7,-9,-9,-18,-9,-11,-9,-17,-11,-17,-17,-35 --1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-6,-3,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-13/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-4,-6,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26 --3,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-19,-9,-9,-6,-19/2,-5,-6,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-21/2,-6,-10,-10,-19,-9,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-13,-6,-7,-5,-9,-5,-7,-7,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-12,-6,-6,-4,-11/2,-3,-5,-4,-9,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-7,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-10,-6,-21/2,-5,-6,-5,-11,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-25/2,-7,-10,-10,-21,-11,-13,-11,-21,-14,-21,-21,-43 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-5,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-26 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-5/2,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-5/2,-2,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-7,-3,-7/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-25/2,-13,-26,-12,-25/2,-8,-12,-6,-8,-7,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-12,-6,-6,-4,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-9,-17,-11,-35/2,-17,-35 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-9/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-23/2,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --6,-3,-3,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-3,-6,-6,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-7,-13,-6,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-27,-13,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11,-5,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-8,-17,-9,-12,-10,-18,-11,-17,-17,-29,-14,-14,-9,-14,-7,-9,-7,-12,-6,-7,-5,-10,-6,-8,-7,-29/2,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-30,-14,-14,-9,-15,-8,-11,-9,-17,-9,-10,-8,-14,-9,-13,-12,-51/2,-13,-14,-10,-17,-10,-13,-12,-24,-13,-15,-13,-24,-16,-24,-24,-47,-23,-23,-15,-22,-12,-15,-13,-24,-12,-13,-9,-14,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-9,-8,-17,-9,-10,-7,-13,-8,-12,-12,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-10,-15,-8,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-23/2,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-7,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-29/2,-7,-8,-5,-8,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-9,-16,-10,-16,-15,-32,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-7,-13,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-29,-14,-15,-10,-16,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-59/2,-14,-15,-11,-18,-11,-15,-14,-28,-16,-20,-17,-31,-20,-31,-31,-64 --2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-8,-4,-4,-7/2,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,-32 --2,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,0,1,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,3,2,2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,1,1,1,-2,0,-1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-3,-1,-3/2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-23,-11,-23/2,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-11,-5,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-5,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-3/2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-11,-7,-11,-11,-23 --3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-9,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-5/2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-7/2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-19/2,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-5,-6,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-13,-7,-8,-7,-27/2,-9,-14,-14,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-9,-5,-7,-6,-11,-7,-11,-11,-18,-9,-9,-6,-19/2,-5,-7,-6,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-36 --1,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,0,0,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-17/2,-7,-13,-8,-25/2,-13,-27 --1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --2,-1,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,1,1,2,2,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-4,-5,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-20,-9,-9,-6,-10,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-11,-17,-17,-28,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-15/2,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-25/2,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-31/2,-8,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-14,-11,-21,-14,-22,-22,-45 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-4,-8,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-24 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,-2,0,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-7/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 --2,0,0,0,1/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1/2,0,0,0,1,1,2,2,3/2,1,0,0,-6,-2,-2,-2,-7/2,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-17,-8,-8,-5,-9,-4,-5,-4,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-12,-8,-23/2,-6,-7,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-4,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-12,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-13/2,-4,-5,-5,-13,-6,-7,-5,-17/2,-4,-6,-5,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-9,-9,-19,-9,-10,-7,-13,-7,-9,-8,-17,-9,-12,-10,-35/2,-11,-17,-17,-36 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-13,-8,-25/2,-13,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-11,-7,-10,-10,-21,-10,-9,-6,-10,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-19/2,-6,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-17/2,-8,-17,-9,-21/2,-8,-16,-10,-33/2,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-5,-3,-5,-9/2,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-9/2,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-16,-17/2,-10,-8,-16,-10,-16,-16,-33 --2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-37/2,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-8,-4,-4,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-13,-8,-12,-12,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-12,-7,-11,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-10,-16,-16,-34,-17,-17,-11,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-7,-8,-6,-12,-7,-10,-9,-37/2,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-24,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-25,-25,-42,-20,-20,-13,-19,-10,-13,-10,-19,-9,-10,-7,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-6,-8,-7,-15,-7,-7,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-25,-12,-13,-9,-15,-9,-13,-12,-24,-12,-14,-11,-20,-13,-20,-20,-42,-21,-21,-14,-21,-11,-14,-11,-20,-10,-11,-9,-16,-10,-14,-13,-25,-12,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-11,-17,-18,-37,-19,-20,-14,-22,-12,-16,-14,-26,-13,-15,-12,-22,-14,-20,-19,-38,-19,-20,-15,-25,-15,-20,-18,-34,-18,-22,-18,-33,-22,-33,-33,-66 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-4,-3,-6,-4,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-13/2,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 --1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-6,-2,-5/2,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-4,-3,-6,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-8,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-11/2,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-8,-15/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-15/2,-6,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-19/2,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-11/2,-11,-7,-10,-10,-22 -0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-11/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,1/2,0,0,0,3,2,2,2,3/2,2,2,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-11,-6,-7,-6,-21/2,-7,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-23/2,-7,-10,-9,-18,-10,-12,-10,-35/2,-11,-17,-17,-34 -1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-2,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,1/2,0,1,1,1/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,1/2,1,0,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 -1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-3/2,-1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-13/2,-10,-10,-21 -1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,1,1,1,2,2,2,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,4,3,3,2,3,2,2,1,1/2,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-13,-6,-6,-4,-6,-3,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-14,-7,-8,-7,-27/2,-7,-8,-6,-10,-5,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-25/2,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-15,-7,-8,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-9,-9,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-8,-13,-8,-12,-11,-43/2,-12,-14,-11,-21,-13,-20,-20,-40 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-11,-6,-7,-11/2,-11,-7,-10,-10,-21 -2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-1,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1/2,0,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-4,-4,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-4,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-11,-23 -2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-8,-17 -2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,3/2,1,0,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-3,-4,-4,-15/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-15/2,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-8,-9,-8,-15,-9,-14,-14,-29 -2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-5,-4,-9,-5,-8,-8,-18 -3,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-1,0,0,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1/2,0,1,1,0,0,-1,0,1/2,0,2,2,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-9/2,-4,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-6,-13,-8,-12,-12,-25 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 -4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-4,-7,-7,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-12,-8,-12,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-12,-12,-33,-16,-15,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-27/2,-6,-7,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-7,-13,-7,-9,-7,-13,-8,-11,-11,-23,-12,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23 -3,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-17,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-19,-9,-9,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-9,-4,-5,-3,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-7,-8,-6,-12,-8,-13,-13,-26 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15 -3,2,2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,3,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-19/2,-9,-19 -3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-3/2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-5,-3,-7,-4,-5,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-17 -5,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-4,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,7/2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-10,-5,-7,-6,-21/2,-5,-5,-4,-7,-4,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-15/2,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-11,-17,-17,-34 -4,5/2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-7/2,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18 -5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-11,-22 -5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-13,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-11/2,-9,-9,-18 -8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-3,-2,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,0,-1/2,0,0,0,-1,0,1,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,7/2,2,3,3,4,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,1,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-8,-8,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-8,-4,-5,-4,-17/2,-6,-9,-9,-25,-12,-12,-7,-19/2,-5,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-17/2,-5,-8,-8,-14,-7,-7,-4,-15/2,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-23/2,-6,-9,-8,-19,-10,-12,-9,-33/2,-10,-16,-16,-33 -6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-11/2,-16,-8,-8,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 -8,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,3,4,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-17/2,-8,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,4,2,2,2,2,2,5/2,3,5,3,3,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-25,-12,-23/2,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-11/2,-4,-7,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-11,-6,-17/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-16,-32 -8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-5/2,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-24,-23/2,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-9,-10,-8,-15,-10,-15,-15,-31 -15,8,8,5,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-17,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-11,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,1,1,1,2,2,4,3,3,3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-37,-18,-19,-13,-20,-11,-13,-11,-22,-11,-13,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-9,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-31/2,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-15,-7,-8,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-49,-24,-23,-15,-23,-13,-16,-13,-24,-12,-13,-10,-17,-10,-13,-12,-24,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-30,-15,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-11,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-16,-9,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-10,-9,-19,-10,-11,-9,-17,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-15,-30,-15,-17,-12,-20,-12,-16,-15,-31,-17,-20,-17,-32,-21,-31,-31,-62 -8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-8,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-17/2,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-9,-9,-24,-23/2,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -7,4,9/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-8,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,-1,-2,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,5/2,2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-10,-5,-5,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-5,-9,-5,-6,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,2,2,7/2,2,3,3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-14,-7,-7,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-26,-13,-13,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-7,-16,-8,-10,-8,-29/2,-10,-15,-15,-30 -4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1/2,0,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-11/2,-6,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-21 -4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,0,1,1,1,2,2,2,2,5/2,2,2,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-7,-5,-8,-8,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,3/2,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,-5,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-4,-4,-4,-8,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-27,-13,-13,-9,-14,-7,-8,-6,-25/2,-6,-6,-4,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-15,-10,-16,-16,-33 -4,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -3,2,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,1,1,1/2,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,1,2,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19 -2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,1,2,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 -3,2,2,2,5/2,2,2,2,4,2,2,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,-1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-2,-11/2,-3,-5,-5,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,1,1/2,1,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,2,2,2,2,1,1,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,1,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7/2,3,4,4,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,1,3/2,2,2,2,2,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-3,-3,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-21/2,-7,-11,-11,-24 -2,1,1,1,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-15 -2,1,1,1,2,2,3/2,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,-2,0,0,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-2,-3,-2,-4,-2,-4,-5,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,3/2,2,2,2,2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-6,-6,-15,-7,-15/2,-4,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-19/2,-10,-21 -2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,2,3,5/2,4,3,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,1/2,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-13/2,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20 -3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,1,1/2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5/2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-23/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-13,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-8,-5,-9,-5,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-40 -2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1/2,-1,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-2,-1,-2,-1,-3,-3/2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-20 -2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,1,1,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,7/2,3,4,3,4,4,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-13/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,1,1,0,0,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-10,-6,-19/2,-10,-20 -2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,0,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,9/2,4,5,5,0,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-16,-7,-7,-4,-6,-3,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-2,-3,-2,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-21 -2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,-1/2,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-3,-5,-5,-12 -2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,1,1,2,2,2,2,2,1,2,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,4,3,4,4,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 -1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,2,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,3,2,2,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,2,3,7,4,3,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,3,5,3,4,3,5,3,3,3,7,4,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,2,2,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-5,-10,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-6,-11,-7,-12,-12,-26 -1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,1/2,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-14 -1,1,1,1,2,2,3/2,2,0,0,1/2,1,2,2,2,2,0,1,1,1,0,1,3/2,2,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,2,1,1,1,0,1,3/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,3,2,5/2,2,5,3,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,9/2,4,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-5,-8,-8,-17 -1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,0,1,1,1,0,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-7/2,-6,-6,-13 -0,0,0,0,1/2,1,2,2,0,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1/2,0,0,0,-3,-1,-1,0,-1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,2,3/2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,2,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,4,3,7/2,3,4,4,7,4,4,3,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,3,3,2,4,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,-1,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-3/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,0,1,1,1,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,6,4,9/2,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,5,5,7,4,9/2,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-1,0,1/2,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-5,-13,-6,-13/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-11,-23 --2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,0,1,0,1,1,2,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,4,7,4,4,7/2,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,7/2,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-1,0,0,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-11/2,-10,-6,-10,-11,-23 --5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,1,1,2,2,2,1,1,1,2,2,5/2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,3,3,4,4,6,3,3,3,4,3,4,5,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,4,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,1,2,2,2,2,4,3,4,4,7,4,5,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,4,5,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,4,4,7,5,6,5,8,5,7,7,27/2,7,7,5,8,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,3,5,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-11,-6,-8,-7,-15,-8,-10,-9,-17,-11,-18,-18,-29,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-14,-14,-59/2,-14,-15,-10,-16,-9,-12,-10,-20,-10,-12,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-47 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,5/2,3,5/2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,5,3,4,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,3/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,1,1,1,0,1,3/2,2,2,1,1/2,0,2,2,3/2,1,1,1,3/2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,2,2,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,7,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,7/2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,4,6,4,5,5,7,4,9/2,4,5,3,7/2,3,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-16 --3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,0,0,0,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,3/2,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,7/2,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,4,4,11/2,4,6,6,6,4,4,3,7/2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,5,4,13/2,4,6,6,8,5,5,3,4,3,3,3,4,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-5,-4,-6,-3,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-25 --1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,2,3/2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,3,0,0,0,1,1,1,1/2,0,2,1,1,1,2,2,3/2,2,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,2,2,0,0,0,1,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16 --3,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,4,3,3,2,3,2,2,2,3/2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,2,5/2,1,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,15/2,4,5,4,6,4,6,7,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13/2,4,4,4,7,5,8,8,11,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,5,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-20,-9,-9,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-3,-14,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-31 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,5,5,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 --2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,4,9/2,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,1,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-8,-18 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,3/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 --2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,2,7/2,2,2,2,4,2,2,2,3/2,2,2,1,3,2,2,1,1/2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,0,0,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,5,3,3,2,7/2,2,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,7/2,3,4,4,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,5,5,6,4,4,3,9/2,3,3,3,5,3,4,3,4,3,4,4,4,2,2,2,7/2,2,3,3,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,5/2,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,2,2,2,3/2,1,1,1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-17/2,-4,-6,-6,-12,-6,-8,-6,-25/2,-8,-13,-13,-26 --1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,3/2,2,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,3,2,3,5/2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1/2,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-16 --2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,1,1,1,1,1,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,2,1,1/2,1,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,1,1,3/2,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,3,3,9/2,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,7/2,3,4,2,2,2,4,2,2,2,3,2,7/2,4,8,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,7/2,3,3,2,7/2,4,4,3,3,3,4,3,4,4,7,4,9/2,4,7,5,7,7,11,6,6,4,5,3,7/2,3,5,3,7/2,2,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-2,-6,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1/2,0,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-9/2,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-12,-7,-11,-11,-23 --4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,3/2,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,4,4,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,11/2,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,3,3,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9/2,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,5/2,2,2,3,5,3,4,4,8,5,5,4,7,5,8,8,6,4,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,16,9,9,6,8,5,7,6,10,6,7,5,8,5,6,5,17/2,4,4,3,5,4,5,5,9,6,7,6,10,7,9,9,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,17/2,5,6,4,6,4,5,5,10,6,7,6,10,7,10,11,19,10,10,7,9,5,5,4,7,4,5,4,5,3,4,4,15/2,4,4,3,4,3,4,3,5,3,3,2,3,2,2,1,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,7/2,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-14,-9,-14,-14,-28,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-6,-21,-10,-10,-6,-10,-5,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-14,-9,-14,-13,-25,-12,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-45/2,-11,-12,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-22,-22,-46 --1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1/2,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,3/2,1,2,1,1/2,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,10,5,5,4,6,3,3,3,5,3,7/2,2,4,3,3,3,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-25 -0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,5/2,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18 -0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,2,3,3,3,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,-1,0,-1,0,-1,0,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,2,2,4,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,0,0,0,1,3/2,2,2,1,2,2,2,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,4,3,9/2,4,5,5,5,3,3,3,9/2,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,8,5,6,4,13/2,4,6,6,12,7,7,5,6,4,5,4,6,4,4,4,11/2,4,5,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,5,7,7,11,6,6,4,11/2,3,3,2,5,3,3,3,9/2,3,3,3,6,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-21,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-14,-6,-6,-4,-11/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-9,-8,-15,-10,-15,-15,-30 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-18 -0,0,1/2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,2,1,1,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,3,2,5/2,3,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,5,3,4,3,4,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,4,3,5,4,11/2,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,5,3,7/2,3,4,3,7/2,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,4,7,5,6,6,8,5,5,4,5,3,3,2,4,2,5/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24 -1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,2,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,5,3,3,3,4,5/2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -1,1,1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,2,2,1,1,1,1,0,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,9/2,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,9/2,3,4,3,4,3,3,3,7,4,4,3,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,1,3,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,1,2,2,2,2,3,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,5,7,7,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,10,7,9,9,17,9,10,7,11,6,7,6,11,6,7,6,9,6,7,6,9,5,5,4,5,4,5,5,9,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,4,2,2,1,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-32,-15,-15,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20,-10,-11,-7,-12,-6,-8,-6,-25/2,-6,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-43/2,-12,-14,-11,-21,-14,-21,-21,-42 -1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,11/2,10,11/2,6,4,6,4,4,4,6,4,4,7/2,5,7/2,4,4,6,3,3,5/2,4,3,3,3,6,4,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,9/2,5,4,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,3,5/2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,2,2,3/2,1,1,1,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,3/2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,3,2,5/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,5,3,7/2,3,3,2,7/2,4,5,3,7/2,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,13/2,6,11,6,13/2,4,7,4,5,4,7,4,9/2,4,6,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,13/2,6,11,6,13/2,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,7,4,11/2,5,7,4,11/2,5,8,6,15/2,7,9,5,5,4,5,3,7/2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3/2,2,1,1,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-22,-10,-21/2,-6,-10,-5,-6,-5,-11,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-27/2,-14,-28 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,6,11/2,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,11/2,9,5,6,4,6,4,4,4,6,4,4,7/2,5,4,5,9/2,8,9/2,5,4,6,7/2,4,4,6,4,4,4,6,9/2,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,2,2,2,2,0,0,0,1,3/2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,6,3,3,2,5/2,2,2,1,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-13/2,-4,-6,-6,10,6,6,4,11/2,4,4,3,5,3,3,2,7/2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,5,3,4,3,9/2,3,4,4,6,4,4,3,9/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,4,6,6,12,7,7,5,13/2,4,6,6,11,6,6,5,17/2,6,9,9,16,9,9,6,8,5,6,5,10,6,6,5,15/2,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,13,7,7,6,9,6,7,6,10,6,6,6,19/2,7,10,10,13,7,7,5,7,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,7/2,3,4,3,3,2,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-12,-11,-33,-16,-16,-10,-33/2,-9,-11,-9,-17,-8,-9,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-19,-9,-9,-6,-17/2,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-8,-27/2,-8,-11,-10,-19,-10,-13,-11,-20,-13,-20,-20,-41 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,3/2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,7/2,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-22,-10,-10,-6,-11,-6,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1/2,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,10,6,11/2,4,6,4,4,3,5,3,7/2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,5/2,2,3,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,9,5,5,4,6,4,5,5,7,4,9/2,4,6,4,13/2,6,11,6,7,5,6,4,5,5,9,6,13/2,5,8,6,17/2,8,16,8,17/2,6,9,6,13/2,6,9,5,11/2,4,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,10,7,19/2,9,16,9,9,7,10,6,13/2,6,10,6,13/2,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,13/2,6,10,7,21/2,10,13,7,15/2,5,7,4,5,4,7,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-23/2,-11,-33,-16,-16,-10,-17,-9,-21/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-9,-5,-7,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-3,-4,-3,-8,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-6,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,11,6,6,4,6,4,4,3,5,3,4,5/2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,11/2,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,11/2,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,9/2,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,9,13/2,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,8,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-33,-16,-16,-10,-17,-9,-10,-9,-17,-17/2,-10,-7,-12,-7,-10,-9,-19,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-7/2,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-9/2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-13,-13/2,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 --1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,1,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,11/2,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,3,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,3,4,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,10,8,13,8,11,11,20,12,14,12,20,14,20,20,26,13,13,9,12,7,7,6,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-8,-9,-6,-11,-7,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-68,-33,-33,-22,-34,-19,-23,-19,-34,-17,-19,-14,-24,-15,-21,-20,-39,-19,-20,-14,-22,-12,-16,-14,-26,-14,-16,-13,-23,-14,-21,-21,-42,-20,-20,-13,-21,-11,-13,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-14,-9,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-11,-9,-18,-9,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-11,-17,-17,-34,-16,-16,-11,-17,-9,-11,-10,-19,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-12,-14,-11,-19,-12,-17,-17,-34,-17,-18,-12,-20,-12,-16,-15,-29,-16,-19,-16,-29,-19,-28,-28,-58,-29,-29,-19,-29,-16,-20,-17,-32,-16,-18,-13,-23,-14,-19,-18,-35,-18,-19,-13,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-27,-27,-54,-27,-28,-19,-30,-17,-22,-19,-35,-18,-20,-15,-26,-16,-24,-23,-46,-23,-24,-17,-28,-17,-23,-21,-41,-22,-26,-22,-40,-26,-40,-40,-80 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,11,6,6,9/2,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,5/2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,7,9/2,6,6,10,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-9/2,-10,-5,-7,-6,-11,-7,-11,-11,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-6,-8,-13/2,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-15/2,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-8,-15,-15/2,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-10,-11/2,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-9,-17,-17/2,-10,-7,-12,-8,-12,-11,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-39 -0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,9/2,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,9/2,4,8,4,9/2,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,1,1,1,1/2,0,0,0,1/2,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,4,4,6,4,5,5,9,5,11/2,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,11/2,6,10,6,7,6,10,7,21/2,10,14,8,8,5,7,4,9/2,4,5,3,3,2,4,2,5/2,2,4,2,2,2,3,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-10,-5,-7,-6,-12,-7,-11,-11,-33,-16,-16,-10,-16,-8,-21/2,-9,-16,-8,-9,-6,-11,-6,-19/2,-9,-20,-10,-10,-6,-10,-6,-15/2,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-6,-9,-5,-6,-6,-12,-6,-13/2,-5,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-14,-8,-19/2,-8,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-15/2,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-21/2,-9,-16,-8,-19/2,-7,-12,-8,-23/2,-11,-22,-11,-23/2,-8,-14,-8,-11,-10,-21,-11,-13,-11,-20,-13,-19,-19,-39 -0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,7/2,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,8,9/2,5,4,5,3,4,3,4,3,3,2,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,9/2,5,4,7,5,7,7,10,6,6,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-6,-3,-4,-7/2,-8,-9/2,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-14,-7,-9,-7,-13,-8,-13,-13,-26 -0,1,1,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,7/2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3/2,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,3,2,2,2,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,13/2,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,11/2,4,6,5,8,5,5,4,13/2,4,6,6,11,6,7,6,19/2,7,10,10,15,8,8,6,8,5,5,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-5,-7,-6,-23/2,-8,-12,-12,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-23/2,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-22,-10,-10,-6,-19/2,-5,-6,-5,-9,-4,-5,-3,-11/2,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-15,-8,-10,-8,-29/2,-9,-14,-14,-30,-15,-15,-10,-15,-8,-9,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-15,-8,-9,-7,-27/2,-8,-12,-12,-29,-14,-14,-10,-31/2,-8,-10,-9,-16,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-27/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-13,-20,-20,-40 -0,1,1,1,0,1,1,1,0,0,0,1/2,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,6,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1/2,0,0,1,1,1,-1,0,1,1,0,0,1/2,1,0,0,1/2,0,1,1,3/2,1,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,7,4,4,3,5,3,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,3,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,9/2,5,8,4,9/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,4,4,6,4,4,4,7,4,9/2,4,7,5,7,7,10,5,5,4,6,4,4,3,3,2,3,2,3,2,3/2,1,4,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-9/2,-4,-7,-4,-15/2,-8,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-8,-4,-6,-5,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-14,-6,-6,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-13,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-19/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-20,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-11/2,-4,-9,-5,-15/2,-7,-15,-7,-15/2,-6,-9,-5,-15/2,-6,-14,-7,-9,-7,-14,-9,-27/2,-13,-27 -0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,0,0,0,1,1,1,-1,0,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,3,2,3,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-6,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-5,-8,-8,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-4,-6,-5,-12,-6,-7,-6,-11,-7,-10,-10,-22 --1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,9,5,5,4,5,3,4,4,13/2,4,4,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,9/2,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,7,7,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,6,6,8,5,5,5,8,5,6,6,21/2,6,8,7,12,8,11,11,15,8,8,5,7,4,4,4,11/2,3,3,2,3,2,2,2,6,3,3,2,2,2,2,1,1/2,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-16,-16,-10,-16,-8,-10,-8,-31/2,-8,-9,-7,-12,-7,-9,-8,-20,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-3,-4,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-11,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-18,-9,-9,-6,-9,-5,-8,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-18,-9,-10,-7,-11,-6,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-12,-24,-12,-12,-9,-15,-9,-12,-11,-22,-12,-14,-11,-21,-13,-20,-20,-40 -0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,1,0,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-11/2,-10,-6,-10,-10,-21 -0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,6,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,1,1,1,1,1,1,1,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,-1,0,0,1,0,0,0,1,2,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,7/2,4,7,4,5,4,8,5,7,7,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-19,-9,-9,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-13/2,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-23 -0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,5/2,5,3,4,7/2,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -0,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,1,1,1,1,2,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-3,8,5,5,4,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,2,2,2,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,2,2,2,0,0,0,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,4,4,11/2,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,8,5,6,5,9,6,8,8,12,7,7,5,7,4,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,-2,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-5,-3,-6,-6,-24,-12,-12,-7,-21/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-3,-9,-4,-5,-4,-17/2,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-7,-14,-9,-13,-13,-28 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-3/2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,4,5/2,2,2,3,2,2,2,5,3,4,7/2,6,4,5,5,8,9/2,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-3/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-4,-8,-5,-8,-8,-17 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,9/2,3,5,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,5/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,3,4,3,7/2,3,5,4,5,5,7,4,9/2,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,3,3,6,4,9/2,4,7,5,13/2,6,10,6,11/2,4,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,-1,0,0,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-1,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-17,-8,-17/2,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-14,-7,-15/2,-6,-10,-6,-15/2,-7,-13,-7,-8,-6,-12,-8,-23/2,-12,-24 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,5,3,4,3,5,3,3,2,3,5/2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1/2,0,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,10,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,0,0,0,0,-1,0,0,0,0,1,2,2,4,3,4,4,15/2,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,8,4,4,3,5,3,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-6,12,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,10,5,5,4,6,4,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,5,6,5,8,5,7,7,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,11/2,3,3,2,3,2,3,3,5,3,4,4,6,5,7,8,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,11,18,10,10,7,9,5,6,5,8,4,4,3,4,3,3,2,7/2,2,2,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-39,-19,-19,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-32,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-11,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-15,-23,-23,-47 -0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,1,0,1,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-2,-1,-2,-2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,5/2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5/2,4,3,4,3,4,3,4,4,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24 -0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,3,2,2,2,4,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,1,1,3/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-5/2,-2,7,4,7/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,1,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,3,4,3,7/2,3,4,3,9/2,4,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,3,3,6,4,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,11/2,4,6,4,4,3,5,3,5/2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,0,0,0,0,0,0,1/2,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-23/2,-12,-25 -0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,3/2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-4,-5,-7/2,-7,-5,-8,-8,-17 --1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,-1,1,1,2,2,3/2,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,7,4,4,3,4,3,3,2,4,2,2,2,7/2,2,3,3,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,2,2,0,1,1,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,4,3,3,3,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,9/2,3,4,5,7,4,4,3,4,3,4,4,6,4,4,3,7/2,2,3,3,8,5,5,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,11,6,6,4,11/2,4,4,3,6,3,3,2,7/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-1,0,0,0,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-20,-10,-10,-6,-21/2,-6,-7,-5,-9,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-13,-13,-27 -0,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1/2,1,3,2,2,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,-1,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,3,3,3,2,2,2,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,4,3,4,4,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,8,4,9/2,3,4,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-13,-6,-11/2,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-20 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1/2,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,5/2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,11/2,7,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 -0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,2,2,9/2,3,3,2,3,3,4,4,2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,6,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,8,4,4,3,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3/2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,19/2,6,6,6,10,7,10,9,12,7,7,5,6,4,4,3,9/2,2,2,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34 -0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-11/2,-9,-9,-18 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,3,2,2,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,4,3,7/2,4,1,1,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,8,4,9/2,3,4,3,3,3,3,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-3,-7,-3,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15 -0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,5/2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,4,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,5/2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,3,5,4,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,13/2,4,5,5,7,4,4,4,11/2,4,4,4,5,3,3,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,8,6,8,9,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-17,-8,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-27 -1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,5/2,4,3,4,7/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,4,5,4,9/2,4,5,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,1,1,3/2,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-4,-3,-7,-4,-13/2,-6,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-11/2,-6,-11,-6,-8,-6,-12,-8,-25/2,-12,-26 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,5/2,3,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,5,7/2,4,4,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,9/2,6,4,4,7/2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-25 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,0,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,9/2,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,-1,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,9/2,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,6,4,4,4,7,5,7,7,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,15/2,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,5,9,6,8,8,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,29/2,8,8,6,10,6,7,6,10,6,7,5,8,6,8,8,14,8,9,7,11,7,9,9,17,10,11,9,16,11,16,17,25,13,13,9,13,7,8,7,11,6,5,4,5,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-12,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-31,-15,-16,-11,-17,-9,-11,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-25,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-11,-11,-7,-12,-7,-9,-8,-17,-9,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-10,-14,-13,-27,-14,-17,-14,-26,-17,-25,-25,-50 -1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,1,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,7/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-13/2,-12,-6,-6,-3,-5,-5/2,-3,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-7/2,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-13/2,-8,-7,-13,-8,-12,-12,-25 -1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,1,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,7/2,4,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,4,3,7/2,2,4,2,5/2,2,5,3,7/2,3,5,4,5,5,1,1,1/2,0,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,4,7/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-12,-12,-25 -1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,1,1,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,5/2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1,1,2,2,2,2,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,2,2,2,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,0,0,1,1,1,0,-1,0,-1,-1,3,2,1,1,1,1,2,2,4,2,2,2,5/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,0,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,1,1,1,2,2,4,3,3,2,7/2,3,4,3,2,2,2,2,5/2,2,2,1,2,2,2,2,5/2,2,2,3,4,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,5,3,3,3,9/2,4,5,5,0,1,1,1,1/2,1,1,2,2,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,4,8,4,4,3,9/2,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,13,7,8,6,8,5,5,4,6,4,4,3,3,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-4,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-26 -1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,0,1,1,1,0,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1/2,0,0,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,9/2,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 -0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,1,0,1,1,1,1,1,1,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,0,1,1,1/2,0,2,2,2,1,2,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,3,3,2,3,2,3,2,5/2,2,4,3,7/2,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,-1/2,-1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-17 -0,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,2,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,-1/2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-2,-3,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-7,-7,-14 --2,0,0,1,1,1,2,2,5/2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,-4,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,1,1/2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,5/2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,7/2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,0,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,7,4,4,3,4,2,2,2,7/2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,11/2,4,4,3,5,3,4,4,2,2,2,1,1,1,2,2,7/2,2,2,2,3,2,3,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,10,5,5,4,6,4,6,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,4,13/2,4,4,3,4,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-2,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-24,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-15,-7,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-8,-4,-6,-6,-25/2,-6,-8,-6,-12,-8,-12,-12,-26 -0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,1,1,2,2,2,2,5/2,2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,0,0,1/2,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,5,3,4,3,3,2,5/2,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,3,3,5,3,4,4,6,4,11/2,6,7,4,9/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,1,1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-3,-7,-4,-7,-7,-15 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,9/2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11 --1,0,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,3/2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,3/2,2,2,2,2,2,2,1,1/2,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,3,3,4,3,3,2,2,1,1,0,-1,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,7/2,3,4,3,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,2,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,4,6,4,5,4,13/2,4,6,7,10,6,6,4,11/2,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1/2,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,9/2,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,1,0,0,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,1,1,0,0,0,0,1/2,1,0,1,1,1,2,2,2,2,3,2,1,1,-1,0,1/2,1,0,1,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,2,1,2,2,5/2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,3,3,3,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-3/2,-2,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-5,-8,-8,-17 --2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,3/2,1,1,-1,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-16 --5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3,3,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,13/2,4,3,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,11,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,13/2,4,4,4,6,4,5,5,9,6,7,6,9,6,9,9,15,8,8,5,7,4,5,4,5,3,4,3,5,3,3,3,5,3,3,2,3,2,1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-4,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-24,-12,-12,-8,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-5,-4,-9,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-8,-33/2,-8,-9,-6,-10,-5,-7,-7,-14,-7,-9,-8,-16,-10,-16,-16,-33 --2,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,5,3,4,7/2,5,4,5,5,8,5,5,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-3/2,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 --3,-1,-1,0,-1,0,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,0,-1,0,1,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,5,3,5/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,3,4,2,5/2,2,3,3,4,4,5,3,4,4,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,3/2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17 --2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --3,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,7/2,3,4,4,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,4,11/2,4,6,6,11,6,6,4,11/2,3,3,3,3,2,2,2,5/2,2,3,3,1,1,1,1,2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-2,-2,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1/2,0,0,-1,-2,-1,-2,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-4,-3,-8,-4,-5,-4,-17/2,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --2,-1,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,1,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,7/2,3,4,2,5/2,2,4,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,9,5,9/2,3,5,3,3,3,4,2,5/2,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-12,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-14 --1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,1,1,2,2,2,3/2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1/2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,9/2,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-13 --2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,1,1,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,5,3,3,2,3,2,1,1,1/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,15/2,5,6,6,10,7,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,1,1,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-25 -0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-6,-6,-13 -0,1,1,1,-1,0,1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,7/2,4,6,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,4,5,4,9/2,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-7,-7,-15 -0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-12 --1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-3,-1,-1,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,9/2,3,4,4,9,5,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,3,4,3,3,2,5/2,2,3,3,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,5,8,5,6,5,17/2,6,8,9,15,8,7,5,13/2,4,5,4,8,4,4,3,7/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-9/2,-3,-5,-5,-2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,11/2,5,4,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-5,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14 --2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,5,3,4,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,11/2,5,10,6,11/2,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,4,3,7/2,3,5,4,9/2,4,9,5,11/2,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,15/2,5,8,5,11/2,4,7,4,4,3,4,3,3,3,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-11/2,-5,-12,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-15,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,7/2,5,4,6,5,10,6,6,4,6,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,4,5/2,3,2,4,5/2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,7/2,4,4,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,0,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,4,5,5,8,5,5,3,4,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,6,8,9,35/2,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,9,5,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,9,9,16,9,11,9,15,11,16,16,27,14,15,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,2,1,0,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-6,-9,-9,-37,-18,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-14,-8,-12,-12,-47/2,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-16,-11,-17,-17,-32,-15,-15,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-16,-9,-12,-10,-19,-10,-13,-10,-19,-12,-18,-17,-35,-17,-18,-12,-20,-11,-13,-11,-22,-11,-13,-10,-17,-10,-14,-13,-26,-13,-13,-9,-15,-8,-11,-9,-18,-9,-11,-9,-16,-10,-16,-16,-33,-16,-17,-11,-17,-9,-12,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-16,-11,-17,-10,-13,-12,-24,-12,-14,-11,-21,-14,-21,-21,-43 --2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,5/2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,3,3,6,4,4,3,4,5/2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,5/2,3,5/2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-9/2,-9,-9/2,-6,-9/2,-9,-11/2,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,3,7/2,3,4,3,7/2,3,3,2,3,3,4,3,3,3,6,4,4,3,4,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,4,5,4,5,5,9,6,13/2,6,8,6,17/2,8,14,8,15/2,6,8,5,5,4,8,5,5,4,5,4,9/2,4,6,4,4,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,6,4,7/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,2,2,3/2,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-11/2,-4,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-13/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 -0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,9/2,6,6,10,6,6,4,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-11/2,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-14 --1,0,0,0,0,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,6,4,4,3,7/2,3,4,4,4,3,3,2,3,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,9/2,3,4,5,10,6,6,4,13/2,4,5,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,3,3,3,2,2,2,7/2,3,4,4,6,4,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,9,5,6,4,11/2,4,6,6,10,6,6,6,19/2,6,9,9,14,8,8,5,13/2,4,4,4,8,5,5,4,5,4,5,4,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,5,3,3,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-5/2,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-19,-9,-8,-5,-17/2,-4,-6,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-9,-9,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22 -0,1/2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-11/2,-12 -1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,7/2,4,7,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,3,3,2,2,2,3,3,7,4,9/2,3,4,3,9/2,4,8,5,5,4,8,5,7,7,9,5,5,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,4,3,3,2,3,2,3/2,2,2,1,1,1,1,1,1,1,4,2,5/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-14 -1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,3/2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 -1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-3,-1,-1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,1,1,1,1,2,3,2,3,3,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,-1,0,1,1,2,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,2,-1,0,0,0,0,1,1,1,3/2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,1,1,1,1,2,2,5,3,3,2,3,2,3,3,9/2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,4,2,2,2,2,2,2,2,9/2,3,4,3,5,4,5,4,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,10,6,6,5,8,5,6,6,23/2,7,8,7,11,7,10,10,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,7/2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,1,1/2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-2,-1,-1,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-6,-6,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21 -1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,3/2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,1,1/2,0,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,3/2,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,3,2,7/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,3,3,3,3,2,7/2,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,7/2,4,6,4,4,4,6,4,13/2,6,8,4,9/2,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,5/2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-11/2,-6,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-11/2,-6,-12 -2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,5,3,3,3,5,4,5,5,6,7/2,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,-1,1,1,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,0,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,3/2,1,1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,-1,0,0,1,2,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-3/2,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,5,3,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,11,6,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,9/2,3,3,3,6,4,4,3,9/2,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,0,0,0,0,-3/2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-11/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-8,-8,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,5/2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,6,7/2,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-4,-4,-8 -2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,1,0,1,3/2,1,1,1,2,2,1,1,2,2,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,2,2,3/2,2,2,2,5/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,0,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,5,3,3,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,7/2,3,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,2,4,3,7/2,4,10,5,5,4,5,3,3,3,5,3,5/2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,7,4,4,3,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,9/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,3/2,1,2,2,3/2,1,0,0,0,0,-1,0,-3/2,-2,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-13,-6,-11/2,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-12 -2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,2,3/2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1/2,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,4,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,9,5,5,7/2,4,3,3,3,4,5/2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,5/2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,4,4,7/2,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12 -3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,3,-1,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,10,5,5,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,7/2,2,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,2,4,2,2,2,3,2,3,3,6,4,5,5,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,17,9,9,6,9,6,7,6,11,6,6,4,6,4,4,4,15/2,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,23/2,6,7,5,8,5,6,6,11,7,8,7,13,9,13,13,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7/2,2,2,1,1,1,0,0,0,0,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,1,1,1,1,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-23,-11,-11,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-12,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-9,-23,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1/2,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,3/2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12 -3,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,1,2,5/2,2,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,5,3,3,2,3,2,3/2,2,3,2,2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,9,5,11/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,5,5,8,6,8,8,8,4,9/2,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,-1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-13/2,-6,-10,-4,-9/2,-2,-5,-2,-7/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-9/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13 -3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,3/2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,6,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9 -6,4,4,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,5/2,2,2,3,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,5/2,2,3,3,7,4,3,2,3,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,-1,-1,2,2,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,-1/2,0,0,-1,-1,0,-1,0,-3/2,-1,-2,-1,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,-1,6,3,3,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,3,3,2,7/2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,4,4,5,3,4,3,9/2,3,4,4,6,4,4,3,5,4,5,5,6,4,4,4,11/2,4,4,4,6,4,6,5,17/2,6,8,8,8,5,5,4,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-13,-6,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-7,-7,-14 -4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,5,5,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 -6,4,4,3,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,5/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,5/2,2,3,2,3/2,1,2,2,2,2,2,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,0,0,-5,-2,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,0,0,1/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,5/2,2,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,3,2,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,5,5,5,3,7/2,3,5,3,4,3,5,4,5,4,7,5,7,7,7,4,9/2,4,4,3,7/2,3,5,3,4,3,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-6,-3,-9/2,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 -6,3,3,5/2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,3/2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,3/2,2,2,2,3/2,2,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1/2,0,1/2,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-10 -10,6,6,4,5,3,4,3,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,11/2,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,3,3,3,4,2,2,1,1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,1,1,1,0,0,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,-1,0,0,1,1,1,0,0,1/2,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,4,3,5,5,8,5,5,3,4,3,3,3,6,3,3,2,3,2,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,8,5,5,4,6,4,6,5,9,6,8,7,12,8,12,12,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,1,2,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,4,3,3,3,4,3,3,2,5/2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-4,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-19 -6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,5,3,3,3,4,3,4,7/2,6,4,5,4,7,5,7,7,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-9/2,-10 -8,4,9/2,3,4,3,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,7/2,3,4,2,5/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,0,-1/2,0,-1,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,5,3,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,11/2,4,7,5,7,7,9,5,11/2,4,6,4,4,4,5,3,7/2,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-11 -7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,3/2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1/2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,5/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-8 -11,6,6,4,11/2,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,7/2,2,2,2,3,2,3,2,3,3,4,4,3,2,2,2,3/2,1,1,1,3,2,3,2,3,3,4,4,5,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-2,-2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1/2,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,-7,-3,-3,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,2,2,2,2,3,3,4,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,5,3,3,3,9/2,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,9/2,3,4,4,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,3,3,4,3,3,3,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,12,7,7,5,15/2,5,6,5,8,4,4,3,9/2,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,1,1,2,0,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,1,4,3,3,2,2,2,2,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-15 -8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,3,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,9,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,3,2,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,7/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,5,4,5,4,10,5,5,4,5,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,13/2,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,5,7,4,9/2,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,4,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,4,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,4,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,9/2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-5/2,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-5,-4,-8,-5,-7,-7,-15 -21,11,12,9,13,8,9,8,13,7,7,5,7,5,6,5,9,5,5,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,6,6,10,6,6,4,6,3,3,2,3,2,2,2,2,2,3,3,6,3,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,18,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,10,17,12,18,18,25,13,13,9,12,7,8,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,4,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,5,3,3,2,3,2,3,2,3,2,1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-19/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-21,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,9/2,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,-1/2,-2,-2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,13/2,10,10,13,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 -12,7,7,5,8,5,11/2,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,2,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,9/2,4,6,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,7/2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,7/2,3,4,3,7/2,3,4,3,9/2,4,10,5,5,4,6,4,7/2,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,5,4,5,4,11/2,5,8,5,6,5,8,6,10,10,14,8,15/2,5,6,4,5,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,0,0,1/2,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-15 -8,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,3,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,2,2,3,3,4,7/2,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,9/2,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 -12,7,7,5,15/2,4,5,4,7,4,4,3,9/2,3,4,4,5,3,4,3,7/2,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,6,4,4,3,7/2,3,4,3,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,5,5,8,4,4,3,5,3,3,2,4,3,3,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,0,0,1,1,0,0,-1/2,0,0,-1,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,-7,-3,-4,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,1,1,2,2,2,2,4,3,3,2,5/2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,1,3/2,2,2,1,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,11/2,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,10,6,6,4,11/2,3,3,3,5,3,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,5/2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,14,7,7,5,7,4,5,5,8,5,5,4,5,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,2,2,2,2,3/2,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-17 -7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,3/2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,2,5/2,6,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,8,9/2,4,3,5,3,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-10 -8,5,5,4,6,4,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,2,2,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,6,4,9/2,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,1,1/2,1,2,1,1/2,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,4,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,3,7,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,4,3,3,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,10,6,11/2,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,-1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13 -7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,3,2,3,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,5/2,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-11 -13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,11/2,3,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,9/2,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,2,2,2,3/2,1,1,1,0,0,-1,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,0,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-2,5,3,3,2,3,2,3,2,7/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,7,4,4,3,5,3,3,3,5,4,5,4,7,5,6,6,13,7,7,5,6,4,4,4,13/2,4,4,3,4,3,3,3,8,5,5,4,5,3,3,3,9/2,3,3,3,4,3,5,5,4,3,3,2,2,2,3,3,11/2,4,4,3,5,3,4,4,10,5,5,4,6,4,6,6,21/2,6,8,6,10,7,10,11,16,9,9,7,10,6,7,6,17/2,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,4,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-21/2,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-5,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-12,-7,-11,-11,-22 -8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,5/2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,2,2,2,3/2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12 -9,5,5,4,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,3,3,4,2,5/2,3,4,3,3,3,4,3,4,4,5,3,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,4,9/2,4,7,4,4,3,5,3,3,2,2,2,3/2,2,2,2,2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,5/2,2,3,2,3/2,1,1,1,1/2,0,0,0,1/2,0,2,1,1,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,0,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,3/2,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,4,3,3,2,4,2,2,2,4,3,4,3,5,3,4,4,9,5,5,4,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,7/2,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,7/2,3,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,3/2,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-6,-6,-12,-5,-5,-3,-7,-3,-4,-3,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14 -8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,5/2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,7/2,4,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,-1/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,4,6,4,6,6,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1/2,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11 -13,7,6,4,13/2,4,5,5,8,5,5,4,13/2,4,5,5,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,13/2,4,4,4,8,5,6,5,7,4,5,5,9,5,5,4,6,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,7/2,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,1,1,1,2,2,5,3,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,2,1,1,1,3/2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,3,4,4,5,3,3,3,9/2,4,5,5,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,10,6,7,6,10,7,10,9,13,7,7,5,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1/2,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1/2,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-9,-9,-6,-17/2,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-9,-6,-9,-9,-19 -9,5,4,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,6,7/2,4,3,5,3,4,7/2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,1,1,1,0,0,0,0,0,-1/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,5/2,3,5/2,3,7/2,7,4,5,4,7,5,7,6,8,5,5,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,3/2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,1/2,1,1,0,0,0,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 -13,7,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,7/2,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,5,3,5/2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1/2,1,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,11,6,6,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,4,3,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,7/2,3,4,3,4,5,9,6,13/2,5,9,6,9,9,11,6,6,4,6,3,3,2,5,3,3,2,4,3,3,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-7,-7,-16,-8,-15/2,-5,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-5,-4,-8,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-9/2,-4,-7,-5,-8,-8,-17 -13,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,5/2,4,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1/2,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,7/2,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,4,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,9/2,8,5,6,5,8,6,8,17/2,10,6,6,4,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,1,1,1,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-15/2,-16 -24,13,13,9,12,7,9,8,14,8,9,7,10,6,7,6,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,8,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,11/2,4,4,3,5,3,4,4,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,5,7,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,6,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,20,10,10,7,9,5,6,5,8,4,4,3,5,4,5,5,19/2,6,6,4,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,7,6,9,6,9,9,17,10,11,9,15,11,16,16,18,9,9,6,8,5,5,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,0,0,0,0,0,1,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-6,-13,-7,-8,-7,-13,-9,-15,-15,-28,-14,-14,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-9,-18,-9,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-8,-35/2,-8,-9,-6,-11,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-33 -13,7,7,5,7,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -14,8,15/2,6,8,5,11/2,5,8,5,5,4,5,4,9/2,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,4,5,5,8,4,9/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-1,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,3/2,1,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4,3,7/2,3,6,4,7/2,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,4,4,5,4,11/2,6,11,6,11/2,4,6,4,4,3,5,3,3,2,4,3,7/2,4,6,4,7/2,3,3,2,3,3,3,2,3,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,5,9,5,6,5,8,6,9,9,10,6,11/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-8,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18 -10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,7/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,6,5,7,7,8,9/2,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -15,8,8,6,17/2,5,6,6,8,4,4,4,11/2,4,5,5,7,4,4,3,9/2,4,5,5,6,4,4,4,13/2,4,6,6,11,6,6,4,9/2,3,3,2,5,3,3,3,4,3,3,3,5,3,4,4,11/2,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,6,4,4,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,6,4,4,3,7/2,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,12,7,7,5,13/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,4,3,4,4,11/2,4,6,6,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,12,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-4,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-19/2,-6,-10,-10,-20,-10,-10,-6,-21/2,-6,-8,-7,-13,-6,-6,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22 -9,5,5,4,6,7/2,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,8,5,5,7/2,5,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,5,3,3,2,4,2,2,2,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,7/2,3,5,3,3,3,5,3,4,4,6,4,7/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,4,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,6,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,10,6,11/2,4,6,4,4,4,5,3,7/2,3,4,3,7/2,3,6,4,7/2,2,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,7/2,3,5,3,3,2,3,2,7/2,4,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,0,1,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-4,-3,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-17/2,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17 -11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,5/2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,5/2,4,4,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,6,4,6,4,6,5,17/2,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,10,5,5,4,6,4,5,5,17/2,5,6,5,9,6,9,9,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,11/2,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-5/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,5/2,2,2,2,2,2,3,3,8,5,5,3,4,3,3,3,11/2,3,3,2,3,2,3,3,5,3,2,2,2,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,2,7/2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,4,4,4,9,5,5,4,6,4,6,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,7,6,21/2,6,7,6,9,6,8,8,11,6,7,6,10,6,8,8,27/2,8,10,9,15,11,16,16,18,9,9,6,8,5,5,4,15/2,4,5,4,7,5,6,6,6,4,4,3,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-16,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-9,-6,-9,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-7,-6,-27/2,-7,-8,-6,-10,-6,-8,-7,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-20,-10,-10,-6,-10,-6,-8,-7,-27/2,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-6,-8,-8,-19,-9,-10,-6,-10,-6,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30 -12,13/2,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,6,7/2,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-9/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -14,8,15/2,6,7,4,11/2,5,7,4,5,4,6,4,5,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,10,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,3/2,2,1,1,1,1,-1,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,5,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,6,4,9/2,4,7,5,13/2,6,12,6,13/2,4,7,4,9/2,4,6,4,7/2,3,5,3,7/2,3,6,4,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,9/2,4,5,4,9/2,4,6,4,9/2,4,6,4,11/2,5,8,5,5,4,6,4,6,5,9,6,13/2,6,10,7,21/2,10,12,6,6,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-22,-10,-21/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-10,-20 -12,13/2,6,5,6,4,4,4,6,4,4,7/2,5,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,3,4,3,4,7/2,5,3,4,4,6,4,6,6,10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,7,4,4,3,5,7/2,5,4,7,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-5/2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -22,12,12,8,23/2,6,7,6,11,6,7,6,17/2,6,8,7,11,6,6,5,7,4,5,5,8,5,6,5,17/2,6,9,9,17,9,9,6,19/2,6,7,6,7,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,8,5,6,5,17/2,6,8,8,14,7,7,5,15/2,4,5,5,7,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,9/2,3,3,3,4,3,3,2,7/2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,5/2,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,2,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,2,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,1,2,2,2,2,4,3,3,2,7/2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,7/2,2,3,3,7,4,5,4,6,4,5,5,9,5,6,6,19/2,6,9,9,18,9,9,6,9,5,5,4,7,4,4,4,11/2,4,5,4,8,4,4,4,11/2,4,4,4,7,4,4,4,6,5,7,7,10,6,6,4,13/2,4,5,5,8,5,6,5,15/2,6,8,7,12,7,7,5,15/2,5,6,6,12,7,9,8,14,10,15,15,17,9,9,6,8,5,5,4,8,5,6,5,7,5,6,6,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,1,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-9,-9,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-7,-7,-16,-8,-10,-8,-31/2,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-9,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-10,-7,-23/2,-6,-9,-8,-16,-8,-10,-8,-31/2,-10,-15,-15,-31 -15,8,8,6,8,9/2,5,4,8,9/2,5,4,6,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,5,3,3,3,4,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,7/2,4,4,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-9/2,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-10,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -22,12,12,8,11,6,15/2,6,11,6,13/2,5,8,5,7,7,11,6,13/2,5,7,4,11/2,6,9,6,13/2,5,8,6,17/2,9,17,9,9,6,10,6,13/2,5,7,4,5,4,6,4,11/2,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,17/2,8,15,8,8,6,8,5,11/2,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,2,1,1,1,3,2,2,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,1,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,4,7,4,9/2,4,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,4,9/2,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,27/2,14,16,8,17/2,6,8,5,11/2,4,8,5,5,4,6,4,6,5,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-13/2,-4,-6,-3,-5,-4,-6,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-10,-6,-19/2,-10,-21,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-7,-7,-13,-6,-13/2,-4,-7,-4,-5,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-19/2,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-15/2,-7,-13,-7,-17/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-8,-15,-10,-15,-15,-32,-16,-31/2,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-14,-7,-17/2,-7,-13,-8,-25/2,-12,-26,-13,-13,-8,-14,-7,-17/2,-7,-15,-7,-8,-6,-11,-6,-19/2,-9,-19,-9,-9,-6,-12,-7,-19/2,-8,-16,-8,-21/2,-8,-16,-10,-31/2,-15,-31 -21,11,11,8,11,7,8,13/2,11,6,6,5,8,5,7,13/2,11,6,6,5,7,9/2,6,6,10,6,7,11/2,9,6,9,9,17,9,9,6,9,11/2,6,5,8,9/2,5,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,5/2,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,3/2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,7/2,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-14,-7,-8,-7,-14,-7,-8,-6,-11,-13/2,-10,-9,-19,-9,-9,-6,-12,-7,-9,-8,-17,-9,-10,-8,-16,-10,-16,-15,-31 -41,21,21,14,21,13,16,14,24,13,13,10,16,10,14,13,23,12,12,9,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,13,8,10,9,15,11,16,16,31,16,16,11,16,9,10,8,13,7,8,6,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,7,12,8,11,10,18,9,9,7,10,6,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,0,1,1,2,2,2,3,5,3,4,4,6,4,6,6,21/2,6,7,5,8,5,6,5,9,5,6,5,7,5,8,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,12,12,22,11,11,8,12,7,7,6,10,6,7,5,8,6,8,7,13,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,24,13,13,9,13,7,8,6,10,6,7,5,8,5,6,6,11,6,7,5,8,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,22,11,11,8,11,7,9,8,13,7,7,5,8,6,8,7,13,7,6,4,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,6,5,8,5,7,7,13,8,9,8,13,9,12,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,21,12,13,10,17,11,16,16,31,16,17,12,18,11,13,11,20,11,13,10,17,11,16,15,28,15,15,11,18,11,15,14,27,16,19,16,28,19,27,27,28,15,15,10,15,8,9,7,12,7,7,5,8,6,8,8,15,8,9,7,10,6,7,6,11,7,8,7,11,7,10,10,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,9,16,11,17,17,33,17,18,13,19,11,13,11,20,11,13,10,16,10,13,13,24,13,14,10,16,10,12,11,19,10,11,9,14,9,13,13,24,13,13,9,12,7,8,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-11,-6,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-8,-8,-6,-11,-6,-8,-8,-16,-9,-11,-9,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-17,-35,-18,-19,-14,-24,-14,-19,-18,-35,-19,-23,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-23,-19,-35,-17,-18,-13,-22,-13,-18,-16,-32,-16,-17,-12,-19,-11,-14,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-17,-17,-11,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-18,-12,-18,-19,-39,-19,-20,-13,-21,-12,-15,-13,-25,-13,-14,-10,-18,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-18,-38,-19,-19,-12,-19,-10,-13,-11,-21,-11,-12,-10,-18,-11,-16,-15,-31,-16,-17,-13,-22,-13,-18,-16,-32,-17,-21,-18,-33,-21,-32,-32,-64 -21,11,11,8,11,7,8,7,12,7,7,11/2,8,6,8,7,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,9/2,7,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,4,5/2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,9/2,5,4,6,4,5,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,17/2,14,10,14,14,15,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,17,9,10,7,10,6,7,6,10,6,7,6,8,5,7,7,13,7,7,5,9,11/2,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,5/2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-13/2,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-16,-33/2,-34,-33/2,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-11/2,-9,-5,-6,-11/2,-11,-6,-7,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-9,-9,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-15/2,-8,-6,-11,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -21,11,23/2,8,11,7,8,7,12,7,15/2,6,8,6,8,7,12,6,6,5,8,5,11/2,5,9,5,5,4,7,4,11/2,6,9,5,11/2,4,5,4,9/2,4,6,4,4,3,4,3,9/2,4,6,4,9/2,4,5,3,4,4,7,5,6,5,8,6,17/2,8,16,9,9,6,9,5,11/2,4,6,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,5,5,9,5,5,4,5,3,7/2,3,3,2,3,2,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,4,8,4,4,3,6,4,5,5,8,5,6,5,8,5,6,6,11,6,13/2,5,6,4,4,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,4,6,4,13/2,7,13,7,7,5,7,4,9/2,4,5,3,4,3,4,3,7/2,4,6,4,7/2,3,5,3,4,4,6,4,7/2,3,5,4,5,5,10,6,11/2,4,6,4,5,4,7,4,4,3,5,4,9/2,4,7,4,5,4,4,3,7/2,3,5,4,9/2,4,6,4,13/2,7,11,6,11/2,4,6,4,9/2,4,7,4,9/2,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,9/2,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,13/2,6,9,6,8,8,16,9,9,6,10,6,15/2,6,11,6,7,6,10,6,8,8,15,8,8,6,10,6,17/2,8,13,8,9,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,4,11/2,6,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,5,8,6,17/2,9,17,9,19/2,7,10,6,15/2,6,10,6,7,6,8,5,7,7,13,7,7,5,9,6,13/2,6,10,6,6,5,8,5,7,7,13,7,13/2,4,7,4,5,4,6,3,3,3,3,2,3,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-8,-4,-11/2,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-9,-16,-10,-33/2,-17,-33,-16,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-17/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-10,-7,-10,-5,-7,-6,-12,-6,-13/2,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,4,3,4,4,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,5/2,3,3,5,3,3,5/2,4,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,5/2,3,2,3,3,4,3,3,2,4,5/2,3,3,4,5/2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,4,3,4,7/2,5,3,4,3,3,2,3,3,4,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,9/2,7,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,5/2,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,7,5,7,9/2,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -20,11,11,8,23/2,7,8,7,12,7,8,6,17/2,6,7,7,13,7,7,5,15/2,4,5,5,9,5,6,5,15/2,5,7,6,9,5,5,4,5,4,5,5,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,15,8,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,3,3,2,2,2,9/2,3,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,3,2,1,1,1,1,1,1,2,1,1,0,-1/2,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-2,0,0,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,4,3,3,3,5,3,4,4,6,4,4,3,7/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,5,4,5,5,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,6,4,13/2,4,6,7,12,6,6,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,4,3,9/2,3,4,4,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,10,6,6,4,11/2,4,4,4,7,4,5,4,11/2,4,4,4,7,4,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,12,6,6,5,15/2,5,6,5,11,6,6,5,17/2,6,8,8,17,9,10,7,19/2,6,8,7,12,7,8,6,10,7,9,9,15,8,8,6,21/2,7,9,8,12,7,9,8,14,9,13,13,14,8,8,5,7,4,4,4,8,5,5,4,6,4,6,5,9,5,5,4,11/2,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,15/2,6,8,8,17,9,9,7,10,6,8,7,11,6,6,5,8,5,7,6,12,7,8,6,17/2,5,6,6,8,5,5,4,13/2,5,7,7,13,7,7,5,13/2,4,5,4,6,3,3,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3/2,1,0,0,1,1,2,2,5/2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-4,-5,-4,-9,-6,-10,-10,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-33/2,-10,-16,-17,-32,-16,-16,-10,-33/2,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-19/2,-6,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-10,-5,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-16,-8,-8,-6,-10,-6,-9,-8,-15,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,7/2,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,9/2,6,5,8,6,8,8,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -13,7,8,6,8,5,11/2,5,9,5,11/2,4,6,4,9/2,4,8,5,5,3,5,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,4,3,7/2,4,6,4,4,4,6,4,6,6,11,6,13/2,5,7,4,9/2,4,4,3,3,3,5,3,4,4,6,4,7/2,3,5,3,7/2,3,5,3,5/2,2,3,2,7/2,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,5/2,2,4,3,7/2,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,5,3,7/2,3,6,4,11/2,5,9,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,3,5,3,4,3,6,4,11/2,6,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,7,4,7/2,3,4,3,3,3,6,4,7/2,3,5,3,7/2,4,9,5,5,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,12,6,13/2,5,8,5,6,5,9,5,6,5,8,5,7,6,10,6,11/2,4,7,4,11/2,5,8,5,13/2,6,10,7,9,9,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,6,6,12,6,13/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,8,5,5,4,5,3,4,4,6,4,7/2,3,5,4,11/2,6,10,6,11/2,4,4,3,7/2,3,4,2,2,2,2,2,3/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,3,2,2,2,1,1,3/2,1,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-9,-5,-13/2,-5,-11,-7,-11,-11,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20 -11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,6,7/2,4,3,5,3,4,9/2,10,11/2,6,4,7,4,5,9/2,8,9/2,5,4,7,9/2,6,11/2,8,9/2,4,3,5,4,5,9/2,7,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17 -20,11,11,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,4,3,3,3,4,3,5,5,17/2,5,6,6,10,7,10,9,17,9,10,7,10,6,6,5,15/2,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,2,2,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,9/2,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,11/2,3,3,2,3,3,4,4,5,3,4,3,5,3,4,3,5,3,3,3,5,4,5,5,12,6,6,4,6,4,4,3,9/2,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,12,7,7,5,6,4,5,4,13/2,4,4,4,6,4,5,4,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,13/2,4,6,5,8,6,9,9,11,6,6,4,6,4,4,4,15/2,4,5,4,6,4,4,4,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,13,7,7,5,8,5,6,5,17/2,5,5,4,7,5,8,8,17,9,10,7,11,7,9,8,13,7,8,6,9,6,9,9,13,7,7,5,8,5,7,7,25/2,7,8,7,12,8,12,13,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,7,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,5,13,7,7,5,6,4,4,4,13/2,4,6,5,8,5,7,7,14,8,8,6,8,5,5,4,11/2,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-9,-18,-12,-18,-18,-30,-15,-15,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-35/2,-9,-11,-9,-16,-10,-16,-15,-31 -11,6,6,4,6,4,5,4,7,4,5,4,5,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,2,2,3/2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,6,4,4,5/2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16 -12,6,13/2,4,7,4,5,4,8,5,5,4,5,4,5,4,6,4,7/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,3,2,2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,6,4,7/2,3,3,2,2,2,2,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,4,3,3,3,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,7/2,3,4,3,3,3,6,4,11/2,6,6,4,7/2,2,3,2,5/2,2,5,3,3,3,3,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,3,6,4,4,3,5,3,7/2,4,5,3,4,3,5,3,4,4,9,5,6,4,7,4,5,4,8,5,5,4,5,4,11/2,6,9,5,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,8,8,9,5,11/2,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,7/2,3,6,4,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,9/2,3,5,3,3,3,4,2,2,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-9/2,-5,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-11/2,-4,-8,-5,-8,-8,-17 -9,5,5,4,6,7/2,4,7/2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,9/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,5/2,3,3,3,2,3,2,4,3,3,3,7,4,5,7/2,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,7/2,5,3,4,3,4,3,3,2,3,2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,3,4,4,5,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 -15,8,8,6,17/2,5,6,5,10,5,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,2,2,2,2,7/2,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,4,4,8,5,5,4,11/2,4,4,4,7,4,4,3,5,3,4,3,3,2,3,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,2,2,2,2,5/2,2,3,3,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,5/2,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,9/2,3,4,5,9,5,5,4,5,3,4,3,3,2,3,2,7/2,2,3,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,9/2,3,4,4,5,3,4,4,13/2,5,7,7,6,4,4,3,4,3,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,8,4,4,3,5,3,3,3,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,4,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,5,5,4,13/2,4,6,6,11,6,6,5,15/2,5,6,5,8,5,6,5,8,6,9,9,11,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,9/2,4,5,5,12,7,7,5,7,5,6,5,6,4,4,3,5,3,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,11/2,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,5/2,2,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-6,-8,-6,-23/2,-8,-12,-12,-18,-9,-9,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-20 -10,11/2,6,4,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1/2,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,7/2,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,3,5/2,4,5/2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,7/2,8,4,4,3,5,3,4,3,4,3,3,5/2,4,5/2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 -13,7,15/2,6,8,5,11/2,5,9,5,5,4,5,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,3,5,4,11/2,5,9,5,11/2,4,7,4,9/2,4,7,4,9/2,3,5,4,5,5,6,4,4,3,5,3,4,3,3,2,5/2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,3,3,8,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,9/2,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,7,5,15/2,8,10,6,11/2,4,6,4,7/2,3,5,3,4,3,4,3,4,3,5,3,7/2,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,3,3,4,3,9/2,4,10,5,5,4,6,4,5,4,6,4,7/2,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-5,-9,-6,-19/2,-10,-15,-7,-15/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-16 -13,7,7,5,7,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1/2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,10,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -24,13,13,9,14,8,10,8,13,7,7,6,9,6,7,6,19/2,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,5,8,6,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,25/2,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,5,4,6,6,0,1,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,4,6,6,13,7,8,6,8,5,6,5,7,4,4,3,5,3,3,3,9/2,3,4,3,4,3,4,4,7,4,5,4,5,4,6,6,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,19/2,6,6,5,7,5,6,6,12,7,8,6,10,7,10,11,7,4,3,2,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,14,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,10,11,8,12,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,13,8,11,10,17,10,11,9,15,10,13,13,20,11,11,8,11,6,7,5,8,5,5,4,6,4,5,4,15/2,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,15,8,9,6,9,5,6,5,7,4,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,9,5,4,3,4,3,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-19/2,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-33/2,-8,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-18,-28,-14,-14,-9,-13,-7,-9,-8,-15,-7,-8,-5,-8,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-16,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-4,-5,-4,-7,-4,-7,-6,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-15,-10,-15,-15,-30 -13,7,7,5,8,5,6,5,7,4,4,3,5,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,7/2,5,3,4,3,5,3,4,4,7,4,4,7/2,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,5/2,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,7,9/2,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,3/2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-13,-6,-7,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-15 -13,7,15/2,6,8,5,6,5,7,4,4,3,6,4,4,3,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,9/2,4,5,3,7/2,3,5,3,4,4,7,4,9/2,4,5,4,9/2,4,6,4,4,4,6,4,5,5,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,0,1,3/2,2,2,2,2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,3,2,7/2,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,2,2,2,2,3,2,3,3,5,3,7/2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,13/2,4,7,4,9/2,4,5,3,3,2,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,8,5,5,3,5,3,7/2,3,5,3,5/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,4,2,5/2,2,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,3,8,4,9/2,3,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,1,1,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-9,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -9,5,5,4,6,4,4,4,6,7/2,4,3,4,3,3,5/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,4,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9 -14,7,7,5,8,5,6,5,9,5,5,4,11/2,4,4,3,4,3,4,3,5,3,4,4,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,13/2,4,6,5,6,4,4,3,4,3,3,2,3,2,3,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,7/2,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,-1,0,1,1,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,7,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,4,13/2,4,6,6,5,3,3,2,2,2,2,1,3,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,15/2,6,8,8,11,6,7,5,7,4,5,4,5,3,3,2,7/2,3,4,4,4,3,3,3,9/2,3,3,3,5,3,3,3,9/2,4,5,5,7,4,4,3,9/2,3,4,4,4,2,2,2,7/2,2,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,7/2,3,4,4,10,5,5,4,11/2,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,4,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,5/2,2,2,2,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1/2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-5/2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-3,-3,-8 -10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,7/2,3,4,3,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,3,2,2,2,5/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,-1,-1,-2,0,-1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,4,3,3,3,6,4,4,3,4,3,9/2,5,4,3,3,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,3,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,6,4,7/2,3,4,2,5/2,2,3,2,7/2,3,3,2,2,2,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,2,5/2,2,4,2,5/2,2,3,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,2,1,1,2,2,2,2,3/2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-3,-8,-4,-5,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 -9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,4,3,3,3,6,7/2,3,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,7/2,6,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,4,5,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,1,1,2,2,3,2,3,2,3,2,3,2,3,2,3,3,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,3,3,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,2,2,5/2,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,9/2,3,4,4,6,4,5,5,-2,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,7/2,2,2,2,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,4,5,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,4,3,3,3,4,3,3,3,11/2,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,6,4,5,5,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,6,9,9,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-19/2,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-6,-11,-7,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-3,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,5/2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9 -10,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,7/2,4,3,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,3,5,4,5,4,7,4,4,3,4,3,7/2,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,1,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,3,2,3,3,-2,0,0,0,0,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,2,4,3,3,3,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,4,2,2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,7/2,3,6,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,3,7/2,4,5,3,4,4,6,4,6,6,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,7,4,4,3,4,3,7/2,3,5,3,3,2,4,3,3,3,3,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,3,2,4,3,3,3,5,3,7/2,3,5,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,4,3,9/2,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,7/2,3,6,4,4,3,3,2,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-10 -9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,1,1/2,0,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-4,-4,-8 -15,8,8,6,15/2,4,5,5,8,4,4,4,11/2,4,5,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,3,7,4,4,4,11/2,4,6,5,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,0,0,1,1,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,2,2,2,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,3/2,2,2,1,0,1,1,2,5/2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,5,5,-3,-1,-1,0,1/2,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,2,5,3,4,3,7/2,2,2,2,2,2,2,1,1,1,1,2,4,3,3,3,4,3,5,5,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,17/2,6,8,8,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,3,2,1,1,1,1,1,1,2,2,10,6,6,4,13/2,4,4,4,7,4,5,4,5,3,4,4,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,6,4,5,4,7,5,7,7,10,5,5,4,6,4,5,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,2,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,5,3,3,2,5/2,2,1,1,0,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-3,-13/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-6,-11,-7,-10,-10,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-7,-16 -10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,5/2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1/2,1,1,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 -15,8,8,6,8,5,5,4,7,4,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,5,3,5/2,2,3,2,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,4,5,4,11/2,5,10,6,6,4,5,3,7/2,3,4,3,3,2,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,2,2,5/2,2,3,2,5/2,2,3,3,4,4,-2,0,0,0,0,1,3/2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,6,4,9/2,4,8,5,11/2,5,8,6,8,8,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,2,2,2,2,1,1,3/2,2,10,6,6,4,6,4,4,3,6,4,7/2,2,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,7/2,3,5,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,4,3,6,4,5,5,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,7,4,7/2,3,3,2,5/2,2,4,2,2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,1,1,1,2,2,1,1,1,1,-1,0,0,0,-4,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-7,-5,-10,-6,-10,-10,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-13/2,-7,-15 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,5/2,4,3,6,4,4,3,4,5/2,3,5/2,4,5/2,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,11/2,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,2,3/2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,10,6,6,4,6,4,4,3,5,3,3,2,3,5/2,3,3,5,3,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-10,-5,-6,-5,-10,-6,-10,-10,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-14 -28,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,5,7,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,4,4,6,4,6,6,21/2,6,6,4,6,4,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,4,6,7,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,2,2,2,2,2,2,2,2,4,3,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,8,5,7,7,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,3,3,6,4,5,4,7,5,6,6,25/2,7,8,6,8,5,6,5,8,5,6,5,9,6,8,8,14,8,8,7,11,7,9,8,14,8,9,8,14,10,15,15,6,3,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,7,4,3,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,20,10,10,7,10,6,6,5,7,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,6,4,4,3,5,4,5,4,7,4,5,5,8,6,8,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-4,-19/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-13,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-2,-6,-4,-6,-6,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-10,-7,-12,-7,-9,-8,-15,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-12,-14,-12,-22,-14,-21,-21,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-13,-14,-29 -15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,3,5/2,4,3,6,4,4,3,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,5/2,3,2,4,3,4,4,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -15,8,8,6,8,5,6,5,8,5,11/2,4,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,4,3,4,3,9/2,4,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,9/2,3,5,3,7/2,3,5,3,7/2,3,5,4,5,4,8,4,9/2,4,6,4,11/2,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,2,2,11,6,11/2,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,4,9/2,4,6,4,6,6,9,5,5,4,5,3,7/2,4,5,3,7/2,3,3,2,7/2,3,6,4,7/2,3,3,2,2,2,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,7/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-12,-6,-11/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-10,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -11,6,6,4,6,4,4,7/2,6,4,4,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,3,4,4,5,3,4,4,6,4,6,6,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,8,8,6,17/2,5,6,5,10,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,13/2,4,5,5,8,5,5,4,9/2,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,7/2,3,4,3,6,3,3,2,7/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1/2,0,0,1,-1,0,1,1,1,1,1,2,4,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,3,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,17/2,6,9,9,4,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,7/2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,11,6,6,4,6,3,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,2,4,3,3,2,7/2,3,4,3,8,5,5,3,4,3,3,3,6,4,4,4,13/2,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,7,4,4,3,7/2,2,3,3,6,4,4,3,9/2,3,4,4,5,3,3,2,7/2,2,2,1,2,2,2,1,1,1,1,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,5,4,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,0,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-11,-6,-7,-6,-23/2,-7,-10,-10,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13 -10,5,5,4,5,3,4,3,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,11/2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -12,7,7,5,6,4,5,4,7,4,9/2,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,5/2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,3,3,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,0,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,3/2,2,3,2,3/2,2,1,1,3/2,1,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,2,3/2,1,4,3,3,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,7,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,6,3,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3/2,1,1,2,3/2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1/2,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -21,11,11,7,10,6,8,7,11,6,6,4,6,4,6,6,8,5,5,4,6,4,5,4,15/2,5,6,5,7,4,5,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,3,4,3,4,4,15/2,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,2,1,1,1,4,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,9/2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,19/2,6,8,7,11,8,11,11,8,4,4,3,5,3,3,3,9/2,3,3,2,3,2,2,1,4,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,2,2,2,7/2,2,2,1,1,1,1,1,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,11/2,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,6,7,13,7,7,5,6,4,4,4,13/2,4,4,3,3,2,3,3,8,5,5,3,4,3,4,4,11/2,4,4,3,5,4,5,5,6,3,3,2,3,2,2,2,5/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,3,4,4,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,1,1,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-11,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13 -12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,3,2,2,3/2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,7/2,4,4,6,9/2,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 -13,7,7,5,6,4,9/2,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,3,4,2,5/2,2,1,1,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,7/2,3,5,3,3,2,2,2,5/2,2,4,3,3,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,4,9/2,4,7,5,7,7,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,3,2,2,3/2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,6,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,3,3,6,7/2,4,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -16,9,9,6,17/2,5,6,5,8,5,5,4,11/2,4,5,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,4,2,2,2,7/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,2,5/2,2,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,3,3,6,4,4,3,9/2,3,3,3,7,4,4,3,7/2,2,3,2,4,3,3,2,3,2,2,2,6,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,11/2,4,4,4,8,4,4,4,11/2,4,5,4,7,4,5,4,5,4,5,4,6,4,4,4,15/2,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,5/2,2,3,3,7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,9,5,4,3,9/2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,4,3,4,4,11/2,4,5,5,9,5,6,4,11/2,4,4,3,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,3,3,3,2,2,2,7/2,3,4,4,5,3,3,2,5/2,2,2,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,0,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 -10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,3,5/2,3,3,4,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,5/2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -14,8,8,6,8,5,11/2,4,7,4,9/2,4,5,4,9/2,4,7,4,9/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,4,5,3,3,2,3,2,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,2,1,1,3/2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,5/2,2,4,3,3,3,8,4,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,3,4,3,4,4,6,4,4,4,7,5,6,6,6,4,7/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3,2,2,2,5/2,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,3,2,3,2,2,2,3,3,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,3,2,7/2,4,6,4,4,3,4,3,7/2,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,7/2,4,5,3,3,2,3,2,5/2,3,5,3,7/2,3,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -14,8,8,6,8,5,6,9/2,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,5/2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,8,4,4,3,4,3,4,4,7,4,4,4,5,7/2,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,9/2,6,6,6,4,4,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,3,5/2,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-2,-3,-5/2,-6 -27,14,15,10,15,9,10,8,13,7,7,6,9,6,8,8,27/2,8,8,5,7,5,6,6,10,6,6,5,7,5,7,7,10,6,6,4,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,3,3,4,3,4,4,11,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,3,3,2,2,2,3,2,3,2,3,2,3,2,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,6,4,5,5,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,11/2,4,4,3,3,2,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,5,4,5,5,15,8,9,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,7,12,8,12,12,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,4,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,21/2,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -14,8,8,6,8,5,6,5,7,4,4,7/2,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,3,2,3,3,5,3,3,5/2,3,2,3,3,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,3,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,4,3,6,4,4,3,3,2,5/2,2,5,3,3,3,3,2,7/2,4,10,6,11/2,4,6,4,9/2,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,7/2,4,6,4,5,4,7,5,7,7,6,4,7/2,3,4,3,3,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,3,2,3,3,5,4,9/2,4,6,4,5,5,9,5,9/2,4,5,3,4,4,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5 -11,6,6,9/2,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3 -18,10,10,7,21/2,6,7,5,7,4,4,4,6,4,5,5,8,4,4,3,9/2,4,5,5,6,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,2,2,2,2,1,3,2,1,1,1,1,1,2,4,2,2,2,3/2,1,0,0,2,1,1,1,2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,9/2,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,12,7,7,5,13/2,4,5,4,8,5,5,4,13/2,4,6,6,8,5,5,4,11/2,4,4,4,8,5,5,5,8,6,8,8,7,4,4,3,9/2,3,4,3,5,3,4,3,7/2,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,4,3,7/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,3,6,4,4,4,13/2,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,0,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,1,0,1,1,1,1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-3,-2,-5 -11,6,6,5,7,4,5,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,5/2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,9/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3 -15,8,8,6,9,5,6,5,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,4,3,3,2,2,2,2,1,2,2,3/2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,5/2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,5,10,6,11/2,4,6,4,4,4,7,4,9/2,4,6,4,5,5,6,4,7/2,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,1,1,1,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,3,2,3,2,5/2,2,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,7/2,3,5,3,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-6,-4,-11/2,-6,0,1,1,1,0,0,1/2,1,0,0,0,1,1,1,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4 -14,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,4,3,3,2,3,2,2,3/2,2,2,2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,7/2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4 -26,14,14,10,14,8,8,6,21/2,6,6,4,6,4,6,6,12,6,6,5,7,4,5,5,17/2,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,9/2,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,6,4,5,5,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,9/2,3,3,2,2,2,3,3,1,1,1,1,1,1,2,2,5/2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,15/2,5,6,5,9,6,8,8,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,5,17/2,5,6,5,9,7,11,11,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,9/2,2,2,2,3,2,2,2,6,4,5,4,6,4,4,4,13/2,4,4,3,5,4,5,6,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,7/2,2,3,3,6,5,7,7,9,5,5,4,6,4,5,5,17/2,5,5,4,7,4,5,5,7,4,4,3,5,3,4,4,15/2,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,6,4,4,3,3,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-8,-4,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,6,4,6,13/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,4,3,3,3,4,3,3,2,3,2,3,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 -18,10,10,7,10,6,13/2,5,7,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,4,6,4,7/2,3,4,3,4,3,6,4,7/2,3,4,3,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,9/2,4,9,5,5,4,6,4,4,4,5,3,7/2,3,4,3,9/2,4,6,4,4,3,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,4,3,4,3,7/2,3,3,2,2,2,2,2,5/2,2,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,3,2,5/2,2,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-2,-4,-2,-3,-3,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1/2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,29/2,8,10,8,11,6,7,6,17/2,6,7,6,10,6,6,4,11/2,4,5,5,9,5,6,4,11/2,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,5,3,4,4,6,4,6,6,8,5,5,4,9/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,5/2,2,3,3,2,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,7,5,6,5,17/2,6,9,9,16,9,9,6,17/2,5,6,5,8,5,5,4,13/2,4,6,6,9,5,5,4,7,5,6,6,11,7,8,6,19/2,7,10,10,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,7,4,4,3,9/2,3,3,3,5,3,3,2,7/2,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,5,5,10,5,5,4,11/2,4,4,3,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,6,4,4,4,11/2,4,6,6,12,7,7,5,13/2,4,5,4,8,5,5,4,6,4,5,5,7,4,5,4,11/2,4,4,4,8,5,5,4,15/2,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,9/2,3,3,3,8,5,5,4,11/2,4,4,4,7,4,5,4,11/2,4,6,6,7,4,5,4,5,3,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-1,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-9,-9,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6 -18,10,10,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,9/2,7,5,7,7,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,5/2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,5/2,3,2,4,5/2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,14,8,19/2,8,12,7,7,6,9,6,7,6,10,6,11/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,5,3,4,4,6,4,11/2,6,9,5,5,4,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,0,1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,3,4,2,5/2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,11/2,4,7,5,13/2,6,11,6,6,4,6,4,9/2,4,7,4,11/2,5,8,6,9,9,16,8,17/2,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,6,15/2,6,10,7,19/2,10,11,6,6,4,5,3,7/2,3,4,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,5,4,11/2,5,10,6,11/2,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,9/2,4,6,4,9/2,4,7,4,9/2,4,5,3,4,4,8,5,11/2,4,8,5,7,7,11,6,6,4,7,4,5,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,9/2,4,6,4,11/2,5,7,4,9/2,4,5,3,4,3,5,3,4,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-5 -26,14,14,10,14,8,10,8,12,7,7,6,9,6,7,6,10,6,6,4,6,4,5,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,9,5,5,4,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,2,2,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,6,7,6,10,7,10,10,11,6,6,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,5,4,6,11/2,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-17/2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -52,27,27,18,26,14,16,13,23,12,13,10,15,10,13,12,23,12,13,9,14,9,11,9,16,9,9,7,10,7,10,9,17,9,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,16,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1/2,1,1,1,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,11,11,22,11,11,7,10,6,7,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,6,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,15,9,11,10,18,12,17,17,20,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,9,7,10,10,18,10,11,8,12,8,10,9,15,9,11,9,15,10,15,14,21,11,11,8,11,7,8,7,13,7,7,6,9,6,9,9,17,9,9,6,9,6,8,7,13,7,7,6,9,6,9,8,15,8,7,5,7,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-3,-3,0,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-6,-5,-11,-7,-12,-12,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-7,-31/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15/2,-3,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10 -27,14,14,9,13,15/2,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,5/2,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,4,7/2,5,7/2,4,4,8,5,6,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,9/2,6,4,4,4,7,4,4,7/2,5,7/2,5,5,9,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,9/2,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4 -27,14,27/2,9,13,8,17/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,9/2,3,5,3,7/2,3,4,2,2,2,3,2,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,4,3,7/2,4,6,4,6,6,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,7/2,2,4,2,5/2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,3,2,5/2,3,5,3,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,0,1,1,1,2,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,3,3,5,3,3,2,4,3,3,3,5,3,5/2,2,2,2,5/2,3,4,3,7/2,4,6,4,11/2,6,10,6,11/2,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,9/2,4,5,4,9/2,4,8,5,13/2,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,7/2,3,3,2,5/2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,7,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,9/2,4,5,4,6,6,10,5,5,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,5,4,5,3,3,3,6,4,4,3,5,4,11/2,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,15/2,8,12,6,6,5,7,4,9/2,4,7,4,9/2,4,4,3,9/2,5,9,5,11/2,4,5,4,9/2,4,6,4,4,3,6,4,5,5,9,5,9/2,4,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-3,-6,-6,-14,-6,-6,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 -18,9,9,6,9,11/2,6,5,8,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,2,4,5/2,3,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,4,3,4,3,5,7/2,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,5/2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,5,7,7,6,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,7/2,3,3,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,3,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,7/2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 -26,13,13,9,27/2,8,9,8,12,7,7,6,17/2,6,7,6,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,9/2,3,4,3,3,2,2,2,3,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,3,3,9/2,3,3,3,4,3,3,3,6,5,7,7,9,5,5,4,5,3,4,3,4,2,2,2,7/2,2,3,3,6,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,5,3,3,3,9/2,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,9/2,2,2,2,5,3,3,2,3,2,2,2,5,3,2,2,5/2,2,3,3,4,3,4,3,5,4,6,6,10,6,6,4,13/2,4,6,5,6,4,4,4,11/2,4,4,4,7,4,5,4,11/2,4,5,5,9,6,7,6,19/2,7,10,10,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,9/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,11/2,4,5,4,7,4,4,4,11/2,4,5,4,9,5,5,4,9/2,3,3,3,6,4,4,3,9/2,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,9/2,4,5,5,9,5,6,4,13/2,4,6,5,6,4,5,4,6,4,5,5,10,5,5,4,11/2,3,3,3,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,5,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,3,4,2,2,1,1,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-9/2,-3,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-1,-3 -15,8,8,6,8,5,6,5,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -19,10,19/2,7,10,6,13/2,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,0,1,3/2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,7/2,3,4,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3/2,2,2,2,2,2,6,4,7/2,3,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,3,3,2,3,2,4,3,4,3,6,4,4,3,4,3,9/2,4,8,4,4,3,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,6,3,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,4,2,2,2,3,2,5/2,3,4,3,3,3,3,2,7/2,4,3,2,5/2,2,3,2,7/2,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,9/2,3,5,3,4,4,6,4,4,3,6,4,11/2,5,10,6,11/2,4,5,3,4,4,5,3,4,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,1,1,1,1,2,2,5/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-11/2,-6,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-2 -16,17/2,8,6,9,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -29,15,15,10,14,8,10,8,27/2,8,8,6,10,6,8,7,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,9,5,5,4,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,1,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,7/2,2,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,5,5,17/2,5,6,4,6,5,7,7,11,6,6,4,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,11/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,15/2,4,4,4,6,4,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,9,6,9,9,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,4,3,3,2,3,3,4,4,15/2,5,6,5,7,5,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,3,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,9/2,3,3,3,4,3,5,6,10,5,5,4,6,4,5,5,19/2,6,6,5,7,5,7,7,16,9,9,6,9,5,6,5,17/2,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3/2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3/2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,5,3,3,2,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-4,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,4,2,2,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,-1,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2 -16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,6,7/2,4,5/2,4,2,2,2,3,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,3,2,3,2,2,2,3,2,3,7/2,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,3,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1 -17,9,9,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,5,5,4,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,2,0,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,5/2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,0,0,1/2,0,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,7/2,4,5,3,7/2,3,4,3,9/2,4,5,3,7/2,2,4,2,2,2,3,2,2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,3,2,4,3,7/2,3,5,3,7/2,4,5,4,5,5,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,3,2,5/2,2,3,2,2,2,4,3,7/2,3,4,3,4,4,4,3,7/2,3,3,2,3,3,5,3,3,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,6,4,4,3,4,3,7/2,3,6,4,4,3,4,3,9/2,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,2,3,2,5/2,2,4,3,4,4,6,3,3,3,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,1,1,1,1,0,1,3/2,2,3,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-9/2,-4,4,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1 -13,7,7,5,6,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0 -20,11,11,8,21/2,6,8,7,12,7,8,6,9,6,7,6,10,6,6,4,11/2,4,4,3,5,3,3,3,9/2,4,5,5,6,4,4,3,9/2,3,3,3,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,5,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,4,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,1,2,2,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,6,3,3,2,3,2,2,2,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,3/2,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,7/2,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,11/2,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,13/2,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,11/2,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,7/2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,1,1,3/2,2,2,1,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,-1,-1,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,5,3,2,2,3/2,2,2,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-2,0,0,0,-3/2,0,0,0,2,1,1,1,2,1,1,1,0 -13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,5/2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1 -18,9,9,7,9,6,7,6,11,6,7,5,8,5,7,6,10,6,11/2,4,5,3,4,4,5,3,4,4,6,4,11/2,5,6,4,4,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,2,5/2,2,4,3,4,4,3,2,2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,3/2,1,6,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,1,1,1,1,0,1,3/2,2,1,1,3/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,9/2,5,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,3,2,5/2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,7,4,5,4,5,4,11/2,5,8,5,5,3,4,3,3,2,4,2,5/2,2,3,2,3,3,7,4,7/2,2,4,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,-1/2,0,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,0,0,0,1,0,0,1/2,0,0,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,1,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,4,2,5/2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,2,2,2 -17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,10,6,6,4,5,3,4,4,5,3,4,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,2,4,3,3,3,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,5/2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,0,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,4,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2 -32,17,17,12,18,11,13,11,18,10,10,8,12,8,11,10,39/2,10,11,8,11,7,8,7,11,6,7,5,8,6,9,9,10,6,6,4,5,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,3,5,4,5,5,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,9/2,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,3,4,4,11/2,4,4,4,6,4,5,5,8,5,5,5,8,6,8,7,5,3,4,3,4,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,2,3,3,5,3,3,2,3,2,3,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,7,4,4,3,4,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,11/2,4,4,3,3,3,4,4,6,4,4,3,4,3,4,4,8,5,6,5,7,4,5,5,8,4,4,3,5,3,4,4,17/2,5,6,5,8,5,6,6,11,6,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,8,6,9,6,8,8,29/2,8,8,6,8,5,6,5,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,15/2,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,1,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,6,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,3,2,3,2,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-18,-8,-8,-5,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-10,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,4 -17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,6,3,3,5/2,3,5/2,3,3,5,3,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -17,9,19/2,7,10,6,15/2,6,10,6,6,5,7,5,13/2,6,10,6,6,4,7,4,5,4,6,4,4,3,5,4,11/2,5,6,3,3,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,7/2,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,1,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,1,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,3/2,1,5,3,3,2,3,2,3/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,3/2,2,1,1,2,2,4,3,3,2,3,2,3/2,1,1,1,1,1,1,1,2,2,4,3,3,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,2,2,3/2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,2,2,5/2,3,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,3,3,5,4,9/2,5,4,3,3,2,3,2,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,1,1,1,1,1,6,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,5,3,7/2,2,3,2,3,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,5,7,4,11/2,5,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,7/2,3,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,5/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,1,1,1,0,1,3/2,1,1,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,3,2,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2 -12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,5/2,4,5/2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-2,-3,-3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -19,10,11,8,23/2,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,7,5,6,5,6,4,4,4,11/2,4,6,6,7,4,4,3,9/2,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,2,1,1,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,2,2,2,2,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,3,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,4,4,3,4,3,5,4,6,6,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3/2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,4,3,9/2,3,4,5,7,4,3,2,3,2,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,4,5,5,8,5,6,4,13/2,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,13/2,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,7/2,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-2,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,2,2,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,3 -12,13/2,7,5,7,4,5,4,7,4,4,4,5,7/2,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,10,5,5,4,5,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,2,3/2,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2 -15,8,8,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,3,5,4,9/2,4,6,3,3,3,5,4,5,4,6,4,7/2,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3,2,3,2,3,3,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,3,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,1,1,1,1,2,2,5/2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,9/2,4,6,3,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,4,6,4,4,3,5,4,11/2,5,13,7,7,5,6,4,9/2,4,6,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,5/2,3,6,4,7/2,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-4,-4,3,2,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3 -13,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,1,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,3,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,7/2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,5/2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,4 -24,13,13,9,12,8,10,8,29/2,8,9,7,10,6,8,7,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,7/2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,9/2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,5,3,4,3,5,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,6,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,2,7,4,4,3,3,2,3,3,4,3,4,4,7,5,6,6,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,3,4,4,15/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,13/2,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,11,6,7,6,9,6,8,8,22,11,11,7,10,6,8,6,21/2,6,7,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,5,4,5,5,6,4,4,3,4,2,2,2,5/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,3,3,9/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,3,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,0,2,1,1,1,0,1,1,1,1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-4,-6,-6,4,3,3,2,2,2,2,1,1/2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,1,1,2,1,1,1,3/2,1,1,1,2,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,3,5,3,4,4,7 -13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,13,7,7,9/2,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 -15,8,17/2,6,8,5,13/2,6,10,5,5,4,6,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,5/2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,3,2,3,3,2,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,4,3,7/2,3,1,1,2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,5,3,3,3,5,4,5,4,6,3,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,5,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,11/2,6,15,8,8,5,7,4,5,4,6,4,9/2,4,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,4,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,3,3,4,2,5/2,3,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,2,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-3,-2,-3,-3,3,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,2,2,4 -12,7,7,5,7,4,5,9/2,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,12,7,7,9/2,6,7/2,4,7/2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3 -20,11,11,8,12,7,9,7,12,7,7,5,15/2,5,6,6,12,6,6,4,13/2,4,5,5,7,4,5,4,11/2,4,5,5,7,4,4,3,9/2,3,3,3,5,3,4,3,4,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,9/2,3,4,4,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,6,4,4,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,3,4,2,2,2,2,2,2,1,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,3,2,3,2,3,2,2,2,0,1,1,1,3/2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,5,3,3,2,7/2,2,3,3,5,3,4,3,5,3,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,2,5,3,3,2,7/2,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,3,9/2,3,4,5,10,6,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,9,5,4,3,9/2,4,5,5,10,6,6,5,17/2,6,8,8,21,11,11,7,9,6,7,6,9,5,6,5,8,5,6,6,10,6,6,5,7,4,4,4,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,4,3,5,4,5,5,5,3,3,2,5/2,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,3,2,7/2,3,4,4,7,4,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,3/2,2,2,2,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-14,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-3,-1,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,3,2,2,2,3/2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,4,3,3,3,9/2,3,3,3,5 -14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,5/2,3,2,3,7/2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,6,6,14,15/2,8,5,6,4,5,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,3,5/2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,4 -20,10,10,7,10,6,15/2,6,11,6,7,5,8,5,13/2,6,11,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,4,4,7,4,5,4,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,2,3,2,3,2,3,2,7/2,4,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,5/2,2,1,1,2,2,3,2,3,3,4,3,3,3,6,4,7/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,2,4,3,3,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,2,2,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,0,1,1,1,2,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,7/2,3,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,3,2,3,2,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,5,4,5,5,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,4,4,3,5,5,9,5,6,5,8,6,8,8,20,10,21/2,7,9,5,6,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,7/2,4,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,5,5,4,2,5/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,7/2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,5,3,3,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,7,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,1,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,5,3,7/2,3,5,4,9/2,4,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,1,1,3/2,2,1,1,1,1,2,2,2,1,1,1,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -20,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,3,2,3,3,4,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,5,4,7,4,4,7/2,5,7/2,5,5,8,5,6,5,8,6,8,8,20,10,10,7,9,5,6,6,10,11/2,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,5/2,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3/2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,7/2,4,3,5,3,4,4,6,4,4,3,5,4,5,9/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,3,2,2,2,4,3,3,3,5 -39,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,21,11,11,8,11,6,7,6,10,6,7,5,8,6,8,8,27/2,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,3,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-8,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,0,-1,0,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,7,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,8,9,8,13,9,14,14,38,20,20,14,20,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,23/2,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,6,9,6,7,6,11,6,7,6,9,6,8,8,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,5,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,8,8,8,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-26,-13,-13,-8,-13,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-8,-8,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,4,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,5,9 -20,11,11,8,11,13/2,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,3,2,4,3,4,3,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,5/2,4,5/2,3,3,4,3,4,7/2,6,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,1/2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,1,1,1,1,1,1,0,1/2,0,1/2,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,4,3,4,4,6,7/2,4,5/2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,5,7/2,5,5,5,3,3,3,4,5/2,3,5/2,3,2,3,5/2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,4,5,4,7,9/2,5,9/2,7,5,8,8,20,11,11,8,10,6,7,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,5/2,4,5/2,3,5/2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,7/2,5,4,5,5,5,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,3,3,5 -21,11,11,8,11,6,15/2,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,5,3,3,3,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,3,2,4,3,7/2,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,3,3,5,3,4,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,4,2,5/2,2,3,2,3,3,4,3,4,3,6,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,1,1,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,5/2,3,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,4,3,4,4,5,3,7/2,2,3,2,3,3,5,3,7/2,3,5,3,7/2,4,7,4,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,5,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,3,7,4,9/2,4,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,11/2,5,11,6,6,4,5,4,5,5,8,5,11/2,5,7,5,8,8,21,11,11,8,10,6,8,7,10,6,6,5,8,5,13/2,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,4,3,3,2,3,2,5/2,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,4,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,5,3,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,3,2,3/2,1,1,1,3/2,2,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,3/2,2,3,2,3,3,5 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,9/2,8,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,3,5/2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,7/2,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,3/2,2,3/2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3 -21,11,12,8,23/2,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,13/2,4,5,4,6,3,3,3,4,3,5,5,9,5,4,3,9/2,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,4,4,4,3,4,3,9/2,4,5,5,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,8,4,4,3,7/2,2,3,2,2,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,0,0,0,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,3,2,3,2,3,2,3,3,1,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3/2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,7,4,4,3,3,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,13/2,4,5,5,12,7,7,5,6,4,5,5,9,5,6,5,9,6,8,8,24,12,12,8,23/2,7,8,7,11,6,7,5,15/2,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,5,3,3,3,4,3,4,5,6,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,4,3,3,2,7/2,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,7/2,2,3,2,3,2,2,2,4,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,7/2,3,4,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,2,2,2,3/2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,9/2,4,6,6,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3/2,2,2,2,3 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,7/2,8,4,4,3,4,3,4,3,5,3,4,7/2,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,5/2,4,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2 -15,8,8,6,8,5,11/2,5,9,5,11/2,4,6,4,5,5,9,5,6,4,5,3,4,3,6,3,3,3,4,3,3,3,6,4,7/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,3,3,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,5/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,10,5,5,4,5,4,9/2,4,6,4,9/2,4,7,5,13/2,7,18,9,9,6,9,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,4,5,3,7/2,4,6,4,7/2,3,4,3,7/2,4,7,4,4,3,5,3,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,6,4,4,3,3,2,3,3,4,2,5/2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,0,-1,0,1,1,0,1,3/2,2,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,4,4,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2 -14,7,7,5,7,4,5,4,8,9/2,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-2,-1/2,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,13/2,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,2 -25,13,13,9,13,7,8,7,25/2,7,8,6,10,7,9,8,15,8,7,5,7,4,5,5,9,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,3,8,5,5,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,4,8,5,5,4,5,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,8,4,4,3,4,3,3,2,5/2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,7/2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,3,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,1,1,1,1,1,1,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,1,1,6,3,3,2,2,2,2,2,5/2,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,8,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,17,9,10,7,10,6,7,6,19/2,6,6,4,6,4,6,6,15,8,8,6,9,5,6,6,21/2,6,8,7,12,8,12,12,29,15,14,10,14,8,10,8,29/2,8,8,6,8,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,4,3,3,3,9/2,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,1,1,2,2,2,1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,5,3,3,2,3,2,1,1,1,1,2,2,3,2,3,3,5,3,3,2,2,1,1,1,3/2,2,2,2,3,3,4,4,2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,4,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3 -14,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,9/2,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,16,17/2,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,6,5,9,5,5,4,5,3,7/2,4,5,3,7/2,2,4,3,7/2,3,6,4,4,3,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,1,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,5,3,7/2,2,4,3,3,3,5,3,4,3,5,4,9/2,4,11,6,6,4,6,4,4,4,8,4,9/2,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,13/2,6,10,5,5,4,5,4,5,5,8,5,5,3,5,3,7/2,3,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,3,3,2,3,2,3,2,7/2,3,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,6,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,7/2,3,3,2,3,3,4,3,3,2,2,2,3,3,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,0,0,1,0,0,-1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,5/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2 -11,6,6,9/2,6,4,5,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,9,5,5,7/2,5,3,4,7/2,7,4,4,7/2,5,4,5,4,8,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -18,9,9,6,19/2,6,6,5,9,5,5,4,13/2,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,7/2,2,3,3,9,5,5,3,4,3,3,3,4,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,3,7/2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,0,2,2,2,2,5/2,2,4,4,7,4,4,3,7/2,2,3,2,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,7/2,3,4,4,7,4,4,3,5,3,4,4,5,3,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,1,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,7/2,2,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,3,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,5/2,2,2,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,6,6,14,8,8,6,15/2,5,6,5,11,6,6,5,17/2,6,7,7,14,7,7,5,15/2,5,6,5,10,6,7,6,19/2,7,10,10,25,13,13,9,13,8,9,8,13,7,8,6,8,5,6,6,11,6,6,4,13/2,4,5,4,7,4,5,4,11/2,4,6,5,10,5,5,4,11/2,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,9/2,3,4,3,5,3,3,3,9/2,3,4,3,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,5,7,4,4,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-3/2,0,0,0,0,1,1,1,3/2,2,2,1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,7/2,2,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,3/2,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,4 -12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,8,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,11/2,6,11/2,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -17,9,17/2,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,3,3,9,5,9/2,4,4,3,3,2,3,2,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,4,3,3,3,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,3,7/2,4,6,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,4,2,2,2,3,2,5/2,2,2,2,2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,7/2,3,5,4,11/2,6,14,8,8,5,7,5,6,6,11,6,13/2,5,8,5,7,7,13,7,13/2,5,7,5,6,6,10,6,7,6,10,7,10,9,25,13,25/2,8,13,8,9,8,13,7,15/2,5,8,5,13/2,6,10,6,11/2,4,6,4,9/2,4,8,5,5,4,6,4,6,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,7/2,3,6,3,3,2,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,1/2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,7/2,4,4,2,5/2,2,3,2,5/2,2,4,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,7/2,2,3,2,2,2,3,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4 -16,17/2,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,9,5,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,14,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,12,13/2,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,25/2,12,8,12,7,9,8,13,7,7,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,1,1,1,0,1/2,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,35/2,10,10,7,9,5,6,5,8,5,5,4,5,4,5,5,16,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,4,5,4,5,3,3,2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,3,4,4,8,5,6,5,9,6,9,9,11,6,6,4,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,6,5,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,0,0,0,0,-3/2,0,0,1,2,1,1,1,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,19/2,6,6,5,8,5,7,7,12,7,9,7,12,8,10,10,26,14,14,10,14,9,11,9,16,9,10,8,13,9,13,12,23,12,13,10,16,10,12,11,20,11,13,11,18,12,18,17,47,24,24,16,24,13,15,12,20,11,11,8,13,8,10,10,35/2,9,9,7,10,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,4,5,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,17/2,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,7/2,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,5,5,9,5,4,3,4,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,4,4,6,3,3,3,4,2,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-3,-3,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,7,4,5,4,5,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,5,6,5,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7 -16,9,9,6,9,11/2,6,11/2,9,5,6,5,7,5,6,5,10,6,6,4,5,3,3,3,5,3,3,5/2,3,5/2,3,3,9,5,5,3,5,3,3,3,3,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,6,4,4,5/2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,1,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1/2,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,5/2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,6,7,6,10,7,10,19/2,25,13,13,9,13,7,8,7,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,3,5/2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,4,3,5,3,4,4,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4 -17,9,19/2,7,10,6,13/2,6,10,6,6,5,7,5,6,5,10,6,11/2,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,9,5,5,3,5,3,7/2,3,3,2,2,2,2,2,5/2,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,4,4,3,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,5,3,7/2,4,6,4,11/2,5,7,4,7/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3,3,3,2,7/2,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,7,5,13/2,6,15,8,8,6,8,5,6,6,9,5,6,5,8,6,15/2,7,12,7,15/2,6,9,6,15/2,7,12,7,8,7,11,8,21/2,10,27,14,14,10,13,8,17/2,7,11,6,7,5,8,5,13/2,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,9/2,4,6,4,7/2,3,4,3,4,3,6,3,3,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,0,0,1/2,0,1,1,1,1,-1,0,1/2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-3/2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,0,0,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,4,4,3,7/2,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5 -13,7,7,5,7,4,5,9/2,8,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,9/2,7,5,6,6,10,6,6,5,9,6,8,8,20,11,11,7,10,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,7,4,4,3,4,3,4,3,4,5/2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -20,11,11,8,21/2,6,7,6,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,4,3,5,4,5,5,10,6,6,4,11/2,4,4,3,4,2,2,2,3,2,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,6,4,4,4,13/2,5,7,7,8,4,4,3,9/2,3,4,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,1,1,1,1,1,1,2,5/2,2,2,2,5,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,11/2,4,6,5,6,3,3,2,7/2,2,2,2,5,3,4,3,4,3,4,4,3,2,2,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,18,9,9,6,19/2,6,7,7,10,6,7,6,9,6,9,9,14,8,9,7,10,7,9,9,16,9,10,8,14,10,14,13,33,17,17,11,31/2,9,10,8,13,7,8,6,19/2,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,-1,0,1,1,1,1,0,0,-1,0,0,1,1,1,2,2,4,3,3,2,2,2,2,2,4,3,3,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,11/2,4,6,6,9,5,5,4,9/2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-2,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-1,0,0,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,7/2,2,3,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,6,6,5,3,3,3,5,3,4,4,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,4,4,6,4,4,4,11/2,4,6,6,7,4,5,4,11/2,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,4,4,5,3,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,5/2,2,3,3,3,2,3,2,7/2,3,4,3,5 -13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,5/2,3,3,5,3,4,3,4,5/2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,6,10,6,7,6,9,13/2,9,9,21,11,11,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,5/2,3,5/2,3,2,3,3,3,2,3,2,4,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3 -18,10,19/2,7,9,6,7,6,10,6,6,5,7,4,11/2,5,10,6,6,4,6,4,9/2,4,6,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,5/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,6,3,3,3,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,4,4,7,5,13/2,6,14,8,15/2,6,8,5,13/2,6,9,6,13/2,5,8,5,7,7,12,7,7,5,9,6,15/2,7,13,8,9,8,13,9,12,12,28,14,14,9,13,8,17/2,7,12,7,7,5,8,5,7,6,12,6,13/2,4,7,4,5,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,5/2,2,3,2,3,3,3,2,7/2,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1/2,0,1,1,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,4,3,7/2,3,5,4,9/2,4,5,3,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,4,3,4,3,9/2,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,3,2,7/2,4,4,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4 -17,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,9,11/2,6,5,8,5,7,7,11,6,7,5,8,5,7,7,12,7,9,7,12,8,11,11,26,13,13,17/2,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,5/2,4,3,4,3,4,3,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,5/2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4 -33,17,18,12,18,10,12,10,33/2,9,10,7,10,7,9,8,18,10,10,7,9,6,7,6,21/2,6,8,6,10,6,8,8,14,7,7,5,8,5,6,4,13/2,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,7/2,2,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15/2,4,5,4,7,5,8,8,14,8,8,6,8,5,5,4,9/2,3,4,3,4,3,4,4,3,2,1,1,1,1,2,2,3/2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,3,2,3,2,3,2,2,2,3/2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,5/2,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,2,7/2,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,13/2,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,8,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,23/2,7,8,6,10,7,11,11,23,12,12,9,13,8,11,10,17,10,11,8,13,9,13,13,21,11,12,9,14,9,13,12,45/2,13,15,12,20,14,21,21,48,24,24,16,24,13,15,12,41/2,11,12,9,14,9,11,11,21,11,12,9,13,8,9,8,27/2,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,19/2,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,9/2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,6,4,5,5,8,4,4,3,4,3,3,3,9/2,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,15/2,4,5,4,7,5,8,8,12,6,6,4,5,3,2,2,5/2,2,1,1,1,1,1,1,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,5,4,6,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,17/2,5,6,5,7,5,6,5,7,4,3,2,3,2,3,3,5,3,3,3,5,4,5,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6 -18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,7/2,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,5/2,3,2,2,2,3,2,3,3,2,3/2,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,7/2,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,11/2,8,8,12,7,7,6,9,6,8,7,13,8,9,7,12,8,12,12,27,14,14,10,14,8,9,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,9/2,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -21,11,23/2,8,11,7,8,7,10,6,13/2,5,6,4,11/2,5,11,6,13/2,4,6,4,5,5,8,5,11/2,4,7,5,6,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,6,3,3,3,3,2,2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,7/2,3,5,4,11/2,6,9,5,5,4,6,4,7/2,3,3,2,5/2,2,3,2,3,3,3,2,2,1,2,2,3/2,1,2,1,1,1,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,-1,0,0,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,3,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,9/2,4,6,4,5,5,8,4,9/2,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,17/2,6,9,6,15/2,7,12,7,15/2,6,9,6,9,9,15,8,9,7,11,7,10,9,16,9,21/2,8,14,10,14,14,32,16,33/2,12,16,9,21/2,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,8,5,11/2,5,7,5,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,7/2,2,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,4,5,3,4,4,8,5,5,3,4,3,7/2,4,6,4,4,3,6,4,9/2,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,4,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,4,3,3,2,3,2,3,3,5,3,3,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4 -18,19/2,10,7,9,11/2,6,6,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,5,5,7/2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3/2,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,7,11/2,8,5,7,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,9/2,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,5/2,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1/2,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,31/2,9,10,9,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,8,13,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,5,8,4,4,3,3,2,2,2,5,3,4,3,7/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,6,4,4,3,7/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,3,2,3,3,4,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,15/2,4,4,3,5,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,1,1,3/2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,5/2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,9/2,4,5,5,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,13/2,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,25/2,8,12,12,23,12,13,9,13,8,10,9,18,10,12,9,29/2,10,13,12,22,12,13,10,16,10,13,13,24,14,16,13,21,14,21,21,47,24,24,16,24,14,16,14,22,12,13,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,8,7,11,7,10,9,14,7,7,5,15/2,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,11/2,4,5,5,7,4,5,4,6,4,6,5,10,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,13/2,4,6,6,10,5,5,4,5,3,3,3,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-14,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,-1,-2,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,3,3,9/2,3,4,4,9,5,5,4,11/2,4,4,3,3,2,3,2,7/2,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,5,7,7,10,6,6,4,13/2,4,4,4,8,5,5,5,8,5,7,7,11,6,6,4,11/2,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,13/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,4,3,7/2,2,3,3,4,3,3,3,11/2,4,5,5,7,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4 -21,11,11,8,10,6,7,6,10,6,6,4,7,9/2,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,7/2,5,3,3,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,5/2,3,2,3,2,2,5/2,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,4,5,9/2,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,9,6,9,6,7,13/2,12,7,8,6,10,7,9,9,16,9,9,7,11,7,9,9,16,19/2,11,9,15,10,14,14,32,16,16,11,16,19/2,11,9,15,8,9,13/2,10,6,8,15/2,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,6,10,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,5/2,3,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1/2,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,7/2,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,3,2,4,3,3,5/2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,15,9,21/2,9,15,8,17/2,6,10,6,8,8,15,8,17/2,6,9,5,6,6,10,6,13/2,6,9,6,17/2,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,7/2,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,5,4,7,5,13/2,7,13,7,13/2,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-3/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3,3,4,2,2,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,7/2,2,4,3,3,3,5,3,4,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,13/2,6,12,6,13/2,5,7,5,6,6,10,6,6,5,7,5,13/2,6,13,7,7,5,7,5,13/2,6,12,7,8,7,12,8,12,12,22,12,25/2,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,27/2,10,17,11,14,13,24,14,31/2,13,22,15,21,21,47,24,24,16,24,14,16,13,23,12,25/2,9,14,9,12,11,20,11,11,8,11,7,17/2,7,12,7,8,6,10,7,9,9,15,8,7,5,7,5,6,5,9,5,11/2,4,7,4,11/2,6,10,6,6,4,6,4,11/2,5,8,5,11/2,4,6,4,13/2,6,10,6,13/2,4,7,4,4,4,7,4,4,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,3,5,3,7/2,3,4,2,5/2,2,4,3,7/2,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,10,6,11/2,4,5,3,7/2,3,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,2,1,1/2,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-6,-3,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,7/2,3,4,3,5,5,8,4,4,3,4,3,7/2,3,4,3,3,3,4,3,3,3,6,3,3,2,4,3,7/2,3,5,3,7/2,4,6,4,13/2,6,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,13/2,6,11,6,6,4,6,4,9/2,4,7,4,9/2,4,7,5,7,7,12,6,13/2,4,6,4,4,3,5,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,4,3,7/2,3,5,4,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,2,2,3,2,5/2,2,3,2,3,3,4 -31,16,16,11,15,9,10,9,15,8,8,6,10,13/2,9,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,8,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,5/2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,5/2,3,7/2,6,4,5,4,7,5,6,7,13,7,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,3/2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,6,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,5/2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,7,6,12,7,8,7,12,8,12,12,22,12,12,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,21/2,17,11,14,13,24,14,16,13,22,15,22,22,47,24,24,16,24,14,16,13,23,12,13,9,14,9,12,11,19,10,11,8,11,7,8,7,13,7,8,6,10,7,9,8,15,8,8,5,7,5,6,5,9,5,6,9/2,7,9/2,6,6,10,6,6,4,6,4,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,7,4,4,4,7,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3,5,3,4,3,4,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4 -60,31,31,21,30,17,20,17,30,16,17,13,20,13,17,16,31,16,17,12,17,10,12,11,20,11,12,10,17,12,17,17,32,16,16,11,15,9,11,9,15,8,9,6,9,6,9,8,15,8,9,7,11,7,9,8,13,8,9,8,14,10,14,13,25,13,14,10,14,8,10,9,17,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,13,51/2,14,14,10,15,9,11,10,17,10,11,8,13,8,10,10,18,10,10,7,11,7,8,7,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,13,10,15,9,10,9,16,9,10,7,11,7,10,10,18,9,9,7,10,6,7,6,9,5,6,5,8,6,8,8,15,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,3,4,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,2,2,3,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,39/2,10,10,8,12,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,10,6,8,8,15,9,11,10,17,12,18,19,37,19,19,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,12,22,13,15,12,21,14,21,21,40,21,22,15,23,14,17,14,25,14,16,13,22,14,20,19,37,20,21,16,25,16,22,21,41,23,27,23,41,28,42,42,92,46,46,31,46,26,31,26,47,25,26,19,31,19,26,24,44,23,23,16,23,14,17,14,25,14,16,13,22,14,20,20,38,19,19,13,19,11,14,12,20,11,11,8,13,8,11,11,21,11,12,9,13,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,10,12,10,17,9,10,8,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,19,10,11,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,8,29/2,8,8,6,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,7,13,8,9,8,14,9,13,13,25,13,13,9,14,8,9,7,12,7,7,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,5,7,4,5,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,4,5,4,7 -31,16,16,11,16,9,10,9,16,9,9,7,11,7,9,9,16,17/2,9,6,9,11/2,6,6,11,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,5,4,5,9/2,8,5,5,4,6,4,5,4,7,4,5,5,7,5,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,7,9/2,6,6,9,5,5,4,6,4,5,4,7,9/2,5,5,8,6,8,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,5/2,4,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,5,5,10,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,7/2,5,7/2,4,4,8,5,6,5,9,13/2,10,10,19,10,10,7,11,13/2,8,7,12,7,7,6,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,11,20,11,11,8,12,7,9,15/2,13,15/2,8,7,12,8,11,10,19,10,11,17/2,13,8,11,11,21,12,14,12,21,15,22,22,47,24,24,16,24,14,16,14,24,13,14,10,16,10,14,12,23,12,12,8,12,7,9,8,13,8,9,7,11,15/2,10,10,20,10,10,7,10,6,7,6,11,6,6,5,7,9/2,6,6,11,6,6,5,7,9/2,6,5,8,5,6,9/2,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,8,5,6,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,7/2,5,3,4,7/2,6,4,4,7/2,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,5/2,4 -31,16,16,11,16,9,21/2,9,16,9,9,7,11,7,19/2,9,16,8,17/2,6,9,6,13/2,6,11,6,7,6,9,6,9,9,17,9,17/2,6,8,5,6,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,4,4,6,4,5,5,7,5,8,8,14,8,8,6,8,5,11/2,5,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,9/2,4,6,4,13/2,6,11,6,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,4,4,7,4,9/2,3,5,4,9/2,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,11/2,5,9,5,11/2,4,7,4,11/2,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,15/2,7,13,7,15/2,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,5,4,6,5,7,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,8,4,7/2,3,4,3,3,3,5,3,5/2,2,4,2,5/2,2,5,3,5/2,2,2,2,3/2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,5,5,10,6,6,5,6,4,9/2,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,8,4,4,3,4,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,6,5,9,6,19/2,10,19,10,10,7,11,6,15/2,6,12,7,7,6,8,5,7,7,13,7,15/2,6,8,5,7,7,11,7,8,7,11,8,11,11,20,10,21/2,8,12,7,17/2,7,13,8,17/2,7,12,8,11,10,19,10,23/2,9,13,8,11,11,22,13,15,13,22,15,22,22,47,24,24,16,24,14,33/2,14,24,13,27/2,10,16,10,27/2,12,23,12,12,8,12,7,9,8,13,8,9,7,11,8,21/2,10,20,10,10,7,10,6,7,6,11,6,6,5,6,4,6,6,11,6,13/2,4,7,4,11/2,5,9,5,11/2,4,8,6,8,8,15,8,9,6,8,5,6,5,9,5,11/2,4,8,5,6,6,11,6,13/2,5,6,4,11/2,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,7/2,2,3,2,7/2,4,7,4,9/2,4,5,4,9/2,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,5,3,3,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,4,3,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,13,7,7,5,7,4,5,4,7,4,9/2,3,4,3,4,4,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,4,5,5,8,4,9/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3 -21,11,11,8,11,13/2,8,6,11,6,6,5,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,7/2,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,5/2,4,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,32,17,17,23/2,17,10,12,10,16,9,10,7,11,7,9,8,16,8,8,6,8,5,7,6,9,11/2,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,5/2,5,3,3,3,4,3,4,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,5/2,3,5/2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,5/2,3,3,4,5/2,2,2,3,5/2,3,3,6,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -30,15,15,11,16,9,11,9,16,9,9,7,21/2,7,10,9,16,9,9,6,9,6,7,6,10,6,6,5,9,6,9,9,17,9,10,7,19/2,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,5,4,13/2,5,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,13/2,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,11/2,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,5,4,7,5,8,8,12,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,9,5,6,4,13/2,4,5,5,8,5,5,4,15/2,6,8,8,14,8,8,6,15/2,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,4,3,4,3,5,4,6,6,7,4,4,3,3,2,3,3,5,3,3,2,5/2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,4,3,4,4,11/2,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,11/2,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,4,5,5,9,6,7,6,9,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,11,7,10,10,19,10,10,7,21/2,6,8,7,13,7,8,6,21/2,7,10,10,19,11,12,9,29/2,10,13,12,22,13,15,13,22,15,22,22,49,25,25,17,25,14,16,14,24,13,13,10,31/2,10,12,12,24,12,12,8,25/2,8,10,8,14,8,9,7,21/2,7,10,10,19,10,10,7,19/2,6,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,6,5,9,5,5,4,7,5,6,6,11,6,6,4,11/2,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,9/2,3,4,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3 -17,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,6,11/2,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,8,5,5,7/2,5,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,5/2,4,4,4,5/2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,7/2,4,7/2,5,4,6,6,12,13/2,6,9/2,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,6,4,4,4,7,9/2,6,6,11,6,6,4,6,4,5,4,8,9/2,5,4,6,9/2,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,9,6,7,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 -21,11,11,8,12,7,15/2,6,11,6,13/2,5,7,5,7,7,12,6,13/2,5,7,4,11/2,5,8,5,5,4,6,4,13/2,6,13,7,7,5,6,4,9/2,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,4,11/2,5,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,5,7,4,9/2,4,5,3,4,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,2,3,5,3,7/2,2,3,2,3,3,5,3,4,3,5,4,11/2,6,9,5,5,4,6,4,9/2,4,6,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,3,3,6,4,4,4,5,4,6,6,10,6,11/2,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,5,3,4,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,9/2,4,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,3,4,4,6,4,4,4,6,5,7,7,15,8,15/2,5,8,5,6,5,8,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,4,4,6,4,9/2,4,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,15/2,7,12,7,8,6,10,7,9,8,15,9,10,9,15,10,31/2,16,33,17,35/2,12,17,10,23/2,10,17,9,19/2,7,11,7,9,8,17,9,17/2,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,5,4,11/2,6,12,6,13/2,5,6,4,5,4,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,7/2,3,6,4,7/2,3,5,4,9/2,4,8,5,5,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,2,3,2,3,3,6,4,7/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,2,4,3,3,2,4,3,3,3,4,3,7/2,3,6,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,4,3,7/2,3,4,3,5,5,8,5,5,4,4,3,4,3,5,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3 -18,9,9,7,10,6,7,6,9,5,5,4,6,4,6,6,11,6,6,9/2,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,5/2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,11/2,9,6,8,7,13,8,9,8,13,9,13,27/2,28,15,15,10,14,8,10,8,14,8,8,6,9,6,8,7,14,7,7,5,8,5,6,5,9,5,6,4,7,9/2,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,3,5/2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -31,16,16,11,16,9,11,9,31/2,8,8,6,10,7,10,9,19,10,11,8,12,7,9,8,13,8,9,7,11,7,10,10,20,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,15/2,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,15/2,5,6,5,7,5,6,6,8,4,4,3,4,3,4,3,9/2,3,4,3,5,4,5,5,7,4,4,2,2,2,2,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,11/2,4,5,5,8,6,8,7,14,7,7,5,7,4,5,5,17/2,5,6,4,6,4,5,4,8,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,9,5,6,4,6,4,5,5,17/2,5,6,5,9,7,10,11,22,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,5,6,6,19/2,6,7,7,12,8,12,11,18,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,11,9,14,9,13,12,45/2,13,16,14,24,16,24,24,50,26,26,18,26,15,17,14,49/2,13,14,10,16,10,13,12,24,13,13,9,14,9,11,9,16,9,10,7,11,7,10,10,19,10,10,8,12,7,9,7,12,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,7,18,9,9,6,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,5,7,4,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,3,3,2,7/2,2,2,2,4,3,3,3,9,5,5,4,5,4,5,4,7,4,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,3,2,3,3,9/2,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,11/2,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,3,3,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,2,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,11/2,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,13/2,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,15/2,4,5,4,6,4,5,5,7,4,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5 -17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,11/2,10,6,6,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,5/2,4,3,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,3,3,3,2,3,3,4,3,5,4,8,4,4,3,4,3,3,3,5,3,4,5/2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,13/2,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,6,10,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,9,8,13,9,13,13,27,14,14,10,14,8,9,8,14,15/2,8,6,9,6,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,5/2,4,3,3,3,4,3,3,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -18,10,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,11,6,13/2,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,5,3,7/2,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,7/2,3,3,2,2,2,2,2,3,3,6,3,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,7/2,2,4,3,7/2,3,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,4,4,5,3,4,3,4,3,7/2,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,5/2,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,4,2,5/2,2,3,2,3,2,4,2,5/2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,3,3,2,3,3,4,3,5,5,9,5,9/2,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,5/2,2,5,3,4,3,4,3,7/2,3,6,4,4,3,6,4,6,7,13,7,13/2,4,6,4,9/2,4,7,4,4,4,5,4,9/2,4,7,4,4,3,6,4,4,4,6,4,9/2,4,7,5,7,7,11,6,6,5,6,4,11/2,5,8,5,6,5,6,4,6,6,11,6,13/2,6,9,6,15/2,7,14,8,19/2,8,15,10,29/2,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,7,14,8,15/2,6,8,5,7,6,9,5,11/2,4,6,4,6,6,12,6,6,5,7,4,11/2,4,7,4,7/2,3,4,3,7/2,3,5,3,7/2,2,4,3,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,7/2,3,5,4,9/2,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,7,4,7/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,3,3,2,3,3,6,4,7/2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-5/2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,4,2,2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3 -14,8,8,6,8,5,5,9/2,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,7/2,5,5,9,5,5,3,5,3,3,3,4,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,3/2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,7,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -22,12,12,9,13,8,9,7,13,7,8,6,17/2,6,8,7,13,7,8,6,17/2,5,6,6,10,6,6,5,15/2,5,6,6,13,7,7,5,7,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,2,2,2,3,2,2,2,7/2,3,4,5,12,6,6,4,11/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,3,3,6,4,4,2,5/2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,13/2,4,5,5,6,4,4,3,5,3,4,4,8,4,4,4,11/2,4,4,4,6,4,5,4,6,4,6,6,8,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,7/2,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,9/2,3,4,4,5,3,2,2,2,2,2,2,5,3,3,3,4,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,10,5,5,4,6,3,3,3,6,3,3,2,3,3,4,4,5,3,3,2,3,3,4,4,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,7,4,5,4,13/2,5,7,8,15,8,8,6,8,5,5,5,8,5,6,5,7,5,6,6,9,5,6,4,11/2,4,4,4,6,4,5,4,15/2,6,8,8,12,7,7,5,7,4,5,5,9,5,6,5,17/2,6,7,7,14,8,8,6,21/2,7,10,9,16,10,12,10,18,12,17,17,35,18,18,12,18,11,13,11,18,10,10,8,12,8,10,9,17,9,10,7,19/2,6,7,7,12,6,6,5,15/2,6,8,7,15,8,8,6,15/2,5,6,5,7,4,5,4,11/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,3,3,4,3,4,4,13,7,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,5,3,4,3,4,3,4,5,9,5,4,3,4,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,3,4,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,3,4,4,3,2,2,2,2,2,3,3,4,2,2,2,7/2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,3,2,2,2,3,2,3,3,3,2,2,2,7/2,3,4,4,4,3,3,2,7/2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,2,2,2,7/2,2,2,2,5,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,4 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,5/2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,7/2,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,9/2,7,5,6,6,10,6,8,7,12,8,11,11,22,12,12,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,8,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,5/2,4,5/2,3,3,6,7/2,3,3,4,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3 -19,10,10,7,11,7,8,6,11,6,13/2,5,8,5,7,6,12,7,7,5,8,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,9/2,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,4,4,10,6,11/2,4,4,3,4,4,5,3,7/2,3,4,3,7/2,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,5/2,3,5,3,3,2,3,2,7/2,3,5,3,4,3,5,3,4,4,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,7/2,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,5,3,3,3,5,3,5/2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,5,3,7/2,3,4,2,5/2,3,5,3,3,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,4,3,7/2,3,5,4,5,5,9,5,9/2,3,5,3,3,2,5,3,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,6,4,4,3,4,3,7/2,3,6,4,4,4,6,4,13/2,7,12,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,9/2,4,7,4,5,4,6,4,4,4,6,4,9/2,4,7,5,13/2,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,13/2,6,13,7,15/2,6,10,6,8,8,14,8,21/2,9,16,11,31/2,16,31,16,31/2,10,15,9,11,9,15,8,17/2,7,10,6,17/2,8,14,8,15/2,6,8,5,13/2,6,10,6,6,5,8,5,13/2,6,13,7,13/2,4,6,4,9/2,4,6,4,4,3,5,3,3,3,5,3,7/2,2,4,3,4,3,5,3,7/2,2,3,2,7/2,4,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,3,4,4,2,2,3/2,2,2,2,3/2,2,3,2,3,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,7/2,3,5,3,4,3,9,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3 -18,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,5,4,5,5,9,5,4,3,4,3,3,2,4,5/2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,8,6,10,6,8,8,14,8,10,17/2,15,10,15,15,30,15,15,10,15,9,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,5/2,3,5/2,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,5/2,3,2,2,2,5,3,4,3,4,3,4,3,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,5,8,5,6,5,15/2,4,5,4,6,4,4,3,5,3,4,4,7,5,7,7,19,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,19/2,6,6,4,6,4,4,4,6,4,5,4,6,4,5,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,4,4,15/2,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,16,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,25/2,7,7,5,6,4,5,5,8,5,6,5,8,6,9,9,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,5,4,5,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,3,5,3,4,4,6,4,5,5,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,21/2,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,16,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,11,22,11,11,8,11,7,8,8,14,7,7,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,11,11,19,10,10,7,10,6,8,7,12,7,8,7,12,8,12,12,45/2,12,13,10,16,10,14,13,24,14,17,15,26,18,27,27,57,29,29,19,28,16,19,16,28,15,16,12,19,12,15,13,24,13,13,10,15,9,11,10,18,10,11,9,14,9,12,11,21,11,10,7,10,6,8,7,11,6,7,5,8,5,5,5,8,5,5,3,4,3,3,3,6,4,4,4,7,5,7,6,18,9,9,6,8,5,6,5,8,5,5,4,5,4,6,6,19/2,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,13/2,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,5,7,7,3,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,16,8,8,6,9,5,6,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,10,6,6,5,7,4,5,4,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6 -18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,6,11,6,6,9/2,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,7,10,13/2,8,7,13,7,7,11/2,8,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,7,6,11,6,13/2,5,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,4,9/2,4,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,3,6,4,7/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,3,4,4,9,5,9/2,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,4,11/2,6,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,3,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,1/2,0,0,0,0,1,2,2,3/2,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,4,3,5,4,9/2,5,9,5,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,4,6,4,5,5,12,6,6,4,7,4,5,4,7,4,4,3,4,3,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,6,6,10,6,11/2,4,6,4,5,4,8,5,11/2,4,7,5,7,7,12,7,7,6,10,6,17/2,8,13,8,19/2,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,13/2,6,12,6,13/2,5,6,4,5,4,6,4,4,3,5,3,4,4,4,3,7/2,2,2,2,2,2,5,3,3,3,4,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,3,2,7/2,4,4,3,7/2,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,7,4,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-5,-2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,2,2,5/2,2,2,2,3,3,9,5,9/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4 -14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,4,5/2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,2,3/2,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,6,4,4,3,4,3,4,9/2,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3 -21,11,10,7,10,6,7,6,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,15/2,5,6,5,7,4,4,3,4,3,4,3,4,3,3,2,7/2,2,3,2,4,3,4,4,11/2,4,5,5,13,7,7,5,6,4,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,7/2,2,3,2,5,3,4,3,7/2,3,4,4,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,9/2,3,4,4,9,5,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,4,3,4,4,7,4,4,3,5,3,3,2,5,3,4,3,7/2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,3,2,3,2,7/2,2,3,3,0,0,0,0,0,0,0,0,1,1,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,6,4,4,4,11/2,4,5,5,8,5,5,3,4,3,3,3,5,3,2,2,5/2,2,3,3,7,4,4,3,3,2,3,2,3,2,3,3,11/2,4,4,4,3,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,11/2,4,5,5,13,7,7,5,15/2,4,5,5,7,4,4,3,5,4,5,5,9,5,6,4,11/2,4,4,4,9,5,6,4,13/2,5,7,7,12,7,7,5,15/2,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,21/2,7,9,9,16,9,11,10,17,12,17,17,34,17,17,12,17,10,11,9,17,9,10,8,23/2,8,10,9,15,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,11,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,4,3,9/2,4,5,5,8,5,5,4,9/2,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3/2,2,3,3,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-1,0,0,0,1/2,1,1,1,-6,-2,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,7/2,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,4,10,5,5,4,9/2,3,3,2,5,3,2,2,2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,3,2,7/2,3,4,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,7/2,2,2,2,4,3,4,3,9/2,3,3,3,5 -13,7,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,5,7/2,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,11/2,9,5,5,4,6,7/2,4,4,6,4,4,3,5,7/2,5,9/2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -16,8,8,6,7,4,11/2,5,8,5,5,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,4,3,3,3,4,3,4,4,11,6,11/2,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,8,4,4,3,5,3,4,4,5,3,7/2,3,4,3,7/2,4,4,3,7/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,7/2,3,3,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,7/2,3,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,3,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,5,3,7/2,4,6,4,4,3,6,4,11/2,5,10,6,13/2,4,7,4,5,5,8,5,11/2,4,7,5,13/2,6,10,6,13/2,5,8,5,7,7,12,7,9,8,13,9,27/2,13,26,14,14,9,13,8,9,7,12,7,7,6,9,6,15/2,7,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,5,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,8,4,9/2,4,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,2,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,-2,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,4,3,3,3,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,5/2,2,2,2,3/2,1,1,1,1/2,0,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,5/2,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -14,7,7,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,5/2,3,7/2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,9/2,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,6,7/2,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 -24,12,12,8,12,7,8,7,11,6,7,6,9,6,8,7,15,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,8,5,5,4,13/2,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,9/2,4,5,5,8,6,8,8,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,7,4,4,3,5,4,5,5,19/2,6,6,5,9,6,8,8,14,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,2,2,2,7/2,2,2,2,4,3,4,4,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,11/2,4,4,4,6,4,6,5,6,3,3,3,4,3,4,4,11/2,4,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,6,16,9,9,7,10,6,7,6,9,5,6,5,7,5,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,6,8,8,19,10,10,7,10,6,8,7,25/2,8,9,7,12,8,11,11,18,10,10,8,12,8,10,10,39/2,12,14,12,21,14,21,21,42,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,17,9,10,8,12,7,9,8,27/2,8,8,6,10,7,9,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,12,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,3,3,4,4,11/2,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,6,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,11,6,6,4,6,4,5,4,13/2,4,4,3,4,3,4,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,6,3,3,3,4,2,2,2,5/2,2,2,1,1,1,1,2,-1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,1,1,3/2,2,2,1,1,1,1,2,4,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,1,1,1/2,0,0,0,0,1,1,2,7,4,4,3,4,2,2,2,7/2,2,2,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,9,5,6,4,6,4,4,3,5,3,3,2,3,2,3,4,8,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,9/2,2,2,2,2,1,1,1,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,5,5,8 -13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,4,7/2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,9/2,5,4,7,5,7,13/2,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,11/2,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,5/2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5 -15,8,8,6,8,5,6,5,8,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,6,4,9/2,4,6,4,11/2,6,10,6,6,4,5,3,7/2,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,6,6,11,6,6,4,6,4,4,4,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,5,3,4,3,5,3,3,3,4,3,3,3,3,3,4,4,6,4,5,4,6,4,11/2,6,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,3,2,5,3,4,3,4,2,2,2,3,2,3/2,2,2,2,5/2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,3,9/2,4,6,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,4,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,5,3,4,3,3,2,3,3,4,2,2,2,4,3,9/2,4,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,13/2,5,6,4,11/2,5,8,5,11/2,4,8,6,8,7,12,7,7,6,9,6,15/2,7,13,8,9,8,14,10,27/2,14,26,14,27/2,9,13,8,17/2,7,13,7,7,6,8,6,8,7,12,6,6,5,8,5,5,5,9,5,5,4,7,4,11/2,5,10,5,5,4,5,3,3,3,6,4,7/2,3,4,3,4,4,7,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,5/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,4,4,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,3,3,7,4,9/2,3,4,3,7/2,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,7/2,4,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,4,2,2,2,2,1,1,1,3,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,3/2,2,2,2,3/2,2,3,2,3,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6 -13,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,7/2,5,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,11/2,6,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,21,11,11,15/2,11,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,7/2,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,2,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6 -22,11,11,8,21/2,6,8,6,11,6,7,5,15/2,5,6,5,10,6,6,4,13/2,4,6,5,8,5,6,5,9,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,6,4,5,4,7,5,7,8,15,8,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,6,4,11/2,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,3,3,5,3,3,2,3,3,4,4,7,4,4,4,11/2,4,4,4,12,7,8,6,17/2,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,11/2,4,4,3,7,4,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,7,4,5,4,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,3,6,4,4,3,9/2,3,4,3,5,3,3,3,4,3,5,5,0,0,0,1,3/2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,5/2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,5,4,6,6,8,5,5,4,11/2,4,4,3,5,3,3,2,3,2,3,4,5,3,3,2,3,2,2,2,6,4,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,3,2,7/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,3,3,5,4,5,6,13,7,7,5,8,5,5,4,6,4,4,4,13/2,4,6,6,12,6,6,5,15/2,5,6,6,10,6,6,6,19/2,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,37/2,10,12,10,18,10,10,7,11,7,10,10,17,9,9,6,17/2,5,6,6,12,7,8,6,17/2,6,8,7,13,7,7,5,13/2,4,5,4,7,4,5,4,11/2,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,11/2,4,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,7/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,9/2,4,5,5,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,3,3,9,5,6,4,11/2,4,4,4,6,4,4,3,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,4,-1,0,0,1,1,1,1,1,0,1,1,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,4,4,6,4,6,6,11 -15,8,8,5,8,9/2,6,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,2,2,2,3,2,3,5/2,3,3,4,7/2,5,3,4,3,4,5/2,3,3,4,3,3,5/2,3,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,8,5,5,4,6,7/2,4,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,3,4,3,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,5/2,4,7/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,5/2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,4,5,7/2,4,4,7,4,4,4,7,9/2,6,6,11,6,6,4,7,4,5,4,7,4,5,4,7,5,7,13/2,11,6,7,11/2,8,11/2,7,7,12,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,7/2,6,7/2,4,3,4,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,3,4,3,5,5,8 -22,11,21/2,7,11,6,15/2,6,10,6,11/2,4,6,4,11/2,5,10,6,11/2,4,6,4,5,5,8,5,11/2,5,8,5,7,7,12,6,13/2,5,7,4,9/2,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,9/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,3,3,4,3,3,3,4,3,9/2,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,7,4,4,3,5,3,4,4,12,7,7,5,8,4,9/2,4,7,4,4,3,5,3,4,4,5,3,7/2,3,5,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,6,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,3,3,2,2,2,2,3,7,4,9/2,4,4,3,3,3,5,3,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,7/2,4,6,4,7/2,3,4,3,4,4,6,4,5,4,6,4,13/2,7,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,4,3,7/2,3,5,3,4,3,5,4,9/2,4,7,4,9/2,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,5,3,4,4,5,3,7/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,5,4,6,4,6,6,11,6,13/2,5,7,5,6,6,10,6,13/2,6,10,6,17/2,8,16,8,8,6,10,6,15/2,6,11,6,15/2,6,10,7,10,9,16,9,10,8,12,8,21/2,10,17,10,23/2,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,6,10,6,6,5,7,5,13/2,6,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,9,5,5,3,5,3,7/2,3,5,3,7/2,4,6,4,6,5,9,5,5,4,6,4,9/2,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,7/2,4,8,4,9/2,4,5,3,3,3,5,3,3,3,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,0,1,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-4,-4,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,4,4,-1,0,1,1,1,1,1,1,0,1,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,3,5,3,4,4,6,5,7,7,12 -21,11,10,7,11,6,7,6,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,9/2,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,9/2,8,4,4,7/2,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,4,8,5,5,4,7,5,7,7,12,6,6,5,6,4,4,4,7,4,4,7/2,5,3,4,4,6,3,3,5/2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,9/2,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,11/2,9,6,8,8,16,17/2,9,6,10,6,8,13/2,11,6,7,6,10,7,10,9,17,9,10,8,12,8,10,19/2,17,10,12,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,9,9,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,12 -41,21,22,15,23,14,17,14,25,13,14,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,12,8,12,12,45/2,12,12,9,13,8,10,9,16,9,9,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,14,10,14,13,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,7,6,9,5,5,4,7,5,7,8,29/2,8,8,6,9,5,6,6,10,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,7,6,9,6,7,7,13,7,8,7,11,8,12,12,22,12,12,8,12,7,8,6,10,6,6,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,5,13,7,7,5,8,5,6,5,8,5,5,3,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,6,5,8,6,8,8,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,11,8,12,12,12,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,7,7,27/2,8,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,10,21,11,11,7,10,6,7,7,12,7,8,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,9,15,10,15,16,31,16,16,11,17,10,13,12,22,12,14,12,20,13,18,18,35,18,19,14,23,14,18,17,32,18,21,18,32,22,33,33,67,34,34,22,32,18,21,18,32,17,18,13,20,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,12,22,12,12,9,13,8,9,8,14,8,8,6,10,7,10,10,19,10,10,7,11,7,9,8,15,9,10,8,12,8,11,10,17,9,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,6,5,7,7,25/2,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,2,2,2,1,1,1,2,2,4,3,3,3,5,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,9,9,14,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,7,5,6,5,8,5,7,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,24 -21,11,12,8,12,7,9,8,13,7,8,6,9,6,8,15/2,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,6,6,5,7,9/2,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,12,13/2,6,4,6,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,5,7,7,7,4,4,3,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,17,10,11,10,17,12,17,17,34,18,18,12,17,10,11,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,6,11/2,9,11/2,6,5,7,5,7,6,12,6,6,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,8,4,4,3,5,3,3,3,4,5/2,3,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,6,4,6,7,13 -22,12,23/2,8,12,7,17/2,8,13,7,15/2,6,9,6,8,8,13,7,15/2,6,9,5,11/2,5,9,5,5,4,7,5,13/2,6,12,6,6,4,7,4,11/2,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,5/2,2,4,3,4,4,13,7,6,4,6,4,5,4,6,4,9/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,6,4,9/2,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,7/2,4,5,3,4,4,7,5,7,7,7,4,4,3,6,4,4,4,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,4,6,4,5,4,7,4,9/2,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,16,9,9,7,9,6,15/2,7,12,7,8,7,11,7,10,10,19,10,21/2,8,12,8,21/2,10,17,10,11,10,17,12,35/2,18,34,18,18,12,17,10,11,10,17,9,9,7,10,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,7,5,7,6,12,6,13/2,5,7,5,6,5,8,5,5,4,6,4,11/2,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,4,7/2,3,3,2,5/2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,4,3,5,3,4,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-2,-4,-2,-7/2,-4,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,3,2,3,2,7/2,4,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,1,3/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,4,5,5,7,4,9/2,4,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,13/2,7,13 -15,8,8,6,8,5,6,11/2,9,5,5,4,7,9/2,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,7/2,5,5,9,5,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,7/2,5,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,5/2,4,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9 -22,12,12,8,25/2,8,9,8,12,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,6,6,14,7,7,5,15/2,5,6,5,8,5,6,4,13/2,4,5,5,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,4,13,7,7,5,7,4,5,5,6,4,4,4,6,4,4,4,6,4,4,4,11/2,4,4,4,6,4,4,4,13/2,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,9/2,3,4,3,5,3,4,3,7/2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,4,3,2,2,2,2,2,2,1,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,2,4,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,4,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,3,3,8,5,5,3,4,3,3,3,6,4,5,5,8,6,8,8,7,4,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,9/2,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,4,6,4,4,4,13/2,4,6,6,14,7,7,5,13/2,4,6,5,6,4,4,4,6,4,6,5,9,5,6,4,13/2,4,6,6,9,5,6,6,19/2,6,9,9,17,9,9,7,11,7,9,8,13,7,8,6,21/2,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,35,18,18,12,18,11,13,11,18,10,10,8,23/2,8,10,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,12,6,6,4,13/2,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,3,3,2,7/2,3,4,3,6,3,3,2,3,2,3,2,4,2,2,2,3,3,4,4,6,4,4,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,4,5,4,9,5,6,4,11/2,4,4,3,4,3,3,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,3/2,2,2,1,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,1/2,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,9/2,4,5,5,9,5,6,4,13/2,4,5,5,8,5,6,5,15/2,5,7,7,13 -13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,5,3,4,7/2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,5,7/2,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,6,7/2,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,10,6,6,5,7,9/2,6,5,8,5,5,4,6,9/2,6,6,12,7,7,5,8,5,7,6,11,13/2,8,6,10,7,10,10,20,11,11,15/2,11,7,8,6,11,6,6,5,7,5,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,5/2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8 -17,9,9,7,10,6,13/2,6,8,5,5,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,9/2,5,9,5,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,6,4,7/2,2,4,3,7/2,3,5,4,9/2,4,7,5,6,6,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,7,4,3,2,4,3,3,3,3,2,3,2,4,3,4,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,4,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,7,7,13,7,15/2,6,8,5,13/2,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,19/2,8,13,9,25/2,12,25,13,13,9,13,8,9,7,13,7,7,5,8,5,7,7,11,6,13/2,5,6,4,9/2,4,7,4,5,4,5,4,5,5,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,9/2,5,9,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,5,5,8,5,5,4,5,3,7/2,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,3,3,4,3,7/2,3,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,1,3/2,1,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,4,3,4,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10 -15,8,8,6,8,5,6,5,8,5,5,4,7,9/2,6,11/2,9,5,5,4,5,3,4,7/2,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,4,4,4,6,9/2,6,6,12,13/2,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,13/2,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8 -26,14,14,10,14,8,10,8,27/2,8,8,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,10,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,7,5,8,8,14,8,8,6,9,5,6,5,17/2,5,6,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,6,5,15/2,4,4,3,4,3,5,5,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,3,4,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,1,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,4,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,1,1,1,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,4,5,4,9,5,5,4,6,4,5,5,17/2,5,6,5,9,6,8,8,8,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,10,6,6,4,6,4,4,3,9/2,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,21,11,12,8,12,8,10,9,16,9,10,8,12,8,12,11,20,11,12,9,13,9,12,12,22,12,14,11,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,13,9,12,11,16,9,9,7,10,6,8,6,21/2,6,7,5,8,6,8,8,15,8,9,6,9,5,6,6,19/2,6,6,5,9,6,7,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,6,4,4,4,13/2,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,3,3,3,4,3,4,4,13/2,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,4,4,5,3,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1,1,1,2,3,2,3,2,7/2,2,3,3,4,3,3,3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,5,5,17/2,5,5,4,7,5,7,7,14 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,7,4,4,7/2,5,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,5,5,7/2,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,12,13/2,7,5,7,5,6,5,9,5,6,9/2,7,5,7,6,11,6,7,5,7,5,7,7,12,7,8,13/2,11,15/2,11,11,20,11,11,15/2,11,6,7,6,11,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8 -16,9,9,6,8,5,11/2,5,8,5,11/2,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,5,3,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,6,4,4,3,6,4,4,3,4,3,7/2,4,5,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,6,4,4,3,5,3,7/2,3,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,9/2,4,6,4,6,6,6,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,11/2,4,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,6,4,4,3,6,4,13/2,6,13,7,7,5,8,5,13/2,6,9,5,11/2,4,7,5,7,7,12,7,7,6,8,6,15/2,8,14,8,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,6,4,5,4,7,4,5,4,6,4,11/2,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,2,2,3,3,4,2,5/2,2,4,3,4,4,8,4,4,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,3,2,3/2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,7,4,4,3,2,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,2,2,2,3,3,3,2,2,2,3,2,5/2,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,9/2,4,8 -12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,9/2,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,9/2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,7/2,5,5,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,5,5,7,4,4,7/2,6,4,5,5,10,6,6,5,7,5,6,6,11,13/2,7,6,10,7,10,10,18,19/2,10,7,10,6,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,7/2,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 -20,10,10,7,11,7,8,6,10,6,7,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,7,7,6,4,4,4,11/2,4,4,4,7,4,5,4,6,4,5,5,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,10,6,6,4,13/2,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,4,2,5/2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,3,9/2,3,4,4,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,4,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,4,2,2,2,5/2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,1/2,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,3,2,2,2,3,2,2,2,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,15/2,5,6,6,9,5,5,4,5,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,4,9/2,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,4,11/2,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,5,8,5,5,4,7,5,8,8,17,9,9,7,21/2,6,8,7,11,6,6,5,17/2,6,8,8,16,9,10,7,11,7,10,10,19,11,12,10,33/2,11,16,16,29,15,15,10,31/2,9,11,9,16,9,9,7,21/2,7,9,8,14,8,8,6,8,5,6,5,9,5,6,5,17/2,6,7,7,14,7,7,5,7,4,5,4,7,4,5,4,15/2,5,6,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,11/2,4,5,5,6,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,11/2,4,5,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,7/2,2,3,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,8,4,4,3,7/2,2,3,2,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,11/2,4,4,4,7,4,5,4,13/2,4,6,6,11 -13,7,7,5,7,9/2,5,4,7,4,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,5,3,3,3,5,7/2,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,5/2,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,5/2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,2,5/2,4,3,4,4,7,4,4,3,3,2,3,3,4,5/2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,9/2,6,5,8,9/2,5,4,6,4,6,6,11,6,7,5,8,5,7,7,12,7,8,13/2,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,9/2,8 -18,10,19/2,7,10,6,13/2,6,9,5,11/2,4,6,4,13/2,6,12,6,13/2,4,6,4,4,4,7,4,4,4,6,4,6,6,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,5,3,7/2,3,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,4,4,7,4,9/2,4,5,3,4,4,7,4,7/2,3,4,3,4,4,6,4,9/2,4,5,4,5,5,6,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,5/2,3,5,3,7/2,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,0,0,0,0,0,0,4,3,3,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,9/2,4,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,5/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,1,1,1,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,13/2,6,8,5,5,4,5,3,4,4,6,4,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,7/2,4,6,4,5,5,9,5,5,4,4,3,4,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,6,6,13,7,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,7,5,7,7,15,8,17/2,6,10,6,15/2,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,19/2,9,16,9,11,9,15,10,14,14,25,13,27/2,9,13,8,10,8,14,8,8,6,10,6,17/2,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,13/2,4,6,4,9/2,4,7,4,9/2,4,6,4,11/2,5,9,5,9/2,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,13/2,4,6,4,5,4,7,4,9/2,4,5,3,4,4,7,4,5,4,6,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,3,5,3,7/2,3,4,3,9/2,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,1,3,2,1,1,1,1,1/2,1,1,1,1/2,1,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,3,7,4,7/2,3,4,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,4,3,4,3,4,4,6,4,9/2,4,7,5,7,6,11 -18,10,10,7,10,6,6,11/2,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,5,7,4,4,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,1/2,0,0,0,0,0,0,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,2,1,2,2,2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,13/2,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,15,8,8,6,9,6,7,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,10,9,16,9,11,9,14,10,14,14,24,13,13,9,13,8,9,8,13,15/2,8,6,9,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,7/2,5,7/2,5,9/2,8,9/2,5,4,6,4,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1/2,0,1/2,0,1,3,2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11 -34,18,18,12,17,10,13,11,20,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,8,9,7,11,7,10,10,11,6,7,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,5,9,6,7,7,13,7,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,5,3,4,3,3,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,25/2,7,8,6,8,5,7,7,12,7,8,6,9,7,10,10,11,6,6,4,6,4,6,5,9,5,6,5,8,5,6,6,19/2,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3/2,1,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,8,4,4,3,5,3,3,2,3,2,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,15,8,9,6,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,15,8,9,6,9,6,8,7,13,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,7,8,6,10,7,11,11,23,12,12,8,11,6,7,6,11,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,11,7,8,7,12,8,12,13,29,15,16,12,18,11,13,11,20,11,12,10,17,11,16,15,57/2,15,16,12,18,12,16,15,29,16,18,15,26,18,27,27,47,24,24,16,23,13,16,13,23,13,14,11,18,11,15,14,53/2,14,14,10,14,9,11,10,18,10,11,9,15,10,13,13,22,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,9,7,10,6,8,8,15,8,9,7,12,9,13,13,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,7,10,10,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,6,10,7,9,9,19,10,11,8,11,7,8,7,12,7,7,5,8,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,-1,-7/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,3,2,2,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,4,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5/2,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,4,4,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,21/2,6,6,4,6,4,6,6,11,7,8,7,11,8,11,11,21 -18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,1,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,15,8,9,7,10,6,7,6,11,6,7,6,9,6,9,17/2,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,15/2,9,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,9/2,5,9/2,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,2,2,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,3/2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,13/2,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,11/2,5,6,4,7/2,3,4,2,5/2,2,4,3,3,3,3,2,7/2,4,6,4,7/2,3,5,3,3,3,5,3,7/2,3,4,3,9/2,4,10,6,11/2,4,6,4,7/2,3,4,3,7/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,12,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,5,5,7,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,6,3,3,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,3,3,3,2,7/2,4,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,7/2,3,3,2,3,3,6,4,4,3,5,4,9/2,4,7,4,4,4,7,5,7,7,9,5,5,4,6,4,4,3,6,3,3,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,4,9/2,4,7,4,9/2,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,9/2,4,6,4,6,6,14,8,15/2,5,7,4,5,5,7,4,5,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,5,4,8,6,8,8,15,8,9,7,10,6,7,6,11,6,7,6,10,7,19/2,9,16,9,9,7,10,7,9,9,16,9,11,9,15,10,29/2,15,26,14,14,10,14,8,19/2,8,13,8,17/2,7,11,7,9,9,16,8,8,6,8,5,6,6,11,6,13/2,6,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,9/2,4,8,5,11/2,4,6,4,11/2,5,8,5,5,4,7,5,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,3,3,7,4,4,3,4,3,7/2,4,5,3,7/2,4,6,4,6,6,10,6,11/2,4,7,4,9/2,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,3,2,2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,3/2,1,2,2,3/2,2,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,3,2,2,2,2,2,3/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,1,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,2,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,3,2,3,2,5/2,3,6,3,3,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,7,4,9/2,4,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,12 -13,7,7,5,7,9/2,6,5,8,9/2,5,4,6,4,5,5,8,4,4,3,5,3,4,7/2,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,3,4,7/2,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,7/2,5,3,3,5/2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,7/2,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,7/2,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,7/2,4,7/2,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,3,2,3,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,7/2,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,5/2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,5,5,9 -20,10,10,7,21/2,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,15/2,5,6,5,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,4,4,11/2,4,4,3,6,4,4,3,9/2,4,5,5,12,6,6,4,11/2,3,3,3,4,3,4,4,11/2,4,5,5,8,4,4,3,5,3,4,4,4,3,3,3,9/2,3,4,4,6,3,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,9/2,3,4,4,6,4,5,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,9/2,4,5,5,4,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,3,2,3,3,4,3,4,4,3,2,2,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,5/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,1,1,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,3,4,4,5,3,4,3,5,4,5,5,6,4,4,4,13/2,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,11/2,4,5,4,8,5,5,4,9/2,3,4,4,8,5,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,5,4,15/2,5,7,7,10,6,6,4,13/2,4,6,5,8,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,5,10,6,6,4,13/2,4,5,5,9,5,6,5,17/2,6,9,9,17,9,10,7,21/2,6,8,7,12,7,8,7,23/2,8,10,10,18,10,10,8,13,8,10,10,18,10,12,10,33/2,12,17,17,30,16,16,11,16,9,11,9,16,9,9,7,12,8,11,10,18,9,9,6,19/2,6,8,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,15/2,5,6,6,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,13/2,4,6,6,10,5,5,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,8,5,5,4,6,4,5,5,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,11/2,4,4,3,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,2,5/2,2,3,3,1,1,1,1,3/2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,1,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,3,2,2,1,1/2,0,0,0,2,2,2,1,1/2,0,0,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,1,0,0,0,0,1/2,0,0,0,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,7,4,4,3,9/2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,4,11/2,4,4,4,5,3,4,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,6,4,13/2,5,7,7,13 -12,6,6,5,7,4,5,9/2,7,4,4,4,6,4,4,9/2,8,4,4,3,5,3,4,7/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,3,3,4,3,3,2,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,6,7/2,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,5,8,5,5,9/2,8,5,6,6,11,6,6,5,8,5,6,6,11,13/2,8,6,10,15/2,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,7/2,4,3,4,3,4,4,6,7/2,4,3,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,9 -16,8,8,6,10,6,7,6,10,6,11/2,4,7,4,11/2,6,10,6,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,7/2,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,9/2,3,4,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,11,6,6,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,9/2,4,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,7/2,2,4,2,5/2,2,5,3,3,3,3,2,7/2,4,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,1,6,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3,4,3,2,2,2,2,2,3/2,1,2,1,1,1,0,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,5,3,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,1,2,5/2,2,3,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,2,5/2,2,4,2,5/2,2,2,2,7/2,4,4,3,3,3,4,3,4,4,5,3,7/2,4,6,4,6,6,12,7,7,5,7,4,9/2,4,6,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,3,6,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,11/2,5,9,5,11/2,4,6,4,4,4,7,4,5,4,6,4,13/2,7,15,8,15/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,7,6,10,6,17/2,8,15,8,17/2,6,11,7,17/2,8,14,8,10,8,14,10,14,14,24,12,12,9,13,8,9,7,14,8,8,6,9,6,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,14,8,15/2,5,7,4,5,5,8,4,9/2,4,5,3,4,4,8,4,9/2,4,5,4,5,5,7,4,5,4,8,6,8,8,12,6,13/2,5,7,4,5,4,7,4,9/2,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,4,3,6,4,5,5,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,9/2,4,7,5,7,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,1,1,1,3,2,2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,4,2,5/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,1,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,2,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,-1,0,0,1,0,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,7,4,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12 -15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,4,2,2,2,4,3,3,5/2,3,5/2,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,7/2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,9,5,5,4,5,7/2,4,4,6,4,5,4,6,4,6,13/2,14,8,8,5,7,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,6,4,5,9/2,7,5,7,7,12,7,7,11/2,8,5,6,6,10,6,7,6,9,6,8,8,14,15/2,8,6,10,6,8,15/2,13,8,9,8,13,9,13,13,22,11,11,8,12,7,9,7,12,7,8,6,9,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,9/2,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,8,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,7,5,7,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,3/2,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 -27,14,14,10,14,8,10,9,31/2,8,8,6,10,7,9,8,16,8,8,6,9,6,7,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,6,8,4,4,3,4,3,4,4,11/2,4,4,4,6,5,7,7,14,7,7,5,6,4,4,4,11/2,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,3,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,15/2,4,5,5,8,6,8,7,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,9,5,4,3,4,3,3,3,9/2,2,2,2,3,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,6,4,6,6,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,2,2,5/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5/2,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,11/2,4,4,3,4,3,5,5,6,4,5,4,6,4,6,5,17/2,5,6,5,9,6,9,9,22,12,12,8,12,7,8,6,21/2,6,7,5,8,5,7,7,13,7,6,4,6,4,5,5,8,5,6,5,7,5,8,8,16,9,9,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,10,6,7,6,21/2,6,8,7,12,8,12,12,26,13,13,9,14,8,10,8,27/2,8,8,6,10,6,7,7,12,7,7,5,8,5,6,6,23/2,7,8,7,12,8,12,13,23,12,12,9,14,8,10,10,35/2,10,10,8,14,10,14,14,25,13,14,11,17,11,15,14,25,14,17,14,24,16,24,24,42,22,22,15,21,12,14,12,45/2,12,14,11,18,11,15,14,25,13,13,9,12,7,9,8,27/2,8,9,7,12,8,11,11,23,12,12,8,12,7,9,8,25/2,6,6,5,7,5,6,6,14,8,9,7,10,6,8,7,13,8,9,7,12,9,13,13,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,9,7,10,6,7,6,21/2,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,17/2,5,6,4,6,4,6,6,15,8,9,7,10,6,8,7,25/2,8,9,7,12,8,11,11,16,9,9,7,10,6,7,6,21/2,6,6,5,7,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,6,3,3,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,0,0,0,0,0,0,1/2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,8,6,9,6,7,6,23/2,7,8,6,10,7,11,11,20 -15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,10,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,9/2,5,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,13/2,8,8,14,8,10,8,14,19/2,14,14,24,13,13,9,12,7,8,7,13,7,8,13/2,10,7,9,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,13/2,13,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,9/2,8,5,5,4,7,5,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,7/2,6,7/2,4,3,4,3,4,4,8,5,5,4,6,4,5,9/2,8,5,6,9/2,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,4,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,3/2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,7/2,4,4,7,4,5,4,6,4,6,6,11 -18,10,10,7,10,6,7,6,10,6,6,5,7,5,13/2,6,11,6,11/2,4,6,4,4,4,6,4,9/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,9,5,9/2,3,4,3,3,3,3,2,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,7/2,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,4,9/2,4,5,3,7/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,5,3,4,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,5,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,3,2,3,3,4,3,7/2,4,6,4,9/2,4,6,5,7,7,14,8,15/2,6,8,5,11/2,5,8,5,11/2,4,6,4,5,5,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,11,6,6,4,7,4,11/2,5,8,5,11/2,5,8,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,8,5,5,5,8,6,17/2,8,16,8,8,6,10,6,15/2,6,12,7,15/2,6,10,7,9,9,16,9,9,7,12,8,19/2,9,16,10,23/2,10,16,11,16,16,29,15,15,10,15,9,21/2,9,15,8,19/2,8,12,8,10,9,17,9,17/2,6,9,6,13/2,6,10,6,6,5,8,6,15/2,8,15,8,9,6,8,5,11/2,5,8,4,9/2,4,6,4,11/2,5,9,5,11/2,4,7,4,11/2,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,5,4,6,4,11/2,5,10,6,6,5,6,4,5,5,7,4,5,4,6,4,11/2,6,11,6,6,4,6,4,5,4,7,4,9/2,4,5,4,9/2,4,9,5,6,5,6,4,11/2,5,9,6,13/2,5,8,6,8,8,10,6,11/2,4,6,4,9/2,4,7,4,9/2,4,4,3,3,3,5,3,3,2,3,2,3,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,5,3,5/2,2,3,2,3/2,1,2,1,1/2,0,1,1,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,9/2,4,8,5,5,4,6,4,5,5,8,5,11/2,4,7,5,7,7,12 -15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,2,3,3,3,2,3,2,2,2,2,2,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,3,4,4,3,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,4,3,5,4,6,6,12,13/2,6,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,6,10,6,6,9/2,6,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,8,11/2,7,7,13,7,8,6,10,6,8,8,13,8,10,8,13,9,13,13,24,13,13,9,12,7,9,8,13,7,8,6,10,6,8,8,14,15/2,8,5,8,5,6,5,8,5,5,4,7,5,6,13/2,12,7,7,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,5,4,6,4,4,4,8,9/2,5,9/2,8,11/2,8,8,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,9/2,5,4,5,4,5,9/2,8,5,6,9/2,7,5,7,7,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,5/2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,5/2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,6,10 -25,13,13,9,27/2,8,10,8,14,8,9,7,10,7,9,8,15,8,9,6,19/2,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,5,4,6,6,9,5,4,3,9/2,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,4,3,4,3,5,4,5,4,8,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,3,3,17,9,8,6,17/2,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,5,3,3,2,7/2,3,4,4,8,5,5,4,5,3,4,4,8,5,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,6,4,4,3,7/2,2,3,3,4,2,2,2,7/2,2,3,3,5,3,3,3,5,3,4,4,4,3,4,4,7,5,8,8,5,3,3,2,2,2,2,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,5,3,3,2,2,2,2,2,5/2,2,2,2,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,4,3,9/2,3,4,4,8,5,6,5,8,6,8,9,21,11,12,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,8,23/2,7,8,7,12,7,7,6,17/2,6,8,8,16,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,12,22,12,12,8,25/2,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,33/2,10,14,13,22,13,15,13,45/2,16,23,23,42,22,22,15,43/2,12,15,13,22,12,14,10,33/2,10,14,13,23,12,13,9,13,8,10,8,14,8,9,7,11,8,11,11,21,11,12,8,12,7,8,6,10,6,7,5,8,5,7,7,12,7,7,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,12,8,12,7,8,7,12,7,8,6,19/2,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,8,8,16,8,8,6,8,5,6,6,10,6,7,6,17/2,6,8,7,13,7,8,6,9,6,7,7,14,8,9,7,12,8,11,11,14,8,8,6,9,5,6,5,10,6,6,4,13/2,4,4,4,7,4,5,4,11/2,4,4,3,5,3,4,3,7/2,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,3,2,1,1,1,1,1,1,1/2,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,6,3,3,2,3,2,2,1,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,-4,-1,-1,0,-1/2,0,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,4,5,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,17/2,6,8,9,17 -17,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,7/2,4,3,4,3,3,3,4,3,4,4,6,3,3,2,4,5/2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,5/2,3,2,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,5,7/2,5,9/2,6,4,4,3,4,5/2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,5,4,6,5,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,7/2,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,11/2,6,11/2,9,5,6,4,7,9/2,6,6,10,11/2,6,4,6,4,5,5,8,9/2,5,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,11/2,9,6,8,8,15,8,9,7,11,7,9,9,15,9,10,9,15,11,16,31/2,28,15,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,17/2,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,15/2,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,9/2,6,5,9,5,6,11/2,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,9/2,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,4,7,4,5,5,9,11/2,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-2,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,5/2,4,3,4,4,7,4,4,7/2,6,4,5,4,7,4,4,4,6,4,6,6,12 -24,12,12,9,14,8,19/2,8,14,8,17/2,6,10,7,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,7,5,8,5,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,11/2,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,17,9,9,6,8,5,6,5,10,6,11/2,4,7,4,11/2,5,9,5,11/2,4,6,4,5,4,8,4,9/2,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,4,4,7,4,5,4,6,4,6,6,9,5,11/2,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,4,7,5,15/2,7,4,2,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,3,2,3,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,7,5,6,5,7,6,17/2,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,13/2,5,7,4,11/2,5,10,6,7,6,9,6,19/2,10,19,10,10,7,12,7,8,7,11,6,7,5,8,6,8,8,15,8,17/2,6,9,6,7,7,13,7,8,7,12,8,25/2,12,25,13,13,9,14,8,9,8,13,7,8,6,10,6,17/2,8,15,8,8,6,9,6,15/2,7,11,6,15/2,7,12,8,23/2,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,12,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,45/2,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,27/2,13,23,12,25/2,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,21/2,8,11,6,7,6,10,6,13/2,5,8,5,7,7,12,7,15/2,6,10,6,15/2,7,12,7,17/2,8,12,8,25/2,12,24,12,12,9,13,8,17/2,8,13,7,8,6,9,6,8,8,13,7,15/2,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,13/2,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,15/2,7,13,8,9,7,11,8,21/2,11,14,8,17/2,6,8,5,5,5,9,5,5,4,6,4,4,4,8,4,9/2,4,5,3,7/2,3,5,3,7/2,3,4,3,3,3,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,7/2,4,7,4,7/2,2,4,2,3/2,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,5,3,5/2,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,0,0,-1,0,1/2,1,0,0,0,1,1,1,2,2,3,2,3/2,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,9/2,5,10,6,11/2,4,5,4,9/2,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,13/2,6,10,6,13/2,5,8,6,9,9,17 -24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,8,14,8,8,6,8,5,6,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,16,9,9,6,9,5,6,5,9,5,6,4,7,9/2,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,7/2,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,11/2,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,7,5,7,7,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,9/2,5,5,7,11/2,8,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,11/2,9,6,8,8,15,8,8,6,9,6,7,7,13,15/2,9,15/2,13,9,13,25/2,24,13,13,9,14,8,9,8,14,15/2,8,6,10,13/2,9,8,15,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,23/2,12,9,15,10,13,12,22,13,15,13,22,15,22,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,13,25/2,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,10,15/2,11,6,7,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,9,8,13,9,13,25/2,24,12,12,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,7,13,15/2,8,7,11,15/2,10,11,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,9/2,8,4,4,7/2,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,5/2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,5,3,2,2,3,2,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,1/2,0,0,0,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,3,2,3,3,5,3,4,5/2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17 -46,24,24,16,24,14,17,14,24,13,14,11,19,12,17,16,30,16,17,12,18,11,14,13,23,13,14,11,17,11,16,16,30,16,16,11,16,9,11,9,15,8,9,7,10,7,9,8,15,8,8,6,9,6,7,7,13,7,8,7,11,8,11,11,21,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,31,16,16,11,17,10,12,10,17,10,11,9,14,9,12,12,23,12,12,9,14,9,11,10,17,10,11,9,15,10,14,13,25,13,13,9,14,8,9,7,12,7,8,6,10,6,8,7,13,7,7,5,7,4,5,5,9,5,6,5,9,6,9,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,9,13,8,10,9,15,8,9,7,10,6,8,8,14,8,8,7,11,7,10,9,16,9,11,9,15,10,14,14,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,8,8,14,8,9,7,10,6,8,8,15,9,10,9,16,11,16,16,42,22,22,15,23,13,16,13,22,12,13,9,14,9,12,11,21,11,12,9,13,8,11,10,19,11,13,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,11,9,14,9,13,13,24,13,14,11,17,11,15,14,26,15,18,15,26,17,25,24,95/2,24,24,17,26,15,17,15,26,14,15,11,18,12,16,16,30,16,17,12,19,12,16,15,28,16,19,16,27,18,26,26,52,27,27,19,28,16,20,18,33,18,20,16,26,17,23,23,44,23,25,19,30,19,25,24,45,25,30,25,44,30,44,44,82,42,42,28,42,24,28,23,41,22,23,18,29,18,25,24,45,23,24,16,24,14,17,15,28,15,17,14,23,15,21,21,40,21,21,14,21,12,14,12,21,11,12,10,16,10,14,14,26,14,14,11,17,11,14,12,22,13,16,14,24,16,24,24,95/2,24,24,17,26,15,17,14,25,14,15,11,18,11,15,14,26,13,13,9,14,9,11,10,18,11,13,11,18,12,18,18,35,18,19,13,19,11,13,12,21,11,12,9,14,9,13,12,22,12,13,10,16,10,13,12,23,13,15,13,22,15,21,21,29,15,16,11,16,9,11,9,16,9,10,8,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,12,23,12,12,8,12,7,9,8,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,3,2,1,1,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,2,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,9,9,16,11,17,17,32 -23,12,13,9,12,7,9,7,12,7,8,6,10,7,9,9,16,9,9,7,9,6,8,7,12,7,7,6,9,6,9,8,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,9/2,8,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,9/2,6,4,4,7/2,5,3,3,3,3,5/2,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,16,9,9,6,9,11/2,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,5,7,5,6,11/2,9,11/2,6,5,8,11/2,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,8,9/2,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,9,22,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,11/2,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,9,11,10,17,9,10,8,14,9,12,12,22,12,13,10,16,10,13,25/2,23,13,16,13,23,16,23,23,42,22,22,15,22,12,14,12,21,23/2,12,19/2,15,10,13,25/2,23,12,12,9,13,8,9,8,15,8,9,7,12,8,11,11,21,11,11,8,11,13/2,8,7,11,6,6,11/2,8,6,8,8,14,8,8,6,9,6,8,13/2,11,7,8,7,13,9,12,12,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,13/2,11,6,6,5,8,5,7,7,12,7,7,11/2,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,6,5,6,4,6,6,12,6,6,4,7,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,7,4,5,9/2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,3/2,1,1,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,2,3,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,5,8,6,9,9,17 -23,12,13,9,12,7,17/2,7,12,7,15/2,6,11,7,9,9,16,9,9,7,9,6,8,7,11,6,7,5,9,6,9,8,15,8,17/2,6,8,5,11/2,5,7,4,5,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,5,3,3,3,3,2,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,4,2,2,2,3,2,3/2,1,1,1,3/2,2,2,2,2,2,17,9,9,6,9,6,13/2,6,9,6,13/2,5,7,5,13/2,6,12,6,13/2,5,7,5,6,6,9,6,13/2,5,9,6,7,7,13,7,15/2,5,8,5,5,4,7,4,9/2,4,6,4,9/2,4,6,4,7/2,3,3,2,3,3,5,3,4,3,4,3,5,5,11,6,11/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,8,5,11/2,4,6,4,5,5,8,5,5,5,8,6,17/2,9,22,12,12,8,13,8,17/2,7,12,7,7,5,7,5,6,6,12,6,6,5,8,5,13/2,6,10,6,13/2,6,9,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,8,6,9,6,15/2,7,13,8,19/2,8,14,9,13,13,24,13,13,9,13,8,19/2,8,14,8,17/2,6,10,6,17/2,8,15,8,9,7,10,6,17/2,8,14,8,19/2,8,14,10,14,14,27,14,14,10,14,9,11,10,16,9,21/2,8,14,9,25/2,12,22,12,25/2,10,16,10,27/2,13,23,13,16,13,23,16,23,23,42,22,22,15,22,12,29/2,12,22,12,25/2,10,16,10,27/2,13,24,12,25/2,9,13,8,9,8,15,8,9,7,12,8,23/2,11,21,11,21/2,8,10,6,15/2,7,11,6,13/2,6,8,6,15/2,8,15,8,8,6,10,6,15/2,6,11,7,8,7,13,9,25/2,12,24,12,25/2,9,13,8,19/2,8,13,7,8,6,10,6,17/2,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,19/2,7,10,6,8,7,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,6,13/2,6,9,5,6,5,6,4,6,6,12,6,6,4,7,4,11/2,5,7,4,5,4,7,5,7,7,12,6,13/2,4,7,4,11/2,5,7,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,5,3,3,2,2,2,3/2,2,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-3,-1,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,2,3,2,5/2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,5,3,4,4,7,5,6,5,8,6,19/2,9,17 -16,17/2,9,6,9,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,5,5,8,9/2,5,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,4,3,4,4,8,4,4,7/2,5,3,4,3,4,5/2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,12,7,7,5,6,4,5,4,7,4,5,4,5,7/2,4,4,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,15,8,9,6,9,11/2,6,5,8,5,5,4,5,4,5,5,8,4,4,7/2,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,9,6,7,6,10,13/2,9,9,17,9,9,6,9,6,7,6,10,6,6,5,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,13/2,9,8,15,8,9,7,11,7,10,9,16,9,11,9,16,11,16,16,29,15,15,10,15,9,10,9,15,8,8,13/2,11,7,10,9,16,9,9,6,9,11/2,6,6,10,6,6,5,8,6,8,8,14,15/2,7,5,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,6,4,7,9/2,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,8,4,4,4,6,4,6,5,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,7/2,5,7/2,5,5,9,5,5,7/2,5,3,4,4,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,7/2,4,4,6,5,7,13/2,12 -23,12,13,9,13,8,9,8,12,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,9/2,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,13/2,4,6,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,1,1,1,1,2,2,3/2,2,2,2,18,10,10,7,19/2,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,7,14,7,7,5,7,4,5,4,8,5,5,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,9/2,4,5,6,11,6,6,4,5,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,9,5,6,5,17/2,6,7,7,5,3,3,2,7/2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,3,3,4,3,4,3,9/2,3,4,4,9,5,5,4,9/2,3,3,3,5,3,2,2,5/2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,4,3,4,3,9/2,4,5,5,9,5,6,5,15/2,5,6,6,10,6,7,6,19/2,7,10,10,23,12,13,9,27/2,8,10,8,12,7,7,5,8,5,7,7,12,7,7,5,15/2,5,6,6,9,5,6,5,17/2,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,12,7,7,6,9,6,8,7,13,8,9,8,14,9,13,13,26,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,21/2,7,9,8,14,8,10,8,29/2,10,15,15,27,14,14,10,29/2,9,12,10,16,9,10,8,14,9,12,12,22,12,13,10,16,10,14,13,23,13,16,14,47/2,16,24,24,43,22,22,15,45/2,13,15,13,22,12,13,10,31/2,10,13,13,24,12,12,9,13,8,10,9,14,8,10,8,25/2,8,11,11,21,11,11,8,21/2,6,8,7,12,7,7,6,17/2,6,8,8,16,9,9,7,11,7,8,7,12,7,9,8,25/2,9,13,13,24,13,13,9,14,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,21/2,8,11,11,19,10,10,7,19/2,6,8,7,11,6,7,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,11,8,12,12,16,9,9,6,19/2,6,7,6,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,5,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,3,2,2,2,5/2,2,2,2,5,3,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-3,-1,-1,0,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,3,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,3,6,4,4,3,5,3,4,4,8,5,6,6,19/2,7,10,9,17 -13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,11/2,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,3,3,4,3,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,9/2,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,15/2,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,4,6,4,6,5,7,4,4,7/2,5,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,11/2,8,5,6,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,7,4,4,7/2,6,4,5,5,9,5,6,9/2,7,4,5,5,8,5,6,5,8,11/2,8,8,13,7,8,11/2,8,5,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,12,6,6,4,6,4,5,9/2,7,4,4,7/2,5,4,5,9/2,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,5,4,6,7/2,4,3,5,3,4,9/2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,11/2,10 -16,9,9,7,9,6,13/2,6,8,5,11/2,5,7,5,7,7,12,6,13/2,4,6,4,4,4,7,4,5,4,6,4,11/2,5,11,6,6,4,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,9/2,4,9,5,11/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,1,1/2,0,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,12,6,13/2,4,7,4,5,4,7,4,9/2,4,5,4,9/2,4,10,6,11/2,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,11/2,4,6,4,7/2,3,6,4,4,3,4,3,4,4,4,2,5/2,2,2,2,5/2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,6,4,9/2,4,6,4,11/2,5,4,2,5/2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,7,4,7/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,8,5,5,4,6,4,5,5,8,5,11/2,5,7,5,15/2,8,17,9,19/2,7,10,6,7,6,8,5,11/2,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,13/2,6,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,10,7,9,9,18,10,19/2,7,10,6,8,7,11,6,6,5,7,5,13/2,6,11,6,7,5,8,5,13/2,6,10,6,15/2,6,10,7,21/2,10,20,10,21/2,7,11,7,17/2,7,12,7,8,6,10,6,17/2,8,16,9,10,8,12,8,21/2,10,16,9,11,9,17,12,33/2,16,30,16,31/2,11,15,9,10,9,15,8,17/2,6,11,7,9,9,16,9,9,7,9,6,15/2,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,6,8,5,5,4,7,5,6,6,11,6,13/2,5,8,5,6,6,10,6,7,6,9,6,19/2,9,15,8,17/2,6,9,5,6,5,10,5,5,4,6,4,11/2,5,10,5,5,4,5,4,5,5,7,4,11/2,5,8,6,15/2,8,15,8,7,5,8,5,6,5,9,5,5,4,6,4,11/2,5,9,5,5,4,6,4,11/2,5,8,5,11/2,5,8,6,8,8,11,6,13/2,5,7,5,6,5,7,4,5,4,6,4,11/2,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,0,0,1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,11/2,6,4,5,3,4,7/2,6,7/2,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,6,13/2,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,9/2,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,11/2,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,11/2,7,6,10,5,5,4,6,4,6,5,10,11/2,6,9/2,7,9/2,6,5,9,5,6,5,9,6,9,9,17,9,9,6,10,6,7,6,10,6,7,5,8,11/2,8,7,14,8,8,13/2,10,7,9,8,14,8,10,8,15,10,14,14,25,13,13,9,13,8,9,8,13,7,7,11/2,9,6,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,9/2,8,4,4,7/2,5,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,7,7,10,6,6,9/2,6,4,5,4,6,4,4,4,6,4,5,5,8,9/2,5,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,11/2,10 -24,13,13,9,12,7,8,8,27/2,8,8,7,11,7,10,9,18,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,14,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,5,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,9,5,5,3,4,3,4,4,11/2,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,15/2,5,6,5,8,6,8,8,4,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,6,4,4,3,3,2,2,2,9/2,3,4,3,4,3,5,5,9,5,5,4,7,4,5,4,15/2,4,5,4,7,5,6,5,12,7,7,5,8,6,8,7,25/2,7,8,7,11,8,11,11,27,14,14,10,14,8,10,8,27/2,8,8,6,9,6,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,9,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,29,15,16,11,16,9,11,10,33/2,9,9,7,10,7,9,9,17,9,10,8,12,7,9,8,31/2,9,11,9,16,11,16,16,30,16,16,11,16,10,12,10,37/2,10,11,8,13,9,12,12,25,13,14,11,18,11,14,14,51/2,14,17,14,24,16,24,24,44,22,22,15,22,13,15,13,22,12,13,10,15,9,12,12,25,13,14,10,14,8,10,9,15,9,10,8,14,9,13,13,20,11,11,8,12,7,8,8,27/2,8,8,6,10,6,8,8,18,10,10,7,11,7,9,8,29/2,8,10,8,14,10,14,14,22,11,11,8,11,7,8,8,14,8,8,6,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,8,13,7,8,6,8,5,7,6,23/2,7,8,7,11,8,12,12,18,10,10,7,10,6,8,7,23/2,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,15/2,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,15/2,4,4,3,3,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,7,4,5,4,5,3,3,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,7,4,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,9/2,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,13/2,4,5,5,9,6,9,9,18 -13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,7,4,5,4,6,9/2,6,6,15,8,8,6,8,5,6,5,8,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,15/2,8,6,10,6,8,8,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,12,7,7,11/2,8,5,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,5/2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,10 -13,7,15/2,5,7,4,5,4,8,5,5,4,6,4,11/2,6,9,5,6,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,9,5,4,3,5,3,3,3,4,2,5/2,2,4,3,7/2,3,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,11,6,6,4,6,4,9/2,4,7,4,4,3,4,3,7/2,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,3,5,3,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,3,2,4,3,7/2,4,6,4,4,3,3,2,3,3,4,3,7/2,3,5,4,9/2,4,6,4,7/2,2,3,2,5/2,2,4,3,3,2,2,2,7/2,3,5,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3,3,2,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,3,2,7/2,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,8,17/2,6,8,5,11/2,5,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,5,3,7/2,3,5,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,6,6,9,5,11/2,4,6,4,5,5,8,5,13/2,6,9,6,17/2,8,17,9,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,10,6,6,5,7,4,11/2,6,10,6,7,6,10,7,19/2,9,17,9,19/2,7,9,6,15/2,6,11,6,7,5,8,6,15/2,7,15,8,17/2,6,10,6,17/2,8,15,9,10,9,14,10,14,14,25,13,13,9,13,8,9,7,13,7,8,6,9,6,8,7,14,8,8,6,8,5,13/2,6,9,5,6,5,8,6,8,8,12,6,13/2,5,7,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,11/2,5,9,6,13/2,5,9,6,17/2,8,13,7,7,5,7,4,11/2,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,5,4,6,5,7,7,13,7,15/2,6,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,15/2,8,11,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,5,5,8,5,5,3,5,3,4,4,5,3,4,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,5,3,7/2,3,4,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,5,3,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,1,1,1,2,2,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,0,0,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,6,3,3,2,2,2,5/2,2,3,2,2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,4,3,3,3,5,3,4,4,6,4,5,5,10 -10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,9/2,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,3,5/2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,8,5,5,7/2,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,7/2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,3,5,4,5,5,13,7,7,5,6,4,4,4,6,7/2,4,3,4,3,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,7/2,4,3,5,7/2,5,5,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,9/2,8,5,6,5,8,6,8,7,13,7,8,11/2,7,5,6,5,9,5,6,4,6,9/2,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,9/2,5,4,7,5,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10,11/2,6,4,6,7/2,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,4,2,2,1,2,2,2,1,2,2,2,2,2,3/2,2,1,1,1,0,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,9/2,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,5/2,2,3,3,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,12,6,6,5,7,4,5,4,9,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,11/2,4,6,6,12,6,6,4,11/2,4,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,7/2,3,4,3,3,2,3,2,7/2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,4,3,3,2,2,1,1,1,4,3,3,2,7/2,3,4,3,3,2,2,2,4,3,4,3,5,3,3,2,7/2,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,8,4,4,3,9/2,4,5,5,9,5,5,4,13/2,4,5,5,8,5,6,5,15/2,6,8,8,21,11,10,7,21/2,6,7,6,8,5,6,4,13/2,4,6,6,8,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,7,6,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,22,12,12,8,25/2,7,8,7,12,7,7,6,9,6,7,7,12,7,7,6,9,6,8,7,14,8,9,8,13,9,12,12,21,11,11,8,12,7,9,7,14,8,8,6,10,7,9,9,18,10,10,8,13,8,11,10,18,11,13,11,18,12,18,18,30,16,16,11,15,9,10,9,17,9,10,7,11,7,10,9,16,9,9,7,11,7,9,8,13,7,8,7,11,7,10,10,15,8,8,6,17/2,5,6,5,10,6,6,5,7,5,6,6,14,8,8,6,17/2,5,6,6,11,6,7,6,21/2,7,10,10,15,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,6,5,8,6,9,9,16,8,8,6,17/2,5,6,6,8,5,6,5,15/2,6,8,7,11,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,7,9,5,6,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,2,2,2,5/2,2,2,2,8,4,4,3,9/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,5,3,3,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,0,1,1,1,1/2,1,1,1,2,2,2,1,1/2,1,2,2,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,5/2,2,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,2,3,2,3,3,7,4,4,3,7/2,3,4,3,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,7,4,3,2,3,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,11 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,5/2,3,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,8,4,4,7/2,5,3,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,3,2,3,2,3,2,4,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,2,2,5/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,3,2,4,3,4,3,6,4,4,3,4,3,4,7/2,6,4,4,7/2,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,5,9/2,7,5,7,7,14,8,8,11/2,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,19,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,11/2,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,7/2,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,3,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7 -12,7,7,5,6,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,5,11/2,4,5,3,7/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,5,3,3,3,6,4,7/2,3,4,3,4,4,6,3,3,3,5,3,4,4,6,3,3,3,4,3,7/2,4,8,4,9/2,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,11,6,13/2,5,7,4,4,4,8,4,4,3,4,3,7/2,4,6,4,7/2,3,3,2,3,3,5,3,7/2,3,6,4,11/2,6,11,6,5,4,5,3,4,4,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,7/2,3,5,3,7/2,2,3,3,4,4,7,4,4,3,5,3,7/2,4,7,4,5,4,6,4,11/2,5,7,4,4,3,4,2,5/2,2,3,2,3,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,5,3,4,4,6,4,13/2,7,5,3,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,7,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,3,3,4,4,8,4,9/2,3,4,3,4,4,7,4,4,3,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,6,5,7,5,15/2,8,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,13,7,15/2,6,8,5,6,5,8,5,11/2,5,7,5,13/2,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,13/2,6,9,6,15/2,7,11,6,13/2,5,8,5,13/2,6,12,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,17/2,7,11,7,9,8,14,8,21/2,9,15,10,31/2,16,26,14,27/2,9,13,8,10,8,14,8,9,7,10,6,17/2,8,14,8,8,6,9,6,7,6,11,6,15/2,6,9,6,17/2,8,13,7,15/2,6,8,5,11/2,5,9,5,6,5,7,5,6,6,11,6,13/2,5,6,4,6,6,10,6,7,6,9,6,17/2,8,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,6,4,7,4,11/2,5,8,5,5,5,7,5,7,7,14,8,15/2,5,7,5,6,5,8,4,9/2,4,6,4,11/2,5,9,5,6,4,6,4,9/2,4,8,5,6,5,8,6,17/2,9,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,11/2,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,5,3,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,3/2,2,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,11/2,6,10 -12,6,6,9/2,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,10,6,6,9/2,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,10,11/2,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,13/2,6,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,10,6,8,15/2,13,8,10,8,14,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,7,13,7,7,11/2,8,5,7,6,11,6,7,6,9,6,8,8,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,9/2,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,8,6,9,9,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,3,5/2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,4,5/2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9 -22,12,12,8,11,7,9,8,14,8,8,6,9,6,8,8,15,8,9,6,9,6,7,6,9,5,6,5,7,5,6,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,19/2,6,6,4,6,4,5,5,8,5,5,5,8,5,7,6,14,7,7,5,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,19,10,9,6,9,6,7,6,10,6,6,4,6,4,6,6,19/2,6,6,5,7,5,7,7,12,7,9,7,12,8,11,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,7,6,11,8,12,12,11,6,7,5,8,5,5,5,8,5,5,4,6,4,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,11/2,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,14,10,14,14,31,16,16,11,17,10,11,9,16,8,8,6,9,6,8,7,25/2,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,41/2,11,11,8,12,8,10,9,16,10,12,10,17,12,17,17,33,17,17,12,18,11,13,11,20,11,12,9,15,9,12,12,22,12,13,9,14,9,12,11,21,12,14,12,20,13,18,18,34,18,18,13,19,11,14,12,20,11,12,9,15,10,14,14,26,14,15,12,20,13,17,16,30,17,19,16,28,19,29,29,49,25,26,18,26,15,17,14,24,13,14,11,18,11,14,13,25,13,13,9,14,9,11,11,20,11,12,10,17,11,16,16,24,12,12,8,11,7,8,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,10,9,16,9,10,8,14,10,15,15,25,13,14,10,14,8,10,9,15,8,9,7,10,7,9,9,33/2,9,10,8,12,7,9,9,16,9,10,8,13,9,13,13,25,13,14,10,14,8,10,9,16,9,9,7,12,8,10,9,16,9,10,7,11,8,11,10,19,11,12,10,17,12,17,17,25,13,13,9,14,8,9,8,14,8,8,7,11,8,11,11,41/2,10,10,7,11,7,9,8,15,8,9,7,11,7,10,10,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,15/2,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,9/2,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,2,2,2,2,1,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,2,2,3,3,4,2,2,2,2,2,3,3,9,5,5,4,6,4,5,4,6,4,4,3,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17 -11,6,6,9/2,6,4,5,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,10,5,5,4,5,7/2,4,7/2,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,13/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,16,17/2,8,6,9,11/2,6,5,9,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,13/2,10,7,9,9,16,9,10,9,15,10,15,15,26,27/2,14,10,14,8,9,8,13,7,8,6,10,6,8,7,14,15/2,8,11/2,8,5,6,6,11,6,7,6,9,6,9,9,13,7,6,9/2,6,4,5,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,7,6,9,13/2,9,9,14,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,5/2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,9 -11,6,6,5,6,4,5,4,7,4,9/2,4,6,4,5,5,8,5,11/2,4,6,4,5,4,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,5,3,4,4,8,4,9/2,4,5,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,1/2,1,10,5,5,4,6,4,9/2,4,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,9/2,4,6,4,6,6,10,6,11/2,4,5,3,3,3,4,2,5/2,2,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,8,4,9/2,4,5,3,7/2,4,6,4,4,3,4,3,7/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,4,5,5,7,4,5,4,5,3,7/2,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,13/2,7,7,4,9/2,4,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,5/2,2,2,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,7/2,4,5,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,4,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,9/2,4,7,4,5,4,5,4,5,5,8,5,11/2,5,8,6,15/2,8,17,9,17/2,6,9,6,13/2,6,9,5,11/2,4,5,4,9/2,4,7,4,7/2,3,4,3,3,3,6,4,9/2,4,5,4,5,6,13,7,15/2,6,8,5,6,5,7,4,5,4,8,5,13/2,6,12,6,13/2,5,7,5,6,5,9,6,13/2,6,9,6,9,9,17,9,19/2,6,9,6,15/2,6,11,6,13/2,5,8,5,13/2,6,12,7,15/2,6,8,5,7,6,11,7,8,7,10,7,9,9,19,10,10,7,11,7,8,7,12,7,15/2,6,8,6,8,8,15,8,9,7,10,7,9,9,16,9,21/2,9,16,11,31/2,16,27,14,14,10,14,8,9,8,14,8,17/2,6,10,6,8,7,15,8,17/2,6,8,5,7,7,11,6,15/2,6,10,7,9,9,13,7,13/2,5,6,4,5,4,6,4,9/2,4,5,4,11/2,6,10,6,6,4,6,4,11/2,5,9,5,11/2,5,8,6,17/2,8,14,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,9,5,6,4,7,4,11/2,5,8,5,11/2,4,8,5,7,7,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,11/2,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,19/2,10,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,6,4,5,5,9,5,11/2,4,6,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,7,4,7/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,2,1,-1,0,-1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,5/2,2,2,2,5/2,2,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,3,7/2,4,6,4,9/2,4,5,4,11/2,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,4,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,5/2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,6,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,7/2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,6,4,5,4,5,3,4,3,6,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,5,7,7,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,6,9/2,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,23/2,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,9/2,6,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,11/2,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,7/2,5,4,7,9/2,5,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,7/2,5,5,6,4,4,3,4,3,3,5/2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,5/2,3,3,4,3,4,3,4,3,4,4,7 -12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,11/2,4,4,4,7,4,4,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,11,6,6,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,13/2,5,7,7,10,6,6,4,5,3,4,4,4,3,3,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,7,5,7,6,7,4,5,4,11/2,4,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,7,8,9,5,5,4,9/2,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,2,2,2,2,4,3,3,3,8,4,4,3,9/2,3,4,3,4,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,7/2,2,3,3,3,2,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,13/2,4,6,5,9,5,6,6,19/2,6,9,9,18,9,9,7,10,6,6,5,10,6,6,4,13/2,4,6,5,8,4,4,3,9/2,3,4,4,7,4,5,4,13/2,5,7,7,15,8,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,6,6,9,6,7,6,9,6,9,10,19,10,10,7,10,6,8,7,13,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,21/2,8,11,11,20,10,10,7,11,7,8,7,13,7,8,6,21/2,7,9,8,18,10,10,8,23/2,8,10,9,16,10,12,10,17,12,18,18,30,16,16,10,29/2,8,10,8,15,9,10,8,23/2,8,10,9,17,9,9,7,11,7,9,8,12,7,8,7,23/2,8,10,10,14,7,7,5,15/2,5,6,5,7,4,4,4,6,4,6,6,10,6,6,4,13/2,4,6,6,9,5,6,5,17/2,6,9,10,16,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,10,6,6,5,15/2,5,6,6,9,6,7,6,9,6,8,8,16,8,8,6,17/2,5,6,5,9,5,6,5,7,5,6,6,10,6,7,5,8,5,7,6,11,7,8,7,23/2,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,15/2,5,6,5,10,6,6,5,15/2,6,8,7,9,5,6,4,11/2,4,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,7/2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,6,4,4,3,3,2,3,3,2,1,1,1,3/2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,4,3,3,2,5/2,2,2,3,4,3,3,2,2,2,2,2,4,2,2,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,6,6,11 -7,4,5,7/2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,6,10,6,8,13/2,10,7,11,11,18,10,10,13/2,9,5,6,5,9,11/2,6,5,7,5,6,11/2,10,6,6,9/2,7,9/2,6,5,8,5,5,4,7,5,6,6,9,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,6,6,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,7/2,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,6,7/2,4,3,5,3,4,4,6,4,5,4,5,3,4,4,7,9/2,5,9/2,8,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,7/2,5,4,8,5,5,7/2,5,3,4,7/2,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,1,0,1,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,4,4,7 -9,5,6,4,5,3,4,4,6,4,9/2,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,2,1,1,1,8,4,4,3,5,3,4,3,5,3,7/2,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,5,7,4,9/2,3,4,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,3,5,3,5/2,2,4,3,3,3,5,3,4,4,5,4,6,6,7,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,2,2,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,3,5,3,7/2,3,3,2,2,2,3,2,5/2,2,3,2,3,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,5,4,5,4,5,4,8,5,11/2,4,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,7/2,3,5,3,4,4,6,4,6,6,11,6,13/2,5,8,5,11/2,5,7,4,5,4,6,4,11/2,5,10,5,5,4,6,4,5,5,7,4,11/2,4,7,5,15/2,8,14,8,15/2,5,7,5,6,5,10,5,5,4,6,4,11/2,5,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,9,9,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,13,8,19/2,8,13,9,27/2,14,23,12,25/2,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,12,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,8,5,5,4,6,4,5,5,8,5,5,4,8,6,15/2,8,12,7,7,5,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,11/2,4,6,4,5,5,7,4,5,4,8,5,6,6,12,6,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,6,4,11/2,5,9,6,13/2,6,10,7,9,9,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,9/2,4,6,4,11/2,6,6,4,4,3,4,3,3,3,3,2,3,2,3,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,2,2,2,2,2,7,4,7/2,2,3,2,3,3,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,6,4,4,3,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,-2,0,-1/2,0,0,1,3/2,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,3/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,2,4,3,4,3,5,3,3,3,4,3,3,3,6,4,7/2,3,5,3,4,4,5,3,7/2,3,5,4,5,5,10 -8,5,5,4,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,5/2,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,7/2,6,7/2,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,7/2,5,7/2,4,4,7,9/2,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,7,4,5,4,5,7/2,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,9/2,5,9/2,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,8,6,8,11/2,7,7,12,7,8,7,12,17/2,12,13,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,12,7,7,5,8,5,6,5,9,11/2,6,5,8,5,7,7,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,5,7/2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9 -14,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,5,3,3,3,4,3,3,2,3,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,11/2,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,9/2,2,2,2,3,2,1,1,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,11,6,7,5,8,5,6,5,15/2,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,5,8,6,8,7,11,6,5,4,5,3,4,4,13/2,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,6,5,8,5,6,6,19/2,6,6,5,8,5,7,7,11,6,5,4,5,3,4,4,13/2,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,17/2,6,7,6,10,7,10,10,13,7,7,5,8,5,5,4,15/2,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,4,4,12,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,14,8,9,7,10,6,8,6,21/2,6,6,4,6,4,6,6,10,6,7,6,9,6,7,7,13,7,8,6,10,7,11,11,20,11,11,7,10,6,8,7,13,7,7,5,8,6,8,7,9,5,6,4,6,4,5,4,15/2,4,5,5,8,6,8,9,19,10,10,7,10,6,8,8,27/2,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,25/2,7,8,7,12,9,13,13,24,12,12,9,13,8,10,8,14,8,8,7,11,7,8,8,16,9,9,7,10,6,8,7,25/2,7,8,7,12,9,13,13,28,14,14,10,15,9,11,9,16,9,10,8,12,8,11,11,24,13,13,10,15,10,13,12,43/2,13,16,13,23,16,23,23,39,20,20,14,20,11,13,11,20,11,12,9,15,9,12,11,22,12,12,9,13,8,10,9,33/2,9,10,8,13,9,12,12,19,10,11,8,11,7,8,6,21/2,6,7,5,8,6,8,7,12,7,7,5,8,6,8,7,25/2,7,8,7,13,9,13,13,19,10,10,7,11,7,8,6,10,6,7,6,9,6,7,7,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,23/2,6,6,5,8,6,8,8,15,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,23,12,12,8,12,7,8,8,27/2,8,8,6,9,6,9,8,16,9,9,7,10,6,8,7,23/2,6,7,6,9,6,8,8,10,5,5,3,4,3,3,3,11/2,4,4,3,4,3,3,3,10,5,5,4,6,4,4,4,11/2,3,3,3,4,3,4,3,13,7,6,4,6,4,5,4,13/2,4,4,4,6,4,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,10,5,5,4,6,4,4,3,5,3,4,3,5,3,3,3,1,1,1,1,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,3,3,5,3,3,2,2,2,2,2,7/2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,8,5,6,5,17/2,5,6,5,9,6,9,9,17 -8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,7/2,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,7/2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,7/2,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,7/2,4,4,8,9/2,5,4,6,5,7,7,11,6,6,9/2,6,4,5,9/2,8,4,4,3,5,7/2,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,8,9/2,5,4,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,15/2,16,8,8,6,9,5,6,5,9,5,6,5,7,5,6,13/2,13,7,8,6,9,6,8,7,12,15/2,9,8,13,9,13,13,22,12,12,8,12,7,8,7,11,6,7,11/2,9,11/2,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,3,5,4,5,4,7,4,5,9/2,7,5,8,15/2,11,6,6,4,7,4,5,4,6,4,4,7/2,5,7/2,4,4,9,5,5,4,6,4,5,4,8,9/2,5,4,6,4,6,6,10,6,6,9/2,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,7/2,5,4,5,5,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10 -9,5,6,4,5,4,9/2,4,7,4,5,4,5,4,5,4,7,4,7/2,2,4,3,7/2,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,7/2,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,7/2,3,6,4,11/2,5,7,4,7/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,11/2,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,4,3,6,4,9/2,4,5,3,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,5,9,5,11/2,4,7,4,11/2,5,6,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,15/2,6,7,5,6,5,9,5,9/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,13,7,13/2,4,7,4,11/2,5,9,5,5,4,6,4,11/2,6,10,6,6,5,6,4,11/2,5,9,5,6,5,8,6,9,9,16,8,17/2,6,8,5,13/2,6,9,5,6,4,7,5,6,5,10,6,6,5,6,4,11/2,5,8,5,5,5,8,6,17/2,8,18,10,19/2,6,10,6,7,6,11,6,7,6,9,6,15/2,8,15,8,17/2,6,10,6,17/2,8,14,9,11,9,15,10,15,15,26,14,14,10,14,8,19/2,8,13,7,8,6,10,6,8,8,14,8,15/2,6,8,5,7,6,10,6,13/2,6,9,6,8,8,13,7,7,5,8,5,11/2,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,11/2,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,8,5,5,4,6,4,11/2,5,10,6,6,5,7,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,7,4,5,5,10,6,7,6,10,7,10,10,15,8,17/2,6,8,5,13/2,6,9,5,5,4,6,4,11/2,6,11,6,11/2,4,6,4,5,5,8,4,9/2,4,6,4,6,6,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,8,5,5,4,4,3,7/2,3,4,3,3,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,7,4,4,3,4,3,3,3,3,2,3,2,4,3,3,3,1,1,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,1,0,0,0,0,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,-3,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,4,2,5/2,2,3,2,2,2,4,3,7/2,4,6,3,3,3,5,3,4,4,5,3,4,3,4,3,3,3,8,4,4,3,5,3,4,4,6,4,9/2,4,6,4,6,6,11 -8,9/2,5,4,4,3,4,3,5,3,4,3,4,3,4,7/2,6,3,3,2,3,2,3,5/2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,5/2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,7/2,5,4,5,6,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,6,4,5,9/2,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,6,5,7,5,8,8,13,7,7,5,7,4,5,9/2,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,11/2,8,5,6,5,9,5,6,5,8,5,6,13/2,13,7,7,5,8,5,7,7,12,7,9,15/2,12,8,12,12,22,11,11,8,11,13/2,8,13/2,11,6,7,5,8,5,7,6,11,6,6,9/2,6,4,5,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,7/2,5,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,7/2,5,5,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,1,1,1,1/2,0,0,0,0,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9 -13,7,8,6,15/2,4,5,5,8,5,5,4,6,4,6,6,9,5,4,3,9/2,3,3,3,7,4,4,3,9/2,4,5,5,7,4,4,3,9/2,3,4,3,3,2,2,2,9/2,4,5,5,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,9/2,2,2,2,4,3,3,2,5/2,2,2,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,9/2,3,4,3,6,4,4,4,11/2,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,7,4,4,4,11/2,4,4,4,6,4,5,4,7,5,6,6,11,6,5,4,5,3,4,3,7,4,4,4,11/2,4,6,5,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,13,7,7,5,7,5,6,5,8,5,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,8,5,6,4,13/2,4,6,5,10,6,6,5,15/2,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,5,7,7,10,6,6,4,11/2,4,4,4,7,4,5,4,6,4,6,6,9,5,6,4,11/2,4,4,4,7,4,4,4,6,5,7,7,11,6,7,5,8,5,6,6,9,5,6,4,13/2,4,6,6,12,7,7,5,8,5,7,7,11,7,8,6,21/2,8,11,11,18,10,10,7,11,7,9,8,11,6,6,5,15/2,5,6,6,9,5,6,4,11/2,4,6,5,9,5,6,5,17/2,6,8,9,18,9,9,6,9,6,7,6,12,7,7,6,17/2,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,25/2,9,14,14,21,11,11,8,25/2,7,8,7,14,8,8,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,12,8,12,12,25,13,13,9,25/2,8,9,8,16,9,10,8,13,8,11,11,22,12,13,9,14,9,11,11,20,12,14,12,43/2,15,22,22,38,20,20,13,37/2,11,13,11,18,10,11,8,27/2,8,11,10,18,10,10,7,21/2,6,8,7,15,9,10,8,25/2,8,12,11,19,10,10,8,23/2,7,8,7,10,6,7,5,8,5,7,7,12,7,8,6,17/2,6,7,7,12,7,8,7,11,8,12,12,18,10,10,7,19/2,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,17/2,6,7,6,12,7,7,6,9,6,9,9,16,9,9,7,10,6,7,7,12,7,8,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,21,11,11,8,12,7,9,8,12,7,7,6,9,6,7,7,14,8,8,6,15/2,5,6,6,10,6,6,5,15/2,5,7,7,12,6,6,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,9,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,3,10,6,6,4,13/2,4,4,3,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,10,6,6,4,11/2,4,4,4,4,3,3,2,7/2,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,4,3,3,2,5/2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,7,4,3,2,3,2,2,2,6,4,4,3,5,4,5,5,8,5,5,4,11/2,4,4,3,5,3,4,3,9/2,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,11/2,4,4,4,10,5,5,4,11/2,4,4,4,9,5,6,5,15/2,6,8,8,15 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,5,6,5,8,4,4,7/2,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,6,5,6,4,5,9/2,8,5,5,4,6,4,6,6,9,5,6,4,7,9/2,6,5,9,11/2,6,5,8,6,9,9,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,11/2,6,6,11,6,7,6,9,6,8,8,15,8,9,13/2,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,12,7,9,7,12,7,7,6,9,6,7,7,12,7,7,5,7,9/2,6,5,10,6,7,5,8,6,8,8,13,7,7,11/2,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,9/2,8,9/2,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,9/2,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,7/2,4,4,7,4,4,3,5,7/2,5,5,8,4,4,3,4,5/2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,5/2,4,3,4,7/2,6,3,3,3,4,3,3,5/2,4,3,3,5/2,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,10 -13,7,7,5,7,4,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,4,3,7/2,3,6,4,4,3,5,3,4,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,8,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,5,9,5,9/2,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,3,3,3,5,4,5,5,7,4,5,4,6,4,11/2,5,8,5,6,5,8,6,9,9,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,5,5,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,6,6,10,6,11/2,4,7,4,9/2,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,9/2,4,6,4,9/2,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,5,7,7,10,6,6,5,8,5,11/2,5,8,5,6,5,6,4,6,6,12,6,13/2,5,7,5,13/2,6,12,7,15/2,6,10,7,10,10,19,10,10,7,10,6,15/2,6,11,6,13/2,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,18,10,19/2,7,9,6,7,6,12,7,7,5,9,6,15/2,8,13,7,8,6,10,6,17/2,8,13,8,9,7,12,9,13,13,21,11,23/2,8,12,7,17/2,7,12,7,7,5,9,6,15/2,7,12,7,7,5,9,6,8,7,11,7,8,7,11,8,11,11,22,12,25/2,8,12,8,19/2,9,16,9,10,8,13,8,23/2,11,21,11,12,9,13,8,23/2,11,20,12,27/2,12,20,14,20,20,36,19,19,13,18,10,25/2,10,18,10,10,8,13,8,10,10,18,10,19/2,7,10,6,8,7,14,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,9,6,13/2,5,8,5,13/2,7,12,7,7,5,8,5,13/2,6,12,7,8,7,11,8,23/2,11,19,10,10,7,10,6,15/2,6,11,6,7,6,8,6,8,7,13,7,7,5,8,5,6,6,11,6,13/2,6,9,6,9,9,16,9,9,7,10,6,15/2,6,11,7,8,6,9,6,8,8,15,8,8,6,9,6,15/2,7,14,8,19/2,8,14,9,13,13,21,11,11,8,11,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,15/2,5,7,5,6,6,10,6,11/2,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,8,5,5,3,5,3,4,3,4,2,5/2,2,3,2,3,3,11,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,7/2,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,9,5,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,7,4,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,8,4,4,3,5,3,7/2,3,6,4,4,3,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,8,5,5,4,8,5,7,7,14 -12,7,7,5,6,4,4,4,6,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,9/2,4,7/2,5,3,4,4,6,4,4,3,5,7/2,4,5,9,5,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,9/2,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,7,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,13/2,11,6,6,5,7,5,6,6,10,11/2,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,10,7,9,6,7,6,11,13/2,7,5,9,6,7,7,13,7,8,6,10,6,8,8,13,8,9,15/2,13,9,13,13,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,9,6,7,7,11,7,8,7,11,8,11,11,22,12,12,8,12,8,10,9,16,9,10,8,13,17/2,12,11,21,11,12,9,13,17/2,12,11,20,12,14,12,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,13/2,8,7,13,8,9,7,12,8,11,11,19,10,10,7,11,6,7,6,9,11/2,6,5,7,5,6,13/2,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,6,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,6,11/2,9,6,9,9,16,9,9,7,10,6,8,13/2,11,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,13,9,13,13,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,5,7,5,6,6,10,6,6,4,6,4,6,6,11,6,6,4,6,7/2,4,4,6,4,4,3,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,3,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,7/2,3,2,3,2,3,3,4,3,3,3,5,7/2,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,6,4,4,4,8,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,9/2,8,5,5,4,7,5,7,7,13 -23,12,12,8,12,7,8,7,11,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,23/2,6,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,6,5,7,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,14,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,7,6,10,7,11,11,43/2,11,10,7,10,6,7,6,10,6,7,5,8,6,9,9,16,9,9,7,12,8,11,10,19,11,12,10,18,12,18,18,23,12,13,9,13,8,9,7,12,7,8,6,10,6,8,8,15,8,9,7,11,7,8,7,13,7,8,7,12,8,11,10,19,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,9,8,13,8,9,7,12,9,13,13,20,11,11,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,11,7,10,10,41/2,11,11,7,10,6,8,7,13,7,8,7,12,8,10,10,18,10,10,7,11,7,10,10,18,11,13,11,18,12,18,19,36,19,19,13,19,11,12,10,18,10,11,9,15,10,14,13,24,13,13,10,15,9,12,11,20,11,13,11,18,12,18,17,65/2,17,17,12,17,10,13,12,21,12,14,11,18,12,16,15,29,15,16,12,19,12,16,15,28,16,18,15,25,17,25,25,40,20,20,14,21,13,16,14,24,13,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,23,15,22,22,85/2,22,22,16,24,14,17,15,26,14,16,13,22,14,20,19,36,19,21,16,25,16,22,21,40,23,27,23,40,27,40,40,70,36,36,25,37,21,25,21,37,20,21,15,24,15,19,18,34,18,18,13,20,12,14,12,22,12,14,12,21,14,20,20,75/2,19,19,13,20,12,14,12,20,11,13,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,13,21,14,21,21,36,19,19,13,19,11,14,12,21,11,12,9,14,9,11,11,20,11,11,8,13,8,11,11,20,11,12,10,17,11,16,16,63/2,16,17,12,17,10,13,12,21,11,12,10,16,10,13,13,24,13,14,10,16,10,14,14,27,15,18,15,25,17,25,25,41,21,21,14,21,12,14,12,21,11,12,9,14,9,12,11,19,10,10,7,11,7,8,7,11,7,8,7,11,8,11,11,21,11,11,7,9,5,6,5,8,5,6,5,7,5,6,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,20,10,10,7,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,16,8,8,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,13/2,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,7,4,5,4,5,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,2,3,2,3,2,3,3,4,5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,7,5,8,5,6,6,10,6,6,5,7,5,8,8,14,8,8,6,8,5,5,5,8,5,6,5,9,6,9,8,31/2,8,8,6,8,5,7,6,11,6,7,5,8,6,9,9,16,9,10,7,11,7,8,8,14,8,9,7,12,9,13,13,25 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,19,10,10,7,10,6,6,11/2,10,6,6,5,8,6,8,7,12,7,7,11/2,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,13/2,9,6,7,6,11,13/2,8,6,10,6,8,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,20,10,10,7,11,7,8,7,13,7,7,11/2,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,12,7,9,8,14,8,8,7,12,8,10,10,18,10,11,8,13,9,12,11,21,12,14,12,21,14,21,21,36,19,19,13,19,11,13,11,19,21/2,11,8,13,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,11,15/2,10,10,20,10,10,7,11,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,7,13,8,9,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,6,10,6,6,11/2,9,6,9,9,17,9,9,13/2,9,6,7,13/2,11,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,13/2,8,13/2,11,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,9,5,4,7/2,5,7/2,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,4,5/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,9/2,4,8,4,4,3,4,3,3,2,4,3,3,2,4,3,7/2,4,7,4,9/2,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,3,3,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,9/2,4,9,5,5,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,9/2,4,7,4,7/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,13/2,6,11,6,11/2,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,11/2,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,8,5,11/2,4,6,4,5,5,6,4,4,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,6,4,9/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,13/2,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,11/2,4,7,4,5,5,10,6,7,6,10,7,10,10,19,10,21/2,7,10,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,15/2,6,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,15/2,6,10,6,17/2,8,16,9,9,7,10,7,9,8,14,8,19/2,8,14,9,13,13,20,10,21/2,7,10,6,17/2,7,13,7,15/2,6,9,6,15/2,8,13,7,8,6,9,6,8,7,13,8,9,8,13,9,25/2,12,23,12,12,8,12,7,9,8,14,8,17/2,7,12,8,10,10,18,10,11,8,14,9,12,11,22,12,29/2,12,21,14,21,21,36,19,19,13,19,11,13,11,20,11,11,8,13,8,11,10,18,10,19/2,7,10,6,8,7,11,6,7,6,11,8,21/2,10,20,11,11,8,12,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,10,6,7,7,13,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,11,6,7,5,8,5,7,7,11,6,13/2,5,7,5,6,6,10,6,13/2,6,9,6,19/2,10,18,10,10,7,10,6,15/2,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,15,8,19/2,8,13,9,27/2,14,21,11,23/2,8,11,6,15/2,6,11,6,13/2,5,8,5,13/2,6,10,6,11/2,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,7/2,3,5,3,4,3,4,3,3,3,5,3,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,10,6,11/2,4,5,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,9,5,9/2,4,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,3/2,1,0,0,0,0,4,2,5/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,1,1,2,2,-5,-2,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,7/2,3,5,4,9/2,4,8,5,5,4,5,3,7/2,3,5,3,4,3,5,4,11/2,5,8,4,4,3,5,3,4,4,7,4,4,3,5,4,11/2,5,9,5,5,4,7,4,5,5,8,5,5,4,7,5,8,8,14 -9,5,5,4,5,3,3,3,4,3,3,2,3,3,4,7/2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,4,3,3,3,5,7/2,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,5/2,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,7/2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,11/2,8,5,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,8,5,6,4,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,13/2,9,9,14,15/2,8,5,7,9/2,6,5,9,5,6,4,6,4,6,6,10,11/2,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,16,8,8,6,8,5,6,11/2,10,6,6,5,9,6,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,9/2,8,6,8,15/2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,9/2,7,4,5,5,9,6,7,5,9,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,5/2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,7/2,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10 -13,7,7,5,15/2,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,11/2,4,6,5,10,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,3,8,4,4,3,5,4,5,4,7,4,4,3,9/2,3,4,4,5,3,3,2,7/2,3,4,4,5,3,3,3,9/2,4,5,5,10,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,4,5,3,4,3,9/2,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,5,4,7,5,6,6,11,6,6,4,11/2,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,15/2,5,6,6,12,7,8,7,23/2,8,12,11,13,7,7,5,7,4,5,5,8,5,6,4,13/2,4,6,6,9,5,6,4,13/2,4,5,5,6,4,4,3,5,4,5,6,11,6,7,5,15/2,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,13/2,4,4,3,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,13,7,7,5,13/2,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,15/2,5,6,6,10,6,7,6,21/2,7,10,11,22,12,12,8,23/2,7,8,6,11,6,7,6,19/2,6,8,8,13,7,8,6,17/2,6,7,6,11,7,8,6,10,7,10,10,17,9,9,7,11,6,7,6,12,7,7,6,19/2,7,10,10,16,9,10,7,11,7,9,9,14,8,10,8,27/2,10,14,14,20,10,10,7,21/2,6,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,8,13,9,12,12,24,13,13,9,25/2,8,9,8,15,9,10,8,13,8,11,10,19,11,12,9,14,9,13,12,23,13,15,13,22,15,22,22,38,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,19,10,11,8,23/2,7,8,8,12,7,8,6,21/2,7,10,10,22,12,12,8,25/2,7,8,7,13,7,8,6,19/2,6,9,9,15,8,8,6,10,6,8,7,14,8,10,8,13,9,12,12,20,11,11,8,25/2,7,8,7,13,7,8,6,17/2,6,7,7,13,7,7,6,17/2,5,6,6,11,6,7,6,21/2,8,11,11,19,10,10,7,21/2,6,8,7,13,7,8,6,9,6,9,8,15,9,10,8,23/2,8,10,9,15,9,10,8,29/2,10,14,14,23,12,12,8,12,7,8,7,11,6,6,5,17/2,6,7,7,11,6,6,4,13/2,4,5,4,7,4,5,4,13/2,4,6,6,12,6,6,5,7,4,4,3,6,3,3,2,7/2,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,10,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,1,1,0,0,0,1,1,1,3,2,1,1,1/2,0,0,0,4,3,3,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,1,1,1,2,2,2,1,1,1,2,2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,9/2,3,3,3,6,4,4,4,11/2,4,4,4,9,5,5,4,9/2,3,4,3,6,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,15/2,6,8,8,14 -8,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,3,3,3,4,5/2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,7/2,5,3,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,5/2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,9/2,5,4,5,7/2,4,4,7,4,5,4,6,9/2,6,6,10,6,6,9/2,7,4,4,4,7,4,5,4,6,4,6,6,9,5,6,9/2,7,9/2,6,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,8,8,11/2,8,5,6,5,9,5,6,5,8,5,7,6,11,13/2,7,11/2,8,6,8,7,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,13,7,7,11/2,8,5,7,13/2,11,6,7,5,7,9/2,5,5,8,5,5,4,6,9/2,6,6,13,7,7,5,8,5,5,9/2,8,9/2,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,5,9/2,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,6,9,11/2,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,9/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,2,3/2,1,1,1,1,1,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8 -9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,3,4,2,5/2,2,2,2,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,2,4,2,5/2,2,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,3,3,2,5/2,2,5,3,5/2,2,4,3,7/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,4,4,2,5/2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,3,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,5,3,3,2,4,3,3,3,4,3,7/2,4,6,4,5,5,9,5,5,3,5,3,4,4,5,3,7/2,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,8,8,11,6,6,4,6,4,9/2,4,7,4,9/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,4,3,7/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,7/2,3,6,4,5,4,7,5,7,7,8,5,5,4,6,4,7/2,3,5,3,3,2,3,3,4,4,5,3,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,4,3,7/2,3,6,4,4,3,5,4,5,5,7,4,4,3,6,4,5,5,8,5,11/2,5,8,6,17/2,8,16,9,9,6,8,5,13/2,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,11/2,4,8,6,15/2,8,13,7,7,5,8,5,11/2,5,9,5,6,5,7,5,7,7,11,6,7,5,8,5,13/2,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,11/2,6,8,5,11/2,4,7,5,13/2,6,12,7,7,5,7,5,13/2,6,10,6,7,6,10,7,10,9,18,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,14,8,9,7,10,7,9,9,17,10,11,9,16,11,16,16,29,15,29/2,10,15,9,21/2,9,16,9,9,7,10,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,15/2,8,17,9,9,7,10,6,13/2,6,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,15/2,6,10,7,10,9,16,9,9,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,6,6,5,6,4,5,4,8,5,11/2,5,8,6,8,8,13,7,7,5,7,4,11/2,5,10,6,13/2,5,8,5,7,7,11,6,13/2,5,9,6,15/2,7,12,7,15/2,6,11,8,11,11,16,9,9,6,8,5,6,5,9,5,11/2,4,7,4,11/2,6,8,5,5,3,5,3,7/2,4,5,3,7/2,3,5,4,9/2,5,10,6,11/2,4,5,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,8,5,5,4,5,3,7/2,4,5,3,7/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,2,2,2,1,1,1,1/2,0,2,1,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,2,2,2,2,2,5/2,2,6,3,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,5,3,7/2,4,6,4,9/2,4,6,4,6,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,5/2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,5,8,5,5,9/2,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,9/2,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,7/2,4,4,6,9/2,6,6,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,15/2,14,8,8,11/2,8,5,6,5,9,5,5,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,11/2,11,6,6,5,6,4,6,5,9,5,6,5,9,6,9,8,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,9/2,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,10,14,7,7,5,7,4,5,5,8,9/2,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,7/2,4,4,6,4,6,5,9 -15,8,8,6,8,5,6,6,19/2,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,6,6,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,6,5,11,6,5,4,5,3,4,4,11/2,4,4,3,3,3,4,4,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,1,1,2,2,3,2,3,2,7/2,2,3,3,5,4,5,5,9,5,5,4,5,3,4,4,15/2,4,4,3,4,3,3,3,7,4,5,4,6,4,4,4,15/2,4,5,4,5,4,5,5,11,6,6,4,5,3,4,4,11/2,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,9/2,3,3,3,4,3,4,4,12,6,6,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,8,5,6,6,15,8,8,6,10,6,8,8,27/2,8,9,7,12,9,13,13,19,10,10,7,11,7,8,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,15/2,4,5,5,8,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,6,7,6,11,8,11,10,13,7,8,6,8,5,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,17/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,15/2,5,6,5,7,5,7,7,10,6,6,4,6,4,6,6,23/2,7,8,8,14,10,14,13,25,13,13,9,13,8,10,9,31/2,9,10,8,12,7,9,9,14,8,8,6,9,6,8,7,12,7,9,7,12,8,11,11,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,11,18,10,10,7,11,7,10,10,35/2,10,11,9,15,10,15,15,22,12,12,9,13,8,10,8,27/2,8,8,6,10,7,9,9,19,10,11,8,13,8,10,9,31/2,9,11,9,16,11,15,14,28,15,15,11,16,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,15,10,13,13,25,14,16,14,24,16,24,25,46,24,24,17,25,14,17,14,25,13,14,11,17,11,14,13,24,13,13,9,14,9,11,10,35/2,10,11,9,15,10,13,12,26,14,14,10,15,9,10,8,14,8,9,7,12,8,11,11,22,12,13,9,14,8,10,9,31/2,9,11,9,16,11,15,14,27,14,15,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,6,8,5,6,6,11,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,12,8,11,10,18,10,11,8,12,8,10,10,37/2,10,12,10,18,12,18,17,24,12,12,8,12,7,9,8,13,8,9,7,11,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,4,13,7,8,6,8,5,6,5,17/2,5,5,3,4,3,3,3,6,4,4,3,4,3,3,2,7/2,2,3,2,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,4,2,2,1,1,1,1,1,3/2,1,0,0,0,0,0,0,9,5,6,4,6,4,4,4,13/2,4,4,3,4,3,4,3,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,2,2,3/2,2,2,2,4,3,4,4,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,11/2,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,13/2,4,4,3,5,4,6,6,9,5,5,4,7,4,5,5,17/2,5,6,5,8,5,6,6,12,6,6,5,7,5,6,5,17/2,5,6,6,10,7,10,9,17 -9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,15/2,11,6,6,9/2,7,4,5,4,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,15/2,8,5,7,5,6,5,8,5,6,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,10,6,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,9,6,8,15/2,14,8,9,8,13,9,13,27/2,25,13,13,9,14,8,10,8,14,15/2,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,11/2,7,7,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,11/2,10,11/2,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9 -10,6,11/2,4,5,3,4,4,7,4,4,4,6,4,9/2,4,8,4,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,2,2,0,1,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,4,3,3,3,5,3,7/2,3,6,4,11/2,6,8,5,11/2,4,6,4,9/2,4,7,4,5,4,5,4,9/2,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,7,4,5,4,7,4,5,5,10,6,6,4,5,4,9/2,4,6,4,4,4,5,4,5,5,8,5,11/2,4,6,4,9/2,4,6,4,9/2,3,4,3,9/2,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,13/2,6,9,5,9/2,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,6,4,4,3,3,2,3,3,6,4,4,4,5,4,5,5,9,5,9/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,7,4,5,4,5,4,9/2,4,8,5,6,5,10,7,19/2,9,15,8,17/2,6,8,5,6,5,9,5,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,11/2,5,8,5,7,7,11,6,13/2,5,8,5,11/2,5,8,5,11/2,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,11/2,5,9,5,11/2,4,7,5,6,6,12,7,7,5,8,5,13/2,6,10,6,7,6,10,7,19/2,9,16,9,9,7,9,6,7,6,10,6,7,6,10,6,17/2,8,13,7,15/2,6,10,6,17/2,8,15,9,10,9,15,10,29/2,15,28,14,29/2,10,16,9,21/2,9,15,8,9,7,11,7,9,8,16,9,9,7,9,6,15/2,6,12,7,15/2,6,9,6,8,8,16,9,19/2,6,9,6,13/2,6,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,13/2,6,10,7,19/2,10,17,9,9,6,9,6,13/2,6,11,6,7,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,11/2,5,7,5,15/2,8,14,8,15/2,6,8,5,6,5,9,5,11/2,4,7,5,13/2,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,23/2,11,15,8,8,6,7,5,6,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,4,9/2,4,6,4,4,4,6,4,9/2,4,8,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,7,4,9/2,3,5,3,7/2,4,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,7/2,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,8,4,4,3,4,3,7/2,3,6,4,4,4,6,4,11/2,6,10 -9,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,9/2,7,4,4,3,5,3,4,3,6,7/2,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,8,9/2,5,4,6,9/2,6,7,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,4,8,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,7/2,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,10,6,6,9/2,6,4,4,4,7,4,4,7/2,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,11/2,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,23,12,12,8,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,11/2,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,11/2,8,5,6,5,7,4,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,9/2,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,9/2,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,11/2,9,6,9,9,12,6,6,9/2,6,4,4,4,7,4,4,4,6,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8 -15,8,8,6,8,5,7,6,9,5,5,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,11/2,4,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,0,1,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,9/2,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,15/2,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,17/2,6,7,6,13,7,8,6,21/2,8,11,11,21,11,11,8,12,7,8,6,12,7,8,6,9,6,8,7,13,7,8,6,15/2,4,5,5,8,5,6,4,13/2,4,6,6,13,7,8,6,8,5,5,5,8,5,6,4,13/2,4,6,5,8,5,6,4,13/2,4,5,5,7,4,5,5,17/2,6,8,8,12,6,6,4,11/2,4,4,3,6,4,4,3,4,3,3,3,8,5,5,4,5,4,5,4,8,5,6,5,15/2,5,6,6,11,6,6,4,6,4,5,5,7,4,4,3,5,4,6,6,10,6,6,5,15/2,5,6,6,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,10,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,9,9,14,8,8,6,9,6,7,6,9,5,6,5,17/2,6,8,8,14,8,8,6,19/2,6,8,7,12,7,9,8,25/2,8,12,12,17,9,9,7,10,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,19/2,6,8,7,13,8,9,7,12,8,11,11,21,11,11,8,23/2,7,9,8,13,7,8,7,23/2,8,10,10,18,10,10,8,12,8,10,10,19,11,13,11,39/2,14,20,20,39,20,20,14,21,12,14,11,21,11,12,9,29/2,9,12,11,21,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,23,12,13,9,13,7,8,7,12,7,8,6,21/2,7,10,10,18,10,10,8,23/2,7,8,7,12,7,8,8,27/2,9,13,13,23,12,12,8,23/2,7,8,7,14,8,8,6,9,6,7,7,14,8,8,6,8,5,7,6,10,6,8,6,21/2,7,10,10,20,11,11,8,11,7,9,8,12,7,7,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,15,10,14,14,20,10,10,7,19/2,6,7,6,11,6,6,5,17/2,6,7,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,5/2,2,3,3,9,5,5,4,11/2,4,4,4,7,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,6,4,4,3,9/2,3,3,3,3,2,3,3,4,3,3,3,6,4,4,3,9/2,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,0,0,0,1,3/2,2,2,1,1,1,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,9/2,4,5,5,8,4,4,3,7/2,3,4,4,4,3,3,3,11/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,12 -10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,3,4,5/2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,4,6,7/2,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,9/2,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,5,9,6,8,8,14,15/2,8,5,7,4,5,9/2,8,5,5,4,7,9/2,6,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,15/2,8,11/2,8,5,6,11/2,9,5,6,5,8,5,7,7,12,7,7,11/2,8,11/2,7,7,13,8,9,8,13,9,13,13,25,13,13,9,13,8,9,15/2,14,15/2,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,11/2,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,9,5,6,6,10,7,9,9,14,7,7,5,7,4,5,4,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,5/2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,7/2,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8 -14,8,15/2,6,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,5/2,2,3,2,5/2,2,3,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,3,3,4,3,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,8,4,9/2,4,5,3,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,3,4,3,4,4,6,4,4,4,7,5,13/2,6,12,6,13/2,5,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,8,5,7,6,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,15/2,6,9,6,15/2,7,12,7,7,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,12,7,7,5,7,4,11/2,4,7,4,9/2,4,6,4,9/2,4,8,5,5,4,6,4,9/2,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,5,3,4,4,7,4,11/2,4,6,4,13/2,6,10,6,6,4,6,4,5,4,8,4,9/2,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,7,8,7,12,8,12,12,20,10,21/2,7,10,6,7,6,11,6,13/2,5,9,6,15/2,7,12,7,7,5,8,5,6,5,9,5,11/2,5,8,6,8,8,14,8,15/2,5,7,4,11/2,5,9,5,6,5,7,5,7,7,12,7,15/2,6,8,6,15/2,7,12,7,17/2,7,12,8,11,11,16,8,8,6,9,6,13/2,6,10,6,6,5,8,6,8,8,14,8,15/2,6,8,5,7,6,11,6,15/2,6,11,8,21/2,10,19,10,21/2,7,11,7,17/2,8,12,7,8,7,10,7,9,9,18,10,21/2,8,12,8,10,10,18,11,13,11,18,13,19,19,35,18,37/2,13,18,10,25/2,10,19,10,11,8,14,9,23/2,11,20,11,11,8,12,8,19/2,8,15,9,10,8,12,8,11,11,21,11,11,8,11,6,15/2,6,11,6,7,6,10,7,19/2,10,17,9,10,7,10,6,15/2,7,12,7,8,7,12,9,13,13,20,10,21/2,8,10,6,15/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,6,8,5,6,5,9,6,7,6,9,6,9,9,19,10,21/2,7,10,6,8,7,12,6,13/2,5,8,5,7,7,14,8,15/2,6,9,6,7,7,12,7,17/2,8,13,9,13,13,20,10,21/2,7,10,6,7,6,11,6,6,5,8,5,13/2,6,10,6,11/2,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,4,3,7/2,4,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,9/2,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3/2,2,3,2,3,3,2,2,3/2,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,9/2,3,4,3,4,3,5,3,7/2,3,5,3,4,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,3,4,4,9,5,11/2,4,7,4,11/2,5,8,4,9/2,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,5,3,4,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,9,5,6,9/2,6,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,5/2,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,7/2,5,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,4,6,9/2,6,6,11,6,6,5,7,5,6,5,8,5,6,9/2,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,12,7,7,5,7,9/2,6,9/2,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,4,4,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,7,8,7,12,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,9/2,6,5,8,5,6,5,7,5,7,7,12,7,7,11/2,8,11/2,7,7,12,7,8,7,11,8,11,11,16,8,8,6,9,11/2,6,6,10,6,6,5,8,6,8,7,13,7,7,5,8,5,6,6,10,6,8,13/2,11,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,9,9,17,19/2,10,8,12,8,10,19/2,17,10,12,21/2,18,25/2,18,18,34,35/2,18,12,18,10,12,10,18,10,11,8,13,8,11,11,20,11,11,8,12,15/2,9,8,14,8,9,7,11,8,11,11,20,11,11,8,11,13/2,8,7,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,17/2,12,12,20,10,10,15/2,10,6,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,17/2,12,12,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,9/2,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,5/2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,4,4,6,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,8,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11 -26,14,14,10,15,9,11,9,16,9,9,7,10,6,8,8,31/2,8,8,6,8,5,6,6,10,6,7,5,8,6,9,9,11,6,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,11,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,4,6,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,4,3,4,4,7,5,7,7,8,5,5,3,4,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,8,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,15/2,4,5,4,5,4,5,5,8,5,5,4,7,5,8,8,15,8,8,6,9,5,6,5,8,5,6,5,7,4,5,5,17/2,5,6,5,8,6,8,7,13,8,9,7,12,8,12,12,21,11,12,9,13,8,10,8,14,8,9,8,14,9,13,13,24,13,14,10,15,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,11,13,11,18,10,11,9,14,9,12,12,43/2,11,11,8,12,7,9,8,15,8,9,7,12,8,12,12,22,12,12,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,6,9,6,8,8,16,9,11,9,16,11,15,15,20,11,11,8,12,7,8,7,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,18,10,10,7,11,7,8,7,13,8,9,7,11,7,10,10,35/2,10,10,8,12,8,11,11,20,12,14,12,21,14,21,21,37,19,19,13,20,12,14,12,20,11,13,10,16,10,14,13,49/2,13,14,10,15,9,11,10,18,10,12,10,16,11,15,15,25,13,14,10,16,10,12,10,18,10,11,9,15,10,13,12,45/2,12,13,9,14,9,11,11,20,12,14,12,21,14,21,21,31,16,16,11,16,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,16,10,12,11,19,11,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,13,11,18,12,18,17,33,18,20,15,24,15,20,19,36,20,23,19,34,23,34,34,66,34,34,23,35,20,24,20,35,19,21,16,25,16,22,20,38,19,19,13,20,12,14,13,23,13,14,12,20,14,20,20,38,20,20,14,21,12,15,13,23,13,14,11,18,12,16,16,63/2,16,16,12,18,11,14,13,25,14,17,14,25,16,23,23,38,20,20,14,20,11,13,11,20,11,12,9,15,10,14,13,47/2,13,14,10,15,9,12,11,21,12,13,11,18,12,17,17,38,19,19,13,20,11,13,11,20,11,13,10,16,10,14,14,26,14,14,10,15,10,13,12,22,13,15,13,22,15,22,23,37,19,19,14,21,12,15,12,21,11,12,9,14,9,11,10,37/2,10,11,8,12,7,9,8,15,9,10,8,12,8,11,10,16,9,9,6,9,5,6,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,16,9,9,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,6,4,4,3,5,4,5,5,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,6,6,10,5,5,4,6,4,6,6,23/2,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,29/2,8,9,7,10,6,8,7,12,7,8,7,12,8,12,11,21 -14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,5,5,6,7/2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,5/2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,9/2,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,13/2,12,13/2,6,5,7,9/2,5,9/2,8,5,5,4,5,7/2,4,4,8,4,4,7/2,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,6,11/2,9,6,8,8,14,15/2,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,11/2,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,13/2,8,7,11,6,7,6,10,7,10,10,17,10,11,8,13,8,11,10,19,11,12,10,18,12,18,18,34,18,18,25/2,18,11,13,11,18,10,11,17/2,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,8,7,14,8,9,8,13,9,13,13,20,11,11,8,11,6,7,6,11,6,7,11/2,8,6,8,7,12,7,8,6,8,5,7,6,11,6,7,6,10,7,9,9,20,21/2,10,7,11,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,11/2,7,7,12,7,8,7,12,8,12,12,20,10,10,8,11,7,8,7,12,13/2,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,5/2,3,2,3,3,4,3,3,3,4,3,3,3,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,6,11 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,5,5,3,4,3,7/2,3,7,4,5,4,5,4,5,5,6,4,7/2,2,4,3,3,3,4,3,7/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,4,4,6,4,11/2,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,4,3,6,4,7/2,2,3,2,7/2,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,3,4,3,9/2,5,9,5,5,4,5,3,7/2,3,4,3,3,3,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,7,5,13/2,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,15/2,6,9,6,7,6,12,7,8,7,12,8,12,12,22,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,11/2,5,9,5,11/2,4,6,4,6,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,11/2,4,6,4,5,5,10,6,6,5,9,6,9,8,11,6,7,5,7,4,5,5,8,5,5,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,5,4,6,5,7,7,11,6,13/2,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,13/2,6,12,7,17/2,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,13/2,6,9,6,17/2,8,15,8,17/2,6,10,6,7,6,10,6,7,6,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,19/2,6,10,6,7,6,11,6,6,5,8,6,15/2,8,13,7,8,6,8,5,13/2,6,11,6,15/2,6,10,7,21/2,11,19,10,21/2,8,12,7,17/2,8,12,7,15/2,6,10,7,11,11,18,10,11,9,13,8,23/2,11,20,11,13,11,19,13,39/2,20,36,19,19,13,19,11,13,11,19,10,23/2,9,14,9,12,11,21,11,11,8,12,7,17/2,8,13,8,17/2,7,11,8,11,11,22,12,23/2,8,12,7,9,7,14,8,9,7,10,7,10,10,18,10,10,7,11,7,17/2,8,15,9,10,8,14,10,14,14,22,12,12,8,12,7,8,7,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,7,11,6,15/2,6,10,7,10,10,22,12,23/2,8,11,7,8,7,12,7,7,6,10,6,17/2,8,14,8,17/2,6,8,6,15/2,7,12,7,9,8,12,8,25/2,13,21,11,11,8,12,7,17/2,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,13/2,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,7/2,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,7/2,4,6,3,3,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,7,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,-1/2,0,0,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,4,3,3,3,4,3,3,3,4,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,9/2,4,8,5,5,4,5,4,9/2,4,7,4,5,4,7,5,15/2,7,12 -11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,5,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,9/2,7,5,6,5,9,11/2,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,6,4,4,7/2,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,9/2,5,4,6,5,7,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,4,5,5,9,11/2,6,5,9,13/2,10,10,16,17/2,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,14,8,8,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,11/2,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,6,8,8,14,8,8,13/2,10,13/2,9,8,14,8,10,8,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,10,7,9,17/2,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,17/2,8,6,9,11/2,7,11/2,10,6,7,5,8,6,8,7,13,7,8,11/2,8,5,6,6,11,7,8,6,10,15/2,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,9/2,6,4,5,5,8,5,6,5,8,11/2,8,8,16,17/2,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,6,4,6,5,9,6,7,6,10,7,10,10,16,9,9,13/2,10,6,6,5,10,11/2,6,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,5/2,3,3,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,7/2,5,3,4,7/2,6,4,6,6,10 -18,10,10,7,19/2,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,11/2,4,4,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,6,4,11/2,4,5,5,8,5,5,4,13/2,4,6,6,11,6,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7/2,3,4,5,7,4,4,3,9/2,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,7/2,2,3,3,5,3,4,3,9/2,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,7/2,3,4,4,5,3,4,3,4,3,3,3,7,4,5,4,13/2,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,11/2,4,4,4,6,4,4,3,9/2,4,5,5,8,5,5,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,9,6,8,8,16,9,9,7,21/2,7,9,8,15,9,10,8,27/2,10,14,14,26,13,13,9,13,8,9,8,13,7,8,6,19/2,6,8,8,15,8,8,6,15/2,5,6,6,9,5,6,5,15/2,5,7,7,14,8,8,6,15/2,5,6,5,9,5,6,5,15/2,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,13,7,7,5,8,5,7,6,10,6,6,4,13/2,4,6,6,9,5,5,4,13/2,4,4,4,7,5,6,5,15/2,5,7,7,13,7,7,5,15/2,5,6,6,11,6,7,6,9,6,8,7,11,6,7,5,8,5,7,7,15,9,10,8,29/2,10,15,15,25,13,14,10,29/2,8,9,8,14,8,9,7,21/2,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,19/2,7,10,10,17,9,10,7,21/2,6,8,7,13,7,8,6,10,6,8,8,16,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,22,12,12,8,11,7,9,8,13,7,8,6,9,6,9,9,15,8,9,6,19/2,6,8,7,14,8,9,7,12,8,12,12,22,12,12,9,14,8,10,9,14,8,9,8,13,9,12,12,22,12,12,10,31/2,10,13,12,22,13,15,13,22,15,23,23,43,22,22,15,45/2,13,16,14,23,12,13,10,33/2,10,14,13,24,12,12,8,25/2,8,10,9,15,8,9,8,25/2,8,12,12,25,13,14,10,27/2,8,10,8,16,9,10,8,13,9,12,11,21,11,11,8,12,8,10,9,17,10,11,10,33/2,11,16,16,27,14,14,10,29/2,9,11,9,16,9,9,7,23/2,8,10,10,16,9,9,7,21/2,6,8,7,13,8,9,8,25/2,8,12,12,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,8,15,9,10,9,31/2,11,16,16,26,14,14,10,31/2,9,10,8,15,8,9,7,10,7,9,8,13,7,8,6,8,5,7,6,10,6,6,5,15/2,6,8,7,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,3,9,5,5,4,9/2,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,6,6,13,7,7,5,7,4,4,3,5,3,3,3,9/2,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,9/2,3,4,4,11,6,7,5,15/2,5,6,5,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,16 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,9,11/2,6,5,9,13/2,10,19/2,16,9,9,6,9,5,6,5,9,5,6,5,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,11/2,8,8,14,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,17/2,10,9,15,8,9,7,10,7,9,17/2,15,8,8,6,8,5,7,6,10,11/2,6,5,8,6,8,8,16,17/2,9,6,9,11/2,7,11/2,10,6,6,5,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,7,5,6,6,11,6,6,5,7,9/2,6,5,9,11/2,6,6,10,7,10,10,17,9,9,7,10,6,6,5,10,11/2,6,5,6,9/2,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,6,3,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,6,7/2,4,3,4,3,4,7/2,6,4,4,7/2,6,4,6,6,11 -15,8,17/2,6,8,5,11/2,5,8,5,11/2,4,7,5,6,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,2,4,3,3,3,6,4,7/2,2,4,3,3,3,5,4,9/2,4,6,4,6,5,10,6,11/2,4,5,3,3,3,6,4,4,3,4,3,4,3,5,3,7/2,3,4,3,4,4,6,4,4,4,6,4,13/2,7,14,8,15/2,5,7,4,11/2,5,8,5,6,5,7,5,13/2,7,14,8,8,6,9,6,7,7,13,8,9,7,11,8,12,12,21,11,23/2,8,12,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,7,5,6,4,6,5,8,5,5,5,7,5,13/2,6,12,6,6,4,6,4,5,4,7,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,5,11/2,5,8,5,7,7,11,6,13/2,5,7,5,6,5,7,4,4,3,6,4,9/2,4,9,5,5,4,6,4,9/2,4,7,4,5,4,7,5,13/2,6,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,8,5,7,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,25/2,12,22,12,23/2,8,12,7,15/2,7,12,7,15/2,6,8,6,15/2,7,14,8,8,6,9,5,6,6,10,6,13/2,6,8,6,17/2,8,15,8,9,6,10,6,7,6,10,6,13/2,5,8,5,7,6,13,7,13/2,5,8,5,6,6,11,7,8,7,12,8,23/2,12,20,11,11,7,10,6,7,6,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,8,5,13/2,6,11,7,8,6,10,7,21/2,10,19,10,10,8,12,7,8,7,12,7,15/2,6,11,7,10,10,19,10,11,8,12,8,21/2,10,18,10,25/2,11,19,13,19,19,36,19,19,13,20,12,27/2,12,20,11,12,9,14,9,12,11,19,10,21/2,8,10,7,9,8,13,7,8,7,11,8,11,11,21,11,11,8,12,7,9,7,14,8,17/2,6,10,7,9,9,16,9,19/2,7,10,6,8,7,14,8,9,8,14,10,27/2,14,24,12,25/2,9,14,8,10,8,13,7,15/2,6,10,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,12,8,21/2,10,20,10,21/2,8,11,7,8,7,11,6,13/2,5,9,6,8,7,14,8,17/2,6,9,6,8,7,12,7,8,7,13,9,13,13,24,12,25/2,9,13,7,8,7,13,7,8,6,8,6,15/2,7,10,6,6,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,4,3,4,3,5,3,5/2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,7,4,4,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,5,3,5/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,3,4,4,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,4,3,4,3,7/2,4,5,3,4,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,4,9,5,5,4,6,4,4,4,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,8,6,8,8,15 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,5/2,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,6,4,5,5,8,5,5,9/2,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,9/2,6,4,6,5,8,5,5,9/2,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,9/2,6,4,6,5,9,5,6,9/2,7,5,6,6,10,6,6,5,7,5,7,7,12,7,8,7,11,8,12,12,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,13/2,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,7,10,19/2,18,10,10,15/2,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,11,18,10,10,7,10,13/2,8,7,12,7,8,7,11,8,11,10,19,10,10,7,11,13/2,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,13,15/2,9,8,13,9,12,13,23,12,12,9,13,8,9,8,12,7,8,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,4,5/2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,3/2,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,7/2,5,4,5,5,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,7,7,14 -27,14,14,10,16,9,11,9,31/2,8,9,7,10,6,8,8,17,9,9,7,10,6,7,6,10,6,7,5,8,6,9,9,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,13,7,8,6,8,5,6,6,21/2,6,7,5,8,5,7,7,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,9/2,3,3,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,3,3,5,3,3,3,6,4,4,3,4,3,4,4,15/2,4,5,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,9,16,9,9,6,8,5,6,6,19/2,6,6,4,6,4,6,6,10,6,6,5,7,5,6,6,19/2,6,7,6,11,8,11,11,23,12,12,8,12,8,10,8,29/2,8,10,8,12,8,12,11,25,13,14,11,17,10,13,12,43/2,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,8,11,6,7,6,11,6,7,5,8,6,9,9,16,9,9,7,10,6,8,8,29/2,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,7,11,8,11,11,19,10,11,8,11,7,9,9,16,9,9,7,11,7,10,10,18,10,11,9,14,9,13,12,22,13,15,13,23,16,23,22,39,20,20,13,19,11,14,12,20,11,11,8,13,9,12,11,24,13,13,9,14,8,10,10,35/2,10,11,9,15,10,14,14,27,14,14,10,15,9,12,10,18,10,10,7,11,7,10,10,20,11,12,9,14,9,11,10,18,11,13,11,18,13,19,19,35,18,17,12,17,10,12,10,18,10,10,8,13,9,12,12,22,12,13,10,15,9,11,10,18,10,12,10,17,12,17,17,35,18,18,13,20,12,15,13,23,13,14,11,18,12,17,17,34,18,19,15,24,15,19,18,67/2,19,23,19,34,23,33,33,64,33,33,23,34,19,23,20,35,19,21,16,25,16,22,20,34,17,17,12,18,11,14,13,47/2,13,15,12,20,13,19,19,36,19,19,13,20,12,14,12,45/2,12,14,10,16,11,15,14,28,15,16,11,17,10,13,12,23,13,15,13,22,15,23,23,44,23,23,16,24,14,16,14,47/2,12,13,10,16,10,14,14,25,13,14,10,15,9,12,11,41/2,12,14,11,18,12,18,18,36,19,19,13,18,10,12,11,19,10,11,8,13,9,12,12,26,14,15,11,17,11,14,12,22,13,15,13,23,16,23,22,43,22,22,15,21,12,15,12,43/2,12,12,9,13,9,12,11,18,10,10,7,11,7,8,8,14,8,8,7,11,7,10,10,19,10,9,6,9,6,7,6,9,5,5,4,5,4,5,5,7,4,5,4,6,4,4,4,15/2,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,5/2,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,6,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,2,2,4,3,3,3,11/2,4,4,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,5,8,5,5,4,5,4,5,5,10,5,5,3,4,3,4,4,11/2,3,3,3,4,3,5,5,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,26 -15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,7,13/2,12,13/2,7,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,10,11/2,6,4,6,4,5,9/2,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,5,9,5,6,4,7,5,6,6,11,6,6,5,8,5,7,7,13,8,9,8,13,9,13,13,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,11/2,7,6,10,6,6,9/2,7,9/2,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,11/2,7,6,10,6,7,6,10,7,10,10,20,10,10,15/2,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,9,14,9,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,13,11,20,11,12,9,14,9,12,11,19,10,10,7,10,13/2,8,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,9,6,9,8,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,25,13,13,9,14,8,9,8,14,15/2,8,6,10,6,8,8,14,8,8,6,9,11/2,7,7,12,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,11/2,7,7,15,8,9,7,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,7,9,15/2,12,7,7,5,8,5,7,7,10,6,6,9/2,6,4,5,5,8,5,5,4,7,9/2,6,6,11,6,5,4,5,7/2,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1/2,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,7/2,4,4,5,4,6,11/2,11,6,6,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,7/2,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,9/2,8,5,5,5,8,11/2,8,8,15 -18,10,19/2,7,10,6,7,6,11,6,13/2,5,7,5,13/2,6,12,6,13/2,5,6,4,9/2,4,7,4,5,4,6,4,6,6,9,5,5,4,4,3,4,4,6,4,4,3,4,3,9/2,5,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,11,6,6,4,5,4,9/2,4,5,3,7/2,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,5,3,7/2,2,5,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,6,4,7/2,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,13/2,6,10,6,6,4,6,4,9/2,4,7,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,4,4,7,4,11/2,5,8,6,15/2,8,15,8,8,6,8,5,7,6,10,6,13/2,6,8,6,8,8,16,9,10,7,11,7,10,9,14,8,19/2,8,14,10,29/2,14,26,14,27/2,10,14,8,19/2,8,14,8,9,7,11,7,17/2,8,15,8,17/2,6,8,5,6,6,9,6,13/2,5,8,5,7,7,13,7,8,6,8,5,11/2,5,8,4,9/2,4,6,4,6,6,10,6,6,5,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,15,8,17/2,6,8,5,6,5,8,5,5,4,6,4,5,5,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,7,5,8,8,14,8,15/2,6,8,5,6,6,11,6,13/2,5,8,6,15/2,8,13,7,15/2,6,10,6,8,8,15,9,21/2,9,16,11,15,15,26,14,27/2,9,14,8,19/2,8,14,8,8,6,9,6,17/2,8,15,8,17/2,6,9,6,15/2,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,15/2,7,12,7,7,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,24,12,12,8,12,7,17/2,8,12,7,15/2,6,9,6,17/2,8,15,8,17/2,6,10,6,8,7,12,7,17/2,7,11,8,23/2,12,23,12,25/2,9,13,8,19/2,8,16,9,10,8,13,8,23/2,12,23,12,27/2,10,16,10,13,12,22,13,31/2,13,22,15,22,22,43,22,22,15,22,13,15,13,23,13,14,11,17,11,14,13,23,12,12,8,12,8,10,9,16,9,21/2,8,14,9,13,13,24,13,27/2,10,14,8,10,9,16,9,19/2,7,11,7,10,10,18,10,10,8,12,8,19/2,9,16,9,21/2,9,15,10,31/2,16,31,16,16,11,16,9,11,10,16,9,19/2,8,12,8,10,10,17,9,19/2,7,10,6,17/2,8,14,8,9,7,12,8,25/2,12,24,12,25/2,8,12,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,21/2,9,16,11,31/2,15,29,15,29/2,10,15,9,21/2,9,15,8,8,6,9,6,17/2,8,12,7,7,5,7,4,11/2,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,4,3,4,3,7,4,4,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,13/2,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,7/2,4,7,4,7/2,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,9,5,5,4,6,4,9/2,4,7,4,4,3,5,4,9/2,4,8,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,17 -15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,11/2,10,11/2,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,9/2,5,7/2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,9/2,9,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,5/2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,11/2,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,9/2,6,7,13,7,7,5,7,9/2,6,5,8,5,5,5,7,5,7,7,14,8,8,6,9,6,8,15/2,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,8,5,5,5,7,5,7,7,13,7,8,11/2,7,9/2,5,5,7,4,4,7/2,5,4,5,5,9,5,6,4,6,4,5,9/2,8,9/2,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,9,5,6,4,7,5,6,13/2,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,22,12,12,8,12,7,8,7,11,13/2,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,15/2,11,11,20,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,11/2,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,17/2,14,17/2,11,10,18,21/2,12,11,18,12,18,18,35,18,18,25/2,18,11,13,11,19,11,12,9,14,9,12,11,19,10,10,7,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,15,8,9,7,10,13/2,8,8,14,8,9,8,13,9,13,13,26,14,14,19/2,14,8,9,8,14,8,8,13/2,10,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,10,10,20,10,10,7,10,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,15/2,9,8,12,7,7,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,9/2,7,5,7,13/2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,12,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,7/2,6,7/2,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,4,5,9/2,8,11/2,8,8,15 -25,13,14,10,29/2,8,10,8,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,10,6,6,5,8,6,9,9,13,7,8,6,15/2,5,6,6,8,5,6,5,7,5,7,6,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,15/2,5,6,5,9,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,5,3,3,3,5,3,4,4,4,3,3,3,11/2,4,6,6,10,5,5,4,5,3,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,15/2,5,7,7,12,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,6,5,17/2,6,9,9,14,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,6,10,6,6,4,13/2,4,6,6,10,6,7,6,21/2,8,12,12,23,12,12,8,12,7,9,8,13,8,9,8,25/2,8,12,12,24,13,13,10,31/2,10,13,12,22,12,14,12,21,14,21,21,39,20,20,14,41/2,12,15,13,21,11,12,10,31/2,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,23/2,8,10,10,19,10,10,8,23/2,7,8,7,12,7,7,5,8,6,8,8,15,8,8,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,13,9,13,8,9,8,12,7,7,6,9,6,8,8,16,8,8,6,19/2,6,8,7,13,7,8,6,21/2,7,10,11,21,11,11,8,23/2,7,9,8,16,9,9,7,11,8,11,11,20,11,12,9,14,9,12,11,20,12,14,12,43/2,14,21,21,40,20,20,14,39/2,12,14,12,19,10,11,8,27/2,9,12,12,21,11,12,8,25/2,8,10,9,16,9,11,9,29/2,10,14,14,24,13,14,10,29/2,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,27/2,8,10,9,18,10,12,10,37/2,12,18,18,35,18,18,12,37/2,10,12,10,19,10,11,9,14,9,12,12,22,12,13,9,14,9,11,10,17,10,11,10,33/2,11,16,16,33,17,18,12,18,11,14,12,23,13,14,11,37/2,12,17,17,34,18,19,14,47/2,15,20,18,32,18,21,18,32,22,32,32,62,32,32,22,65/2,19,23,20,33,18,19,15,24,15,20,19,34,18,18,13,39/2,12,16,14,24,14,16,13,43/2,14,19,19,36,19,19,14,41/2,12,14,12,22,12,13,10,15,10,14,14,27,14,15,11,35/2,11,14,13,24,14,17,14,24,16,23,23,46,24,24,16,49/2,14,17,14,24,13,14,11,17,11,15,14,26,14,14,10,29/2,9,12,11,20,11,13,10,17,12,17,17,35,18,18,12,35/2,10,12,10,20,11,11,8,27/2,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,23,15,22,22,43,22,22,15,43/2,12,15,13,21,11,12,9,27/2,9,12,11,18,10,10,7,21/2,6,8,7,13,8,9,8,25/2,8,12,11,19,10,10,7,21/2,6,8,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,4,4,8,5,5,4,6,4,5,5,10,6,6,4,13/2,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,9/2,3,4,4,4,3,3,3,9/2,3,4,5,8,5,5,3,4,3,3,3,6,4,4,3,3,2,2,2,5,3,3,3,9/2,3,4,3,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,7/2,2,3,3,7,4,4,3,9/2,2,2,2,5,3,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,7/2,3,4,3,6,4,4,4,11/2,4,5,5,7,4,5,4,11/2,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,9,20,10,10,7,9,6,7,6,10,6,6,4,13/2,4,6,5,8,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,12,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,6,12,7,8,6,10,7,9,8,12,7,8,7,25/2,9,14,14,26 -17,9,10,7,10,6,7,6,11,6,7,11/2,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,9/2,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,6,6,9,11/2,6,11/2,8,6,8,8,16,9,9,7,10,7,9,8,15,9,10,9,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,8,5,6,6,9,11/2,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,7,5,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,7,15/2,15,8,8,6,8,5,6,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,10,6,8,7,11,6,7,5,8,11/2,7,7,12,7,7,6,9,6,7,6,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,22,12,12,17/2,13,8,10,8,15,9,10,8,12,8,12,12,23,12,13,10,16,10,13,12,21,12,14,12,22,15,22,22,42,22,22,15,22,13,15,13,22,12,13,10,16,10,14,13,23,12,13,9,14,17/2,11,10,16,19/2,11,9,14,19/2,13,13,24,13,13,9,14,8,9,8,15,8,9,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,12,10,16,11,16,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,17,9,10,7,11,7,10,9,16,9,11,9,16,21/2,15,15,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,11/2,6,5,8,6,8,8,13,7,7,5,7,9/2,6,9/2,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,3,2,2,2,4,3,3,7/2,6,7/2,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,9,5,6,5,9,7,10,10,18 -25,13,14,10,15,9,10,9,16,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,11/2,4,7,5,7,6,12,7,7,5,7,4,11/2,5,8,5,6,5,8,6,15/2,8,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,8,5,5,4,6,4,9/2,4,6,4,9/2,3,4,3,4,4,9,5,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,5,4,5,3,4,4,7,4,4,3,4,3,7/2,4,7,4,4,3,5,4,9/2,4,8,5,11/2,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,13/2,5,8,5,6,5,10,6,6,5,9,6,17/2,8,14,8,8,6,9,6,13/2,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,11/2,5,9,6,13/2,6,10,7,11,11,21,11,11,8,11,7,9,8,13,8,9,8,12,8,12,12,23,12,27/2,10,15,10,25/2,12,23,13,15,13,21,14,43/2,22,40,21,21,14,21,12,29/2,12,21,12,13,10,16,10,27/2,12,22,12,12,9,12,7,17/2,8,13,8,17/2,7,11,7,10,10,18,10,10,7,10,6,7,6,12,7,8,6,9,6,8,8,14,8,8,6,9,6,15/2,7,12,7,9,7,12,8,12,12,23,12,25/2,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,17/2,7,12,8,11,11,22,12,12,8,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,27/2,12,21,14,41/2,20,40,20,41/2,14,20,12,27/2,12,20,11,11,9,14,9,12,11,21,11,12,9,14,8,21/2,9,17,10,21/2,8,14,10,27/2,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,18,10,11,8,12,8,19/2,9,17,10,12,10,18,12,35/2,18,34,17,17,12,18,10,12,10,19,10,23/2,9,14,9,13,13,24,13,27/2,10,15,9,11,10,18,10,23/2,10,17,12,17,17,32,17,35/2,12,19,11,27/2,12,22,12,27/2,11,18,12,17,17,33,18,19,14,23,14,37/2,17,31,18,43/2,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,39/2,15,24,15,20,19,34,18,19,13,20,12,31/2,14,24,14,31/2,12,21,14,39/2,19,36,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,29/2,14,24,14,17,14,23,16,23,23,46,24,47/2,16,24,14,17,14,25,14,15,11,17,11,15,14,26,14,14,10,15,9,12,11,20,11,25/2,10,18,12,35/2,18,35,18,18,12,18,10,12,11,19,10,23/2,9,14,9,13,13,25,13,27/2,10,16,10,14,13,23,13,31/2,13,23,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,23/2,11,19,10,21/2,8,12,7,17/2,8,14,8,9,7,12,8,23/2,11,20,10,10,7,10,6,15/2,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,7/2,4,5,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,6,4,7/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,5,5,9,5,11/2,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,11,8,21/2,10,19,10,10,7,10,6,7,6,10,6,11/2,4,6,4,11/2,5,8,5,5,4,5,3,7/2,3,6,4,4,3,6,4,11/2,6,12,7,7,5,7,4,11/2,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,17/2,8,14,10,27/2,14,26 -25,13,14,10,15,9,10,9,16,9,10,7,11,7,10,9,16,8,8,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,9/2,7,5,7,13/2,12,7,7,5,7,9/2,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,9,11/2,6,11/2,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,11,7,9,8,14,8,9,8,12,8,12,12,23,12,13,10,15,10,13,12,23,13,15,13,21,29/2,22,22,41,21,21,14,21,12,14,12,21,12,13,10,16,10,13,12,22,12,12,9,12,7,8,15/2,13,15/2,8,7,11,7,10,10,18,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,15/2,8,7,12,8,11,11,22,12,12,17/2,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,40,21,21,14,20,12,14,12,20,11,12,9,14,9,12,11,21,11,12,9,14,8,10,9,17,10,11,9,14,10,14,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,19,10,11,8,12,8,10,9,17,10,12,10,18,12,18,17,33,17,17,12,17,10,12,11,19,21/2,12,9,15,10,13,13,24,13,14,10,15,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,19,11,14,12,21,12,13,11,18,12,17,17,33,18,19,14,22,14,18,17,31,18,22,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,19,29/2,23,29/2,19,18,34,18,19,13,20,12,15,14,24,14,16,25/2,21,14,20,19,37,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,14,27/2,24,14,16,14,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,11,18,11,15,14,26,14,14,10,15,9,12,11,20,11,12,10,18,12,18,18,34,18,18,12,18,10,12,11,19,21/2,12,9,14,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,22,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,12,11,20,21/2,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,15/2,11,13/2,8,6,10,6,6,9/2,7,4,5,5,8,9/2,5,4,6,4,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,9,8,14,10,14,14,26 -50,26,27,19,28,16,20,17,30,16,18,13,21,13,18,17,31,16,16,11,16,10,12,10,18,10,11,9,16,10,14,14,27,14,15,10,15,9,11,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,10,9,16,9,11,9,16,10,14,14,27,14,14,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,13,7,7,5,8,5,7,7,12,7,7,5,8,6,8,8,14,8,9,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,12,8,11,11,21,11,12,9,14,9,11,10,18,10,12,10,16,11,15,15,28,15,15,11,17,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,8,10,10,18,11,13,11,20,14,21,21,41,21,21,15,22,13,17,15,27,15,17,14,24,16,23,23,44,23,25,19,30,19,25,23,44,25,29,24,42,28,42,42,82,41,41,27,40,23,28,23,41,22,24,18,30,19,25,23,44,23,23,16,24,14,16,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,17,11,16,15,28,15,15,11,18,11,14,13,23,13,15,13,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,12,20,13,18,17,32,17,17,12,18,11,15,14,25,14,16,13,22,15,21,21,42,22,23,16,25,15,18,16,28,15,17,13,22,15,22,21,41,22,23,17,27,17,22,21,39,22,26,22,39,27,40,40,80,41,41,27,40,22,26,22,39,21,23,17,28,17,23,22,42,22,23,17,26,16,20,18,32,18,21,17,28,18,26,25,48,25,26,18,27,16,20,17,31,17,18,14,24,15,20,19,37,20,21,15,24,15,19,17,32,19,23,19,34,23,34,33,65,33,33,22,33,19,24,21,37,20,22,17,29,19,26,25,47,25,26,18,28,17,21,19,34,19,22,19,33,22,32,32,62,32,33,23,36,21,26,23,41,22,25,20,34,23,33,33,64,34,36,27,43,26,35,33,62,35,42,35,62,42,62,62,123,62,62,42,62,35,43,36,65,34,37,28,45,28,37,35,67,35,36,26,40,23,29,26,48,26,30,24,41,27,38,37,73,37,38,26,38,22,26,22,40,22,24,19,31,20,28,27,52,27,29,21,34,21,28,26,48,27,31,26,46,31,45,45,89,45,46,31,47,27,33,28,49,26,28,21,35,22,30,28,52,27,27,19,29,18,23,21,38,21,24,20,34,23,34,34,67,34,35,24,36,20,24,20,36,20,22,17,27,18,26,25,48,25,26,19,31,19,26,24,46,26,30,25,43,29,43,43,85,43,43,29,43,24,29,24,43,23,24,18,28,17,22,21,39,20,21,15,23,14,17,15,26,15,17,14,24,16,22,21,41,21,21,14,21,12,14,11,19,10,11,8,13,8,9,8,15,8,9,7,10,6,8,7,11,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,10,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,8,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,10,10,18,11,13,11,20,13,19,19,37,19,20,14,20,12,14,12,20,11,11,8,12,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,13,8,11,10,17,10,11,9,14,9,12,12,22,12,14,11,17,11,15,14,26,15,17,15,26,18,26,26,50 +50,26,26,18,26,15,18,16,29,16,17,13,20,13,17,16,30,16,16,11,15,9,12,10,18,10,11,8,13,9,12,12,24,12,12,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,7,12,7,9,8,14,9,13,13,26,14,15,11,18,12,16,15,29,17,20,17,29,19,28,28,55,28,29,20,29,16,19,16,27,15,16,12,18,12,16,15,29,15,14,10,14,9,11,9,16,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,7,7,12,7,7,5,8,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,11,10,18,10,10,8,12,8,12,11,21,11,12,9,13,8,10,9,17,10,12,10,18,12,17,17,33,17,17,12,18,11,13,11,20,11,13,10,16,11,15,15,29,16,17,13,20,13,18,17,32,18,21,18,32,22,33,33,66,33,33,23,34,19,23,19,34,18,20,16,27,17,23,22,43,23,24,17,26,15,19,17,31,17,20,16,28,19,27,27,52,27,27,19,28,16,19,16,28,15,17,13,21,14,19,18,33,18,19,14,23,14,18,17,32,18,21,17,30,20,30,30,59,30,31,21,31,18,21,18,31,17,18,13,21,13,17,16,29,15,15,10,15,9,11,10,17,10,11,9,16,11,15,15,28,15,15,10,14,9,11,9,16,9,10,8,14,9,13,12,23,12,13,10,16,10,14,14,26,15,19,16,29,20,29,29,56,29,29,20,30,17,21,17,30,17,19,15,24,15,21,20,39,20,21,14,21,13,16,14,26,15,17,14,24,16,23,23,44,23,23,16,24,14,18,16,30,17,19,16,28,19,27,26,51,27,28,21,33,21,28,27,51,29,34,28,50,34,50,50,98,50,50,34,51,29,36,31,56,30,33,25,40,26,36,34,66,35,37,27,42,25,33,30,57,32,37,31,55,37,54,54,107,54,55,38,59,34,42,37,68,37,42,33,57,37,53,52,102,53,57,42,69,42,57,53,102,57,68,56,100,67,100,100,199,100,100,67,101,57,68,57,102,53,57,43,70,43,58,54,104,53,55,39,60,35,44,39,73,40,46,36,62,40,58,56,110,56,56,39,59,34,42,36,64,34,38,29,47,30,42,40,76,39,41,29,46,27,35,32,59,33,38,31,54,36,54,54,106,54,54,36,54,30,36,30,52,28,30,23,37,23,31,29,55,28,29,21,32,19,25,23,42,23,26,21,37,25,36,35,68,35,35,24,36,21,26,23,41,22,24,19,32,20,28,26,50,26,27,19,30,18,24,23,43,24,28,23,40,26,38,37,72,37,37,25,38,22,26,22,39,21,23,17,28,17,23,21,40,21,21,15,22,13,17,15,27,15,17,14,23,15,21,20,39,20,21,14,21,13,16,15,27,15,17,14,23,15,21,20,39,20,21,16,25,16,21,20,37,21,25,21,38,26,39,39,76,39,39,26,39,23,28,24,42,23,25,19,32,21,30,29,55,29,30,22,34,20,26,24,44,24,28,23,39,26,37,37,72,37,37,26,40,23,28,25,45,24,27,21,36,23,33,32,62,32,34,25,41,25,34,32,60,34,41,34,61,41,61,62,123,62,62,42,63,35,42,35,63,33,35,26,43,27,37,34,65,33,34,24,37,22,27,24,43,24,27,21,36,24,34,33,65,33,34,24,36,21,25,21,38,21,23,18,29,18,25,24,46,24,26,19,29,18,23,21,38,22,26,21,37,25,37,37,73,37,36,24,36,21,25,21,38,20,22,17,29,18,25,24,46,24,24,17,27,16,21,19,34,19,21,17,28,19,27,26,51,26,27,18,27,16,19,16,29,16,17,13,21,14,19,18,35,19,20,14,22,14,18,17,31,18,21,18,31,22,33,33,65,33,32,22,32,18,21,18,32,17,19,15,24,15,21,19,36,19,19,13,19,11,14,13,23,13,15,12,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,19,10,11,8,12,7,9,9,16,9,10,9,15,10,15,15,28,15,16,12,20,13,17,15,28,16,19,16,27,18,26,26,50 +25,13,14,10,13,8,9,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,14,14,28,14,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,5,8,5,6,5,8,5,5,4,7,4,6,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,10,9,16,10,11,10,16,11,17,17,34,17,17,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,15,11,16,9,11,9,16,9,10,8,13,8,11,11,20,11,11,8,11,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,26,14,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,16,17,13,21,13,18,17,34,18,19,14,21,13,17,16,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,29,19,27,26,51,27,29,22,35,22,29,27,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,27,29,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,30,17,21,18,32,17,19,15,24,15,21,20,38,20,21,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,19,13,18,18,34,18,18,13,18,11,13,12,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,19,13,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,11,7,8,8,14,8,9,8,12,8,11,11,20,11,11,8,13,8,11,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,28,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,19,14,21,12,15,13,23,13,14,11,18,12,17,16,32,17,18,13,21,13,18,17,30,17,21,18,31,21,31,31,62,32,32,22,32,18,21,18,32,17,18,14,22,14,19,18,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,17,33,17,18,12,19,11,13,11,19,11,12,9,15,10,13,13,24,13,14,10,15,9,12,11,19,11,14,11,19,13,19,19,37,19,19,13,19,11,13,11,20,11,12,9,15,10,13,13,23,12,12,9,14,8,11,10,17,10,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,11,8,10,10,18,10,10,7,12,8,10,9,16,10,11,10,16,11,17,17,33,17,17,12,17,10,11,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +25,13,14,10,13,8,9,8,15,8,8,6,10,7,9,9,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,28,14,14,10,16,9,11,9,14,8,8,6,10,7,9,9,15,8,8,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,8,6,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,31,16,16,11,16,10,12,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,16,11,16,10,12,10,16,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,25,13,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,15,16,12,21,13,18,17,34,18,19,14,21,13,17,15,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,28,19,27,26,51,27,28,21,35,22,30,28,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,28,30,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,29,17,21,18,32,17,18,14,24,15,21,20,38,20,20,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,18,12,18,18,34,18,18,13,18,11,13,11,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,20,14,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,11,7,8,8,15,9,10,8,12,8,11,11,20,11,12,9,13,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,29,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,20,14,21,12,15,13,24,13,14,11,18,12,17,16,32,17,18,14,21,13,18,17,30,17,20,17,31,21,31,31,61,31,32,22,32,18,21,18,31,17,18,14,22,14,18,17,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,18,33,17,18,12,19,11,13,11,19,11,12,9,15,10,14,13,24,13,14,10,15,9,12,11,19,11,14,12,19,13,19,19,38,20,20,13,19,11,14,12,20,11,12,9,15,10,14,13,23,12,12,9,14,8,10,9,17,10,12,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,12,8,10,9,17,10,12,10,16,11,17,17,33,17,17,12,17,10,12,10,17,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,9,13,13,25 +17,9,10,7,9,6,7,6,10,6,6,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,6,9,6,6,5,7,5,7,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,11,6,8,6,11,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,20,10,11,8,11,7,8,7,11,6,7,6,9,6,8,7,14,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,17,33,17,17,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,10,14,9,12,10,19,11,13,11,19,13,19,19,36,19,19,14,20,12,15,13,24,13,15,12,19,13,18,18,34,18,19,14,24,15,20,19,34,20,23,20,35,23,34,34,67,34,34,23,34,20,23,20,35,19,20,15,24,15,20,19,36,18,19,14,20,12,15,14,25,14,16,13,22,14,20,20,37,19,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,14,10,16,10,12,11,20,12,13,11,19,13,19,18,36,19,19,13,18,11,13,11,17,10,11,8,13,8,11,10,19,10,10,8,11,7,9,8,15,8,10,8,12,8,12,12,23,12,12,9,12,8,9,8,14,8,9,7,11,7,9,9,18,10,10,7,11,7,8,8,15,8,10,8,14,10,14,13,25,13,13,9,14,8,10,8,13,8,8,6,10,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,7,13,8,9,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,10,20,10,11,8,12,8,10,8,15,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,16,9,10,8,12,8,12,11,21,12,12,10,15,9,12,11,20,12,14,12,21,14,21,21,41,21,22,15,22,12,14,12,21,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,8,9,8,12,8,12,12,22,12,12,8,13,8,9,8,13,8,8,6,10,7,9,9,17,9,9,7,10,6,8,8,13,8,9,8,13,9,13,13,26,14,14,9,13,8,10,8,14,8,9,7,10,7,10,9,16,9,9,6,9,6,7,6,12,7,8,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,7,5,8,5,7,6,12,7,8,7,11,8,12,12,22,12,12,8,12,7,9,7,12,7,8,6,8,6,7,7,13,7,7,5,7,4,6,5,8,5,6,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,4,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,6,6,10,6,6,6,10,7,9,9,17 +26,13,13,9,14,8,10,9,15,8,8,6,9,6,9,8,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,7,5,7,7,13,7,7,5,8,6,8,8,14,8,10,9,15,10,14,14,28,15,15,11,16,9,10,8,13,8,9,7,11,7,9,9,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,12,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,16,11,17,17,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,12,21,11,11,8,12,7,9,8,17,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,17,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,13,7,6,4,6,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,8,6,8,7,14,8,10,9,15,10,15,15,29,15,16,11,16,9,11,10,15,8,9,7,12,8,10,10,20,11,11,8,12,7,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,25,13,14,10,16,10,14,13,25,14,17,15,26,17,25,25,49,25,25,17,26,15,18,15,29,16,17,13,21,13,18,17,34,18,18,13,21,13,17,15,28,16,19,16,28,19,29,29,53,27,28,20,30,18,22,19,35,19,21,17,28,19,27,26,50,27,29,22,35,22,29,27,51,29,34,29,52,35,51,50,100,51,51,34,51,29,35,29,53,28,30,22,36,23,31,29,53,27,28,20,30,18,22,20,38,21,23,19,32,21,30,29,55,28,28,19,29,17,20,17,32,17,18,14,22,14,19,19,38,20,20,15,23,14,17,16,30,17,20,16,28,19,28,27,54,28,28,19,27,15,18,15,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,11,18,13,19,19,33,17,17,12,18,11,13,11,21,11,12,9,15,10,14,13,26,14,14,10,16,10,13,12,22,12,14,12,20,13,19,19,36,19,19,13,20,11,13,11,19,10,11,9,14,9,11,10,22,11,11,8,12,7,8,7,14,8,9,7,12,8,11,11,21,11,11,8,12,7,9,8,16,9,9,7,12,8,12,11,20,11,11,8,12,8,11,10,18,11,13,11,20,13,19,19,37,19,19,13,20,12,14,12,23,13,14,11,17,11,15,14,29,15,15,11,17,11,14,12,21,12,14,12,20,14,20,19,36,19,19,13,20,12,15,13,24,13,14,11,18,12,17,16,31,17,18,14,22,13,17,16,29,17,20,17,31,21,31,31,61,31,31,21,32,18,22,18,30,16,18,14,22,14,19,18,33,17,18,13,19,12,15,13,22,12,14,11,18,12,18,18,33,17,18,12,18,11,13,11,20,11,12,9,14,9,12,12,25,13,13,10,15,9,12,11,20,12,14,12,20,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,13,24,13,13,9,13,8,10,9,18,10,12,9,15,10,13,13,27,14,14,10,14,8,9,8,16,9,10,8,12,8,10,10,17,9,9,7,11,7,9,8,17,10,12,10,16,11,16,17,31,16,17,12,18,10,12,10,18,10,10,8,12,8,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,8,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,7,4,5,5,10,6,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,6,9,6,9,9,17,9,10,7,10,6,7,6,9,5,6,4,7,5,6,6,11,6,7,5,7,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,9,9,14,8,8,6,9,6,8,8,15,8,10,9,15,10,14,14,28,15,15,10,15,9,10,9,16,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,12,10,16,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,29,20,29,28,56,29,29,20,29,17,20,17,30,16,17,13,21,13,18,17,30,16,16,12,17,10,13,12,21,12,13,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,10,8,13,8,11,11,21,11,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,15,9,10,9,15,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,12,7,8,7,11,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,13,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,8,7,11,7,10,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,8,11,7,9,8,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15 +18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,5,4,5,5,9,5,6,4,6,4,5,5,9,6,7,6,10,7,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,6,4,6,6,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,8,7,10,7,11,11,20,11,12,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,6,5,8,6,9,9,14,8,8,6,9,6,7,6,10,6,7,6,10,7,11,11,17,9,10,8,11,7,10,10,18,10,12,10,18,12,17,17,34,18,18,12,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,15,9,11,10,19,11,14,12,19,13,19,19,36,19,19,13,20,12,14,13,24,13,15,12,20,13,18,18,33,18,20,15,23,15,20,18,35,20,24,20,35,24,35,34,67,34,34,23,35,20,24,20,35,19,20,15,25,16,21,20,36,19,20,14,21,12,15,14,25,14,16,13,22,14,20,19,37,19,19,13,19,11,13,12,21,11,12,9,15,10,13,12,24,13,14,10,15,9,12,11,21,12,14,11,19,13,18,18,35,18,18,12,18,10,12,10,18,10,10,8,12,8,10,10,20,10,10,8,12,8,10,9,14,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,13,9,14,14,24,13,14,9,14,8,10,8,13,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,13,8,9,8,14,10,14,13,26,14,14,9,13,8,9,8,15,9,10,8,11,8,11,10,19,10,10,8,12,7,9,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,10,9,17,9,10,8,13,8,11,11,21,11,12,9,15,9,12,11,20,12,14,12,21,14,21,21,42,21,21,15,21,12,14,12,20,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,9,10,8,14,9,12,12,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,17,9,9,7,11,7,8,7,13,8,9,8,13,9,12,13,25,13,14,10,14,8,10,8,15,8,8,6,11,7,9,9,17,9,10,7,9,6,8,7,12,7,8,6,10,7,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,11,20,11,11,8,11,7,8,7,12,7,7,5,8,5,6,6,13,7,8,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,3,3,4,4,4,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,10,7,10,10,18 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,8,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,4,7,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,15,8,9,7,10,6,9,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,8,12,8,11,10,18,10,10,8,12,8,9,9,16,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,13,10,17,11,15,15,27,15,16,12,20,13,17,16,29,17,20,17,29,20,29,29,56,28,28,19,29,17,20,17,29,16,17,13,21,13,18,17,31,16,17,12,18,11,13,12,21,12,14,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,17,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,6,7,7,12,7,8,7,11,8,12,12,21,11,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,11,7,8,7,12,8,12,11,22,12,12,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,9,7,11,7,9,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,17,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,11,7,8,8,13,8,9,7,12,8,11,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,7,10,11,21,11,11,8,12,7,9,7,13,7,7,6,9,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,7,7,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,11,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,15 +27,14,13,9,13,8,9,8,15,8,9,6,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,4,7,7,11,6,6,5,8,6,8,8,14,8,9,8,14,10,15,15,25,13,14,10,14,8,10,8,14,8,9,7,11,7,9,9,15,8,8,5,6,4,5,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,15,8,9,6,9,6,7,6,10,6,6,5,9,6,7,7,11,6,7,6,9,6,7,6,11,6,7,6,9,6,9,10,19,10,10,8,12,7,8,7,12,7,7,6,10,7,10,10,16,9,9,7,12,8,10,9,16,9,11,10,17,12,17,17,31,16,16,11,16,9,11,10,17,9,10,8,13,9,12,11,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,14,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,9,17,9,10,8,12,7,9,9,16,9,11,9,16,11,15,15,32,16,16,11,17,10,12,10,18,10,11,8,13,8,11,10,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,7,11,6,7,6,9,6,8,8,14,8,10,9,15,10,15,15,32,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,17,9,9,7,11,7,9,8,13,8,9,8,13,9,13,13,21,11,11,8,13,8,10,9,15,9,11,9,16,11,16,15,26,14,15,11,18,11,15,14,27,15,18,15,25,17,24,24,50,25,25,17,26,15,18,16,28,15,17,13,22,14,19,18,32,17,18,13,21,13,16,15,28,16,20,17,29,20,29,29,53,27,28,20,30,17,21,19,34,19,22,18,30,20,28,27,48,25,27,21,34,21,29,27,52,29,34,29,51,34,51,51,100,50,50,34,51,29,34,29,52,28,30,23,37,23,32,30,55,28,29,21,32,19,23,21,38,21,24,19,32,21,29,29,55,28,29,20,30,17,21,18,32,17,19,14,23,14,19,18,34,18,20,15,23,14,18,16,30,17,20,17,29,19,28,27,51,26,26,18,26,15,17,15,26,14,15,11,18,12,16,15,30,16,17,12,18,11,14,12,22,13,15,12,21,14,20,19,33,17,18,13,19,11,14,12,21,11,12,9,14,9,12,12,25,13,14,10,16,10,12,11,20,12,14,12,20,14,20,20,37,19,18,12,18,10,12,10,18,10,10,8,12,8,11,10,22,12,12,9,13,8,10,8,14,8,9,7,12,8,12,11,23,12,12,9,14,9,11,9,16,9,10,8,13,9,12,11,23,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,38,19,19,13,20,12,14,12,22,12,13,11,18,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,13,18,18,37,19,20,14,22,13,15,13,24,13,15,12,19,12,17,16,31,16,17,13,21,13,18,16,30,17,20,17,30,20,30,30,62,31,31,21,30,17,21,17,30,16,17,12,19,12,16,16,33,17,18,13,19,11,14,13,24,13,14,11,19,13,18,18,34,18,18,12,18,10,12,11,19,10,11,9,14,9,12,11,24,13,13,9,14,9,11,10,18,10,12,10,17,12,18,18,36,19,19,13,19,11,14,12,22,12,13,10,16,10,14,13,25,13,13,9,14,9,11,10,17,9,10,8,13,9,12,12,27,14,14,10,15,9,11,9,16,9,9,7,12,8,10,9,18,10,10,7,11,7,9,9,16,9,11,9,15,11,16,16,29,15,15,10,15,9,11,10,17,9,10,8,12,7,9,9,19,10,10,7,10,6,8,8,14,8,9,7,10,7,10,10,18,9,9,6,9,6,7,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,26 +14,8,7,5,7,4,5,5,8,5,5,4,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,4,5,4,5,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,11,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,12,10,16,11,15,14,25,14,15,11,18,11,15,15,27,16,18,15,27,18,27,27,52,26,26,18,27,15,18,16,27,15,16,12,19,12,17,16,29,15,16,11,17,10,12,11,20,11,13,10,17,11,16,15,29,15,15,11,16,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,12,8,10,9,16,9,11,9,15,10,15,14,27,14,14,10,14,8,9,8,14,8,9,6,10,7,9,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,10,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,16,9,11,9,16,11,16,16,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,9,17,9,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14 +15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,6,8,9,15,8,8,6,8,5,6,5,8,5,6,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,3,4,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,7,5,6,6,8,5,6,5,9,6,8,8,18,10,10,7,10,6,8,6,11,6,7,5,8,5,7,6,10,6,6,5,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,19,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,8,8,12,7,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,10,9,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,19,11,12,10,17,11,16,15,27,15,16,12,19,12,16,16,29,17,20,16,29,19,28,29,55,28,28,19,28,16,20,17,29,15,16,13,20,13,18,17,31,16,17,12,18,11,13,12,22,12,14,11,17,12,17,16,31,16,16,11,17,10,12,10,18,10,10,8,12,8,10,10,18,10,10,8,13,8,10,9,16,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,16,9,10,7,11,7,10,9,17,9,10,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,22,12,12,8,10,6,8,7,11,6,6,5,8,5,7,6,13,7,8,6,8,5,5,5,9,5,6,5,7,5,8,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,8,7,13,7,8,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,17,11,16,17,35,18,17,12,17,10,11,10,16,9,10,7,10,7,9,9,18,10,10,7,11,7,9,8,13,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,10,7,10,11,20,11,11,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,14 +12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,7,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,5,8,6,8,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,6,3,3,3,3,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,13,8,9,8,15,8,9,8,13,8,12,11,20,11,12,9,14,9,12,12,21,12,15,12,21,14,21,21,41,21,21,14,21,12,15,12,21,11,12,10,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,5,9,5,6,5,9,6,9,8,14,7,7,5,8,5,5,5,9,5,6,4,7,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,26,13,13,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,7,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,8,5,8,5,5,5,8,5,5,4,5,4,5,4,8,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10 +19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,5,4,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,4,4,3,3,3,4,3,4,4,8,5,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,12,8,11,11,22,11,11,8,11,7,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,9,9,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,7,5,7,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,8,14,8,8,6,9,6,8,8,12,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,8,5,5,4,5,3,4,3,7,4,4,4,6,4,6,5,9,5,6,5,8,5,7,6,12,7,9,7,12,8,12,11,22,12,12,8,12,7,8,7,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,5,11,6,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,17,17,32,17,17,12,18,11,13,11,18,10,11,8,13,9,13,13,21,11,12,9,14,9,11,11,20,11,13,11,18,12,18,19,36,19,19,13,20,12,15,13,24,13,15,12,20,13,19,18,32,17,19,14,23,15,20,19,34,19,23,19,33,23,34,34,66,33,33,23,34,19,23,19,34,18,20,15,24,15,20,19,36,19,19,14,21,13,16,14,25,14,16,12,20,14,20,19,35,18,18,12,18,11,13,11,20,11,12,9,14,9,12,11,21,11,12,9,14,9,12,11,18,10,12,10,18,12,17,17,34,18,18,12,18,11,13,11,19,10,11,8,12,8,11,10,19,10,10,8,12,7,8,7,14,8,10,8,14,9,13,13,22,12,12,8,12,7,9,7,14,8,8,6,10,7,9,8,16,9,9,7,11,7,8,7,14,8,10,8,14,10,14,13,26,14,14,9,13,8,9,8,12,7,8,6,9,6,9,8,16,8,8,6,8,5,6,5,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,16,9,9,7,10,6,7,7,13,7,8,7,12,8,12,12,26,14,14,10,14,9,11,9,16,9,10,7,11,8,11,11,18,10,11,8,12,7,9,9,16,9,9,7,12,8,11,11,24,13,13,9,14,9,11,10,17,10,11,8,13,9,12,11,20,11,12,9,14,9,12,11,19,11,13,11,18,13,19,19,42,21,21,14,20,12,14,12,19,10,10,8,12,8,11,11,22,12,12,9,13,8,11,10,16,9,10,8,14,10,14,13,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,9,8,15,8,9,7,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,6,10,7,10,9,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,14,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,4,3,2,2,2,2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16 +12,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,5,3,4,3,4,2,3,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,23,12,12,8,13,8,10,8,15,8,9,8,12,8,12,11,20,11,12,9,15,10,13,12,21,12,15,12,20,14,21,21,41,21,21,14,21,12,15,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,12,6,7,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,8,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,12,12,26,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,4,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,4,6,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,7,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10 +17,9,8,6,9,5,6,5,9,5,5,4,6,4,4,4,9,5,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,4,4,2,2,2,4,3,4,4,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,7,11,6,6,4,6,4,6,5,8,5,5,4,8,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,9,6,8,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,7,4,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,6,5,10,6,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,31,16,16,11,17,10,13,11,19,11,12,10,16,11,15,15,27,15,16,12,20,13,17,16,29,17,20,16,27,19,28,28,55,28,28,19,28,16,20,17,29,15,16,12,21,13,18,17,31,16,16,12,18,11,14,13,22,12,14,11,19,13,18,17,29,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,10,9,15,10,14,14,29,15,14,10,15,9,10,9,15,8,8,6,11,7,10,9,15,8,8,6,10,6,7,6,12,7,8,7,12,8,11,11,20,11,11,7,10,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,8,5,7,6,11,7,8,7,12,8,12,11,21,11,11,8,11,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,9,5,6,6,12,7,8,7,10,7,10,10,22,12,12,8,12,7,9,8,14,8,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,11,7,9,8,13,7,8,7,10,7,10,9,17,9,10,8,12,8,10,9,16,9,11,9,15,11,16,16,36,18,18,12,18,10,12,10,17,9,10,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,11,8,12,12,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,10,7,10,10,21,11,10,7,10,6,8,7,12,7,7,6,10,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,11,6,6,5,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +16,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,5,6,5,8,6,9,9,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,9,6,10,6,8,7,14,8,9,8,13,9,13,13,23,12,13,9,13,8,9,8,14,8,8,6,10,7,10,10,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,29,15,15,11,16,10,12,10,18,10,11,9,15,10,14,14,26,14,15,11,18,12,16,15,27,16,18,15,26,18,26,26,51,26,26,18,27,16,19,16,27,15,16,12,19,12,16,16,29,15,16,11,17,10,13,12,21,12,13,11,18,12,17,16,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,16,9,9,7,10,6,9,8,15,8,10,8,14,9,13,13,27,14,14,9,14,8,9,8,14,8,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,19,10,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,21,11,11,8,11,7,8,7,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,8,10,8,14,10,15,15,34,17,17,12,17,10,11,9,16,9,9,7,11,7,10,9,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,9,9,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,13 +29,15,14,10,14,8,9,8,14,8,9,7,10,6,8,7,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,17,9,9,7,10,6,7,5,8,5,5,5,8,5,7,7,12,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,11,6,6,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,4,7,4,4,4,6,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,16,16,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,9,16,9,9,6,8,5,6,5,7,4,4,4,6,4,5,4,13,7,7,5,7,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,6,9,9,10,6,6,4,5,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,12,19,10,10,7,10,6,8,7,13,8,9,7,11,8,11,11,21,11,12,9,14,9,11,10,17,10,11,9,16,11,16,16,34,18,18,13,19,11,12,10,18,10,10,8,12,8,11,10,19,10,10,7,11,7,8,7,13,8,9,8,13,9,12,12,25,13,13,9,12,7,8,7,11,7,8,6,10,6,8,8,15,9,10,8,12,8,10,10,18,10,12,10,17,11,16,16,34,18,18,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,11,8,12,8,10,9,15,9,10,8,13,9,12,11,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,18,18,33,17,17,12,17,10,11,9,15,8,9,7,11,7,10,9,17,9,9,7,11,7,9,8,14,8,10,8,13,9,12,11,20,11,11,8,13,8,10,9,15,9,10,8,14,10,14,14,28,15,16,12,19,12,16,15,28,16,19,16,27,18,25,25,44,22,22,15,23,13,16,14,24,13,14,11,19,13,18,18,34,18,20,15,23,14,18,17,32,18,21,17,29,20,29,29,56,29,30,21,33,19,24,21,38,21,23,18,30,19,26,25,49,26,28,20,32,20,27,25,47,27,32,27,47,32,48,49,98,49,49,33,50,28,33,28,49,26,28,21,34,22,30,29,55,28,29,21,32,19,24,22,40,22,25,20,33,21,30,30,50,26,26,18,26,15,18,15,27,15,16,12,20,13,17,16,30,16,17,13,20,12,15,14,26,15,17,15,26,17,25,25,52,26,26,18,27,15,17,14,24,13,15,11,18,12,16,15,27,14,15,11,16,10,12,11,19,11,13,11,19,13,19,18,36,19,19,13,20,12,14,12,21,11,12,9,14,9,12,12,22,12,13,10,15,9,12,12,22,13,15,12,20,14,20,20,38,20,20,14,21,12,14,12,20,11,11,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,10,8,14,9,13,13,24,13,13,10,15,9,11,10,17,9,10,8,12,8,11,11,22,12,12,9,14,9,11,10,18,11,13,11,18,12,17,17,39,20,20,14,21,12,15,13,23,12,13,10,16,10,14,14,27,14,15,11,16,10,12,11,19,11,13,10,17,12,18,18,34,18,18,13,20,12,14,12,21,12,14,11,18,12,16,16,30,16,17,13,20,13,17,16,29,16,19,16,27,18,27,27,65,33,33,22,33,19,22,18,32,17,18,13,21,13,18,17,32,17,17,12,18,11,13,12,21,12,14,12,20,13,19,19,32,17,17,12,18,10,12,11,19,10,11,9,14,9,12,11,20,11,11,8,12,8,10,9,16,9,11,9,16,11,16,16,36,19,19,13,19,11,14,12,21,12,13,10,17,11,15,14,26,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,28,15,15,10,15,9,11,9,15,8,9,7,11,8,11,10,19,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,29,15,15,10,14,8,10,9,15,9,10,8,12,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,14,7,7,5,8,5,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,23 +15,8,8,6,7,4,5,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,6,4,4,3,3,2,3,3,4,3,3,2,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,16,11,17,10,12,11,20,11,12,10,16,10,14,14,25,14,14,11,17,11,14,13,24,14,17,14,24,17,25,25,50,25,25,17,26,15,17,14,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,10,17,11,16,16,26,14,14,9,14,8,10,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,8,8,13,8,9,8,14,9,13,13,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,6,5,8,5,6,6,12,7,7,6,8,5,6,6,12,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,5,6,5,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,12,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,20,10,10,7,11,6,8,7,12,7,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,9,8,15,9,10,8,14,10,14,14,34,17,17,12,17,10,12,10,16,9,10,7,11,7,10,9,16,9,9,6,9,6,7,6,11,7,8,7,11,7,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,15,8,8,5,7,5,6,5,8,5,6,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,12 +15,8,8,6,7,5,6,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,9,14,8,8,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,10,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,6,4,6,5,10,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,24,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,9,15,10,15,15,30,16,16,11,18,10,12,11,20,11,12,10,17,11,14,14,26,14,14,11,17,11,15,14,25,15,18,15,25,17,26,26,50,26,26,18,27,15,18,15,25,13,14,11,18,12,16,15,29,15,16,11,17,10,13,12,22,12,14,11,18,12,16,16,26,14,14,9,14,8,10,9,14,8,8,7,11,7,9,9,16,9,10,7,11,7,9,8,13,8,10,8,14,10,14,13,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,18,10,10,7,11,7,8,7,12,6,6,5,8,5,6,6,12,7,8,6,8,5,6,6,12,7,8,6,10,7,10,11,21,11,12,8,11,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,7,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,6,4,7,5,7,7,12,6,6,5,7,5,6,6,9,5,6,6,9,6,9,9,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,10,9,15,9,10,8,15,10,14,15,35,18,17,12,18,10,12,10,16,9,10,7,12,8,10,9,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,11,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,16,8,8,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,4,6,4,5,5,6,4,4,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,6,6,11 +11,6,6,4,5,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,11,13,11,18,12,18,18,35,18,18,12,19,11,12,10,17,9,10,8,13,9,12,11,20,11,11,8,12,7,9,8,15,9,10,8,13,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,9,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,5,6,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,9,5,6,5,7,5,7,8,15,8,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,6,4,7,5,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,24,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,4,3,3,3,5,4,5,5,5,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,8 +16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,7,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,5,3,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,7,10,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,18,10,10,8,12,7,8,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,5,9,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,6,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,5,7,4,5,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,5,8,6,8,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,15,14,26,13,13,9,12,7,8,7,14,8,9,7,11,7,10,10,19,11,12,9,14,9,12,11,19,11,12,10,16,11,15,15,32,17,17,12,18,11,13,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,15,15,27,15,18,15,27,18,27,28,53,27,27,19,28,16,19,15,26,14,16,12,20,13,17,16,31,16,16,12,18,11,14,13,23,13,15,12,20,13,18,17,29,15,14,10,14,9,11,9,16,9,9,7,12,8,10,10,17,9,10,8,12,7,9,8,13,8,10,8,14,10,14,14,29,15,15,10,15,9,10,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,7,6,13,8,9,7,11,8,11,11,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,6,7,6,10,7,10,9,20,11,11,7,10,6,7,6,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,10,7,10,10,20,10,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,8,6,10,7,9,9,16,9,10,9,15,10,15,15,37,19,18,12,18,10,12,11,17,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,14,8,9,8,13,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,6,4,6,6,11,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,2,2,2,1,1,1,4,3,3,2,2,2,3,3,5,3,4,3,4,3,5,5,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,8,4,4,3,4,3,5,5,6,4,4,3,4,3,4,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,11 +9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,5,5,8,5,6,4,7,5,6,6,11,6,7,5,8,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,17,9,9,7,11,7,9,9,16,9,11,9,16,11,16,16,31,16,16,11,16,10,11,9,15,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,13,8,9,7,12,8,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,4,4,4,6,4,6,6,12,7,7,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,6,9,6,9,9,22,11,11,8,11,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7 +11,6,6,4,7,4,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,8,6,8,8,11,6,6,4,7,4,4,4,8,4,4,3,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,6,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,6,11,6,6,5,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,12,11,20,10,10,7,10,6,6,6,10,6,7,5,8,6,8,8,14,8,8,6,10,7,9,8,14,8,9,8,12,8,12,12,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,15,9,12,11,21,12,14,12,21,14,21,21,38,20,20,14,20,12,14,12,19,11,12,9,14,9,12,12,23,12,13,9,14,8,10,9,16,9,10,8,14,9,12,12,22,12,12,8,11,7,8,7,12,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,6,5,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,10,7,10,6,6,5,8,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,8,7,14,8,8,5,7,4,5,5,8,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,27,14,14,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,7,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,6,6,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,8,11,11,20,11,11,8,13,8,11,10,18,11,13,11,18,13,19,19,34,17,17,12,18,10,12,10,17,10,11,8,13,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,10,20,11,11,7,10,6,7,6,10,6,7,5,7,5,6,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,7,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,7 +18,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,7,5,8,5,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,5,6,5,8,6,9,9,12,7,7,5,7,5,6,6,10,6,7,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,11,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,16,9,9,6,8,5,6,5,8,5,6,5,8,5,6,6,7,4,5,4,7,5,7,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,10,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,10,6,8,7,12,9,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,6,8,7,14,8,8,6,9,5,6,5,9,5,6,5,8,6,9,9,18,9,9,6,9,6,7,6,10,6,7,6,9,7,10,10,16,9,10,7,11,7,10,10,18,10,12,10,17,12,18,18,31,16,16,11,16,9,11,10,17,9,10,8,14,9,12,11,23,12,13,10,16,10,12,11,20,11,13,11,20,13,19,19,37,19,20,14,20,12,16,14,26,14,16,13,21,14,20,19,36,19,20,15,24,15,20,18,33,19,22,19,34,23,34,34,62,32,32,22,32,18,21,18,32,17,18,14,23,15,20,19,39,20,20,14,20,12,15,13,24,13,15,12,20,13,18,18,36,19,19,13,18,11,13,11,18,10,11,9,14,9,11,11,22,12,12,9,13,8,10,9,16,9,11,9,16,11,15,15,34,17,17,12,17,10,12,10,18,10,11,8,12,8,11,11,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,23,12,11,8,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,30,15,15,10,15,9,10,8,14,8,8,7,11,7,9,8,12,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,15,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,9,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,9,17,9,10,8,12,7,9,8,14,8,9,8,14,9,13,13,24,13,13,9,12,8,10,9,15,8,9,7,11,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,18,18,43,22,22,15,21,12,14,12,22,12,13,10,16,10,13,12,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,13,22,12,12,9,13,8,9,8,14,7,7,5,8,5,7,7,15,8,8,6,8,5,7,7,12,7,9,8,13,9,12,12,23,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,18,9,9,7,10,6,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,6,8,5,6,5,8,5,5,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,7,7,4,5,4,5,3,3,3,4,2,2,2,2,2,2,2,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,7,5,6,6,10,6,7,5,8,5,7,7,12 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,7,4,5,4,7,4,4,3,5,4,5,4,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,7,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,13,7,7,6,9,6,7,6,11,6,7,6,11,8,11,11,20,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,13,8,11,10,18,10,12,11,19,13,19,19,34,18,18,12,18,10,12,10,18,10,10,8,13,8,11,11,21,11,11,8,11,7,9,8,13,8,9,7,11,7,10,10,20,11,11,7,10,6,7,6,10,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,10,6,7,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7 +11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,4,6,4,4,4,7,4,5,5,8,6,8,8,11,6,7,5,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,5,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,9,6,8,7,15,8,8,6,10,6,8,7,13,7,8,7,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,8,14,9,13,12,23,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,20,12,14,12,20,11,12,9,14,9,12,12,24,12,12,8,13,8,10,8,15,9,10,8,12,8,11,11,22,12,12,8,11,7,8,7,11,7,8,6,9,6,8,7,14,8,8,6,8,5,6,6,10,6,8,7,11,7,10,10,21,11,10,7,11,7,8,7,12,7,8,6,9,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,6,6,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,7,5,6,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,11,6,7,6,11,8,11,11,26,13,13,9,13,8,10,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,4,2,2,2,4,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,11,10,17,12,17,17,31,16,16,11,16,9,11,10,16,9,10,8,12,8,10,10,19,10,10,7,10,6,8,6,12,7,8,6,10,7,9,9,17,9,9,6,9,6,6,5,9,6,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,5,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,7,4,6,5,9,5,6,5,9,6,9,9,20,10,11,8,11,7,8,7,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,8,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,5,6,5,8,5,6,6,9,6,7,6,10,7,11,11,16,9,9,6,8,5,7,6,10,6,6,4,6,4,4,4,9,5,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,8,6,8,7,14,7,7,5,8,5,7,6,12,7,8,7,11,8,12,12,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,8,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,10,6,7,5,8,6,8,7,13,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,14,8,10,9,16,11,15,15,24,13,13,9,13,8,9,8,16,9,9,7,12,8,11,10,20,11,11,8,12,7,9,9,17,10,11,9,16,11,16,16,30,16,17,12,18,11,14,12,21,12,14,11,18,12,17,17,31,17,18,13,20,12,16,15,27,15,18,16,28,19,28,28,53,27,27,18,27,15,18,16,28,15,16,12,20,13,18,17,31,16,16,11,16,10,12,10,19,11,12,10,16,11,15,15,29,15,15,10,15,9,10,8,15,8,9,7,12,8,11,10,20,11,11,8,12,7,9,8,13,8,10,8,14,9,13,13,26,14,14,10,15,9,11,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,24,13,13,9,13,8,9,8,12,7,7,5,8,6,8,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,6,13,7,8,6,8,5,6,5,9,5,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,9,8,14,10,15,15,33,17,17,12,18,10,12,11,17,9,10,8,14,9,11,11,19,10,10,7,10,6,8,7,13,8,9,7,12,8,12,11,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,7,8,6,10,6,8,7,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,4,6,4,5,4,8,5,6,5,7,5,7,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,7,4,5,4,5,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,11 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,6,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,5,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,4,7,5,6,6,9,6,7,6,11,7,10,10,16,9,9,6,9,6,6,6,11,6,6,5,8,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,18,10,12,11,18,12,18,18,34,18,18,12,18,10,12,11,18,10,11,8,13,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,17,9,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,7,6,9,6,8,7,13,7,7,5,7,4,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,3,4,3,3,2,4,2,3,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,5,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,15,8,8,6,8,5,6,5,7,4,4,4,6,4,6,5,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,7,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,8,8,13,8,10,8,15,10,14,14,23,12,12,9,13,8,9,8,15,8,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,15,29,15,16,11,17,10,12,11,20,11,12,10,17,11,16,15,29,15,16,12,19,12,16,15,27,15,18,15,26,18,26,26,49,25,26,18,26,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,27,14,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,12,7,8,7,14,8,9,7,13,9,12,12,25,13,14,10,13,8,10,9,15,8,9,7,11,7,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,9,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,7,5,6,6,9,5,6,5,10,7,10,10,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,10,6,7,6,11,6,6,5,9,6,9,9,16,9,9,7,10,6,8,8,14,8,10,8,14,10,14,14,31,16,16,11,17,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,8,6,8,9,19,10,10,7,9,5,6,6,10,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,6,4,6,6,10 +11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,8,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,8,8,13,8,9,8,14,10,14,14,22,12,12,8,12,8,9,8,14,8,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,11,16,10,12,11,20,11,12,10,17,11,15,15,28,15,16,12,19,12,16,14,26,15,18,15,26,17,25,25,48,25,25,17,26,15,18,15,26,14,16,12,19,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,15,10,14,14,26,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,8,7,14,8,9,7,12,8,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,30,16,16,11,16,10,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,19,10,10,7,9,5,6,6,10,6,6,5,8,6,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,10 +20,10,10,7,10,6,8,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,8,8,8,5,5,4,6,4,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,7,7,12,7,7,6,10,7,9,9,17,9,10,8,12,8,10,10,18,10,12,11,19,13,19,19,25,13,13,9,13,8,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,5,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,20,11,11,8,12,8,10,9,16,9,11,9,14,9,12,12,22,12,12,9,15,10,13,12,23,13,16,13,22,15,21,21,27,14,15,11,16,9,11,10,17,9,10,8,12,8,11,10,19,10,11,8,12,7,9,9,16,9,10,8,13,9,12,12,24,13,13,9,13,8,9,8,13,7,8,6,9,6,9,9,17,9,10,7,10,7,9,8,14,8,10,8,14,10,15,15,32,16,16,11,17,10,13,12,21,12,13,10,16,10,13,12,23,12,12,8,11,7,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,15,8,9,7,12,8,11,11,20,11,12,9,13,9,12,11,21,12,14,12,20,13,19,19,35,18,18,12,18,11,13,11,20,11,12,10,17,11,15,14,26,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,26,14,14,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,17,12,18,11,15,14,26,15,18,15,27,18,26,26,42,22,22,15,23,13,16,14,24,13,15,12,19,12,17,16,31,16,16,12,18,11,15,14,26,15,18,16,28,19,27,27,54,28,28,19,29,17,22,19,34,18,20,16,27,18,26,25,49,26,28,21,34,21,28,26,50,28,33,28,50,33,49,49,94,48,48,32,48,27,31,26,46,24,26,19,31,20,27,25,47,24,25,18,27,16,19,17,31,17,20,16,26,17,25,25,49,25,26,18,26,15,18,16,28,15,16,12,18,12,16,15,28,15,16,12,18,11,15,14,25,14,16,13,22,15,22,22,47,24,23,16,23,13,16,14,25,14,15,12,19,12,16,15,28,15,15,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,16,11,15,9,10,9,16,9,10,8,13,9,12,11,21,11,12,9,13,8,11,10,19,11,13,11,19,13,19,19,43,22,22,15,22,13,16,14,25,13,14,11,18,11,15,13,24,13,13,9,14,8,10,9,15,8,9,7,12,8,11,11,20,10,10,7,10,6,7,7,12,7,8,7,11,8,11,10,19,10,11,8,12,8,11,10,19,11,12,10,18,12,17,17,24,13,13,10,15,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,10,7,9,9,16,9,11,10,17,11,16,16,30,16,16,11,17,10,13,11,20,11,11,9,14,9,13,12,23,12,13,10,17,10,13,12,23,13,16,14,26,18,26,26,59,30,30,21,32,18,22,19,33,18,19,14,23,14,19,18,34,18,19,13,20,12,14,13,23,13,15,12,19,13,19,19,36,19,19,13,19,11,13,11,18,10,11,9,14,9,12,12,23,12,13,10,15,9,11,10,19,11,13,10,17,12,17,16,37,19,19,13,19,11,13,11,19,10,10,7,11,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,8,11,11,20,11,11,7,10,6,7,7,12,7,8,6,9,6,7,6,11,6,7,5,8,5,7,6,11,7,9,8,14,10,15,15,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,9,9,18 +10,6,6,4,6,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,7,4,5,5,8,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,3,3,4,3,4,3,5,4,5,5,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,14,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,9,6,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,13,25,14,15,11,17,11,14,13,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,14,10,16,10,14,13,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,8,8,7,12,8,11,11,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,8,14,10,14,14,30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,8,6,8,8,11,6,6,5,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,10 +10,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,6,4,4,4,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,4,3,4,3,4,3,5,5,2,2,2,2,1,1,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,13,7,8,7,12,8,12,11,14,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,10,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,10,6,8,7,11,6,7,5,9,6,8,7,12,7,7,5,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,17,9,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,10,7,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,15,15,27,14,14,10,15,9,11,10,17,10,11,9,15,10,14,13,25,14,15,11,17,11,14,13,26,15,18,15,26,18,26,26,48,25,25,17,25,14,16,14,24,13,14,10,17,11,15,14,24,13,13,9,14,8,10,9,16,9,10,8,13,9,12,12,26,14,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,14,8,8,7,12,8,11,11,25,13,12,8,13,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,7,12,7,8,6,9,6,8,7,12,8,10,9,14,10,14,14,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,6,6,10 +7,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,4,3,3,3,6,3,3,3,4,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,4,4,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,7,7,5,7,4,6,5,8,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,7,12,7,8,7,11,7,10,10,17,10,10,8,12,8,10,9,18,10,13,11,18,12,18,18,33,17,17,12,17,10,11,9,17,9,10,7,12,8,10,10,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,9,18,10,10,7,9,6,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,4,6,5,8,5,6,4,7,4,6,5,8,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,12,6,7,6,8,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,6,4,4,4,8,4,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,13,7,7,5,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,3,3,4,3,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,6,8,7,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,10,5,5,4,5,4,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,13,7,7,6,9,6,7,7,10,6,7,6,10,7,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,15,21,11,11,8,12,7,9,8,13,8,9,7,11,7,9,9,18,10,10,7,10,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,25,13,14,11,18,11,15,14,26,15,18,16,28,19,27,27,49,25,25,17,26,14,16,13,25,13,14,11,17,11,15,14,25,13,14,10,14,8,10,9,16,9,10,8,14,9,13,13,28,15,15,10,14,8,9,8,15,8,9,7,11,7,8,8,15,8,8,6,9,6,8,7,14,8,9,7,12,8,12,12,26,13,13,9,14,8,9,8,14,8,8,6,10,7,9,9,17,9,9,7,10,6,7,7,11,6,7,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,7,6,10,5,5,4,6,4,4,4,5,3,4,4,6,4,5,5,11,6,6,5,8,5,7,6,9,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,10,6,6,4,6,4,6,5,10,6,7,6,9,6,9,8,17,9,9,7,10,6,7,6,12,7,7,6,10,6,8,8,12,7,7,6,10,6,7,7,12,7,9,9,16,11,16,15,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,21,11,11,7,10,6,8,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,8,21,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,6,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,2,3,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,11 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,5,8,5,6,5,8,6,8,9,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,7,10,7,9,8,15,9,11,9,16,11,16,16,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,4,3,5,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,4,7,5,6,5,9,6,9,9,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,5,3,4,3,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,6,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,5,6,5,8,5,7,7,10,6,6,5,9,5,6,6,10,6,7,6,10,7,10,10,15,8,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,8,12,8,11,10,18,11,13,11,19,13,19,19,34,18,18,12,19,11,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,7,10,9,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,8,7,10,6,7,5,8,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,9,5,6,5,7,5,6,6,9,5,6,4,7,4,5,4,7,4,5,4,5,4,6,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,3,3,3,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,6,6,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,15,8,7,5,7,5,6,5,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,7,7,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,5,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,13,7,8,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,9,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,30,15,15,11,16,9,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,7,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,5,4,4,4,5,3,3,3,4,3,5,5,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,5,4,5,5,7,4,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6 +10,6,6,5,7,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,11,6,5,4,5,3,4,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,16,9,9,6,8,5,6,6,10,6,6,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,11,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,8,6,10,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,10,6,8,8,14,8,9,7,10,6,7,7,12,7,7,6,10,7,10,10,15,8,8,6,10,7,9,9,16,9,10,9,15,11,16,16,24,13,13,9,14,8,10,8,14,8,9,7,12,8,11,10,18,10,11,8,12,7,9,9,16,9,11,10,17,11,16,16,29,15,15,11,17,10,12,10,18,10,12,9,15,10,14,14,27,15,16,12,20,12,16,15,28,16,20,17,29,19,28,28,54,27,27,18,26,15,17,15,26,14,15,11,17,11,15,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,14,30,16,16,11,17,10,11,9,16,9,9,7,11,7,9,9,14,8,8,6,9,6,8,8,14,8,10,8,13,9,13,13,28,15,15,11,16,9,11,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,11,8,11,11,28,15,15,10,15,9,10,8,14,8,9,7,11,7,9,9,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,13,7,8,6,8,5,5,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,9,7,10,6,7,6,10,6,6,4,6,4,5,4,11,6,7,5,8,5,6,6,11,6,7,6,10,6,8,8,21,11,11,8,13,8,10,8,14,8,9,7,10,7,9,9,16,9,9,7,11,7,8,8,14,9,11,9,16,11,16,16,31,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,11,7,9,8,15,9,10,8,13,9,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,6,8,8,21,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,4,3,5,5,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10 +5,3,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,11,7,9,8,15,9,11,9,16,11,15,15,29,15,15,10,14,8,10,8,14,8,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,6,6,5,8,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,5,6,5,8,6,8,8,8,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,5,8,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,9,10,8,13,8,10,9,17,10,12,10,18,12,17,17,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,5,6,6,10,6,7,6,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,9,5,5,4,6,4,6,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,6,4,5,3,4,4,6,4,4,3,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,13,7,6,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,10,7,10,10,18,9,9,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,5,12,6,6,5,8,5,6,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,4,6 +4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,7,4,5,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,13,8,9,8,14,9,13,13,24,12,12,9,13,8,9,8,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,14,7,7,5,8,5,6,5,7,4,4,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,6,5,8,5,7,7,9,5,5,4,6,4,4,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,4,5,5,11,6,6,5,8,5,6,6,9,5,6,6,10,7,10,10,9,5,6,4,6,4,4,4,5,3,3,2,3,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,7,5,6,6,9,5,5,4,7,4,5,5,8,5,5,4,5,4,5,4,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,9,9,12,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,6,8,7,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,7,11,8,11,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,22,22,40,21,21,14,21,12,14,12,20,11,11,8,12,8,11,10,20,11,11,7,10,6,8,7,12,7,8,7,11,7,10,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,10,6,7,6,10,7,10,10,21,11,11,7,10,6,7,6,12,7,7,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,8,5,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,5,8,6,8,8,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,5,4,5,4,5,5,6,4,5,4,6,4,6,7,10,5,5,4,6,4,4,3,7,4,4,3,4,3,3,3,8,4,4,3,4,3,5,5,7,4,5,4,6,4,6,5,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,7,6,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,6,8,7,13,7,8,6,8,5,7,6,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,4,5,4,9,5,5,4,6,4,6,6,16,9,9,6,9,6,7,6,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,7,4,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,13,8,9,8,13,7,7,6,8,6,7,7,12,7,7,5,7,4,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,7,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,7,4,5,5,8,5,6,5,8,6,9,9,7,4,5,4,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,6,5,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,7,10,10,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,10,10,19,10,11,9,14,9,12,11,20,12,14,11,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,12,8,10,9,16,9,9,6,9,6,8,7,11,7,8,6,9,6,9,9,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,18,9,9,6,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,4,6,4,4,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,6,5,8,5,7,7,20,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,13,7,7,5,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,9,5,6,6,10,6,7,6,11,8,11,11,17,9,9,7,9,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,7,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,4,2,2,2,3,3,4,4,6 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,10,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,7,12,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,19,13,19,19,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,9,9,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,9,6,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,6,5,9,5,6,5,7,5,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,5,6,3,3,3,3,2,3,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,13,7,7,5,8,5,6,5,9,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5 +7,4,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,5,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,3,2,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,6,8,8,14,8,10,9,16,11,16,16,13,7,7,5,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,11,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,7,5,8,5,7,6,11,7,8,7,12,9,14,14,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,18,10,10,7,10,6,8,7,11,7,8,6,10,7,9,8,14,8,9,7,10,6,8,7,12,7,9,8,14,10,14,15,20,11,11,8,12,7,8,7,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,7,12,7,8,7,12,8,11,11,17,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,11,13,11,18,12,18,19,32,17,17,12,17,10,12,10,18,10,11,9,14,9,13,12,23,12,12,9,14,9,11,11,20,11,13,11,18,13,19,19,33,17,17,12,19,11,14,12,22,12,14,11,19,13,18,18,34,18,19,14,23,15,20,19,36,21,25,21,37,25,37,37,69,35,35,23,33,19,22,18,31,16,17,12,19,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,12,17,16,36,18,18,13,19,11,13,11,18,10,10,8,12,8,11,11,21,12,13,10,15,9,12,11,19,11,12,10,16,11,16,16,32,17,17,12,17,10,11,9,15,8,9,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,24,13,13,9,13,8,10,9,15,8,9,7,10,6,8,7,12,7,8,6,10,6,8,7,13,8,9,8,13,9,13,13,36,19,19,13,20,11,13,11,19,10,11,8,12,8,11,10,18,10,10,7,9,6,7,7,12,7,7,6,10,6,8,8,10,6,6,5,7,5,6,6,10,6,7,6,9,6,8,7,12,7,8,6,10,6,8,7,13,8,9,7,11,7,10,10,16,9,9,7,10,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,6,4,5,4,7,5,8,8,24,13,13,9,14,9,11,10,17,9,10,8,12,8,11,11,20,11,11,8,13,9,12,12,22,13,15,12,21,14,20,20,30,15,15,11,16,10,12,10,17,9,10,8,12,8,11,11,20,11,11,8,13,8,10,9,15,9,10,8,12,8,12,12,23,12,12,8,12,7,9,8,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,7,6,9,6,9,9,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,7,12,7,8,6,10,6,8,7,13,7,8,7,12,8,10,10,11,6,7,5,7,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,6,10,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,6,7,5,8,5,7,6,10,6,6,5,8,5,7,7,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,4,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,5,9 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,16,8,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,8,12,8,11,10,19,11,13,11,19,13,20,20,36,19,19,12,18,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,7,6,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,5,12,7,7,5,7,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,5,3,3,3,3,3,4,3,5 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,5,3,4,4,5,3,4,4,5,4,6,5,6,3,3,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,4,7,4,5,5,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,8,8,12,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,5,7,4,5,4,7,4,4,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,7,6,10,7,11,11,17,9,9,6,10,6,7,6,11,6,7,6,9,6,7,7,13,7,6,5,7,5,6,6,11,7,8,7,10,7,10,11,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,8,13,8,11,10,20,12,14,12,20,14,21,21,38,20,20,13,19,11,13,11,17,9,9,7,10,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,10,7,10,9,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,7,20,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,4,3,5,3,3,3,6,3,2,2,3,2,2,2,4,3,4,3,4,3,5,5,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,8,12,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,4,5,5,6,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,5,3,3,3,3,3,4,4,6 +3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,5,3,3,3,4,3,3,3,5,4,4,4,6,5,7,7,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,3,5,3,3,3,5,4,4,4,7,4,5,4,6,4,4,4,7,4,5,5,8,6,8,8,12,6,6,5,7,4,5,4,8,5,5,4,7,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,15,15,28,14,14,10,14,8,9,8,13,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,5,8,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,14,8,8,6,8,5,5,4,8,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4 +3,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,5,3,4,4,7,5,7,7,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,10,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,5,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,13,7,8,6,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,5,4,7,4,5,4,7,5,7,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,8,5,7,7,12,7,8,7,12,9,13,13,22,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,23,12,13,9,14,9,12,11,23,13,16,13,23,16,23,23,44,22,22,15,21,12,14,12,20,11,11,8,12,8,10,10,18,9,9,7,10,7,9,8,13,8,9,7,12,8,11,10,21,11,10,7,10,6,7,6,10,5,5,4,6,4,6,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,10,6,6,5,8,5,6,5,9,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,5,6,5,9,5,5,4,6,4,4,4,9,5,5,4,7,5,8,8,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,6,4,5,4,6,4,4,3,5,3,3,3,5,4,5,5,7,4,4,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,12,8,12,12,17,9,9,7,10,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,8,5,6,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,5,14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,6 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,14,8,10,8,14,10,14,14,26,14,14,9,13,8,9,8,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,4,5,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,3,5,3,4,3,6,4,6,6,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,8,11,6,6,4,6,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,6,6,10,7,10,10,14,8,8,6,9,5,6,6,10,6,6,5,9,6,7,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,11,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,17,10,12,10,16,9,9,7,11,7,9,8,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,17,9,8,6,8,5,6,5,8,4,4,3,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,6,8,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,6,5,7,4,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,4,5,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,4,4,4,8,5,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,6,6,9,7,10,10,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,8,17,9,10,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,8,6,7,7,15,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 +2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,2,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,6,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,8,5,5,4,6,4,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,4,7,4,5,5,8,5,6,5,8,5,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,10,6,8,8,14,8,10,8,14,9,13,13,23,12,12,9,13,8,9,8,13,7,7,6,9,6,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,13,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,15,8,9,6,9,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,15,16,25,13,14,10,14,9,11,10,18,10,11,8,12,8,11,10,20,11,11,8,11,7,10,9,16,9,11,10,17,12,18,18,31,16,16,12,18,11,13,11,20,11,13,10,16,11,15,15,31,17,18,13,21,13,17,16,30,17,20,17,31,21,31,31,59,30,30,20,30,17,19,16,28,15,15,11,17,11,15,14,27,14,14,10,16,9,11,10,18,10,12,9,15,10,13,13,27,14,14,10,14,8,10,8,14,8,8,7,11,7,9,8,16,9,9,7,11,7,8,8,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,16,9,9,7,12,8,10,9,15,8,8,6,10,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,13,8,9,8,13,7,7,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,31,16,16,11,16,9,11,9,15,8,9,7,11,7,9,8,12,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,17,9,9,7,11,7,9,8,14,8,9,7,10,7,9,9,19,10,11,8,12,7,9,9,16,9,11,9,16,11,16,16,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,14,8,8,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,3,4,4,6,4,5,4,6,4,6,5,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,4,5,4,5,4,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,8,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,6,8,5,7,6,10,6,7,5,7,5,7,6,11,6,7,5,7,4,6,5,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,17,12,17,17,33,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,5,5,8,4,5,4,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,7,5,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,6,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,9,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,13,7,8,6,8,5,6,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,9,8,14,8,8,7,12,8,10,10,21,11,12,9,13,9,12,11,20,12,14,12,20,14,20,20,39,20,20,13,20,11,13,11,19,10,11,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,5,9,5,6,4,5,3,4,4,8,4,4,4,6,4,5,4,7,4,5,4,7,5,8,8,20,10,10,7,11,7,8,6,10,6,6,5,8,5,6,5,9,5,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,4,2,2,2,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,11,6,7,6,11,7,10,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,11,6,7,5,7,5,6,6,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,17,9,10,7,11,7,10,9,16,10,11,10,16,11,17,17,32,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,6,11,6,7,5,7,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4 +-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,4,3,4,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,6,6,10,7,9,9,10,5,5,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,4,6,4,5,5,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,9,5,6,4,6,4,4,4,7,4,5,5,8,6,8,7,12,7,8,6,9,6,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,7,4,5,4,8,5,5,5,8,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,6,5,7,7,12,7,7,5,8,6,8,7,12,7,8,7,11,8,11,12,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,8,14,8,9,8,14,10,15,15,26,13,13,9,14,8,10,9,17,9,10,8,12,8,11,11,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,15,29,15,16,12,19,12,17,16,28,16,19,16,28,19,28,29,55,28,28,19,28,16,18,15,27,15,16,12,18,11,15,14,27,14,14,10,15,9,11,10,17,9,10,8,14,9,13,12,23,12,12,8,12,7,8,7,14,8,9,7,12,8,10,9,15,8,9,7,10,7,9,8,16,9,10,8,13,9,13,13,25,13,13,9,14,8,9,8,16,9,9,7,10,6,8,8,14,8,9,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,11,8,11,7,8,7,13,7,8,6,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,10,10,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,13,7,7,5,6,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,7,6,12,7,7,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,9,8,14,10,15,15,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,4,4,5,3,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,18,9,9,7,10,6,7,6,12,6,7,6,8,5,7,7,13,7,7,6,8,6,7,6,11,6,8,6,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,11,8,11,10,20,11,11,8,13,8,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,12,10,18,10,11,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,6,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,10,6,6,5,7,4,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,7,6,9,5,5,4,7,4,6,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,6,5,8,6,9,9,9,5,4,3,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,4,4,7,4,5,5,8,6,8,7,13,7,8,6,8,6,8,7,13,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,7,7,12,6,6,5,6,4,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,9,11,9,17,9,10,8,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,11,21,11,12,10,16,11,16,15,30,16,17,13,19,12,16,15,29,17,20,16,28,19,28,28,53,27,27,18,27,15,18,15,27,14,15,11,18,11,15,14,27,14,14,10,15,9,11,10,16,9,10,8,14,9,12,12,22,12,12,8,13,7,8,8,13,7,8,7,11,7,10,9,16,9,10,7,10,7,9,8,16,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,8,11,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,9,8,16,9,10,7,10,6,8,8,14,8,10,9,15,11,16,16,19,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,8,6,8,8,13,7,6,5,7,4,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,8,5,6,5,8,6,9,9,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,9,6,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25,13,13,10,14,9,11,9,16,9,10,8,11,7,10,10,19,10,11,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,12,21,11,12,10,16,11,16,15,30,16,17,13,20,12,16,15,29,16,19,16,28,19,28,28,52,26,26,18,26,15,18,15,27,14,15,11,18,11,15,14,26,14,14,10,15,9,11,10,16,9,10,8,13,9,12,12,22,12,12,8,13,8,9,8,13,7,8,7,11,7,10,9,16,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,8,8,16,9,9,7,10,6,8,8,14,8,10,9,15,11,16,16,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,7 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,4,3,5,5,8,5,5,4,6,5,7,7,12,7,7,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,9,17,9,10,8,12,8,11,11,20,11,13,11,19,13,18,18,15,8,8,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,8,7,11,8,12,12,22,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,13,10,16,10,13,12,23,13,15,12,21,14,21,21,27,14,14,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,11,8,12,8,10,9,17,10,11,9,15,10,14,14,26,14,14,10,15,9,11,10,17,10,11,9,14,9,13,12,23,13,14,11,17,11,14,13,24,14,16,13,23,15,22,22,44,22,22,15,21,12,14,12,22,12,13,10,16,10,14,14,27,14,15,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,12,9,13,8,9,8,14,8,9,8,13,9,13,12,23,12,13,9,14,9,12,11,21,12,13,11,19,13,19,20,35,18,18,12,18,11,14,12,22,12,13,10,16,11,15,14,27,14,14,10,15,9,12,11,19,11,13,10,17,11,16,16,31,16,16,12,18,11,13,11,20,11,13,11,18,12,17,17,32,17,18,13,20,13,17,16,30,17,19,15,26,18,26,25,49,25,25,17,26,15,19,17,30,16,18,13,21,13,18,17,32,17,17,12,19,12,16,15,27,15,17,14,24,16,23,23,44,23,23,16,25,15,19,17,30,17,19,16,28,19,27,26,51,27,29,22,35,22,30,28,54,30,36,31,55,37,54,54,103,52,52,35,51,28,33,28,49,26,28,20,32,20,27,25,48,25,26,18,28,16,20,18,33,18,21,17,28,18,26,26,50,26,26,18,26,15,17,14,25,14,15,12,19,12,17,16,30,16,17,13,20,12,16,14,25,14,17,14,24,16,24,24,48,24,24,16,24,14,17,15,26,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,13,7,8,7,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,17,18,51,26,26,17,25,14,17,14,25,13,14,11,18,12,16,15,28,15,15,11,16,10,13,11,20,11,12,9,15,10,13,13,25,13,13,9,14,8,10,9,16,9,9,7,12,8,11,10,19,10,11,8,11,7,9,8,15,8,9,8,13,9,13,13,25,13,13,9,13,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,38,19,19,13,20,12,15,13,23,13,14,11,18,12,17,16,30,16,17,12,19,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,12,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,11,10,19,10,11,9,15,10,15,15,28,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,20,10,10,7,9,5,6,6,10,6,6,5,7,5,7,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,7,10,6,7,6,11,6,7,5,7,5,6,6,10,5,5,4,5,4,5,4,7,5,6,5,8,6,9,9,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,5,4,5,3,4,4,6,4,5,4,7,5,8,8,14,7,7,5,7,4,5,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,13,25,13,13,9,13,8,10,9,15,9,10,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,8,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,52,26,26,18,26,15,17,14,25,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,10,11,9,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,10,6,9,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,10,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,9,6,10,7,9,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,6,5,9,6,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,4,3,4,3,4,4,7 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,7,11,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,8,6,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,6,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,13,8,10,9,15,9,10,7,12,8,10,9,17,9,10,7,10,6,8,8,14,8,10,8,13,9,12,12,23,12,12,9,14,8,10,9,16,9,11,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,53,27,26,18,26,15,18,15,26,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,9,10,8,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,5,9,5,6,5,9,7,10,10,27,14,14,9,13,8,10,8,12,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,8,6,10,7,9,8,15,9,10,9,16,11,15,15,18,9,9,7,10,6,6,5,10,6,6,5,8,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,4,3,4,4,7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,6,3,3,3,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,4,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,7,5,7,6,11,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,9,6,7,6,10,6,7,5,8,6,7,7,12,6,7,5,7,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,7,8,6,11,7,10,10,17,9,10,8,12,8,11,10,19,11,13,11,19,13,19,19,36,18,18,12,18,10,12,10,18,10,10,7,12,8,10,9,17,9,10,7,10,6,7,6,12,6,7,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,7,5,6,6,10,6,7,6,11,8,10,10,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,1,3,2,3,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,11,8,12,12,14,7,7,5,6,4,4,4,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,7,6,13,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,10,9,16,9,9,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,14,8,9,7,12,8,11,10,17,9,10,7,10,7,9,8,15,9,10,8,12,8,12,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,15,25,13,14,11,18,11,15,14,27,15,18,16,28,19,27,27,54,27,27,18,26,15,17,14,26,14,15,11,17,11,14,13,25,13,13,9,14,9,11,9,17,9,10,8,14,9,13,13,25,13,13,9,12,7,8,7,13,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,8,13,9,13,13,24,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,12,6,6,4,6,4,5,5,10,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,12,7,7,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,11,11,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,14,8,8,6,10,6,8,8,14,8,10,9,16,11,15,15,19,10,10,7,10,6,6,5,11,6,7,5,8,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,8,6,9,9,13,7,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,3,3,3,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,3,3,5,3,4,3,4,3,4,4,8 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,8,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,8,7,11,7,9,8,16,9,10,9,16,11,15,15,31,16,15,10,15,9,10,8,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,8,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,6,6,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,5,6,5,9,5,6,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,9,7,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,13,8,10,10,19,11,12,10,19,13,18,18,37,19,18,12,18,10,12,10,19,10,11,8,12,8,10,9,17,9,10,7,10,6,7,6,12,7,7,6,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,4,4,6,4,6,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,3,4,4,6 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,8,4,5,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,5,9,5,5,5,7,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,31,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,10,5,5,4,6,4,5,5,10,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,3,4,4,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,11,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,7,10,6,6,5,9,6,7,6,9,6,8,8,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,26,14,14,10,14,8,9,7,12,7,7,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,5,7,7,13,8,9,7,12,8,11,11,23,12,12,9,14,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,8,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,8,8,14,8,9,8,14,10,14,14,25,13,13,9,13,8,10,9,15,9,10,8,12,8,11,10,17,9,10,7,11,7,8,8,14,8,9,7,12,8,11,11,24,13,13,10,15,9,12,10,18,10,12,10,16,11,15,15,27,15,16,12,18,11,15,15,28,16,18,15,27,18,27,27,56,29,29,19,28,16,19,16,28,15,15,11,17,11,14,14,26,14,14,10,15,9,10,9,16,9,11,9,14,9,13,12,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,8,17,9,10,7,10,6,8,7,12,7,9,8,13,9,14,14,23,12,13,9,13,7,8,7,12,7,8,6,9,6,9,9,16,9,9,7,11,7,8,7,12,7,7,6,10,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,7,6,10,6,7,5,8,5,6,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,19,10,11,8,11,7,8,7,11,6,7,6,10,7,9,8,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,5,3,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,5,3,4,3,4,3,5,5,10 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,5,3,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,15,10,15,15,30,16,16,10,15,9,11,9,15,8,8,6,9,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,5,5,3,5,3,4,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,5,4,5,5,8,5,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,17,17,11,17,10,12,10,16,9,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,9,6,7,6,9,7,10,10,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,2,2,2,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,24,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,8,8,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,1,1,1,1,1,1,0,0,3,2,1,1,0,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,4,7,5,6,5,8,6,8,8,6,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,1,1,1,1,0,0,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,10,6,6,4,6,4,6,6,12,7,7,5,7,5,6,6,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,9,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,11,6,7,5,8,5,7,7,16,9,9,7,10,6,7,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,11,13,11,19,10,11,8,13,9,12,11,20,11,11,8,11,7,9,8,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,8,5,5,4,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,5,4,6,6,11,6,5,3,4,3,3,3,6,4,4,4,6,4,4,4,9,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,15,8,8,6,8,5,5,5,7,4,5,4,7,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,3,7,4,5,4,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,24,12,12,8,13,8,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,7,4,4,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5 +1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,5,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,7,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,7,9,9,16,9,11,9,17,11,16,16,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,2,2,3,5,3,4,3,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,5,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,8,8,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,9,16,9,11,9,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,11,6,6,5,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,10,5,5,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,7,6,11,8,11,12,8,4,4,3,5,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,11,6,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,5,6,5,9,7,10,10,14,8,8,5,7,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,8,12,13,29,15,16,11,16,9,10,8,14,8,8,7,11,7,9,8,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,11,7,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,20,11,12,9,13,8,10,10,18,10,12,10,17,11,15,15,31,16,16,11,15,9,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,11,9,14,9,13,12,25,13,13,10,15,9,12,10,18,10,11,9,16,10,14,14,26,14,15,12,19,12,16,16,30,17,20,17,29,20,29,29,59,30,31,21,31,18,21,18,31,17,18,13,20,13,17,16,31,16,16,11,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,10,7,9,9,16,9,11,9,14,10,14,14,25,13,14,10,15,9,10,9,16,9,9,7,12,8,10,9,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,11,8,12,7,9,8,14,8,9,7,11,7,9,8,15,8,9,7,11,7,9,8,15,9,11,9,15,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,9,6,7,6,11,6,7,5,7,4,5,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,7,12,8,11,11,20,11,11,8,13,8,10,10,18,11,13,11,18,12,18,18,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,9,6,9,9,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,10,5,5,4,5,3,4,3,4,3,3,3,5,4,5,5,11,6,6,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,6,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,6,4,4,4,7,5,7,7,12 +1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,6,4,6,6,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,8,6,10,7,9,9,16,9,11,9,15,10,15,15,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,6,6,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,7,5,7,7,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,2,2,2,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,6,4,6,6,10,6,6,4,7,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,31,16,17,12,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,5,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,8,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,5,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,9,5,4,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,6,4,6,6,10,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,4,5,4,4,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,5,8,5,7,7,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,4,4,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,2,3,2,3,2,3,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,4,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,6 +0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,7,4,5,4,7,5,7,7,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,5,5,8,5,7,7,16,9,9,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,15,8,9,7,10,6,7,7,10,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,9,9,17,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,14,8,9,7,12,8,10,9,17,10,11,10,17,12,17,17,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,10,19,10,10,8,12,7,9,7,11,6,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,11,6,6,5,8,5,6,5,9,5,6,6,10,7,9,9,14,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,10,7,9,9,16,8,8,5,7,5,6,5,6,4,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,4,3,5,5,9 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,4,5,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,5,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,4,4,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,4,4,4,6,4,6,5,7,4,4,4,6,5,7,7,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,10,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,5,6,4,5,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,10,6,6,5,8,6,7,7,12,7,9,8,13,9,13,13,22,12,11,8,11,7,8,7,12,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,-1,0,0,1,2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,4,3,4,3,4,4,6,4,5,5,8,6,8,7,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,9,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,7,7,12,7,8,7,12,8,11,11,23,12,12,9,13,8,10,8,14,8,9,7,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,8,5,6,5,13,7,7,5,7,5,6,6,10,6,7,7,12,8,11,11,19,10,10,8,12,7,9,7,12,7,8,7,11,7,10,9,12,7,7,5,7,5,7,7,12,7,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,12,9,15,9,12,12,22,13,15,13,23,16,23,23,41,21,21,14,21,12,14,12,21,11,11,8,13,9,12,11,22,12,12,9,13,8,9,8,14,8,9,7,10,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,13,13,16,8,8,6,9,6,7,6,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,6,6,10,6,7,7,12,8,11,11,24,12,12,9,13,8,9,8,13,7,7,5,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,7,12,7,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,6,11,8,11,11,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,4,5,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,4,2,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14 +1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,10,6,7,6,9,6,7,7,12,7,9,8,13,9,13,13,22,12,12,8,12,7,8,7,12,6,6,5,7,5,7,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,9,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,5,3,3,3,5,3,4,3,5,3,3,2,3,2,3,4,8,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,7,8,6,10,6,8,8,14,8,10,9,14,10,14,15,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,13,7,7,6,9,5,6,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,5,5,8,4,4,3,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,5,9,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,3,2,2,2,3,2,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,5,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,3,2,2,2,2,3,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,9 +2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,1,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,0,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,6,6,11,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,5,5,4,6,4,5,5,11,6,7,6,10,7,9,9,22,11,11,8,12,7,9,8,13,7,8,6,10,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,6,10,7,10,9,15,8,8,6,10,6,7,7,10,6,6,5,8,6,8,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,9,7,12,8,11,10,19,11,13,11,20,14,20,20,35,18,18,12,17,10,11,10,17,9,9,7,11,7,9,9,18,10,10,7,11,6,7,6,12,7,7,5,8,6,9,9,17,9,9,6,8,5,7,6,11,6,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,5,7,7,10,5,5,4,6,4,5,5,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,12,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,6,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,3,3,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,3,2,3,2,2,2,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,2,2,5,3,3,2,2,2,2,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,3,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12 +2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,6,9,5,6,4,7,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,4,6,4,4,4,8,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,8,4,5,4,7,5,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,14,14,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,3,3,4,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,7,7,5,7,4,5,5,7,4,5,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,6,6,1,1,2,1,2,1,1,1,3,2,2,1,2,2,2,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,14,8,8,6,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,4,4,4,5,3,4,4,8,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,11,10,18,11,13,11,19,13,20,20,33,17,16,11,16,9,11,9,15,8,9,7,11,7,10,9,17,9,9,7,9,5,6,6,11,6,7,6,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,9,5,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,8,5,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,1,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,6,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,7,5,8,5,6,6,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,10,10,18,11,13,11,19,13,20,20,32,16,16,11,16,9,11,9,15,8,9,7,11,7,9,9,16,9,9,6,9,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +4,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,7,14,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,7,6,10,7,10,10,3,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,2,2,-11,-5,-5,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,0,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,26,14,14,10,14,8,10,8,13,7,8,6,9,6,8,7,12,6,6,5,7,5,7,7,12,7,8,7,12,8,11,10,19,10,10,7,11,7,9,8,14,8,9,7,10,7,10,10,18,9,9,7,10,7,9,8,15,9,10,8,14,9,13,13,27,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,14,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,7,10,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,9,11,9,15,10,15,15,43,22,22,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,10,15,9,12,11,19,11,12,9,15,10,14,14,26,14,14,10,15,9,11,10,19,10,11,9,14,9,13,12,22,12,12,9,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,16,10,12,11,19,10,11,8,13,9,12,11,21,11,12,9,14,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,18,11,14,13,23,13,15,13,23,15,22,21,41,22,23,17,27,17,23,21,39,22,26,22,39,26,38,38,61,31,32,22,33,19,23,20,35,19,20,15,24,15,20,19,35,18,18,12,18,11,13,11,20,11,13,11,18,12,16,15,29,15,15,10,15,9,11,10,17,10,11,8,13,9,13,13,24,13,13,9,14,9,12,11,19,11,14,12,20,13,19,19,20,11,11,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,8,7,11,8,11,11,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,16,10,13,11,20,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,21,11,11,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,5,7,7,12,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,26,14,14,10,15,9,12,10,18,10,11,9,15,10,13,12,23,12,12,9,13,8,11,10,17,10,12,10,18,12,17,17,31,16,15,10,15,9,11,10,17,9,10,7,11,8,11,10,19,10,10,7,11,6,7,6,11,6,7,6,10,7,11,11,20,10,10,7,9,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,22,12,12,8,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,11,8,11,10,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,2,2,1,1,1,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,9,6,8,7,12,8,11,11,22 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,6,5,10,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,10,7,10,10,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,7,5,6,6,12 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,3,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,6,5,10,6,6,4,5,4,5,5,9,5,6,5,7,5,8,8,15,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,9,17,9,10,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,16,9,9,6,8,5,6,6,9,5,6,5,7,5,8,7,13,7,8,5,7,5,6,6,11,7,8,7,10,7,11,11,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,8,5,6,5,10,6,7,6,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,4,6,6,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,4,7,5,6,6,12 +2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,5,7,7,12,6,7,5,7,5,6,5,9,6,6,5,8,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,14,22,11,11,8,12,7,8,7,13,7,7,6,8,6,8,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,5,4,5,4,8,5,6,5,7,5,8,8,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-3,-1,0,1,1,1,2,2,1,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,14,7,7,5,7,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,5,10,6,7,5,8,6,9,9,15,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,8,4,4,3,5,4,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,6,5,8,5,6,5,8,6,8,8,24,13,13,9,14,8,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,9,9,6,9,5,6,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,15,8,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,6,5,9,7,10,10,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,23,13,14,10,16,10,13,12,21,12,14,12,20,14,21,21,33,17,17,12,17,10,12,10,19,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,10,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,7,6,11,7,8,6,10,7,11,11,12,7,7,5,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,5,7,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,7,6,10,6,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,4,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,5,8,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,4,3,4,3,3,2,5,3,3,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,4,5,4,7,5,7,7,14 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,8,5,5,4,5,3,3,3,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,-1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,2,2,2,2,10,6,6,4,6,4,4,3,6,3,3,2,4,2,2,2,5,3,3,3,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,6,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,17,9,10,7,10,6,6,5,9,5,6,4,6,4,6,6,12,6,6,5,8,5,5,4,7,5,6,4,6,4,6,6,13,7,6,5,6,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,7,12,6,6,5,8,5,6,6,10,6,6,5,10,7,9,9,18,10,10,8,11,7,10,9,15,9,10,8,15,11,16,16,23,12,12,8,12,7,8,7,13,7,7,5,9,6,7,7,14,7,7,5,7,5,6,5,7,4,4,3,5,4,6,6,12,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,4,4,3,5,4,6,5,8,4,4,3,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,6,4,6,6,10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,16,9,9,7,10,6,8,8,13,8,9,8,13,9,14,14,20,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,7,5,6,4,5,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,9,5,4,3,4,3,3,2,2,2,2,2,2,2,2,3,1,1,2,2,3,2,3,3,4,3,3,3,4,3,5,6,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,3,4,4,8,5,5,5,8,5,7,7,6,3,3,2,3,2,3,2,3,2,1,1,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,6,6,10,6,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,5,5,4,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,11,6,6,5,7,5,6,6,12,7,9,8,13,9,12,12,28,15,15,10,14,8,10,8,14,8,9,7,11,7,9,8,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,20,10,10,7,9,5,6,6,10,6,7,6,9,6,7,7,16,8,8,6,8,5,6,6,10,6,7,6,10,7,9,8,19,10,10,7,11,7,8,6,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,6,11,7,8,6,10,7,10,11,20,11,11,8,13,8,10,9,16,9,10,9,15,10,14,14,29,15,15,11,17,11,14,13,23,13,16,14,24,16,24,24,35,18,18,12,17,10,12,10,18,10,11,9,14,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,19,10,10,7,11,7,8,7,11,6,7,6,10,7,9,9,13,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,14,13,26,14,14,9,13,8,9,7,12,7,8,6,10,6,8,7,11,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,7,7,5,8,6,8,7,13,8,9,8,13,9,12,12,21,11,10,7,10,6,7,6,10,6,6,5,7,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,5,4,5,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,7,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,8,5,6,6,10,7,10,9,17 +1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,10,6,8,7,13,8,9,8,13,9,13,13,19,10,10,7,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10 +2,1,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,9,5,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,9,5,6,4,7,5,6,5,11,6,6,5,6,4,5,5,7,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,13,7,8,6,9,6,7,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,9,8,14,8,10,8,15,10,15,15,22,12,12,8,10,6,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,7,4,5,4,7,4,5,5,12,6,6,4,7,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,6,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,4,3,4,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,2,2,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,9,5,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,7,7,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,7,11,7,8,7,12,8,12,12,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9 +2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,5,4,6,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,13,7,8,6,9,6,7,6,9,5,6,4,6,4,6,6,10,5,5,4,6,4,6,6,11,6,7,6,10,7,11,11,18,10,11,8,12,7,8,7,13,7,8,7,12,8,12,12,23,12,12,9,14,9,12,11,18,10,12,11,19,13,19,19,29,15,15,10,14,8,10,8,13,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,10,6,7,5,8,5,7,6,16,9,9,6,8,5,5,4,9,5,6,5,7,5,8,8,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,3,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,12,7,7,5,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,5,6,5,9,6,9,9,17,9,9,6,8,5,6,5,7,4,5,4,6,4,4,4,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,16 +2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,4,8,5,5,5,8,5,7,7,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,19,10,10,7,9,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,5,4,5,4,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,7,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,4,5,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,11 +3,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,3,4,3,6,3,3,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,4,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,17,9,8,6,9,5,6,5,8,5,5,4,5,4,6,5,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,6,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,7,10,10,16,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,18,12,18,18,26,14,14,9,13,7,8,7,12,7,8,6,8,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,8,5,5,4,8,5,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,5,4,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,6,4,6,5,10,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,3,3,4,4,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,3,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,2,3,3,4,3,3,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,7,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,17,12,18,18,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,3,4,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,3,2,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,4,5,5,9,5,6,5,9,6,8,8,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,9,5,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,8,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,10,9,15,10,15,15,31,16,15,10,14,8,9,8,14,8,8,6,10,7,10,9,17,9,9,7,11,7,8,7,12,7,8,7,11,7,10,9,20,11,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,20,13,19,19,42,21,21,14,20,12,14,12,21,11,12,9,14,9,13,12,22,12,12,9,14,9,11,9,16,9,10,8,14,9,13,12,27,14,14,10,14,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,7,11,8,11,11,21,11,12,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,29,16,17,12,19,11,14,13,24,14,16,13,21,14,20,20,38,20,21,16,25,15,20,18,34,19,22,19,33,23,34,34,49,25,26,18,26,15,17,15,26,14,14,10,16,10,13,12,22,11,11,8,12,7,9,8,14,8,9,7,10,7,10,9,25,13,14,10,14,8,10,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,11,10,18,10,12,9,15,10,14,13,20,10,10,7,9,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,14,8,8,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,16,11,15,15,31,16,16,11,16,10,12,11,19,10,10,7,11,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,8,13,9,12,11,15,8,9,7,10,6,7,6,10,6,7,6,10,7,10,10,18,10,10,8,13,8,10,9,17,10,11,9,15,10,15,15,27,14,14,10,15,9,10,8,14,8,8,6,9,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,5,3,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,5,4,7,5,7,6,11,6,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,7,5,7,8,14,8,8,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,7,8,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,9,8,13,9,14,14,28 +2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,17,9,8,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,11,7,10,10,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,26,14,14,10,14,8,9,8,14,8,8,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,7,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,7,5,7,6,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,15 +2,2,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,6,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,3,5,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,9,9,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,9,5,6,5,6,4,4,4,7,4,5,4,7,5,6,5,12,6,6,4,7,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,7,6,12,7,8,7,11,8,11,11,24,13,13,9,13,8,9,8,12,7,7,6,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,12,9,14,9,12,11,19,11,12,11,18,12,18,19,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,4,3,4,4,9,5,4,3,5,3,4,4,4,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,6,3,3,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,5,6,5,7,5,7,6,9,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,6,4,4,3,3,2,2,2,3,2,3,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,5,8,5,5,3,4,3,3,2,4,3,3,2,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,2,4,3,4,4,6,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,16 +1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,5,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,13,9,14,14,20,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,10,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,5,4,6,6,11 +1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,12,7,7,5,7,4,4,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,6,4,5,5,8,5,7,6,10,7,10,10,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,6,8,7,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,12,8,11,11,19,10,10,8,12,8,10,9,14,8,9,7,12,8,12,12,24,13,14,10,16,10,14,13,23,13,15,12,21,14,21,21,31,16,16,11,16,9,11,9,17,9,10,7,10,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,13,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,5,11,7,8,7,11,8,11,10,20,11,11,8,12,7,9,8,12,7,8,6,9,6,7,7,10,5,5,4,6,4,4,4,8,5,5,4,5,4,5,5,11,6,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,6,6,5,7,4,5,4,8,4,4,3,5,4,5,5,10,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,3,5,4,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,4,3,6,3,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,8,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,17 +0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,5,3,4,4,9,5,5,4,5,4,5,4,5,4,4,4,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,9,8,14,8,9,8,13,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,8,5,5,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,11 +-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,2,2,2,2,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,7,4,5,4,4,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,6,5,6,4,6,5,8,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,7,5,6,5,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,23,12,12,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,11,10,19,11,12,10,18,12,18,18,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,9,5,4,4,5,3,4,3,4,3,4,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,7,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,5,6,6,9,5,6,5,7,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,4,8,5,5,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,13 +-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,10,5,5,4,6,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,5,8,5,5,4,5,3,4,4,4,3,3,3,5,4,5,5,8,5,5,5,8,6,8,8,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,0,-1,-1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,13,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,13,7,8,6,9,6,7,7,13,8,9,8,13,9,13,13,29,15,16,11,16,9,11,9,16,9,9,7,10,6,8,8,14,8,9,7,10,6,8,7,12,7,8,7,11,7,9,9,19,10,10,7,11,7,9,8,14,8,9,7,10,6,8,8,18,10,10,8,13,8,10,10,18,10,12,10,18,12,18,18,41,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,24,13,14,10,15,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,13,8,10,9,16,9,10,8,12,8,10,10,20,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,24,13,13,9,14,9,11,9,16,9,10,8,13,8,11,11,18,10,10,8,12,8,11,10,18,10,12,10,16,11,16,16,30,16,16,12,18,11,14,12,21,12,14,11,19,13,18,17,31,17,18,14,22,14,19,17,32,18,22,18,32,22,32,32,43,22,22,15,22,13,15,13,22,12,12,9,13,9,12,11,22,12,12,8,11,7,8,7,12,7,7,6,10,7,10,9,21,11,11,8,12,7,9,8,13,7,7,6,9,6,9,9,15,8,9,7,10,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,4,3,4,4,7,5,6,6,14,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,10,6,8,8,14,8,9,8,14,10,14,15,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,15,8,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,8,6,8,5,5,5,8,5,6,5,7,5,6,6,13,7,8,6,9,6,7,6,11,7,8,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,14,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,9,7,12,8,10,9,16,9,11,9,16,11,16,16,19,10,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,3,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,7,7,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,7,5,8,5,5,5,8,5,5,4,7,5,6,5,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,8,7,11,8,12,12,24 +-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,9,5,6,4,5,4,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,2,3,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,7,10,11,23,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,14,8,8,6,9,6,7,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,7,6,9,5,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,18,12,18,18,24,12,13,9,12,7,9,7,12,7,7,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,5,8,6,8,9,16,9,9,6,9,6,7,6,9,5,6,4,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,7,5,6,5,10,6,7,6,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,5,4,6,5,9,5,4,3,5,3,3,3,5,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,6,9,6,7,7,13,7,8,7,13,9,12,13,27,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,7,10,6,8,7,11,6,7,6,10,7,9,9,15,8,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,11,6,6,5,9,6,8,8,17,9,9,6,9,6,8,7,10,6,6,5,8,6,8,8,12,7,8,6,8,5,7,7,12,7,8,6,11,8,11,11,20,11,11,8,12,8,10,8,15,9,10,8,12,8,12,12,21,12,13,10,15,9,12,11,22,13,15,13,22,15,22,22,27,14,15,10,14,8,10,8,14,8,8,6,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,10,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,6,4,5,4,8,5,5,4,6,5,7,7,11,6,7,5,8,5,6,6,12,7,8,7,11,7,10,11,13,7,7,5,7,4,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,4,5,4,5,5,9,5,5,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,4,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,5,4,8,5,7,7,14,8,8,5,7,5,6,6,8,5,5,4,7,5,7,7,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,10,11,8,12,8,10,9,18,10,12,10,18,12,18,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,4,6,4,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,2,2,2,1,1,1,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,17,9,10,7,10,6,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,6,6,11,6,6,5,8,6,9,9,15,8,8,6,9,5,5,4,7,4,4,4,6,4,6,6,13,7,7,6,9,6,8,7,13,8,9,8,13,9,14,14,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,11,7,10,10,19,10,10,8,12,7,9,7,12,7,8,6,10,7,10,9,17,10,11,8,13,8,11,11,19,11,13,11,18,13,19,19,39,20,20,14,20,12,14,12,20,11,11,9,14,9,12,12,24,13,13,9,14,8,10,9,17,10,11,9,14,9,13,13,23,12,12,9,13,8,10,9,16,9,10,8,12,8,11,10,20,11,12,9,13,8,10,9,14,8,10,8,13,9,13,12,24,12,12,8,12,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,18,10,12,9,15,10,15,15,30,16,16,12,18,11,13,12,21,12,14,11,18,12,17,17,30,16,18,13,21,13,18,16,32,18,22,18,32,22,32,32,39,20,20,14,20,11,13,11,19,10,11,9,14,9,12,11,22,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,9,9,14,8,9,7,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,9,7,10,6,8,7,11,7,8,7,11,8,11,11,18,9,9,7,10,6,8,7,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,14,8,9,7,10,7,9,8,17,10,12,10,16,11,15,15,17,9,9,6,9,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,6,4,5,5,8,6,8,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,4,4,6,4,5,5,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,7,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,4,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,12,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,6,5,9,6,6,6,9,6,10,10,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,7,9,8,16,9,9,6,9,6,7,6,12,7,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,6,10,6,7,6,9,6,9,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,13,7,7,6,8,6,7,7,12,7,8,6,11,8,11,11,21,11,11,8,12,8,9,8,14,8,9,7,12,8,12,11,21,11,12,9,15,9,12,11,22,12,15,12,22,15,22,22,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,6,4,4,4,7,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,16 +-3,-1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,6,4,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,12,7,8,7,12,7,8,7,11,7,9,9,17,9,10,8,13,9,12,11,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,9,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,38,20,20,14,20,12,14,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,9,8,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,12,6,6,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,7,11,7,8,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,17,9,9,7,10,6,6,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,8,6,8,9,16,9,9,7,10,6,8,7,11,6,7,5,9,6,9,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,6,4,4,4,6,4,4,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,7,9,9,17,9,10,8,13,8,11,10,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,22,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,8,14,8,9,7,11,8,11,11,19,10,11,8,13,8,11,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,20,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,31,18,21,18,32,22,32,32,37,19,19,13,20,11,13,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,11,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,9,16,9,9,7,10,6,7,6,11,6,7,5,9,6,8,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,4,4,3,5,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,23,12,13,9,13,8,9,7,12,7,8,7,11,7,10,9,16,9,10,8,12,8,10,9,15,9,10,8,14,9,13,13,24,12,12,9,13,7,8,7,12,7,7,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,12,23,12,12,9,13,8,10,9,16,9,9,7,12,8,11,11,20,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,27,15,18,15,26,18,26,26,52,27,27,18,26,15,19,16,29,16,17,14,23,15,22,21,40,21,21,15,24,15,19,17,31,17,20,16,28,19,27,27,53,27,27,19,28,16,20,17,30,17,19,15,24,15,21,21,40,21,23,17,26,16,22,21,39,22,26,22,40,27,39,39,76,39,39,27,40,23,28,23,41,22,23,18,29,19,26,24,46,24,24,17,26,16,20,17,31,17,19,15,25,17,24,24,47,24,24,17,25,15,18,15,27,15,17,13,22,15,21,21,40,21,22,16,26,16,22,21,41,23,28,23,40,27,39,39,76,38,38,26,39,23,28,24,44,23,25,19,31,20,27,26,50,26,28,20,31,18,23,21,38,21,24,19,32,21,30,30,59,30,31,22,33,20,26,23,43,23,26,21,35,23,33,32,62,33,35,26,42,26,35,33,63,35,42,35,63,42,62,62,73,37,37,25,37,21,26,22,38,20,22,17,27,17,24,23,45,23,24,17,26,16,20,18,32,18,20,16,28,19,27,27,53,27,27,19,29,17,21,18,31,17,18,14,22,14,18,17,33,17,18,13,21,13,16,15,28,16,19,16,28,19,28,28,55,28,28,19,28,16,20,17,31,17,18,14,22,14,20,19,36,19,19,14,22,14,18,16,29,16,18,14,24,16,23,23,44,23,23,16,25,15,19,16,29,16,18,14,23,15,20,20,38,20,21,15,23,14,19,18,33,18,21,17,30,20,29,28,54,28,28,19,28,16,19,15,26,14,15,11,18,12,16,15,29,15,15,11,17,10,13,12,21,12,13,10,15,10,14,14,27,14,14,10,14,9,11,9,16,9,10,8,12,8,11,11,20,11,11,8,13,8,11,11,21,12,15,13,23,16,23,23,44,22,22,15,22,13,16,14,25,14,15,12,19,12,17,17,32,17,18,13,20,12,15,14,25,14,17,14,23,16,23,23,45,23,23,16,23,14,17,15,26,14,15,12,19,13,18,17,32,17,18,13,20,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,13,12,21,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,8,10,9,17,9,9,6,7,4,5,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,9,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,14,8,10,8,14,8,9,7,11,8,11,11,20,11,11,8,12,7,9,8,14,8,9,8,13,9,12,11,21,11,12,9,14,9,11,10,17,10,11,8,13,9,13,12,23,12,13,10,17,11,14,13,24,13,15,13,22,15,21,21,41,21,22,15,23,13,16,13,23,12,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,22,14,20,20,38,19,19,13,20,11,13,11,20,11,11,9,14,10,14,13,25,13,14,11,17,10,13,12,23,13,16,14,24,16,24,24,46 +-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12,6,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,8,9,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,10,9,15,9,10,8,13,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,16,9,10,8,13,9,13,13,24,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,11,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,30,16,16,12,17,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,19,13,19,11,13,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,9,16,9,10,8,12,8,10,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,19,10,11,8,12,8,10,9,17,10,11,9,15,10,15,15,28,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,12,8,12,8,9,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,5,9,6,6,5,7,5,7,6,12,6,7,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,13,9,12,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,15,9,10,8,12,9,13,13,23,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,12,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,31,16,16,12,18,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,18,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,28,14,14,10,15,9,10,9,16,9,10,8,12,8,10,9,18,10,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,15,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,7,9,6,8,7,11,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,13,9,12,12,24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,12,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,4,3,4,3,4,3,4,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,9,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,8,6,9,6,8,7,14,8,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,12,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,7,5,8,6,7,7,14,8,8,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,26,14,14,10,14,8,10,8,15,8,8,6,10,7,9,9,16,8,9,6,9,6,7,6,10,6,7,6,8,6,9,9,16,8,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,9,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,18,10,10,8,11,7,9,8,13,8,9,7,12,8,11,11,21,11,11,8,12,8,9,8,15,8,10,8,12,8,12,12,21,11,12,9,15,9,12,12,21,12,15,12,22,15,21,21,25,13,12,8,12,7,8,8,13,7,8,6,10,6,8,8,16,8,9,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,6,8,6,7,6,12,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,6,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,4,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,11,7,10,10,13,7,7,5,7,4,5,4,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,9,5,6,5,9,6,8,8,16 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,18,9,9,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,26,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,21,11,12,9,13,8,11,10,17,10,11,9,15,10,14,14,28,15,15,11,16,9,11,10,15,9,10,8,12,8,12,12,22,12,13,9,14,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,12,14,12,22,12,12,9,15,10,13,12,23,12,13,9,14,9,11,9,15,8,9,7,12,8,12,12,23,12,13,9,13,8,9,8,15,9,10,8,12,8,12,11,21,11,12,9,14,9,12,12,21,12,14,12,20,14,20,20,37,19,20,14,20,12,15,13,21,11,12,10,16,11,15,14,27,14,14,10,16,10,12,11,20,11,12,10,17,11,16,16,32,17,17,12,18,11,14,12,22,12,14,11,18,12,18,17,30,16,18,13,21,13,18,17,31,18,21,18,32,21,31,31,37,19,18,12,18,11,13,11,19,11,12,9,14,9,12,11,23,12,12,9,14,8,10,9,16,9,11,9,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,11,7,10,9,18,10,10,7,11,7,8,8,15,9,10,9,16,11,15,15,27,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,22,12,12,9,13,8,9,8,13,7,8,6,10,7,10,10,19,10,11,8,12,8,10,9,17,9,10,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,9,7,10,6,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,5,7,7,10,6,7,5,8,5,7,7,10,6,7,7,12,9,13,13,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,9,17,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,10,10,16,9,10,7,11,7,9,8,15,9,10,9,16,11,15,15,19,10,10,7,10,6,7,6,12,7,7,5,7,5,6,5,10,5,5,4,6,4,5,5,7,5,6,5,8,5,7,6,9,5,5,4,5,3,4,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,5,5,4,6,4,5,4,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,14,7,7,5,8,6,8,7,11,6,7,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,7,7,5,8,5,6,6,13,8,9,7,12,8,12,12,24 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,11,6,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,7,6,9,6,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,7,12,8,12,12,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,8,16,8,8,6,9,6,7,6,12,7,7,6,10,6,9,9,18,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,21,11,10,7,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,7,9,5,6,5,9,5,5,4,7,4,6,5,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,9,6,6,6,10,7,9,9,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,-2,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,4,2,2,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,13,7,6,4,7,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,6,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,8,16,9,9,7,9,5,6,6,11,6,6,5,9,6,8,9,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,15,8,8,6,10,7,9,9,15,9,10,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,19,10,10,7,11,7,9,8,14,8,8,7,11,7,10,10,21,11,12,8,12,8,10,9,14,8,9,7,12,8,12,12,20,11,12,9,14,9,12,12,21,12,14,12,22,15,21,21,25,13,12,8,13,8,10,8,13,7,8,6,9,6,8,8,16,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,11,6,7,6,11,6,6,5,8,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,9,7,10,10,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,8,6,8,5,6,6,11,7,8,7,12,8,11,11,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,4,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,16 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,7,4,6,6,11,6,7,5,7,4,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,5,5,9,5,6,5,8,5,7,8,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,13,7,7,6,9,6,8,7,13,8,9,8,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,6,9,6,8,7,12,7,7,6,9,6,8,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,4,4,4,5,4,5,5,10,6,6,4,7,4,5,5,9,6,6,5,8,6,8,8,18,9,9,7,10,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,-2,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,6,5,7,5,6,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,7,7,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,7,4,5,4,6,4,4,4,6,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,18,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,8,6,10,6,8,8,14,8,9,7,12,8,12,12,25,13,13,10,15,9,11,10,17,9,10,7,11,7,9,9,19,10,11,8,13,8,10,9,16,9,11,9,16,11,15,15,28,14,14,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,12,9,15,9,12,11,20,11,13,11,19,13,20,20,38,19,19,13,20,12,14,12,20,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,12,12,8,12,7,9,8,15,8,9,7,11,7,10,10,24,13,14,11,17,11,14,13,23,13,15,12,21,14,21,20,38,19,19,13,20,12,15,13,22,12,14,11,17,11,15,14,29,15,16,11,16,10,13,11,20,11,12,9,15,10,14,14,32,17,18,13,19,11,13,11,20,11,13,11,18,12,17,17,29,16,17,13,20,13,18,17,32,18,21,18,31,21,30,30,35,18,18,12,18,11,13,11,20,11,12,9,15,9,12,11,24,13,13,9,13,8,10,8,14,8,9,8,13,9,12,12,30,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,10,14,8,9,8,14,8,9,7,10,7,10,10,16,9,9,7,11,7,9,8,13,8,9,7,12,8,11,11,20,10,10,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,12,7,9,8,15,9,10,8,14,10,15,15,31,16,16,11,17,10,12,10,17,9,10,8,12,7,9,9,16,9,9,7,11,7,8,7,12,7,8,6,10,7,9,8,13,7,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,9,8,14,8,9,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,24,13,14,10,15,9,10,9,16,9,10,8,12,8,10,9,19,10,11,8,12,8,11,10,18,10,12,10,17,11,16,16,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,8,5,6,5,8,5,7,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,5,5,9,5,4,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,7,7,12,7,8,7,11,8,11,12,24,13,13,9,14,8,10,8,14,8,8,6,9,6,9,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,11,11,22,12,12,8,11,7,8,8,14,8,9,7,11,7,9,9,14,8,8,6,9,6,7,6,11,7,9,8,13,9,13,13,25 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,20,10,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,20,10,11,8,11,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,17,9,10,7,10,6,7,6,11,6,7,6,10,7,9,9,15,8,9,7,11,7,10,9,17,10,11,10,17,11,16,16,18,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,6,9,9,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,7,5,7,7,13 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,5,6,6,10,6,6,5,6,4,6,5,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,7,5,6,6,9,5,6,4,7,5,6,6,14,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,21,11,12,8,11,7,8,7,12,7,7,6,9,6,8,8,16,9,9,6,9,6,7,6,11,6,7,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,6,10,7,10,10,16,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,19,10,10,7,10,6,7,7,12,6,6,5,8,5,6,6,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,17,9,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,6,9,5,6,5,8,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,5,4,6,6,9,5,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,5,7,5,8,8,13,7,8,6,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,4,6,4,6,7,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,13,7,7,5,6,4,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,14 +-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,8,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,4,5,5,7,4,5,4,5,4,5,5,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,15,8,9,6,9,5,6,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,7,7,14,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,4,3,5,5,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,4,3,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,9,7,10,6,8,8,15,9,10,8,14,10,14,14,26,13,13,9,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,6,8,5,6,6,9,5,6,5,8,6,8,9,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,17,9,9,7,11,7,9,9,15,9,10,9,16,11,15,15,24,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,19,10,10,7,10,6,7,7,13,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,7,11,7,10,10,20,11,12,9,13,9,12,11,22,13,15,13,22,15,21,21,23,12,12,9,13,8,9,8,13,7,8,6,8,6,8,7,15,8,8,6,8,5,6,6,9,5,6,5,8,6,9,9,22,12,12,8,12,7,9,7,10,6,7,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,5,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,16,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,7,7,14,8,10,8,14,9,12,12,13,7,8,6,8,5,5,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,5,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,5,8,5,6,6,8,5,5,5,8,6,8,8,18,9,9,7,10,6,6,5,11,6,6,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,5,4,7,5,7,6,10,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,17 +-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,9,6,6,6,10,7,10,10,15,8,8,6,9,6,7,6,10,6,6,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,6,4,7,5,7,7,13,7,7,5,8,5,5,5,9,5,5,4,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,14,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,13,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,14,9,13,13,20,11,11,8,12,7,9,8,13,7,8,6,9,6,9,9,16,9,9,6,9,5,6,6,11,7,8,6,9,6,9,9,17,9,9,7,10,6,7,6,12,7,7,6,9,6,9,9,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,18,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,5,7,7,18,10,10,7,10,6,8,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,10,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,5,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,15 +-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,13,9,12,12,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,17,17,18,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,9,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,10,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,6,14,8,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,14 +-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,17,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,15,8,7,5,7,4,4,4,6,3,3,3,4,3,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,7,6,11,7,10,10,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,23,12,13,9,14,8,10,9,15,9,10,8,14,9,13,12,22,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,22,13,15,13,22,12,13,10,15,9,12,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,12,12,21,11,11,8,13,8,9,8,14,8,9,8,14,9,13,13,24,13,14,11,17,11,14,13,24,14,16,13,23,16,23,22,36,19,19,13,20,12,14,12,21,12,13,10,16,11,15,15,28,15,15,11,16,10,12,11,21,12,13,10,17,11,16,16,29,15,15,11,16,10,13,11,20,11,13,10,17,11,15,15,28,15,17,13,20,13,17,17,32,18,22,18,32,22,32,32,35,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,7,9,8,15,9,10,8,12,8,12,12,31,16,17,12,18,10,12,11,19,10,11,8,13,9,12,11,20,11,11,8,12,8,10,9,17,10,12,10,16,10,14,14,23,12,12,9,14,8,9,8,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,31,16,16,11,16,9,10,8,13,7,8,6,9,6,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,17,9,9,7,11,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,13,9,13,13,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,6,10,7,10,10,28,14,14,10,14,8,10,8,14,8,10,8,13,8,11,11,20,11,12,9,13,8,10,10,18,11,13,11,18,12,18,18,19,10,10,7,10,6,7,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,4,7,7,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,8,5,6,5,7,5,8,8,9,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,9,7,12,7,7,6,10,7,9,8,14,8,9,7,11,7,9,8,14,8,9,8,14,10,14,14,27 +-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,17,17,18,9,9,7,10,6,6,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,6,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,7,4,6,6,11,6,7,5,7,5,6,6,9,6,7,6,9,7,10,10,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,10,6,6,4,5,3,4,3,4,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,12,7,8,6,9,6,7,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,6,9,6,7,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,16,9,10,8,12,8,10,10,16,10,12,10,17,12,18,18,18,9,9,7,10,6,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,17,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,9,5,6,5,9,7,10,10,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,5,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,12,7,7,5,6,4,4,4,5,3,3,2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,8,8,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,5,10,5,5,4,5,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,5,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,8,5,7,7,13,8,9,7,12,8,12,12,26,13,13,9,13,8,9,8,12,7,8,6,9,6,7,7,13,7,7,5,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,6,8,7,13,8,9,7,12,8,12,12,21,11,10,7,10,6,7,6,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,12,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,18,10,10,8,13,8,11,10,17,10,12,10,18,13,19,19,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,7,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,5,5,9,5,6,5,8,5,7,7,18,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,6,5,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,14,8,8,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,10,6,7,6,10,8,12,12,12,6,6,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,2,2,2,2,3,3,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,7,12,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,17 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,8,5,5,4,5,4,5,4,8,5,6,5,7,5,7,7,16,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,8,5,7,6,10,6,7,6,11,8,11,11,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,5,4,6,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,5,9,5,6,5,7,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,21,11,11,8,10,6,8,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,7,6,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,13,7,8,6,10,6,8,8,13,8,9,8,13,9,14,14,15,8,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,5,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,5,8,5,5,4,7,5,6,5,8,5,6,5,8,6,9,9,9,5,4,3,5,3,3,3,5,3,2,2,3,2,2,2,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,7,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,5,3,3,2,2,2,3,3,4,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,3,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,4,6,4,4,4,7,5,8,8,17,9,9,6,9,6,7,6,9,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,8,8,14,8,10,9,15,10,15,15,34,18,18,12,17,10,11,9,16,9,9,7,10,7,9,9,15,8,9,7,10,6,8,8,14,8,9,7,11,8,11,11,18,9,9,6,9,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,28,14,14,10,15,9,10,8,14,8,10,8,13,8,11,11,18,10,10,8,13,8,10,9,16,9,11,9,15,10,13,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,10,21,11,12,10,16,10,13,12,22,12,14,12,21,15,22,22,25,13,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,8,5,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,15,8,9,7,10,6,8,7,12,7,7,6,10,7,10,9,12,7,7,5,7,5,6,5,8,5,5,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,6,7,6,10,6,6,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,7,5,8,5,6,5,8,5,6,5,9,6,9,9,17,9,9,7,11,7,8,7,12,7,8,6,9,5,6,6,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,5,6,6,10,6,7,5,8,6,8,8,13,7,8,7,11,7,9,8,15,9,10,8,14,10,15,15,16,8,8,6,8,5,6,5,7,4,4,4,6,4,5,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,5,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,3,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,5,5,9,6,8,8,17,9,9,6,8,5,7,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22 +-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,7,4,4,3,4,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,6,4,7,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,12,6,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,8,7,5,7,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,3,4,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,5,8,5,6,6,10,7,10,9,22,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,14,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,7,4,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,5,4,6,4,4,3,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,7,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11 +-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,2,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,11,6,5,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,14,8,9,7,10,6,8,7,14,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,17,9,8,6,8,5,6,6,12,7,7,6,10,7,9,9,16,9,9,7,10,6,7,6,13,8,10,8,14,10,14,13,24,13,13,9,14,8,10,8,12,7,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,8,7,13,8,9,7,11,7,9,9,17,9,10,8,12,8,11,10,19,11,13,11,18,12,18,18,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,9,6,7,6,9,6,9,9,15,8,8,6,10,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,7,11,6,6,5,8,6,8,7,13,8,10,8,14,10,14,14,17,9,9,6,9,5,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,8,6,9,5,6,5,8,4,4,3,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,18 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,7,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,20,10,11,8,10,6,7,6,9,5,6,5,7,4,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,12,6,7,5,8,5,7,7,13,8,9,7,12,8,12,12,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,11,6,6,5,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,4,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,3,3,4,4,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,5,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,29,15,15,10,14,8,10,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,10,6,6,6,10,6,8,8,16,8,8,6,8,5,7,6,11,6,7,5,9,6,9,8,16,9,9,6,10,6,7,7,12,7,8,7,12,8,12,12,22,12,12,8,13,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,11,7,10,9,17,9,10,7,11,7,10,9,18,10,12,10,17,12,17,17,24,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,14,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,5,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,4,6,6,9,5,6,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,28,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,9,6,6,6,9,6,8,8,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,10,6,7,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,5,4,5,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,8,5,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,14,10,14,14,16,8,9,6,9,5,6,5,8,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,6,6,9,6,9,9,17 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,2,2,3,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,9,5,6,5,7,5,8,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,-3,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,18,9,9,7,10,6,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,20,11,13,11,20,13,19,19,55,28,28,19,28,16,19,16,28,15,16,12,20,13,18,17,33,17,18,12,18,11,14,12,22,12,14,11,17,11,16,16,30,16,16,11,17,10,12,11,20,11,12,9,15,10,13,12,23,12,13,10,15,9,12,11,21,12,14,12,22,15,22,22,41,21,22,15,22,13,15,13,23,12,13,10,16,10,12,11,21,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,37,19,19,13,19,12,15,13,23,13,15,12,21,14,20,20,38,20,21,15,24,15,19,18,34,19,23,19,33,22,33,32,45,23,23,16,25,14,17,14,25,14,15,11,17,10,13,12,23,12,12,8,12,7,9,8,15,9,10,9,15,10,14,14,27,14,13,9,13,8,9,8,13,7,7,6,9,6,9,8,15,8,9,6,9,5,6,5,9,5,6,5,9,6,8,8,16,8,8,5,7,4,5,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,6,10,7,10,10,30,15,15,11,16,10,12,10,17,9,9,7,11,7,9,9,17,9,9,6,8,5,6,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,10,9,15,10,14,14,25,13,14,10,14,8,9,8,14,8,9,8,13,8,11,11,20,11,12,9,14,8,10,9,17,9,10,8,14,10,14,14,26,14,14,10,14,9,12,11,19,11,12,10,16,11,15,15,28,15,16,12,19,12,16,16,30,17,20,16,28,19,28,27,31,16,16,11,15,9,11,10,17,10,11,8,13,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,7,9,8,15,8,7,5,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,6,6,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,15,8,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,5,5,8,5,7,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,7,11,7,9,8,15,8,9,8,13,9,12,12,25,13,13,9,12,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,16,9,9,6,9,6,8,8,14,8,9,7,12,8,11,10,18,10,11,8,13,8,10,9,16,10,12,10,18,12,18,17,33 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,5,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,9,17,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,6,6,11,7,8,7,11,8,11,12,21,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,23,12,12,9,13,8,9,8,13,7,8,6,9,6,7,6,12,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,9,5,6,4,5,4,5,5,7,4,5,4,7,5,6,6,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,10,18,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,12,20,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,24,12,12,9,14,8,10,8,13,7,8,6,9,6,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,8,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,4,8,5,5,4,6,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,2,4,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,13,8,9,7,12,8,12,12,16,9,9,6,10,6,7,6,9,5,6,4,6,4,5,4,8,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,5,5,8,4,4,3,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,13 +-2,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,-1,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,7,4,5,4,5,4,5,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,7,4,5,5,11,6,7,6,10,7,10,10,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,6,7,6,11,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,8,12,7,9,8,13,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,11,18,12,18,18,24,13,13,9,14,8,10,8,14,8,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,5,5,8,5,7,7,15,8,8,5,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,5,5,8,6,9,9,13,7,7,5,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,13,7,7,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,10,7,9,9,15,9,11,9,16,11,16,16,16,9,9,6,8,5,6,6,10,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,7,6,10,7,10,10,19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,4,3,5,4,5,6,8,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,11 +-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,2,2,2,3,4,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,4,3,3,3,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,5,3,4,5,6,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,22,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,7,11,7,8,8,14,8,9,8,13,9,13,13,17,9,9,7,9,5,6,6,9,5,5,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,3,6,4,6,5,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,10,5,5,4,5,3,4,3,5,3,4,3,6,4,5,5,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,4,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14 +-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,10,6,6,4,7,4,5,5,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,7,7,12,7,7,5,6,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,5,4,4,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,1,1,2,1,1,1,2,1,1,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,3,6,4,6,5,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,4,3,5,4,5,4,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,7,8,4,4,3,5,4,5,5,10,6,7,7,12,8,12,11,34,18,18,12,17,10,12,10,18,10,11,8,13,8,10,9,22,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,14,8,8,6,10,6,7,6,11,6,7,6,9,6,8,7,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,6,13,7,8,6,10,6,8,7,12,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,23,13,14,10,16,10,13,12,22,13,15,12,20,14,20,20,26,14,14,10,15,9,10,8,14,8,9,7,10,6,8,7,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,15,8,8,6,9,5,6,5,7,4,5,4,5,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,10,16,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,9,5,6,5,8,5,7,6,10,6,6,5,9,7,10,10,15,8,8,6,8,5,7,6,10,6,6,5,9,6,9,8,19,10,11,8,13,8,10,9,16,10,12,10,17,12,18,18,17,9,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,5,10,6,7,5,8,5,6,6,11,7,8,7,12,8,11,11,21 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,7,5,7,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,4,4,6,4,4,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,11,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12 +-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,20,11,11,7,10,6,7,6,10,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,6,4,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,8,6,8,8,13,7,8,6,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,16,8,8,6,9,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,5,12,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,5,3,4,4,5,3,3,3,5,3,4,3,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,13 +0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,12,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,5,4,9,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,6,10 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,4,6,5,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,2,1,1,1,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,5,3,3,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,11,6,5,4,5,3,3,3,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,10,6,7,6,10,7,10,9,24,12,12,9,13,8,9,8,13,7,8,6,10,7,9,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,15,8,9,6,9,6,7,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,7,8,6,10,7,9,9,15,8,9,7,10,6,7,6,12,7,9,7,12,8,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,20,10,10,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,6,4,4,3,5,4,5,5,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,5,10,6,7,6,9,6,7,7,14,8,8,6,9,6,8,7,11,7,8,7,12,9,13,13,14,7,7,5,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,9,9,17 +0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,6,7,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,4,5,9,6,7,6,9,6,8,8,21,11,12,8,12,7,9,7,12,7,8,6,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,9,13,7,8,6,9,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,12,8,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,8,5,8,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,9,6,7,6,10,6,7,6,11,8,12,12,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16 +-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,16,9,10,7,11,7,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16 +-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,7,5,8,8,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,6,4,6,6,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,3,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,1,1,1,0,0,0,1,1,1,2,2,2,1,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,16,9,9,6,8,5,7,6,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,5,9,5,6,4,6,4,6,6,12,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,39,20,21,14,21,12,15,12,21,11,12,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,15,10,14,14,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,23,12,13,10,15,9,11,10,19,11,12,10,17,11,16,16,31,16,17,13,21,13,17,15,27,15,18,15,27,18,27,28,32,17,17,12,17,10,12,10,18,10,10,7,11,7,9,8,15,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,7,4,4,3,3,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,5,5,11,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,13,7,8,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,6,4,4,4,7,5,6,6,13,7,7,5,7,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,7,14,8,10,8,13,8,11,11,24,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,22,12,13,10,16,10,14,13,23,13,15,12,21,14,21,21,21,11,11,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,6,4,5,3,3,3,5,3,4,3,5,4,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,6,7,7,4,4,3,4,2,2,2,2,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,1,6,4,4,3,3,2,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,2,2,3,3,5,3,3,2,3,3,4,4,7,5,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,15,15,30 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,6,8,5,6,6,10,6,6,5,8,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,4,4,8,5,6,6,9,6,9,9,13,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,14,8,10,8,14,10,14,15,17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,6,8,7,12,7,8,7,11,8,11,11,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,4,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,8,8,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,4,3,4,4,6,4,5,4,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,6,4,6,4,4,4,9,5,6,6,10,7,10,9,14,7,7,5,9,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,15,9,10,8,15,10,15,16,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,8,5,7,7,8,4,4,3,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,5,4,8,5,6,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,12,6,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,16 +0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,7,5,6,6,15,8,9,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,7,4,5,5,8,5,7,7,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,7,6,11,7,8,6,11,8,11,12,14,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,6,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,11 +-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,6,5,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,7,4,4,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,4,10,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,6,10,7,10,9,24,13,13,9,14,8,9,8,12,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,5,9,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,11,7,8,7,12,8,11,11,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,17,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,4,3,7,4,4,3,5,4,5,4,7,4,4,4,6,4,5,4,9,5,6,5,9,6,9,8,14,7,7,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,7,10,6,8,8,14,8,9,7,12,9,13,14,12,7,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,6,3,3,2,3,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,8,5,5,4,7,5,6,6,8,5,6,5,9,6,9,9,17 +0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,9,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,7,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,4,4,6,4,6,6,10 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,4,3,4,3,5,4,5,4,6,3,3,2,4,3,4,4,7,4,4,4,7,5,8,7,19,10,11,8,11,7,8,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,13,9,14,14,18,10,10,7,10,6,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,7,6,11,7,8,7,10,7,11,11,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,6,5,7,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,14,8,9,7,10,6,8,8,14,8,9,8,12,9,13,13,17,9,9,6,9,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12 +-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,2,3,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,3,2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,10,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,5,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,9,5,6,5,7,5,6,5,9,6,7,6,9,7,10,10,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,8,14,8,9,7,12,8,12,11,18,9,9,6,9,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,13,13,26,14,14,10,16,10,12,10,18,10,12,9,15,10,13,13,26,14,16,12,19,12,16,14,26,14,16,13,23,16,24,24,32,16,16,11,16,9,11,9,16,9,10,8,12,7,9,9,16,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,6,4,4,4,6,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,5,5,4,6,4,6,6,10,6,8,7,12,8,11,11,20,11,11,8,12,7,9,7,12,7,8,7,11,7,10,10,22,12,13,10,15,9,12,10,18,10,12,10,18,13,19,19,17,9,9,6,8,5,7,6,10,6,6,5,7,4,5,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,2,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,23 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,19,10,9,6,9,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,8,10,8,13,9,14,14,18,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,7,5,7,7,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,6,9,6,7,6,10,6,7,6,11,8,11,11,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,7,5,7,7,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,7,5,8,8,13,7,7,5,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,7,13,7,8,5,7,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,6,9,5,6,5,10,7,10,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,16,11,16,16,21,11,11,8,11,7,8,7,11,6,6,5,9,6,8,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,3,2,2,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,7,6,12,7,8,7,13,9,12,13,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,7,5,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,18,10,10,7,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,11,8,10,11,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,2,2,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,8,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,6,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,6,6,9,6,7,6,10,7,10,10,31,16,16,11,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,9,6,7,6,13,7,8,6,10,7,10,10,18,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,6,9,6,8,7,11,7,8,6,10,7,10,10,19,10,10,7,11,7,9,8,12,7,8,6,9,6,8,8,15,8,9,7,10,7,9,8,12,7,9,8,13,9,13,13,24,13,13,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,10,16,10,13,13,25,14,17,14,24,16,24,23,32,16,16,11,16,9,11,10,16,9,9,7,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,6,10,7,10,10,18,9,9,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,10,7,10,10,18,10,11,8,12,7,9,9,18,11,13,11,19,13,19,19,16,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,5,5,9,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22 +-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,9,5,6,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,16,9,9,6,10,6,7,7,11,6,7,6,10,6,9,9,17,9,10,7,11,7,9,9,17,10,11,9,16,11,16,16,22,11,11,8,11,7,8,7,11,6,7,5,8,6,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,12,7,7,6,8,5,7,6,12,7,9,8,13,9,13,13,11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,1,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,6,9,7,10,10,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,13,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,11,7,8,7,11,8,12,12,23 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,14,8,8,5,7,4,5,4,8,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,8,7,11,8,12,12,23 +-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,5,4,6,7,14,8,8,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,14,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,6,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,9,6,8,8,16,9,9,7,12,7,9,9,16,9,10,8,14,9,13,12,23,12,13,10,15,9,12,12,22,12,14,11,19,13,18,18,62,31,31,21,31,18,22,19,33,17,18,14,22,14,18,17,32,17,18,13,20,12,16,14,26,15,17,13,22,15,22,22,43,22,23,16,24,14,17,15,26,14,16,12,19,12,16,16,30,16,16,12,18,11,14,13,23,13,15,13,22,14,20,20,38,20,20,14,20,12,14,13,23,12,13,10,17,11,14,13,24,13,13,10,16,10,12,11,20,11,13,11,19,13,19,18,35,18,19,13,19,12,15,13,24,14,16,13,21,14,20,20,40,22,24,18,30,19,25,24,45,26,31,26,45,30,45,45,65,33,32,22,32,18,21,18,32,17,18,13,21,13,17,16,31,16,17,12,17,10,13,12,21,11,12,9,15,10,13,13,25,13,12,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,8,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,11,13,11,19,12,17,17,32,16,16,11,15,9,10,9,15,8,9,7,11,7,9,8,15,8,8,6,10,6,7,6,11,7,8,7,12,9,13,13,24,13,13,9,14,9,12,11,19,11,12,9,15,10,14,14,27,15,17,13,21,13,18,17,32,19,23,19,34,23,35,35,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,6,6,11,7,8,6,10,7,10,10,18,9,9,6,9,5,5,4,5,3,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-3,-1,-1,0,0,1,1,1,0,1,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,4,5,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,13,7,8,7,11,8,11,10,19,11,12,9,14,9,11,10,19,11,13,12,21,15,22,22,44 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,32,16,16,11,16,10,12,10,17,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,11,13,10,16,10,13,12,23,13,16,13,23,16,23,23,33,17,17,11,16,9,11,9,17,9,10,7,11,7,9,9,16,8,9,6,9,6,7,6,11,6,7,5,8,6,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,7,13,7,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,11,7,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,12,12,23 +-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,5,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,10,32,17,17,11,16,10,12,10,16,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,10,8,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,7,10,7,10,10,20,11,13,10,16,10,14,13,22,13,16,13,23,15,22,23,33,17,17,11,16,9,11,9,17,9,10,8,12,8,10,9,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,2,2,3,5,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,5,3,4,4,5,4,5,5,10,6,6,4,7,4,5,4,7,4,5,4,6,4,6,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,9,5,6,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,12,8,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,9,6,7,6,11,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,3,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,22,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,9,7,11,7,9,9,15,9,11,9,15,10,15,15,23,12,12,8,11,6,8,6,12,6,7,6,8,6,7,7,10,6,6,4,6,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,6,4,4,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,8,6,7,6,11,7,8,7,11,8,12,12,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,2,4,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,5,4,8,6,8,8,16 +-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,2,2,4,3,5,5,7,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,9,5,5,3,4,3,4,4,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,13,7,6,4,6,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,32,16,16,11,16,10,12,10,16,9,10,8,12,8,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,9,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,12,8,11,11,20,11,11,8,12,7,9,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,11,8,11,7,8,7,14,8,9,7,10,7,10,11,20,11,13,10,16,10,14,13,22,13,15,13,22,15,23,23,35,18,18,12,16,9,11,9,17,9,10,8,12,8,11,10,15,8,8,6,9,6,7,7,11,6,6,5,7,5,7,7,12,7,7,5,6,4,5,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,7,5,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,10,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,5,7,7,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,9,10,8,12,8,10,9,16,9,11,9,16,11,17,17,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,7,5,7,5,7,6,9,6,7,6,11,8,12,12,24 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,4,5,4,7,5,7,7,14 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,2,2,4,3,3,2,3,2,2,2,2,2,2,3,7,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,22,12,12,8,11,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,7,10,7,10,9,16,9,10,9,15,11,16,16,24,12,12,8,11,6,7,6,12,7,8,6,9,6,8,7,11,6,6,4,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,2,1,0,0,1,1,1,1,2,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,7,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,12,7,8,6,8,5,7,7,12,7,8,7,11,8,12,12,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,5,5,6,4,6,5,8,6,8,9,17 +-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,19,10,10,7,9,6,7,6,10,6,7,5,8,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,14,7,7,5,8,5,5,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,6,8,6,8,8,14,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,8,14 +-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,4,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,33,17,17,12,17,10,12,10,18,10,11,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,8,7,11,8,11,11,19,11,12,9,14,9,13,13,24,14,16,13,23,16,23,23,35,18,17,12,17,10,12,10,16,9,10,8,13,8,11,11,16,9,9,6,9,6,7,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,6,4,5,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,8,8,18,10,11,8,12,8,11,10,18,10,12,10,17,12,17,17,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,3,3,6,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,8,5,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,8,7,11,8,12,13,25 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,13,8,9,8,13,9,12,12,19,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,5,7,7,13 +-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,4,3,4,3,6,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,20,10,10,7,11,6,7,6,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,4,3,5,4,6,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,13,7,8,5,7,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,8,14,8,9,8,14,9,13,13,21,11,11,8,10,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,5,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,8,5,6,6,11,6,7,6,11,7,10,10,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,4,5,4,6,5,7,7,14 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,5,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,4,3,5,4,6,6,10 +-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,4,4,6,4,6,6,7,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,9,5,6,5,8,5,6,6,9,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,13,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,5,5,10,5,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,7,6,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,8,16,9,11,9,16,11,16,16,27,14,14,10,14,8,8,7,13,7,8,6,10,6,8,8,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,11,6,6,4,4,3,4,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,6,6,14,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,5,3,4,4,6,4,5,5,8,6,9,9,16 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,11,6,6,4,5,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,5,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,3,3,5,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,5,3,3,3,4,2,3,3,4,3,3,3,5,4,6,6,10 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,3,2,2,2,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,24,12,12,9,13,8,9,8,12,7,8,6,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,15,8,8,5,7,5,6,5,8,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,13,9,14,14,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,13,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,4,7,5,7,7,13 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,8,7,12,8,13,13,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,5,3,4,4,7,5,7,7,12 +-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,1,1,2,2,3,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,6,4,5,5,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,16,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,9,6,9,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,10,6,7,5,8,5,6,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,8,15,9,11,9,15,10,15,16,44,23,23,16,24,14,17,14,24,13,14,11,17,11,14,13,24,13,13,9,12,7,9,8,13,7,8,7,12,8,11,11,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,27,14,13,9,13,8,9,8,13,7,7,6,9,6,8,8,15,8,8,6,8,5,7,7,12,7,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,8,7,12,8,10,10,18,10,10,8,12,8,11,11,20,12,14,12,21,15,22,23,41,21,21,14,21,13,16,14,24,13,14,10,15,10,13,12,22,12,12,8,11,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,11,6,5,4,5,3,3,3,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,7,6,11,6,7,6,11,7,10,10,14,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,22,11,11,8,12,7,9,8,13,7,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,11,7,10,10,17,9,10,8,12,7,9,9,16,9,10,8,14,9,12,12,22,12,12,9,14,9,12,11,21,12,13,11,18,12,18,18,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,7,7,5,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,4,3,4,3,-2,0,0,1,1,1,2,2,4,3,4,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,16,8,8,6,9,6,7,6,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,13,7,8,6,8,6,7,7,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,4,3,5,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,4,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,6,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,13,13,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,4,4,3,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,17,9,9,6,9,6,7,6,10,6,6,5,7,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,4,5,4,7,5,8,8,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8 +-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,3,4,3,4,3,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,26,13,13,9,14,8,9,8,15,8,8,6,10,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,7,7,11,7,9,8,13,9,14,14,27,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,14,7,7,5,8,5,7,6,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,8,5,6,5,7,5,7,6,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,8,5,5,3,4,3,4,3,5,3,3,3,5,4,5,5,12,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,8,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,12,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,7,5,8,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,5,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,1,0,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,2,2,1,1,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,3,4,3,4,4,7 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,1,1,1,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,21,11,10,7,10,6,7,6,12,6,6,5,8,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,13,7,8,6,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,4,6,4,6,6,10,6,7,6,11,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,6,6,5,7,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,3,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,9 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,7,6,10,6,6,4,7,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,19,10,11,7,11,6,8,7,11,6,7,6,8,6,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,8,5,5,4,5,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8 +-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,0,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,3,3,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,4,6,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,10,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,10,9,15,10,14,14,36,18,18,12,18,10,12,10,18,10,11,8,12,8,10,9,17,9,9,6,9,6,7,7,12,7,9,7,12,8,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,8,21,11,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,7,5,7,5,6,5,8,5,6,5,8,6,8,9,13,7,8,6,9,6,7,6,10,6,7,5,8,6,8,8,16,9,10,7,11,7,10,9,16,9,11,10,17,12,19,19,35,18,18,13,20,12,14,12,21,12,13,10,15,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,10,6,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,8,4,4,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,7,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,16,9,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,10,15,15,15,8,8,5,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,4,3,4,2,2,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,-2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,7,6,9,6,8,8,15 +-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,6,8,8,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,4,4,4,5,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,6,5,9,5,6,6,10,7,11,11,20,10,10,8,11,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9 +-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,9,5,6,4,5,3,4,3,5,3,3,3,4,3,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,9,5,6,6,9,6,9,9,23,12,12,8,11,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,6,4,7,5,6,5,10,6,6,5,9,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,10 +-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,5,7,5,8,8,19,10,10,7,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8 +-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,4,4,6,5,7,7,9,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,7,14,8,9,7,12,9,13,13,32,16,16,11,16,9,10,9,16,9,10,8,12,8,10,9,17,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,20,10,10,7,11,7,8,7,10,6,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,7,17,9,10,7,10,6,8,7,9,5,6,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,5,7,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,9,15,9,11,9,16,11,16,16,33,17,17,12,18,10,12,11,19,10,11,9,14,9,11,10,19,10,10,7,10,6,7,7,10,6,7,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,5,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,5,7,7,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,17,9,9,6,9,5,6,5,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,13 +-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,5,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,9,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,6,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,5,4,6,4,6,5,9,6,7,6,10,7,10,10,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,5,5,7,5,8,8,10,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,13,7,8,7,13,9,12,12,30,16,16,11,15,9,11,9,15,9,10,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,6,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,7,15,8,8,6,8,5,6,6,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,7,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,15,9,10,9,15,10,15,15,32,17,17,12,18,10,12,10,17,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,8,7,13,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,13,9,12,12,29,15,16,11,15,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,6,9,6,9,8,15,9,10,9,15,10,15,15,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,18,9,9,6,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,11,6,7,6,8,6,8,7,13,8,9,8,13,9,14,14,17,9,9,6,9,5,6,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-24,-11,-11,-7,-11,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,7,6,11,8,11,12,30,16,16,11,17,10,12,10,18,10,10,7,10,7,9,8,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,9,13,8,10,9,16,9,11,9,14,9,12,12,23,12,12,9,14,9,11,10,18,10,12,10,17,11,16,16,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,11,12,9,14,9,13,13,24,13,15,13,22,15,23,23,57,29,29,20,29,17,20,16,28,15,17,13,20,13,18,17,32,17,17,12,18,11,14,13,23,13,14,12,20,13,19,18,34,17,17,12,18,11,13,11,19,10,11,8,13,9,12,12,22,12,12,8,12,8,10,9,15,8,9,7,12,9,13,13,28,14,14,10,14,9,11,10,17,9,9,7,11,7,10,9,17,9,10,7,10,7,9,8,15,8,9,7,12,8,11,11,22,12,12,9,13,8,10,8,14,8,10,8,14,9,13,13,24,13,15,11,18,12,17,16,30,17,20,17,29,20,29,29,63,32,31,21,31,18,21,17,29,15,16,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,14,10,14,14,26,13,13,9,13,8,9,8,13,8,9,7,11,7,9,9,17,9,9,6,9,6,7,6,9,6,7,6,9,6,9,9,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,9,7,10,10,25,13,13,9,14,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,10,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,9,6,9,6,9,8,15,8,9,7,12,8,12,12,27,14,13,9,13,8,10,8,14,8,8,6,9,6,9,9,16,9,9,6,9,6,8,8,14,8,9,8,14,10,14,14,28,15,16,11,17,10,13,12,21,12,14,11,19,13,18,17,32,17,18,13,20,13,17,15,28,16,19,16,27,18,27,27,33,17,17,12,17,10,11,10,17,9,9,7,10,6,8,8,15,8,8,6,9,5,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,6,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,6,5,7,4,5,5,7,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,4,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,6,7,5,8,5,6,6,11,7,8,8,14,10,14,14,27 +-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,9,17,9,9,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,5,7,7,15,8,8,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,16,9,10,9,15,10,15,15,32,16,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,4,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,5,3,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,3,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,10,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,30,16,16,11,15,9,10,9,15,8,9,7,11,7,9,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,15,8,8,5,8,5,6,5,9,5,6,4,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,6,4,6,6,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,8,6,11,7,10,9,16,9,10,9,15,10,15,15,33,17,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,4,4,5,4,6,6,14,8,8,6,7,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,18,9,9,6,10,6,6,6,10,6,6,4,6,4,6,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,7,4,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,12,6,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,8,5,7,6,11,6,7,6,10,7,11,11,23,12,11,8,11,6,8,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,4,2,3,3,5,3,4,4,5,4,6,6,10 +-13,-6,-6,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,3,2,3,2,3,2,3,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,13,7,8,6,8,5,6,6,12,7,7,6,10,7,10,10,11,6,7,5,8,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,7,6,11,6,7,5,8,6,8,7,13,7,8,7,12,9,13,13,31,16,16,11,16,10,12,10,16,9,10,8,12,8,10,9,17,9,10,7,10,6,7,7,14,8,9,7,12,8,11,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,16,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,7,12,8,10,9,17,10,11,9,15,11,16,16,35,18,18,12,16,9,11,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,5,5,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,3,2,3,2,3,2,3,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,4,4,5,3,4,4,6,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,5,8,6,8,7,11,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,5,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,12,7,9,9,16,9,11,9,14,10,15,15,20,10,10,7,11,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,4,4,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,3,3,3,3,2,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,15 +-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,5,5,7,5,8,8,18,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,12,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +-10,-4,-4,-3,-6,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,4,4,6,4,4,3,4,2,2,2,5,3,3,3,5,4,5,5,12,7,7,5,7,5,6,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,9,6,7,6,9,6,9,9,21,11,11,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,7,5,6,6,11,6,7,6,8,6,8,8,13,7,8,6,7,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,12,7,9,7,11,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,5,10,6,6,4,7,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,4,5,4,6,6,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,6,4,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,8,6,9,6,7,6,12,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,11 +-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,11,7,8,6,10,6,6,4,7,4,6,5,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,4,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,10 +-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,9,5,5,3,4,3,3,3,6,4,4,4,7,5,8,8,19,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,5,8,6,8,8,15,8,9,6,9,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,13,7,8,6,10,7,9,8,14,8,10,8,13,9,13,13,33,17,17,12,17,10,12,10,18,10,11,9,14,9,11,10,21,11,12,8,12,7,9,9,16,9,10,8,14,9,12,11,19,10,10,7,11,7,8,6,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,9,5,6,5,7,5,8,8,20,10,10,7,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,7,7,16,9,9,6,8,5,7,6,10,6,7,6,9,6,9,9,18,10,11,8,13,8,11,10,18,10,12,11,19,13,19,19,40,20,20,14,20,11,13,11,18,10,11,8,13,8,10,9,19,10,10,7,10,6,7,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,7,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,4,6,4,5,4,6,4,4,3,5,4,6,6,16,9,9,6,8,5,6,5,9,5,5,4,7,4,5,4,8,5,5,3,4,3,4,4,7,4,5,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,7,12,7,9,8,13,9,12,12,21,11,11,8,11,7,9,8,14,8,9,7,12,8,12,11,19,10,11,8,13,8,11,10,18,10,12,10,18,12,18,17,24,12,12,8,11,7,8,7,12,7,8,6,9,6,8,8,10,6,6,5,7,4,5,4,6,4,5,4,7,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,5,9,5,5,4,6,4,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,9,17 +-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,9 +-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,12,8,11,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,13,7,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,12,8,12,12,25,13,13,9,13,7,8,7,11,6,6,5,9,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,3,3,2,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,4,5,5,10 +-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,11,6,7,6,9,6,7,6,11,6,7,6,11,8,11,12,27,14,14,10,16,9,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,12,7,8,6,10,7,10,9,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,8,14,10,15,15,34,17,17,11,16,9,11,9,15,8,9,7,11,7,8,7,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,5,5,12,7,7,5,8,5,6,5,8,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,17,9,10,7,10,6,8,7,10,6,6,5,7,5,7,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,10,7,10,7,9,8,14,8,9,8,14,10,15,15,22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,6,4,5,4,8,4,5,4,8,5,7,8,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,22,11,11,8,11,6,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,7,5,7,4,5,5,7,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,14,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,9,5,6,6,11,6,7,6,11,7,10,10,26,14,14,10,15,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,5,6,4,5,5,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,4,12,6,6,5,8,5,5,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,5,8,5,6,6,16,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,3,4,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,6,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,5,6,6,15,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-34,-17,-17,-11,-16,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,4,7,4,5,5,8,5,7,7,5,3,3,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,9,6,9,8,15,9,10,8,13,9,12,12,23,12,13,9,14,8,10,8,14,8,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,18,10,10,7,11,6,7,6,11,6,7,6,9,6,9,9,17,9,9,7,11,7,8,7,13,7,8,7,12,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,11,20,11,11,8,11,7,8,7,12,7,8,7,11,8,11,11,20,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,49,25,25,17,24,13,15,13,22,12,13,10,16,10,14,13,24,13,13,9,14,9,11,10,19,11,13,10,17,11,15,15,27,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,16,9,9,7,12,7,9,9,16,8,8,6,9,6,8,8,14,8,8,6,10,7,9,9,27,14,15,11,17,10,12,11,20,11,12,10,17,11,15,14,27,14,15,11,17,11,14,14,26,15,17,14,25,17,26,26,61,31,31,21,31,17,20,16,27,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,14,8,9,7,11,7,10,9,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,7,12,8,12,12,10,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,29,15,16,11,16,9,11,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,11,17,10,12,10,18,10,12,10,17,11,15,15,28,15,15,11,18,12,16,15,29,16,18,15,26,18,26,26,39,20,19,13,19,11,13,11,19,10,11,8,12,8,10,10,18,10,10,7,11,7,8,6,10,6,6,5,9,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,4,6,4,5,4,6,4,6,5,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,3,5,4,6,6,8,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,7,5,7,5,7,6,11,6,7,5,8,6,8,8,15 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,8,7,11,8,11,11,26,13,13,9,13,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,8,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,21,11,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +-18,-9,-9,-5,-9,-4,-5,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,4,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,13,7,8,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,7,5,7,6,12,7,8,6,9,6,8,7,13,7,8,7,12,8,11,11,27,14,14,9,14,8,9,7,13,7,8,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,10,7,9,9,16,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,16,9,9,6,9,6,7,7,12,7,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,14,14,34,17,17,11,17,10,11,9,15,8,8,6,10,7,9,8,14,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,7,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,7,17,9,9,6,9,5,6,5,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,7,11,7,10,9,16,9,10,9,15,10,15,15,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,7,5,6,4,4,4,6,4,4,4,5,4,6,6,12,6,6,5,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,10,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,10,6,6,4,5,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,5,8,5,6,6,11,7,8,6,10,7,9,9,17,9,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,6,15,8,8,6,8,5,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,30,16,16,11,16,9,10,8,15,8,9,7,11,7,9,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,6,9,9,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,19,10,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,10,7,10,7,9,8,16,9,11,9,16,11,16,16,40,20,19,13,18,10,12,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,11,7,8,6,10,7,10,9,21,11,10,7,10,6,7,6,12,7,8,6,9,6,8,8,12,7,7,5,8,5,7,6,10,6,7,6,10,7,10,11,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,20,11,11,8,12,8,11,10,18,11,13,11,18,12,18,18,28,14,14,10,14,8,10,9,14,8,9,7,10,6,8,7,14,7,7,5,7,4,5,5,7,4,5,4,7,5,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,6,5,8,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,5,3,3,3,4,3,4,4,3,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,9 +-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,12,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,7,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,18,9,9,6,9,5,6,6,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6 +-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,5,7,7,13,7,8,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,9,6,8,7,12,7,9,7,13,9,12,12,25,13,13,9,13,8,9,7,12,7,8,6,9,6,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,10,6,6,5,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,6,4,6,6,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,8,10,8,14,10,14,14,32,16,16,11,16,9,11,9,14,8,9,7,10,7,9,8,12,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,9,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,10,7,10,6,8,8,15,9,11,9,16,11,16,16,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,12,6,6,4,7,4,5,5,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,11,6,6,4,5,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8 +-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,6,7,7,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,12,7,7,6,9,6,7,7,12,7,9,7,13,9,12,12,30,15,15,10,15,9,10,8,13,7,8,6,9,6,8,7,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,2,3,2,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,7,15,8,9,7,10,6,8,8,14,8,10,8,15,10,14,14,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8 +-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,8,8,6,10,6,8,7,12,7,9,7,12,8,12,11,23,12,12,8,12,7,9,8,13,7,8,6,10,6,7,7,14,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,16,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,10,8,12,8,10,9,16,9,10,8,13,9,14,14,24,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,11,7,8,8,14,8,9,7,10,7,10,9,20,10,10,7,11,7,8,8,14,8,9,7,12,8,11,10,19,11,12,9,14,9,12,12,22,13,15,13,22,15,21,21,42,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,19,10,11,8,12,7,9,9,16,9,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,13,8,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,9,10,8,12,8,10,9,17,9,9,7,11,7,8,8,14,8,9,8,13,9,12,11,27,14,14,10,15,9,11,10,18,10,11,9,15,10,14,14,22,12,12,9,15,10,13,12,22,13,15,13,23,15,22,22,57,29,28,19,27,15,18,15,25,13,14,11,18,11,14,13,21,11,11,8,12,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,6,5,8,6,9,9,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,6,4,6,6,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,21,11,11,8,11,7,8,7,11,6,7,6,9,6,9,8,14,8,8,6,9,5,6,6,10,6,7,5,8,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,9,7,11,7,9,9,16,9,10,9,15,10,14,14,31,16,17,12,17,10,12,10,16,9,10,8,13,9,12,11,17,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,27,14,14,10,15,9,11,10,18,10,11,9,15,10,13,13,27,14,15,11,18,11,15,14,26,15,18,15,27,18,26,26,48,24,24,16,23,13,15,13,22,12,12,9,14,9,12,12,21,11,11,8,11,7,9,8,13,8,9,8,13,9,12,12,24,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,3,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,8,5,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14 +-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,32,16,16,11,15,9,10,8,14,8,8,6,10,6,8,8,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,4,5,5,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,9,13,8,9,8,13,7,7,5,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8 +-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,5,6,4,5,5,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,7,12,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,9,9,7,9,5,6,5,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,18,9,9,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,11,7,10,9,15,9,11,9,16,11,16,16,38,19,19,13,18,10,12,10,17,9,10,8,12,8,10,9,14,8,8,6,8,5,7,6,11,6,6,5,8,6,8,7,12,6,6,5,6,4,4,4,6,4,4,3,5,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,12,7,8,7,10,7,10,10,21,11,11,8,11,7,8,7,10,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,9,5,6,6,11,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,17,9,10,8,13,8,11,10,18,10,12,10,18,12,18,18,33,17,17,11,16,9,10,9,16,8,8,6,11,7,8,8,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,4,5,5,7,4,4,4,7,5,6,6,12,6,6,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,9 +-18,-8,-8,-5,-8,-4,-6,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,4,6,5,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,12,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,5,4,4,4,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,6,9,6,7,6,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,11,7,9,8,15,9,10,9,15,10,15,15,28,15,15,10,14,8,9,8,13,7,7,6,9,6,7,7,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8 +-33,-16,-16,-10,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-5,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,8,5,6,5,10,6,6,4,6,4,6,6,15,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,16,9,9,6,9,6,7,7,13,8,9,8,13,9,14,14,26,13,13,9,14,8,10,9,13,7,8,6,10,6,8,8,17,9,10,8,12,7,9,8,14,8,8,7,11,7,10,9,20,11,11,8,12,7,8,7,12,7,8,7,11,7,9,9,17,10,11,8,13,8,11,10,19,11,14,12,20,14,21,21,39,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,18,10,10,7,10,7,9,8,14,8,9,8,14,10,14,13,25,13,14,10,14,8,9,8,15,8,9,7,12,8,10,10,18,10,10,7,10,6,8,7,14,8,10,8,14,10,14,13,25,13,14,10,14,9,11,9,15,9,10,8,12,7,9,9,17,9,9,7,10,6,8,8,12,7,9,8,13,9,12,12,26,14,14,10,14,9,11,10,17,9,10,8,13,9,13,12,21,11,12,9,15,10,13,12,22,13,15,13,22,15,22,22,55,28,28,19,28,16,19,16,27,14,15,11,18,11,14,13,21,11,12,8,12,8,10,9,16,9,9,7,10,7,9,9,19,10,9,6,9,6,7,6,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,9,7,10,6,8,8,17,10,12,10,16,11,16,15,31,16,16,11,16,9,11,9,15,9,10,8,12,8,10,10,18,10,10,8,12,7,9,9,14,8,10,9,15,10,14,14,28,15,15,11,16,10,12,11,19,10,11,9,14,9,13,13,25,13,14,11,18,11,15,14,26,15,18,15,26,18,26,26,50,26,26,18,26,14,16,13,23,12,13,10,16,10,13,12,23,12,12,8,12,7,8,7,15,9,10,8,12,8,11,11,21,11,11,8,12,7,9,8,13,7,8,6,10,7,9,8,13,7,7,5,8,5,7,7,11,6,7,6,9,6,8,8,17,9,9,7,10,6,6,5,10,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,5,4,7,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,6,6,9,6,10,10,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,6,7,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,8,7,13,8,10,8,13,9,14,14,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,36,19,19,13,19,11,13,11,18,10,10,8,12,8,10,9,15,8,8,6,9,6,7,6,11,6,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,8,11,10,21,11,11,8,11,6,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,8,13,7,8,6,10,7,9,9,17,9,10,8,12,8,11,10,18,10,12,10,17,12,18,18,33,17,17,12,18,10,11,9,16,9,9,7,11,7,9,8,16,8,8,6,8,5,6,6,10,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-4,-6,-6,-14,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,12,7,8,6,8,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,12,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,13,7,8,7,10,7,9,9,17,9,10,8,12,7,8,7,14,8,9,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,11,7,10,9,17,9,10,8,13,8,11,10,20,12,14,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,18,10,10,7,11,7,8,8,14,8,10,8,14,9,13,13,25,13,14,10,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,28,19,28,16,18,15,26,14,14,11,17,11,14,13,22,12,12,9,13,8,10,9,15,8,8,6,10,7,10,10,19,10,10,7,10,6,6,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,12,9,16,11,16,15,31,16,16,11,16,9,11,9,15,8,9,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,10,9,14,10,14,14,27,14,14,10,16,10,12,11,18,10,12,9,15,10,14,13,25,14,15,11,18,12,16,15,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,4,5,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,14,8,9,7,11,7,9,9,17,9,10,8,11,7,8,7,13,8,9,7,11,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,13,8,11,10,20,11,13,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,13,8,11,10,19,10,10,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,13,9,13,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,13,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,27,18,27,16,18,15,26,14,15,11,17,11,14,13,23,12,12,9,13,8,10,9,15,8,9,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,11,9,16,11,16,16,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,10,17,9,9,7,11,7,9,8,15,8,10,9,14,10,14,14,27,14,14,10,15,9,12,11,18,10,12,9,15,10,14,13,25,14,15,11,17,11,15,14,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,5,7,5,7,7,13 +-70,-35,-35,-23,-34,-19,-23,-19,-35,-17,-18,-12,-20,-11,-15,-14,-28,-14,-14,-9,-13,-7,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-19,-19,-40,-20,-20,-13,-20,-11,-13,-10,-19,-9,-9,-6,-11,-6,-9,-9,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-9,-8,-15,-9,-14,-14,-28,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-5,-7,-7,-15,-7,-6,-3,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,1,1,1,1,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,8,8,15,8,9,8,13,9,12,11,20,12,15,13,23,16,23,24,47,24,25,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,13,9,14,8,10,8,14,8,8,7,11,7,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,31,16,17,12,18,11,14,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,14,12,22,13,15,13,22,15,21,21,41,21,21,15,22,13,17,15,27,15,16,12,19,12,17,17,32,17,19,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,34,19,23,19,34,18,20,15,25,16,22,20,38,20,20,14,22,13,16,14,24,14,16,13,21,14,19,19,37,19,20,14,22,13,16,14,24,13,15,12,19,12,16,16,30,16,17,13,21,13,17,16,31,18,21,17,30,20,30,30,58,30,30,21,31,18,21,18,32,17,19,15,24,15,20,19,36,19,19,13,20,12,15,14,25,14,16,13,22,14,20,20,38,20,21,15,22,13,17,15,27,15,17,14,24,16,22,21,40,21,23,17,28,17,23,21,40,23,27,23,40,27,41,42,104,53,54,37,55,31,38,32,56,29,31,23,38,23,31,29,56,29,29,21,32,19,24,21,37,21,24,20,34,22,32,31,61,31,31,21,31,18,22,19,33,17,18,14,22,14,19,18,34,18,18,13,21,13,18,17,32,18,21,17,30,20,28,28,54,28,28,19,29,17,20,17,30,16,18,14,24,15,21,20,37,19,20,15,24,15,19,17,31,18,21,17,29,19,27,27,53,27,27,19,29,17,22,19,35,19,22,17,28,18,26,26,51,27,29,21,34,21,27,25,48,27,31,26,45,30,45,45,88,45,45,30,45,26,31,26,46,24,26,20,32,20,26,24,45,23,24,17,27,16,20,17,31,17,20,16,26,17,23,23,44,23,23,16,24,14,17,14,25,14,16,12,20,13,17,17,32,17,18,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,35,20,23,20,35,19,21,17,28,18,24,23,45,23,24,17,26,16,20,18,34,19,23,19,33,22,32,32,64,33,33,23,34,20,24,21,37,20,23,18,31,20,28,27,51,27,30,22,36,22,29,27,52,29,34,28,49,33,49,49,98,49,49,33,49,28,33,28,50,27,29,21,34,21,28,26,49,25,26,18,28,16,20,18,33,18,20,16,27,18,26,25,49,25,26,18,26,15,18,15,27,15,16,13,22,14,20,19,36,19,19,13,20,12,15,13,24,13,15,12,21,14,21,21,42,22,22,15,23,14,17,15,27,15,16,12,20,13,18,17,31,16,17,12,19,12,17,16,29,16,18,15,26,18,26,25,49,25,25,17,25,14,17,15,27,15,17,14,23,15,21,20,39,21,22,17,27,17,23,22,41,23,28,23,41,28,41,40,79,40,41,28,41,24,29,24,43,23,25,18,29,18,24,22,41,21,21,14,21,13,16,14,24,13,14,11,19,13,18,18,34,17,17,12,18,11,13,11,20,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,19,11,12,10,18,12,16,16,30,16,16,11,15,9,11,9,15,8,9,7,12,7,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,10,9,16,9,9,7,10,6,8,7,13,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,26 +-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,8,7,12,8,12,12,24,12,13,9,13,8,9,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,16,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,9,8,14,8,8,6,10,7,9,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,10,11,8,11,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,15,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,11,7,10,9,16,9,11,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,15,11,18,11,14,13,25,14,16,14,23,16,23,23,45,23,23,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,17,12,17,17,34,18,18,12,18,10,12,10,18,10,11,9,15,10,13,12,23,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,26,14,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,25,17,25,14,17,15,25,14,15,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,8,14,8,8,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,8,13,9,14,13,25,13,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,21,14,21,20,40,21,21,14,21,12,15,12,22,12,13,10,15,10,13,12,21,11,11,8,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,7,6,11,6,6,5,8,6,7,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,13 +-35,-17,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,5,7,5,6,6,10,6,7,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,8,14,8,8,7,11,7,10,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,20,10,10,7,11,7,8,7,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,16,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,18,10,10,8,12,8,10,9,18,10,10,8,11,7,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,14,11,18,11,14,13,25,14,17,14,24,16,23,23,45,23,24,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,18,10,12,10,19,11,12,9,15,10,13,12,22,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,27,15,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,24,17,25,14,17,15,25,13,14,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,13,7,8,7,11,7,9,9,16,9,9,7,10,7,9,9,16,9,10,8,13,9,14,13,24,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,19,10,11,9,13,9,12,11,20,12,14,12,21,14,20,20,41,21,21,14,20,12,14,12,22,12,12,9,16,10,13,12,21,11,11,7,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,9,5,6,4,5,3,4,4,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,7,13 +-23,-11,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,5,10,6,6,5,8,5,7,6,11,6,7,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,20,10,11,7,11,6,8,7,12,6,7,6,9,6,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,35,18,18,13,19,11,13,11,20,10,11,8,14,8,11,10,20,11,11,8,12,7,9,8,13,8,8,7,12,8,12,11,21,11,11,8,11,7,8,7,12,7,7,6,8,6,7,6,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,6,8,6,7,6,11,6,7,6,10,7,9,9,18,9,9,7,10,6,7,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,6,12,7,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,5,8,5,6,6,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,12,24,12,12,8,12,7,9,8,13,8,8,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,8,8,13,8,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,17,9,9,7,11,6,7,7,12,6,7,6,10,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,11,6,7,6,9,7,10,9,16,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,14,14,10,14,8,9,8,15,8,8,7,11,7,9,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,12,6,6,5,7,4,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,3,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,5,9 +-35,-17,-17,-11,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-9,-6,-9,-9,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,7,5,7,6,10,6,8,7,11,8,11,12,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,7,5,6,6,8,5,5,5,8,6,8,8,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,6,11,7,8,7,11,7,10,10,20,11,11,7,10,6,8,7,14,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,10,17,12,17,17,33,17,17,12,17,10,12,10,17,9,10,8,13,8,11,11,20,11,11,7,10,6,8,7,13,7,8,7,11,7,9,9,20,11,11,7,10,6,7,7,11,7,8,6,10,7,9,9,16,9,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,15,10,15,9,11,10,17,9,10,8,12,8,10,9,18,10,10,7,11,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,9,7,12,8,11,11,21,11,12,9,14,9,12,11,21,12,14,12,20,14,21,21,53,27,27,19,28,16,20,17,29,16,17,13,20,13,17,15,30,16,16,12,18,11,14,12,19,11,13,11,18,12,17,17,30,15,15,11,16,10,12,10,18,10,10,8,12,8,10,9,17,9,10,8,12,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,12,8,10,9,16,9,11,9,14,9,13,13,25,13,14,10,14,8,10,9,18,10,12,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,14,24,16,23,22,45,23,24,16,24,14,16,13,23,12,13,10,17,11,14,13,25,13,14,10,14,9,11,9,18,10,11,9,14,9,12,12,24,13,13,9,12,7,8,7,13,8,9,7,11,7,10,9,16,9,9,7,10,7,9,9,17,10,11,9,16,11,17,17,36,19,19,13,18,11,13,11,19,10,11,9,14,9,13,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,16,16,32,17,17,12,17,10,13,11,19,11,12,10,16,11,15,14,27,15,16,12,18,11,15,14,27,15,17,14,25,17,25,25,48,24,24,16,24,14,17,15,24,13,14,11,17,11,15,14,25,13,14,10,16,9,11,10,17,10,11,9,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,9,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,21,11,11,8,12,7,9,8,13,8,9,7,12,8,10,10,16,9,9,7,10,7,9,9,16,9,11,9,14,10,14,14,23,12,12,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,20,41,21,20,14,20,12,14,12,21,12,13,10,16,10,13,12,20,11,11,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,8,5,5,5,9,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,6,4,4,4,6,4,4,4,6,4,5,4,6,4,6,6,12 +-19,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,6,6,6,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,31,16,16,11,16,10,12,10,16,9,10,7,11,7,10,9,17,9,9,7,11,7,8,7,11,7,8,7,11,7,10,10,17,9,9,7,9,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,5,9,5,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,9,8,15,8,9,6,10,6,8,8,14,8,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,11,6,7,5,8,6,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,9,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,12,7,8,7,11,6,7,6,9,6,7,7,13,7,7,5,6,4,4,4,8,5,6,5,7,5,6,6,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,10,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,5,6,5,8,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,14,10,15,15,38,19,19,13,19,11,14,12,19,10,11,8,12,8,11,10,20,11,11,8,13,8,9,8,14,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,6,11,6,6,5,9,6,8,7,14,8,8,6,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,10,7,10,9,17,9,10,7,12,8,10,10,17,10,12,10,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,7,12,7,9,9,17,9,10,7,9,6,7,6,13,7,8,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,25,13,13,9,13,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,10,6,8,7,13,7,8,7,11,8,12,12,21,11,12,8,12,7,9,8,13,7,8,7,11,7,10,9,18,10,10,8,12,8,10,10,18,10,12,10,17,12,17,17,32,16,16,11,16,10,12,10,17,9,10,8,11,7,10,9,16,9,10,7,11,7,8,7,11,7,8,6,10,7,10,9,17,9,9,6,9,5,6,6,11,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,6,4,6,6,10,6,7,6,10,7,10,9,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,13,7,8,6,9,6,8,7,13,8,10,8,13,9,13,13,27,14,14,10,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8 +-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,12,7,7,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,6,6,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,7,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,12,9,13,13,32,16,16,11,16,9,11,10,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,7,12,7,8,7,11,8,10,10,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,6,5,9,5,5,4,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,10,6,6,6,9,6,8,8,15,8,9,6,10,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,6,9,8,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,7,6,9,6,6,5,8,6,8,8,14,8,8,6,8,5,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-32,-15,-15,-10,-16,-8,-9,-7,-14,-7,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,21,11,11,8,11,6,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,7,12,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,10,6,8,8,14,8,10,9,16,11,16,16,33,17,16,11,16,10,12,10,17,9,10,7,11,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,9,9,21,11,11,8,12,7,8,7,12,7,8,7,11,7,10,10,17,9,9,7,11,7,10,9,16,9,11,9,16,11,15,15,26,14,14,10,15,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,11,7,8,6,10,6,7,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,7,6,9,7,10,10,22,12,13,10,15,9,12,11,20,12,14,12,22,15,21,21,58,29,29,20,30,17,20,17,29,15,16,12,18,11,15,14,29,15,16,12,18,11,14,12,22,12,14,12,20,13,18,18,32,17,17,11,16,9,11,10,18,10,10,7,11,7,10,9,16,8,8,6,9,6,8,8,14,8,10,9,15,10,15,15,27,14,13,9,13,8,9,8,14,8,9,7,12,8,10,10,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,16,9,10,9,15,10,14,14,26,14,14,11,17,11,14,14,26,15,17,14,25,17,24,23,46,23,23,16,23,13,16,14,24,13,14,10,16,10,13,13,25,13,13,9,14,9,11,10,18,10,11,9,14,10,14,14,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,11,7,10,9,17,10,12,10,18,12,18,18,38,19,19,13,20,12,14,11,19,11,12,9,14,9,13,13,22,12,13,10,15,9,12,11,20,11,13,11,18,12,17,17,32,17,17,12,18,11,13,12,21,12,13,10,15,10,14,14,28,15,16,12,19,12,16,14,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,13,10,15,10,14,13,24,13,13,9,13,8,10,9,16,9,10,9,15,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,11,7,10,10,17,9,9,6,9,6,7,7,13,8,9,7,12,8,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,7,10,10,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,7,9,8,14,8,9,8,13,9,12,12,19,10,10,8,12,8,10,10,18,11,13,11,19,13,19,19,41,21,21,14,20,11,13,11,18,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,10,6,8,7,12,7,8,6,10,6,8,8,15,8,8,6,8,5,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,5,7,7,12 +-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,5,7,6,11,7,8,7,12,8,11,11,31,16,15,11,16,9,11,9,16,8,9,7,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,12,24,12,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,20,11,11,8,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,7,12,7,7,6,9,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,14,9,13,13,25,13,13,9,13,8,9,8,13,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,7 +-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,11,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,5,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,33,17,16,11,17,10,11,10,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,13,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,9,13,13,25,13,14,10,14,8,9,8,15,8,8,6,9,6,8,8,14,8,8,6,8,5,7,6,11,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,6,12,7,8,7,11,8,11,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,15,9,10,9,15,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,7,5,6,6,9,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,6,10,6,8,6,10,7,10,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,6,4,5,3,4,4,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,7 +-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,25,13,12,9,13,8,9,7,13,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,6,4,5,5,9,6,6,5,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,7,7,12,7,7,6,8,5,7,7,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,13,7,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,6,4,5,4,6,4,5,5,6,4,5,4,6,4,5,5,7,4,5,4,6,4,6,6,14,7,7,5,6,4,5,4,8,5,6,5,7,5,6,6,12,7,7,5,6,4,4,4,7,4,5,5,8,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,8,12,7,8,6,12,7,7,5,8,5,7,7,11,6,7,5,7,4,5,4,9,5,6,5,8,5,6,6,15,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,12,7,8,7,11,8,11,11,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,41,21,20,14,20,12,14,11,20,11,11,8,12,8,10,9,18,10,10,7,11,7,8,7,15,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,11,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,19,10,9,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,30,15,15,11,16,9,11,9,18,10,11,8,12,8,10,9,16,9,9,7,10,6,7,6,13,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,14,8,8,7,11,7,10,10,17,9,10,7,10,6,8,8,15,9,10,8,14,9,13,13,23,12,13,9,14,8,10,9,17,9,10,8,14,9,12,11,20,11,12,9,13,8,11,10,18,10,12,10,17,11,16,16,32,17,17,11,16,9,11,10,16,9,9,7,10,6,8,8,17,9,9,6,9,6,8,7,10,6,7,6,10,7,10,10,16,9,9,6,8,5,5,5,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,9,13,7,7,5,8,5,7,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,7,7,11,7,8,7,12,9,13,13,29,15,15,10,14,8,9,7,12,7,8,6,10,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,5,7,7,10,6,6,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,5,5,10 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,4,4,3,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,5,4,5,5,7,4,5,4,5,3,4,3,6,4,4,4,5,4,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,25,13,13,9,13,8,9,7,13,7,7,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,7,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,5,10,6,6,4,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,6,9,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,6,5,9,5,6,5,10,7,10,10,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,4,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,6,8,6,11,8,11,11,34,18,18,12,18,10,12,10,17,9,10,7,11,7,8,8,15,8,8,6,9,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,6,9,6,8,7,13,7,8,7,12,8,12,12,26,14,14,10,14,8,9,8,15,8,8,6,10,7,9,8,15,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,8,5,7,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,15,9,10,8,15,10,14,14,26,14,14,9,13,8,10,8,13,7,8,6,9,6,7,7,13,7,8,6,7,5,6,5,8,5,6,5,9,6,8,8,12,6,6,5,6,4,5,4,8,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,6,5,6,4,6,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,7,4,4,3,5,4,6,6,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,8,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,32,17,17,11,17,10,11,10,16,9,9,7,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,6,7,7,12,7,8,7,11,8,11,11,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,8,5,7,6,12,7,7,6,10,7,10,10,19,10,10,8,12,7,9,8,14,8,8,7,11,7,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,10,14,14,24,13,13,9,12,7,9,7,12,7,7,5,8,6,7,7,12,6,7,5,7,5,6,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +-33,-16,-15,-10,-15,-8,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-8,-8,-5,-9,-4,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,2,3,3,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,11,8,12,12,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,13,7,7,5,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,6,10,6,8,7,13,8,9,7,11,7,10,10,19,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,6,9,6,8,8,14,8,9,7,12,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,9,9,16,9,9,7,11,7,10,10,19,11,12,10,16,11,16,16,36,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,9,7,12,8,10,9,25,13,12,8,12,7,8,7,12,7,7,6,10,7,10,10,18,10,10,7,11,7,9,9,17,10,11,9,16,11,17,17,22,11,11,8,11,7,8,7,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,6,8,8,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,18,10,11,9,14,9,11,10,19,11,13,11,18,12,18,19,62,31,31,21,32,18,20,17,29,15,16,12,19,12,16,14,26,14,14,10,15,9,12,11,20,12,14,11,19,13,18,18,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,19,10,11,8,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,17,9,9,6,9,6,7,7,13,8,9,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,8,7,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,21,47,24,24,17,25,14,17,15,27,14,15,11,17,11,14,14,26,14,14,10,16,10,12,10,18,10,12,10,17,11,15,15,26,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,16,9,9,7,11,7,10,10,19,11,12,10,17,12,17,17,40,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,24,13,14,10,15,9,11,10,18,11,13,11,20,13,19,19,36,19,19,14,22,13,16,14,25,14,15,12,19,12,17,17,33,18,19,14,21,12,15,14,25,14,17,14,24,16,24,25,45,23,23,15,22,13,16,14,24,13,14,11,17,11,14,12,22,12,12,9,13,8,9,8,15,9,10,9,15,10,15,15,20,11,11,8,11,7,9,8,14,8,9,7,11,8,11,11,22,12,13,9,14,9,11,9,16,9,11,9,14,9,12,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,18,10,12,10,16,11,15,15,21,11,12,9,13,8,9,8,15,8,9,7,11,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,20,13,19,18,43,22,22,15,21,12,14,12,22,12,12,9,15,10,13,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,11,11,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,14,8,8,6,10,6,8,7,13,8,9,7,11,7,10,9,19,10,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,6,10,7,10,10,17,9,9,6,9,5,6,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,13 +-16,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,9,6,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,32,16,16,11,17,10,11,9,15,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,8,12,7,9,8,13,8,8,6,10,7,9,9,17,10,10,8,11,7,8,8,13,8,9,8,13,9,13,13,23,12,12,8,12,7,9,8,12,7,8,6,9,6,7,7,12,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,5,9,5,6,4,7,4,5,5,9,5,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,4,4,5,3,4,3,6,4,4,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,33,17,17,12,17,10,12,10,16,8,8,6,10,6,8,8,14,8,8,6,9,5,6,6,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,5,4,5,4,7,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,25,13,13,9,14,8,9,8,15,8,8,6,10,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,20,10,10,8,12,7,9,8,14,8,8,7,10,7,10,9,18,10,11,8,12,7,9,8,14,8,10,8,13,9,14,14,23,12,12,8,12,7,9,8,12,7,8,6,8,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,9,6,8,8,12,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,5,4,6,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,7,10,10,23,12,12,8,11,7,8,7,12,7,7,6,8,5,7,6,12,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,5,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,3,3,4,2,3,2,4,3,3,3,5,3,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,5,4,7,5,6,5,8,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,5,4,7,5,6,6,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-16,-8,-8,-5,-8,-4,-5,-3,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,5,7,7,9,5,5,4,6,4,5,4,6,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,7,5,8,5,7,7,9,5,6,4,6,4,5,5,9,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,11,6,7,5,8,5,7,6,12,7,8,6,10,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,6,10,7,11,11,36,18,18,12,18,10,12,10,17,9,10,7,10,7,9,9,15,8,9,6,9,6,8,7,13,8,9,7,12,8,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,7,8,7,12,8,12,12,26,14,14,10,15,9,10,8,16,9,10,7,11,7,9,9,14,8,8,6,8,5,6,5,10,6,6,5,9,6,9,9,15,8,8,6,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,6,12,7,8,6,10,7,9,9,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,12,7,8,7,11,8,11,10,21,11,12,9,14,8,10,9,16,9,10,8,12,8,11,10,20,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,24,13,13,9,14,8,10,9,13,7,7,5,8,6,8,7,13,7,7,5,7,4,5,4,8,5,7,6,10,7,9,9,14,8,8,6,8,5,5,5,9,5,6,5,8,6,8,7,11,6,6,5,8,5,6,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,11,11,25,13,13,9,12,7,9,8,13,7,8,6,10,6,8,7,13,7,8,6,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,3,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,9,5,6,5,7,4,5,5,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,4,4,4,5,4,5,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,7,7,22,11,11,8,11,6,7,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,6,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,12,7,7,6,8,5,6,6,9,5,6,5,7,5,7,6,12,7,7,5,8,5,6,5,10,6,6,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,7,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,6,4,4,3,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,4,3,5,4,6,5,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,28,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,5,8,5,6,5,9,5,6,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,5,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,3,5,3,4,3,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,7,11,6,6,4,7,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,9,5,6,4,7,4,5,5,10,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,8,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,5,3,4,4,8,5,6,6,10,6,6,4,7,4,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,4,6,4,4,4,7,4,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,4,4,5,4,5,6,12,7,7,5,7,4,5,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,25,13,12,8,12,7,8,6,11,6,7,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,4,5,4,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,5,5,7,5,7,7,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,4,7,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,4,4,4,6,4,5,5,8,6,8,8,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,7,5,8,5,6,5,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,22,11,11,7,10,6,7,6,11,6,7,6,9,6,8,8,12,7,7,5,7,5,6,6,11,7,8,6,10,7,9,8,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,16,9,9,7,10,7,9,8,14,8,9,7,12,8,12,12,15,8,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,4,5,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,12,45,23,23,16,23,13,14,11,19,10,11,8,13,8,11,11,20,11,11,8,12,7,9,9,16,9,9,7,12,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,7,6,13,7,8,6,8,5,7,6,10,6,7,6,11,7,10,10,23,12,12,8,11,7,8,7,12,7,8,6,10,6,8,8,15,8,8,5,7,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,7,6,10,6,6,5,8,5,7,7,10,6,7,6,9,6,8,8,14,8,9,8,13,9,13,13,30,16,16,11,15,9,11,10,18,10,11,8,13,8,11,11,18,10,10,7,9,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,12,7,9,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,11,11,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,25,13,14,10,16,9,11,10,18,10,12,9,15,9,12,12,26,14,14,10,15,9,12,11,20,11,13,11,19,13,18,18,30,16,16,11,17,10,12,10,16,9,9,7,11,7,10,9,14,8,8,6,9,5,6,5,8,5,6,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,9,6,7,6,10,6,6,5,7,5,8,8,12,7,7,5,7,5,6,6,10,6,6,5,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,15,8,9,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,15,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,6,9,6,7,6,11,6,6,5,8,6,8,8,12,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,10,6,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,2,8,5,5,3,4,3,4,3,5,4,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,5,5,10 +-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,25,13,13,9,13,7,8,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,5,8,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,14,8,8,6,9,6,7,6,10,6,7,6,9,6,7,7,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,2,3,3,4,3,7,4,5,4,4,3,4,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,8,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,10,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,28,15,15,10,14,8,8,7,13,7,7,6,9,6,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,5,3,4,4,7,5,6,6,14,8,8,5,7,5,6,5,7,5,6,5,7,5,6,5,9,5,6,4,5,3,4,4,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,6,5,9,6,8,8,19,10,10,7,10,6,8,7,12,7,7,5,9,6,8,7,11,6,7,5,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,8,6,8,7,15,8,9,7,10,6,8,7,11,7,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,4,3,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,6,5,10,6,6,5,6,4,6,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7 +-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,22,12,12,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,5,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,6,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,10,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,4,9,5,5,4,6,4,5,4,4,3,3,3,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,5,5,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,9,7,10,10,12,6,6,4,6,4,4,3,6,4,5,4,6,4,5,5,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,7,5,6,5,8,6,9,10,37,19,18,12,18,10,11,9,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,7,5,7,4,4,4,6,4,4,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,11,8,11,11,26,14,14,9,13,8,9,8,15,8,9,7,11,7,10,9,15,8,8,6,10,6,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,9,9,22,11,11,8,11,7,8,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,9,9,19,10,11,8,12,7,9,9,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,17,10,12,10,16,11,16,16,27,14,13,9,13,8,9,8,14,7,7,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,5,5,9,6,8,8,15,8,8,5,7,4,5,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,5,5,4,6,4,6,6,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,14,7,7,5,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,2,2,2,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9 +-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,6,6,24,12,12,8,12,7,8,6,12,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,5,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,4,4,8,5,5,5,7,5,7,7,17,9,9,6,9,5,6,5,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,6,4,4,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,4,5,6,4,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,6,6,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,7,5,7,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,11,6,6,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,12,7,7,6,9,6,9,9,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,9,35,18,17,12,17,10,11,9,17,9,9,7,10,6,8,8,16,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,6,4,7,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,8,6,9,9,22,12,12,8,11,7,8,7,12,7,7,5,9,6,8,7,11,6,7,5,7,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,7,9,8,14,8,9,7,11,8,11,10,20,11,12,9,13,8,10,10,18,10,12,9,16,11,16,16,26,13,13,9,13,7,8,7,13,7,8,6,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,7,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,5,7,4,5,4,8,5,7,7,14,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,6,7,9,5,4,3,5,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,8,6,8,8,34,18,17,12,17,10,11,9,16,9,9,7,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,9,6,9,9,22,11,11,8,11,7,8,7,12,7,7,5,8,6,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,8,13,8,9,7,11,7,10,10,19,10,11,8,13,8,10,10,18,10,11,9,16,11,16,16,26,13,13,9,13,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,7,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,9,5,5,3,5,3,4,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-20,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,9,7,10,10,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,24,13,13,9,13,8,9,7,12,7,7,6,9,6,7,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,7,6,11,6,6,5,7,5,7,7,13,7,8,6,10,6,7,7,12,7,8,7,11,8,12,12,27,14,15,11,17,10,13,11,19,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,10,8,14,9,13,13,25,13,14,10,15,9,10,9,15,8,9,7,10,7,10,9,17,9,10,8,14,9,11,11,20,11,12,10,17,12,17,17,20,11,11,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,9,6,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,18,10,11,8,12,7,9,8,15,9,11,9,15,11,16,16,67,34,33,22,33,19,22,19,33,17,18,13,20,12,16,15,29,15,15,11,17,10,12,11,20,11,12,9,15,10,14,14,26,13,13,9,14,8,9,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,8,8,15,8,9,7,11,8,11,11,33,17,18,12,18,11,13,11,18,10,10,8,12,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,11,6,6,5,8,6,9,9,16,9,10,8,13,8,11,11,20,11,13,11,18,12,18,18,46,24,24,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,14,10,16,10,13,11,20,11,13,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,10,8,13,9,14,14,26,14,14,11,17,10,12,11,20,11,12,10,17,12,17,17,42,21,21,14,20,12,14,12,21,11,12,10,16,10,14,14,27,14,15,11,16,10,12,11,21,12,14,12,20,13,19,18,34,18,18,13,19,11,14,12,21,12,13,10,17,11,16,16,32,17,19,14,23,14,18,17,32,18,21,17,30,20,30,30,50,26,26,17,25,14,16,14,24,13,14,10,16,10,14,13,25,13,13,9,14,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,11,9,15,10,14,13,27,14,14,10,16,10,12,10,18,10,10,7,11,7,10,10,18,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,22,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,20,11,11,9,14,9,12,11,20,12,14,12,21,14,20,20,35,18,18,13,20,12,14,12,20,11,11,8,11,7,10,9,16,9,9,6,9,6,7,7,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,16,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,9,9,16 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,34,18,17,12,17,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,17,9,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,9,5,6,6,11,6,7,6,9,6,9,9,22,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,11,9,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,6,8,5,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,6,4,6,5,7,4,4,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,16,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,14,8,8,6,8,5,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,6,4,6,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,7,5,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,12,10,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,7,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,24,12,12,8,12,7,8,7,12,6,7,5,8,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,5,4,5,4,12,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,6,9,5,6,5,7,4,6,5,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,6,5,8,5,5,4,7,5,6,6,12,6,7,6,8,6,7,6,12,7,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,6 +-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,5,4,6,4,6,6,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,5,8,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,8,5,7,6,10,6,7,6,9,6,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,6,7,6,10,7,10,9,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,8,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,35,18,18,12,18,11,13,11,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,9,8,14,8,9,7,10,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,16,8,8,6,8,5,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,23,12,12,8,12,7,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,6,7,7,10,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,18,10,12,10,16,11,16,16,27,14,14,10,14,8,9,8,13,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,9,7,10,6,7,6,10,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,7,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,8,5,7,7,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,4,3,4,3,5,4,5,5,8 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,20,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5 +-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,5,3,3,2,4,3,4,3,6,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,7,4,5,4,7,4,5,5,9,5,6,4,5,3,4,4,5,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,25,13,13,9,13,8,9,8,12,7,7,6,9,6,8,7,13,7,8,5,7,5,6,5,8,5,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,13,7,7,5,8,5,5,4,6,3,3,2,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,6,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,16,9,9,7,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,10,7,10,6,7,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,6,4,6,5,11,6,6,4,7,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,5,3,4,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,22,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,12,6,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,5,7,4,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,7,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,3,3,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,3,3,5,3,4,4,13,7,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,3,3,4,3,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,7,6,10,7,9,9,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,9,39,20,20,13,19,11,13,11,18,10,10,7,11,7,9,9,21,11,12,9,13,8,9,8,13,7,8,7,11,7,10,10,18,9,9,7,10,6,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,20,11,11,8,11,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,6,5,8,5,7,7,14,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,25,13,14,10,15,9,10,9,16,9,9,7,10,6,8,8,13,7,8,6,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,8,14,8,8,7,11,8,11,11,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,9,18,10,10,7,10,6,8,7,12,7,7,6,10,7,10,9,20,11,11,8,13,8,10,8,14,8,8,6,10,7,10,10,18,10,11,8,12,8,11,10,18,11,13,11,18,12,18,17,27,14,14,10,15,9,11,9,16,8,8,6,9,6,8,7,12,7,7,5,8,5,7,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,10,6,7,6,9,6,7,7,13,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,19,10,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,5,5,8,6,8,8,9,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,4,5,9 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,21,11,11,7,11,6,7,6,10,6,6,4,6,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,9,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,4,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,2,8,4,4,3,5,3,4,3,4,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,3,3,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,23,12,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,12,6,6,4,6,4,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,10,7,10,10,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,7 +-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,18,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,9,5,5,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,29,15,14,10,14,8,10,9,15,8,8,6,10,6,8,8,17,9,9,7,10,6,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,5,7,7,13,7,7,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,5,3,4,4,6,4,5,5,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,20,10,10,7,11,7,8,7,13,7,7,5,8,5,7,6,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,11,6,7,6,10,7,9,8,14,8,9,8,13,9,13,13,21,11,12,8,12,7,9,7,13,7,8,6,8,5,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,5,8,5,7,7,11,6,6,5,8,5,5,5,8,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,11,6,7,5,8,5,6,6,10,6,7,5,8,6,8,9,15,8,9,6,9,6,7,6,9,5,6,5,8,5,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,6,4,4,4,5,4,6,6,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,4,5,5,8,5,5,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,3,2,2,2,3,2,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,6,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,4,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,4,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,5,3,4,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,27,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,4,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,11,6,7,5,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,10,6,6,5,8,6,8,7,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,5,9 +-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,8,5,7,7,26,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,6,6,18,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,3,5,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,9,5,5,4,7,5,6,5,9,6,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8 +-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,5,4,6,6,7,4,4,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,3,4,4,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,5,4,5,6,16,9,9,6,8,5,6,5,9,6,7,6,9,6,9,8,15,8,8,6,8,5,7,7,12,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,8,15,9,10,8,13,9,14,14,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,10,9,17,10,11,9,15,10,14,14,51,26,26,17,25,15,18,15,27,15,16,12,19,12,15,14,25,13,13,9,14,8,10,9,16,9,11,9,14,10,14,13,21,11,10,7,10,6,7,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,8,8,14,8,9,7,11,8,12,12,20,11,11,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,5,7,7,15,8,9,6,9,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,6,10,7,10,10,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,11,7,10,9,17,9,10,8,13,9,12,12,24,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,12,9,13,13,29,15,15,11,16,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,11,7,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,36,18,18,12,18,10,12,11,19,10,10,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,11,7,10,10,18,10,10,7,9,6,7,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,10,6,7,5,8,5,7,6,11,7,8,6,10,7,9,9,16,9,9,6,9,6,8,8,14,8,10,8,14,10,15,15,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,6,5,7,4,5,5,8,4,4,3,5,4,6,6,10,6,7,6,10,7,9,9,6,3,3,3,4,3,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,8,15 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,6,5,7,5,7,7,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,8,7,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,11,6,6,4,6,4,4,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,2,4,3,3,3,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,6,4,5,4,7,4,5,4,4,3,4,4,8,5,5,4,5,3,4,5,8,5,6,5,8,5,7,7,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,8,8,12,6,6,4,7,4,4,3,6,4,4,3,5,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,5,7,7,11,6,6,4,7,4,4,3,5,3,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,3,3,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,8,6,11,7,10,10,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,4,4,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,5,5,4,6,4,4,3,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,4,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,7,8,6,10,7,9,9,29,15,16,11,16,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,8,7,10,6,7,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,12,7,7,5,8,5,5,4,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,5,7,4,5,4,7,5,7,7,24,12,12,8,12,7,8,7,14,8,8,6,8,5,6,6,12,7,7,5,8,5,7,7,10,6,7,6,10,7,10,9,16,9,9,6,9,6,7,6,11,6,7,5,7,5,6,5,10,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,4,5,5,7,4,4,3,5,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,5,8,5,6,6,13,8,9,7,12,8,11,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,10 +-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,4,4,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,7,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,3,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,13,7,8,6,7,5,6,5,9,5,6,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,7,4,4,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,6,6,20,11,11,7,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,8,5,6,5,7,4,4,4,6,4,6,5,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,9,6,9,9,19,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,8,4,4,4,6,4,4,4,8,5,5,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,6,4,5,5,9,5,6,4,6,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,2,2,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,2,2,3,6,4,4,4,5,3,4,4,8 +-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,6,7,7,12,6,7,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,7,4,4,4,5,4,5,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,9,6,9,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,3,5,3,4,3,5,3,4,4,8 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,3,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,2,2,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,9,5,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,6,4,4,4,6,4,5,4,6,4,5,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,5,7,5,6,6,10,6,8,7,11,8,11,11,17,9,9,6,9,5,6,5,7,4,5,4,5,4,5,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,13,9,13,13,39,20,20,14,21,12,14,12,21,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,15,8,8,6,10,7,9,9,21,11,10,7,10,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,10,7,9,9,35,18,18,13,20,11,13,11,20,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,9,13,13,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,19,10,10,8,12,7,9,7,12,7,7,5,8,5,7,7,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,15,8,9,7,11,7,10,10,18,10,11,9,16,11,16,15,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,14,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,8,5,5,4,5,4,5,5,10,6,6,5,9,6,8,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,8,5,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,16,9,9,6,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,14 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,20,10,10,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,7,4,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,11,6,6,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,4,3,4,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,26,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,14,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,24,12,12,9,13,8,9,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,10,6,6,5,8,5,6,6,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,5,3,3,3,4,2,2,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,5,4,5,5,9 +-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,20,10,10,7,11,6,7,6,12,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,12,7,7,5,7,4,4,4,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,6,5,10,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,38,19,19,13,20,11,13,11,19,10,11,9,14,9,12,11,20,11,11,8,12,7,8,7,13,7,8,7,11,7,9,9,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,20,11,12,9,13,8,11,10,18,10,10,8,12,7,9,8,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,9,14,8,10,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,10,6,8,7,14,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,20,10,10,7,10,6,8,7,9,5,6,5,8,5,7,7,10,5,5,4,6,4,5,4,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,4,5,6,11 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,2,8,5,5,4,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,23,12,12,8,12,7,8,7,14,8,8,6,9,6,8,7,13,7,7,6,8,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,6,4,7,5,6,6,10,6,7,6,9,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,7,4,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,6,5,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-5,-12,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,7,11,6,6,5,6,4,5,5,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,19,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,7,5,6,5,8,6,8,8,34,17,17,12,18,10,12,11,20,11,12,9,13,8,11,10,19,10,10,8,11,7,8,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,12,7,8,6,9,6,8,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,14,8,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,19,10,10,7,10,6,8,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,4,6,6,10 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,5,5,7,5,7,7,12,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,6,8,8,34,17,17,12,18,10,12,11,19,10,11,9,13,8,11,10,19,10,10,8,11,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,13,7,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,10 +-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,19,10,10,8,12,7,8,7,12,7,7,6,10,6,8,7,13,7,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,10,6,7,6,10,6,6,5,8,6,9,9,17,9,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,24,12,12,9,13,8,9,8,13,7,7,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,9,8,14,10,14,14,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,11,21,11,12,9,14,8,10,9,16,9,11,9,16,11,16,16,31,16,16,11,16,9,10,9,15,8,8,6,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,6,8,8,15,8,9,7,11,7,10,10,19,11,13,11,18,13,19,19,72,36,36,25,37,21,24,20,34,18,19,15,24,15,20,19,35,18,19,13,20,12,15,13,24,13,15,12,20,13,18,18,34,18,18,13,20,12,15,13,22,12,12,9,15,10,14,13,25,14,15,11,17,10,13,12,22,12,13,11,18,12,17,17,34,18,18,12,18,10,12,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,16,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,68,34,34,23,35,20,24,20,34,18,19,15,24,15,21,20,39,20,21,15,22,13,17,15,28,16,18,14,23,15,21,20,39,20,20,13,19,11,13,11,18,10,12,9,15,9,12,12,22,12,12,9,15,9,11,10,19,11,12,10,16,11,15,15,30,16,16,11,15,9,10,8,14,8,8,7,11,7,10,10,18,10,10,8,13,8,11,11,21,12,13,11,19,13,20,20,38,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,13,24,14,17,14,24,17,26,26,56,29,29,20,29,17,20,17,31,17,18,13,21,13,17,16,29,15,15,11,17,10,12,11,19,10,11,9,14,9,12,12,23,12,12,8,12,7,9,9,16,9,9,7,11,7,10,9,16,9,10,7,11,7,10,9,16,9,11,9,15,11,16,16,30,16,16,11,17,11,14,12,22,12,13,10,16,11,15,14,27,14,15,11,16,10,13,12,22,13,15,12,20,13,18,18,35,18,18,13,19,11,14,12,22,12,13,11,18,12,17,17,32,17,17,12,18,11,14,13,23,13,16,14,24,16,23,23,38,19,19,13,20,12,15,13,23,12,13,10,15,10,14,13,24,13,14,10,15,9,10,9,16,9,11,9,16,11,15,14,27,14,14,10,16,10,13,11,20,11,12,9,15,10,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,28,15,15,10,15,9,10,8,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,11,7,8,6,10,7,9,9,18,9,9,6,8,5,6,5,7,4,4,3,4,3,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,7,10,10,18 +-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,19,11,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,20,10,11,8,12,7,9,8,15,9,10,8,12,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,7,12,7,9,8,13,9,14,14,28,15,15,10,15,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,7,4,5,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,9,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,3,3,3,4,4,6,4,4,4,6,4,6,5,9 +-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,4,3,13,7,8,6,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,5,7,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,18,10,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,19,10,11,8,12,8,10,9,15,9,10,8,12,8,12,11,20,10,10,7,10,6,6,5,10,6,6,5,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,14,14,10,16,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,6,8,7,11,6,6,5,8,6,8,7,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,10,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,11,11,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,5,3,4,4,6,4,6,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,5,4,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,24,13,13,9,12,7,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,6,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,24,12,12,8,12,7,8,7,12,7,7,6,8,6,7,7,13,7,8,6,8,6,7,6,10,6,7,6,8,6,8,8,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,6,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,12,6,7,5,7,4,6,5,8,5,6,5,8,6,9,9,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-9,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,14,7,7,5,8,5,6,5,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,8,8,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,8,8,17,9,8,6,8,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,35,18,18,12,18,11,13,11,17,9,10,8,12,8,11,10,20,10,10,7,11,7,8,7,14,8,8,7,11,7,9,9,19,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,6,10,6,8,7,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,9,5,6,5,9,6,9,9,35,18,18,12,18,10,12,10,18,10,11,8,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,19,10,10,7,10,6,6,5,11,6,7,6,9,6,7,6,12,7,7,5,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,6,10,7,10,11,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,13,8,10,8,14,10,15,15,29,15,16,11,16,9,11,9,15,8,8,6,10,7,9,9,15,8,8,6,8,5,6,6,9,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,5,9,6,7,6,9,6,8,8,17,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,9,5,6,5,8,5,7,7,16,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,5,4,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,10,6,6,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,4,2,2,2,4,3,3,3,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,6,4,4,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,4,3,4,4,7,4,4,3,5,4,5,5,12,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,24,12,12,8,13,7,8,7,12,7,8,6,9,6,8,7,15,8,7,5,8,5,6,5,10,6,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,23,12,12,8,13,8,9,7,13,7,8,6,8,6,8,7,13,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,6,5,10,6,8,7,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,7,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,8,4,4,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6 +-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,10,6,7,5,8,5,7,6,13,7,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,7,6,11,6,7,5,8,5,6,5,9,5,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-6,-9,-9,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,8,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,3,11,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,8,4,4,3,5,4,5,5,8,5,5,4,5,4,6,6,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,15,8,8,6,9,5,6,5,9,5,6,5,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,5,9,6,8,8,12,6,6,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,9,6,7,7,18,9,9,7,10,6,7,6,10,6,6,4,6,4,6,5,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,7,6,10,7,10,9,34,18,18,13,19,11,13,11,18,10,11,8,12,8,11,11,22,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,16,9,10,7,11,7,8,7,13,8,9,8,13,9,12,12,17,9,10,7,10,6,6,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,5,3,3,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,34,18,18,13,19,11,12,10,18,10,11,9,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,8,13,8,11,11,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,6,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,5,6,5,9,5,6,5,9,7,10,10,19,10,10,8,12,7,9,7,12,7,7,6,10,7,10,9,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,29,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,13,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,13,7,8,6,8,5,5,5,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,6,5,9,6,9,9,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,11,7,9,9,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,13,9,13,13,20,11,11,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,7,5,6,4,5,5,8,5,6,5,7,5,6,6,15,8,8,6,9,5,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,13,7,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3,3,4,3,4,5,9 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,7,4,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,4,3,3,3,6,4,4,4,6,4,5,5,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,5 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,3,8,5,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,6,4,4,4,6,4,5,5,19,10,11,8,10,6,8,7,11,6,6,5,7,5,6,6,12,7,8,6,8,5,6,5,9,5,6,5,8,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,11,6,6,4,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,4,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,8,12,7,7,6,11,6,7,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,7,4,5,5,9,5,6,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,12,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,4,5,3,4,4,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,23,12,12,8,12,7,9,8,13,7,7,5,8,6,8,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,5,10,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,23,12,13,9,14,8,9,7,12,7,7,5,8,6,8,7,13,7,8,6,9,5,6,6,12,7,7,6,10,7,9,9,14,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,10,6,7,5,8,5,7,7,11,6,7,5,8,5,7,7,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,14,8,8,5,7,5,6,6,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,8,5,7,6,10,7,11,11,14,8,8,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,8,4,4,3,4,3,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,6 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3 +0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,6,3,3,3,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,5,3,3,3,4,3,4,3,5,4,6,6,8,4,4,3,3,2,3,3,3,2,2,2,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,6,5,19,10,10,7,11,7,8,7,12,7,7,5,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,6,9,6,8,8,15,8,8,6,7,4,5,4,8,5,5,4,5,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,5,6,5,6,4,6,6,20,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,9,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,3,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,5,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3 +0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,7,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,13,7,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,5,4,4,3,5,4,5,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,16,9,9,6,9,6,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,2,2,2,1,1,1,1,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,3,3,4,3,4,5,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,10,6,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,22,12,12,9,13,8,9,8,13,7,7,5,8,5,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,7,7,10,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,7,6,11,6,7,6,10,7,9,9,35,18,19,13,19,11,14,12,20,11,12,9,15,10,13,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,14,27,14,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,10,8,13,9,14,14,24,13,13,9,12,7,8,7,11,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,4,4,3,3,2,3,3,5,4,5,4,7,5,7,7,14,8,8,6,10,6,7,7,12,7,9,7,12,8,11,11,36,19,19,13,19,11,14,12,21,11,12,8,12,8,11,10,18,10,10,7,11,7,9,8,13,7,8,7,12,8,12,12,19,10,9,6,8,5,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,18,9,9,7,10,6,8,8,14,8,8,7,11,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,18,12,17,17,34,17,17,11,16,9,11,10,17,9,9,7,11,6,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,19,10,11,8,12,7,9,7,12,7,8,6,9,6,9,9,16,9,9,7,10,6,8,8,15,9,11,9,15,11,16,16,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,6,13,7,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,22,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,4,5,4,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,4 +0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,14,8,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,10,6,5,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,5,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,4,6,6,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,8,5,7,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,19,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,7,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,9,6,7,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,4,5,13,7,7,5,7,4,4,4,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,4,2,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,5,5,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,6,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,3,3,5,4,4,4,5,4,5,5,13,7,7,5,8,5,6,5,8,4,5,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,6,3,3,2,2,2,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 +1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,1,2,1,1,1,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,4,6,4,5,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,14,7,7,5,6,4,5,5,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,20,11,11,8,11,7,9,8,13,7,8,6,8,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,9,5,5,4,7,4,5,5,9,5,6,5,8,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,3,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,10,6,6,5,7,4,5,4,8,5,5,5,8,5,7,7,20,10,10,7,11,7,8,7,11,6,6,5,8,5,6,5,11,6,6,5,8,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,5,5,11,6,6,4,6,4,5,5,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,11,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,6,9,5,6,5,8,6,9,9,12,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,5,3,4,3,4,3,4,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,8,4,4,3,3,2,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,5,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,12,6,6,4,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,4,4,8,4,4,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,4,5,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,5,7,4,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,2,3,3,5,3,3,2,3,3,4,4,17,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,5,8,6,8,8,25,13,13,9,14,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,9,7,11,7,10,10,20,10,10,7,10,6,7,7,12,7,7,5,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,6,3,3,2,3,2,3,3,6,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,23,12,12,9,14,8,9,8,14,8,8,6,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,6,9,5,5,3,4,3,4,4,6,4,4,3,5,4,6,6,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,13,7,8,6,10,6,8,7,13,8,9,8,13,9,13,12,24,13,13,9,12,7,8,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,9,6,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,6,9,6,7,7,12,7,8,7,11,7,10,10,16,8,8,6,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,4,4,3,5,4,5,5,10,5,5,4,5,3,3,2,2,1,1,1,0,0,0,1,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,5,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,2,3,3,4,4,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,3,3,4,3,5,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,9,6,7,6,9,5,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,4,5,4,5,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,3,4,3,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,4,5,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2 +1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,12,7,8,7,13,7,7,6,9,6,9,9,14,8,8,6,10,6,7,7,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,6,10,5,5,4,6,5,7,7,11,6,7,6,11,7,10,10,19,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,6,9,6,7,6,10,7,10,9,21,11,11,8,12,7,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,6,9,6,7,6,12,7,9,7,12,8,12,11,18,9,9,6,8,5,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,9,9,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,5,11,6,6,5,8,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,3,4,4,6,4,4,4,14,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,4,3,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,4,5,4,4,4,6,4,4,4,6,4,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,4,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-3,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,6,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,8,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,17,9,9,7,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,10,7,10,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,7,10,10,17,9,8,6,8,5,6,5,10,6,6,4,5,4,5,4,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,12,7,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,7,5,6,4,5,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,9,16,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,9,6,9,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,13,7,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,7,7,6,8,5,7,6,10,6,7,6,11,7,10,10,16,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,8,5,6,5,9,6,8,8,10,5,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,26,13,13,9,14,8,10,8,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,9,8,14,9,13,13,41,21,20,14,20,12,15,13,22,12,14,11,18,12,16,15,29,15,16,11,16,9,11,10,18,10,12,10,18,12,17,17,32,17,17,12,19,11,14,12,21,11,12,9,14,9,12,12,23,12,13,10,16,10,13,12,21,12,13,10,17,12,17,17,31,16,16,10,14,8,10,8,13,8,9,7,11,7,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,9,17,9,9,6,9,6,8,7,12,7,8,6,9,6,8,7,13,7,8,6,10,7,9,8,14,8,10,9,16,11,17,17,39,20,19,13,19,11,14,12,20,11,12,9,15,9,12,11,20,11,12,9,13,8,11,10,18,10,11,9,14,10,14,14,26,14,14,10,15,9,10,8,14,8,8,6,9,6,7,6,11,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,25,13,12,8,12,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,11,7,10,10,20,11,11,8,11,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,19,11,14,12,20,13,19,19,31,16,16,11,16,9,10,8,13,7,7,6,9,6,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,21,11,11,8,11,7,8,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,10,8,12,7,9,9,16,9,11,10,18,12,18,18,26,14,14,10,14,8,10,9,16,9,9,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,9,7,12,8,11,11,21,11,12,8,12,7,9,7,12,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,23,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,2,2,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,9,7,10,6,8,7,11,6,7,5,7,5,6,6,12,7,7,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,4,7,4,4,4,6,4,5,4,8,5,6,5,9,6,9,9,20,10,10,7,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,6,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,7,5,6,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,8,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,4,4,8,5,6,5,9,7,10,10,21,11,11,8,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,2,2,2,2,2,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,5,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,4,3,4,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,5,6,5,8,6,8,8,23,12,12,8,12,7,9,7,13,7,8,6,10,6,8,8,16,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,7,11,6,7,5,8,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,15,8,7,5,6,4,5,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,8,7,12,8,12,12,16,8,8,6,8,5,5,4,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,3,3,2,3,3,4,3,4,4,13,7,8,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,6,7,6,10,7,10,10,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,13,7,6,4,6,4,5,5,7,4,4,3,4,3,4,3,6,3,3,2,2,2,3,3,2,2,2,2,4,3,4,4,13,7,7,5,6,4,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,7,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,11,6,6,4,5,3,4,3,6,3,3,3,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,18,10,10,7,9,6,7,6,9,5,6,5,8,5,6,6,11,6,7,5,6,4,5,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,4,3,4,3,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0 +1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,4,3,4,3,4,4,6,3,3,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,15,8,8,6,9,5,6,5,9,5,5,4,5,3,4,3,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,7,4,5,4,5,4,6,6,10,6,6,5,8,6,9,9,30,15,15,10,14,8,10,9,15,8,9,7,10,7,9,8,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,7,12,8,11,11,17,9,9,6,8,5,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,14,8,8,5,7,4,5,5,8,4,4,3,5,4,5,5,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,24,13,13,9,14,8,10,9,15,8,8,6,10,6,8,8,11,6,7,5,7,4,5,4,7,4,5,4,7,5,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,5,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,14,14,18,9,9,7,10,6,7,6,10,6,6,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,2,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,10,6,7,7,12,7,9,7,12,8,11,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,5,4,6,5,7,7,15,8,7,5,7,5,6,5,8,5,5,4,5,3,4,3,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,12,7,7,5,6,4,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3 +0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,5,7,4,5,4,8,5,6,5,8,6,8,7,13,7,6,5,7,5,6,5,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,9,5,4,3,5,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,5,5,8,6,8,9,11,6,6,4,7,4,4,4,7,4,4,3,4,3,3,3,6,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,9,5,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,5,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-2,0,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-5,-3,-4,-4,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,8,5,5,4,6,4,4,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,8,8,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,8,5,6,5,7,5,7,6,11,6,6,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,5,6,6,12,7,8,7,12,8,11,11,20,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,7,4,5,4,7,5,8,8,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,7,6,11,6,7,6,11,8,12,12,15,8,8,6,8,5,5,4,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,3,4,3,4,4,11,6,6,4,5,3,4,3,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6 +1,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,5,3,4,3,4,3,5,4,7,4,4,4,5,4,5,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-3,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,6,4,4,3,5,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,6,5,7,7,22,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,8,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,9,5,6,5,7,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,8,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,10,6,6,6,10,7,11,11,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,3,4,3,4,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,5,7,7,12,6,6,5,8,5,5,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,4,3,3,2,3,3,9,5,6,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,5,7,7,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,18,9,9,6,9,6,6,6,10,6,6,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,5,3,4,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,6,6,10,7,10,10,14,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,4,4,4,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-9,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-7,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,10,5,5,3,4,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,2,1,1,1,1,1,1,2,3,2,3,2,6,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,6,4,4,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,40,21,21,14,21,12,15,13,23,12,13,10,15,9,12,11,21,11,12,9,13,8,9,8,15,9,11,9,15,10,15,15,23,12,12,8,12,7,9,8,14,8,9,7,11,7,9,9,16,9,9,7,11,7,10,10,18,10,12,11,19,13,19,18,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,8,10,9,17,10,12,11,19,13,19,19,34,17,17,11,16,9,11,10,17,9,9,7,11,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,8,5,6,6,10,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,13,8,11,11,20,11,13,11,20,14,20,19,26,13,13,9,13,7,8,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,6,5,9,6,7,6,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,8,5,7,7,12,7,7,5,6,4,5,4,6,4,5,4,6,4,6,6,15,8,9,6,9,6,8,7,13,7,8,6,9,6,9,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,23,12,12,9,14,8,9,8,14,8,8,7,11,7,10,9,16,9,9,6,9,6,7,7,12,7,7,6,10,7,9,9,20,10,10,7,9,5,6,5,9,5,4,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,5,4,6,6,16,8,8,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-13 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,9,5,6,4,5,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,21,11,11,8,11,7,8,7,13,7,7,6,8,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,10,14,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,5,3,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,9,5,6,4,6,4,4,3,5,3,2,2,4,2,2,2,5,3,2,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,22,12,12,8,12,7,8,7,14,8,8,6,8,6,8,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,8,6,10,7,10,10,16,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,5,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,5,5,8,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,4,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,11,6,6,4,6,4,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-7 +0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,16,9,9,6,9,5,6,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,2,2,3,3,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,25,13,13,9,14,8,10,9,16,9,9,7,10,7,9,8,14,8,8,6,9,6,7,6,12,7,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,6,12,7,9,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,11,6,7,5,8,5,6,5,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,6,9,6,8,7,10,6,8,7,12,8,11,11,24,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,7,8,6,10,7,9,8,15,9,10,8,14,9,13,13,16,8,8,6,8,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,7,13,7,8,6,8,5,6,5,6,4,4,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,15,8,8,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,3,5,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,3,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,5,10,6,6,5,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,20,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,6,4,6,4,4,3,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,4,5,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,6,6,4,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,12,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,5,8,8,12,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,11,7,8,6,11,8,11,10,11,6,6,4,5,4,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,1,1,1,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,5,6,11,6,6,4,6,4,5,4,7,4,3,2,3,2,3,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,7,4,5,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,36,19,19,13,20,12,14,12,21,11,11,8,13,8,10,9,20,11,11,8,13,8,10,9,16,9,11,9,14,9,13,13,24,12,12,9,13,8,10,8,14,8,8,6,9,6,9,9,14,8,8,6,10,7,10,9,17,10,12,10,18,12,18,18,29,15,16,11,16,9,11,9,15,9,10,8,12,8,10,9,18,9,9,6,9,6,7,7,12,7,8,7,11,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,9,16,9,10,9,15,10,15,16,33,17,17,12,18,10,12,10,17,10,11,8,13,8,11,10,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,7,15,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,11,6,6,5,8,6,8,8,18,10,10,8,12,8,11,11,20,11,13,11,19,13,19,19,21,11,11,8,11,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,7,5,7,8,16,8,8,6,9,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,6,5,8,5,6,5,9,6,9,8,18,9,9,6,8,5,5,4,7,4,5,4,5,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,9,8,12,7,8,6,9,6,7,7,12,7,9,8,13,9,13,13,20,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,8,6,9,6,7,6,11,7,8,6,10,6,8,8,16,9,9,6,9,5,6,5,8,5,6,5,7,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,4,3,4,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,20,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,13,7,7,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,11,6,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,4,4,6,4,5,5,5,3,4,3,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,24,12,12,9,13,8,10,8,13,7,7,5,8,5,7,6,13,7,8,6,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,9,8,14,8,8,6,9,5,6,5,8,5,6,5,6,4,6,6,12,7,7,5,9,6,8,8,13,8,10,8,14,10,14,14,14,7,7,5,6,4,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,13,7,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,7,7,20,10,10,7,11,7,8,7,11,6,6,5,7,4,6,5,11,6,6,5,7,4,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,8,4,5,4,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,12,8,12,11,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,3,3,4,4,7,4,4,3,4,3,5,5,8,5,5,5,8,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,4,6,6,10,6,6,4,6,4,4,3,7,4,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,34,17,17,12,18,11,13,11,18,10,10,8,12,7,9,9,18,10,10,7,11,7,9,8,13,8,9,8,13,9,12,12,22,11,11,8,12,7,9,7,13,7,8,6,8,6,8,8,15,8,9,7,11,7,9,9,17,10,12,10,16,11,16,16,29,15,15,11,16,9,11,9,16,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,11,7,8,7,12,8,12,11,19,10,11,8,11,7,8,8,14,8,9,7,11,7,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,16,16,32,16,16,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,5,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,7,7,13,8,9,7,12,8,12,12,21,11,12,8,12,7,9,7,12,7,8,7,11,7,10,10,19,10,11,8,13,8,11,10,18,11,13,11,20,13,19,19,18,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,18,9,9,6,8,5,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,13,7,8,7,12,8,12,12,21,11,11,8,11,7,9,8,13,7,8,6,10,7,9,9,14,8,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,6,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,4,4,10,5,5,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,4,2,3,2,3,2,3,2,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,23,12,12,8,12,7,9,7,12,7,7,6,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,6,7,6,11,6,7,5,8,5,7,7,12,6,7,5,7,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,8,8,6,10,6,8,7,13,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,4,8,5,6,4,7,4,6,6,10,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,7,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,9,5,5,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,4,3,4,3,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,11,12,9,14,9,11,10,19,11,12,10,16,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,15,8,8,6,10,6,6,5,9,5,6,5,8,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,13,7,8,6,11,7,10,10,18,10,11,8,14,9,12,11,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,7,5,6,6,12,7,7,6,8,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,10,6,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-6,-4,-6,-6,-14 +1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,10,5,5,3,5,3,4,3,4,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,33,17,18,12,17,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,11,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,10,11,8,14,9,11,10,19,11,12,10,17,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,9,9,15,8,8,6,9,6,6,5,9,5,6,5,7,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,14,8,8,6,11,7,10,10,18,10,11,8,14,9,11,10,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,7,5,7,6,12,7,7,6,8,5,7,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-10,-5,-7,-6,-11,-7,-12,-12,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-9,-14,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-11,-23,-12,-13,-9,-15,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-38,-18,-18,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-1,-1,0,0,0,0,1,1,1,2,2,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,6,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,9,5,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,5,3,4,4,7,6,9,9,17,9,10,7,10,6,7,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,7,6,11,6,7,6,10,7,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,8,11,10,19,10,11,8,13,8,11,11,21,12,14,12,22,15,22,21,66,33,33,23,34,19,22,19,33,18,19,15,25,16,21,20,38,20,20,14,21,12,15,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,19,12,16,16,30,16,17,13,20,12,16,15,28,16,18,15,25,17,25,25,49,25,25,17,26,15,17,15,26,14,15,11,17,11,15,14,26,14,15,11,17,10,13,12,22,12,14,11,19,13,18,18,34,18,18,12,18,11,13,11,19,11,13,10,17,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,30,21,31,31,62,31,31,21,32,18,21,18,32,17,19,14,23,15,21,20,39,20,21,15,24,14,18,16,30,16,18,15,25,17,24,24,46,24,24,16,23,13,16,14,24,13,15,12,20,13,18,17,33,18,19,14,21,13,17,15,27,15,17,14,24,16,23,23,44,23,23,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,11,17,11,14,13,24,13,15,12,20,14,20,20,39,20,21,15,22,13,16,14,25,14,16,12,20,13,18,17,33,18,19,14,22,14,19,18,34,20,24,21,37,25,38,38,34,18,18,12,18,11,14,12,21,11,12,9,15,9,12,11,20,11,11,8,12,7,9,8,14,8,9,7,10,7,10,10,19,10,11,8,13,8,9,8,15,8,9,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,8,10,9,16,9,9,7,10,7,9,8,15,8,9,7,11,7,8,7,13,8,9,8,13,9,12,12,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,14,27,14,15,11,18,11,14,12,22,13,16,13,23,15,22,22,44,22,22,15,21,12,15,12,21,11,11,8,11,7,9,8,13,7,7,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-13,-27 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,7,11,6,8,7,13,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,9,7,10,7,9,8,15,9,10,9,15,11,16,16,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,11,20,10,11,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,8,11,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13 +0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,2,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,13,7,7,6,9,6,8,8,13,7,8,6,9,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,8,16,9,10,9,15,11,16,16,32,17,17,12,17,10,12,10,17,9,10,8,12,8,11,11,19,10,10,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,9,7,10,6,8,8,15,8,9,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-2,-3,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,4,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,7,4,4,4,6,4,6,6,10,6,6,4,7,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,6,8,6,8,7,13,7,7,6,9,6,7,6,11,6,7,5,9,6,8,8,16,8,8,6,8,5,6,6,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,5,7,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,4,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,8,13,9,13,13,12,6,6,5,7,4,6,5,8,4,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,8,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,2,1,1,0,1,1,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,6,4,4,3,3,2,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,5,5,10,6,6,5,7,5,7,7,10,6,8,7,11,8,11,11,33,17,17,12,17,10,11,10,18,10,10,8,12,8,11,10,20,10,10,7,10,6,7,7,14,8,8,7,11,7,10,10,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,9,13,7,8,6,9,6,7,7,14,8,8,6,9,6,7,7,13,8,9,7,11,7,10,10,18,9,9,7,10,6,7,7,10,6,6,5,8,6,8,8,14,8,9,7,10,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,18,10,12,10,17,9,10,8,12,8,10,10,18,10,11,8,12,7,9,8,15,8,9,7,12,8,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,10,7,9,8,15,9,10,8,12,8,12,12,23,12,11,7,10,6,7,7,11,6,6,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,10,11,18,10,10,7,11,7,9,8,12,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,17,10,13,11,19,13,19,19,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,5,5,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,11,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,8,8,12,6,6,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,6,6,5,8,6,8,7,12,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,6,4,6,6,11,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,12,7,9,8,14,10,14,14,12,6,6,5,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,6,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,8,4,5,4,6,4,5,5,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,9,9,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,5,6,6,10,6,8,7,12,8,12,12,10,6,6,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,4,2,3,3,4,3,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,5,4,6,4,6,5,9,5,5,4,7,4,5,4,7,4,4,4,6,4,4,4,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,4,11,6,6,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,3,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,3,3,6,4,4,4,6,4,5,5,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,34,17,17,12,18,10,11,9,16,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,10,6,8,8,14,8,8,6,10,7,10,10,13,7,8,6,9,6,8,7,12,7,9,8,14,10,14,14,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,9,7,12,8,11,11,17,9,9,7,11,7,8,7,12,7,7,6,10,7,10,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,16,16,11,17,10,11,9,16,9,9,7,12,8,11,10,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,21,11,12,8,12,7,9,7,12,7,7,5,8,6,8,8,17,9,10,7,10,7,9,8,14,8,9,8,13,9,12,12,23,12,12,8,11,6,7,6,10,6,6,5,7,5,7,7,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,11,11,9,14,9,11,10,18,11,13,11,20,14,20,20,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,16,9,10,7,11,7,9,8,14,8,10,8,13,9,12,12,18,9,9,6,8,5,6,5,9,5,6,5,7,4,5,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,6,5,7,5,7,7,10,5,5,4,4,3,4,3,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,19,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,4,4,3,5,4,5,4,7,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,6,5,9,5,6,6,10,7,10,10,18,9,9,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,5,6,4,6,4,6,6,12,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,10,6,6,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,10,6,7,7,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,4,3,4,3,6,4,4,3,4,3,4,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,10,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,4,4,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,5,6,5,8,6,8,9,22,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,15,8,8,6,9,6,7,6,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,10,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,7,6,10,6,8,7,11,8,11,11,20,11,11,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,11,7,9,8,14,9,13,13,14,7,7,5,6,4,5,5,7,4,4,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,7,4,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,5,5,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,4,5,4,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,4,7,5,6,5,9,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,5,6,5,8,5,5,5,7,5,7,7,12,7,7,5,7,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,8,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,10,6,8,7,11,8,11,11,12,6,6,4,5,3,4,3,5,3,3,2,4,3,4,4,6,3,3,3,3,3,4,3,5,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,7,4,5,5,9,5,6,5,8,6,8,8,9,5,5,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,6,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,11,6,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9 +-3,-1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,2,2,4,3,3,3,4,3,5,5,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,6,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,2,2,2,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,11,6,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,7,6,9,6,8,8,14,8,10,8,14,9,13,13,35,18,18,12,18,11,13,11,18,10,11,8,13,8,10,10,18,10,10,7,11,7,8,8,14,8,9,8,14,9,12,12,21,11,11,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,6,7,6,10,6,7,6,10,7,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,11,15,8,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,10,17,9,10,8,12,7,9,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,9,9,20,10,10,7,11,6,7,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,15,8,9,8,13,9,13,13,26,13,13,9,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,7,12,7,7,6,9,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,19,13,18,18,19,10,10,7,9,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15,8,9,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,15,8,8,5,7,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-9,-19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,5,3,3,2,4,3,3,3,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,6,4,5,4,8,5,6,5,7,5,7,7,10,6,6,5,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,8,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,4,4,4,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,6,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-6 +-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,1,1,2,2,2,2,2,2,2,2,2,2,2,3,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,6,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,4,6,4,6,6,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,5,5,11,6,6,4,6,3,3,3,6,4,4,4,6,4,6,5,6,4,5,4,6,4,4,4,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,9,5,5,3,4,3,3,3,7,4,5,4,6,5,7,7,9,5,6,5,8,5,7,6,9,5,6,6,10,7,11,11,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,7,5,6,6,16,8,8,6,9,5,6,5,8,4,4,3,6,4,5,5,9,5,6,4,5,3,4,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,5,8,4,4,3,4,2,2,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,8,6,8,8,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,6,4,6,7,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-2,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6 +-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,5,8,5,7,6,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,6,11,7,10,10,27,14,13,9,12,7,8,7,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,7,6,9,6,9,9,12,7,7,5,8,5,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,10,6,6,4,5,3,4,4,8,5,5,4,7,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,24,12,12,9,13,8,9,7,11,6,6,4,6,4,5,5,12,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,18,10,10,7,9,5,6,6,10,6,6,4,5,4,5,4,10,6,6,5,7,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,12,7,7,5,6,4,4,3,5,3,4,3,5,3,4,3,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,5,9,6,7,6,11,8,12,12,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,5,7,7,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,4,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,1,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,3,4,3,3,3,3,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,5,8,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,8,6,8,8,8,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,7,5,7,8,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,0,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,2,2,3,2,2,2,4,3,3,3,-5,-2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,8,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,8,8,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,9,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,4,5,5,11,6,7,6,10,7,10,10,9,5,6,4,6,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,4,3,3,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,16,9,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,7,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,6,4,4,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,5,8,5,5,4,6,4,5,5,10,6,7,6,8,6,8,8,22,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,7,5,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,11,6,6,4,7,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,10,7,10,10,5,3,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,8,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,20,11,11,7,10,6,7,6,10,6,6,4,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,10,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,1,1,1,2,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,11,6,7,6,9,6,8,8,15,9,11,9,16,11,15,15,40,20,20,13,19,11,12,10,18,10,10,8,12,8,10,10,19,10,10,7,10,6,8,7,11,6,7,6,11,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,14,8,9,7,10,6,8,7,13,8,9,7,11,8,11,11,17,9,9,6,9,6,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,8,8,14,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,10,17,12,17,17,40,20,20,13,19,11,13,11,19,10,11,8,13,8,10,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,6,10,6,7,5,8,5,7,7,26,14,14,10,15,9,11,10,17,9,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,8,7,11,8,11,11,20,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,11,10,19,11,14,12,20,13,19,19,17,9,9,6,9,5,6,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,8,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,11,8,12,8,10,9,16,9,11,10,18,12,18,18,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,5,3,2,1,1,1,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25 +-3,-1,-2,-1,-2,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,7,10,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,10,6,6,5,7,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-7,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,11,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,9,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,6,7,11,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,0,-1,0,-1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,8,4,5,4,5,4,5,5,8,5,6,5,7,5,8,8,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,-8,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,4,3,3,3,4,3,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,10,5,5,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,6,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,20,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,8,5,6,5,8,6,8,7,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,9,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,3,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,3,4,3,3,2,1,1,2,2,3,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,15,8,8,6,7,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,3,2,2,2,5,3,3,3,5,3,4,5,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,14,8,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,3,2,4,3,3,3,4,2,2,2,3,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,4,7,4,4,4,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,8,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,4,5,5,8,5,5,4,7,5,8,8,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,5,8,6,8,7,8,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,5,7,5,8,8,14,8,9,7,12,9,13,13,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,6,5,8,5,7,7,12,7,9,7,12,8,11,11,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,1,1,1,0,-1,0,1,1,1,1,1,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,5,3,3,2,4,3,4,3,5,4,4,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,2,1,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,3,3,3,4,3,4,3,4,3,5,4,5,5,14,8,8,5,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,4,8,5,6,5,7,5,8,8,8,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,-1,0,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,4,5,4,6,6,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,8,5,5,3,4,3,4,3,7,4,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,7,4,5,4,5,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,8,4,4,3,4,3,5,5,9,6,7,6,10,6,8,8,14,7,7,5,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,9,5,6,5,8,6,9,10,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,7,4,4,4,6,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,3,2,1,1,1,1,2,2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 +2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,4,4,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,4,6,4,5,5,8,5,5,4,8,6,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,7,5,7,7,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-5,-11 +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,4,5,5,8,5,5,4,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,7,7,2,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,9,5,6,4,6,4,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,5,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,4,4,7,5,6,5,8,6,9,9,25,13,13,9,14,9,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,18,10,10,7,10,6,8,7,13,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,20,10,10,7,9,6,7,6,10,6,6,5,9,6,7,7,12,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,5,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,5,5,10,6,6,5,8,5,7,7,13,8,10,8,14,10,14,14,21,11,11,8,11,6,6,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,5,5,8,6,8,8,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,8,5,5,4,7,5,6,6,14,8,8,6,10,6,7,6,11,6,7,6,9,6,7,7,12,7,7,5,7,5,7,7,12,7,8,7,12,9,13,13,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,1,1,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,6,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,6,4,5,5,7,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,2,2,5,3,4,4,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,8,8,12,6,6,4,7,4,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,8,5,6,5,7,5,8,8,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-11 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,11,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,5,4,6,6,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-5,-3,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,5,3,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,11,6,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,5,8,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,4,4,6,4,6,5,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,10,6,7,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,5,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,5,6,6,4,4,3,4,3,3,2,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,9,9,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,1,0,0,0,1,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,7,11,6,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,3,2,3,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,1,1,1,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,9,9,22,12,12,9,13,8,10,8,14,8,8,6,9,6,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,15,8,8,6,10,6,7,7,12,7,7,6,9,6,7,6,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,16,9,9,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,11,8,12,12,18,10,10,7,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,13,7,6,4,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,7,7,12,7,9,7,12,8,10,10,0,0,0,0,-1,0,0,0,-1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,6,6,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,1,2,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,5,4,6,4,4,4,6,5,7,7,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,10,6,6,4,6,4,4,4,8,5,5,3,5,3,4,4,9,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,10,6,6,4,7,4,4,4,8,5,5,4,6,4,5,4,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,6,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,5,3,4,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,8,4,4,3,4,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,4,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,23,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,9,6,8,8,13,7,8,6,8,5,6,5,7,4,4,3,4,3,4,4,10,5,5,4,6,4,4,4,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,10,5,5,4,6,4,6,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,4,6,4,6,6,12,7,7,5,8,5,7,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,13,7,7,5,6,4,5,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,7,4,4,4,6,4,6,6,11,6,7,5,8,5,6,6,12,7,7,6,10,7,9,9,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-7,-4,-6,-6,-14 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,4,3,4,2,3,2,3,2,3,2,3,2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,8,5,5,4,7,5,6,6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,2,2,2,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,8,5,6,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,8,8,13,7,8,6,8,5,6,5,10,6,6,5,7,5,7,7,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,13,9,13,7,8,7,13,7,8,6,10,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-25,-12,-13,-8,-13,-7,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-22,-11,-12,-8,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,2,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,16,8,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,6,7,6,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,13,19,19,47,24,24,16,24,14,16,13,23,12,13,10,17,11,15,15,29,15,15,10,15,9,12,11,19,11,12,10,16,11,15,15,30,16,16,11,15,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,26,13,13,9,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,7,11,8,11,10,19,11,13,10,17,12,17,18,29,15,15,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,13,9,14,9,11,10,17,10,12,10,16,11,15,15,28,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,11,8,11,12,23,12,11,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,10,15,15,28,14,14,10,14,8,10,9,15,9,10,8,14,9,13,12,22,11,11,8,12,8,10,9,17,10,12,10,18,12,17,17,40,21,21,15,22,13,15,13,22,12,13,9,14,9,13,12,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,21,11,11,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,6,9,6,8,7,12,7,9,8,14,10,14,13,25,13,14,10,14,8,9,7,12,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,27,14,15,11,16,10,12,10,18,10,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,10,9,15,10,15,15,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,1,1,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-24 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,10,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,6,5,10,7,9,9,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-7,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,5,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,8,6,8,7,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,10,7,10,10,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,5,5,8,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 +0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7 +0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-5,-4,-7,-4,-5,-4,-8,-5,-9,-9,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,1,1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,3,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,9,5,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,7,7,11,7,8,6,10,7,10,10,25,13,13,9,14,8,9,8,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,5,10,6,6,5,9,6,9,10,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,22,12,12,8,11,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,6,4,5,4,8,5,6,5,8,5,7,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,4,7,5,8,8,13,7,8,6,8,5,5,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,5,8,6,8,8,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11 +1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,5,4,5,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,4,3,3,3,7,4,4,4,7,5,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,5,8,5,5,4,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,1,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,7,7,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-9,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,1,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,29,15,15,10,15,9,10,8,14,8,9,7,10,7,10,9,17,9,9,6,9,6,7,6,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,5,8,5,6,5,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,10,7,9,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,6,4,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,6,11,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,14,7,7,5,7,4,5,4,6,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,11,10,21,11,11,8,11,7,8,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,7,5,6,5,7,5,7,7,17,9,9,7,9,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,3,2,2,3,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,5,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6 +1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4 +0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-3,-11,-5,-6,-4,-6,-3,-4,-3,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,3,2,2,1,0,0,0,0,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,9,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,13,7,7,5,6,4,5,4,8,5,5,4,5,4,5,5,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,6,4,6,7,13,7,8,6,8,5,6,5,7,4,4,3,5,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,5,7,7,17,9,8,6,8,5,5,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,6,4,4,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,4,6,4,6,6,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-8 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,4,2,3,2,3,2,3,2,3,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,5,4,4,4,6,4,6,6,14,7,7,5,8,5,5,4,8,4,4,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,4,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,4,5,9,5,6,4,5,4,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,11,6,5,4,5,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,1,1,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,2,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,1,1,1,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,3,2,2,1,1,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,4,5,5,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,4,5,4,5,5,7,4,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,6,4,4,3,3,3,4,4,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,3,6,4,4,3,5,4,5,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,3,2,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,3,5,3,4,3,5,3,4,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 +-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-5,-10,-6,-9,-9,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,3,4,3,5,6,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,11,9,15,10,15,15,35,18,18,13,19,11,13,11,18,10,11,8,12,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,22,11,11,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,8,6,9,5,6,6,10,6,6,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,12,6,6,4,6,4,6,5,9,5,6,4,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,11,27,14,14,10,16,9,11,9,16,9,9,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,4,5,4,12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,6,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,5,4,6,5,7,7,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,12,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,4,6,4,5,5,9,5,6,5,8,6,8,9,20,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,4,4,5,4,5,5,13,7,6,5,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,0,0,0,0,0,1,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,10,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,10,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,8,8,6,8,5,5,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,9,6,9,9,12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,5,5,6,4,4,4,6,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,4,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,5,3,3,3,4,3,3,3,8,5,5,3,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,4,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,5,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,9,5,5,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,5,6,5,7,5,8,8,19,10,10,7,10,6,8,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,6,5,11,6,6,4,7,4,5,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,8,8,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,3,2,2,2,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,4,4,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,17,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,2,1,1,1,5,3,3,3,5,3,4,3,5,3,4,3,5,4,6,6,15,8,9,6,9,5,6,5,8,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,12,9,13,13,32,17,17,11,16,10,12,10,17,9,10,7,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,11,6,7,5,7,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,22,12,12,8,11,7,8,7,11,7,8,6,10,6,8,8,10,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,3,3,3,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,8,4,4,3,6,4,4,4,8,5,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-3,-6,-3,-5,-5,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,6,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,13,7,7,5,8,5,5,5,7,4,5,4,6,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,5,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,7,6,12,7,8,7,12,9,13,13,29,15,16,11,16,9,10,8,16,9,9,7,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,6,6,10,6,7,6,10,7,11,11,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,9,5,6,6,10,7,9,9,16,8,8,6,9,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,8,4,4,3,5,4,5,5,9,5,6,5,8,6,9,9,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17 +-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,5,4,5,4,8,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,3,3,2,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,4,4,4,6,4,5,4,6,4,6,6,12,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,6,9,5,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,4,3,6,4,4,4,8,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,7,4,5,4,6,4,5,4,7,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-8,-5,-7,-7,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,11,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,7,5,8,8,25,13,13,9,13,7,8,6,10,6,6,5,7,5,6,6,11,6,7,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,10,7,9,9,18,10,10,8,12,8,11,11,21,12,15,13,23,16,23,23,53,27,26,18,26,15,17,14,24,13,14,11,17,11,14,14,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,28,14,14,10,15,9,11,10,19,10,11,8,13,9,12,11,21,11,12,9,15,9,12,11,19,11,14,12,21,14,20,20,35,18,18,12,16,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,9,9,18,9,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,9,16,11,17,17,32,17,17,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,20,11,11,8,12,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,10,10,18,10,12,10,17,11,16,15,44,22,22,15,23,13,16,13,22,12,12,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-7,-16,-8,-10,-8,-16,-11,-17,-17,-34 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,7,4,4,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,13,9,12,12,28,14,14,10,14,8,10,8,13,7,8,6,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,12,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,6,5,9,5,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,4,4,4,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,4,6,4,6,5,10,6,6,4,7,4,5,5,7,4,4,4,6,4,6,6,12,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3,-3,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,15,8,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,9,8,14,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,8,6,8,7,15,8,9,7,10,6,7,7,11,6,6,5,8,6,9,9,18,10,10,7,10,6,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,6,9,5,6,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,6,6,4,6,4,4,3,3,2,2,2,4,3,4,4,7,4,4,4,6,4,5,4,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,6,10,7,9,9,24,13,13,9,12,7,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,9,5,5,4,5,4,5,4,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,14,8,8,5,7,4,5,5,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,4,5,3,4,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,6,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,8,6,10,7,10,10,21,11,10,7,10,6,8,6,11,6,6,4,6,4,6,5,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,7,5,6,5,9,6,9,9,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,8,7,17,9,9,6,8,5,6,6,9,5,5,4,7,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,9,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,7,6,9,6,9,9,17,10,12,10,17,11,16,16,34,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,19,10,11,8,12,7,9,8,14,8,8,7,11,7,10,10,21,11,11,7,10,6,7,6,10,6,7,6,10,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,6,5,7,5,8,8,15,8,8,5,7,4,4,3,4,3,4,3,5,3,4,4,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,19,10,11,8,11,6,7,6,11,6,6,5,8,5,7,6,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,5,10,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,5,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,5,3,4,3,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,10,21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,7,5,6,5,10,6,6,4,6,4,6,5,7,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,3,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,5,3,3,2,3,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,7,16,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,8,6,9,6,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,5,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-5,-5,-12 +-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,1,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,7,7,10,6,7,6,11,8,12,12,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,4,3,3,3,4,3,3,3,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,7,4,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,6,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,8,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,10,8,13,9,14,14,25,13,14,10,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,5,4,6,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,20,10,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,8,13,9,13,13,24,13,13,9,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,5,8,5,7,7,13,7,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-10,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,2,3,3,5,3,3,3,5,4,5,5,3,2,2,2,4,3,4,4,6,3,3,3,4,3,5,5,8,5,5,5,8,5,7,7,12,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,26,15,18,15,27,18,26,26,46,24,24,16,23,14,17,15,26,14,15,11,17,11,14,14,26,14,14,10,16,10,13,11,20,11,13,11,18,12,17,16,28,14,14,10,15,9,12,10,18,10,11,9,14,9,12,12,23,12,13,10,15,9,12,11,21,12,14,11,19,13,19,19,32,16,16,11,17,10,12,10,17,9,10,8,12,8,11,11,22,11,11,8,11,7,9,8,13,7,8,7,11,7,10,10,24,12,12,9,13,8,9,7,12,7,7,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,11,7,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,6,6,13,7,8,6,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,7,13,8,10,9,16,11,16,16,37,19,19,13,19,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,10,6,6,5,9,5,6,4,6,5,7,7,10,6,6,4,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,4,6,3,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-13,-6,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-10,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-10,-13,-10,-19,-13,-20,-20,-42 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,4,7,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 +-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,9,5,6,5,9,5,6,5,9,6,7,7,14,8,8,7,10,6,8,8,15,9,10,9,15,10,15,15,26,14,14,9,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,7,7,11,7,8,6,11,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,14,7,7,5,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,6,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,6,4,4,4,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,10,6,8,7,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,12,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-6,-3,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,9,5,5,4,6,5,8,8,16,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,19,10,11,8,12,8,10,10,18,9,9,7,10,7,9,8,12,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,10,8,13,9,12,12,22,12,12,9,13,8,9,7,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,10,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,11,6,7,5,8,5,6,5,9,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,7,5,8,5,5,4,7,4,4,3,4,3,5,5,6,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,20,10,10,7,11,6,7,6,12,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,7,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-3,-2,-3,-2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-5,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,4,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,6,6,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,14,8,10,9,14,10,14,15,26,13,13,9,14,8,10,8,15,8,9,7,10,7,9,9,14,8,8,6,8,5,6,6,10,6,6,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,13,7,8,6,8,5,6,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,7,4,5,4,7,5,8,8,15,8,8,6,7,5,6,5,10,5,5,4,6,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,5,3,4,3,4,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,5,10,6,6,5,7,5,6,5,9,5,6,6,9,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,6,6,5,9,6,9,9,15,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,12,7,7,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,7,9,6,6,6,9,6,6,5,7,5,6,6,9,5,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,7,5,6,5,9,5,5,4,5,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,6,5,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 +-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,1,1,2,3,2,3,3,5,4,6,6,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,21,11,10,7,10,6,7,6,10,6,6,5,8,5,6,6,13,7,8,6,10,6,8,7,13,7,8,6,10,7,11,11,19,10,11,8,13,8,11,10,17,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,47,24,24,16,24,14,17,15,26,14,15,11,18,12,16,15,24,12,12,9,13,8,11,10,17,10,11,9,15,11,16,16,29,15,15,11,17,10,12,10,18,10,11,9,14,10,14,14,22,12,12,9,15,9,12,11,20,11,12,10,17,12,17,17,31,16,17,12,17,10,11,10,17,9,10,8,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,12,23,12,11,8,11,7,9,8,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,9,16,8,8,6,9,6,8,8,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,5,8,5,6,5,8,5,5,5,8,6,8,9,16,9,10,8,12,8,10,9,17,10,12,10,17,11,16,16,33,17,17,12,17,10,12,10,18,10,11,8,12,7,9,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,14,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,13,7,7,6,8,5,7,6,11,7,8,6,10,7,9,9,17,9,10,8,11,7,10,9,17,10,12,10,17,12,18,18,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,9,6,9,6,8,7,11,7,8,6,10,7,11,11,20,10,10,7,12,7,8,7,13,7,8,6,9,7,10,9,15,8,8,6,11,7,9,8,14,8,8,7,11,8,12,12,21,11,12,8,11,7,8,7,11,6,7,6,8,6,8,7,12,6,6,5,8,5,6,6,9,6,7,6,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,9,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,6,4,4,4,8,5,5,4,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-13,-27 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,7,5,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,15,10,15,9,10,8,14,8,9,7,10,7,9,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,10,10,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-5,-4,-10,-5,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-27,-13,-12,-8,-12,-6,-8,-6,-12,-5,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,7,6,10,6,8,7,11,8,11,11,20,11,11,8,12,8,10,9,17,9,10,8,14,9,13,13,25,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,49,25,26,18,26,15,17,14,24,13,15,11,18,11,15,14,26,13,13,9,14,9,11,10,17,10,11,9,16,11,17,17,30,16,16,11,17,10,11,10,18,10,11,9,14,10,14,13,22,12,13,10,16,10,12,11,20,11,13,10,17,12,17,17,32,17,17,12,17,10,11,10,16,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,7,10,6,7,7,13,8,9,7,12,8,12,13,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,7,4,5,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,5,5,8,6,8,9,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-14,-7,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 +-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-4,-3,-6,-3,-5,-5,-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,6,5,8,5,7,7,14,8,8,6,8,6,7,6,12,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,10,12,10,18,12,18,18,33,17,17,12,18,10,12,10,16,9,10,8,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,10,9,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,8,12,7,8,7,11,6,7,6,8,6,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,11,11,22,11,11,8,11,6,8,6,11,6,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-13,-13,-26 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,4,3,6,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,17,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,49,25,25,17,26,15,18,14,24,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,17,10,12,10,17,11,16,16,31,16,16,11,17,10,12,10,18,10,12,9,15,10,14,13,23,12,13,10,15,9,12,11,20,11,12,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,7,13,9,12,12,22,12,12,8,13,7,8,7,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,10,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,8,6,8,5,5,5,8,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-11,-7,-11,-10,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-40 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,16,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,50,25,25,17,26,15,18,14,25,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,18,10,12,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,12,9,15,10,13,13,23,12,13,10,15,9,12,11,20,11,13,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,22,12,12,8,13,8,9,8,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,7,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-13,-10,-19,-13,-20,-20,-40 +-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,7,6,10,7,11,11,22,12,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,17,12,19,12,16,15,28,16,19,15,26,18,27,27,53,27,27,19,29,17,20,17,31,17,18,13,20,13,17,17,32,17,17,12,18,11,14,13,25,14,16,13,23,16,24,24,46,24,25,17,26,15,19,17,31,17,20,16,28,19,28,27,53,28,30,22,36,22,30,28,52,30,36,30,53,36,53,53,106,54,54,36,54,30,36,30,53,28,30,22,36,22,30,28,53,27,28,20,32,19,24,21,38,21,24,19,33,21,30,30,58,29,29,20,29,17,21,18,31,17,18,14,23,15,21,21,40,21,21,15,23,14,18,16,30,17,19,16,28,18,26,26,51,26,27,19,28,16,20,17,30,16,17,13,22,14,19,17,32,17,18,13,21,13,16,14,26,15,18,15,26,17,25,25,49,25,25,18,27,16,21,19,34,19,21,16,26,17,24,24,46,24,26,19,30,18,24,23,43,24,29,24,43,29,44,44,86,43,43,29,42,24,28,23,41,22,23,17,28,17,23,21,40,21,21,15,23,14,17,14,25,14,16,13,22,15,21,21,40,21,21,15,24,14,18,16,28,16,18,14,23,15,20,20,38,20,21,16,25,15,20,19,35,20,23,19,33,22,33,33,64,33,33,23,34,19,23,20,35,19,20,16,26,16,22,21,40,21,22,16,25,15,20,18,34,19,23,19,32,21,31,31,61,32,33,23,35,21,26,23,41,22,25,20,34,22,31,30,58,31,33,24,38,23,30,28,52,29,34,28,50,34,50,50,99,50,51,34,51,29,35,29,51,27,28,21,33,20,26,24,46,24,24,17,27,16,20,17,30,17,19,16,28,18,26,26,50,25,25,17,26,15,19,16,29,15,16,12,20,13,17,17,32,17,17,12,19,12,15,14,27,15,17,14,24,16,22,22,42,22,22,15,22,13,15,12,21,11,12,10,16,10,14,13,23,12,13,10,16,10,13,12,22,13,15,13,22,14,20,20,39,20,20,14,21,13,16,14,25,14,16,12,20,13,19,19,36,19,21,16,25,16,21,20,38,21,25,21,37,25,38,38,74,38,38,26,38,22,26,22,39,21,22,17,27,17,22,20,37,19,20,15,24,15,19,17,30,17,20,16,27,18,26,26,50,26,26,18,27,16,19,16,27,15,17,13,22,14,19,18,34,18,18,13,21,13,16,15,27,15,18,15,26,18,26,26,50,25,25,17,25,14,16,14,24,13,14,11,19,12,16,15,28,15,16,11,17,10,13,12,23,13,16,14,24,16,23,23,46,24,24,17,25,15,18,16,28,16,18,15,25,16,23,22,43,23,25,19,30,18,24,22,42,23,27,22,39,26,38,38,76,38,38,26,38,22,26,23,41,22,24,18,29,18,24,23,44,23,24,17,25,15,18,16,29,16,17,14,23,15,22,21,41,21,22,15,22,13,15,13,23,13,14,11,19,13,18,17,32,17,18,13,20,12,16,15,27,15,18,15,27,19,28,28,56,29,29,20,29,17,20,17,30,16,17,12,19,12,15,14,25,13,13,10,15,10,13,12,22,12,13,11,18,12,17,17,32,16,16,11,16,9,11,9,16,9,10,8,13,9,12,12,22,12,12,9,14,9,12,11,19,11,13,11,18,12,17,16,30,16,16,11,15,9,11,9,15,8,8,6,8,5,5,4,6,3,2,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-8,-16,-8,-10,-9,-17,-11,-17,-17,-34,-17,-18,-12,-19,-10,-13,-11,-21,-11,-13,-10,-19,-12,-18,-18,-38,-20,-22,-16,-27,-16,-23,-21,-42,-23,-27,-23,-42,-27,-40,-40,-81 +-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,13,9,13,8,10,9,16,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,27,18,27,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,11,9,16,9,10,8,12,8,11,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,11,7,8,8,13,8,10,8,14,9,13,13,25,13,13,10,14,9,11,10,17,10,11,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,21,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,32,17,17,12,18,10,12,10,18,10,11,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,17,12,18,11,13,12,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,18,15,26,14,14,11,17,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,8,11,11,20,11,13,11,19,13,20,20,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,14,8,9,7,12,8,10,10,17,9,9,7,11,7,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,6,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,8,8,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-20,-13,-20,-20,-40 +-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,10,7,10,6,8,7,14,8,9,7,12,8,12,12,23,12,12,9,13,8,10,9,17,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,26,18,26,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,10,9,16,9,10,8,12,8,12,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,13,27,14,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,13,8,10,8,14,9,13,13,25,13,14,10,14,9,11,10,17,9,10,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,8,11,11,20,11,12,9,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,12,10,16,11,17,17,32,16,16,11,18,10,12,10,19,11,12,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,17,15,26,14,14,11,18,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,9,12,11,20,12,14,11,20,14,20,20,38,20,20,13,19,11,14,11,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,13,7,8,7,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,7,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,19,13,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,11,7,8,7,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,7,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,0,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-21,-11,-14,-11,-20,-13,-20,-20,-41 +-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,7,4,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,7,5,7,4,6,5,10,6,7,6,9,6,9,9,16,9,9,6,9,6,7,6,12,7,7,6,10,7,10,10,18,10,11,8,12,8,11,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,11,8,13,8,11,10,19,10,10,8,11,7,8,8,13,7,8,7,12,8,11,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,6,5,9,6,7,6,10,6,9,9,17,9,9,6,9,6,7,7,12,6,7,6,10,6,9,8,15,8,9,7,10,6,8,8,14,8,10,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,7,7,14,8,8,6,9,5,6,6,9,5,6,5,8,6,7,7,13,7,8,6,8,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,14,8,11,10,18,10,12,10,17,12,17,18,34,17,17,12,18,10,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,7,6,10,6,7,6,10,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,8,8,15,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,8,6,10,6,9,8,16,8,8,6,10,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-27 +-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,4,4,6,5,7,7,10,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,16,8,8,6,9,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,8,14,8,9,8,13,9,13,13,24,12,12,9,13,8,10,9,17,10,11,9,15,10,14,14,27,14,15,11,18,12,16,15,26,15,18,15,26,18,26,26,52,26,26,18,27,16,19,16,27,15,16,12,20,13,17,15,28,15,15,11,16,10,13,11,18,10,12,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,9,7,12,8,12,11,20,11,12,9,14,8,10,9,15,9,10,8,14,9,13,13,27,14,15,11,16,9,11,9,16,9,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,10,9,17,10,11,9,14,9,13,12,22,12,13,9,14,9,12,11,20,12,14,12,22,15,22,21,42,22,22,15,22,13,15,12,20,11,11,9,14,9,12,11,21,11,11,8,11,7,8,7,14,8,9,7,12,8,10,10,21,11,12,8,12,7,8,7,13,8,9,7,12,8,11,10,20,11,11,8,12,8,10,9,18,10,11,9,16,11,16,16,33,17,17,12,17,10,13,11,19,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,16,9,11,9,16,11,16,16,31,16,17,12,17,10,13,11,19,11,13,11,18,12,16,15,31,17,18,13,20,12,16,15,27,15,17,14,25,17,25,26,50,25,25,17,26,15,18,15,26,14,15,11,18,11,14,13,25,13,13,9,14,9,11,10,15,9,11,9,15,10,14,14,24,13,13,9,14,9,11,9,16,9,9,7,11,7,10,9,15,8,9,7,11,7,8,8,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,19,11,13,11,20,14,20,19,38,20,20,14,20,12,14,11,20,11,11,9,14,9,11,11,21,11,12,8,12,8,10,9,17,9,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,8,9,7,12,8,10,9,17,9,10,7,10,6,8,8,15,9,10,8,14,10,14,13,26,14,14,9,13,8,10,8,13,7,8,6,10,7,9,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,11,22,12,13,10,15,9,12,12,21,12,13,11,19,13,19,20,38,19,19,13,20,12,14,12,20,11,12,9,14,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,12,12,21,11,11,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,15,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,15,8,8,6,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,4,6,4,6,6,9,5,6,5,8,6,8,8,16,8,7,5,6,4,5,4,7,4,5,4,5,3,3,3,3,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-20,-10,-11,-7,-12,-7,-10,-9,-21,-11,-13,-11,-20,-13,-20,-20,-41 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,11,9,15,8,9,7,11,7,10,9,16,9,9,6,9,6,7,6,10,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,9,6,6,5,8,6,8,8,16,8,9,6,9,6,7,5,9,5,5,4,7,4,5,5,10,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,24,12,12,9,13,8,9,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,5,4,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,8,15,10,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,9,5,5,4,7,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,11,6,7,5,8,5,7,7,11,7,8,7,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,12,22,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-22 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,18,11,13,11,17,9,10,8,12,8,12,11,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,8,8,14,8,8,6,10,6,7,6,11,7,8,6,10,7,9,9,19,10,10,7,11,7,8,6,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,9,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,14,8,8,6,7,4,5,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,7,5,8,7,13,7,8,6,9,6,7,7,12,7,8,7,10,7,10,10,22,12,12,8,12,7,8,7,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,21,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,21,11,12,9,13,8,10,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,11,7,10,10,16,9,9,7,9,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,9,13,13,26,14,14,10,14,8,10,8,13,7,8,6,10,6,8,7,15,8,8,6,8,5,6,6,12,7,8,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,6,11,7,8,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,9,13,8,10,9,14,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,10,7,10,10,20,10,10,7,10,6,8,6,10,6,6,5,7,5,6,6,8,5,6,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-8,-7,-12,-8,-12,-13,-27 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,15,9,10,8,15,10,15,15,30,15,15,10,15,9,10,9,14,8,8,6,10,7,10,9,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,4,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,6,9,6,7,6,12,7,7,5,7,4,5,5,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,9,5,5,5,8,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,3,5,3,4,3,5,4,6,6,8,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,16,9,10,7,11,7,10,9,16,9,10,8,13,9,13,13,25,13,14,10,14,9,11,9,16,9,9,7,12,8,10,9,17,9,10,7,11,7,8,8,14,8,9,8,14,10,14,14,25,13,14,10,15,9,11,9,16,9,11,9,15,10,14,14,26,14,15,11,18,11,15,14,26,15,18,15,25,17,25,26,53,27,27,18,27,15,17,14,25,13,14,11,18,12,16,15,27,14,15,11,16,10,12,10,18,10,12,10,17,11,16,16,27,14,14,9,13,8,9,8,14,8,9,7,11,8,11,11,20,10,10,7,11,7,9,9,16,9,10,9,15,10,14,13,27,14,13,9,13,8,9,8,15,8,9,7,11,7,9,8,17,9,9,7,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,15,9,10,9,16,9,10,8,13,8,11,11,21,11,12,9,14,9,11,11,20,12,14,12,21,14,21,21,40,20,20,13,19,11,14,12,20,11,12,9,13,8,11,10,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,15,15,32,17,17,12,19,11,14,12,20,11,12,9,13,8,11,11,21,11,12,9,14,9,11,9,16,9,11,10,17,12,17,17,32,17,17,12,17,10,12,10,18,10,12,9,15,11,16,16,32,17,18,13,20,12,16,14,26,15,18,16,28,19,27,27,53,27,27,19,28,16,18,15,26,14,14,10,16,10,13,12,25,13,14,10,16,10,12,10,18,10,12,10,17,11,15,15,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,14,7,7,5,8,5,7,7,12,7,8,7,13,9,12,12,22,11,11,7,10,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,15,9,12,12,22,13,15,13,22,15,21,20,39,20,19,13,19,11,14,12,20,11,12,9,13,8,11,11,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,9,15,10,14,14,27,14,14,10,15,9,10,8,13,7,8,6,10,7,10,10,15,8,9,7,11,7,9,8,14,8,9,8,13,9,12,12,21,11,12,8,12,7,9,8,15,8,9,7,11,8,11,10,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,21,14,21,12,14,12,20,11,11,9,14,9,13,12,23,12,12,8,12,7,9,8,14,8,9,8,13,8,11,11,23,12,12,8,12,7,9,8,13,7,8,6,9,6,9,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,30,16,16,11,15,9,10,8,14,8,8,7,11,7,9,8,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,28,14,14,10,14,8,9,8,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,10,9,15,10,15,14,28,14,14,10,15,9,10,8,14,8,8,6,9,6,7,7,13,7,8,6,9,5,6,6,10,6,7,6,9,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20 +-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,3,6,4,4,3,5,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,15,15,30,15,15,11,15,9,10,9,15,8,8,7,10,7,10,9,16,8,8,6,10,6,7,6,12,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,5,11,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,12,7,8,6,9,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,8,5,6,5,6,4,6,6,11,6,6,4,6,4,4,4,7,5,6,4,7,5,6,6,10,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,19,10,10,7,10,6,7,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,17,9,10,8,12,7,9,8,14,8,10,9,16,11,16,15,29,15,15,11,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,7,5,6,5,8,5,6,4,7,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,6,5,7,4,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,8,6,9,6,7,7,13,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,6,5,8,6,8,8,16,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,11,23,12,12,8,12,7,9,7,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,8,5,6,6,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21 +-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,6,4,5,5,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,6,4,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,4,3,4,5,5,3,3,3,4,3,3,3,7,4,4,3,5,4,5,6,10,6,6,5,8,5,7,7,11,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,17,17,36,18,18,12,18,10,12,10,18,10,11,8,12,8,11,11,19,10,11,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,10,7,11,7,9,8,16,9,9,7,10,6,7,6,12,7,7,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,6,9,5,6,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,13,7,8,6,9,5,6,5,11,6,7,6,10,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,12,7,7,6,10,7,10,9,18,9,9,7,10,6,6,5,10,6,6,5,9,6,8,8,13,7,8,6,8,5,6,6,11,6,7,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,6,8,8,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,27,14,14,10,14,8,10,9,14,8,8,6,9,6,8,8,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,5,4,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,5,11,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,6,6,10,6,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,7,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,4,2,2,3,6,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,5,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,9,15,10,14,15,30,16,16,11,16,9,11,9,15,9,10,7,11,7,10,9,17,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,17,9,8,6,8,5,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,7,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,21,11,12,8,12,7,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,12,7,7,5,6,4,6,5,10,6,6,6,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,14,8,10,9,16,11,16,15,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,7,5,6,5,6,4,6,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,12,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,7,4,5,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,12,22,12,12,8,11,7,9,8,12,7,8,6,9,6,8,8,14,8,8,6,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,9,17,9,9,6,9,5,6,6,9,5,6,5,7,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,9,6,6,5,8,6,7,7,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,17,9,10,7,10,6,8,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,8,9,7,10,6,8,8,13,8,10,8,15,10,15,14,27,14,14,10,14,8,10,9,15,8,9,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18 +-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-2,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,6,6,5,3,3,3,4,3,4,3,5,3,4,4,6,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,15,15,28,15,15,10,14,8,10,8,13,7,8,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,10,8,14,10,15,15,23,12,12,9,13,8,10,9,15,9,10,8,14,9,13,13,24,13,14,10,16,10,14,13,23,13,16,14,25,17,26,26,54,28,28,20,30,17,20,17,31,17,18,14,22,14,19,17,32,17,17,12,18,11,14,13,24,13,15,12,19,12,17,16,29,15,15,10,14,8,9,8,14,8,9,7,12,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,16,11,15,15,21,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,10,18,10,11,9,16,10,14,14,26,14,14,9,13,8,9,8,13,7,8,6,10,7,10,10,18,10,10,8,13,9,12,12,22,13,15,12,20,14,20,20,38,19,19,13,19,11,13,11,20,11,12,9,14,9,12,12,23,12,13,10,15,9,11,10,17,10,11,9,14,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,9,6,9,9,16,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,34,17,17,12,17,10,12,10,16,9,10,8,12,8,11,10,19,10,11,8,13,8,10,10,18,10,12,10,18,12,17,17,30,16,16,12,18,11,13,11,19,11,12,10,16,11,15,15,29,16,17,13,20,12,16,15,28,16,19,15,26,18,26,27,51,26,26,18,27,15,17,14,25,13,14,11,18,11,15,14,26,14,14,10,14,8,10,9,17,10,11,9,15,10,14,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,9,16,9,9,7,11,7,8,7,12,7,8,7,11,8,11,11,24,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,12,6,6,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,12,8,12,7,9,9,16,9,10,8,13,9,13,12,23,12,12,9,14,9,12,11,21,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,22,12,13,9,14,9,12,11,21,11,11,8,13,8,10,8,14,8,10,8,13,9,12,12,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,9,17,9,9,7,11,7,9,9,17,9,10,8,14,10,14,14,24,12,12,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,20,11,11,8,13,8,10,9,15,8,9,7,11,7,10,10,19,11,12,9,14,9,11,10,18,11,13,11,19,13,20,20,38,20,20,14,20,12,15,13,23,12,13,10,17,11,14,13,24,13,13,9,13,8,9,8,13,7,8,7,12,8,11,11,22,12,12,8,11,7,9,8,13,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,17,11,15,15,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,8,7,12,7,8,6,9,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,7,10,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36 +-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,7,5,8,8,14,8,8,5,8,5,6,5,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,15,15,11,16,9,11,9,16,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,15,8,8,6,7,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,7,5,7,8,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,8,14,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,6,9,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18 +-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,14,14,28,15,15,11,16,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,16,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,5,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,6,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,6,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,21,11,10,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,7,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,6,6,5,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,4,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,6,9,5,6,6,10,7,9,8,16,8,8,5,8,5,6,5,9,5,5,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-9,-19 +0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,6,4,4,4,6,4,6,5,9,5,6,5,7,4,6,5,9,6,6,6,9,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,6,5,9,5,6,5,8,5,7,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,5,5,6,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,8,4,4,4,6,4,5,5,8,4,5,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,5,4,4,3,5,4,4,3,5,4,5,5,7,4,4,3,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,4,4,4,7,5,6,4,7,5,7,8,13,7,7,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,5,6,5,8,6,9,9,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,14,8,8,6,10,6,8,7,14,8,9,8,14,10,15,15,30,15,15,11,16,10,12,10,18,10,10,7,11,7,10,10,18,10,10,7,10,6,8,7,14,8,9,7,12,8,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,9,14,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,8,6,11,6,7,5,8,5,7,7,11,6,7,5,8,5,6,5,10,6,6,5,8,6,8,7,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,10,6,7,5,8,6,8,8,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,10,7,10,6,7,7,12,7,8,6,10,7,10,9,16,9,9,7,10,6,8,8,16,9,10,9,15,10,15,15,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,6,9,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,9,7,12,8,11,11,22,12,12,9,13,8,9,7,13,7,8,6,9,6,8,8,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,5,6,5,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,12,7,9,8,12,7,7,5,8,6,8,8,14,7,7,5,7,4,5,4,7,5,6,5,8,5,7,7,14,7,7,5,6,4,4,4,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,3,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,7,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,6,6,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,11,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,8,7,11,8,12,11,22,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,7,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,6,5,7,4,5,5,8,5,6,5,8,6,8,9,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,6,4,4,4,8,5,5,4,5,4,6,6,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,5,8,5,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,4,4,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,8,4,4,3,6,4,4,3,6,4,4,3,4,3,5,5,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,4,7,5,6,6,10,5,5,4,6,4,4,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,6,5,9,6,7,6,10,7,11,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,6,5,7,5,6,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,9,6,8,8,14,7,7,5,8,5,7,6,10,6,6,5,8,6,8,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,11,8,13,8,10,9,16,10,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,12,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,20,10,10,7,11,7,8,6,10,6,7,6,9,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,8,7,16,8,8,6,9,5,6,5,8,5,5,4,7,5,7,7,15,8,9,7,10,6,8,7,12,7,8,7,13,9,14,14,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,7,11,6,7,5,7,5,6,6,11,7,8,6,10,7,9,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,24,12,12,8,12,7,8,7,12,7,8,6,9,6,8,8,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,19,10,11,8,12,7,9,8,14,8,10,8,13,8,11,11,19,10,10,8,12,8,11,10,18,10,12,10,18,12,18,18,38,19,19,13,20,11,12,10,17,10,11,8,13,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,13,7,8,6,10,7,9,8,14,8,9,7,12,8,12,12,28,15,15,10,14,8,10,9,16,9,10,7,11,7,9,9,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,6,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,13,7,7,5,7,4,5,5,9,5,6,5,7,5,6,6,15,8,9,7,10,6,7,6,11,6,7,6,9,6,7,7,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,10,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,11,7,10,10,20,10,10,7,9,5,6,5,8,4,4,3,5,4,6,6,8,5,5,3,4,3,4,4,7,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-25 +-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,12,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,9,6,7,6,10,6,8,7,11,8,11,12,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,5,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,5,6,4,5,5,8,5,6,5,9,6,9,9,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,15,8,8,5,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,24,12,12,9,13,7,8,6,12,7,7,6,9,6,8,7,14,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,4,3,5,3,4,3,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,9,5,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,19,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,6,5,8,5,5,5,8,6,8,8,13,7,8,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,6,9,6,9,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,6,5,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,10,7,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,9,9,14,8,8,6,9,5,6,6,11,6,7,6,10,7,9,8,17,9,10,8,12,8,10,9,13,8,10,9,16,11,16,16,28,15,15,11,16,9,11,9,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,14,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,6,12,7,9,7,12,8,12,12,18,10,10,7,9,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,7,5,6,5,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,14,31,16,16,11,16,9,10,8,16,9,9,7,12,8,11,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,9,5,6,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,5,5,8,6,9,9,12,7,7,5,6,4,5,4,6,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,12,7,8,6,10,7,10,10,26,14,14,9,13,8,9,7,14,8,9,7,10,6,8,7,11,6,6,5,8,5,6,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,7,4,5,4,9,5,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,7,10,6,7,6,10,7,10,11,18,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,5,8,5,7,7,13,7,7,5,6,4,4,3,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,7,5,8,5,7,6,9,6,7,6,11,8,11,11,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,6,4,4,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,10,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,4,4,9,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,6,7,6,9,6,9,9,21,11,11,7,11,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,4,6,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,7,5,7,7,18,10,10,6,9,5,6,5,9,5,6,5,7,4,6,5,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,4,6,6,8,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,13,8,10,8,15,10,15,15,27,14,14,10,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,10,6,7,6,9,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,11,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,19,10,10,7,10,6,7,6,10,6,7,5,9,6,8,7,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,7,13,9,12,12,30,15,15,10,15,9,10,8,15,8,8,6,10,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,5,8,5,6,5,9,5,6,4,6,4,4,4,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,26,14,14,9,13,7,8,7,12,7,8,6,9,6,8,7,10,5,5,4,6,4,5,4,8,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,8,9,7,10,6,8,7,13,8,9,7,12,8,12,12,29,15,15,10,14,8,10,8,15,8,8,6,10,7,9,9,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,6,9,6,7,6,10,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,9,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,5,4,5,6,12,6,6,4,5,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,9,6,9,8,15,9,11,9,16,11,17,17,28,14,14,10,14,8,10,9,17,9,10,8,12,8,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,14,26,14,14,10,14,9,11,10,18,10,11,8,13,9,12,12,22,12,13,10,15,10,14,14,26,15,18,15,27,19,28,28,51,26,25,17,25,14,16,13,23,12,13,9,14,9,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,15,30,16,16,11,17,10,12,10,17,9,10,8,13,8,11,10,19,10,11,8,13,8,11,10,19,11,12,10,18,12,18,19,27,14,15,10,15,9,11,9,15,8,9,7,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,8,12,7,9,8,15,8,9,7,12,9,13,13,24,13,13,10,16,10,12,11,21,12,14,12,20,14,20,20,29,15,15,11,17,10,12,10,17,9,9,7,11,7,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,10,11,8,12,7,8,7,13,7,8,6,10,7,10,10,18,10,10,8,13,8,10,10,18,10,11,9,14,10,14,14,35,18,18,12,17,10,12,11,19,10,11,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,10,9,15,10,15,15,28,15,15,11,16,10,12,11,19,10,11,8,13,9,12,12,23,13,14,10,16,10,13,12,22,13,15,13,22,15,23,23,56,28,28,19,29,17,20,17,30,16,17,13,20,13,17,16,31,16,16,12,18,11,13,12,21,11,12,10,16,10,14,14,27,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,24,13,14,10,15,9,12,11,21,11,12,10,16,11,15,15,20,11,12,9,13,8,10,8,14,8,8,7,11,7,8,8,14,8,9,7,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,12,7,7,6,10,7,11,11,20,11,12,9,15,9,12,11,20,11,12,10,17,11,16,16,49,25,25,17,25,14,16,13,22,12,12,9,14,9,11,10,18,10,10,7,11,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,10,6,6,5,8,5,5,4,6,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,8,6,8,9,25,13,13,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,9,7,12,8,10,10,18,11,13,11,18,13,19,19,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,13,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,8,6,8,5,7,6,10,6,8,7,11,8,11,10,22,12,12,9,13,8,9,8,13,7,7,5,6,4,5,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,2,2,2,2,4,3,4,3,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-7,-12,-7,-11,-10,-21,-11,-13,-11,-21,-13,-20,-20,-42 +0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,14,8,10,8,14,10,15,15,26,14,13,9,13,8,9,7,12,7,7,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,7,4,4,4,5,4,6,5,10,6,6,4,7,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,7,6,12,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,11,6,7,6,8,6,8,8,11,6,6,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,6,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,17,9,10,7,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,9,6,8,8,14,8,10,8,15,10,15,15,26,14,14,9,14,8,9,8,12,7,8,6,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,8,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,7,7,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,10,5,5,4,7,5,6,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,5,4,6,5,10,6,6,4,6,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,6,8,5,6,6,12,7,8,7,11,8,12,12,29,15,15,10,16,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,12,7,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,10,6,7,6,8,6,8,8,11,6,6,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,24,12,12,9,13,7,8,7,12,7,7,5,8,5,7,6,10,6,6,5,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,5,4,6,4,6,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,3,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 +0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,6,9,5,5,4,7,5,7,7,12,7,7,5,6,4,5,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,12,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,15,9,11,9,16,11,16,15,26,14,14,10,14,8,10,8,13,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,7,6,8,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,7,7,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,6,10,6,7,5,8,5,5,5,9,5,6,4,6,4,5,4,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,6,8,7,18,9,9,6,9,5,6,5,10,6,6,4,6,4,6,5,10,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,12,12,28,15,15,11,16,10,12,10,15,8,8,6,10,7,9,9,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,5,6,6,8,5,6,5,7,5,6,6,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,12,12,8,12,7,9,8,13,7,8,6,9,5,6,6,11,6,7,5,7,5,6,5,8,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-11,-23 +0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,7,9,6,7,6,9,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,4,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12 +0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,3,2,3,2,3,2,3,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,6,4,5,5,7,5,6,5,7,5,7,7,17,9,9,6,9,5,6,5,9,5,6,5,7,4,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-7,-15 +-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,17,9,10,7,10,6,7,6,9,5,6,4,7,4,6,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-6,-13 +-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,8,5,7,6,11,7,8,6,10,7,11,11,18,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,9,8,14,8,8,7,11,7,9,9,17,10,11,8,13,8,11,10,17,10,12,10,16,11,15,15,28,15,15,10,15,9,11,9,16,9,9,6,9,6,7,7,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,10,7,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,11,19,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,3,3,3,4,3,4,4,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,8,11,11,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,12,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,7,5,8,6,8,7,11,6,7,5,7,4,5,5,9,5,6,5,9,6,7,7,15,8,9,6,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,10,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,26,14,14,10,15,9,10,9,15,8,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,7,10,10,16,9,9,7,10,6,8,7,11,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,9,5,6,5,8,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,1,1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,6,5,7,5,6,6,9,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,11,6,6,5,7,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,9,16,8,8,6,9,5,6,6,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,3,4,4,9,5,5,3,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,4,4,8,5,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,3,5,3,2,2,4,3,4,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,6,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,18,10,10,7,10,6,6,6,9,5,6,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,9,5,6,4,5,3,4,3,4,3,4,3,3,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,2,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,4,3,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,12,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,7,7,5,7,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,5,3,3,2,4,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,4,5,5,6,4,4,4,6,4,5,5,9,5,6,4,6,5,7,7,14,7,7,5,8,5,7,7,11,6,7,6,9,6,8,7,12,7,7,6,10,7,9,8,14,8,9,7,12,8,12,12,18,9,9,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,13,7,7,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,13,7,7,5,6,4,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,7,4,5,5,8,6,8,8,22,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,11,7,8,7,13,7,7,5,8,5,6,5,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,3,2,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,9,5,5,3,4,3,3,2,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,4,3,3,3,5,4,5,5,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-1,-1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,6,11,6,7,5,8,5,7,7,12,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,4,7,5,7,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,5,5,3,4,3,3,2,2,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,9,6,8,7,11,6,7,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-5,-2,-2,-1,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,6,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,27,14,14,10,16,9,11,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,11,20,11,13,11,19,13,20,20,28,14,14,9,13,8,9,7,12,7,8,6,9,6,8,7,12,7,7,6,9,6,7,7,12,7,8,6,10,7,10,9,13,7,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,10,7,11,11,24,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,6,5,9,6,9,9,17,9,10,8,12,7,9,8,14,8,10,8,13,9,13,13,23,12,12,8,11,7,8,6,10,6,7,5,8,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,16,8,8,5,7,4,5,5,8,5,5,4,7,4,5,5,8,5,5,4,7,5,7,7,12,7,8,7,11,7,10,10,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,11,6,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,9,7,12,8,10,9,17,10,11,9,15,10,15,15,32,17,17,11,16,10,12,10,17,9,10,8,12,8,10,9,16,8,8,6,8,5,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,13,7,7,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,3,4,3,3,3,4,3,3,3,5,3,4,4,17,9,9,6,8,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,4,6,6,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,5,3,3,2,3,2,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-13,-27 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,20,10,10,7,10,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 +-3,-1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,6,12,7,8,7,11,8,12,12,15,8,8,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,5,7,7,13,7,8,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,5,3,4,4,6,3,3,2,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,21,11,10,7,11,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,6,4,5,5,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,5,6,11,6,5,4,5,3,4,4,6,4,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,10,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,4,5,5,9,5,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,15,8,7,5,8,5,6,5,9,5,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,5,6,4,4,3,5,4,5,5,9,5,6,5,8,6,8,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,14,8,8,6,10,6,7,5,8,5,5,4,6,4,5,5,11,6,5,4,5,4,5,4,7,4,4,3,4,3,5,5,10,5,5,3,4,3,4,3,6,4,5,4,6,4,6,6,10,6,7,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,3,8,5,5,4,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,4,3,4,3,4,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,8,5,6,5,7,5,6,6,22,12,12,8,12,7,9,8,13,7,8,6,8,5,7,6,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,12,7,7,5,6,4,5,5,9,5,5,4,5,4,5,5,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,14,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14 +-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,4,4,5,3,4,3,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,4,14,8,8,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,6,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8 +-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,7,5,8,8,15,8,7,5,7,5,6,5,8,5,6,5,7,5,6,5,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,12,8,11,11,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,7,5,6,5,8,5,5,5,8,6,9,9,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,3,4,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,6,10,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,17,9,9,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,11,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,9,5,5,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,5,4,6,5,7,7,12,7,9,8,14,10,14,13,25,13,13,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,7,12,7,7,6,10,7,10,10,24,13,13,9,12,7,9,8,14,8,9,7,12,8,12,12,24,13,13,10,15,9,11,10,19,11,13,11,19,13,20,20,19,10,10,7,11,6,7,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,9,5,6,6,10,6,7,6,9,6,8,8,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,15,10,15,15,15,8,8,6,9,5,5,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,5,8,6,8,8,31,16,16,11,17,10,11,9,16,9,10,7,11,7,9,9,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,7,5,6,6,10,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,9,8,14,8,8,6,9,6,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,8,5,5,4,5,4,5,5,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,10,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,11,6,6,4,7,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,18,10,10,7,10,6,7,6,9,5,6,4,7,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,8,5,5,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,9,6,9,9,17,9,9,6,8,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,16,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,7,13,8,10,8,13,9,14,14,12,7,7,5,8,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,4,2,2,2,3,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,21,11,12,8,12,7,8,6,10,6,6,5,8,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,12,12,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,18,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +-2,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,8,7,12,8,12,12,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,12,11,23,12,13,10,15,9,12,11,20,11,13,11,20,13,19,19,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,4,3,6,4,4,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,6,8,8,16,9,9,6,8,5,5,5,8,5,6,5,8,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,8,13,8,10,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,7,5,7,7,13,7,7,5,8,5,5,4,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,6,4,4,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,32,16,16,11,16,9,10,8,15,8,8,6,10,6,8,7,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,21,11,11,8,12,7,9,8,11,6,6,5,8,5,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,4,4,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,8,8,14,8,9,8,14,9,13,13,11,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,5,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,4,3,4,4,21,11,11,8,11,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,15,8,8,6,8,5,6,5,8,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-10 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,14,9,12,11,21,12,14,11,20,14,20,19,16,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,13,8,10,9,14,10,14,14,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,8,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,13,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,7,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,6,4,4,4,8,5,5,3,5,3,4,3,4,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,1,0,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,21,12,12,9,14,9,12,11,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,14,8,10,9,14,10,14,14,14,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,13,9,12,13,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,4,4,3,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,5,4,7,5,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,4,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,20,11,11,7,10,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,7,6,10,7,10,9,17,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,20,11,11,8,13,9,12,11,21,12,15,12,21,15,22,22,42,21,21,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,21,21,40,21,22,15,23,14,18,16,28,15,17,13,22,14,20,19,37,20,21,16,25,16,22,21,39,22,27,22,39,26,38,37,28,14,14,10,15,9,10,8,14,8,8,6,10,6,7,6,11,6,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,5,4,7,5,8,8,14,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,28,15,15,10,14,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,8,7,11,8,12,12,22,12,13,10,17,11,14,14,26,15,18,15,27,18,27,27,27,14,14,10,15,9,11,9,15,8,8,6,10,7,9,9,16,9,9,6,8,5,7,6,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,6,5,9,5,5,4,7,4,5,5,8,5,6,5,9,7,10,10,20,11,11,8,12,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,7,6,10,7,11,11,21,11,11,8,11,7,8,6,10,6,7,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,60,30,30,21,31,17,20,17,29,16,17,13,22,14,18,17,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,21,11,11,8,13,8,9,8,13,7,7,5,8,5,7,7,12,7,8,6,10,6,8,8,15,8,9,7,12,8,12,12,24,13,14,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,13,9,14,9,12,11,21,12,14,11,19,12,17,17,33,17,17,12,17,10,11,10,17,9,10,8,13,9,13,12,23,12,13,10,16,10,13,12,22,13,15,13,24,16,24,24,42,21,21,14,21,12,14,11,18,10,10,7,11,7,10,10,18,10,10,7,10,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,9,6,7,6,9,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,11,11,42,22,22,15,22,13,15,13,24,13,14,10,16,10,13,12,21,11,12,9,14,9,11,10,18,10,11,9,16,11,15,15,30,15,15,11,16,10,12,11,19,10,11,8,13,8,11,10,19,10,11,8,11,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,3,3,4,3,3,3,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-16,-33 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,4,4,5,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,12,14,12,20,14,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,6,9,6,8,7,14,8,10,8,14,10,14,14,14,8,8,6,8,5,6,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,13,9,12,13,22,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-16 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,5,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,10,6,6,5,6,4,6,6,11,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,12,8,10,10,20,12,14,11,19,13,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,10,6,6,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,5,9,6,8,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,17,9,9,6,9,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,13,22,12,12,8,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 +0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,6,7,7,14,8,10,8,13,9,13,13,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,10,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,20,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11 +0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,3,2,2,1,0,0,0,-1,12,6,6,5,7,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,3,3,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,5,8,5,7,7,10,6,6,4,6,4,6,6,12,7,9,7,12,8,12,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,12,12,8,12,7,9,8,15,9,10,8,12,8,11,11,20,11,11,8,12,8,11,10,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,14,7,7,5,6,4,4,3,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,13,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,4,6,6,30,16,16,11,16,9,11,9,14,8,8,6,10,7,9,9,18,9,9,6,9,5,6,5,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,5,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,9,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,6,12,7,8,7,13,9,13,13,21,11,10,7,10,6,7,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,5,7,7,21,11,12,8,12,7,8,7,11,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-8,-17 +0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,9,5,6,5,7,5,7,6,11,6,7,5,7,5,7,6,12,7,8,6,11,8,11,11,9,5,5,4,5,3,4,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,4,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,11,6,5,4,6,4,4,3,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9 +0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,8,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,5,9,6,7,6,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,9,13,13,11,6,6,4,6,4,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,9,9,10,6,6,4,6,4,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,6,4,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,4,4,5,4,6,6,10,6,6,5,6,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,14,7,7,5,7,4,5,5,7,4,4,3,6,4,6,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,6,5,11,6,7,5,6,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,2,1,0,1,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-3,-5,-5,-10 +1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,7,4,5,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,11,6,7,5,7,5,7,6,11,7,8,6,10,7,11,11,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,5,8,6,7,7,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,1,1,1,0,1,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,1,0,0,0,0,13,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,7,4,3,2,3,2,3,3,4,3,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,8,6,8,8,14,8,9,7,12,9,13,13,24,12,12,8,11,7,8,7,12,6,6,5,7,5,7,7,12,7,7,6,9,6,7,6,10,6,6,5,9,7,10,10,22,12,12,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,10,17,12,17,18,16,8,8,6,9,5,6,5,7,4,4,3,3,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,12,14,8,8,6,9,5,6,5,9,5,6,5,7,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,31,16,16,11,17,10,12,10,16,9,9,7,10,7,9,9,19,10,11,8,11,6,7,6,10,6,6,5,8,5,6,6,9,5,4,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,9,5,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,6,10,6,8,7,11,7,10,10,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,14,10,14,14,18,9,9,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,6,5,7,4,5,5,13,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,4,5,5,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,7,16,9,9,6,9,5,6,6,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,10,6,6,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,9,10,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,0,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,8,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,5,5,9,5,5,4,7,5,8,8,14,7,7,5,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,7,5,6,6,12,7,8,6,9,5,6,6,12,7,8,6,11,7,10,10,9,5,6,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,7,4,4,4,6,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8 +1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,0,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,10,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,4,3,7,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,7,6,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,6,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,4,2,2,2,1,1,2,2,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,5,7,4,5,4,7,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,11,8,11,11,9,5,6,4,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,6,4,4,3,5,3,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,8,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,2,2,1,1,2,2,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,3,3,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,4,4,4,7,5,6,6,5,3,4,3,4,3,3,3,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,7,4,4,3,5,3,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,14,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,7,8,5,5,4,6,4,6,6,11,6,7,6,10,7,9,9,16,9,10,7,11,7,10,10,18,10,11,9,16,11,16,16,27,14,14,10,14,8,8,7,11,6,6,5,8,5,7,7,12,7,7,5,8,5,5,5,8,5,6,5,9,6,9,9,20,11,11,8,12,8,10,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,10,18,10,12,11,19,13,19,19,16,9,9,6,8,5,5,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,6,4,6,6,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,3,2,3,2,3,3,10,6,6,4,5,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,5,9,6,7,6,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,5,5,15,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,8,8,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,38,20,20,14,20,12,14,12,20,11,12,9,14,9,11,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,4,7,7,9,5,6,4,6,4,5,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,7,10,10,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,7,11,7,8,8,14,8,10,8,14,10,14,14,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,14,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,14,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,20,10,10,7,10,6,8,7,13,7,8,6,10,6,8,8,14,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,4,5,3,3,3,4,3,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-6,-9,-9,-19 +0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,3,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,11,6,6,5,6,4,5,5,8,4,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,3,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,6,4,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,6,3,3,3,4,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,6,6,5,3,3,2,4,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,2,1,1,1,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,10,6,6,5,7,5,7,6,11,7,8,6,10,7,10,10,15,8,8,6,8,5,5,4,8,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,11,7,8,6,10,7,11,11,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,3,7,4,4,4,6,4,5,4,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,5,3,3,3,4,3,3,3,3,2,3,3,4,3,5,5,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-11 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,13,7,8,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,3,3,3,4,3,6,4,4,4,6,4,6,6,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,3,3,2,3,2,3,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,5,3,3,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,15,8,9,6,9,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,3,4,3,5,4,5,4,2,2,2,1,1,1,2,2,2,2,2,2,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,9,8,13,9,13,12,18,10,10,7,9,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,6,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,13,8,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,5,3,2,2,2,2,2,2,4,3,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,3,2,3,3,4,4,7,4,5,4,5,4,6,6,7,4,4,3,3,2,3,2,3,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,28,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,13,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,4,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,9,9,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,5,4,6,5,7,7,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,4,4,7,5,6,6,14,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,4,3,5,5,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,8,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,8,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,2,1,1,1,1,1,1,1,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,4,3,4,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,8,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,-3,-1,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,12,7,9,7,12,8,12,12,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,3,5,3,2,2,2,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,11,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,5,3,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,5,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,12,7,7,5,8,5,6,5,10,6,6,4,7,5,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,8,5,7,7,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,5,4,6,5,5,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,4,2,2,2,2,2,2,2,5,3,4,3,5,4,6,6,5,3,4,3,3,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15 +3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,5,3,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,4,3,3,2,2,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,9,9,19,10,11,8,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,18,10,11,8,12,8,11,11,20,12,14,12,21,15,22,22,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,9,10,9,15,10,13,13,25,13,14,10,16,10,13,13,24,14,16,13,23,15,21,21,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,4,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,11,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,5,5,8,6,9,9,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,47,24,23,15,22,13,15,12,21,12,13,10,15,10,13,12,21,11,11,8,11,6,7,6,11,6,7,6,11,8,11,10,19,10,10,8,12,7,9,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,7,10,10,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,16,8,8,6,8,5,6,5,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,4,19,10,11,8,11,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,14,9,12,12,23,12,13,9,13,8,9,8,14,8,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-9,-8,-15,-10,-16,-16,-33 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,6,8,6,7,7,12,7,8,7,12,8,11,11,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,1,1,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,5,5,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,7,6,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,8,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,6,8,7,12,7,8,7,12,8,11,11,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,1,1,2,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,5,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,7,8,6,8,5,6,6,11,6,6,4,7,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,5,5,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,4,6,6,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,17,9,9,6,9,5,6,5,8,5,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,2,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,4,3,3,2,2,2,2,1,1,1,1,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,11,8,12,12,13,7,7,5,8,5,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,7,12,8,11,11,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,5,7,7,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,25,13,13,9,13,8,9,7,12,7,8,6,9,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,4,3,3,2,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,3,3,7,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,1,1,1,2,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16 +2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,4,5,4,5,4,7,4,5,4,7,5,7,7,1,1,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,4,3,3,2,2,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,4,6,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,3,4,3,5,3,4,3,4,3,4,5,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,18,10,10,7,9,6,7,6,9,5,6,5,7,4,5,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,3,2,2,2,3,3,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,3,6,4,6,5,8,4,4,3,5,3,4,3,4,3,3,2,3,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11 +2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,2,2,2,1,1,1,2,2,3,2,2,2,2,2,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10 +2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,8,6,10,6,8,8,14,8,9,8,13,9,14,14,18,9,9,6,9,5,6,6,10,6,6,5,7,5,6,5,7,4,4,3,5,4,6,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,12,7,8,6,9,6,8,8,14,8,9,8,13,9,12,12,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,7,5,3,4,3,4,3,3,2,2,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,6,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,5,3,3,2,3,2,2,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,29,15,14,10,14,8,10,8,14,8,8,6,9,6,8,7,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,1,1,0,0,0,0,0,0,0,1,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,5,3,4,3,4,3,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19 +2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3,5,3,4,3,5,4,5,5,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +3,2,2,1,0,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,7,5,6,5,8,5,7,7,10,5,5,4,6,4,4,4,9,5,5,4,6,4,6,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,9,7,10,10,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,19,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,4,4,12,7,7,5,8,5,5,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,3,3,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,6,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,8,5,5,4,6,4,5,4,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,7,4,4,4,6,4,5,5,9,5,6,4,6,4,5,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-4,-2,-4,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,4,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,4,2,3,3,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,6,4,4,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,17,9,9,7,10,6,7,6,9,5,6,5,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,10,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,5,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,4,3,4,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,6,6,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,16,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14 +4,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,3,5,3,3,3,5,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,11,8,12,13,18,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,18,10,11,8,12,8,10,9,16,9,11,9,16,11,16,17,25,13,14,10,14,8,10,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,9,22,11,11,8,11,7,8,6,10,6,6,5,7,5,7,7,14,8,8,7,11,7,10,9,17,10,12,10,16,11,16,16,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,5,8,6,8,7,3,2,2,2,2,2,2,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,8,4,4,3,3,2,2,2,3,2,3,3,5,4,5,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,31,16,17,12,17,10,13,11,20,11,11,9,14,9,11,11,20,11,11,8,11,6,7,6,10,6,7,5,8,6,8,7,17,9,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,9,8,18,9,9,7,10,6,7,6,11,6,6,4,5,3,4,4,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,6,4,6,6,14,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,5,8,6,8,8,13,7,7,5,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,11,7,9,8,13,7,7,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,4,7,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,8,19,10,10,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,10,6,6,4,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-13,-14,-29 +2,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,5,9,5,6,5,9,6,9,9,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +2,1,1,1,2,2,2,1,0,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,5,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,5,11,6,7,5,7,5,6,6,10,6,6,5,9,7,10,10,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,9,5,6,4,6,4,5,4,8,5,6,5,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,6,9,5,6,5,9,7,10,10,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,17,9,10,7,10,6,8,7,12,6,6,5,8,5,7,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-7,-4,-7,-7,-15 +2,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,5,4,5,4,6,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,5,4,5,5,7,4,5,4,7,5,7,7,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7,4,4,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-3,-5,-3,-5,-5,-11 +2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,4,8,5,5,4,6,4,4,4,7,4,5,5,8,6,9,9,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,8,5,7,6,11,6,7,6,10,7,11,11,17,9,8,6,8,5,6,6,10,6,6,5,7,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,10,7,11,11,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,3,4,4,6,4,4,4,4,3,3,2,2,2,3,3,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-2,-4,-4,19,10,10,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,3,3,3,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,4,3,7,4,4,4,6,4,6,6,10,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-9,-9,-19 +2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,4,3,3,3,3,3,4,3,8,4,4,3,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,5,6,4,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,7,5,6,6,9,5,6,5,8,6,9,9,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,6,4,6,4,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,4,3,5,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15 +3,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,13,7,8,6,8,5,6,6,10,6,7,6,10,7,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,24,12,12,8,12,7,8,7,13,7,7,6,9,6,8,8,15,8,9,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,7,8,6,9,6,7,7,13,7,8,6,10,7,9,9,16,9,11,9,15,10,15,15,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,1,0,0,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,28,15,15,11,16,10,12,10,17,9,9,7,11,7,9,8,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,5,8,5,5,4,6,4,5,4,7,4,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,4,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,5,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,9,5,5,4,7,5,7,7,9,5,5,4,6,3,3,3,4,2,2,2,3,2,3,4,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-13,-6,-7,-5,-10,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,4,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,6,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,8,6,10,7,10,10,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,7,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,3,2,2,2,3,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,5,3,4,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,-1,0,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,14,8,7,5,7,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,6,9,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,3,2,3,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,5,6,5,10,6,6,5,8,5,7,7,14,8,8,7,11,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,8,6,10,7,10,9,16,9,9,7,10,6,7,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,8,7,9,5,6,5,8,6,8,7,13,7,7,6,9,6,9,8,15,9,10,8,14,9,13,13,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,3,2,3,2,3,2,3,2,2,1,1,1,2,1,1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,26,13,13,9,14,8,10,9,15,8,8,6,9,6,7,7,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,8,5,6,5,8,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,6,7,11,6,7,5,7,4,5,4,6,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-30 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-4,-5,-4,-9,-4,-6,-4,-9,-6,-9,-9,-19 +1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,11,7,10,9,16,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,8,6,8,6,8,8,13,8,9,8,14,10,14,13,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,14,9,14,8,10,9,14,8,8,6,9,6,8,8,14,8,8,6,7,5,6,6,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,8,6,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,1,1,1,2,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,25,13,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,7,5,6,6,9,5,5,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,6,7,5,7,5,6,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,10,6,7,7,12,8,12,11,21,11,12,9,14,9,11,10,18,10,11,9,14,10,14,14,27,14,14,10,16,10,14,13,24,14,16,13,23,16,23,23,44,23,23,16,24,14,17,14,24,13,14,10,16,10,14,13,25,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,26,14,14,10,15,9,11,9,16,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,23,13,15,13,23,16,23,23,45,23,23,16,23,13,15,12,21,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,20,12,14,12,20,13,19,19,37,19,19,14,21,12,15,14,25,14,15,12,19,13,18,17,33,17,18,14,22,13,17,16,29,16,19,15,26,17,25,25,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,9,5,4,3,4,2,2,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-8,50,25,25,17,25,14,16,13,22,12,13,10,16,10,12,11,21,11,11,8,11,7,8,7,13,8,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,7,5,8,5,7,7,13,8,9,7,11,8,12,12,22,11,11,8,12,7,8,7,12,7,7,5,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,8,15,8,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,7,5,7,7,13,7,7,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,4,7,5,7,7,12,7,7,5,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-9,-12,-11,-22,-11,-13,-10,-19,-11,-16,-16,-32,-16,-17,-12,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-28,-28,-58 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,11,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,22,11,11,8,12,7,8,6,11,6,7,5,8,5,7,6,13,7,8,6,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,12,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,8,8,15,9,10,8,14,9,13,13,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,6,5,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,4,7,4,5,4,6,4,5,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,13,7,7,6,8,5,6,5,9,5,6,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,10,6,9,9,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,3,2,3,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,6,5,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,7,6,9,6,8,7,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,7,7,12,7,9,7,12,8,12,12,22,12,12,8,11,6,7,6,10,6,6,5,8,5,7,6,14,7,7,5,8,5,7,7,10,6,7,6,10,7,10,10,19,10,11,8,12,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,6,8,8,16,9,11,9,14,9,13,13,0,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,3,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,13,9,13,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,6,4,5,5,9,5,6,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,8,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-8,-6,-12,-8,-12,-13,-27 +2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-7,-15 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,5,3,3,2,4,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,7,5,7,7,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,3,2,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14 +3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,3,3,6,4,5,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,9,6,7,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,13,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,8,8,7,11,7,8,8,14,8,9,7,11,8,11,11,22,12,12,8,12,7,8,6,10,6,6,4,6,4,6,6,14,8,8,6,9,6,8,7,12,7,7,6,9,6,9,9,17,9,9,6,8,5,6,6,10,6,7,6,9,6,8,8,13,7,8,6,10,6,8,8,14,8,10,8,13,9,12,11,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,1,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,26,13,13,9,13,7,8,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,3,2,3,2,3,2,3,3,4,3,4,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,7,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,5,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-13,-13,-26 +2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,3,3,3,3,3,4,4,7,4,4,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,5,6,4,4,3,4,3,3,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,13,7,8,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,4,6,4,6,6,13,7,8,5,8,5,5,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,15,8,8,6,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,5,8,5,5,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,11,6,6,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,4,6,4,4,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,5,4,6,6,6,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,9,5,6,5,8,5,6,6,8,5,5,5,8,6,8,7,17,9,9,6,9,5,5,4,8,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,5,5,6,4,4,3,5,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,5,7,7,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,16,8,8,6,8,5,5,4,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,2,2,2,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,5,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,1,1,0,0,0,0,0,1,1,1,0,0,0,0,4,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,3,2,3,2,5,3,3,2,3,3,4,4,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16 +4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,4,3,3,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,7,4,5,5,7,5,8,8,16,9,9,6,9,5,6,6,9,5,6,4,6,4,4,5,8,4,4,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,3,4,4,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,2,3,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,2,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,9,5,6,4,6,4,4,4,8,4,4,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,0,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-12 +11,6,6,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,3,5,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,2,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,6,5,7,7,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,7,7,13,8,9,8,13,9,13,13,29,15,15,10,15,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,6,5,7,5,8,8,19,10,10,7,10,6,8,8,14,8,8,6,10,6,8,8,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,25,13,12,8,12,7,8,6,10,5,5,4,6,4,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,11,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,6,7,6,11,8,11,11,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,25,13,12,8,12,7,9,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,3,4,5,16,9,9,6,8,5,5,4,7,4,5,4,6,4,4,4,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,10,5,5,4,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,3,2,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,4,3,5,5,6,4,4,3,4,3,4,3,5,3,3,2,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,13,7,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,9,5,5,4,5,3,3,3,4,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,3,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,5,6,5,8,6,8,7,16,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,6,4,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +8,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,2,2,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,7,4,5,4,6,4,5,4,7,4,5,4,5,4,5,5,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,3,6,4,5,4,6,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,6,6,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,9,5,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7 +6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +11,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,0,0,0,1,1,1,2,2,4,2,2,2,3,2,3,3,7,4,5,4,5,3,3,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,8,5,6,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,8,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,7,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,13,7,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,3,2,1,1,1,1,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,1,1,1,1,1,2,7,4,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,2,6,4,4,3,3,3,4,4,6,4,5,4,7,5,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,5,5,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12 +6,4,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,4,5,3,4,4,11,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,5,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,7,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,7,4,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7 +6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +11,6,5,4,5,3,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,2,1,1,1,1,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,5,3,4,4,6,4,6,6,17,9,8,6,8,5,6,6,10,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,13,7,8,6,9,5,6,5,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,5,10,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,9,5,5,4,5,3,4,3,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,7,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,3,2,3,3,4,3,4,4,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,5,3,3,2,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-2,-2,-6 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,5,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,7,4,4,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,8,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,7,2,2,2,1,2,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,5,5,4,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,2,2,2,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,7,4,4,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,7,4,5,4,7,5,7,7,2,2,2,1,2,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +17,9,9,6,7,4,4,4,6,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,1,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,5,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,8,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,6,8,8,14,8,10,8,14,10,14,13,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,14,7,7,5,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,14,7,7,5,7,4,5,5,8,5,5,4,5,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,5,9,5,4,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,11,6,6,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,6,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,3,3,6,5,7,7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,5,3,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 +9,5,5,3,4,3,3,3,4,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,3,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,7,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +10,5,5,3,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,8,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,0,0,0,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +10,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,0,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,5,5,9,5,5,4,6,4,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,9,5,4,3,4,3,3,2,4,3,3,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,5,3,3,2,3,2,2,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,6,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,5,3,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,4,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,0,0,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,4,3,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,5,10,6,6,5,7,5,6,6,10,6,7,6,11,7,10,10,6,3,2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,9,5,5,4,6,4,4,3,4,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,6,4,6,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 +7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,5,3,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,5,3,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,2,2,2,4,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,2,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +10,5,5,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,12,7,7,5,6,4,4,4,7,4,4,4,6,4,6,5,7,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,5,4,5,5,9,5,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,5,7,7,6,3,3,2,3,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,5,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,2,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,2,3,3,4,3,4,4,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,2,1,1,1,1,1,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,16,8,8,6,9,6,8,7,12,7,8,6,10,6,8,7,13,7,7,5,8,5,7,7,12,7,7,6,10,7,11,11,7,4,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,1,1,1,1,1,0,0,-1,0,-1,0,4,3,3,2,3,2,2,2,2,1,1,1,0,0,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-3,-3,-12,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,1,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,3,4,4,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,3,2,1,1,1,1,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 +8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8 +8,4,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,13,7,7,5,7,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,-7,-3,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9 +6,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +8,5,5,3,4,3,4,3,3,2,2,2,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,4,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,9,5,6,4,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,4,3,3,3,14,8,8,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,4,3,4,3,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,9,5,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,-1,-1,0,0,0,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,1,1,1,1,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-11 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,12,6,6,5,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-3,-3,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-8 +12,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,21,11,10,7,10,6,7,7,12,7,7,5,8,5,6,6,11,6,7,5,7,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,5,3,3,3,4,3,5,5,8,5,6,5,9,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,9,5,3,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,9,5,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-7,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-12,-12,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,5,5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-4,-4,-9 +9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,14,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,5,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,5,3,2,2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-6,-4,-8,-5,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-3,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,7,7,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8 +14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,5,3,4,3,4,3,4,3,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,7,5,7,7,11,6,6,5,7,5,6,5,6,4,5,4,6,4,6,6,11,6,6,4,6,4,6,6,10,6,6,5,9,6,8,8,4,3,3,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,6,3,3,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-3,-1,0,0,0,1,1,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,4,3,5,5,8,4,4,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10 +14,8,8,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,4,3,4,3,4,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3,3,4,3,4,3,5,3,4,4,5,4,6,6,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,6,4,4,3,5,3,4,4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +14,8,8,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,19,10,10,7,9,6,7,6,10,6,6,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +26,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,36,19,19,13,20,12,14,12,20,11,12,9,14,9,12,11,19,10,11,8,11,7,8,8,14,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,3,4,4,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,5,6,11,6,7,5,8,5,7,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,9,16,9,10,9,15,10,15,15,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,9,5,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-6,-12,-8,-12,-12,-24,-12,-12,-7,-11,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-22,-22,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,0,1,1,1,0,1,1,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,8,8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-8,-9,-7,-13,-8,-13,-14,-29 +14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-4,-3,-6,-4,-6,-6,-14 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,6,4,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,6,5,8,5,6,5,7,5,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-7,-4,-6,-6,-14 +10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9 +15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,5,5,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,6,5,7,4,5,4,7,5,8,8,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-9,-4,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,3,4,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13 +9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7 +12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,14,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,-1,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9 +11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8 +20,10,10,7,9,6,7,6,9,5,5,4,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,11,6,7,5,7,4,5,4,5,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,21,11,11,8,11,6,7,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,7,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,1,1,1,1,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-2,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-7,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-14,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15 +11,6,6,4,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,3,3,3,3,4,4,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7 +13,7,7,4,5,3,4,4,5,3,3,3,3,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,13,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,3,2,3,3,3,3,4,4,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-4,-4,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6 +16,8,8,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,3,3,3,4,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,3,2,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,0,1,1,1,2,2,2,1,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,5,3,3,3,4,3,5,5,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11 +10,6,6,4,5,3,4,3,5,3,3,3,4,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7 +14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,1,1,2,2,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-5,-5,-11 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,5,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +27,14,14,10,14,8,9,8,13,7,7,5,8,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,6,5,9,5,6,6,10,7,9,9,18,9,9,6,8,5,5,5,8,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,5,5,12,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,4,5,5,8,6,8,8,28,14,14,9,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,6,9,6,7,6,9,5,6,5,9,6,8,7,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,5,3,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-16,-11,-17,-17,-17,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,7,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,5,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-2,2,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-21 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,15,8,8,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,15,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,0,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,0,0,0,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,5,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +19,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,6,4,5,4,6,5,7,7,14,7,7,5,6,4,4,3,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,5,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12 +12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,13,7,6,4,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +25,13,13,9,12,7,9,8,14,8,8,6,9,6,7,7,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,3,7,4,4,3,4,3,3,3,6,4,5,5,8,5,7,7,22,11,11,8,11,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,1,1,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,2,2,2,1,1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-7,-14,-9,-13,-13,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,-2,-2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +14,8,7,5,7,4,5,5,8,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,13,7,7,5,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,4,3,3,2,5,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10 +14,8,7,5,8,5,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,3,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +24,13,13,9,13,8,9,8,11,6,6,5,8,5,7,7,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,5,3,4,4,8,5,7,7,20,10,10,7,10,6,7,6,8,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-10,-5,-7,-6,-12,-7,-11,-11,-11,-5,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-2,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16 +16,9,9,6,9,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +23,12,12,8,13,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,19,10,10,7,10,6,6,5,9,5,6,4,5,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-6,-6,-10,-5,-6,-5,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +23,12,12,8,12,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +44,22,22,15,21,12,13,11,18,10,10,7,11,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,9,6,7,6,11,6,7,6,10,6,8,8,14,8,8,7,11,7,9,8,15,9,11,10,17,12,17,17,32,17,17,12,18,10,12,11,19,11,12,9,15,9,12,11,21,11,11,8,13,8,9,8,13,7,8,6,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,35,18,19,13,19,11,12,10,17,9,10,7,10,6,8,7,12,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,4,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,2,2,3,3,4,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,3,3,3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-6,-11,-7,-12,-12,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-11,-12,-9,-15,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-23,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,1,1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-15,-15,-30 +23,12,12,8,11,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,7,9,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +23,12,12,8,12,7,8,6,10,6,6,5,7,5,6,5,9,5,6,5,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,17,9,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,12,6,7,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +26,13,13,9,14,8,8,7,11,6,6,5,7,4,5,5,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,9,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,5,8,5,7,7,18,10,10,7,11,6,7,6,10,5,5,4,6,4,4,4,7,4,3,2,3,2,3,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,3,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,3,2,3,2,3,4,4,3,3,3,4,2,2,2,4,2,2,2,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15 +16,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,11,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +20,10,10,7,10,6,6,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,7,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 +18,9,9,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +32,16,16,11,15,9,10,8,14,8,8,6,9,6,7,6,13,7,7,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,11,6,7,5,7,4,5,5,9,6,7,6,11,7,10,10,22,12,12,8,12,7,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,1,0,0,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-14,-9,-15,-15,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,1,1,1,1,2,2,2,1,1,1,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18 +18,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-7,-4,-7,-8,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +20,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,7,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,11,6,6,5,6,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-6,-5,-9,-5,-8,-9,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 +16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +27,14,14,9,13,8,9,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,6,10,7,10,10,19,10,9,6,9,5,6,5,8,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,0,0,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +24,12,12,8,12,7,8,7,10,6,6,5,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,4,4,10,6,6,4,5,3,4,3,5,3,4,4,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,6,4,7,5,6,6,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-11,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 +23,12,12,8,12,7,8,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,4,4,10,5,5,4,5,3,4,3,5,3,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +44,22,22,15,22,13,16,13,23,12,13,9,13,8,10,9,17,9,10,7,11,7,8,7,11,6,7,6,9,6,9,8,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,10,18,10,11,8,12,7,9,8,13,8,9,7,11,7,10,9,20,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,7,6,10,6,8,7,11,7,10,10,25,13,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-9,-19,-10,-13,-11,-20,-13,-21,-21,-26,-12,-12,-8,-13,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,6,3,3,3,4,3,3,3,4,2,2,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,3,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-12,-25 +23,12,12,8,12,7,9,8,12,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-12 +24,12,12,9,12,7,9,8,13,7,8,5,8,5,6,5,10,6,6,5,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +27,14,14,10,14,8,10,9,15,8,9,6,9,6,7,6,13,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,6,6,5,7,5,7,6,13,7,7,5,8,5,5,5,10,6,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,16,9,9,6,9,6,7,6,8,5,5,4,6,4,6,5,8,5,5,3,4,2,2,2,4,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-17,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,4,3,3,3,4,3,3,2,2,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +22,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,11,6,6,5,7,4,4,4,7,4,4,4,7,5,6,5,11,6,6,5,6,4,4,4,8,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-6,-4,-6,-5,-11,-5,-6,-5,-11,-7,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,6,4,5,4,7,4,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +40,21,21,14,20,12,14,12,22,12,12,9,13,8,11,10,19,10,10,7,11,7,9,8,15,8,9,8,13,8,11,10,20,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,12,10,16,11,17,17,28,15,15,11,16,9,11,10,17,9,10,7,11,7,8,8,17,9,10,7,10,6,8,7,12,7,8,6,10,7,9,9,20,11,11,7,10,6,8,7,13,7,8,6,9,6,9,8,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,25,13,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,1,1,1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-7,-10,-10,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 +23,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,12,6,6,5,7,4,5,5,9,5,5,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,12,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,4,6,4,6,6,14,8,7,5,8,5,5,5,8,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,7,7,11,6,7,6,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-16 +23,12,12,8,12,7,9,8,13,7,7,5,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,6,11,6,6,4,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,6,6,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,7,14,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-13 +40,21,21,15,22,13,15,13,22,12,12,9,15,10,13,12,23,12,12,8,12,7,8,7,15,8,9,7,11,7,10,10,20,10,10,7,11,7,9,8,13,8,9,7,11,7,10,10,17,9,9,7,10,7,10,9,15,9,10,9,15,10,15,15,28,15,15,11,16,9,11,9,17,9,9,7,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,5,7,7,11,6,7,6,11,8,12,12,24,12,12,8,12,7,9,8,13,7,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,8,4,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-12,-7,-11,-11,-24 +27,14,14,10,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,11,8,11,6,7,6,12,6,7,5,7,5,6,6,11,6,6,5,7,4,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-12,-12,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +39,20,20,14,22,13,15,13,22,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,12,7,8,7,13,7,8,6,10,7,9,9,17,9,10,7,10,6,8,8,15,9,10,9,14,10,14,15,28,15,16,11,16,9,10,9,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-11,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +39,20,20,14,21,12,15,13,22,12,13,10,16,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,15,9,10,9,14,10,14,15,29,15,16,11,16,9,10,9,16,9,9,7,10,6,8,8,15,8,9,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +77,39,38,25,37,21,24,20,35,19,20,15,23,14,19,18,33,17,18,12,18,10,12,11,19,11,12,10,16,11,16,15,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-13,-14,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-13,-10,-19,-12,-19,-19,-39,-19,-19,-13,-21,-12,-15,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-18,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-37,-37,-55,-27,-28,-18,-28,-15,-18,-14,-26,-13,-15,-11,-19,-11,-16,-15,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-13,-27,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-21,-44,-21,-21,-14,-21,-11,-14,-12,-24,-12,-14,-10,-18,-11,-16,-15,-31,-15,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-18,-12,-18,-17,-35,-17,-18,-12,-18,-10,-13,-11,-20,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-10,-16,-9,-13,-12,-24,-12,-14,-11,-21,-13,-20,-20,-40,-20,-20,-13,-19,-10,-12,-10,-19,-9,-10,-7,-13,-8,-11,-11,-22,-11,-11,-8,-14,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-37,-18,-19,-12,-19,-11,-14,-12,-24,-12,-14,-10,-17,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-24,-13,-16,-13,-25,-16,-25,-24,-49,-24,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-35,-17,-18,-12,-19,-10,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-24,-13,-15,-12,-21,-13,-19,-19,-38,-19,-19,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-12,-12,-24,-12,-13,-9,-16,-9,-13,-12,-25,-14,-17,-14,-26,-17,-25,-25,-50 +39,20,19,13,19,11,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-7,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-7,-6,-14,-6,-7,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-24 +38,19,19,13,19,11,12,11,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-24 +25,13,13,9,13,7,8,8,12,7,7,6,8,6,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-18,-8,-9,-6,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 +37,19,18,12,18,10,12,11,17,9,10,8,12,8,11,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-20,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-20,-13,-20,-20,-27,-13,-13,-8,-13,-7,-9,-7,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-5,-4,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-11,-6,-7,-5,-10,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-19,-9,-9,-6,-10,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-9,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-12,-12,-24 +21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +25,13,12,8,12,7,8,7,13,7,8,6,9,6,8,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-2,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,1,1,0,1,0,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-8,-5,-8,-7,-15,-7,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16 +21,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +37,19,20,14,20,11,13,11,19,10,10,8,12,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,9,6,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,5,3,3,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,3,2,1,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-21,-11,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-13,-20,-20,-27,-13,-13,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-11,-23 +20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-11,-6,-10,-10,-13,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,6,4,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-6,-11,-6,-8,-6,-12,-7,-11,-11,-14,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-14,-6,-6,-4,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12 +17,9,9,6,9,5,6,6,9,5,5,4,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-5,-2,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +27,14,14,10,14,8,10,9,14,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,7,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,2,1,1,1,0,1,1,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +23,12,12,8,12,7,9,8,12,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +21,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10 +40,20,20,13,19,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,7,5,6,4,5,5,9,5,5,4,5,3,3,2,2,2,2,2,2,1,0,0,-1,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,12,7,7,5,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,1,1,1,0,-1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-6,-3,-3,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-20,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-8,-11,-10,-21,-11,-14,-12,-22,-14,-22,-22,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-7,-11,-10,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-10,-6,-10,-10,-24,-11,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-19 +20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +20,11,11,7,10,6,8,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10 +14,8,8,6,8,5,6,5,7,4,5,4,5,4,4,4,8,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-4,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +21,11,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,0,0,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-4,-6,-4,-8,-5,-8,-8,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6 +13,7,7,5,8,5,5,5,8,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +24,13,13,9,14,8,10,8,13,7,7,5,8,5,7,7,15,8,8,6,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-3,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5 +14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-6,-5,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6 +11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-5 +18,9,9,7,10,6,7,7,11,6,6,5,8,5,6,6,11,6,7,5,8,5,5,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,5,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,1,1,2,1,1,0,1,1,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-6,-8,-6,-12,-7,-11,-11,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,3,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-4,-9 +12,6,6,5,7,4,5,5,8,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5 +16,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,4,6,5,9,5,5,4,6,4,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-4,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8 +16,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7 +31,16,17,12,17,10,11,10,17,9,10,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,5,3,3,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-21,-20,-28,-13,-13,-8,-12,-6,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-14,-9,-15,-15,-27,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-29,-14,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-14 +16,9,9,6,9,5,6,5,9,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-2,-3,-7 +17,9,9,6,9,5,6,5,8,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-3,-1,-1,0,-1,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-7 +12,6,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4 +17,9,10,7,10,6,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-16,-8,-8,-5,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7 +10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +11,6,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +17,9,9,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,6,4,4,4,6,4,6,5,11,6,6,4,5,3,4,3,5,3,3,2,2,2,2,2,7,4,4,2,2,1,1,1,0,1,1,1,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,3,2,3,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,2,3,3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-3,-3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,4,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4 +8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +18,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,5,3,4,3,5,3,4,3,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,1,1,1,1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,7,4,4,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,5,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,0,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,0,0,0,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-2,0,0,0,-2,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,4,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-12,-6,-6,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +13,7,7,5,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,2,2,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1 +11,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,2,2,3,2,2,1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +10,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +18,10,10,7,10,6,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,3,4,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,3,4,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-8,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-9,-21,-10,-9,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-7,-5,-9,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,1,1,0,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,7,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 +15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-5,-7,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +28,14,14,9,13,7,8,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-18,-48,-23,-23,-15,-24,-13,-16,-13,-23,-12,-13,-9,-15,-9,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-10,-7,-12,-7,-11,-10,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,16,8,8,6,8,5,5,4,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-13,-9,-14,-14,-26,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-8,-16,-8,-10,-8,-14,-8,-12,-11,-23,-11,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-10,-8,-16,-10,-16,-16,-35,-17,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 +15,8,7,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 +15,8,7,5,8,5,5,4,7,4,4,3,5,3,4,3,6,3,3,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +11,6,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +16,9,9,6,8,5,5,5,7,4,4,3,4,3,4,4,7,4,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-5,-12,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +12,6,6,4,5,3,4,4,5,3,4,3,3,2,2,2,6,3,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,5,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +17,9,9,6,9,5,6,5,8,4,4,3,5,3,4,3,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,3,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-23,-11,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,2,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +10,6,6,4,5,3,4,4,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-2,-2,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2 +11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,0,-2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,1,1,1,1,2,2,2,1,0,1,1,1,0,0,-1,-1,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-2,-5 +7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 +10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-3,-1,-2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5 +10,6,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,4,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4 +19,10,9,6,9,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,5,3,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-18,-9,-9,-6,-10,-5,-7,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-17,-8,-8,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,8,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4 +10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-8,-7,-11,-5,-6,-4,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3,-3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-12,-5,-5,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,4,3,4,3,3,3,3,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3 +13,7,7,5,7,4,5,4,6,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-11,-17,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,2,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,8,5,5,4,5,3,3,3,4,2,2,2,2,1,1,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-7 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +9,5,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-7,-11,-5,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3 +7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,7,4,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-5 +8,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 +11,6,6,4,5,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,6,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +21,11,12,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-11,-6,-9,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-12,-7,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-33,-16,-16,-10,-16,-8,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,15,8,8,5,7,4,4,3,5,3,3,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-9,-14,-13,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-9,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9 +11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-4,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-2,-2,-4,-2,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-4,-3,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-6,-4,-6,-7,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-10,-5,-5,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,6,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,6,6,4,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,1,2,2,2,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3 +9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +16,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,-5,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-18,-8,-8,-5,-8,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-8,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-5,-8,-3,-3,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,1,1,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1 +23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,13,7,7,5,7,5,6,5,8,5,5,5,8,6,8,7,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,1,1,1,0,0,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-4,-5,-4,-9,-5,-8,-8,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-6,-10,-10,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-21,-10,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-37,-18,-17,-11,-17,-9,-10,-8,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,6,3,3,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-12,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,8,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3 +12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-8,-19,-9,-9,-6,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-4,-7,-4,-7,-8,-20,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,8,8,6,8,5,5,5,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-24,-12,-12,-8,-12,-6,-7,-5,-10,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,2,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +12,6,6,4,7,4,4,4,8,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1 +11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +20,11,11,8,11,7,8,7,12,7,7,6,10,6,8,8,14,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-7,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-12,-12,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-35,-17,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-11,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1 +12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +14,8,8,5,7,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1 +12,7,7,5,6,4,5,4,8,4,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-20,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,2,3,2,2,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-8,-7,-14,-9,-14,-13,-36,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,6,5,8,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-14,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-4,-5,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,5,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,3,4,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-13,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-6,-11,-6,-9,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0 +42,22,22,15,21,12,14,12,20,11,11,9,14,8,10,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-9,-17,-8,-9,-7,-13,-8,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-15,-15,-22,-11,-11,-7,-10,-6,-8,-7,-13,-6,-7,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-18,-17,-35,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-14,-14,-29,-15,-16,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-27,-55,-27,-27,-18,-27,-15,-18,-15,-27,-14,-15,-11,-19,-12,-17,-16,-31,-15,-16,-11,-18,-10,-13,-11,-21,-11,-12,-10,-18,-11,-17,-16,-33,-16,-16,-11,-17,-9,-12,-10,-20,-10,-11,-8,-14,-9,-13,-13,-26,-13,-13,-9,-15,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-11,-18,-11,-15,-14,-27,-15,-18,-15,-27,-17,-25,-25,-76,-37,-37,-24,-36,-20,-24,-19,-35,-18,-19,-13,-22,-13,-19,-17,-34,-17,-17,-11,-17,-9,-11,-9,-18,-9,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-37,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-12,-10,-19,-9,-10,-7,-13,-8,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-12,-15,-13,-24,-16,-24,-24,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,0,1,1,1,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,-1,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3,2,2,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-11,-11,-23,-11,-12,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0 +21,11,11,8,11,7,8,6,10,6,6,5,7,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-5,-10,-5,-5,-3,-6,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-4,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-5,-5,-10,-6,-7,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-6,-14,-7,-8,-7,-14,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-10,-5,-7,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-4,-9,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-6,-5,-10,-6,-8,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-6,-5,-8,-4,-4,-3,-6,-4,-5,-4,-10,-5,-5,-3,-5,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-4,-4,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-25,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0 +20,10,10,7,10,6,7,6,9,5,5,4,6,4,6,5,10,5,5,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-14,-9,-14,-8,-10,-8,-13,-7,-8,-6,-10,-6,-8,-7,-17,-8,-8,-5,-8,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-10,-6,-10,-5,-7,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-17,-8,-9,-6,-10,-6,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-8,-6,-12,-8,-12,-12,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-6,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0 +13,7,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-7,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-7,-5,-8,-8,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1 +10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1 +17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-6,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-7,-4,-6,-5,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-36,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-7,-11,-6,-9,-8,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-8,-13,-13,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +10,6,6,4,5,3,3,3,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2 +8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1 +10,6,6,4,5,3,3,3,6,3,3,2,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +16,8,8,5,7,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-8,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-31,-15,-16,-10,-16,-8,-10,-9,-17,-8,-8,-5,-9,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-6,-7,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-40,-20,-20,-13,-21,-11,-14,-11,-21,-10,-10,-7,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3 +8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +8,4,4,3,4,3,4,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-5,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-8,-5,-8,-4,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,2,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0 +7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0 +6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0 +11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-16,-8,-8,-5,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,3,3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,1,1,2,2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1 +4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-19,-9,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0 +5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0 +9,5,6,5,7,5,6,5,8,5,5,4,7,5,6,6,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,4,3,5,5,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-6,-9,-9,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-29,-14,-14,-9,-14,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-37,-18,-19,-12,-19,-10,-12,-10,-18,-9,-9,-7,-12,-7,-11,-10,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,1,1,2,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0 +5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0 +4,3,3,3,3,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-10,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-9,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,2,3,2,2,1,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-3,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,0,0,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-8,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,1,1,1,1,1,1,1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-2,0,0,0,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,-1,0,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-13,-6,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,1,1,1,0,0,0,1,1,1,1,0,0,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3 +7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-9,-4,-4,-2,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,2,3,3,5,3,3,3,5,4,6,6,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-5,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-15,-7,-8,-5,-6,-3,-4,-3,-8,-4,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2 +6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-9,-5,-8,-4,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,4,2,2,2,3,2,3,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3 +4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3 +5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,1,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,4 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 +8,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-26,-12,-12,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-3,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,1,1,1,1,1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-5,-8,-8,-13,-6,-7,-5,-8,-5,-8,-7,-13,-7,-8,-7,-14,-9,-14,-13,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-14,-7,-7,-5,-8,-4,-6,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,0,1,1,2,3,2,3,3,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,3,2,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-2,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,9 +5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6 +8,4,4,3,4,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-5,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,4,3,5,5,8 +8,4,4,3,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8 +14,8,8,5,7,4,4,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-34,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-20,-9,-9,-6,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-8,-10,-9,-17,-11,-18,-18,-38,-18,-18,-12,-18,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-27,-51,-25,-25,-16,-25,-13,-16,-13,-25,-12,-12,-8,-14,-8,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-30,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-9,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-23,-11,-12,-8,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,3,3,4,4,7,4,5,5,9,6,9,9,16,8,8,6,8,5,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-5,-7,-4,-5,-4,-6,-3,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,3,4,4,8 +6,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6 +9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-9,-9,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,-2,0,0,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8 +6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5 +7,4,4,3,3,2,2,2,4,2,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-3,-5,-5,-14,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-5,-2,-3,-3,-9,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,2,1,1,2,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +9,5,6,4,6,4,5,4,6,3,3,2,2,2,2,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-4,-7,-7,-22,-11,-11,-7,-11,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-6,-6,-15,-7,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-16,-15,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,2,2,2,1,1,1,2,2,4,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9 +5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5 +6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4 +8,4,4,3,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-7,-7,-4,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6 +5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6 +10,5,5,4,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,3,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-3,-3,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-8,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-17,-11,-16,-16,-36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,8,4,4,3,4,2,2,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,0,0,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,5,4,5,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-12,-6,-6,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5 +5,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5 +7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +14,8,8,5,7,5,6,5,8,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,3,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,8,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8 +8,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-2,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +10,6,6,4,6,4,5,4,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-5,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-5,-4,-6,-4,-6,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,6,4,4,3,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +16,9,9,6,8,5,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-10,-5,-6,-5,-10,-7,-11,-11,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,6,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,1,2,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,-4,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,-1,0,1,1,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,-1,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6 +15,8,9,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,2,2,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +29,15,15,10,15,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,3,2,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-10,-30,-14,-14,-9,-15,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,4,3,3,2,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-13,-11,-20,-13,-21,-21,-56,-27,-27,-18,-28,-15,-18,-15,-27,-13,-14,-9,-14,-8,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-9,-14,-14,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,9,5,5,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,3,5,4,5,4,7,5,6,5,8,6,9,9,16 +15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,5,5,9 +15,8,8,6,8,5,6,5,6,4,4,3,4,3,4,3,6,3,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-3,-4,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9 +11,6,6,4,6,4,4,4,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,4,7 +17,9,9,6,8,5,6,5,6,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-4,-16,-8,-8,-5,-8,-4,-5,-3,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-17,-8,-7,-4,-7,-4,-5,-4,-10,-5,-5,-3,-6,-4,-6,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-11,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,6,4,4,3,4,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,-1,4,3,3,2,3,2,3,3,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,5,4,6,6,11 +10,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,3,4,4,7 +13,7,6,4,6,4,4,4,5,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-12,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,3,5,3,3,3,4,3,5,5,8 +12,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +21,11,10,7,10,6,7,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-33,-16,-16,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-9,-8,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-9,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,6,6,12 +11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7 +12,6,6,4,7,4,4,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,8 +9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7 +15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,2,2,2,2,2,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,-1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,5,5,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13 +10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9 +14,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-10,-5,-6,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +13,7,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +25,13,13,8,11,6,7,6,9,5,5,4,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-8,-27,-13,-12,-8,-12,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-12,-12,-24,-13,-15,-12,-22,-14,-22,-21,-45,-22,-21,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-15,-8,-9,-7,-14,-9,-14,-14,-22,-10,-10,-6,-10,-5,-7,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,6,6,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 +13,7,7,5,6,4,4,4,5,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,12 +14,7,7,5,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-25,-12,-12,-7,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,13 +11,6,6,4,5,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +18,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-16,-8,-9,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,3,2,3,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,9,8,15 +11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,9 +15,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-9,-5,-6,-6,-13,-7,-8,-6,-11,-7,-12,-12,-25,-12,-12,-8,-11,-6,-8,-7,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5,-2,-1,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,12 +14,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12 +27,14,14,9,13,8,9,7,12,7,8,6,9,6,7,6,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-28,-14,-14,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-11,-24,-12,-12,-9,-15,-9,-12,-12,-24,-13,-16,-13,-23,-15,-23,-23,-45,-22,-22,-14,-22,-12,-15,-13,-24,-12,-14,-10,-17,-10,-15,-14,-27,-13,-13,-9,-15,-8,-11,-9,-18,-9,-10,-8,-14,-8,-12,-12,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-7,-13,-7,-9,-8,-16,-8,-10,-8,-15,-9,-13,-13,-28,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-7,-14,-9,-14,-14,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,2,2,2,2,1,1,1,2,2,2,2,6,4,4,3,3,2,1,1,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,8,6,9,6,7,6,11,6,7,6,10,7,11,11,22 +15,8,8,6,8,5,5,4,7,4,5,4,5,4,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,3,4,4,8,4,5,4,6,4,5,4,7,4,4,4,6,5,7,7,13 +18,10,10,7,9,5,6,5,8,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-6,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,8,6,8,8,16 +15,8,8,6,8,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-9,-5,-7,-6,-14,-6,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,14 +26,13,13,9,13,8,9,7,11,6,6,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,2,2,2,2,2,2,4,2,2,2,2,2,3,3,6,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-8,-11,-11,-22,-11,-11,-8,-14,-8,-12,-11,-23,-12,-15,-12,-23,-15,-23,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-12,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-16,-8,-9,-7,-14,-9,-14,-14,-27,-13,-13,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-9,-7,-14,-9,-14,-14,-28,-13,-13,-8,-13,-7,-8,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,7,6,9,6,8,7,11,7,8,7,12,9,13,13,25 +18,9,9,6,9,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-6,-7,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-15,-8,-10,-8,-13,-8,-13,-13,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-6,-4,-6,-6,-14,-7,-7,-5,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,4,3,4,3,4,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,5,9,6,7,6,12,7,8,7,13,9,14,14,26 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-8,-9,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,13,9,13,13,26 +50,25,25,17,24,13,15,12,21,11,11,8,12,8,10,9,17,9,9,7,10,6,6,5,9,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,3,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-8,-7,-13,-9,-14,-15,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-10,-7,-12,-7,-10,-10,-21,-10,-10,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-39,-19,-20,-13,-21,-11,-14,-12,-22,-11,-13,-9,-16,-10,-15,-15,-30,-15,-15,-11,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-26,-53,-27,-28,-19,-30,-17,-21,-18,-34,-18,-20,-15,-27,-17,-24,-23,-45,-23,-24,-18,-30,-18,-26,-24,-48,-26,-32,-26,-47,-31,-46,-46,-94,-46,-46,-31,-47,-25,-30,-25,-46,-23,-25,-19,-32,-20,-28,-26,-51,-25,-26,-18,-28,-16,-21,-19,-36,-19,-22,-17,-29,-19,-28,-27,-54,-27,-27,-18,-28,-15,-19,-16,-30,-15,-17,-13,-23,-14,-21,-20,-40,-20,-21,-14,-23,-13,-18,-16,-32,-17,-19,-15,-28,-18,-28,-28,-57,-28,-27,-18,-27,-15,-18,-15,-27,-14,-15,-10,-17,-10,-14,-13,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-10,-8,-14,-9,-13,-12,-25,-13,-14,-11,-19,-11,-16,-15,-29,-16,-19,-16,-30,-19,-29,-29,-58,-28,-28,-19,-29,-15,-18,-15,-28,-14,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-5,-5,-3,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,8,16,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,13,7,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,4,6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,3,3,4,4,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,11,11,20,11,12,9,15,9,12,12,22,13,16,14,25,17,25,25,50 diff --git a/worlds/diamond_world2.csv b/worlds/diamond_world2.csv new file mode 100644 index 0000000..d51e78a --- /dev/null +++ b/worlds/diamond_world2.csv @@ -0,0 +1,257 @@ +54,102,116,132,158,159,140,207,229,196,157,171,261,284,275,322,482,460,363,438,641,901,1431,1938,2724,2943,3854,4444,3889,4374,5896,6636,5925,6653,9764,12769,12864,9305,7398,9721,9630,7535,5882,4872,4098,7778,9385,10017,13287,10766,6878,7037,8674,10026,10329,12788,14776,11178,7584,6270,5816,4793,3297,2901,2281,1952,1514,1512,2230,1570,1413,891,514,920,1062,2164,2972,3805,3680,4377,3728,3423,2090,2491,2623,2053,1559,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,198,394,561,1230,1520,1995,2107,1602,1349,1696,1557,1097,692,480,144,183,258,312,336,567,652,938,1053,718,682,560,295,264,185,176,240,202,114,78,32,25,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,827,1035,1444,1569,1188,1324,2036,2913,3602,4379,3896,3696,3039,4308,5187,5234,5454,5259,3759,3158,3156,2434,2461,3302,3722,3143,3070,2444,1845,2378,2234,2386,1996,1579,1173,787,534,236,0,26,43,96,118,111,109,143,198,435,729,1418,2085,3296,4312,5042,7529,8380,8128,6343,5903,4959,4039,6504,6962,6717,4329,3425,2243,3978,4792,4876,4724,3767,2925,2772,3398,2407,2155,1020,0,12,24,31,48,39,39,44,56 +41,70,132,151,160,164,190,228,156,162,182,259,294,312,349,366,406,354,339,446,788,989,1440,2132,2859,3879,4451,3884,5894,5785,6928,5117,9479,8944,8882,9244,8506,7222,6220,6822,8140,7512,4746,5536,5603,8872,13548,12820,10124,10644,6286,7120,7084,8630,10278,10881,9791,10136,8670,6297,6179,4585,3641,3050,3005,2500,1744,1516,1807,1498,1023,778,355,952,1020,2133,4002,4108,4928,4747,3051,2948,1666,1927,2881,2138,1741,985,183,174,136,119,80,66,32,18,0,1,2,2,2,5,5,7,4,174,374,578,881,1278,1903,2477,3279,2030,2260,1918,1770,1380,1036,640,408,422,607,707,752,766,909,888,1530,1088,792,660,350,308,199,350,398,433,393,437,289,249,216,247,263,270,258,201,108,216,330,397,350,289,227,231,91,101,121,138,0,26,54,59,138,195,182,218,50,368,629,1068,1788,1732,1582,1630,2299,2576,2308,2999,3179,3566,4023,4280,4935,5181,4782,4696,3109,3260,3532,3146,1546,2124,2902,2541,2657,2672,2132,2148,2007,1598,1446,1250,1014,681,613,274,130,158,149,234,336,338,275,302,306,556,1054,1588,2440,2953,2880,4318,5856,5977,5619,5900,5060,4874,3930,5878,7622,5992,4926,4130,2930,3908,4600,5122,4191,3036,2320,2624,3235,2977,3248,2414,537,454,448,368,334,262,216,128,43 +33,66,110,183,227,187,181,268,130,126,147,243,233,366,407,407,283,341,439,455,842,1077,1650,1816,3787,3523,4724,4828,6627,6756,7043,5634,10664,8572,9575,8976,7290,5319,4652,6281,7554,6226,5942,5906,8240,10155,13952,15263,8829,8094,7972,7892,5903,9171,10106,11464,8832,8317,8050,6156,5091,3988,3592,3860,2901,1981,1532,1258,1132,1109,1076,858,297,925,1441,2588,3878,5115,5634,6016,2050,1684,1904,2434,3270,2692,1650,1007,371,299,280,326,190,118,76,46,0,2,4,5,4,7,8,11,6,294,537,725,1450,1728,1751,2593,3560,2610,2506,1884,1949,1463,1162,824,566,726,950,1114,927,1064,1070,1045,1648,1562,1275,632,310,316,286,344,485,579,764,792,639,496,505,626,602,561,456,409,254,424,556,708,719,622,518,385,192,208,262,327,0,58,110,140,285,364,360,409,116,364,564,910,2015,1843,1538,1355,1876,1908,2144,3081,2456,3870,4770,4738,3385,3412,4216,4850,3759,3730,3518,3548,1284,1311,1564,2237,3517,3165,2741,2152,1768,1535,1030,951,821,742,534,354,304,333,289,419,698,495,500,366,357,655,1196,1452,2215,2595,2638,4427,3651,3673,4441,5546,3881,5098,4840,6112,7255,5345,4954,4006,3974,4142,4283,4018,2774,2230,2200,3251,2909,4092,4108,3240,1067,872,736,824,569,515,422,261,36 +36,61,99,172,251,224,208,318,124,159,212,261,272,332,354,412,176,495,722,628,954,1132,1229,1844,4269,4028,5194,5382,7081,5824,5730,5373,9529,9947,8936,8470,7134,5555,5378,4561,6648,6787,5624,7102,7951,8523,11987,13608,9303,7582,5878,7194,6839,10309,9502,9698,9737,9020,6341,5617,4089,3664,4053,3892,2398,1708,1482,1010,876,1044,997,858,277,808,1357,2278,3520,4738,5474,7014,2045,2036,1884,2844,2775,2042,1488,928,549,432,461,412,327,199,106,58,0,4,6,7,7,11,10,17,10,478,1008,1254,2218,1706,1678,2930,2641,2772,3122,2266,1817,1602,1287,968,985,1047,1458,1534,1205,1382,1146,1184,1650,1370,1197,661,268,372,365,446,682,793,861,962,1003,826,576,883,928,764,444,466,512,730,853,1073,1286,989,605,548,328,291,443,500,0,81,172,245,326,508,714,712,208,598,956,1110,1623,1700,2373,2399,1453,1866,1430,2154,3237,3480,4554,4977,4278,3952,3941,3594,2928,3839,3498,4120,1578,1666,1312,1690,2687,3002,2430,2328,1010,1110,853,1124,1372,901,504,383,436,507,594,658,873,636,577,461,438,936,1559,2006,2557,2563,2079,3056,2541,2627,3879,4406,3763,4554,3412,4730,4908,4753,5214,5174,4391,5022,4454,4256,2160,2534,2143,3686,3924,5439,5707,5660,1449,1274,789,1078,1222,1016,728,396,25 +31,65,120,166,200,218,320,336,170,217,292,299,357,517,514,525,100,214,410,791,1072,1309,1279,2138,3386,4128,3610,4500,5626,5241,3576,3564,9429,7379,5484,5116,6090,6102,6224,4794,5022,8233,9129,10492,8628,10028,13826,14730,8683,8122,5196,6046,7248,9273,9994,11641,9015,6314,3811,3191,2767,3288,4158,4456,2234,2538,2003,1587,744,761,774,759,376,1088,1874,2233,2637,4046,4527,6164,2458,2391,1854,1696,2283,1624,1613,1395,658,573,624,487,428,374,228,99,0,4,6,7,7,10,13,23,13,818,1706,2126,2513,2722,3187,3955,3033,2419,1594,1635,1658,1398,1461,988,1122,1210,1539,1806,1922,1247,949,893,1855,1540,1282,831,306,320,420,670,715,884,985,842,1050,1221,1239,1385,961,766,614,692,731,702,966,1315,1537,1432,1093,614,433,650,690,744,0,69,151,262,435,710,965,1222,308,496,678,1128,1772,2294,2768,3467,1392,2128,2274,2442,3056,4089,6722,7916,3851,3976,4006,2799,2856,3260,4140,4106,1379,1976,2458,2821,2934,2628,3156,2762,512,806,1258,1223,1549,1139,1022,653,661,746,989,1065,929,1036,826,595,524,941,1403,1882,3098,2822,2406,1707,2387,2176,2810,3121,4372,5180,5238,3752,5000,4376,3699,4442,4357,4334,2913,3319,2029,2793,3084,4817,6005,4315,4342,6805,2035,1844,1519,1433,1670,1347,823,478,12 +52,84,94,124,165,256,241,320,188,256,229,234,279,354,386,343,78,404,637,1060,1530,1766,1286,2191,2850,3546,3680,4388,6196,4938,5058,3482,10454,7318,5137,3890,5945,6336,5014,4191,5255,6476,6725,8554,9045,8378,9202,12976,5074,5696,5131,5144,5797,7589,9541,9943,7806,5833,4037,3304,2491,3509,4158,4782,3000,3338,2799,2224,2314,1646,988,1008,482,1496,2625,2889,2620,3394,5073,5460,3190,3010,2522,2267,2139,2021,1524,1192,677,610,756,584,475,390,226,116,0,5,7,10,8,14,22,27,21,648,1747,2301,2635,2846,4031,3768,3686,2692,2082,1721,1804,1351,1611,1098,1423,1564,1578,1866,2757,2232,1546,1478,2424,1880,1770,1084,482,725,1008,1355,1444,1378,1022,1070,1203,1410,1798,1812,2327,1867,1397,999,884,1203,1731,1972,1992,2212,2401,1596,952,1136,1221,926,0,74,124,234,442,728,1030,1070,854,898,920,1207,1266,2051,2274,2533,1570,1617,1784,2354,2396,4320,5250,5439,4116,3415,4316,3553,2556,3083,3487,3592,1326,2332,2314,2666,2694,2267,2090,2278,766,1184,1538,1780,1698,1442,1383,966,1016,1058,1279,1066,1122,1090,752,578,495,1102,1517,2322,2278,2004,2057,1923,2260,2690,3010,4668,4081,4358,4327,3914,4891,4744,3735,4706,4262,4930,4416,4426,2833,3548,3809,4340,4840,5014,5148,7168,3848,3768,2595,2524,2055,1398,1050,473,12 +83,95,86,75,171,254,268,236,276,271,246,237,250,264,210,194,46,452,957,1081,1825,1518,1878,1789,2717,2852,4240,3786,4750,4955,5158,4376,10835,6927,5854,4958,6478,6282,5166,4925,6066,5636,6989,5506,6501,6788,9158,13448,3983,3584,4232,4250,4810,5843,6297,7684,8722,5364,4102,3099,2260,3880,5346,6268,4256,3950,3090,2301,3111,2578,1670,1128,505,2037,2928,3428,2578,2679,4055,4098,3125,2962,2409,2696,2405,2067,1266,1062,629,836,812,656,683,466,237,134,0,5,7,8,8,18,22,28,29,556,1226,2225,2214,3268,3880,3453,3531,2699,2076,1928,1407,1466,1472,1017,1427,1599,1724,2543,3110,2264,2150,1468,2395,1695,1778,1060,537,1351,1854,2096,1840,1529,1232,1175,1352,1418,1867,2262,4348,3184,1753,1459,1010,1741,2152,2312,3300,2738,2979,2662,1393,1138,1448,1441,0,70,150,208,399,686,995,1090,1448,962,946,788,1225,1900,2338,2162,1534,1664,1700,2004,2179,2436,3464,4239,4686,4376,4110,4102,1644,2795,3428,3410,1404,1680,2302,2637,1600,1536,1861,2720,1225,1338,1736,2382,1754,1726,1689,1133,1380,1077,1158,878,1014,825,764,706,567,1540,2030,3265,2316,2215,2052,2216,2088,2018,2766,3107,3600,3439,3793,3332,4352,4337,4510,5014,5160,5988,4957,3734,2840,3750,4094,5148,4271,4808,5708,9182,6564,4691,4368,4416,1777,1676,1447,684,8 +132,128,96,80,100,154,242,200,222,218,162,182,189,186,142,124,20,486,820,1247,2190,2106,2357,2294,2575,3356,3566,4736,4451,4580,5516,5121,8905,6719,5854,4044,5408,4625,5962,4546,5389,5466,6665,4668,4380,5374,8267,9236,1710,1952,2474,3070,4274,4269,5009,6744,5170,4208,4277,3388,2006,3502,4448,6597,6392,5783,4880,3214,3088,2922,1985,1258,539,1916,2564,2938,3285,3578,2788,3712,2513,2304,2204,1764,1823,1564,1080,974,703,669,586,666,633,440,322,164,0,5,7,10,12,20,25,30,34,532,832,1604,1676,2726,3937,3530,2746,2349,2620,2006,1283,1196,1223,1006,1438,1586,1620,2706,2527,2547,2359,2055,1810,1732,2004,1341,718,1436,2490,2148,2138,2294,2102,1581,1186,1460,1801,2285,4268,3311,2445,1794,1091,2149,2154,2692,3287,3242,3387,3428,2538,2192,1707,1524,0,102,221,285,484,598,921,1147,1368,1206,1013,916,1138,2008,1886,2784,1279,1794,1689,2437,2920,3466,4364,3636,3737,3981,2927,3116,1667,2694,2890,3483,950,1326,1632,2148,1394,1400,1388,1726,1315,2166,2238,2352,2448,2112,1831,1281,1572,1438,1532,1356,1236,1008,755,778,554,1353,1975,3350,2828,2952,2606,3534,1406,2098,3238,3246,2906,3598,3395,3488,4525,4723,3294,4682,4647,4815,5474,5135,4703,4870,5150,3736,4136,5366,5806,8656,6950,7070,6052,4623,3121,2540,1912,1102,5 +172,178,198,178,196,158,185,222,229,239,209,173,93,71,54,26,0,426,841,1386,1536,2154,2288,2380,2536,2932,2974,3231,4097,3932,3269,4141,7287,5723,5666,3237,1402,2021,2406,3193,4852,4887,4580,5015,7267,7539,8661,6374,0,176,356,564,720,1286,2301,2886,3558,4194,3876,4881,4996,6557,6726,6386,9020,9632,10300,8260,7326,5288,3874,2546,422,1048,1357,2081,2195,3632,4262,4221,2267,1453,1011,908,503,870,976,850,1024,1059,828,746,688,644,398,231,0,5,8,12,11,22,29,34,31,738,1473,1745,2414,3842,4366,3968,2483,2129,1506,923,466,822,978,1253,1134,824,740,887,1067,1556,2458,2421,1720,1752,2415,2347,3403,2813,2899,2603,3414,2751,2677,3596,4769,3968,3454,3363,5292,5556,4165,5327,6326,6191,4907,4756,3409,3864,4552,4264,3702,2868,2281,1956,0,96,217,368,404,964,1435,1637,1778,1845,1304,1245,1129,2066,2634,2920,999,1062,962,1458,1748,1893,1870,3245,3603,4076,5502,5015,4786,4516,3909,3708,812,622,662,639,436,1198,1565,1545,1886,1441,1185,1468,1511,1378,1106,1176,1426,1177,1087,1415,1644,1409,1189,937,519,832,1471,2260,3964,4371,5043,4298,942,1633,2571,3145,2800,2868,2856,3650,3841,4090,3104,2920,3340,3773,5128,5395,5782,7408,6762,5564,6739,6663,8074,9540,9852,7768,6503,4701,3705,2784,1755,1014,0 +148,173,206,202,216,180,224,236,222,197,206,155,128,92,62,27,2,294,646,1200,1237,1788,1764,1872,1877,2354,2661,2776,3298,3116,2572,3191,7137,5147,3767,3145,1535,1840,2193,3382,3651,4270,4074,4763,5149,6369,8185,5060,0,245,352,765,748,1702,2650,3393,3654,3811,2937,3128,4237,5467,6078,7542,10336,10171,7855,7321,5520,4604,5240,3012,1948,2065,1922,2816,4134,4043,4573,4595,1522,1180,985,888,900,964,943,951,1028,869,857,732,576,504,346,172,0,6,12,16,22,26,32,35,34,637,974,1410,1805,2768,3571,4654,3426,2320,1418,1096,832,924,943,1169,2358,2060,1402,1657,1344,1748,2180,2690,1470,1569,2128,2398,2673,2462,2613,3180,4051,3116,3006,4136,3812,3595,3711,3196,5464,6236,5207,4087,5811,4956,4395,3302,2538,3366,4668,4183,3084,2554,2044,1610,0,96,199,310,445,842,1031,1570,1650,1719,1066,1002,1042,1373,2234,2610,1361,1660,1345,1551,1831,2112,2640,3680,3210,3880,3956,3502,3356,3922,4733,4736,666,662,522,621,353,972,1555,1286,1932,1678,1364,1606,1229,1278,1377,1214,1766,1711,1872,1441,1550,1158,970,808,521,792,1231,2292,3448,4311,3789,5092,782,1416,1912,2242,2154,2570,3783,3756,3204,3801,3481,2588,3913,4498,5592,6875,4886,5719,8496,8200,6928,7901,10068,15414,15263,13083,11664,7708,4797,4888,3201,2330,1540 +144,174,172,202,203,236,200,255,207,177,145,149,128,77,60,32,3,224,463,876,1511,1414,1852,2169,1606,2272,2559,2383,2248,2345,2870,2428,5915,5223,3536,2646,1496,1641,1872,2415,2776,3549,3886,4758,3805,3963,5027,3933,0,278,500,646,677,1664,2504,3339,2698,2164,2546,3003,4596,6412,6328,6031,9536,6829,7132,4744,6433,5123,4996,4204,4432,3644,2327,2859,5248,4493,4730,6642,1057,1154,898,699,1071,1063,871,896,881,710,640,415,591,422,246,138,0,7,13,23,29,28,32,34,30,459,881,1082,1459,2156,2326,3815,3252,2097,1800,1726,1000,1087,1351,1446,2843,2670,2134,2068,1974,2665,2608,1936,1160,1498,1775,2515,1830,1905,2852,3580,4548,4238,3167,3868,3381,3931,3328,2636,7645,6171,5003,4374,5546,3616,2580,1847,2661,3317,3972,4036,3608,2450,2278,1606,0,122,210,230,345,784,1116,1535,1025,1172,1240,1265,666,1185,1562,1754,1734,1764,1730,1790,2401,3060,3336,3931,2287,2862,2748,2836,3520,3954,4239,3880,742,784,614,558,313,694,1162,1104,1750,1798,1405,1802,1416,1789,1636,1521,2684,2380,2076,1578,1032,1098,1112,882,503,834,1407,2140,3151,3682,4066,4663,568,923,1324,1093,2576,3015,3673,4361,3343,4005,3744,3162,4793,4957,5518,6200,4843,5460,7734,7590,8456,13855,16102,20632,20141,18254,15122,9441,6753,6906,4893,3816,2924 +202,232,142,150,178,145,148,259,171,162,151,137,142,82,69,38,5,214,472,682,1430,1726,1885,1604,1840,1966,2121,2156,1762,1984,2338,1939,5574,5207,2845,2932,2289,2492,1845,2860,2720,2958,3012,3138,2528,2782,3196,2897,0,340,667,772,801,1362,2079,2194,2469,1946,1956,2970,4771,5731,6912,8068,8016,7246,8004,5656,6266,5684,4411,4908,5902,4262,3570,3477,5476,4434,4306,6268,1260,1284,1026,970,973,1063,604,628,904,595,481,350,314,275,208,92,0,12,24,27,44,34,35,38,29,379,980,1001,1496,1920,2085,2783,3750,2628,1992,1804,1534,1582,1432,1476,3532,2554,1776,1940,2557,2312,2208,2070,669,960,1208,1718,1481,2341,2995,3986,7077,5625,4156,4972,3955,3588,3298,3688,7592,7152,4195,3614,4891,4194,2613,2384,2913,3010,2806,2697,3034,2528,1814,1316,0,114,217,270,444,704,1054,1166,962,998,852,956,743,908,945,1207,2151,2272,2435,2434,2589,2860,3506,3536,1254,2226,2594,2610,2895,3278,4594,4326,502,510,588,478,401,745,856,988,1753,1406,1374,1400,1776,1564,1327,1466,2287,2592,2615,1739,1289,1293,1343,800,411,894,1194,1690,2434,3114,3260,4266,372,620,1195,1224,1730,2521,3231,3880,2326,3290,4488,4085,5227,6030,6398,7754,4756,6365,7248,7210,7564,15862,23973,25307,23159,17669,15273,10115,6410,6096,5297,5156,4043 +260,268,190,174,127,201,215,246,161,128,122,116,118,72,48,22,4,149,329,738,954,1388,1846,1821,2090,2204,1749,1646,1372,936,773,738,5415,5776,5160,4042,2797,2466,2717,2573,1781,1884,1600,2088,2150,1846,1273,914,0,244,495,672,915,1070,889,1205,1470,2578,3436,4205,4411,5973,9081,10774,6859,6360,4905,6255,6104,6430,5552,4638,6307,6047,5011,4927,5678,7986,8698,7228,1148,990,952,957,1060,1093,1048,836,739,568,384,255,168,155,114,50,0,10,15,28,45,44,54,65,17,384,800,914,1244,1764,2237,2394,4023,3697,2709,2634,1815,1506,1580,1526,3371,2560,2655,2524,2624,2810,2171,2190,328,539,894,909,1158,1527,1789,2840,7925,8184,9050,6790,6306,5850,7735,5566,8410,8722,7751,6416,2985,3139,2377,1977,2727,2265,1801,1936,1898,1931,2084,1788,0,90,180,306,394,588,669,857,872,1008,909,986,772,679,830,821,1968,2059,2919,2529,2810,3306,3194,2818,547,937,1775,2330,3228,3306,2735,2631,279,433,454,489,414,405,555,1034,1603,1410,1860,1555,1548,1549,1574,1269,2528,2638,2195,1979,1636,1132,1148,794,505,1057,1277,1708,2473,3357,3216,3626,198,467,654,1029,1334,2448,2952,2904,1414,2220,3876,3930,4598,6139,6500,8761,3403,3898,4452,5189,5570,10044,16185,19920,24950,21127,21348,13906,8331,8732,8943,7224,4934 +264,201,173,146,141,179,158,218,188,112,114,98,118,80,58,30,6,114,306,588,578,1132,1354,1314,1447,1384,1237,1024,1330,846,667,585,3832,4541,3480,2689,2032,1936,1980,1897,1090,1384,1230,1684,1492,1160,1077,714,0,175,393,506,693,698,602,1176,1046,1605,2420,3232,2933,5196,7614,10361,7532,6540,7056,7329,7794,7938,6683,6187,6462,5635,5974,5974,5916,6543,6230,7360,2033,2896,2169,2422,1918,1838,1410,942,502,412,338,174,176,135,111,52,0,10,22,34,49,50,65,62,32,332,542,852,1274,1570,2255,2230,2894,2904,2112,1934,1349,1538,1444,1719,3143,2866,3087,3166,2448,2310,2708,2463,398,699,849,1212,974,1658,1985,3062,7653,8897,8478,7915,5233,5132,5479,5448,8682,7408,5781,4852,2466,2340,2051,1543,2145,1982,1245,1642,1179,1580,1680,1596,0,76,122,194,295,454,488,645,792,718,724,834,1000,1064,978,758,1630,1722,2310,2543,3014,2889,2289,2444,572,1032,1292,1930,2634,2858,2541,2700,246,338,304,334,318,395,385,732,1219,1390,1299,1363,1421,1468,1552,1520,2325,2084,1848,1466,1587,1098,874,569,436,683,745,1206,1501,2201,2251,2888,116,326,538,754,1012,1508,1855,2256,948,1806,3169,3278,4324,5222,6220,9012,4712,6422,10277,11928,8814,12812,20807,31296,25722,28928,18144,18143,12857,11855,13726,12316,12089 +194,129,108,154,161,135,171,220,159,113,99,98,126,110,58,33,6,107,181,279,331,589,718,890,1108,1163,860,797,902,861,565,447,2021,2008,2114,2159,1379,1031,1053,938,816,1059,1066,1218,915,931,758,566,0,101,238,391,293,520,608,754,691,926,1554,2406,1941,4000,6374,8886,5860,6333,6992,7000,8546,10140,9697,5861,4959,6211,6903,7826,6287,5550,5138,5089,3783,3474,4076,3316,2737,2070,2178,1358,284,286,230,163,126,86,74,38,0,10,21,26,48,64,58,61,53,255,394,703,1040,1405,1552,1349,2382,2473,2126,1319,794,1034,1641,1857,2716,2270,2818,2744,2202,1968,2433,2027,648,707,1004,1640,1261,1956,2882,3018,6733,5853,7214,8106,3947,4522,4003,4552,8631,6025,5136,3306,2589,1726,1232,988,1806,1646,1208,1687,969,1456,1555,1254,0,36,84,122,248,374,432,539,452,512,527,547,945,940,1076,720,1867,1707,1446,1712,2289,2356,2394,2294,810,944,1091,1772,2488,2599,2274,2427,144,152,220,229,236,221,276,379,1144,1433,1298,1414,1310,1358,1616,1500,2163,1671,1329,1020,1296,1103,806,414,236,406,450,706,1065,1212,1532,2048,61,198,422,787,636,764,1220,1178,532,1464,1952,2884,3063,5397,6625,10116,5887,11172,18890,18074,12026,18582,30224,40808,36294,26032,18902,17653,19977,15624,14598,17871,16324 +184,126,120,161,193,156,178,181,169,118,121,91,113,83,52,33,6,43,108,145,191,288,360,492,597,526,480,364,437,387,290,232,876,969,1058,1009,726,552,631,504,354,474,582,620,528,526,333,251,0,53,105,186,141,223,305,432,379,571,1072,1555,1420,3426,5525,8938,4423,6876,7086,8149,8951,8958,11993,9060,7849,7558,6750,5642,4462,3961,4579,4967,4628,3956,3948,3828,2860,2530,2024,1206,232,214,171,147,108,91,55,30,0,12,29,36,50,59,63,64,67,272,402,635,980,1535,1844,1899,2524,2091,1794,1134,755,1154,1421,2190,2560,2448,2424,2506,2240,2518,2863,2018,1026,878,1174,1390,1283,2238,3317,3771,5190,5480,7418,5700,5128,5972,5238,4735,7714,6208,4458,3329,1706,1207,970,554,724,920,927,1126,895,1134,1651,1424,0,21,48,64,109,174,201,259,229,352,489,626,974,1016,1355,1234,1669,1421,1444,1562,1774,1606,1244,1641,994,1064,1122,1320,1891,1827,1832,1892,62,102,130,126,119,126,176,236,617,875,796,1210,1393,1378,1475,1692,1713,1418,1466,1168,880,673,549,304,194,223,299,354,457,568,910,967,26,104,213,345,360,444,700,704,237,828,1381,2074,2019,3332,4245,6924,6136,14894,26236,27980,23007,33378,33312,30328,35774,28618,18830,17451,24184,19180,17111,16296,19720 +126,109,112,96,113,127,120,102,61,63,71,64,54,44,23,13,4,6,6,6,4,5,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2535,4902,5449,7849,7269,9893,9724,4772,4716,3925,3182,1591,1305,642,365,0,117,211,387,617,1556,2386,3232,4454,3078,2790,2873,2737,2927,2194,1440,996,592,363,299,146,105,56,34,0,16,34,45,53,79,135,154,190,358,576,718,970,1224,1913,1906,2248,1506,1178,1130,879,1198,1391,1393,1298,1339,1509,1003,944,1056,1573,1451,1158,1716,2686,3005,3821,3944,4383,4356,6436,9074,8901,8959,8948,7981,6839,6395,4808,4001,3645,2611,767,610,530,277,82,140,159,198,175,712,1086,1131,0,20,44,80,93,121,169,154,151,379,537,690,913,957,1235,1302,1482,2010,2052,1761,2190,3252,3931,3638,3635,3321,2907,1814,1250,1418,1353,1444,0,0,0,0,0,0,0,0,0,134,320,529,769,1343,1663,1921,1949,1506,1547,1893,1735,1498,1035,622,0,0,0,0,0,0,0,0,0,1332,2790,3521,5052,5829,8526,8165,10216,10163,8593,7708,5606,6039,4782,5827,8467,9957,10786,9430,9853,15394,15863,21493,21924,18056,15136,16732,25184,22627,23025,17582,18619 +126,114,119,102,93,91,81,84,51,50,66,50,50,42,23,16,6,40,58,90,74,130,217,230,1089,1275,1176,1274,652,1144,1514,1892,410,617,574,638,650,524,339,200,362,506,734,692,724,710,988,870,157,202,187,237,152,112,104,64,8,1961,4109,4150,5852,6768,8151,7902,5598,4866,3593,2570,1284,983,776,470,304,512,693,886,782,1866,2783,2928,5560,3423,2751,3114,2968,2923,2220,1766,793,467,288,232,240,192,116,57,0,17,36,46,63,83,119,136,163,502,780,807,1320,1463,2451,2196,1882,1781,1716,1280,901,1141,1071,1017,1354,1166,1100,944,1072,1372,1366,1504,1003,1400,2500,2768,3756,4590,4516,6254,5999,8376,6044,6074,9270,9007,7930,5760,3640,3434,3490,3353,2204,1739,1420,912,423,450,473,474,476,1286,1642,1740,249,251,340,273,176,181,191,222,204,427,715,744,893,1200,1631,1976,1541,1683,2133,1982,1872,2305,2544,2746,3472,3307,2211,1850,1359,1318,1659,1566,51,71,87,96,122,155,217,216,124,240,309,610,763,1139,1273,1728,1764,1790,1679,1644,1237,1298,1024,777,165,158,177,191,92,96,91,44,90,1292,2312,3256,3650,4872,6232,9203,8698,9713,8430,7670,6242,5276,4877,5091,8891,9306,9501,9528,8710,12082,17202,16902,17260,19840,14977,14050,18965,18548,16558,14314,14214 +149,106,96,131,99,77,68,97,48,45,45,38,32,30,24,19,6,60,117,196,141,274,359,372,2386,2240,2224,1802,1620,3056,3544,4359,845,874,1274,1306,1363,867,608,378,714,1098,1286,1362,1536,1355,1776,2048,353,435,449,430,281,210,179,157,16,1360,2730,3150,4675,6363,8858,7107,4623,4250,3463,2592,1385,1253,902,627,564,772,1096,1792,962,2001,2856,3070,6949,6460,3868,2886,3123,2850,1960,1610,573,356,222,190,254,181,168,91,0,20,36,63,98,107,94,132,132,521,839,1343,1660,2032,2320,2344,1889,2173,1882,1554,1149,1117,980,800,997,816,728,727,972,1440,1544,1240,750,1377,1988,3016,4120,5140,5837,7471,7736,5408,5374,4309,9858,8968,8002,8144,3471,3632,3150,2706,3208,3026,2195,1370,880,789,848,726,622,1702,2228,2510,448,570,551,413,206,266,280,222,293,492,692,835,895,1071,1514,1866,1265,1654,1695,1456,1295,1757,2173,1815,2181,2287,1861,1600,1532,1614,1438,1303,109,134,188,178,241,298,373,363,243,358,447,908,1118,1219,1084,1280,1665,1968,1825,1946,937,1396,1419,918,298,334,338,328,224,206,162,103,199,1185,1969,2614,2547,4949,6640,7356,9900,8280,8690,6545,5800,5210,3470,2774,6764,7078,8842,11095,11822,12885,18176,17712,20951,22455,18202,12137,12574,15892,14380,10430,11241 +137,122,102,118,106,92,66,82,50,55,60,37,32,32,24,18,7,64,117,234,290,386,549,613,4052,3418,3165,2438,2535,3140,3470,5700,1100,1404,2090,1988,1836,1662,926,596,816,1755,2348,2156,2001,3108,3969,3618,626,613,687,592,388,350,302,184,28,1206,2311,3796,4358,5977,9148,8088,4572,4002,2557,2362,1418,1101,1076,738,592,969,1055,1719,1898,2730,2764,3667,7688,4891,4881,2898,2474,2305,2169,1502,430,341,195,190,282,236,192,98,0,28,44,73,131,133,136,157,181,534,858,1460,1868,1866,2533,2614,1576,1930,1677,1374,1075,1044,1199,1196,898,825,869,854,1081,1295,1483,1466,618,1215,2110,2545,3451,4632,4738,6583,5623,5966,6132,5126,8770,6953,6426,6054,2252,2910,4502,3726,5030,3563,2626,2375,1322,1052,1146,1194,1130,2103,2105,3255,865,912,677,588,355,352,386,324,398,613,707,843,1016,1224,1471,2137,806,944,1252,978,1129,1243,1311,1240,1865,1325,1245,1122,1162,1114,1218,1090,140,277,253,253,339,458,488,672,302,354,461,776,1045,1017,1059,1066,2471,1776,1704,1537,1196,1453,1308,1140,568,524,404,326,297,263,282,158,300,965,1505,2090,2880,3868,4595,7361,9202,9294,7355,6620,5037,4436,2582,2603,4365,5109,5487,8296,11162,13536,12892,15124,15304,13139,12276,11746,8754,11565,11142,11852,11322 +89,63,64,93,105,115,126,97,72,69,56,40,34,34,22,15,5,115,188,265,394,472,547,716,4579,5183,5332,4450,3872,4584,6147,7278,1736,1893,1955,2612,2462,2001,2065,1201,1166,2290,2754,2699,3333,3158,3666,3498,1004,1044,775,589,658,483,454,310,49,906,1557,3134,5046,5618,5955,6864,4232,3213,3481,3241,1972,1933,1476,1222,851,1336,1988,1856,2502,3159,3190,3693,6836,6688,5780,4191,2598,2712,2242,1547,387,446,468,361,380,320,240,126,0,34,55,96,135,176,169,170,177,677,1196,1288,1623,2057,2459,1922,1727,1834,1817,1478,1078,932,1026,1392,927,1194,1253,1054,1190,1451,1488,1240,431,1444,2053,2588,3052,3540,4663,5972,5857,7456,7198,7528,5723,5150,5267,7336,1935,3103,3457,3828,5427,4620,2514,2628,1324,1402,1691,1811,1858,2139,2473,2305,1041,845,757,561,576,552,348,353,371,498,789,1009,1184,1271,1269,1706,434,346,412,610,647,704,807,804,970,945,858,938,942,716,655,737,235,279,434,389,397,405,515,838,503,638,567,785,1040,1178,1165,894,3066,2135,1882,1884,1342,908,863,1040,881,776,415,499,474,408,276,154,356,616,1010,1716,2330,4297,5397,7539,10415,7304,5739,4500,3122,2055,1986,1599,3387,5248,6168,7271,7519,5825,7003,8371,10092,8474,5224,6792,7262,9136,10153,9311,12996 +120,108,102,128,100,114,101,116,63,62,63,44,43,28,22,16,6,358,706,910,784,1327,1748,2201,6661,6400,7620,4800,4529,5704,6588,9919,4180,3632,2999,2766,3068,2034,2080,1674,1312,2140,2280,4447,4479,4336,5032,7739,3229,2168,1675,1858,1610,1379,1210,702,80,636,1134,2090,3440,4009,3394,3935,3594,2824,3330,2698,2043,2164,1764,1680,1348,2068,1952,1914,3175,3453,3136,4475,6976,5820,5466,3096,2182,1862,1642,1326,624,669,643,370,550,462,294,124,0,42,88,140,170,210,214,266,259,763,1176,1360,1242,1599,2232,1856,957,1288,1093,1212,723,766,896,1101,757,1092,1003,912,999,1042,1217,986,754,1612,1640,2518,3894,4688,5274,7768,6126,6792,6769,6626,6548,5660,4780,8511,4069,4786,3172,4812,8077,8002,5240,3514,1647,2046,1787,1746,1596,2175,2125,1940,1027,832,937,728,484,440,474,382,470,670,917,1086,1388,1304,1459,2074,430,339,474,556,539,504,632,542,738,672,904,758,1133,990,561,766,222,266,440,428,420,462,633,778,630,757,843,1104,766,1007,1031,891,2834,2498,1654,1411,1468,1170,968,1182,1134,1006,682,620,606,552,411,212,543,784,972,1522,2008,4031,4405,6476,8992,7051,5327,3737,2803,1996,1616,1284,2280,3718,4880,5331,6189,5136,5063,7646,6936,5129,5296,5188,5772,5845,7690,6890,9891 +151,140,150,153,92,103,106,118,59,55,53,38,38,28,22,13,5,507,1128,1302,1542,1911,2916,3356,8389,7295,8304,4645,4797,5848,7377,10382,5665,4901,3717,3313,2923,1906,1696,1769,1218,1640,2405,4241,5434,5506,7460,9686,5343,3404,3057,3298,3332,2420,2265,1064,125,511,1046,1937,1815,1934,1922,1654,1925,2183,2602,1996,1597,1800,2660,2832,2483,2133,2715,2532,3680,3732,3546,3982,6790,5715,3939,2302,2202,2080,1352,1288,917,656,664,515,821,516,324,160,0,58,121,160,185,256,314,433,314,585,1134,1125,876,1331,1356,1248,644,702,736,830,640,578,530,803,844,900,1020,988,1022,1098,814,784,1230,1573,1832,2605,3574,4728,4556,9495,7466,7864,7831,6942,6798,5559,4969,7074,6507,5073,3862,5883,9942,7943,6890,4882,2187,2376,2018,1934,1738,1659,1520,1678,890,926,970,939,398,392,562,416,472,840,962,1163,1395,1391,1503,1966,286,392,388,386,271,302,290,252,331,449,727,726,1145,854,738,797,211,258,392,363,487,648,633,832,671,863,880,1217,843,621,664,463,2291,1842,1832,1801,1573,1777,1520,1048,1256,1007,942,659,943,798,412,195,737,843,1074,1442,2104,3193,3694,5376,8740,6910,3990,2344,1900,1248,764,795,2188,3606,4142,4471,4130,4614,4009,5240,3612,3973,3620,4933,2713,3594,3888,3306,3951 +155,146,155,146,83,88,101,104,78,72,54,36,41,27,20,14,6,598,1552,2654,3290,5094,5386,5354,8020,7366,9991,5714,4165,6857,8475,11971,5886,5682,5841,4076,3217,2486,1653,1698,2116,2740,2608,5224,6725,9528,10284,17216,5626,5647,4692,5113,4032,3354,2874,1432,189,428,621,946,768,1065,802,765,1220,1681,2024,1532,1466,2187,2696,2881,3498,3014,3291,2702,3878,3852,3903,4943,5932,4253,3435,2135,1912,1840,1476,1134,761,710,800,692,904,522,299,126,0,70,165,186,265,330,347,445,364,556,870,961,1024,1328,1159,1358,270,385,392,414,394,412,382,538,825,858,888,780,790,754,431,395,2012,1765,2003,2752,3512,4502,5196,9982,6928,6354,6284,6142,6924,5336,6147,7897,6714,7315,5590,7224,10742,8506,6187,3968,2494,2200,1826,1940,1469,1382,1403,1813,1234,1024,778,632,437,558,700,614,595,759,896,904,1254,1138,1284,1704,404,413,444,352,182,184,185,150,195,400,500,702,973,694,832,975,266,286,443,420,467,601,986,1094,1098,976,612,868,969,622,482,376,1982,1829,2288,2006,2029,2372,2350,1704,1684,1528,1426,1202,1126,774,568,336,898,1037,1253,1290,1532,2450,2172,3356,5129,3956,3140,1782,1101,776,514,398,975,1462,1791,1972,1890,2302,1891,2168,1951,2264,1954,1848,1621,1845,1953,1434,1593 +187,233,241,204,163,151,128,115,104,85,38,28,17,16,13,11,5,1747,3828,5816,7349,6215,5829,6994,8706,9705,8641,12651,18377,13699,10491,14075,7659,7202,5680,3655,2168,1711,1865,2157,2822,6478,9255,13613,14013,12303,15536,21901,6938,5926,3328,2682,2396,2086,1485,955,206,202,238,182,147,126,70,30,272,819,1506,1968,2828,2725,2414,2376,3492,3721,3899,4049,5470,4748,6396,7026,3964,4179,4307,4284,3059,1844,1386,1120,950,765,608,357,119,95,54,24,0,41,78,102,166,168,214,306,523,657,824,870,906,950,793,913,0,49,92,152,207,294,336,598,814,729,544,482,297,260,137,62,2289,2953,4119,3624,3696,4464,5090,7204,8375,6355,6383,5238,6442,8455,10960,8285,8823,9426,7720,6740,4950,3154,2527,3122,2954,2501,1838,1749,1874,2292,2431,2494,1310,1823,1741,1510,1325,1324,1181,846,820,850,674,969,1234,1136,960,1110,393,384,317,186,83,67,59,34,0,208,441,570,722,698,983,900,390,591,812,841,990,1073,1319,1283,1194,1177,894,551,399,273,234,104,1532,1521,1221,891,650,993,1052,1413,1790,1446,1467,1023,560,412,344,161,859,1072,1506,1740,1888,1828,1916,1796,2118,1698,2007,2136,1818,1202,783,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,148,194,214,138,140,130,139,126,100,51,46,26,20,19,12,5,1600,2865,4802,4835,4811,6572,5852,6016,7476,8462,11404,16429,14294,10761,13772,11965,9464,7356,5464,4612,4179,4632,2964,2828,6233,9136,11312,18148,23407,21589,34114,6571,8413,8046,8654,7403,6911,5887,4208,1068,1208,1152,1490,1657,1292,1318,731,235,1020,1399,1938,2564,2210,2138,2788,2905,2824,3316,3642,4419,4483,5324,5459,3154,3952,3125,2838,3580,2316,1346,1208,944,686,446,302,153,131,73,46,0,49,120,136,225,262,314,411,438,708,838,868,1011,1071,966,984,406,398,470,572,614,926,1631,1530,1656,1516,1195,960,747,658,434,433,3166,2893,3805,3494,3718,4260,5444,5690,5201,6188,6252,5451,5509,7529,9120,8767,9529,9092,6607,5382,5168,3858,1964,2686,1888,2429,2075,1768,2273,2698,2966,2994,1708,1430,1792,1857,1583,1403,1316,909,1144,1017,874,1044,1342,1162,1036,1206,310,327,341,209,106,92,92,61,51,224,421,454,678,732,773,750,353,694,901,1100,1080,1358,1314,1554,2001,1724,1428,970,878,582,534,304,1496,1740,1471,996,654,768,1202,1363,1697,1424,1442,1110,836,602,501,288,906,1147,1297,1350,1574,1636,1304,1918,1737,1652,2042,1729,1920,1293,494,279,0,199,456,592,640,568,650,570,440,542,662,795,1044,1228,1465,1630,2132 +93,125,119,119,162,130,122,145,122,82,75,54,27,24,18,11,4,1294,2460,3240,4542,4036,5297,5814,5524,6591,8724,11260,13614,16581,16058,15398,16723,13605,8055,6831,5967,5496,6076,5522,3183,7219,11650,14267,17651,22535,37376,42319,9190,11653,15017,13220,9956,11527,9562,7807,1713,1791,2199,2488,3484,3569,2545,1769,266,771,1081,1601,1751,1930,1492,1978,2240,2505,2038,2908,2652,2726,3527,3476,2462,3264,3224,3003,3017,1834,1500,902,1075,756,486,313,210,182,124,72,0,59,132,164,272,317,370,488,360,540,960,1198,1122,1304,1204,1234,690,809,842,1348,1072,1720,2592,3213,3242,3201,2129,2099,1192,1108,888,624,4074,3893,2468,2384,2708,3777,4180,5121,3373,4915,5198,4360,4391,6450,8804,10035,9226,6084,5118,4091,5073,3557,2298,2092,1576,2168,2060,2711,3048,2805,2764,2859,1685,1718,1476,1559,1566,1522,1100,1076,1346,1413,1092,1460,1211,1322,994,1334,266,271,296,264,101,122,105,74,93,210,392,350,443,375,424,444,243,556,1136,1269,1124,1735,1865,1749,2854,2570,2050,1379,1276,848,800,659,1747,1560,1367,1034,689,718,971,1078,2368,1662,1427,1152,930,917,728,377,1120,1247,1102,838,1362,1063,1160,1484,1793,1415,1429,1238,1483,1028,422,195,0,392,814,1104,1095,1408,1350,1279,736,1046,1124,1454,1945,2297,2628,2973,4699 +66,92,113,121,145,126,104,115,137,85,60,53,36,34,23,16,5,1008,2229,2758,3870,4050,3444,3853,3162,4904,6195,10134,14001,12607,17643,18002,14670,13584,8418,9736,9374,8488,6386,6676,5620,8963,14896,16184,19614,22642,32066,45810,13388,15773,16982,19110,17600,18557,17131,11179,2502,2746,3766,4455,6499,5845,4689,3635,255,648,929,1170,1386,1719,1291,1664,2001,1810,1513,2029,2083,2746,3761,3352,2447,2586,2513,1978,2232,1608,1662,1067,766,664,467,382,287,194,177,72,0,86,152,207,315,364,381,454,490,652,842,1006,1308,1199,1398,1525,1161,964,1000,1284,1381,2360,2439,3808,3200,3244,2472,2442,1418,1306,1331,1050,4030,3366,2414,2501,2741,3117,3202,4928,2492,3988,5254,4836,3859,6357,7198,10121,7708,8545,7373,6508,5982,4326,2383,2217,1870,2685,2515,3416,3439,2594,2260,2794,2264,1771,1491,1700,2011,1662,1304,1088,1636,1634,1209,1546,1380,1490,1464,1412,147,150,254,196,148,148,190,157,124,250,311,354,477,418,389,424,161,535,1060,1632,1468,1738,1766,1831,3569,3528,3185,2504,1576,1298,898,656,1229,1356,1326,1101,970,863,828,948,2233,1729,1249,1290,1662,1188,833,480,1072,985,967,694,940,800,628,724,1964,1984,1470,1316,894,658,270,158,0,552,1439,1581,2201,1944,2049,1458,986,1704,2261,2216,2684,3062,3142,4673,6439 +43,51,66,85,96,124,129,104,107,100,87,72,48,43,34,21,4,852,1457,2807,3412,2573,2501,2634,1721,6425,10047,13223,13784,13056,11617,21239,17471,19445,20871,14004,12494,9003,6284,6024,7234,11109,12474,16058,21432,30849,32756,48554,15649,17964,25386,28671,29025,26906,19939,12385,3212,3371,4296,5304,7834,7306,7025,6033,167,256,447,703,855,731,938,1360,1189,1896,2317,2631,2296,4078,4610,4260,1730,2054,2625,2873,2206,1958,1690,1444,665,464,370,409,321,294,184,86,0,49,118,203,320,279,369,505,470,748,955,1220,1195,1608,1679,1734,1312,1859,2260,2562,2161,2708,3903,4388,4377,3966,4100,3479,1922,1743,1727,1349,3572,2875,2677,2154,2084,3690,4213,6060,2822,2429,2851,4781,5160,5284,7499,9323,9208,6230,5317,5520,5327,4047,3424,2572,2254,3164,3336,3278,2940,2537,2258,2661,2500,2656,2945,2298,2356,1935,1855,1650,1434,1226,1249,1728,1748,1642,1511,1240,41,72,94,161,179,193,172,176,142,236,275,360,488,369,243,263,88,401,641,1355,1670,1646,2186,2186,3698,3143,4084,3713,2294,2474,1850,1116,1086,1257,1472,1087,1175,1063,732,647,1923,1977,1635,1625,1927,1516,1173,616,1050,1062,985,862,492,431,280,342,2344,2035,1687,1129,600,335,222,123,0,808,2005,1963,2863,2972,2641,2609,1407,1806,1973,2567,3336,4214,4764,6388,8390 +60,66,61,90,76,102,112,100,85,84,58,56,47,38,33,18,5,580,1193,1961,2424,2205,1624,1953,1268,5366,6268,8476,13278,13395,13806,22746,16453,17798,15995,13481,14240,11354,10460,8778,12771,13382,17470,18092,27214,27132,26790,35166,21758,21050,25070,32839,37866,33838,30032,21968,6362,6562,7514,8012,8264,10642,10158,6525,119,244,343,506,745,698,901,1440,817,1134,1744,1726,2019,2607,3582,2798,1164,1595,1570,1652,1594,1358,1258,853,393,297,341,284,213,198,104,62,0,71,121,226,291,338,425,457,527,674,930,977,1074,1223,1295,1392,1774,1913,2726,2644,3088,3314,4536,4396,4490,4297,4472,3476,2716,2425,1419,1512,3432,2325,2721,2154,1669,2808,3910,5296,4351,3190,3226,3597,4756,5980,5607,7736,8534,6765,4927,5228,5136,4596,4300,3326,2364,2892,2731,3066,2489,2134,2193,2244,1760,2228,2054,2108,2340,2319,1636,1852,1302,1166,1243,1500,1577,1252,1012,939,36,62,82,137,142,172,194,156,208,243,202,340,339,252,235,216,170,434,781,1245,2187,2341,2345,2092,3694,3935,4167,3182,2302,1814,1573,1384,1455,1679,1394,1408,1487,1192,1557,1346,2938,2488,2726,2528,2820,1986,1724,936,780,862,832,699,549,496,435,398,2293,1721,1339,884,433,356,175,115,0,950,2161,2486,3086,3294,2937,3236,3330,4378,5202,5984,7027,5439,5556,6581,8354 +72,75,66,79,70,72,90,84,45,44,52,54,40,38,24,15,3,325,795,1139,1848,1922,1549,1845,742,3092,4412,5715,10920,12887,15582,18943,10738,11819,14460,15045,13960,15275,13042,15439,14439,14000,20501,26242,25698,27998,33648,33805,36034,35617,23894,39879,54431,38474,35865,19332,7642,8546,10044,8174,11705,12590,10300,9556,62,175,326,438,513,654,664,928,604,871,904,889,1157,1920,2324,2361,767,864,1076,1377,1148,1040,686,532,223,240,222,194,108,77,70,38,0,86,144,272,189,309,379,316,541,715,808,1222,785,884,1314,1398,1928,2163,2344,2312,3303,4012,4252,4469,6089,5749,3724,3016,2938,1742,1381,1544,2443,1881,1930,1876,2024,3087,3884,5558,4765,4763,3684,3848,3421,5501,6028,7260,5993,5199,4456,4960,3612,4381,3817,3797,3625,3645,3446,2983,1673,1932,1650,1971,1326,1568,1835,2471,2294,1875,2204,1591,1472,1440,1262,1324,1343,1149,759,783,22,40,72,154,142,152,154,173,237,242,204,326,254,224,250,226,306,461,741,1190,2317,2517,2005,1880,4396,3870,3034,2461,2382,1832,2042,1823,1732,1428,1762,2068,1914,1896,2150,2617,3177,2607,2950,3341,3194,2932,2290,1680,840,888,740,715,499,540,518,382,1798,1869,1320,833,368,231,170,88,0,1200,2146,3197,3058,3292,4406,4552,6579,8243,7632,8868,11471,7807,6016,7640,7385 +82,68,60,72,56,62,72,64,38,46,44,41,36,26,20,12,2,192,400,578,861,926,645,856,357,2026,3638,5497,7006,8018,14228,19450,11287,14782,16138,15640,13577,13504,12964,14385,17274,20602,23814,27126,20476,29628,37949,41728,35020,32875,32029,40682,61726,46436,41962,26824,14561,11890,8380,11862,11868,11331,8044,6861,27,88,180,236,289,290,306,396,320,332,386,412,502,866,1150,1152,461,474,618,684,615,446,280,262,98,128,119,96,57,46,38,23,0,82,166,213,215,280,296,336,498,632,711,974,864,892,1199,1275,1728,2430,2773,2718,3282,3252,3931,4214,4197,4579,4307,3170,2680,1710,1633,1652,2486,2152,1634,2126,2682,3099,3171,4387,4788,4430,4078,3434,2223,3020,3751,4998,5284,4654,5660,5486,3527,3438,4122,3832,3802,3963,3901,2547,1597,1552,1419,1676,1726,1500,1341,1803,2000,2282,2284,1940,1630,1518,1592,1086,978,828,510,462,11,41,96,142,198,191,191,204,189,189,242,230,216,218,261,216,337,508,806,1170,2151,2107,2697,2502,3834,3146,2805,2482,2250,1804,2249,1558,1514,2081,2454,2198,2172,1888,1858,2333,2948,3320,3412,3197,3577,2718,1887,1638,863,758,616,698,565,662,616,446,1178,1203,723,487,356,263,178,84,0,1347,2859,4158,4975,5664,4760,6654,7957,9852,9294,9638,15084,12824,8001,8792,8468 +64,2122,4177,5746,6026,6539,9546,10042,8374,11374,15283,14883,18564,15097,17178,18928,15405,12864,14754,12678,8076,5086,3263,1726,0,2545,5672,9741,11801,15814,17196,19674,15750,11460,5709,4930,2767,2118,1318,739,0,3455,8092,10282,15128,15677,15704,30115,36363,40917,33575,21326,15700,14476,8500,4772,0,574,1343,2504,3022,2804,3933,5977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,137,148,204,239,304,410,522,535,450,415,439,381,368,392,487,450,288,173,85,69,57,24,0,417,802,936,1199,1046,1046,1299,2692,2444,2053,1474,1132,1347,1599,1699,1990,1774,1973,1438,1427,1192,658,379,0,118,280,371,452,516,458,475,540,688,677,583,715,829,923,1241,1629,1159,1060,943,792,845,717,566,326,403,647,774,917,983,1305,1400,1125,1140,1159,1004,811,790,645,433,406,338,171,163,151,169,200,217,406,577,612,464,502,508,459,404,275,293,273,258,181,348,442,618,799,1120,1101,1153,1411,1276,1252,1204,868,1100,1106,1088,1439,1719,1474,1316,822,1330,1913,3203,4694,3560,3180,3872,5517,5380,5022,8037,10889,17820,18835,17311,17114,16494,11589,13362,12851,11574,14544,12831,9098,10344,8921,7380,4179,6946,10286,12024,12155 +64,1810,3392,4875,5031,5951,7883,8948,8529,12400,15981,12696,12954,11986,16481,12903,14035,12805,11621,8706,5318,4770,3577,1976,235,2242,6157,7142,10551,12606,15695,14321,17470,12638,5142,4940,2746,2631,2678,2737,1959,5862,10708,13844,18966,20629,25139,28784,44892,34770,23458,18882,14269,11911,7703,3888,412,1070,1828,2243,3484,3212,3963,4891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,199,323,377,472,711,870,600,638,692,650,440,612,504,604,460,462,455,352,209,261,354,279,346,1135,1929,1972,2086,2252,2198,3040,3186,2752,2491,2112,1687,1688,2042,1931,1700,2232,1626,1909,1308,1008,529,324,0,98,230,277,372,458,489,478,469,528,514,568,852,910,882,980,1404,1110,1002,813,615,742,596,462,294,512,700,941,921,1137,1194,1228,1084,1192,1121,906,643,512,456,406,509,406,254,232,157,150,172,170,327,668,687,748,1054,1484,1667,2380,2686,1792,1184,1079,1094,988,870,1188,2338,3250,3802,5681,6868,7087,5912,6746,4492,5099,3865,4418,4680,4594,4002,3294,1102,1718,2553,4394,4565,4040,3721,4343,4565,4497,4682,7884,10848,14768,12706,15922,23733,19858,19355,13278,10920,11054,8655,9633,8850,9620,9237,9058,5925,10266,12020,11440,11766 +56,800,1864,2582,4223,3982,5176,5060,6654,10766,11606,11158,12811,12120,11794,14475,13148,9842,10708,7970,5104,4404,3090,1803,452,2903,4695,5242,7608,9486,10846,11209,14729,9024,6094,5852,3269,3801,4642,5266,3418,8196,12938,19001,18356,21720,29334,40980,38520,25448,24490,18993,19502,16168,9558,4933,970,1238,1791,3220,2884,3029,4114,6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,271,507,469,709,1023,1367,677,919,916,1050,646,701,816,1040,654,559,524,575,368,592,648,530,677,1925,2930,2696,3116,3006,3128,4003,3327,2792,3094,2278,1990,2120,2496,2262,1971,1838,2008,1700,1514,1048,611,357,0,64,120,205,318,391,430,418,373,372,528,804,719,1027,994,948,1727,1203,1024,1143,686,581,483,446,170,480,647,759,1112,1183,1001,980,1005,812,929,736,600,418,380,355,472,449,366,335,197,160,124,108,407,764,876,1066,1741,2757,2890,3309,4429,3451,2204,2187,1799,1507,1434,2027,3626,5140,7519,10159,12513,13065,12598,13002,8456,8588,7421,7847,6384,8010,7161,5654,1295,2339,2754,3927,4395,4556,3842,4777,3734,3998,4122,6132,10536,11200,11985,14089,28398,26046,21118,14310,13419,8410,6984,5086,9465,10736,9790,7702,8792,9272,13754,11366,11305 +39,570,1298,1606,3298,2990,2554,3020,6821,8020,7818,9562,10534,9834,7522,9947,14030,11128,11103,9144,6296,6675,5470,2872,584,2540,4047,6114,5990,7692,7625,7535,9152,6553,4119,5376,4628,7266,9283,12134,5639,12829,15246,24704,24541,25153,30253,40327,43382,40833,30003,21678,16554,14686,7338,3806,1315,1316,1666,2510,3274,3608,4016,7682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,273,583,504,1009,1294,1584,480,696,779,1076,1260,1114,1308,1765,907,724,768,748,672,750,820,842,797,1914,2930,3194,3956,3647,3262,4934,4160,3905,3835,2965,2342,3146,3330,2985,1258,1502,2127,1978,1681,1176,684,384,0,55,78,124,218,304,367,340,403,529,714,822,762,914,812,1030,1770,1514,1350,1122,780,624,498,404,131,337,522,708,831,810,700,866,946,875,826,538,416,424,413,260,451,408,326,246,202,146,147,112,291,807,1046,1649,1818,3288,3731,4710,5767,4133,3658,2878,2180,2164,2455,3602,5999,7269,8816,12374,15680,17380,19617,18526,18002,13128,12205,10190,10366,11988,12038,9407,1035,2256,2746,4340,5202,5324,6262,5820,2853,3702,4783,5751,7104,8743,8544,11996,28947,28290,20009,16376,12215,8628,6251,5067,6547,7374,8761,7276,9165,15010,15250,18838,20150 +36,317,736,874,1398,1793,1794,1278,7597,5332,5206,7421,8712,8451,6700,6606,21187,17039,13466,11055,8532,6642,5468,3618,651,2253,4217,5336,5506,5219,3567,3126,6972,6260,8074,7437,5288,8178,9269,10994,9254,20566,25252,27424,35173,53516,57308,57967,57543,44551,41989,29646,14874,13005,7239,3708,1468,1751,1984,2586,3072,4011,6130,10286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,244,608,786,1431,1667,1707,500,761,798,1032,1488,1682,1529,2146,1104,1454,1350,1389,1088,946,1132,942,1030,2551,3748,3835,4530,4523,5282,5970,4710,3386,2909,2623,2880,3088,2446,2136,1153,1260,1124,1027,1394,977,864,388,0,22,45,82,96,99,136,281,456,581,655,793,707,1000,994,1176,2516,2361,2113,1475,1020,904,546,356,123,246,432,593,690,486,415,400,810,786,670,451,403,402,353,272,400,343,247,243,184,146,112,125,191,807,1162,1587,2456,3058,4128,7288,6120,5471,3973,3391,2736,4836,6150,5241,10262,9266,12004,16483,18367,19797,17951,19353,21921,23364,23178,19523,11770,12054,13096,12759,1174,1918,3381,5414,5882,6226,6843,7508,1737,3222,3953,3951,4538,5719,8580,11456,37820,38257,31328,18337,10954,11412,8583,5815,4784,5136,4791,5993,8940,12999,18832,19322,22809 +26,402,896,1312,1067,1352,1532,1522,4803,4680,3399,5278,8318,7058,5539,5990,19118,18138,17502,12224,12320,7336,5054,3530,1432,2876,4429,4554,4340,4787,3809,4973,5967,6196,6491,8364,10149,10546,10877,16180,9228,14246,18254,26426,37077,44815,38335,41908,51628,42332,36629,25024,14230,12108,10126,5404,1560,1562,1526,2218,2667,4660,5851,11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,355,828,974,1340,1908,1890,753,1172,1277,1499,1356,1886,1785,2803,948,1342,1648,1528,998,1078,1510,1399,1395,3118,3854,3956,5331,5126,5304,5652,4567,3170,2413,2893,2436,2458,2581,1759,966,1144,1154,1260,1410,954,787,510,0,20,32,72,78,96,119,185,351,438,478,592,536,504,751,711,1710,1698,1920,1494,969,648,397,238,122,223,352,440,728,945,775,822,514,517,477,401,340,355,232,169,390,272,254,223,160,148,105,112,178,626,851,1426,2447,4092,4778,8362,8534,9474,8416,6496,7355,9672,9067,11152,10949,13652,13020,17194,26033,24068,22706,20386,21659,24021,25803,17271,10455,10774,12688,11328,2137,3235,3348,4865,4078,4532,6295,5286,1734,2753,3627,3464,4261,5173,7966,9124,55060,43104,33557,32636,19850,20523,15472,11424,7608,7466,10484,10620,11336,14827,15538,17403,19377 +23,486,980,1665,1094,1060,1506,1861,4256,3406,3267,3267,6334,6570,5847,5571,22172,18111,16530,15771,13868,11396,6996,4182,2803,4081,4145,4001,5324,5886,5686,7479,4375,6304,6324,8078,11803,13737,15884,18276,13616,16980,19064,27970,32145,31680,28794,31236,56852,37762,32238,20303,17016,16695,11055,6092,1282,1520,1452,2759,2899,6353,8352,10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,488,734,1210,1395,1752,2068,991,1542,1954,1576,1373,1832,2482,3213,1256,1319,1426,1452,856,1153,1472,1527,1361,3434,4678,5056,5902,6260,5482,6122,4642,3552,2602,2524,3085,2148,1932,1810,1144,1446,1436,1204,1012,1082,834,668,0,16,30,46,49,66,76,122,152,258,291,260,218,313,324,445,1658,1686,1548,1135,831,675,296,165,87,206,318,501,744,946,1193,1209,373,380,452,391,227,187,162,140,316,312,223,141,113,124,130,143,124,508,880,1093,2637,5054,6782,6577,8275,10036,12422,9994,10593,11959,13898,18370,12756,14961,16416,18145,35884,30315,24888,19172,27372,23362,22329,19256,13599,15195,13139,12855,3797,4032,3798,4915,4122,3852,3668,4484,1226,1512,2360,3252,4351,4755,6976,8237,55950,54194,43920,44106,34660,25213,19467,17953,13140,11592,13304,10246,18846,18801,15092,12743,13920 +12,461,1049,1636,1552,1449,1468,1647,3427,2828,2180,2356,3273,3827,3956,4838,26952,25816,25586,21216,14278,11702,9629,5511,2695,2998,3651,3391,3261,4198,4624,6176,3121,5490,6760,9798,10438,14736,18776,20006,15762,17574,19457,24026,45345,37302,25546,36322,54154,36607,23605,23263,15271,13544,9571,6265,1736,1521,1717,2696,2808,5845,7410,10753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,469,758,1138,1763,2275,1963,1353,1840,2307,1726,2143,2418,2977,3500,1426,1530,1458,1389,1288,1568,1896,2232,2112,3738,5137,5851,7947,7440,5591,6124,3166,2570,1978,2195,2022,1901,1747,1420,908,1016,1318,1194,900,1066,676,636,0,9,17,22,29,34,36,54,94,116,144,150,125,152,135,198,1826,1494,1162,1165,863,640,353,195,51,191,247,347,511,793,1111,1622,255,232,242,217,202,176,123,118,196,203,182,141,135,128,104,112,177,594,964,1546,2234,3668,4997,7720,11562,13416,12304,14278,13164,18544,19204,19319,16747,23735,24505,27624,31879,33743,32852,24237,24362,19192,18613,16184,13749,10588,11322,11435,4876,4589,3049,3316,3021,2980,3064,2962,1526,1710,2473,2689,3874,3988,3824,4351,40714,59503,64262,57186,41356,38374,30441,21167,15883,15314,16130,15258,18065,18754,22562,18780,17009 +0,61,149,217,323,847,1519,1651,2152,3187,4715,6017,5432,5664,6529,6119,28265,25154,31076,24890,17569,16738,12501,8883,3866,4114,4620,4527,3048,4350,6273,6260,2652,4703,6006,9528,12794,16956,16796,20480,25025,35652,47832,49170,51062,49419,48260,45092,44163,45256,49298,48770,39238,24573,12631,8681,1838,2086,2752,4428,5433,6154,5073,6977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,407,622,996,1485,2036,2166,1938,3592,4085,5131,5186,6098,5893,4247,2170,1373,1128,927,843,896,1367,2413,3160,3748,4876,4713,5966,7959,7532,6971,2944,3491,3408,2572,2396,1585,1171,847,520,576,530,488,493,598,547,568,0,2,3,5,4,5,4,5,4,6,6,6,4,5,3,2,1576,1400,1138,1276,1136,898,709,375,0,135,328,632,792,1237,1586,1632,75,100,165,167,188,159,141,148,169,158,101,93,121,113,150,110,183,1080,2056,3393,6331,7706,9113,12819,12705,15149,12684,15109,14628,14974,20148,17477,20786,15352,10929,9051,9144,16105,18829,17325,23898,29645,38444,33172,31470,24776,23064,17760,7082,9344,8678,7986,5725,4054,2941,2665,2191,2044,1668,1565,1690,1194,1247,1294,42891,40277,52577,42393,48325,37762,33690,21181,15662,14220,17488,16676,14286,21018,21533,16581,16998 +0,202,378,531,534,1129,1417,2010,3028,3882,4318,5720,5615,5920,5278,5373,31591,23290,29055,22547,16219,15696,9492,8176,2958,3086,4146,3226,2575,4003,5292,6191,2086,3612,4489,8360,11128,11330,11749,15599,18905,28156,30678,38304,40543,38414,41471,35369,43382,45582,47578,44864,28833,19985,13072,8269,2434,3039,3618,5496,5995,5798,5544,9270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,464,752,715,1323,1996,1670,2526,3449,4154,5010,4966,5521,4818,4188,2818,2757,2637,1704,1929,1954,2126,2902,2966,4000,6030,6644,7744,9396,8967,7074,2000,2670,2494,2024,1664,1794,1004,1035,391,504,622,516,656,556,453,504,144,149,148,139,161,104,50,40,8,44,61,85,110,144,279,296,975,852,768,871,758,630,453,280,0,154,263,550,628,1072,1132,1244,244,232,232,243,218,196,183,188,162,142,111,108,119,130,142,120,182,1684,3809,6123,7621,8286,9709,15062,11398,13413,13903,18466,19384,23536,23198,21412,19896,16650,9457,10290,7976,13550,18937,20601,37866,33836,36651,29346,41094,34996,27645,19066,7729,8630,8359,6776,6177,5270,3208,2952,1700,1916,2254,2594,4006,2997,2917,4402,56444,49884,45324,40874,43050,34959,32966,20486,11248,12927,16958,14206,14238,15069,15699,14485,15149 +0,342,590,915,873,1083,1814,2478,2965,4477,4528,6074,5050,6332,5794,5880,25983,21790,20532,14492,12989,12275,10120,7681,1960,1994,2816,2558,3241,4006,3473,4358,1662,3272,4072,5074,6042,7466,9992,10670,13593,19614,24048,33180,26556,28196,22838,21502,42756,45127,35826,23577,20804,17415,10949,6795,2278,3396,4372,7902,8639,8124,8002,8520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,436,635,751,932,1430,1258,2416,3134,4830,4581,6073,5924,4442,3281,4575,4440,4244,2654,3286,3841,3123,3718,3290,4046,6785,5359,11395,9268,8100,6089,1326,2008,2051,1662,1745,1301,1153,930,307,582,770,806,990,681,501,380,243,240,334,279,308,170,96,46,11,73,136,172,261,376,475,609,702,696,592,692,669,555,362,211,0,108,214,563,743,1004,954,1225,346,247,245,266,272,271,181,198,105,120,101,121,77,125,136,119,220,2419,4802,6277,8060,9181,14109,17060,6540,11964,15604,16119,22462,23910,23382,19742,17288,13014,11438,11311,9381,9674,12773,16959,45008,40926,34047,38300,47846,35556,23064,16570,8040,8088,5960,4464,8662,7516,4335,2509,1425,1700,2376,3562,5810,4344,4484,6859,56168,60824,55168,51818,45538,29594,27386,24867,8892,12118,14878,13386,9875,10709,12278,15355,14589 +0,367,708,1240,1309,1566,2583,2996,4725,5490,4597,6426,6532,7318,6710,6829,15638,15868,14983,14903,13160,11689,9103,7916,1184,1686,2129,2396,2476,3255,3388,3758,1238,2148,2722,3729,3475,5680,6407,6132,11063,15465,14912,20586,21084,21380,20159,25248,38798,32167,26895,19976,20620,15654,8512,6158,1839,3258,3536,5988,9742,8732,6224,8785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,266,428,484,751,897,1072,2505,3188,4897,4782,5819,5553,4111,4242,4500,4470,6027,4422,3816,4475,4293,5190,4204,6384,6979,6554,10067,9607,9884,8286,1113,1317,1556,1196,1147,916,837,903,352,592,925,942,1277,789,547,466,466,548,569,453,402,272,139,72,12,106,214,308,334,538,674,974,714,565,599,564,478,490,381,182,0,111,206,507,500,570,640,1004,451,381,260,322,272,233,158,169,89,106,92,105,67,96,123,114,382,2964,5030,7746,9942,10471,11670,13415,5390,10520,14721,17054,22725,21138,22460,22112,13322,10860,9044,8875,7183,12584,13659,16196,47806,52578,39739,38540,39581,34374,22720,14492,7485,7460,7405,6324,6571,6500,5022,2728,1071,1992,2532,5224,8208,8750,8008,10676,57376,54661,40837,40405,36386,29150,23577,19384,5912,9458,9261,10254,8718,8370,7748,10582,11776 +0,516,986,1828,2394,2186,2566,3577,5586,7429,7365,7186,7556,8607,8875,9046,9780,9356,8899,9058,8956,10363,9316,8601,866,1361,1526,1886,2214,2476,2163,2547,519,758,1031,1102,1386,1690,1830,1945,8780,9000,13119,11592,11984,18374,23395,29335,31998,22589,22844,22942,15916,9482,6964,5009,2270,4204,5294,6051,7777,8291,6041,8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,180,203,268,397,685,778,2651,3349,4142,5137,4776,3985,3397,3114,4368,4100,2851,4076,4408,3710,4476,5727,4567,4576,4630,8449,10312,11427,11276,8242,1416,939,631,531,387,620,928,1081,398,537,680,1217,1368,941,970,736,782,748,721,646,435,321,318,201,14,102,226,456,559,809,1073,1028,644,668,613,486,406,314,130,70,0,54,121,210,383,520,571,553,545,411,284,255,303,234,157,124,113,87,58,50,56,83,122,108,544,3732,5736,7716,9010,10172,9540,12669,2816,4837,8282,14851,20865,15684,17416,22241,6647,8874,9379,7618,7831,11013,13380,17439,50075,53587,41138,40512,40436,34412,30384,15510,10178,9807,6450,7708,6956,5712,3378,2002,1173,3161,4385,8287,10204,8990,8715,11139,43315,49084,40099,36606,23762,27700,23997,15307,3358,5955,6750,6854,9050,7245,6263,4994,6207 +0,844,1917,2714,3397,4901,3915,4664,6727,8664,8684,9489,9326,7966,9090,8376,8663,9472,11106,9912,8815,7569,7308,6402,1095,1470,1442,1745,1634,1920,2436,2560,491,690,950,1064,1367,1393,1592,1974,6157,6330,11878,11784,10831,16199,13890,20755,17902,20996,21490,16742,11918,7351,5674,4004,2312,2694,3429,5046,8647,7722,5668,7054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,332,414,476,596,921,994,2257,3036,2970,3967,3757,3754,2840,3087,3064,3170,3455,3378,4821,5264,4437,5894,3612,4736,5732,7964,10182,10497,10778,7232,1216,911,671,464,574,660,778,871,336,628,737,1240,1285,1098,972,822,1169,796,934,673,666,422,316,235,34,168,310,426,722,966,978,1190,498,492,452,390,231,180,94,58,0,62,110,240,327,453,521,715,756,622,434,374,371,286,150,106,109,73,54,45,44,69,86,90,542,2839,4848,7796,8905,13224,11247,14502,6294,7211,7609,11340,22600,25248,16334,19678,7728,9662,11357,9788,9795,14639,13932,21360,56636,48900,42656,37004,36711,32229,29082,15488,12766,10371,5154,6729,7841,5054,3334,1998,1055,2930,4213,5894,8817,10200,11587,16728,42656,37926,32311,28581,18378,20814,17478,12766,2310,5122,6854,7998,13375,10014,12038,8979,8037 +0,1240,2456,3583,5179,5087,6452,8648,8341,10525,10371,9180,8619,9539,10650,7958,8672,10376,10798,9348,5795,5275,5198,4252,1662,1936,1668,1684,1323,1498,1943,2040,590,673,728,758,927,1122,1214,1477,4438,6741,7360,8235,8923,10187,10785,13644,11628,10984,13732,11206,7509,6097,4062,2748,1690,2082,3234,4948,6925,5985,5504,4555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,550,639,591,861,1057,1337,1598,2463,3264,3671,4477,4102,3166,2768,3077,3774,3258,3183,4690,5985,5962,7048,4112,6391,6566,7839,10228,10433,8034,5928,829,770,487,588,649,630,655,774,386,734,1031,1818,1499,1571,1194,1059,1287,1134,933,620,681,603,406,205,50,194,315,410,831,1195,1337,1310,239,267,290,249,142,116,73,39,0,80,140,276,255,485,616,730,979,610,542,476,365,339,202,122,74,58,56,38,27,42,72,71,455,2639,5734,7574,9901,10248,15402,13314,9841,10345,8787,9938,30115,28426,21360,15450,9096,10504,15728,13077,16127,15092,17696,36387,45295,39101,45058,48145,25631,28305,24640,20552,11663,7427,6270,6376,7991,4642,3112,1723,798,3012,5126,7434,11465,14548,13058,15459,29901,29619,29030,22886,17024,11926,12482,7412,1099,3680,6631,10634,15148,15071,13943,14818,11231 +0,1538,2914,4981,6126,5855,5507,6242,10327,9622,10420,9227,11530,9356,10076,9336,8834,10431,10429,8786,5086,4836,5497,4564,2246,2091,1616,1332,1135,1198,1210,1395,545,526,512,566,572,602,799,702,2185,3537,3628,4259,6262,6534,5526,7088,7410,6582,8277,7522,4000,3704,2102,1578,1449,1747,1999,3106,3783,3935,3877,3682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,654,938,1012,1228,1635,1566,1889,2392,3318,3616,4646,3636,3442,2547,3331,3694,4513,4210,5071,5572,4248,5508,4000,6040,7500,7360,9751,8172,7315,4967,463,447,371,499,687,781,885,734,623,1034,1214,1636,2015,1742,1242,1348,1537,1162,978,770,579,556,481,252,97,313,438,600,1062,1338,1706,1524,132,150,136,127,69,50,43,21,0,84,154,272,279,460,585,908,939,792,594,454,398,318,240,133,34,40,42,30,23,37,51,56,486,2980,7315,9201,8589,11728,14182,14859,14062,13501,16973,16138,22532,24738,17976,15341,13945,14532,20550,18697,20622,21954,27641,35965,44310,38424,33619,35872,27620,23826,16722,17278,15176,10106,9466,6930,6904,5036,3892,2247,341,3048,4892,8814,13590,11874,11650,15774,29386,21262,15599,14008,10628,7426,8236,4285,620,3236,5764,11044,12740,13232,12854,16296,14335 +0,468,999,1868,2578,2143,2293,2915,4660,7928,8741,11344,13663,15867,12806,10018,10531,10892,8566,10096,9769,8116,10470,9173,10777,11720,8806,8543,5996,4591,3452,2034,501,475,588,439,360,324,210,88,0,288,716,801,1106,997,956,1613,1822,1166,1034,966,906,860,598,279,0,226,461,650,842,1780,2673,3695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,48,58,89,148,235,304,366,384,338,384,526,1369,1976,2646,3314,2734,2040,1655,872,631,341,296,204,732,1080,2192,2895,2842,3666,3823,0,140,257,374,483,758,892,1088,969,1637,2122,2213,2331,2234,2052,1762,1642,1562,1503,942,596,520,619,612,520,914,1675,1735,2003,1770,1540,1943,0,25,48,74,129,127,182,279,330,260,305,398,400,516,476,609,912,878,723,601,364,308,360,367,388,406,331,288,334,278,131,88,439,1546,2604,3490,5250,9808,12174,11716,12576,16431,16593,19541,19474,19368,26251,24939,18542,19063,20530,20572,25825,15898,13754,15384,16089,14221,19004,27148,27550,24308,21249,20266,15418,15511,15760,11520,8116,6113,5273,3200,2146,3227,4292,5335,8135,8328,10245,16597,22922,21114,19434,19244,15365,22723,22793,24134,27271,28242,27864,27153,32829,36453,33839,22524,17356 +0,433,970,1652,1833,2580,3002,4720,3598,5248,5997,11928,10118,12168,8002,7777,9475,8346,10792,10632,13154,11502,10463,11089,9728,9912,7773,7313,4900,3776,3695,2260,506,441,496,403,285,293,256,154,90,314,826,838,990,852,1180,1511,1669,1447,1111,894,716,728,520,206,0,220,372,586,809,1612,2320,2834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,58,77,67,142,251,323,311,387,511,500,764,1480,1783,3002,4557,3604,2700,2133,1324,796,380,278,168,720,1272,2274,2732,2380,2813,3841,0,108,225,266,468,674,630,804,723,1234,2038,1713,2150,1904,1569,1721,1698,1392,1411,970,687,498,511,616,433,806,1334,1652,1618,1530,1524,1793,0,26,52,84,144,114,163,230,264,239,295,448,595,667,694,686,676,742,646,555,322,350,334,358,215,276,268,276,270,212,135,85,433,1654,2368,4219,6954,11344,10137,12030,8984,13254,17558,17396,15242,13368,17463,18894,15471,20308,25646,26528,20004,18282,12790,14377,14093,15202,20722,25202,25276,20802,20762,17444,20034,16822,16212,12150,9911,8750,6295,4188,3436,4270,5344,6212,7590,6480,8469,14208,29642,27650,23834,17631,12190,19384,24826,23089,25321,24898,28094,27378,38760,37080,29903,22636,12704 +0,568,1001,1413,1711,3132,4352,5830,1960,3431,4352,8545,11532,9431,7015,6064,6511,7732,10294,10283,12337,11727,10012,7743,11867,10904,8412,5786,3649,3386,2855,2308,558,436,386,496,282,247,230,185,210,518,740,703,708,700,1018,1200,1880,1930,1544,1238,728,582,446,186,0,202,436,645,789,1558,1868,1773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,53,70,62,186,334,428,352,446,544,534,1110,1808,2053,2505,5013,3896,3324,2599,1404,1111,483,251,150,990,1564,1778,2704,2380,2162,3300,0,87,172,171,393,400,528,556,593,786,1282,1416,1709,2044,1756,1396,1283,1079,945,718,552,474,433,370,258,609,1060,1391,1518,1353,1604,1221,0,31,51,77,117,138,149,235,144,251,324,499,592,529,700,981,743,640,622,477,397,373,396,425,145,187,188,273,303,208,118,85,343,1660,2980,4667,7610,11473,12378,12862,6807,10853,13162,16921,8972,11539,10836,9082,19849,24763,24160,29262,22140,16333,15822,10940,9379,14896,15966,14746,21454,17444,13612,12982,23958,22148,19886,14204,13326,10668,5654,3942,4129,4631,4664,5990,4884,5570,5997,9271,28234,29004,26480,20418,13854,18790,18622,21774,17361,19609,22650,21281,36112,24935,23430,15590,11565 +0,510,1003,1763,2306,2882,3125,4571,1493,3066,3848,6589,7820,6027,6248,5644,5764,10094,12376,12327,11335,11658,9527,8916,13059,9338,5929,4592,3731,3723,3822,2410,562,580,387,478,362,359,298,216,292,402,594,551,491,690,1139,1566,2291,1760,1566,1160,994,760,654,342,0,183,376,634,789,1357,2029,1848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,41,72,97,205,346,390,414,736,873,902,1331,1684,1889,2469,4838,4404,2875,2480,1891,1120,575,331,92,691,950,1220,1979,1625,1810,2374,0,45,118,142,257,282,374,397,621,748,1156,1215,1524,1555,1254,1164,744,710,555,604,388,474,474,431,230,696,1012,1346,1582,1465,2093,1676,0,26,39,55,86,117,98,154,96,222,375,554,561,657,532,809,547,446,376,456,469,440,391,422,85,130,137,178,178,142,114,89,360,2098,3069,5042,6178,9097,8669,12328,5408,6990,9287,13165,7349,8948,12165,11082,22268,21604,21607,19338,23742,17318,14342,10623,7750,10898,10062,12464,13711,13529,10934,10880,22496,19413,17667,16354,14394,10608,7952,6562,3708,4959,4039,5082,4485,4750,5902,9714,25425,24948,29040,19638,15390,21012,24188,27792,24876,25853,23847,20606,30045,23342,17343,14118,11098 +0,629,1069,2097,2824,3352,2793,3276,1288,2298,3186,4642,5184,6172,5953,4766,6914,10073,9879,12500,11716,9155,10996,10937,12561,11412,9020,7836,4500,3717,2407,2367,759,757,848,702,533,563,476,350,307,265,282,273,320,506,884,1403,2558,2510,1766,1846,1408,1032,916,458,0,165,358,463,580,1064,1241,1694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,63,79,105,128,191,295,493,488,677,884,1163,1207,1768,2296,4944,3798,4020,2343,1829,1503,963,555,64,332,592,1362,1724,2168,2575,2810,0,31,62,90,139,163,139,180,735,710,642,1029,1366,973,823,709,242,283,316,346,344,367,468,342,267,658,907,1328,1318,1251,1735,1631,0,12,24,39,68,66,87,128,62,388,604,820,806,963,1106,1053,205,232,354,510,501,455,331,401,62,101,111,111,136,123,115,77,358,1970,3836,5700,6289,8441,10182,13222,5154,6904,8870,8465,8319,7988,8082,7087,23974,23058,25931,21483,21876,20221,11946,10383,7716,10094,10541,10580,8619,9082,9740,8882,21042,14876,15972,17930,16311,10877,7862,5374,4591,3286,3483,3375,4785,6056,6011,5345,34439,27062,18287,21673,21686,22417,18901,22676,24174,25020,21696,18346,19180,21196,16716,12782,10861 +0,464,905,1564,2272,2689,2697,3926,1658,2202,3306,4496,3234,4520,5806,4276,6570,7058,8967,9078,9042,7783,8748,8869,7604,8246,6872,5806,5484,4228,2326,1910,592,849,687,544,405,472,449,449,458,399,467,476,719,1074,1429,1827,2244,1870,1445,1566,1314,909,759,331,0,138,302,348,653,1033,1124,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,109,182,271,286,234,320,480,476,575,899,837,1207,1647,2412,4678,3888,3177,2384,1862,1378,1008,612,106,371,672,1102,1186,1667,1844,1902,0,20,55,70,92,126,131,116,478,651,636,966,857,714,610,542,140,214,283,328,283,390,364,350,356,566,887,913,998,1126,1282,1464,0,12,28,45,50,54,94,106,56,343,622,620,584,782,976,1088,317,384,509,506,577,571,440,446,63,92,130,96,150,101,88,60,261,2244,3194,5125,7440,9392,10129,14052,6444,6474,8603,7580,6477,6860,8174,6365,30194,26770,26920,23322,24071,17172,14671,8957,5792,8060,9054,8508,7522,6512,6876,6494,21108,18668,19605,14510,14455,9810,10836,7926,3890,4043,4994,4589,3558,4096,4216,4538,28112,24593,15704,19732,16355,17497,20506,17386,19790,17522,14646,12986,17186,14689,12731,13874,14965 +0,445,793,1302,2216,2926,3480,4414,2158,3259,3570,5513,2590,3675,5512,5922,5985,5716,6229,5615,5629,6165,7660,8734,6409,5811,5380,4794,4894,3896,3110,2081,698,561,640,733,405,394,452,479,710,562,666,598,1058,1535,1809,1836,2156,2267,1632,1230,838,554,462,237,0,101,227,363,638,922,956,805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,168,302,357,353,372,390,691,579,436,654,889,1325,1360,1815,2902,2798,2948,2166,1461,1008,1018,730,152,354,547,837,1141,933,1048,1118,0,14,30,49,78,71,89,118,439,516,542,688,446,406,238,242,97,127,196,176,348,266,256,277,336,516,584,736,778,981,1220,1410,0,13,22,46,42,66,77,94,63,238,442,774,491,746,788,778,408,432,517,485,531,520,515,430,80,114,110,96,114,77,64,50,129,1731,3064,4172,6990,7376,10166,11774,7120,7408,5577,5102,4908,5880,5968,5490,28245,20158,19735,23470,18732,13102,12762,8160,3579,4888,5944,5286,4677,4238,5060,7036,14208,17773,17120,14078,14827,14629,11382,7729,4428,4524,4851,4650,3425,3699,4446,2854,27995,20479,15863,14468,13025,12427,17262,11978,9836,8524,11080,12691,13775,16713,14976,12332,15547 +0,396,551,1130,1663,2328,2566,2998,2805,3397,3569,4551,2630,4292,7512,6530,5857,4334,5376,4046,5686,6260,6471,6186,5690,4046,4882,5040,4856,4172,2448,1878,571,606,497,533,483,484,480,448,860,760,842,832,1068,1870,1681,2300,2257,1644,1464,1163,472,361,342,174,0,115,216,400,583,748,744,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,175,260,433,365,419,368,602,489,297,462,444,768,732,1362,3160,3027,2267,1871,1508,1140,1071,652,305,397,416,455,630,602,600,716,0,9,14,28,47,40,51,60,256,273,255,370,246,201,141,140,50,104,186,178,292,262,226,279,388,460,483,491,637,993,1301,1300,0,12,25,45,53,51,58,68,57,238,480,535,705,790,812,904,727,582,495,530,487,552,544,327,103,135,114,78,71,54,42,28,63,2025,3797,4922,5642,8519,8066,8325,6270,6692,7116,4944,4119,4764,5089,2971,26799,21259,18255,18378,14725,10292,9285,6168,2748,4138,3435,3254,3916,4792,5067,7420,18962,18239,17302,14381,11485,10478,8415,6370,6498,5287,4057,4538,3412,3615,4163,2534,21350,20477,19273,17451,12088,13076,13348,9112,4990,5472,8703,11166,12341,13248,15648,11656,14703 +0,636,1259,1520,1876,1973,1702,2238,2764,3493,4505,8195,11193,11824,12921,11096,3888,3609,4074,6792,8366,10020,9214,7505,5755,5154,5124,4362,2279,1549,1192,929,470,371,281,291,246,310,320,613,747,1049,1022,865,1066,1027,1101,1649,1693,1243,714,480,261,233,166,88,0,89,153,251,416,593,586,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,106,143,192,249,357,386,524,476,279,244,138,179,244,406,3284,2313,1994,1511,788,578,611,557,356,355,371,316,268,230,188,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,75,114,115,211,333,402,467,535,664,835,1214,1106,1086,1084,0,13,22,31,49,70,77,66,68,224,428,533,720,787,847,808,1034,974,911,957,782,606,518,349,171,176,126,146,137,127,85,38,0,485,1013,1271,1836,2962,4165,6042,7320,7504,6554,6910,6080,5551,3608,1815,23803,19518,8817,6899,5561,4111,4110,2560,1546,2206,2810,3607,3802,5350,7401,8062,21926,20820,18684,21177,20883,16951,17795,10994,7402,8811,7307,5200,5296,3255,2653,1495,18091,18581,14842,11388,11862,9756,9893,6819,2374,1824,1766,2388,2395,4370,6771,10596,12435 +0,538,1129,1260,1150,1444,1462,1836,3317,3828,3254,5583,10011,9536,10218,8609,2836,3392,4500,5938,7245,7365,6182,5968,4101,4279,3811,3194,2092,1446,935,904,566,322,285,277,246,291,349,482,548,742,838,832,772,1106,1145,1804,1140,981,627,434,405,304,158,84,0,96,139,296,396,566,432,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,89,214,202,342,429,488,402,454,289,238,144,224,277,340,2932,2430,1848,1416,804,589,671,428,288,280,308,281,268,196,176,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,115,125,186,334,435,419,437,626,777,1314,1230,1155,1178,0,13,24,30,52,68,84,68,64,238,316,442,729,822,768,542,693,746,765,739,568,542,519,286,151,176,165,144,145,102,78,40,0,475,904,1337,2280,3058,3943,5674,6451,6170,6463,6621,6470,5115,2740,1674,17609,11560,9240,7142,4464,4090,3519,2790,2141,2948,2882,3837,4817,5743,9289,7124,18953,21226,18078,19633,23584,21412,16290,12268,7828,8489,6654,5041,4280,2907,2516,1199,12171,15148,10360,9477,7216,6562,7837,5462,2305,2394,1976,2766,3388,4594,6563,7776,9843 +0,332,623,793,948,1224,1412,1394,2867,3841,3535,5210,7656,6114,6179,5596,2556,2515,3542,4481,4016,4984,5450,5302,3856,4104,3138,2176,1542,1433,1050,638,530,321,261,259,259,376,498,606,568,446,528,581,538,910,1346,1906,1143,878,777,488,431,265,220,116,0,80,156,199,303,300,414,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,92,159,274,404,441,420,433,412,343,223,116,220,288,375,3393,2762,1870,1374,697,500,538,322,340,306,314,228,248,226,128,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,55,117,152,209,297,401,246,451,516,562,1100,1197,1222,1650,0,11,22,23,45,67,67,76,38,144,272,392,552,694,667,483,613,717,620,598,555,496,429,264,111,147,156,160,110,80,65,30,0,542,1066,1528,2174,2217,3288,4216,6202,6296,5488,4606,6206,4583,2662,1555,9725,8325,6708,6151,4593,4425,3538,3218,2905,3800,3920,4737,4945,6235,8906,7775,17346,16636,18393,16088,19340,16970,15765,9605,7337,5829,6550,5312,2947,2106,1772,1029,8982,8644,10318,7994,4661,5902,5454,4307,1954,2235,2993,3251,4585,4601,4302,6126,7177 +0,228,447,598,937,1024,967,1204,2398,2982,2166,3279,5023,4520,5548,3914,3062,3076,2302,3266,3571,3995,4757,3864,3030,3444,2941,1888,1396,1132,838,682,423,349,265,316,245,406,602,640,318,338,392,548,604,857,1201,1632,1077,1048,786,537,374,286,177,118,0,52,93,148,158,210,276,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,76,164,206,364,390,420,238,254,221,180,137,267,269,362,2628,2332,1464,1213,575,468,373,270,226,202,246,204,160,160,90,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,42,94,140,161,238,314,177,368,447,487,844,1010,911,1070,0,11,22,27,33,50,45,60,43,158,277,348,542,552,543,378,650,622,671,534,537,362,394,186,98,102,113,123,90,70,48,28,0,540,1119,1437,2304,2176,3057,4325,5352,5940,5915,4573,4204,3128,2551,1268,4928,4700,3847,4024,4681,3545,2864,2853,3360,3784,5753,6447,5530,7273,7744,8146,17985,12780,18198,16624,20399,21166,17222,11293,7085,5534,4918,4772,3758,2684,2294,1152,8214,7266,6625,4923,2810,3464,3587,4260,1333,2542,3983,4078,5697,4508,3725,4507,5828 +0,140,241,396,684,882,879,818,1534,2344,3106,3473,3206,3011,2445,2392,3385,4300,4398,3000,2942,2971,2069,1254,2614,2214,2347,1797,1142,787,765,463,359,365,474,446,350,327,368,409,93,157,295,441,563,1091,1545,1344,1489,1415,1063,646,414,339,244,126,0,22,40,60,80,103,122,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,135,184,222,327,325,346,152,154,192,140,122,216,315,337,1806,1167,785,686,470,505,388,215,196,224,178,134,98,63,51,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,76,85,113,142,173,199,87,163,226,487,646,619,603,881,0,9,18,26,26,27,26,32,33,112,242,294,354,377,424,363,681,632,473,508,383,278,162,128,119,96,67,68,76,45,31,15,0,654,1220,1437,2052,2518,3614,4088,4392,3648,2804,2378,2960,2004,1254,616,2552,2410,3424,3873,3354,4050,4026,3691,3478,6579,8144,8566,8736,8236,8124,5686,12782,10981,11530,12017,16478,12127,11670,11934,4901,3931,3686,3831,4287,3821,2604,1406,5857,5808,4624,3334,2262,2782,4439,4246,1095,2156,2521,3294,5563,5422,3877,3334,3200 +0,108,222,329,544,648,565,646,1190,1832,2875,2918,2539,1903,1625,1741,2986,2710,2772,2330,2892,2236,1775,1175,2043,1756,1398,1351,1010,716,518,314,308,288,372,346,218,256,302,359,78,157,194,338,506,724,1286,1176,1070,818,882,523,252,234,141,86,0,17,33,48,66,86,94,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,114,121,156,228,266,270,120,126,150,122,97,172,245,272,1474,1063,640,544,276,327,296,186,131,130,111,99,69,58,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,51,64,74,88,152,196,71,128,199,338,416,520,608,692,0,8,14,17,24,26,18,24,20,116,220,244,270,281,263,228,594,496,491,400,340,240,116,93,66,60,53,50,53,38,27,16,0,432,931,1178,1311,1982,2487,2476,3746,3409,1896,2094,2588,1644,1104,535,1924,2112,2295,2758,3774,3569,3425,3724,4473,7152,7848,8712,7358,7478,7551,8857,17492,11912,11215,10656,15579,11788,10414,10918,4591,3918,2909,3526,3739,3516,2531,1242,4090,4316,4732,3170,2244,2670,3363,5073,1619,2324,3054,3844,4088,4598,3620,3335,3528 +0,90,176,289,433,478,410,419,1010,1116,1736,1890,1512,1284,1047,1054,1695,1917,1952,1948,2037,1296,1184,898,1528,1398,1092,903,599,396,265,182,216,217,266,213,145,184,172,271,62,103,165,216,383,596,774,870,516,516,427,351,152,144,104,54,0,17,28,36,40,60,84,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,64,66,99,121,139,172,52,58,78,78,85,142,152,163,954,812,532,325,173,198,171,121,77,70,80,75,51,44,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,31,38,46,65,92,156,62,88,122,169,310,386,447,500,0,5,8,13,18,15,14,15,12,64,124,102,122,126,174,128,402,449,356,353,237,140,88,53,42,51,46,45,37,23,16,8,0,253,592,785,780,1155,1258,1659,2348,2336,1731,1115,1524,1444,912,475,1152,1236,1844,2060,3006,4153,4301,4398,6075,8112,7862,7258,6638,10056,10488,14310,16717,13677,11012,10266,9504,6852,7050,6867,3106,3635,3046,3185,4840,2968,1624,824,1767,2821,3762,3640,1797,2989,3772,5131,2517,2430,3364,4290,3940,4321,4029,3998,3074 +0,49,82,134,199,192,234,198,554,694,868,1040,761,631,431,526,990,879,925,856,1178,802,622,482,715,590,495,356,338,196,158,110,100,130,134,89,62,89,85,137,37,52,80,92,202,250,338,360,282,272,233,152,75,72,46,25,0,10,17,24,22,34,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,32,40,50,58,82,94,29,34,43,41,44,67,63,86,528,370,233,160,79,82,75,60,38,42,34,36,31,24,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,17,22,20,36,45,75,33,46,73,106,152,213,269,246,0,2,5,7,9,9,8,8,7,32,58,52,51,65,98,70,207,230,192,177,134,82,39,27,25,26,22,24,22,14,10,6,0,158,307,393,406,522,685,741,1369,1270,973,664,670,656,503,214,527,1090,1458,2140,2895,3156,3676,4390,5091,8069,8445,9248,7133,11283,15212,14274,14141,14907,15626,11694,11627,9784,9414,7021,3412,3434,2777,3741,3771,2528,1424,794,887,1768,2622,3170,2694,2759,2591,4089,4280,3842,3552,5382,6024,5639,4924,4029,2976 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,887,959,1484,1793,2298,2767,3564,2519,2494,2163,2408,3020,3528,4996,5352,6086,5768,6962,9577,8466,11249,10943,8698,7479,6391,7664,7684,5233,4808,5000,4962,5204,4299,3885,2488,2221,2641,4078,4676,4643,4412,4280,4958,4206,3281,3081,4086 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10883,11507,11764,8240,4892,4517,4528,2788,7762,7454,4224,2926,1968,1327,1104,592,0,12,26,42,66,67,85,123,110,118,112,90,77,58,30,15,374,518,786,928,1106,957,880,550,2396,1816,1282,1081,854,544,312,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,1042,696,674,227,220,130,69,0,0,0,0,0,0,0,0,98,186,205,256,370,518,464,708,1822,1606,1427,1654,834,714,329,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,797,1046,1479,1872,1769,2842,3142,2158,1854,2353,2388,2690,3103,4474,5675,5514,5408,8855,9370,10592,11037,10686,9167,7022,5568,4879,5630,4358,3443,4508,4570,4858,3781,3182,2964,2636,2437,3718,5426,3997,4053,3986,5160,4918,3540,4346,5944 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24308,23593,19744,17760,10836,9321,8486,6812,18816,16600,9474,7156,3343,2536,2183,1146,0,26,56,83,114,140,172,288,214,216,243,177,138,99,54,30,796,886,1341,1883,2284,1835,1914,1163,5935,4219,2596,2350,1937,1469,614,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2448,1863,1670,1299,548,446,246,130,0,0,0,0,0,0,0,0,217,312,458,476,705,750,1134,1367,3299,2654,3222,3450,1800,1227,809,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,620,964,1074,1489,1653,1724,3426,2491,1852,2004,1775,2176,2890,2998,6916,8260,7028,10590,11118,11905,13840,10491,10354,6906,6792,5807,4691,3522,3224,3738,4361,3010,2933,2244,2969,3172,3211,3660,4860,4030,4096,3201,4003,5186,5416,6808,6009 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33179,32663,34328,24516,15480,16438,16656,8963,22938,18754,9813,7906,5228,4194,3035,1678,0,36,75,145,164,239,309,366,456,362,330,314,254,190,112,49,1446,1741,1504,2072,2350,2650,2671,1993,8746,6945,4452,3424,2382,1490,1056,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3210,2752,2286,1543,749,536,389,188,0,0,0,0,0,0,0,0,371,476,654,811,1018,1472,1679,2377,7520,6020,5264,4587,2840,2286,1874,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,507,687,650,1034,1492,1649,2877,2054,1332,1560,1614,2062,2631,2876,8248,9616,8946,10850,12815,13160,16131,14576,13556,9081,5194,5258,3321,3552,3774,4184,3608,2468,1908,2212,2114,2522,2424,2836,4475,4404,3626,3138,3908,5030,5471,5872,5860 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43440,32260,36696,34782,27094,17045,14774,10410,28388,21379,24061,15460,8642,6301,5587,2935,0,56,120,219,272,372,369,406,687,800,670,539,332,276,198,95,2141,2546,2154,3086,3386,3406,2773,2320,9670,7862,5374,3794,2942,2722,2035,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3707,3225,2464,2018,960,666,406,244,0,0,0,0,0,0,0,0,476,616,1048,1088,1155,1722,3004,3816,10322,10772,7853,7385,5200,4484,2335,1474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,217,404,523,669,924,1607,2345,1751,1408,1180,1402,1250,1378,2038,8100,6965,7167,9041,11524,13442,13672,17160,14181,14662,10938,8281,3420,3079,2032,2458,2595,2478,2241,2027,1770,2058,2524,2264,5172,3780,3991,4270,4172,3612,4634,4561,5837 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52558,54068,53587,53064,39568,29778,28248,21702,30294,29097,28000,17120,10290,7108,4514,1946,0,60,110,206,345,408,556,566,708,707,675,490,404,295,250,117,2246,2234,2981,4147,3976,4380,3336,4059,11394,10042,6104,5232,3326,3136,2029,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4343,4302,3634,2514,928,892,567,252,0,0,0,0,0,0,0,0,899,1814,3367,3899,4462,4390,6612,6710,11719,10504,7195,7206,4297,3708,2194,1924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,340,446,746,839,1326,1442,3072,2522,1362,1591,1585,1658,1429,1519,7088,7653,9990,11854,10742,14014,14740,17997,12725,12595,7909,6002,3785,2732,2324,1946,3431,3162,3008,2901,1656,3045,3682,3994,8488,6826,5599,4196,4814,5743,6318,7840,10467 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65417,70158,68066,54485,41042,46242,38942,28511,40295,36898,23640,19122,9074,6467,4199,1750,0,64,126,189,506,539,572,583,597,612,459,410,424,320,276,120,1955,2430,3408,4511,3578,3852,4662,5503,14336,12349,7146,6302,3694,2900,1623,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5221,4941,4272,2659,1281,997,592,333,0,0,0,0,0,0,0,0,1112,2594,5114,5540,7030,8485,8042,7316,10485,7510,8180,5762,4613,4122,2962,2658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,433,624,747,1025,1626,1952,2950,2521,1912,1544,1600,1434,1284,1402,8206,9316,11339,15271,12441,13560,15574,15792,11481,7148,6104,4345,3558,3113,2054,1976,4383,4069,3599,3398,2271,4496,5773,7882,10458,8090,6198,5842,5223,5306,7536,9675,13071 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52776,62464,62093,51128,47335,42998,35440,35263,31332,33790,21941,18662,9413,6810,4712,2350,0,70,171,248,460,487,473,701,881,864,620,518,406,354,321,156,2127,2662,3722,4732,5544,5398,6298,7702,13695,11666,5581,5758,3690,2254,1275,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8866,8155,6842,3742,1550,1267,637,355,0,0,0,0,0,0,0,0,1485,3924,7062,7024,6867,9496,12818,13406,11246,7727,6761,6366,4511,3643,3063,2504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,393,716,712,1128,2104,2116,2924,1806,1315,1764,1586,1182,1055,834,12732,11186,11724,13642,13265,12760,13690,12417,9532,7712,6900,4526,3266,3184,1996,1308,5215,4572,3468,4118,2707,5448,5932,9386,9962,8370,9980,6704,6761,6085,7539,10160,11807 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55104,62194,62170,56876,57627,53254,54708,42310,33042,26160,19813,19188,23602,16558,15579,7696,0,132,319,690,897,698,826,814,1150,1051,1021,792,505,384,309,181,2394,4308,5231,5889,5801,9233,12531,10497,12316,8797,8386,7535,6052,4116,2082,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12949,9174,9137,9474,9033,6506,3622,1955,0,0,0,0,0,0,0,0,1377,4428,6678,11591,13754,11224,8760,9632,14160,13635,13862,11870,12693,7632,5046,4074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,432,950,1172,1477,1775,1644,1984,1797,1704,1590,1510,1023,823,396,15913,16620,13971,12664,14243,14243,11624,11152,11516,10151,8136,8502,6278,5069,2591,1441,5928,8434,10976,12544,11458,10375,11373,12898,10187,9531,9065,8568,9869,8548,8070,10326,13040 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84297,75106,60232,50648,63758,66673,43638,43766,24794,22163,16592,18869,19171,18328,13519,7032,0,172,381,788,1057,774,762,1166,1187,1258,1051,949,996,728,752,765,11225,12098,11849,13866,15608,18375,17538,13734,11568,11242,7900,7469,5512,4139,2265,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15628,13337,10326,12240,9719,6199,3215,1843,0,282,548,962,1274,1102,1153,1514,6032,8521,12891,14124,19200,13027,12456,13315,27530,24024,20340,20731,19446,11640,6522,4406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,483,868,1042,1312,1181,1316,2258,1838,1389,1239,1631,1309,1006,688,14092,17245,17836,17820,11626,15179,12711,12955,11472,9733,8407,6620,5074,3654,3104,1560,4379,5346,7883,8266,10962,10851,9157,12040,10462,8446,9232,8287,11182,10318,7924,9588,9605 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99824,72706,53926,40920,64430,62159,44572,30462,17578,17908,18032,15004,21150,15660,12010,5758,0,192,463,744,1321,978,920,1200,1672,1583,1306,1238,1496,1257,1306,1036,17853,16568,20987,20572,24340,19452,19705,16161,16368,15227,11300,7722,5485,4144,3480,1754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15366,13896,14388,12888,8235,5382,4209,2201,0,454,919,1741,2761,2394,1982,2620,10833,14619,19660,19133,22066,17229,12565,17964,32985,34709,28468,28147,21530,17960,10800,5366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,440,789,1134,904,867,1221,2170,1942,1204,1027,1621,1220,1338,1059,14667,15442,18212,18002,12498,15091,15864,15146,11090,10190,8271,4706,6001,5135,3308,1958,4214,5472,5472,6211,10067,10678,8319,13682,11847,9132,8592,6232,13291,12075,11220,10031,10531 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93825,84452,73387,64769,65203,58114,32628,29480,12168,14638,15353,14758,14728,10600,8393,4391,0,364,700,1040,1651,1211,946,1300,2109,1584,1243,1314,1436,1806,1659,1477,27457,23200,21563,27932,34003,29224,21205,18373,17966,16776,14910,9630,6385,4376,4001,1757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19207,17132,22062,16082,12706,7261,4782,2007,0,896,2123,2363,4322,3888,3364,4966,15526,17490,27287,25500,25262,23889,22056,21404,38481,43428,33453,34034,30632,21471,14080,7862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,343,585,880,1058,972,1548,2163,2138,1235,1118,1491,1270,1361,1343,13941,13786,18995,18784,17868,16771,17680,17114,9040,8810,7755,4596,4650,3234,2110,1370,5362,4699,4706,4908,8543,10826,11626,13778,12033,12138,9509,9707,14068,11452,13185,12288,13520 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128109,122646,92774,73669,76259,66737,57629,33382,11586,12157,11605,7926,6650,5846,4153,1743,0,294,666,1272,1508,1407,1319,1347,1979,2100,1877,1866,1743,2048,2282,2310,31209,40809,48904,49447,40698,27190,16407,10419,17311,11916,12109,11085,8813,6907,4160,2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22083,25658,22092,16804,14245,9686,9509,4179,0,1300,2401,3654,5335,5963,4894,6883,21828,31524,32669,31202,33114,36920,32006,22033,49803,52616,49447,46529,34200,29431,18291,10918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,297,414,662,982,1395,1192,2328,2550,2029,1354,1167,1322,1212,1326,15584,14480,15360,13617,17408,22464,23215,17439,5324,4592,4470,3354,2604,2105,1389,938,6266,6274,5824,5422,4260,5869,6992,9050,9931,9394,11815,13952,11826,13688,14798,15434,14883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100736,118528,81538,76434,63512,61726,43166,29766,11229,9118,10004,7432,6162,4179,3970,1699,0,453,860,1562,1493,1522,1339,1360,1948,2140,2586,2602,2124,2262,2542,2592,37336,38720,43738,44361,43466,34858,24992,19826,22249,16134,12742,12530,7234,6580,3788,2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17918,17442,20682,17456,13697,11040,6593,4098,0,1944,3819,5102,5702,7016,9096,13574,32651,36058,29239,24876,32032,29080,25841,25171,63292,56820,54895,50850,40287,24639,18019,10606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,304,406,700,1066,1184,1182,1807,2044,1692,2177,1519,1496,1406,1426,14149,12630,14687,17096,13684,16369,15141,13701,4647,4464,4021,3134,2403,2250,1411,962,4608,4866,4626,4972,6995,6294,7116,9542,6831,9844,10550,10956,10097,9804,14663,13176,11862 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83181,78517,73147,72913,75686,56355,41416,19718,7516,7216,7350,6484,4465,3853,2764,1646,0,656,1150,1490,1084,1266,1490,1676,2227,2079,2662,2336,1862,2358,3588,3250,42467,41366,49572,56782,41262,36119,25910,24223,20861,18647,18847,14798,6988,5937,4421,2634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13212,12066,13812,9241,10884,7450,5942,3391,0,2204,4577,6729,7759,12034,13166,19388,39050,31217,33982,23718,33405,29818,31821,30386,58956,56789,52411,45233,34482,29097,14136,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,222,457,561,788,1239,1486,1254,1730,1970,2680,1962,1655,1367,1359,14304,10910,10642,11775,14132,10866,11894,15555,5023,4175,5188,3940,1425,1590,1658,1077,2315,3314,4950,5270,8652,7188,5582,7146,6991,8678,10086,8849,6065,7234,10769,14436,14471 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99531,84944,67346,59402,56276,49642,32485,19125,4056,3171,3964,2964,2242,2148,1304,724,0,594,1306,1700,1491,1588,1869,1949,2558,2084,2242,2216,1504,2961,3547,4278,41314,45088,42776,47768,45640,35158,40426,27000,22686,18349,16052,14302,9141,5826,4235,2164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16597,17796,15559,15093,11066,7608,5658,2816,0,2028,5228,7947,9940,13320,20288,27666,38239,38812,35135,29824,26670,34752,34231,38399,60126,43022,43756,41398,31071,24940,15505,9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,320,410,547,722,968,1028,1000,1466,1967,2944,3705,3152,2360,2291,9881,9112,7113,9367,13055,9475,9351,12023,5360,4664,6072,3906,1728,1916,1555,1605,1692,3560,5290,7598,7006,7360,6035,7416,9602,10208,10897,8293,5668,6992,7901,10350,10630 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100087,86369,51504,42580,36239,23242,18204,7874,0,0,0,0,0,0,0,0,0,892,1534,2141,3488,3965,3824,3877,4863,3866,4634,5626,8410,9816,9480,7150,56114,64833,64337,76937,73711,59946,66339,44365,31092,28081,29635,24806,12431,8404,4608,1879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16177,20640,22357,32540,51019,47956,63787,55622,50617,51418,53680,45400,49654,49003,46648,46798,35098,23956,15972,17916,16871,16420,13355,20931,24212,18766,21229,21108,17925,15685,10182,6074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,804,1251,2234,2406,3082,4240,7765,6683,5502,3820,2354,1894,1260,508,0,47,89,110,155,546,961,1179,1430,2054,2567,3032,3308,5596,6806,6892,6911,7730,8232,9668,11828,10934,8752,6856,6973 +0,1,2,2,2,3,4,5,2,4,4,5,4,5,5,5,2,195,470,774,1206,2468,3976,4222,9633,7874,6135,6608,4984,7302,6228,5558,91714,77124,68496,55960,50660,33508,29997,21924,13270,12722,11118,6752,3067,2822,1877,1258,0,946,1347,2909,2672,3278,3784,3571,5564,4759,3789,5802,7330,6923,6257,6092,56732,55489,75263,68166,60318,62546,46083,38364,33994,29819,30799,24252,20707,15030,6874,4415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17043,17718,26934,28376,42034,41986,54992,41632,69117,52332,57669,56315,47593,48659,45871,41754,31844,26522,21002,18900,25796,20376,15939,19600,18960,21894,22510,16782,12313,12216,8737,6586,912,1254,1712,2076,2144,2371,1998,1272,1025,1006,986,732,693,522,261,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,859,1336,1865,2315,2948,4000,6232,5398,5579,3760,2998,2456,1128,676,4,60,111,154,162,553,956,1412,1222,2364,2407,3334,2509,4446,5922,6964,5279,5895,5248,7030,12019,10143,8993,6692,5465 +0,2,3,4,3,5,6,8,4,6,6,7,6,7,7,7,3,470,854,1317,2939,5083,7623,9853,17751,15142,15328,11470,12279,10795,14439,10950,69663,69958,75432,88786,58057,52948,42483,46757,32510,26152,25006,14323,6678,6472,4422,1847,0,725,1738,2023,2267,2645,3015,3363,4422,3480,3624,6044,5440,5895,5558,5306,69790,80751,65092,70797,48490,43848,42914,40433,44089,38744,31432,21338,24940,15898,10606,6162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14725,22846,27039,29017,42561,33984,38474,37502,77950,72579,72452,67922,41013,47740,40061,42920,37088,36170,23482,23011,28204,27417,18503,17387,16751,19340,18134,13529,10684,10002,7090,5816,1690,2262,3056,3341,4937,5189,4090,2631,1982,1783,1796,1587,1568,1058,638,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,848,1041,1518,2934,3378,4332,5399,3792,3860,3017,2751,2044,1419,853,6,52,120,188,121,394,795,1136,1527,2533,3205,2798,2359,3822,4878,4530,3782,4670,4528,5508,9454,8270,6840,4626,4036 +0,2,4,5,5,8,10,12,6,8,12,12,10,10,10,12,5,623,1904,2638,4439,7392,12488,13165,21393,15094,13477,16152,12712,13834,16209,15934,111888,94386,86319,64766,66688,69156,73634,63116,34818,35764,32606,22190,11298,8603,7099,3818,0,706,1688,1777,1730,2288,2428,2776,3635,4002,3296,4434,4433,4094,4657,3734,72299,67394,45226,54400,49631,42932,45916,41193,48573,41012,33624,26521,24332,13062,10309,5210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22001,23728,30045,25117,36084,31103,26768,22892,85417,73506,63682,64747,52894,47587,38590,31120,23322,23603,18068,19860,20990,25568,17376,20014,12724,16782,18106,14770,10347,9326,7748,7932,2978,3293,3905,5329,7299,6844,4796,3422,3860,3178,2470,1864,1995,1302,784,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,667,1366,2039,2854,4315,4966,4460,3733,3600,2400,2290,1779,857,542,9,44,106,158,153,510,720,925,1251,2061,2522,3046,2038,2660,3478,3546,2792,3366,3303,4068,6146,4612,4169,3618,2303 +0,2,3,5,5,10,11,12,6,8,8,10,13,19,20,18,4,1201,2474,3952,5690,7565,11363,11702,25422,26197,20447,22699,18655,14366,15215,17398,121823,121510,89214,74213,74138,69025,66604,54726,50360,52264,37656,25489,20766,12276,7848,3459,0,302,659,1349,2050,2099,2248,2760,3590,3772,3890,3201,3358,2317,1730,1648,69157,56722,67143,45521,45188,59740,62407,70334,57693,65862,52770,42434,24016,20666,13399,5716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27806,25056,33555,32883,29296,26594,24548,19574,67712,58860,57174,48577,51988,45765,31340,29719,19762,20999,21391,25523,24216,22344,22045,21195,10605,7502,7596,7424,9554,10614,8425,8269,4471,7165,7860,8626,8530,6529,3723,2857,5213,4472,4590,3859,2401,1489,888,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,1456,1714,2200,2268,1981,3456,3400,3666,3119,2215,1890,1246,675,318,12,41,79,125,150,294,555,745,785,1384,1852,1865,2155,1632,1301,1944,1748,1594,1502,2557,2851,2305,1867,1569,1226 +0,2,5,7,7,11,13,14,8,12,14,16,14,18,18,22,6,1416,3032,5316,8432,9742,15264,16682,18129,20309,21982,19530,20737,19411,18844,21018,144953,133725,121284,88310,77770,66999,68818,50762,58314,49528,31987,24766,22540,14572,11238,4950,0,280,487,1172,1760,1860,1718,2096,3117,2826,3015,2889,2414,1964,1604,1501,74608,59784,53809,41911,40936,47468,59048,66800,63617,49034,39998,38125,22181,15153,11870,4962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22301,26870,30446,31006,35978,28686,27642,20304,41742,48652,55823,50156,38437,35086,32306,23050,17504,19958,23188,16818,21772,23890,21759,18063,7723,7518,8153,6315,9268,9546,7691,7710,8123,9522,11830,9946,10576,8783,5417,5806,6665,4900,6148,4474,3275,2934,1323,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,924,1264,1296,1856,2144,2841,3100,2853,2666,1920,1729,1010,508,232,19,46,63,84,106,280,557,754,564,1063,1763,1492,1879,1667,1750,2214,1723,1900,1567,2258,2612,2290,2485,2348,1605 +0,2,4,6,8,14,18,20,10,14,16,18,13,19,20,26,6,2463,4472,6363,8386,14824,17453,26758,19340,16695,18567,23260,19452,20220,20888,21430,137185,148297,117962,109078,63487,51490,61496,54922,53565,43145,36882,22087,23251,14747,11682,5939,0,200,390,638,1011,1515,1518,1538,2441,2343,2152,1792,1506,1150,1295,1319,79067,65149,41964,34836,41731,56736,53452,76967,52879,44154,40486,26742,26682,16716,8738,4853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23156,27478,26148,33326,39045,33134,25676,24966,30364,34355,46244,38025,28814,24092,25210,21658,22424,23851,18434,20543,20109,15355,17624,15185,6237,6079,6171,4595,7410,5702,6484,7801,13117,10350,11900,8254,11640,11326,8005,8674,8359,6299,6110,4748,4657,3117,2214,1312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,808,1056,921,1312,1700,2098,2220,1756,1560,1416,1112,671,341,218,20,36,54,72,107,294,438,763,395,753,1316,1166,2112,2226,2325,2559,2125,2251,2086,2220,3005,2299,2524,2439,2747 +0,2,5,7,8,16,19,20,17,17,20,20,16,18,22,28,5,2812,6458,8542,10318,11883,18288,22842,22025,19754,23777,19211,13809,17786,23204,25592,151536,115979,120571,91982,72095,79625,87507,84376,53846,46893,50231,30148,19790,14552,9906,4735,0,98,204,346,409,586,841,732,1170,1298,1524,1279,1165,1006,1474,1282,73399,61936,51290,36370,37914,42624,56967,73608,52812,48388,43991,29338,23511,16339,8470,4287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25464,30160,24239,25227,38112,26781,22228,26588,28031,31041,42978,32813,26679,28160,22864,19473,31927,28546,25292,21358,18609,13183,14858,8979,4000,3331,3697,3445,4736,5240,5260,8228,14207,14048,16182,14302,12226,13515,11498,11027,7227,5708,5765,5328,5878,4364,3699,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,446,664,868,972,1456,1723,1014,864,809,648,602,342,183,112,30,47,57,68,117,198,292,445,232,488,773,964,1411,1952,2250,2377,2491,2342,1966,2316,2219,1970,2612,3322,3908 +0,4,6,12,14,17,19,18,21,23,21,18,16,23,22,24,3,5796,11214,13734,17926,22974,32675,30565,31878,30644,30556,39437,36315,33468,36745,30829,144220,152177,174202,163330,186448,138473,145905,96426,76836,59091,65975,49524,32760,27363,13358,7245,0,0,0,0,0,0,0,0,0,145,333,581,776,892,724,1089,93560,79086,60715,69237,55356,43779,38166,52410,56457,36867,29874,31883,24134,20444,15210,8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22420,18667,13093,11213,9485,12330,11980,15797,25988,27022,19953,12498,4690,11688,15569,19897,36845,30705,25523,24862,26780,20064,15175,7443,2437,2976,2829,4299,5999,6858,8902,10327,15352,19366,19624,16924,18880,14726,17576,15567,9452,8514,6134,6104,7621,4848,2934,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,653,846,1044,1357,1354,1434,0,8,16,19,26,34,40,42,35,50,59,80,81,62,60,82,0,389,748,1158,1193,1268,1552,2200,2527,3840,4098,3399,4280,4534,4225,4752,4230 +0,6,10,13,17,21,20,22,24,22,20,20,16,23,23,28,5,6473,11402,16722,23879,33432,38405,44058,50627,43462,37613,34310,43662,34902,37182,31101,162398,151772,131312,149052,154457,157864,134511,89450,69957,61882,50113,44633,24738,21028,17754,8496,0,126,352,446,839,710,732,1008,1281,1554,1920,2011,1691,2379,2335,2220,86680,73720,59909,57086,57269,55850,45503,50346,53311,38508,30345,31287,24924,18350,13832,6512,0,0,0,0,0,0,0,0,0,304,518,809,802,740,580,630,22170,20426,15052,12865,9450,8234,12455,11934,16761,15977,15124,12598,9089,11650,19701,20030,39625,30945,29621,30824,23497,19132,14540,6793,2328,2850,3538,4433,5308,6708,8808,8895,12343,15450,18766,18709,15484,13235,13230,11705,7048,7978,7815,8072,9034,5610,2848,1273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,462,702,711,844,1193,876,0,9,14,20,20,26,33,35,34,38,53,62,70,70,74,70,0,249,618,893,886,1070,1465,1680,1562,2660,2828,2856,4171,4346,3668,4101,4917 +0,7,11,17,18,23,24,20,22,21,20,20,19,26,31,31,6,8234,14880,23708,23122,40146,45933,48582,59234,53780,42766,36061,37075,36396,39280,31843,133054,118335,111854,92765,177920,149405,97413,79950,88373,62509,46398,35541,26859,20092,18061,9158,0,324,616,946,1589,1766,1494,1905,2352,2956,2942,4046,2516,3276,4788,4711,105516,99936,68034,42566,41213,53913,51716,55579,59516,48326,39259,36017,26096,18423,13406,7092,0,0,0,0,0,0,0,0,0,636,1095,1937,1524,1284,1201,1423,28737,27372,21513,14426,9336,10685,9182,11153,10290,12045,10762,9824,11437,13762,18604,19690,39808,33583,29504,26851,16789,17144,13968,8753,2097,3099,3770,3619,6155,5271,6314,4361,7856,11003,14522,13076,18024,14086,11500,9670,5325,5165,7384,8238,7624,5580,2782,1285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,372,523,648,727,719,620,0,6,10,22,15,23,27,28,22,34,48,43,53,64,66,56,0,176,416,510,704,802,900,1284,1232,1740,2305,2355,2932,3421,3021,3668,4402 +0,6,12,18,21,22,22,24,17,20,20,18,18,30,36,32,10,9925,18161,24110,28643,35673,42030,55803,66136,68969,48786,50640,29020,36138,41802,37187,137734,135034,99290,104762,145882,125247,92585,85442,59970,59241,35382,32686,25296,21614,19338,9920,0,408,1096,1352,1875,2155,1468,1896,3134,4192,3229,4415,4161,5344,8453,7381,74744,82511,53359,45368,28457,41504,50347,53712,54166,36842,40540,32298,18398,15772,13518,7006,0,0,0,0,0,0,0,0,0,929,1710,2534,2900,2627,2798,2828,24236,22404,20822,13874,7685,8084,6681,8040,7871,10794,9488,12242,13258,12609,15238,17373,47586,42630,32353,28852,19231,17248,15429,9019,1726,2892,3426,3908,4753,5152,5884,4682,7347,8974,8772,11584,14884,11008,8356,6958,6091,6117,7910,6852,5410,3498,1929,1043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,248,360,393,515,425,412,0,6,12,19,17,20,27,30,21,30,43,46,54,61,66,63,0,170,411,546,747,698,613,869,1031,1222,2077,2382,2919,2530,2734,3346,2792 +0,5,8,13,20,20,24,23,10,14,16,17,22,30,32,28,9,8460,18068,24405,28400,47607,56532,49824,81150,57676,56475,39862,26168,31014,32175,31623,171581,168735,147332,123919,68660,79830,86336,61224,53107,49952,35027,33942,25957,19998,11613,5203,0,725,1211,1805,2702,4146,4302,3542,5451,5142,5092,6027,6635,5254,5908,7668,72928,82252,71295,49647,29534,24444,29560,30284,56103,40096,41583,35756,18607,14738,6478,2977,0,0,0,0,0,0,0,0,0,695,1558,2616,4312,4406,5129,4850,23323,19032,15322,11477,7346,7238,8337,6226,5119,5320,7780,12063,14268,15915,16890,18902,49006,36760,35994,31826,25803,24241,15539,9377,1858,1831,2011,3447,4657,3473,2695,3124,5362,5998,6364,9102,12171,11040,8765,6872,5963,4929,5779,4603,3993,2888,2610,1290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,178,270,205,172,226,0,5,7,12,16,13,12,18,16,23,35,38,42,44,34,40,0,157,312,438,668,531,564,618,859,1158,1296,1936,2620,2361,1607,1664,2203 +0,6,9,16,23,26,22,26,17,21,24,33,34,34,30,29,12,9803,17954,20492,32029,43874,60430,61501,93178,86744,52604,49182,26590,25260,38199,38236,159434,134634,125404,88402,61042,63241,61608,56772,57586,43896,38542,30921,25153,17172,12771,5314,0,882,1940,2882,6554,7067,7966,6662,6193,7928,6266,7884,10689,8749,10262,11531,57706,64186,54840,46799,24703,24106,37728,36818,37349,35811,36191,22212,13442,12063,6650,2929,0,0,0,0,0,0,0,0,0,1474,2076,4493,6636,8789,8511,9968,20982,18068,12375,9149,6493,6090,7462,6439,4406,5388,7214,10798,15658,14382,16424,23018,50815,43866,37068,34266,33185,26122,17124,8702,1558,1648,1695,2670,3466,2762,2342,2708,5913,7327,6722,9040,11995,8892,7009,5307,3951,3304,4819,3994,3608,2446,1755,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,125,172,191,158,118,178,0,6,8,11,12,12,9,14,14,20,23,34,34,32,28,32,0,107,224,372,474,380,469,390,592,774,980,1428,2575,1734,1299,1642,2026 +0,6,10,18,22,27,26,24,17,24,28,29,37,34,29,34,12,9857,16796,18648,34438,39130,59502,59624,94426,77308,74268,73309,33358,33530,34238,38179,117279,95450,98304,100867,40524,43337,51374,69860,53538,46780,40119,35868,26876,16650,10020,5566,0,1179,2908,4094,9264,11482,10019,9852,9941,8088,8623,7998,15757,15407,12196,17255,63827,58309,53831,35647,22468,34494,38046,41296,30408,27001,27884,21618,9188,8268,5776,3388,0,0,0,0,0,0,0,0,0,1616,3523,5532,9404,10127,13484,14779,24643,16404,13036,7575,5041,6660,6069,3951,2345,5143,8726,9281,12131,13984,18509,30066,37685,36891,36822,36461,35619,30236,21804,11018,805,896,1160,1805,1842,1770,2504,2857,5989,6856,9790,7324,8051,7760,5986,5063,3315,2961,2303,2796,2228,1722,998,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,60,124,157,103,94,98,0,5,7,11,7,7,6,8,7,12,14,18,21,26,22,25,0,71,162,236,298,342,367,291,360,690,879,989,1798,1409,1244,1174,1411 +0,6,10,16,16,24,22,21,19,24,34,34,31,36,35,36,16,7586,15910,18978,35372,35605,49939,58985,70660,69074,84733,63937,60928,45066,46152,51680,67209,78137,76196,83466,45422,54258,60268,69870,51441,39562,34164,29374,24682,16295,9969,4904,0,1676,3347,6228,9459,11880,14088,16472,18451,15780,13810,13607,17952,13983,14875,15450,52005,41023,43452,42368,35407,39826,32080,27132,29368,22417,17208,13404,6807,6043,4008,2312,0,0,0,0,0,0,0,0,0,2712,5280,7732,11402,10220,11624,17495,23004,16381,12254,6194,4385,4160,4584,2796,1005,6164,11507,11772,15422,18772,26234,31562,39992,41733,40326,35834,36072,26979,19992,10718,450,526,695,1174,982,1386,1846,2545,8642,8164,8496,7421,8566,6120,4519,3477,1962,1480,968,1452,1103,859,547,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,32,56,68,60,56,53,0,2,5,7,5,5,4,5,5,7,8,10,12,13,11,12,0,40,85,108,123,172,201,150,198,304,500,512,917,714,500,718,791 +0,0,0,0,0,0,0,0,0,3008,6079,11734,14065,16028,17029,30491,34833,36528,53568,54657,52020,51484,36003,28117,30444,45598,52202,51271,66690,52236,53547,49166,48234,37766,40332,43831,38817,42967,32912,38830,33012,24885,14890,13298,16427,9960,5430,2648,0,0,0,0,0,0,0,0,0,3055,5872,10156,12409,15430,15975,15961,26835,23290,30726,30870,21854,13743,11678,5797,0,0,0,0,0,0,0,0,0,796,1634,1731,2568,4390,7596,9190,15364,17195,16045,13148,16560,18947,21302,19296,20534,12946,11263,9814,10631,8924,9625,9872,7392,8582,7853,5568,4651,3270,2606,1500,0,122,294,333,468,598,969,1957,2322,2774,2712,3552,3927,4480,3839,2787,11968,11398,11589,8512,7016,9650,14178,15486,15912,15956,12634,7556,3669,2974,3056,2168,1619,2032,2478,2690,2367,2400,2114,1701,1914,1572,782,547,305,222,201,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +0,472,1154,1804,3252,4206,5201,7196,13348,22858,23268,30164,38753,43752,61507,60198,23486,37468,37373,48132,60795,51796,40830,43578,45776,56536,57300,69872,88086,97756,108289,91950,39517,41181,42296,47442,25482,31750,34541,30964,28089,24344,12815,13196,11204,9108,6669,3336,0,1,2,5,2,4,4,5,5,2760,6461,8264,10254,10333,14938,17062,41027,34896,35716,36076,25603,23227,18103,11609,6427,5058,4624,5195,3459,6049,8447,12346,8655,10310,12206,14798,13025,13402,20649,28605,26078,22947,21298,18556,16022,16024,14614,17343,16352,12539,7024,8892,10932,8386,8491,8060,5525,6371,7651,4602,4764,3350,2686,1422,0,168,280,404,581,710,793,1230,2900,3112,3188,2911,4100,4406,3334,3464,11278,12298,14935,14520,12043,19946,17524,19546,26122,18085,15013,10429,6862,6267,5047,4766,2860,2675,1925,2144,3050,3297,2891,2076,2466,1980,1832,1190,745,738,884,978,0,44,89,160,118,183,259,200,265,256,271,218,120,68,55,54,87,81,90,83,70,73,68,54,30,39,53,54,44,35,23,13,0,13,19,32,30,34,45,38,22,26,29,24,19,16,10,6,126,126,91,96,43,47,74,74,17,34,46,40,32,30,16,12,0,0,0,0,0,0,1,0,0,1,2,2,2,2,2,1,2,5,5,6,5,6,5,6,10,8,5,5,2,2,2,1,0 +0,974,2180,3884,7477,9704,9853,10578,25699,36428,50718,60452,75303,94978,86002,95982,23553,25727,36634,41474,61169,45957,51902,70250,64131,78783,74558,69805,129555,129066,155402,126355,47798,51616,46288,37728,21628,25561,29060,26355,23001,18197,16541,11020,11190,9011,5938,3537,0,2,4,7,5,7,6,7,7,2733,5120,9261,7071,8968,12735,9942,56157,41573,45975,45036,35824,25341,18834,16305,11768,10569,7870,12364,8093,9688,16022,22172,14648,21009,21740,26156,27474,25306,30196,39714,28120,28450,25894,19013,20703,19444,13042,12059,9260,7468,6076,7700,11995,9218,8148,7742,6181,6752,6760,4955,4959,3035,2269,1355,0,204,376,512,503,698,920,1199,3272,3380,3344,2229,3734,4049,4258,3602,10395,15048,15240,17121,21272,20063,28266,29834,29542,24342,16904,12340,8988,9894,8056,8165,3598,3471,2280,2503,5079,4278,3764,2836,2729,2512,2335,1509,1513,1654,1642,2060,0,93,192,285,224,360,432,388,632,484,538,467,217,194,118,103,212,211,150,140,164,166,116,104,57,88,108,92,104,68,42,19,0,21,42,65,60,83,82,78,43,52,52,49,33,27,15,10,221,177,208,146,87,105,140,149,32,53,77,83,74,48,36,22,0,0,0,0,1,2,2,2,1,2,3,4,3,4,3,2,5,7,8,10,7,8,8,8,15,12,8,7,3,4,3,2,0 +0,1682,3016,5845,8792,12282,11698,16773,27186,54222,91182,76362,98684,91528,100592,105936,21464,24268,35199,34488,49808,45692,69859,67542,83168,96300,102819,105479,109105,133293,149679,137065,36690,35052,33470,34926,26057,24496,35034,27738,27009,17103,12427,9216,10022,7432,5732,2862,0,2,5,9,8,10,10,13,10,2170,3519,6989,8348,10563,12133,13962,63361,48449,59425,44521,28812,23598,17057,18302,13096,11766,9491,15180,17255,23364,25372,31836,20935,21960,22944,31252,29690,31230,43001,50758,34182,35650,37342,26224,22116,17466,19258,15438,7142,6036,7218,6237,9499,8386,5790,5454,5112,5794,4745,3935,3834,2309,1733,925,0,172,322,608,752,822,1189,1342,4689,3754,4154,2682,2984,3052,3470,3242,13482,19438,16822,21253,26430,26048,39796,41040,34953,24238,24264,20838,12254,11022,12083,10577,5221,4126,2948,3845,5474,4663,3449,2820,3082,3094,2456,2478,1730,2700,2880,2620,0,148,233,440,327,509,724,740,793,603,649,472,397,298,204,166,251,220,144,229,221,172,173,174,117,152,139,145,144,101,73,34,0,34,50,70,90,108,120,114,70,78,69,52,41,38,16,10,342,324,330,222,131,134,166,175,67,78,92,95,103,62,37,25,0,0,0,1,2,2,2,2,2,3,4,5,4,5,4,3,8,11,11,12,12,14,14,16,21,19,13,10,5,5,4,2,0 +0,3571,7153,10146,11737,17112,21047,24158,39275,39416,49171,82791,113460,112605,85582,111768,15597,23058,41182,42419,47856,57706,70810,63528,81273,91204,106648,135971,124134,129874,119270,112077,21605,20105,27042,23484,30314,23266,25885,23817,26072,15973,10940,9958,8160,5546,3420,1438,0,2,5,10,10,14,20,17,10,1770,3133,6172,7726,6614,7653,12215,59915,46076,41908,37998,30386,23328,27339,24473,17068,17534,21997,21933,23096,26818,32224,36895,26400,32744,36110,32504,42231,42005,54576,56871,31135,30306,37868,33034,24657,23869,20896,11290,7177,8440,9503,7448,6787,7490,6376,4706,4553,5836,5622,4585,3606,3252,2150,966,0,277,492,622,774,671,877,896,5639,4427,4968,3264,1867,2141,2191,2093,22442,17834,17084,28739,32898,24633,28433,33528,36156,24466,20268,17968,17058,13797,17211,14309,7053,5992,6930,6572,4995,4321,2774,1751,3271,3350,2630,2978,2770,2623,3452,3443,0,188,370,391,568,659,734,875,1080,986,763,737,550,392,256,162,340,289,242,316,294,302,223,232,150,131,123,145,166,116,98,57,0,22,46,86,120,152,145,139,123,96,78,60,58,42,27,17,476,503,391,225,162,239,250,315,79,75,70,105,108,91,61,39,0,0,1,2,2,2,3,2,2,2,3,4,3,4,3,2,10,13,18,20,16,17,12,17,23,16,12,10,4,5,3,2,0 +0,3404,7703,12022,13018,16793,23748,27286,46469,53452,82300,110766,121556,124219,99769,119091,11607,24744,32115,34430,40062,59561,57519,69058,97878,107156,104411,135817,102554,105620,108834,113249,14120,16154,21871,18540,25754,17979,22424,17574,18387,14060,8816,6983,6368,4368,3431,1544,0,3,6,10,10,15,17,20,12,1356,2853,4058,7386,6653,7560,8962,48053,43561,38680,28839,31228,27475,24443,21866,17446,26328,30280,32780,36336,39019,46453,50012,27863,41584,55671,58520,44869,49780,53612,64715,43659,38988,54486,41729,27062,27912,19878,12218,6141,6392,6700,5987,4458,5970,5216,3949,3494,4003,3993,3384,2786,2632,1688,708,0,291,444,684,766,1302,2502,2778,7186,5539,6258,5341,3804,3598,3527,4568,18654,17644,22936,30550,24895,22318,23877,23876,47808,33434,25194,20145,16044,18252,17664,16170,11728,8630,10351,7679,6760,6416,4565,2560,3446,3561,2488,2922,2514,3242,4319,3385,0,192,341,352,640,810,1035,904,1274,980,957,911,650,563,349,324,369,392,288,340,508,387,288,257,126,128,140,178,177,134,108,52,0,30,60,109,192,168,130,134,159,137,126,104,78,66,33,19,936,854,523,550,586,406,434,406,205,180,141,153,192,134,114,76,0,0,2,2,2,5,5,5,2,5,5,5,4,5,5,5,22,26,22,20,19,16,13,18,28,22,19,16,6,7,5,2,0 +0,4246,7305,9959,12047,20064,29658,27611,51763,93742,106774,152193,150204,137124,104690,114838,12050,17634,18936,23594,41927,56255,60621,58888,102130,105180,125190,120067,48841,85912,118833,131236,6545,9090,12210,15828,13451,15503,14000,14618,12879,9580,8525,5656,5883,4944,3153,1835,0,2,5,9,11,13,18,22,10,695,1638,2547,4751,5764,6866,6291,41878,28860,29802,22963,27070,23055,22499,20210,22768,35780,37822,54002,67367,71216,58727,60683,31051,41937,65918,81627,39651,54258,65204,71338,44516,41235,52973,42959,33100,25887,24088,16038,7221,7467,5371,5373,4138,4333,4944,4938,3027,2542,2676,2636,1929,1434,1475,748,0,219,492,794,903,2061,3746,3654,6440,7851,6692,6296,5127,4739,5960,5667,19884,22624,26111,32688,16169,19523,26678,26824,45983,37161,27335,22503,20738,18794,22603,26265,14348,12645,10879,10352,10740,7780,5804,4333,2688,2493,3244,3575,2404,3164,3786,4138,0,161,318,424,816,1110,1188,1146,1443,1019,1064,908,587,617,482,384,407,436,458,402,561,352,316,293,156,189,182,203,145,127,88,51,0,34,70,91,199,167,154,155,186,196,168,135,98,82,42,25,1338,1092,876,740,837,816,553,455,270,191,202,204,233,175,139,83,0,1,2,2,3,5,4,5,3,5,4,5,3,5,4,5,31,34,28,20,16,17,16,18,23,22,20,17,6,7,5,2,0 +0,3892,7923,14791,20026,27733,31474,35220,49093,82692,105542,124866,147890,136105,119000,127862,9808,11058,16906,20826,29816,43468,58449,74944,115228,87190,109243,85569,42179,88013,114910,127221,3448,4702,7415,8086,7880,8482,8224,7146,7391,7567,6289,3948,3068,2638,2066,887,0,2,5,9,10,15,22,22,13,542,1540,2240,3559,4296,3544,4500,48580,39166,24557,18752,21862,23789,18622,18982,22184,29366,40941,59956,63314,64098,73003,76998,32308,54727,68078,86127,73804,66494,80558,58218,56846,54098,47595,45957,40240,39236,26810,24776,11208,9846,6886,5372,3140,2619,3678,3052,2613,2536,1936,2044,1537,1497,1214,560,0,265,514,784,1280,2166,4658,5297,7283,6918,7286,7566,8480,6816,7827,8944,20654,26234,29102,23120,19061,20424,23827,24397,33467,28966,21877,24128,25489,23831,23007,24758,16566,14646,10584,10236,9784,8902,7336,5563,2366,3170,3118,2704,2454,3256,4183,4194,0,184,383,630,752,910,1151,1532,1750,1410,1276,969,809,716,408,368,529,472,545,520,616,454,323,332,243,211,216,189,158,128,82,49,0,52,115,162,260,290,238,246,245,208,180,146,125,104,44,26,1474,1564,1306,1109,1058,890,569,455,440,346,270,284,218,215,170,118,0,0,2,2,2,5,5,5,2,5,5,5,2,5,5,5,61,44,40,28,19,20,18,22,22,26,21,17,7,8,7,4,0 +0,6599,12847,24273,28405,24992,29450,44150,48709,69116,99005,127390,150921,139983,123906,145958,5696,25710,47148,57550,77516,91537,98795,92134,95566,90744,107018,192682,235288,187040,180253,236093,0,111,228,378,551,1077,1440,2908,3790,3836,2811,1738,1155,864,465,222,0,5,8,12,12,14,18,22,19,81,134,265,375,1063,1476,1558,40378,32720,31558,32536,42368,33355,37400,37557,29558,40231,39353,46315,66499,58877,40333,61868,45535,58575,57223,69962,59862,39532,37952,55114,66224,51616,55786,41961,38965,37080,27199,29247,14158,11816,8738,9101,6434,4342,3829,3401,2202,1967,1380,1482,1350,926,605,316,0,1416,2445,3610,5065,5263,6404,5333,6288,6256,5268,6688,10838,11092,15036,13242,22970,23310,23445,29993,34226,30752,42120,40985,29668,36764,37888,33464,28946,36496,33299,25661,14407,10801,9025,6459,2188,2898,3311,3493,2676,2902,2249,2506,2147,2477,3011,3453,0,172,314,586,786,1103,1467,1518,1537,1759,1410,960,884,804,780,536,655,515,556,404,159,183,249,266,296,278,188,128,116,79,77,38,0,53,113,120,163,175,166,215,286,338,334,308,241,170,154,86,1963,1670,1801,1476,1135,1199,1117,731,490,404,400,413,409,342,206,143,0,0,1,2,2,2,3,2,2,2,3,2,2,2,3,2,80,55,42,36,33,30,22,29,27,24,16,22,21,13,8,5,0 +0,5751,11778,17358,19118,23861,26298,30418,38357,68540,74143,110148,112474,107927,93757,114269,8534,22302,31636,45643,68695,82063,97782,87802,73623,95428,115002,173614,147146,161812,197912,228001,11281,10290,13054,11433,13400,11442,9471,12074,14464,10930,7861,5722,3189,2734,1296,734,0,5,8,10,11,14,18,18,15,61,114,224,312,903,1162,1266,39920,39810,37104,30444,55196,38018,27132,25618,22110,30063,36182,53043,51327,51384,52481,76674,41771,47670,37286,45259,66059,47336,35998,44063,99578,82742,68330,61308,51504,40689,32289,29155,11277,11422,10265,6704,6136,4036,3938,2756,1891,2040,2222,1927,1697,2131,2082,1838,1115,2036,4124,4414,6883,8098,9808,10652,5848,6855,5534,8268,10734,12693,12434,13428,20678,24227,23828,34810,25918,31714,35088,35208,30729,34614,26524,25597,28908,29456,40646,31094,15250,13164,7463,6398,3732,4461,4783,3846,3451,2980,2856,2740,2217,3424,3963,3980,438,638,515,987,980,1226,1770,1826,1941,1534,1142,973,721,747,681,542,801,659,540,354,194,244,316,274,312,255,250,193,139,105,106,56,0,51,91,100,144,200,164,242,677,712,639,532,444,426,482,454,1237,1294,1680,1146,1185,1180,734,540,365,476,504,518,467,348,454,392,0,18,33,42,81,92,79,123,18,28,36,44,50,62,76,94,109,116,150,164,228,258,230,180,124,121,134,120,101,63,40,20,0 +0,3494,7796,11783,16296,24198,25945,33065,44829,60029,83244,106670,90798,82670,94682,74796,14624,22403,31568,28899,70611,69213,74301,71938,37667,72258,96632,148653,110408,140744,151873,221562,23653,26171,24096,18924,24013,21534,16551,19894,24406,18001,15576,11194,6494,4165,2418,1303,0,4,6,8,10,11,12,14,12,51,101,152,268,693,1090,1590,50016,53927,40402,32668,51698,44337,27924,19713,11763,23781,41504,45316,51432,49481,60716,57773,48158,41201,33053,41261,66430,66228,48414,38152,106433,90747,71829,76482,52670,44322,35010,39211,12284,10319,8574,5797,4730,5074,3894,2640,1590,1672,2394,3414,2037,3237,4012,3717,1928,3130,4895,4938,9447,10971,10795,14792,5207,7317,7402,7558,9979,12174,14398,14671,27306,31006,30258,22996,20658,23740,27025,25325,37305,29297,24627,22974,33691,29049,35380,33943,13983,12375,9446,7660,6242,6914,5662,4686,3335,2887,3092,2607,3262,3072,4218,4602,756,940,908,1150,1274,1807,1758,2033,1811,1378,1414,1354,484,422,562,476,992,749,660,388,320,276,294,289,384,352,232,234,135,138,100,50,0,47,78,103,102,166,217,344,1032,848,824,674,713,825,729,743,989,958,1065,1250,1256,1094,578,385,398,380,523,542,584,615,604,498,0,38,66,70,140,128,164,216,37,40,57,75,119,130,158,183,147,156,217,314,466,400,364,317,218,218,218,174,152,91,66,38,0 +0,3340,6541,10651,18371,19948,22907,26416,36888,58988,64794,84258,79494,70262,76908,56204,16484,22836,22508,27382,51907,52393,61981,78126,26114,45850,54112,109128,87995,112682,139888,195722,30790,34716,38055,29316,37031,31270,29243,33856,37547,29712,28933,16786,11746,6686,3440,2016,0,2,5,6,7,9,8,11,12,62,115,150,173,496,778,1310,34943,32991,36831,36756,45502,33354,22974,15106,8762,21502,30808,36584,41049,56877,75839,67636,42565,43423,44023,48150,63670,53922,36452,33336,115354,89944,81354,69342,53907,46306,39428,33033,9544,8636,7075,4862,3051,3682,2838,2336,2011,2032,2156,3454,2878,4186,5065,4606,4058,5154,7978,6556,8206,9626,9549,14822,5916,7451,8572,9368,10438,14316,16139,14166,21517,28089,31193,25086,24115,23667,19666,20562,28945,34470,36156,26204,28342,38128,39725,37336,8362,9360,7090,7653,8875,7625,8268,7486,5216,5268,3328,2974,3534,4220,6322,5897,1167,1533,1351,1819,1641,2561,2332,2446,1833,1842,1476,1198,463,572,816,822,1121,812,755,534,372,322,262,292,554,512,319,252,204,183,122,62,0,32,70,121,125,188,259,340,1348,1200,825,836,739,750,903,845,1267,1008,970,1046,879,936,504,314,346,571,551,682,713,694,743,706,0,52,79,118,140,188,212,360,48,72,84,122,175,230,262,290,153,180,208,424,604,625,584,436,289,300,242,197,163,137,80,42,0 +0,4269,8347,12746,14876,18028,16028,13636,39047,54113,53042,61651,58706,60754,55135,52297,19731,17320,17770,18472,24700,53126,73835,88819,21089,44006,56368,63381,65860,89008,102836,204068,42843,46346,37374,37094,38345,38610,43829,46983,41096,33966,25758,18202,14236,10302,5139,2614,0,0,1,2,2,4,4,5,12,58,87,129,145,552,900,1101,34322,33914,25948,35747,35585,26980,25731,15537,7452,12429,18166,25909,40981,43609,67472,57388,51293,55594,44468,42868,42726,42106,30468,27926,91592,68981,50836,54150,64328,56048,38635,25088,5990,5321,5442,4050,2418,2173,2273,1816,1858,3044,4066,3694,4873,4790,6913,5950,5471,4571,5578,6972,9438,9991,9324,10938,6928,7231,10804,10871,14398,14460,12385,8613,22161,14554,13965,17876,20414,14058,9740,11826,32548,35417,29360,29500,32484,28067,37498,30460,6896,7582,6149,8338,8606,7296,9378,7124,5441,4565,3870,4007,3179,4887,5153,5589,1533,1522,1786,2296,2468,2550,3133,2648,2121,2031,1428,954,568,787,863,992,1677,1172,1064,633,314,317,237,316,610,508,511,426,228,212,158,69,0,32,77,141,170,152,207,336,1234,1141,1399,1232,856,1015,1175,1011,1260,1479,1378,1069,813,811,596,337,323,383,464,709,1045,981,946,997,0,31,72,143,206,270,384,455,68,93,154,221,253,270,330,403,135,392,541,627,708,706,669,482,394,320,362,263,220,176,84,46,0 +0,3448,6193,6897,8546,10295,11175,12384,30067,40260,42405,51634,64646,54600,69966,67298,25470,29670,38527,31056,29540,41355,57070,64178,13073,25853,41480,52616,57781,75812,93713,167113,37712,43668,35616,39724,60845,61970,53734,59355,66471,38202,25798,23802,34318,20490,7324,4228,0,0,0,1,2,4,5,6,10,40,61,78,121,487,607,989,50060,45869,32520,37580,35490,30646,22010,14362,4905,10848,14826,23024,46980,53988,76360,69598,69882,57596,39978,54374,54724,54738,41390,49358,82783,64768,58586,64600,76813,69535,34896,26508,4571,3983,4286,3240,1725,1574,1907,1708,1346,4304,6391,7333,6794,7271,11106,8832,13072,11362,8138,9495,19203,16573,13579,15463,8930,10776,16446,16630,12685,13801,12819,12628,19882,18335,22144,21222,17664,14846,13529,13098,30583,28193,30620,28882,22599,28446,27936,26910,7999,8922,10440,8336,6074,9398,11514,9438,7250,6361,6185,4771,5072,4980,5048,7416,1756,2249,2444,3003,2110,2485,3120,2622,1743,1934,2332,1453,1927,1706,1434,1458,1866,1608,967,692,425,388,389,378,501,456,443,381,181,153,124,61,0,61,119,203,347,339,404,460,1593,1284,1242,1414,778,1013,1280,1456,1261,1417,1443,1118,655,512,524,273,264,588,750,1317,1006,1278,1610,1896,0,40,84,148,261,299,369,419,225,296,392,409,438,420,387,399,409,468,582,722,1316,1089,860,828,552,600,569,478,494,361,228,123,0 +0,1978,4181,4950,4859,6113,6054,7228,20662,25135,33886,59024,69269,75327,66042,71234,38786,39975,46852,48493,28183,35963,36715,42416,11580,17303,24489,29632,34291,73497,99536,165181,51217,53988,49847,47281,85528,66105,74314,84174,73637,61616,33302,27802,46110,26699,12598,6413,0,0,0,0,1,2,3,4,8,22,42,56,97,371,612,807,60334,52597,53937,46645,34652,34056,24628,11892,3166,9930,16880,24632,47918,64091,68471,48402,83526,62663,53792,48252,62110,61624,58849,71360,114316,99962,68554,60305,85990,52219,31928,19999,3679,3165,2092,1310,1071,1020,914,1046,1103,3980,8196,11036,9327,9751,13726,14241,17203,13499,14308,14678,26380,21162,13545,14988,13455,13053,18577,22486,14000,10830,11266,8451,24896,24711,26732,23910,18700,14765,14613,15481,35124,33804,25157,20898,22383,29339,26566,22198,12896,9982,11421,9122,5795,9493,10156,12119,11723,8314,8042,6864,5700,6433,6692,6719,2723,2102,2394,2859,2028,2358,2708,2508,1997,2708,2528,2176,3285,2824,2120,1585,2182,1896,1344,806,478,502,436,417,482,508,377,295,154,109,68,41,0,85,192,375,522,646,608,760,1804,1710,1360,1710,1054,1113,1375,1297,1407,1744,1594,1288,598,405,294,147,131,668,1086,1542,1391,1950,2209,2200,0,48,84,140,326,432,394,376,325,468,536,482,483,665,628,568,754,835,795,846,1528,1352,1077,1002,889,794,806,684,759,510,480,274,0 +0,814,1910,2234,2182,2402,2582,4132,8531,18014,32754,54500,63800,67944,66110,76140,51511,60388,66925,58910,39541,29882,25327,26961,6852,9876,19588,21558,26128,58759,75038,136707,60621,58445,50802,71223,101946,75746,80826,89110,88214,52044,35232,36384,42828,30828,15218,8164,0,0,0,0,0,1,2,2,5,16,21,27,40,194,367,342,76411,66463,41481,38525,38630,28715,21833,11374,1414,12314,22589,23628,51230,57242,53655,65682,85920,71111,62948,48476,47483,66145,65647,70374,99934,88807,59810,70747,81935,53198,40227,19556,2158,1418,925,671,485,563,444,435,512,4364,8123,10445,13667,16264,21322,21434,22714,19209,17765,18155,28153,26738,15773,20131,16310,19083,15680,20712,15602,14020,9422,9182,25970,22394,28974,19395,18653,16570,19577,21603,26404,23204,21888,19719,14586,16992,16372,18378,15357,14928,17023,11725,7662,7833,9379,12424,13142,11996,7271,6379,6273,6960,6648,7337,3217,2417,2624,3424,2566,2781,2673,2945,3388,3381,4195,3338,3642,3196,2084,1764,2547,2181,1558,1054,692,504,416,381,476,396,395,270,190,126,87,44,0,114,250,377,522,904,908,1412,1908,1814,2564,2164,1755,1734,1951,1686,2011,1866,1751,1274,567,474,256,126,67,876,1490,1933,2151,2482,2457,3040,0,59,122,186,308,377,436,373,389,476,665,606,459,525,722,820,835,1104,1155,1082,1332,1164,1208,1053,852,922,1336,1007,814,596,478,242,0 +0,5828,13870,34751,44772,58832,57087,55899,55225,75062,70678,70161,99794,74786,60669,77740,69956,76640,62461,78054,70259,73569,55653,66669,66458,91408,90903,82552,106518,87444,83821,93084,98252,76313,55119,46504,31965,30914,30818,26352,22942,19892,19392,16017,17126,10464,5728,2337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68617,59662,48013,31367,20265,43210,58695,71229,110212,102111,139315,131318,144765,115429,100482,71412,73755,80172,83586,106493,123316,136908,116210,81855,81403,74879,45815,42976,36162,24414,22539,12898,0,2453,4573,8668,11730,17539,18983,17716,17060,14868,12434,10197,5093,11769,17005,17960,21711,22316,26464,27048,36882,35446,31457,29919,28014,33652,29690,27585,28072,29282,22065,16227,27379,30862,47076,50840,64294,60838,64926,45802,49357,49690,41247,42125,36265,31564,26971,19335,18357,11511,9270,7596,4750,4753,4979,7394,11420,9190,5666,4966,3754,4073,4059,5663,3369,5172,5311,5258,6348,5370,3932,5414,5091,3875,4282,3404,3937,2518,2160,1990,2636,2284,2261,3437,3541,3624,3645,3009,2857,2304,1467,1216,1088,788,432,197,0,390,741,1086,1343,1047,1266,1790,2331,2348,2389,3278,3571,2819,2042,2554,2922,3090,4698,5172,5826,5479,7747,5634,5678,5548,4961,3648,2238,2492,1917,3388,0,154,325,335,502,508,759,600,682,677,500,433,552,688,1044,1165,1034,1144,1111,1083,801,628,533,453,354,366,272,219,117,82,63,28,0 +0,7272,19472,28156,36495,42168,55043,50803,50637,52822,57832,65300,100068,88425,62820,85479,76799,69096,54657,77619,71898,63413,60817,83910,79289,80705,77383,81872,110385,102007,89331,81200,110842,90270,59342,39976,35334,35258,42235,40760,30503,29236,26114,22826,11682,9394,4855,2221,0,136,283,536,655,664,556,760,948,750,712,484,308,239,135,95,68482,52414,32000,26344,22353,37301,60523,95266,174346,157763,135598,142770,127115,112043,66004,57248,51172,72968,89054,112917,103311,115202,114400,86486,52783,54120,51165,42344,31661,31240,26460,12850,0,3016,5830,12026,16963,17041,23970,23860,16081,15354,16044,11256,7616,13466,16931,17846,22948,26732,25696,29696,29376,32756,24856,23633,30812,30000,22551,22997,34370,26365,17035,11074,30908,32420,46338,45922,57920,46263,53082,53806,51316,56028,49565,41150,23817,22962,23656,15158,18967,15398,10762,13054,9630,11304,11677,11974,14038,11682,9028,6138,3368,4778,6230,8648,3954,5494,5638,6036,5417,4263,4409,5663,4518,4116,3011,3288,3450,2746,2307,1751,2923,2806,2064,2884,3389,3164,4015,3356,2369,2150,1241,961,909,748,312,181,0,307,807,953,1117,1012,1102,1488,1750,2320,2187,2448,3379,2756,1713,2210,3945,4042,4770,5588,5432,6201,5270,5242,4170,4196,4296,3461,1907,1879,2008,3180,79,216,485,584,526,564,717,632,494,616,740,737,890,1065,1201,1394,910,1122,1068,1030,725,646,702,780,656,576,449,360,305,279,309,191,52 +0,11085,21133,29679,25841,36400,41444,39533,41137,47792,45277,41392,82170,88684,90466,82777,71902,65774,69712,78802,59684,71901,62938,86468,85635,72762,46144,62952,115944,89726,93246,109896,115364,107546,68180,38042,36211,43686,41149,41126,31445,39943,36308,27394,11480,8808,5150,2358,0,335,568,854,1367,1130,1376,1719,1800,1604,1326,909,545,442,292,238,59528,39156,29091,28433,31606,42523,50687,102522,195225,221990,179200,178230,116417,95803,63674,72349,38639,47183,71650,83018,74966,68548,76271,56944,49028,53558,45318,57699,30960,30092,21566,10338,0,4515,7628,15486,19783,16810,21020,28494,18111,13386,15345,12933,10291,10405,14762,14512,23772,27260,26692,27642,32513,23579,19629,18736,28547,23787,24782,19367,29424,24878,13982,7426,33002,35768,42548,34863,39572,38320,46588,41322,58223,59635,43744,39296,19726,17575,15952,11962,14490,12672,15506,21771,18036,16862,18529,19681,16944,12353,13134,9465,4547,6389,7866,9278,3447,4218,5094,5135,4340,4320,3510,5049,2664,2437,2045,2348,4409,3442,2788,2219,2855,3038,2604,2593,3648,3112,3742,2800,2170,1808,1320,1050,840,576,325,176,0,275,608,893,985,1095,1164,1322,1505,2519,3053,2458,2378,2267,1670,1976,5636,4127,3552,3428,3838,5269,5354,4278,3356,3533,2575,2459,989,1541,1598,2442,152,321,486,734,598,716,732,745,455,770,870,735,1422,1480,1518,1744,790,823,932,834,950,923,902,868,1161,799,786,552,521,536,455,338,125 +0,9752,20137,30422,29408,26960,38122,34768,41092,41702,31950,40577,58697,64718,65316,79238,68088,79836,105286,82213,64234,63477,69916,69744,59149,59077,37570,58260,88729,97503,86739,91552,123752,109458,64631,62944,47475,43168,51247,45786,37371,39578,34620,23814,10814,9848,5946,2678,0,520,1008,1244,2344,2420,3134,2847,2470,1836,2088,1332,916,734,491,378,62893,41972,26512,25207,28063,51790,69267,96821,161003,199660,213265,149763,87900,81414,47741,60726,25513,36423,67488,79799,62887,71635,78590,82610,52190,47238,49645,53924,33314,30668,16782,8012,0,6028,12306,17332,18665,19894,22073,35105,19582,20020,15610,14494,11746,10016,12475,13890,25749,21308,18756,22808,22452,18988,13104,12590,23577,18471,18652,19098,22679,15928,11263,6601,29950,35698,43302,33740,31437,31811,53220,37872,57729,43709,45530,29948,21550,18458,19766,15230,20142,17530,24868,22350,28956,32762,29293,26993,23885,19002,19445,12992,5567,8100,9629,10444,2872,4370,4639,4964,5630,4620,3667,5541,2681,2178,2205,2322,3662,3956,3264,2463,2706,3180,3247,3422,3509,3433,3676,2990,1444,1382,926,712,640,528,351,208,0,297,460,650,803,840,1080,1097,1924,2330,2408,2252,1836,1613,1607,1693,6008,5352,3821,3610,2980,3841,4706,3991,2970,3078,1969,1682,1017,1204,1211,1950,314,674,986,1176,1152,943,1168,1215,594,996,1036,1350,1748,1853,2295,2076,680,798,892,884,843,1044,1287,1240,1438,1278,972,820,762,655,793,555,173 +0,6448,12601,17056,25723,30583,28404,25249,48339,45728,60827,44064,38557,42441,55232,69633,93497,83842,62786,75777,91592,116368,106542,95837,59812,61410,84622,75538,62828,46293,35759,30398,124495,116048,112380,85562,51777,58231,52911,48198,47322,39142,40081,30894,14280,8476,4854,2724,0,616,1159,2199,2630,2652,3927,3348,3379,2703,2813,2109,1258,1117,869,531,49094,44903,53119,41190,32436,38572,49624,81284,171004,134920,88599,96240,100718,92385,60130,62787,14449,36440,55576,68002,74883,95289,88128,89786,57586,66452,54375,46274,39319,30847,14248,8247,0,8214,14615,18300,23295,20998,28429,30309,15344,15858,14560,14578,14904,10179,9148,12132,21596,19228,12198,14094,11303,10333,9648,7351,16484,12266,11742,12424,16748,14627,10579,6220,39232,43860,38844,39414,31500,35054,31166,37063,41599,44892,45005,39143,23564,26203,21767,14454,24424,25293,22278,23945,31744,28414,29260,33686,27634,19572,10811,7705,7222,5997,7650,12948,2536,2368,3181,3950,5279,7786,7835,5852,2018,2573,2969,2456,3165,3383,2553,1939,2108,2062,2449,2828,3290,2551,2297,1982,871,721,878,727,620,459,218,103,0,186,356,596,887,796,816,839,2272,2344,2823,2778,1998,1490,1618,2435,6984,5364,3841,2789,2161,1734,2025,2354,3689,2364,1906,1340,800,1447,2078,2004,468,491,610,1045,1459,1751,1973,1922,582,746,981,1526,2054,2360,2292,1830,745,680,598,658,908,1144,1389,1502,1776,1758,1403,1142,1060,1001,691,507,282 +0,5406,10582,13662,20852,23985,26469,23822,39367,41948,52262,47227,36594,29914,42880,42174,88794,90128,50835,74907,75504,83028,80902,85866,59252,54604,56876,59291,48407,31718,33206,29860,119466,119600,120542,91660,50115,63396,57149,58284,51992,38279,39789,31442,18804,11535,7640,3964,0,596,1311,1879,2799,3553,4167,3596,3967,2992,3412,2054,1318,1002,820,525,44494,59163,61450,52960,35694,44927,57176,77258,138280,120558,77891,88708,73308,71334,57061,44239,18168,31390,40896,56815,74218,83627,71895,62070,66130,51324,48668,41767,31001,23382,12831,6399,0,6765,11284,16558,25581,28657,33294,37205,24989,24006,26588,21404,30137,26696,17982,23206,15988,14598,11573,10474,8112,8058,9298,8791,19598,13274,12324,12345,13709,10923,9178,5130,49123,44486,40942,35075,30652,24801,26681,25968,43788,38524,34280,30644,17469,20604,17953,14273,23499,27825,29330,26077,34157,27150,26829,26194,21384,18871,11066,8888,10159,8561,9914,13790,1715,2155,2994,3619,4769,4820,6706,6464,1944,2560,2042,2228,3241,2938,2427,1676,1920,2020,1989,2409,2412,2328,1805,1385,823,705,897,726,457,436,218,98,0,192,426,567,748,912,1284,1414,2780,3373,4378,3356,3367,2924,2520,3392,4699,4524,4234,3965,2864,3096,3521,3265,4308,3362,2684,2260,1320,1498,2222,1779,615,832,1044,1512,2161,2167,2356,2384,1522,1518,1184,1707,2377,2022,1808,1842,553,662,701,768,927,1181,1479,1320,2136,1896,1656,1390,1362,1070,687,558,342 +0,4135,7438,10925,18527,22289,26185,19601,41830,43154,40390,41156,32660,29591,24618,30210,85658,69688,60482,77122,39954,76496,89812,87673,70643,66125,45379,39268,35934,31336,21521,19791,121381,96817,105050,97371,51331,72437,73662,76952,40463,38619,31668,31441,21910,13139,9812,5369,0,676,1159,1844,3618,2966,3661,3906,4372,4219,3166,2095,1272,927,757,581,40450,48594,66591,53662,39843,48229,61130,50537,159010,114309,68808,49792,54227,54086,35988,35502,15974,28161,42379,59176,58914,61209,50499,38544,54797,45903,40031,31116,27413,23363,12865,5426,0,4452,9584,12456,24263,33833,36106,35868,27574,28321,32297,27662,40758,33056,29317,25711,16244,13486,9860,9343,4694,5658,8722,11385,18881,16978,11934,9200,11139,7828,7924,5329,50696,47741,47286,35809,20943,17936,17192,19272,31520,21933,22418,13866,15129,16714,12746,16992,18018,19612,29496,21944,33148,27588,18618,17130,21880,15608,16466,13655,10786,9642,9780,15675,1251,1643,2458,2843,5454,4671,6068,6942,2372,2201,1926,1613,2686,2346,1594,1052,2507,2678,1958,1503,2689,1640,1314,1066,562,577,730,655,498,376,178,85,0,232,401,650,637,1018,1378,2369,4209,4022,4834,5046,3944,3648,4002,5687,4594,4976,4123,4947,3440,4535,4407,3729,4645,3524,3471,2931,1601,1481,1732,1428,983,1146,1454,1833,2873,2898,2652,2942,2038,1605,1734,2273,2457,1994,1744,1640,447,631,791,1183,785,1415,1644,1944,2363,1688,1752,1627,1495,1075,1016,828,481 +0,4257,7816,11326,12360,19380,19030,17826,32036,28630,30720,31664,23514,16964,14738,17086,61095,64060,48788,47223,34944,40954,55881,65800,51697,54041,39781,28661,27245,21378,13860,12728,110800,119432,92885,110376,94604,83586,89274,82038,51034,43752,31094,30810,23119,16747,12231,6094,0,821,1412,1980,3093,3782,3743,3850,4382,3558,3398,2172,1137,864,578,526,26668,40146,64733,66578,61247,59514,76750,63360,144821,89411,52478,39747,29844,32353,22744,19410,13045,23350,34090,35518,55324,48392,39668,35200,48939,42571,42110,27900,26934,19765,11122,5691,0,4430,10174,14450,19839,29802,36146,31046,29422,34626,29698,42286,68592,44547,44310,42443,9171,7778,6541,6470,5082,8056,8395,14531,17261,15998,13506,10127,11198,8025,5434,3712,50755,35576,45656,35574,17260,17630,16382,16326,15146,14310,17337,12502,13736,13053,14199,16080,22434,26776,43185,42406,35657,33294,21064,24876,27292,22979,20328,13902,10960,10628,8246,12392,1106,1826,2214,2670,3390,3742,3828,4336,2472,2156,1800,1884,1917,1653,1213,786,2530,2446,1460,1360,2034,1324,972,963,733,606,758,572,357,249,144,68,0,192,378,762,840,1236,1456,2562,3738,4401,4607,3674,4722,3813,4014,5584,6260,6120,4662,5554,6807,6366,5712,4813,4071,3405,2673,2490,2617,1984,1672,1080,1401,1360,1552,1818,2931,3051,3415,2920,2484,2272,1724,2178,2163,2226,1504,1516,245,507,877,1064,1170,1481,2140,1744,2146,1894,1851,1862,1439,1184,1132,666,532 +0,5765,10527,15853,24815,29213,37027,31634,29727,26777,23125,18650,8970,8725,10161,8214,53771,58158,68074,68653,89298,58592,52559,55610,46006,39105,25982,28293,34105,18472,11575,4664,113095,104342,80080,45940,19237,29156,39738,37298,46296,37348,21307,16332,7894,5825,3848,2011,0,322,723,853,1215,1149,1616,2868,4134,4527,4334,3365,2678,2182,1012,602,15566,45006,62758,70202,81005,99951,106742,83608,83268,80648,63033,48795,44129,27772,21516,11608,15177,12241,11216,10353,7071,13117,22381,26715,42572,38355,25435,24119,31223,22793,11875,7044,0,5096,10214,12178,17460,30097,40229,47844,40736,46933,47792,48286,63964,74938,60957,58056,2824,6036,11991,15032,21799,24612,30195,30214,22126,13120,9824,7370,5373,3762,3170,2174,37596,37447,50796,47065,37571,33004,28384,19914,4890,3894,3307,3450,4933,9545,11260,16981,28948,33634,38732,37688,48343,49031,45515,30210,28659,19221,16748,15515,16690,13341,16058,14833,1409,1571,1563,1495,1906,2610,2714,2781,3014,3072,2772,2532,1725,1115,1023,478,1907,1572,1488,1358,1666,1746,1337,1358,929,916,870,836,585,391,303,176,0,626,1499,2072,2965,3161,3757,4217,3890,4081,3642,2937,1450,3557,5222,5683,7376,7840,6459,5054,5246,4693,3982,4594,3848,3060,3495,3519,3417,2982,1879,930,1475,1368,1066,1624,1831,2167,2640,2489,2978,2462,1605,1836,1905,2108,1671,1393,0,121,238,424,486,912,1384,1668,1701,1853,1701,1434,802,754,717,646,542 +0,4398,8375,14386,17532,26866,33559,27900,22818,21762,17354,11503,8613,10218,9702,7384,41084,51268,60540,75322,91061,83242,49778,55356,35210,33704,26098,26256,21527,15595,11956,5494,112198,90652,76122,53685,26860,31205,36907,51445,31144,29272,18934,14658,9914,7020,4471,2328,0,698,1403,1710,2412,2542,2400,3366,4250,5044,4940,4048,3441,3288,4026,3254,11864,37656,52549,57709,92620,89139,87455,96584,88222,87237,64058,69129,64184,60661,61882,38986,40475,33903,28965,23148,39278,45522,44156,44066,28437,31330,31346,29230,27880,18988,10032,8549,12520,15470,20663,20787,18036,33002,40610,40866,43135,57092,45862,59372,45394,55814,67908,71454,4975,7703,12344,12534,21973,25058,23848,23075,22926,13328,12057,8686,5320,5230,4469,3334,23940,31744,40004,38468,37390,34891,28160,17248,4797,3942,4027,4046,5512,6582,9833,11126,28910,33122,37344,39118,47906,40140,43301,32519,30195,25206,17082,16658,13320,13587,11421,10277,1894,1503,1907,1812,2227,2072,2185,2512,3828,3188,2968,2234,2005,1838,1334,1049,2823,2443,2449,2414,1837,1620,1121,980,753,742,541,609,458,334,306,156,0,590,1383,1716,1918,3020,3033,3338,2754,3349,3781,2634,1903,4449,6348,6038,8132,8005,6552,5726,4846,4591,4162,3483,4208,3719,3035,3766,2576,2390,1684,1210,1354,1162,1332,1566,1718,1934,1974,2626,3244,2306,1596,1555,1968,2017,1934,1676,98,162,248,372,495,731,1342,1410,2120,2136,1433,1135,1074,946,1055,894,515 +0,2676,6526,9648,14124,19208,21620,24526,19714,15109,15698,11545,10988,8160,8095,5342,42794,43254,52262,69501,69344,54538,57802,43974,25079,23830,19038,18871,16726,11709,9622,6142,84130,87298,72910,50323,33728,41761,50820,54722,26180,24910,18814,15945,11300,9444,5481,2748,0,966,1790,3051,3468,3165,3643,3614,5792,4732,5342,5686,4240,5795,6258,5916,12680,35352,53190,60037,91956,84252,68510,105235,72077,65542,86764,88223,88272,78594,81668,60901,59796,46547,40526,42045,66279,69810,83938,75645,22859,31644,31482,34879,23573,19761,12305,10761,20976,27474,27348,22964,25406,23962,29594,36413,64817,71508,57987,69420,37201,38450,57064,54006,8874,9850,9486,11659,21934,22636,17526,16699,19877,19942,15463,14816,6891,6271,5737,3483,21518,27026,30519,24724,28188,31169,23960,14246,4988,4276,5151,4679,6181,8770,8882,6919,19829,20862,31487,41280,34643,41510,35332,31280,21993,24790,19812,12907,10450,11708,9220,9338,1830,2136,2110,2228,2105,1984,1414,1905,3876,3320,2394,1848,2553,1618,1233,1507,4255,3843,3214,2947,2246,1639,1045,1036,598,452,468,456,320,272,237,110,0,504,1074,1409,1675,2431,2832,2824,2590,2470,2986,2702,1737,3771,6481,7028,6408,5834,5426,5109,6159,5007,3739,2971,4188,3472,3758,4544,2500,2096,1844,1388,1664,1273,1154,1106,1433,1352,1704,2280,2459,1560,1398,1107,1509,1257,1553,1673,196,298,305,382,392,537,876,939,2105,1553,1688,1180,1253,1050,1131,757,400 +0,2130,4338,8873,9691,12221,16742,16928,15182,12510,11488,9217,10799,8967,6635,5418,31957,40392,35828,53327,51715,46552,51983,35658,16752,17290,17907,15210,12232,12744,11720,6573,59807,63872,41913,36996,28843,42086,43105,46829,24859,26720,23732,17370,10737,9091,5294,3315,0,980,1841,2808,4147,6018,6113,5862,4768,5729,6302,6420,6402,8791,8534,10160,14193,28900,42099,41802,65645,78102,72202,98186,70896,63402,109222,101718,80036,80364,81140,80119,56042,54308,63036,55036,83948,87538,84980,84636,21642,21574,25628,29320,23464,23545,15267,20804,31344,32240,36380,37046,31460,34172,36994,39647,67600,59290,57361,66862,45430,60128,51007,51489,8816,9742,7082,9844,13270,15960,14893,12806,24994,18804,20733,15074,10888,8333,6504,3646,22074,26834,26933,20891,19440,20090,18472,10565,4695,4780,5003,6039,5776,5824,7884,6366,13670,17582,22161,28186,32480,33504,27189,25020,27623,25522,24688,18768,8916,8970,10392,8590,1497,1698,1648,1769,1440,1509,1335,1464,3673,3202,2336,2246,2414,1708,1478,1514,5138,4608,4418,3500,3055,2246,1305,926,606,414,375,432,292,266,159,98,0,455,750,1098,1786,2263,2708,3116,1553,1868,2211,2504,2086,4632,5523,6500,6645,5268,4988,5352,5240,4516,3569,2440,3285,3276,3216,3556,2807,2650,2586,1894,1696,1276,1200,1395,1562,1700,1858,2306,1787,1357,1066,1183,1573,1496,1786,1582,342,438,412,384,470,622,835,799,2257,1902,1655,1046,1269,1214,1168,740,523 +0,1499,2973,4847,8845,9502,7459,5980,7225,7764,9716,7480,7204,8450,7162,5866,18695,28036,39944,48521,47054,29514,22130,23916,11237,14645,16725,14173,13708,10798,9918,6292,26797,29693,34610,31970,31514,43157,51564,55577,32872,19292,14707,15946,13472,12713,8220,4114,0,1316,2945,3204,4945,7350,9285,9908,5838,4402,4608,5697,7861,10343,10357,10712,16748,21421,34759,49330,55575,56810,52829,68725,65382,75301,82811,78429,106962,88359,89609,83427,71403,64055,78588,100345,97764,93718,92516,85726,15851,15862,15755,20513,29873,37800,40832,39103,34639,36920,39326,47310,40874,36826,45165,45425,56822,70700,61523,53588,51000,49454,56343,61409,12350,12535,11899,12599,10872,9582,6404,6455,26718,18232,17037,14447,11732,7357,6536,4549,17652,16794,16922,19122,17702,13939,6980,5285,3983,3700,3652,4322,6284,5538,4371,3940,7614,9389,9788,15658,20792,15598,16148,17585,25359,22311,17713,13819,6976,7164,8194,9026,1872,1602,1602,1259,1476,1418,1360,1189,3986,4092,3549,2908,2871,3037,3176,2394,5570,5747,4378,4548,3342,2732,1597,1098,582,551,586,550,344,277,185,86,0,466,836,1040,1460,2154,2130,2300,641,953,1166,2000,2408,2714,4008,5469,6225,5173,5968,5053,4424,3375,3504,2214,3144,3427,3585,2866,2812,2456,1528,1618,1196,1071,1036,1397,1612,1594,1464,1642,1139,1059,1089,1397,1238,1576,1438,1297,607,456,483,618,623,805,825,796,2577,2247,2014,1395,1135,1135,996,892,778 +0,1084,2146,3507,6202,7042,5676,5380,4839,5336,6578,6368,5044,6157,5781,4706,10816,16306,31036,32832,31790,24124,16402,16856,7947,9952,10500,12746,11939,11113,9764,7610,27361,26692,29064,34038,31251,37684,35030,41870,29550,23538,15120,10872,11085,7732,6994,3252,0,1298,2516,3650,4857,7019,7046,7622,6124,6460,6149,6728,9981,11588,9765,10768,16032,23036,27782,42486,41025,47960,55710,78802,68070,73311,73566,84660,117667,94893,123500,103283,84575,76496,102641,104924,86592,93522,106912,108474,36912,29826,26667,26908,41434,42729,48959,51438,36362,29442,37552,37200,26511,31154,45939,41370,67318,64822,72151,59919,39199,53584,52041,44108,21370,16746,14664,12744,9076,8494,6600,7036,28151,19200,14479,10951,12163,8596,6522,4216,16525,16998,10978,15332,13439,10774,7022,5636,4508,4682,4982,6338,7136,6648,5783,4771,10930,8213,11251,13774,20062,19548,14764,19775,17273,15368,14326,11549,9526,7208,6151,6183,3948,3274,2667,1626,1779,1757,1846,1762,4154,4772,3441,2980,3133,3558,3431,2702,5478,4762,4134,3777,4631,2998,2159,1442,410,496,492,428,257,202,141,68,0,336,655,868,856,1232,1406,1878,501,795,1323,2228,2859,3778,4461,7126,6088,5860,6918,4418,4269,3622,2791,2098,2678,2456,3426,3034,3171,3206,2539,2218,2086,1664,1593,1806,1648,1448,1535,1894,1436,1308,1234,1008,1176,1106,1001,1202,886,858,967,1040,917,1049,996,1056,2631,2218,1802,1798,1566,1134,1080,850,738 +0,863,1502,2174,5139,4546,4161,3560,2483,3320,4143,4555,2955,2520,2650,2644,7901,12068,13319,16608,19780,19498,14250,13128,6305,5988,7761,9292,10879,8287,8828,8956,19914,26382,24530,27048,22368,26450,31231,25740,29274,19551,15828,9369,6120,4352,4054,1792,0,1400,2479,5142,4487,4946,6456,8293,4727,6849,7800,8122,16261,15042,13276,13712,19471,25843,29800,35071,46633,54713,66545,95509,56154,69883,67664,88519,149236,166047,136012,104214,77599,89201,97859,136121,118032,93768,103408,106448,50108,42350,33216,35827,45227,38161,44120,39148,28662,37336,34374,37296,22278,32144,42566,58439,60317,60184,58948,52106,38313,42120,37466,33381,24536,17601,18811,14123,7771,7924,7873,8292,23074,17165,16035,11376,12661,10174,7074,4714,14340,10252,10455,10610,15566,9982,8855,5714,4436,4980,7724,7632,6382,7313,6296,7524,11320,9474,9079,10985,14408,14036,19037,19531,15509,15183,14784,11457,9710,8055,6688,6726,4829,3196,3136,1744,1636,1676,2010,1659,3134,3134,3480,2767,3076,3777,3926,4733,4450,4251,3302,4024,4691,3610,2010,1114,404,389,254,194,108,104,68,41,0,236,426,446,590,864,1156,1252,390,737,1192,2222,3260,4530,5600,7590,4001,4568,5682,4459,2829,2115,1769,1657,2280,2535,2492,2756,2570,2970,3094,2322,2420,2043,1911,1851,1794,1583,1888,1675,1386,1129,1106,845,756,820,894,1185,883,919,1186,1413,1004,1227,1418,1736,3114,2838,2446,1950,1555,1102,988,675,521 +0,458,741,1050,2990,2882,2410,1848,1142,1630,2188,2446,1714,1650,1526,1350,3332,4664,7214,8071,9976,9650,6642,6836,2870,3730,4650,5370,7831,9167,9633,11212,16754,22152,21447,20297,24307,25625,26614,22112,25162,20196,12966,9540,5609,4776,3606,1978,0,1404,2079,4087,5941,6804,6434,7416,6068,8506,8844,9842,16074,15862,18244,13257,18601,25606,31917,38129,53504,57290,77616,93712,71480,69458,67328,104254,151868,160661,122411,105716,99764,115788,128727,110364,108608,97802,102881,104376,72876,78048,54450,45040,42990,40717,33578,39115,43874,38198,29358,34943,25824,31545,43252,52772,71081,63874,57353,49566,46579,38374,34783,30179,27675,21313,24422,18024,9088,11193,11107,8213,16582,14584,11934,11934,11668,9388,6106,4796,9726,8068,7884,7980,9076,5819,5564,4540,4408,6322,8476,7545,8119,9736,10357,9668,12536,8907,6865,8587,10756,12560,14129,20213,14452,15674,13450,10795,11018,8562,7367,7182,5302,4322,3312,2002,1531,1941,2453,2004,3158,3636,4018,2624,2798,3338,5036,4886,5488,5000,4802,4504,4493,3521,2028,1285,232,228,126,114,64,52,34,23,0,134,234,257,350,444,678,590,210,881,1403,1888,3293,3566,4142,4940,3735,4572,5874,4972,2960,2250,1432,1360,1743,2066,2167,2891,2278,3122,3498,2792,2148,2626,2366,2286,1891,1670,2096,1639,1456,1282,1040,850,1002,986,792,1020,895,1000,969,1421,1604,1480,1533,2159,2328,2538,2384,2114,2070,1748,1607,989,668 +0,757,1407,1784,2163,5502,10396,17121,19926,21214,17539,22191,29510,30643,33818,32444,20699,14903,7348,5517,2180,1586,1094,574,0,2526,5074,9491,15039,18454,22045,24888,23131,25330,37205,32558,30119,27725,20272,24294,24282,15585,12096,8214,3558,2611,1413,787,0,62,114,162,166,412,633,900,1177,1435,1461,1724,1858,3670,6761,9164,8578,9890,8728,7639,8801,9067,7701,5238,5375,3817,3734,3286,3896,2626,2299,1142,0,2150,4094,5809,8154,10489,11077,12569,13036,13082,14307,14507,13080,16163,14598,12870,10088,7501,5464,6784,6720,8783,8378,9888,9508,9843,10550,9399,9519,16215,20629,24735,21099,33733,40848,44352,40667,38951,32555,26698,27128,27054,20416,9757,3453,3976,3668,3151,3281,2642,1954,2462,2200,1558,1355,1558,1882,1505,847,709,660,555,318,167,0,16953,32838,35793,53209,60467,66699,59177,60754,81825,90284,106582,107215,105888,71866,74591,96912,69096,43014,30071,14357,8329,4331,1831,0,0,0,0,0,0,0,0,0,5659,9687,12188,17277,23002,22766,26924,36250,36591,41622,40238,27398,34066,34417,35451,28272,36962,37985,38316,28298,25563,23673,17572,5706,4978,3053,1975,1609,1074,756,354,0,3462,6419,7244,9678,9032,6872,8873,11975,16535,16012,18913,21196,25104,23764,24123,23284,27068,23140,20211,23348,20273,18364,12912,12811,10118,7705,7016,9585,5678,3239,1918,0,0,0,0,0,0,0,0,0,254,426,638,760,877,782,732,899 +0,588,1258,1694,1696,4169,7790,11195,12274,15664,18052,19282,27458,23558,34031,29196,47434,32530,17122,14568,7607,5830,5414,2240,242,2192,4928,8370,14346,15845,17697,17913,27319,34477,39950,39167,26971,30103,29774,22236,23635,18545,13664,9990,4817,3501,1600,974,1662,1746,2069,2280,2870,2286,1325,1091,1053,1459,1736,2016,2476,5142,7977,8205,7296,6534,7084,5940,6762,6515,8508,6258,4333,4406,4164,3535,3318,2215,2246,1035,0,1674,2963,4999,6928,8137,7156,8111,11842,12976,11966,12580,11191,13478,14108,10972,9456,7856,6036,6789,6953,7208,5727,6293,9960,9477,7862,8530,10868,11672,17056,16831,17689,30473,44120,46890,41234,42998,33046,29756,31728,22209,16462,10866,6354,4270,5365,3580,3696,2690,2849,3088,2117,2326,2404,2486,1984,2028,2384,1806,1487,992,566,350,10194,22887,27073,39734,48872,58874,57949,62300,64642,71568,81978,91474,98744,89670,74021,66756,131976,116514,85265,41112,16603,11484,10308,4406,0,0,0,0,0,0,0,0,0,4675,10660,13578,18679,19921,23534,22968,27353,30730,37349,37304,33899,32360,39370,33735,39986,41910,38637,29992,30840,34277,29714,18476,7595,5236,3969,2793,1504,1212,1250,658,0,2607,5218,6882,7716,7656,8505,11158,15352,16574,18433,19235,18000,20024,22467,23496,19389,17478,21968,21155,17906,15081,12584,11796,9553,6990,6258,7764,8657,5649,2611,1472,599,521,426,447,450,360,184,162,1383,1006,890,944,832,902,1030,1185,1295 +0,416,994,1671,1312,3704,5684,8355,10744,13827,15964,17952,21231,23439,25980,16220,60171,40168,34373,23980,12742,8801,8300,3854,521,2287,4792,6007,14958,11903,12744,12870,23798,23261,33900,36547,23912,22480,30554,24380,26607,16712,11910,6706,5373,3784,2310,1566,4039,4083,3688,4784,5198,4436,2658,1589,1234,1800,1880,2886,3825,5175,7106,6374,6106,4667,4002,5208,4523,5153,6609,5145,3287,3670,3529,3068,3128,2003,1720,924,0,943,1928,3182,6107,4798,5778,6632,11427,11408,10928,13191,10318,8368,9646,10597,7176,5939,6756,5847,5838,5517,4804,4196,8322,6861,7120,5259,8846,10570,8988,10764,14910,28850,37056,48371,39137,42008,36826,26011,26518,18248,17698,13376,9410,8724,6484,4452,4082,2898,2913,2646,2129,2648,3966,3922,2441,2958,3576,3371,2029,1840,1086,568,24225,25649,25784,28866,55308,70882,70032,72625,53330,70332,74036,86659,59506,59027,63342,74736,191202,172652,100953,63420,23275,17183,12892,6799,0,0,0,0,0,0,0,0,0,3758,8294,13170,15994,19044,18270,21283,17488,30437,38670,29988,36713,40780,34113,30401,41731,38046,29144,28626,43183,29075,28906,19426,9386,8121,5225,4035,1996,1514,1530,836,0,2804,4800,6785,4018,7458,8896,11063,17006,18475,17096,17167,20581,25388,23914,18282,17934,17742,13686,12413,8817,8371,11810,8643,4987,4476,5056,6708,8664,5994,2792,1524,1122,979,970,894,1037,688,444,338,2742,2402,1295,1796,1283,1149,1008,1274,1392 +0,620,1333,1566,1550,3132,3777,5932,11657,18515,24021,25523,24467,25300,22465,11546,69505,48651,36020,23614,17819,16726,18030,8952,809,2014,3288,5109,9719,9365,15006,15923,27036,25149,38109,33908,24934,23546,23394,20184,22780,18356,9910,7294,4238,3068,2548,2118,6500,6624,5588,7260,7360,5428,5317,2940,1144,1956,2279,3382,3700,4246,5981,6740,3921,4251,5074,4837,4842,5938,5630,5036,3983,3120,2984,3292,2749,1924,1938,950,0,876,1453,2870,3978,3911,3938,3417,8240,8082,7242,8637,7316,8524,7872,8228,8628,7590,8033,6298,5751,4884,4674,5601,6684,7124,6087,5920,6630,6539,6275,8411,20095,27820,28586,36934,40590,33520,38322,34314,34193,32920,24871,18052,15982,10456,9277,4733,3639,3314,3632,2812,2194,3708,4318,4342,3954,4380,4742,4500,2943,2219,1325,672,26754,24986,27001,31576,47353,54294,56814,79188,52692,62560,64482,76024,64593,70367,85939,87967,161049,166382,98218,72502,25380,25074,16676,7676,0,0,0,0,0,0,0,0,0,4409,11254,12520,13448,18606,17736,17314,17021,24712,38087,34633,34669,39833,39070,52310,40144,28860,34872,26322,34148,27222,22354,16706,10419,9036,7465,4989,3274,2319,1760,992,0,1638,2802,5088,3156,6402,9798,10570,21928,14740,13361,17046,15560,19832,19694,16191,16490,16645,12456,9954,6332,6490,8075,6000,3506,4125,5073,5760,6549,4664,2641,2311,1816,1846,1438,1253,1361,1172,777,588,3970,2560,1487,2038,1525,1578,1424,2054,2105 +0,514,1036,1382,1929,3132,5294,5343,15805,18622,21141,20280,21360,18090,10881,7242,67191,58048,54414,40042,30400,26124,14777,7163,850,2213,4122,6279,7249,7800,11534,10068,25183,22535,30239,34417,28393,22032,23691,19172,24288,18787,18834,10076,4986,4956,3333,2873,6857,8888,11338,10970,10202,7373,5546,2742,776,1752,2598,3344,4398,5221,7140,6229,3223,3531,4886,5175,6236,4284,4424,3602,5381,6042,5336,3690,2510,2064,1567,713,0,460,974,1210,1749,1674,1971,1844,4948,7432,7593,7266,6348,7543,9585,9024,9059,7500,6622,6410,4414,5620,7301,7844,4513,3790,4186,4300,4668,5018,6117,5665,28072,33621,39080,28013,30308,25390,23517,20689,37480,31455,19998,16908,18766,13781,8056,4995,3165,2713,3043,3785,3310,3412,3386,4016,6023,5250,5312,4946,4418,2995,2033,1149,34855,31610,39646,37763,32325,43750,56116,83597,51105,62643,70637,61345,62752,89849,100101,93170,187000,180676,134064,93338,33206,20558,12960,5340,0,0,0,0,0,0,0,0,0,4582,8043,14760,17362,13077,10210,14176,14779,22914,34100,41308,34920,36047,50232,66537,47643,42366,55558,49716,34518,30547,16740,14111,13405,9888,5731,4999,4180,3364,2830,1184,0,809,1782,2600,2881,3832,5074,7598,21339,17848,17458,14917,16294,14760,9287,11870,17222,14595,9189,6019,3282,3118,3083,3746,2454,3455,3333,3290,4864,4630,4026,3387,2681,2115,2247,1810,2256,1865,1832,1054,4214,4414,3289,3174,2130,2697,2499,2658,2820 +0,367,738,896,1757,2766,3679,4422,9396,14786,15807,15906,16446,14238,7653,6344,75651,54616,51543,41908,40762,33187,19755,12748,3204,4790,7325,8758,7372,11406,11831,15830,22064,24687,32613,30669,32971,23836,24900,20666,24324,15796,14594,12886,7799,6176,4501,3229,9159,10948,18314,15776,16233,10456,6623,4030,584,1578,2025,3535,3781,6200,6379,7836,4719,3522,3944,5466,7112,5828,4220,4371,6210,4520,4196,3512,2992,2174,1503,780,0,398,650,962,962,1080,1082,1202,4170,5283,4684,5730,3574,5264,6066,6784,6951,6064,5935,5000,3063,4564,5752,5451,3109,3366,3536,3306,2740,3890,3665,3980,27018,32121,35743,27054,44736,36705,33951,29448,32600,23898,21356,20624,21502,16108,10300,6825,3051,3588,2803,3692,3423,4528,7132,9346,8984,7306,8153,5465,4608,3494,2112,1164,28646,40977,39435,48288,36257,55250,59768,81174,58079,59228,55351,65166,53469,82648,90839,71420,394162,242357,180076,112724,49117,40637,24862,13132,0,0,0,0,0,0,0,0,0,3290,6250,9871,11244,11920,15352,16056,17158,24024,35845,29316,49039,52988,65952,74206,52566,45320,49495,42431,37107,26326,16119,16362,15109,10890,9249,6147,6235,4140,2897,1467,0,992,2281,2380,2900,5464,5568,8162,14912,19762,15802,16139,17704,13653,9585,11474,15442,13117,9513,5421,3326,3790,5047,5711,5144,5316,4602,5157,9390,8593,5690,6238,4888,4257,3980,3686,3345,3348,2963,2516,5146,3946,2760,2654,1824,2528,2633,2666,3032 +0,400,674,872,1318,2388,2918,3716,6149,10368,12006,15982,9884,6982,6366,4398,59477,48855,51655,34896,56979,38579,27614,17306,5116,8433,10446,10948,8930,9652,12854,17259,20661,25706,24874,18774,26918,22560,24952,23983,18011,16766,13645,13774,10445,7034,4985,3393,15874,14927,20697,16605,18656,11917,9982,4426,243,1301,2370,4021,4990,6984,7313,7676,5948,4046,3813,6660,5778,5144,3901,4146,5064,3585,3268,3611,2551,2094,1586,926,0,278,546,842,546,638,610,779,2732,3628,3648,4395,2372,4042,4894,5687,5388,4765,4310,3618,2864,3402,3593,4293,2978,3145,2914,2271,1522,2146,2612,2822,32862,39456,33838,22118,45056,34794,36645,27770,26646,23691,16223,22220,20624,20309,14429,10306,3233,3723,3625,3358,3328,6352,8508,10968,15232,11037,8786,7279,6016,4974,2368,1223,29070,40503,45572,41827,47813,74430,90750,105281,63447,70572,63094,55506,41637,47054,66726,55822,472640,404950,241540,162770,77422,57400,46403,25722,0,0,0,0,0,0,0,0,0,3105,7178,10081,10503,13925,15784,16516,26461,24702,31742,28096,57048,79878,77648,81402,42721,52722,45273,35525,30600,22853,16302,16271,15486,11284,10038,6826,7233,6567,3918,1983,0,878,2106,2310,2174,5150,8396,11839,13805,15832,18916,15952,14343,13423,11084,12660,15841,11824,7733,5312,3141,4786,5524,6378,7212,6150,6652,6437,12835,8546,8255,9454,6662,6564,4648,4469,5993,5778,3846,4032,4826,3863,3301,3221,1200,1518,2574,3854,4290 +0,154,356,413,785,1331,1705,1749,3411,4972,5448,6787,4726,3707,2568,2252,70782,57712,47793,44904,64338,39243,27466,17997,5884,7307,11151,13442,15113,15913,13988,18567,20942,23633,27429,23324,24331,20144,19289,16329,14879,14248,13031,9934,12488,7945,6006,5474,18988,24686,31598,22622,16918,15666,11224,5246,106,1038,2180,3092,3757,5540,6279,7978,5300,5002,5623,6396,7079,4874,4009,4110,4369,3992,2951,3104,3040,2001,1831,908,0,128,306,444,290,317,344,415,1543,1635,1637,1584,985,1720,2252,2916,2317,2676,2294,1792,1234,1774,1559,2068,1521,1636,1568,1192,675,1136,1193,1146,31613,31868,28010,24621,40258,33674,31949,27300,30910,32788,20705,27206,23391,23887,20478,14476,2653,3306,4656,3926,5138,7202,9884,16766,19616,15131,11694,8486,6593,4890,3558,1710,34786,49316,43580,51820,55292,81212,66910,94066,72443,66794,43860,39950,40463,40639,39754,32917,413263,361170,224652,170042,146742,86500,54960,23854,0,0,0,0,0,0,0,0,0,2754,6611,7920,12332,13930,18589,21936,28686,29910,34642,40696,47984,69908,71809,65412,31396,41247,37718,37624,26289,23895,16330,12970,10427,9596,8614,6921,6914,5432,3856,1879,0,1083,1882,2171,2253,5298,9737,9506,14984,16936,14380,16302,11596,13660,11670,11403,12338,10126,6404,4910,3596,4278,8145,8296,8988,11870,11304,11018,12136,13026,15925,12772,7265,7366,5038,5616,5544,4244,4944,4664,4204,3596,2898,2404,1360,1846,2543,3123,3883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62127,59684,71612,65214,60962,49630,39684,25867,7218,8868,13779,15786,19820,21973,23231,21388,20442,23625,30556,24799,23932,24890,18632,12403,10177,8295,7856,9863,9322,6141,4616,5083,27172,24488,28582,24913,20889,16098,9208,4963,0,2238,5576,8108,9081,12456,12589,13743,7011,5278,4373,3347,3579,3555,3589,3995,3918,4398,4881,4322,3124,1994,1571,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25176,22101,24452,21500,11445,14230,15240,23452,29354,35464,37803,38784,29011,21446,20334,16209,2345,10934,15990,20606,21015,25702,29281,24849,21008,18324,19752,21834,18253,11712,6052,3033,51974,44276,25965,20290,24691,38380,44188,51485,62460,48893,28538,19496,6552,5345,4430,2002,553573,476572,510933,508509,382949,272691,250182,108901,0,0,0,0,0,0,0,0,0,1396,2964,3476,5306,9866,11373,22082,29404,21300,21766,29371,31482,48761,53589,55824,29360,32700,35640,37296,30379,22968,12525,10211,9346,8256,5448,5133,5705,5044,2831,1275,0,2839,6427,9308,10430,10331,7308,8590,12438,13481,14495,9648,9239,7122,7206,7958,10315,11211,10336,9275,6877,6445,8612,10950,9774,8415,6798,9200,12432,14220,14048,15648,7867,7298,4529,5840,5336,5482,4544,4275,5218,4297,3769,2966,3306,3142,2928,3461,3601 +0,586,1128,1662,3534,3353,3092,3048,5376,9220,12518,17467,14583,16010,19538,17790,57998,63122,75816,57522,46494,47634,54624,48544,15318,19629,21772,21126,34232,28040,28520,28645,17142,21850,25204,23787,18250,18582,13715,14640,11123,9806,11642,10645,11556,9692,7305,5814,28095,22606,23333,23828,18880,18810,14807,9592,971,3511,5224,7014,7564,9697,12068,11118,5010,4306,3729,3148,3197,3446,3182,2977,4150,4520,4018,3404,3451,2180,1235,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,811,941,1121,1072,945,883,727,508,510,500,410,192,629,1077,801,24567,22480,23418,18862,10484,15162,12278,17822,21052,27957,31127,28584,32354,23244,18576,12379,3267,9146,11296,17250,22976,28868,29952,25830,18963,25043,26564,22244,23081,19646,14656,11281,45752,44446,32501,38340,27217,33538,41734,49554,49137,42308,28372,21259,7882,7237,5927,5228,497662,572082,476519,450248,395294,316563,197239,111378,0,0,0,0,0,0,0,0,0,2222,4172,5214,6346,10174,11609,20092,31124,30654,25602,38007,33487,39464,46153,68072,24791,29812,39014,39359,33984,24581,13533,10043,7213,6526,4730,4150,5228,4012,2658,1074,0,2384,4586,7653,10030,8390,7727,7802,8170,10462,9996,7577,8086,6236,6499,7213,8587,8222,9470,7724,6886,8143,7234,7968,8592,8098,7181,9647,11678,12298,13017,13738,7263,7732,7362,7061,6862,6350,5639,5070,5200,5586,5293,4924,4795,3817,4978,4111,3337 +0,844,1964,3176,6657,7933,7674,5697,9400,16442,21377,31066,35929,29402,36381,29915,53628,56922,56232,43898,47912,56463,68420,60148,28266,27128,23471,23776,39960,43126,37163,27609,20393,24543,21274,20098,12587,9977,10600,12662,13935,13132,13004,12269,13775,12860,8782,7396,20679,20613,22930,27271,25406,17746,18214,13914,2258,4144,5918,7964,6795,8588,8530,6454,3029,3123,2198,2312,2630,2015,2381,1727,3197,3467,2676,2502,3148,2266,1438,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1867,1616,1793,1838,2174,1804,1762,1255,1066,1128,864,775,403,1286,1822,1971,21311,17214,20208,16686,13071,12985,14660,15660,12605,13638,21170,20707,26308,24476,20146,12878,3946,7350,12034,13668,27850,27746,30234,28202,23290,28835,28838,25829,30615,26494,20242,17744,37267,43580,35688,44835,38117,43790,44926,54576,44331,37427,35718,25450,12385,10784,9718,7676,634404,597821,545778,506411,315741,271407,189370,80948,0,0,0,0,0,0,0,0,0,2110,5160,8372,7620,9517,14118,24083,38059,34964,39678,49353,38971,47137,59198,65220,23947,29073,35160,32988,33045,21151,15706,9187,7745,4923,4048,3195,4572,3247,1846,990,0,2138,4054,6056,8474,6707,7574,8094,7005,8739,8962,6100,7105,5734,5032,4754,9132,8471,5559,5049,5733,5820,8443,8681,8031,7913,9260,9919,11204,11206,12520,13460,9586,9041,8576,7141,7783,7280,6178,5864,7167,7900,6358,5862,6381,5628,5402,4520,3592 +0,3071,4777,6570,8190,8522,12240,13135,15565,27825,36550,43508,44515,55309,53871,57942,67947,74777,62737,49175,53135,75826,78666,91456,38165,33830,24490,34154,42963,47542,51327,44324,14845,17236,19086,21020,16666,13718,13940,12774,19321,15884,15276,14885,15126,11066,9194,8054,22390,21234,28070,25700,20719,19138,14510,16351,3792,4456,7095,8226,7722,7197,8453,5974,2086,2050,1708,1766,1493,1444,1824,1290,2649,2654,1899,2017,2356,1564,1165,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,2594,3213,3054,2789,2297,2360,1539,1583,1774,1418,1140,738,1698,2626,3212,28248,20614,23012,16544,9332,13056,14326,13738,10155,10684,14984,14268,19336,16779,12435,9792,4563,8732,10703,14466,19756,24102,33740,31393,31592,29136,21336,26725,26262,32474,36685,30039,27061,30223,37558,47100,55544,52916,48444,57345,48615,35290,23075,19006,16799,11910,11266,11280,674056,660707,613183,470296,342889,197719,122938,74626,0,0,0,0,0,0,0,0,0,2818,4737,8152,7529,13010,17154,20316,45936,38276,43994,56718,47873,55685,58868,66278,18323,24934,27613,24118,29514,16604,11936,8024,5440,4970,3314,2606,2960,1998,1566,740,0,1593,2872,3878,5622,5510,4596,8183,4388,7402,8359,6367,5203,4656,4694,3745,8399,8370,4700,4528,4734,6380,8888,7425,7620,8653,11490,10362,14128,14266,14722,18509,13764,12461,10290,10735,8423,8492,6225,4988,9296,7594,5950,7000,6949,7652,8692,6804,4948 +0,2395,4051,8061,11858,14074,13322,17361,22853,30470,40823,48510,59223,49152,53357,57283,116134,98918,63307,52510,45530,57195,57588,80124,43661,43915,34012,34428,46911,63030,60732,63737,13700,10428,9843,11032,15598,13659,16664,16794,24498,22192,19143,18792,14540,10906,8256,6726,19505,16007,16217,21363,22012,23564,19029,22068,5992,8000,8733,10352,9524,8868,7686,6935,1225,1244,1199,795,592,926,1051,1008,1412,1371,1910,1571,1448,1009,474,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,3964,3161,3005,4068,4240,3617,2196,2021,1600,1759,1420,882,2313,3620,4815,27939,21784,21446,17042,7990,8082,7775,10212,8862,12764,13354,13685,11058,10236,8242,6088,4086,7200,12034,18434,19586,29186,36728,43848,49613,37534,29863,28347,26924,39095,41484,33045,14601,21208,35300,40198,62726,48269,57666,54796,46357,31726,27182,22164,16324,14775,11354,11816,821635,779777,744653,541762,269288,202342,113318,51889,0,0,0,0,0,0,0,0,0,2436,5886,8802,9868,11075,10559,15349,43651,53721,51862,54133,50716,47300,64667,62285,17744,14247,13947,17621,18151,14411,12662,7324,2489,1917,1533,1322,1608,995,660,324,0,627,1331,2322,2903,4726,5842,5560,3912,5582,6465,5049,5844,4895,3189,2792,10236,9123,8791,6982,3086,3560,3789,4952,6510,7980,11349,13283,16660,20365,18587,23608,16860,16018,15474,13806,12946,10838,5644,5774,12167,9908,9173,7846,8557,6817,5445,4903,6128 +0,5750,12531,15339,13381,18929,26734,33032,30525,35040,56903,58956,69947,58902,61318,82234,160925,114665,78851,82580,160781,127926,124909,151113,88302,96768,91370,79715,54366,63093,68799,65140,12496,10840,10481,12735,15753,18439,20087,20662,17279,19406,20822,18856,18912,13903,9108,8349,19459,17866,14137,18699,20136,18055,16835,21482,8413,8535,8615,10514,13156,9514,7336,5764,1162,1083,1051,704,497,700,868,786,856,1032,1064,1111,967,755,336,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4846,4356,4974,4998,6706,4976,4006,3236,1600,1652,1848,1310,1186,2216,4000,5042,16982,19240,16700,14090,5690,6151,8801,9298,7703,11149,9777,9130,9827,8737,7454,5724,4340,7130,8564,11321,20953,27274,38650,47424,53771,51424,30627,33420,36697,40034,35586,28444,28283,41516,48399,43876,66174,67413,53236,64902,56856,39318,32129,28359,18969,18076,14037,14252,573968,543586,621958,388410,206306,177648,119191,54682,0,0,0,0,0,0,0,0,0,3416,5880,9728,15490,17628,19435,16223,44549,43034,44544,41391,41710,41157,58526,51260,14027,14445,14166,15022,12796,10561,10781,5750,1843,1650,1261,1183,1362,918,511,238,0,534,1015,1583,2426,3367,3254,3676,3309,3410,5501,4755,5212,3922,2671,2433,6930,7664,5657,4702,3630,4054,3292,4801,4270,5536,9447,13012,12630,16266,13693,17916,14351,18116,17696,17630,12744,9494,7479,7162,11935,8150,10166,8320,7807,7186,5676,5982,6427 +0,9711,19767,32158,19944,28512,39692,47953,50635,56008,79679,87956,91026,84948,81958,87746,156359,125586,98200,107402,242303,176744,174934,166805,152860,148354,140923,108477,82709,79310,71266,76301,8690,8998,10789,13934,13595,15587,19634,20834,15693,16462,17863,16356,18644,13383,13784,14334,24126,24183,18536,18568,16184,13567,14518,20262,9359,7097,7739,10256,13631,8455,5131,3780,795,767,614,505,246,384,414,377,584,645,714,699,514,346,249,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6338,5426,5558,6314,7707,6490,3609,3133,1642,1683,1447,871,1137,2781,3634,4328,12740,12907,11758,9070,6210,7842,8036,7221,7985,6936,7954,5920,6364,5982,4777,4861,5975,6140,8126,10754,21745,32815,33207,47820,40919,35814,43164,45474,40508,48400,43236,46853,38326,42497,66187,64779,92764,92358,62633,58082,62024,50935,31525,28194,17248,16634,19948,16790,454624,403110,301131,280720,160187,115204,95429,45917,0,0,0,0,0,0,0,0,0,3253,6238,10113,22593,26679,23719,23556,39336,32235,26432,28812,32728,34544,33092,45084,12165,12445,10803,9994,10844,9156,5786,2982,1424,1258,1036,737,1066,805,382,201,0,397,662,1226,1213,1632,1968,2196,2306,3023,3466,3716,4071,2502,2064,1956,6023,6344,5162,3970,3278,3851,3571,3337,3436,5382,7580,9342,12555,10486,12064,10225,14569,13364,17632,20342,10570,10895,8588,10283,10041,8905,9741,10806,8336,5966,5958,6566,7279 +0,10210,25977,36716,31934,39364,43570,50702,57752,84260,83398,97256,127998,105314,112959,130258,126812,130660,146034,182578,312369,277087,261908,278780,264301,201631,249438,204024,128763,111917,80969,102178,3488,5324,5748,8948,13680,13848,16908,21745,20975,17635,25017,26242,26032,26850,21880,25094,27685,22306,22550,18686,15771,17589,15934,21644,16784,14938,10211,13178,13997,8032,3828,2775,406,422,352,242,122,178,222,203,330,326,322,352,288,195,135,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7809,7160,6051,6569,7602,5432,4798,4046,2576,2342,1930,1231,1227,2740,4422,5768,8877,8168,7971,5830,4266,5920,7254,5991,6441,5374,5422,5732,4626,4948,4604,4128,4673,5102,6355,9856,15102,24765,30802,46063,33636,32022,39953,44101,45174,51578,45132,45688,40679,55286,68939,79083,73360,76650,43416,62122,54574,45296,27860,26252,22272,25930,26981,27927,399114,268866,221794,227980,118475,104275,58239,33403,0,0,0,0,0,0,0,0,0,3582,6997,11075,25332,24234,30572,29701,38224,29306,26518,29429,29546,32539,28194,31320,7142,6332,4938,4268,5160,3947,2894,1628,790,632,590,484,554,392,171,96,0,156,303,606,635,806,953,1004,1348,1656,1550,1726,2061,1286,1036,787,6762,5924,5634,3418,2384,2471,2530,2074,1647,2830,3898,4556,8427,8075,7855,9122,12288,12582,14364,16050,13597,9632,7588,9670,7817,8493,9518,9164,9091,7622,6786,6953,7766 +0,886,1681,3501,5010,16397,26928,27839,35561,55824,76718,77309,75060,124237,140267,117072,142456,165780,163990,135850,98950,123140,118650,176406,185769,225468,276276,302020,245783,168651,165885,131000,0,3764,7316,11136,16120,17592,26819,31654,31224,30193,25044,37890,38676,38276,45839,43914,32321,24035,17888,14952,9947,7206,7009,9108,12870,9368,7229,8514,8485,5538,3315,1840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11155,11246,13484,11489,9544,10582,15086,17488,20470,22178,19870,15811,11918,10015,5611,5758,6432,7152,5509,3844,2392,2932,3252,3510,3688,2542,1876,1706,1298,1408,1676,2473,5116,17106,23708,28650,34415,38704,35102,40890,40818,42434,53863,57893,43265,45696,52029,48096,46792,39612,37248,28915,32679,32363,23854,17418,6822,14791,26070,31900,42370,47365,44243,44275,381273,395941,365818,427042,414236,486181,479397,373732,287868,205188,116951,120326,87169,51819,37582,18959,0,1890,4635,8877,11178,12284,10347,11290,16059,14321,16432,11878,7902,16617,22531,31032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8160,8488,11255,8694,9624,9918,10726,14798,20475,26040,23980,17989,14693,14805,14636,14507,12756,8740,7024,5403,5064,6629,7825,7615,10806,9507,6543,4792,1738,3102,5558,6638,6516 +0,1192,2838,5075,9070,19128,28071,36545,33664,58272,72290,63378,101477,106749,115600,107455,156801,135568,161598,134875,121122,164946,186521,219494,153623,192120,243178,241238,188729,172024,127894,108167,2647,7768,12121,12916,17574,21712,25026,30436,35823,34164,29330,32910,46180,40226,51808,42548,29340,26201,26779,17332,11959,7935,8309,8622,13029,9042,8066,8036,8036,5974,5172,3275,7435,7548,10020,8666,11344,14848,11892,10892,5864,7291,8566,6330,7060,7032,5728,5003,9435,7424,4581,5552,5232,5310,5607,5462,2296,1951,2498,2632,3118,2649,1914,758,10880,10696,10336,8820,9000,11014,12948,17901,15106,15132,17641,15013,10236,8072,6368,5058,5987,5538,6126,5434,2826,3278,3854,3899,5056,4155,4129,3438,3478,3707,3329,3722,3823,11774,22199,28686,40703,45310,30806,36750,53495,50510,56540,63190,59493,80921,104199,83084,39868,35718,26564,28042,22140,21972,19149,15866,8116,18016,32885,39038,43717,49946,45164,37684,403410,357838,309987,321650,287445,326325,310639,259800,219146,201987,111990,91167,76257,47173,36629,16502,0,2335,4816,6893,8746,7940,8286,10690,17578,15592,13923,12141,12024,17695,28808,30576,6004,9300,9326,9768,17115,12772,8378,7360,8720,7070,6219,4870,4072,3696,3483,3940,4972,3816,2817,2437,3360,3662,3134,3147,4226,3282,3434,3517,2592,2094,1352,756,17667,14550,9866,9666,8181,10559,12686,13623,19218,19682,22665,16360,15118,14508,11229,13126,10397,8944,7899,5328,4537,6086,5579,6320,11680,10260,9824,6705,4658,6299,5320,6495,6790 +0,2272,4514,6283,11595,25916,41420,46489,47883,48980,50218,46060,96982,84090,104377,104463,128555,197035,200353,145831,166020,229473,221812,236164,112260,150122,162530,222861,167488,146366,120012,104624,6047,7933,13166,12437,17184,24942,30546,37441,32243,33646,30996,24154,44734,38030,45140,43296,32875,30427,30663,27601,13064,10382,7279,7002,10958,10167,8435,6019,8354,7150,5990,5815,14393,18613,16795,16189,20337,24832,24880,21020,13164,13587,14864,14812,17380,15460,13354,10256,17052,14598,10812,13365,9125,11135,12587,14046,4037,4075,5336,5407,7646,6587,3363,1730,9191,9014,6850,6078,8335,11932,11764,14312,13666,12453,10042,12895,8178,5756,5686,4878,5876,7076,6161,5779,3418,3902,4512,3502,6016,5535,5946,5888,5747,5061,5226,7481,2706,8242,16560,35566,33732,42850,39658,50807,79271,77502,71934,107317,97282,95406,131338,166114,27858,22084,24346,21147,17521,13146,12324,9824,10655,17596,32001,32435,54219,51834,33082,29149,321652,302688,293731,292438,181011,160822,201734,176744,204673,143700,82412,55337,61758,48284,34387,16675,0,2179,4768,7007,7972,8104,7734,8752,17640,17306,12440,13514,15543,18463,25990,29985,13094,16418,20346,21934,30429,25734,17976,14831,15050,12629,12652,9137,8003,6724,8432,8727,8606,7793,6312,5703,6610,7348,7276,6644,9306,8966,6794,7252,5099,4758,3356,1962,24008,17027,11259,11037,8885,13471,14124,14848,23426,15786,15678,14692,13002,9652,9935,7787,7591,6042,6228,3997,2984,3151,4283,6153,11438,12634,13062,12169,9079,6359,6268,9362,10207 +0,3568,5578,7333,9746,28716,52488,58903,44438,48418,59126,63812,83313,83676,92978,105328,143082,179233,207624,221304,194544,199258,190653,208169,89177,116268,129118,155750,119020,122995,87265,60981,9607,10364,9886,11329,16219,22098,24699,38494,35730,30646,26144,31758,36716,39049,43167,40162,35143,31152,28051,29274,18443,13422,12857,9192,10270,10865,9786,7324,9102,8000,5909,6772,29413,33114,32222,26934,27238,29042,30009,38539,22198,18743,26231,21792,22223,24768,18206,15525,23392,21632,17407,19264,12915,15556,21344,22128,7913,7925,7517,7360,9637,8106,5052,2528,9849,6876,7950,5462,6489,8759,10056,11396,14101,11068,9516,10540,7093,4826,3972,3594,8152,8718,8840,6902,5211,6382,4917,3999,6087,6051,6838,8236,7236,6192,5890,8241,2736,11304,18980,32948,32304,41582,31395,40146,68922,71614,84571,109161,100368,127241,154508,184895,15020,17238,18243,18928,16107,14406,11965,9984,17117,24820,27728,34440,52560,37131,22774,28804,268601,256158,188448,196708,169954,143582,194947,147418,129343,101190,61202,48038,49320,33515,27836,11734,0,2071,2774,4986,4770,5768,6910,9452,13139,16954,17979,19098,18732,22476,29000,21456,20900,25906,31477,34216,41257,37888,24694,21620,20672,16062,17870,14743,9054,10508,10827,14100,11639,11742,11141,9301,9128,9537,11992,11950,12999,13735,10587,10817,10166,8302,5944,2828,23892,24154,18230,14471,10222,10741,13195,13231,20388,18602,13584,11826,13499,10122,10087,8154,10416,8058,5653,3896,2501,4196,4741,6474,11910,13928,11409,14906,13130,11209,8315,7535,7774 +0,3844,7956,11802,12440,20669,25372,52636,45954,46799,57898,77072,73926,95321,89841,89309,187599,236720,249545,288535,262544,250253,312488,260590,75592,78318,92063,85711,107146,74184,43779,37470,12855,11197,7996,9358,12714,18192,30102,30630,32474,33262,31409,33901,44223,36211,26546,33522,31676,30980,22187,17184,18447,17554,13629,10623,10439,11251,11513,9887,7876,6678,5260,6281,35405,31062,19672,20056,30022,43088,51184,45289,31179,30212,39764,42375,31749,21495,17299,13632,32529,28557,38040,31457,22562,25908,33542,35423,11616,14901,15112,14686,12272,10025,5600,2366,10342,10345,7370,5425,4372,7832,9569,13336,11123,10488,8283,9169,8235,6217,3616,2676,12374,11510,13216,12337,7755,8319,7654,6471,6412,8964,10089,9370,8332,8274,10304,11260,3855,10101,14894,24067,30573,33276,31684,44732,90624,117755,129078,109340,131503,171959,174090,147345,6279,12750,15757,17192,19246,13961,10862,7636,18576,27550,35740,39806,38825,32752,20118,17245,134195,190788,188099,191463,153268,128390,158072,124153,50469,33566,23714,24244,22932,15975,9656,5582,0,628,1419,2508,3622,5771,9716,10620,13209,13043,12729,17682,20801,24860,24744,27035,35721,35038,40694,37789,44498,49338,46421,46190,21794,21284,20151,16344,11603,12286,9491,13217,13312,11651,8126,10032,11980,11886,10870,12914,18166,13064,10777,14346,14844,8380,4495,2038,26492,20294,20874,14547,10774,10273,12719,12332,16478,12853,11171,10434,11206,8557,4886,5172,11606,10280,8018,4464,2328,5161,6474,8646,17385,16530,15330,14188,16524,13645,11183,8910,8674 +0,3325,5859,8876,9768,19127,24158,40520,40282,56020,80100,85352,75473,82884,76380,90764,215204,213625,246576,254319,302756,296662,314417,214042,56579,68898,96790,109385,88773,73458,59940,45525,18388,13818,12649,10519,11615,20510,25859,27960,37318,38810,31878,32358,32477,29056,34170,48704,35876,32068,27988,25778,17660,14729,10657,8369,7510,8058,8515,7566,6734,5926,6807,6878,35913,36651,41476,31835,42800,52630,59388,51273,35945,37233,46394,44652,52727,39449,26558,24204,46514,41333,54190,39166,21979,27320,38718,37679,20342,19844,21258,19750,13247,10516,5938,3130,9269,8048,7274,5401,5459,7200,8508,13216,11689,10266,7458,8683,7780,6423,3934,2929,14661,12418,13533,10724,6730,6096,6135,5818,5035,8019,10835,10228,6730,8544,8826,10123,4946,11190,13876,27702,40438,54642,56315,76946,92296,108749,107742,104648,133070,144210,201402,165454,4983,11127,15460,15330,13805,13770,10333,9118,12928,21231,29989,34957,38434,32162,20791,20812,121620,142006,108647,107527,149214,122974,116689,109295,31901,24450,18863,18402,20750,12140,8568,4522,0,522,1134,2182,2070,5318,7126,10477,13300,11492,14387,15599,18248,19264,17992,22822,27401,30326,37692,37894,39762,47970,50003,40600,35265,32120,29460,22902,24514,22496,23830,21653,11800,13734,10638,12484,14505,15478,16133,19485,29858,24838,19336,16160,16690,11276,5516,2454,21746,23862,21542,18588,13349,12223,10380,8230,11360,9994,8186,7624,8185,6306,3946,3509,15649,11122,7140,5922,2427,6520,10135,11845,17458,18216,15574,11430,15220,12335,13947,11998,9336 +0,2541,5513,7172,10905,19962,25574,34366,45916,56653,76096,79203,61662,55472,68214,86176,190638,200667,176794,202588,328219,278948,215500,148158,46290,88457,112182,105572,80825,85421,69766,53749,26306,16537,14456,14597,7988,15321,26300,33408,44282,37269,34147,28606,23195,45359,53474,70818,44278,47507,44410,29789,23498,19476,9722,6042,5207,6904,6514,6895,7338,7624,6552,5890,48423,56959,53509,60658,58801,58202,68955,78624,46910,54534,47535,52568,58282,56459,45486,35103,55561,44728,52574,39641,31260,38696,42861,34228,26921,31250,27069,20592,18757,13698,6784,3332,7931,5634,5755,5813,6855,8251,9376,10798,11350,10229,8852,8813,9391,7613,5281,4952,12104,12154,10702,10007,4000,5613,5888,5614,5006,7932,9044,8264,5014,7728,9942,10239,5928,12052,19129,34736,53421,61018,70554,87388,73190,110505,119252,114389,149298,182003,187693,172439,2814,7172,11103,11246,8452,8281,10736,10828,12041,21934,27709,32412,28252,27961,20555,21620,79639,74115,73614,51964,102066,101287,98096,87858,28240,22667,14748,13611,13802,9367,7560,3622,0,505,898,1794,1444,3355,6774,8202,10052,9704,12109,15588,10229,13877,14259,14729,30328,28517,30080,35960,32688,33970,46871,55369,37235,32207,33432,38843,48652,50694,43674,34958,12954,15863,14944,15251,15552,15896,17822,29665,31690,26772,23604,19372,16672,9995,5579,2314,22504,25900,22212,23489,17035,14931,9447,5388,6525,6795,6973,7836,3392,2348,2254,2233,16126,14090,9039,5852,2785,7492,11118,16470,16810,13834,13407,11666,17661,16049,16946,14412,10440 +0,2864,4386,6727,11952,19880,21175,30734,48870,50860,72298,58548,50072,46784,48923,48196,219597,242497,222984,224010,251536,248516,185413,110152,52258,86216,127305,96114,82366,79468,63779,66293,26106,19718,13661,13277,8861,18760,26357,26557,42722,37110,35184,27640,22613,52112,55145,65328,50860,50668,44672,30898,21621,18382,7656,6657,6282,5786,7435,7560,6886,7652,10458,7647,66149,56790,64474,66944,71736,67400,61252,84356,47432,54778,54830,56002,81264,67865,71941,51337,58227,50222,47772,44104,41122,40284,46991,39082,31096,30424,37454,26403,20283,17668,10136,4589,4877,4526,5254,5940,6390,6572,7613,10572,10057,10918,8559,10667,8663,7913,5706,6131,12909,12412,10340,9791,3888,4542,4179,5875,6486,7799,11399,8891,5924,7328,9607,9098,4334,15822,21055,29955,46282,50488,75229,93827,104537,123112,129616,122179,120229,125415,167669,160488,1258,4163,7587,8579,6849,9406,13615,13028,13578,18160,25091,31331,29706,29820,23200,26748,32992,31381,29690,31886,49068,46836,46450,41633,13760,10444,8641,8158,7847,5261,3390,1736,0,374,714,1179,1108,1882,3172,4635,6571,7096,8813,11512,7498,11731,11642,14240,36708,32882,32877,41622,40821,43514,44992,52444,32877,38170,48338,60717,62603,60657,39923,38792,16687,14572,16596,19802,27414,25576,21047,34199,29644,23708,28603,22340,22857,15786,8439,3322,26132,27305,19498,25862,20592,16010,12006,7354,2652,2769,3659,3444,1519,1228,1202,1014,16915,13950,9148,6638,3141,6708,9936,14110,19043,15280,11105,14302,15601,18313,20796,16127,9466 +0,6084,11557,24773,31396,36914,48567,55355,44580,42875,52273,34340,30697,34338,33484,26707,217715,209056,175110,120672,61814,69130,58005,56510,61929,71112,70795,95125,91953,91981,118729,112671,31351,35070,33065,28331,28324,27154,23097,21773,31092,35645,53726,51548,74920,59613,61349,62307,66083,66637,49439,30299,16214,15181,11074,7573,5878,6696,9167,8752,11387,13090,14629,12536,68110,72516,71275,76382,59866,63406,61217,72351,64930,64501,59722,47705,27976,32406,26500,39031,57568,43474,38418,24976,23105,26460,34001,38486,36120,38212,39736,33786,23748,16753,15700,8316,3301,4339,3952,3356,3278,4336,4843,7672,10818,9493,8764,13428,15970,13870,15769,12022,11927,13070,14474,13090,10592,8619,7470,6335,8248,6637,6504,9830,10440,10542,12000,11838,4736,20915,31182,42423,54830,63356,85534,99192,106283,96928,88287,98567,105320,90856,88150,140140,0,1340,2545,5194,6196,11218,13127,18903,20602,34614,38004,35839,38058,44084,49782,45674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,289,426,725,1094,1905,2098,2210,5683,11581,13828,14465,11528,10434,14586,44008,48507,45501,51965,53310,61966,66250,54054,41496,51269,54446,62580,78550,55567,48448,44378,15177,15053,13375,10754,10108,22926,32758,30901,37940,44000,44574,42686,28560,21844,14084,6750,27276,19667,17862,11897,3070,2282,993,589,0,0,0,0,0,0,0,0,16487,17749,13711,14644,17563,16410,22611,19699,15981,19221,20447,19850,16874,12978,14366,14444,11139 +0,5778,11135,19137,28741,33262,47064,47310,33128,37346,38969,32064,30994,30038,35004,26073,204634,186582,131782,93779,57438,63641,75538,82236,54638,80494,98935,109878,78396,98427,79854,89448,25321,27056,31616,30486,30404,26138,29073,33908,54777,72560,97965,115014,128204,93198,80175,99464,62427,53907,42848,25695,14998,12291,7564,6430,6281,6846,8752,8844,8703,11843,19944,16334,54831,67612,83024,73634,79402,75314,72172,80544,53000,44188,42862,44088,36543,43051,38270,57073,75830,64946,53114,41442,39611,44608,39395,38950,42247,33586,34820,26370,24213,20395,12269,7218,2431,3270,4140,3094,4082,4998,4446,8096,10790,10599,10137,11014,13383,14532,18525,12432,8395,11409,13729,13658,7537,7505,7992,6999,9523,7398,8384,9799,8932,9846,9625,8076,5376,16707,35949,47781,53296,68298,53376,83138,79985,88602,81772,75922,88218,90134,97350,112262,11311,9342,12236,14470,13061,12354,18928,20584,18400,25524,40204,46908,56791,50746,53692,47090,17748,15007,7472,6772,5394,5120,3635,3662,5716,5920,5197,3824,2455,1824,1016,555,0,178,349,383,520,1016,1522,1622,2007,5188,10247,11770,12106,10824,8381,12233,35158,39054,47154,71284,54122,56356,46512,44906,48046,59854,63864,80182,69258,66214,57389,56496,27556,27360,19684,16822,15972,19320,27766,28168,32198,33968,41868,44118,52567,38695,20995,12228,26916,26846,27180,20327,9952,10142,8202,5628,354,440,556,504,604,480,286,136,14279,14660,12162,10834,11880,13632,13671,13848,16622,15318,21943,17303,12776,10259,10717,10876,11765 +0,5199,10791,14967,26533,25272,34813,37350,36330,36020,34409,22278,23782,23797,26036,32678,155930,122516,128514,80757,59056,80580,87798,94420,68251,77650,95312,83938,77348,68273,75281,102404,17698,20711,20815,23012,26180,30174,27154,33220,74626,86235,127602,125330,154001,123222,97778,98006,56785,46735,27682,20309,12730,9040,7430,6820,6091,6594,6312,8726,7706,11661,19396,17581,50148,73387,77824,67191,117869,102703,90798,103555,38544,35924,44781,45592,55251,57196,52379,83917,91617,81020,56947,65440,58953,53148,57437,45644,39722,41444,29708,20281,27421,16732,10758,5675,2448,2324,3229,3103,5108,5501,4061,8856,13168,12243,10604,11678,12328,16198,15638,16087,8945,8323,10533,12294,7720,6296,6580,7254,7704,8998,9130,10283,10226,7636,8389,5728,4607,16492,29476,45824,34790,41767,46243,48667,69679,60273,78892,83327,115217,116119,107416,102028,25849,26180,18050,23944,21976,18213,20272,22889,10674,26395,34117,54777,78994,59614,57312,53231,31146,23662,18660,12737,13395,12268,9009,6708,9725,8841,10353,6582,5002,3549,1936,896,0,159,349,490,499,990,1216,1224,1563,3766,5592,6866,10630,9119,7008,8666,40815,52953,50018,73875,48406,36405,41845,36484,61019,58178,74400,82189,68973,61512,59450,59754,32993,27557,29880,23396,19598,19418,20857,17486,40439,49925,48552,56110,61011,40876,31304,23436,34448,35117,36143,30834,18149,16202,12910,9400,643,738,1197,978,1094,729,524,252,10286,8708,9110,8895,11414,11379,7858,11708,11860,13469,16522,12826,7947,9511,9982,10553,13169 +0,4431,8660,13434,15497,19264,25175,32506,37011,46309,44121,33100,25040,22618,18306,21620,108027,84857,81050,60822,48740,74600,91617,105578,66170,69656,71257,88078,77308,88125,103684,86168,10918,18846,26700,30968,29945,33776,37006,48628,83109,105150,115182,145312,177323,149102,104965,99214,33106,35004,17742,13596,13232,11114,5997,4951,4086,5423,5367,7014,6620,13480,19518,18092,40320,65097,76477,88060,101355,81986,74905,95735,35941,38922,50378,62108,58978,59525,48468,70394,84211,76440,71012,80950,74454,68832,55920,43632,41678,40170,31842,25501,19512,14228,11577,5676,1226,1800,2252,3360,5678,5809,4811,7829,13216,14262,14941,16630,17759,20014,15905,12120,8544,10213,12149,11347,6620,6005,5408,6580,7984,7880,7265,9415,9330,7897,6028,5030,5140,12638,22514,34944,32154,42065,55657,54405,80824,76044,91372,85942,95158,99512,96841,75012,33089,35086,26754,25862,24625,19782,26158,21519,9036,23296,43184,44989,84578,65153,56658,69959,40329,32414,19907,18536,16155,12956,11705,9320,17050,18890,16885,11376,7843,4980,3236,1720,0,146,307,500,498,930,878,1052,2036,3282,5697,6536,8952,8568,8110,8008,27162,46872,67576,86736,69915,62464,51423,68075,80205,82112,90645,69917,70260,65986,72517,82607,63316,54758,46895,41434,31861,31146,36744,26806,51792,59694,64939,63997,58112,41794,31495,29171,62270,53566,34109,35436,24596,21574,17366,12360,1085,1594,2254,1899,2320,1362,1013,502,7217,6830,7655,7926,7001,6866,5788,6259,10950,12023,12065,11145,6954,10083,8997,10208,12402 +0,3103,5892,7534,11634,18332,27409,32467,51192,51564,38894,36189,28254,32754,28027,22221,57438,38827,37294,53229,55514,76276,80746,96217,73535,66402,71628,87926,109596,96220,110301,91970,6963,16216,28151,30953,35342,40462,43658,49092,113861,120746,161820,168648,183950,144988,128876,101566,21140,16658,15086,12208,10353,8923,9369,6850,3352,3621,3196,3386,4814,10922,14360,17612,41477,63458,99538,126027,114704,108903,138068,105035,24963,40608,51534,75919,75388,87444,110597,129423,92274,89595,83888,69626,72472,61481,42639,37671,37792,35031,33746,31658,21154,13425,10354,5396,452,1597,2380,3270,4576,3664,4149,5920,12562,12181,16440,20782,19939,14252,11216,11557,11618,9176,10392,8117,8136,7200,7429,5571,6893,5582,6502,5634,6739,5650,4211,3775,4789,9592,11454,17677,31224,35397,55765,53868,74220,89746,112099,100968,101878,81627,76751,63300,56402,53506,57044,42640,37332,25228,23823,18825,7752,21778,39542,51575,75796,74728,59400,83182,57352,58749,41620,31046,20697,20122,14858,14405,30456,22441,17913,15728,10006,6218,3288,1401,0,148,363,581,605,722,1052,1136,1953,3131,3620,6342,9486,8125,7983,7771,15962,37758,72253,80080,105262,131783,130246,100632,115979,85366,71638,62064,56532,62296,83031,113150,86746,58943,42907,45321,36764,38793,31029,27563,62237,51396,39064,56191,59543,52140,36042,29092,74171,61170,48253,33430,29432,23187,22570,14367,1995,1630,1962,2507,2871,2860,2004,1058,4121,3530,3342,4300,4338,5046,4302,3939,6446,6226,8184,6799,8228,10037,9345,7572,8936 +0,3574,7128,12496,14652,22962,22648,32775,48053,44805,30629,29580,24248,31166,28297,28770,52268,45609,51345,61584,50105,68255,67916,75073,67354,69720,86643,80714,76854,87375,102640,68028,13759,21106,28422,37132,35233,37231,43265,48898,90899,96008,148822,144176,139049,155221,148237,107161,26114,29107,26999,24078,26060,19210,11622,5993,2462,2709,2966,3709,6259,9437,12302,22804,35885,64899,85407,105060,80684,110545,158778,144224,60931,73796,62479,85271,97797,108795,121514,124137,91840,107322,114988,94452,106058,70526,51444,51177,38996,34016,37386,33786,34886,23971,16640,6980,342,1308,2275,2778,4118,4024,4703,6874,12134,11396,14127,17141,22384,17061,11721,14190,10101,8162,8262,8348,8311,6442,6851,5902,4771,4397,5858,4720,4406,5341,4790,4356,3231,8577,9581,22855,28028,31730,49579,45792,49271,61668,107858,95166,110489,91692,87096,66616,60594,67724,70322,55764,70548,55319,34648,26854,11062,29708,55902,68243,89484,91570,84788,84641,66590,57671,50774,37000,40064,38676,25948,20128,35644,26299,20670,16504,11657,8132,4480,2364,0,122,251,351,412,556,876,902,1313,2872,3284,5355,5833,5098,6750,5032,33630,64999,94450,85722,102358,123716,149938,126034,121493,97224,86598,123228,106968,107666,127838,109803,83062,63868,48900,45540,40824,38438,37251,43418,66987,59626,51457,69130,65317,64834,69820,57528,72152,70739,65499,40182,27977,24973,26406,14700,5405,4447,5396,4533,3621,3560,2401,1186,3308,3007,2362,2514,3620,3342,2808,2612,4003,5146,5707,4668,7085,7375,8530,5902,7194 +0,4501,8671,15503,13552,18236,29108,32538,40606,39970,30399,28334,21706,27060,41744,42882,63362,49250,54578,67148,51728,57171,83330,77134,59905,68402,88601,74888,76950,69758,75520,67605,22786,23556,25648,39418,36687,46982,50073,43354,85527,75723,97481,119014,131477,158595,140012,116756,36620,33163,42252,48662,33606,19380,14188,7194,1164,1901,3144,3850,6408,8657,14064,25399,46831,46618,69374,81150,79242,102764,143835,123962,89084,105569,103228,95724,160883,127850,136983,102910,123667,141665,127851,83892,108203,77656,81436,73101,28908,38276,35828,38028,40660,26938,18776,10100,272,1264,2002,3013,3689,4637,5233,9484,8353,8996,11748,16422,18342,14693,15611,18626,8275,7486,9308,6670,6386,4773,4343,3710,3856,3509,3475,4344,2786,3867,5266,4986,2898,7096,12308,23808,21579,24430,35946,36269,31949,59962,73655,92899,111675,88387,70714,98200,92561,92892,75302,56614,82784,52918,46336,28335,11368,39030,54378,70110,101354,95234,102926,86445,73088,49482,44466,32448,55048,36674,31216,27208,34738,27034,22962,19239,11043,10075,6526,2768,0,62,144,290,229,300,467,636,1076,1935,2956,2964,2972,3013,3320,3837,47648,85079,94884,76669,83052,98875,152070,106375,112329,95005,112178,142476,162894,129816,131806,130740,91010,84034,64274,56137,59041,63180,46409,48380,72916,78134,65169,90278,77715,90332,104041,77528,65953,72347,74616,42044,36999,27422,21700,17495,7432,8934,7672,5329,4378,2830,2443,1100,1916,1378,1334,1952,2399,2125,1514,1432,2576,3240,4214,4841,3734,4456,5296,5226,7261 +0,3954,8279,15175,15180,15726,18520,27608,36015,25956,27372,22874,17983,29809,56660,51487,75372,57832,63374,70560,54622,69722,89377,78125,68197,93458,103016,82008,72125,71686,83761,64240,23244,30198,37558,48984,58160,67828,63312,77976,118113,107950,106385,136141,140107,148098,156397,97500,55264,48504,39968,50019,43026,29992,14774,7900,564,1644,2417,4736,9386,14889,21970,24384,59017,67912,59022,77835,94686,117176,152966,151968,137958,137664,112468,118650,186125,137750,162280,132428,98382,125541,112247,103985,96904,80865,73882,56782,36064,48058,58513,45340,44074,28194,17537,10266,157,970,1372,2482,3478,4986,5048,9641,9024,9686,12980,15546,15739,15313,13272,16366,10761,8471,7764,6292,4081,3147,2743,2278,1994,1826,2549,3231,2488,3393,5688,5386,1450,6030,9716,16054,19459,19806,23856,25494,21729,41812,49646,64509,77599,76889,87515,112638,97640,93850,64269,61412,82548,64860,41948,28017,15917,40435,79918,96072,106148,112218,115435,92547,108698,79459,60204,56696,51317,42606,32318,36415,35834,33652,24208,20927,20655,17092,9146,4716,0,37,76,140,119,165,217,281,602,962,1224,1473,1629,1920,1512,1711,63430,70326,97522,112090,123818,152719,224271,167337,166540,134524,152234,179976,190192,182758,116466,123197,126142,85862,100653,85676,70798,86866,73829,61844,65450,64675,64353,85672,88851,97746,125855,112400,104575,96090,96557,57572,32215,27182,23275,17175,9556,8106,9500,7454,5898,4158,1979,1066,796,720,732,1074,1234,912,638,662,1430,1852,2192,3024,2418,3410,3779,3946,4806 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5437,10578,13274,15639,11976,11318,14528,19547,25192,26003,27621,22948,24224,36069,37920,35157,43679,65131,74353,59058,54981,48874,33312,33981,32256,21549,15450,8461,16222,27302,26738,36373,30416,33422,23244,22595,14192,11389,5465,0,2434,5264,10110,12571,13036,16049,28339,64821,64949,78211,98533,115621,90906,82198,73152,70352,57336,53513,38995,40365,35427,23307,15453,5880,5754,6740,6557,5209,5980,5221,4811,5186,4806,4973,4846,3377,1914,1397,606,0,340,566,888,1273,1553,2265,2512,2769,3093,3024,3545,5783,6442,5394,6851,8198,10570,9778,13793,15231,11100,10488,7836,8729,6487,5469,3821,1533,2538,4703,4991,698,885,813,732,544,522,586,459,345,278,285,188,72,63,46,20,0,3538,7601,8048,11378,11738,17808,18726,15975,24487,36478,52564,91898,116438,104322,130764,122502,78449,63980,60605,62758,43293,19491,11387,0,50799,86558,142826,163339,211528,228124,202968,186312,210818,199609,251726,331732,280922,274645,243864,217252,196348,148523,136502,119303,98594,81203,33928,71552,65076,56672,70125,69075,61859,50978,55700,74338,54904,46848,48780,38951,55930,73744,95733,155189,167426,141067,194380,191109,214209,168024,117499,60943,67270,66153,50677,54280,54830,59034,85099,110414,102235,135318,131912,97412,79428,100167,66103,56384,58736,62115,44459,37034,31796,23010,11144,0,0,0,0,0,0,0,0,0,196,456,723,1266,2405,2826,3615,3282 +0,37,81,114,224,188,212,264,408,406,329,209,117,144,262,302,1338,6039,8050,11070,12320,13510,10550,10966,24912,23708,21707,20134,21580,22284,34582,32940,36198,48264,72710,70293,56920,52590,53373,39292,34264,33096,35582,23942,11933,23146,31681,38129,38106,27173,34433,24133,23570,18622,13858,9482,3772,7182,8874,13487,16732,22073,25883,29090,76250,74297,83059,107409,79295,76852,68578,72285,69775,58278,50495,42062,48756,38802,22952,19838,5636,5278,4524,4270,4627,5044,4390,4667,5472,5151,5240,3960,2990,2273,1290,629,0,314,600,672,828,1290,1875,1836,2230,3404,3296,4070,5731,5506,5757,5954,8654,8758,10353,11468,13268,10903,7818,8346,6726,6612,4482,3426,1714,3202,5547,4802,792,882,858,746,368,394,523,400,468,399,322,281,139,96,73,38,0,5636,12107,12877,21591,23034,30567,32922,15842,24600,42312,66754,85407,101966,100701,129914,109752,69611,54728,48757,41402,33988,22206,10314,6608,38364,75218,99666,131636,169222,187251,172659,247259,245562,209674,223278,309587,307998,279193,280387,164256,156954,129258,154056,153452,97094,69240,37111,65298,62914,59595,58456,52762,59727,67457,64874,68074,54016,61410,49160,31266,63192,87427,134912,195750,180156,167949,240512,229278,219580,132896,81053,86818,90594,93622,69391,55129,50155,52398,69834,74636,99128,105228,115888,116847,102350,83505,57744,55285,47880,40614,31248,36067,24604,18916,10252,0,28,57,94,66,110,146,142,161,314,632,924,1371,2330,2832,3357,2996 +0,89,162,246,390,444,444,604,1004,790,672,486,278,418,461,694,2481,5433,8246,8725,12931,11589,13567,11668,24477,18932,18604,17544,15151,20598,21966,28421,54124,54701,67848,47756,61822,44614,41628,31290,31093,40004,38130,34478,17751,28938,39530,39161,32483,30259,24790,16913,31035,24467,19394,18829,7740,11198,15320,19773,23186,24606,32684,34107,73602,74806,76082,89630,73270,75748,61396,66329,66181,60200,46240,31474,47914,44756,32396,20632,3960,3288,2896,2311,2769,4695,5099,4936,6768,4891,4861,3240,2713,2154,1486,886,0,252,514,734,646,1094,1244,1238,2110,3529,4402,5640,5288,4290,4957,5056,6745,7223,8544,11714,8326,8111,8562,8139,7965,5890,5550,3287,2147,3654,5229,6230,978,801,724,730,373,413,345,360,492,531,460,341,160,109,82,39,0,6381,13452,18814,29633,32435,42374,50366,12081,26015,47826,90799,103133,109775,99269,89064,77759,66697,49634,36456,32519,23717,19594,10358,12501,30915,51488,63110,89035,117720,116708,100110,235066,205659,169867,132583,275917,222718,265813,261618,126373,116092,120532,148298,144397,102591,58816,32880,56608,49772,62117,83248,58188,69231,63710,52020,82467,61360,56218,41284,28344,91833,140214,170251,213470,246076,267046,317846,217081,206961,163737,108889,143447,139917,105542,97390,50187,45951,39682,43931,67523,73104,76436,99470,108600,94567,58442,43338,41267,34849,29880,20328,23928,14927,10664,4898,0,59,98,187,157,192,279,259,273,515,634,841,1103,1636,2538,2560,3643 +0,129,333,402,528,626,686,776,1310,1145,1100,787,388,534,640,899,3336,5126,7755,6878,9878,9723,10523,10269,19666,20966,18082,16332,18992,22328,23602,22091,60520,79124,78677,62319,68176,45514,40917,34831,42053,46946,42513,40107,28855,27862,39573,32865,29352,29974,23090,20362,23080,21472,21768,22746,10269,18575,20616,21388,32278,31428,27796,26506,79156,63171,77286,83550,114053,82918,86516,72148,48768,44715,42519,37406,34991,36138,32319,30478,2675,2108,1675,2159,2856,3740,3989,4418,6388,4646,4112,2558,1853,1472,926,450,0,164,354,430,406,723,1028,1279,1719,3210,4301,4719,4327,4328,4928,5628,4428,5451,6002,9418,8818,7957,8048,7518,8210,8396,6417,4176,2231,3318,4499,6048,1176,921,773,711,418,358,325,307,662,610,519,426,270,192,113,60,0,9796,21602,27922,33655,45566,49742,58556,13890,32830,62196,80817,85928,93214,80817,64896,51565,47787,38075,30187,27010,23228,14416,8731,15686,31380,46345,52310,63381,83932,91626,75230,221144,184838,140920,111566,213570,200803,168957,194519,165102,120204,132157,133780,115341,81934,70695,32350,61453,61400,85024,89512,71339,71070,94644,73685,122636,109664,75956,59104,33270,83051,120256,146307,316378,339384,298496,314372,271706,194840,137472,103978,144972,163733,144601,115426,64962,59853,36037,37284,106581,83392,74761,94455,102302,79699,59077,44288,31177,27595,23163,19396,18408,13726,9585,4952,0,78,114,248,358,398,308,342,501,754,895,829,1154,1326,1639,2366,2912 +0,207,428,684,913,1262,1248,1346,1611,1662,1415,1090,526,770,1129,1135,4865,5777,5624,5992,5866,5104,6814,10350,16628,17338,22013,19654,19130,19783,15163,16263,87415,73770,46340,43328,58074,51419,49968,45752,52636,43781,36555,44850,39221,44847,40501,34446,16542,17378,13252,20009,23650,24191,35799,33574,16252,23768,27587,28452,31218,26742,32405,27554,62338,78680,116638,103716,117488,98848,95168,84047,25223,27792,32307,36747,32455,29835,37132,27628,1312,992,1132,1583,2275,2706,2880,2752,4667,4313,2726,1898,700,505,392,167,0,46,96,160,200,320,354,738,1477,2910,3484,3780,4390,4008,5595,5591,1938,3092,4405,7913,9297,9828,14393,10416,10241,9196,7233,5184,2724,4542,5551,5264,1222,851,729,462,361,388,298,372,867,823,804,703,414,360,216,130,0,17836,31523,38592,47918,51119,60415,59295,21323,30025,34849,63980,81547,67327,78064,51107,39214,35576,29342,19191,15640,15267,10067,11059,23736,21772,24780,34464,58396,40803,34592,41511,282249,207985,210322,191376,111944,117969,145654,155693,150852,136671,113537,120187,117852,79922,55808,32715,75701,75698,78123,82418,102274,111658,96430,77226,137832,107428,89754,65791,39177,50046,80178,118916,376920,412501,323042,334284,254514,221969,154164,132042,167572,131340,136103,91109,76450,82873,84992,66834,113884,120190,144306,118817,93576,88645,82357,49598,12466,14860,16771,17530,13552,13436,9831,5159,0,68,157,288,457,418,524,568,615,773,914,823,858,1113,1873,1639,2220 +0,222,550,870,1070,1305,1577,1568,2786,2100,2228,2212,2294,1695,1961,1818,5542,4856,6530,6201,7816,7662,7735,12624,17175,18108,21297,19375,11838,11964,9944,10224,61914,55730,49386,41691,45032,50165,38718,42906,41041,43000,33240,33501,25360,33086,24467,25140,13807,14518,18485,23037,25945,32456,34153,56364,36150,33964,34968,42722,48553,43719,44633,47804,59159,73614,77200,87102,102895,82035,93125,63066,33511,34919,29956,29637,31848,27851,35059,26000,793,763,772,1000,1488,2116,2511,2191,3141,3136,2452,1315,453,412,329,134,0,36,90,134,141,202,308,470,1117,2216,2578,3096,2779,3464,4380,3316,1761,3233,4372,7372,10082,8972,9861,9568,7860,9932,8761,4822,1885,3806,5018,4558,1504,1072,626,530,460,405,446,360,730,722,660,556,485,393,191,112,0,15750,25936,33432,42557,48860,62000,56448,31497,34799,53228,54544,59579,63561,101521,90793,23540,29124,26587,16740,15994,18534,12845,15064,21316,28092,38430,47761,55527,42768,37025,45983,234726,178295,211246,148096,105352,119637,131334,151942,114170,100200,77358,93832,108687,86528,49479,22652,64652,81370,86542,72486,116314,98719,75796,65172,116885,89506,78458,62402,50295,73282,98842,98651,298723,362664,360551,239719,301850,225838,169280,148117,218807,143572,164496,122202,59763,69270,67812,67381,140029,133879,122831,113288,79616,63740,58276,36090,9482,13116,15800,15315,8740,9144,8112,4718,0,96,181,282,488,574,756,994,693,884,1014,1015,910,1308,1938,1510,2130 +0,293,552,998,1070,1694,1985,1747,3373,3004,2866,2618,3320,3229,2433,2683,4939,4765,5953,6671,11078,9666,10438,12129,13441,13468,15680,13107,8564,8598,8702,7123,58519,49177,46103,41852,36936,36660,37308,33040,34695,31886,33188,30781,16678,13545,16850,11488,10185,17226,18936,22325,24898,34668,44672,63094,49891,35028,35943,66954,55775,48098,61842,57687,66069,62298,56332,60924,81924,75033,64284,76990,40119,33157,30650,35559,21862,22511,26440,25541,626,692,548,784,1281,1193,1507,1601,2766,2326,1390,888,418,357,210,108,0,26,54,69,98,129,210,306,695,1142,1760,2024,2141,1928,2644,2293,1211,3092,4292,6517,7877,8012,5880,8952,8384,8165,7518,6544,1844,2126,3106,2837,1381,947,652,520,524,556,492,480,633,650,630,576,488,372,242,105,0,16679,28332,29358,46674,54204,71642,56983,46905,48246,60794,72027,58855,93746,100464,129196,12700,16609,18667,13117,15534,19281,17564,16934,25930,27610,41596,40479,40133,41580,41566,46005,208510,180825,144022,132662,106213,118002,131026,90533,95369,77116,58688,76890,116481,70753,37770,15532,85618,108364,104136,107922,99710,88020,73746,48588,72757,66230,66020,69801,77735,85375,100267,119952,336758,374346,341246,290471,321027,284851,245566,199415,241306,227392,145158,95845,44272,47750,67768,78749,159784,126794,122716,102272,67338,58892,40982,24014,7894,7854,9923,8293,7627,5484,4254,3338,0,84,176,453,667,1054,1196,1321,1032,888,945,1069,678,1157,1450,1704,1434 +0,369,852,1176,1432,1759,2102,2518,3056,3290,2833,3874,4841,4000,4092,4895,7661,7718,7714,7654,9553,8733,11684,13784,16205,15138,12668,10205,7947,7834,6266,6238,61515,54948,36990,29824,21610,24086,25450,32114,31122,27126,19820,18364,11982,9334,11140,7318,4901,11880,19640,26246,33660,43444,61270,70786,62690,69102,53466,89656,74054,77690,73417,65854,75867,56738,44062,57282,67114,58480,40814,50858,43719,34649,23067,26500,16670,20330,30390,26000,258,288,305,416,522,584,771,762,1496,1123,682,426,219,159,106,58,0,15,30,33,49,74,124,130,410,672,958,1014,1238,927,1350,1114,1044,2170,2736,4935,6198,5550,4804,6516,6170,6216,6214,5026,2000,2508,2410,2043,1284,980,642,632,539,656,564,658,663,653,662,494,511,349,243,121,0,18614,41669,46754,58926,73025,67398,81840,94927,58756,66290,55564,54628,76108,104204,166272,7460,11678,18425,15668,15460,16122,19144,21031,30940,40252,44297,41000,45298,51208,47346,48344,158523,152586,147138,131728,150246,162004,168812,109260,79814,77938,68832,75772,72292,51533,34233,17280,78304,87309,97326,107836,126473,105570,98509,62984,85392,75226,71468,65890,74050,78914,78838,86424,352232,324876,258075,309698,357156,289414,250207,238397,282083,187119,120540,90668,47337,55161,73026,74226,198754,149389,180530,128992,94795,73167,44424,22730,3736,4445,4914,4897,3709,3204,3194,2229,0,81,191,428,665,924,1383,1534,1284,984,738,854,670,1256,1547,2012,1842 +0,207,369,560,665,1358,1845,2714,3471,4069,6282,7166,7422,9930,9717,7689,9170,10877,11437,13132,12960,13940,16026,16670,14808,15616,14252,14540,11332,9929,6556,5196,73889,58940,65470,47389,44423,51789,53905,49730,34860,29327,14688,11096,10346,8578,4014,2222,188,17295,42461,63569,78157,98858,99279,95414,97425,105196,119469,80276,78750,78876,68326,85174,72699,75442,78426,58599,67727,57812,67398,49463,37234,28188,20882,20921,15840,19944,19421,25962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,2932,4115,5489,5236,4201,5013,5053,5379,6344,7116,5536,5168,4265,3600,2156,1242,1331,1625,1542,1375,1501,1307,1038,689,642,575,567,547,449,360,158,0,17696,34083,47891,83285,86118,128271,144464,112893,131712,127788,168400,229936,245879,244077,186832,0,1017,2473,4144,4522,9366,12243,24380,32056,33297,41962,45984,43252,45230,57752,66120,137402,137541,98420,121523,156151,147588,130089,121388,94632,86760,106542,66431,58849,47646,36806,18998,81398,110299,129829,118367,145558,133784,137306,89677,82223,56292,50923,54417,44219,51264,54411,80226,264046,249733,193422,216863,173960,158002,170863,209974,251676,213860,178294,155922,122523,116515,71706,100347,178070,134661,154548,173999,150561,115351,59670,26162,0,354,696,1096,1199,1533,1730,1530,0,231,471,594,923,1282,1571,1564,1492,1449,1079,1164,925,1256,1650,2361,2301 +19,224,360,580,686,1084,1426,2196,2534,4013,5131,5431,5557,6572,7232,7299,9716,15042,17633,25346,29786,31631,25556,30190,17104,20614,16450,16272,15150,12764,9520,12515,100434,70743,92529,83610,54504,57034,83627,59067,49427,44646,34870,27221,19953,16453,16238,12950,5433,23820,41836,50350,60294,79156,107358,108026,79282,89134,101081,68582,56577,66758,54588,78576,68002,75695,59372,59774,42041,43157,58911,39094,48550,33832,21073,20114,15565,18887,19658,24028,2099,1617,1124,826,342,1752,2732,2644,3191,2050,1469,866,320,256,113,56,0,0,0,0,0,0,0,0,0,5,8,15,24,24,29,33,1062,2548,3746,4358,3709,4222,4756,4364,4965,4974,4704,4179,4517,3766,3510,2162,820,872,1340,1312,876,1254,998,964,1138,838,643,590,438,462,346,172,0,15162,35087,50702,77137,79548,90128,100687,81293,92196,108183,156468,223801,252616,196850,228140,5021,5676,6232,7768,6770,10639,16968,23308,29476,31437,36075,37793,45454,52150,47611,63060,83988,113204,97525,116768,150138,140808,126398,91450,98209,92790,98054,70927,70857,48305,33132,16942,61646,72676,99600,112558,135510,136338,114967,72644,86268,71615,54819,41845,40765,51972,49828,67634,232972,181148,164282,187910,187787,159396,189569,197836,160915,172970,143913,120226,125979,120686,83660,122012,172099,141188,125965,163444,172674,103276,57678,30542,2387,2885,2988,2508,1628,1764,2358,1740,324,496,731,900,1096,1056,1248,1348,1294,1274,1626,1244,913,1404,1548,1914,2512 +42,230,452,634,695,954,1611,1976,2148,2818,3866,4077,4006,4394,3379,4175,8067,18028,24714,42429,44361,42958,40064,37463,21458,23312,21932,22517,14938,15557,16770,20695,95990,94507,112628,119942,89793,92782,92542,75840,69818,68512,52698,35004,26896,29578,28225,28650,9190,18974,35385,40371,63580,63488,87421,106504,80279,94858,81304,73774,53979,53894,67264,67428,69681,63798,56009,44726,37080,39964,44070,39230,44747,30860,19490,14776,16911,24485,27916,29964,3853,2880,2106,1666,770,3482,5485,5550,6732,5710,3598,2084,743,475,248,107,0,0,0,0,0,0,0,0,0,8,14,20,39,52,51,46,940,2013,3148,2700,3995,3245,3492,2944,3963,3411,3819,4017,3105,3292,2574,1782,658,626,625,730,725,798,1078,1263,1351,1153,816,542,478,436,256,130,0,13212,30064,41174,87082,65068,57439,69451,69359,87648,95760,131906,229826,246050,238480,241186,9773,10636,11483,14194,8043,14664,16614,20682,17940,25830,29120,33734,36223,47465,48126,44869,60252,64506,83518,92253,107952,102643,92675,87802,83415,83119,65598,64924,64164,42291,33874,17824,41645,50774,66630,98322,126005,87202,85012,71912,77583,72605,57424,47110,51452,50357,59855,64700,154494,170043,140984,141661,163007,172066,191148,221931,143946,130958,141313,111582,141379,141683,102119,98116,136437,147282,147123,169583,165419,119918,51224,38066,4927,4324,4910,3325,2021,1774,2200,2219,750,872,811,1146,1013,1160,993,1152,1368,1526,1657,1193,1067,1478,1493,1411,1914 +75,294,448,676,858,1124,1803,1844,1488,2020,2569,2908,3264,3060,2846,3525,7016,16548,29444,40212,46444,43162,55142,49308,26212,24858,18422,22344,22838,28386,40798,49565,96583,109414,131725,128087,127349,119724,156701,112552,110806,98376,79361,48194,33400,37308,39832,40896,11160,28914,44964,63814,85502,74372,72058,101443,58989,66698,58694,70676,63368,67534,55766,75400,48287,62169,57557,38926,34075,29204,39465,40512,35921,25637,14721,12928,12788,23530,36598,33556,7872,5299,3726,3062,1425,3692,8662,10442,14579,12666,7249,3354,1457,924,502,230,0,0,0,0,0,0,0,0,0,16,29,36,50,60,66,72,1157,1784,2897,2432,3521,3308,2901,2508,2345,2512,2095,1946,2132,1902,1672,1283,430,506,432,514,610,722,1076,1132,1566,1486,1300,702,338,292,254,122,0,15371,23198,37466,81557,61332,41338,64516,51694,72204,112892,156829,184508,212048,205882,229522,21453,17099,21190,16745,12818,14740,19606,22452,25792,23258,19108,20482,26531,31300,33346,32702,47970,58770,63472,76124,85687,87378,80002,70386,82377,56914,43192,50566,56266,36500,22830,12490,25645,37570,56459,67716,95903,84788,58905,45452,68414,65998,65566,50236,51169,69768,66089,70560,133741,120912,91432,105399,101428,121232,108646,138682,168349,149783,169090,132317,113636,109086,97177,97528,102193,100928,117196,128294,139752,84408,47446,40015,6929,6278,6073,3698,1960,1951,2561,2390,1061,1034,1059,1072,1110,979,979,706,1204,1764,1413,1240,996,1448,1525,1557,1620 +89,408,652,665,1000,1208,1559,1874,937,1520,2260,2142,2404,2626,3591,3133,9434,18930,23246,44928,55778,63540,67448,77026,26203,29340,28611,30286,25659,37104,44347,48924,111437,90902,112389,112915,138740,160615,131552,156899,142548,106601,54044,42400,35660,37651,37368,46631,16051,42363,55037,103026,122304,158729,155749,127151,45152,50536,55322,66299,57720,55785,49589,74408,46331,31263,24296,22447,21682,37774,44608,42024,32581,28201,23411,19106,13464,15831,20504,32157,10050,8008,7631,4126,2432,5798,8272,11901,20899,15066,15162,10116,2135,1614,1081,442,0,0,0,0,0,0,0,0,0,17,27,44,57,75,110,137,987,1539,2442,2124,2674,2708,3289,2573,1006,1062,850,688,754,684,680,848,246,324,318,430,641,768,779,926,1635,1471,1043,578,347,203,140,76,0,16428,32383,51944,55676,61238,62900,51996,23665,68811,117937,133901,149310,177568,245464,195949,28245,23354,21154,18851,14694,13450,16246,19773,26296,29685,26146,18524,11904,10970,9142,12687,34532,48560,63668,78343,75320,57596,65086,38026,62732,57084,48953,47242,48372,35032,28678,16101,14346,37586,54238,61236,70747,66281,43391,24692,45734,48608,38242,64123,75820,68104,60517,87251,90635,84617,110274,110899,79137,53812,51880,52906,139972,118850,94608,101567,119821,88150,99835,84022,52612,91510,110272,114810,109982,73874,56308,34882,8755,6181,4218,3556,2038,1910,2702,2612,1219,1371,1470,1609,1312,876,538,504,1462,1274,912,1078,1098,1498,1485,1276,1572 +120,358,532,624,822,1194,1480,1681,514,988,1601,1841,2952,3152,4048,4372,8006,14922,28659,40362,59448,51965,67963,71211,37580,39005,34684,36186,36333,47105,51821,50843,94136,93748,123196,118021,146574,167908,161223,186044,137884,125830,89958,62240,36800,30390,40220,51090,48280,49461,75453,97344,139989,116286,115674,119407,90714,87276,66416,70680,78784,65482,44109,58264,76436,45360,36328,28411,25210,37980,42104,41712,29655,27323,23456,22939,15790,21622,20604,26445,12355,10168,7076,5877,5035,9010,13279,17274,21392,14798,13890,9070,1954,1762,1224,695,0,0,0,0,0,0,0,0,0,16,33,61,72,110,126,156,702,1099,2007,1817,2561,2482,2151,1971,957,777,826,622,550,458,589,588,410,591,562,714,644,675,779,926,1653,1476,873,631,515,328,206,112,0,15630,31015,34700,47961,50394,48208,47163,38324,70250,110974,121950,136790,159896,173339,175622,43590,34822,33366,25462,20992,16789,18550,19610,17376,19232,17503,13249,13585,13364,13039,16012,30970,35436,50024,56732,65971,44867,44018,28542,44050,40878,41000,37328,38843,31956,20997,11618,11564,26009,30027,30369,63187,51516,33089,17935,32499,33332,33404,54830,58816,57596,58245,90987,69476,85202,74618,62818,73919,47460,47928,41403,97904,84208,64791,83648,117201,99050,92314,72164,43706,91052,128922,106688,113870,77887,44864,35688,21825,13510,8240,5344,3468,2844,3221,3040,1139,1573,1730,2054,1896,1482,816,657,1747,1692,1446,1172,1319,1528,1427,1138,1122 +136,336,429,468,536,685,962,1198,287,584,718,1005,2572,3986,5849,6224,6796,19404,25867,37823,66158,58728,67163,81982,44643,44140,47552,34316,41968,57384,65722,70615,123493,133264,109872,141872,209294,225213,212019,171964,169772,144343,123535,87002,38579,33714,38518,41730,64528,70895,82450,116424,114344,106315,80514,97107,142314,127128,98142,95566,87274,77692,45023,56546,84666,61034,44644,33902,32164,26980,34056,24921,31131,31682,23469,23663,20996,21823,27755,26292,12181,9067,9188,6130,6530,10400,17355,24324,20555,14222,12722,6757,2451,1896,1155,498,0,0,0,0,0,0,0,0,0,23,42,82,73,149,180,177,373,769,1216,1120,1748,1683,1683,1612,676,531,535,536,232,320,418,444,610,598,665,684,596,668,634,993,1298,965,1084,839,585,400,256,114,0,10097,20568,28042,47531,45210,35054,38852,52741,81958,105380,118793,115184,129941,119038,138333,73020,50112,39780,27074,26336,22162,15878,14144,16065,12587,11246,12398,12147,14191,14765,26356,33078,34516,26658,32638,42192,34538,27794,18915,28063,22361,22684,18636,22940,20158,12110,7026,6744,13038,17830,19319,43300,35071,26118,12434,29998,37982,40218,52840,47656,62605,64055,89122,81131,79122,69590,62346,45101,29430,28176,18535,86953,84653,55339,60120,80310,78706,59770,48978,55033,89956,105964,92799,112763,75120,47333,31744,27707,18753,10866,7732,4076,4092,3100,2615,1588,1802,2386,2436,2351,2130,1365,894,1909,2051,1613,1377,1391,1213,902,840,614 +144,200,241,314,365,352,421,488,163,414,590,986,2028,4090,6316,6237,7355,24378,33908,44526,64125,64753,69820,84368,75272,54120,49403,51893,54528,77606,81273,60672,102875,98340,141656,167169,202889,234554,222190,180222,187001,170093,114004,79367,34684,45253,45680,59780,66588,90180,98734,123619,125068,108921,97422,113020,178587,122364,98060,79462,89905,74548,57910,56818,96822,69908,46942,42365,35844,33584,34470,30839,18697,21210,24867,25391,20491,21804,25556,28898,18250,14532,10811,8012,7625,10797,15219,21768,21922,16434,10933,7674,4103,2596,1630,728,0,0,0,0,0,0,0,0,0,23,53,86,72,140,216,203,328,538,656,682,965,830,720,710,372,288,218,246,123,138,181,198,727,756,856,834,680,697,816,927,1304,1143,1022,812,729,446,301,140,0,11894,20794,26186,35748,40088,42394,40798,52351,78027,109448,108573,98886,104854,137253,129324,87900,59413,38314,39490,34094,22344,14536,10799,8468,8104,6620,7122,8765,11032,14964,25263,32524,26314,28272,30053,28463,24720,21778,11328,13760,12221,11987,11354,11701,10194,5309,2934,2860,6005,9930,9042,25912,21672,13273,6767,12003,18734,22743,32867,36061,53201,54802,93152,100715,69722,64232,56250,40500,24016,18318,13964,41365,46310,28504,31624,46090,39248,31492,21236,75007,98321,105821,92651,78080,58707,64556,43542,35936,26324,14429,8806,5027,3963,2894,1949,1478,1924,2031,2013,1982,1912,1929,1392,1744,1748,1654,1201,1423,1061,738,450,346 +150,689,1561,1703,2166,2131,2432,2606,2425,1861,1924,1757,1307,2368,4110,5650,7666,20376,32618,54985,86753,88016,62263,63632,90182,87521,84107,82623,121082,124822,120035,110420,65105,50480,46716,35411,37126,33890,24574,11886,0,11621,21807,47561,58124,47119,52885,75254,82918,56064,37425,26800,12885,10751,13706,15996,13555,15596,21502,20807,18286,32694,50938,64281,81335,76355,60772,67444,83584,83829,73744,78103,90187,66140,69792,60278,43127,36811,27686,27458,22020,20443,17512,14256,10427,9177,12382,12613,11366,8943,7885,4537,1697,970,703,290,0,2,3,4,3,5,6,8,8,12,17,23,36,108,183,241,228,199,194,133,133,92,53,32,24,28,31,25,20,19,12,7,1102,842,492,571,466,660,740,1062,1275,1646,1471,1291,1080,911,612,351,0,3055,6012,9404,10788,10522,8447,8509,12755,19440,28320,25848,30676,55268,64307,78339,85026,54936,44489,34604,18797,14440,12148,9165,10703,9752,10732,13611,19086,27450,31079,28340,31216,23630,19207,24736,23049,16686,16211,13230,13155,10240,5985,4464,4050,2274,1309,771,0,1833,4411,8503,10518,26266,38745,48770,57959,57913,79552,82408,122492,153846,143422,115992,88402,57413,43489,27933,20320,18600,13996,6144,0,0,0,0,0,0,0,0,120705,98291,76422,68858,85848,56675,43720,20246,0,154,336,701,973,1105,1600,1393,1393,1282,937,728,457,674,806,1020,1254,939,808,632,755,659,367,193,0 +174,734,1234,1207,1678,2267,2352,2354,2017,2150,1710,1614,1156,2044,3030,4107,7525,25492,48234,52752,74492,68488,65943,76971,74228,74876,85371,78510,117667,117648,144904,94412,70445,60519,46096,29902,36236,25976,20009,10187,436,10738,24460,32640,53985,51568,46553,58520,110575,73088,44793,36802,26408,19570,16547,17836,14304,17259,19064,19483,20602,35628,44592,63015,65200,67525,49836,65124,64369,69552,56573,61634,74184,70005,49466,48628,37840,39768,24754,20095,17989,19019,14432,15440,10796,9952,12148,10978,12357,9660,6613,4982,2594,2290,1052,532,0,5,7,9,7,12,14,18,12,19,18,26,40,107,147,201,181,386,630,1023,1656,1847,1702,2185,737,1099,1292,1338,1843,2325,2876,3752,869,780,697,544,531,630,538,750,943,1226,1109,959,703,668,365,242,0,2742,5676,9106,9976,10834,11910,11702,17634,20094,29687,29568,38662,50744,68850,77600,83262,62956,33735,29064,15863,13889,12266,10680,9744,13300,16310,18840,20212,21418,28666,28508,26859,23764,27121,22324,22439,16883,20388,17480,13949,9870,5004,4457,5449,3651,2176,1020,0,1480,2699,6263,10494,18361,25695,35888,50712,70538,61498,101258,72161,82589,127221,119368,76167,52286,47609,32152,26044,18122,13162,5906,0,0,0,0,0,0,0,0,112645,97407,82165,73684,73012,60406,43639,21062,1850,1423,876,1219,1480,1744,2325,1824,1471,1168,1019,726,543,786,811,958,727,706,780,652,531,467,395,197,0 +186,729,1122,1200,1779,1824,2222,2342,1884,2134,2170,1612,1298,2037,2364,3668,10582,32610,49968,66513,81841,65625,51568,44061,46315,73900,77202,64172,163746,135226,123659,116406,68253,54894,39050,24897,29890,21705,12919,7104,821,13721,22510,23019,40407,47577,45282,39100,107515,81240,53324,35774,35636,23185,17482,18076,19564,15858,19962,16184,20964,22901,34465,40144,63102,72260,61552,59200,64958,54531,54124,43325,76139,68006,48202,46580,49143,32691,30770,29482,19331,19464,16412,12090,8870,10080,9304,9814,14247,10424,8197,6041,4739,2983,1552,639,0,5,8,12,9,13,20,20,13,22,23,34,30,87,128,168,174,530,910,2202,3562,3353,3946,5748,1763,2202,2652,3020,3742,4113,6447,7328,985,952,680,637,582,560,564,871,794,1042,1036,1054,527,453,260,116,0,1838,4084,6356,10397,10347,12472,17858,18380,27993,28622,27799,41148,49694,50708,57687,61044,40637,25238,22454,16492,14879,10436,10081,10278,15145,20874,26170,15415,25119,28347,31978,22935,29988,29531,27164,30729,29000,21346,21306,10196,6848,4590,4569,5682,3410,2352,959,0,994,2180,4286,6981,14010,18882,23164,33960,43601,70368,91013,55606,80096,93891,93484,83189,66765,45224,41458,26110,15884,11344,6236,0,0,0,0,0,0,0,0,92666,67121,67276,85803,93972,71026,36912,16855,3246,2316,1648,1696,2702,2353,2407,1688,1256,1035,856,682,625,909,986,985,558,564,596,600,512,410,305,156,0 +263,432,776,1231,1508,2004,2118,1712,1874,1662,1644,1269,895,1400,2044,2476,10789,27048,43332,51332,72222,67870,46995,44084,42858,61396,74700,74682,127974,117487,125723,111250,73076,50383,37000,27074,24130,15903,13150,6532,1256,10975,14441,22670,34492,43776,38775,44604,88544,73509,38899,32980,30905,27318,23476,21240,15815,16640,12054,13610,18738,19464,22854,22200,62917,60634,48264,49074,50226,48027,57247,48256,62603,50736,29377,32628,44891,34218,25674,24622,16601,16138,15590,14944,12332,10399,10140,10268,14292,8270,7808,6322,3964,2762,1960,706,0,8,14,14,17,20,23,28,12,17,24,34,41,66,92,122,130,758,1114,3300,5028,6218,8466,9210,2569,3383,4960,4723,6002,8646,10571,11083,1322,962,604,684,460,592,621,878,846,984,944,836,449,404,202,94,0,2000,3832,5740,9329,11739,16571,19400,16380,24447,33134,28666,33647,41372,43274,52032,33140,21794,17489,14369,12062,10858,11744,9646,9894,15524,16152,22020,17571,20960,23741,28074,19444,28261,29619,28318,24827,27108,19957,21062,10717,7162,6088,5224,5567,3763,3009,1394,0,1314,2750,5405,5420,10379,15762,17027,44905,43974,52278,60728,43523,67975,78808,110856,69314,66311,33661,34315,29160,18746,10336,5624,0,0,0,0,0,0,0,0,59361,63127,64882,65586,79806,54928,34807,19608,5379,4058,2825,2820,3150,3140,2958,2439,864,825,863,600,514,622,974,724,606,514,584,468,301,276,188,84,0 +323,626,800,829,1138,1714,1752,1582,2206,1397,867,859,564,954,1137,1254,9647,17131,33126,51047,58785,57564,75421,72985,28301,42882,69862,105104,116158,125576,102477,118168,58437,42360,23009,19278,16326,12671,10825,5877,1282,10812,23002,36248,38692,50387,55399,64593,72785,74960,53010,39882,39736,33938,22281,22792,18614,14045,9594,9058,12706,10882,7209,10095,57211,57792,51934,43496,32422,29241,28007,32060,47689,57138,55785,52099,33308,27122,26009,18992,13438,14968,15039,11938,14546,10619,9787,12888,10716,7585,7077,5575,5121,3494,1820,788,0,7,11,19,22,21,20,29,10,19,28,30,37,52,59,52,65,2210,3718,5732,5908,8482,12929,11906,4519,6157,7788,8402,8028,11694,12918,15193,1520,1518,1139,798,562,819,867,1129,1045,649,564,500,455,347,287,141,0,3687,6313,9833,11576,17136,24607,29168,20974,24408,23547,37712,40870,34194,38030,44550,10302,8302,8252,7446,6704,9440,9801,11046,9708,12906,12348,18568,20592,18332,11534,14405,21502,22846,17139,21287,27673,24370,26804,22274,10812,9125,6640,6663,5489,5182,3808,2211,0,1007,2287,4811,6484,6296,7679,7824,46188,50049,59419,52846,44542,59856,55378,84262,56915,47768,36084,39808,33513,29801,20436,11560,0,0,0,0,0,0,0,0,53841,74775,71957,72418,60923,39959,38699,24745,6666,5204,4731,3988,4139,2985,2794,2940,519,462,380,448,440,320,336,500,538,444,328,318,236,132,85,48,0 +214,513,507,674,861,1028,1237,1206,1691,1290,864,762,459,734,734,766,8519,16587,29092,48440,53999,55176,62556,60418,23912,45921,48527,88388,82943,115172,97104,94751,34552,33443,17528,14384,11733,11136,6661,3832,1080,7991,16933,21510,34456,34626,36637,35830,88421,69330,49136,38012,44846,43024,26916,26292,20699,17208,17191,13852,12223,13408,9708,11920,68082,61708,53297,48970,32945,26021,25667,28899,32389,37708,38667,35134,25304,27427,23252,18387,19011,15812,14773,16733,11324,10095,11268,11778,10456,8874,9693,6670,3440,2828,2040,1117,0,6,9,17,20,28,37,40,20,28,30,30,31,60,56,74,107,1994,5257,5816,7348,10066,12059,14340,8559,9018,8870,9251,8127,11576,16124,15592,1198,1280,930,620,466,618,615,762,1010,629,543,471,443,308,220,104,0,3558,7891,10743,13112,17948,22804,27542,16172,23114,23415,31801,32871,34328,52192,47358,8314,7052,8045,6989,5792,7505,6426,6900,8363,10436,10318,16351,19472,20415,16895,19180,17485,24336,25108,26790,25758,23675,26165,21632,15275,9978,7783,6188,5067,4044,3564,1647,0,1753,2910,7066,6728,11255,11473,11760,35716,39692,54302,40149,41252,48214,52566,90057,46386,34836,34478,31293,22700,20732,14255,6510,0,0,0,0,0,0,0,0,44804,64680,80629,67695,44160,36590,32908,21108,9762,7579,8121,5944,6152,4235,4088,3407,312,344,318,290,311,258,313,454,413,352,298,257,175,124,79,42,0 +172,280,382,593,774,699,719,1052,1005,820,794,572,329,433,642,801,7460,18302,23097,41018,43883,42817,41525,36237,20723,38282,47756,73523,81051,93712,112686,109550,19966,14748,13674,11527,7606,7399,5047,3444,852,7474,11947,18042,19167,24150,28074,30427,82583,64724,55396,54372,38860,32411,35378,27190,19539,23286,21904,20871,14216,13702,12574,14716,57219,58273,60394,39579,39447,33871,28842,27153,28718,31374,33146,35072,22436,23793,17632,16450,20120,15606,17714,18526,11204,10963,12794,13907,9154,10546,9090,6568,2816,2426,1839,1034,0,5,7,12,13,30,42,49,24,32,37,30,30,45,78,90,157,2515,5354,6564,7129,7519,11609,12268,16348,13284,11882,12996,8223,9696,15327,15658,1041,798,818,456,364,417,564,582,771,593,458,314,333,310,187,87,0,4861,8258,11005,13520,18000,21439,25856,13946,18145,24145,28177,31123,36138,51074,42679,7783,5474,5781,5359,4062,4866,4938,5190,8594,8057,10718,9966,12634,21225,23795,23994,17420,20095,26127,28534,30928,27149,26744,22150,15496,14823,10732,7626,3109,2608,2226,982,0,2666,4836,9427,10231,10770,14503,12238,27649,34374,40796,43520,38875,37503,44336,68833,28289,30200,27631,29203,14057,11234,9866,4140,0,0,0,0,0,0,0,0,44129,64222,66336,62014,36662,33666,19802,13815,12053,13653,12556,8229,6121,5489,4170,2543,222,221,170,186,308,242,273,296,354,327,237,212,146,84,48,29,0 +222,214,288,413,566,514,508,819,820,654,466,478,252,313,365,388,6236,10336,18027,30935,29814,31912,29101,32931,21579,33286,47546,67401,59789,85220,89705,97088,13485,9321,10594,7482,5494,4640,3337,2748,1102,4974,7880,10474,10151,13621,13885,15542,90361,62296,75872,69026,48980,47326,46504,35380,20609,19108,19150,25566,24298,21704,23144,20754,57366,59752,46195,38024,33183,24014,22801,18056,16953,18128,19384,20232,15717,15498,13872,17138,19620,16746,18592,19336,14316,13180,14051,11934,7864,7562,7894,5842,3404,2992,1822,1169,0,5,7,12,13,32,47,58,46,58,42,40,34,56,80,92,180,1928,4908,5718,5637,8963,12170,13482,15832,16879,12583,12155,10807,15254,15418,18940,927,734,742,568,346,382,512,408,630,520,423,270,214,166,114,62,0,3533,7781,8987,12237,13052,13804,23856,20153,24976,25962,26302,39674,52817,50703,51848,4870,4548,4304,5014,4269,4000,3872,4020,7308,6650,10056,9434,12105,19224,20728,28854,19596,25622,27521,32395,36631,31334,29456,17606,16252,12914,10580,8109,2514,2356,1834,896,0,2594,4389,9303,12544,13011,19647,16711,22375,23624,23705,35196,32857,47520,51729,66136,30424,26280,16164,19069,11023,7720,6096,2928,0,0,0,0,0,0,0,0,53745,61078,53016,44565,38104,32003,22453,18130,13748,12733,12741,8904,6960,5166,3828,2700,127,122,83,108,162,145,136,140,192,170,134,94,67,48,31,15,0 +224,187,238,171,130,304,406,468,499,375,428,298,152,89,60,34,3184,4127,6848,8494,8329,7238,9248,13547,22304,26900,29331,26273,29500,35704,41850,83329,6502,5220,4083,2956,1500,1517,1253,1265,1458,999,1030,805,548,376,296,172,73450,54346,51305,46539,54768,59994,50149,35868,23308,24274,21282,18915,11651,11348,14586,20472,56871,37291,33737,27184,13773,9449,9336,5514,880,7080,11356,14906,21867,19741,15865,21103,24656,19425,21002,13107,8405,9709,11483,8184,8352,7817,6566,6080,6337,5172,2419,1312,0,5,9,15,24,38,40,40,56,68,58,56,58,81,94,101,180,2994,7164,8726,13479,14857,15772,17998,21168,24110,25047,29972,38229,46305,39060,25666,697,591,396,490,449,367,304,378,472,418,445,373,403,303,219,94,0,2534,4437,9603,12575,18196,18764,20768,22186,30837,41221,47669,42970,55335,54958,47662,2134,3264,4650,4779,5659,5635,3792,4889,4400,5437,7328,9810,11826,13150,19570,27672,22019,20218,18816,17861,18955,18719,19347,13464,12889,8404,6925,4230,3595,1964,1301,666,0,972,2074,2193,3394,10039,13819,17436,18122,28694,50459,51280,65280,63986,57905,75993,24787,21406,14703,12158,10571,9688,6652,2929,0,0,0,0,0,0,0,0,59163,51367,48155,43810,45979,38342,33261,20894,16524,10191,7385,7560,6258,4378,2772,1916,0,2,3,5,5,8,11,13,11,13,11,8,5,5,3,2,0 +298,270,250,196,162,344,388,486,419,456,399,381,436,348,330,372,2791,4194,6509,6508,6303,8265,6897,10734,19569,23428,24408,23964,27458,32578,34714,76284,6409,5078,4877,3670,1726,3336,4356,6364,3704,3537,3417,3314,2827,2856,2401,2496,69305,57560,47840,48260,50421,53233,40322,27784,30600,30248,23076,17754,11042,12409,16082,16279,54440,43594,30880,22243,18806,12529,9108,5808,2229,6741,12112,15269,20189,18612,17696,25696,25537,17054,17272,14586,6911,7903,10626,7430,7155,5304,4857,4688,7131,5268,1798,1150,0,6,12,16,19,30,37,44,49,60,70,58,56,71,86,82,144,3434,5729,9146,10996,14305,20304,22468,22486,22194,20313,25938,27097,31330,37953,24508,600,488,397,404,459,424,374,414,502,439,334,277,406,267,192,92,0,1852,5097,8414,10745,12553,11083,13718,17092,29126,30250,36296,33421,33182,45306,43746,1867,2572,3306,4540,6456,4780,3048,3708,4019,5075,6736,6808,7783,10546,11497,18502,18407,21718,21818,18884,15914,16328,16049,13863,13090,10678,7549,5502,3394,2430,1916,934,0,966,2631,3004,3690,9727,17303,16318,13638,23770,46034,43368,57527,52379,52600,63508,23508,19454,13504,11532,9912,7360,4962,2654,0,0,0,0,0,0,0,0,62792,44524,34102,40178,42450,37724,26763,20816,10220,7484,6313,5554,5687,3708,2482,1881,0,2,4,6,5,9,10,10,12,10,8,8,5,6,5,2,0 +296,313,286,186,194,278,429,484,369,430,530,598,593,570,601,604,3405,3678,4910,4523,4999,5852,7880,9409,16743,18779,24015,30571,19263,33573,39086,66546,7610,5958,4775,3022,2560,5426,8050,13321,6927,5442,5159,6813,5239,6335,5512,5478,42418,47179,47774,59522,52045,34931,35206,21876,33755,30050,24442,14267,7215,9675,12758,11994,52109,41473,27258,16697,19917,14909,7701,5028,3033,6045,9799,16705,15125,20348,21654,30402,23776,21360,13388,10585,7946,7951,8422,7354,4717,5394,4303,5103,6171,3953,2062,957,0,6,10,14,18,24,32,49,51,47,58,60,63,67,66,62,177,2360,4808,8160,12238,17568,19692,23610,17366,12900,13704,22409,19124,21525,28009,19138,462,509,406,418,364,316,360,460,392,447,380,247,320,198,120,72,0,2050,4836,6133,9212,8752,8485,7472,19940,17425,23398,24002,22778,27550,38422,53174,1244,1838,2293,3421,5737,4893,3714,2976,2391,3767,4138,5208,4466,6104,7597,9912,23223,24831,22764,20423,16668,13399,15480,15842,11265,8877,7508,6050,3688,2447,1979,952,0,1182,2524,2492,3016,7278,15030,15462,8472,24614,33798,47580,32382,36991,39305,50384,15739,14240,13342,7982,7364,5343,3904,1738,0,0,0,0,0,0,0,0,49347,40018,26199,26415,30605,32585,24317,16696,6932,6790,5333,4726,3255,2828,1488,1242,0,2,3,5,4,7,8,8,8,8,6,7,4,5,4,2,0 +241,258,244,204,161,254,324,373,231,382,635,625,818,722,646,856,3032,3666,4673,5351,6629,6318,8668,7943,18156,16488,21873,21232,16908,35741,41228,51306,9742,8099,7194,5038,2974,7446,14577,17638,7912,6052,4848,7310,6941,7283,7790,7610,26750,39346,37336,44031,42449,35616,42499,30313,38266,36738,31630,15482,9243,8668,8722,10290,49596,37010,30423,18346,18590,12158,6365,4123,3041,5289,7345,13575,16379,20928,19411,23792,13749,13388,12413,9705,6251,7502,8373,7970,5504,4152,4468,4720,5993,3685,2491,1194,0,6,8,12,15,22,32,39,37,38,44,43,65,50,46,46,150,2272,3631,7214,10246,17341,19124,24788,18452,15436,16185,18482,13193,16562,21412,16402,323,301,343,352,347,362,328,366,410,336,286,208,226,171,112,56,0,2098,3905,5736,9014,8346,7568,8150,14004,16486,25218,24020,19845,23164,26634,37380,1492,1601,2026,3526,4483,4382,3456,3430,1601,2810,2938,4445,4235,5915,5564,7565,18888,17121,16926,15700,12304,14696,11259,13584,10099,9084,6040,4420,2876,2080,1857,829,0,1387,2573,3806,4696,9177,15594,14158,8870,17430,28227,35594,24955,34966,34353,45722,12517,11370,7445,6189,6102,4296,3008,1246,0,0,0,0,0,0,0,0,35933,36331,34008,33098,33466,29118,19084,12857,4651,3957,2642,2622,2538,2248,1038,1048,0,1,2,4,4,6,7,7,7,8,7,7,5,6,5,2,0 +256,192,144,141,184,156,162,241,144,238,382,616,964,910,1116,945,2259,3743,5888,6868,7228,6460,8291,6850,18711,13530,14146,17948,18598,32475,37990,33525,12224,10940,8277,7426,4820,8841,11527,20744,9979,11412,12780,9766,10694,12517,11435,11760,15763,13994,16998,32298,40428,41441,50460,38980,47269,39439,34033,17602,8353,7265,8355,6700,48352,41480,39011,28664,14964,11994,7375,4932,4076,7952,9354,13686,14423,14973,15879,18425,10232,9042,6624,6841,7527,7980,5894,6120,4923,4941,6055,4268,4601,3430,2736,1396,0,2,5,10,10,17,23,30,22,32,38,37,44,43,58,45,82,2906,5092,7982,11732,16708,22628,27956,21544,18748,23576,15894,13703,10991,10726,9305,210,191,242,260,318,328,327,346,349,267,198,159,150,143,99,50,0,1513,2693,5099,5878,6434,8786,7744,10083,13412,12280,13783,21711,38168,44293,53446,1613,2876,3490,3244,3756,3117,2076,2206,578,843,1510,2201,2843,2630,3417,5435,12418,15555,15114,10670,11031,11773,13867,12040,7353,5665,6215,3553,2172,1523,1046,588,0,1455,2987,4480,5418,6503,6853,12290,8192,14881,16806,19738,17320,23656,23699,29821,6303,5839,4539,5118,4020,2994,2204,980,0,0,0,0,0,0,0,0,38622,32510,24212,27964,29745,18973,12582,8398,1856,1438,1087,1100,999,1074,1282,1171,0,0,1,2,2,2,3,4,3,5,4,5,4,5,3,2,0 +188,145,126,156,148,117,129,178,133,338,566,929,1216,1046,1147,1456,2776,3813,6158,5768,7550,5874,5749,5548,15013,13528,14034,14631,13481,26124,31138,28574,12772,12684,8865,7988,3949,8646,13712,20914,15582,17778,18540,14638,13971,14340,17067,18445,17574,18310,18127,31832,33853,36532,45956,36807,44128,32816,28634,18186,12714,12234,12814,8698,39354,30278,24606,22324,17062,13140,8383,7269,6896,9928,10122,12025,11521,10995,15086,16286,9232,6918,4783,5239,4939,4936,5451,5433,4300,4082,4020,3684,3402,2306,1755,1014,0,2,5,10,10,14,22,24,15,23,30,30,41,40,44,34,66,2584,5308,9485,12050,17454,19757,21432,17648,19851,24006,20297,15472,12232,10325,8801,150,164,235,258,249,244,252,214,217,170,150,118,130,108,74,41,0,1070,1640,3131,5088,6062,7229,6688,7064,10208,8797,13508,17375,25414,28120,29380,1191,1880,2867,2900,3071,2293,1764,1652,353,786,1010,1641,2194,2166,2364,3680,9863,9602,13574,9388,6812,8998,10185,9042,5964,5188,5127,2826,1845,1360,872,426,0,1083,1900,3145,4031,5882,4367,8098,6214,10814,11581,13118,16155,18932,17882,23374,4894,5049,2753,3355,2388,2323,1610,702,0,0,0,0,0,0,0,0,27649,25871,15367,18566,27083,16562,12630,7439,1195,1032,911,920,939,817,995,998,0,0,0,1,2,3,4,5,4,6,5,6,5,5,4,2,0 +194,186,160,144,102,91,86,99,85,357,802,1102,1235,1337,1392,1674,3861,3669,4886,4574,6362,5496,5682,4067,12756,10829,12237,13353,8370,11550,20254,24383,13040,14033,10372,6845,4538,10326,16392,21478,22180,23236,19156,15353,20344,18814,17697,22774,22513,22346,25590,32316,28465,34540,35955,37785,46228,27954,21788,24061,14007,14763,17204,15023,32002,19276,15432,13893,13859,14474,12078,9262,8063,10386,11482,11540,11708,14292,12702,12142,5708,5652,4368,4072,3700,3434,3374,4139,3357,3086,2986,2462,1536,1369,1292,663,0,2,4,7,5,9,13,14,11,17,22,18,29,32,26,21,41,4040,7994,11394,14332,11050,13223,14140,18973,14950,17830,16774,12856,12969,12936,10778,133,144,150,149,215,138,108,118,160,139,98,94,73,61,45,22,0,481,991,1520,3325,3361,4147,3770,4007,7095,8222,10618,7620,10239,15567,15173,554,1101,1468,1712,1377,1160,958,1267,193,536,747,1002,1961,2228,1884,2262,7629,9363,8322,7974,5864,6428,5980,5509,5046,3646,3618,1842,1300,770,417,190,0,687,1253,1807,2451,3298,3175,4772,3768,5257,8481,9234,11972,13897,17486,16742,4247,2566,1894,1815,1804,1150,822,437,0,0,0,0,0,0,0,0,16967,15719,12501,13378,18083,14486,8877,5511,753,661,660,703,650,650,571,619,0,0,0,0,1,2,3,4,3,5,4,5,3,4,3,2,0 +157,132,100,94,70,66,65,64,42,357,736,1594,1418,1754,2128,2288,3374,4301,3393,2919,4906,4504,3373,3158,8785,7414,8438,10688,9742,11229,13929,14317,11968,8848,8900,6442,4500,9622,13224,21372,23361,24642,23512,23206,19048,20926,22349,22556,26998,24660,25597,26626,34208,34600,34447,42532,43484,29273,20002,25838,24270,25189,21674,17111,21383,14760,9112,8883,11312,11530,11025,10864,8630,9526,10612,9052,9943,8964,8060,8290,2691,2284,2613,2088,1828,1549,1392,1944,1706,1549,1318,1062,734,738,567,318,0,1,2,5,2,5,7,8,7,10,11,10,15,19,16,12,18,3586,6048,9064,15324,12788,9180,15107,15882,16243,13438,15809,16486,15234,16638,13904,59,70,78,80,106,70,49,44,86,68,41,40,41,28,20,12,0,211,481,765,1586,1680,2481,1774,2255,3572,4187,6244,4322,5444,7609,9938,268,448,785,894,712,512,489,600,107,252,419,412,1174,1204,934,1308,3663,4436,4717,4139,2634,2768,2622,2860,2738,2338,1609,910,744,434,200,92,0,298,507,910,1257,1478,1332,2446,1651,3082,4932,4910,5717,6432,7652,9673,2111,1286,884,772,852,595,371,188,0,0,0,0,0,0,0,0,9911,8165,5550,6004,9042,7383,4340,2706,445,364,378,365,342,330,297,330,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,1,0 +78,80,61,47,17,28,42,51,51,47,56,65,76,75,66,74,64,60,70,64,56,37,33,17,0,0,0,0,0,0,0,0,0,3284,5670,6496,8689,10630,9647,13180,13187,14136,10654,11168,11660,12244,10445,17076,18555,18417,12152,8756,5492,20578,28848,25982,35967,39841,35015,27422,27515,19521,15367,12924,11727,8936,6453,5114,3748,5568,7591,8332,8294,5537,3968,3042,2333,2796,4110,4430,3574,3300,2761,3416,3764,4474,3957,3622,2806,4651,7286,11573,12826,12641,16436,16214,22994,20908,23287,26812,23056,17604,13920,15144,11950,12912,10885,8752,8815,7087,4953,2439,0,0,0,0,0,0,0,0,0,4030,8434,13132,16269,18498,17576,15471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +72,78,61,43,30,34,47,46,40,51,62,72,61,59,55,68,52,45,60,54,48,36,32,16,0,0,0,0,0,0,0,0,1196,3349,5734,7379,12237,11761,10528,12226,15869,12560,14903,14952,13955,15322,21072,21192,12056,13633,11062,9954,11342,21566,25465,36128,27141,33362,32215,32546,20866,19534,14067,12260,29128,18620,15188,10830,5709,8789,13705,19408,22245,20049,12526,10261,6760,6382,5454,5190,4362,5676,4289,6260,5663,6244,6936,5869,3672,6672,12674,13558,18836,22174,25246,27756,19265,16546,15988,17982,16021,13444,19137,16068,15374,14509,11291,11554,9742,8629,7318,7432,0,60,100,118,286,449,459,642,1160,4880,7762,11762,12068,16175,22673,22187,0,1,2,2,2,2,2,4,4,4,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,2,2,4,4,6,4,5,4,4,2,2,2,3,2,5,5,6,5,7,6,7,17,15,10,9,8,9,6,5,0,1,2,2,2,2,2,2,0,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,6,4,6,8,10,8,10,7,7,7,8,7,7,8,10,11,12,8,12,11,11,13,11,8,6,2,2,2,1,0 +46,59,66,50,47,49,46,39,34,56,60,58,46,57,62,65,40,46,36,37,48,36,26,12,0,0,0,0,0,0,0,0,2714,3227,5284,8000,14389,13324,12030,9798,21046,21656,16428,22872,20389,25568,25210,32110,10784,13774,13592,9910,13469,22457,34460,31764,30631,26737,29538,31719,24591,17227,14101,13038,37387,38644,27472,21265,8041,13846,19296,25960,30508,31940,24091,20292,13333,13029,8454,6766,6609,5762,7428,7923,5883,7324,8002,9386,4140,8255,15428,19068,20697,28410,30868,27586,16268,16639,13790,14050,15677,16047,18491,16534,16611,13606,13224,15251,11281,12597,11890,14510,0,116,226,303,541,728,1022,1109,2599,6126,8362,7840,11230,13844,20735,26648,0,2,3,4,3,5,5,7,6,6,4,5,4,5,5,5,0,2,3,4,3,5,4,5,3,5,4,5,3,5,5,5,1,2,4,5,4,6,6,10,6,7,6,6,4,5,5,6,4,7,8,8,9,12,10,12,29,21,20,19,17,13,10,7,0,2,3,4,3,5,4,5,1,2,3,4,3,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,8,10,6,12,15,17,14,12,12,13,12,12,13,10,14,16,22,26,16,18,18,21,22,18,14,10,4,5,4,2,0 +47,56,64,49,54,48,51,46,24,46,39,48,49,48,52,60,40,41,40,43,42,35,26,12,0,0,0,0,0,0,0,0,3820,5312,6150,9720,14264,10766,9790,9744,22936,16362,15757,19952,24353,31698,31355,32416,10775,13184,17646,14527,12118,20228,24058,28467,28010,28750,23856,24596,29052,18105,15008,11573,53391,50688,39594,27462,13590,20879,30112,37453,43109,45033,30074,32154,21708,20202,15962,9118,7214,8422,10055,10456,8162,10700,12113,11620,7849,12102,16324,21911,31871,29440,36312,37280,11227,12486,13732,11614,11386,14664,18392,19608,17677,15770,10855,12964,15486,14184,17826,19886,0,180,295,458,612,1190,1953,1672,4605,6608,7848,8926,14273,17821,18558,27310,0,2,4,5,5,7,7,8,7,7,6,7,6,7,7,7,0,2,4,5,4,6,5,6,4,6,6,7,5,7,7,8,2,5,6,8,7,10,10,14,8,9,8,8,7,10,9,10,6,9,11,15,17,14,16,18,39,38,31,28,22,19,12,10,0,2,4,5,4,6,6,7,2,4,5,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,14,12,18,18,24,24,27,20,22,19,20,22,16,25,26,30,32,23,22,18,26,26,19,13,13,7,8,6,4,0 +41,51,66,60,58,62,52,46,21,28,29,30,36,42,60,70,36,44,48,34,33,34,22,13,0,0,0,0,0,0,0,0,4346,6766,10440,11342,12646,9880,8810,7690,22553,19618,20067,19679,25504,29969,30603,27572,12405,12639,17337,18145,16051,16682,17569,31377,33903,25414,26118,26536,24368,23395,22105,20495,73031,55922,60923,39376,17894,20202,25221,33019,62245,52828,47652,43484,31763,23332,19674,11684,6248,7032,7373,11285,11974,14139,18798,20628,9747,10782,16523,26503,35410,37383,29328,38827,9914,11062,15351,16287,12122,15352,15312,23364,14367,12047,12095,15611,20863,19767,19669,18597,0,245,509,635,838,1538,1982,2788,5910,9884,12930,12839,14662,19198,27382,30784,0,2,3,5,4,6,6,7,7,10,8,8,6,8,8,8,0,2,3,4,3,5,4,5,3,5,6,6,4,7,8,8,2,6,8,8,9,12,10,13,9,9,9,8,8,10,11,12,6,10,14,16,22,17,16,20,43,47,46,34,24,20,20,12,0,2,3,4,3,5,6,6,2,4,4,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,19,18,19,14,13,14,24,31,27,31,26,26,26,17,17,34,31,24,26,32,24,23,24,32,36,28,20,9,7,4,2,0 +116,113,95,90,76,62,64,62,23,30,28,33,34,31,51,46,23,32,37,33,34,29,18,10,0,0,0,0,0,0,0,0,7669,11638,15176,16708,11728,14030,12505,12766,23312,23768,24952,22746,25526,30100,34946,34055,16582,19994,18108,20390,11793,15358,15434,27946,30709,26942,24766,25382,24798,21626,17927,12447,82775,78830,70788,42582,20894,28312,24620,43549,51318,55793,39630,34016,36297,27920,20225,9398,7095,6262,6144,10760,9539,14373,15572,25353,13657,16444,24770,35666,43326,34008,30421,38390,10678,13362,13060,14595,12159,13416,14916,19928,15721,15718,16115,23194,26450,27664,24482,30250,0,248,492,896,1162,2253,2571,3956,7031,10902,14131,11962,9938,15006,20060,22850,0,2,5,7,5,7,8,9,11,10,10,10,8,10,11,12,0,2,5,6,5,7,6,7,5,7,8,8,7,10,9,9,2,8,12,13,11,18,22,24,19,21,17,17,22,20,18,20,10,14,16,21,26,28,34,30,45,44,44,38,27,24,22,14,0,2,5,6,5,7,7,7,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,22,18,18,14,16,20,29,38,36,36,38,30,30,20,19,35,36,34,40,42,44,32,32,36,40,30,22,10,8,6,4,0 +185,175,142,105,81,81,68,51,21,26,25,31,20,23,28,30,17,20,20,25,22,18,12,7,0,0,0,0,0,0,0,0,11002,17712,20244,29453,15937,16430,21748,23347,25071,19882,22732,25808,29473,33982,28333,25834,22421,19956,22524,18377,9082,12401,19310,19733,31870,26299,31098,28584,21167,20242,13383,10763,86971,85913,80482,54924,33352,32671,32536,34961,50925,47915,41113,34450,55999,37529,19408,10379,5980,5385,6811,8035,9299,11891,16732,27084,15206,26288,38717,52718,41170,37878,31570,28511,9950,10776,16984,21903,18050,18207,12952,16196,15584,21185,22023,29491,30796,29232,30434,30956,0,256,555,1052,1383,2217,4106,5402,7918,10868,11692,14796,7093,13338,15168,20796,0,2,4,6,4,7,8,8,11,9,7,8,8,9,10,12,0,2,4,6,4,6,6,7,6,8,8,8,8,11,10,10,3,10,12,13,13,18,26,32,23,29,29,20,28,32,26,24,9,14,16,21,39,44,40,36,46,32,30,32,24,20,19,14,0,2,4,5,4,6,6,6,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,15,10,22,26,35,32,34,44,36,31,32,29,20,35,31,37,50,45,42,40,42,44,38,32,22,7,7,6,4,0 +212,174,184,142,111,90,73,57,20,24,26,24,15,23,26,34,8,11,12,14,13,10,7,5,0,0,0,0,0,0,0,0,10860,12462,20088,25948,27755,24414,33268,24478,32684,29182,25881,28115,23690,27310,33687,26074,32057,32544,24332,21340,9887,14088,19787,21098,29640,23981,23948,28264,15969,15478,9984,9054,97275,83714,71941,50812,46903,47354,50031,51778,54798,62736,45407,43120,57593,44417,15779,8592,6224,5146,5311,6264,6447,11950,18031,27092,28348,30507,46818,46593,34864,32254,35330,35685,8512,8288,13806,17762,19427,14856,13358,14606,18156,20524,25464,30086,29319,36940,43009,30210,0,356,893,1378,1836,3008,4479,7404,8730,9920,12364,10424,8564,13852,16665,23390,0,2,5,7,5,8,8,9,10,9,7,9,7,12,14,14,0,2,5,7,5,7,8,9,7,10,10,8,10,11,12,12,2,8,14,16,18,23,32,28,23,28,31,30,34,30,29,36,13,19,19,32,38,40,49,47,52,38,34,31,23,22,22,14,0,2,5,6,5,7,6,7,5,7,7,8,7,8,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,29,24,17,11,20,30,43,42,46,54,57,47,41,28,25,56,52,54,62,67,64,53,58,38,33,26,19,8,10,7,5,0 +275,190,159,110,55,46,24,18,16,20,29,42,61,65,61,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11941,11570,13595,13478,14344,16736,25390,26454,31884,35578,49632,45193,39996,29398,33190,21818,48972,59619,56899,52978,34726,38027,38466,31805,24546,21164,24358,22822,22548,23587,17323,9272,93787,88962,69679,54590,21817,40735,55981,66620,71120,54784,60741,42838,24744,15587,11763,5778,6681,12657,15906,22012,26420,25617,25962,27253,34460,31016,34705,39697,57837,60288,42799,42260,4447,6376,9276,12442,15741,11925,10947,15047,19582,24916,27954,27280,39369,38636,29254,38081,0,1622,3604,6478,7226,8611,10565,9790,9636,11499,10091,9967,12800,12711,14332,20336,0,2,3,4,3,7,8,10,8,8,9,12,15,15,18,18,0,2,3,5,5,7,6,7,6,8,8,8,7,8,7,8,2,6,8,12,11,15,21,23,26,30,39,53,70,83,72,67,19,24,25,34,31,46,50,50,50,53,41,42,35,26,26,16,0,2,3,5,4,6,6,6,4,6,6,8,9,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,30,31,32,46,44,51,48,44,42,30,12,13,10,12,61,69,86,76,68,65,59,48,36,42,34,31,24,24,15,8,0 +196,188,133,100,69,56,44,32,44,46,46,54,51,68,62,62,9,11,8,6,7,8,8,8,4,5,5,5,4,4,2,1,11695,14032,12886,9856,18977,23316,25238,26412,26211,29062,41536,39756,24499,23092,22154,18038,33194,35386,37198,34610,35017,32887,32752,30720,18423,19023,23550,23828,22775,19486,15546,8872,72297,82366,80849,52122,22314,36393,43444,68620,74176,63718,47922,41780,22988,15075,12036,8438,5913,10170,13560,19031,29882,27562,35075,36885,37817,38062,46242,60298,67490,59712,36453,27948,17836,13128,17411,13436,12520,11880,15202,15410,17742,21719,27017,37084,45306,43376,40797,39280,4160,5422,6228,7367,6044,7942,8755,7982,8103,8573,10583,11120,12476,12256,16216,15371,0,2,5,6,5,10,8,10,14,14,14,17,15,18,16,18,4,6,7,8,5,8,8,8,10,10,9,9,9,12,10,11,2,6,8,10,12,16,16,22,30,38,51,60,54,64,87,68,43,44,40,46,38,55,60,84,55,61,60,60,41,38,36,19,0,2,5,6,5,7,6,7,6,7,7,10,10,10,11,9,2,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,48,42,48,42,52,47,46,51,47,65,70,48,27,29,28,29,63,81,101,94,96,88,66,50,41,42,30,29,28,21,15,9,0 +141,142,139,115,77,69,50,48,65,61,68,58,61,74,63,53,18,17,14,10,13,13,14,14,6,8,8,8,6,7,5,2,11252,13588,13368,12042,17784,19257,25894,23098,25648,22502,20207,28354,15672,15991,17686,22678,28704,27238,30166,28243,29321,31541,28077,21310,19282,17226,19878,20779,17834,12039,11938,5993,62686,67900,71114,47056,16804,26363,40214,69035,83656,75800,46300,33858,14371,17193,15097,11273,7690,11379,12758,16761,26314,33058,39507,37892,43458,48719,55600,57546,62020,48348,34494,26652,27787,29240,21492,15972,12633,14074,14443,14582,12821,16197,23828,26872,39961,40454,48064,44141,10144,8394,8742,7619,4419,7313,9008,8413,6391,7465,8402,9101,10557,12396,12782,10192,0,2,4,5,6,8,8,10,16,18,14,17,16,20,18,17,6,8,8,8,4,7,8,8,10,10,10,10,11,12,12,10,3,5,6,8,8,12,16,18,24,39,48,59,34,50,76,94,72,59,50,47,43,56,74,77,57,72,82,88,54,49,33,22,0,2,4,5,4,5,4,5,6,7,6,8,8,8,9,10,3,5,4,5,3,5,4,5,1,2,4,5,4,5,4,5,51,52,50,51,65,60,55,64,61,60,75,65,39,38,36,39,91,127,122,119,92,84,82,64,55,40,30,25,22,20,12,7,0 +160,150,157,110,90,82,70,48,73,72,87,71,76,78,90,76,29,28,26,24,15,20,20,24,12,13,14,14,9,9,7,5,10358,12314,11135,13002,15021,18950,21843,23620,25956,22320,18161,19572,12136,12928,12149,17769,24553,21784,26306,30316,24632,30218,27611,24979,19766,20084,19470,20602,14882,11483,8826,6349,83318,75828,74994,52746,25644,33494,33357,64242,68581,60106,50767,38992,20378,16098,13186,9354,7330,10120,17101,18734,27910,33723,32002,34918,51016,50694,43253,48368,59263,38094,25826,20241,38705,29810,23294,17696,9808,9978,10151,13870,11176,15416,27313,28405,32954,38600,51604,39442,12712,13816,11320,7422,5391,6740,8753,6645,3535,4521,5285,5664,6262,9226,11354,12582,0,2,5,6,6,8,8,9,16,18,15,16,17,22,21,18,9,10,12,8,5,9,8,12,9,12,10,11,10,11,12,12,4,7,8,9,8,12,16,23,18,30,43,48,33,63,94,92,90,57,55,56,53,68,92,86,81,79,84,88,75,55,29,18,0,2,5,6,5,6,5,6,5,7,6,7,7,8,10,8,5,6,5,6,5,6,5,6,2,5,6,7,6,7,5,6,56,44,52,56,78,80,71,80,94,84,97,91,58,53,38,46,73,86,111,114,89,88,60,60,52,46,34,28,20,18,14,8,0 +149,120,131,106,88,70,46,36,82,72,57,67,74,72,52,55,33,31,34,25,18,18,21,24,13,11,9,10,12,11,6,4,9252,12448,13262,13408,14928,19780,22456,19266,22868,19053,18220,14522,11705,8578,8195,11788,14987,20875,25365,28436,30358,30548,29298,27867,23595,15912,14770,15872,16546,11073,7003,4133,79664,64507,37314,32209,31397,41091,46181,58733,67953,47436,35564,31052,23106,20806,16124,12777,6191,7418,12186,21272,25540,44141,53531,43144,62059,84791,80739,65274,54251,45521,38396,18466,39415,35207,32534,20569,9404,8760,7393,8716,6880,18770,25020,30040,40034,39012,45122,55442,20126,17086,13617,8868,5189,4956,4616,4232,2082,2372,2043,2486,3342,6846,10114,13796,0,2,3,5,4,5,4,5,18,15,14,16,16,20,18,18,12,10,9,7,4,7,9,12,8,10,9,10,8,8,6,7,3,5,6,8,9,12,12,17,13,26,30,37,38,54,83,108,88,67,60,54,44,68,97,109,115,114,104,103,78,65,33,18,0,2,3,5,4,6,6,5,3,5,6,6,4,5,4,5,5,7,6,6,4,6,6,6,2,4,4,6,6,6,4,5,64,56,61,61,72,67,55,68,109,98,128,130,98,102,77,72,77,83,65,104,120,107,73,66,42,36,23,20,22,20,13,7,0 +159,178,194,156,125,114,90,68,82,82,57,81,80,80,48,64,40,37,42,32,16,22,29,31,24,20,13,15,16,14,10,6,14884,16469,15024,17954,22228,18742,25848,18174,24266,19466,20920,18856,11159,9376,10026,10444,12484,17042,17047,16728,23596,22908,20945,21764,22446,15494,11558,10734,15910,9442,7149,4810,79569,64122,64934,62268,31273,42359,46052,52438,62098,42190,30139,27426,22442,20267,13840,10356,7994,13140,19054,25258,38272,49392,42476,48970,54440,70278,78986,45612,51986,37758,35266,21378,50971,41112,31623,29462,11264,11297,10321,14696,8590,18556,24895,25226,43016,43851,33950,47663,23952,16606,14198,9364,6020,7211,4761,4497,1567,1593,1932,1726,2816,4454,8418,10866,0,2,5,6,6,8,8,8,22,18,12,18,14,17,17,18,17,12,10,10,6,8,8,12,8,10,12,12,10,12,11,11,6,8,8,10,12,13,11,16,14,26,35,40,49,74,97,99,88,77,72,65,56,92,84,104,109,115,78,96,68,66,38,26,0,2,4,6,5,7,7,6,4,6,7,7,5,7,7,8,7,10,8,9,7,8,10,8,5,7,7,8,7,8,10,8,49,59,54,82,93,72,66,62,118,99,122,120,149,114,90,76,99,104,94,106,142,117,83,86,73,58,40,41,28,24,22,12,0 +178,214,192,146,123,128,111,74,98,64,56,64,100,87,53,61,47,39,45,36,16,26,28,27,27,27,20,21,14,12,10,6,17978,17250,20198,19987,25788,27352,22327,18596,20893,21884,22023,19940,12124,13554,11311,11679,14007,15197,12442,17978,12363,14618,14820,10614,14809,11090,7426,5844,12084,11402,7026,3337,66848,81425,73260,75047,40534,43563,35544,47611,41781,43823,35808,32254,16578,12254,11616,11524,12232,15662,23188,27990,47314,49654,52166,52957,38486,53464,54704,43206,38434,32415,29678,24392,50303,42017,44124,33531,11300,17290,17796,22419,10056,18437,22932,25561,39032,34836,32928,42468,23954,18270,12963,9608,7787,6735,6106,3579,1411,1288,1194,1261,2339,2938,4225,4174,0,2,4,5,6,10,11,10,19,19,12,15,9,15,20,18,16,13,12,11,6,8,8,12,7,10,12,12,9,10,12,14,7,8,8,9,12,11,10,13,10,29,42,50,70,80,95,98,68,73,64,74,59,77,108,100,136,98,80,86,83,68,52,36,0,2,3,5,4,6,6,5,3,5,6,7,4,7,7,8,8,10,8,10,8,10,9,8,6,8,8,10,7,11,11,10,47,49,62,92,86,90,64,66,86,106,93,103,151,154,113,117,90,98,120,142,126,130,94,81,80,77,67,60,32,30,23,12,0 +168,214,203,140,114,134,144,96,110,86,64,104,122,96,66,80,68,61,58,36,16,24,21,27,28,26,20,22,15,12,12,7,20402,21043,19031,19834,27908,24781,20934,16948,21377,18384,13464,12722,13489,11878,11366,13234,16896,18165,12324,15678,7105,9710,10728,8928,10395,7774,6082,4902,6880,6850,3444,2191,68244,98474,81352,77064,51470,51197,44769,44252,32134,29411,33892,36256,24586,18280,13778,13152,14839,22578,27891,34694,42586,46480,39135,51486,46256,48783,45675,33685,25701,24942,22833,18902,41000,40851,34592,29110,13267,17825,23496,20418,14458,23320,27477,40630,40039,41386,33370,39505,27624,20700,16568,14256,12081,9923,7494,3650,593,608,714,664,994,1586,2030,2015,0,2,5,6,7,10,11,13,15,15,12,15,9,16,22,17,22,18,19,15,10,12,11,14,8,12,11,14,12,12,10,13,8,10,10,12,11,10,10,13,11,34,66,58,78,94,118,118,105,107,72,85,91,88,122,102,97,102,90,84,90,66,56,32,0,1,2,4,4,5,5,5,2,5,6,7,5,8,10,10,8,9,8,10,8,11,10,8,7,9,10,11,8,12,14,13,63,62,71,90,84,72,66,72,93,103,86,104,163,126,99,112,116,122,145,126,105,132,110,98,108,109,73,65,42,36,22,12,0 +158,144,87,97,106,89,96,136,200,184,181,218,185,140,85,80,90,79,63,87,108,86,53,37,29,24,15,13,7,7,6,4,26422,29805,38686,31176,37517,54568,53984,52716,47930,38716,45935,30583,21353,21194,27910,28471,23358,22224,15043,17916,20780,12900,10360,5866,0,0,0,0,0,0,0,0,83008,72149,73683,51231,26549,28530,21748,21489,21819,29796,33431,36982,29043,29080,26198,20377,18770,15177,11743,10295,7006,11815,22042,33524,40034,31382,18691,15914,19988,16670,14746,14234,43361,60216,91282,90081,119990,106760,88836,93359,93496,95482,79380,79692,66990,56712,51729,35269,28740,30623,22353,24467,19458,16842,21042,18806,21602,18861,18146,15913,15812,13203,9320,5088,0,2,3,5,5,12,20,22,26,28,28,25,21,20,24,20,20,26,23,24,22,18,13,13,16,17,11,10,8,8,7,8,7,9,11,12,10,28,47,64,72,70,82,116,154,140,143,119,124,108,55,48,31,21,18,13,9,10,12,18,18,16,18,13,0,2,3,4,3,5,6,8,8,9,10,12,13,12,10,8,6,10,15,19,17,18,23,26,21,20,25,24,15,16,11,10,66,97,145,173,197,187,145,154,181,192,156,124,65,82,89,118,110,120,96,63,57,62,86,109,143,127,110,90,90,60,49,21,0 +170,142,106,90,130,122,121,148,146,180,182,196,142,146,118,108,98,115,171,270,267,397,576,1030,1162,1238,1312,1134,1576,1420,1570,1508,36998,40827,47017,42726,33227,43244,62803,52684,42363,43466,42907,33056,18048,23009,24283,23043,24150,25040,18844,21816,21208,14953,9889,7330,3980,4709,4286,3173,4390,3748,2626,2176,58776,63046,47416,43948,30980,27832,21690,23976,15466,29136,32602,30609,27253,20146,22091,16887,20221,18011,12356,13759,8608,13504,20665,31348,33795,33894,21065,22430,29244,20646,14076,11778,29036,43371,71662,83773,77408,95318,72703,71386,124326,94450,97969,84008,53275,52572,41257,39703,42543,28683,31681,32422,25210,19787,16410,15470,19000,17923,20299,17102,16827,12399,8127,5376,0,2,5,7,7,13,18,17,26,25,26,23,20,23,21,20,21,28,25,24,25,23,22,18,24,20,12,12,10,11,11,12,8,10,10,14,12,30,43,60,75,84,84,103,148,156,121,134,111,113,66,49,31,36,47,39,28,28,21,26,24,21,22,19,0,2,5,6,5,7,7,8,8,11,14,15,12,12,9,10,10,14,15,16,19,18,22,29,15,21,24,21,13,14,14,16,106,128,166,176,211,181,140,142,174,150,149,94,52,80,78,114,78,75,75,66,55,56,74,84,130,133,96,85,99,66,41,24,2 +176,148,123,99,115,124,142,140,105,114,134,137,152,135,139,121,95,160,290,419,424,840,982,2296,2615,2840,2564,2773,3828,3851,3504,3182,46961,52249,62272,48737,28736,33236,53378,55657,56918,45686,41217,33358,17232,18538,17343,23522,26785,31474,29574,31692,17365,16675,13353,10902,7180,9152,8164,8599,8239,7760,5377,4178,57547,53323,43822,42362,30121,31437,26371,28483,15327,19686,24768,24318,18068,16853,17420,15934,21921,21968,16002,19765,13258,15634,19736,25330,29239,27868,30851,32620,33437,23578,17524,11996,22875,30871,39453,46217,67547,66388,57357,51485,119634,109011,102168,73980,48899,46538,43618,26550,44712,37301,36016,29724,24357,21493,16134,11460,20839,21725,18032,16794,12540,9993,9262,7267,0,2,5,7,6,12,14,18,19,29,28,32,24,25,23,20,22,28,28,26,20,25,22,24,27,18,14,19,12,14,11,10,7,8,10,16,16,28,44,52,81,83,92,76,140,167,149,182,147,126,68,56,42,55,60,53,48,38,36,27,22,20,23,24,0,2,4,6,4,7,7,10,8,12,15,15,13,12,8,8,9,12,16,18,16,17,22,26,12,16,14,18,12,12,12,14,133,125,134,114,172,146,154,111,122,125,91,81,55,74,88,91,66,73,56,58,34,53,58,56,114,78,70,63,78,50,38,25,4 +135,123,153,126,129,124,104,106,86,115,147,152,135,136,155,158,86,238,568,601,742,1021,1486,2578,3401,3788,4408,4554,5714,4626,4025,4100,56068,56504,66900,55428,40385,46918,52577,65291,53280,47576,44986,33744,20030,25632,26957,27514,20784,27865,28105,32202,16847,19030,16878,13359,12376,14955,17596,13352,10648,9094,6528,5384,56857,57776,54694,38832,21306,28002,27293,32473,16808,16610,15254,18155,16142,13218,13852,12552,19536,20011,17566,19818,17428,20615,23971,21096,38227,31497,32914,33804,29195,29706,17360,11506,20636,22626,34965,30712,32718,41848,42261,36973,86096,96201,79432,68778,62610,49369,52365,36121,37689,37832,36212,35142,27146,25270,26023,19231,16156,18751,14337,16389,16166,12492,11268,8908,0,4,7,8,8,14,19,20,25,28,29,29,20,24,20,20,25,30,24,24,20,22,24,25,23,24,18,19,19,17,12,11,8,12,12,19,20,40,56,67,77,81,61,64,92,129,155,152,139,97,91,68,48,64,64,60,65,49,37,31,27,22,21,24,0,2,5,7,5,8,8,11,10,13,17,14,12,12,10,9,12,16,15,18,20,21,19,28,12,16,15,20,15,15,14,18,136,121,103,104,187,160,165,118,90,76,74,77,77,84,125,124,60,67,60,55,47,48,61,58,73,66,63,64,67,41,32,21,7 +151,137,136,123,137,110,129,87,65,98,98,134,156,144,121,154,48,289,544,902,1012,2550,3772,3596,4974,3963,4008,4544,5747,7806,7263,5467,67922,75399,61470,54891,50397,66220,61840,67338,66097,59853,44861,30777,29927,21926,23819,27839,22060,17942,18419,17490,21617,26559,24972,21182,18366,20746,17811,21201,17576,14724,10440,9414,72362,63270,54298,41717,20949,17978,19736,22494,15339,16272,18725,18433,12806,14648,11910,9908,24954,28798,25750,26498,22585,21187,22367,20570,34550,41235,39581,45904,38374,33842,24450,16611,27041,23516,16705,13964,10014,11932,19045,22750,91170,88766,69433,72207,56375,38942,35664,29777,48859,43302,46125,46213,39904,30524,28362,17209,10196,14416,17604,17672,16817,12441,10772,8022,0,4,6,8,8,13,21,24,30,28,35,28,20,19,18,17,29,27,20,16,17,18,23,20,26,29,26,20,20,17,12,14,10,17,18,16,18,41,54,79,92,99,79,60,46,102,137,179,101,95,77,72,42,46,48,67,60,52,37,33,36,36,34,34,0,2,3,5,5,8,9,10,12,10,9,12,12,10,7,7,10,16,16,18,24,31,28,36,8,10,13,17,16,17,15,16,131,111,98,106,156,182,160,133,48,68,73,84,77,100,107,136,37,50,46,38,44,61,58,62,58,73,74,66,50,38,31,21,7 +98,100,97,112,120,125,123,87,68,80,88,102,155,112,99,116,56,442,730,1370,2944,4018,4534,5133,7100,5740,4963,5664,6032,7482,7258,7735,67110,64528,69526,45657,32588,42414,62326,52177,57298,49019,45030,55500,49133,41366,44280,55006,19800,16203,18012,20930,28330,24942,24356,25290,19238,17435,21071,18604,21895,17274,10367,10262,70328,53998,51765,46385,21192,25348,27698,27751,12834,13481,14946,13793,10179,11675,8716,7806,25070,25590,30162,22872,15950,16036,24146,20168,46056,38390,36756,33085,29191,31278,16080,11946,25159,21685,16016,13712,10366,14484,14381,16112,78356,69862,51544,42781,40473,33578,24025,23022,34303,42920,36862,43051,36322,26459,23853,21116,11984,12713,16944,17232,16220,15139,13534,12086,0,5,7,8,10,16,20,26,28,32,39,28,28,20,18,18,25,22,18,22,21,20,20,21,22,26,24,22,24,20,14,14,12,16,21,19,22,41,68,73,81,75,73,51,54,82,118,153,172,138,96,84,77,57,53,82,77,80,78,60,47,40,44,44,0,2,5,6,5,10,9,13,16,15,12,14,11,12,8,7,12,15,16,19,24,30,30,32,15,18,18,19,24,26,18,22,134,100,99,122,147,142,141,114,46,82,72,97,128,148,116,146,33,44,41,38,37,48,42,44,45,50,65,48,44,36,36,22,8 +88,78,91,115,147,145,122,85,70,77,72,92,106,114,90,94,82,771,1216,1678,4405,6034,5758,7887,7911,6542,6150,5282,8363,11104,10743,9804,57108,62879,54625,45054,21113,26563,42476,34841,59363,41272,42016,49574,57662,55723,59240,50236,17464,16460,16351,19732,27740,25447,25802,23309,21538,21082,22101,20184,24152,14712,11968,10272,56004,62266,51500,50940,23306,24244,28364,30830,12275,12303,15138,12018,10626,7416,7220,5809,17106,25972,27215,24923,16192,15388,20792,18377,42320,39302,29003,31306,34419,28422,14420,9269,18848,13545,11940,10952,13067,11609,12224,10284,65534,55230,43606,27956,28476,21560,15118,18348,32934,30874,37780,47826,22392,22006,26569,21249,13188,14568,17502,13935,18363,18327,17208,16216,0,4,6,10,9,17,20,24,30,40,36,34,26,21,16,17,20,16,16,22,21,20,20,22,24,24,20,16,20,16,14,10,14,18,20,20,18,48,62,63,59,57,43,46,44,73,98,106,199,174,104,100,89,89,59,78,91,90,93,95,46,39,42,40,0,2,4,5,4,7,9,14,14,15,14,13,10,10,7,6,9,17,18,18,22,22,28,40,24,28,22,26,24,22,22,29,143,125,84,107,136,110,118,98,53,72,102,89,220,162,176,200,25,34,32,37,23,36,38,32,40,45,38,38,50,46,30,20,7 +84,78,64,87,93,106,123,86,72,62,65,76,84,92,107,116,83,1124,1924,2904,4206,6014,6536,7954,8490,6510,6951,6826,9049,10596,11924,11492,66138,56765,34389,27042,22139,27822,32017,34644,39819,39926,48154,58388,65892,57722,50518,59175,12088,11492,13123,21890,27502,23503,27185,21784,22950,27189,19876,24770,22764,20674,18548,14642,55798,55609,33552,42133,36662,31002,34954,33972,15190,14998,13820,11202,11263,7102,5980,4430,19758,28708,34257,27316,18269,19130,23578,28834,44410,33780,32585,29230,29495,22828,13075,8532,14785,13228,12408,13066,15809,12784,11584,11801,30369,32364,26472,20587,19799,14632,10328,11964,24009,26340,28620,37046,25167,31129,33801,31212,18460,20024,24841,17282,16948,16870,13740,16598,0,4,6,8,8,16,17,18,22,28,26,32,27,25,20,20,31,25,20,21,29,29,23,20,21,24,22,21,18,18,13,10,12,16,18,21,16,41,48,49,63,57,36,37,28,58,73,101,219,169,125,114,101,92,78,82,95,96,91,88,55,58,57,62,0,2,5,6,5,7,10,10,12,14,12,13,8,9,7,6,13,16,16,16,13,19,23,40,27,28,24,29,26,28,30,34,143,138,104,100,121,108,98,95,88,99,120,170,293,216,143,178,14,22,20,26,20,23,30,24,30,28,25,28,41,40,23,20,10 +75,78,84,64,46,70,74,76,86,117,152,153,155,138,99,96,71,814,1559,2882,4224,5814,7682,8488,7868,9751,10685,9294,7576,11065,14337,15598,56477,39510,35197,24800,16498,15278,21059,21931,31699,51379,76450,83248,79153,73962,76406,73878,6740,8513,11928,14068,20268,15823,13620,15200,24045,22656,14739,13584,10091,11081,10478,12582,48277,49203,49934,49524,40631,30929,22687,23939,23251,20601,17176,16780,19543,15794,11653,7600,31033,31098,27786,26081,28526,32844,33931,33148,32050,25092,17514,12035,9984,9514,6496,3604,16570,16781,11838,16332,20319,14588,14025,10167,8884,7070,4532,6117,5897,7252,6602,8392,25908,22547,19599,28753,31870,27464,21434,22248,26856,18194,13781,17730,16820,18177,18633,20146,0,5,8,12,12,12,12,17,16,14,9,8,6,14,20,24,32,31,41,45,46,42,30,30,25,26,31,22,19,19,14,8,11,14,13,18,26,32,33,50,50,71,72,67,56,64,78,91,243,240,162,130,138,107,124,110,96,107,112,102,83,70,74,84,0,2,3,4,3,6,7,8,7,7,5,5,3,4,3,2,13,14,12,10,7,18,23,34,38,32,27,40,39,30,24,27,106,76,55,56,39,56,62,76,102,90,115,130,182,198,217,248,0,2,3,5,4,7,8,12,16,18,23,22,20,18,10,12,9 +60,64,69,52,32,56,60,70,65,112,143,154,133,139,92,90,58,850,1270,2275,3560,4673,5850,5984,7424,7801,6996,8501,7188,12326,14191,13878,43820,33134,31557,23410,13943,22457,25360,36539,32642,47492,65976,77352,53735,55603,81350,79392,5839,8080,13545,18290,19644,20555,17515,21761,28356,20871,18573,15188,15372,12605,10822,12996,37360,39970,45840,41002,38149,29499,20681,24528,23817,21918,19157,19192,21518,15920,11224,10000,35446,40065,32815,31636,33872,39960,39435,42026,36664,28525,22950,16932,16079,10860,8105,4468,15543,13720,9196,11458,14848,13376,10872,8986,7047,6376,4192,4942,7399,7144,6812,9654,27261,24218,18567,29070,22300,19253,21305,17267,24592,21244,15990,17411,22244,24001,18514,16699,0,6,12,16,15,15,19,23,27,22,15,14,10,17,21,25,32,34,37,39,38,38,31,26,27,30,38,28,20,20,14,12,17,19,17,22,34,36,39,46,55,66,80,75,60,66,89,72,197,176,189,148,174,162,142,100,102,122,165,105,116,86,79,82,0,2,5,7,5,8,8,10,8,10,12,12,8,8,7,5,15,16,14,14,13,18,22,28,28,24,23,36,38,38,37,42,112,100,53,64,58,62,68,83,96,102,142,148,163,182,180,208,48,42,38,31,29,32,26,39,37,49,56,50,59,44,42,32,20 +44,41,48,41,24,32,41,50,63,88,136,152,143,139,106,98,52,674,1402,2618,2030,2174,3255,4015,6806,6350,6734,6144,8681,11942,15316,17654,40244,36844,25612,19158,14460,33455,41558,48988,41938,51507,48744,61670,42578,54644,64868,55094,5782,8923,13360,22646,27002,20188,23393,28029,24672,22359,18390,21655,16410,13015,13218,12281,30064,36270,36806,41945,30162,30025,20406,26356,16981,18681,16912,16047,20843,17392,15841,14442,48608,33910,31172,29025,41820,45568,50237,46746,29214,21498,21250,15763,16945,13503,10462,6467,14432,11871,9317,10402,15917,15549,10576,11116,5747,5151,4262,5007,6496,8956,9038,9793,29343,24782,19994,31002,18451,18044,14604,21297,28703,26496,18460,19754,25724,19720,20550,18703,0,7,11,14,20,24,20,19,31,27,22,17,11,15,18,23,31,28,28,41,37,30,28,23,27,26,34,31,26,20,11,10,18,17,20,24,34,31,38,52,41,48,64,76,68,79,70,72,155,178,186,142,196,151,122,84,150,167,177,130,123,117,104,84,0,2,5,7,5,8,9,10,10,14,14,13,11,12,8,7,15,17,14,12,15,20,21,24,18,26,25,30,27,38,38,47,137,117,72,60,62,82,81,76,121,129,146,129,91,98,143,133,80,94,76,57,58,60,48,53,53,80,83,66,91,85,60,54,36 +44,48,52,38,26,32,35,47,46,62,112,100,88,112,97,94,55,460,994,1612,1562,1518,2060,2786,6954,5474,5690,5956,7802,11816,18700,16331,25574,23930,24974,20354,16522,34708,48819,49386,50122,45820,60617,55816,48128,54235,55867,66225,7063,11661,18572,25933,34151,32246,32980,29868,28344,24677,20315,24662,18103,22370,22848,19936,22684,32134,29274,34766,31714,25046,25313,20064,15232,14191,12989,18734,18910,21045,18055,16029,63300,41090,32050,34014,34551,49908,47204,46615,34730,32776,24367,18568,18202,12115,12803,6855,8885,7954,8819,8780,13327,10440,7808,8763,6455,6083,4377,5264,5597,7731,8903,8952,28303,20952,15007,19312,19788,14986,15172,17038,23624,21284,13982,22570,27362,22444,19485,16982,0,8,12,16,21,26,21,30,28,30,21,17,10,19,26,26,25,24,23,32,36,30,34,24,32,27,35,32,22,20,12,11,20,19,18,24,26,35,39,41,26,42,65,74,54,70,78,74,156,176,183,162,223,148,137,105,148,174,191,157,140,136,128,138,0,2,5,8,7,8,8,10,14,17,23,23,19,15,11,10,22,16,17,16,19,18,19,24,13,22,24,31,31,42,46,57,98,100,68,74,56,60,75,70,110,112,108,101,90,105,83,94,117,121,110,82,88,82,70,74,99,114,108,108,105,110,82,66,44 +52,47,46,29,21,24,29,38,17,31,51,55,67,84,79,64,57,226,344,490,750,901,1412,1149,6931,5472,6610,6446,8429,9680,9461,14975,9890,11070,11234,17986,23321,21545,22701,31592,61992,49052,38804,51141,52708,49969,58303,74676,7011,11378,20635,30756,31326,32552,32749,32703,22767,24815,20525,20426,27218,22134,12959,16630,17057,22938,33146,33591,33803,29536,20896,19218,12665,14832,16910,22957,22462,17634,21443,16478,58418,54666,36258,33462,36148,40818,40052,51951,45656,51085,41756,25449,18271,15772,8490,4551,4657,6769,6856,8799,9436,6409,5616,7719,7991,6082,6388,5822,5302,6932,8698,6956,23535,24209,22214,25874,22166,20460,21589,13009,26460,22905,21178,19913,23691,22506,16145,13234,0,7,11,17,22,29,27,28,28,24,17,15,10,13,17,27,11,18,28,30,29,24,14,16,32,29,26,20,20,19,12,10,18,18,17,20,26,27,23,33,14,18,25,44,56,66,58,71,202,171,211,207,196,179,196,159,135,123,163,162,162,126,104,136,0,2,4,7,7,10,12,12,14,17,24,26,20,16,10,10,22,18,13,13,16,17,16,17,11,12,13,20,26,29,32,42,97,94,66,71,72,84,72,69,80,90,96,79,73,72,57,52,128,132,111,119,96,90,81,95,140,136,95,97,138,103,74,60,43 +49,42,35,28,19,25,25,26,12,24,46,46,61,62,74,56,38,148,327,390,482,589,1037,854,4420,4808,5552,5760,6521,9388,10793,13416,11204,12892,10061,14924,13668,18718,30896,39500,56934,45868,32520,32804,63442,67303,67476,69632,15426,16736,22812,26032,24048,26293,30950,30560,30620,30188,31670,22521,45909,34114,23887,25677,25493,26166,24731,28618,27499,24902,14354,15536,9938,17218,22004,31178,27007,27047,23230,25027,46120,40158,36827,34540,33954,35982,36714,52751,45981,47754,33347,25011,14475,12332,6828,3952,3558,4774,5960,7334,5423,4689,4292,4868,5355,5363,5718,5288,4602,5736,6978,6306,16949,17463,19303,25644,22559,21294,21298,15264,27124,26050,23488,22366,23858,21470,19048,17479,0,8,15,19,25,30,31,28,28,26,22,22,22,24,18,24,12,22,30,31,27,26,19,18,25,28,26,20,17,18,17,14,15,20,24,21,28,26,21,28,14,23,32,48,57,71,64,66,150,140,226,224,210,172,178,156,163,164,160,156,156,158,138,124,0,2,5,8,11,13,12,14,12,20,24,24,20,14,10,12,16,18,17,18,20,20,23,24,13,18,18,26,34,38,34,42,74,70,62,56,74,72,75,61,63,66,80,65,77,64,77,94,147,118,109,108,102,91,97,110,117,122,132,138,168,136,86,62,47 +36,34,25,18,12,17,19,23,7,17,25,26,44,45,44,53,19,99,209,217,291,500,606,510,2654,3532,5370,4570,4818,7995,11470,14387,9924,9295,12728,11524,10502,19072,30282,49765,41671,45696,41312,36398,57267,64504,68434,57043,30926,32159,25041,21958,27540,28692,21976,23642,32392,37713,35436,35336,54631,42740,36488,35250,28916,28823,26716,25542,22895,17040,14780,16057,9925,16142,29070,37041,33776,37514,31320,35504,33445,32404,30420,27534,26611,27528,36388,45607,42456,40481,32666,22451,15398,12349,5910,2846,2929,3672,3688,4798,3512,3143,3360,4064,4160,4805,4122,3673,3762,4244,4268,4648,14363,20531,19944,27699,17636,14535,16872,20303,21184,22628,18562,25639,17530,17652,21460,19114,0,8,16,22,25,23,26,34,28,25,20,26,30,23,23,24,14,23,28,26,24,19,18,16,20,19,18,20,11,14,15,17,10,17,22,26,20,28,26,23,10,20,29,45,82,96,82,81,155,151,183,196,161,165,168,177,236,255,212,193,175,158,181,143,0,2,5,8,11,11,11,13,12,18,22,20,17,17,11,12,12,16,18,22,28,34,32,29,18,20,26,30,29,33,29,42,46,42,37,47,69,72,56,41,48,60,58,69,60,74,74,111,179,130,97,105,80,99,108,114,88,93,140,180,172,160,112,78,65 +22,21,12,10,7,10,12,14,5,11,14,14,22,26,22,29,12,59,105,113,145,208,268,264,1508,3307,5128,5479,6081,7508,11476,13749,12162,12742,12326,9504,11011,22809,32863,45573,43638,42012,43065,39209,59317,63557,75436,67204,40460,34752,30491,27120,30634,26400,19980,21675,30922,32524,42878,33588,43918,46946,34100,36487,25167,26766,39266,36419,28031,26176,24759,16442,13366,19799,26768,34465,39818,42762,43348,45309,45134,42836,30944,26448,22577,22602,23882,32452,47848,36051,27116,14770,13330,9086,4658,2174,1733,1694,1999,1979,1847,1716,2173,2260,2177,2759,2544,2880,2820,2777,2712,3396,7768,15210,16201,18501,19286,17970,14918,17974,17133,20731,19222,19498,19331,24554,24501,27142,0,8,14,24,25,24,25,30,25,27,24,28,39,38,34,34,18,24,22,25,21,17,15,18,20,19,19,16,10,12,16,16,10,16,23,24,19,26,24,20,14,27,37,66,86,112,126,132,161,136,113,136,146,146,150,199,218,285,202,222,233,228,191,175,0,2,5,10,12,12,12,14,12,19,18,22,20,20,14,14,14,18,24,25,30,34,37,34,26,24,34,42,38,42,37,39,49,56,53,58,55,52,42,26,23,36,36,54,44,77,120,126,164,145,120,89,47,91,108,114,109,114,102,124,162,136,118,74,55 +0,4430,7954,12047,18674,18520,23746,22199,28745,36470,32272,31829,36166,42030,39609,28079,29518,23802,26665,22180,15992,10696,6308,3487,0,2301,5488,9770,15848,13525,16425,14155,18842,15932,12541,6966,4160,2642,1494,794,0,0,0,0,0,0,0,0,0,4968,10139,12260,15504,14100,17372,17462,21262,20246,14158,9404,8217,16680,33373,35758,29756,43014,57181,59020,67454,82882,95587,84888,99668,120119,103194,70857,62578,73028,78248,55223,52710,44564,53889,47594,40694,30537,17915,15318,16691,17756,19955,13244,12165,8112,6639,3050,0,2066,4166,6528,9539,16104,23578,36792,48932,40252,37793,40386,47686,61870,56228,46408,40588,42320,31512,28443,35179,35788,36015,35926,41179,44256,36817,33136,33084,33492,31032,27319,0,2,4,7,7,10,10,11,12,14,18,24,22,18,18,17,11,11,11,10,6,8,8,10,8,8,6,6,4,6,6,10,10,30,40,42,50,129,181,231,228,303,281,230,274,253,317,305,210,252,305,230,265,311,288,349,381,335,231,305,316,288,185,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,17,22,22,21,32,42,41,49,41,33,34,23,18,11,10,10,7,3,4,3,2,0,4,6,11,12,17,16,16,19,18,15,19,18,20,28,44,62 +4,4258,9126,11742,12968,16014,22104,24154,27146,30304,31482,35628,23040,32130,36657,28575,19367,17636,25607,21101,15274,11534,7050,4262,494,3450,7272,9708,18367,16691,15372,19014,11963,12348,10930,8368,7183,6437,5236,6128,3599,4213,4999,4902,4523,4174,3959,3416,3366,6186,9474,9599,16924,17100,20690,18524,20953,21110,19224,22422,14081,26978,28391,38626,23640,39354,38771,54901,56940,61610,68426,73776,72518,94362,76112,77193,80671,72394,80751,68121,53128,53944,55770,47518,51156,31462,20374,14264,19509,17022,22179,16802,13356,9606,7660,3193,0,4082,8526,10941,12214,23190,29314,38766,55150,52600,43285,42735,47752,54424,62919,55681,39069,34468,31092,35498,51089,41007,39412,40644,31615,40046,29462,32997,28827,31974,28886,27951,0,5,7,10,10,11,13,13,19,20,18,22,20,18,19,16,13,13,12,13,10,10,12,12,8,9,7,7,6,8,8,10,22,38,43,59,75,146,194,205,222,218,286,270,203,231,270,214,280,288,317,246,299,354,260,334,396,308,206,286,332,314,212,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,8,8,7,6,11,24,24,32,54,52,59,54,41,40,56,34,46,44,34,26,15,18,17,13,16,14,12,12,14,20,26,23,24,24,27,24,18,20,21,24,24,30,46,43,59 +6,3905,8036,11959,11689,18835,21198,25616,16579,20476,22144,31558,21424,29030,27122,25702,15074,20670,20807,17409,9572,9319,6696,7170,1226,6265,9276,11042,16281,21528,20394,20128,9647,8026,10134,7664,9912,9172,8269,10858,8212,9742,9078,10573,7713,7082,8408,7329,8020,9460,10400,8396,15599,13812,18364,15086,26849,24418,30192,31628,22612,27726,33858,41778,13987,27485,34206,59936,31266,29585,40076,52287,42632,55257,65460,64704,84170,62286,60924,62639,52185,53084,69094,68515,47151,38966,19846,14094,19262,18648,22792,18806,12845,9912,7401,3606,0,5833,10609,18834,20987,30256,35438,41170,65393,58921,47898,37788,42293,48269,65400,58255,38210,33859,43703,39056,50568,46114,33902,33983,36139,39184,29282,35687,27698,26504,23678,21425,0,5,7,9,9,10,12,12,21,26,23,22,18,15,14,10,11,12,12,14,9,10,11,14,7,7,6,7,6,8,8,10,36,48,58,82,99,164,180,242,182,206,223,227,178,154,148,123,290,323,288,260,382,386,337,339,355,338,239,225,344,252,180,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,20,22,14,13,13,12,18,29,44,46,88,72,88,72,40,48,46,44,64,64,42,42,16,20,21,22,23,22,22,24,26,36,38,36,29,32,36,35,21,24,23,34,26,35,47,52,70 +7,3324,8274,12576,12308,16004,21156,19838,11497,12154,14100,23462,28602,31166,23957,17797,15740,16084,14386,12406,8158,9152,10111,8270,2012,5340,9093,8846,14774,16374,16113,17041,7941,7680,6799,7646,9194,10016,10451,17102,11570,14614,12536,12832,11667,14174,13627,14070,11133,10792,11753,11436,14629,12914,12572,12500,35404,27170,39325,37696,34642,36854,39102,36586,10710,17897,23988,44230,35063,39102,38023,43063,30128,36942,44643,46182,63843,57770,81736,70392,71185,73692,73022,59516,53753,35264,17516,15702,30140,20593,21956,17426,14058,10290,6422,3328,0,6770,12482,25718,28410,30401,42214,59302,81441,53366,37380,48487,38586,57861,69482,54298,47672,43272,37562,40741,50609,42909,37032,35284,22192,23344,25243,30901,32103,30874,21242,18827,0,5,7,10,12,12,14,14,24,22,22,21,16,16,12,11,8,11,14,13,12,12,12,15,10,10,8,9,8,8,8,10,52,50,75,112,131,184,186,242,244,232,229,228,168,183,146,97,287,278,340,340,380,381,306,353,307,284,210,258,304,192,132,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,30,28,23,22,22,18,25,43,60,81,122,113,116,93,44,48,47,51,64,70,56,49,17,20,29,33,28,34,37,38,38,46,53,44,36,40,33,32,18,22,22,25,28,35,56,66,65 +7,3044,7053,11268,12948,17110,15715,17619,6433,10772,14270,23168,29926,24395,23143,17250,13251,14294,13424,10344,6562,6560,8764,7097,3599,5498,8600,8544,9674,10877,9573,12712,5722,6594,9862,11883,10049,14483,15180,17124,12407,12219,10101,13934,18316,20776,17794,15046,14412,16482,18845,16355,13533,12756,15553,13990,47808,42717,47405,39852,41694,43216,43541,43282,7994,15810,29826,36193,35852,40632,51774,38627,17085,25867,28748,43435,61583,46168,48733,53124,86847,75076,89074,67928,48802,41340,21563,14044,31895,29422,17490,13301,14678,8712,6661,3432,0,9942,18685,25934,30258,28088,35882,58485,71945,71550,66289,51978,48872,40221,42180,33524,44266,36911,42646,47315,41981,36478,30199,37881,13937,19162,21744,21972,27230,21212,18874,17176,0,2,5,8,10,13,12,13,18,13,11,12,12,10,7,7,6,10,11,10,10,13,12,15,8,10,7,8,8,10,7,8,50,47,61,93,132,119,117,161,241,243,186,200,238,219,130,114,217,286,353,410,368,474,496,536,383,391,284,264,210,139,103,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,47,41,36,34,31,28,28,40,68,75,95,117,123,101,74,37,29,31,49,60,64,63,71,17,23,30,32,34,46,47,45,54,48,41,39,51,44,45,32,16,19,22,27,30,44,45,50,52 +9,3540,5959,9335,10971,14552,14443,14735,13150,13531,16618,22468,33416,29882,27735,22911,13512,13545,14526,11745,10166,10474,9041,7177,5797,6655,9594,8530,8104,9610,7958,8899,7805,10106,10844,9165,8526,12912,12275,20254,21946,21682,20969,26908,26701,30930,25506,17968,18685,17103,18783,20944,17811,18007,15706,16512,55931,45064,39250,36460,30308,33986,41493,29014,6304,12642,23267,28220,31122,33360,32734,31179,16808,23807,32797,49263,44440,50747,50360,54288,81232,67675,70664,56260,49216,49101,25646,21227,24714,26206,20517,15227,16396,12888,5945,2912,0,9974,17284,23536,29459,31306,43072,53608,74515,61889,45973,45566,36773,32089,30245,34931,29884,31499,33910,32458,28742,26888,27639,33170,26442,20640,21227,25517,24961,21150,18209,20869,0,4,7,9,10,13,11,14,18,13,10,12,10,12,9,8,7,11,12,13,8,13,13,17,10,11,10,10,8,9,8,10,60,81,77,100,120,126,136,184,208,184,158,172,238,176,147,125,250,294,292,420,373,442,475,458,310,308,222,198,158,129,115,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,54,46,54,58,36,32,44,74,106,132,134,148,124,141,35,38,31,50,68,66,65,64,23,38,44,47,37,60,55,52,60,54,36,57,54,53,59,37,29,32,30,28,30,35,40,46,43 +11,2484,5979,9646,12464,9969,11034,10523,18246,17412,20109,32371,35110,28309,29488,26884,10324,9990,13256,17108,15542,14242,10208,8975,6408,7433,7739,6327,4302,5778,7597,8179,10686,9663,12702,11074,10890,11142,14687,17205,31309,28404,28372,39241,46396,38179,35846,23631,22020,26682,23766,22218,20976,19388,21468,22867,54590,43996,45815,43583,28629,34748,31431,29509,2940,7589,14332,17468,18308,25638,24542,19498,18290,25320,31244,38889,40281,34705,38087,56308,93289,91348,61996,46873,72004,61483,39534,26234,17622,19384,22302,16531,16207,13076,7668,3467,0,12920,22056,27837,40394,44624,44632,44134,58446,57434,41440,54802,40321,36263,27968,36552,30117,27526,26118,18816,18444,20640,26999,39012,30208,24457,21784,26646,25342,19790,18958,22704,0,4,6,8,6,10,10,10,12,12,9,12,9,10,11,12,7,8,10,12,7,13,15,17,11,14,12,10,6,7,7,8,55,81,97,121,103,87,109,185,129,115,118,130,188,144,132,118,266,268,368,472,374,452,382,372,272,207,177,137,147,107,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,70,83,67,91,77,57,49,57,118,148,150,148,159,154,165,32,35,40,52,86,84,90,79,36,47,46,58,48,46,62,56,49,43,40,55,74,81,64,39,33,35,34,27,30,35,38,30,26 +12,2146,4316,8697,8978,12108,15899,18434,19547,22300,21396,28470,34927,25016,28652,30314,16213,15979,16778,16332,16888,17018,15044,12069,8124,7544,6816,6374,4348,4636,4581,4824,13686,16928,14415,12292,8889,14097,21990,26141,26462,31843,31387,42063,56229,42100,24494,23156,31176,23942,20767,23389,30549,26232,26053,28938,53621,43806,30439,27766,24460,24460,22511,21991,1684,6166,11567,14479,14889,17282,23586,22132,24917,29726,34646,37836,45608,42591,36452,50888,89984,74712,73975,67847,68011,62754,41412,35035,20521,20318,19650,14218,16627,13670,9034,4482,0,10330,21824,25986,37790,37370,31699,28674,48919,34493,36088,44818,45024,40371,28543,31184,27248,23140,20867,16304,16694,17100,19286,28936,31055,24366,21321,20578,20196,19868,16344,24455,0,3,5,7,5,8,9,10,12,14,14,13,12,14,12,13,7,9,10,10,7,13,16,16,10,14,12,10,7,8,7,8,77,108,104,115,122,118,88,126,101,93,97,114,110,116,93,86,267,232,320,435,319,378,281,284,287,204,179,114,92,97,76,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,127,82,76,102,86,70,69,64,124,137,162,173,193,241,251,26,34,40,54,67,77,72,69,47,66,77,60,64,62,80,72,69,54,51,64,70,84,73,53,34,34,32,32,27,24,31,22,16 +9,1670,3051,6449,8361,11475,17481,21015,21621,19494,15113,21193,20654,17592,21046,23612,18868,18084,18653,13562,11008,14784,14857,10348,10668,8992,7046,6965,8092,6231,4850,3764,23297,24622,36102,38323,35496,37298,27965,24411,32928,33089,23799,23222,21167,19062,19399,23947,31795,41471,43936,49322,40865,47731,44427,48850,47138,40195,28600,27092,21436,20285,29216,29290,0,5955,12388,16590,17852,18768,19543,23136,29703,22956,18533,24218,25032,27658,30664,42954,68836,65740,67768,82674,70831,52135,42278,30036,26096,23750,23850,14703,12752,10258,5942,3555,0,991,1833,2393,3238,13051,20174,22398,31236,29161,27602,36586,37892,29073,21890,17239,15357,12940,14260,19212,20357,24102,25760,32928,29770,31134,35044,29140,29379,41398,41325,31130,0,4,6,7,7,9,11,10,9,12,12,12,12,13,15,17,4,5,4,5,5,7,7,8,10,11,8,8,9,10,8,7,87,116,132,147,141,106,103,82,82,78,81,82,73,88,90,72,203,190,156,149,97,141,171,152,206,168,199,181,132,109,120,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,154,203,193,179,140,135,113,57,83,116,163,176,227,217,268,29,34,27,33,46,47,32,53,55,61,52,48,33,36,44,49,82,72,82,70,52,48,52,48,42,37,27,34,36,24,19,12,0 +17,1698,3322,5474,9322,12668,15723,20796,20714,17722,15980,17350,15550,17234,21180,25849,16898,16264,16796,13770,9024,10980,13625,10433,6200,6216,6297,7240,7014,6572,7401,6000,29460,29346,35754,35928,36580,37028,25795,29087,27233,23604,18874,21562,22200,23263,18992,25957,33551,43537,42000,40383,51835,51176,46338,42090,47408,46410,37658,35985,33669,30849,31626,28396,4228,10062,12812,12662,15550,17154,22942,27240,29596,25764,21124,23311,23554,27214,38776,53348,58654,58916,73059,64556,48308,52614,40768,35936,26355,22892,18133,14190,11296,9382,6718,3692,0,731,1648,2312,2227,7949,16322,16563,29908,24682,27420,32602,46011,41868,20474,17498,12282,10620,8480,14577,15976,19226,21878,26266,21706,22450,24875,26054,33130,39694,31445,30967,0,4,7,9,10,10,12,12,8,10,13,13,12,16,17,18,6,8,8,10,8,11,10,15,12,14,10,12,12,11,11,9,90,104,92,108,128,101,78,80,81,72,64,70,46,68,80,74,180,176,149,120,86,122,162,196,177,162,188,162,154,154,104,96,2,2,2,1,0,0,0,0,0,6,10,15,20,28,36,39,148,152,179,136,130,116,122,91,42,87,105,136,142,203,240,286,30,38,37,51,43,51,52,72,39,56,68,58,32,45,68,67,72,82,96,84,50,58,72,52,42,44,44,42,36,30,21,14,0 +19,1802,4046,5807,7439,10047,12028,14598,16983,14588,14082,15565,8530,13073,22508,28018,13346,12196,16993,15174,9482,9680,11712,11473,4552,5028,4643,6519,6583,6081,8139,7530,34119,31818,24858,35910,41808,35502,36046,35943,18265,15172,17940,21923,29608,29964,22896,28003,42677,39839,47290,37490,54742,45262,50258,53738,43006,44464,43370,40478,38735,29652,27360,22938,7210,8539,13972,14038,15245,17810,21280,24734,23238,22958,20452,18272,23043,35183,45459,50325,44258,51653,56914,45788,37030,37131,41917,37238,32256,26790,18508,17764,10985,9643,6662,3587,0,611,1222,2533,1875,4830,7440,8821,20860,22452,22584,31980,41699,37717,27053,24202,8248,6311,6210,8516,8644,13297,17334,16412,23925,25075,22464,22379,25906,23030,30764,24717,0,2,5,7,8,8,8,12,7,10,10,12,9,17,18,20,6,8,10,14,11,12,12,14,14,15,13,12,10,12,10,10,88,84,89,104,78,68,81,62,65,55,53,65,32,53,66,54,112,115,146,113,77,115,172,210,146,109,116,100,138,127,114,117,3,4,3,2,1,0,0,0,0,8,16,26,44,54,76,98,138,146,108,102,75,90,102,68,38,54,92,142,130,185,302,337,32,37,55,75,41,54,62,98,33,46,62,56,37,65,76,80,88,85,81,92,58,54,68,55,55,58,50,47,45,31,28,15,0 +32,1759,3038,6577,7793,9489,9096,14220,12516,12059,10053,11958,7601,12370,13489,21980,11086,11652,14758,13833,13327,12428,8818,8701,4108,4715,4809,8260,7478,6590,7630,6862,25210,25635,31597,31011,37786,34110,40992,31320,19520,16150,19832,22276,25313,26485,22791,24520,36056,39574,49719,45890,43216,44981,46808,54265,53938,51303,62568,43683,42316,46390,35943,34448,10660,11556,11362,12000,10685,13188,13794,15024,20402,20514,24836,21834,24357,38014,49988,65973,39503,41954,40263,34866,23304,28131,26941,29020,29140,21408,13601,15490,10940,8931,5486,2454,0,614,1048,2096,2254,4050,6280,6674,23192,27590,28245,27868,31255,23142,17590,17734,5191,4823,4809,6340,5394,8713,11620,12270,18329,17974,17034,18758,20945,21697,20380,22582,0,2,5,7,7,9,10,12,8,10,10,12,10,16,16,21,8,12,11,16,17,16,16,16,16,16,13,13,10,12,10,10,99,106,110,78,82,72,76,58,66,56,54,41,20,40,48,46,67,82,99,102,79,106,153,168,99,93,90,84,100,80,90,85,5,6,5,4,2,1,0,0,0,15,20,38,61,75,107,106,103,85,76,80,75,78,86,60,42,72,119,144,136,193,245,262,28,48,58,54,53,72,84,102,32,47,50,46,45,64,92,71,76,92,78,105,83,84,101,77,40,48,50,46,46,30,29,12,0 +36,1912,4527,5634,9329,10623,14123,15695,14296,14807,12322,9838,6418,11930,15027,21538,9073,9745,12360,14856,15126,13482,8608,8938,3333,5049,7114,6971,8038,9878,11092,10586,28258,21798,19532,20371,26996,28934,31364,35473,16974,17101,22153,26128,25041,19700,16300,23867,42868,43555,39681,35463,47608,52926,51402,56336,67208,64551,69184,54344,38420,33258,30505,35156,13633,10664,10937,9928,9044,7159,6125,7830,11548,12512,18247,22668,21730,38881,43639,56866,28335,24316,18289,16331,18560,16169,18908,18886,23518,23393,17511,13010,8485,5825,5073,2733,0,710,1256,2055,2186,3342,4384,4004,22924,22816,22351,21318,23792,23922,18194,15401,3384,2826,2372,2805,2556,3187,4716,5538,15193,21086,20371,22594,18952,16945,22736,28441,0,2,3,5,4,6,6,7,7,8,7,9,11,13,11,14,9,14,16,17,17,15,16,19,16,15,12,11,10,11,8,7,144,128,77,64,58,57,70,72,56,36,23,16,14,24,30,46,50,72,71,78,85,108,136,124,65,86,92,74,68,59,50,45,4,5,4,4,2,2,1,0,0,23,52,58,74,99,104,130,55,46,46,61,56,60,58,39,63,107,128,151,124,243,314,364,23,28,31,56,72,94,122,106,42,50,42,55,71,74,75,60,89,80,71,82,109,129,122,98,42,42,39,44,40,33,18,9,0 +27,1833,3322,4772,6776,7748,8286,10431,12859,12583,11082,8312,7012,10121,12501,18116,6846,10004,11609,13722,12452,12658,11812,10849,7402,6704,7409,6302,9600,10293,10954,9655,22450,23430,24193,26230,19049,20276,24993,29380,15012,14140,15895,21671,24045,23216,18860,26341,31324,34507,37816,43768,42676,45253,47887,58338,67736,67368,85381,78855,69250,46608,37301,33322,22239,15251,17819,14701,17753,14542,14539,12084,12700,14854,17966,23274,25354,37224,45257,40800,34466,30374,24548,22118,17420,18127,19504,18674,22868,16078,14034,12970,7509,4660,3538,2073,0,584,1097,1669,1993,2833,3656,3244,14208,16364,16456,17669,17523,20014,14140,9819,2791,2278,1585,2065,1782,2762,3069,4304,14050,15032,14970,15234,12155,13264,18326,17942,0,2,4,5,5,7,7,8,7,10,10,12,12,13,13,16,8,16,19,16,20,19,18,20,13,13,10,11,8,10,8,7,169,119,92,77,54,60,53,54,53,35,20,20,12,21,27,40,35,49,54,50,75,78,81,92,50,53,58,62,45,42,48,40,6,7,6,6,4,4,2,1,0,32,66,92,97,106,126,142,98,78,90,108,80,66,54,45,53,88,118,135,142,206,262,283,17,24,34,54,78,82,110,104,60,63,58,74,86,86,70,76,64,63,62,82,92,104,110,90,37,50,48,48,40,33,18,8,0 +26,1596,2953,3941,5085,5300,6572,7469,9292,7426,8863,8117,6426,8932,12024,13080,6497,8496,12068,13845,13037,11930,11246,9959,10406,9682,8734,6533,8923,8370,7378,6659,25316,22372,23610,24028,19573,20785,21938,14818,18232,16362,16178,23671,21032,19675,18870,21508,29817,32160,39199,47423,51355,43708,56830,57990,68255,83983,109258,114456,95316,54497,33486,28860,28014,25220,20670,22373,28767,23248,23147,16976,13442,17400,17803,20728,21000,32762,35754,42402,40108,40347,28530,27819,15330,13426,14649,16554,15927,15816,15432,12157,4173,4016,2972,1477,0,412,857,991,1242,1506,2461,1932,8480,11455,12288,14905,16706,11979,9345,6751,3354,2786,1546,1947,1081,1845,2932,2515,10224,11565,12404,9114,6916,6518,8654,9129,0,2,3,4,3,5,5,7,4,7,8,8,9,12,11,16,8,12,17,22,17,15,14,13,13,12,8,8,6,7,6,5,147,104,79,58,59,60,42,34,31,25,20,22,9,19,22,20,19,24,26,23,47,50,56,62,21,28,34,29,34,32,30,23,6,7,6,6,4,5,3,2,0,28,63,86,98,130,141,174,126,144,120,143,90,75,58,62,50,86,111,106,119,147,212,222,9,18,32,55,69,86,108,88,78,72,58,75,95,90,80,75,55,53,54,51,71,66,74,80,45,55,46,45,35,29,16,10,0 +31,1370,2568,4938,4710,6326,7274,7714,7596,7876,6567,5808,5702,6572,9393,9739,7960,8692,10601,11472,11734,12078,15795,16626,9858,10636,8881,9216,7348,9112,10071,9900,17583,20364,22571,20098,14173,17520,20412,18670,15440,17445,13681,18976,19265,21274,21795,27942,33878,33898,34941,46778,56494,49965,62765,61508,87556,102636,107804,110368,91672,76214,35134,33892,33981,26218,20606,32204,35888,31858,26356,20512,14068,13908,16367,17726,21050,24803,24526,32120,37978,28704,25960,26245,17056,17383,16345,15114,11804,11849,10690,7204,3882,3147,2571,1233,0,190,446,591,681,997,1214,1240,4541,4920,7472,8180,9029,6876,6139,4420,2208,1690,1218,1148,662,1021,1728,1272,4526,5596,7818,5416,4430,5178,5397,5598,0,1,2,2,2,2,2,4,2,5,7,8,8,12,11,14,9,14,19,20,22,22,20,18,11,11,8,7,5,6,5,5,104,78,77,60,59,44,37,36,31,29,20,22,10,16,17,15,12,14,16,14,27,28,30,30,10,16,16,15,20,19,16,14,5,7,7,7,5,6,4,2,0,34,69,100,101,134,122,149,155,156,140,152,108,95,63,64,52,68,96,86,72,106,188,164,5,15,25,47,61,80,112,88,69,61,63,80,85,96,103,87,60,60,50,59,64,64,65,60,52,50,38,36,23,22,17,9,0 +36,814,1541,2850,3939,6095,6628,7094,8655,8181,9443,8638,6060,6508,6795,7876,8902,10038,12063,11830,8901,10351,10586,8133,6512,9171,13026,15190,12517,13485,11201,11096,14482,27683,47369,56430,59161,48273,52450,62612,54411,43558,36133,51357,51319,41031,32268,29016,33622,41536,40703,27796,26414,18821,13318,7855,0,1924,3956,9010,11888,15606,19858,26734,38534,38396,42325,40399,27362,31165,24746,22055,16287,16580,17576,15931,12306,19543,22845,28004,29356,31189,27991,18254,12108,18260,19442,16026,17203,17566,21100,17583,13408,11269,8280,3400,0,130,305,423,457,498,687,984,1193,1384,1903,1873,1624,1496,1202,1478,1482,1534,1238,849,464,297,183,78,0,526,976,1231,1433,1414,1861,2019,0,0,1,2,2,4,4,5,5,7,8,11,14,12,11,10,10,12,15,17,12,12,13,12,11,12,14,12,9,7,4,2,72,86,83,86,83,66,47,58,54,56,49,48,41,41,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,23,34,33,106,143,172,171,177,160,176,260,243,208,168,152,173,259,244,218,195,220,191,188,256,269,210,234,224,147,176,0,14,25,40,50,71,82,92,82,75,71,76,95,100,102,85,66,88,110,139,122,120,135,101,76,53,51,39,20,14,10,6,0 +50,864,1879,2652,3663,4920,6048,6860,9489,9136,8744,7746,4377,6046,5837,7767,6966,9379,11405,8353,6638,8902,7318,6612,5711,6824,8628,10975,11264,10560,8841,7990,17607,27683,47876,46531,44946,45765,46663,49396,49486,44772,44736,46731,36296,36166,43494,46608,34215,34634,33958,30504,23583,17315,11513,6505,112,1606,2949,7283,11572,13604,18657,23350,39540,40240,40314,31447,25390,20121,25463,19363,16207,13088,17821,13496,10902,13405,16470,20692,25536,23182,22221,15931,12020,14110,12782,15966,12966,18580,19810,14649,10105,8760,7002,3274,37,144,261,350,501,590,644,916,1164,1406,1828,2183,1680,1880,1319,1812,1604,1503,1909,1340,869,538,256,107,7,476,712,1033,1233,1544,1814,2004,0,1,2,3,2,5,5,7,7,9,8,11,16,16,10,12,9,13,17,16,10,14,12,12,14,14,14,12,8,8,6,6,48,56,65,74,74,63,52,53,36,45,56,52,61,43,40,27,14,10,10,8,7,8,7,8,14,14,8,8,8,9,7,5,7,16,26,30,26,76,91,134,153,222,223,272,306,292,249,211,121,150,214,244,207,187,138,141,140,172,249,200,262,230,180,234,17,34,51,55,40,50,76,83,78,62,67,76,86,98,96,97,52,70,105,117,136,134,155,130,108,80,70,54,23,20,14,8,0 +59,855,1670,2350,2468,4068,5098,4914,9467,8975,7540,7492,3708,5552,7076,7496,5595,6720,8590,7772,5236,5978,4968,5477,5659,7032,6718,6618,8460,8840,9861,10887,19871,33249,36716,35316,36456,38764,38938,39892,64394,58267,48084,46456,35936,41099,42046,48516,51176,54267,42277,27290,18978,13995,6255,3758,199,1300,2915,5624,9178,13289,17529,19342,37981,35385,31790,34792,17675,16253,21487,15670,12382,13130,12682,14044,8871,9591,9418,12845,33965,22694,18840,11932,16842,14920,11644,12466,13427,15255,14661,9278,8884,7854,5301,2280,89,212,266,348,401,587,648,834,851,1117,1578,1520,1670,1702,2056,1732,2348,2443,2054,1282,988,732,398,224,13,317,738,739,1439,1520,1880,1868,0,2,3,4,3,5,4,6,7,7,6,8,12,13,10,10,8,10,13,12,7,8,10,9,13,12,11,9,7,7,6,7,34,44,46,50,72,59,56,61,31,38,52,45,66,62,48,55,23,21,15,12,12,14,13,12,23,24,17,15,16,17,11,10,8,13,20,28,28,40,66,99,207,248,318,305,263,265,244,223,96,131,166,170,131,125,120,114,157,168,160,173,230,203,212,196,32,46,62,79,44,57,74,86,58,54,62,73,81,110,114,166,55,58,79,71,138,158,156,142,103,95,66,46,32,26,13,7,0 +69,867,1801,2204,2908,3202,3165,3969,6208,8488,6448,5524,3352,4522,5077,6168,4440,4462,5897,5912,5262,4745,5812,4822,6090,6660,7049,6834,7774,8722,9648,8042,15860,25840,40710,39956,36513,33642,36972,31705,61606,62748,51150,48520,46369,41404,35300,42074,44326,34336,37030,20987,16036,10507,7278,3694,300,1904,2512,5370,9973,11112,14293,14376,41796,37114,28358,29050,16826,16652,21370,15941,11039,9321,10135,11219,7889,8185,9210,9632,31598,23636,13550,12314,17742,14859,12556,10486,19190,16457,18382,12420,10698,8388,5847,2730,145,234,258,394,477,744,1073,1302,751,791,1300,1476,1748,1742,1528,1658,1954,2218,2422,1508,1098,754,565,264,18,286,703,749,1156,1631,1283,1418,0,2,4,5,4,6,5,6,7,8,7,9,9,11,9,10,10,12,14,12,7,9,10,12,10,12,10,10,7,8,7,10,35,44,40,46,59,66,46,48,39,47,61,58,76,68,52,63,37,36,26,28,15,18,20,17,34,32,32,28,21,21,15,14,8,14,20,26,31,46,75,84,208,278,308,342,346,296,236,168,107,132,124,156,142,125,111,110,127,112,144,136,179,158,171,182,63,59,82,79,63,64,74,70,84,74,72,88,67,82,128,172,57,73,77,92,133,133,112,161,98,84,70,52,39,32,22,10,0 +69,691,1120,1687,2382,2662,3452,3061,5269,5302,3687,4370,4328,4086,5377,5888,3022,3322,3239,3918,3860,3973,5258,6130,5771,4826,5245,6562,6494,5966,6043,6256,14243,25828,36796,33073,43526,30511,16187,10491,54743,58505,67549,62595,43533,43286,37902,25414,39884,31980,19331,16952,14152,10513,10119,6166,524,3306,5439,6828,7471,8570,7554,9810,32902,40431,35065,24795,19048,16095,7904,8378,6786,7433,10925,9609,10197,9534,7378,7516,23429,20288,18936,18328,14818,13275,9135,7138,20913,15676,10870,8288,9253,7309,4815,2594,218,270,365,535,566,672,709,981,402,766,892,1045,1710,2357,2317,1722,2432,2212,1622,1603,1296,786,627,281,24,404,702,774,984,1095,1024,738,0,2,3,4,3,5,4,5,5,7,6,7,6,8,8,8,11,13,11,10,6,8,9,9,7,7,6,7,6,10,11,11,34,45,53,60,50,47,32,42,42,39,49,60,68,69,60,71,45,49,43,29,19,22,20,19,38,48,43,29,26,29,23,19,8,19,23,24,34,53,59,81,172,248,251,307,318,297,220,258,136,143,152,140,144,135,83,106,74,70,72,88,98,201,271,288,81,90,102,96,78,68,46,45,105,110,120,101,68,93,105,183,58,71,104,106,150,151,217,193,87,60,56,57,46,36,18,11,0 +87,690,1356,1932,2818,3364,3225,2620,4415,4466,4282,4554,4629,4662,4755,4977,2280,2550,2526,3399,2828,3244,4385,4403,4139,3992,4532,4737,4386,4401,5094,6210,11071,17776,31326,35566,31050,28571,21142,16772,48199,51654,45992,41421,33762,33332,37902,25544,36156,25261,15412,14687,11438,8763,9721,5374,773,2442,4724,5168,4985,6836,6550,9192,46983,42396,34016,26090,28947,19610,15061,10506,7712,10167,12882,10458,12019,10211,8126,7566,23059,23632,14746,16758,13567,11861,9845,10068,17436,12112,13043,9046,7628,6283,3840,1991,276,306,356,412,393,525,614,784,468,574,840,1278,1472,1710,2056,1476,1780,1806,1706,1494,1169,973,635,320,73,413,702,908,992,1007,974,793,0,2,4,5,4,6,5,6,5,8,7,9,7,10,8,10,8,12,10,9,6,8,8,8,7,9,8,12,8,12,12,14,49,58,70,91,75,62,44,64,78,78,72,84,66,73,68,77,60,72,64,40,30,30,34,32,38,46,48,45,44,38,28,20,8,19,21,26,46,52,53,75,155,218,201,267,251,286,203,185,137,136,158,135,151,129,118,103,84,68,87,94,133,206,275,294,109,109,114,93,130,98,74,72,111,136,150,110,127,116,167,178,74,112,122,134,123,169,239,229,108,93,74,54,46,34,16,10,0 +84,634,1306,2275,3459,2928,2936,3325,4682,4879,4156,3884,6203,5520,5754,5038,1723,1449,1726,2038,2045,2771,2813,3696,2856,2577,2952,2807,4102,4050,4514,4569,10690,14710,22340,29596,33414,30579,31417,28868,47739,31567,30570,33226,28301,25224,25503,25498,22610,19628,11615,11296,10264,9648,6190,3507,789,1890,2597,3235,3801,4603,5872,5857,51811,51014,38532,39194,31220,29222,17985,14171,10350,12625,12178,14213,11996,10859,8216,7247,22853,16856,15868,13146,16460,12553,12067,11348,16981,11844,10978,9094,7981,5305,2610,1440,325,342,318,300,206,372,450,820,403,643,688,1156,851,1032,1243,1251,1564,1575,1508,1532,1492,1083,721,462,108,290,612,706,833,766,611,690,0,2,3,4,3,5,5,5,4,7,7,10,6,7,7,10,6,8,8,7,4,6,6,7,6,8,8,12,9,12,12,12,55,77,93,112,99,80,64,82,119,116,101,90,69,73,64,82,92,89,76,58,40,50,43,49,52,58,53,49,51,38,33,22,9,18,26,26,43,41,50,64,181,202,220,214,269,194,212,184,173,169,138,126,147,146,116,80,87,82,97,92,171,195,238,251,126,145,132,144,137,134,108,106,164,148,146,131,150,151,183,155,106,144,159,164,138,197,190,155,130,92,67,51,38,34,18,9,0 +76,774,1762,2620,2816,2806,3198,3198,4772,5080,4746,6018,8082,6212,4973,4210,996,884,907,1347,1469,2039,1911,2165,2007,2342,3188,3080,3361,3872,4526,3800,7072,12803,19044,25192,25688,28560,28617,25468,43306,37610,28953,27950,28067,28256,29100,27498,17672,17788,10638,7220,6075,6517,5170,2790,821,1114,1726,1906,1761,2761,2722,3468,49185,46877,43723,41580,33221,23708,21408,17045,11052,14334,16762,18576,17671,13608,10972,8811,17055,18110,16527,14168,17609,14868,17028,14876,11714,11555,7860,5332,4268,3208,1906,838,346,242,281,250,179,298,294,536,411,591,752,896,892,747,1073,1160,1620,1489,1539,1630,1651,1022,840,446,132,338,464,619,595,713,671,768,0,1,2,3,2,5,5,6,5,7,8,10,7,8,7,9,5,7,7,6,4,5,5,5,4,6,7,11,9,12,11,13,78,111,104,130,132,111,93,105,160,142,141,130,98,100,103,124,120,132,112,71,67,44,47,48,65,72,72,69,64,52,37,28,12,24,25,28,40,44,42,62,141,184,158,206,230,174,158,136,150,156,129,146,108,126,106,84,56,91,122,152,204,257,259,284,109,120,127,116,158,148,152,150,185,142,149,162,218,224,183,170,192,182,219,162,115,164,140,142,176,110,77,57,31,30,22,12,0 +50,419,883,1422,2333,2439,3240,3943,3758,5620,6807,7341,6864,5188,3695,4268,0,90,199,339,450,707,838,1172,1202,1186,1721,3346,3860,3529,4958,4714,6509,11333,14262,20582,20539,21294,21044,27672,33342,41632,48194,53366,41467,38277,23355,24244,15535,13144,11624,11534,14197,9305,7231,3591,798,757,694,496,436,370,185,98,41521,33975,35587,34831,22682,19724,21297,16501,10595,9026,8805,6288,2869,5832,11094,12669,14414,10792,8036,5755,5192,5901,8375,11419,11623,9283,5879,4871,2299,1538,921,526,300,401,567,617,615,520,455,424,548,678,733,673,876,908,800,828,1782,1732,2003,1954,1362,1070,721,354,156,253,275,470,660,595,407,531,0,2,3,5,4,6,6,5,3,5,4,5,5,7,7,7,3,4,3,2,2,2,1,0,0,2,4,7,9,10,10,13,129,133,93,95,95,154,179,166,182,182,132,158,249,177,120,123,129,96,71,66,48,45,43,56,56,43,33,37,34,27,19,24,16,38,65,62,80,69,58,64,86,130,150,216,226,204,274,215,128,123,99,142,136,99,96,62,50,89,102,202,239,196,220,248,106,153,163,175,169,181,179,179,148,114,98,120,123,135,150,151,291,252,199,216,224,235,183,160,173,135,116,124,121,92,64,28,0 +53,480,1000,1318,1844,2339,3687,4108,2900,4020,4674,4911,6303,5186,4291,4876,0,100,178,284,368,682,704,1059,968,1388,1718,2422,2948,2564,3578,3298,6289,9408,12016,12747,20181,20054,19928,19612,32790,38550,30088,35169,31332,28172,16756,19576,13498,13790,10312,10732,9500,7980,5180,2814,669,570,498,396,338,246,151,86,41639,34244,38190,31064,25599,20182,18088,13426,7124,7908,7716,4716,3068,4652,9626,12255,11742,11214,7131,6714,7204,8435,8348,8452,11071,7677,5442,3535,2366,1245,894,417,278,414,424,569,564,495,443,456,532,780,827,760,650,629,667,620,1406,1486,1470,1452,1028,836,762,432,197,203,253,396,390,464,465,472,0,2,5,6,6,7,7,7,5,6,5,7,7,9,8,8,5,6,5,6,6,7,5,6,5,7,7,8,13,15,16,14,95,114,82,94,101,108,136,129,219,178,179,188,230,164,120,138,141,106,66,62,55,60,72,60,77,66,39,46,46,44,30,28,15,32,46,74,68,74,57,67,84,115,176,212,233,268,220,180,115,102,80,114,113,75,64,44,40,88,92,150,199,198,193,230,102,144,115,155,166,143,171,144,176,134,118,106,118,163,198,178,282,236,173,170,247,226,146,139,157,140,149,138,135,98,54,28,4 +58,644,1017,1498,1822,2734,2953,3508,1559,2158,3756,3604,5464,5572,3952,4466,0,113,198,370,385,658,879,998,702,1172,1738,1940,1890,2683,2639,2288,4299,6217,6403,7870,13912,12637,12176,19427,32918,31748,25445,27144,24608,17119,17930,18668,13068,12760,11717,9763,9022,7616,5608,2808,631,529,327,359,205,147,128,109,44831,36320,32953,28373,23176,14138,11788,8933,5960,6020,6675,4436,3412,5662,8089,11109,14029,11904,9196,7438,6822,8053,6611,7255,7146,6954,4611,3108,2122,1291,736,345,300,433,428,522,460,500,443,308,606,548,669,567,543,669,628,512,1578,1857,1653,1454,714,779,599,388,176,189,157,240,303,375,406,477,0,2,4,5,6,7,7,7,4,5,4,6,6,7,7,7,6,7,6,8,8,8,8,10,8,8,9,10,13,17,16,15,62,70,72,88,76,86,84,73,220,200,180,214,168,146,126,122,109,78,70,67,70,67,77,87,92,89,60,77,61,55,46,30,17,27,30,44,61,50,60,92,90,102,153,166,203,168,196,163,70,100,96,142,93,82,47,43,47,76,118,119,109,164,168,188,111,124,104,88,117,135,110,108,146,145,102,105,156,171,186,182,199,181,130,128,227,149,140,162,145,134,135,129,126,111,61,41,6 +60,582,1028,1482,1352,2019,1963,3142,1076,1852,2666,2194,3951,4045,3036,3892,0,129,258,374,509,710,1057,1063,512,864,1086,1418,1531,1545,1868,1576,2726,4572,5050,5570,11028,10500,9404,13522,24504,23349,16749,17640,23816,17768,16815,12606,9510,9632,10311,8196,6206,5115,3862,2442,318,320,218,220,151,134,106,105,46220,38396,29985,28362,17037,11270,9980,7408,5127,5707,5224,4012,4740,4962,7605,10192,7915,8218,8186,6754,7547,7632,8450,9248,6282,5272,4998,2918,2036,1264,1014,498,360,516,624,514,650,575,441,346,508,522,496,501,762,786,790,544,1830,2041,1462,1370,754,692,644,414,158,172,124,210,283,292,333,353,0,2,5,6,5,7,7,7,5,6,5,7,6,7,7,7,6,7,7,10,9,12,12,14,12,10,12,14,17,16,15,17,44,64,61,85,58,84,84,84,189,188,135,150,125,128,100,118,106,76,59,76,98,80,68,83,104,103,76,88,61,70,58,38,14,22,22,36,51,42,48,66,106,120,123,147,139,123,124,130,64,94,107,112,84,70,62,47,43,64,78,101,97,132,156,247,149,128,111,94,101,78,71,94,104,98,82,121,172,148,177,205,261,274,229,182,246,180,170,150,139,124,104,106,120,88,47,29,7 +81,449,691,1114,1494,1519,1817,2536,520,902,1121,1126,1484,1688,2433,2787,0,206,354,422,586,644,840,1142,418,424,577,717,852,540,403,396,1961,3343,5192,6268,8167,8982,11958,14298,14579,13482,12916,11943,15212,15215,15019,13713,9526,8228,5640,4573,2842,2321,1227,1055,125,104,80,99,107,84,68,99,34774,33342,25382,18353,14566,12402,7139,7426,5372,6740,5922,5502,4562,6364,8215,8802,5689,6176,5136,5630,8220,9763,8347,9265,6230,5179,4259,3027,1472,1311,990,542,461,380,360,538,646,610,511,281,611,770,786,927,901,601,452,533,1852,1468,931,1000,832,726,649,379,104,109,128,167,210,271,422,484,0,2,3,4,3,5,4,5,4,6,6,6,4,6,6,6,4,6,6,10,10,12,11,12,12,11,10,12,14,17,17,13,42,62,64,65,58,66,85,74,158,107,100,126,123,119,130,98,66,86,90,104,100,89,92,96,103,102,122,86,88,89,60,36,9,17,24,32,30,36,31,39,94,120,107,96,110,100,124,133,85,101,126,122,108,110,92,60,35,49,72,92,104,181,268,335,156,168,127,86,54,69,78,74,71,114,128,144,168,271,339,349,293,212,213,240,192,193,177,126,123,138,140,131,78,58,39,22,7 +74,320,550,866,1201,1158,1468,1430,477,772,788,984,1174,1366,1636,2608,0,156,248,317,488,552,666,874,262,354,442,484,654,402,288,391,1401,3312,4773,6044,6070,8194,9602,9268,9341,9312,8354,8836,11144,12592,10554,8989,7076,4946,4274,3538,2062,1527,1111,883,180,148,96,117,128,138,128,135,27114,20765,22037,18278,11742,7497,6483,5940,3985,4851,5832,4649,3690,6063,7730,6968,4852,4769,4278,5256,6084,8079,6528,6776,4987,3875,3644,2468,1030,1050,862,568,422,486,395,452,445,576,493,327,576,670,664,816,824,498,347,458,1503,1204,622,742,642,592,416,312,101,91,116,171,188,230,332,363,0,2,4,5,4,6,5,6,5,7,6,7,5,7,6,7,5,7,8,12,10,14,12,14,16,16,14,16,12,16,16,20,37,59,67,56,71,74,69,92,171,136,98,134,143,124,112,96,74,84,108,122,82,111,98,100,122,119,82,88,86,60,56,36,17,22,32,36,29,38,37,52,79,78,72,80,78,86,82,111,86,74,101,87,92,86,66,55,33,54,67,86,98,146,199,244,113,96,116,74,36,46,61,67,50,78,94,124,160,264,346,328,239,233,216,232,200,178,187,138,102,106,98,99,85,74,45,30,16 +73,231,334,401,864,876,942,812,362,575,696,648,972,1080,1262,1470,0,64,126,195,271,392,614,666,221,233,317,405,453,422,292,346,1528,2265,3180,3693,5053,6527,7116,6207,5629,5081,5758,8339,7932,8737,7896,6727,3798,3274,2786,1970,1523,1292,822,582,214,152,156,202,193,199,158,142,14505,14146,11480,10120,5549,4701,4009,3910,3555,3879,3854,3378,3294,5054,5210,4148,2927,3694,3279,3420,5281,4062,3896,3547,2181,1872,1862,1360,878,918,707,396,359,440,422,567,412,326,358,291,624,682,740,647,640,486,370,425,946,684,529,486,545,436,385,317,94,115,98,106,147,225,282,286,0,2,3,4,3,5,4,5,3,5,4,5,3,5,4,5,3,7,8,10,9,12,12,12,18,17,14,16,12,14,18,20,36,44,47,53,60,55,62,87,164,140,106,128,184,150,120,87,77,88,120,124,101,132,133,130,112,101,75,83,72,57,46,32,22,31,36,38,32,42,42,57,48,46,56,45,74,76,72,60,59,65,63,73,52,54,48,33,34,46,70,77,97,113,154,159,116,87,76,63,27,40,50,44,24,44,62,94,162,173,236,350,194,175,208,198,213,174,150,92,92,105,86,74,74,64,63,43,28 +66,126,213,262,512,480,560,488,217,286,326,352,504,570,514,877,0,32,70,109,150,204,323,402,172,220,341,374,414,374,286,276,1011,1550,1813,2160,2130,2618,4111,3870,2476,2474,2772,4582,4733,4306,4143,3396,2181,1682,1178,1066,938,702,397,356,224,196,191,252,272,249,233,188,7907,6752,6402,5690,2836,2720,2329,2082,2090,1998,1791,1708,1605,2648,2994,2272,1734,1845,1874,1532,2607,2060,1708,1978,1138,1012,1131,698,538,550,416,284,337,340,373,428,453,317,345,356,541,614,517,662,736,530,408,386,778,502,316,375,382,324,286,242,88,94,85,105,105,144,128,114,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,8,10,10,15,16,16,18,20,22,22,17,20,21,24,37,34,34,42,52,70,80,90,161,120,99,132,190,156,102,102,101,114,136,116,101,127,108,104,159,105,68,67,49,49,53,41,29,34,30,34,25,38,40,48,38,41,51,46,39,46,40,32,28,38,33,39,27,29,30,26,25,40,50,76,99,104,103,112,87,76,47,46,21,25,28,24,12,26,53,74,124,156,201,258,249,186,198,189,176,140,126,74,63,70,65,56,59,56,50,47,40 +44,36,37,30,13,14,12,10,7,8,8,7,5,5,3,2,0,8,15,24,30,95,138,200,198,233,275,322,264,217,189,241,300,353,298,225,231,203,177,88,26,27,23,24,17,15,11,7,0,44,79,147,183,147,150,202,249,230,226,270,297,312,280,245,222,287,286,216,217,218,243,231,225,201,244,263,204,159,107,78,53,60,57,50,37,33,21,12,0,16,30,46,47,130,187,178,249,222,205,310,361,294,284,379,578,506,402,565,650,452,340,338,357,255,176,162,150,133,132,138,123,85,69,59,40,35,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,11,12,14,18,16,16,17,22,22,17,20,24,28,32,33,30,40,36,72,84,93,103,114,102,125,171,160,126,116,110,114,120,110,97,106,86,109,156,110,61,42,39,42,41,41,31,28,34,27,17,30,33,35,38,29,31,23,18,15,11,7,0,2,4,6,6,12,15,17,18,25,34,48,71,75,77,98,93,57,35,26,11,8,6,4,0,15,29,57,84,98,117,220,258,250,187,186,132,99,66,40,17,26,26,36,34,44,56,43,46 diff --git a/worlds/diamond_world2_iso.jpg b/worlds/diamond_world2_iso.jpg new file mode 100644 index 0000000..15ad13a --- /dev/null +++ b/worlds/diamond_world2_iso.jpg Binary files differ diff --git a/worlds/diamond_world2_topo.jpg b/worlds/diamond_world2_topo.jpg new file mode 100644 index 0000000..67fbe5b --- /dev/null +++ b/worlds/diamond_world2_topo.jpg Binary files differ diff --git a/worlds/diamond_world3.csv b/worlds/diamond_world3.csv new file mode 100644 index 0000000..f728357 --- /dev/null +++ b/worlds/diamond_world3.csv @@ -0,0 +1,129 @@ +54,45,48,33,25,19,13,7,0,30,56,85,111,186,266,326,308,342,398,404,478,526,482,386,235,547,794,981,938,973,930,1031,848,1321,1885,1868,2595,2808,3491,3086,2423,2261,2150,1866,2490,2400,2296,1731,1056,1121,977,968,908,719,350,156,0,40,66,106,139,230,302,350,552,1001,1941,2481,2391,2874,3772,3797,3441,3024,2415,1553,1437,1385,1355,2190,2405,1644,1345,1364,1672,1222,1304,660,235,164,166,130,117,364,544,616,737,1044,1266,1885,1976,1907,1535,2132,2040,1908,2521,2150,2796,1799,1566,1266,1324,1154,1471,1270,1186,926,828,373,0,5,9,15,22,36,42,46,44 +59,44,39,31,25,18,13,9,4,33,48,70,98,137,220,226,330,362,321,362,326,373,393,324,200,470,674,734,644,705,825,755,642,1283,1674,2145,1902,2134,2795,2202,1814,2135,2068,1703,2219,2266,2238,1334,1221,1068,927,1072,922,826,520,238,29,58,79,126,148,220,249,304,498,1108,2106,2191,1606,2254,2683,3624,4869,4892,3513,3584,2507,3754,4592,6927,3696,3422,2276,2096,1758,1512,1199,902,1302,1092,855,564,750,896,737,720,636,916,1187,1680,1584,1596,1815,1757,1464,1712,2266,1651,2106,1732,1531,1469,1474,1482,1226,1248,1090,1173,922,530,275,312,253,200,166,123,89,62,33 +54,47,34,30,22,22,14,8,6,32,54,81,92,128,138,136,248,203,180,245,277,281,356,232,222,350,552,831,507,585,522,415,611,1048,1510,2132,1548,2264,2502,1822,1482,1799,2396,1959,1643,1558,1660,1372,1216,1021,952,1089,909,702,556,356,53,82,103,137,215,269,247,312,352,816,1669,1790,1369,1806,2306,2589,6746,6526,4918,6895,4070,7047,8161,8731,6129,4300,3734,2387,1904,1773,1663,1561,2186,2043,1466,999,1240,1169,1287,930,524,644,882,1065,1368,1580,1572,1514,1526,1420,1400,1356,1528,1748,1726,1492,1660,1634,1350,1137,997,1076,968,779,613,501,529,419,292,202,145,83,28 +50,39,24,26,19,22,17,12,8,32,48,62,101,136,161,178,189,193,179,236,264,284,359,294,312,426,470,638,464,534,561,467,509,1028,1894,1884,1593,2331,2178,2190,1576,1810,2214,2059,1876,1574,1795,1704,1187,904,1034,784,782,658,426,278,122,98,112,154,248,240,230,232,415,858,1470,1360,1026,2134,2898,3745,6536,7304,6121,7452,5650,8898,9037,10044,11024,8813,6880,3442,1932,1739,1590,1334,3544,2875,2363,1857,1462,1524,1536,895,265,508,647,882,1203,1330,1448,1184,892,1088,1017,1062,1413,1237,1484,1186,1628,1463,1188,1214,1274,1010,1094,930,1114,688,687,575,340,274,212,110,26 +45,40,34,26,16,12,8,7,9,26,50,71,77,124,178,203,160,209,208,219,199,190,144,224,358,482,603,510,612,634,523,568,557,847,1012,1766,2144,2135,1505,1816,1768,1828,1535,1661,1634,1152,920,1070,953,1032,946,959,796,564,610,374,162,187,206,256,244,183,129,124,519,771,919,814,966,1558,2378,3365,6658,7550,9782,8815,9230,10485,13423,15564,13711,8821,7996,5990,2260,1993,1938,1443,4578,4356,4056,2526,1850,1319,1068,955,104,247,454,712,1070,1065,763,646,628,722,626,676,1004,783,863,634,2095,1269,1074,1101,1238,1164,1018,1021,1417,1124,1200,938,484,367,354,166,27 +36,29,23,22,15,15,13,13,12,26,39,48,48,90,106,144,234,201,176,204,156,140,142,196,393,486,443,513,643,582,463,432,483,702,708,994,1463,1476,1438,1644,1585,1233,1504,1358,1760,1488,1067,1174,861,1062,930,998,1339,1136,598,439,270,302,271,340,494,346,246,222,476,818,989,1014,1204,2096,2424,3972,6113,7783,11573,10580,9109,13048,17592,14989,14571,13236,11292,7032,3388,3810,2754,3110,5995,4750,4442,3367,2224,1842,1202,1036,76,196,383,588,744,594,476,500,459,556,768,684,1514,1108,1030,910,2403,1926,1576,1282,1083,1166,1125,1055,1637,1860,1548,1492,700,600,487,235,19 +25,23,17,17,17,15,14,14,10,25,37,37,39,47,72,100,236,205,226,204,87,94,92,120,353,421,409,371,477,382,299,256,371,504,564,697,727,800,930,1034,1261,1082,1040,1034,1366,1006,1068,1046,718,1155,1354,1587,1555,1125,816,636,321,307,372,415,581,378,354,225,355,759,1033,1302,1930,3154,3366,3742,3804,6151,10185,11202,9443,11786,18736,18116,18431,13811,12021,9441,5235,5634,4548,4414,6949,4792,3987,3418,2295,2380,1808,1360,35,115,193,356,371,349,327,309,354,515,708,692,1582,1535,1420,1145,3583,2384,1832,1624,1110,1110,1214,1251,2081,2180,2274,1625,1106,952,568,298,11 +12,14,12,13,12,14,14,16,11,20,28,29,20,30,38,55,291,249,182,147,62,70,90,164,248,345,338,300,228,204,198,130,215,268,322,386,480,530,761,784,802,846,744,710,863,918,891,1050,949,1096,1273,1353,1238,1308,1097,742,388,512,662,558,713,494,441,308,278,684,1204,1978,2782,2963,2318,2853,4506,6572,10167,11387,11813,15246,19093,19558,15894,13022,12641,9506,6516,4920,5160,5288,6719,5358,5891,4277,3833,3552,3348,2052,18,62,99,172,155,152,195,150,170,500,683,950,1563,1893,1887,1717,3615,2508,1875,1477,1107,1070,1074,1221,2383,2326,1914,1782,1237,1144,626,318,8 +0,2,4,7,7,10,8,12,12,10,9,8,5,5,3,2,292,241,199,201,270,271,268,233,184,150,180,150,104,96,57,30,0,84,163,282,318,302,396,503,542,580,462,664,652,828,783,888,1235,1163,934,1220,1506,1206,1168,923,600,616,730,788,591,623,537,417,139,266,467,902,1357,2620,3758,3489,4095,5723,6818,11223,16184,19013,16734,17158,14824,14493,15844,13046,11070,11676,9831,8869,7840,9358,8310,8808,6789,5621,3699,2794,0,0,0,0,0,0,0,0,0,122,239,534,685,1228,1574,2065,3970,2909,3052,2114,2124,2739,2548,2034,2048,1310,1138,956,699,606,395,197,3 +6,11,13,16,15,16,14,14,17,14,10,10,7,7,5,2,232,278,268,316,356,406,421,493,376,302,278,220,122,223,183,158,0,98,202,265,241,285,452,560,579,504,370,498,582,666,892,1054,1035,876,836,988,1271,1075,1287,884,598,636,696,599,797,754,615,390,246,482,813,1249,903,1768,2916,3236,3494,4704,6145,8302,10831,14066,14296,12928,11657,11734,14097,10754,12122,9655,12061,8773,8971,8542,8337,8280,8869,5428,4264,3023,81,64,56,53,60,65,72,68,28,172,279,423,666,1107,1931,2537,4330,3361,2080,1892,1919,1940,2344,1876,1516,1052,1160,958,549,496,304,180,4 +10,17,18,26,20,16,15,14,15,13,12,12,8,7,5,2,192,332,362,460,469,685,680,856,586,518,340,236,197,333,390,289,0,91,172,217,189,280,427,402,426,446,444,592,423,684,936,1016,923,1037,850,834,1101,962,994,763,844,856,730,557,800,610,696,513,398,789,1164,1337,871,1825,2718,3665,3608,5866,6235,7542,6885,8813,14482,14902,6848,7180,9049,11016,10371,11395,10356,10896,11872,12890,9652,6686,8689,7522,4166,2747,153,131,99,87,145,148,140,111,54,200,330,392,634,1273,1664,1999,3350,2919,1728,2013,1365,1522,1392,1219,1122,888,798,717,454,404,262,154,3 +16,24,30,31,26,28,29,21,20,21,20,18,13,9,7,4,131,218,362,443,555,778,840,806,973,822,469,374,327,411,470,487,0,66,154,185,239,320,360,424,419,370,421,462,293,490,662,965,651,663,502,727,797,942,1131,725,709,697,736,686,969,765,667,388,485,906,1441,1195,1243,1918,2188,2804,3564,4584,4960,5902,6440,11890,12513,12905,7528,6714,7297,7182,8176,7253,9608,9238,14455,12884,9046,8580,5909,6088,4683,3324,251,214,218,206,189,190,195,166,68,232,295,373,477,1295,1822,2448,3430,2465,1768,1573,1422,1210,1101,978,760,845,723,654,465,353,226,112,2 +26,31,36,42,40,38,30,19,24,22,13,15,14,11,8,5,55,120,201,298,480,587,722,973,1045,970,714,593,434,348,363,516,0,76,143,157,224,336,370,390,286,269,225,264,230,325,457,677,288,423,441,747,810,572,534,654,869,1114,1068,808,902,839,560,396,534,1021,1393,1736,1521,1726,1893,1722,4251,5122,5725,6832,6732,7670,11725,15972,6447,5632,4673,4032,4428,5252,6178,7915,14539,11468,9140,8413,5969,4751,3224,3233,435,383,252,304,264,189,194,216,86,188,333,456,524,981,1504,2432,2389,2184,1472,1500,1112,1094,728,1038,693,593,716,604,454,401,237,136,2 +32,34,31,36,54,50,31,23,26,24,15,15,14,13,8,6,40,139,178,259,304,544,610,994,1040,981,660,674,691,1052,889,1701,0,59,137,166,191,219,256,313,344,307,178,196,215,268,419,665,277,356,462,708,880,656,493,518,779,985,1016,854,628,747,629,511,610,1130,1266,1221,1519,2116,2066,2681,4139,5902,6058,6776,7355,9477,12114,17525,6594,7392,6277,7321,7834,8482,6356,8530,14393,13772,8548,7760,4520,4349,3177,2269,545,512,571,472,406,408,289,292,213,368,504,606,499,1062,1528,2207,2184,1936,1295,1246,1075,957,924,1111,718,634,544,492,463,369,268,136,2 +34,39,35,37,50,45,41,26,36,34,20,16,12,12,8,5,39,110,156,226,274,453,654,1045,1331,1095,836,854,744,1448,1715,2650,0,44,85,146,143,195,210,257,335,275,138,164,128,325,430,689,350,378,420,470,726,774,648,656,820,770,896,952,641,671,627,607,752,882,1292,1126,1691,2161,2442,2756,5836,5932,7378,6833,6356,12483,14456,17364,9019,7004,8156,9492,9271,9742,7668,8347,16230,14451,11121,7987,3951,2947,2558,2055,553,743,820,845,576,476,438,298,303,476,692,862,645,1180,1339,1229,1847,1639,1281,1099,846,705,847,957,653,489,494,423,413,310,213,124,1 +40,32,41,38,48,46,43,33,28,30,22,19,13,14,10,6,22,80,96,166,225,448,614,806,1064,848,654,859,708,1368,1767,2534,0,50,110,168,200,221,202,262,301,250,107,117,116,176,269,512,368,380,395,615,794,732,886,908,769,789,1046,965,832,788,894,730,670,734,1134,977,1128,2185,2604,3946,6092,6103,5849,5740,5313,9128,11342,13634,8527,7910,9878,11010,10941,8296,7856,7088,10646,12072,10010,5844,3438,3796,2770,2351,810,1055,1519,1404,988,948,569,463,378,687,766,786,867,1378,1520,1882,1876,1582,1230,1087,1083,1090,865,936,739,593,422,397,381,226,157,78,0 +41,39,48,42,48,43,30,28,20,22,17,15,16,12,7,5,0,278,605,1071,1182,1453,1326,1720,2097,2615,2536,2731,2112,2298,2282,2800,0,7,11,22,24,42,53,103,138,162,206,357,402,278,268,362,366,333,382,445,487,397,322,354,342,305,326,355,386,479,412,516,758,851,911,612,604,497,329,275,160,1252,1981,3248,5523,6379,5166,6304,9109,10836,12885,12417,9646,9241,7285,6066,6991,4897,3622,3996,3235,2721,1636,1751,1308,1792,2391,2595,3637,3594,2869,3284,3761,2573,1877,1491,1276,1962,2284,2384,2156,1466,929,855,729,1243,1399,1141,1353,1213,1129,906,417,309,141,66,0 +33,35,53,40,41,42,28,28,24,19,14,15,15,12,10,6,0,301,752,1051,1287,1913,1844,2566,1912,2544,2356,2645,2610,2740,2866,2838,158,324,438,420,303,424,414,536,573,634,682,886,749,654,616,618,454,496,503,620,792,633,524,644,474,402,485,517,603,638,591,559,1702,1414,1465,902,819,916,920,798,307,1421,2209,3542,4523,4982,3722,5007,7733,7864,9625,11268,8274,7102,6623,6031,5818,5564,4890,4498,3167,2347,1787,1503,1764,1528,2416,2582,3142,2572,2539,3158,3704,2692,1900,1665,1526,2180,2326,2380,1713,1594,1152,1023,701,884,1352,1109,1755,1296,1177,820,394,294,137,68,5 +28,31,41,48,44,34,36,28,19,17,13,14,15,14,8,5,0,373,698,1062,1525,2070,2490,2958,2364,2818,3170,2662,3888,3248,3268,3655,334,525,794,910,565,611,788,867,1269,1268,1155,1214,1167,998,1132,1042,493,799,840,756,938,762,762,947,493,532,562,786,862,933,806,727,2618,2419,1980,1159,1403,1125,1330,1483,529,1880,3410,4720,3246,3336,3399,3606,5004,6625,6264,8113,9493,6314,5244,6114,5970,6759,6818,5169,2903,2282,1412,1201,1671,1852,2086,2806,2393,2973,2820,4110,2994,2900,2022,1571,1667,2042,2616,2039,2086,2092,1654,1440,683,804,920,1003,1594,1486,909,767,324,204,137,64,9 +22,28,36,34,41,30,23,22,15,15,12,13,10,9,7,5,0,399,660,1270,2048,2624,4211,3708,3251,4160,4932,4128,3404,3240,3528,3682,400,706,1204,1248,1090,1217,1453,1562,1897,2208,1643,1672,1328,1890,1705,1978,770,851,863,1084,1222,1106,1238,1130,521,614,624,1030,900,984,727,594,2991,2848,2200,1829,1884,1922,1454,1662,883,2066,2988,4042,3315,2774,2742,2370,4814,6504,5816,7380,6910,6239,3930,4724,9805,8193,7666,5540,2945,2226,1597,1280,1170,1478,2223,2056,2269,2924,2931,3330,2058,1918,2099,1473,1715,1617,2900,2281,2291,1905,1502,1170,1076,1190,1244,1081,1089,1065,832,663,367,240,140,72,17 +12,22,23,23,24,21,18,17,10,10,11,10,6,6,4,2,0,594,1050,1522,2054,2863,4668,3868,5409,5532,4846,4735,3862,4505,4469,4123,601,1035,1468,1454,1618,2086,2519,2542,2044,2021,2548,2610,1856,2113,2651,3189,897,911,1191,1372,1219,1312,1031,1186,374,839,1024,1295,1314,1492,1216,1019,4494,3442,3562,2468,1894,2006,2629,2220,1363,2190,2702,3109,3145,3092,3156,2136,4877,5188,5058,6420,6372,5747,5599,3793,11523,10765,7906,5528,3029,2694,1648,799,1194,1842,2212,2013,2180,1838,2126,2814,940,839,1032,1597,1680,1260,1326,1341,2963,2664,2601,1816,1113,1188,953,1282,988,1111,1000,856,444,310,300,192,23 +9,14,20,24,24,18,17,16,8,10,9,8,6,7,5,2,0,596,1071,1452,2697,3182,4567,3824,4139,3958,4447,3474,2683,4140,4780,4352,503,954,1867,1946,2117,2571,2350,2849,2693,3016,3481,3091,3031,3281,3922,4379,1339,1678,1388,1432,1980,1745,1484,1490,689,1354,1339,1933,1110,1238,1065,860,3502,3133,4165,3290,2303,3808,4550,3844,3145,2848,4219,4108,5442,4168,3236,2703,3050,3731,4384,5666,5729,5622,4680,3952,10054,10092,9062,6744,4223,3539,2150,1614,746,1092,1910,1904,1695,1642,1791,2101,652,969,1301,1613,1140,927,1304,1100,2808,2461,3327,2428,1376,1391,1546,1498,1002,1005,744,696,432,322,269,145,30 +6,10,13,18,17,15,11,8,5,7,7,7,4,5,3,2,0,697,1168,1826,3208,3459,3020,3381,3399,3102,3116,3098,2646,3512,4211,3882,648,1355,1790,2082,2075,2135,3236,3505,3769,3258,3834,3442,4333,5467,6054,5722,2236,1846,1774,1699,2686,1950,2130,1748,1168,1535,2304,2638,1425,1356,1112,1046,3636,3160,3869,3356,3744,4985,6594,6552,4739,4962,4626,3747,6336,4852,3138,2490,2499,2838,3122,4971,4799,4368,4304,4617,5997,6986,7648,6645,6982,4708,3338,1999,546,908,1224,1250,1211,1442,1206,1533,575,766,1160,1500,696,836,854,660,1938,2416,3086,2608,2048,2004,1748,1591,1372,990,794,834,496,395,272,132,32 +4,6,7,10,8,9,7,5,2,5,5,5,2,2,2,1,0,623,852,2181,2534,3250,4396,3531,4080,3178,2299,2405,2137,3214,3431,4648,1102,1366,1481,2251,1759,2838,3372,3299,4849,4370,3879,3930,4862,5352,4671,6312,2960,2626,2659,2389,3020,2235,2959,3000,2230,2841,2454,2542,2451,2172,1911,1118,5578,4168,5079,4402,3169,5296,6027,6594,6609,6644,7122,6337,7014,4262,2779,1589,1040,1965,3372,3975,3730,4797,4676,4992,8560,9282,11225,6873,8810,4776,2988,1870,380,700,1044,1012,1062,1178,1094,1228,849,816,1194,1117,624,680,474,433,2460,2914,3690,3500,3134,2714,3066,2364,1456,1407,1231,906,583,348,270,133,35 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,707,934,1136,1384,2044,3728,4995,3934,4426,4102,4439,5422,6795,5362,1548,1988,2547,2784,3407,4210,5592,5653,4980,7057,10152,10058,10568,8668,9227,8728,4383,4847,3789,5211,5562,5214,5688,3842,3057,3194,2938,2488,2096,2120,1825,1204,5747,6870,6643,6222,4058,5836,6007,5984,8932,6996,5525,4163,4003,3431,2709,1109,0,790,1679,1862,2876,4560,6721,8854,8300,9835,9908,9716,8012,5217,3050,1950,394,460,402,610,757,654,709,869,858,775,635,352,180,114,74,34,2577,2426,3123,3717,3119,2754,2215,1674,1771,1382,1015,691,194,148,127,78,30 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,670,823,847,1445,2456,3607,5649,3612,3999,4070,3448,4884,6915,5512,1688,2012,2954,3296,3559,4055,3825,4496,3819,5462,11080,9304,9499,6587,6452,6906,6071,6139,4931,5836,4271,4620,4611,3282,2188,2650,2887,2436,1878,1480,1256,917,5772,5666,5428,4247,4010,5010,5529,7480,11793,10042,7539,6586,4226,3462,2842,1906,780,1590,2120,2802,4117,5384,7517,9616,12257,10588,8846,9824,8876,6271,4078,2259,370,374,392,542,462,526,531,684,602,614,649,378,232,180,106,56,2805,2547,2814,2687,3282,2740,2354,1926,1663,1214,866,624,230,186,124,88,38 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,558,676,856,1775,2516,4172,4974,3438,3462,3552,3807,4396,6052,6042,2442,3036,2899,2971,3160,3254,3210,3345,3653,6036,8392,5561,6014,5190,5336,5228,6046,5424,5340,5899,4560,4404,3843,2498,2087,1853,1980,1997,1894,1315,1058,792,4067,4724,4254,4174,4068,4441,4780,7946,11596,9583,9302,7872,3362,3911,4076,3177,1481,2263,3006,3242,4912,7615,8161,11915,14709,12727,11398,9968,10052,8298,5234,2832,323,377,388,492,363,422,560,504,636,702,603,411,304,276,166,115,2792,1928,1758,1875,2467,2763,2511,2218,1191,889,711,447,260,211,147,97,46 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,492,596,789,1182,1694,3042,3296,2640,3088,4190,4474,4743,4331,4526,2404,2778,2098,2860,2536,2252,2849,3272,3726,4871,7048,6906,6408,6526,6201,7534,5184,4566,3912,4416,4646,3552,3252,2150,1146,1266,1266,1537,1596,1192,840,580,3394,3421,3419,2749,3993,4702,6904,7876,11654,9536,9676,8772,5967,5138,5408,4182,2975,2822,2626,3992,5724,6734,6810,10507,13145,13416,11072,8962,8625,6360,5315,2832,196,264,320,377,289,440,466,558,628,580,460,354,284,204,168,95,2837,1732,1341,1718,2306,2285,2047,1960,816,636,500,336,256,178,104,80,51 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,509,568,735,860,1291,1785,2976,3858,4918,5236,5096,6520,5883,4373,2018,1655,1430,2174,2674,2896,2492,3390,3423,4893,5059,5090,7280,9558,8680,7958,4698,4520,3025,3957,4124,2964,2493,1587,358,506,678,814,976,880,498,316,1729,2406,2974,2864,3910,4665,5843,9834,15647,12326,10347,7602,6610,6505,5708,5420,3977,4273,5690,6861,6332,5485,6759,11743,13963,11303,12048,11376,7496,4690,3839,2634,121,180,304,355,325,371,437,510,488,503,414,358,271,213,122,84,2236,1816,1814,1657,1538,1905,1694,1370,245,182,171,205,220,193,147,95,42 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,455,498,908,1020,1560,1896,2316,3244,4024,5220,5362,4914,4708,3804,2066,2058,1390,1510,1715,1885,1794,2622,2522,3524,4500,4906,5520,7598,6605,6624,3680,3888,2690,2579,2985,2151,2338,1484,224,359,437,602,703,606,389,238,1886,2550,3360,3748,3464,5630,6111,11817,15528,12960,9365,7984,5878,5384,5778,5396,5757,6403,7439,6547,5782,6286,8165,10130,12970,12621,12238,9508,5357,4120,2826,2194,69,156,218,232,294,338,360,396,440,396,263,267,287,194,141,111,1317,1218,1141,1178,1274,1367,1508,996,298,188,194,222,171,156,129,89,64 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,360,418,811,1098,1450,2161,1990,2527,3492,3138,3849,3245,3442,2961,1558,1619,1624,1592,1064,1519,1634,2399,1611,2894,3384,4774,4756,6393,6573,5632,4103,3155,2729,2482,2284,2176,1732,998,143,228,293,448,557,450,264,186,2956,2662,3421,4034,3751,5206,9209,13900,12988,9329,9865,7186,3547,4300,5576,5251,8151,9019,8477,6791,4473,6080,7110,9642,13721,15022,11896,8303,5533,4253,2936,1527,48,96,152,154,215,276,308,373,318,295,214,192,218,188,156,122,837,940,764,789,692,728,862,663,250,191,188,200,131,112,124,95,68 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,272,430,739,797,990,1718,1836,2055,2323,2801,2842,2373,2872,2662,2445,2147,2003,1384,626,1054,1212,1699,1388,2125,2793,3392,5041,5129,4183,5261,4891,3756,2358,2343,2371,1870,1714,982,84,121,167,224,278,189,120,86,3434,3850,4238,3784,3010,4294,6622,11959,15693,12780,10788,6894,3544,4476,6064,6318,7774,8368,9412,8385,4047,5364,6613,7462,11867,11162,7765,6148,3630,2502,2121,1231,25,66,105,113,140,192,245,246,305,220,207,153,200,184,175,132,416,548,406,532,476,552,627,558,318,233,134,140,107,98,110,86,88 +0,116,261,317,450,682,895,998,875,1590,1899,2097,2948,3085,4420,4526,3685,3019,3606,2942,1988,1601,1320,788,0,638,1184,1410,2133,2067,2198,2263,2814,2702,1996,2609,2417,1790,1683,954,0,174,381,629,1157,1898,2180,3517,5869,4059,3380,3235,4578,4013,4291,4918,6032,3985,2957,1920,1043,748,727,329,4625,3083,2643,3428,3453,3827,5719,5676,8245,9591,14768,16092,13422,13757,10716,9717,7752,8614,11411,8998,9503,7742,8101,9508,9234,7012,7232,4601,1299,1109,888,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,48,68,73,69,80,106,126 +0,291,604,1195,1731,2548,2697,3309,2194,2538,2286,2866,3407,3900,5184,4964,3769,3510,2357,2459,1614,1176,1014,499,0,370,976,1106,1632,2361,1795,1894,3338,3134,2446,3336,2742,2810,2360,2013,980,992,1243,1476,1895,2178,2123,3166,4687,4394,5320,4803,4822,5117,4564,4372,4625,3735,2978,2138,1378,1098,814,400,5426,4224,3006,3950,3538,4758,5702,7204,7184,8782,13100,11630,10079,9230,8748,8044,9347,10594,12315,8796,11294,7967,8380,8876,10052,9298,7619,5606,1327,1040,867,498,0,7,13,18,20,26,26,32,7,62,106,153,209,208,186,118,511,450,407,332,288,237,218,121,33,55,54,83,58,76,62,73,106 +0,476,984,2211,3759,3823,4472,6302,3610,3512,3316,3140,4399,4920,5580,5763,3028,2333,2143,1569,1137,929,654,272,0,239,511,726,1843,1646,1860,1777,3721,3011,3230,4410,3219,3021,3852,3264,1645,2107,2086,2021,2090,2138,2547,4322,5033,6257,5634,5941,5527,5750,4410,3962,3781,3546,2660,2266,1461,1381,1147,515,6181,4736,4740,4981,4297,5516,4962,6494,7315,10978,13782,9591,6385,6860,8080,7406,12581,9282,9398,9321,10842,9752,7414,8037,11312,7357,6840,5403,1410,1590,1254,582,0,13,22,29,36,43,56,64,13,108,201,340,452,413,310,231,1213,876,748,671,710,450,386,277,73,90,82,82,67,58,50,68,90 +0,1074,2166,3530,4957,5726,7322,7554,5761,5456,3470,4102,3886,5232,6703,6458,2370,1640,2104,1743,1208,853,538,248,0,198,421,761,1403,1180,1491,1198,4664,4085,3992,5024,5277,5163,4249,4724,1905,2401,2527,2888,3630,3228,2143,3265,5341,6834,7645,7042,7987,7578,6156,6227,3064,2510,2429,2558,1673,1368,1176,646,5486,5836,6118,6610,4182,5138,4700,5628,8470,10718,12160,9638,5967,6642,6979,6996,10326,9272,11636,8682,9845,7033,7231,6968,8476,7952,5147,3934,2232,1802,1550,615,0,16,35,52,62,50,68,94,18,146,299,544,684,654,628,446,1480,930,969,896,975,810,505,326,126,122,105,94,89,75,68,62,67 +0,1286,2836,5394,7114,7048,6471,7346,9677,10258,8786,6289,4142,8004,9457,11575,1722,1847,1385,1481,1102,779,669,351,0,182,365,540,590,739,832,703,4416,3546,4294,5777,6113,6015,4869,4924,2423,3032,4262,5803,5510,3699,3288,2266,7714,8795,7818,7726,9646,7631,8276,8410,2203,1834,1631,2221,2527,1587,1122,493,7125,5888,7278,7550,5642,5985,6826,6539,6850,9764,9550,9081,7542,9473,9080,8781,12858,10539,13350,12578,9329,7239,3803,3691,9867,10387,7531,4928,2315,1922,1409,741,0,18,34,60,80,84,116,161,24,292,557,619,834,779,657,658,1937,1374,1113,976,1221,1069,677,370,183,196,182,142,124,104,90,77,43 +0,1806,3622,5903,10167,10500,6411,8952,7944,10178,7962,8665,7292,8407,11341,10960,1266,1330,1004,852,860,626,572,263,0,120,267,352,392,524,691,601,5168,5257,5658,7179,9671,7582,5668,4580,4146,4840,5327,6844,5610,4224,4208,5368,7251,8984,9740,11170,6906,8732,7783,5710,2976,2202,1965,2776,3310,1740,1188,651,5772,5940,7291,5786,5238,4532,5526,5999,5470,7692,7049,6736,6352,8283,9342,9356,13630,11344,13735,10938,7698,7314,6327,5880,9506,8542,7091,4696,1499,1462,945,542,0,29,46,103,101,162,187,174,61,334,492,750,1280,1258,1353,1026,2168,2191,1650,1333,1630,1124,631,453,362,332,302,192,182,157,120,94,68 +0,1516,3760,6014,10074,9941,9338,10699,8388,7166,9368,11918,8461,10152,9576,8185,999,976,720,480,693,528,391,233,0,73,148,214,291,352,406,451,6294,6570,6483,8990,11838,10236,7676,5418,5318,6702,7536,8022,5924,4784,5855,6393,9524,8862,11957,9648,7154,6964,8812,6085,2901,2690,3036,2707,3176,2094,1434,850,5214,5279,6214,4522,4763,4391,5439,6630,5210,5457,6239,3739,4374,5346,8380,10955,10986,11673,11992,11797,9107,9061,7144,7324,8239,8356,6138,3101,1332,930,802,343,0,33,72,106,158,214,226,200,108,264,442,755,1440,1388,1676,1746,3284,2845,2508,1920,2260,1407,852,717,580,497,392,323,213,184,204,151,114 +0,1640,3751,6105,9238,8798,8224,8734,11050,7820,11994,13434,12825,15172,15401,12548,478,456,386,230,331,250,161,100,0,40,65,105,163,200,164,207,8098,8338,9082,11791,15636,10902,8923,8370,7895,9890,12559,10056,9612,8825,9906,8224,8332,10552,10933,13266,8561,8424,8578,7122,4576,3878,3591,3870,3630,2682,1279,771,4718,5612,4834,4178,4402,4928,5058,5307,3933,4517,3877,3234,3316,4918,7565,8618,8696,9860,8810,10822,10480,7896,6423,6104,7054,6007,5920,3634,1588,1000,1022,489,0,54,83,150,187,201,256,235,192,437,514,958,1309,1490,1504,1722,4035,2942,2332,1901,1976,1844,1580,1111,670,615,532,416,260,289,257,196,149 +0,3256,6260,6599,9768,11021,12085,11466,11156,12083,18326,17080,23050,24425,19852,15576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10965,9155,10008,6641,4684,5036,4393,6660,9451,14505,17460,19095,18058,18133,14410,14301,9966,9531,5925,7204,8056,8206,6763,5508,6214,5270,4832,3567,1719,976,702,383,4547,4660,3919,6408,7118,5368,5005,5128,4518,4017,4071,3433,3680,6897,7938,9215,9968,7684,8111,6966,4868,6155,6783,5110,5337,3756,2380,2250,2436,1922,779,376,0,36,64,142,200,210,175,178,222,358,552,670,769,897,1453,1684,3489,3187,2020,2391,2038,2012,1539,1306,746,446,354,380,421,417,366,316,168 +0,2980,6315,6998,9333,10246,9369,7998,12656,12938,12847,15420,23418,19779,18350,15362,486,580,552,759,649,484,277,148,0,70,109,140,294,452,761,1162,9932,10312,9819,9657,7235,7337,11512,12516,9384,12921,15687,17920,19456,17202,14404,11940,7493,6966,5922,6952,7778,5398,6743,5464,6625,6066,5001,3324,1444,1207,985,742,3513,3496,3626,6107,5484,4204,3724,3993,2634,2798,2981,3006,2638,5271,6501,8218,10457,8451,6642,6796,5448,4864,6328,5448,3706,2776,1660,1834,1947,1198,689,270,327,360,389,529,498,372,242,223,516,491,627,758,1340,1112,1584,1632,3076,2657,2872,2815,3290,2886,2340,1370,582,584,452,542,373,408,449,362,209 +0,2961,5592,6580,9159,7674,6882,7908,15945,15972,10821,13732,17225,17969,19528,16569,1185,1265,1126,1268,1347,926,673,279,0,113,229,328,500,879,1562,2207,11694,12148,11721,14487,10614,15672,15912,15921,11066,12232,14869,20020,15632,16534,11984,9548,6581,5788,6756,5987,5474,4541,4868,6088,6624,4746,4916,2734,1685,1298,1210,968,2191,3048,3164,4557,3125,3126,2692,4023,1823,2208,3080,4025,2557,3727,6030,5933,8825,9952,8485,5687,4497,4928,5102,3699,2577,2115,1296,1371,895,579,474,284,669,637,818,772,801,692,380,318,699,788,817,908,1517,2016,1847,2012,2521,2960,3304,3257,3867,3623,2442,1601,619,565,663,561,450,579,522,404,321 +0,2260,4149,4772,7789,5676,5162,6372,16590,12238,12320,12356,11073,13326,13158,16564,1803,1502,1659,1598,1856,1198,918,466,0,206,485,562,778,1084,2138,2342,13384,12553,11887,16237,12170,15930,24225,21502,10758,11445,13383,16906,13464,12844,8448,6296,8574,6774,7272,8803,7318,6497,4898,5251,5721,5050,5278,3914,2439,2186,1319,1209,2396,3012,2914,3758,3750,2923,3085,2843,1677,1880,2524,3346,2247,3496,4446,7554,5553,6877,5604,5216,4270,5072,4818,3275,1836,1450,872,877,591,442,340,149,1405,1571,1603,1306,1146,820,423,334,990,1050,1069,1166,1809,1955,1662,2361,3154,3044,3496,3554,4815,3386,2573,1584,792,914,743,849,612,558,644,472,421 +0,866,1725,3156,4130,5317,7237,6160,12960,15431,13558,12978,10446,13550,18969,19057,2917,2148,2386,2454,2257,1733,941,520,0,218,484,782,986,1328,1933,2849,13966,17104,21791,22164,18629,28355,29378,24853,9748,9966,12257,12099,12954,9208,6909,4594,9464,11671,12298,11166,9883,7509,7035,6426,4738,5897,5209,3747,3124,2762,3019,2171,2023,2202,2976,3350,3158,2388,2805,2626,1246,1638,2391,2004,2510,3083,3383,5309,4087,5560,5256,4505,3642,2992,3254,2756,1040,1026,746,558,274,190,132,75,1884,1768,1612,1353,1196,804,725,518,1475,1878,1800,1882,1594,1677,1808,2652,4195,4462,3306,3720,4224,4004,2870,1305,736,768,760,947,911,810,686,532,488 +0,902,2290,3036,3584,4754,6292,5960,11695,13339,10225,11130,8832,13907,16922,15335,4338,3912,3316,3000,3290,2499,2057,933,0,634,1183,1666,1536,2178,2689,3916,14975,15613,13342,16126,14255,18536,19790,24112,15016,14108,8513,9428,7886,6833,6238,4052,8744,11433,9567,9970,9146,7553,6629,5751,4122,3862,3316,3138,3304,3042,3310,2876,1490,2078,2620,2798,1798,1641,2240,2132,911,1376,1937,2278,2079,2608,3228,4787,3782,4078,3758,3128,2535,2726,2067,1904,853,696,488,310,214,148,81,40,1910,1846,2080,1725,914,914,800,742,1901,1620,1418,1741,1406,1684,2036,2516,2842,3726,3674,4310,3252,3014,2392,1458,708,894,1161,914,1043,742,646,676,562 +0,1231,2358,3724,3176,4183,4802,4701,7278,8275,9609,10943,4389,9030,14441,15912,6478,6021,4324,4104,5348,3974,2792,1167,0,845,1648,2062,2328,2888,4455,3779,12607,12678,11079,8369,15340,15676,19166,17386,18171,11333,8736,8662,5670,5488,4034,4037,9113,8291,11040,9474,7513,5110,4933,4423,2199,2201,2432,2820,3716,3790,3218,2434,1253,1375,1840,2040,1183,1078,1240,1102,442,1015,1336,1679,1181,1356,2060,3381,2816,2432,1954,1862,2071,1602,1648,1827,452,402,284,233,186,144,57,24,1572,1610,1931,1863,905,866,1018,1037,1976,1380,1083,1366,1440,2085,2209,2745,2686,3998,4048,5139,3720,2770,1646,1558,880,955,1371,1106,856,790,584,540,556 +0,1037,1930,2996,2600,3436,4523,4440,5826,7030,7543,8123,2930,7059,10448,11078,8995,6360,6138,5025,6106,3489,2787,1408,0,1057,2081,2576,2835,5287,6630,6198,11028,10424,7012,7236,11094,11853,14148,19089,18138,14964,11085,8099,4824,5390,4898,7292,12051,10021,8167,6641,6496,5205,3786,3285,1736,1819,2226,2828,2758,3620,3913,2694,681,837,772,841,632,534,582,570,207,482,774,1000,648,737,1036,1640,1642,1264,970,973,1143,770,967,887,261,176,166,112,78,72,32,16,1959,1674,2111,1484,1294,1100,1092,1070,1628,1169,1234,1232,1606,1540,2288,2222,2942,3300,3625,4036,3174,3334,1886,1738,1280,1642,1244,978,1163,852,932,675,605 +0,512,963,1020,1542,1761,2660,5156,6537,5926,5827,7863,9725,8499,7827,8978,9690,5739,4123,3792,3340,3774,4400,3821,3267,2574,1794,1627,2199,3390,5357,6418,6516,9205,12142,18789,19231,16438,20768,15706,15838,18722,15901,20408,18604,14541,13965,11326,12938,10773,7851,7594,5244,3688,3961,3934,2978,3119,3564,4574,4813,4070,4610,4246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,2119,1502,2186,2217,2111,1994,2759,3434,3816,3970,3270,3065,2386,2809,3273,2838,2856,1982,1337,970,727,321,176,0,16,35,47,77,160,297,460,473 +0,524,794,1226,1249,2368,3706,5250,5076,4196,4870,6760,7166,7454,7115,7272,9492,5832,3498,3424,2457,3256,4409,3423,2912,2226,1527,1577,2328,3060,3744,4235,7068,6958,9970,12752,20963,20048,15946,19362,16740,15262,12845,13224,15553,16320,13476,13148,12246,11626,8372,7254,6811,5622,5118,3830,5043,4238,5199,5342,4269,4462,6226,5466,466,398,382,521,720,519,444,636,1107,924,707,789,820,703,1031,766,267,302,380,375,612,526,391,269,44,120,139,187,422,254,163,105,2828,2290,2056,1896,2380,2290,2592,3220,2904,3335,3176,3148,2746,2508,2943,2850,2373,2338,2313,1510,1262,1018,435,265,10,32,37,70,84,166,246,454,470 +0,419,902,1472,1186,3100,4490,5265,3064,3430,4492,5894,7418,5408,4242,4475,6845,5296,3674,3733,2272,2962,3062,2508,2174,1495,1453,1396,1766,2218,2500,3552,5443,7156,7162,9344,21858,23356,18557,17948,13372,12884,11911,15311,16054,14664,18376,20880,14206,13493,10626,8509,6569,7442,6845,6374,7111,7332,5554,5404,5675,5174,6684,5557,816,790,750,1155,1201,1066,904,1526,2031,1625,1702,1496,1716,1453,1812,1182,551,682,695,972,1056,1044,749,544,94,222,342,318,725,458,329,202,2225,2048,2018,1600,2823,2703,2666,2744,2063,2256,1780,2494,3015,3356,2660,2085,2650,2256,2490,2350,1470,1223,617,286,15,35,54,78,122,211,229,297,424 +0,339,857,1286,1386,2964,3465,4674,2205,2691,4820,5778,6035,5806,4151,4807,4393,3486,2295,2639,1530,2272,2865,2182,1852,1336,1380,1146,1348,1343,1323,2105,2746,5252,6718,9282,14474,18745,15886,13487,9411,9234,9728,11303,11658,12902,19729,18292,18077,15318,11379,7587,5982,6842,6726,5946,9573,8033,9156,7506,5340,5726,4808,5670,1187,1142,880,1596,1646,1794,2100,2331,2976,2782,2084,1846,2773,2308,2227,1521,921,903,1107,1268,1520,1337,832,583,141,282,520,644,747,635,482,326,2227,1962,1908,2070,2412,2751,2332,3537,1268,1160,1424,1813,1793,2126,2488,1760,3967,3650,3385,2159,1684,1130,746,371,26,50,70,98,141,202,202,260,421 +0,333,747,1344,1597,2083,2290,3782,904,1732,2430,5060,6264,7379,6183,6902,2806,3053,2626,2446,1508,1412,1168,1355,1141,909,606,594,868,813,640,729,1382,4305,6147,9514,12708,12980,11367,8688,4676,5536,5779,8552,11742,14784,15052,15153,21841,18004,18298,12442,4992,5270,6083,7175,11618,10092,9643,8109,7524,5300,4717,5098,1311,1659,2236,1834,2318,2060,2061,3238,3535,4111,3676,3743,3011,2678,1495,1316,1022,1287,1346,1774,1819,1262,1082,632,228,452,706,774,1104,734,670,487,1867,1589,1811,1861,1878,2755,2714,2856,711,996,1389,1398,1292,1334,1331,1794,4822,3138,1981,1478,1436,1230,881,426,35,59,73,114,130,230,285,353,347 +0,544,812,1580,1750,2152,2116,4778,989,2134,2396,4040,4508,5560,6216,5496,2026,2190,2516,3002,1356,1568,1190,1564,1564,1492,1108,815,763,709,432,512,1080,3308,4846,7068,11376,12447,8282,8628,7108,8035,7518,8874,10466,12264,15040,13260,22648,16333,19434,14186,7047,6586,7093,8110,11313,11011,11445,8525,7012,6539,5548,5508,1454,1814,1651,2126,2546,2927,2396,3362,3194,4521,3895,4841,4462,3516,2168,2192,1406,1260,1720,1988,2587,2498,1537,1483,887,1025,1361,1232,2215,1644,1348,1258,1752,1224,1479,1668,2143,2579,2109,2512,597,954,1132,1088,1235,970,991,1326,3730,2588,1618,1469,1261,1052,677,380,45,60,82,123,98,160,184,244,281 +0,596,1039,1541,1629,2327,2700,4560,1343,1598,2496,2404,4617,4132,5347,4688,2119,2098,2840,3347,1615,1872,1506,1485,1953,1903,1455,1195,765,480,374,402,497,2527,5052,6382,9432,9012,9008,9703,7309,8440,9646,9741,8621,8409,12228,9871,22275,15791,15616,12736,9095,9732,8309,8188,12754,11498,12170,9132,4332,5110,5538,4563,1152,1536,1632,1869,2139,2368,3075,3500,4028,4800,5142,5816,5963,4821,3506,3004,2194,2125,1888,1658,3614,2974,2466,2393,1484,1788,1902,1895,3144,2269,2069,1654,1773,1540,1187,1446,1949,1781,2304,2950,602,752,1014,1071,897,1083,1141,875,3992,2582,1514,1235,1057,997,612,351,52,62,64,109,87,118,149,151,220 +0,435,789,1253,1861,1890,1669,3014,2192,2112,2376,2280,3204,3410,4777,4246,2420,2750,2981,2630,2498,2026,1541,1552,1708,1494,1586,933,632,426,322,245,256,1708,4026,5157,7777,8959,8058,8877,10197,10486,9268,11212,9202,10173,8846,8670,15296,13267,12699,11152,11485,10810,10355,10960,10974,11659,12937,9974,5807,5652,4781,5257,1502,1670,1694,2236,2449,3348,3974,4195,3829,4963,5378,5794,4837,4848,4877,3733,2915,2895,3963,3226,3285,3432,2612,2006,2171,2534,2952,2683,2981,2442,1748,1886,1407,1124,1352,1526,1960,1678,1729,1664,690,832,948,840,706,690,649,540,3327,2919,2126,1478,1001,784,512,300,62,58,48,74,79,68,78,80,102 +0,507,1169,1865,1938,1968,2807,2193,2440,2343,3058,3017,3973,3606,2542,2614,3471,3200,3265,2984,3199,2898,2518,2094,2162,2089,1536,978,304,218,113,61,0,1226,2299,3747,5810,6007,8917,10266,9940,8616,8059,13685,15810,10955,11081,7902,14209,12292,15595,14018,10829,11277,15009,16268,13081,10678,10264,5546,3551,4581,5207,4119,1568,1961,1790,2378,3446,3720,4564,4815,4154,5168,5389,5284,4311,5040,4812,4073,4044,4054,5782,4795,4665,3187,2584,2763,2244,1921,994,798,527,1189,1611,1394,1035,1180,981,1338,1323,1010,742,600,738,952,862,630,708,821,744,667,4099,5123,5168,5070,3309,2760,2010,866,71,64,69,46,27,20,10,6,0 +0,404,1044,1146,1402,1822,2310,2048,2162,2160,3168,2731,3448,2988,2125,2484,3298,3030,3342,3200,2348,2988,2396,2017,2694,2320,1914,1185,503,394,424,374,56,1048,1814,2549,5650,5541,7260,8708,8776,7428,7242,12641,12336,11642,8954,6073,14570,10680,10064,9972,10679,13128,11398,13478,12354,9314,8261,6314,3215,4380,3721,3887,1073,1733,1830,2514,2952,2918,4015,3642,3758,4595,5249,5546,3885,4618,3993,3284,4127,4140,4627,4258,5964,4708,2994,2440,2798,2414,1568,1232,1581,1912,2516,2248,865,1023,918,996,1310,961,654,801,962,771,999,787,806,828,538,564,3933,4645,4668,4146,2869,2302,1741,818,65,64,63,38,32,28,24,16,10 +0,320,626,956,1252,1393,1276,1119,1975,1717,2247,2414,2070,1702,2069,2494,4030,3041,2699,2384,2527,1986,2048,1908,3617,3015,1914,1344,718,558,666,677,123,652,1127,2053,4976,6156,5304,5701,5920,6606,8566,9433,9689,9407,9743,6376,10227,9462,8899,6806,9843,11813,10530,8014,8860,8052,8304,6498,2318,2484,3202,3466,954,1240,1826,2505,2351,2003,2418,2388,3383,4758,4762,4472,2822,3565,4646,4373,2987,3303,4506,4196,5716,5611,3796,2731,3995,2730,1940,2044,2351,2284,3230,3886,956,1086,894,799,972,899,841,913,1067,892,810,616,737,577,450,511,4508,4340,2882,2746,3043,2078,1242,659,58,42,42,43,27,30,30,22,16 +0,191,324,540,801,940,874,726,1138,1352,1856,2302,1834,2208,2449,2218,2978,2154,2429,2001,1820,1637,1561,1384,3346,2868,1981,1882,1087,973,926,764,245,784,1051,1648,4182,4180,4283,4900,6645,6928,7720,7872,9544,7909,7433,5560,11291,9334,7370,6375,6768,6992,8024,6948,8289,7122,8486,5770,2492,2546,2172,2873,1248,1624,1954,2346,2819,2008,1577,1920,2835,4530,4090,4752,3483,3976,4615,3893,2935,4107,3757,3730,5163,4019,3674,2782,4597,3364,2513,2458,3504,3028,3310,3418,949,878,579,682,806,807,804,869,981,993,916,723,766,562,352,354,3758,3770,2815,2948,2431,1815,856,533,47,42,36,40,38,38,46,30,20 +0,79,171,240,255,292,389,345,850,1138,1114,1414,1936,2000,2554,2445,2436,2580,2754,2241,1937,2010,1567,1432,3783,3397,2448,2425,1884,2184,1817,1157,295,970,1384,2405,3124,3048,3170,4645,7868,7322,10098,9214,7192,6359,3846,2465,9735,6970,5984,4640,3256,3384,3163,4553,6998,7471,5750,4170,3056,3448,3719,3529,1151,1554,2453,2928,2711,2371,1511,1198,3070,3054,3714,4050,4370,3543,3548,4603,2720,2729,3149,3161,3562,2868,1835,2152,5038,4482,2896,3838,3528,2488,2392,3412,766,934,835,756,1004,1054,1259,1328,1040,831,872,856,768,482,427,344,3175,2838,2471,2716,2128,1572,933,510,20,24,25,36,38,41,34,27,28 +0,68,131,198,187,262,326,264,592,738,711,968,1258,1508,1431,1848,1971,1984,2488,2754,1952,1942,1601,1452,4326,3648,2732,2781,1828,1854,1397,1760,830,1316,1599,2119,2682,2275,2770,3768,7943,6152,6646,6424,6799,5507,3581,2486,6209,4990,5406,3410,2305,2433,3224,3618,5266,5693,4015,3483,3040,3074,3722,2794,1229,1798,2446,2293,2374,2370,1682,1178,2608,3478,4791,4382,4150,2930,3542,3700,2098,2936,3481,5108,4349,3185,2763,2556,3754,3658,3139,3538,4330,3544,2876,2844,1229,1082,896,1105,1488,1428,1605,1602,970,794,816,858,973,848,724,718,2776,2376,2180,2163,2034,1167,800,524,45,42,38,42,35,35,35,34,30 +0,47,78,118,178,220,288,298,525,582,534,627,1099,806,744,780,1706,2379,2282,2239,1409,1994,2006,1961,3693,3590,3428,2640,2212,1855,1556,1641,1255,1423,2134,2033,1793,2711,2996,5036,6479,7418,5998,4239,6079,4615,2852,1943,3992,3446,3332,2619,2322,2401,2407,3157,5465,3949,3228,3591,2938,3166,3285,3474,1141,1379,2092,2159,3204,2226,1690,1295,2540,3482,4284,5305,4110,3710,3309,3946,2164,3373,4278,5984,4151,3075,3276,3538,3478,3366,2917,2266,4022,4190,3242,3173,1512,1105,1186,1603,1670,1836,1614,1232,1096,970,924,642,901,792,869,899,2568,2068,1932,1738,1855,1158,706,366,78,70,52,56,40,47,38,40,42 +0,24,41,60,110,148,129,147,292,274,243,354,485,462,488,490,772,1336,1717,2370,1820,2035,2640,2438,3592,3674,3170,3462,2566,2520,2099,2161,1834,2115,2038,2075,1831,2486,2806,4394,5806,5894,4012,3297,5184,3413,2376,1206,2484,2120,1899,1618,1452,1797,1841,2751,3189,3464,2985,3370,2961,2935,2358,2138,1391,1631,1657,2004,2742,2050,1757,1648,2040,3159,4512,4696,3971,4106,2700,3274,2428,3340,4367,4279,4794,4334,3569,4248,4647,3394,2962,3526,5122,3845,2922,2560,1839,1476,1379,1840,1928,1635,2114,1650,855,862,1018,734,1107,970,1145,1112,1906,1482,1337,1226,1508,978,814,396,101,86,82,68,47,74,76,86,72 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,423,696,757,628,777,890,908,662,488,469,323,394,614,780,726,692,584,459,543,351,209,97,0,530,1106,1735,2412,2314,2807,3674,4523,5596,6067,5465,6175,6127,5072,4405,3146,2375,2546,1597,901,1383,1650,1694,1646,2044,2244,2249,1605,1317,1524,869,604,474,273,312,246,172,90,38,0,118,244,512,613,723,1099,1245,1190,1880,2050,1834,1904,2018,1911,1916,1412,1358,1411,1220,1225,744,371,163,0,6,10,20,27,33,46,63,86,98,133,128,131,112,134,109,108,153,150,140,131,121,156,138,103 +4,5,4,5,5,7,6,6,4,5,4,3,2,2,2,1,0,180,332,582,802,700,768,707,778,719,522,443,336,482,832,804,496,495,526,513,446,384,247,198,47,454,944,1186,1770,2097,2560,3896,4165,5373,5550,4736,5320,5614,4575,4094,2386,2550,2228,1380,976,1077,1082,1308,1612,1917,1798,1747,1585,1466,1307,774,800,592,381,294,213,153,81,40,0,187,436,623,772,889,1439,1458,919,1373,1640,1569,1579,1736,1996,1827,1511,1638,1664,1433,1517,972,568,274,10,28,41,52,61,108,124,138,86,110,130,118,120,96,120,98,136,161,156,170,120,137,141,114,86 +6,7,6,7,9,10,10,10,6,7,6,5,3,4,3,2,0,181,307,394,707,598,593,549,426,550,497,513,462,713,810,904,453,376,452,468,420,293,302,288,113,442,830,1122,1884,2031,2394,3083,3268,3570,3638,3802,3860,3604,4640,3776,2437,2282,1920,1077,758,835,944,1135,1113,1426,1572,991,1222,1116,884,606,921,780,559,343,182,134,62,31,0,316,620,985,726,1005,1332,2257,932,959,1356,1784,1454,1478,1650,1868,1801,1953,1510,1279,1486,1040,624,344,15,43,78,104,81,152,213,182,90,88,104,107,93,96,66,70,169,140,166,214,128,120,116,109,71 +8,8,10,11,14,12,13,12,10,12,8,7,5,5,4,2,0,146,269,340,454,458,496,475,444,651,688,812,711,814,759,848,489,476,370,470,516,443,325,308,156,416,734,1036,1130,1823,2036,2692,3353,4262,5370,4913,5088,4192,4068,3182,1730,1564,1368,803,484,528,645,856,778,1179,999,879,974,898,631,600,867,650,444,311,162,112,47,27,0,383,786,1008,987,1399,2037,2447,713,994,1249,1393,1296,1244,1666,1972,1972,1730,1342,1224,973,880,573,294,30,76,100,124,153,206,253,270,84,81,87,101,101,87,60,65,166,152,160,172,123,124,110,78,58 +8,12,11,17,16,13,13,10,9,10,10,10,5,5,3,2,0,104,230,369,408,328,402,310,478,495,530,748,810,917,1061,1102,629,707,803,733,526,621,602,513,162,360,563,736,900,1430,1490,2336,3885,5742,6301,6118,5339,3169,2449,1859,669,560,311,268,206,382,478,604,752,580,622,624,702,756,718,484,772,666,374,284,141,111,92,39,0,230,534,904,1386,1810,2239,2060,830,710,744,1017,1063,2101,2445,2985,2504,2191,1564,1453,943,607,348,245,45,72,109,142,190,193,238,304,73,97,100,104,74,69,59,53,174,165,194,172,160,123,89,62,55 +14,17,24,26,21,22,22,16,14,13,12,12,7,7,5,3,0,95,220,304,278,268,365,290,522,406,384,553,572,854,1146,978,861,756,812,622,523,501,409,380,353,492,700,716,1081,1288,1342,2082,3683,4201,4364,4333,4608,3270,1739,1302,510,430,358,406,232,364,578,626,739,850,888,954,983,894,891,560,569,427,323,256,111,91,84,42,0,251,592,840,1352,1618,2067,2332,1367,1207,902,1016,1084,1825,2474,2694,2302,2004,1685,1274,852,680,461,296,52,68,108,193,229,309,283,430,79,110,107,120,128,112,91,80,186,170,222,202,210,150,143,100,56 +17,24,28,31,26,28,24,17,14,14,10,12,7,7,6,4,0,83,151,226,187,212,256,216,442,421,396,414,465,590,905,1278,922,890,677,573,352,387,396,451,520,524,674,800,962,915,1230,1430,3237,3745,3415,4214,2807,2225,1584,919,346,460,454,411,350,488,505,494,957,1042,977,1041,1151,932,874,631,380,288,234,185,70,56,49,21,0,224,500,608,920,1263,1748,2387,1939,1704,1342,1141,1491,2104,2965,3273,3031,3004,1994,1418,1047,896,470,305,59,81,132,237,292,305,420,462,109,119,138,134,236,194,154,136,191,190,209,219,224,169,178,141,70 +29,29,23,33,34,25,23,20,16,17,15,14,9,10,8,5,0,55,104,134,122,213,245,270,452,388,385,382,298,584,716,1038,883,817,549,513,363,366,341,524,731,693,672,692,735,758,812,747,5831,4658,3550,3576,2451,1858,1009,651,156,357,433,596,542,535,547,678,1325,1450,1485,1245,1090,1084,989,696,354,282,191,152,64,61,58,24,0,237,475,614,1116,1400,2072,2272,1709,2012,2152,1671,1780,2228,2538,3410,2463,2758,2306,1804,1425,854,564,298,63,114,162,248,324,273,312,404,205,226,195,226,264,232,182,160,186,225,226,237,190,177,210,169,86 +35,28,19,15,9,10,12,14,12,10,7,6,3,4,3,2,0,23,51,72,103,162,272,344,368,472,571,772,849,909,1084,926,780,760,536,782,800,874,779,806,798,615,664,653,488,367,340,156,6510,6577,4899,4410,5365,5004,3515,1646,0,200,344,491,588,725,970,1116,1391,1198,1009,673,419,578,602,529,440,343,238,222,228,185,104,56,0,158,341,581,757,1176,1937,1770,2268,3110,4975,4221,5087,4398,5530,4239,2111,1528,1146,1168,1028,778,546,255,72,95,121,199,246,253,261,270,242,164,122,131,109,122,125,163,148,131,121,137,148,129,170,156,131 +53,42,34,28,20,16,20,20,13,13,12,11,8,10,7,5,0,26,48,74,100,188,269,322,299,447,484,510,880,753,1052,990,732,634,610,677,693,678,703,778,663,1016,1358,1194,1553,1416,1298,1174,4308,4644,3643,4780,5487,3584,3155,1523,380,396,360,418,560,642,816,771,1771,1397,1236,866,447,494,555,432,429,313,211,211,192,142,75,44,0,109,280,461,505,904,1310,1580,1766,3262,3918,4502,4221,4516,5358,4686,1760,1288,1438,1325,1146,864,628,332,152,160,112,170,328,344,350,462,289,233,208,177,206,170,186,154,117,104,136,130,91,128,139,123,91 +67,57,45,39,26,23,22,20,15,15,16,12,11,10,8,5,0,27,52,65,123,161,199,252,234,310,372,449,731,605,722,592,539,541,628,728,827,636,594,787,589,1100,1752,2253,2425,2022,2120,1920,3815,4025,3574,5548,4544,3982,2196,1118,636,558,441,462,606,556,735,753,1861,1361,1397,1125,608,495,530,313,349,237,204,159,117,86,63,30,0,124,224,381,356,615,1017,1356,1935,2374,3884,3822,5305,4266,4429,4187,1684,1283,1438,1094,1232,885,600,302,183,190,154,198,375,461,478,596,316,271,262,187,270,262,194,140,74,110,116,142,74,91,128,124,82 +78,72,44,47,39,34,31,23,25,29,24,22,15,14,12,7,0,24,48,69,118,177,176,211,218,245,284,308,524,454,436,466,427,390,509,553,734,586,498,682,762,1146,1684,2877,2961,2652,2728,2268,3524,4056,3379,5402,5390,3620,2490,1272,1134,1047,846,782,591,630,783,699,2221,1635,1320,1017,821,724,600,471,246,194,150,120,91,66,54,24,0,87,148,296,354,538,755,954,2673,2370,2918,3578,4276,3758,4897,3844,1432,1462,1257,1127,863,734,575,306,206,191,212,228,320,459,428,608,612,459,455,308,226,236,188,116,52,80,73,99,70,80,90,94,92 +63,57,35,40,42,31,26,18,32,33,26,27,22,18,15,8,0,27,62,61,87,95,145,176,151,133,167,198,234,266,326,398,190,271,278,325,470,652,786,933,925,1465,2622,3336,3482,3646,4263,3382,2240,2305,3447,4786,5276,4304,2921,1920,1740,1624,1263,1128,783,792,840,591,2067,1480,1132,932,1154,1035,893,670,90,108,110,88,70,57,43,20,0,83,147,198,243,367,405,632,2927,2553,1915,2547,2996,3149,2696,3609,1742,1652,1062,853,846,529,327,227,213,198,243,323,349,606,676,961,778,466,341,354,284,207,107,82,21,32,38,58,86,85,61,81,97 +80,66,60,64,66,48,48,31,38,28,21,23,26,21,17,9,0,22,39,48,58,64,108,100,118,134,180,245,253,285,446,440,153,234,221,348,457,720,655,1014,1907,2570,2779,3693,3254,3248,3515,3987,3344,3654,4607,5060,6642,5926,4224,2616,1963,1652,1367,1011,868,726,716,541,2173,1790,1340,1318,872,954,912,458,79,83,94,88,49,50,35,18,0,141,234,628,674,789,813,947,1996,2592,1970,3008,2779,3458,4010,4775,1869,1542,1039,946,757,606,320,187,239,193,253,232,356,607,518,717,562,437,336,313,359,248,171,94,20,27,28,48,54,65,43,64,61 +76,72,69,88,68,69,60,47,38,34,22,25,23,16,12,7,0,12,20,31,30,48,54,56,66,110,159,225,314,493,508,522,119,193,253,350,403,546,836,924,2484,3224,3780,4239,4579,5369,4389,4340,6074,4941,4955,6102,6025,7073,5813,3943,1887,1741,1035,1078,718,757,775,495,2085,2144,1854,1974,969,681,644,399,63,64,54,43,43,43,28,17,0,202,394,802,1158,1124,1086,1306,1998,2232,2766,3176,3432,4139,5101,4858,1376,1102,887,791,425,386,354,178,298,259,184,157,256,384,590,804,528,482,316,254,388,234,191,105,14,19,18,24,38,41,30,42,45 +89,95,88,96,76,74,67,59,47,46,34,32,26,23,12,8,0,7,10,17,16,26,24,30,32,98,142,234,373,482,600,473,58,154,239,410,584,670,882,1521,2768,4249,4857,6537,7579,7624,5072,6216,5885,5894,5558,7161,7586,6888,6060,4248,3117,1944,1406,1234,811,808,732,468,2187,1727,1449,1354,897,688,441,270,30,34,28,20,20,20,17,10,0,284,617,1038,1153,1558,1528,1398,1744,1995,2970,2910,3336,4361,4184,4898,870,732,555,572,486,454,300,242,210,192,182,184,221,333,451,666,652,593,557,439,499,316,181,86,8,9,9,14,21,21,16,23,22 +77,78,82,72,55,34,22,20,13,13,14,10,7,7,4,2,0,18,36,61,71,136,168,164,188,194,257,304,402,337,356,631,0,0,0,0,0,0,0,0,0,2181,3867,4230,6403,4861,5368,7448,8388,7221,7840,6484,3061,3944,3742,3945,5360,4307,4671,4720,4724,4654,3121,1868,1597,1425,1181,731,466,502,608,487,423,380,296,236,98,81,53,23,0,23,42,55,60,62,65,71,84,1380,2326,2578,3449,3705,3823,4197,350,389,319,380,367,294,328,427,519,544,636,873,1073,1195,1138,899,675,542,451,421,360,487,632,640,569,470,448,482,431,303,302,135,0 +54,60,64,62,47,32,22,17,14,15,17,17,8,8,6,4,0,15,37,56,82,100,118,146,186,191,260,326,334,346,430,707,0,29,71,94,186,158,101,83,296,1762,2541,3261,4490,5012,5522,7528,6888,7178,7350,5396,2055,3006,2760,3598,5568,3963,3819,4283,3643,3568,2417,1612,1642,1334,1131,828,503,658,832,731,590,564,365,322,200,143,91,43,0,19,35,50,65,76,99,114,162,954,1949,2179,3266,3424,3860,3559,340,381,450,466,394,424,305,328,396,480,723,744,782,814,884,672,555,552,454,465,352,466,537,526,500,558,612,522,498,400,326,171,0 +37,50,57,44,34,27,28,16,12,17,15,17,8,8,6,4,0,15,32,50,69,73,82,122,169,175,260,376,361,368,458,830,0,57,128,153,404,293,189,163,541,1264,2122,3476,3301,3313,4832,8886,8293,6663,7615,4844,1990,2526,2814,3013,4794,5292,4202,5633,4143,2717,2270,1420,1764,1215,1047,651,505,823,882,815,721,633,512,408,297,182,140,80,0,22,40,64,92,98,113,142,256,721,1342,1648,2788,2670,3282,3361,444,450,435,553,478,437,300,272,437,466,622,732,590,575,761,670,572,562,489,394,417,523,530,498,501,475,597,630,443,454,318,143,0 +36,40,49,41,36,26,22,16,12,14,15,14,12,10,8,5,0,15,34,40,65,68,49,60,124,220,282,348,367,324,474,668,0,130,281,314,456,348,274,223,694,1330,2006,2378,2780,3562,4129,7334,8351,7396,5984,4470,2198,2210,2205,2244,4074,3554,4074,4422,3444,2781,2496,1396,1795,1274,952,638,457,876,979,720,676,598,470,426,452,252,194,109,0,17,38,54,96,92,126,141,294,716,1042,1663,2010,2476,2304,1958,768,746,551,594,546,582,442,384,428,400,426,450,331,408,466,434,528,483,591,457,478,698,718,724,459,406,448,537,464,340,302,140,0 +28,27,34,28,32,30,29,22,8,12,12,14,12,12,8,5,0,10,21,36,44,36,32,39,96,245,315,288,368,495,501,633,0,111,238,412,646,636,540,468,825,1142,1240,2340,2975,4360,6139,7371,7496,4831,2875,2864,1926,2115,1622,1358,2751,2986,2450,2624,3440,3179,2748,1904,1283,1329,1144,841,404,588,736,726,653,496,371,500,464,343,287,165,0,23,48,60,72,113,139,155,388,759,1430,1392,1691,1426,1603,1027,957,825,496,575,552,423,456,388,397,296,277,248,188,172,131,158,334,401,513,596,662,771,907,801,326,274,284,385,414,341,278,159,0 +25,26,25,26,33,27,26,23,13,16,15,17,15,15,12,7,0,14,27,44,37,38,46,44,115,214,258,270,329,406,439,568,0,166,338,561,715,770,618,654,1094,1354,1165,1926,2480,3140,5023,4878,5506,3716,2709,2067,2126,1768,1420,1492,2761,2437,2048,3073,3000,2714,2125,1338,1227,1296,1296,766,582,852,697,687,769,496,552,508,424,278,270,124,0,36,60,88,145,186,202,256,390,748,1372,1170,1731,1468,1428,1188,1390,1069,739,949,853,772,632,548,450,334,240,202,214,202,180,158,496,586,724,750,1008,891,821,952,614,580,340,458,526,338,300,158,0 +14,19,18,30,30,24,26,24,19,22,17,17,20,15,12,7,0,14,26,43,38,45,54,75,112,171,210,260,260,285,292,341,0,194,419,676,1116,1096,839,988,1438,1288,1642,1974,2335,2165,2614,2608,4110,2424,1914,1417,1791,1569,1578,2316,2801,2776,2309,2805,2714,2157,1754,1009,1390,1256,1256,1189,770,856,866,777,700,597,573,456,417,250,167,79,0,39,88,115,221,263,326,386,337,704,880,836,1656,1599,1772,1250,1427,1166,1093,1221,1259,1186,838,710,468,356,266,172,168,171,210,216,552,582,728,883,1277,1186,1064,885,790,656,510,583,482,416,232,123,0 +8,11,15,22,23,25,22,23,25,27,23,18,20,16,14,8,0,17,36,47,54,48,52,72,113,132,136,152,163,197,239,244,0,268,517,756,1140,981,940,1101,1184,1016,1532,1474,1270,1198,1337,1428,2792,1821,1148,1334,1343,1572,2108,2610,3659,3258,1896,2526,2456,1855,1905,1344,1158,1509,1347,1000,836,922,871,848,773,652,596,506,362,254,188,94,0,62,135,140,294,302,427,442,361,620,842,944,1203,1207,1445,1296,1483,1323,1131,1300,1596,1292,936,700,380,320,177,152,187,192,244,238,640,690,754,1034,1125,1194,943,995,714,620,618,518,373,344,150,91,0 +0,4,6,10,13,23,25,24,30,24,24,22,21,15,10,6,0,14,23,44,56,45,46,55,76,86,70,48,35,46,60,73,0,147,291,378,463,959,1146,1497,1426,1454,1020,671,647,458,208,115,2030,2097,2188,2957,3044,2172,2080,2499,3467,3251,3322,3914,3812,3126,1767,1216,1191,1054,712,591,316,419,617,510,588,491,365,256,135,73,43,26,0,104,225,268,376,357,466,409,496,584,790,728,1005,969,1017,1126,1480,1284,1060,889,1089,878,474,424,312,324,438,441,474,410,512,440,747,710,452,360,352,431,557,578,853,734,567,573,471,356,252,147,0 +36,27,16,17,22,26,32,32,43,38,40,29,21,20,12,8,0,12,20,36,58,48,42,57,76,75,63,46,48,52,70,74,0,169,291,300,475,858,1190,1358,2374,2308,2304,1796,886,710,797,526,1538,1794,1710,1984,3076,2652,1697,2290,3972,3668,3720,3985,3958,2696,1744,1669,1064,878,542,542,364,484,528,564,508,388,420,272,140,95,42,24,0,83,223,252,255,360,458,409,418,490,874,808,900,1066,1283,1150,2123,1626,1298,1113,862,928,712,600,309,336,537,527,672,582,639,552,732,730,386,394,305,388,590,676,818,798,607,622,401,364,284,170,20 +64,52,30,23,31,26,29,34,62,47,46,43,26,25,16,8,0,9,18,37,59,57,53,50,65,70,52,39,44,50,70,78,0,157,262,315,330,811,1038,1279,3273,2842,2863,1929,1488,1441,1120,1097,1334,1470,1349,1493,2426,1836,2028,1649,4167,3298,4048,4092,4198,3410,2272,2060,1170,943,542,484,387,546,559,522,446,392,375,255,145,94,56,28,0,82,146,189,182,241,349,315,383,534,736,938,1150,1366,1270,1115,2548,2270,1446,1462,817,855,870,894,301,396,474,454,709,708,556,437,663,584,452,394,221,416,484,666,1028,737,805,970,480,369,289,163,44 +94,64,60,52,53,46,42,41,64,47,38,36,24,20,15,10,0,12,21,34,60,52,65,58,72,66,50,47,37,59,66,71,0,126,240,302,294,570,649,808,4103,3713,3663,2967,2258,2032,1819,1410,1544,1604,1290,1440,2084,1815,1843,1760,4286,4057,4607,4240,3016,2757,2305,2800,1121,789,623,493,514,514,553,429,343,345,334,258,168,112,83,43,0,44,74,150,129,245,348,290,342,565,784,1144,1488,1120,1256,1434,2102,1926,1859,1488,1234,1276,862,1091,246,330,371,564,820,770,584,558,473,452,316,268,262,320,415,570,824,829,1020,748,626,417,259,166,75 +91,86,54,61,57,59,50,31,77,53,50,46,30,23,19,12,0,14,24,28,40,44,44,42,54,38,31,46,44,52,52,70,0,53,107,144,250,284,344,536,3899,4150,3982,3366,2502,1990,1488,1421,1303,1353,1026,1164,1468,1517,2104,2277,3029,3616,3687,2955,3061,2477,2781,2800,1017,665,532,430,494,493,608,482,341,244,262,177,160,157,108,59,0,20,35,56,90,149,238,301,207,457,722,1158,1374,1249,1524,1704,2269,1424,1221,1200,1593,1140,1011,976,165,422,621,729,830,927,823,668,248,260,296,274,283,367,419,419,816,665,695,838,701,484,400,249,87 +110,88,72,62,60,61,48,44,100,70,41,36,44,30,22,14,0,11,22,27,36,34,36,30,44,36,21,36,35,36,32,49,0,104,220,324,398,770,1018,1750,3248,3802,5005,3764,2878,3288,3704,3357,2192,1918,1014,1208,1194,1650,1770,1750,2308,2556,3144,2834,2866,3032,3141,2498,792,651,393,468,448,393,512,436,337,251,233,151,146,120,67,42,0,18,31,52,70,143,178,278,131,390,555,856,1152,1426,1933,1944,1558,1304,1658,1550,1465,1248,1228,1026,306,492,688,718,795,748,926,754,337,301,243,264,286,383,421,348,827,752,541,683,489,514,552,394,204 +134,94,72,51,44,47,54,36,98,82,48,41,47,43,26,16,0,8,16,18,20,22,19,24,22,20,17,26,23,18,18,27,0,174,330,707,530,1289,2099,2836,3636,4813,4946,5738,3415,4493,4792,4380,2772,2013,1217,1039,1038,1168,1252,1124,1468,1775,2070,1821,3454,2868,2992,2624,687,396,299,264,286,323,282,210,228,148,126,96,104,90,50,30,0,19,33,54,56,118,158,188,115,319,416,932,1162,1370,1698,1603,1405,1585,1584,1648,1575,1185,1152,931,495,478,680,849,772,854,834,668,361,307,297,301,277,251,332,231,691,762,633,556,348,399,523,371,350 +108,88,81,70,40,44,53,56,92,66,56,47,56,40,29,20,0,5,10,12,10,12,10,14,13,12,10,12,12,12,11,12,0,190,371,715,906,1935,2466,3326,5192,5546,5771,5927,3761,4660,6226,6189,4066,3174,2101,1570,1216,1099,1113,789,669,1119,1386,1624,2406,2934,2506,3634,389,232,146,136,132,141,131,103,105,86,54,42,50,42,26,17,0,18,32,40,48,92,89,137,72,266,406,642,742,1174,1384,1464,1242,1410,1699,1700,1433,1439,1323,1132,924,821,870,1020,1042,1266,1070,726,475,360,291,264,202,212,255,234,477,488,485,522,322,440,578,532,446 +110,120,95,75,34,54,87,105,111,74,43,28,13,12,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,13,20,23,23,30,30,29,285,600,807,1311,1212,1090,1505,1861,2092,1656,1576,1028,1488,2651,3654,0,329,547,1029,1604,1248,1106,1661,1956,2238,2600,2216,2637,2524,3017,2430,1953,1695,1218,1303,1974,1618,1683,1347,769,756,994,1020,1410,1844,1930,2032,1509,3004,3945,5539,5728,4998,3955,5612,6135,5175,4287,4110,5323,4255,4750,4158,3536,3181,3732,3002,2563,2494,1993,1297,955,1242,1150,1254,1156,1076,801,663,486 +87,132,91,86,51,89,92,111,130,78,54,30,19,16,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,29,52,45,60,53,46,172,172,205,221,242,372,491,664,302,604,1040,1268,2090,1713,2035,2164,2645,3316,3018,2210,2704,2482,2681,3501,0,261,414,878,1541,1122,757,1438,1697,2124,2567,2067,2358,2170,2190,2206,1690,1390,1180,1170,1559,1674,1896,1014,613,880,1018,1096,1132,1260,1219,1378,1622,2548,3315,4514,3426,4384,3600,4844,5850,5344,5396,4449,5186,4583,5426,4123,3002,2440,2944,3266,2850,2347,1382,1228,960,1085,1104,1165,755,685,754,692,570 +103,98,127,122,74,101,114,117,126,101,63,42,18,17,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,52,92,91,84,108,119,290,368,465,550,574,643,857,1284,614,849,1164,1488,2695,2326,2601,3105,4721,3962,4038,3668,3817,4099,3531,3046,0,256,436,903,1105,1055,703,940,2282,2074,2102,1875,1688,1416,1518,1835,1244,880,946,865,1733,1418,1537,957,698,842,1103,1238,866,987,902,684,2151,2154,2886,3493,2671,2425,3160,4377,4148,6188,6372,5842,6476,4596,4990,3782,2300,2407,3167,2610,2562,1783,1386,1130,1291,1070,1014,1208,562,554,563,560,471 +145,128,146,135,84,106,82,110,86,74,63,42,17,15,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,67,112,149,168,198,166,361,461,700,878,733,1024,1288,1674,669,1094,1560,1879,2862,2703,2624,2578,6280,6223,3693,3598,3968,4050,3009,2882,0,137,263,524,744,847,824,898,2401,2220,1441,1495,1494,1172,1356,1105,669,706,1008,964,1153,1066,1268,816,803,662,786,958,764,665,850,814,2968,2524,1776,2171,1592,2729,2728,4372,6642,6955,7472,6076,6078,5542,4769,4254,1934,2273,2172,2012,1830,1625,1770,1324,1136,1051,673,763,449,452,574,465,407 +146,100,79,107,112,94,83,98,70,40,27,25,15,13,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,105,182,236,242,258,203,539,547,593,812,1084,1732,1941,2416,899,1213,1343,1749,2606,3236,3088,2740,7496,7607,7417,6872,4548,3791,2324,2366,0,98,176,243,392,400,558,875,1916,2197,1812,1565,1336,1279,1197,962,247,500,743,906,996,1198,1045,644,650,459,428,617,730,1002,1010,918,2908,2114,1997,1744,1268,3122,4815,4677,7336,9160,8269,6003,5169,3949,3982,4478,1010,1046,1253,1422,1708,1596,1116,1407,1235,878,770,534,396,275,256,243,277 +148,108,77,98,102,84,86,92,69,54,32,27,12,13,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,154,242,220,258,316,342,589,583,516,756,1025,1572,1748,2120,1878,1726,1322,2302,2491,3050,3680,4392,8579,8268,8440,10282,8577,8527,8519,6141,0,82,148,276,468,517,468,760,1768,1644,1295,1382,1584,1158,936,1050,140,345,580,549,600,790,733,524,830,656,749,951,850,869,812,728,3350,2519,1488,1234,1070,2651,3384,4672,4747,6428,5627,6376,5986,5212,4711,4832,926,983,1113,1251,1886,1686,1398,1118,1604,1080,751,561,493,363,285,240,166 +114,116,103,76,58,81,80,76,61,47,28,28,10,9,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,220,382,264,298,376,560,492,463,466,629,964,1411,2014,1726,2476,2111,1876,1981,2266,3529,3722,4246,7593,9956,10367,12556,14354,11065,11908,9494,0,89,168,213,442,400,361,582,1494,1648,1370,1413,1378,963,1000,850,92,219,277,437,347,353,424,416,807,1043,1064,958,875,696,730,723,2737,2004,1464,1098,826,1830,3200,3125,3902,5351,5229,5266,6037,6968,6129,4824,1164,1136,1195,1333,2395,1869,1474,1420,1550,1015,938,678,477,448,333,266,133 +121,110,94,58,44,50,60,60,49,43,26,22,12,11,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,271,397,468,588,654,642,870,757,456,618,894,1126,2226,2159,2126,2224,1748,1738,1504,3050,2952,4590,7433,9483,14023,16535,14573,13906,13172,11828,0,70,142,196,382,318,320,395,837,934,931,888,1124,1105,1008,864,41,116,182,266,228,348,376,352,788,1048,827,852,814,768,1100,959,3394,2118,1508,1112,867,1540,2274,3170,4026,4510,5513,5834,6025,5753,6665,4464,1017,1168,1498,1277,2175,1598,1242,1534,1439,1002,970,756,702,564,432,216,73 +95,100,86,91,76,84,63,53,26,28,24,22,13,10,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,140,243,411,647,716,920,1028,1299,1819,3006,3656,3351,2276,2597,2701,2611,2910,4277,5838,6428,5276,8274,8654,6366,6526,10329,13025,13194,10459,11532,0,22,45,82,136,165,242,270,304,508,815,834,880,807,822,694,0,30,70,96,151,228,326,484,528,531,390,399,398,466,519,594,3129,3108,2065,2604,3201,3951,4341,3986,3144,3242,3137,2406,2340,3129,3658,4819,1264,1531,1685,1622,1154,924,1032,1104,1138,967,854,992,922,604,361,180,0 +84,90,84,78,83,80,62,42,29,22,20,19,15,14,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,286,486,840,1034,1058,1212,899,1469,1438,2434,3619,3084,2481,2542,2328,3632,4053,5824,7561,7168,6066,8243,10032,8686,9560,10300,9564,9760,8535,7280,0,24,36,80,98,166,163,178,287,578,856,912,716,748,648,586,2,27,71,96,113,210,269,318,529,444,344,473,349,466,476,476,2127,2325,2205,2686,2920,3260,3284,2542,3590,3516,2562,2306,2247,2699,2698,3364,1148,1506,1692,1214,819,1062,1161,1260,875,802,806,938,895,735,464,296,78 +89,97,78,82,75,58,61,36,32,29,15,12,14,11,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,460,691,1049,862,1090,1684,534,1199,1557,2052,3466,3447,2286,3415,1776,3932,5478,7800,9950,8266,6414,7363,8171,8940,11368,10380,9289,9148,7550,7081,0,20,34,76,94,128,136,147,338,504,722,734,780,586,504,540,4,35,58,74,96,237,316,343,380,315,329,348,320,295,327,506,1743,1701,2006,1992,2695,2628,2180,1895,3377,3026,2480,2390,1571,2346,2979,2525,1333,1419,1140,945,864,962,1160,1136,500,716,776,663,887,722,689,416,155 +88,102,78,87,60,58,39,27,28,25,15,14,13,11,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,498,928,1004,1341,1882,2281,474,947,1260,1668,2579,2622,1991,2748,1750,5109,7185,8583,11678,11698,7894,8902,7134,9104,9728,11552,11280,10160,7426,6360,0,19,30,67,80,122,140,150,289,427,609,653,800,604,490,513,7,48,83,100,108,219,268,314,217,298,299,322,372,362,363,380,1809,1614,1868,1303,2135,1674,1327,1126,3339,2860,1880,1992,1762,2465,3322,2652,1185,1096,646,560,779,738,989,918,504,576,869,776,820,690,793,532,299 +70,94,86,73,62,49,40,20,23,26,20,13,8,7,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,622,820,1354,1790,2026,2698,640,1184,1621,1626,1723,1402,1611,2473,1747,3302,4088,6866,9793,10070,9308,10237,9130,11020,13364,13598,11537,10949,7474,5660,0,24,40,47,72,99,135,144,204,232,341,488,594,584,536,525,8,50,98,118,138,202,198,290,132,243,310,396,396,286,304,353,1966,1455,1523,1110,896,809,713,537,2792,3012,3073,3108,2384,2498,2316,2949,714,548,572,562,554,771,918,959,415,480,471,746,788,694,789,572,357 +48,66,58,55,42,41,27,19,23,21,15,13,8,7,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,521,719,1226,1506,1851,2812,1278,1863,1965,2494,3006,2256,2022,2852,2149,3198,3356,5947,8960,9390,8381,9379,10736,11946,11620,9660,9779,8684,9314,6876,0,18,36,40,47,75,79,132,156,223,312,451,424,434,331,374,12,44,84,106,114,165,241,306,143,214,325,304,380,318,255,279,2355,1738,1709,1194,855,843,684,488,2366,2243,2130,2322,1564,1410,1764,1916,565,504,480,501,623,731,937,826,478,494,503,672,756,785,741,614,363 +31,43,40,40,37,32,22,12,15,17,12,9,6,6,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,385,578,729,1245,1982,3536,1765,2203,2606,2402,3313,2774,1908,2692,2441,3559,3588,7488,8086,8564,6520,10605,10689,8532,8975,8216,10221,9097,9951,6620,0,12,25,28,40,53,58,70,71,117,182,229,225,281,286,210,12,48,68,89,63,147,209,269,120,143,232,225,279,241,249,223,2436,2414,1628,1177,776,604,668,432,1154,1248,1131,1181,992,888,854,807,439,496,464,430,514,694,800,952,502,570,481,750,831,802,644,454,456 +19,22,18,22,16,16,13,8,10,9,7,6,4,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,302,459,617,1032,1448,2037,1760,2340,3122,2907,3666,2414,1927,2490,2445,3587,4173,7500,7408,8270,6076,9249,11084,8802,8040,7138,8332,9146,7650,6960,0,8,14,15,22,30,35,46,43,78,76,122,137,140,156,104,15,44,48,65,42,96,162,210,108,170,191,181,249,282,351,294,2904,2336,1832,1156,586,632,522,314,616,786,719,634,672,608,722,688,358,404,438,424,523,681,745,872,662,545,638,758,679,672,635,614,573 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,716,1362,1589,1470,1427,2364,2708,2363,1794,1540,1283,1156,773,373,0,570,1110,1642,2014,4646,5769,5193,0,0,1,2,2,2,3,2,2,7,11,14,14,16,20,22,20,25,31,43,42,38,42,48,44,89,108,190,269,320,285,270,2927,3170,2829,2520,3151,2933,4021,4080,3079,2770,2285,1914,996,796,510,410,376,374,478,532,465,531,563,464,378,360,306,286,253,398,443,586,571 +4,5,5,6,7,8,8,7,7,8,7,7,7,6,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,808,1031,1280,1344,1283,1792,2922,2079,1530,1398,1113,1050,569,400,55,690,1196,1776,3098,3566,4572,5220,0,0,2,2,2,5,5,5,4,8,10,14,14,18,18,23,20,24,28,37,47,47,46,51,64,108,109,232,325,316,310,284,2539,2184,2496,2725,3410,2858,3065,3169,2174,2272,2241,1652,1092,976,742,512,322,356,464,365,406,411,438,327,432,428,476,432,302,429,562,664,566 +6,10,9,11,13,15,14,11,11,12,12,11,12,10,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,669,783,930,962,871,1434,2187,1944,1832,1685,1419,825,514,311,112,717,1406,2208,3172,3050,3454,3504,0,1,2,2,3,5,4,5,4,8,10,14,11,17,16,16,17,24,23,23,40,51,53,54,80,116,161,210,283,270,260,216,2095,1950,2048,2406,2969,3598,3350,2673,1935,1894,1748,1419,1224,982,760,380,381,431,428,330,305,281,282,225,441,460,498,460,291,512,592,718,768 +11,14,16,14,17,19,18,18,15,16,19,16,17,14,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,419,672,634,694,790,798,2334,1916,1742,1750,1198,840,666,554,136,1182,2056,2761,2831,3345,4020,3672,0,0,2,2,2,5,5,5,5,8,12,15,12,14,14,14,17,23,23,27,34,44,53,47,89,127,143,222,247,245,197,221,1402,1408,1441,1948,2003,2449,2440,2175,2321,2531,1747,1439,920,802,691,364,359,415,305,232,268,196,261,244,525,484,618,496,383,497,573,774,800 +12,14,11,15,18,20,28,23,17,19,25,26,20,15,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,133,286,430,432,494,458,2457,1792,1182,998,1102,1058,952,576,192,1219,2296,3137,3375,3283,2817,3873,0,0,1,2,2,2,3,2,4,6,6,8,10,12,9,10,16,22,25,30,39,31,32,36,102,98,137,212,228,227,150,194,1210,1486,1944,1630,1899,2001,1654,1740,2758,2428,1886,1698,1030,949,558,328,248,265,199,207,150,174,146,199,466,455,405,382,371,558,626,616,898 +26,27,18,20,22,25,34,30,20,24,29,26,28,23,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,102,212,334,419,442,367,1655,1246,1144,880,905,936,822,577,216,1266,1827,3294,3589,4102,4154,3252,0,0,0,1,2,3,4,4,5,7,7,9,10,12,10,10,17,24,27,35,39,39,35,62,109,123,154,269,210,221,209,226,1409,1712,1980,2021,2349,2086,1723,2268,2344,1600,1951,1575,872,832,590,361,325,266,201,209,202,164,199,240,409,356,378,369,454,528,485,528,598 +33,34,24,23,21,32,33,33,27,30,28,30,39,27,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,68,147,213,294,330,260,1416,944,863,836,1100,805,638,604,264,1312,2086,3205,4296,3816,4778,4337,0,0,0,0,1,2,3,4,3,5,5,7,10,11,8,8,11,19,22,33,33,36,50,91,165,161,168,254,175,215,232,218,1882,1991,2540,2204,2292,2464,1818,1800,1383,1212,1612,1419,1033,766,562,444,319,263,230,242,206,215,186,233,445,486,470,360,384,422,536,531,497 +35,32,21,30,27,38,36,36,42,34,37,34,41,27,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,39,79,117,143,192,137,987,722,621,630,734,664,542,548,306,1301,2072,2680,3433,4435,4324,3920,0,0,0,0,0,1,2,2,2,5,5,7,8,8,7,7,7,12,15,24,26,42,50,106,134,167,204,274,284,257,194,269,2298,2688,2862,2351,2616,2520,2101,1855,1351,1084,1510,1203,716,537,590,465,366,256,270,262,240,226,236,224,366,412,334,370,450,402,646,664,682 +38,29,31,29,37,50,53,42,48,46,42,34,23,18,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,617,676,766,818,786,638,578,442,1471,2960,2906,3904,4378,5080,5302,0,0,0,0,0,0,0,0,1,2,3,2,2,2,3,2,0,20,39,80,118,116,102,102,141,131,101,94,64,83,109,195,2238,2058,2476,2256,1694,1921,1654,1758,1505,1346,814,608,496,553,455,348,347,434,498,464,545,446,419,345,299,516,611,845,856,644,540,698,684 +26,28,30,34,33,46,60,48,36,35,43,36,31,26,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,556,607,785,613,548,536,398,340,1123,2940,2891,3477,4231,4646,4046,0,0,0,0,0,0,0,0,0,2,4,4,2,5,5,5,0,22,31,63,109,110,111,121,120,109,101,64,52,85,102,149,2199,1732,1770,1639,1353,1534,1350,1423,1660,1180,791,624,490,434,371,310,261,358,387,427,443,369,324,306,253,504,708,834,639,508,410,531,426 +16,25,32,39,35,48,48,58,31,39,36,34,39,26,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,630,596,523,614,526,356,341,294,984,2046,2440,4218,4122,3281,2482,0,0,0,0,0,0,0,0,0,2,3,4,3,5,4,5,0,19,32,73,84,106,120,112,74,62,66,52,51,80,88,116,1644,1690,1379,1633,1508,1535,1570,1057,1396,1072,788,630,323,290,276,229,211,264,264,324,264,344,326,341,292,548,629,901,456,357,356,397,376 +17,23,25,36,39,46,43,42,31,42,46,40,33,28,22,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,419,432,416,393,381,226,223,231,1034,1557,2741,3900,3391,3780,3170,0,0,0,0,0,0,0,0,0,1,2,3,2,5,5,5,0,14,32,58,60,95,97,102,61,56,53,39,34,54,56,80,1033,1017,788,1039,1102,1175,1006,812,1250,1078,809,620,287,352,220,232,115,183,245,282,288,262,223,231,275,432,596,675,461,374,418,376,288 +11,19,20,31,38,42,43,38,42,42,28,36,32,22,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,294,298,258,208,146,115,110,184,767,1534,2342,2582,2451,3516,3020,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3,2,0,16,30,40,51,47,47,79,48,42,35,21,14,20,32,58,674,527,504,689,758,768,676,504,1304,1134,811,634,359,324,235,205,51,116,179,190,246,276,258,160,181,199,270,438,593,522,511,400,283 +23,30,35,38,36,43,44,48,53,44,30,34,37,29,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,190,171,188,140,120,82,74,139,646,940,1528,2295,2246,3020,2758,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,12,21,34,48,39,48,54,37,34,29,19,12,18,35,49,583,452,412,565,512,512,420,318,991,910,658,530,253,201,154,145,42,96,173,170,244,192,172,135,164,166,247,407,465,432,396,288,214 +41,49,51,42,32,42,51,56,51,39,42,35,46,43,27,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,111,120,78,136,124,70,47,89,342,646,758,1509,1617,2020,1556,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,0,8,17,25,28,28,37,43,34,23,18,12,6,17,26,32,394,352,342,396,399,338,304,202,683,695,508,313,248,180,126,101,28,67,114,143,177,128,106,95,140,175,192,296,219,207,232,210,122 +47,56,60,54,36,42,49,62,44,46,55,47,40,40,23,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,47,72,49,72,58,38,28,39,180,276,352,755,836,1064,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,8,14,15,16,16,23,16,12,9,8,4,9,12,18,226,199,195,179,188,159,126,110,372,382,303,172,115,100,56,51,17,40,63,77,98,65,65,64,76,116,108,160,114,128,144,118,74 +52,58,54,50,42,47,47,58,48,41,50,37,39,38,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,7,9,17,22,31,30,43,52,46,44,51,54,55,48 diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/worlds/diamond_world.csv b/worlds/diamond_world.csv index c978edb..367aea9 100644 --- a/worlds/diamond_world.csv +++ b/worlds/diamond_world.csv @@ -1,1025 +1,1025 @@ -50,25,25,17,25,15,18,15,26,14,15,11,16,10,14,13,23,12,12,8,12,7,9,9,16,9,10,9,15,10,15,15,28,14,14,10,14,9,11,9,16,9,9,7,11,8,11,10,19,10,11,8,13,8,11,10,17,10,12,10,17,11,16,16,31,16,16,11,16,9,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,4,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-18,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-11,-17,-17,-36,-18,-18,-12,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-17,-12,-21,-12,-16,-15,-30,-16,-19,-16,-30,-20,-30,-29,-59,-29,-29,-19,-29,-16,-19,-16,-29,-15,-17,-12,-21,-13,-19,-18,-37,-18,-19,-13,-21,-12,-16,-14,-28,-15,-17,-13,-24,-16,-24,-23,-47,-23,-24,-16,-26,-14,-18,-15,-28,-15,-17,-13,-24,-15,-22,-22,-44,-22,-24,-17,-27,-16,-22,-20,-40,-22,-26,-21,-39,-26,-40,-40,-82,-40,-40,-26,-40,-22,-26,-21,-39,-20,-22,-16,-26,-15,-21,-19,-37,-18,-18,-12,-20,-11,-15,-13,-26,-14,-16,-13,-23,-14,-21,-21,-42,-21,-22,-15,-23,-13,-16,-14,-28,-14,-16,-12,-20,-12,-18,-17,-35,-18,-19,-13,-22,-13,-17,-15,-30,-16,-20,-16,-29,-19,-28,-27,-54,-27,-27,-18,-28,-16,-20,-17,-31,-16,-18,-13,-22,-13,-19,-17,-34,-17,-18,-13,-21,-12,-17,-16,-31,-16,-19,-15,-27,-17,-26,-26,-53,-26,-27,-19,-30,-17,-22,-19,-36,-19,-23,-18,-33,-21,-31,-31,-62,-32,-34,-25,-42,-25,-35,-33,-64,-35,-43,-35,-64,-42,-64,-64,-129,-64,-64,-42,-64,-36,-44,-37,-67,-34,-37,-27,-45,-27,-36,-33,-65,-32,-33,-22,-35,-20,-25,-22,-43,-22,-25,-20,-35,-22,-33,-32,-65,-32,-33,-22,-35,-20,-25,-21,-40,-20,-22,-17,-29,-18,-26,-24,-48,-24,-26,-18,-30,-17,-22,-20,-39,-21,-25,-21,-39,-26,-39,-38,-77,-38,-39,-26,-39,-21,-26,-22,-40,-20,-22,-16,-27,-16,-23,-22,-44,-22,-22,-15,-23,-13,-16,-14,-26,-14,-16,-12,-21,-14,-21,-20,-41,-20,-21,-14,-23,-13,-17,-14,-27,-14,-17,-13,-23,-14,-21,-20,-41,-21,-22,-15,-25,-15,-21,-19,-37,-20,-24,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-24,-20,-38,-19,-21,-15,-26,-15,-21,-19,-38,-19,-19,-13,-22,-13,-17,-16,-31,-16,-19,-15,-27,-17,-25,-24,-49,-24,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-17,-10,-15,-14,-27,-14,-15,-10,-17,-9,-12,-11,-22,-12,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-13,-16,-13,-24,-12,-14,-10,-17,-10,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-8,-9,-7,-13,-8,-13,-13,-27,-13,-13,-9,-15,-8,-10,-8,-15,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,9,8,13,9,14,15,29,15,14,10,14,8,8,7,11,6,7,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,5,4,7,4,4,3,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,5,5,8,5,7,7,12,7,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,13,25,13,14,10,16,10,14,13,24,14,17,15,26,18,26,26,50 -26,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,11/2,10,6,6,9/2,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-9,-15/2,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-41,-20,-20,-25/2,-19,-10,-13,-10,-19,-19/2,-10,-15/2,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-10,-6,-9,-8,-17,-8,-8,-6,-10,-11/2,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-15,-15,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-21,-17,-31,-41/2,-32,-32,-64,-32,-32,-21,-32,-18,-22,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-19/2,-12,-11,-21,-21/2,-12,-19/2,-17,-11,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-19,-19/2,-10,-8,-14,-17/2,-12,-12,-24,-12,-13,-9,-15,-8,-10,-19/2,-19,-10,-12,-10,-19,-12,-19,-37/2,-38,-37/2,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-13/2,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-17,-11,-16,-16,-34,-33/2,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-13,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-9/2,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,7/2,4,4,9,5,4,3,5,3,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25 -26,14,27/2,9,13,8,9,8,13,7,15/2,6,9,6,8,7,11,6,13/2,4,6,4,5,5,9,5,6,5,9,6,9,8,15,8,15/2,6,8,5,6,5,8,5,5,4,7,4,11/2,5,10,6,11/2,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,17/2,6,8,5,11/2,5,8,4,9/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,4,4,5,4,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,4,4,7,4,7/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,1,1,1/2,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-6,-4,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-9,-19/2,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-12,-23/2,-8,-13,-7,-17/2,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-7,-12,-7,-21/2,-10,-20,-10,-25/2,-10,-20,-13,-20,-20,-41,-20,-39/2,-12,-19,-10,-13,-10,-19,-10,-21/2,-8,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-21/2,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-31/2,-15,-31,-16,-17,-12,-21,-12,-35/2,-16,-31,-17,-41/2,-17,-31,-20,-63/2,-32,-65,-32,-32,-21,-32,-18,-43/2,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-10,-25/2,-11,-20,-10,-12,-10,-18,-11,-16,-16,-32,-16,-16,-11,-17,-9,-23/2,-10,-19,-10,-21/2,-8,-15,-9,-25/2,-12,-24,-12,-13,-9,-15,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-12,-37/2,-18,-38,-18,-37/2,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-7,-12,-7,-19/2,-9,-18,-9,-11,-9,-17,-11,-33/2,-16,-35,-17,-33/2,-10,-16,-9,-23/2,-10,-18,-9,-10,-7,-13,-8,-21/2,-10,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,6,4,9/2,4,7,5,15/2,8,15,8,8,6,8,5,5,4,6,4,7/2,3,5,3,7/2,4,6,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,2,2,2,5/2,2,4,3,3,3,5,4,9/2,4,9,5,9/2,3,5,3,4,3,3,2,3,3,4,3,3,3,7,4,9/2,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,11/2,4,5,4,5,4,7,4,9/2,4,7,5,13/2,7,12,7,8,6,9,6,15/2,7,13,8,9,8,13,9,13,13,25 -18,10,10,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,7/2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-7/2,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-9/2,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-9,-9/2,-5,-4,-9,-5,-8,-8,-18,-17/2,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-11/2,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-12,-11,-20,-11,-13,-11,-20,-13,-21,-21,-43,-21,-21,-14,-21,-23/2,-14,-12,-22,-11,-12,-8,-14,-8,-11,-21/2,-21,-10,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-21,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-11/2,-10,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-11/2,-11,-7,-10,-10,-23,-11,-10,-6,-10,-6,-8,-6,-12,-6,-6,-4,-8,-9/2,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-9/2,-7,-7,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,5/2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,4,5/2,3,2,2,2,2,2,3,2,2,2,5,3,3,3,4,5/2,3,3,4,5/2,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,5,8,5,5,4,6,4,5,5,9,11/2,6,11/2,9,6,9,9,17 -26,13,13,9,25/2,7,8,7,13,7,8,6,17/2,5,6,6,11,6,6,5,7,5,6,5,10,6,6,6,19/2,6,9,9,14,8,8,6,17/2,6,7,6,8,5,5,4,7,5,6,5,11,6,6,4,13/2,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,15/2,4,5,4,7,4,4,3,9/2,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,11/2,4,6,5,9,5,5,4,11/2,4,4,3,5,3,4,4,11/2,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,3/2,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-6,-13,-7,-8,-6,-19/2,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-25/2,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-23/2,-7,-11,-11,-20,-10,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-39/2,-13,-20,-20,-41,-20,-20,-13,-39/2,-10,-12,-10,-20,-10,-10,-7,-12,-7,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-23/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-17,-8,-9,-6,-19/2,-6,-8,-7,-14,-7,-8,-7,-27/2,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-14,-14,-10,-31/2,-9,-12,-10,-19,-10,-12,-9,-33/2,-10,-16,-15,-31,-16,-17,-12,-43/2,-13,-18,-17,-31,-17,-20,-17,-63/2,-21,-32,-32,-65,-32,-32,-21,-65/2,-18,-22,-18,-33,-17,-18,-13,-43/2,-13,-18,-17,-32,-16,-16,-11,-17,-9,-12,-11,-20,-10,-12,-10,-18,-11,-17,-17,-32,-16,-16,-10,-33/2,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-12,-10,-39/2,-12,-19,-18,-39,-19,-19,-12,-19,-10,-13,-10,-20,-10,-11,-8,-27/2,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-16,-35,-17,-17,-11,-33/2,-9,-11,-10,-18,-9,-10,-7,-25/2,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-12,-12,-22,-10,-10,-7,-23/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-10,-5,-6,-6,-23/2,-8,-12,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,3,3,3,2,2,2,4,3,4,4,6,4,4,4,7,6,9,9,16,8,8,6,15/2,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,3,3,5,3,4,3,7/2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,5/2,2,2,2,4,3,4,3,5,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,7/2,2,3,3,7,4,5,4,5,3,4,4,5,3,3,3,9/2,3,4,5,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,24 -15,8,8,11/2,8,9/2,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,7/2,6,4,4,4,6,4,6,11/2,8,5,5,4,5,7/2,4,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22,-10,-10,-13/2,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-9,-11/2,-9,-8,-17,-8,-9,-13/2,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-35/2,-18,-23/2,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,7/2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,11/2,8,15/2,14 -18,10,19/2,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,9/2,4,6,4,4,4,7,4,4,4,6,4,13/2,6,10,5,5,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,3,2,3,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-5,-4,-9,-4,-5,-4,-10,-6,-19/2,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-13/2,-4,-6,-3,-9/2,-4,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-7,-6,-13,-6,-13/2,-4,-8,-4,-6,-5,-14,-6,-6,-4,-8,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-9,-9,-6,-10,-6,-15/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-10,-21,-10,-11,-8,-14,-8,-12,-11,-20,-11,-27/2,-11,-21,-14,-21,-21,-43,-21,-43/2,-14,-22,-12,-29/2,-12,-22,-11,-12,-8,-14,-8,-11,-11,-21,-10,-11,-7,-12,-6,-15/2,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-9,-5,-15/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-12,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-15/2,-5,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-3,-8,-4,-5,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-12,-6,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-13/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3,3,2,2,3/2,2,3,2,3,3,4,3,3,3,6,5,7,7,11,6,5,4,5,3,4,4,5,3,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,4,2,5/2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,10,6,17/2,8,16 -15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,11/2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-15/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-4,-4,-3,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-18,-18,-12,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-6,-5,-10,-6,-9,-9,-18,-8,-8,-11/2,-10,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-4,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-9/2,-9,-4,-5,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,7/2,5,4,5,5,8,5,6,5,8,5,7,7,13 -27,14,14,9,12,7,8,7,12,7,7,6,9,5,6,6,12,7,7,5,8,5,6,6,19/2,6,6,6,10,7,9,9,14,7,7,5,7,5,6,6,19/2,5,5,4,6,4,5,4,12,7,7,5,8,5,5,4,15/2,4,5,4,7,5,8,8,16,8,8,6,8,5,5,4,13/2,4,4,3,5,3,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,11/2,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-28,-14,-14,-9,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-20,-10,-11,-8,-14,-8,-11,-10,-21,-11,-14,-11,-20,-13,-20,-20,-38,-18,-18,-12,-18,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-10,-9,-21,-10,-11,-7,-11,-6,-8,-7,-27/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-18,-9,-9,-6,-10,-6,-8,-7,-29/2,-8,-9,-7,-12,-8,-12,-12,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-15,-8,-11,-10,-20,-10,-12,-9,-17,-11,-17,-17,-33,-16,-17,-12,-20,-12,-17,-16,-65/2,-18,-22,-18,-32,-21,-32,-32,-67,-33,-34,-22,-34,-18,-22,-18,-67/2,-16,-17,-12,-20,-12,-17,-16,-30,-15,-15,-10,-17,-10,-13,-11,-43/2,-12,-14,-11,-20,-13,-19,-18,-33,-16,-16,-10,-16,-9,-11,-10,-39/2,-10,-11,-8,-15,-9,-13,-12,-26,-13,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-19,-12,-19,-19,-40,-20,-20,-13,-20,-11,-13,-11,-21,-11,-12,-9,-16,-9,-13,-12,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-8,-15,-10,-15,-15,-34,-16,-16,-10,-16,-9,-11,-9,-17,-9,-10,-7,-13,-8,-12,-11,-20,-10,-10,-7,-11,-6,-9,-8,-15,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-22,-10,-10,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-9,-6,-9,-8,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,2,2,2,2,3,2,3,3,11/2,4,5,5,8,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,2,7/2,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,12,7,7,5,8,5,5,4,15/2,4,5,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 -15,8,8,5,7,4,5,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,6,4,4,5/2,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-11/2,-7,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-11/2,-11,-5,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,7,5,7,7,12 -16,9,9,6,7,4,5,5,8,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,3,3,6,4,4,3,6,4,11/2,6,8,4,9/2,3,5,3,7/2,3,5,3,3,3,4,3,7/2,3,7,4,4,3,5,3,3,3,4,3,3,3,5,4,5,5,9,5,6,4,5,3,4,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,6,4,7/2,2,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-5,-11,-6,-13/2,-4,-8,-5,-9,-9,-18,-9,-19/2,-6,-10,-6,-9,-9,-18,-10,-23/2,-9,-17,-11,-17,-17,-37,-18,-18,-12,-18,-10,-23/2,-10,-17,-8,-17/2,-6,-11,-6,-9,-8,-17,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-7,-6,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-12,-6,-6,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,1,1,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,9/2,5,9,5,11/2,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,7,4,5,4,6,4,7/2,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,7,5,7,7,13 -12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,5,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-13/2,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,10 -18,9,9,6,19/2,6,7,6,10,6,6,4,13/2,4,5,5,8,4,4,4,11/2,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,6,4,6,5,12,7,7,5,13/2,4,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-9,-9,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-13,-6,-7,-4,-15/2,-4,-4,-3,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-19/2,-5,-7,-7,-15,-8,-10,-8,-29/2,-9,-14,-13,-24,-12,-12,-8,-23/2,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-12,-5,-5,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-9,-9,-6,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-21,-10,-11,-8,-13,-8,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-45,-22,-22,-14,-43/2,-12,-14,-12,-20,-10,-11,-8,-25/2,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-13,-8,-12,-11,-20,-10,-10,-7,-12,-6,-8,-7,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-27/2,-8,-13,-13,-26,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-8,-6,-12,-6,-7,-5,-10,-6,-8,-8,-13,-6,-6,-4,-6,-3,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,4,11/2,4,6,6,11,6,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,8,5,5,4,13/2,4,4,4,5,3,4,4,11/2,4,6,5,9,5,6,4,13/2,4,5,5,8,5,5,5,8,6,8,8,15 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9 -15,8,17/2,6,8,5,6,5,8,4,9/2,4,6,4,4,4,7,4,9/2,4,4,3,7/2,3,6,4,9/2,4,5,4,5,6,10,6,11/2,4,5,3,4,4,5,3,7/2,3,4,3,3,3,6,4,7/2,2,3,2,5/2,3,4,3,7/2,3,5,4,9/2,4,10,5,5,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-4,-8,-4,-13/2,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-5,-11,-5,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-7,-11,-11,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-9/2,-2,-5,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-7,-7,-17,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-13/2,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-7,-10,-9,-18,-10,-23/2,-10,-18,-12,-18,-18,-36,-17,-17,-11,-18,-10,-23/2,-9,-17,-8,-9,-6,-11,-6,-19/2,-9,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-10,-10,-16,-8,-8,-5,-10,-5,-13/2,-6,-11,-5,-6,-4,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-10,-6,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-11/2,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-13/2,-6,-11,-5,-6,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,5,4,5,5,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,4,3,7/2,4,7,4,9/2,4,6,3,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,5,7,7,12 -15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,4,5,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-7/2,-7,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-33,-16,-16,-10,-16,-17/2,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-10,-9,-15,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-10,-13/2,-10,-10,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,9/2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11 -28,15,15,11,16,9,11,9,16,8,8,6,8,5,6,6,23/2,7,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,4,15/2,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,17,9,8,6,8,5,5,4,6,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-6,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-25/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-37/2,-9,-10,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-12,-12,-20,-10,-10,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-10,-41/2,-10,-11,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-20,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-10,-10,-41/2,-10,-10,-7,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-11,-9,-16,-10,-16,-16,-65/2,-16,-17,-12,-20,-12,-17,-16,-32,-17,-21,-18,-33,-22,-34,-34,-65,-32,-32,-21,-32,-17,-21,-18,-33,-17,-18,-13,-23,-13,-18,-17,-67/2,-16,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-19,-12,-18,-18,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-12,-26,-13,-14,-10,-17,-9,-12,-11,-22,-12,-15,-12,-22,-14,-22,-21,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-14,-8,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-10,-41/2,-10,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-9,-6,-9,-9,-9,-4,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,9,6,7,7,9,5,4,3,3,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,9,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,6,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,13,8,9,7,11,7,10,10,20 -15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,4,7,4,4,7/2,5,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,3,5/2,4,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-10,-17/2,-16,-11,-17,-17,-32,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-21/2,-18,-9,-9,-6,-9,-9/2,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-5,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-5,-5/2,-4,-5/2,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11 -15,8,17/2,6,8,5,13/2,6,8,5,5,4,5,3,4,4,6,4,9/2,4,6,4,5,4,7,4,9/2,4,5,4,11/2,6,10,5,5,4,6,4,4,3,4,3,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,7/2,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,4,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-6,-17/2,-8,-17,-9,-11,-9,-17,-11,-35/2,-18,-33,-16,-33/2,-10,-16,-8,-10,-8,-16,-8,-9,-7,-11,-6,-19/2,-9,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-7,-5,-9,-5,-13/2,-6,-10,-5,-13/2,-6,-11,-7,-11,-11,-18,-9,-9,-6,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-3,-5,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-5,-9,-5,-6,-5,-9,-4,-5,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,1,3,2,3,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,10,5,5,4,6,4,7/2,3,5,3,3,3,4,3,4,4,7,4,7/2,3,4,3,7/2,4,6,4,4,3,5,3,4,4,5,3,2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,6,6,11 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-15/2,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-4,-7/2,-7,-4,-7,-7,-12,-11/2,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8 -16,8,8,6,19/2,6,6,5,9,5,5,4,6,4,4,4,6,4,4,4,11/2,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,4,3,5,3,2,2,5/2,2,2,3,5,3,4,3,7/2,3,4,4,7,4,4,3,9/2,3,4,3,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,5/2,2,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,1,2,2,2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-23/2,-7,-11,-11,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-7,-7,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-5,-19/2,-6,-10,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-36,-18,-18,-12,-35/2,-10,-12,-10,-18,-9,-10,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-21/2,-6,-7,-6,-11,-5,-6,-5,-19/2,-6,-10,-10,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-12,-19,-9,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-3,-4,-4,-11,-5,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,3/2,1,0,0,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,1,1,6,4,4,2,5/2,2,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,5,4,13/2,5,7,7,12 -10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-4,-7/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,7 -13,7,7,5,7,4,5,4,7,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,3,2,3,2,5,3,5/2,2,3,2,2,2,4,3,3,3,3,2,7/2,4,4,3,3,2,3,2,2,2,1,1,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,3,2,5/2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-8,-5,-15/2,-7,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-15/2,-5,-9,-5,-7,-7,-15,-8,-19/2,-8,-14,-9,-15,-15,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,3,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,7/2,3,4,3,7/2,4,7,4,3,2,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5/2,3,5,3,5/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,3,3,2,2,2,3,2,3,3,4,3,7/2,3,5,4,5,5,8 -12,7,7,5,7,4,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,4,4,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,3/2,2,3/2,2,3/2,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -22,11,11,8,11,7,8,6,10,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,3,2,2,1,1,1,0,0,1/2,1,2,2,3,3,4,4,6,3,3,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,3,2,2,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-8,-6,-12,-8,-12,-12,-29,-14,-14,-9,-14,-8,-10,-8,-29/2,-7,-7,-5,-9,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-6,-11,-7,-12,-12,-23,-12,-13,-9,-16,-9,-13,-12,-51/2,-14,-16,-13,-25,-17,-26,-26,-43,-21,-22,-14,-22,-12,-15,-12,-47/2,-12,-12,-8,-14,-8,-12,-11,-25,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-11,-6,-9,-8,-15,-8,-10,-8,-16,-10,-15,-15,-24,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,1,1,1,2,3,2,3,2,3,2,3,2,3,2,3,2,-1,0,0,1,1,1,2,2,3/2,1,0,0,0,0,0,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,13/2,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,15/2,4,5,4,6,4,6,5,8,5,5,4,5,3,3,3,9/2,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,2,2,2,2,7/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,7,13 -13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-5/2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-12,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,4,5/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,11/2,4,6,4,4,3,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,7/2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,5/2,2,2,2,3/2,2,5,3,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,3/2,2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1/2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,1,1,1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-13/2,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-15,-10,-16,-16,-26,-13,-13,-9,-13,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-6,-9,-9,-13,-6,-6,-4,-7,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,3/2,2,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,3,4,3,7/2,3,5,3,7/2,3,5,4,5,5,10,6,11/2,4,6,4,7/2,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,5,3,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,4,4,8 -12,6,6,9/2,6,4,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-11/2,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-5/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,9/2,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6 -20,11,11,7,10,6,6,5,7,4,4,3,7/2,2,3,3,7,4,5,4,6,4,4,4,6,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,3,4,3,3,3,9/2,4,5,5,4,3,3,2,3,2,2,2,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-14,-11,-41/2,-13,-20,-21,-38,-19,-19,-12,-37/2,-10,-12,-10,-18,-9,-10,-7,-13,-7,-10,-10,-21,-10,-10,-6,-21/2,-6,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-18,-8,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,3,2,2,2,7/2,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,6,6,14,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,4,11/2,4,5,5,10 -13,7,7,5,6,4,4,4,5,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,2,3,2,2,2,3,3,4,7/2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-8,-13,-13,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-4,-8,-5,-8,-8,-11,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 -18,9,9,6,8,5,6,5,7,4,4,3,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,4,9/2,3,5,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,3,3,2,3,3,3,2,5/2,2,4,3,9/2,4,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,3/2,2,1,1,3/2,1,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-17/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-13,-20,-20,-35,-17,-17,-11,-16,-8,-21/2,-9,-17,-8,-9,-7,-12,-7,-19/2,-9,-19,-9,-19/2,-6,-10,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-12,-12,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,4,3,5,3,4,4,7,4,9/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,4,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,3/2,2,2,1,1,1,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,4,3,4,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,2,2,2,2,5/2,3,4,3,7/2,3,5,4,5,5,9 -17,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-8,-17/2,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-35,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-11/2,-11,-6,-8,-6,-12,-8,-12,-12,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,5/2,4,3,3,3,5,4,5,5,8 -33,17,16,11,16,9,10,8,14,8,8,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,7,7,25/2,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,7,5,7,7,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,3,11/2,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-25,-12,-11,-7,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-27,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-13,-7,-9,-8,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-46,-23,-23,-15,-23,-13,-16,-13,-25,-13,-14,-10,-18,-11,-15,-14,-28,-14,-14,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-14,-13,-51/2,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-31,-15,-15,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-9,-7,-13,-9,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-17,-34,-18,-20,-15,-25,-15,-21,-20,-40,-22,-26,-21,-39,-26,-40,-40,-70,-34,-34,-22,-34,-18,-22,-19,-35,-18,-19,-13,-22,-13,-18,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-13,-15,-12,-22,-14,-21,-20,-40,-20,-20,-13,-20,-11,-14,-12,-23,-12,-13,-10,-18,-11,-16,-15,-30,-15,-16,-11,-19,-11,-16,-14,-28,-15,-18,-15,-27,-17,-25,-25,-32,-15,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-10,-8,-16,-11,-17,-17,-36,-17,-17,-11,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,6,6,12,7,8,7,11,8,11,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,31/2,8,8,5,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,5,7,7,14 -17,9,8,6,9,5,6,9/2,8,4,4,7/2,5,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,3/2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-12,-11/2,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-10,-7,-12,-7,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-35,-17,-17,-11,-17,-9,-11,-9,-17,-17/2,-9,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-6,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,6,4,4,4,6,4,6,11/2,12,6,6,4,6,4,4,4,6,7/2,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,7 -16,8,8,6,9,5,11/2,4,8,4,9/2,4,5,4,5,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,5/2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,7/2,4,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3/2,2,1,1,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-5,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-3,-5,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-4,-8,-5,-8,-8,-16,-8,-19/2,-7,-12,-7,-10,-10,-19,-10,-13,-10,-20,-13,-39/2,-20,-36,-17,-17,-11,-17,-9,-23/2,-10,-18,-9,-9,-6,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-15/2,-6,-10,-6,-9,-9,-20,-10,-19/2,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-15/2,-5,-10,-5,-7,-6,-13,-7,-8,-7,-12,-8,-12,-12,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-2,0,1/2,0,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,3,2,3,4,6,4,9/2,4,6,4,11/2,5,12,6,13/2,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,9/2,4,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1,1,6,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,3,3,4,4,7 -11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,4,5/2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-2,-1/2,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,5/2,3,2,2,2,2,2,3,3,4,3,3,5/2,4,3,4,7/2,8,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,5/2,4,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -16,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,2,1,1,0,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-9/2,-2,-4,-5,-14,-7,-7,-4,-13/2,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-4,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-8,-7,-23,-11,-12,-8,-23/2,-6,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-11/2,-3,-4,-4,-6,-3,-3,-2,-11/2,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-7,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-8,-5,-8,-8,-17,-9,-10,-7,-12,-7,-11,-10,-19,-10,-12,-10,-20,-13,-20,-20,-37,-18,-18,-12,-37/2,-10,-12,-10,-18,-9,-9,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-10,-5,-6,-5,-12,-6,-7,-5,-10,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-7,-5,-10,-6,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-14,-7,-9,-7,-25/2,-8,-12,-12,-18,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,-1,-4,-1,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,5,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,3,4,3,4,4,11,6,6,4,11/2,4,4,4,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,2,5/2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,1,3/2,2,2,2,6,4,4,3,3,2,3,3,4,3,3,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,3,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,8 -9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -11,6,6,4,5,3,4,3,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-16,-8,-15/2,-4,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-8,-5,-7,-6,-13,-7,-17/2,-7,-13,-8,-13,-13,-24,-12,-12,-8,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-11/2,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-11/2,-6,-11,-5,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,1,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,5/2,3,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,5,3,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-11,-6,-7,-6,-10,-5,-5,-7/2,-7,-4,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4 -18,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,4,3,4,3,4,4,11/2,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,1,1,1,1,2,2,2,2,7/2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-7,-6,-26,-13,-13,-8,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-9,-6,-10,-10,-15,-7,-7,-4,-7,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-7,-7,-19,-10,-11,-8,-13,-8,-11,-10,-21,-11,-14,-12,-23,-15,-22,-22,-38,-19,-19,-12,-18,-10,-13,-11,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-9,-14,-8,-10,-8,-31/2,-8,-8,-6,-12,-7,-9,-9,-18,-9,-9,-6,-11,-6,-8,-6,-25/2,-6,-8,-7,-13,-8,-13,-13,-21,-10,-9,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-9/2,-5,-7/2,-7,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1/2,0,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3 -11,6,11/2,4,6,4,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-13,-13,-21,-10,-21/2,-6,-10,-5,-7,-6,-12,-6,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-7,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,0,0,1/2,0,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,2,3,2,3,2,2,2,5/2,3,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3 -9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-16,-15/2,-8,-9/2,-7,-7/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-5/2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2 -15,8,7,5,7,4,5,4,6,3,3,3,4,3,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-33/2,-10,-16,-16,-27,-13,-12,-8,-25/2,-7,-9,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-17/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-18,-8,-8,-5,-7,-3,-4,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,1,2,2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,7/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,5/2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -13,7,13/2,5,7,4,5,4,5,3,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-15,-7,-7,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-7,-5,-8,-5,-7,-7,-13,-7,-9,-8,-14,-9,-14,-15,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-15/2,-7,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,6,4,7/2,3,4,2,5/2,2,4,3,7/2,3,5,3,4,4,6,4,7/2,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,5/2,2,4,3,3,3,3,3,4,4,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4 -13,7,6,5,7,4,4,3,5,3,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-11/2,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-13/2,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-7/2,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,3/2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,6,4,4,3,4,5/2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -24,12,12,8,12,7,8,7,11,6,6,4,5,3,4,4,11/2,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,9/2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,1,1,1,1,1,1,2,1,1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-29,-14,-14,-9,-15,-8,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-45/2,-12,-13,-9,-16,-9,-13,-13,-26,-14,-17,-15,-28,-19,-29,-29,-46,-22,-22,-15,-23,-12,-15,-13,-24,-12,-14,-10,-18,-11,-15,-14,-55/2,-13,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-10,-15,-15,-33,-16,-15,-10,-15,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-23,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-16,-30,-14,-14,-8,-12,-6,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,11,6,7,5,8,5,6,6,10,6,6,4,6,4,6,6,21/2,6,6,4,5,3,4,4,7,4,5,4,5,3,4,3,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,17/2,5,5,4,6,4,5,4,6,3,3,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,13,7,7,6,9,5,6,5,9,5,6,4,6,4,4,4,11/2,4,4,3,3,2,2,2,2,2,2,2,4,3,4,4,6 -13,7,7,5,7,4,5,4,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-13/2,-6,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-11/2,-11,-11/2,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -13,7,7,5,7,4,5,4,6,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-3/2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-13/2,-7,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-13/2,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-26,-13,-13,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-6,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,1,1,3/2,1,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,7/2,4,6,3,3,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,2,2,5/2,2,4,3,4,3,6,4,4,3,4,3,7/2,3,3,2,2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,9/2,3,5,3,4,3,5,3,7/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3 -10,5,5,4,5,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1/2,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-5/2,-4,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-9/2,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -16,9,9,6,8,5,5,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,7/2,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-3,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-17,-8,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-8,-31/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-21/2,-6,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-10,-19,-9,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,2,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,1,2,1,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,4,3,4,3,9/2,3,4,4,6,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,9/2,3,4,3,3,2,3,2,7/2,2,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,4,3,9/2,3,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3 -10,11/2,6,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -12,6,13/2,4,6,4,4,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,2,2,3/2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-6,-15/2,-6,-12,-8,-12,-12,-25,-12,-25/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,1,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,7,4,7/2,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-11/2,-7,-6,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -21,11,11,7,10,6,7,5,8,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,9/2,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,0,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,3,2,2,2,7/2,2,3,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-18,-9,-9,-5,-8,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-21,-14,-22,-22,-44,-22,-22,-14,-22,-12,-14,-12,-43/2,-11,-12,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-9,-13,-13,-22,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-21,-10,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,11/2,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,3 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-7,-4,-6,-13/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-5,-4,-8,-9/2,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-11,-5,-6,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2 -13,7,13/2,4,7,4,9/2,4,6,4,7/2,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-27/2,-14,-29,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-15/2,-8,-16,-8,-17/2,-6,-9,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-13/2,-5,-9,-5,-8,-8,-14,-6,-13/2,-4,-6,-3,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-14,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,0,0,1/2,0,4,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,6,4,7/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,5/2,3,6,4,7/2,3,3,2,2,2,3,2,2,2,2,2,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1 -11,6,6,4,6,7/2,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-21/2,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-11/2,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1 -18,9,9,6,17/2,5,6,5,7,4,4,3,9/2,3,3,3,6,4,4,2,5/2,2,2,2,4,2,2,1,1,1,1,0,1,1,1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,9/2,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-10,-4,-4,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-5,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-7,-12,-7,-11,-10,-18,-10,-12,-10,-39/2,-13,-20,-20,-43,-21,-20,-13,-20,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-10,-21,-10,-11,-7,-23/2,-6,-9,-8,-13,-7,-8,-6,-25/2,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-12,-6,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-21/2,-5,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,5,3,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,3,2,3,2,7/2,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-28,-27/2,-13,-17/2,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-14,-13/2,-7,-4,-7,-4,-5,-9/2,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-7/2,-5,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,5/2,4,5/2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1 -17,9,9,6,9,5,11/2,4,7,4,4,3,4,3,7/2,3,5,3,3,2,2,2,3/2,2,3,2,1,1,1,1,1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,3,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-5,-3,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-7,-4,-9/2,-4,-10,-5,-13/2,-5,-10,-6,-19/2,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-39/2,-20,-43,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-14,-8,-21/2,-10,-21,-10,-10,-6,-11,-6,-8,-7,-13,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,6,4,7/2,3,3,2,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,4,4,7,4,9/2,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,3,2,7/2,4,8,4,9/2,3,4,2,2,2,2,2,3/2,2,2,1,1,1,3,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1/2,0,0 -17,9,9,6,9,5,6,9/2,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,4,3,3,3,5,7/2,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-4,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-11/2,-16,-15/2,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-42,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-13,-15/2,-10,-10,-21,-10,-10,-6,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1/2,0 -32,17,17,12,17,10,12,10,18,10,10,8,12,7,9,8,15,8,9,7,10,6,8,7,12,6,6,5,7,5,6,6,12,6,6,4,5,3,3,3,4,2,2,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,3,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,4,4,6,3,3,2,2,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-6,-9,-9,-18,-9,-9,-7,-12,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-7,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-33,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-16,-16,-69/2,-17,-17,-11,-18,-9,-11,-9,-16,-8,-9,-7,-12,-7,-11,-10,-21,-10,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-11,-21,-11,-14,-11,-20,-13,-19,-19,-38,-19,-21,-16,-27,-16,-22,-21,-41,-22,-26,-21,-39,-26,-40,-40,-85,-42,-42,-28,-42,-23,-27,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-16,-14,-26,-14,-16,-13,-23,-15,-22,-22,-44,-21,-21,-14,-21,-11,-14,-12,-23,-12,-13,-10,-18,-11,-17,-17,-34,-17,-17,-12,-20,-11,-15,-13,-24,-13,-15,-13,-24,-15,-23,-22,-91/2,-22,-22,-14,-22,-12,-14,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-40,-20,-20,-13,-20,-11,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-41/2,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,4,6,4,5,5,8,5,7,7,25/2,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1 -16,9,9,6,9,6,7,6,10,6,6,9/2,7,4,5,9/2,8,9/2,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-15/2,-13,-7,-10,-10,-20,-11,-13,-10,-19,-25/2,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-10,-15/2,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-7,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-19,-9,-10,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,5/2,3,2,3,2,3,3,5,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,9,9,6,9,6,7,6,10,6,11/2,4,7,4,9/2,4,8,4,9/2,4,6,4,4,4,6,4,4,3,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,4,3,7/2,3,5,4,9/2,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-6,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-9,-19,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-39/2,-20,-42,-20,-41/2,-13,-21,-11,-27/2,-11,-21,-10,-21/2,-8,-13,-8,-11,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-22,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-15/2,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-11,-6,-7,-6,-10,-5,-11/2,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-19,-9,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,7,4,7/2,2,4,3,3,3,4,2,5/2,2,4,3,7/2,3,4,2,5/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,5/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0 -11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-28,-27/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-8,-5,-7,-6,-14,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,8,8,6,9,6,7,6,9,5,5,4,6,4,4,4,10,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,3,7,4,4,3,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-6,-19/2,-5,-6,-5,-11,-6,-7,-6,-21/2,-6,-9,-9,-20,-10,-10,-7,-25/2,-8,-11,-10,-19,-10,-12,-10,-20,-13,-21,-21,-43,-21,-20,-13,-41/2,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-12,-6,-8,-6,-11,-7,-11,-11,-23,-11,-10,-6,-21/2,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-12,-6,-7,-6,-21/2,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-11/2,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,7,4,4,3,7/2,2,3,3,4,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,2,2,3,3,4,3,5,5,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,1,2,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1/2,1,1,1,0 -10,5,5,4,5,7/2,4,4,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0 -12,6,13/2,5,6,4,9/2,4,6,4,4,3,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-27/2,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-7/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,5,3,3,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,-1 -10,11/2,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-7/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1 -17,9,8,6,8,5,5,5,8,5,5,3,4,3,3,3,10,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,2,3,3,4,4,8,5,5,3,4,2,2,2,7/2,2,2,2,2,1,1,0,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-5,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-10,-11,-8,-14,-8,-12,-10,-41/2,-11,-13,-11,-21,-13,-20,-20,-45,-22,-22,-14,-22,-12,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-25,-12,-13,-8,-13,-7,-9,-8,-29/2,-7,-8,-6,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-8,-6,-11,-7,-11,-11,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3/2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,4,3,5,5,8,4,4,3,4,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-5/2,0,0,0,0,0,-1,-1,-3 -9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-13/2,-10,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -10,5,5,3,4,3,3,3,5,3,3,2,3,2,5/2,2,6,4,7/2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-3/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-7,-11,-11,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-3,-5,-3,-11/2,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,0,1,1,1,1,1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,1,1,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,3,3,2,3,2,3/2,2,2,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -11,6,5,4,5,3,4,3,5,3,2,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,1,1,0,0,1/2,0,0,1,3,2,2,2,5/2,2,3,3,4,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-13,-6,-6,-4,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-10,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-32,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-17/2,-4,-6,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-6,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,3/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3/2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-2 -7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-5,-5,-10,-9/2,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -8,4,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,4,2,5/2,2,2,2,5/2,2,3,2,2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-23/2,-12,-27,-13,-13,-8,-13,-7,-17/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-7,-13/2,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-7,-4,-15/2,-7,-17,-8,-15/2,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,5,3,5/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,-1,0,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2 -7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-10,-21/2,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-16,-7,-7,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,0,0,1/2,1,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,1/2,0,1/2,0,1/2,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -13,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,6,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-18,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-11,-8,-15,-9,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-51,-25,-26,-17,-26,-14,-17,-13,-24,-12,-13,-10,-18,-11,-15,-14,-28,-13,-13,-9,-14,-8,-11,-10,-19,-9,-10,-8,-14,-9,-13,-13,-31,-15,-15,-10,-15,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-10,-43/2,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-31,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-5,-8,-4,-6,-6,-27/2,-6,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,11/2,4,4,3,4,3,3,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,1,1,1,1,1,1,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3 -7,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-11/2,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1 -6,3,3,3,4,3,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1/2,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-10,-5,-5,-3,-4,-2,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-13/2,-6,-11,-7,-21/2,-10,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-13/2,-6,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,5,3,5/2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,0,1,3/2,2,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1 -4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,3,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,3/2,2,3/2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1 -6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,1,4,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-18,-9,-9,-6,-17/2,-4,-6,-5,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,4,3,3,2,5/2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,5,3,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1/2,1,2,2,0,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,1,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-16,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1/2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-17/2,-9,-21,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,1,0,0,1/2,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,2,1,1/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-19,-9,-8,-5,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,0,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-7/2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,-1,1,1,1,0,-1,0,-1,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,-7,-3,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-16,-7,-7,-4,-6,-3,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-2,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-6,-25/2,-6,-8,-7,-14,-9,-15,-15,-36,-18,-18,-11,-17,-9,-11,-10,-37/2,-9,-9,-6,-10,-6,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-2,-11,-5,-5,-4,-7,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,1,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4 -3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-19,-9,-9,-11/2,-9,-5,-6,-5,-10,-9/2,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,3,3,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-8,-5,-9,-9,-22,-10,-21/2,-6,-11,-6,-7,-6,-12,-6,-11/2,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-14,-6,-13/2,-4,-7,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,0,0,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,-3,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-7/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-7,-12,-5,-5,-3,-11/2,-3,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-13,-6,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-3,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-10,-5,-6,-5,-21/2,-7,-12,-12,-31,-15,-15,-10,-31/2,-8,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-12,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,-1,0,0,0,-3/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,7,4,4,3,4,3,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,8,5,5,3,4,3,3,3,3,2,3,2,7/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,2,2,3/2,2,2,1,0,1,1,1,3/2,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-7/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-20,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-4,-6,-5/2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-13/2,-7,-13,-6,-5,-3,-6,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-7,-4,-6,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-31,-15,-15,-10,-16,-8,-21/2,-9,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-4,-11/2,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,6,4,7/2,3,4,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,8,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,5/2,2,3,2,7/2,3,5,3,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3 -4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-3,-6,-3,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-4,-3,-7,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-30,-15,-15,-10,-15,-8,-10,-17/2,-16,-8,-8,-6,-10,-6,-8,-15/2,-16,-8,-8,-5,-9,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-17,-8,-8,-11/2,-9,-9/2,-6,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-7/2,-5,-9/2,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3 -8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-2,-4,-4,-17/2,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-26,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-24,-11,-11,-7,-12,-6,-7,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-5,-10,-6,-10,-10,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-16,-13,-23,-15,-23,-23,-61,-30,-30,-20,-30,-16,-19,-15,-28,-14,-15,-11,-19,-11,-15,-14,-28,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-10,-11,-8,-13,-8,-11,-10,-19,-10,-12,-10,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-22,-10,-10,-6,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,1,0,0,12,7,7,5,8,5,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,4,13/2,4,4,3,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,5,3,3,3,4,3,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 -5,3,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-13/2,-8,-6,-11,-7,-11,-11,-30,-15,-15,-10,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3 -5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-5,-6,-2,-5/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-15/2,-6,-12,-8,-23/2,-11,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-9,-9,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-9,-6,-19/2,-10,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,3/2,1,1,1,1/2,0,7,4,4,3,5,3,4,3,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3/2,2,3/2,2,2,1,1,2,1,1,1,0,0,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,0,1,1,1,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-5/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-10,-5,-5,-3,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-13,-13,-34,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-17,-8,-8,-5,-17/2,-4,-5,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-4,-2,-9/2,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,8,4,4,3,5,3,3,3,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,0,1,1,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,9/2,3,3,2,4,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,3,6,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,0,0,0,0,1/2,1,2,2,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,2,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -2,1,1,1,2,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-4,-9,-6,-9,-9,-25,-12,-12,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-6,-4,-13/2,-7,-12,-6,-6,-4,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,7,4,7/2,3,4,3,3,2,4,2,2,2,1,1,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,1,1,2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,2,4,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,0,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-9,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-4,-6,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-7,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-41,-20,-20,-13,-20,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-9,-8,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-15,-7,-8,-6,-10,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-10,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,12,6,6,4,5,3,4,4,11/2,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,7/2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,9/2,3,3,3,4,3,4,4,5,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-7 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,3/2,2,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,2,2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 -2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-6,-3,-3,-2,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3,-3,-5,-2,-3,-2,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-11,-5,-9/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,1,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 -2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1/2,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-17/2,-8,-11/2,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,6,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,0,0,0,1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-19/2,-5,-7,-7,-16,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,5,3,3,2,7/2,2,3,2,5,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,2,2,3,3,5,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5 -1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-3,-2,-3,-1,-1,-1/2,-2,-1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-5/2,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 -1,1,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-4,-4,-9,-4,-11/2,-4,-8,-4,-6,-6,-11,-6,-7,-6,-10,-7,-11,-11,-28,-14,-14,-9,-14,-8,-19/2,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-8,-7,-15,-7,-7,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,1,1,1,9,5,11/2,4,6,4,7/2,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1/2,1,2,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4 -1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-11/2,-11,-6,-7,-6,-10,-7,-11,-10,-27,-13,-13,-17/2,-13,-7,-9,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4 -0,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-13,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-21,-55,-27,-28,-18,-28,-15,-18,-15,-28,-14,-14,-10,-17,-10,-14,-14,-55/2,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-14,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-39/2,-10,-10,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-30,-15,-15,-9,-14,-7,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,16,8,8,6,8,5,7,6,11,6,6,5,7,5,6,5,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,11/2,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,3,4,2,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-9/2,-2,-2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-9 -0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-21/2,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4 -0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-23/2,-12,-30,-15,-15,-9,-15,-8,-9,-7,-15,-7,-7,-5,-9,-5,-15/2,-7,-14,-6,-13/2,-4,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,5,3,4,4,5,3,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3 -0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-5,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2 --2,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-10,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-5,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-7,-4,-15/2,-4,-6,-5,-12,-6,-8,-7,-13,-9,-14,-14,-35,-17,-17,-11,-35/2,-9,-11,-9,-16,-8,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,11,6,6,4,6,4,5,4,6,4,4,4,11/2,4,4,4,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-1,-1,-3 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1 --2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-4,-3,-5,-5,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-7,-6,-12,-8,-12,-12,-29,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-8,-5,-8,-7,-15,-7,-15/2,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,9,5,11/2,4,6,4,4,4,6,4,7/2,3,5,4,9/2,4,7,4,4,3,3,2,3,3,4,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-9/2,-5,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-28,-27/2,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,5/2,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-19,-9,-8,-5,-8,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-22,-15,-23,-23,-55,-27,-26,-17,-26,-14,-17,-14,-51/2,-12,-13,-9,-16,-10,-15,-14,-26,-13,-13,-9,-14,-8,-11,-10,-37/2,-9,-10,-8,-14,-9,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-12,-7,-9,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,3,16,9,9,6,8,5,6,6,19/2,6,6,4,6,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-6,-11/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-30,-29/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-9,-5,-8,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-11/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-17/2,-7,-14,-9,-15,-15,-36,-18,-35/2,-11,-16,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-8,-17,-8,-17/2,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-8,-4,-11/2,-5,-10,-5,-13/2,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,2,2,3/2,2,0,1,3/2,2,2,2,2,2,11,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,5,4,5,3,4,3,4,3,4,4,5,4,11/2,5,7,4,9/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,3,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2 --4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-29,-14,-14,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,3/2,2,2,2,2,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,7/2,5,9/2,7,4,4,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 --8,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-7,-3,-4,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-19,-9,-9,-6,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-9,-6,-10,-10,-20,-9,-9,-6,-9,-5,-6,-4,-10,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-12,-6,-8,-6,-11,-7,-10,-10,-18,-9,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-14,-21,-22,-53,-26,-26,-17,-51/2,-14,-16,-13,-26,-13,-13,-9,-16,-9,-13,-12,-27,-13,-14,-9,-27/2,-8,-10,-9,-18,-9,-10,-8,-15,-9,-14,-14,-31,-15,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-8,-17,-8,-9,-6,-21/2,-6,-8,-7,-16,-8,-10,-8,-27/2,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,3/2,1,1,1,0,1,1,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,12,6,6,4,6,4,5,5,6,4,5,4,15/2,6,8,7,12,7,7,5,6,4,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,3,7,4,4,4,13/2,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,9/2,3,4,3,5,3,3,2,7/2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1/2,1,1,1,3,2,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4 --5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-13/2,-13,-7,-9,-7,-14,-9,-14,-14,-35,-17,-17,-11,-17,-9,-10,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-19/2,-10,-6,-10,-5,-7,-11/2,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-7/2,-5,-4,-10,-5,-6,-9/2,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-7,-4,-13/2,-7,-14,-7,-7,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-6,-9,-9,-20,-9,-9,-6,-10,-5,-11/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-10,-5,-6,-5,-10,-6,-19/2,-9,-18,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-43/2,-22,-52,-25,-25,-16,-26,-14,-16,-13,-25,-12,-27/2,-10,-16,-10,-27/2,-13,-26,-13,-27/2,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,3,17,9,9,6,9,6,7,6,10,6,13/2,5,7,5,6,6,12,6,13/2,4,6,4,5,5,6,4,5,4,6,5,7,7,12,6,13/2,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,9/2,4,7,4,9/2,4,6,4,6,6,10,6,13/2,5,6,4,4,3,5,3,7/2,3,4,3,7/2,3,6,3,3,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-9/2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-22,-22,-51,-25,-25,-16,-26,-14,-16,-13,-25,-12,-13,-19/2,-16,-10,-14,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-17/2,-18,-17/2,-9,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-8,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-10,-9/2,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3 --17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-15,-10,-15,-15,-61/2,-15,-16,-10,-16,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-19,-12,-19,-20,-39,-19,-18,-12,-18,-10,-12,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-30,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-11,-18,-10,-14,-13,-25,-13,-15,-12,-21,-13,-20,-19,-39,-20,-22,-16,-28,-17,-23,-22,-44,-24,-30,-25,-45,-30,-45,-45,-103,-51,-50,-33,-50,-27,-33,-28,-51,-26,-29,-21,-35,-21,-29,-28,-55,-27,-28,-19,-29,-17,-22,-19,-37,-19,-22,-17,-30,-19,-27,-26,-52,-26,-26,-17,-27,-15,-18,-15,-29,-15,-16,-11,-19,-11,-16,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,4,5,33,17,18,12,18,11,13,11,19,10,10,8,12,8,11,10,19,10,10,7,11,7,8,8,14,8,9,7,11,7,10,10,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,3,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-5,-9/2,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-19/2,-10,-15/2,-13,-8,-11,-10,-22,-12,-14,-12,-22,-14,-22,-22,-51,-25,-25,-16,-25,-13,-16,-27/2,-25,-25/2,-14,-10,-17,-10,-14,-27/2,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-9,-13,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-13/2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,17,9,10,7,10,6,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4 --8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-4,-7,-4,-15/2,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-8,-4,-5,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-15/2,-5,-8,-4,-13/2,-6,-11,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-22,-12,-29/2,-12,-22,-14,-43/2,-22,-51,-25,-25,-16,-25,-14,-33/2,-14,-25,-12,-27/2,-10,-18,-10,-29/2,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-10,-8,-15,-9,-27/2,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-3,-5,-5,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,18,10,19/2,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,5,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,7/2,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-5,-3,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-9/2,-8,-9/2,-6,-6,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-34,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-12,-13/2,-9,-9,-18,-17/2,-9,-6,-10,-5,-6,-11/2,-12,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,12,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3 --8,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-1,0,-3,-1,-1,0,0,0,0,0,2,1,1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-9,-5,-6,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-51,-25,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-35/2,-10,-15,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-15,-9,-14,-13,-25,-12,-13,-8,-13,-7,-8,-7,-14,-7,-7,-5,-19/2,-5,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,2,1,1,2,2,5/2,2,3,3,18,10,10,7,21/2,6,8,7,11,6,7,5,7,4,5,5,10,6,6,4,13/2,4,5,5,6,4,4,4,11/2,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,4,4,6,4,4,3,7/2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5 --4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-7/2,-6,-5,-12,-6,-7,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-8,-5,-8,-4,-5,-9/2,-9,-5,-6,-4,-8,-5,-7,-7,-14,-13/2,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,-1/2,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,1,1,2,2,2,2,2,2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2 --5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-9,-7,-14,-9,-14,-14,-35,-17,-33/2,-11,-17,-9,-23/2,-10,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,3,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,7/2,4,4,3,3,3,4,3,3,3,8,4,9/2,3,4,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3 --4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-29,-14,-14,-9,-14,-8,-10,-8,-14,-7,-8,-11/2,-10,-6,-8,-7,-16,-15/2,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-9/2,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,5/2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3 --8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-2,-3,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-20,-13,-20,-21,-54,-27,-27,-17,-26,-14,-18,-15,-55/2,-14,-15,-11,-19,-11,-15,-14,-29,-14,-14,-9,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-13,-27,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,18,10,10,7,11,6,7,6,11,6,6,4,6,4,5,5,10,6,6,4,6,4,4,4,13/2,4,4,3,5,4,5,5,11,6,6,4,4,3,3,3,4,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,2,2,2,2,5/2,2,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-27,-13,-14,-17/2,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-13/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,2,3,2,2,2,3,2,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 --4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-11,-29,-14,-29/2,-9,-14,-8,-19/2,-8,-14,-7,-7,-5,-10,-6,-15/2,-7,-15,-7,-7,-4,-7,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,2,2,2,2,3,2,5/2,2,10,6,6,4,7,4,9/2,4,7,4,4,3,4,3,4,3,6,4,7/2,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,7/2,2,3,2,2,2,3,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-3 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1/2,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-2 --6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-4,-2,-3,-2,-11/2,-4,-7,-7,-9,-4,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-2,0,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,0,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-7,-5,-17/2,-5,-7,-6,-11,-6,-8,-6,-25/2,-8,-12,-13,-36,-17,-17,-11,-17,-9,-11,-9,-18,-9,-9,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,2,1,1,1,2,2,3,3,12,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,9,5,5,3,7/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-4 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,7,4,4,3,5,3,4,3,5,3,3,5/2,4,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2 --4,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-8,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-10,-30,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3 --4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-19/2,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 --8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-22,-10,-10,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-55,-27,-27,-18,-28,-15,-18,-15,-28,-14,-15,-11,-18,-11,-15,-14,-53/2,-13,-13,-9,-14,-8,-10,-9,-17,-9,-11,-8,-15,-9,-13,-13,-23,-11,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-9,-5,-8,-7,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,21/2,6,5,4,5,3,4,4,6,3,3,2,3,3,4,4,12,6,6,4,5,3,3,3,4,3,3,2,2,1,1,0,-3/2,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-28,-13,-13,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,7/2,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,2,2,2,1,2,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-3,-1,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-12,-6,-11/2,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,3,2,5/2,2,2,2,2,2,8,4,9/2,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,7,4,4,3,3,2,5/2,2,2,2,3/2,1,2,1,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2 --2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,3,2,2,2,2,2,2,2,7,4,4,4,11/2,4,4,3,5,3,3,3,4,3,4,4,8,4,4,3,7/2,2,3,2,4,2,2,2,5/2,2,2,2,8,5,5,4,9/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-3 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,5,3,3,5/2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 -0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,1,1,1/2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,0,0,-1/2,-1,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,6,4,4,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,5,3,7/2,3,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,-1,-3 -0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3 --1,0,0,1,1,1,1,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,0,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-2,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-7,-9,-7,-14,-9,-14,-13,-41,-20,-21,-14,-21,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-7,-11,-10,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,1,8,5,5,3,4,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,0,1,1,1,0,0,0,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 -0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,1/2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-21/2,-11,-7,-11,-6,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,3/2,2,3/2,2,1,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 -0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,1,1,0,0,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,-1,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-25,-12,-25/2,-8,-13,-7,-8,-6,-13,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,3/2,1,5,3,5/2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-2,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 -0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,2,2,2,1,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,4,3,3,2,2,1,1,0,1,1,0,0,1/2,0,0,1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-5,-11,-7,-11,-10,-37,-18,-17,-11,-17,-9,-11,-9,-18,-9,-10,-7,-13,-7,-10,-10,-18,-9,-9,-6,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,5,3,3,3,9/2,3,3,3,5,3,3,2,3,2,3,3,7,4,3,2,3,2,2,2,4,2,2,1,1,1,1,1,4,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,2,2,5/2,2,2,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-8 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-24,-11,-11,-7,-11,-11/2,-7,-11/2,-11,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5 -0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,1,2,2,3/2,2,4,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-6,-5,-10,-6,-9,-9,-35,-17,-17,-11,-16,-8,-21/2,-8,-16,-8,-9,-7,-12,-7,-19/2,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-9,-5,-8,-8,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-13,-6,-11/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-3,-5,-5,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1/2,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,1,1,1,1,3/2,2,3,2,3/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-7 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-34,-33/2,-16,-21/2,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,2,3/2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --2,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,9/2,2,2,2,2,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-7,-7,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-19,-12,-18,-18,-69,-34,-33,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-13,-18,-17,-34,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-9,-16,-10,-16,-16,-63/2,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-26,-12,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-13,-13,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-35/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-8,-3,-3,-2,-3,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-9/2,-6,-9/2,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -0,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,-1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-2,-3,-2,-7/2,-4,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-19/2,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-8,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-6,-6,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,4,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1/2,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,-1,-2,-2,-6,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,2,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5 -1,1,2,2,3/2,2,2,1,2,2,2,2,3/2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,2,5/2,2,3,3,4,2,2,2,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,2,3,2,1,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,3,2,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-6,-3,-3,-2,-5/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-6,-5,-19/2,-6,-10,-10,-34,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-8,-8,-16,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-14,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,2,1,1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8 -1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,3/2,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 -1,1,3/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,0,1,3/2,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,3,2,3/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-5,-2,-7/2,-3,-7,-4,-6,-6,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,2,2,3,2,3,2,2,2,2,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,0,-2,-1,-2,-2,2,2,3/2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6 -1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-3/2,-4,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,3/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,3,4,4,4,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,1,1,3/2,2,2,1,1,0,-1,-1,2,1,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,-2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,3/2,1,1,1,0,0,0,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3/2,2,2,2,2,1,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-36,-17,-17,-11,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,1/2,0,0,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 -0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,1,2,1,1,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,2,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,4,2,5/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,1,1,3/2,2,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 --2,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,0,1,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,1,0,-1/2,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,2,2,-2,0,0,0,-1,0,0,1,2,1,1,1,3/2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,1,1,-5,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-4,-15/2,-4,-7,-7,-27,-13,-12,-8,-25/2,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-5,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,3/2,1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,1,1,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8 --1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-16,-15/2,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 --1,0,0,1,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-13/2,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,0,0,1/2,0,1,1,1/2,1,2,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,3/2,1,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-5/2,-2,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7 --1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,1/2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-22,-10,-10,-7,-11,-11/2,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-2,-4,-3,-5,-4,-11,-5,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,1,1,1,1,1/2,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7 --3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,5,3,4,4,6,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,1,3/2,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-19/2,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-44,-22,-22,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-22,-10,-10,-6,-9,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-21/2,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-8,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 --1,0,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-3/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-22,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 --2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-1,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,1,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,1,1,1,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,-2,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-4,-3/2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,2,2,2,3/2,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,2,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,1,0,0,1,1,0,0,-1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-27,-13,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-4,-15/2,-5,-8,-7,0,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-8,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-16,-7,-7,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,0,1,3/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-13/2,-6,-22,-10,-21/2,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,3/2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-20,-19/2,-10,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-3,-7 --4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,1,1,1,1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-22,-11,-11,-7,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-5,-10,-7,-11,-11,-38,-19,-19,-13,-20,-10,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-7,-6,-21/2,-5,-6,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,7/2,2,3,3,4,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-12,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-20,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 --2,0,-1/2,0,-1,0,1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,5/2,3,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,-1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-13/2,-7,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-13/2,-5,-9,-5,-13/2,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,2,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7 --5,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,1,1,1,1,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,3,2,2,1,1/2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-23,-11,-10,-6,-10,-5,-7,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-5,-21/2,-6,-10,-10,-37,-18,-18,-12,-35/2,-9,-11,-9,-18,-9,-10,-7,-25/2,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-10,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,7/2,3,4,3,5,3,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,2,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 --3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-13/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-3/2,0,-2,-1,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-35/2,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-19/2,-9,-18,-9,-19/2,-6,-10,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-9,-20,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,7/2,2,3,2,7/2,4,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1/2,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1/2,-2,-1,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-6,-10,-5,-6,-11/2,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,4,5/2,3,2,3,3,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 --10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-7,-7,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-5,-10,-6,-9,-9,-37/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-45,-22,-22,-14,-21,-11,-13,-10,-19,-9,-10,-7,-11,-7,-10,-9,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-9,-8,-15,-8,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-16,-9,-12,-10,-20,-11,-14,-11,-21,-14,-21,-21,-74,-37,-37,-24,-37,-20,-25,-21,-38,-19,-20,-14,-24,-14,-20,-19,-37,-18,-19,-13,-20,-11,-14,-12,-24,-13,-15,-12,-22,-14,-21,-21,-42,-21,-21,-13,-20,-11,-13,-10,-19,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-33,-16,-15,-10,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-10,-8,-16,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-9,-15,-8,-11,-10,-19,-10,-13,-11,-21,-14,-21,-21,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-1,0,0,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-12,-25 --4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-37,-18,-18,-12,-18,-10,-12,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-17/2,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-15/2,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-13/2,-10,-10,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-22,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-7,-4,-11/2,-5,-9,-5,-6,-5,-10,-6,-10,-10,-38,-18,-18,-12,-18,-10,-12,-10,-19,-9,-19/2,-7,-12,-7,-10,-9,-18,-8,-17/2,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-4,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-10,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3,3,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,0,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,1,1,1,0,1,2,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-11/2,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-13/2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 --3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-22,-10,-10,-7,-11,-5,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-4,-5,-5,-8,-4,-5,-5,-10,-6,-10,-10,-39,-19,-19,-12,-35/2,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-9,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-5,-4,-10,-5,-7,-6,-11,-7,-11,-11,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-5/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-4,-6,-6,0,0,0,1,3/2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6 --2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-16,-7,-7,-4,-7,-3,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,1,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8 --1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1/2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-13,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,0,0,1/2,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-25,-12,-12,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-42,-20,-20,-13,-20,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,-2,-1,-1,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,0,0,0,0,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-5,-5,-11 --1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-3/2,-2,-2,0,0,0,0,0,0,0,0,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,-3,-1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-14,-6,-13/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6 --1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4 --2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,0,0,0,1,3/2,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-1,0,-1,0,-3/2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1/2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-13,-8,-25/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,-1,0,0,0,1/2,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,2,1,1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-16,-7,-7,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-11,-6,-7,-6,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,-1,0,0,1,0,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-7 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-4,-4,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,-1,-2,-2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,3/2,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-3,-1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,-1,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-30,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-48,-24,-24,-16,-24,-13,-15,-12,-23,-11,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-5,-9,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,7/2,2,2,1,0,1,1,1,0,1,1,1,2,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-1,0,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-16 --3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-24,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-3/2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8 --4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,3,2,1,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-5/2,-2,-1,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-5,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-25,-12,-25/2,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-11/2,-4,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-7,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,1,1,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-7/2,-4,-8 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-9/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-28,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-19/2,-6,-8,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,-1,0,0,0,-1,0,1,1,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,1,1,1,1,3/2,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,1,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1/2,0,-1,-1,-1,-1,-2,-2,-7/2,-2,-4,-4,-9 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,1/2,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,-1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,2,2,2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-13,-6,-6,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-9/2,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,3/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5 --9,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,0,-1,3,2,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-6,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-21,-10,-10,-6,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-37,-18,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,0,0,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1/2,0,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --5,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-13,-6,-11/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-9/2,-4,-23,-11,-11,-7,-11,-6,-15/2,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-11/2,-5,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,0,1,0,-1/2,0,-3,-1,-1,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-4,-3,3,2,2,2,5/2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-6,-18,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-14,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-34,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-6,-23/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-5,-8,-8,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-8,-8,-11,-5,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,0,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7 --4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,-1/2,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-22,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-5,-5,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 --7,-3,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-17,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-17/2,-8,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,0,1,2,2,3/2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,-3/2,-1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-5/2,-2,-6 --6,-5/2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-10,-9/2,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-15/2,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6 --13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-3,-3,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-36,-17,-17,-11,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-17,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-17,-17,-11,-17,-9,-11,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-66,-32,-32,-21,-33,-18,-21,-17,-31,-16,-17,-12,-20,-12,-17,-16,-32,-16,-16,-11,-17,-9,-12,-10,-20,-11,-13,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-33,-16,-15,-10,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-45/2,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-12,-19,-19,-27,-13,-14,-9,-15,-8,-10,-8,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-3,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 --6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,2,2,2,2,2,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-10,-16,-8,-10,-8,-15,-15/2,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-15/2,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-13,-6,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7 --6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-34,-16,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-17/2,-9,-14,-7,-7,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-3,-4,-5/2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-23,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,3,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,2,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,0,0,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-1,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-5,-20,-9,-9,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-6,-36,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-17,-8,-8,-5,-8,-4,-6,-5,-7,-3,-4,-3,-11/2,-3,-4,-3,-10,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-14,-7,-7,-4,-15/2,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-8 --3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 --5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,4,2,2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-5,-3,-4,-4,-26,-13,-13,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 --4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,0,0,-1,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,1,1,1/2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-25,-12,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-5,-43,-21,-20,-13,-20,-11,-13,-11,-20,-10,-11,-7,-12,-7,-10,-10,-19,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-4,-11,-5,-5,-4,-7,-4,-6,-5,-19/2,-5,-6,-5,-9,-6,-10,-10,-20,-9,-9,-6,-9,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-5,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,1,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-23,-11,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-11,-5,-11/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3 --9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,1,1,1,1,0,0,5,3,3,2,7/2,2,3,3,5,3,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-37,-18,-18,-12,-18,-9,-11,-9,-17,-8,-8,-6,-21/2,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,1,1,-1,0,0,0,-1/2,0,0,1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,-3,-1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6 --6,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-9/2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-23,-11,-11,-7,-11,-6,-7,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4 --9,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-3,-5,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-15/2,-7,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-4,-4,-34,-16,-16,-10,-17,-9,-11,-9,-16,-8,-17/2,-6,-9,-5,-7,-7,-15,-7,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-17/2,-8,-19,-9,-9,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6 --8,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-33,-16,-16,-10,-16,-17/2,-10,-8,-15,-15/2,-8,-11/2,-9,-5,-7,-7,-14,-13/2,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-13/2,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-7 --17,-8,-8,-5,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,13/2,4,4,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-8,-8,-31/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-39/2,-10,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-15,-14,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-18,-12,-18,-18,-36,-18,-18,-12,-18,-10,-12,-9,-17,-9,-10,-7,-12,-7,-9,-8,-33/2,-8,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-67,-33,-32,-21,-32,-18,-22,-18,-33,-16,-17,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-19,-12,-17,-17,-36,-18,-18,-12,-19,-10,-12,-10,-18,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-11,-25,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-21/2,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-9,-7,-14,-9,-14,-13,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-7,-3,-2,-1,-1,0,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-15 --8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-12,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-34,-33/2,-16,-21/2,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,3,2,2,2,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-4,-8,-5,-15/2,-8,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-36,-18,-35/2,-12,-17,-9,-11,-9,-18,-9,-19/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-8 --7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-11/2,-6,-7/2,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-26,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --13,-6,-5,-3,-9/2,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-23,-11,-12,-8,-23/2,-6,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-16,-7,-7,-4,-15/2,-4,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-42,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-12,-8,-27/2,-8,-11,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-24,-12,-12,-8,-12,-6,-8,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8 --8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-14,-13/2,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-9,-4,-4,-5/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --11,-5,-9/2,-2,-4,-2,-2,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-4,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7 --10,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-19/2,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-18,-17/2,-8,-5,-8,-4,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --19,-9,-8,-5,-8,-4,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-7,-8,-6,-12,-8,-13,-13,-30,-15,-15,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-17,-8,-9,-6,-10,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-8,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-21,-10,-11,-8,-13,-7,-10,-9,-37/2,-10,-12,-10,-19,-12,-19,-19,-36,-18,-18,-11,-17,-9,-10,-8,-33/2,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-9,-24,-11,-11,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-10,-10,-64,-31,-31,-21,-32,-17,-20,-17,-63/2,-16,-16,-11,-19,-11,-16,-15,-29,-14,-15,-10,-17,-9,-12,-10,-39/2,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-16,-9,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-13,-13,-29,-14,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-12 --10,-9/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-9/2,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-15/2,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,2,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-20,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-8,-7,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-11,-6,-7,-6,-10,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-42,-20,-41/2,-13,-21,-11,-13,-11,-20,-10,-10,-7,-12,-7,-21/2,-10,-20,-9,-9,-6,-11,-6,-8,-6,-12,-6,-15/2,-6,-12,-7,-10,-10,-21,-10,-21/2,-6,-10,-5,-13/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,1/2,1,0,0,1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8 --9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-34,-16,-16,-21/2,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-17/2,-5,-8,-9,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-17/2,-5,-8,-8,-15,-7,-8,-6,-19/2,-6,-8,-8,-14,-7,-9,-7,-14,-9,-14,-14,-30,-14,-14,-9,-29/2,-8,-9,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-9,-5,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-16,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-13,-13,-9,-14,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-11,-8,-27/2,-8,-11,-10,-18,-9,-11,-9,-35/2,-12,-18,-18,-38,-19,-19,-12,-18,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-16,-8,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-23/2,-8,-12,-12,-25,-12,-12,-8,-23/2,-6,-7,-6,-13,-6,-7,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-10,-61,-30,-30,-20,-61/2,-16,-20,-17,-30,-15,-16,-12,-39/2,-12,-16,-15,-30,-15,-15,-10,-33/2,-9,-11,-10,-20,-10,-12,-9,-33/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-18,-9,-10,-7,-25/2,-7,-10,-9,-17,-8,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-7,-6,-11,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-25/2,-8,-13,-13,-29,-14,-14,-9,-27/2,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,1,1,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-11 --11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-11/2,-14,-6,-6,-4,-7,-7/2,-5,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-5,-8,-9,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-40,-20,-20,-13,-20,-21/2,-13,-11,-20,-10,-10,-15/2,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-12,-6,-11/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-19/2,-8,-15,-10,-15,-15,-31,-15,-29/2,-9,-14,-8,-19/2,-8,-15,-7,-15/2,-6,-9,-5,-15/2,-7,-15,-7,-8,-5,-9,-5,-13/2,-6,-11,-5,-6,-5,-9,-6,-17/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-27/2,-14,-28,-13,-13,-9,-15,-8,-19/2,-8,-16,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-10,-6,-9,-9,-17,-8,-17/2,-6,-9,-5,-7,-6,-13,-6,-15/2,-6,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-23/2,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-17/2,-6,-10,-5,-7,-7,-13,-6,-15/2,-6,-11,-7,-21/2,-10,-23,-11,-11,-7,-12,-6,-15/2,-6,-10,-5,-6,-4,-8,-4,-13/2,-6,-14,-6,-6,-4,-8,-5,-7,-6,-13,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-25/2,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-8,-8,-15,-7,-15/2,-5,-9,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-59/2,-20,-30,-16,-20,-17,-31,-16,-33/2,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-23/2,-10,-20,-10,-23/2,-9,-16,-10,-31/2,-15,-31,-15,-16,-10,-16,-8,-21/2,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-18,-9,-19/2,-6,-10,-5,-13/2,-6,-13,-7,-8,-6,-10,-6,-19/2,-10,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-13/2,-6,-12,-6,-13/2,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-15/2,-9,-8,-15,-7,-8,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-6,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-11,-8,-13,-15/2,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-12,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-7,-7,-13,-7,-8,-6,-11,-7,-11,-11,-23,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-9/2,-7,-6,-14,-13/2,-7,-9/2,-8,-5,-7,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-11,-11/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-30,-20,-30,-16,-20,-17,-31,-31/2,-16,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-16,-10,-16,-15,-31,-15,-15,-10,-16,-8,-10,-9,-17,-17/2,-9,-7,-12,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-5,-7,-7,-15,-8,-9,-7,-13,-8,-13,-13,-27,-14,-15,-11,-19,-11,-16,-15,-29,-16,-20,-17,-32,-21,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-13,-22,-13,-18,-17,-33,-16,-17,-12,-19,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-37,-18,-18,-12,-20,-11,-13,-11,-20,-10,-12,-10,-18,-11,-16,-15,-31,-15,-16,-12,-20,-12,-16,-15,-29,-16,-20,-16,-30,-20,-30,-30,-61,-30,-30,-19,-29,-16,-19,-16,-29,-15,-16,-11,-18,-11,-15,-14,-28,-14,-14,-10,-17,-10,-13,-11,-22,-11,-13,-10,-19,-12,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-8,-15,-9,-14,-13,-27,-14,-15,-11,-19,-11,-15,-14,-29,-16,-20,-16,-30,-20,-30,-31,-127/2,-31,-30,-20,-30,-16,-18,-15,-27,-13,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-11,-7,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-18,-9,-10,-7,-12,-7,-11,-11,-23,-12,-15,-12,-21,-14,-22,-22,-122,-60,-60,-40,-61,-33,-40,-34,-62,-32,-34,-24,-40,-24,-34,-32,-63,-32,-33,-22,-35,-20,-25,-22,-41,-22,-25,-20,-36,-23,-35,-34,-68,-34,-34,-22,-33,-18,-22,-19,-35,-18,-20,-15,-25,-16,-23,-22,-44,-22,-24,-17,-27,-16,-21,-18,-35,-19,-22,-18,-34,-22,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-17,-11,-18,-10,-14,-13,-26,-14,-16,-13,-23,-14,-21,-20,-41,-20,-20,-14,-22,-12,-15,-13,-24,-13,-15,-12,-21,-13,-18,-18,-36,-18,-19,-14,-23,-14,-20,-19,-38,-21,-25,-21,-39,-26,-40,-40,-81,-40,-41,-27,-41,-23,-28,-23,-42,-21,-22,-16,-26,-16,-22,-20,-39,-19,-20,-14,-24,-14,-18,-16,-31,-16,-19,-15,-26,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-24,-12,-14,-11,-19,-12,-17,-16,-33,-16,-17,-12,-21,-12,-15,-14,-27,-14,-16,-12,-22,-14,-22,-22,-44,-22,-22,-15,-23,-12,-15,-13,-24,-12,-13,-9,-16,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,4,7,4,3,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --17,-8,-8,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-8,-10,-8,-14,-9,-14,-14,-30,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-8,-15,-19/2,-14,-15,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-11/2,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-17,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-15/2,-11,-10,-22,-11,-12,-8,-13,-7,-10,-17/2,-17,-9,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-13/2,-10,-11/2,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-11,-13/2,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-40,-20,-20,-13,-20,-11,-13,-11,-20,-10,-10,-15/2,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-7,-12,-6,-8,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-19/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-8,-5,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-8,-4,-11/2,-4,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-15/2,-6,-10,-6,-15/2,-7,-14,-8,-19/2,-8,-14,-9,-29/2,-14,-30,-15,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-5,-4,-9,-4,-11/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-9,-8,-15,-10,-29/2,-14,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,3,2,3,2,3,3,4,4,7,4,7/2,3,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,2,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-33/2,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-23/2,-9,-17,-11,-33/2,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-8,-23/2,-10,-22,-11,-12,-8,-13,-7,-19/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-19/2,-6,-10,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-19/2,-9,-19,-10,-13,-10,-19,-12,-39/2,-20,-41,-20,-20,-13,-20,-11,-13,-11,-20,-10,-21/2,-8,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-17/2,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-23/2,-7,-12,-6,-15/2,-6,-11,-6,-13/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-21/2,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-12 --11,-5,-5,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-40,-19,-19,-13,-20,-21/2,-13,-11,-20,-10,-11,-15/2,-13,-15/2,-10,-19/2,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-11/2,-7,-6,-12,-11/2,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-12,-6,-6,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-9/2,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-4,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7 --17,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-10,-8,-31/2,-10,-15,-15,-32,-15,-15,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-9,-9,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-14,-9,-15,-15,-32,-16,-16,-10,-29/2,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-13,-6,-6,-4,-15/2,-4,-5,-5,-11,-6,-7,-5,-19/2,-6,-8,-7,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-7,-7,-13,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-32,-16,-16,-10,-29/2,-8,-9,-7,-14,-7,-7,-5,-17/2,-5,-7,-6,-14,-7,-7,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,4,2,2,2,7/2,3,4,4,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-5,-21/2,-6,-10,-10,-60,-30,-30,-20,-59/2,-16,-20,-17,-31,-15,-16,-12,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-12,-9,-16,-10,-16,-16,-33,-16,-16,-10,-33/2,-9,-11,-10,-19,-9,-10,-7,-25/2,-8,-11,-11,-21,-11,-12,-8,-27/2,-7,-9,-8,-18,-9,-11,-8,-31/2,-10,-14,-14,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-23/2,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-6,-21/2,-6,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-41,-20,-20,-13,-41/2,-11,-14,-11,-21,-11,-12,-8,-14,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-25/2,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-6,-21/2,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,5/2,2,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,1,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,1,2,2,2,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3/2,1,0,0,2,2,2,2,3/2,2,2,2,3,2,1,1,1,1,0,0,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11 --9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,1/2,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-6,-11,-11/2,-6,-4,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-15/2,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-6,-6,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-4,-13/2,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-6,-4,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,1,-2,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-40,-19,-19,-12,-19,-10,-13,-11,-20,-10,-11,-8,-14,-8,-21/2,-10,-20,-10,-10,-6,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-21/2,-7,-11,-6,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-13/2,-5,-10,-6,-19/2,-9,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-6,-4,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-8,-4,-5,-4,-6,-4,-6,-6,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-13/2,-6,-12,-6,-17/2,-7,-13,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,4,3,3,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,2,2,2,2,1,1,1/2,1,1,1,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8 --9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-17/2,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-16,-33,-16,-16,-10,-16,-9,-11,-9,-18,-9,-10,-7,-11,-7,-10,-9,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-32,-16,-16,-10,-15,-8,-10,-8,-31/2,-8,-8,-6,-10,-5,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-21/2,-5,-6,-5,-10,-6,-9,-8,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-11,-5,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-34,-17,-17,-11,-16,-8,-10,-8,-29/2,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,3/2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,3,4,4,8,4,4,3,5,3,2,2,5/2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-6,-12,-7,-11,-11,-59,-29,-30,-20,-30,-17,-21,-17,-32,-16,-16,-11,-19,-11,-15,-14,-29,-14,-15,-10,-16,-9,-12,-10,-19,-10,-11,-8,-15,-10,-15,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-9,-10,-7,-13,-8,-11,-10,-22,-11,-11,-7,-12,-7,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-11,-9,-33/2,-8,-8,-6,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-12,-6,-8,-7,-29/2,-7,-8,-6,-11,-7,-10,-10,-17,-9,-10,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-18,-12,-19,-19,-41,-20,-20,-13,-20,-11,-14,-12,-45/2,-11,-12,-9,-15,-8,-11,-10,-18,-9,-10,-7,-12,-6,-8,-7,-29/2,-8,-9,-7,-14,-9,-13,-12,-24,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-3,-1,0,1,1,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,1/2,1,1,1,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-21,-10,-10,-6,-10,-5,-7,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,3/2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-4,-2,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-13/2,-7,-19,-9,-19/2,-6,-9,-4,-11/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,3,5,3,7/2,3,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-5,-10,-6,-21/2,-10,-22,-10,-21/2,-6,-11,-6,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,2,2,1,1,2,2,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,4,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-7 --6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-5/2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-14,-7,-7,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-24,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-9/2,-8,-15/2,-16,-15/2,-8,-9/2,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --10,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-20,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-7,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-15,-7,-7,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-23/2,-6,-7,-5,-11,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,-1,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-4,-5,-4,-15/2,-4,-7,-7,-41,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-11,-8,-25/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-11,-7,-11,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-7,-5,-17/2,-4,-6,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-12,-8,-25/2,-7,-9,-7,-16,-8,-8,-6,-10,-5,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,0,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,3/2,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,1,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-6,-7/2,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-25,-12,-12,-15/2,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-7/2,-7,-5,-8,-8,-16,-15/2,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-4,-11/2,-4,-9,-4,-7/2,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-21,-10,-9,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3,3,6,3,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3,3,0,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-35,-17,-16,-10,-17,-9,-11,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-7,-11,-11,-22,-11,-11,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3/2,1,2,1,1/2,0,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,1,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-14,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-32,-31/2,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-4,-3,-6,-4,-6,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 --15,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-16,-10,-15,-15,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-10,-7,-11,-11,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-9,-5,-7,-7,-15,-8,-9,-8,-15,-10,-15,-14,-30,-14,-14,-9,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-8,-8,-31/2,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-24,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-38,-18,-18,-11,-17,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-35/2,-8,-8,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1/2,1,2,2,2,2,3,3,4,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-63,-31,-30,-19,-29,-15,-18,-15,-28,-14,-16,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-18,-11,-17,-17,-32,-15,-15,-10,-15,-8,-10,-9,-17,-8,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-7,-12,-7,-10,-9,-18,-10,-12,-9,-17,-11,-16,-16,-33,-16,-16,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-10,-10,-43/2,-10,-11,-8,-14,-8,-11,-11,-22,-12,-15,-12,-22,-14,-20,-20,-41,-20,-20,-13,-20,-11,-13,-10,-18,-9,-10,-8,-14,-8,-12,-11,-45/2,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-6,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-5/2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,2,2,2,1,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-13/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,2,2,3,5/2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-31,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-16,-8,-8,-9/2,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-7,-4,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-5 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-15/2,-8,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,4,3,4,3,5,3,3,2,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-32,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-8,-4,-9/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-11,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-11/2,-6,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,2,2,3/2,2,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1/2,0,1,1,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,1,3,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-2,-3,-3,-6 --5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,1,3,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-4,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,2,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,1,2,2,2,2,7/2,3,4,4,6,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,7/2,3,4,3,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-5,-34,-16,-16,-10,-31/2,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-7,-3,-4,-3,-9,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-11,-6,-8,-6,-23/2,-8,-12,-12,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,4,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 --4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-19,-9,-9,-5,-9,-9/2,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,0,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3,3,5,3,5/2,2,3,2,3/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,3/2,2,0,0,1/2,1,0,0,1/2,1,0,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,2,1,1,0,1,0,0,0,1/2,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-6 --10,-5,-5,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-6,-5,-9,-6,-10,-10,-25,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-8,-8,-26,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,0,1,1,1,1,3/2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,7/2,2,3,2,3,2,3,4,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-40,-19,-19,-12,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-3,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-13,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-25,-12,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,4,2,2,2,2,2,3,3,9/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-13 --5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-21,-10,-10,-6,-9,-5,-6,-9/2,-9,-4,-4,-5/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-6,-5,-15,-7,-15/2,-4,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-16,-8,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-23,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-5,-3,-4,-4,-13,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-5,-7,-3,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,2,2,3/2,2,2,2,3/2,1,3,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3/2,1,1,2,3/2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-6 --9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-23,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,-1,0,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,0,1,1,1,2,2,2,3,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-31,-15,-15,-10,-31/2,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-6,-5,-8,-4,-4,-4,-15/2,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-7,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,7/2,3,4,3,5,3,3,2,7/2,2,3,3,3,2,2,2,7/2,3,4,4,2,2,2,2,5/2,2,1,1,3,2,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-19,-9,-9,-6,-10,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-5,-3,-5,-4,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-3,-7 --8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-28,-14,-27/2,-9,-14,-7,-17/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-13/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-11,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,7/2,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-5/2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-4,-2,-2,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-5/2,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,-1/2,-1,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-9,-8,-15,-10,-15,-15,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-33/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-40,-20,-20,-13,-20,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-11,-23,-11,-12,-8,-13,-7,-10,-9,-17,-8,-9,-7,-13,-8,-12,-11,-45/2,-11,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-44,-22,-22,-15,-23,-13,-16,-13,-25,-12,-13,-10,-17,-10,-13,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-9,-37/2,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-9,-4,-4,-2,-3,-1,0,1,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-54,-26,-26,-17,-26,-14,-17,-13,-24,-12,-13,-9,-16,-9,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-41/2,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-59/2,-14,-14,-10,-16,-9,-11,-10,-20,-10,-11,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-11,-23,-12,-15,-12,-21,-14,-22,-22,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-10,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-9,-9,-6,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-6,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,1,1,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-11/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 --8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-10,-6,-10,-5,-6,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1/2,-4,-2,-2,-1/2,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-15,-7,-8,-5,-7,-7/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-10,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-19/2,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-12,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1/2,1,-4,-2,-3/2,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-6,-11,-6,-7,-5,-10,-6,-21/2,-10,-15,-7,-15/2,-5,-7,-4,-9/2,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,4,3,3,3,5,3,7/2,3,4,3,9/2,4,1,1,1,1,2,2,2,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-5,-3,-5,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,1,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-10,-9/2,-4,-3,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-5,-4,-17/2,-5,-8,-8,-9,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,3,3,4,2,2,1,1,1,2,2,1,1,1,1,3/2,2,2,1,2,2,2,1,1/2,0,0,1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-28,-13,-13,-8,-13,-7,-9,-7,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-7,-16,-7,-7,-4,-15/2,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-11,-6,-7,-6,-23/2,-7,-11,-11,-17,-8,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-3,-3,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,5/2,2,3,3,4,3,4,3,5,4,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-11/2,-5,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,0,0,0,0,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,2,2,2,1,2,2,2,2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-11/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,4,3,3,3,0,0,0,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 --3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,1/2,2,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,5/2,3,3,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-7,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-24,-11,-11,-7,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-16,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9/2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-31,-15,-15,-10,-15,-8,-10,-8,-14,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-19/2,-5,-6,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-6,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,1,1,0,-3/2,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,2,3,2,3,3,5,3,4,3,4,3,5,5,-1,0,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-6,-2,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,0,2,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-9,-6,-9,-8,-17 --2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9 --2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,2,2,3/2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-10,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-5,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,5/2,2,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-5/2,-1,-2,-3,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,1,0,0,0,0,1/2,1,2,2,3,2,2,2,7/2,2,3,3,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-14,-7,-7,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,2,2,2,3/2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,9/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-11,-5,-5,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-5,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-39,-19,-20,-13,-20,-11,-13,-11,-20,-10,-10,-7,-11,-6,-9,-8,-35/2,-8,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-22,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,3,5,3,3,3,5,4,5,4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-22 --2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-18,-8,-17/2,-6,-9,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,0,0,-4,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-7,-3,-4,-3,-7,-4,-7,-7,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,-4,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 --1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-3,-6,-2,-2,-1,-5/2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-20,-9,-9,-6,-10,-5,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,-6,-2,-2,-2,-7/2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-13/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,0,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-6,-5/2,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7 --3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-6,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-3,-1,-1,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-7/2,-4,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-6,-4,-7,-7,-8,-4,-7/2,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-10 --3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-5/2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-16,-15/2,-8,-9/2,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 --6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-6,-29,-14,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,0,0,1,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,1,1,2,2,3,2,3,2,7/2,2,2,2,3,3,4,4,-12,-6,-6,-3,-5,-2,-2,-1,-3/2,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-31,-15,-15,-10,-15,-8,-10,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-5,-4,-15/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-14,-9,-13,-13,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,0,0,0,1,1,1,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20 --3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11 --3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,-7,-3,-7/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,0,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-4,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-8,-4,-4,-3,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14 --2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-12 --4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-2,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-9/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-28,-14,-14,-9,-27/2,-7,-8,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,5/2,2,2,2,4,3,4,3,9/2,3,4,5,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-11/2,-3,-5,-4,-7,-3,-4,-4,-15/2,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-8,-7,-13,-7,-8,-6,-25/2,-8,-12,-12,-11,-5,-5,-4,-13/2,-3,-4,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,0,0,0,0,0,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-7/2,-7,-4,-7,-7,-15 --4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-6,-6,-28,-14,-27/2,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-11/2,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,5/2,2,2,2,2,3,4,3,7/2,3,6,4,11/2,6,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-11,-7,-11,-11,-23 --5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-9/2,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-7/2,-7,-9/2,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,6,4,6,6,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-11,-7,-11,-11,-23 --11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-7,-15,-8,-10,-8,-15,-10,-16,-16,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-12,-12,-59,-29,-29,-19,-28,-15,-19,-16,-30,-15,-17,-13,-22,-13,-18,-17,-34,-17,-17,-11,-18,-10,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-20,-10,-10,-7,-12,-7,-11,-10,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,5,5,9,6,9,10,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-53,-26,-26,-17,-25,-14,-17,-14,-27,-13,-14,-10,-17,-10,-13,-12,-23,-11,-12,-8,-12,-7,-9,-9,-18,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-11,-9,-18,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-9,-12,-11,-21,-11,-12,-10,-18,-11,-17,-17,-36,-17,-17,-11,-18,-9,-11,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-11,-14,-12,-22,-15,-23,-23,-21,-10,-11,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-10,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-13,-9,-16,-9,-12,-11,-23,-12,-15,-13,-24,-15,-23,-23,-46 --5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,3,5/2,3,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-10,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-26,-12,-12,-8,-12,-13/2,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-10,-9/2,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-9/2,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --5,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-7/2,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-15/2,-6,-11,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,2,2,4,3,7/2,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-26,-12,-12,-8,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-4,-9,-4,-5,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-3,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 --5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-5,-29,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,11/2,4,5,5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-26,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-16,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-11,-11,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3,2,1,1,1,1,1,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,2,2,0,0,0,1,3/2,2,2,2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-21/2,-7,-11,-11,-22 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-4,-7/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,2,2,2,2,1,1,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,3/2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,5/2,2,4,3,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-9/2,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,1,1,1,0,0,0,0,0,0,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 --2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-5,-5,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-7/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-15/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,3/2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-8,-31/2,-8,-9,-7,-12,-7,-9,-9,-17,-8,-8,-6,-10,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,4,4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-13,-6,-6,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-26,-12,-12,-8,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-17,-8,-8,-5,-9,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-5,-10,-6,-10,-11,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-6,-12,-6,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-7,-11,-11,-23 --1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-1,-5,-2,-5/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-15,-7,-15/2,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,5/2,2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-13 --1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-4,-3/2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --2,-1,-1,0,0,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-13,-6,-6,-4,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-1,-1,-1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-3,-3,-6,-5/2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-5/2,-4,-4,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,0,0,1/2,0,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,0,0,1/2,1,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,0,1,1,1,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-3/2,-1,-2,-1,-3,-3,-15,-7,-15/2,-5,-8,-4,-6,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-9/2,-4,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1/2,0,0,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-43/2,-10,-11,-7,-12,-7,-9,-9,-18,-9,-10,-7,-13,-8,-13,-12,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-8,-33,-16,-16,-10,-15,-8,-10,-9,-17,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-7,-4,-7,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-9,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,-1/2,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-9/2,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-3/2,-1,-4,-2,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12 -0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -0,1,1,1,1/2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,1,1,1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-3,-4,-4,1,1,0,0,1/2,0,0,0,1,1,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,-5,-2,-3,-2,-4,-2,-3,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-10,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13 -0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-12,-11/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-7 -0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,2,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-17,-8,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,3,2,2,2,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,3,2,2,2,2,2,2,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-19,-9,-9,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,3/2,1,1,1,1,1,1,0,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-2,-29,-14,-13,-8,-13,-7,-8,-6,-21/2,-4,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,1,1,1,4,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-18 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-18,-8,-8,-5,-8,-4,-9/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-3/2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-11/2,-6,-12 -0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,0,1,1,1,0,1/2,0,1/2,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10 --2,-1,-1,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-4,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,2,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-28,-13,-12,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-8,-8,-5,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-16,-8,-15/2,-5,-8,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-4,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-26,-12,-25/2,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-11/2,-6,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-5/2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-7/2,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-26,-12,-12,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 --8,-3,-3,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,7,4,4,3,4,2,2,2,2,1,1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-37,-18,-18,-12,-19,-10,-13,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-11,-8,-14,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-53,-26,-26,-17,-26,-14,-17,-14,-26,-13,-15,-11,-18,-10,-14,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-12,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-8,-8,-35/2,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-11,-23,-11,-12,-8,-13,-7,-9,-8,-17,-9,-11,-10,-19,-12,-18,-18,-37 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1/2,-1,0,0,-1/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,4,2,2,2,2,2,2,1,2,1,1,1/2,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-8,-18 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-1/2,-1,-1,0,-1,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,4,2,5/2,2,2,2,3/2,1,2,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-7,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-13/2,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-9,-9,-11/2,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-6,-4,-6,-11/2,-12 --3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,3,2,2,2,2,1,1,1,1,1,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-17/2,-4,-4,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-5,-11,-5,-6,-4,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,3,2,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-3,-1,-1,0,-1/2,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-20 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1/2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-21,-10,-10,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-3,-3,-5/2,-5,-3,-6,-6,-13 --2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-4,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-19,-9,-9,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-33,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-6,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-5,-4,-8,-5,-7,-7,-2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-12,-12,-25 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-3,-5,-3,-6,-6,-13 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-19,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-1,0,0,0,-1,0,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 -0,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-25,-12,-12,-8,-23/2,-6,-8,-7,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-4,-13/2,-4,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 -0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-15/2,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-23,-11,-21/2,-6,-11,-6,-7,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-19/2,-9,-19 -1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-22,-21/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-7/2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-7,-3,-4,-2,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-4,-4,-9,-9/2,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-8,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-28,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-45,-22,-22,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-9,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-38 -1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1/2,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-20 -2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,-2,-1,-3/2,-2,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,1,1,1,1,2,2,3/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,1/2,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-16 -2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-21/2,-6,-8,-6,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-3,-3,-13/2,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-30,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-4,-4,-4,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,0,1,1,1,3/2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-27 -2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 -2,2,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-25,-12,-23/2,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-21/2,-10,-22 -2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20 -3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-19/2,-5,-6,-4,-8,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-8,-6,-11,-6,-8,-8,-33/2,-9,-11,-9,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-8,-33/2,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-9,-9,-26,-12,-12,-7,-11,-6,-8,-6,-23/2,-6,-6,-4,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1/2,0,0,0,-2,-1,-3,-3,-45,-22,-22,-14,-22,-12,-14,-12,-43/2,-10,-11,-8,-13,-7,-10,-9,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,0,1,1,1,2,2,2,1,1/2,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-15,-7,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-16,-8,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 -2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-24,-12,-12,-15/2,-12,-6,-7,-6,-11,-5,-5,-4,-7,-7/2,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-8,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-12,-8,-23/2,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-3/2,-2,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-4,-11/2,-6,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-24,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1/2,0,0,1,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-10,-12,-10,-37/2,-12,-18,-18,-35,-17,-17,-11,-35/2,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-9,-4,-4,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-22,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-43,-21,-20,-13,-41/2,-11,-13,-11,-19,-9,-10,-7,-12,-7,-9,-9,-16,-7,-7,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-9,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-7,-25/2,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-12,-6,-8,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-9/2,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-28,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-3,-5/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-10,-21/2,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-19/2,-9,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-11,-6,-7,-6,-10,-6,-21/2,-10,-22,-10,-10,-6,-11,-6,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-42,-20,-20,-13,-20,-11,-13,-10,-18,-9,-19/2,-7,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-7,-4,-11/2,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-18,-9,-19/2,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-9/2,-6,-4,-8,-5,-8,-15/2,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-15/2,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-6,-11,-13/2,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-11,-11/2,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-41,-20,-20,-13,-20,-10,-12,-10,-18,-9,-9,-13/2,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-13/2,-14,-7,-7,-5,-7,-4,-6,-5,-11,-11/2,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-11,-14,-12,-23,-15,-23,-23,-46,-23,-23,-15,-23,-12,-15,-13,-25,-13,-15,-11,-20,-12,-18,-18,-36,-18,-19,-13,-21,-12,-16,-15,-29,-15,-17,-14,-25,-16,-25,-24,-49,-24,-25,-17,-26,-15,-19,-16,-30,-16,-18,-14,-24,-15,-22,-21,-42,-21,-23,-17,-28,-17,-23,-21,-41,-22,-26,-21,-39,-25,-37,-37,-71,-35,-34,-22,-34,-18,-22,-18,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-16,-11,-19,-11,-14,-12,-24,-12,-14,-11,-20,-13,-19,-18,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,4,6,5,7,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-2,-3,-4,-83,-41,-41,-27,-42,-23,-28,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-17,-15,-28,-15,-17,-14,-25,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-25,-13,-15,-12,-21,-13,-19,-18,-37,-18,-19,-14,-23,-13,-17,-15,-29,-15,-18,-15,-27,-18,-27,-27,-55,-27,-27,-18,-28,-15,-19,-15,-28,-14,-16,-12,-21,-13,-19,-18,-35,-17,-18,-12,-20,-11,-15,-13,-25,-13,-15,-11,-19,-12,-17,-17,-35,-17,-17,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-15,-14,-29,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,-24,-12,-12,-8,-12,-7,-10,-9,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-38,-19,-20,-14,-22,-12,-16,-14,-27,-14,-15,-11,-20,-13,-19,-18,-36,-18,-19,-14,-24,-15,-21,-20,-39,-21,-26,-22,-40,-27,-41,-41,-83 -1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-11/2,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-17/2,-18,-17/2,-8,-5,-9,-9/2,-6,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-3/2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-23,-11,-12,-7,-12,-6,-8,-6,-12,-6,-7,-11/2,-10,-6,-9,-9,-18,-9,-9,-13/2,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-9,-4,-5,-9/2,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-10,-6,-21/2,-11,-23,-11,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-15,-8,-17/2,-6,-12,-8,-23/2,-12,-25,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-21/2,-10,-20,-10,-11,-8,-13,-8,-21/2,-10,-20,-10,-25/2,-10,-19,-12,-37/2,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-15,-7,-8,-5,-8,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-9,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1,2,3,2,2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-17/2,-7,-13,-8,-13,-13,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-8,-4,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-20,-20,-41 -1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-9/2,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-23,-11,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-6,-7/2,-5,-4,-9,-9/2,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-7/2,-6,-3,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27 -1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-10,-11,-24,-11,-11,-7,-23/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-7,-15,-7,-8,-6,-23/2,-7,-11,-11,-25,-12,-12,-8,-23/2,-6,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-9,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-41,-20,-20,-13,-39/2,-11,-14,-11,-22,-11,-11,-8,-27/2,-8,-11,-11,-20,-10,-10,-6,-21/2,-6,-8,-7,-15,-8,-10,-8,-27/2,-8,-12,-11,-24,-11,-11,-7,-23/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-9,-6,-21/2,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-26,-13,-13,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-6,-19/2,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-5,-11,-5,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-11/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-41 -1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-11/2,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-10,-11/2,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,3/2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-13/2,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-11/2,-5,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-28,-14,-14,-9,-13,-7,-17/2,-7,-15,-7,-7,-5,-8,-5,-8,-7,-12,-6,-7,-5,-7,-4,-11/2,-5,-10,-5,-6,-4,-9,-5,-15/2,-7,-16,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,0,1,1,1,2,2,3/2,1,2,2,3/2,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-7,-4,-13/2,-6,-13,-7,-9,-7,-14,-9,-27/2,-13,-27 -1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-5/2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -2,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-25,-12,-12,-7,-11,-6,-8,-6,-25/2,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-11,-6,-8,-7,-27/2,-7,-8,-6,-12,-7,-11,-11,-25,-12,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-9,-17,-11,-17,-16,-38,-18,-18,-12,-18,-10,-12,-9,-33/2,-8,-9,-6,-10,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-5,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,11/2,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,9/2,3,3,3,4,3,3,2,0,0,0,0,0,1,1,2,5/2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-43,-21,-21,-14,-22,-12,-15,-12,-22,-11,-12,-8,-14,-8,-12,-11,-19,-9,-10,-7,-12,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-10,-8,-33/2,-8,-10,-7,-12,-7,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-27/2,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-13,-7,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,0,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,0,0,0,1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,0,0,-1/2,0,0,1,2,2,2,2,-1,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-8,-8,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-20,-41 -2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,1/2,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-22,-21/2,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-11/2,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-21 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-6,-17/2,-8,-21,-10,-19/2,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1/2,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-24,-12,-23/2,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-11/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,0,1/2,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-11/2,-15,-7,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,1/2,0,0,1,0,1,1,1,0,0,0,1,2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-17/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,1,1,0,0,1/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-30,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-4,-4,-10,-5,-6,-4,-17/2,-6,-9,-9,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-11,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27 -3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,3,3,2,3,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,5/2,2,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,3/2,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-5,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-13/2,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-11,-6,-7,-6,-11,-7,-11,-11,-23 -4,3,3,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,2,3/2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-9/2,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22 -7,4,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,0,1,1,1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,1,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-7,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-11,-6,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-8,-10,-8,-14,-9,-14,-14,-36,-17,-17,-11,-18,-10,-12,-10,-19,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-9,-16,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,3,11/2,3,2,2,2,2,3,3,4,3,3,2,3,2,1,1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-48,-23,-23,-15,-24,-13,-15,-12,-23,-12,-13,-9,-15,-9,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-8,-35/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-11,-7,-12,-7,-11,-10,-20,-11,-13,-11,-20,-14,-22,-22,-45 -4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 -4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-4,-2,-9/2,-4,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-6,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-11/2,-6,-4,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-7/2,-5,-7/2,-7,-9/2,-7,-8,-17 -4,2,2,2,7/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,1/2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,4,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,1,1/2,1,2,2,0,0,0,1,1,1,0,0,-2,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,3,4,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-12,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5/2,-1,-2,-3,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-11,-6,-7,-6,-23/2,-8,-13,-13,-27 -3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-3/2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -3,2,5/2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,2,2,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,5/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-3,-5,-5,-9,-5,-6,-4,-8,-5,-9,-9,-20 -3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,-18,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -6,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-23,-11,-10,-6,-10,-5,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-11,-9,-17,-9,-10,-7,-12,-7,-9,-8,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,-1,-7/2,-2,-2,-2,-4,-2,-4,-5,-5,-2,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-2,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-35 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-11/2,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-11/2,-9,-9,-18 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3,3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,1/2,1,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,1,1,1,1,1,1,1/2,0,0,0,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-11,-6,-13/2,-5,-10,-5,-6,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-10,-21 -3,2,3,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,7/2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,7/2,3,4,4,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,6,4,4,3,3,2,2,2,2,1,1,1,3/2,1,0,0,2,1,1,1,1,1,2,2,0,1,1,1,3/2,1,1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,2,2,3/2,1,0,0,2,2,2,1,1,1,0,0,0,1,1,1,3/2,2,2,2,0,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-28,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-2,-3,-3,-14,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -4,5/2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1,-3,-2,-3,-2,-18,-8,-8,-5,-9,-9/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19 -6,4,7/2,3,4,2,5/2,2,3,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,7/2,3,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3/2,1,2,1,1/2,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-13,-7,-8,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-8,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-14,-6,-6,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-7,-19/2,-8,-14,-9,-14,-14,-29 -6,4,4,3,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-2,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-13,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-9,-15/2,-14,-9,-14,-14,-28 -12,7,7,5,6,4,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,2,1,1,0,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,2,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-15,-7,-8,-5,-8,-4,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,0,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-9,-6,-9,-9,-50,-24,-24,-15,-23,-12,-15,-12,-23,-12,-13,-9,-15,-9,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-15,-9,-13,-13,-27,-13,-14,-9,-15,-8,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-5,-9,-9,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-12,-13,-9,-16,-10,-14,-14,-28,-15,-18,-15,-28,-18,-28,-28,-57 -6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,6,4,4,5/2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-8,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-28 -6,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,3,2,7/2,4,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,6,4,7/2,2,4,3,7/2,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,-1/2,-2,0,0,0,-2,0,0,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-9/2,-9,-6,-9,-9,-19 -6,4,4,3,5,3,4,4,4,3,3,3,4,3,4,3,5,3,3,2,5/2,2,1,1,1,1,1,1,3/2,2,2,2,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,5/2,2,4,4,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,7,4,3,2,3,2,3,3,6,4,4,3,9/2,3,3,2,3,2,3,2,3,2,2,2,3,2,1,1,1/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,0,-3,-1,-2,-1,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-7/2,-2,-4,-4,-25,-12,-11,-7,-21/2,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,0,1,1,1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-14,-6,-6,-4,-13/2,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-13,-7,-9,-8,-15,-10,-15,-15,-30 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,5/2,1,1,2,1,2,1,1,1,2,2,2,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -4,3,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,3,2,2,3/2,1,2,1,1,1,3,2,2,1,2,2,3/2,2,5,3,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,1,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,2,2,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-3/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-17,-8,-15/2,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-3/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,1/2,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21 -3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,3/2,1,1,1,1,1,3/2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,7,4,5,4,5,3,3,2,3,2,3,2,3,2,1,1,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,1,1,0,1,1,1,5,3,3,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,0,0,0,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,6,4,4,3,4,2,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-28,-13,-13,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-27/2,-7,-8,-7,-14,-9,-15,-15,-32 -3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,1/2,0,1/2,0,1/2,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-5,-2,-3,-2,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-2,-1/2,-1,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-17 -4,3,3,2,2,2,5/2,2,4,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,4,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,2,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,2,4,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-6,-3,-3,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,0,-2,0,-1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-19 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 -6,4,4,3,7/2,3,4,3,4,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,1,1,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,7/2,3,4,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,-1,-8,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-2,-2,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-17,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,3/2,2,2,2,3,2,2,1,1,1,1,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-7,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,3,3,3,2,3,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,5,3,4,3,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,-1,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-13/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3/2,0,-2,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-4,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,3,2,3/2,1,2,2,3/2,2,1,1,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,0,0,1,1,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 -8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,4,6,6,8,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,9/2,3,4,3,4,2,2,2,3,2,1,1,1,1,2,2,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-31,-15,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,-1,-7/2,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-11,-21,-13,-20,-20,-42 -4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,1,1,2,3/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,1/2,0,1/2,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 -4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,4,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,5/2,2,4,2,5/2,2,1,1,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-11,-7,-11,-11,-23 -3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,2,1,0,0,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 -4,2,2,2,5/2,2,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,7/2,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,9/2,2,2,2,4,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,3,6,4,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3/2,1,1,1,5,3,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-18,-9,-9,-6,-17/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-3,-2,-4,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-27 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 -3,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,3,4,3,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,6,3,3,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,4,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-12,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-5/2,-3,-7,-3,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,1,-1,0,1/2,0,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-11,-7,-11,-11,-22 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,3,2,2,3/2,2,2,2,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-13/2,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,3/2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-9/2,-6,-5,-10,-6,-10,-10,-20 -6,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,7/2,2,2,2,4,3,5,5,9,5,5,4,5,3,2,2,5/2,2,2,2,2,2,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,3,4,4,9,5,5,4,7,5,6,5,15/2,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,7,4,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-27,-13,-13,-9,-14,-7,-9,-8,-29/2,-7,-7,-5,-8,-4,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-22,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1/2,1,2,2,2,2,2,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,2,2,3,2,3,2,3,2,3,2,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-10,-6,-9,-8,-35/2,-10,-12,-10,-18,-12,-19,-19,-40 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,5/2,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-7/2,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1,-3,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,3,6,4,7/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,3,2,5/2,3,6,4,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,3,5,3,3,2,3,2,3,2,3,2,3,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-15/2,-6,-11,-8,-25/2,-12,-26 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,3,3,5/2,3,3,4,3,3,2,3,2,2,5/2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21 -6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9/2,4,5,5,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,3,3,4,3,3,2,3,2,3,3,2,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-23,-11,-12,-8,-25/2,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,1,3/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-9/2,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-20,-10,-10,-6,-21/2,-5,-6,-5,-8,-4,-5,-4,-13/2,-4,-5,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,2,2,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-19,-10,-12,-10,-18,-12,-18,-18,-38 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-5/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-25 -4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-15/2,-8,-23,-11,-23/2,-8,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,-1,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,2,2,3/2,2,3,2,5/2,2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-17/2,-9,-16,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-13/2,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-19/2,-9,-18,-10,-12,-10,-18,-12,-37/2,-19,-39 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,7/2,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-9,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-11,-13/2,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-39 -7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,6,6,10,7,9,9,33/2,9,10,7,10,6,7,6,10,5,5,4,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,3,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,0,0,1,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-10,-6,-9,-9,-18,-9,-11,-9,-16,-10,-16,-16,-46,-22,-22,-14,-22,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-42,-20,-20,-13,-20,-11,-13,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-8,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,4,-19,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-8,-10,-8,-16,-11,-18,-18,-34,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-28,-14,-14,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-14,-11,-20,-13,-19,-19,-38,-19,-21,-15,-24,-14,-20,-19,-39,-21,-25,-21,-38,-25,-38,-39,-79 -4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-3/2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-11/2,-7,-6,-11,-5,-5,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,1/2,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-9,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-39 -5,3,5/2,2,2,2,3/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,5/2,2,5,3,7/2,4,5,4,9/2,5,9,5,5,4,5,3,3,3,5,3,7/2,3,3,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,3,7,4,4,3,4,3,4,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-6,-15/2,-6,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-20,-10,-10,-6,-10,-5,-7,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,0,0,0,1,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-9,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1/2,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27 -5,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,5,3,2,2,5/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,1/2,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-6,-9,-9,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,1/2,1,1,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,2,2,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-17/2,-4,-5,-4,-9,-4,-4,-3,-13/2,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-8,-18,-9,-10,-6,-21/2,-6,-8,-7,-13,-7,-8,-6,-21/2,-6,-10,-9,-20,-10,-10,-7,-25/2,-7,-10,-10,-19,-10,-13,-10,-39/2,-13,-20,-20,-42 -3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,3/2,0,1,1,1,1,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-7,-11/2,-10,-7,-11,-11,-23 -4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,2,2,3,2,3/2,2,2,2,5/2,3,4,3,3,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,2,1,1/2,0,1,1,2,2,1,1,3/2,1,1,1,3/2,1,2,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-7/2,-4,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,1,1,1,3/2,2,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-12,-6,-6,-4,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-3,-6,-3,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-17/2,-7,-13,-8,-27/2,-14,-29 -3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24 -5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,2,3,2,3,3,9/2,3,4,3,5,4,5,5,5,3,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,2,5/2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-2,0,0,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-1,0,0,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,2,2,6,3,3,2,2,2,2,2,5/2,2,1,1,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-4,-5,-4,-9,-6,-9,-10,-20,-9,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-24,-12,-13,-9,-15,-9,-12,-11,-45/2,-12,-14,-12,-22,-14,-22,-22,-44 -3,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-7,-6,-11,-7,-11,-11,-23 -3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,2,2,2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-13,-8,-25/2,-12,-26 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19 -3,2,3,2,3,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,4,4,6,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-15/2,-4,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,5,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-8,-8,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-10,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-8,-16,-9,-11,-9,-33/2,-10,-16,-16,-33 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,3,2,5/2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-13/2,-7,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-4,-3,-8,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-8,-19/2,-8,-14,-9,-14,-14,-29 -2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,3,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1/2,0,1/2,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-13/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-28 -3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,17/2,4,4,3,5,3,3,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-33/2,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,11/2,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-4,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-2,-1,-2,0,0,0,0,1,2,2,3,2,2,2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-3,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-19,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-14,-15,-11,-18,-11,-15,-14,-27,-14,-17,-14,-27,-18,-27,-28,-57 -2,2,2,1,2,2,2,2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-13,-7,-8,-7,-13,-9,-14,-14,-29 -2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,5/2,2,2,2,3/2,2,3,2,3,3,3,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-12,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,0,0,0,1,1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1/2,0,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-2,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-8,-5,-9,-5,-15/2,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-30 -2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 -3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,7/2,2,3,3,2,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,5/2,2,2,3,1,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,1,2,1,1,1,2,2,2,2,-4,-2,-2,0,-1/2,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,0,-1/2,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-9/2,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,0,1,1,1,1/2,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,3,2,3,2,3,3,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-2,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-16,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-16,-11,-17,-17,-34 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-10,-10,-20 -2,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,3/2,1,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,1,1,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-5,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-12,-15/2,-12,-12,-24 -1,1,1,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,-1,0,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,0,1,1,1,1/2,0,0,1,1,1,1,0,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-11,-7,-11,-11,-20,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,7/2,2,3,2,3,3,4,4,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,2,2,3/2,1,1,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-21/2,-6,-7,-5,-10,-6,-9,-9,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-22,-11,-12,-9,-15,-8,-11,-10,-20,-11,-13,-11,-22,-15,-23,-23,-46 -1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1/2,1,1,1,1,1,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-8,-4,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-25 -1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,5/2,2,4,2,3/2,1,2,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,1,1,1,2,2,3,2,2,1,1,1,3/2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-5,-9,-5,-6,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 -0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1/2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,1/2,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,7/2,2,3,3,5,3,3,2,5/2,2,2,1,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,-6,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-12,-6,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3,-13/2,-4,-6,-6,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-17,-8,-7,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,1,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,2,2,5,3,3,2,3,2,3,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,2,1,0,0,-1/2,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,0,-1/2,0,0,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-7,-25/2,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-40 --1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1/2,0,0,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-26 --3,-1,-1,0,-1,0,1/2,0,0,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,7/2,4,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,4,2,5/2,2,4,3,3,3,5,3,2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-11,-7,-21/2,-10,-20,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-5/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-15,-7,-13/2,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3,3,-6,-2,-2,-1,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-9,-9,-9,-4,-9/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-19,-19,-39 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,4,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-11,-11/2,-6,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-8,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-11,-13,-10,-19,-25/2,-19,-19,-38 --7,-3,-2,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,4,7,4,5,5,8,5,7,7,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,8,4,4,3,5,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-10,-13,-11,-21,-14,-22,-22,-40,-20,-20,-13,-21,-11,-14,-11,-20,-10,-11,-7,-12,-7,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-9,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,0,1,1,1,1,1,2,2,3,4,7,4,3,2,3,2,2,2,3,2,3,3,5,4,5,5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-18,-9,-9,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-9,-4,-5,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-10,-18,-11,-17,-17,-34,-17,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-38,-38,-77 --3,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,3,5/2,4,3,3,3,3,2,3,3,4,3,3,2,4,3,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,3,6,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1/2,0,0,-2,-1,-1,-1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-2,-4,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-9/2,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-19,-19,-38 --3,-1,-1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-3,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,5/2,2,4,2,2,2,4,3,3,3,3,2,2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-4,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-14,-6,-13/2,-4,-7,-3,-3,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-12,-7,-9,-9,-19,-10,-25/2,-10,-18,-12,-19,-19,-39 --2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 --4,-1,-1,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,3,-5,-2,-2,-1,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,5,3,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,3,2,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-6,-25/2,-8,-13,-13,-23,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-11/2,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,7/2,2,3,3,4,3,3,2,5/2,2,3,3,7,4,4,3,7/2,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-5,-19/2,-6,-10,-10,-12,-6,-6,-4,-11/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-7,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-8,-17,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-39/2,-13,-20,-20,-41 --2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-9/2,-9,-9/2,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,4,3,3,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,5,3,7/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-17/2,-7,-14,-9,-14,-14,-29 --3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1/2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1/2,0,1/2,1,1,2,2,2,3/2,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,1,0,0,0,1,1,1,4,2,2,2,3,2,2,2,5/2,2,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,-6,-2,-1,0,0,1,1,1,3/2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,2,2,2,1,0,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,1,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-29,-14,-14,-9,-13,-7,-8,-7,-29/2,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-3,-4,-4,-8,-5,-8,-8,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,3,3,4,4,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,0,1,2,2,3,3,4,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,-1/2,0,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-8,-6,-12,-8,-12,-13,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-3,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-8,-7,-27/2,-7,-8,-6,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-12,-15,-13,-24,-16,-24,-23,-47 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,3,2,3/2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,5,3,7/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,3,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-27/2,-14,-28 --1,0,0,0,0,1/2,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-4,-2,-2,-1,-2,0,0,-1/2,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-13/2,-10,-10,-21 --3,-1,-1,0,-1,0,0,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,2,2,5/2,2,2,1,0,0,0,1,3/2,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,-4,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,3,2,3,3,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,3,-1,0,0,0,1/2,0,0,1,3,2,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-14,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-6,-6,-11,-5,-6,-5,-9,-6,-9,-8,-16,-8,-8,-6,-23/2,-6,-9,-9,-16,-9,-11,-9,-18,-12,-18,-18,-37 --1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23 --2,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1/2,1,-3,-1,-1,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,2,2,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,-1,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-21/2,-7,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,4,3,7/2,3,1,1,1/2,0,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-11/2,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-11/2,-6,-13,-6,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-14,-8,-19/2,-8,-15,-10,-16,-16,-33 --2,0,0,0,-1,0,0,1,1,1,0,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-13/2,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,2,2,2,3,5/2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-15,-15,-32 --6,-2,-2,-1,-2,0,1,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-39/2,-10,-11,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-45,-22,-22,-14,-22,-12,-14,-11,-20,-10,-11,-8,-14,-8,-12,-11,-21,-11,-12,-8,-14,-8,-11,-9,-18,-9,-11,-9,-16,-10,-15,-14,-29,-14,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-27,-13,-12,-8,-12,-6,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-6,-29/2,-7,-7,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,2,1,1,1,1,1,1,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15/2,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,11/2,3,3,2,2,2,3,3,4,3,3,3,6,4,5,5,1,1,1,1,2,1,1,1,0,1,1,2,3,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-8,-15,-10,-17,-17,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-31,-15,-16,-12,-20,-12,-17,-15,-30,-16,-20,-16,-30,-20,-30,-31,-63 --2,0,0,0,0,1/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-32 --2,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,-1,-1,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-25,-12,-23/2,-7,-12,-6,-7,-6,-11,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-11/2,-4,-9,-5,-15/2,-8,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-2,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,0,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-9/2,-2,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-9,-16,-10,-16,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-7,-9/2,-8,-4,-6,-6,-11,-6,-8,-6,-12,-15/2,-12,-12,-25 --3,-1,0,0,-1/2,0,0,1,0,0,0,0,1/2,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,-1/2,0,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-27/2,-9,-14,-14,-30,-14,-14,-9,-13,-7,-9,-7,-12,-6,-6,-4,-8,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-10,-6,-19/2,-4,-5,-4,-7,-3,-4,-2,-4,-3,-5,-5,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,2,3,2,1,1,1,1,1,1,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,2,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,1,1,1,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-11/2,-4,-6,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-9,-21,-11,-12,-8,-27/2,-8,-10,-10,-19,-10,-12,-10,-41/2,-13,-20,-20,-41 --2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-11,-5,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-5,-12,-6,-7,-9/2,-8,-9/2,-6,-6,-11,-6,-7,-6,-12,-8,-12,-12,-24 --3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24,-11,-11,-7,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,3,5,3,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-6,-12,-6,-11/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-6,-17/2,-8,-17,-8,-19/2,-6,-12,-7,-19/2,-8,-16,-8,-10,-9,-17,-11,-16,-16,-33 --2,-1/2,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-21/2,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-16,-8,-8,-6,-11,-6,-8,-8,-15,-8,-10,-8,-15,-10,-15,-15,-30 --5,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-7,-3,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-6,-6,-25/2,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-8,-14,-8,-11,-10,-41/2,-11,-13,-11,-20,-13,-21,-21,-44,-22,-22,-14,-22,-12,-14,-11,-39/2,-10,-10,-7,-12,-7,-11,-11,-21,-10,-10,-7,-12,-7,-10,-8,-33/2,-8,-10,-8,-14,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-6,-8,-8,-16,-8,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-29,-14,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-15,-7,-8,-5,-9,-5,-6,-5,-19/2,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1/2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,4,4,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,3,3,2,2,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,7/2,2,2,2,4,3,4,4,8,4,4,2,2,1,1,1,3/2,1,1,1,2,2,3,3,6,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,1,1/2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-16,-9,-11,-10,-39/2,-10,-12,-9,-17,-10,-15,-15,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-17,-31,-20,-30,-29,-59 --2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24,-12,-12,-15/2,-12,-6,-7,-11/2,-10,-5,-5,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-16,-16,-32 --2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,1,-1,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,-1,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-6,-12,-8,-27/2,-14,-28,-14,-14,-9,-14,-7,-9,-7,-12,-6,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-3,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-10,-10,-22,-11,-11,-8,-14,-8,-21/2,-10,-21,-11,-27/2,-11,-20,-13,-39/2,-19,-39 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-7,-7,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-3/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-13/2,-12,-6,-8,-8,-17,-9,-11,-9,-16,-21/2,-16,-16,-33 --2,0,0,0,-1/2,0,-1,-1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-7,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-39/2,-13,-20,-20,-42,-20,-20,-13,-41/2,-11,-14,-11,-20,-10,-10,-7,-12,-7,-10,-10,-22,-11,-11,-8,-25/2,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-8,-12,-7,-9,-8,-16,-8,-8,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-21/2,-6,-9,-8,-14,-7,-8,-7,-27/2,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-15/2,-4,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-10,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,3,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,6,5,9,5,5,4,9/2,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,7/2,2,3,2,3,2,2,2,7/2,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-15/2,-4,-6,-5,-13,-7,-8,-6,-25/2,-8,-13,-13,-27,-13,-14,-9,-27/2,-7,-9,-7,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-9,-7,-15,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-23/2,-6,-8,-7,-15,-8,-10,-8,-15,-9,-14,-14,-29,-14,-14,-10,-16,-9,-11,-10,-21,-11,-12,-10,-35/2,-11,-16,-16,-32,-16,-18,-13,-43/2,-12,-17,-15,-31,-17,-20,-16,-61/2,-20,-30,-30,-60 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-11,-6,-7,-6,-14,-7,-8,-6,-12,-7,-10,-10,-21,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-21/2,-20,-13,-20,-20,-40 --2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-6,-11,-6,-19/2,-10,-19,-10,-21/2,-8,-14,-8,-21/2,-10,-20,-11,-27/2,-11,-20,-13,-20,-21,-42,-20,-41/2,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-12,-6,-17/2,-8,-15,-8,-19/2,-8,-14,-8,-12,-12,-25,-12,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-12,-7,-19/2,-9,-18,-9,-19/2,-7,-11,-6,-8,-8,-14,-7,-17/2,-7,-14,-8,-25/2,-12,-27,-13,-25/2,-8,-12,-6,-17/2,-7,-12,-6,-6,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-7,-4,-13/2,-6,-12,-6,-13/2,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,4,11/2,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,2,2,4,2,5/2,2,3,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,3,4,3,9/2,5,9,5,4,3,3,2,3,2,2,2,3/2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,3/2,1,2,1,1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,1,1,1,1,1,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-9,-14,-7,-17/2,-7,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-15,-7,-8,-5,-8,-5,-7,-7,-13,-7,-9,-7,-12,-8,-12,-12,-26,-12,-25/2,-8,-12,-7,-9,-8,-15,-8,-17/2,-6,-11,-6,-19/2,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-21/2,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-23/2,-10,-21,-11,-25/2,-10,-18,-11,-33/2,-16,-33,-16,-17,-12,-22,-13,-35/2,-16,-31,-17,-20,-16,-31,-20,-30,-30,-60 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-17/2,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-10,-19,-10,-11,-8,-14,-8,-10,-10,-20,-11,-14,-11,-20,-13,-21,-21,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-15/2,-15,-8,-10,-8,-14,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-11,-6,-8,-15/2,-15,-15/2,-9,-7,-14,-17/2,-13,-25/2,-26,-25/2,-12,-8,-12,-6,-8,-7,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-17/2,-18,-8,-8,-11/2,-9,-9/2,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,5,5,9,5,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,2,2,2,2,2,3/2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-13/2,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-13/2,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-15/2,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-12,-10,-20,-21/2,-12,-19/2,-18,-11,-16,-16,-33,-16,-17,-12,-21,-25/2,-17,-16,-31,-17,-20,-16,-31,-20,-30,-30,-61 --5,-2,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-4,-8,-5,-9,-10,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-7,-5,-10,-7,-11,-11,-22,-11,-12,-8,-14,-8,-11,-9,-18,-10,-12,-10,-19,-12,-19,-18,-37,-18,-18,-12,-18,-10,-13,-11,-20,-10,-11,-8,-15,-9,-13,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-7,-11,-11,-22,-11,-11,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-15,-16,-12,-20,-11,-15,-14,-28,-15,-19,-15,-28,-18,-28,-29,-59,-29,-29,-19,-29,-15,-18,-15,-27,-14,-15,-11,-18,-11,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-16,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-16,-10,-14,-14,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-34,-17,-17,-12,-19,-10,-13,-11,-21,-11,-13,-10,-17,-10,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-28,-56,-28,-28,-18,-28,-15,-18,-15,-27,-13,-14,-10,-16,-10,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-11,-8,-15,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-32,-16,-16,-11,-17,-9,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-11,-7,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-29,-16,-19,-16,-29,-19,-30,-30,-60,-30,-30,-20,-31,-17,-21,-17,-32,-16,-16,-11,-19,-11,-16,-15,-30,-15,-15,-11,-18,-10,-12,-11,-21,-11,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-9,-7,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-16,-9,-13,-12,-25,-13,-16,-13,-23,-15,-24,-24,-49,-24,-25,-17,-26,-14,-17,-15,-28,-14,-16,-12,-20,-12,-17,-16,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-20,-16,-29,-19,-28,-27,-55,-27,-28,-19,-31,-17,-22,-19,-37,-19,-22,-17,-29,-18,-27,-26,-53,-27,-28,-20,-32,-19,-26,-24,-48,-26,-31,-25,-46,-31,-47,-47,-94,-47,-47,-31,-48,-26,-31,-26,-47,-24,-26,-19,-31,-18,-25,-24,-47,-23,-24,-16,-25,-14,-19,-17,-32,-17,-19,-15,-28,-17,-25,-25,-50,-25,-25,-17,-27,-15,-18,-15,-28,-14,-16,-12,-21,-12,-17,-16,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-16,-30,-20,-30,-30,-62,-30,-30,-19,-29,-16,-20,-16,-30,-15,-16,-12,-20,-12,-16,-15,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-11,-20,-13,-19,-19,-40,-20,-20,-13,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-14,-14,-28,-14,-14,-9,-15,-9,-12,-10,-20,-11,-13,-11,-20,-13,-20,-20,-41,-20,-21,-14,-22,-12,-14,-12,-22,-11,-13,-10,-17,-10,-15,-14,-29,-15,-16,-11,-19,-11,-14,-13,-25,-13,-16,-13,-23,-14,-21,-20,-41,-20,-21,-14,-23,-12,-15,-13,-25,-13,-14,-10,-18,-11,-17,-16,-32,-16,-18,-13,-21,-13,-19,-18,-35,-19,-23,-18,-33,-22,-33,-33,-67,-33,-34,-23,-35,-19,-23,-20,-37,-19,-21,-16,-27,-16,-22,-21,-41,-21,-22,-16,-26,-15,-20,-18,-35,-19,-22,-18,-33,-22,-33,-32,-65,-32,-33,-22,-35,-20,-26,-23,-43,-23,-26,-20,-35,-23,-34,-33,-67,-34,-36,-26,-42,-25,-35,-33,-64,-35,-41,-34,-62,-41,-61,-61,-123 --2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-5/2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-17/2,-14,-14,-28,-14,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-15/2,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-23/2,-24,-13,-15,-12,-22,-15,-23,-23,-46,-23,-23,-15,-24,-13,-15,-12,-23,-23/2,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-7,-5,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-15/2,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-17/2,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-19/2,-18,-9,-10,-7,-13,-7,-10,-10,-20,-10,-10,-7,-13,-7,-10,-17/2,-17,-9,-10,-17/2,-16,-21/2,-16,-16,-32,-16,-16,-11,-17,-10,-13,-11,-21,-11,-12,-9,-17,-11,-16,-16,-33,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-13/2,-4,-9,-5,-15/2,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-9,-7,-13,-8,-27/2,-14,-28,-14,-27/2,-9,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-14,-9,-29/2,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-15,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-4,-11/2,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-8,-15,-8,-19/2,-8,-14,-9,-13,-13,-27,-13,-27/2,-10,-15,-8,-21/2,-9,-18,-9,-11,-8,-15,-9,-27/2,-13,-26,-13,-27/2,-10,-16,-9,-25/2,-12,-24,-13,-15,-12,-22,-14,-22,-22,-46,-22,-45/2,-15,-24,-13,-31/2,-12,-23,-12,-25/2,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-25/2,-12,-25,-12,-12,-8,-12,-6,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-29/2,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-11,-5,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-21/2,-8,-16,-10,-16,-16,-33,-16,-33/2,-11,-18,-10,-23/2,-10,-17,-9,-10,-7,-12,-7,-21/2,-10,-21,-10,-10,-7,-13,-7,-19/2,-8,-17,-9,-21/2,-9,-17,-11,-16,-16,-32,-16,-16,-11,-18,-10,-13,-11,-21,-11,-12,-9,-17,-11,-33/2,-16,-34,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --1,0,0,0,0,1,1,1,0,0,0,1/2,0,1/2,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20,-19/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-3,-6,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-3,-5,-4,-10,-9/2,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-6,-8,-15/2,-15,-8,-9,-8,-14,-9,-14,-14,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-10,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-5,-10,-6,-10,-10,-22,-21/2,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-13/2,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-12,-6,-8,-7,-13,-13/2,-7,-6,-11,-7,-10,-10,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 --2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-10,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-15/2,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-27/2,-9,-14,-14,-29,-14,-14,-9,-27/2,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-13/2,-3,-4,-3,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-27,-13,-14,-9,-27/2,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-5,-8,-8,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-31/2,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-15,-7,-7,-5,-17/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-9,-8,-15,-8,-9,-7,-27/2,-9,-14,-14,-28,-14,-15,-10,-16,-9,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-22,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-29/2,-8,-12,-11,-22,-11,-11,-7,-12,-7,-9,-8,-15,-7,-8,-6,-25/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-6,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-15,-8,-10,-8,-29/2,-10,-15,-15,-33,-16,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-17/2,-4,-6,-5,-11,-5,-6,-4,-13/2,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-4,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-5,-19/2,-6,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-15,-15,-33,-16,-16,-11,-35/2,-10,-12,-10,-17,-8,-9,-7,-25/2,-8,-11,-10,-21,-10,-11,-8,-25/2,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-31,-15,-16,-11,-35/2,-10,-13,-11,-19,-10,-11,-9,-17,-11,-16,-15,-34,-17,-18,-13,-22,-13,-18,-16,-31,-17,-20,-16,-30,-20,-30,-30,-61 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-6,-9,-5,-6,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-34 --2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-5,-13/2,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-7,-4,-5,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-11/2,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-17/2,-8,-15,-8,-9,-7,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-23,-11,-12,-8,-14,-8,-12,-11,-21,-11,-27/2,-11,-21,-13,-20,-20,-41 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-5,-9,-9/2,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-19/2,-12,-9,-17,-11,-17,-17,-35 --5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,-1,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-5,-19/2,-5,-6,-4,-7,-4,-5,-5,-12,-6,-7,-5,-8,-4,-6,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-29,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-6,-25/2,-6,-8,-6,-12,-8,-13,-13,-25,-12,-12,-8,-12,-6,-7,-6,-23/2,-6,-7,-5,-9,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-33/2,-8,-9,-6,-11,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-8,-17,-8,-8,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-27/2,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-35/2,-9,-10,-8,-14,-8,-12,-12,-28,-14,-14,-9,-15,-9,-12,-11,-22,-12,-14,-12,-23,-15,-22,-22,-46,-22,-22,-15,-23,-12,-15,-12,-22,-11,-11,-8,-13,-8,-11,-10,-24,-11,-11,-7,-12,-7,-9,-8,-15,-8,-9,-7,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-10,-6,-9,-9,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-16,-34,-16,-15,-9,-14,-7,-9,-7,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-18,-9,-9,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-23/2,-6,-6,-5,-9,-6,-9,-9,-23,-11,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-15,-15,-33,-16,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-35/2,-10,-12,-10,-18,-11,-17,-17,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-9,-16,-10,-15,-15,-34,-17,-18,-13,-22,-13,-18,-17,-33,-18,-21,-17,-31,-21,-32,-32,-64 --2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-7/2,-7,-4,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-16,-10,-16,-16,-33 --2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-8,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-7,-7,-5,-7,-4,-5,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-8,-4,-5,-5,-13,-6,-13/2,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-16,-8,-17/2,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-18,-9,-9,-7,-12,-7,-9,-9,-18,-9,-11,-9,-17,-11,-17,-17,-35 --1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-6,-3,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-13/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-4,-6,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26 --3,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-19,-9,-9,-6,-19/2,-5,-6,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-21/2,-6,-10,-10,-19,-9,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-13,-6,-7,-5,-9,-5,-7,-7,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-12,-6,-6,-4,-11/2,-3,-5,-4,-9,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-7,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-10,-6,-21/2,-5,-6,-5,-11,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-25/2,-7,-10,-10,-21,-11,-13,-11,-21,-14,-21,-21,-43 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-5,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-26 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-5/2,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-5/2,-2,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-7,-3,-7/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-25/2,-13,-26,-12,-25/2,-8,-12,-6,-8,-7,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-12,-6,-6,-4,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-9,-17,-11,-35/2,-17,-35 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-9/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-23/2,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --6,-3,-3,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-3,-6,-6,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-7,-13,-6,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-27,-13,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11,-5,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-8,-17,-9,-12,-10,-18,-11,-17,-17,-29,-14,-14,-9,-14,-7,-9,-7,-12,-6,-7,-5,-10,-6,-8,-7,-29/2,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-30,-14,-14,-9,-15,-8,-11,-9,-17,-9,-10,-8,-14,-9,-13,-12,-51/2,-13,-14,-10,-17,-10,-13,-12,-24,-13,-15,-13,-24,-16,-24,-24,-47,-23,-23,-15,-22,-12,-15,-13,-24,-12,-13,-9,-14,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-9,-8,-17,-9,-10,-7,-13,-8,-12,-12,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-10,-15,-8,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-23/2,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-7,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-29/2,-7,-8,-5,-8,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-9,-16,-10,-16,-15,-32,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-7,-13,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-29,-14,-15,-10,-16,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-59/2,-14,-15,-11,-18,-11,-15,-14,-28,-16,-20,-17,-31,-20,-31,-31,-64 --2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-8,-4,-4,-7/2,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,-32 --2,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,0,1,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,3,2,2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,1,1,1,-2,0,-1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-3,-1,-3/2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-23,-11,-23/2,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-11,-5,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-5,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-3/2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-11,-7,-11,-11,-23 --3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-9,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-5/2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-7/2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-19/2,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-5,-6,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-13,-7,-8,-7,-27/2,-9,-14,-14,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-9,-5,-7,-6,-11,-7,-11,-11,-18,-9,-9,-6,-19/2,-5,-7,-6,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-36 --1,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,0,0,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-17/2,-7,-13,-8,-25/2,-13,-27 --1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --2,-1,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,1,1,2,2,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-4,-5,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-20,-9,-9,-6,-10,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-11,-17,-17,-28,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-15/2,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-25/2,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-31/2,-8,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-14,-11,-21,-14,-22,-22,-45 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-4,-8,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-24 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,-2,0,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-7/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 --2,0,0,0,1/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1/2,0,0,0,1,1,2,2,3/2,1,0,0,-6,-2,-2,-2,-7/2,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-17,-8,-8,-5,-9,-4,-5,-4,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-12,-8,-23/2,-6,-7,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-4,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-12,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-13/2,-4,-5,-5,-13,-6,-7,-5,-17/2,-4,-6,-5,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-9,-9,-19,-9,-10,-7,-13,-7,-9,-8,-17,-9,-12,-10,-35/2,-11,-17,-17,-36 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-13,-8,-25/2,-13,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-11,-7,-10,-10,-21,-10,-9,-6,-10,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-19/2,-6,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-17/2,-8,-17,-9,-21/2,-8,-16,-10,-33/2,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-5,-3,-5,-9/2,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-9/2,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-16,-17/2,-10,-8,-16,-10,-16,-16,-33 --2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-37/2,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-8,-4,-4,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-13,-8,-12,-12,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-12,-7,-11,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-10,-16,-16,-34,-17,-17,-11,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-7,-8,-6,-12,-7,-10,-9,-37/2,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-24,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-25,-25,-42,-20,-20,-13,-19,-10,-13,-10,-19,-9,-10,-7,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-6,-8,-7,-15,-7,-7,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-25,-12,-13,-9,-15,-9,-13,-12,-24,-12,-14,-11,-20,-13,-20,-20,-42,-21,-21,-14,-21,-11,-14,-11,-20,-10,-11,-9,-16,-10,-14,-13,-25,-12,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-11,-17,-18,-37,-19,-20,-14,-22,-12,-16,-14,-26,-13,-15,-12,-22,-14,-20,-19,-38,-19,-20,-15,-25,-15,-20,-18,-34,-18,-22,-18,-33,-22,-33,-33,-66 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-4,-3,-6,-4,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-13/2,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 --1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-6,-2,-5/2,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-4,-3,-6,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-8,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-11/2,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-8,-15/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-15/2,-6,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-19/2,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-11/2,-11,-7,-10,-10,-22 -0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-11/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,1/2,0,0,0,3,2,2,2,3/2,2,2,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-11,-6,-7,-6,-21/2,-7,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-23/2,-7,-10,-9,-18,-10,-12,-10,-35/2,-11,-17,-17,-34 -1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-2,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,1/2,0,1,1,1/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,1/2,1,0,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 -1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-3/2,-1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-13/2,-10,-10,-21 -1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,1,1,1,2,2,2,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,4,3,3,2,3,2,2,1,1/2,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-13,-6,-6,-4,-6,-3,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-14,-7,-8,-7,-27/2,-7,-8,-6,-10,-5,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-25/2,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-15,-7,-8,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-9,-9,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-8,-13,-8,-12,-11,-43/2,-12,-14,-11,-21,-13,-20,-20,-40 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-11,-6,-7,-11/2,-11,-7,-10,-10,-21 -2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-1,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1/2,0,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-4,-4,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-4,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-11,-23 -2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-8,-17 -2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,3/2,1,0,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-3,-4,-4,-15/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-15/2,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-8,-9,-8,-15,-9,-14,-14,-29 -2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-5,-4,-9,-5,-8,-8,-18 -3,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-1,0,0,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1/2,0,1,1,0,0,-1,0,1/2,0,2,2,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-9/2,-4,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-6,-13,-8,-12,-12,-25 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 -4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-4,-7,-7,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-12,-8,-12,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-12,-12,-33,-16,-15,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-27/2,-6,-7,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-7,-13,-7,-9,-7,-13,-8,-11,-11,-23,-12,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23 -3,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-17,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-19,-9,-9,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-9,-4,-5,-3,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-7,-8,-6,-12,-8,-13,-13,-26 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15 -3,2,2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,3,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-19/2,-9,-19 -3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-3/2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-5,-3,-7,-4,-5,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-17 -5,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-4,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,7/2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-10,-5,-7,-6,-21/2,-5,-5,-4,-7,-4,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-15/2,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-11,-17,-17,-34 -4,5/2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-7/2,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18 -5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-11,-22 -5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-13,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-11/2,-9,-9,-18 -8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-3,-2,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,0,-1/2,0,0,0,-1,0,1,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,7/2,2,3,3,4,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,1,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-8,-8,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-8,-4,-5,-4,-17/2,-6,-9,-9,-25,-12,-12,-7,-19/2,-5,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-17/2,-5,-8,-8,-14,-7,-7,-4,-15/2,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-23/2,-6,-9,-8,-19,-10,-12,-9,-33/2,-10,-16,-16,-33 -6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-11/2,-16,-8,-8,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 -8,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,3,4,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-17/2,-8,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,4,2,2,2,2,2,5/2,3,5,3,3,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-25,-12,-23/2,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-11/2,-4,-7,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-11,-6,-17/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-16,-32 -8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-5/2,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-24,-23/2,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-9,-10,-8,-15,-10,-15,-15,-31 -15,8,8,5,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-17,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-11,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,1,1,1,2,2,4,3,3,3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-37,-18,-19,-13,-20,-11,-13,-11,-22,-11,-13,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-9,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-31/2,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-15,-7,-8,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-49,-24,-23,-15,-23,-13,-16,-13,-24,-12,-13,-10,-17,-10,-13,-12,-24,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-30,-15,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-11,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-16,-9,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-10,-9,-19,-10,-11,-9,-17,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-15,-30,-15,-17,-12,-20,-12,-16,-15,-31,-17,-20,-17,-32,-21,-31,-31,-62 -8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-8,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-17/2,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-9,-9,-24,-23/2,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -7,4,9/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-8,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,-1,-2,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,5/2,2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-10,-5,-5,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-5,-9,-5,-6,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,2,2,7/2,2,3,3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-14,-7,-7,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-26,-13,-13,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-7,-16,-8,-10,-8,-29/2,-10,-15,-15,-30 -4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1/2,0,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-11/2,-6,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-21 -4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,0,1,1,1,2,2,2,2,5/2,2,2,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-7,-5,-8,-8,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,3/2,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,-5,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-4,-4,-4,-8,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-27,-13,-13,-9,-14,-7,-8,-6,-25/2,-6,-6,-4,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-15,-10,-16,-16,-33 -4,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -3,2,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,1,1,1/2,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,1,2,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19 -2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,1,2,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 -3,2,2,2,5/2,2,2,2,4,2,2,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,-1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-2,-11/2,-3,-5,-5,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,1,1/2,1,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,2,2,2,2,1,1,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,1,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7/2,3,4,4,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,1,3/2,2,2,2,2,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-3,-3,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-21/2,-7,-11,-11,-24 -2,1,1,1,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-15 -2,1,1,1,2,2,3/2,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,-2,0,0,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-2,-3,-2,-4,-2,-4,-5,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,3/2,2,2,2,2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-6,-6,-15,-7,-15/2,-4,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-19/2,-10,-21 -2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,2,3,5/2,4,3,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,1/2,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-13/2,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20 -3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,1,1/2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5/2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-23/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-13,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-8,-5,-9,-5,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-40 -2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1/2,-1,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-2,-1,-2,-1,-3,-3/2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-20 -2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,1,1,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,7/2,3,4,3,4,4,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-13/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,1,1,0,0,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-10,-6,-19/2,-10,-20 -2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,0,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,9/2,4,5,5,0,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-16,-7,-7,-4,-6,-3,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-2,-3,-2,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-21 -2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,-1/2,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-3,-5,-5,-12 -2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,1,1,2,2,2,2,2,1,2,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,4,3,4,4,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 -1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,2,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,3,2,2,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,2,3,7,4,3,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,3,5,3,4,3,5,3,3,3,7,4,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,2,2,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-5,-10,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-6,-11,-7,-12,-12,-26 -1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,1/2,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-14 -1,1,1,1,2,2,3/2,2,0,0,1/2,1,2,2,2,2,0,1,1,1,0,1,3/2,2,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,2,1,1,1,0,1,3/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,3,2,5/2,2,5,3,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,9/2,4,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-5,-8,-8,-17 -1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,0,1,1,1,0,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-7/2,-6,-6,-13 -0,0,0,0,1/2,1,2,2,0,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1/2,0,0,0,-3,-1,-1,0,-1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,2,3/2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,2,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,4,3,7/2,3,4,4,7,4,4,3,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,3,3,2,4,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,-1,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-3/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,0,1,1,1,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,6,4,9/2,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,5,5,7,4,9/2,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-1,0,1/2,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-5,-13,-6,-13/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-11,-23 --2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,0,1,0,1,1,2,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,4,7,4,4,7/2,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,7/2,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-1,0,0,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-11/2,-10,-6,-10,-11,-23 --5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,1,1,2,2,2,1,1,1,2,2,5/2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,3,3,4,4,6,3,3,3,4,3,4,5,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,4,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,1,2,2,2,2,4,3,4,4,7,4,5,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,4,5,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,4,4,7,5,6,5,8,5,7,7,27/2,7,7,5,8,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,3,5,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-11,-6,-8,-7,-15,-8,-10,-9,-17,-11,-18,-18,-29,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-14,-14,-59/2,-14,-15,-10,-16,-9,-12,-10,-20,-10,-12,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-47 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,5/2,3,5/2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,5,3,4,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,3/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,1,1,1,0,1,3/2,2,2,1,1/2,0,2,2,3/2,1,1,1,3/2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,2,2,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,7,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,7/2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,4,6,4,5,5,7,4,9/2,4,5,3,7/2,3,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-16 --3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,0,0,0,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,3/2,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,7/2,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,4,4,11/2,4,6,6,6,4,4,3,7/2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,5,4,13/2,4,6,6,8,5,5,3,4,3,3,3,4,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-5,-4,-6,-3,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-25 --1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,2,3/2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,3,0,0,0,1,1,1,1/2,0,2,1,1,1,2,2,3/2,2,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,2,2,0,0,0,1,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16 --3,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,4,3,3,2,3,2,2,2,3/2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,2,5/2,1,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,15/2,4,5,4,6,4,6,7,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13/2,4,4,4,7,5,8,8,11,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,5,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-20,-9,-9,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-3,-14,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-31 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,5,5,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 --2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,4,9/2,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,1,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-8,-18 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,3/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 --2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,2,7/2,2,2,2,4,2,2,2,3/2,2,2,1,3,2,2,1,1/2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,0,0,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,5,3,3,2,7/2,2,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,7/2,3,4,4,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,5,5,6,4,4,3,9/2,3,3,3,5,3,4,3,4,3,4,4,4,2,2,2,7/2,2,3,3,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,5/2,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,2,2,2,3/2,1,1,1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-17/2,-4,-6,-6,-12,-6,-8,-6,-25/2,-8,-13,-13,-26 --1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,3/2,2,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,3,2,3,5/2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1/2,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-16 --2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,1,1,1,1,1,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,2,1,1/2,1,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,1,1,3/2,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,3,3,9/2,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,7/2,3,4,2,2,2,4,2,2,2,3,2,7/2,4,8,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,7/2,3,3,2,7/2,4,4,3,3,3,4,3,4,4,7,4,9/2,4,7,5,7,7,11,6,6,4,5,3,7/2,3,5,3,7/2,2,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-2,-6,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1/2,0,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-9/2,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-12,-7,-11,-11,-23 --4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,3/2,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,4,4,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,11/2,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,3,3,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9/2,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,5/2,2,2,3,5,3,4,4,8,5,5,4,7,5,8,8,6,4,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,16,9,9,6,8,5,7,6,10,6,7,5,8,5,6,5,17/2,4,4,3,5,4,5,5,9,6,7,6,10,7,9,9,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,17/2,5,6,4,6,4,5,5,10,6,7,6,10,7,10,11,19,10,10,7,9,5,5,4,7,4,5,4,5,3,4,4,15/2,4,4,3,4,3,4,3,5,3,3,2,3,2,2,1,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,7/2,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-14,-9,-14,-14,-28,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-6,-21,-10,-10,-6,-10,-5,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-14,-9,-14,-13,-25,-12,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-45/2,-11,-12,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-22,-22,-46 --1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1/2,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,3/2,1,2,1,1/2,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,10,5,5,4,6,3,3,3,5,3,7/2,2,4,3,3,3,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-25 -0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,5/2,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18 -0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,2,3,3,3,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,-1,0,-1,0,-1,0,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,2,2,4,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,0,0,0,1,3/2,2,2,1,2,2,2,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,4,3,9/2,4,5,5,5,3,3,3,9/2,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,8,5,6,4,13/2,4,6,6,12,7,7,5,6,4,5,4,6,4,4,4,11/2,4,5,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,5,7,7,11,6,6,4,11/2,3,3,2,5,3,3,3,9/2,3,3,3,6,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-21,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-14,-6,-6,-4,-11/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-9,-8,-15,-10,-15,-15,-30 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-18 -0,0,1/2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,2,1,1,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,3,2,5/2,3,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,5,3,4,3,4,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,4,3,5,4,11/2,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,5,3,7/2,3,4,3,7/2,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,4,7,5,6,6,8,5,5,4,5,3,3,2,4,2,5/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24 -1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,2,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,5,3,3,3,4,5/2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -1,1,1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,2,2,1,1,1,1,0,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,9/2,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,9/2,3,4,3,4,3,3,3,7,4,4,3,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,1,3,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,1,2,2,2,2,3,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,5,7,7,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,10,7,9,9,17,9,10,7,11,6,7,6,11,6,7,6,9,6,7,6,9,5,5,4,5,4,5,5,9,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,4,2,2,1,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-32,-15,-15,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20,-10,-11,-7,-12,-6,-8,-6,-25/2,-6,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-43/2,-12,-14,-11,-21,-14,-21,-21,-42 -1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,11/2,10,11/2,6,4,6,4,4,4,6,4,4,7/2,5,7/2,4,4,6,3,3,5/2,4,3,3,3,6,4,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,9/2,5,4,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,3,5/2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,2,2,3/2,1,1,1,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,3/2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,3,2,5/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,5,3,7/2,3,3,2,7/2,4,5,3,7/2,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,13/2,6,11,6,13/2,4,7,4,5,4,7,4,9/2,4,6,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,13/2,6,11,6,13/2,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,7,4,11/2,5,7,4,11/2,5,8,6,15/2,7,9,5,5,4,5,3,7/2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3/2,2,1,1,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-22,-10,-21/2,-6,-10,-5,-6,-5,-11,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-27/2,-14,-28 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,6,11/2,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,11/2,9,5,6,4,6,4,4,4,6,4,4,7/2,5,4,5,9/2,8,9/2,5,4,6,7/2,4,4,6,4,4,4,6,9/2,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,2,2,2,2,0,0,0,1,3/2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,6,3,3,2,5/2,2,2,1,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-13/2,-4,-6,-6,10,6,6,4,11/2,4,4,3,5,3,3,2,7/2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,5,3,4,3,9/2,3,4,4,6,4,4,3,9/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,4,6,6,12,7,7,5,13/2,4,6,6,11,6,6,5,17/2,6,9,9,16,9,9,6,8,5,6,5,10,6,6,5,15/2,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,13,7,7,6,9,6,7,6,10,6,6,6,19/2,7,10,10,13,7,7,5,7,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,7/2,3,4,3,3,2,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-12,-11,-33,-16,-16,-10,-33/2,-9,-11,-9,-17,-8,-9,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-19,-9,-9,-6,-17/2,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-8,-27/2,-8,-11,-10,-19,-10,-13,-11,-20,-13,-20,-20,-41 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,3/2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,7/2,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-22,-10,-10,-6,-11,-6,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1/2,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,10,6,11/2,4,6,4,4,3,5,3,7/2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,5/2,2,3,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,9,5,5,4,6,4,5,5,7,4,9/2,4,6,4,13/2,6,11,6,7,5,6,4,5,5,9,6,13/2,5,8,6,17/2,8,16,8,17/2,6,9,6,13/2,6,9,5,11/2,4,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,10,7,19/2,9,16,9,9,7,10,6,13/2,6,10,6,13/2,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,13/2,6,10,7,21/2,10,13,7,15/2,5,7,4,5,4,7,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-23/2,-11,-33,-16,-16,-10,-17,-9,-21/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-9,-5,-7,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-3,-4,-3,-8,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-6,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,11,6,6,4,6,4,4,3,5,3,4,5/2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,11/2,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,11/2,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,9/2,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,9,13/2,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,8,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-33,-16,-16,-10,-17,-9,-10,-9,-17,-17/2,-10,-7,-12,-7,-10,-9,-19,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-7/2,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-9/2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-13,-13/2,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 --1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,1,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,11/2,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,3,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,3,4,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,10,8,13,8,11,11,20,12,14,12,20,14,20,20,26,13,13,9,12,7,7,6,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-8,-9,-6,-11,-7,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-68,-33,-33,-22,-34,-19,-23,-19,-34,-17,-19,-14,-24,-15,-21,-20,-39,-19,-20,-14,-22,-12,-16,-14,-26,-14,-16,-13,-23,-14,-21,-21,-42,-20,-20,-13,-21,-11,-13,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-14,-9,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-11,-9,-18,-9,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-11,-17,-17,-34,-16,-16,-11,-17,-9,-11,-10,-19,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-12,-14,-11,-19,-12,-17,-17,-34,-17,-18,-12,-20,-12,-16,-15,-29,-16,-19,-16,-29,-19,-28,-28,-58,-29,-29,-19,-29,-16,-20,-17,-32,-16,-18,-13,-23,-14,-19,-18,-35,-18,-19,-13,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-27,-27,-54,-27,-28,-19,-30,-17,-22,-19,-35,-18,-20,-15,-26,-16,-24,-23,-46,-23,-24,-17,-28,-17,-23,-21,-41,-22,-26,-22,-40,-26,-40,-40,-80 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,11,6,6,9/2,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,5/2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,7,9/2,6,6,10,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-9/2,-10,-5,-7,-6,-11,-7,-11,-11,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-6,-8,-13/2,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-15/2,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-8,-15,-15/2,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-10,-11/2,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-9,-17,-17/2,-10,-7,-12,-8,-12,-11,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-39 -0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,9/2,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,9/2,4,8,4,9/2,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,1,1,1,1/2,0,0,0,1/2,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,4,4,6,4,5,5,9,5,11/2,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,11/2,6,10,6,7,6,10,7,21/2,10,14,8,8,5,7,4,9/2,4,5,3,3,2,4,2,5/2,2,4,2,2,2,3,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-10,-5,-7,-6,-12,-7,-11,-11,-33,-16,-16,-10,-16,-8,-21/2,-9,-16,-8,-9,-6,-11,-6,-19/2,-9,-20,-10,-10,-6,-10,-6,-15/2,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-6,-9,-5,-6,-6,-12,-6,-13/2,-5,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-14,-8,-19/2,-8,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-15/2,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-21/2,-9,-16,-8,-19/2,-7,-12,-8,-23/2,-11,-22,-11,-23/2,-8,-14,-8,-11,-10,-21,-11,-13,-11,-20,-13,-19,-19,-39 -0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,7/2,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,8,9/2,5,4,5,3,4,3,4,3,3,2,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,9/2,5,4,7,5,7,7,10,6,6,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-6,-3,-4,-7/2,-8,-9/2,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-14,-7,-9,-7,-13,-8,-13,-13,-26 -0,1,1,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,7/2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3/2,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,3,2,2,2,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,13/2,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,11/2,4,6,5,8,5,5,4,13/2,4,6,6,11,6,7,6,19/2,7,10,10,15,8,8,6,8,5,5,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-5,-7,-6,-23/2,-8,-12,-12,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-23/2,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-22,-10,-10,-6,-19/2,-5,-6,-5,-9,-4,-5,-3,-11/2,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-15,-8,-10,-8,-29/2,-9,-14,-14,-30,-15,-15,-10,-15,-8,-9,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-15,-8,-9,-7,-27/2,-8,-12,-12,-29,-14,-14,-10,-31/2,-8,-10,-9,-16,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-27/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-13,-20,-20,-40 -0,1,1,1,0,1,1,1,0,0,0,1/2,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,6,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1/2,0,0,1,1,1,-1,0,1,1,0,0,1/2,1,0,0,1/2,0,1,1,3/2,1,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,7,4,4,3,5,3,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,3,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,9/2,5,8,4,9/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,4,4,6,4,4,4,7,4,9/2,4,7,5,7,7,10,5,5,4,6,4,4,3,3,2,3,2,3,2,3/2,1,4,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-9/2,-4,-7,-4,-15/2,-8,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-8,-4,-6,-5,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-14,-6,-6,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-13,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-19/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-20,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-11/2,-4,-9,-5,-15/2,-7,-15,-7,-15/2,-6,-9,-5,-15/2,-6,-14,-7,-9,-7,-14,-9,-27/2,-13,-27 -0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,0,0,0,1,1,1,-1,0,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,3,2,3,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-6,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-5,-8,-8,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-4,-6,-5,-12,-6,-7,-6,-11,-7,-10,-10,-22 --1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,9,5,5,4,5,3,4,4,13/2,4,4,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,9/2,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,7,7,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,6,6,8,5,5,5,8,5,6,6,21/2,6,8,7,12,8,11,11,15,8,8,5,7,4,4,4,11/2,3,3,2,3,2,2,2,6,3,3,2,2,2,2,1,1/2,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-16,-16,-10,-16,-8,-10,-8,-31/2,-8,-9,-7,-12,-7,-9,-8,-20,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-3,-4,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-11,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-18,-9,-9,-6,-9,-5,-8,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-18,-9,-10,-7,-11,-6,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-12,-24,-12,-12,-9,-15,-9,-12,-11,-22,-12,-14,-11,-21,-13,-20,-20,-40 -0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,1,0,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-11/2,-10,-6,-10,-10,-21 -0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,6,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,1,1,1,1,1,1,1,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,-1,0,0,1,0,0,0,1,2,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,7/2,4,7,4,5,4,8,5,7,7,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-19,-9,-9,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-13/2,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-23 -0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,5/2,5,3,4,7/2,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -0,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,1,1,1,1,2,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-3,8,5,5,4,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,2,2,2,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,2,2,2,0,0,0,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,4,4,11/2,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,8,5,6,5,9,6,8,8,12,7,7,5,7,4,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,-2,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-5,-3,-6,-6,-24,-12,-12,-7,-21/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-3,-9,-4,-5,-4,-17/2,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-7,-14,-9,-13,-13,-28 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-3/2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,4,5/2,2,2,3,2,2,2,5,3,4,7/2,6,4,5,5,8,9/2,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-3/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-4,-8,-5,-8,-8,-17 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,9/2,3,5,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,5/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,3,4,3,7/2,3,5,4,5,5,7,4,9/2,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,3,3,6,4,9/2,4,7,5,13/2,6,10,6,11/2,4,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,-1,0,0,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-1,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-17,-8,-17/2,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-14,-7,-15/2,-6,-10,-6,-15/2,-7,-13,-7,-8,-6,-12,-8,-23/2,-12,-24 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,5,3,4,3,5,3,3,2,3,5/2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1/2,0,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,10,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,0,0,0,0,-1,0,0,0,0,1,2,2,4,3,4,4,15/2,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,8,4,4,3,5,3,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-6,12,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,10,5,5,4,6,4,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,5,6,5,8,5,7,7,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,11/2,3,3,2,3,2,3,3,5,3,4,4,6,5,7,8,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,11,18,10,10,7,9,5,6,5,8,4,4,3,4,3,3,2,7/2,2,2,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-39,-19,-19,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-32,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-11,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-15,-23,-23,-47 -0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,1,0,1,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-2,-1,-2,-2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,5/2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5/2,4,3,4,3,4,3,4,4,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24 -0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,3,2,2,2,4,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,1,1,3/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-5/2,-2,7,4,7/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,1,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,3,4,3,7/2,3,4,3,9/2,4,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,3,3,6,4,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,11/2,4,6,4,4,3,5,3,5/2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,0,0,0,0,0,0,1/2,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-23/2,-12,-25 -0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,3/2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-4,-5,-7/2,-7,-5,-8,-8,-17 --1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,-1,1,1,2,2,3/2,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,7,4,4,3,4,3,3,2,4,2,2,2,7/2,2,3,3,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,2,2,0,1,1,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,4,3,3,3,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,9/2,3,4,5,7,4,4,3,4,3,4,4,6,4,4,3,7/2,2,3,3,8,5,5,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,11,6,6,4,11/2,4,4,3,6,3,3,2,7/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-1,0,0,0,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-20,-10,-10,-6,-21/2,-6,-7,-5,-9,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-13,-13,-27 -0,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1/2,1,3,2,2,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,-1,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,3,3,3,2,2,2,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,4,3,4,4,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,8,4,9/2,3,4,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-13,-6,-11/2,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-20 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1/2,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,5/2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,11/2,7,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 -0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,2,2,9/2,3,3,2,3,3,4,4,2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,6,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,8,4,4,3,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3/2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,19/2,6,6,6,10,7,10,9,12,7,7,5,6,4,4,3,9/2,2,2,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34 -0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-11/2,-9,-9,-18 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,3,2,2,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,4,3,7/2,4,1,1,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,8,4,9/2,3,4,3,3,3,3,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-3,-7,-3,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15 -0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,5/2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,4,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,5/2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,3,5,4,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,13/2,4,5,5,7,4,4,4,11/2,4,4,4,5,3,3,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,8,6,8,9,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-17,-8,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-27 -1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,5/2,4,3,4,7/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,4,5,4,9/2,4,5,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,1,1,3/2,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-4,-3,-7,-4,-13/2,-6,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-11/2,-6,-11,-6,-8,-6,-12,-8,-25/2,-12,-26 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,5/2,3,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,5,7/2,4,4,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,9/2,6,4,4,7/2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-25 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,0,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,9/2,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,-1,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,9/2,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,6,4,4,4,7,5,7,7,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,15/2,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,5,9,6,8,8,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,29/2,8,8,6,10,6,7,6,10,6,7,5,8,6,8,8,14,8,9,7,11,7,9,9,17,10,11,9,16,11,16,17,25,13,13,9,13,7,8,7,11,6,5,4,5,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-12,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-31,-15,-16,-11,-17,-9,-11,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-25,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-11,-11,-7,-12,-7,-9,-8,-17,-9,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-10,-14,-13,-27,-14,-17,-14,-26,-17,-25,-25,-50 -1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,1,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,7/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-13/2,-12,-6,-6,-3,-5,-5/2,-3,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-7/2,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-13/2,-8,-7,-13,-8,-12,-12,-25 -1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,1,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,7/2,4,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,4,3,7/2,2,4,2,5/2,2,5,3,7/2,3,5,4,5,5,1,1,1/2,0,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,4,7/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-12,-12,-25 -1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,1,1,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,5/2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1,1,2,2,2,2,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,2,2,2,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,0,0,1,1,1,0,-1,0,-1,-1,3,2,1,1,1,1,2,2,4,2,2,2,5/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,0,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,1,1,1,2,2,4,3,3,2,7/2,3,4,3,2,2,2,2,5/2,2,2,1,2,2,2,2,5/2,2,2,3,4,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,5,3,3,3,9/2,4,5,5,0,1,1,1,1/2,1,1,2,2,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,4,8,4,4,3,9/2,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,13,7,8,6,8,5,5,4,6,4,4,3,3,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-4,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-26 -1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,0,1,1,1,0,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1/2,0,0,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,9/2,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 -0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,1,0,1,1,1,1,1,1,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,0,1,1,1/2,0,2,2,2,1,2,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,3,3,2,3,2,3,2,5/2,2,4,3,7/2,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,-1/2,-1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-17 -0,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,2,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,-1/2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-2,-3,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-7,-7,-14 --2,0,0,1,1,1,2,2,5/2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,-4,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,1,1/2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,5/2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,7/2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,0,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,7,4,4,3,4,2,2,2,7/2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,11/2,4,4,3,5,3,4,4,2,2,2,1,1,1,2,2,7/2,2,2,2,3,2,3,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,10,5,5,4,6,4,6,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,4,13/2,4,4,3,4,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-2,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-24,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-15,-7,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-8,-4,-6,-6,-25/2,-6,-8,-6,-12,-8,-12,-12,-26 -0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,1,1,2,2,2,2,5/2,2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,0,0,1/2,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,5,3,4,3,3,2,5/2,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,3,3,5,3,4,4,6,4,11/2,6,7,4,9/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,1,1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-3,-7,-4,-7,-7,-15 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,9/2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11 --1,0,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,3/2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,3/2,2,2,2,2,2,2,1,1/2,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,3,3,4,3,3,2,2,1,1,0,-1,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,7/2,3,4,3,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,2,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,4,6,4,5,4,13/2,4,6,7,10,6,6,4,11/2,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1/2,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,9/2,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,1,0,0,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,1,1,0,0,0,0,1/2,1,0,1,1,1,2,2,2,2,3,2,1,1,-1,0,1/2,1,0,1,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,2,1,2,2,5/2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,3,3,3,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-3/2,-2,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-5,-8,-8,-17 --2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,3/2,1,1,-1,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-16 --5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3,3,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,13/2,4,3,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,11,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,13/2,4,4,4,6,4,5,5,9,6,7,6,9,6,9,9,15,8,8,5,7,4,5,4,5,3,4,3,5,3,3,3,5,3,3,2,3,2,1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-4,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-24,-12,-12,-8,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-5,-4,-9,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-8,-33/2,-8,-9,-6,-10,-5,-7,-7,-14,-7,-9,-8,-16,-10,-16,-16,-33 --2,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,5,3,4,7/2,5,4,5,5,8,5,5,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-3/2,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 --3,-1,-1,0,-1,0,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,0,-1,0,1,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,5,3,5/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,3,4,2,5/2,2,3,3,4,4,5,3,4,4,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,3/2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17 --2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --3,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,7/2,3,4,4,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,4,11/2,4,6,6,11,6,6,4,11/2,3,3,3,3,2,2,2,5/2,2,3,3,1,1,1,1,2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-2,-2,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1/2,0,0,-1,-2,-1,-2,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-4,-3,-8,-4,-5,-4,-17/2,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --2,-1,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,1,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,7/2,3,4,2,5/2,2,4,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,9,5,9/2,3,5,3,3,3,4,2,5/2,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-12,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-14 --1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,1,1,2,2,2,3/2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1/2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,9/2,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-13 --2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,1,1,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,5,3,3,2,3,2,1,1,1/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,15/2,5,6,6,10,7,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,1,1,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-25 -0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-6,-6,-13 -0,1,1,1,-1,0,1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,7/2,4,6,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,4,5,4,9/2,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-7,-7,-15 -0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-12 --1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-3,-1,-1,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,9/2,3,4,4,9,5,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,3,4,3,3,2,5/2,2,3,3,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,5,8,5,6,5,17/2,6,8,9,15,8,7,5,13/2,4,5,4,8,4,4,3,7/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-9/2,-3,-5,-5,-2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,11/2,5,4,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-5,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14 --2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,5,3,4,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,11/2,5,10,6,11/2,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,4,3,7/2,3,5,4,9/2,4,9,5,11/2,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,15/2,5,8,5,11/2,4,7,4,4,3,4,3,3,3,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-11/2,-5,-12,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-15,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,7/2,5,4,6,5,10,6,6,4,6,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,4,5/2,3,2,4,5/2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,7/2,4,4,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,0,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,4,5,5,8,5,5,3,4,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,6,8,9,35/2,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,9,5,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,9,9,16,9,11,9,15,11,16,16,27,14,15,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,2,1,0,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-6,-9,-9,-37,-18,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-14,-8,-12,-12,-47/2,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-16,-11,-17,-17,-32,-15,-15,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-16,-9,-12,-10,-19,-10,-13,-10,-19,-12,-18,-17,-35,-17,-18,-12,-20,-11,-13,-11,-22,-11,-13,-10,-17,-10,-14,-13,-26,-13,-13,-9,-15,-8,-11,-9,-18,-9,-11,-9,-16,-10,-16,-16,-33,-16,-17,-11,-17,-9,-12,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-16,-11,-17,-10,-13,-12,-24,-12,-14,-11,-21,-14,-21,-21,-43 --2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,5/2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,3,3,6,4,4,3,4,5/2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,5/2,3,5/2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-9/2,-9,-9/2,-6,-9/2,-9,-11/2,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,3,7/2,3,4,3,7/2,3,3,2,3,3,4,3,3,3,6,4,4,3,4,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,4,5,4,5,5,9,6,13/2,6,8,6,17/2,8,14,8,15/2,6,8,5,5,4,8,5,5,4,5,4,9/2,4,6,4,4,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,6,4,7/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,2,2,3/2,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-11/2,-4,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-13/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 -0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,9/2,6,6,10,6,6,4,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-11/2,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-14 --1,0,0,0,0,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,6,4,4,3,7/2,3,4,4,4,3,3,2,3,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,9/2,3,4,5,10,6,6,4,13/2,4,5,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,3,3,3,2,2,2,7/2,3,4,4,6,4,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,9,5,6,4,11/2,4,6,6,10,6,6,6,19/2,6,9,9,14,8,8,5,13/2,4,4,4,8,5,5,4,5,4,5,4,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,5,3,3,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-5/2,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-19,-9,-8,-5,-17/2,-4,-6,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-9,-9,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22 -0,1/2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-11/2,-12 -1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,7/2,4,7,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,3,3,2,2,2,3,3,7,4,9/2,3,4,3,9/2,4,8,5,5,4,8,5,7,7,9,5,5,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,4,3,3,2,3,2,3/2,2,2,1,1,1,1,1,1,1,4,2,5/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-14 -1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,3/2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 -1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-3,-1,-1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,1,1,1,1,2,3,2,3,3,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,-1,0,1,1,2,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,2,-1,0,0,0,0,1,1,1,3/2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,1,1,1,1,2,2,5,3,3,2,3,2,3,3,9/2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,4,2,2,2,2,2,2,2,9/2,3,4,3,5,4,5,4,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,10,6,6,5,8,5,6,6,23/2,7,8,7,11,7,10,10,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,7/2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,1,1/2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-2,-1,-1,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-6,-6,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21 -1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,3/2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,1,1/2,0,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,3/2,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,3,2,7/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,3,3,3,3,2,7/2,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,7/2,4,6,4,4,4,6,4,13/2,6,8,4,9/2,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,5/2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-11/2,-6,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-11/2,-6,-12 -2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,5,3,3,3,5,4,5,5,6,7/2,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,-1,1,1,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,0,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,3/2,1,1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,-1,0,0,1,2,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-3/2,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,5,3,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,11,6,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,9/2,3,3,3,6,4,4,3,9/2,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,0,0,0,0,-3/2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-11/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-8,-8,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,5/2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,6,7/2,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-4,-4,-8 -2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,1,0,1,3/2,1,1,1,2,2,1,1,2,2,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,2,2,3/2,2,2,2,5/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,0,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,5,3,3,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,7/2,3,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,2,4,3,7/2,4,10,5,5,4,5,3,3,3,5,3,5/2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,7,4,4,3,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,9/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,3/2,1,2,2,3/2,1,0,0,0,0,-1,0,-3/2,-2,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-13,-6,-11/2,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-12 -2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,2,3/2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1/2,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,4,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,9,5,5,7/2,4,3,3,3,4,5/2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,5/2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,4,4,7/2,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12 -3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,3,-1,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,10,5,5,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,7/2,2,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,2,4,2,2,2,3,2,3,3,6,4,5,5,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,17,9,9,6,9,6,7,6,11,6,6,4,6,4,4,4,15/2,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,23/2,6,7,5,8,5,6,6,11,7,8,7,13,9,13,13,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7/2,2,2,1,1,1,0,0,0,0,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,1,1,1,1,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-23,-11,-11,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-12,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-9,-23,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1/2,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,3/2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12 -3,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,1,2,5/2,2,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,5,3,3,2,3,2,3/2,2,3,2,2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,9,5,11/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,5,5,8,6,8,8,8,4,9/2,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,-1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-13/2,-6,-10,-4,-9/2,-2,-5,-2,-7/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-9/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13 -3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,3/2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,6,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9 -6,4,4,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,5/2,2,2,3,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,5/2,2,3,3,7,4,3,2,3,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,-1,-1,2,2,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,-1/2,0,0,-1,-1,0,-1,0,-3/2,-1,-2,-1,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,-1,6,3,3,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,3,3,2,7/2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,4,4,5,3,4,3,9/2,3,4,4,6,4,4,3,5,4,5,5,6,4,4,4,11/2,4,4,4,6,4,6,5,17/2,6,8,8,8,5,5,4,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-13,-6,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-7,-7,-14 -4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,5,5,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 -6,4,4,3,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,5/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,5/2,2,3,2,3/2,1,2,2,2,2,2,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,0,0,-5,-2,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,0,0,1/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,5/2,2,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,3,2,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,5,5,5,3,7/2,3,5,3,4,3,5,4,5,4,7,5,7,7,7,4,9/2,4,4,3,7/2,3,5,3,4,3,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-6,-3,-9/2,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 -6,3,3,5/2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,3/2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,3/2,2,2,2,3/2,2,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1/2,0,1/2,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-10 -10,6,6,4,5,3,4,3,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,11/2,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,3,3,3,4,2,2,1,1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,1,1,1,0,0,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,-1,0,0,1,1,1,0,0,1/2,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,4,3,5,5,8,5,5,3,4,3,3,3,6,3,3,2,3,2,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,8,5,5,4,6,4,6,5,9,6,8,7,12,8,12,12,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,1,2,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,4,3,3,3,4,3,3,2,5/2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-4,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-19 -6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,5,3,3,3,4,3,4,7/2,6,4,5,4,7,5,7,7,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-9/2,-10 -8,4,9/2,3,4,3,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,7/2,3,4,2,5/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,0,-1/2,0,-1,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,5,3,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,11/2,4,7,5,7,7,9,5,11/2,4,6,4,4,4,5,3,7/2,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-11 -7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,3/2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1/2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,5/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-8 -11,6,6,4,11/2,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,7/2,2,2,2,3,2,3,2,3,3,4,4,3,2,2,2,3/2,1,1,1,3,2,3,2,3,3,4,4,5,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-2,-2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1/2,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,-7,-3,-3,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,2,2,2,2,3,3,4,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,5,3,3,3,9/2,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,9/2,3,4,4,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,3,3,4,3,3,3,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,12,7,7,5,15/2,5,6,5,8,4,4,3,9/2,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,1,1,2,0,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,1,4,3,3,2,2,2,2,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-15 -8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,3,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,9,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,3,2,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,7/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,5,4,5,4,10,5,5,4,5,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,13/2,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,5,7,4,9/2,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,4,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,4,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,4,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,9/2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-5/2,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-5,-4,-8,-5,-7,-7,-15 -21,11,12,9,13,8,9,8,13,7,7,5,7,5,6,5,9,5,5,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,6,6,10,6,6,4,6,3,3,2,3,2,2,2,2,2,3,3,6,3,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,18,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,10,17,12,18,18,25,13,13,9,12,7,8,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,4,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,5,3,3,2,3,2,3,2,3,2,1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-19/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-21,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,9/2,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,-1/2,-2,-2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,13/2,10,10,13,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 -12,7,7,5,8,5,11/2,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,2,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,9/2,4,6,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,7/2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,7/2,3,4,3,7/2,3,4,3,9/2,4,10,5,5,4,6,4,7/2,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,5,4,5,4,11/2,5,8,5,6,5,8,6,10,10,14,8,15/2,5,6,4,5,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,0,0,1/2,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-15 -8,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,3,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,2,2,3,3,4,7/2,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,9/2,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 -12,7,7,5,15/2,4,5,4,7,4,4,3,9/2,3,4,4,5,3,4,3,7/2,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,6,4,4,3,7/2,3,4,3,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,5,5,8,4,4,3,5,3,3,2,4,3,3,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,0,0,1,1,0,0,-1/2,0,0,-1,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,-7,-3,-4,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,1,1,2,2,2,2,4,3,3,2,5/2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,1,3/2,2,2,1,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,11/2,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,10,6,6,4,11/2,3,3,3,5,3,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,5/2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,14,7,7,5,7,4,5,5,8,5,5,4,5,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,2,2,2,2,3/2,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-17 -7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,3/2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,2,5/2,6,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,8,9/2,4,3,5,3,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-10 -8,5,5,4,6,4,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,2,2,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,6,4,9/2,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,1,1/2,1,2,1,1/2,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,4,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,3,7,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,4,3,3,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,10,6,11/2,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,-1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13 -7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,3,2,3,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,5/2,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-11 -13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,11/2,3,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,9/2,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,2,2,2,3/2,1,1,1,0,0,-1,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,0,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-2,5,3,3,2,3,2,3,2,7/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,7,4,4,3,5,3,3,3,5,4,5,4,7,5,6,6,13,7,7,5,6,4,4,4,13/2,4,4,3,4,3,3,3,8,5,5,4,5,3,3,3,9/2,3,3,3,4,3,5,5,4,3,3,2,2,2,3,3,11/2,4,4,3,5,3,4,4,10,5,5,4,6,4,6,6,21/2,6,8,6,10,7,10,11,16,9,9,7,10,6,7,6,17/2,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,4,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-21/2,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-5,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-12,-7,-11,-11,-22 -8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,5/2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,2,2,2,3/2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12 -9,5,5,4,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,3,3,4,2,5/2,3,4,3,3,3,4,3,4,4,5,3,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,4,9/2,4,7,4,4,3,5,3,3,2,2,2,3/2,2,2,2,2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,5/2,2,3,2,3/2,1,1,1,1/2,0,0,0,1/2,0,2,1,1,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,0,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,3/2,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,4,3,3,2,4,2,2,2,4,3,4,3,5,3,4,4,9,5,5,4,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,7/2,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,7/2,3,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,3/2,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-6,-6,-12,-5,-5,-3,-7,-3,-4,-3,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14 -8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,5/2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,7/2,4,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,-1/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,4,6,4,6,6,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1/2,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11 -13,7,6,4,13/2,4,5,5,8,5,5,4,13/2,4,5,5,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,13/2,4,4,4,8,5,6,5,7,4,5,5,9,5,5,4,6,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,7/2,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,1,1,1,2,2,5,3,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,2,1,1,1,3/2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,3,4,4,5,3,3,3,9/2,4,5,5,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,10,6,7,6,10,7,10,9,13,7,7,5,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1/2,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1/2,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-9,-9,-6,-17/2,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-9,-6,-9,-9,-19 -9,5,4,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,6,7/2,4,3,5,3,4,7/2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,1,1,1,0,0,0,0,0,-1/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,5/2,3,5/2,3,7/2,7,4,5,4,7,5,7,6,8,5,5,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,3/2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,1/2,1,1,0,0,0,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 -13,7,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,7/2,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,5,3,5/2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1/2,1,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,11,6,6,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,4,3,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,7/2,3,4,3,4,5,9,6,13/2,5,9,6,9,9,11,6,6,4,6,3,3,2,5,3,3,2,4,3,3,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-7,-7,-16,-8,-15/2,-5,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-5,-4,-8,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-9/2,-4,-7,-5,-8,-8,-17 -13,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,5/2,4,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1/2,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,7/2,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,4,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,9/2,8,5,6,5,8,6,8,17/2,10,6,6,4,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,1,1,1,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-15/2,-16 -24,13,13,9,12,7,9,8,14,8,9,7,10,6,7,6,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,8,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,11/2,4,4,3,5,3,4,4,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,5,7,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,6,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,20,10,10,7,9,5,6,5,8,4,4,3,5,4,5,5,19/2,6,6,4,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,7,6,9,6,9,9,17,10,11,9,15,11,16,16,18,9,9,6,8,5,5,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,0,0,0,0,0,1,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-6,-13,-7,-8,-7,-13,-9,-15,-15,-28,-14,-14,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-9,-18,-9,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-8,-35/2,-8,-9,-6,-11,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-33 -13,7,7,5,7,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -14,8,15/2,6,8,5,11/2,5,8,5,5,4,5,4,9/2,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,4,5,5,8,4,9/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-1,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,3/2,1,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4,3,7/2,3,6,4,7/2,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,4,4,5,4,11/2,6,11,6,11/2,4,6,4,4,3,5,3,3,2,4,3,7/2,4,6,4,7/2,3,3,2,3,3,3,2,3,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,5,9,5,6,5,8,6,9,9,10,6,11/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-8,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18 -10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,7/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,6,5,7,7,8,9/2,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -15,8,8,6,17/2,5,6,6,8,4,4,4,11/2,4,5,5,7,4,4,3,9/2,4,5,5,6,4,4,4,13/2,4,6,6,11,6,6,4,9/2,3,3,2,5,3,3,3,4,3,3,3,5,3,4,4,11/2,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,6,4,4,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,6,4,4,3,7/2,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,12,7,7,5,13/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,4,3,4,4,11/2,4,6,6,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,12,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-4,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-19/2,-6,-10,-10,-20,-10,-10,-6,-21/2,-6,-8,-7,-13,-6,-6,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22 -9,5,5,4,6,7/2,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,8,5,5,7/2,5,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,5,3,3,2,4,2,2,2,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,7/2,3,5,3,3,3,5,3,4,4,6,4,7/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,4,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,6,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,10,6,11/2,4,6,4,4,4,5,3,7/2,3,4,3,7/2,3,6,4,7/2,2,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,7/2,3,5,3,3,2,3,2,7/2,4,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,0,1,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-4,-3,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-17/2,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17 -11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,5/2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,5/2,4,4,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,6,4,6,4,6,5,17/2,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,10,5,5,4,6,4,5,5,17/2,5,6,5,9,6,9,9,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,11/2,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-5/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,5/2,2,2,2,2,2,3,3,8,5,5,3,4,3,3,3,11/2,3,3,2,3,2,3,3,5,3,2,2,2,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,2,7/2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,4,4,4,9,5,5,4,6,4,6,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,7,6,21/2,6,7,6,9,6,8,8,11,6,7,6,10,6,8,8,27/2,8,10,9,15,11,16,16,18,9,9,6,8,5,5,4,15/2,4,5,4,7,5,6,6,6,4,4,3,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-16,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-9,-6,-9,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-7,-6,-27/2,-7,-8,-6,-10,-6,-8,-7,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-20,-10,-10,-6,-10,-6,-8,-7,-27/2,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-6,-8,-8,-19,-9,-10,-6,-10,-6,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30 -12,13/2,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,6,7/2,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-9/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -14,8,15/2,6,7,4,11/2,5,7,4,5,4,6,4,5,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,10,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,3/2,2,1,1,1,1,-1,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,5,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,6,4,9/2,4,7,5,13/2,6,12,6,13/2,4,7,4,9/2,4,6,4,7/2,3,5,3,7/2,3,6,4,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,9/2,4,5,4,9/2,4,6,4,9/2,4,6,4,11/2,5,8,5,5,4,6,4,6,5,9,6,13/2,6,10,7,21/2,10,12,6,6,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-22,-10,-21/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-10,-20 -12,13/2,6,5,6,4,4,4,6,4,4,7/2,5,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,3,4,3,4,7/2,5,3,4,4,6,4,6,6,10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,7,4,4,3,5,7/2,5,4,7,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-5/2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -22,12,12,8,23/2,6,7,6,11,6,7,6,17/2,6,8,7,11,6,6,5,7,4,5,5,8,5,6,5,17/2,6,9,9,17,9,9,6,19/2,6,7,6,7,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,8,5,6,5,17/2,6,8,8,14,7,7,5,15/2,4,5,5,7,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,9/2,3,3,3,4,3,3,2,7/2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,5/2,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,2,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,2,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,1,2,2,2,2,4,3,3,2,7/2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,7/2,2,3,3,7,4,5,4,6,4,5,5,9,5,6,6,19/2,6,9,9,18,9,9,6,9,5,5,4,7,4,4,4,11/2,4,5,4,8,4,4,4,11/2,4,4,4,7,4,4,4,6,5,7,7,10,6,6,4,13/2,4,5,5,8,5,6,5,15/2,6,8,7,12,7,7,5,15/2,5,6,6,12,7,9,8,14,10,15,15,17,9,9,6,8,5,5,4,8,5,6,5,7,5,6,6,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,1,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-9,-9,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-7,-7,-16,-8,-10,-8,-31/2,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-9,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-10,-7,-23/2,-6,-9,-8,-16,-8,-10,-8,-31/2,-10,-15,-15,-31 -15,8,8,6,8,9/2,5,4,8,9/2,5,4,6,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,5,3,3,3,4,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,7/2,4,4,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-9/2,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-10,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -22,12,12,8,11,6,15/2,6,11,6,13/2,5,8,5,7,7,11,6,13/2,5,7,4,11/2,6,9,6,13/2,5,8,6,17/2,9,17,9,9,6,10,6,13/2,5,7,4,5,4,6,4,11/2,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,17/2,8,15,8,8,6,8,5,11/2,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,2,1,1,1,3,2,2,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,1,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,4,7,4,9/2,4,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,4,9/2,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,27/2,14,16,8,17/2,6,8,5,11/2,4,8,5,5,4,6,4,6,5,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-13/2,-4,-6,-3,-5,-4,-6,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-10,-6,-19/2,-10,-21,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-7,-7,-13,-6,-13/2,-4,-7,-4,-5,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-19/2,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-15/2,-7,-13,-7,-17/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-8,-15,-10,-15,-15,-32,-16,-31/2,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-14,-7,-17/2,-7,-13,-8,-25/2,-12,-26,-13,-13,-8,-14,-7,-17/2,-7,-15,-7,-8,-6,-11,-6,-19/2,-9,-19,-9,-9,-6,-12,-7,-19/2,-8,-16,-8,-21/2,-8,-16,-10,-31/2,-15,-31 -21,11,11,8,11,7,8,13/2,11,6,6,5,8,5,7,13/2,11,6,6,5,7,9/2,6,6,10,6,7,11/2,9,6,9,9,17,9,9,6,9,11/2,6,5,8,9/2,5,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,5/2,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,3/2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,7/2,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-14,-7,-8,-7,-14,-7,-8,-6,-11,-13/2,-10,-9,-19,-9,-9,-6,-12,-7,-9,-8,-17,-9,-10,-8,-16,-10,-16,-15,-31 -41,21,21,14,21,13,16,14,24,13,13,10,16,10,14,13,23,12,12,9,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,13,8,10,9,15,11,16,16,31,16,16,11,16,9,10,8,13,7,8,6,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,7,12,8,11,10,18,9,9,7,10,6,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,0,1,1,2,2,2,3,5,3,4,4,6,4,6,6,21/2,6,7,5,8,5,6,5,9,5,6,5,7,5,8,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,12,12,22,11,11,8,12,7,7,6,10,6,7,5,8,6,8,7,13,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,24,13,13,9,13,7,8,6,10,6,7,5,8,5,6,6,11,6,7,5,8,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,22,11,11,8,11,7,9,8,13,7,7,5,8,6,8,7,13,7,6,4,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,6,5,8,5,7,7,13,8,9,8,13,9,12,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,21,12,13,10,17,11,16,16,31,16,17,12,18,11,13,11,20,11,13,10,17,11,16,15,28,15,15,11,18,11,15,14,27,16,19,16,28,19,27,27,28,15,15,10,15,8,9,7,12,7,7,5,8,6,8,8,15,8,9,7,10,6,7,6,11,7,8,7,11,7,10,10,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,9,16,11,17,17,33,17,18,13,19,11,13,11,20,11,13,10,16,10,13,13,24,13,14,10,16,10,12,11,19,10,11,9,14,9,13,13,24,13,13,9,12,7,8,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-11,-6,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-8,-8,-6,-11,-6,-8,-8,-16,-9,-11,-9,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-17,-35,-18,-19,-14,-24,-14,-19,-18,-35,-19,-23,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-23,-19,-35,-17,-18,-13,-22,-13,-18,-16,-32,-16,-17,-12,-19,-11,-14,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-17,-17,-11,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-18,-12,-18,-19,-39,-19,-20,-13,-21,-12,-15,-13,-25,-13,-14,-10,-18,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-18,-38,-19,-19,-12,-19,-10,-13,-11,-21,-11,-12,-10,-18,-11,-16,-15,-31,-16,-17,-13,-22,-13,-18,-16,-32,-17,-21,-18,-33,-21,-32,-32,-64 -21,11,11,8,11,7,8,7,12,7,7,11/2,8,6,8,7,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,9/2,7,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,4,5/2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,9/2,5,4,6,4,5,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,17/2,14,10,14,14,15,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,17,9,10,7,10,6,7,6,10,6,7,6,8,5,7,7,13,7,7,5,9,11/2,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,5/2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-13/2,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-16,-33/2,-34,-33/2,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-11/2,-9,-5,-6,-11/2,-11,-6,-7,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-9,-9,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-15/2,-8,-6,-11,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -21,11,23/2,8,11,7,8,7,12,7,15/2,6,8,6,8,7,12,6,6,5,8,5,11/2,5,9,5,5,4,7,4,11/2,6,9,5,11/2,4,5,4,9/2,4,6,4,4,3,4,3,9/2,4,6,4,9/2,4,5,3,4,4,7,5,6,5,8,6,17/2,8,16,9,9,6,9,5,11/2,4,6,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,5,5,9,5,5,4,5,3,7/2,3,3,2,3,2,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,4,8,4,4,3,6,4,5,5,8,5,6,5,8,5,6,6,11,6,13/2,5,6,4,4,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,4,6,4,13/2,7,13,7,7,5,7,4,9/2,4,5,3,4,3,4,3,7/2,4,6,4,7/2,3,5,3,4,4,6,4,7/2,3,5,4,5,5,10,6,11/2,4,6,4,5,4,7,4,4,3,5,4,9/2,4,7,4,5,4,4,3,7/2,3,5,4,9/2,4,6,4,13/2,7,11,6,11/2,4,6,4,9/2,4,7,4,9/2,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,9/2,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,13/2,6,9,6,8,8,16,9,9,6,10,6,15/2,6,11,6,7,6,10,6,8,8,15,8,8,6,10,6,17/2,8,13,8,9,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,4,11/2,6,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,5,8,6,17/2,9,17,9,19/2,7,10,6,15/2,6,10,6,7,6,8,5,7,7,13,7,7,5,9,6,13/2,6,10,6,6,5,8,5,7,7,13,7,13/2,4,7,4,5,4,6,3,3,3,3,2,3,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-8,-4,-11/2,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-9,-16,-10,-33/2,-17,-33,-16,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-17/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-10,-7,-10,-5,-7,-6,-12,-6,-13/2,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,4,3,4,4,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,5/2,3,3,5,3,3,5/2,4,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,5/2,3,2,3,3,4,3,3,2,4,5/2,3,3,4,5/2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,4,3,4,7/2,5,3,4,3,3,2,3,3,4,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,9/2,7,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,5/2,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,7,5,7,9/2,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -20,11,11,8,23/2,7,8,7,12,7,8,6,17/2,6,7,7,13,7,7,5,15/2,4,5,5,9,5,6,5,15/2,5,7,6,9,5,5,4,5,4,5,5,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,15,8,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,3,3,2,2,2,9/2,3,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,3,2,1,1,1,1,1,1,2,1,1,0,-1/2,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-2,0,0,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,4,3,3,3,5,3,4,4,6,4,4,3,7/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,5,4,5,5,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,6,4,13/2,4,6,7,12,6,6,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,4,3,9/2,3,4,4,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,10,6,6,4,11/2,4,4,4,7,4,5,4,11/2,4,4,4,7,4,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,12,6,6,5,15/2,5,6,5,11,6,6,5,17/2,6,8,8,17,9,10,7,19/2,6,8,7,12,7,8,6,10,7,9,9,15,8,8,6,21/2,7,9,8,12,7,9,8,14,9,13,13,14,8,8,5,7,4,4,4,8,5,5,4,6,4,6,5,9,5,5,4,11/2,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,15/2,6,8,8,17,9,9,7,10,6,8,7,11,6,6,5,8,5,7,6,12,7,8,6,17/2,5,6,6,8,5,5,4,13/2,5,7,7,13,7,7,5,13/2,4,5,4,6,3,3,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3/2,1,0,0,1,1,2,2,5/2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-4,-5,-4,-9,-6,-10,-10,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-33/2,-10,-16,-17,-32,-16,-16,-10,-33/2,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-19/2,-6,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-10,-5,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-16,-8,-8,-6,-10,-6,-9,-8,-15,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,7/2,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,9/2,6,5,8,6,8,8,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -13,7,8,6,8,5,11/2,5,9,5,11/2,4,6,4,9/2,4,8,5,5,3,5,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,4,3,7/2,4,6,4,4,4,6,4,6,6,11,6,13/2,5,7,4,9/2,4,4,3,3,3,5,3,4,4,6,4,7/2,3,5,3,7/2,3,5,3,5/2,2,3,2,7/2,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,5/2,2,4,3,7/2,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,5,3,7/2,3,6,4,11/2,5,9,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,3,5,3,4,3,6,4,11/2,6,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,7,4,7/2,3,4,3,3,3,6,4,7/2,3,5,3,7/2,4,9,5,5,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,12,6,13/2,5,8,5,6,5,9,5,6,5,8,5,7,6,10,6,11/2,4,7,4,11/2,5,8,5,13/2,6,10,7,9,9,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,6,6,12,6,13/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,8,5,5,4,5,3,4,4,6,4,7/2,3,5,4,11/2,6,10,6,11/2,4,4,3,7/2,3,4,2,2,2,2,2,3/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,3,2,2,2,1,1,3/2,1,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-9,-5,-13/2,-5,-11,-7,-11,-11,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20 -11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,6,7/2,4,3,5,3,4,9/2,10,11/2,6,4,7,4,5,9/2,8,9/2,5,4,7,9/2,6,11/2,8,9/2,4,3,5,4,5,9/2,7,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17 -20,11,11,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,4,3,3,3,4,3,5,5,17/2,5,6,6,10,7,10,9,17,9,10,7,10,6,6,5,15/2,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,2,2,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,9/2,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,11/2,3,3,2,3,3,4,4,5,3,4,3,5,3,4,3,5,3,3,3,5,4,5,5,12,6,6,4,6,4,4,3,9/2,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,12,7,7,5,6,4,5,4,13/2,4,4,4,6,4,5,4,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,13/2,4,6,5,8,6,9,9,11,6,6,4,6,4,4,4,15/2,4,5,4,6,4,4,4,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,13,7,7,5,8,5,6,5,17/2,5,5,4,7,5,8,8,17,9,10,7,11,7,9,8,13,7,8,6,9,6,9,9,13,7,7,5,8,5,7,7,25/2,7,8,7,12,8,12,13,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,7,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,5,13,7,7,5,6,4,4,4,13/2,4,6,5,8,5,7,7,14,8,8,6,8,5,5,4,11/2,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-9,-18,-12,-18,-18,-30,-15,-15,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-35/2,-9,-11,-9,-16,-10,-16,-15,-31 -11,6,6,4,6,4,5,4,7,4,5,4,5,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,2,2,3/2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,6,4,4,5/2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16 -12,6,13/2,4,7,4,5,4,8,5,5,4,5,4,5,4,6,4,7/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,3,2,2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,6,4,7/2,3,3,2,2,2,2,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,4,3,3,3,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,7/2,3,4,3,3,3,6,4,11/2,6,6,4,7/2,2,3,2,5/2,2,5,3,3,3,3,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,3,6,4,4,3,5,3,7/2,4,5,3,4,3,5,3,4,4,9,5,6,4,7,4,5,4,8,5,5,4,5,4,11/2,6,9,5,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,8,8,9,5,11/2,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,7/2,3,6,4,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,9/2,3,5,3,3,3,4,2,2,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-9/2,-5,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-11/2,-4,-8,-5,-8,-8,-17 -9,5,5,4,6,7/2,4,7/2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,9/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,5/2,3,3,3,2,3,2,4,3,3,3,7,4,5,7/2,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,7/2,5,3,4,3,4,3,3,2,3,2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,3,4,4,5,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 -15,8,8,6,17/2,5,6,5,10,5,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,2,2,2,2,7/2,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,4,4,8,5,5,4,11/2,4,4,4,7,4,4,3,5,3,4,3,3,2,3,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,2,2,2,2,5/2,2,3,3,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,5/2,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,9/2,3,4,5,9,5,5,4,5,3,4,3,3,2,3,2,7/2,2,3,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,9/2,3,4,4,5,3,4,4,13/2,5,7,7,6,4,4,3,4,3,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,8,4,4,3,5,3,3,3,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,4,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,5,5,4,13/2,4,6,6,11,6,6,5,15/2,5,6,5,8,5,6,5,8,6,9,9,11,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,9/2,4,5,5,12,7,7,5,7,5,6,5,6,4,4,3,5,3,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,11/2,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,5/2,2,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-6,-8,-6,-23/2,-8,-12,-12,-18,-9,-9,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-20 -10,11/2,6,4,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1/2,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,7/2,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,3,5/2,4,5/2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,7/2,8,4,4,3,5,3,4,3,4,3,3,5/2,4,5/2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 -13,7,15/2,6,8,5,11/2,5,9,5,5,4,5,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,3,5,4,11/2,5,9,5,11/2,4,7,4,9/2,4,7,4,9/2,3,5,4,5,5,6,4,4,3,5,3,4,3,3,2,5/2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,3,3,8,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,9/2,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,7,5,15/2,8,10,6,11/2,4,6,4,7/2,3,5,3,4,3,4,3,4,3,5,3,7/2,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,3,3,4,3,9/2,4,10,5,5,4,6,4,5,4,6,4,7/2,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-5,-9,-6,-19/2,-10,-15,-7,-15/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-16 -13,7,7,5,7,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1/2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,10,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -24,13,13,9,14,8,10,8,13,7,7,6,9,6,7,6,19/2,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,5,8,6,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,25/2,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,5,4,6,6,0,1,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,4,6,6,13,7,8,6,8,5,6,5,7,4,4,3,5,3,3,3,9/2,3,4,3,4,3,4,4,7,4,5,4,5,4,6,6,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,19/2,6,6,5,7,5,6,6,12,7,8,6,10,7,10,11,7,4,3,2,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,14,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,10,11,8,12,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,13,8,11,10,17,10,11,9,15,10,13,13,20,11,11,8,11,6,7,5,8,5,5,4,6,4,5,4,15/2,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,15,8,9,6,9,5,6,5,7,4,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,9,5,4,3,4,3,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-19/2,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-33/2,-8,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-18,-28,-14,-14,-9,-13,-7,-9,-8,-15,-7,-8,-5,-8,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-16,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-4,-5,-4,-7,-4,-7,-6,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-15,-10,-15,-15,-30 -13,7,7,5,8,5,6,5,7,4,4,3,5,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,7/2,5,3,4,3,5,3,4,4,7,4,4,7/2,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,5/2,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,7,9/2,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,3/2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-13,-6,-7,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-15 -13,7,15/2,6,8,5,6,5,7,4,4,3,6,4,4,3,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,9/2,4,5,3,7/2,3,5,3,4,4,7,4,9/2,4,5,4,9/2,4,6,4,4,4,6,4,5,5,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,0,1,3/2,2,2,2,2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,3,2,7/2,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,2,2,2,2,3,2,3,3,5,3,7/2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,13/2,4,7,4,9/2,4,5,3,3,2,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,8,5,5,3,5,3,7/2,3,5,3,5/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,4,2,5/2,2,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,3,8,4,9/2,3,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,1,1,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-9,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -9,5,5,4,6,4,4,4,6,7/2,4,3,4,3,3,5/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,4,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9 -14,7,7,5,8,5,6,5,9,5,5,4,11/2,4,4,3,4,3,4,3,5,3,4,4,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,13/2,4,6,5,6,4,4,3,4,3,3,2,3,2,3,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,7/2,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,-1,0,1,1,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,7,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,4,13/2,4,6,6,5,3,3,2,2,2,2,1,3,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,15/2,6,8,8,11,6,7,5,7,4,5,4,5,3,3,2,7/2,3,4,4,4,3,3,3,9/2,3,3,3,5,3,3,3,9/2,4,5,5,7,4,4,3,9/2,3,4,4,4,2,2,2,7/2,2,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,7/2,3,4,4,10,5,5,4,11/2,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,4,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,5/2,2,2,2,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1/2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-5/2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-3,-3,-8 -10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,7/2,3,4,3,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,3,2,2,2,5/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,-1,-1,-2,0,-1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,4,3,3,3,6,4,4,3,4,3,9/2,5,4,3,3,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,3,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,6,4,7/2,3,4,2,5/2,2,3,2,7/2,3,3,2,2,2,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,2,5/2,2,4,2,5/2,2,3,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,2,1,1,2,2,2,2,3/2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-3,-8,-4,-5,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 -9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,4,3,3,3,6,7/2,3,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,7/2,6,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,4,5,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,1,1,2,2,3,2,3,2,3,2,3,2,3,2,3,3,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,3,3,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,2,2,5/2,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,9/2,3,4,4,6,4,5,5,-2,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,7/2,2,2,2,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,4,5,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,4,3,3,3,4,3,3,3,11/2,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,6,4,5,5,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,6,9,9,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-19/2,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-6,-11,-7,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-3,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,5/2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9 -10,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,7/2,4,3,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,3,5,4,5,4,7,4,4,3,4,3,7/2,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,1,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,3,2,3,3,-2,0,0,0,0,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,2,4,3,3,3,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,4,2,2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,7/2,3,6,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,3,7/2,4,5,3,4,4,6,4,6,6,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,7,4,4,3,4,3,7/2,3,5,3,3,2,4,3,3,3,3,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,3,2,4,3,3,3,5,3,7/2,3,5,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,4,3,9/2,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,7/2,3,6,4,4,3,3,2,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-10 -9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,1,1/2,0,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-4,-4,-8 -15,8,8,6,15/2,4,5,5,8,4,4,4,11/2,4,5,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,3,7,4,4,4,11/2,4,6,5,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,0,0,1,1,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,2,2,2,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,3/2,2,2,1,0,1,1,2,5/2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,5,5,-3,-1,-1,0,1/2,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,2,5,3,4,3,7/2,2,2,2,2,2,2,1,1,1,1,2,4,3,3,3,4,3,5,5,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,17/2,6,8,8,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,3,2,1,1,1,1,1,1,2,2,10,6,6,4,13/2,4,4,4,7,4,5,4,5,3,4,4,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,6,4,5,4,7,5,7,7,10,5,5,4,6,4,5,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,2,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,5,3,3,2,5/2,2,1,1,0,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-3,-13/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-6,-11,-7,-10,-10,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-7,-16 -10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,5/2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1/2,1,1,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 -15,8,8,6,8,5,5,4,7,4,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,5,3,5/2,2,3,2,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,4,5,4,11/2,5,10,6,6,4,5,3,7/2,3,4,3,3,2,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,2,2,5/2,2,3,2,5/2,2,3,3,4,4,-2,0,0,0,0,1,3/2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,6,4,9/2,4,8,5,11/2,5,8,6,8,8,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,2,2,2,2,1,1,3/2,2,10,6,6,4,6,4,4,3,6,4,7/2,2,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,7/2,3,5,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,4,3,6,4,5,5,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,7,4,7/2,3,3,2,5/2,2,4,2,2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,1,1,1,2,2,1,1,1,1,-1,0,0,0,-4,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-7,-5,-10,-6,-10,-10,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-13/2,-7,-15 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,5/2,4,3,6,4,4,3,4,5/2,3,5/2,4,5/2,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,11/2,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,2,3/2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,10,6,6,4,6,4,4,3,5,3,3,2,3,5/2,3,3,5,3,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-10,-5,-6,-5,-10,-6,-10,-10,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-14 -28,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,5,7,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,4,4,6,4,6,6,21/2,6,6,4,6,4,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,4,6,7,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,2,2,2,2,2,2,2,2,4,3,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,8,5,7,7,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,3,3,6,4,5,4,7,5,6,6,25/2,7,8,6,8,5,6,5,8,5,6,5,9,6,8,8,14,8,8,7,11,7,9,8,14,8,9,8,14,10,15,15,6,3,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,7,4,3,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,20,10,10,7,10,6,6,5,7,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,6,4,4,3,5,4,5,4,7,4,5,5,8,6,8,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-4,-19/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-13,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-2,-6,-4,-6,-6,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-10,-7,-12,-7,-9,-8,-15,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-12,-14,-12,-22,-14,-21,-21,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-13,-14,-29 -15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,3,5/2,4,3,6,4,4,3,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,5/2,3,2,4,3,4,4,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -15,8,8,6,8,5,6,5,8,5,11/2,4,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,4,3,4,3,9/2,4,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,9/2,3,5,3,7/2,3,5,3,7/2,3,5,4,5,4,8,4,9/2,4,6,4,11/2,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,2,2,11,6,11/2,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,4,9/2,4,6,4,6,6,9,5,5,4,5,3,7/2,4,5,3,7/2,3,3,2,7/2,3,6,4,7/2,3,3,2,2,2,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,7/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-12,-6,-11/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-10,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -11,6,6,4,6,4,4,7/2,6,4,4,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,3,4,4,5,3,4,4,6,4,6,6,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,8,8,6,17/2,5,6,5,10,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,13/2,4,5,5,8,5,5,4,9/2,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,7/2,3,4,3,6,3,3,2,7/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1/2,0,0,1,-1,0,1,1,1,1,1,2,4,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,3,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,17/2,6,9,9,4,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,7/2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,11,6,6,4,6,3,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,2,4,3,3,2,7/2,3,4,3,8,5,5,3,4,3,3,3,6,4,4,4,13/2,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,7,4,4,3,7/2,2,3,3,6,4,4,3,9/2,3,4,4,5,3,3,2,7/2,2,2,1,2,2,2,1,1,1,1,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,5,4,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,0,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-11,-6,-7,-6,-23/2,-7,-10,-10,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13 -10,5,5,4,5,3,4,3,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,11/2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -12,7,7,5,6,4,5,4,7,4,9/2,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,5/2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,3,3,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,0,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,3/2,2,3,2,3/2,2,1,1,3/2,1,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,2,3/2,1,4,3,3,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,7,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,6,3,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3/2,1,1,2,3/2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1/2,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -21,11,11,7,10,6,8,7,11,6,6,4,6,4,6,6,8,5,5,4,6,4,5,4,15/2,5,6,5,7,4,5,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,3,4,3,4,4,15/2,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,2,1,1,1,4,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,9/2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,19/2,6,8,7,11,8,11,11,8,4,4,3,5,3,3,3,9/2,3,3,2,3,2,2,1,4,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,2,2,2,7/2,2,2,1,1,1,1,1,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,11/2,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,6,7,13,7,7,5,6,4,4,4,13/2,4,4,3,3,2,3,3,8,5,5,3,4,3,4,4,11/2,4,4,3,5,4,5,5,6,3,3,2,3,2,2,2,5/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,3,4,4,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,1,1,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-11,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13 -12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,3,2,2,3/2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,7/2,4,4,6,9/2,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 -13,7,7,5,6,4,9/2,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,3,4,2,5/2,2,1,1,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,7/2,3,5,3,3,2,2,2,5/2,2,4,3,3,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,4,9/2,4,7,5,7,7,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,3,2,2,3/2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,6,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,3,3,6,7/2,4,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -16,9,9,6,17/2,5,6,5,8,5,5,4,11/2,4,5,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,4,2,2,2,7/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,2,5/2,2,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,3,3,6,4,4,3,9/2,3,3,3,7,4,4,3,7/2,2,3,2,4,3,3,2,3,2,2,2,6,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,11/2,4,4,4,8,4,4,4,11/2,4,5,4,7,4,5,4,5,4,5,4,6,4,4,4,15/2,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,5/2,2,3,3,7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,9,5,4,3,9/2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,4,3,4,4,11/2,4,5,5,9,5,6,4,11/2,4,4,3,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,3,3,3,2,2,2,7/2,3,4,4,5,3,3,2,5/2,2,2,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,0,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 -10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,3,5/2,3,3,4,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,5/2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -14,8,8,6,8,5,11/2,4,7,4,9/2,4,5,4,9/2,4,7,4,9/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,4,5,3,3,2,3,2,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,2,1,1,3/2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,5/2,2,4,3,3,3,8,4,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,3,4,3,4,4,6,4,4,4,7,5,6,6,6,4,7/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3,2,2,2,5/2,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,3,2,3,2,2,2,3,3,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,3,2,7/2,4,6,4,4,3,4,3,7/2,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,7/2,4,5,3,3,2,3,2,5/2,3,5,3,7/2,3,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -14,8,8,6,8,5,6,9/2,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,5/2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,8,4,4,3,4,3,4,4,7,4,4,4,5,7/2,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,9/2,6,6,6,4,4,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,3,5/2,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-2,-3,-5/2,-6 -27,14,15,10,15,9,10,8,13,7,7,6,9,6,8,8,27/2,8,8,5,7,5,6,6,10,6,6,5,7,5,7,7,10,6,6,4,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,3,3,4,3,4,4,11,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,3,3,2,2,2,3,2,3,2,3,2,3,2,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,6,4,5,5,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,11/2,4,4,3,3,2,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,5,4,5,5,15,8,9,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,7,12,8,12,12,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,4,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,21/2,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -14,8,8,6,8,5,6,5,7,4,4,7/2,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,3,2,3,3,5,3,3,5/2,3,2,3,3,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,3,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,4,3,6,4,4,3,3,2,5/2,2,5,3,3,3,3,2,7/2,4,10,6,11/2,4,6,4,9/2,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,7/2,4,6,4,5,4,7,5,7,7,6,4,7/2,3,4,3,3,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,3,2,3,3,5,4,9/2,4,6,4,5,5,9,5,9/2,4,5,3,4,4,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5 -11,6,6,9/2,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3 -18,10,10,7,21/2,6,7,5,7,4,4,4,6,4,5,5,8,4,4,3,9/2,4,5,5,6,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,2,2,2,2,1,3,2,1,1,1,1,1,2,4,2,2,2,3/2,1,0,0,2,1,1,1,2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,9/2,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,12,7,7,5,13/2,4,5,4,8,5,5,4,13/2,4,6,6,8,5,5,4,11/2,4,4,4,8,5,5,5,8,6,8,8,7,4,4,3,9/2,3,4,3,5,3,4,3,7/2,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,4,3,7/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,3,6,4,4,4,13/2,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,0,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,1,0,1,1,1,1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-3,-2,-5 -11,6,6,5,7,4,5,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,5/2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,9/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3 -15,8,8,6,9,5,6,5,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,4,3,3,2,2,2,2,1,2,2,3/2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,5/2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,5,10,6,11/2,4,6,4,4,4,7,4,9/2,4,6,4,5,5,6,4,7/2,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,1,1,1,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,3,2,3,2,5/2,2,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,7/2,3,5,3,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-6,-4,-11/2,-6,0,1,1,1,0,0,1/2,1,0,0,0,1,1,1,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4 -14,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,4,3,3,2,3,2,2,3/2,2,2,2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,7/2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4 -26,14,14,10,14,8,8,6,21/2,6,6,4,6,4,6,6,12,6,6,5,7,4,5,5,17/2,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,9/2,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,6,4,5,5,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,9/2,3,3,2,2,2,3,3,1,1,1,1,1,1,2,2,5/2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,15/2,5,6,5,9,6,8,8,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,5,17/2,5,6,5,9,7,11,11,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,9/2,2,2,2,3,2,2,2,6,4,5,4,6,4,4,4,13/2,4,4,3,5,4,5,6,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,7/2,2,3,3,6,5,7,7,9,5,5,4,6,4,5,5,17/2,5,5,4,7,4,5,5,7,4,4,3,5,3,4,4,15/2,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,6,4,4,3,3,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-8,-4,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,6,4,6,13/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,4,3,3,3,4,3,3,2,3,2,3,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 -18,10,10,7,10,6,13/2,5,7,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,4,6,4,7/2,3,4,3,4,3,6,4,7/2,3,4,3,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,9/2,4,9,5,5,4,6,4,4,4,5,3,7/2,3,4,3,9/2,4,6,4,4,3,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,4,3,4,3,7/2,3,3,2,2,2,2,2,5/2,2,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,3,2,5/2,2,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-2,-4,-2,-3,-3,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1/2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,29/2,8,10,8,11,6,7,6,17/2,6,7,6,10,6,6,4,11/2,4,5,5,9,5,6,4,11/2,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,5,3,4,4,6,4,6,6,8,5,5,4,9/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,5/2,2,3,3,2,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,7,5,6,5,17/2,6,9,9,16,9,9,6,17/2,5,6,5,8,5,5,4,13/2,4,6,6,9,5,5,4,7,5,6,6,11,7,8,6,19/2,7,10,10,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,7,4,4,3,9/2,3,3,3,5,3,3,2,7/2,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,5,5,10,5,5,4,11/2,4,4,3,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,6,4,4,4,11/2,4,6,6,12,7,7,5,13/2,4,5,4,8,5,5,4,6,4,5,5,7,4,5,4,11/2,4,4,4,8,5,5,4,15/2,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,9/2,3,3,3,8,5,5,4,11/2,4,4,4,7,4,5,4,11/2,4,6,6,7,4,5,4,5,3,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-1,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-9,-9,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6 -18,10,10,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,9/2,7,5,7,7,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,5/2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,5/2,3,2,4,5/2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,14,8,19/2,8,12,7,7,6,9,6,7,6,10,6,11/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,5,3,4,4,6,4,11/2,6,9,5,5,4,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,0,1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,3,4,2,5/2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,11/2,4,7,5,13/2,6,11,6,6,4,6,4,9/2,4,7,4,11/2,5,8,6,9,9,16,8,17/2,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,6,15/2,6,10,7,19/2,10,11,6,6,4,5,3,7/2,3,4,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,5,4,11/2,5,10,6,11/2,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,9/2,4,6,4,9/2,4,7,4,9/2,4,5,3,4,4,8,5,11/2,4,8,5,7,7,11,6,6,4,7,4,5,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,9/2,4,6,4,11/2,5,7,4,9/2,4,5,3,4,3,5,3,4,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-5 -26,14,14,10,14,8,10,8,12,7,7,6,9,6,7,6,10,6,6,4,6,4,5,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,9,5,5,4,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,2,2,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,6,7,6,10,7,10,10,11,6,6,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,5,4,6,11/2,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-17/2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -52,27,27,18,26,14,16,13,23,12,13,10,15,10,13,12,23,12,13,9,14,9,11,9,16,9,9,7,10,7,10,9,17,9,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,16,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1/2,1,1,1,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,11,11,22,11,11,7,10,6,7,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,6,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,15,9,11,10,18,12,17,17,20,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,9,7,10,10,18,10,11,8,12,8,10,9,15,9,11,9,15,10,15,14,21,11,11,8,11,7,8,7,13,7,7,6,9,6,9,9,17,9,9,6,9,6,8,7,13,7,7,6,9,6,9,8,15,8,7,5,7,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-3,-3,0,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-6,-5,-11,-7,-12,-12,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-7,-31/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15/2,-3,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10 -27,14,14,9,13,15/2,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,5/2,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,4,7/2,5,7/2,4,4,8,5,6,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,9/2,6,4,4,4,7,4,4,7/2,5,7/2,5,5,9,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,9/2,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4 -27,14,27/2,9,13,8,17/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,9/2,3,5,3,7/2,3,4,2,2,2,3,2,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,4,3,7/2,4,6,4,6,6,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,7/2,2,4,2,5/2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,3,2,5/2,3,5,3,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,0,1,1,1,2,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,3,3,5,3,3,2,4,3,3,3,5,3,5/2,2,2,2,5/2,3,4,3,7/2,4,6,4,11/2,6,10,6,11/2,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,9/2,4,5,4,9/2,4,8,5,13/2,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,7/2,3,3,2,5/2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,7,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,9/2,4,5,4,6,6,10,5,5,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,5,4,5,3,3,3,6,4,4,3,5,4,11/2,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,15/2,8,12,6,6,5,7,4,9/2,4,7,4,9/2,4,4,3,9/2,5,9,5,11/2,4,5,4,9/2,4,6,4,4,3,6,4,5,5,9,5,9/2,4,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-3,-6,-6,-14,-6,-6,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 -18,9,9,6,9,11/2,6,5,8,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,2,4,5/2,3,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,4,3,4,3,5,7/2,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,5/2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,5,7,7,6,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,7/2,3,3,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,3,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,7/2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 -26,13,13,9,27/2,8,9,8,12,7,7,6,17/2,6,7,6,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,9/2,3,4,3,3,2,2,2,3,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,3,3,9/2,3,3,3,4,3,3,3,6,5,7,7,9,5,5,4,5,3,4,3,4,2,2,2,7/2,2,3,3,6,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,5,3,3,3,9/2,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,9/2,2,2,2,5,3,3,2,3,2,2,2,5,3,2,2,5/2,2,3,3,4,3,4,3,5,4,6,6,10,6,6,4,13/2,4,6,5,6,4,4,4,11/2,4,4,4,7,4,5,4,11/2,4,5,5,9,6,7,6,19/2,7,10,10,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,9/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,11/2,4,5,4,7,4,4,4,11/2,4,5,4,9,5,5,4,9/2,3,3,3,6,4,4,3,9/2,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,9/2,4,5,5,9,5,6,4,13/2,4,6,5,6,4,5,4,6,4,5,5,10,5,5,4,11/2,3,3,3,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,5,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,3,4,2,2,1,1,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-9/2,-3,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-1,-3 -15,8,8,6,8,5,6,5,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -19,10,19/2,7,10,6,13/2,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,0,1,3/2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,7/2,3,4,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3/2,2,2,2,2,2,6,4,7/2,3,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,3,3,2,3,2,4,3,4,3,6,4,4,3,4,3,9/2,4,8,4,4,3,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,6,3,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,4,2,2,2,3,2,5/2,3,4,3,3,3,3,2,7/2,4,3,2,5/2,2,3,2,7/2,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,9/2,3,5,3,4,4,6,4,4,3,6,4,11/2,5,10,6,11/2,4,5,3,4,4,5,3,4,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,1,1,1,1,2,2,5/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-11/2,-6,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-2 -16,17/2,8,6,9,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -29,15,15,10,14,8,10,8,27/2,8,8,6,10,6,8,7,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,9,5,5,4,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,1,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,7/2,2,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,5,5,17/2,5,6,4,6,5,7,7,11,6,6,4,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,11/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,15/2,4,4,4,6,4,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,9,6,9,9,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,4,3,3,2,3,3,4,4,15/2,5,6,5,7,5,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,3,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,9/2,3,3,3,4,3,5,6,10,5,5,4,6,4,5,5,19/2,6,6,5,7,5,7,7,16,9,9,6,9,5,6,5,17/2,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3/2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3/2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,5,3,3,2,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-4,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,4,2,2,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,-1,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2 -16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,6,7/2,4,5/2,4,2,2,2,3,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,3,2,3,2,2,2,3,2,3,7/2,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,3,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1 -17,9,9,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,5,5,4,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,2,0,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,5/2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,0,0,1/2,0,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,7/2,4,5,3,7/2,3,4,3,9/2,4,5,3,7/2,2,4,2,2,2,3,2,2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,3,2,4,3,7/2,3,5,3,7/2,4,5,4,5,5,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,3,2,5/2,2,3,2,2,2,4,3,7/2,3,4,3,4,4,4,3,7/2,3,3,2,3,3,5,3,3,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,6,4,4,3,4,3,7/2,3,6,4,4,3,4,3,9/2,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,2,3,2,5/2,2,4,3,4,4,6,3,3,3,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,1,1,1,1,0,1,3/2,2,3,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-9/2,-4,4,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1 -13,7,7,5,6,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0 -20,11,11,8,21/2,6,8,7,12,7,8,6,9,6,7,6,10,6,6,4,11/2,4,4,3,5,3,3,3,9/2,4,5,5,6,4,4,3,9/2,3,3,3,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,5,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,4,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,1,2,2,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,6,3,3,2,3,2,2,2,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,3/2,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,7/2,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,11/2,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,13/2,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,11/2,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,7/2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,1,1,3/2,2,2,1,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,-1,-1,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,5,3,2,2,3/2,2,2,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-2,0,0,0,-3/2,0,0,0,2,1,1,1,2,1,1,1,0 -13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,5/2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1 -18,9,9,7,9,6,7,6,11,6,7,5,8,5,7,6,10,6,11/2,4,5,3,4,4,5,3,4,4,6,4,11/2,5,6,4,4,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,2,5/2,2,4,3,4,4,3,2,2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,3/2,1,6,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,1,1,1,1,0,1,3/2,2,1,1,3/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,9/2,5,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,3,2,5/2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,7,4,5,4,5,4,11/2,5,8,5,5,3,4,3,3,2,4,2,5/2,2,3,2,3,3,7,4,7/2,2,4,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,-1/2,0,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,0,0,0,1,0,0,1/2,0,0,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,1,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,4,2,5/2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,2,2,2 -17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,10,6,6,4,5,3,4,4,5,3,4,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,2,4,3,3,3,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,5/2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,0,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,4,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2 -32,17,17,12,18,11,13,11,18,10,10,8,12,8,11,10,39/2,10,11,8,11,7,8,7,11,6,7,5,8,6,9,9,10,6,6,4,5,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,3,5,4,5,5,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,9/2,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,3,4,4,11/2,4,4,4,6,4,5,5,8,5,5,5,8,6,8,7,5,3,4,3,4,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,2,3,3,5,3,3,2,3,2,3,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,7,4,4,3,4,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,11/2,4,4,3,3,3,4,4,6,4,4,3,4,3,4,4,8,5,6,5,7,4,5,5,8,4,4,3,5,3,4,4,17/2,5,6,5,8,5,6,6,11,6,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,8,6,9,6,8,8,29/2,8,8,6,8,5,6,5,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,15/2,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,1,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,6,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,3,2,3,2,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-18,-8,-8,-5,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-10,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,4 -17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,6,3,3,5/2,3,5/2,3,3,5,3,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -17,9,19/2,7,10,6,15/2,6,10,6,6,5,7,5,13/2,6,10,6,6,4,7,4,5,4,6,4,4,3,5,4,11/2,5,6,3,3,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,7/2,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,1,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,1,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,3/2,1,5,3,3,2,3,2,3/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,3/2,2,1,1,2,2,4,3,3,2,3,2,3/2,1,1,1,1,1,1,1,2,2,4,3,3,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,2,2,3/2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,2,2,5/2,3,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,3,3,5,4,9/2,5,4,3,3,2,3,2,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,1,1,1,1,1,6,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,5,3,7/2,2,3,2,3,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,5,7,4,11/2,5,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,7/2,3,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,5/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,1,1,1,0,1,3/2,1,1,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,3,2,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2 -12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,5/2,4,5/2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-2,-3,-3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -19,10,11,8,23/2,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,7,5,6,5,6,4,4,4,11/2,4,6,6,7,4,4,3,9/2,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,2,1,1,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,2,2,2,2,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,3,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,4,4,3,4,3,5,4,6,6,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3/2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,4,3,9/2,3,4,5,7,4,3,2,3,2,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,4,5,5,8,5,6,4,13/2,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,13/2,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,7/2,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-2,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,2,2,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,3 -12,13/2,7,5,7,4,5,4,7,4,4,4,5,7/2,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,10,5,5,4,5,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,2,3/2,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2 -15,8,8,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,3,5,4,9/2,4,6,3,3,3,5,4,5,4,6,4,7/2,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3,2,3,2,3,3,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,3,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,1,1,1,1,2,2,5/2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,9/2,4,6,3,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,4,6,4,4,3,5,4,11/2,5,13,7,7,5,6,4,9/2,4,6,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,5/2,3,6,4,7/2,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-4,-4,3,2,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3 -13,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,1,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,3,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,7/2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,5/2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,4 -24,13,13,9,12,8,10,8,29/2,8,9,7,10,6,8,7,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,7/2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,9/2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,5,3,4,3,5,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,6,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,2,7,4,4,3,3,2,3,3,4,3,4,4,7,5,6,6,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,3,4,4,15/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,13/2,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,11,6,7,6,9,6,8,8,22,11,11,7,10,6,8,6,21/2,6,7,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,5,4,5,5,6,4,4,3,4,2,2,2,5/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,3,3,9/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,3,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,0,2,1,1,1,0,1,1,1,1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-4,-6,-6,4,3,3,2,2,2,2,1,1/2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,1,1,2,1,1,1,3/2,1,1,1,2,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,3,5,3,4,4,7 -13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,13,7,7,9/2,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 -15,8,17/2,6,8,5,13/2,6,10,5,5,4,6,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,5/2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,3,2,3,3,2,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,4,3,7/2,3,1,1,2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,5,3,3,3,5,4,5,4,6,3,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,5,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,11/2,6,15,8,8,5,7,4,5,4,6,4,9/2,4,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,4,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,3,3,4,2,5/2,3,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,2,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-3,-2,-3,-3,3,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,2,2,4 -12,7,7,5,7,4,5,9/2,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,12,7,7,9/2,6,7/2,4,7/2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3 -20,11,11,8,12,7,9,7,12,7,7,5,15/2,5,6,6,12,6,6,4,13/2,4,5,5,7,4,5,4,11/2,4,5,5,7,4,4,3,9/2,3,3,3,5,3,4,3,4,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,9/2,3,4,4,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,6,4,4,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,3,4,2,2,2,2,2,2,1,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,3,2,3,2,3,2,2,2,0,1,1,1,3/2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,5,3,3,2,7/2,2,3,3,5,3,4,3,5,3,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,2,5,3,3,2,7/2,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,3,9/2,3,4,5,10,6,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,9,5,4,3,9/2,4,5,5,10,6,6,5,17/2,6,8,8,21,11,11,7,9,6,7,6,9,5,6,5,8,5,6,6,10,6,6,5,7,4,4,4,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,4,3,5,4,5,5,5,3,3,2,5/2,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,3,2,7/2,3,4,4,7,4,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,3/2,2,2,2,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-14,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-3,-1,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,3,2,2,2,3/2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,4,3,3,3,9/2,3,3,3,5 -14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,5/2,3,2,3,7/2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,6,6,14,15/2,8,5,6,4,5,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,3,5/2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,4 -20,10,10,7,10,6,15/2,6,11,6,7,5,8,5,13/2,6,11,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,4,4,7,4,5,4,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,2,3,2,3,2,3,2,7/2,4,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,5/2,2,1,1,2,2,3,2,3,3,4,3,3,3,6,4,7/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,2,4,3,3,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,2,2,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,0,1,1,1,2,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,7/2,3,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,3,2,3,2,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,5,4,5,5,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,4,4,3,5,5,9,5,6,5,8,6,8,8,20,10,21/2,7,9,5,6,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,7/2,4,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,5,5,4,2,5/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,7/2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,5,3,3,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,7,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,1,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,5,3,7/2,3,5,4,9/2,4,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,1,1,3/2,2,1,1,1,1,2,2,2,1,1,1,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -20,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,3,2,3,3,4,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,5,4,7,4,4,7/2,5,7/2,5,5,8,5,6,5,8,6,8,8,20,10,10,7,9,5,6,6,10,11/2,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,5/2,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3/2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,7/2,4,3,5,3,4,4,6,4,4,3,5,4,5,9/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,3,2,2,2,4,3,3,3,5 -39,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,21,11,11,8,11,6,7,6,10,6,7,5,8,6,8,8,27/2,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,3,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-8,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,0,-1,0,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,7,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,8,9,8,13,9,14,14,38,20,20,14,20,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,23/2,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,6,9,6,7,6,11,6,7,6,9,6,8,8,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,5,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,8,8,8,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-26,-13,-13,-8,-13,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-8,-8,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,4,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,5,9 -20,11,11,8,11,13/2,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,3,2,4,3,4,3,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,5/2,4,5/2,3,3,4,3,4,7/2,6,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,1/2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,1,1,1,1,1,1,0,1/2,0,1/2,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,4,3,4,4,6,7/2,4,5/2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,5,7/2,5,5,5,3,3,3,4,5/2,3,5/2,3,2,3,5/2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,4,5,4,7,9/2,5,9/2,7,5,8,8,20,11,11,8,10,6,7,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,5/2,4,5/2,3,5/2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,7/2,5,4,5,5,5,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,3,3,5 -21,11,11,8,11,6,15/2,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,5,3,3,3,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,3,2,4,3,7/2,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,3,3,5,3,4,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,4,2,5/2,2,3,2,3,3,4,3,4,3,6,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,1,1,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,5/2,3,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,4,3,4,4,5,3,7/2,2,3,2,3,3,5,3,7/2,3,5,3,7/2,4,7,4,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,5,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,3,7,4,9/2,4,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,11/2,5,11,6,6,4,5,4,5,5,8,5,11/2,5,7,5,8,8,21,11,11,8,10,6,8,7,10,6,6,5,8,5,13/2,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,4,3,3,2,3,2,5/2,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,4,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,5,3,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,3,2,3/2,1,1,1,3/2,2,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,3/2,2,3,2,3,3,5 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,9/2,8,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,3,5/2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,7/2,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,3/2,2,3/2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3 -21,11,12,8,23/2,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,13/2,4,5,4,6,3,3,3,4,3,5,5,9,5,4,3,9/2,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,4,4,4,3,4,3,9/2,4,5,5,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,8,4,4,3,7/2,2,3,2,2,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,0,0,0,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,3,2,3,2,3,2,3,3,1,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3/2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,7,4,4,3,3,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,13/2,4,5,5,12,7,7,5,6,4,5,5,9,5,6,5,9,6,8,8,24,12,12,8,23/2,7,8,7,11,6,7,5,15/2,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,5,3,3,3,4,3,4,5,6,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,4,3,3,2,7/2,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,7/2,2,3,2,3,2,2,2,4,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,7/2,3,4,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,2,2,2,3/2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,9/2,4,6,6,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3/2,2,2,2,3 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,7/2,8,4,4,3,4,3,4,3,5,3,4,7/2,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,5/2,4,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2 -15,8,8,6,8,5,11/2,5,9,5,11/2,4,6,4,5,5,9,5,6,4,5,3,4,3,6,3,3,3,4,3,3,3,6,4,7/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,3,3,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,5/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,10,5,5,4,5,4,9/2,4,6,4,9/2,4,7,5,13/2,7,18,9,9,6,9,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,4,5,3,7/2,4,6,4,7/2,3,4,3,7/2,4,7,4,4,3,5,3,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,6,4,4,3,3,2,3,3,4,2,5/2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,0,-1,0,1,1,0,1,3/2,2,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,4,4,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2 -14,7,7,5,7,4,5,4,8,9/2,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-2,-1/2,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,13/2,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,2 -25,13,13,9,13,7,8,7,25/2,7,8,6,10,7,9,8,15,8,7,5,7,4,5,5,9,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,3,8,5,5,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,4,8,5,5,4,5,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,8,4,4,3,4,3,3,2,5/2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,7/2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,3,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,1,1,1,1,1,1,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,1,1,6,3,3,2,2,2,2,2,5/2,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,8,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,17,9,10,7,10,6,7,6,19/2,6,6,4,6,4,6,6,15,8,8,6,9,5,6,6,21/2,6,8,7,12,8,12,12,29,15,14,10,14,8,10,8,29/2,8,8,6,8,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,4,3,3,3,9/2,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,1,1,2,2,2,1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,5,3,3,2,3,2,1,1,1,1,2,2,3,2,3,3,5,3,3,2,2,1,1,1,3/2,2,2,2,3,3,4,4,2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,4,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3 -14,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,9/2,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,16,17/2,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,6,5,9,5,5,4,5,3,7/2,4,5,3,7/2,2,4,3,7/2,3,6,4,4,3,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,1,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,5,3,7/2,2,4,3,3,3,5,3,4,3,5,4,9/2,4,11,6,6,4,6,4,4,4,8,4,9/2,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,13/2,6,10,5,5,4,5,4,5,5,8,5,5,3,5,3,7/2,3,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,3,3,2,3,2,3,2,7/2,3,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,6,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,7/2,3,3,2,3,3,4,3,3,2,2,2,3,3,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,0,0,1,0,0,-1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,5/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2 -11,6,6,9/2,6,4,5,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,9,5,5,7/2,5,3,4,7/2,7,4,4,7/2,5,4,5,4,8,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -18,9,9,6,19/2,6,6,5,9,5,5,4,13/2,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,7/2,2,3,3,9,5,5,3,4,3,3,3,4,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,3,7/2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,0,2,2,2,2,5/2,2,4,4,7,4,4,3,7/2,2,3,2,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,7/2,3,4,4,7,4,4,3,5,3,4,4,5,3,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,1,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,7/2,2,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,3,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,5/2,2,2,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,6,6,14,8,8,6,15/2,5,6,5,11,6,6,5,17/2,6,7,7,14,7,7,5,15/2,5,6,5,10,6,7,6,19/2,7,10,10,25,13,13,9,13,8,9,8,13,7,8,6,8,5,6,6,11,6,6,4,13/2,4,5,4,7,4,5,4,11/2,4,6,5,10,5,5,4,11/2,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,9/2,3,4,3,5,3,3,3,9/2,3,4,3,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,5,7,4,4,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-3/2,0,0,0,0,1,1,1,3/2,2,2,1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,7/2,2,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,3/2,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,4 -12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,8,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,11/2,6,11/2,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -17,9,17/2,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,3,3,9,5,9/2,4,4,3,3,2,3,2,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,4,3,3,3,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,3,7/2,4,6,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,4,2,2,2,3,2,5/2,2,2,2,2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,7/2,3,5,4,11/2,6,14,8,8,5,7,5,6,6,11,6,13/2,5,8,5,7,7,13,7,13/2,5,7,5,6,6,10,6,7,6,10,7,10,9,25,13,25/2,8,13,8,9,8,13,7,15/2,5,8,5,13/2,6,10,6,11/2,4,6,4,9/2,4,8,5,5,4,6,4,6,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,7/2,3,6,3,3,2,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,1/2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,7/2,4,4,2,5/2,2,3,2,5/2,2,4,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,7/2,2,3,2,2,2,3,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4 -16,17/2,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,9,5,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,14,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,12,13/2,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,25/2,12,8,12,7,9,8,13,7,7,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,1,1,1,0,1/2,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,35/2,10,10,7,9,5,6,5,8,5,5,4,5,4,5,5,16,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,4,5,4,5,3,3,2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,3,4,4,8,5,6,5,9,6,9,9,11,6,6,4,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,6,5,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,0,0,0,0,-3/2,0,0,1,2,1,1,1,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,19/2,6,6,5,8,5,7,7,12,7,9,7,12,8,10,10,26,14,14,10,14,9,11,9,16,9,10,8,13,9,13,12,23,12,13,10,16,10,12,11,20,11,13,11,18,12,18,17,47,24,24,16,24,13,15,12,20,11,11,8,13,8,10,10,35/2,9,9,7,10,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,4,5,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,17/2,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,7/2,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,5,5,9,5,4,3,4,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,4,4,6,3,3,3,4,2,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-3,-3,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,7,4,5,4,5,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,5,6,5,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7 -16,9,9,6,9,11/2,6,11/2,9,5,6,5,7,5,6,5,10,6,6,4,5,3,3,3,5,3,3,5/2,3,5/2,3,3,9,5,5,3,5,3,3,3,3,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,6,4,4,5/2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,1,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1/2,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,5/2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,6,7,6,10,7,10,19/2,25,13,13,9,13,7,8,7,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,3,5/2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,4,3,5,3,4,4,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4 -17,9,19/2,7,10,6,13/2,6,10,6,6,5,7,5,6,5,10,6,11/2,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,9,5,5,3,5,3,7/2,3,3,2,2,2,2,2,5/2,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,4,4,3,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,5,3,7/2,4,6,4,11/2,5,7,4,7/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3,3,3,2,7/2,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,7,5,13/2,6,15,8,8,6,8,5,6,6,9,5,6,5,8,6,15/2,7,12,7,15/2,6,9,6,15/2,7,12,7,8,7,11,8,21/2,10,27,14,14,10,13,8,17/2,7,11,6,7,5,8,5,13/2,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,9/2,4,6,4,7/2,3,4,3,4,3,6,3,3,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,0,0,1/2,0,1,1,1,1,-1,0,1/2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-3/2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,0,0,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,4,4,3,7/2,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5 -13,7,7,5,7,4,5,9/2,8,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,9/2,7,5,6,6,10,6,6,5,9,6,8,8,20,11,11,7,10,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,7,4,4,3,4,3,4,3,4,5/2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -20,11,11,8,21/2,6,7,6,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,4,3,5,4,5,5,10,6,6,4,11/2,4,4,3,4,2,2,2,3,2,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,6,4,4,4,13/2,5,7,7,8,4,4,3,9/2,3,4,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,1,1,1,1,1,1,2,5/2,2,2,2,5,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,11/2,4,6,5,6,3,3,2,7/2,2,2,2,5,3,4,3,4,3,4,4,3,2,2,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,18,9,9,6,19/2,6,7,7,10,6,7,6,9,6,9,9,14,8,9,7,10,7,9,9,16,9,10,8,14,10,14,13,33,17,17,11,31/2,9,10,8,13,7,8,6,19/2,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,-1,0,1,1,1,1,0,0,-1,0,0,1,1,1,2,2,4,3,3,2,2,2,2,2,4,3,3,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,11/2,4,6,6,9,5,5,4,9/2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-2,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-1,0,0,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,7/2,2,3,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,6,6,5,3,3,3,5,3,4,4,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,4,4,6,4,4,4,11/2,4,6,6,7,4,5,4,11/2,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,4,4,5,3,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,5/2,2,3,3,3,2,3,2,7/2,3,4,3,5 -13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,5/2,3,3,5,3,4,3,4,5/2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,6,10,6,7,6,9,13/2,9,9,21,11,11,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,5/2,3,5/2,3,2,3,3,3,2,3,2,4,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3 -18,10,19/2,7,9,6,7,6,10,6,6,5,7,4,11/2,5,10,6,6,4,6,4,9/2,4,6,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,5/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,6,3,3,3,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,4,4,7,5,13/2,6,14,8,15/2,6,8,5,13/2,6,9,6,13/2,5,8,5,7,7,12,7,7,5,9,6,15/2,7,13,8,9,8,13,9,12,12,28,14,14,9,13,8,17/2,7,12,7,7,5,8,5,7,6,12,6,13/2,4,7,4,5,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,5/2,2,3,2,3,3,3,2,7/2,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1/2,0,1,1,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,4,3,7/2,3,5,4,9/2,4,5,3,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,4,3,4,3,9/2,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,3,2,7/2,4,4,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4 -17,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,9,11/2,6,5,8,5,7,7,11,6,7,5,8,5,7,7,12,7,9,7,12,8,11,11,26,13,13,17/2,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,5/2,4,3,4,3,4,3,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,5/2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4 -33,17,18,12,18,10,12,10,33/2,9,10,7,10,7,9,8,18,10,10,7,9,6,7,6,21/2,6,8,6,10,6,8,8,14,7,7,5,8,5,6,4,13/2,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,7/2,2,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15/2,4,5,4,7,5,8,8,14,8,8,6,8,5,5,4,9/2,3,4,3,4,3,4,4,3,2,1,1,1,1,2,2,3/2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,3,2,3,2,3,2,2,2,3/2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,5/2,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,2,7/2,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,13/2,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,8,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,23/2,7,8,6,10,7,11,11,23,12,12,9,13,8,11,10,17,10,11,8,13,9,13,13,21,11,12,9,14,9,13,12,45/2,13,15,12,20,14,21,21,48,24,24,16,24,13,15,12,41/2,11,12,9,14,9,11,11,21,11,12,9,13,8,9,8,27/2,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,19/2,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,9/2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,6,4,5,5,8,4,4,3,4,3,3,3,9/2,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,15/2,4,5,4,7,5,8,8,12,6,6,4,5,3,2,2,5/2,2,1,1,1,1,1,1,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,5,4,6,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,17/2,5,6,5,7,5,6,5,7,4,3,2,3,2,3,3,5,3,3,3,5,4,5,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6 -18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,7/2,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,5/2,3,2,2,2,3,2,3,3,2,3/2,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,7/2,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,11/2,8,8,12,7,7,6,9,6,8,7,13,8,9,7,12,8,12,12,27,14,14,10,14,8,9,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,9/2,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -21,11,23/2,8,11,7,8,7,10,6,13/2,5,6,4,11/2,5,11,6,13/2,4,6,4,5,5,8,5,11/2,4,7,5,6,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,6,3,3,3,3,2,2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,7/2,3,5,4,11/2,6,9,5,5,4,6,4,7/2,3,3,2,5/2,2,3,2,3,3,3,2,2,1,2,2,3/2,1,2,1,1,1,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,-1,0,0,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,3,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,9/2,4,6,4,5,5,8,4,9/2,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,17/2,6,9,6,15/2,7,12,7,15/2,6,9,6,9,9,15,8,9,7,11,7,10,9,16,9,21/2,8,14,10,14,14,32,16,33/2,12,16,9,21/2,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,8,5,11/2,5,7,5,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,7/2,2,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,4,5,3,4,4,8,5,5,3,4,3,7/2,4,6,4,4,3,6,4,9/2,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,4,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,4,3,3,2,3,2,3,3,5,3,3,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4 -18,19/2,10,7,9,11/2,6,6,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,5,5,7/2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3/2,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,7,11/2,8,5,7,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,9/2,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,5/2,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1/2,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,31/2,9,10,9,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,8,13,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,5,8,4,4,3,3,2,2,2,5,3,4,3,7/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,6,4,4,3,7/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,3,2,3,3,4,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,15/2,4,4,3,5,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,1,1,3/2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,5/2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,9/2,4,5,5,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,13/2,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,25/2,8,12,12,23,12,13,9,13,8,10,9,18,10,12,9,29/2,10,13,12,22,12,13,10,16,10,13,13,24,14,16,13,21,14,21,21,47,24,24,16,24,14,16,14,22,12,13,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,8,7,11,7,10,9,14,7,7,5,15/2,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,11/2,4,5,5,7,4,5,4,6,4,6,5,10,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,13/2,4,6,6,10,5,5,4,5,3,3,3,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-14,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,-1,-2,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,3,3,9/2,3,4,4,9,5,5,4,11/2,4,4,3,3,2,3,2,7/2,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,5,7,7,10,6,6,4,13/2,4,4,4,8,5,5,5,8,5,7,7,11,6,6,4,11/2,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,13/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,4,3,7/2,2,3,3,4,3,3,3,11/2,4,5,5,7,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4 -21,11,11,8,10,6,7,6,10,6,6,4,7,9/2,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,7/2,5,3,3,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,5/2,3,2,3,2,2,5/2,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,4,5,9/2,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,9,6,9,6,7,13/2,12,7,8,6,10,7,9,9,16,9,9,7,11,7,9,9,16,19/2,11,9,15,10,14,14,32,16,16,11,16,19/2,11,9,15,8,9,13/2,10,6,8,15/2,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,6,10,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,5/2,3,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1/2,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,7/2,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,3,2,4,3,3,5/2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,15,9,21/2,9,15,8,17/2,6,10,6,8,8,15,8,17/2,6,9,5,6,6,10,6,13/2,6,9,6,17/2,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,7/2,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,5,4,7,5,13/2,7,13,7,13/2,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-3/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3,3,4,2,2,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,7/2,2,4,3,3,3,5,3,4,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,13/2,6,12,6,13/2,5,7,5,6,6,10,6,6,5,7,5,13/2,6,13,7,7,5,7,5,13/2,6,12,7,8,7,12,8,12,12,22,12,25/2,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,27/2,10,17,11,14,13,24,14,31/2,13,22,15,21,21,47,24,24,16,24,14,16,13,23,12,25/2,9,14,9,12,11,20,11,11,8,11,7,17/2,7,12,7,8,6,10,7,9,9,15,8,7,5,7,5,6,5,9,5,11/2,4,7,4,11/2,6,10,6,6,4,6,4,11/2,5,8,5,11/2,4,6,4,13/2,6,10,6,13/2,4,7,4,4,4,7,4,4,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,3,5,3,7/2,3,4,2,5/2,2,4,3,7/2,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,10,6,11/2,4,5,3,7/2,3,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,2,1,1/2,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-6,-3,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,7/2,3,4,3,5,5,8,4,4,3,4,3,7/2,3,4,3,3,3,4,3,3,3,6,3,3,2,4,3,7/2,3,5,3,7/2,4,6,4,13/2,6,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,13/2,6,11,6,6,4,6,4,9/2,4,7,4,9/2,4,7,5,7,7,12,6,13/2,4,6,4,4,3,5,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,4,3,7/2,3,5,4,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,2,2,3,2,5/2,2,3,2,3,3,4 -31,16,16,11,15,9,10,9,15,8,8,6,10,13/2,9,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,8,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,5/2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,5/2,3,7/2,6,4,5,4,7,5,6,7,13,7,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,3/2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,6,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,5/2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,7,6,12,7,8,7,12,8,12,12,22,12,12,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,21/2,17,11,14,13,24,14,16,13,22,15,22,22,47,24,24,16,24,14,16,13,23,12,13,9,14,9,12,11,19,10,11,8,11,7,8,7,13,7,8,6,10,7,9,8,15,8,8,5,7,5,6,5,9,5,6,9/2,7,9/2,6,6,10,6,6,4,6,4,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,7,4,4,4,7,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3,5,3,4,3,4,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4 -60,31,31,21,30,17,20,17,30,16,17,13,20,13,17,16,31,16,17,12,17,10,12,11,20,11,12,10,17,12,17,17,32,16,16,11,15,9,11,9,15,8,9,6,9,6,9,8,15,8,9,7,11,7,9,8,13,8,9,8,14,10,14,13,25,13,14,10,14,8,10,9,17,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,13,51/2,14,14,10,15,9,11,10,17,10,11,8,13,8,10,10,18,10,10,7,11,7,8,7,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,13,10,15,9,10,9,16,9,10,7,11,7,10,10,18,9,9,7,10,6,7,6,9,5,6,5,8,6,8,8,15,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,3,4,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,2,2,3,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,39/2,10,10,8,12,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,10,6,8,8,15,9,11,10,17,12,18,19,37,19,19,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,12,22,13,15,12,21,14,21,21,40,21,22,15,23,14,17,14,25,14,16,13,22,14,20,19,37,20,21,16,25,16,22,21,41,23,27,23,41,28,42,42,92,46,46,31,46,26,31,26,47,25,26,19,31,19,26,24,44,23,23,16,23,14,17,14,25,14,16,13,22,14,20,20,38,19,19,13,19,11,14,12,20,11,11,8,13,8,11,11,21,11,12,9,13,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,10,12,10,17,9,10,8,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,19,10,11,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,8,29/2,8,8,6,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,7,13,8,9,8,14,9,13,13,25,13,13,9,14,8,9,7,12,7,7,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,5,7,4,5,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,4,5,4,7 -31,16,16,11,16,9,10,9,16,9,9,7,11,7,9,9,16,17/2,9,6,9,11/2,6,6,11,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,5,4,5,9/2,8,5,5,4,6,4,5,4,7,4,5,5,7,5,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,7,9/2,6,6,9,5,5,4,6,4,5,4,7,9/2,5,5,8,6,8,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,5/2,4,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,5,5,10,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,7/2,5,7/2,4,4,8,5,6,5,9,13/2,10,10,19,10,10,7,11,13/2,8,7,12,7,7,6,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,11,20,11,11,8,12,7,9,15/2,13,15/2,8,7,12,8,11,10,19,10,11,17/2,13,8,11,11,21,12,14,12,21,15,22,22,47,24,24,16,24,14,16,14,24,13,14,10,16,10,14,12,23,12,12,8,12,7,9,8,13,8,9,7,11,15/2,10,10,20,10,10,7,10,6,7,6,11,6,6,5,7,9/2,6,6,11,6,6,5,7,9/2,6,5,8,5,6,9/2,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,8,5,6,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,7/2,5,3,4,7/2,6,4,4,7/2,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,5/2,4 -31,16,16,11,16,9,21/2,9,16,9,9,7,11,7,19/2,9,16,8,17/2,6,9,6,13/2,6,11,6,7,6,9,6,9,9,17,9,17/2,6,8,5,6,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,4,4,6,4,5,5,7,5,8,8,14,8,8,6,8,5,11/2,5,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,9/2,4,6,4,13/2,6,11,6,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,4,4,7,4,9/2,3,5,4,9/2,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,11/2,5,9,5,11/2,4,7,4,11/2,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,15/2,7,13,7,15/2,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,5,4,6,5,7,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,8,4,7/2,3,4,3,3,3,5,3,5/2,2,4,2,5/2,2,5,3,5/2,2,2,2,3/2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,5,5,10,6,6,5,6,4,9/2,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,8,4,4,3,4,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,6,5,9,6,19/2,10,19,10,10,7,11,6,15/2,6,12,7,7,6,8,5,7,7,13,7,15/2,6,8,5,7,7,11,7,8,7,11,8,11,11,20,10,21/2,8,12,7,17/2,7,13,8,17/2,7,12,8,11,10,19,10,23/2,9,13,8,11,11,22,13,15,13,22,15,22,22,47,24,24,16,24,14,33/2,14,24,13,27/2,10,16,10,27/2,12,23,12,12,8,12,7,9,8,13,8,9,7,11,8,21/2,10,20,10,10,7,10,6,7,6,11,6,6,5,6,4,6,6,11,6,13/2,4,7,4,11/2,5,9,5,11/2,4,8,6,8,8,15,8,9,6,8,5,6,5,9,5,11/2,4,8,5,6,6,11,6,13/2,5,6,4,11/2,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,7/2,2,3,2,7/2,4,7,4,9/2,4,5,4,9/2,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,5,3,3,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,4,3,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,13,7,7,5,7,4,5,4,7,4,9/2,3,4,3,4,4,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,4,5,5,8,4,9/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3 -21,11,11,8,11,13/2,8,6,11,6,6,5,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,7/2,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,5/2,4,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,32,17,17,23/2,17,10,12,10,16,9,10,7,11,7,9,8,16,8,8,6,8,5,7,6,9,11/2,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,5/2,5,3,3,3,4,3,4,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,5/2,3,5/2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,5/2,3,3,4,5/2,2,2,3,5/2,3,3,6,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -30,15,15,11,16,9,11,9,16,9,9,7,21/2,7,10,9,16,9,9,6,9,6,7,6,10,6,6,5,9,6,9,9,17,9,10,7,19/2,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,5,4,13/2,5,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,13/2,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,11/2,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,5,4,7,5,8,8,12,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,9,5,6,4,13/2,4,5,5,8,5,5,4,15/2,6,8,8,14,8,8,6,15/2,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,4,3,4,3,5,4,6,6,7,4,4,3,3,2,3,3,5,3,3,2,5/2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,4,3,4,4,11/2,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,11/2,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,4,5,5,9,6,7,6,9,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,11,7,10,10,19,10,10,7,21/2,6,8,7,13,7,8,6,21/2,7,10,10,19,11,12,9,29/2,10,13,12,22,13,15,13,22,15,22,22,49,25,25,17,25,14,16,14,24,13,13,10,31/2,10,12,12,24,12,12,8,25/2,8,10,8,14,8,9,7,21/2,7,10,10,19,10,10,7,19/2,6,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,6,5,9,5,5,4,7,5,6,6,11,6,6,4,11/2,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,9/2,3,4,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3 -17,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,6,11/2,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,8,5,5,7/2,5,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,5/2,4,4,4,5/2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,7/2,4,7/2,5,4,6,6,12,13/2,6,9/2,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,6,4,4,4,7,9/2,6,6,11,6,6,4,6,4,5,4,8,9/2,5,4,6,9/2,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,9,6,7,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 -21,11,11,8,12,7,15/2,6,11,6,13/2,5,7,5,7,7,12,6,13/2,5,7,4,11/2,5,8,5,5,4,6,4,13/2,6,13,7,7,5,6,4,9/2,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,4,11/2,5,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,5,7,4,9/2,4,5,3,4,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,2,3,5,3,7/2,2,3,2,3,3,5,3,4,3,5,4,11/2,6,9,5,5,4,6,4,9/2,4,6,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,3,3,6,4,4,4,5,4,6,6,10,6,11/2,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,5,3,4,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,9/2,4,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,3,4,4,6,4,4,4,6,5,7,7,15,8,15/2,5,8,5,6,5,8,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,4,4,6,4,9/2,4,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,15/2,7,12,7,8,6,10,7,9,8,15,9,10,9,15,10,31/2,16,33,17,35/2,12,17,10,23/2,10,17,9,19/2,7,11,7,9,8,17,9,17/2,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,5,4,11/2,6,12,6,13/2,5,6,4,5,4,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,7/2,3,6,4,7/2,3,5,4,9/2,4,8,5,5,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,2,3,2,3,3,6,4,7/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,2,4,3,3,2,4,3,3,3,4,3,7/2,3,6,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,4,3,7/2,3,4,3,5,5,8,5,5,4,4,3,4,3,5,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3 -18,9,9,7,10,6,7,6,9,5,5,4,6,4,6,6,11,6,6,9/2,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,5/2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,11/2,9,6,8,7,13,8,9,8,13,9,13,27/2,28,15,15,10,14,8,10,8,14,8,8,6,9,6,8,7,14,7,7,5,8,5,6,5,9,5,6,4,7,9/2,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,3,5/2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -31,16,16,11,16,9,11,9,31/2,8,8,6,10,7,10,9,19,10,11,8,12,7,9,8,13,8,9,7,11,7,10,10,20,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,15/2,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,15/2,5,6,5,7,5,6,6,8,4,4,3,4,3,4,3,9/2,3,4,3,5,4,5,5,7,4,4,2,2,2,2,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,11/2,4,5,5,8,6,8,7,14,7,7,5,7,4,5,5,17/2,5,6,4,6,4,5,4,8,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,9,5,6,4,6,4,5,5,17/2,5,6,5,9,7,10,11,22,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,5,6,6,19/2,6,7,7,12,8,12,11,18,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,11,9,14,9,13,12,45/2,13,16,14,24,16,24,24,50,26,26,18,26,15,17,14,49/2,13,14,10,16,10,13,12,24,13,13,9,14,9,11,9,16,9,10,7,11,7,10,10,19,10,10,8,12,7,9,7,12,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,7,18,9,9,6,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,5,7,4,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,3,3,2,7/2,2,2,2,4,3,3,3,9,5,5,4,5,4,5,4,7,4,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,3,2,3,3,9/2,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,11/2,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,3,3,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,2,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,11/2,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,13/2,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,15/2,4,5,4,6,4,5,5,7,4,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5 -17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,11/2,10,6,6,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,5/2,4,3,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,3,3,3,2,3,3,4,3,5,4,8,4,4,3,4,3,3,3,5,3,4,5/2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,13/2,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,6,10,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,9,8,13,9,13,13,27,14,14,10,14,8,9,8,14,15/2,8,6,9,6,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,5/2,4,3,3,3,4,3,3,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -18,10,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,11,6,13/2,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,5,3,7/2,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,7/2,3,3,2,2,2,2,2,3,3,6,3,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,7/2,2,4,3,7/2,3,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,4,4,5,3,4,3,4,3,7/2,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,5/2,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,4,2,5/2,2,3,2,3,2,4,2,5/2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,3,3,2,3,3,4,3,5,5,9,5,9/2,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,5/2,2,5,3,4,3,4,3,7/2,3,6,4,4,3,6,4,6,7,13,7,13/2,4,6,4,9/2,4,7,4,4,4,5,4,9/2,4,7,4,4,3,6,4,4,4,6,4,9/2,4,7,5,7,7,11,6,6,5,6,4,11/2,5,8,5,6,5,6,4,6,6,11,6,13/2,6,9,6,15/2,7,14,8,19/2,8,15,10,29/2,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,7,14,8,15/2,6,8,5,7,6,9,5,11/2,4,6,4,6,6,12,6,6,5,7,4,11/2,4,7,4,7/2,3,4,3,7/2,3,5,3,7/2,2,4,3,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,7/2,3,5,4,9/2,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,7,4,7/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,3,3,2,3,3,6,4,7/2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-5/2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,4,2,2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3 -14,8,8,6,8,5,5,9/2,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,7/2,5,5,9,5,5,3,5,3,3,3,4,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,3/2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,7,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -22,12,12,9,13,8,9,7,13,7,8,6,17/2,6,8,7,13,7,8,6,17/2,5,6,6,10,6,6,5,15/2,5,6,6,13,7,7,5,7,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,2,2,2,3,2,2,2,7/2,3,4,5,12,6,6,4,11/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,3,3,6,4,4,2,5/2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,13/2,4,5,5,6,4,4,3,5,3,4,4,8,4,4,4,11/2,4,4,4,6,4,5,4,6,4,6,6,8,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,7/2,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,9/2,3,4,4,5,3,2,2,2,2,2,2,5,3,3,3,4,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,10,5,5,4,6,3,3,3,6,3,3,2,3,3,4,4,5,3,3,2,3,3,4,4,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,7,4,5,4,13/2,5,7,8,15,8,8,6,8,5,5,5,8,5,6,5,7,5,6,6,9,5,6,4,11/2,4,4,4,6,4,5,4,15/2,6,8,8,12,7,7,5,7,4,5,5,9,5,6,5,17/2,6,7,7,14,8,8,6,21/2,7,10,9,16,10,12,10,18,12,17,17,35,18,18,12,18,11,13,11,18,10,10,8,12,8,10,9,17,9,10,7,19/2,6,7,7,12,6,6,5,15/2,6,8,7,15,8,8,6,15/2,5,6,5,7,4,5,4,11/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,3,3,4,3,4,4,13,7,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,5,3,4,3,4,3,4,5,9,5,4,3,4,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,3,4,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,3,4,4,3,2,2,2,2,2,3,3,4,2,2,2,7/2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,3,2,2,2,3,2,3,3,3,2,2,2,7/2,3,4,4,4,3,3,2,7/2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,2,2,2,7/2,2,2,2,5,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,4 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,5/2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,7/2,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,9/2,7,5,6,6,10,6,8,7,12,8,11,11,22,12,12,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,8,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,5/2,4,5/2,3,3,6,7/2,3,3,4,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3 -19,10,10,7,11,7,8,6,11,6,13/2,5,8,5,7,6,12,7,7,5,8,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,9/2,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,4,4,10,6,11/2,4,4,3,4,4,5,3,7/2,3,4,3,7/2,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,5/2,3,5,3,3,2,3,2,7/2,3,5,3,4,3,5,3,4,4,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,7/2,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,5,3,3,3,5,3,5/2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,5,3,7/2,3,4,2,5/2,3,5,3,3,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,4,3,7/2,3,5,4,5,5,9,5,9/2,3,5,3,3,2,5,3,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,6,4,4,3,4,3,7/2,3,6,4,4,4,6,4,13/2,7,12,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,9/2,4,7,4,5,4,6,4,4,4,6,4,9/2,4,7,5,13/2,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,13/2,6,13,7,15/2,6,10,6,8,8,14,8,21/2,9,16,11,31/2,16,31,16,31/2,10,15,9,11,9,15,8,17/2,7,10,6,17/2,8,14,8,15/2,6,8,5,13/2,6,10,6,6,5,8,5,13/2,6,13,7,13/2,4,6,4,9/2,4,6,4,4,3,5,3,3,3,5,3,7/2,2,4,3,4,3,5,3,7/2,2,3,2,7/2,4,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,3,4,4,2,2,3/2,2,2,2,3/2,2,3,2,3,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,7/2,3,5,3,4,3,9,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3 -18,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,5,4,5,5,9,5,4,3,4,3,3,2,4,5/2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,8,6,10,6,8,8,14,8,10,17/2,15,10,15,15,30,15,15,10,15,9,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,5/2,3,5/2,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,5/2,3,2,2,2,5,3,4,3,4,3,4,3,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,5,8,5,6,5,15/2,4,5,4,6,4,4,3,5,3,4,4,7,5,7,7,19,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,19/2,6,6,4,6,4,4,4,6,4,5,4,6,4,5,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,4,4,15/2,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,16,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,25/2,7,7,5,6,4,5,5,8,5,6,5,8,6,9,9,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,5,4,5,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,3,5,3,4,4,6,4,5,5,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,21/2,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,16,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,11,22,11,11,8,11,7,8,8,14,7,7,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,11,11,19,10,10,7,10,6,8,7,12,7,8,7,12,8,12,12,45/2,12,13,10,16,10,14,13,24,14,17,15,26,18,27,27,57,29,29,19,28,16,19,16,28,15,16,12,19,12,15,13,24,13,13,10,15,9,11,10,18,10,11,9,14,9,12,11,21,11,10,7,10,6,8,7,11,6,7,5,8,5,5,5,8,5,5,3,4,3,3,3,6,4,4,4,7,5,7,6,18,9,9,6,8,5,6,5,8,5,5,4,5,4,6,6,19/2,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,13/2,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,5,7,7,3,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,16,8,8,6,9,5,6,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,10,6,6,5,7,4,5,4,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6 -18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,6,11,6,6,9/2,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,7,10,13/2,8,7,13,7,7,11/2,8,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,7,6,11,6,13/2,5,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,4,9/2,4,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,3,6,4,7/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,3,4,4,9,5,9/2,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,4,11/2,6,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,3,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,1/2,0,0,0,0,1,2,2,3/2,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,4,3,5,4,9/2,5,9,5,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,4,6,4,5,5,12,6,6,4,7,4,5,4,7,4,4,3,4,3,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,6,6,10,6,11/2,4,6,4,5,4,8,5,11/2,4,7,5,7,7,12,7,7,6,10,6,17/2,8,13,8,19/2,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,13/2,6,12,6,13/2,5,6,4,5,4,6,4,4,3,5,3,4,4,4,3,7/2,2,2,2,2,2,5,3,3,3,4,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,3,2,7/2,4,4,3,7/2,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,7,4,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-5,-2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,2,2,5/2,2,2,2,3,3,9,5,9/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4 -14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,4,5/2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,2,3/2,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,6,4,4,3,4,3,4,9/2,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3 -21,11,10,7,10,6,7,6,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,15/2,5,6,5,7,4,4,3,4,3,4,3,4,3,3,2,7/2,2,3,2,4,3,4,4,11/2,4,5,5,13,7,7,5,6,4,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,7/2,2,3,2,5,3,4,3,7/2,3,4,4,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,9/2,3,4,4,9,5,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,4,3,4,4,7,4,4,3,5,3,3,2,5,3,4,3,7/2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,3,2,3,2,7/2,2,3,3,0,0,0,0,0,0,0,0,1,1,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,6,4,4,4,11/2,4,5,5,8,5,5,3,4,3,3,3,5,3,2,2,5/2,2,3,3,7,4,4,3,3,2,3,2,3,2,3,3,11/2,4,4,4,3,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,11/2,4,5,5,13,7,7,5,15/2,4,5,5,7,4,4,3,5,4,5,5,9,5,6,4,11/2,4,4,4,9,5,6,4,13/2,5,7,7,12,7,7,5,15/2,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,21/2,7,9,9,16,9,11,10,17,12,17,17,34,17,17,12,17,10,11,9,17,9,10,8,23/2,8,10,9,15,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,11,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,4,3,9/2,4,5,5,8,5,5,4,9/2,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3/2,2,3,3,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-1,0,0,0,1/2,1,1,1,-6,-2,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,7/2,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,4,10,5,5,4,9/2,3,3,2,5,3,2,2,2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,3,2,7/2,3,4,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,7/2,2,2,2,4,3,4,3,9/2,3,3,3,5 -13,7,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,5,7/2,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,11/2,9,5,5,4,6,7/2,4,4,6,4,4,3,5,7/2,5,9/2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -16,8,8,6,7,4,11/2,5,8,5,5,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,4,3,3,3,4,3,4,4,11,6,11/2,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,8,4,4,3,5,3,4,4,5,3,7/2,3,4,3,7/2,4,4,3,7/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,7/2,3,3,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,7/2,3,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,3,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,5,3,7/2,4,6,4,4,3,6,4,11/2,5,10,6,13/2,4,7,4,5,5,8,5,11/2,4,7,5,13/2,6,10,6,13/2,5,8,5,7,7,12,7,9,8,13,9,27/2,13,26,14,14,9,13,8,9,7,12,7,7,6,9,6,15/2,7,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,5,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,8,4,9/2,4,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,2,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,-2,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,4,3,3,3,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,5/2,2,2,2,3/2,1,1,1,1/2,0,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,5/2,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -14,7,7,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,5/2,3,7/2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,9/2,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,6,7/2,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 -24,12,12,8,12,7,8,7,11,6,7,6,9,6,8,7,15,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,8,5,5,4,13/2,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,9/2,4,5,5,8,6,8,8,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,7,4,4,3,5,4,5,5,19/2,6,6,5,9,6,8,8,14,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,2,2,2,7/2,2,2,2,4,3,4,4,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,11/2,4,4,4,6,4,6,5,6,3,3,3,4,3,4,4,11/2,4,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,6,16,9,9,7,10,6,7,6,9,5,6,5,7,5,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,6,8,8,19,10,10,7,10,6,8,7,25/2,8,9,7,12,8,11,11,18,10,10,8,12,8,10,10,39/2,12,14,12,21,14,21,21,42,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,17,9,10,8,12,7,9,8,27/2,8,8,6,10,7,9,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,12,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,3,3,4,4,11/2,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,6,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,11,6,6,4,6,4,5,4,13/2,4,4,3,4,3,4,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,6,3,3,3,4,2,2,2,5/2,2,2,1,1,1,1,2,-1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,1,1,3/2,2,2,1,1,1,1,2,4,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,1,1,1/2,0,0,0,0,1,1,2,7,4,4,3,4,2,2,2,7/2,2,2,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,9,5,6,4,6,4,4,3,5,3,3,2,3,2,3,4,8,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,9/2,2,2,2,2,1,1,1,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,5,5,8 -13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,4,7/2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,9/2,5,4,7,5,7,13/2,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,11/2,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,5/2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5 -15,8,8,6,8,5,6,5,8,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,6,4,9/2,4,6,4,11/2,6,10,6,6,4,5,3,7/2,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,6,6,11,6,6,4,6,4,4,4,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,5,3,4,3,5,3,3,3,4,3,3,3,3,3,4,4,6,4,5,4,6,4,11/2,6,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,3,2,5,3,4,3,4,2,2,2,3,2,3/2,2,2,2,5/2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,3,9/2,4,6,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,4,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,5,3,4,3,3,2,3,3,4,2,2,2,4,3,9/2,4,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,13/2,5,6,4,11/2,5,8,5,11/2,4,8,6,8,7,12,7,7,6,9,6,15/2,7,13,8,9,8,14,10,27/2,14,26,14,27/2,9,13,8,17/2,7,13,7,7,6,8,6,8,7,12,6,6,5,8,5,5,5,9,5,5,4,7,4,11/2,5,10,5,5,4,5,3,3,3,6,4,7/2,3,4,3,4,4,7,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,5/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,4,4,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,3,3,7,4,9/2,3,4,3,7/2,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,7/2,4,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,4,2,2,2,2,1,1,1,3,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,3/2,2,2,2,3/2,2,3,2,3,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6 -13,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,7/2,5,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,11/2,6,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,21,11,11,15/2,11,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,7/2,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,2,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6 -22,11,11,8,21/2,6,8,6,11,6,7,5,15/2,5,6,5,10,6,6,4,13/2,4,6,5,8,5,6,5,9,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,6,4,5,4,7,5,7,8,15,8,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,6,4,11/2,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,3,3,5,3,3,2,3,3,4,4,7,4,4,4,11/2,4,4,4,12,7,8,6,17/2,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,11/2,4,4,3,7,4,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,7,4,5,4,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,3,6,4,4,3,9/2,3,4,3,5,3,3,3,4,3,5,5,0,0,0,1,3/2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,5/2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,5,4,6,6,8,5,5,4,11/2,4,4,3,5,3,3,2,3,2,3,4,5,3,3,2,3,2,2,2,6,4,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,3,2,7/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,3,3,5,4,5,6,13,7,7,5,8,5,5,4,6,4,4,4,13/2,4,6,6,12,6,6,5,15/2,5,6,6,10,6,6,6,19/2,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,37/2,10,12,10,18,10,10,7,11,7,10,10,17,9,9,6,17/2,5,6,6,12,7,8,6,17/2,6,8,7,13,7,7,5,13/2,4,5,4,7,4,5,4,11/2,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,11/2,4,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,7/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,9/2,4,5,5,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,3,3,9,5,6,4,11/2,4,4,4,6,4,4,3,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,4,-1,0,0,1,1,1,1,1,0,1,1,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,4,4,6,4,6,6,11 -15,8,8,5,8,9/2,6,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,2,2,2,3,2,3,5/2,3,3,4,7/2,5,3,4,3,4,5/2,3,3,4,3,3,5/2,3,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,8,5,5,4,6,7/2,4,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,3,4,3,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,5/2,4,7/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,5/2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,4,5,7/2,4,4,7,4,4,4,7,9/2,6,6,11,6,6,4,7,4,5,4,7,4,5,4,7,5,7,13/2,11,6,7,11/2,8,11/2,7,7,12,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,7/2,6,7/2,4,3,4,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,3,4,3,5,5,8 -22,11,21/2,7,11,6,15/2,6,10,6,11/2,4,6,4,11/2,5,10,6,11/2,4,6,4,5,5,8,5,11/2,5,8,5,7,7,12,6,13/2,5,7,4,9/2,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,9/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,3,3,4,3,3,3,4,3,9/2,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,7,4,4,3,5,3,4,4,12,7,7,5,8,4,9/2,4,7,4,4,3,5,3,4,4,5,3,7/2,3,5,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,6,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,3,3,2,2,2,2,3,7,4,9/2,4,4,3,3,3,5,3,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,7/2,4,6,4,7/2,3,4,3,4,4,6,4,5,4,6,4,13/2,7,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,4,3,7/2,3,5,3,4,3,5,4,9/2,4,7,4,9/2,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,5,3,4,4,5,3,7/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,5,4,6,4,6,6,11,6,13/2,5,7,5,6,6,10,6,13/2,6,10,6,17/2,8,16,8,8,6,10,6,15/2,6,11,6,15/2,6,10,7,10,9,16,9,10,8,12,8,21/2,10,17,10,23/2,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,6,10,6,6,5,7,5,13/2,6,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,9,5,5,3,5,3,7/2,3,5,3,7/2,4,6,4,6,5,9,5,5,4,6,4,9/2,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,7/2,4,8,4,9/2,4,5,3,3,3,5,3,3,3,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,0,1,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-4,-4,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,4,4,-1,0,1,1,1,1,1,1,0,1,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,3,5,3,4,4,6,5,7,7,12 -21,11,10,7,11,6,7,6,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,9/2,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,9/2,8,4,4,7/2,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,4,8,5,5,4,7,5,7,7,12,6,6,5,6,4,4,4,7,4,4,7/2,5,3,4,4,6,3,3,5/2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,9/2,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,11/2,9,6,8,8,16,17/2,9,6,10,6,8,13/2,11,6,7,6,10,7,10,9,17,9,10,8,12,8,10,19/2,17,10,12,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,9,9,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,12 -41,21,22,15,23,14,17,14,25,13,14,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,12,8,12,12,45/2,12,12,9,13,8,10,9,16,9,9,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,14,10,14,13,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,7,6,9,5,5,4,7,5,7,8,29/2,8,8,6,9,5,6,6,10,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,7,6,9,6,7,7,13,7,8,7,11,8,12,12,22,12,12,8,12,7,8,6,10,6,6,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,5,13,7,7,5,8,5,6,5,8,5,5,3,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,6,5,8,6,8,8,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,11,8,12,12,12,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,7,7,27/2,8,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,10,21,11,11,7,10,6,7,7,12,7,8,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,9,15,10,15,16,31,16,16,11,17,10,13,12,22,12,14,12,20,13,18,18,35,18,19,14,23,14,18,17,32,18,21,18,32,22,33,33,67,34,34,22,32,18,21,18,32,17,18,13,20,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,12,22,12,12,9,13,8,9,8,14,8,8,6,10,7,10,10,19,10,10,7,11,7,9,8,15,9,10,8,12,8,11,10,17,9,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,6,5,7,7,25/2,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,2,2,2,1,1,1,2,2,4,3,3,3,5,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,9,9,14,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,7,5,6,5,8,5,7,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,24 -21,11,12,8,12,7,9,8,13,7,8,6,9,6,8,15/2,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,6,6,5,7,9/2,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,12,13/2,6,4,6,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,5,7,7,7,4,4,3,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,17,10,11,10,17,12,17,17,34,18,18,12,17,10,11,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,6,11/2,9,11/2,6,5,7,5,7,6,12,6,6,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,8,4,4,3,5,3,3,3,4,5/2,3,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,6,4,6,7,13 -22,12,23/2,8,12,7,17/2,8,13,7,15/2,6,9,6,8,8,13,7,15/2,6,9,5,11/2,5,9,5,5,4,7,5,13/2,6,12,6,6,4,7,4,11/2,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,5/2,2,4,3,4,4,13,7,6,4,6,4,5,4,6,4,9/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,6,4,9/2,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,7/2,4,5,3,4,4,7,5,7,7,7,4,4,3,6,4,4,4,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,4,6,4,5,4,7,4,9/2,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,16,9,9,7,9,6,15/2,7,12,7,8,7,11,7,10,10,19,10,21/2,8,12,8,21/2,10,17,10,11,10,17,12,35/2,18,34,18,18,12,17,10,11,10,17,9,9,7,10,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,7,5,7,6,12,6,13/2,5,7,5,6,5,8,5,5,4,6,4,11/2,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,4,7/2,3,3,2,5/2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,4,3,5,3,4,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-2,-4,-2,-7/2,-4,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,3,2,3,2,7/2,4,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,1,3/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,4,5,5,7,4,9/2,4,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,13/2,7,13 -15,8,8,6,8,5,6,11/2,9,5,5,4,7,9/2,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,7/2,5,5,9,5,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,7/2,5,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,5/2,4,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9 -22,12,12,8,25/2,8,9,8,12,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,6,6,14,7,7,5,15/2,5,6,5,8,5,6,4,13/2,4,5,5,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,4,13,7,7,5,7,4,5,5,6,4,4,4,6,4,4,4,6,4,4,4,11/2,4,4,4,6,4,4,4,13/2,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,9/2,3,4,3,5,3,4,3,7/2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,4,3,2,2,2,2,2,2,1,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,2,4,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,4,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,3,3,8,5,5,3,4,3,3,3,6,4,5,5,8,6,8,8,7,4,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,9/2,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,4,6,4,4,4,13/2,4,6,6,14,7,7,5,13/2,4,6,5,6,4,4,4,6,4,6,5,9,5,6,4,13/2,4,6,6,9,5,6,6,19/2,6,9,9,17,9,9,7,11,7,9,8,13,7,8,6,21/2,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,35,18,18,12,18,11,13,11,18,10,10,8,23/2,8,10,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,12,6,6,4,13/2,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,3,3,2,7/2,3,4,3,6,3,3,2,3,2,3,2,4,2,2,2,3,3,4,4,6,4,4,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,4,5,4,9,5,6,4,11/2,4,4,3,4,3,3,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,3/2,2,2,1,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,1/2,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,9/2,4,5,5,9,5,6,4,13/2,4,5,5,8,5,6,5,15/2,5,7,7,13 -13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,5,3,4,7/2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,5,7/2,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,6,7/2,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,10,6,6,5,7,9/2,6,5,8,5,5,4,6,9/2,6,6,12,7,7,5,8,5,7,6,11,13/2,8,6,10,7,10,10,20,11,11,15/2,11,7,8,6,11,6,6,5,7,5,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,5/2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8 -17,9,9,7,10,6,13/2,6,8,5,5,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,9/2,5,9,5,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,6,4,7/2,2,4,3,7/2,3,5,4,9/2,4,7,5,6,6,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,7,4,3,2,4,3,3,3,3,2,3,2,4,3,4,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,4,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,7,7,13,7,15/2,6,8,5,13/2,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,19/2,8,13,9,25/2,12,25,13,13,9,13,8,9,7,13,7,7,5,8,5,7,7,11,6,13/2,5,6,4,9/2,4,7,4,5,4,5,4,5,5,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,9/2,5,9,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,5,5,8,5,5,4,5,3,7/2,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,3,3,4,3,7/2,3,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,1,3/2,1,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,4,3,4,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10 -15,8,8,6,8,5,6,5,8,5,5,4,7,9/2,6,11/2,9,5,5,4,5,3,4,7/2,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,4,4,4,6,9/2,6,6,12,13/2,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,13/2,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8 -26,14,14,10,14,8,10,8,27/2,8,8,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,10,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,7,5,8,8,14,8,8,6,9,5,6,5,17/2,5,6,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,6,5,15/2,4,4,3,4,3,5,5,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,3,4,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,1,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,4,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,1,1,1,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,4,5,4,9,5,5,4,6,4,5,5,17/2,5,6,5,9,6,8,8,8,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,10,6,6,4,6,4,4,3,9/2,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,21,11,12,8,12,8,10,9,16,9,10,8,12,8,12,11,20,11,12,9,13,9,12,12,22,12,14,11,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,13,9,12,11,16,9,9,7,10,6,8,6,21/2,6,7,5,8,6,8,8,15,8,9,6,9,5,6,6,19/2,6,6,5,9,6,7,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,6,4,4,4,13/2,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,3,3,3,4,3,4,4,13/2,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,4,4,5,3,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1,1,1,2,3,2,3,2,7/2,2,3,3,4,3,3,3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,5,5,17/2,5,5,4,7,5,7,7,14 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,7,4,4,7/2,5,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,5,5,7/2,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,12,13/2,7,5,7,5,6,5,9,5,6,9/2,7,5,7,6,11,6,7,5,7,5,7,7,12,7,8,13/2,11,15/2,11,11,20,11,11,15/2,11,6,7,6,11,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8 -16,9,9,6,8,5,11/2,5,8,5,11/2,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,5,3,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,6,4,4,3,6,4,4,3,4,3,7/2,4,5,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,6,4,4,3,5,3,7/2,3,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,9/2,4,6,4,6,6,6,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,11/2,4,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,6,4,4,3,6,4,13/2,6,13,7,7,5,8,5,13/2,6,9,5,11/2,4,7,5,7,7,12,7,7,6,8,6,15/2,8,14,8,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,6,4,5,4,7,4,5,4,6,4,11/2,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,2,2,3,3,4,2,5/2,2,4,3,4,4,8,4,4,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,3,2,3/2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,7,4,4,3,2,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,2,2,2,3,3,3,2,2,2,3,2,5/2,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,9/2,4,8 -12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,9/2,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,9/2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,7/2,5,5,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,5,5,7,4,4,7/2,6,4,5,5,10,6,6,5,7,5,6,6,11,13/2,7,6,10,7,10,10,18,19/2,10,7,10,6,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,7/2,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 -20,10,10,7,11,7,8,6,10,6,7,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,7,7,6,4,4,4,11/2,4,4,4,7,4,5,4,6,4,5,5,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,10,6,6,4,13/2,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,4,2,5/2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,3,9/2,3,4,4,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,4,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,4,2,2,2,5/2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,1/2,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,3,2,2,2,3,2,2,2,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,15/2,5,6,6,9,5,5,4,5,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,4,9/2,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,4,11/2,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,5,8,5,5,4,7,5,8,8,17,9,9,7,21/2,6,8,7,11,6,6,5,17/2,6,8,8,16,9,10,7,11,7,10,10,19,11,12,10,33/2,11,16,16,29,15,15,10,31/2,9,11,9,16,9,9,7,21/2,7,9,8,14,8,8,6,8,5,6,5,9,5,6,5,17/2,6,7,7,14,7,7,5,7,4,5,4,7,4,5,4,15/2,5,6,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,11/2,4,5,5,6,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,11/2,4,5,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,7/2,2,3,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,8,4,4,3,7/2,2,3,2,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,11/2,4,4,4,7,4,5,4,13/2,4,6,6,11 -13,7,7,5,7,9/2,5,4,7,4,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,5,3,3,3,5,7/2,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,5/2,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,5/2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,2,5/2,4,3,4,4,7,4,4,3,3,2,3,3,4,5/2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,9/2,6,5,8,9/2,5,4,6,4,6,6,11,6,7,5,8,5,7,7,12,7,8,13/2,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,9/2,8 -18,10,19/2,7,10,6,13/2,6,9,5,11/2,4,6,4,13/2,6,12,6,13/2,4,6,4,4,4,7,4,4,4,6,4,6,6,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,5,3,7/2,3,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,4,4,7,4,9/2,4,5,3,4,4,7,4,7/2,3,4,3,4,4,6,4,9/2,4,5,4,5,5,6,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,5/2,3,5,3,7/2,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,0,0,0,0,0,0,4,3,3,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,9/2,4,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,5/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,1,1,1,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,13/2,6,8,5,5,4,5,3,4,4,6,4,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,7/2,4,6,4,5,5,9,5,5,4,4,3,4,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,6,6,13,7,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,7,5,7,7,15,8,17/2,6,10,6,15/2,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,19/2,9,16,9,11,9,15,10,14,14,25,13,27/2,9,13,8,10,8,14,8,8,6,10,6,17/2,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,13/2,4,6,4,9/2,4,7,4,9/2,4,6,4,11/2,5,9,5,9/2,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,13/2,4,6,4,5,4,7,4,9/2,4,5,3,4,4,7,4,5,4,6,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,3,5,3,7/2,3,4,3,9/2,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,1,3,2,1,1,1,1,1/2,1,1,1,1/2,1,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,3,7,4,7/2,3,4,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,4,3,4,3,4,4,6,4,9/2,4,7,5,7,6,11 -18,10,10,7,10,6,6,11/2,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,5,7,4,4,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,1/2,0,0,0,0,0,0,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,2,1,2,2,2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,13/2,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,15,8,8,6,9,6,7,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,10,9,16,9,11,9,14,10,14,14,24,13,13,9,13,8,9,8,13,15/2,8,6,9,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,7/2,5,7/2,5,9/2,8,9/2,5,4,6,4,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1/2,0,1/2,0,1,3,2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11 -34,18,18,12,17,10,13,11,20,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,8,9,7,11,7,10,10,11,6,7,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,5,9,6,7,7,13,7,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,5,3,4,3,3,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,25/2,7,8,6,8,5,7,7,12,7,8,6,9,7,10,10,11,6,6,4,6,4,6,5,9,5,6,5,8,5,6,6,19/2,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3/2,1,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,8,4,4,3,5,3,3,2,3,2,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,15,8,9,6,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,15,8,9,6,9,6,8,7,13,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,7,8,6,10,7,11,11,23,12,12,8,11,6,7,6,11,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,11,7,8,7,12,8,12,13,29,15,16,12,18,11,13,11,20,11,12,10,17,11,16,15,57/2,15,16,12,18,12,16,15,29,16,18,15,26,18,27,27,47,24,24,16,23,13,16,13,23,13,14,11,18,11,15,14,53/2,14,14,10,14,9,11,10,18,10,11,9,15,10,13,13,22,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,9,7,10,6,8,8,15,8,9,7,12,9,13,13,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,7,10,10,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,6,10,7,9,9,19,10,11,8,11,7,8,7,12,7,7,5,8,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,-1,-7/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,3,2,2,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,4,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5/2,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,4,4,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,21/2,6,6,4,6,4,6,6,11,7,8,7,11,8,11,11,21 -18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,1,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,15,8,9,7,10,6,7,6,11,6,7,6,9,6,9,17/2,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,15/2,9,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,9/2,5,9/2,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,2,2,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,3/2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,13/2,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,11/2,5,6,4,7/2,3,4,2,5/2,2,4,3,3,3,3,2,7/2,4,6,4,7/2,3,5,3,3,3,5,3,7/2,3,4,3,9/2,4,10,6,11/2,4,6,4,7/2,3,4,3,7/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,12,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,5,5,7,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,6,3,3,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,3,3,3,2,7/2,4,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,7/2,3,3,2,3,3,6,4,4,3,5,4,9/2,4,7,4,4,4,7,5,7,7,9,5,5,4,6,4,4,3,6,3,3,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,4,9/2,4,7,4,9/2,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,9/2,4,6,4,6,6,14,8,15/2,5,7,4,5,5,7,4,5,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,5,4,8,6,8,8,15,8,9,7,10,6,7,6,11,6,7,6,10,7,19/2,9,16,9,9,7,10,7,9,9,16,9,11,9,15,10,29/2,15,26,14,14,10,14,8,19/2,8,13,8,17/2,7,11,7,9,9,16,8,8,6,8,5,6,6,11,6,13/2,6,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,9/2,4,8,5,11/2,4,6,4,11/2,5,8,5,5,4,7,5,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,3,3,7,4,4,3,4,3,7/2,4,5,3,7/2,4,6,4,6,6,10,6,11/2,4,7,4,9/2,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,3,2,2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,3/2,1,2,2,3/2,2,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,3,2,2,2,2,2,3/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,1,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,2,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,3,2,3,2,5/2,3,6,3,3,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,7,4,9/2,4,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,12 -13,7,7,5,7,9/2,6,5,8,9/2,5,4,6,4,5,5,8,4,4,3,5,3,4,7/2,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,3,4,7/2,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,7/2,5,3,3,5/2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,7/2,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,7/2,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,7/2,4,7/2,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,3,2,3,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,7/2,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,5/2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,5,5,9 -20,10,10,7,21/2,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,15/2,5,6,5,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,4,4,11/2,4,4,3,6,4,4,3,9/2,4,5,5,12,6,6,4,11/2,3,3,3,4,3,4,4,11/2,4,5,5,8,4,4,3,5,3,4,4,4,3,3,3,9/2,3,4,4,6,3,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,9/2,3,4,4,6,4,5,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,9/2,4,5,5,4,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,3,2,3,3,4,3,4,4,3,2,2,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,5/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,1,1,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,3,4,4,5,3,4,3,5,4,5,5,6,4,4,4,13/2,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,11/2,4,5,4,8,5,5,4,9/2,3,4,4,8,5,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,5,4,15/2,5,7,7,10,6,6,4,13/2,4,6,5,8,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,5,10,6,6,4,13/2,4,5,5,9,5,6,5,17/2,6,9,9,17,9,10,7,21/2,6,8,7,12,7,8,7,23/2,8,10,10,18,10,10,8,13,8,10,10,18,10,12,10,33/2,12,17,17,30,16,16,11,16,9,11,9,16,9,9,7,12,8,11,10,18,9,9,6,19/2,6,8,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,15/2,5,6,6,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,13/2,4,6,6,10,5,5,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,8,5,5,4,6,4,5,5,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,11/2,4,4,3,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,2,5/2,2,3,3,1,1,1,1,3/2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,1,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,3,2,2,1,1/2,0,0,0,2,2,2,1,1/2,0,0,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,1,0,0,0,0,1/2,0,0,0,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,7,4,4,3,9/2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,4,11/2,4,4,4,5,3,4,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,6,4,13/2,5,7,7,13 -12,6,6,5,7,4,5,9/2,7,4,4,4,6,4,4,9/2,8,4,4,3,5,3,4,7/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,3,3,4,3,3,2,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,6,7/2,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,5,8,5,5,9/2,8,5,6,6,11,6,6,5,8,5,6,6,11,13/2,8,6,10,15/2,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,7/2,4,3,4,3,4,4,6,7/2,4,3,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,9 -16,8,8,6,10,6,7,6,10,6,11/2,4,7,4,11/2,6,10,6,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,7/2,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,9/2,3,4,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,11,6,6,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,9/2,4,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,7/2,2,4,2,5/2,2,5,3,3,3,3,2,7/2,4,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,1,6,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3,4,3,2,2,2,2,2,3/2,1,2,1,1,1,0,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,5,3,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,1,2,5/2,2,3,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,2,5/2,2,4,2,5/2,2,2,2,7/2,4,4,3,3,3,4,3,4,4,5,3,7/2,4,6,4,6,6,12,7,7,5,7,4,9/2,4,6,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,3,6,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,11/2,5,9,5,11/2,4,6,4,4,4,7,4,5,4,6,4,13/2,7,15,8,15/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,7,6,10,6,17/2,8,15,8,17/2,6,11,7,17/2,8,14,8,10,8,14,10,14,14,24,12,12,9,13,8,9,7,14,8,8,6,9,6,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,14,8,15/2,5,7,4,5,5,8,4,9/2,4,5,3,4,4,8,4,9/2,4,5,4,5,5,7,4,5,4,8,6,8,8,12,6,13/2,5,7,4,5,4,7,4,9/2,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,4,3,6,4,5,5,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,9/2,4,7,5,7,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,1,1,1,3,2,2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,4,2,5/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,1,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,2,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,-1,0,0,1,0,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,7,4,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12 -15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,4,2,2,2,4,3,3,5/2,3,5/2,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,7/2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,9,5,5,4,5,7/2,4,4,6,4,5,4,6,4,6,13/2,14,8,8,5,7,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,6,4,5,9/2,7,5,7,7,12,7,7,11/2,8,5,6,6,10,6,7,6,9,6,8,8,14,15/2,8,6,10,6,8,15/2,13,8,9,8,13,9,13,13,22,11,11,8,12,7,9,7,12,7,8,6,9,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,9/2,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,8,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,7,5,7,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,3/2,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 -27,14,14,10,14,8,10,9,31/2,8,8,6,10,7,9,8,16,8,8,6,9,6,7,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,6,8,4,4,3,4,3,4,4,11/2,4,4,4,6,5,7,7,14,7,7,5,6,4,4,4,11/2,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,3,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,15/2,4,5,5,8,6,8,7,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,9,5,4,3,4,3,3,3,9/2,2,2,2,3,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,6,4,6,6,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,2,2,5/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5/2,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,11/2,4,4,3,4,3,5,5,6,4,5,4,6,4,6,5,17/2,5,6,5,9,6,9,9,22,12,12,8,12,7,8,6,21/2,6,7,5,8,5,7,7,13,7,6,4,6,4,5,5,8,5,6,5,7,5,8,8,16,9,9,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,10,6,7,6,21/2,6,8,7,12,8,12,12,26,13,13,9,14,8,10,8,27/2,8,8,6,10,6,7,7,12,7,7,5,8,5,6,6,23/2,7,8,7,12,8,12,13,23,12,12,9,14,8,10,10,35/2,10,10,8,14,10,14,14,25,13,14,11,17,11,15,14,25,14,17,14,24,16,24,24,42,22,22,15,21,12,14,12,45/2,12,14,11,18,11,15,14,25,13,13,9,12,7,9,8,27/2,8,9,7,12,8,11,11,23,12,12,8,12,7,9,8,25/2,6,6,5,7,5,6,6,14,8,9,7,10,6,8,7,13,8,9,7,12,9,13,13,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,9,7,10,6,7,6,21/2,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,17/2,5,6,4,6,4,6,6,15,8,9,7,10,6,8,7,25/2,8,9,7,12,8,11,11,16,9,9,7,10,6,7,6,21/2,6,6,5,7,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,6,3,3,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,0,0,0,0,0,0,1/2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,8,6,9,6,7,6,23/2,7,8,6,10,7,11,11,20 -15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,10,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,9/2,5,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,13/2,8,8,14,8,10,8,14,19/2,14,14,24,13,13,9,12,7,8,7,13,7,8,13/2,10,7,9,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,13/2,13,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,9/2,8,5,5,4,7,5,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,7/2,6,7/2,4,3,4,3,4,4,8,5,5,4,6,4,5,9/2,8,5,6,9/2,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,4,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,3/2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,7/2,4,4,7,4,5,4,6,4,6,6,11 -18,10,10,7,10,6,7,6,10,6,6,5,7,5,13/2,6,11,6,11/2,4,6,4,4,4,6,4,9/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,9,5,9/2,3,4,3,3,3,3,2,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,7/2,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,4,9/2,4,5,3,7/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,5,3,4,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,5,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,3,2,3,3,4,3,7/2,4,6,4,9/2,4,6,5,7,7,14,8,15/2,6,8,5,11/2,5,8,5,11/2,4,6,4,5,5,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,11,6,6,4,7,4,11/2,5,8,5,11/2,5,8,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,8,5,5,5,8,6,17/2,8,16,8,8,6,10,6,15/2,6,12,7,15/2,6,10,7,9,9,16,9,9,7,12,8,19/2,9,16,10,23/2,10,16,11,16,16,29,15,15,10,15,9,21/2,9,15,8,19/2,8,12,8,10,9,17,9,17/2,6,9,6,13/2,6,10,6,6,5,8,6,15/2,8,15,8,9,6,8,5,11/2,5,8,4,9/2,4,6,4,11/2,5,9,5,11/2,4,7,4,11/2,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,5,4,6,4,11/2,5,10,6,6,5,6,4,5,5,7,4,5,4,6,4,11/2,6,11,6,6,4,6,4,5,4,7,4,9/2,4,5,4,9/2,4,9,5,6,5,6,4,11/2,5,9,6,13/2,5,8,6,8,8,10,6,11/2,4,6,4,9/2,4,7,4,9/2,4,4,3,3,3,5,3,3,2,3,2,3,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,5,3,5/2,2,3,2,3/2,1,2,1,1/2,0,1,1,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,9/2,4,8,5,5,4,6,4,5,5,8,5,11/2,4,7,5,7,7,12 -15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,2,3,3,3,2,3,2,2,2,2,2,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,3,4,4,3,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,4,3,5,4,6,6,12,13/2,6,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,6,10,6,6,9/2,6,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,8,11/2,7,7,13,7,8,6,10,6,8,8,13,8,10,8,13,9,13,13,24,13,13,9,12,7,9,8,13,7,8,6,10,6,8,8,14,15/2,8,5,8,5,6,5,8,5,5,4,7,5,6,13/2,12,7,7,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,5,4,6,4,4,4,8,9/2,5,9/2,8,11/2,8,8,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,9/2,5,4,5,4,5,9/2,8,5,6,9/2,7,5,7,7,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,5/2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,5/2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,6,10 -25,13,13,9,27/2,8,10,8,14,8,9,7,10,7,9,8,15,8,9,6,19/2,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,5,4,6,6,9,5,4,3,9/2,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,4,3,4,3,5,4,5,4,8,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,3,3,17,9,8,6,17/2,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,5,3,3,2,7/2,3,4,4,8,5,5,4,5,3,4,4,8,5,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,6,4,4,3,7/2,2,3,3,4,2,2,2,7/2,2,3,3,5,3,3,3,5,3,4,4,4,3,4,4,7,5,8,8,5,3,3,2,2,2,2,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,5,3,3,2,2,2,2,2,5/2,2,2,2,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,4,3,9/2,3,4,4,8,5,6,5,8,6,8,9,21,11,12,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,8,23/2,7,8,7,12,7,7,6,17/2,6,8,8,16,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,12,22,12,12,8,25/2,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,33/2,10,14,13,22,13,15,13,45/2,16,23,23,42,22,22,15,43/2,12,15,13,22,12,14,10,33/2,10,14,13,23,12,13,9,13,8,10,8,14,8,9,7,11,8,11,11,21,11,12,8,12,7,8,6,10,6,7,5,8,5,7,7,12,7,7,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,12,8,12,7,8,7,12,7,8,6,19/2,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,8,8,16,8,8,6,8,5,6,6,10,6,7,6,17/2,6,8,7,13,7,8,6,9,6,7,7,14,8,9,7,12,8,11,11,14,8,8,6,9,5,6,5,10,6,6,4,13/2,4,4,4,7,4,5,4,11/2,4,4,3,5,3,4,3,7/2,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,3,2,1,1,1,1,1,1,1/2,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,6,3,3,2,3,2,2,1,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,-4,-1,-1,0,-1/2,0,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,4,5,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,17/2,6,8,9,17 -17,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,7/2,4,3,4,3,3,3,4,3,4,4,6,3,3,2,4,5/2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,5/2,3,2,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,5,7/2,5,9/2,6,4,4,3,4,5/2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,5,4,6,5,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,7/2,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,11/2,6,11/2,9,5,6,4,7,9/2,6,6,10,11/2,6,4,6,4,5,5,8,9/2,5,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,11/2,9,6,8,8,15,8,9,7,11,7,9,9,15,9,10,9,15,11,16,31/2,28,15,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,17/2,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,15/2,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,9/2,6,5,9,5,6,11/2,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,9/2,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,4,7,4,5,5,9,11/2,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-2,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,5/2,4,3,4,4,7,4,4,7/2,6,4,5,4,7,4,4,4,6,4,6,6,12 -24,12,12,9,14,8,19/2,8,14,8,17/2,6,10,7,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,7,5,8,5,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,11/2,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,17,9,9,6,8,5,6,5,10,6,11/2,4,7,4,11/2,5,9,5,11/2,4,6,4,5,4,8,4,9/2,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,4,4,7,4,5,4,6,4,6,6,9,5,11/2,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,4,7,5,15/2,7,4,2,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,3,2,3,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,7,5,6,5,7,6,17/2,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,13/2,5,7,4,11/2,5,10,6,7,6,9,6,19/2,10,19,10,10,7,12,7,8,7,11,6,7,5,8,6,8,8,15,8,17/2,6,9,6,7,7,13,7,8,7,12,8,25/2,12,25,13,13,9,14,8,9,8,13,7,8,6,10,6,17/2,8,15,8,8,6,9,6,15/2,7,11,6,15/2,7,12,8,23/2,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,12,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,45/2,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,27/2,13,23,12,25/2,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,21/2,8,11,6,7,6,10,6,13/2,5,8,5,7,7,12,7,15/2,6,10,6,15/2,7,12,7,17/2,8,12,8,25/2,12,24,12,12,9,13,8,17/2,8,13,7,8,6,9,6,8,8,13,7,15/2,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,13/2,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,15/2,7,13,8,9,7,11,8,21/2,11,14,8,17/2,6,8,5,5,5,9,5,5,4,6,4,4,4,8,4,9/2,4,5,3,7/2,3,5,3,7/2,3,4,3,3,3,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,7/2,4,7,4,7/2,2,4,2,3/2,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,5,3,5/2,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,0,0,-1,0,1/2,1,0,0,0,1,1,1,2,2,3,2,3/2,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,9/2,5,10,6,11/2,4,5,4,9/2,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,13/2,6,10,6,13/2,5,8,6,9,9,17 -24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,8,14,8,8,6,8,5,6,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,16,9,9,6,9,5,6,5,9,5,6,4,7,9/2,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,7/2,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,11/2,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,7,5,7,7,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,9/2,5,5,7,11/2,8,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,11/2,9,6,8,8,15,8,8,6,9,6,7,7,13,15/2,9,15/2,13,9,13,25/2,24,13,13,9,14,8,9,8,14,15/2,8,6,10,13/2,9,8,15,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,23/2,12,9,15,10,13,12,22,13,15,13,22,15,22,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,13,25/2,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,10,15/2,11,6,7,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,9,8,13,9,13,25/2,24,12,12,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,7,13,15/2,8,7,11,15/2,10,11,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,9/2,8,4,4,7/2,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,5/2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,5,3,2,2,3,2,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,1/2,0,0,0,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,3,2,3,3,5,3,4,5/2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17 -46,24,24,16,24,14,17,14,24,13,14,11,19,12,17,16,30,16,17,12,18,11,14,13,23,13,14,11,17,11,16,16,30,16,16,11,16,9,11,9,15,8,9,7,10,7,9,8,15,8,8,6,9,6,7,7,13,7,8,7,11,8,11,11,21,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,31,16,16,11,17,10,12,10,17,10,11,9,14,9,12,12,23,12,12,9,14,9,11,10,17,10,11,9,15,10,14,13,25,13,13,9,14,8,9,7,12,7,8,6,10,6,8,7,13,7,7,5,7,4,5,5,9,5,6,5,9,6,9,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,9,13,8,10,9,15,8,9,7,10,6,8,8,14,8,8,7,11,7,10,9,16,9,11,9,15,10,14,14,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,8,8,14,8,9,7,10,6,8,8,15,9,10,9,16,11,16,16,42,22,22,15,23,13,16,13,22,12,13,9,14,9,12,11,21,11,12,9,13,8,11,10,19,11,13,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,11,9,14,9,13,13,24,13,14,11,17,11,15,14,26,15,18,15,26,17,25,24,95/2,24,24,17,26,15,17,15,26,14,15,11,18,12,16,16,30,16,17,12,19,12,16,15,28,16,19,16,27,18,26,26,52,27,27,19,28,16,20,18,33,18,20,16,26,17,23,23,44,23,25,19,30,19,25,24,45,25,30,25,44,30,44,44,82,42,42,28,42,24,28,23,41,22,23,18,29,18,25,24,45,23,24,16,24,14,17,15,28,15,17,14,23,15,21,21,40,21,21,14,21,12,14,12,21,11,12,10,16,10,14,14,26,14,14,11,17,11,14,12,22,13,16,14,24,16,24,24,95/2,24,24,17,26,15,17,14,25,14,15,11,18,11,15,14,26,13,13,9,14,9,11,10,18,11,13,11,18,12,18,18,35,18,19,13,19,11,13,12,21,11,12,9,14,9,13,12,22,12,13,10,16,10,13,12,23,13,15,13,22,15,21,21,29,15,16,11,16,9,11,9,16,9,10,8,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,12,23,12,12,8,12,7,9,8,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,3,2,1,1,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,2,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,9,9,16,11,17,17,32 -23,12,13,9,12,7,9,7,12,7,8,6,10,7,9,9,16,9,9,7,9,6,8,7,12,7,7,6,9,6,9,8,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,9/2,8,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,9/2,6,4,4,7/2,5,3,3,3,3,5/2,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,16,9,9,6,9,11/2,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,5,7,5,6,11/2,9,11/2,6,5,8,11/2,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,8,9/2,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,9,22,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,11/2,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,9,11,10,17,9,10,8,14,9,12,12,22,12,13,10,16,10,13,25/2,23,13,16,13,23,16,23,23,42,22,22,15,22,12,14,12,21,23/2,12,19/2,15,10,13,25/2,23,12,12,9,13,8,9,8,15,8,9,7,12,8,11,11,21,11,11,8,11,13/2,8,7,11,6,6,11/2,8,6,8,8,14,8,8,6,9,6,8,13/2,11,7,8,7,13,9,12,12,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,13/2,11,6,6,5,8,5,7,7,12,7,7,11/2,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,6,5,6,4,6,6,12,6,6,4,7,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,7,4,5,9/2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,3/2,1,1,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,2,3,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,5,8,6,9,9,17 -23,12,13,9,12,7,17/2,7,12,7,15/2,6,11,7,9,9,16,9,9,7,9,6,8,7,11,6,7,5,9,6,9,8,15,8,17/2,6,8,5,11/2,5,7,4,5,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,5,3,3,3,3,2,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,4,2,2,2,3,2,3/2,1,1,1,3/2,2,2,2,2,2,17,9,9,6,9,6,13/2,6,9,6,13/2,5,7,5,13/2,6,12,6,13/2,5,7,5,6,6,9,6,13/2,5,9,6,7,7,13,7,15/2,5,8,5,5,4,7,4,9/2,4,6,4,9/2,4,6,4,7/2,3,3,2,3,3,5,3,4,3,4,3,5,5,11,6,11/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,8,5,11/2,4,6,4,5,5,8,5,5,5,8,6,17/2,9,22,12,12,8,13,8,17/2,7,12,7,7,5,7,5,6,6,12,6,6,5,8,5,13/2,6,10,6,13/2,6,9,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,8,6,9,6,15/2,7,13,8,19/2,8,14,9,13,13,24,13,13,9,13,8,19/2,8,14,8,17/2,6,10,6,17/2,8,15,8,9,7,10,6,17/2,8,14,8,19/2,8,14,10,14,14,27,14,14,10,14,9,11,10,16,9,21/2,8,14,9,25/2,12,22,12,25/2,10,16,10,27/2,13,23,13,16,13,23,16,23,23,42,22,22,15,22,12,29/2,12,22,12,25/2,10,16,10,27/2,13,24,12,25/2,9,13,8,9,8,15,8,9,7,12,8,23/2,11,21,11,21/2,8,10,6,15/2,7,11,6,13/2,6,8,6,15/2,8,15,8,8,6,10,6,15/2,6,11,7,8,7,13,9,25/2,12,24,12,25/2,9,13,8,19/2,8,13,7,8,6,10,6,17/2,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,19/2,7,10,6,8,7,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,6,13/2,6,9,5,6,5,6,4,6,6,12,6,6,4,7,4,11/2,5,7,4,5,4,7,5,7,7,12,6,13/2,4,7,4,11/2,5,7,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,5,3,3,2,2,2,3/2,2,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-3,-1,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,2,3,2,5/2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,5,3,4,4,7,5,6,5,8,6,19/2,9,17 -16,17/2,9,6,9,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,5,5,8,9/2,5,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,4,3,4,4,8,4,4,7/2,5,3,4,3,4,5/2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,12,7,7,5,6,4,5,4,7,4,5,4,5,7/2,4,4,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,15,8,9,6,9,11/2,6,5,8,5,5,4,5,4,5,5,8,4,4,7/2,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,9,6,7,6,10,13/2,9,9,17,9,9,6,9,6,7,6,10,6,6,5,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,13/2,9,8,15,8,9,7,11,7,10,9,16,9,11,9,16,11,16,16,29,15,15,10,15,9,10,9,15,8,8,13/2,11,7,10,9,16,9,9,6,9,11/2,6,6,10,6,6,5,8,6,8,8,14,15/2,7,5,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,6,4,7,9/2,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,8,4,4,4,6,4,6,5,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,7/2,5,7/2,5,5,9,5,5,7/2,5,3,4,4,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,7/2,4,4,6,5,7,13/2,12 -23,12,13,9,13,8,9,8,12,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,9/2,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,13/2,4,6,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,1,1,1,1,2,2,3/2,2,2,2,18,10,10,7,19/2,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,7,14,7,7,5,7,4,5,4,8,5,5,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,9/2,4,5,6,11,6,6,4,5,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,9,5,6,5,17/2,6,7,7,5,3,3,2,7/2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,3,3,4,3,4,3,9/2,3,4,4,9,5,5,4,9/2,3,3,3,5,3,2,2,5/2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,4,3,4,3,9/2,4,5,5,9,5,6,5,15/2,5,6,6,10,6,7,6,19/2,7,10,10,23,12,13,9,27/2,8,10,8,12,7,7,5,8,5,7,7,12,7,7,5,15/2,5,6,6,9,5,6,5,17/2,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,12,7,7,6,9,6,8,7,13,8,9,8,14,9,13,13,26,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,21/2,7,9,8,14,8,10,8,29/2,10,15,15,27,14,14,10,29/2,9,12,10,16,9,10,8,14,9,12,12,22,12,13,10,16,10,14,13,23,13,16,14,47/2,16,24,24,43,22,22,15,45/2,13,15,13,22,12,13,10,31/2,10,13,13,24,12,12,9,13,8,10,9,14,8,10,8,25/2,8,11,11,21,11,11,8,21/2,6,8,7,12,7,7,6,17/2,6,8,8,16,9,9,7,11,7,8,7,12,7,9,8,25/2,9,13,13,24,13,13,9,14,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,21/2,8,11,11,19,10,10,7,19/2,6,8,7,11,6,7,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,11,8,12,12,16,9,9,6,19/2,6,7,6,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,5,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,3,2,2,2,5/2,2,2,2,5,3,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-3,-1,-1,0,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,3,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,3,6,4,4,3,5,3,4,4,8,5,6,6,19/2,7,10,9,17 -13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,11/2,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,3,3,4,3,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,9/2,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,15/2,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,4,6,4,6,5,7,4,4,7/2,5,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,11/2,8,5,6,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,7,4,4,7/2,6,4,5,5,9,5,6,9/2,7,4,5,5,8,5,6,5,8,11/2,8,8,13,7,8,11/2,8,5,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,12,6,6,4,6,4,5,9/2,7,4,4,7/2,5,4,5,9/2,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,5,4,6,7/2,4,3,5,3,4,9/2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,11/2,10 -16,9,9,7,9,6,13/2,6,8,5,11/2,5,7,5,7,7,12,6,13/2,4,6,4,4,4,7,4,5,4,6,4,11/2,5,11,6,6,4,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,9/2,4,9,5,11/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,1,1/2,0,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,12,6,13/2,4,7,4,5,4,7,4,9/2,4,5,4,9/2,4,10,6,11/2,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,11/2,4,6,4,7/2,3,6,4,4,3,4,3,4,4,4,2,5/2,2,2,2,5/2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,6,4,9/2,4,6,4,11/2,5,4,2,5/2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,7,4,7/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,8,5,5,4,6,4,5,5,8,5,11/2,5,7,5,15/2,8,17,9,19/2,7,10,6,7,6,8,5,11/2,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,13/2,6,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,10,7,9,9,18,10,19/2,7,10,6,8,7,11,6,6,5,7,5,13/2,6,11,6,7,5,8,5,13/2,6,10,6,15/2,6,10,7,21/2,10,20,10,21/2,7,11,7,17/2,7,12,7,8,6,10,6,17/2,8,16,9,10,8,12,8,21/2,10,16,9,11,9,17,12,33/2,16,30,16,31/2,11,15,9,10,9,15,8,17/2,6,11,7,9,9,16,9,9,7,9,6,15/2,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,6,8,5,5,4,7,5,6,6,11,6,13/2,5,8,5,6,6,10,6,7,6,9,6,19/2,9,15,8,17/2,6,9,5,6,5,10,5,5,4,6,4,11/2,5,10,5,5,4,5,4,5,5,7,4,11/2,5,8,6,15/2,8,15,8,7,5,8,5,6,5,9,5,5,4,6,4,11/2,5,9,5,5,4,6,4,11/2,5,8,5,11/2,5,8,6,8,8,11,6,13/2,5,7,5,6,5,7,4,5,4,6,4,11/2,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,0,0,1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,11/2,6,4,5,3,4,7/2,6,7/2,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,6,13/2,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,9/2,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,11/2,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,11/2,7,6,10,5,5,4,6,4,6,5,10,11/2,6,9/2,7,9/2,6,5,9,5,6,5,9,6,9,9,17,9,9,6,10,6,7,6,10,6,7,5,8,11/2,8,7,14,8,8,13/2,10,7,9,8,14,8,10,8,15,10,14,14,25,13,13,9,13,8,9,8,13,7,7,11/2,9,6,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,9/2,8,4,4,7/2,5,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,7,7,10,6,6,9/2,6,4,5,4,6,4,4,4,6,4,5,5,8,9/2,5,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,11/2,10 -24,13,13,9,12,7,8,8,27/2,8,8,7,11,7,10,9,18,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,14,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,5,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,9,5,5,3,4,3,4,4,11/2,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,15/2,5,6,5,8,6,8,8,4,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,6,4,4,3,3,2,2,2,9/2,3,4,3,4,3,5,5,9,5,5,4,7,4,5,4,15/2,4,5,4,7,5,6,5,12,7,7,5,8,6,8,7,25/2,7,8,7,11,8,11,11,27,14,14,10,14,8,10,8,27/2,8,8,6,9,6,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,9,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,29,15,16,11,16,9,11,10,33/2,9,9,7,10,7,9,9,17,9,10,8,12,7,9,8,31/2,9,11,9,16,11,16,16,30,16,16,11,16,10,12,10,37/2,10,11,8,13,9,12,12,25,13,14,11,18,11,14,14,51/2,14,17,14,24,16,24,24,44,22,22,15,22,13,15,13,22,12,13,10,15,9,12,12,25,13,14,10,14,8,10,9,15,9,10,8,14,9,13,13,20,11,11,8,12,7,8,8,27/2,8,8,6,10,6,8,8,18,10,10,7,11,7,9,8,29/2,8,10,8,14,10,14,14,22,11,11,8,11,7,8,8,14,8,8,6,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,8,13,7,8,6,8,5,7,6,23/2,7,8,7,11,8,12,12,18,10,10,7,10,6,8,7,23/2,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,15/2,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,15/2,4,4,3,3,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,7,4,5,4,5,3,3,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,7,4,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,9/2,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,13/2,4,5,5,9,6,9,9,18 -13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,7,4,5,4,6,9/2,6,6,15,8,8,6,8,5,6,5,8,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,15/2,8,6,10,6,8,8,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,12,7,7,11/2,8,5,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,5/2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,10 -13,7,15/2,5,7,4,5,4,8,5,5,4,6,4,11/2,6,9,5,6,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,9,5,4,3,5,3,3,3,4,2,5/2,2,4,3,7/2,3,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,11,6,6,4,6,4,9/2,4,7,4,4,3,4,3,7/2,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,3,5,3,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,3,2,4,3,7/2,4,6,4,4,3,3,2,3,3,4,3,7/2,3,5,4,9/2,4,6,4,7/2,2,3,2,5/2,2,4,3,3,2,2,2,7/2,3,5,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3,3,2,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,3,2,7/2,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,8,17/2,6,8,5,11/2,5,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,5,3,7/2,3,5,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,6,6,9,5,11/2,4,6,4,5,5,8,5,13/2,6,9,6,17/2,8,17,9,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,10,6,6,5,7,4,11/2,6,10,6,7,6,10,7,19/2,9,17,9,19/2,7,9,6,15/2,6,11,6,7,5,8,6,15/2,7,15,8,17/2,6,10,6,17/2,8,15,9,10,9,14,10,14,14,25,13,13,9,13,8,9,7,13,7,8,6,9,6,8,7,14,8,8,6,8,5,13/2,6,9,5,6,5,8,6,8,8,12,6,13/2,5,7,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,11/2,5,9,6,13/2,5,9,6,17/2,8,13,7,7,5,7,4,11/2,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,5,4,6,5,7,7,13,7,15/2,6,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,15/2,8,11,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,5,5,8,5,5,3,5,3,4,4,5,3,4,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,5,3,7/2,3,4,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,5,3,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,1,1,1,2,2,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,0,0,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,6,3,3,2,2,2,5/2,2,3,2,2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,4,3,3,3,5,3,4,4,6,4,5,5,10 -10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,9/2,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,3,5/2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,8,5,5,7/2,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,7/2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,3,5,4,5,5,13,7,7,5,6,4,4,4,6,7/2,4,3,4,3,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,7/2,4,3,5,7/2,5,5,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,9/2,8,5,6,5,8,6,8,7,13,7,8,11/2,7,5,6,5,9,5,6,4,6,9/2,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,9/2,5,4,7,5,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10,11/2,6,4,6,7/2,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,4,2,2,1,2,2,2,1,2,2,2,2,2,3/2,2,1,1,1,0,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,9/2,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,5/2,2,3,3,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,12,6,6,5,7,4,5,4,9,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,11/2,4,6,6,12,6,6,4,11/2,4,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,7/2,3,4,3,3,2,3,2,7/2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,4,3,3,2,2,1,1,1,4,3,3,2,7/2,3,4,3,3,2,2,2,4,3,4,3,5,3,3,2,7/2,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,8,4,4,3,9/2,4,5,5,9,5,5,4,13/2,4,5,5,8,5,6,5,15/2,6,8,8,21,11,10,7,21/2,6,7,6,8,5,6,4,13/2,4,6,6,8,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,7,6,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,22,12,12,8,25/2,7,8,7,12,7,7,6,9,6,7,7,12,7,7,6,9,6,8,7,14,8,9,8,13,9,12,12,21,11,11,8,12,7,9,7,14,8,8,6,10,7,9,9,18,10,10,8,13,8,11,10,18,11,13,11,18,12,18,18,30,16,16,11,15,9,10,9,17,9,10,7,11,7,10,9,16,9,9,7,11,7,9,8,13,7,8,7,11,7,10,10,15,8,8,6,17/2,5,6,5,10,6,6,5,7,5,6,6,14,8,8,6,17/2,5,6,6,11,6,7,6,21/2,7,10,10,15,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,6,5,8,6,9,9,16,8,8,6,17/2,5,6,6,8,5,6,5,15/2,6,8,7,11,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,7,9,5,6,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,2,2,2,5/2,2,2,2,8,4,4,3,9/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,5,3,3,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,0,1,1,1,1/2,1,1,1,2,2,2,1,1/2,1,2,2,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,5/2,2,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,2,3,2,3,3,7,4,4,3,7/2,3,4,3,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,7,4,3,2,3,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,11 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,5/2,3,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,8,4,4,7/2,5,3,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,3,2,3,2,3,2,4,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,2,2,5/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,3,2,4,3,4,3,6,4,4,3,4,3,4,7/2,6,4,4,7/2,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,5,9/2,7,5,7,7,14,8,8,11/2,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,19,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,11/2,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,7/2,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,3,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7 -12,7,7,5,6,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,5,11/2,4,5,3,7/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,5,3,3,3,6,4,7/2,3,4,3,4,4,6,3,3,3,5,3,4,4,6,3,3,3,4,3,7/2,4,8,4,9/2,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,11,6,13/2,5,7,4,4,4,8,4,4,3,4,3,7/2,4,6,4,7/2,3,3,2,3,3,5,3,7/2,3,6,4,11/2,6,11,6,5,4,5,3,4,4,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,7/2,3,5,3,7/2,2,3,3,4,4,7,4,4,3,5,3,7/2,4,7,4,5,4,6,4,11/2,5,7,4,4,3,4,2,5/2,2,3,2,3,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,5,3,4,4,6,4,13/2,7,5,3,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,7,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,3,3,4,4,8,4,9/2,3,4,3,4,4,7,4,4,3,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,6,5,7,5,15/2,8,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,13,7,15/2,6,8,5,6,5,8,5,11/2,5,7,5,13/2,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,13/2,6,9,6,15/2,7,11,6,13/2,5,8,5,13/2,6,12,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,17/2,7,11,7,9,8,14,8,21/2,9,15,10,31/2,16,26,14,27/2,9,13,8,10,8,14,8,9,7,10,6,17/2,8,14,8,8,6,9,6,7,6,11,6,15/2,6,9,6,17/2,8,13,7,15/2,6,8,5,11/2,5,9,5,6,5,7,5,6,6,11,6,13/2,5,6,4,6,6,10,6,7,6,9,6,17/2,8,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,6,4,7,4,11/2,5,8,5,5,5,7,5,7,7,14,8,15/2,5,7,5,6,5,8,4,9/2,4,6,4,11/2,5,9,5,6,4,6,4,9/2,4,8,5,6,5,8,6,17/2,9,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,11/2,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,5,3,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,3/2,2,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,11/2,6,10 -12,6,6,9/2,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,10,6,6,9/2,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,10,11/2,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,13/2,6,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,10,6,8,15/2,13,8,10,8,14,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,7,13,7,7,11/2,8,5,7,6,11,6,7,6,9,6,8,8,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,9/2,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,8,6,9,9,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,3,5/2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,4,5/2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9 -22,12,12,8,11,7,9,8,14,8,8,6,9,6,8,8,15,8,9,6,9,6,7,6,9,5,6,5,7,5,6,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,19/2,6,6,4,6,4,5,5,8,5,5,5,8,5,7,6,14,7,7,5,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,19,10,9,6,9,6,7,6,10,6,6,4,6,4,6,6,19/2,6,6,5,7,5,7,7,12,7,9,7,12,8,11,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,7,6,11,8,12,12,11,6,7,5,8,5,5,5,8,5,5,4,6,4,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,11/2,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,14,10,14,14,31,16,16,11,17,10,11,9,16,8,8,6,9,6,8,7,25/2,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,41/2,11,11,8,12,8,10,9,16,10,12,10,17,12,17,17,33,17,17,12,18,11,13,11,20,11,12,9,15,9,12,12,22,12,13,9,14,9,12,11,21,12,14,12,20,13,18,18,34,18,18,13,19,11,14,12,20,11,12,9,15,10,14,14,26,14,15,12,20,13,17,16,30,17,19,16,28,19,29,29,49,25,26,18,26,15,17,14,24,13,14,11,18,11,14,13,25,13,13,9,14,9,11,11,20,11,12,10,17,11,16,16,24,12,12,8,11,7,8,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,10,9,16,9,10,8,14,10,15,15,25,13,14,10,14,8,10,9,15,8,9,7,10,7,9,9,33/2,9,10,8,12,7,9,9,16,9,10,8,13,9,13,13,25,13,14,10,14,8,10,9,16,9,9,7,12,8,10,9,16,9,10,7,11,8,11,10,19,11,12,10,17,12,17,17,25,13,13,9,14,8,9,8,14,8,8,7,11,8,11,11,41/2,10,10,7,11,7,9,8,15,8,9,7,11,7,10,10,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,15/2,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,9/2,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,2,2,2,2,1,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,2,2,3,3,4,2,2,2,2,2,3,3,9,5,5,4,6,4,5,4,6,4,4,3,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17 -11,6,6,9/2,6,4,5,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,10,5,5,4,5,7/2,4,7/2,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,13/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,16,17/2,8,6,9,11/2,6,5,9,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,13/2,10,7,9,9,16,9,10,9,15,10,15,15,26,27/2,14,10,14,8,9,8,13,7,8,6,10,6,8,7,14,15/2,8,11/2,8,5,6,6,11,6,7,6,9,6,9,9,13,7,6,9/2,6,4,5,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,7,6,9,13/2,9,9,14,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,5/2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,9 -11,6,6,5,6,4,5,4,7,4,9/2,4,6,4,5,5,8,5,11/2,4,6,4,5,4,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,5,3,4,4,8,4,9/2,4,5,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,1/2,1,10,5,5,4,6,4,9/2,4,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,9/2,4,6,4,6,6,10,6,11/2,4,5,3,3,3,4,2,5/2,2,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,8,4,9/2,4,5,3,7/2,4,6,4,4,3,4,3,7/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,4,5,5,7,4,5,4,5,3,7/2,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,13/2,7,7,4,9/2,4,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,5/2,2,2,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,7/2,4,5,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,4,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,9/2,4,7,4,5,4,5,4,5,5,8,5,11/2,5,8,6,15/2,8,17,9,17/2,6,9,6,13/2,6,9,5,11/2,4,5,4,9/2,4,7,4,7/2,3,4,3,3,3,6,4,9/2,4,5,4,5,6,13,7,15/2,6,8,5,6,5,7,4,5,4,8,5,13/2,6,12,6,13/2,5,7,5,6,5,9,6,13/2,6,9,6,9,9,17,9,19/2,6,9,6,15/2,6,11,6,13/2,5,8,5,13/2,6,12,7,15/2,6,8,5,7,6,11,7,8,7,10,7,9,9,19,10,10,7,11,7,8,7,12,7,15/2,6,8,6,8,8,15,8,9,7,10,7,9,9,16,9,21/2,9,16,11,31/2,16,27,14,14,10,14,8,9,8,14,8,17/2,6,10,6,8,7,15,8,17/2,6,8,5,7,7,11,6,15/2,6,10,7,9,9,13,7,13/2,5,6,4,5,4,6,4,9/2,4,5,4,11/2,6,10,6,6,4,6,4,11/2,5,9,5,11/2,5,8,6,17/2,8,14,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,9,5,6,4,7,4,11/2,5,8,5,11/2,4,8,5,7,7,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,11/2,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,19/2,10,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,6,4,5,5,9,5,11/2,4,6,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,7,4,7/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,2,1,-1,0,-1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,5/2,2,2,2,5/2,2,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,3,7/2,4,6,4,9/2,4,5,4,11/2,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,4,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,5/2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,6,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,7/2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,6,4,5,4,5,3,4,3,6,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,5,7,7,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,6,9/2,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,23/2,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,9/2,6,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,11/2,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,7/2,5,4,7,9/2,5,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,7/2,5,5,6,4,4,3,4,3,3,5/2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,5/2,3,3,4,3,4,3,4,3,4,4,7 -12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,11/2,4,4,4,7,4,4,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,11,6,6,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,13/2,5,7,7,10,6,6,4,5,3,4,4,4,3,3,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,7,5,7,6,7,4,5,4,11/2,4,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,7,8,9,5,5,4,9/2,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,2,2,2,2,4,3,3,3,8,4,4,3,9/2,3,4,3,4,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,7/2,2,3,3,3,2,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,13/2,4,6,5,9,5,6,6,19/2,6,9,9,18,9,9,7,10,6,6,5,10,6,6,4,13/2,4,6,5,8,4,4,3,9/2,3,4,4,7,4,5,4,13/2,5,7,7,15,8,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,6,6,9,6,7,6,9,6,9,10,19,10,10,7,10,6,8,7,13,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,21/2,8,11,11,20,10,10,7,11,7,8,7,13,7,8,6,21/2,7,9,8,18,10,10,8,23/2,8,10,9,16,10,12,10,17,12,18,18,30,16,16,10,29/2,8,10,8,15,9,10,8,23/2,8,10,9,17,9,9,7,11,7,9,8,12,7,8,7,23/2,8,10,10,14,7,7,5,15/2,5,6,5,7,4,4,4,6,4,6,6,10,6,6,4,13/2,4,6,6,9,5,6,5,17/2,6,9,10,16,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,10,6,6,5,15/2,5,6,6,9,6,7,6,9,6,8,8,16,8,8,6,17/2,5,6,5,9,5,6,5,7,5,6,6,10,6,7,5,8,5,7,6,11,7,8,7,23/2,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,15/2,5,6,5,10,6,6,5,15/2,6,8,7,9,5,6,4,11/2,4,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,7/2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,6,4,4,3,3,2,3,3,2,1,1,1,3/2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,4,3,3,2,5/2,2,2,3,4,3,3,2,2,2,2,2,4,2,2,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,6,6,11 -7,4,5,7/2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,6,10,6,8,13/2,10,7,11,11,18,10,10,13/2,9,5,6,5,9,11/2,6,5,7,5,6,11/2,10,6,6,9/2,7,9/2,6,5,8,5,5,4,7,5,6,6,9,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,6,6,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,7/2,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,6,7/2,4,3,5,3,4,4,6,4,5,4,5,3,4,4,7,9/2,5,9/2,8,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,7/2,5,4,8,5,5,7/2,5,3,4,7/2,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,1,0,1,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,4,4,7 -9,5,6,4,5,3,4,4,6,4,9/2,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,2,1,1,1,8,4,4,3,5,3,4,3,5,3,7/2,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,5,7,4,9/2,3,4,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,3,5,3,5/2,2,4,3,3,3,5,3,4,4,5,4,6,6,7,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,2,2,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,3,5,3,7/2,3,3,2,2,2,3,2,5/2,2,3,2,3,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,5,4,5,4,5,4,8,5,11/2,4,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,7/2,3,5,3,4,4,6,4,6,6,11,6,13/2,5,8,5,11/2,5,7,4,5,4,6,4,11/2,5,10,5,5,4,6,4,5,5,7,4,11/2,4,7,5,15/2,8,14,8,15/2,5,7,5,6,5,10,5,5,4,6,4,11/2,5,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,9,9,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,13,8,19/2,8,13,9,27/2,14,23,12,25/2,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,12,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,8,5,5,4,6,4,5,5,8,5,5,4,8,6,15/2,8,12,7,7,5,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,11/2,4,6,4,5,5,7,4,5,4,8,5,6,6,12,6,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,6,4,11/2,5,9,6,13/2,6,10,7,9,9,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,9/2,4,6,4,11/2,6,6,4,4,3,4,3,3,3,3,2,3,2,3,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,2,2,2,2,2,7,4,7/2,2,3,2,3,3,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,6,4,4,3,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,-2,0,-1/2,0,0,1,3/2,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,3/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,2,4,3,4,3,5,3,3,3,4,3,3,3,6,4,7/2,3,5,3,4,4,5,3,7/2,3,5,4,5,5,10 -8,5,5,4,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,5/2,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,7/2,6,7/2,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,7/2,5,7/2,4,4,7,9/2,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,7,4,5,4,5,7/2,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,9/2,5,9/2,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,8,6,8,11/2,7,7,12,7,8,7,12,17/2,12,13,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,12,7,7,5,8,5,6,5,9,11/2,6,5,8,5,7,7,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,5,7/2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9 -14,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,5,3,3,3,4,3,3,2,3,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,11/2,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,9/2,2,2,2,3,2,1,1,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,11,6,7,5,8,5,6,5,15/2,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,5,8,6,8,7,11,6,5,4,5,3,4,4,13/2,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,6,5,8,5,6,6,19/2,6,6,5,8,5,7,7,11,6,5,4,5,3,4,4,13/2,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,17/2,6,7,6,10,7,10,10,13,7,7,5,8,5,5,4,15/2,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,4,4,12,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,14,8,9,7,10,6,8,6,21/2,6,6,4,6,4,6,6,10,6,7,6,9,6,7,7,13,7,8,6,10,7,11,11,20,11,11,7,10,6,8,7,13,7,7,5,8,6,8,7,9,5,6,4,6,4,5,4,15/2,4,5,5,8,6,8,9,19,10,10,7,10,6,8,8,27/2,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,25/2,7,8,7,12,9,13,13,24,12,12,9,13,8,10,8,14,8,8,7,11,7,8,8,16,9,9,7,10,6,8,7,25/2,7,8,7,12,9,13,13,28,14,14,10,15,9,11,9,16,9,10,8,12,8,11,11,24,13,13,10,15,10,13,12,43/2,13,16,13,23,16,23,23,39,20,20,14,20,11,13,11,20,11,12,9,15,9,12,11,22,12,12,9,13,8,10,9,33/2,9,10,8,13,9,12,12,19,10,11,8,11,7,8,6,21/2,6,7,5,8,6,8,7,12,7,7,5,8,6,8,7,25/2,7,8,7,13,9,13,13,19,10,10,7,11,7,8,6,10,6,7,6,9,6,7,7,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,23/2,6,6,5,8,6,8,8,15,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,23,12,12,8,12,7,8,8,27/2,8,8,6,9,6,9,8,16,9,9,7,10,6,8,7,23/2,6,7,6,9,6,8,8,10,5,5,3,4,3,3,3,11/2,4,4,3,4,3,3,3,10,5,5,4,6,4,4,4,11/2,3,3,3,4,3,4,3,13,7,6,4,6,4,5,4,13/2,4,4,4,6,4,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,10,5,5,4,6,4,4,3,5,3,4,3,5,3,3,3,1,1,1,1,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,3,3,5,3,3,2,2,2,2,2,7/2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,8,5,6,5,17/2,5,6,5,9,6,9,9,17 -8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,7/2,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,7/2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,7/2,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,7/2,4,4,8,9/2,5,4,6,5,7,7,11,6,6,9/2,6,4,5,9/2,8,4,4,3,5,7/2,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,8,9/2,5,4,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,15/2,16,8,8,6,9,5,6,5,9,5,6,5,7,5,6,13/2,13,7,8,6,9,6,8,7,12,15/2,9,8,13,9,13,13,22,12,12,8,12,7,8,7,11,6,7,11/2,9,11/2,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,3,5,4,5,4,7,4,5,9/2,7,5,8,15/2,11,6,6,4,7,4,5,4,6,4,4,7/2,5,7/2,4,4,9,5,5,4,6,4,5,4,8,9/2,5,4,6,4,6,6,10,6,6,9/2,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,7/2,5,4,5,5,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10 -9,5,6,4,5,4,9/2,4,7,4,5,4,5,4,5,4,7,4,7/2,2,4,3,7/2,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,7/2,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,7/2,3,6,4,11/2,5,7,4,7/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,11/2,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,4,3,6,4,9/2,4,5,3,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,5,9,5,11/2,4,7,4,11/2,5,6,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,15/2,6,7,5,6,5,9,5,9/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,13,7,13/2,4,7,4,11/2,5,9,5,5,4,6,4,11/2,6,10,6,6,5,6,4,11/2,5,9,5,6,5,8,6,9,9,16,8,17/2,6,8,5,13/2,6,9,5,6,4,7,5,6,5,10,6,6,5,6,4,11/2,5,8,5,5,5,8,6,17/2,8,18,10,19/2,6,10,6,7,6,11,6,7,6,9,6,15/2,8,15,8,17/2,6,10,6,17/2,8,14,9,11,9,15,10,15,15,26,14,14,10,14,8,19/2,8,13,7,8,6,10,6,8,8,14,8,15/2,6,8,5,7,6,10,6,13/2,6,9,6,8,8,13,7,7,5,8,5,11/2,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,11/2,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,8,5,5,4,6,4,11/2,5,10,6,6,5,7,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,7,4,5,5,10,6,7,6,10,7,10,10,15,8,17/2,6,8,5,13/2,6,9,5,5,4,6,4,11/2,6,11,6,11/2,4,6,4,5,5,8,4,9/2,4,6,4,6,6,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,8,5,5,4,4,3,7/2,3,4,3,3,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,7,4,4,3,4,3,3,3,3,2,3,2,4,3,3,3,1,1,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,1,0,0,0,0,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,-3,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,4,2,5/2,2,3,2,2,2,4,3,7/2,4,6,3,3,3,5,3,4,4,5,3,4,3,4,3,3,3,8,4,4,3,5,3,4,4,6,4,9/2,4,6,4,6,6,11 -8,9/2,5,4,4,3,4,3,5,3,4,3,4,3,4,7/2,6,3,3,2,3,2,3,5/2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,5/2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,7/2,5,4,5,6,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,6,4,5,9/2,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,6,5,7,5,8,8,13,7,7,5,7,4,5,9/2,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,11/2,8,5,6,5,9,5,6,5,8,5,6,13/2,13,7,7,5,8,5,7,7,12,7,9,15/2,12,8,12,12,22,11,11,8,11,13/2,8,13/2,11,6,7,5,8,5,7,6,11,6,6,9/2,6,4,5,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,7/2,5,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,7/2,5,5,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,1,1,1,1/2,0,0,0,0,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9 -13,7,8,6,15/2,4,5,5,8,5,5,4,6,4,6,6,9,5,4,3,9/2,3,3,3,7,4,4,3,9/2,4,5,5,7,4,4,3,9/2,3,4,3,3,2,2,2,9/2,4,5,5,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,9/2,2,2,2,4,3,3,2,5/2,2,2,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,9/2,3,4,3,6,4,4,4,11/2,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,7,4,4,4,11/2,4,4,4,6,4,5,4,7,5,6,6,11,6,5,4,5,3,4,3,7,4,4,4,11/2,4,6,5,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,13,7,7,5,7,5,6,5,8,5,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,8,5,6,4,13/2,4,6,5,10,6,6,5,15/2,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,5,7,7,10,6,6,4,11/2,4,4,4,7,4,5,4,6,4,6,6,9,5,6,4,11/2,4,4,4,7,4,4,4,6,5,7,7,11,6,7,5,8,5,6,6,9,5,6,4,13/2,4,6,6,12,7,7,5,8,5,7,7,11,7,8,6,21/2,8,11,11,18,10,10,7,11,7,9,8,11,6,6,5,15/2,5,6,6,9,5,6,4,11/2,4,6,5,9,5,6,5,17/2,6,8,9,18,9,9,6,9,6,7,6,12,7,7,6,17/2,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,25/2,9,14,14,21,11,11,8,25/2,7,8,7,14,8,8,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,12,8,12,12,25,13,13,9,25/2,8,9,8,16,9,10,8,13,8,11,11,22,12,13,9,14,9,11,11,20,12,14,12,43/2,15,22,22,38,20,20,13,37/2,11,13,11,18,10,11,8,27/2,8,11,10,18,10,10,7,21/2,6,8,7,15,9,10,8,25/2,8,12,11,19,10,10,8,23/2,7,8,7,10,6,7,5,8,5,7,7,12,7,8,6,17/2,6,7,7,12,7,8,7,11,8,12,12,18,10,10,7,19/2,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,17/2,6,7,6,12,7,7,6,9,6,9,9,16,9,9,7,10,6,7,7,12,7,8,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,21,11,11,8,12,7,9,8,12,7,7,6,9,6,7,7,14,8,8,6,15/2,5,6,6,10,6,6,5,15/2,5,7,7,12,6,6,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,9,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,3,10,6,6,4,13/2,4,4,3,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,10,6,6,4,11/2,4,4,4,4,3,3,2,7/2,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,4,3,3,2,5/2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,7,4,3,2,3,2,2,2,6,4,4,3,5,4,5,5,8,5,5,4,11/2,4,4,3,5,3,4,3,9/2,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,11/2,4,4,4,10,5,5,4,11/2,4,4,4,9,5,6,5,15/2,6,8,8,15 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,5,6,5,8,4,4,7/2,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,6,5,6,4,5,9/2,8,5,5,4,6,4,6,6,9,5,6,4,7,9/2,6,5,9,11/2,6,5,8,6,9,9,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,11/2,6,6,11,6,7,6,9,6,8,8,15,8,9,13/2,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,12,7,9,7,12,7,7,6,9,6,7,7,12,7,7,5,7,9/2,6,5,10,6,7,5,8,6,8,8,13,7,7,11/2,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,9/2,8,9/2,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,9/2,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,7/2,4,4,7,4,4,3,5,7/2,5,5,8,4,4,3,4,5/2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,5/2,4,3,4,7/2,6,3,3,3,4,3,3,5/2,4,3,3,5/2,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,10 -13,7,7,5,7,4,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,4,3,7/2,3,6,4,4,3,5,3,4,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,8,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,5,9,5,9/2,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,3,3,3,5,4,5,5,7,4,5,4,6,4,11/2,5,8,5,6,5,8,6,9,9,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,5,5,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,6,6,10,6,11/2,4,7,4,9/2,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,9/2,4,6,4,9/2,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,5,7,7,10,6,6,5,8,5,11/2,5,8,5,6,5,6,4,6,6,12,6,13/2,5,7,5,13/2,6,12,7,15/2,6,10,7,10,10,19,10,10,7,10,6,15/2,6,11,6,13/2,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,18,10,19/2,7,9,6,7,6,12,7,7,5,9,6,15/2,8,13,7,8,6,10,6,17/2,8,13,8,9,7,12,9,13,13,21,11,23/2,8,12,7,17/2,7,12,7,7,5,9,6,15/2,7,12,7,7,5,9,6,8,7,11,7,8,7,11,8,11,11,22,12,25/2,8,12,8,19/2,9,16,9,10,8,13,8,23/2,11,21,11,12,9,13,8,23/2,11,20,12,27/2,12,20,14,20,20,36,19,19,13,18,10,25/2,10,18,10,10,8,13,8,10,10,18,10,19/2,7,10,6,8,7,14,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,9,6,13/2,5,8,5,13/2,7,12,7,7,5,8,5,13/2,6,12,7,8,7,11,8,23/2,11,19,10,10,7,10,6,15/2,6,11,6,7,6,8,6,8,7,13,7,7,5,8,5,6,6,11,6,13/2,6,9,6,9,9,16,9,9,7,10,6,15/2,6,11,7,8,6,9,6,8,8,15,8,8,6,9,6,15/2,7,14,8,19/2,8,14,9,13,13,21,11,11,8,11,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,15/2,5,7,5,6,6,10,6,11/2,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,8,5,5,3,5,3,4,3,4,2,5/2,2,3,2,3,3,11,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,7/2,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,9,5,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,7,4,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,8,4,4,3,5,3,7/2,3,6,4,4,3,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,8,5,5,4,8,5,7,7,14 -12,7,7,5,6,4,4,4,6,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,9/2,4,7/2,5,3,4,4,6,4,4,3,5,7/2,4,5,9,5,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,9/2,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,7,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,13/2,11,6,6,5,7,5,6,6,10,11/2,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,10,7,9,6,7,6,11,13/2,7,5,9,6,7,7,13,7,8,6,10,6,8,8,13,8,9,15/2,13,9,13,13,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,9,6,7,7,11,7,8,7,11,8,11,11,22,12,12,8,12,8,10,9,16,9,10,8,13,17/2,12,11,21,11,12,9,13,17/2,12,11,20,12,14,12,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,13/2,8,7,13,8,9,7,12,8,11,11,19,10,10,7,11,6,7,6,9,11/2,6,5,7,5,6,13/2,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,6,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,6,11/2,9,6,9,9,16,9,9,7,10,6,8,13/2,11,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,13,9,13,13,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,5,7,5,6,6,10,6,6,4,6,4,6,6,11,6,6,4,6,7/2,4,4,6,4,4,3,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,3,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,7/2,3,2,3,2,3,3,4,3,3,3,5,7/2,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,6,4,4,4,8,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,9/2,8,5,5,4,7,5,7,7,13 -23,12,12,8,12,7,8,7,11,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,23/2,6,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,6,5,7,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,14,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,7,6,10,7,11,11,43/2,11,10,7,10,6,7,6,10,6,7,5,8,6,9,9,16,9,9,7,12,8,11,10,19,11,12,10,18,12,18,18,23,12,13,9,13,8,9,7,12,7,8,6,10,6,8,8,15,8,9,7,11,7,8,7,13,7,8,7,12,8,11,10,19,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,9,8,13,8,9,7,12,9,13,13,20,11,11,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,11,7,10,10,41/2,11,11,7,10,6,8,7,13,7,8,7,12,8,10,10,18,10,10,7,11,7,10,10,18,11,13,11,18,12,18,19,36,19,19,13,19,11,12,10,18,10,11,9,15,10,14,13,24,13,13,10,15,9,12,11,20,11,13,11,18,12,18,17,65/2,17,17,12,17,10,13,12,21,12,14,11,18,12,16,15,29,15,16,12,19,12,16,15,28,16,18,15,25,17,25,25,40,20,20,14,21,13,16,14,24,13,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,23,15,22,22,85/2,22,22,16,24,14,17,15,26,14,16,13,22,14,20,19,36,19,21,16,25,16,22,21,40,23,27,23,40,27,40,40,70,36,36,25,37,21,25,21,37,20,21,15,24,15,19,18,34,18,18,13,20,12,14,12,22,12,14,12,21,14,20,20,75/2,19,19,13,20,12,14,12,20,11,13,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,13,21,14,21,21,36,19,19,13,19,11,14,12,21,11,12,9,14,9,11,11,20,11,11,8,13,8,11,11,20,11,12,10,17,11,16,16,63/2,16,17,12,17,10,13,12,21,11,12,10,16,10,13,13,24,13,14,10,16,10,14,14,27,15,18,15,25,17,25,25,41,21,21,14,21,12,14,12,21,11,12,9,14,9,12,11,19,10,10,7,11,7,8,7,11,7,8,7,11,8,11,11,21,11,11,7,9,5,6,5,8,5,6,5,7,5,6,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,20,10,10,7,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,16,8,8,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,13/2,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,7,4,5,4,5,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,2,3,2,3,2,3,3,4,5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,7,5,8,5,6,6,10,6,6,5,7,5,8,8,14,8,8,6,8,5,5,5,8,5,6,5,9,6,9,8,31/2,8,8,6,8,5,7,6,11,6,7,5,8,6,9,9,16,9,10,7,11,7,8,8,14,8,9,7,12,9,13,13,25 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,19,10,10,7,10,6,6,11/2,10,6,6,5,8,6,8,7,12,7,7,11/2,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,13/2,9,6,7,6,11,13/2,8,6,10,6,8,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,20,10,10,7,11,7,8,7,13,7,7,11/2,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,12,7,9,8,14,8,8,7,12,8,10,10,18,10,11,8,13,9,12,11,21,12,14,12,21,14,21,21,36,19,19,13,19,11,13,11,19,21/2,11,8,13,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,11,15/2,10,10,20,10,10,7,11,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,7,13,8,9,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,6,10,6,6,11/2,9,6,9,9,17,9,9,13/2,9,6,7,13/2,11,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,13/2,8,13/2,11,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,9,5,4,7/2,5,7/2,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,4,5/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,9/2,4,8,4,4,3,4,3,3,2,4,3,3,2,4,3,7/2,4,7,4,9/2,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,3,3,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,9/2,4,9,5,5,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,9/2,4,7,4,7/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,13/2,6,11,6,11/2,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,11/2,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,8,5,11/2,4,6,4,5,5,6,4,4,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,6,4,9/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,13/2,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,11/2,4,7,4,5,5,10,6,7,6,10,7,10,10,19,10,21/2,7,10,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,15/2,6,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,15/2,6,10,6,17/2,8,16,9,9,7,10,7,9,8,14,8,19/2,8,14,9,13,13,20,10,21/2,7,10,6,17/2,7,13,7,15/2,6,9,6,15/2,8,13,7,8,6,9,6,8,7,13,8,9,8,13,9,25/2,12,23,12,12,8,12,7,9,8,14,8,17/2,7,12,8,10,10,18,10,11,8,14,9,12,11,22,12,29/2,12,21,14,21,21,36,19,19,13,19,11,13,11,20,11,11,8,13,8,11,10,18,10,19/2,7,10,6,8,7,11,6,7,6,11,8,21/2,10,20,11,11,8,12,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,10,6,7,7,13,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,11,6,7,5,8,5,7,7,11,6,13/2,5,7,5,6,6,10,6,13/2,6,9,6,19/2,10,18,10,10,7,10,6,15/2,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,15,8,19/2,8,13,9,27/2,14,21,11,23/2,8,11,6,15/2,6,11,6,13/2,5,8,5,13/2,6,10,6,11/2,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,7/2,3,5,3,4,3,4,3,3,3,5,3,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,10,6,11/2,4,5,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,9,5,9/2,4,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,3/2,1,0,0,0,0,4,2,5/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,1,1,2,2,-5,-2,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,7/2,3,5,4,9/2,4,8,5,5,4,5,3,7/2,3,5,3,4,3,5,4,11/2,5,8,4,4,3,5,3,4,4,7,4,4,3,5,4,11/2,5,9,5,5,4,7,4,5,5,8,5,5,4,7,5,8,8,14 -9,5,5,4,5,3,3,3,4,3,3,2,3,3,4,7/2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,4,3,3,3,5,7/2,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,5/2,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,7/2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,11/2,8,5,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,8,5,6,4,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,13/2,9,9,14,15/2,8,5,7,9/2,6,5,9,5,6,4,6,4,6,6,10,11/2,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,16,8,8,6,8,5,6,11/2,10,6,6,5,9,6,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,9/2,8,6,8,15/2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,9/2,7,4,5,5,9,6,7,5,9,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,5/2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,7/2,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10 -13,7,7,5,15/2,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,11/2,4,6,5,10,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,3,8,4,4,3,5,4,5,4,7,4,4,3,9/2,3,4,4,5,3,3,2,7/2,3,4,4,5,3,3,3,9/2,4,5,5,10,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,4,5,3,4,3,9/2,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,5,4,7,5,6,6,11,6,6,4,11/2,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,15/2,5,6,6,12,7,8,7,23/2,8,12,11,13,7,7,5,7,4,5,5,8,5,6,4,13/2,4,6,6,9,5,6,4,13/2,4,5,5,6,4,4,3,5,4,5,6,11,6,7,5,15/2,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,13/2,4,4,3,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,13,7,7,5,13/2,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,15/2,5,6,6,10,6,7,6,21/2,7,10,11,22,12,12,8,23/2,7,8,6,11,6,7,6,19/2,6,8,8,13,7,8,6,17/2,6,7,6,11,7,8,6,10,7,10,10,17,9,9,7,11,6,7,6,12,7,7,6,19/2,7,10,10,16,9,10,7,11,7,9,9,14,8,10,8,27/2,10,14,14,20,10,10,7,21/2,6,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,8,13,9,12,12,24,13,13,9,25/2,8,9,8,15,9,10,8,13,8,11,10,19,11,12,9,14,9,13,12,23,13,15,13,22,15,22,22,38,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,19,10,11,8,23/2,7,8,8,12,7,8,6,21/2,7,10,10,22,12,12,8,25/2,7,8,7,13,7,8,6,19/2,6,9,9,15,8,8,6,10,6,8,7,14,8,10,8,13,9,12,12,20,11,11,8,25/2,7,8,7,13,7,8,6,17/2,6,7,7,13,7,7,6,17/2,5,6,6,11,6,7,6,21/2,8,11,11,19,10,10,7,21/2,6,8,7,13,7,8,6,9,6,9,8,15,9,10,8,23/2,8,10,9,15,9,10,8,29/2,10,14,14,23,12,12,8,12,7,8,7,11,6,6,5,17/2,6,7,7,11,6,6,4,13/2,4,5,4,7,4,5,4,13/2,4,6,6,12,6,6,5,7,4,4,3,6,3,3,2,7/2,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,10,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,1,1,0,0,0,1,1,1,3,2,1,1,1/2,0,0,0,4,3,3,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,1,1,1,2,2,2,1,1,1,2,2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,9/2,3,3,3,6,4,4,4,11/2,4,4,4,9,5,5,4,9/2,3,4,3,6,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,15/2,6,8,8,14 -8,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,3,3,3,4,5/2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,7/2,5,3,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,5/2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,9/2,5,4,5,7/2,4,4,7,4,5,4,6,9/2,6,6,10,6,6,9/2,7,4,4,4,7,4,5,4,6,4,6,6,9,5,6,9/2,7,9/2,6,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,8,8,11/2,8,5,6,5,9,5,6,5,8,5,7,6,11,13/2,7,11/2,8,6,8,7,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,13,7,7,11/2,8,5,7,13/2,11,6,7,5,7,9/2,5,5,8,5,5,4,6,9/2,6,6,13,7,7,5,8,5,5,9/2,8,9/2,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,5,9/2,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,6,9,11/2,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,9/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,2,3/2,1,1,1,1,1,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8 -9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,3,4,2,5/2,2,2,2,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,2,4,2,5/2,2,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,3,3,2,5/2,2,5,3,5/2,2,4,3,7/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,4,4,2,5/2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,3,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,5,3,3,2,4,3,3,3,4,3,7/2,4,6,4,5,5,9,5,5,3,5,3,4,4,5,3,7/2,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,8,8,11,6,6,4,6,4,9/2,4,7,4,9/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,4,3,7/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,7/2,3,6,4,5,4,7,5,7,7,8,5,5,4,6,4,7/2,3,5,3,3,2,3,3,4,4,5,3,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,4,3,7/2,3,6,4,4,3,5,4,5,5,7,4,4,3,6,4,5,5,8,5,11/2,5,8,6,17/2,8,16,9,9,6,8,5,13/2,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,11/2,4,8,6,15/2,8,13,7,7,5,8,5,11/2,5,9,5,6,5,7,5,7,7,11,6,7,5,8,5,13/2,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,11/2,6,8,5,11/2,4,7,5,13/2,6,12,7,7,5,7,5,13/2,6,10,6,7,6,10,7,10,9,18,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,14,8,9,7,10,7,9,9,17,10,11,9,16,11,16,16,29,15,29/2,10,15,9,21/2,9,16,9,9,7,10,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,15/2,8,17,9,9,7,10,6,13/2,6,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,15/2,6,10,7,10,9,16,9,9,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,6,6,5,6,4,5,4,8,5,11/2,5,8,6,8,8,13,7,7,5,7,4,11/2,5,10,6,13/2,5,8,5,7,7,11,6,13/2,5,9,6,15/2,7,12,7,15/2,6,11,8,11,11,16,9,9,6,8,5,6,5,9,5,11/2,4,7,4,11/2,6,8,5,5,3,5,3,7/2,4,5,3,7/2,3,5,4,9/2,5,10,6,11/2,4,5,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,8,5,5,4,5,3,7/2,4,5,3,7/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,2,2,2,1,1,1,1/2,0,2,1,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,2,2,2,2,2,5/2,2,6,3,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,5,3,7/2,4,6,4,9/2,4,6,4,6,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,5/2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,5,8,5,5,9/2,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,9/2,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,7/2,4,4,6,9/2,6,6,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,15/2,14,8,8,11/2,8,5,6,5,9,5,5,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,11/2,11,6,6,5,6,4,6,5,9,5,6,5,9,6,9,8,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,9/2,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,10,14,7,7,5,7,4,5,5,8,9/2,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,7/2,4,4,6,4,6,5,9 -15,8,8,6,8,5,6,6,19/2,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,6,6,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,6,5,11,6,5,4,5,3,4,4,11/2,4,4,3,3,3,4,4,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,1,1,2,2,3,2,3,2,7/2,2,3,3,5,4,5,5,9,5,5,4,5,3,4,4,15/2,4,4,3,4,3,3,3,7,4,5,4,6,4,4,4,15/2,4,5,4,5,4,5,5,11,6,6,4,5,3,4,4,11/2,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,9/2,3,3,3,4,3,4,4,12,6,6,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,8,5,6,6,15,8,8,6,10,6,8,8,27/2,8,9,7,12,9,13,13,19,10,10,7,11,7,8,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,15/2,4,5,5,8,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,6,7,6,11,8,11,10,13,7,8,6,8,5,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,17/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,15/2,5,6,5,7,5,7,7,10,6,6,4,6,4,6,6,23/2,7,8,8,14,10,14,13,25,13,13,9,13,8,10,9,31/2,9,10,8,12,7,9,9,14,8,8,6,9,6,8,7,12,7,9,7,12,8,11,11,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,11,18,10,10,7,11,7,10,10,35/2,10,11,9,15,10,15,15,22,12,12,9,13,8,10,8,27/2,8,8,6,10,7,9,9,19,10,11,8,13,8,10,9,31/2,9,11,9,16,11,15,14,28,15,15,11,16,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,15,10,13,13,25,14,16,14,24,16,24,25,46,24,24,17,25,14,17,14,25,13,14,11,17,11,14,13,24,13,13,9,14,9,11,10,35/2,10,11,9,15,10,13,12,26,14,14,10,15,9,10,8,14,8,9,7,12,8,11,11,22,12,13,9,14,8,10,9,31/2,9,11,9,16,11,15,14,27,14,15,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,6,8,5,6,6,11,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,12,8,11,10,18,10,11,8,12,8,10,10,37/2,10,12,10,18,12,18,17,24,12,12,8,12,7,9,8,13,8,9,7,11,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,4,13,7,8,6,8,5,6,5,17/2,5,5,3,4,3,3,3,6,4,4,3,4,3,3,2,7/2,2,3,2,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,4,2,2,1,1,1,1,1,3/2,1,0,0,0,0,0,0,9,5,6,4,6,4,4,4,13/2,4,4,3,4,3,4,3,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,2,2,3/2,2,2,2,4,3,4,4,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,11/2,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,13/2,4,4,3,5,4,6,6,9,5,5,4,7,4,5,5,17/2,5,6,5,8,5,6,6,12,6,6,5,7,5,6,5,17/2,5,6,6,10,7,10,9,17 -9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,15/2,11,6,6,9/2,7,4,5,4,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,15/2,8,5,7,5,6,5,8,5,6,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,10,6,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,9,6,8,15/2,14,8,9,8,13,9,13,27/2,25,13,13,9,14,8,10,8,14,15/2,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,11/2,7,7,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,11/2,10,11/2,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9 -10,6,11/2,4,5,3,4,4,7,4,4,4,6,4,9/2,4,8,4,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,2,2,0,1,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,4,3,3,3,5,3,7/2,3,6,4,11/2,6,8,5,11/2,4,6,4,9/2,4,7,4,5,4,5,4,9/2,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,7,4,5,4,7,4,5,5,10,6,6,4,5,4,9/2,4,6,4,4,4,5,4,5,5,8,5,11/2,4,6,4,9/2,4,6,4,9/2,3,4,3,9/2,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,13/2,6,9,5,9/2,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,6,4,4,3,3,2,3,3,6,4,4,4,5,4,5,5,9,5,9/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,7,4,5,4,5,4,9/2,4,8,5,6,5,10,7,19/2,9,15,8,17/2,6,8,5,6,5,9,5,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,11/2,5,8,5,7,7,11,6,13/2,5,8,5,11/2,5,8,5,11/2,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,11/2,5,9,5,11/2,4,7,5,6,6,12,7,7,5,8,5,13/2,6,10,6,7,6,10,7,19/2,9,16,9,9,7,9,6,7,6,10,6,7,6,10,6,17/2,8,13,7,15/2,6,10,6,17/2,8,15,9,10,9,15,10,29/2,15,28,14,29/2,10,16,9,21/2,9,15,8,9,7,11,7,9,8,16,9,9,7,9,6,15/2,6,12,7,15/2,6,9,6,8,8,16,9,19/2,6,9,6,13/2,6,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,13/2,6,10,7,19/2,10,17,9,9,6,9,6,13/2,6,11,6,7,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,11/2,5,7,5,15/2,8,14,8,15/2,6,8,5,6,5,9,5,11/2,4,7,5,13/2,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,23/2,11,15,8,8,6,7,5,6,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,4,9/2,4,6,4,4,4,6,4,9/2,4,8,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,7,4,9/2,3,5,3,7/2,4,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,7/2,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,8,4,4,3,4,3,7/2,3,6,4,4,4,6,4,11/2,6,10 -9,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,9/2,7,4,4,3,5,3,4,3,6,7/2,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,8,9/2,5,4,6,9/2,6,7,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,4,8,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,7/2,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,10,6,6,9/2,6,4,4,4,7,4,4,7/2,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,11/2,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,23,12,12,8,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,11/2,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,11/2,8,5,6,5,7,4,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,9/2,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,9/2,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,11/2,9,6,9,9,12,6,6,9/2,6,4,4,4,7,4,4,4,6,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8 -15,8,8,6,8,5,7,6,9,5,5,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,11/2,4,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,0,1,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,9/2,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,15/2,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,17/2,6,7,6,13,7,8,6,21/2,8,11,11,21,11,11,8,12,7,8,6,12,7,8,6,9,6,8,7,13,7,8,6,15/2,4,5,5,8,5,6,4,13/2,4,6,6,13,7,8,6,8,5,5,5,8,5,6,4,13/2,4,6,5,8,5,6,4,13/2,4,5,5,7,4,5,5,17/2,6,8,8,12,6,6,4,11/2,4,4,3,6,4,4,3,4,3,3,3,8,5,5,4,5,4,5,4,8,5,6,5,15/2,5,6,6,11,6,6,4,6,4,5,5,7,4,4,3,5,4,6,6,10,6,6,5,15/2,5,6,6,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,10,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,9,9,14,8,8,6,9,6,7,6,9,5,6,5,17/2,6,8,8,14,8,8,6,19/2,6,8,7,12,7,9,8,25/2,8,12,12,17,9,9,7,10,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,19/2,6,8,7,13,8,9,7,12,8,11,11,21,11,11,8,23/2,7,9,8,13,7,8,7,23/2,8,10,10,18,10,10,8,12,8,10,10,19,11,13,11,39/2,14,20,20,39,20,20,14,21,12,14,11,21,11,12,9,29/2,9,12,11,21,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,23,12,13,9,13,7,8,7,12,7,8,6,21/2,7,10,10,18,10,10,8,23/2,7,8,7,12,7,8,8,27/2,9,13,13,23,12,12,8,23/2,7,8,7,14,8,8,6,9,6,7,7,14,8,8,6,8,5,7,6,10,6,8,6,21/2,7,10,10,20,11,11,8,11,7,9,8,12,7,7,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,15,10,14,14,20,10,10,7,19/2,6,7,6,11,6,6,5,17/2,6,7,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,5/2,2,3,3,9,5,5,4,11/2,4,4,4,7,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,6,4,4,3,9/2,3,3,3,3,2,3,3,4,3,3,3,6,4,4,3,9/2,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,0,0,0,1,3/2,2,2,1,1,1,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,9/2,4,5,5,8,4,4,3,7/2,3,4,4,4,3,3,3,11/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,12 -10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,3,4,5/2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,4,6,7/2,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,9/2,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,5,9,6,8,8,14,15/2,8,5,7,4,5,9/2,8,5,5,4,7,9/2,6,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,15/2,8,11/2,8,5,6,11/2,9,5,6,5,8,5,7,7,12,7,7,11/2,8,11/2,7,7,13,8,9,8,13,9,13,13,25,13,13,9,13,8,9,15/2,14,15/2,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,11/2,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,9,5,6,6,10,7,9,9,14,7,7,5,7,4,5,4,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,5/2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,7/2,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8 -14,8,15/2,6,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,5/2,2,3,2,5/2,2,3,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,3,3,4,3,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,8,4,9/2,4,5,3,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,3,4,3,4,4,6,4,4,4,7,5,13/2,6,12,6,13/2,5,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,8,5,7,6,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,15/2,6,9,6,15/2,7,12,7,7,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,12,7,7,5,7,4,11/2,4,7,4,9/2,4,6,4,9/2,4,8,5,5,4,6,4,9/2,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,5,3,4,4,7,4,11/2,4,6,4,13/2,6,10,6,6,4,6,4,5,4,8,4,9/2,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,7,8,7,12,8,12,12,20,10,21/2,7,10,6,7,6,11,6,13/2,5,9,6,15/2,7,12,7,7,5,8,5,6,5,9,5,11/2,5,8,6,8,8,14,8,15/2,5,7,4,11/2,5,9,5,6,5,7,5,7,7,12,7,15/2,6,8,6,15/2,7,12,7,17/2,7,12,8,11,11,16,8,8,6,9,6,13/2,6,10,6,6,5,8,6,8,8,14,8,15/2,6,8,5,7,6,11,6,15/2,6,11,8,21/2,10,19,10,21/2,7,11,7,17/2,8,12,7,8,7,10,7,9,9,18,10,21/2,8,12,8,10,10,18,11,13,11,18,13,19,19,35,18,37/2,13,18,10,25/2,10,19,10,11,8,14,9,23/2,11,20,11,11,8,12,8,19/2,8,15,9,10,8,12,8,11,11,21,11,11,8,11,6,15/2,6,11,6,7,6,10,7,19/2,10,17,9,10,7,10,6,15/2,7,12,7,8,7,12,9,13,13,20,10,21/2,8,10,6,15/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,6,8,5,6,5,9,6,7,6,9,6,9,9,19,10,21/2,7,10,6,8,7,12,6,13/2,5,8,5,7,7,14,8,15/2,6,9,6,7,7,12,7,17/2,8,13,9,13,13,20,10,21/2,7,10,6,7,6,11,6,6,5,8,5,13/2,6,10,6,11/2,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,4,3,7/2,4,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,9/2,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3/2,2,3,2,3,3,2,2,3/2,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,9/2,3,4,3,4,3,5,3,7/2,3,5,3,4,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,3,4,4,9,5,11/2,4,7,4,11/2,5,8,4,9/2,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,5,3,4,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,9,5,6,9/2,6,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,5/2,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,7/2,5,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,4,6,9/2,6,6,11,6,6,5,7,5,6,5,8,5,6,9/2,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,12,7,7,5,7,9/2,6,9/2,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,4,4,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,7,8,7,12,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,9/2,6,5,8,5,6,5,7,5,7,7,12,7,7,11/2,8,11/2,7,7,12,7,8,7,11,8,11,11,16,8,8,6,9,11/2,6,6,10,6,6,5,8,6,8,7,13,7,7,5,8,5,6,6,10,6,8,13/2,11,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,9,9,17,19/2,10,8,12,8,10,19/2,17,10,12,21/2,18,25/2,18,18,34,35/2,18,12,18,10,12,10,18,10,11,8,13,8,11,11,20,11,11,8,12,15/2,9,8,14,8,9,7,11,8,11,11,20,11,11,8,11,13/2,8,7,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,17/2,12,12,20,10,10,15/2,10,6,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,17/2,12,12,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,9/2,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,5/2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,4,4,6,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,8,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11 -26,14,14,10,15,9,11,9,16,9,9,7,10,6,8,8,31/2,8,8,6,8,5,6,6,10,6,7,5,8,6,9,9,11,6,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,11,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,4,6,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,4,3,4,4,7,5,7,7,8,5,5,3,4,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,8,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,15/2,4,5,4,5,4,5,5,8,5,5,4,7,5,8,8,15,8,8,6,9,5,6,5,8,5,6,5,7,4,5,5,17/2,5,6,5,8,6,8,7,13,8,9,7,12,8,12,12,21,11,12,9,13,8,10,8,14,8,9,8,14,9,13,13,24,13,14,10,15,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,11,13,11,18,10,11,9,14,9,12,12,43/2,11,11,8,12,7,9,8,15,8,9,7,12,8,12,12,22,12,12,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,6,9,6,8,8,16,9,11,9,16,11,15,15,20,11,11,8,12,7,8,7,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,18,10,10,7,11,7,8,7,13,8,9,7,11,7,10,10,35/2,10,10,8,12,8,11,11,20,12,14,12,21,14,21,21,37,19,19,13,20,12,14,12,20,11,13,10,16,10,14,13,49/2,13,14,10,15,9,11,10,18,10,12,10,16,11,15,15,25,13,14,10,16,10,12,10,18,10,11,9,15,10,13,12,45/2,12,13,9,14,9,11,11,20,12,14,12,21,14,21,21,31,16,16,11,16,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,16,10,12,11,19,11,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,13,11,18,12,18,17,33,18,20,15,24,15,20,19,36,20,23,19,34,23,34,34,66,34,34,23,35,20,24,20,35,19,21,16,25,16,22,20,38,19,19,13,20,12,14,13,23,13,14,12,20,14,20,20,38,20,20,14,21,12,15,13,23,13,14,11,18,12,16,16,63/2,16,16,12,18,11,14,13,25,14,17,14,25,16,23,23,38,20,20,14,20,11,13,11,20,11,12,9,15,10,14,13,47/2,13,14,10,15,9,12,11,21,12,13,11,18,12,17,17,38,19,19,13,20,11,13,11,20,11,13,10,16,10,14,14,26,14,14,10,15,10,13,12,22,13,15,13,22,15,22,23,37,19,19,14,21,12,15,12,21,11,12,9,14,9,11,10,37/2,10,11,8,12,7,9,8,15,9,10,8,12,8,11,10,16,9,9,6,9,5,6,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,16,9,9,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,6,4,4,3,5,4,5,5,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,6,6,10,5,5,4,6,4,6,6,23/2,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,29/2,8,9,7,10,6,8,7,12,7,8,7,12,8,12,11,21 -14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,5,5,6,7/2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,5/2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,9/2,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,13/2,12,13/2,6,5,7,9/2,5,9/2,8,5,5,4,5,7/2,4,4,8,4,4,7/2,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,6,11/2,9,6,8,8,14,15/2,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,11/2,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,13/2,8,7,11,6,7,6,10,7,10,10,17,10,11,8,13,8,11,10,19,11,12,10,18,12,18,18,34,18,18,25/2,18,11,13,11,18,10,11,17/2,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,8,7,14,8,9,8,13,9,13,13,20,11,11,8,11,6,7,6,11,6,7,11/2,8,6,8,7,12,7,8,6,8,5,7,6,11,6,7,6,10,7,9,9,20,21/2,10,7,11,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,11/2,7,7,12,7,8,7,12,8,12,12,20,10,10,8,11,7,8,7,12,13/2,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,5/2,3,2,3,3,4,3,3,3,4,3,3,3,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,6,11 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,5,5,3,4,3,7/2,3,7,4,5,4,5,4,5,5,6,4,7/2,2,4,3,3,3,4,3,7/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,4,4,6,4,11/2,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,4,3,6,4,7/2,2,3,2,7/2,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,3,4,3,9/2,5,9,5,5,4,5,3,7/2,3,4,3,3,3,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,7,5,13/2,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,15/2,6,9,6,7,6,12,7,8,7,12,8,12,12,22,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,11/2,5,9,5,11/2,4,6,4,6,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,11/2,4,6,4,5,5,10,6,6,5,9,6,9,8,11,6,7,5,7,4,5,5,8,5,5,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,5,4,6,5,7,7,11,6,13/2,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,13/2,6,12,7,17/2,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,13/2,6,9,6,17/2,8,15,8,17/2,6,10,6,7,6,10,6,7,6,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,19/2,6,10,6,7,6,11,6,6,5,8,6,15/2,8,13,7,8,6,8,5,13/2,6,11,6,15/2,6,10,7,21/2,11,19,10,21/2,8,12,7,17/2,8,12,7,15/2,6,10,7,11,11,18,10,11,9,13,8,23/2,11,20,11,13,11,19,13,39/2,20,36,19,19,13,19,11,13,11,19,10,23/2,9,14,9,12,11,21,11,11,8,12,7,17/2,8,13,8,17/2,7,11,8,11,11,22,12,23/2,8,12,7,9,7,14,8,9,7,10,7,10,10,18,10,10,7,11,7,17/2,8,15,9,10,8,14,10,14,14,22,12,12,8,12,7,8,7,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,7,11,6,15/2,6,10,7,10,10,22,12,23/2,8,11,7,8,7,12,7,7,6,10,6,17/2,8,14,8,17/2,6,8,6,15/2,7,12,7,9,8,12,8,25/2,13,21,11,11,8,12,7,17/2,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,13/2,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,7/2,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,7/2,4,6,3,3,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,7,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,-1/2,0,0,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,4,3,3,3,4,3,3,3,4,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,9/2,4,8,5,5,4,5,4,9/2,4,7,4,5,4,7,5,15/2,7,12 -11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,5,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,9/2,7,5,6,5,9,11/2,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,6,4,4,7/2,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,9/2,5,4,6,5,7,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,4,5,5,9,11/2,6,5,9,13/2,10,10,16,17/2,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,14,8,8,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,11/2,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,6,8,8,14,8,8,13/2,10,13/2,9,8,14,8,10,8,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,10,7,9,17/2,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,17/2,8,6,9,11/2,7,11/2,10,6,7,5,8,6,8,7,13,7,8,11/2,8,5,6,6,11,7,8,6,10,15/2,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,9/2,6,4,5,5,8,5,6,5,8,11/2,8,8,16,17/2,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,6,4,6,5,9,6,7,6,10,7,10,10,16,9,9,13/2,10,6,6,5,10,11/2,6,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,5/2,3,3,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,7/2,5,3,4,7/2,6,4,6,6,10 -18,10,10,7,19/2,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,11/2,4,4,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,6,4,11/2,4,5,5,8,5,5,4,13/2,4,6,6,11,6,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7/2,3,4,5,7,4,4,3,9/2,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,7/2,2,3,3,5,3,4,3,9/2,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,7/2,3,4,4,5,3,4,3,4,3,3,3,7,4,5,4,13/2,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,11/2,4,4,4,6,4,4,3,9/2,4,5,5,8,5,5,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,9,6,8,8,16,9,9,7,21/2,7,9,8,15,9,10,8,27/2,10,14,14,26,13,13,9,13,8,9,8,13,7,8,6,19/2,6,8,8,15,8,8,6,15/2,5,6,6,9,5,6,5,15/2,5,7,7,14,8,8,6,15/2,5,6,5,9,5,6,5,15/2,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,13,7,7,5,8,5,7,6,10,6,6,4,13/2,4,6,6,9,5,5,4,13/2,4,4,4,7,5,6,5,15/2,5,7,7,13,7,7,5,15/2,5,6,6,11,6,7,6,9,6,8,7,11,6,7,5,8,5,7,7,15,9,10,8,29/2,10,15,15,25,13,14,10,29/2,8,9,8,14,8,9,7,21/2,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,19/2,7,10,10,17,9,10,7,21/2,6,8,7,13,7,8,6,10,6,8,8,16,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,22,12,12,8,11,7,9,8,13,7,8,6,9,6,9,9,15,8,9,6,19/2,6,8,7,14,8,9,7,12,8,12,12,22,12,12,9,14,8,10,9,14,8,9,8,13,9,12,12,22,12,12,10,31/2,10,13,12,22,13,15,13,22,15,23,23,43,22,22,15,45/2,13,16,14,23,12,13,10,33/2,10,14,13,24,12,12,8,25/2,8,10,9,15,8,9,8,25/2,8,12,12,25,13,14,10,27/2,8,10,8,16,9,10,8,13,9,12,11,21,11,11,8,12,8,10,9,17,10,11,10,33/2,11,16,16,27,14,14,10,29/2,9,11,9,16,9,9,7,23/2,8,10,10,16,9,9,7,21/2,6,8,7,13,8,9,8,25/2,8,12,12,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,8,15,9,10,9,31/2,11,16,16,26,14,14,10,31/2,9,10,8,15,8,9,7,10,7,9,8,13,7,8,6,8,5,7,6,10,6,6,5,15/2,6,8,7,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,3,9,5,5,4,9/2,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,6,6,13,7,7,5,7,4,4,3,5,3,3,3,9/2,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,9/2,3,4,4,11,6,7,5,15/2,5,6,5,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,16 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,9,11/2,6,5,9,13/2,10,19/2,16,9,9,6,9,5,6,5,9,5,6,5,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,11/2,8,8,14,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,17/2,10,9,15,8,9,7,10,7,9,17/2,15,8,8,6,8,5,7,6,10,11/2,6,5,8,6,8,8,16,17/2,9,6,9,11/2,7,11/2,10,6,6,5,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,7,5,6,6,11,6,6,5,7,9/2,6,5,9,11/2,6,6,10,7,10,10,17,9,9,7,10,6,6,5,10,11/2,6,5,6,9/2,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,6,3,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,6,7/2,4,3,4,3,4,7/2,6,4,4,7/2,6,4,6,6,11 -15,8,17/2,6,8,5,11/2,5,8,5,11/2,4,7,5,6,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,2,4,3,3,3,6,4,7/2,2,4,3,3,3,5,4,9/2,4,6,4,6,5,10,6,11/2,4,5,3,3,3,6,4,4,3,4,3,4,3,5,3,7/2,3,4,3,4,4,6,4,4,4,6,4,13/2,7,14,8,15/2,5,7,4,11/2,5,8,5,6,5,7,5,13/2,7,14,8,8,6,9,6,7,7,13,8,9,7,11,8,12,12,21,11,23/2,8,12,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,7,5,6,4,6,5,8,5,5,5,7,5,13/2,6,12,6,6,4,6,4,5,4,7,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,5,11/2,5,8,5,7,7,11,6,13/2,5,7,5,6,5,7,4,4,3,6,4,9/2,4,9,5,5,4,6,4,9/2,4,7,4,5,4,7,5,13/2,6,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,8,5,7,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,25/2,12,22,12,23/2,8,12,7,15/2,7,12,7,15/2,6,8,6,15/2,7,14,8,8,6,9,5,6,6,10,6,13/2,6,8,6,17/2,8,15,8,9,6,10,6,7,6,10,6,13/2,5,8,5,7,6,13,7,13/2,5,8,5,6,6,11,7,8,7,12,8,23/2,12,20,11,11,7,10,6,7,6,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,8,5,13/2,6,11,7,8,6,10,7,21/2,10,19,10,10,8,12,7,8,7,12,7,15/2,6,11,7,10,10,19,10,11,8,12,8,21/2,10,18,10,25/2,11,19,13,19,19,36,19,19,13,20,12,27/2,12,20,11,12,9,14,9,12,11,19,10,21/2,8,10,7,9,8,13,7,8,7,11,8,11,11,21,11,11,8,12,7,9,7,14,8,17/2,6,10,7,9,9,16,9,19/2,7,10,6,8,7,14,8,9,8,14,10,27/2,14,24,12,25/2,9,14,8,10,8,13,7,15/2,6,10,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,12,8,21/2,10,20,10,21/2,8,11,7,8,7,11,6,13/2,5,9,6,8,7,14,8,17/2,6,9,6,8,7,12,7,8,7,13,9,13,13,24,12,25/2,9,13,7,8,7,13,7,8,6,8,6,15/2,7,10,6,6,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,4,3,4,3,5,3,5/2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,7,4,4,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,5,3,5/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,3,4,4,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,4,3,4,3,7/2,4,5,3,4,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,4,9,5,5,4,6,4,4,4,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,8,6,8,8,15 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,5/2,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,6,4,5,5,8,5,5,9/2,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,9/2,6,4,6,5,8,5,5,9/2,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,9/2,6,4,6,5,9,5,6,9/2,7,5,6,6,10,6,6,5,7,5,7,7,12,7,8,7,11,8,12,12,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,13/2,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,7,10,19/2,18,10,10,15/2,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,11,18,10,10,7,10,13/2,8,7,12,7,8,7,11,8,11,10,19,10,10,7,11,13/2,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,13,15/2,9,8,13,9,12,13,23,12,12,9,13,8,9,8,12,7,8,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,4,5/2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,3/2,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,7/2,5,4,5,5,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,7,7,14 -27,14,14,10,16,9,11,9,31/2,8,9,7,10,6,8,8,17,9,9,7,10,6,7,6,10,6,7,5,8,6,9,9,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,13,7,8,6,8,5,6,6,21/2,6,7,5,8,5,7,7,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,9/2,3,3,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,3,3,5,3,3,3,6,4,4,3,4,3,4,4,15/2,4,5,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,9,16,9,9,6,8,5,6,6,19/2,6,6,4,6,4,6,6,10,6,6,5,7,5,6,6,19/2,6,7,6,11,8,11,11,23,12,12,8,12,8,10,8,29/2,8,10,8,12,8,12,11,25,13,14,11,17,10,13,12,43/2,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,8,11,6,7,6,11,6,7,5,8,6,9,9,16,9,9,7,10,6,8,8,29/2,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,7,11,8,11,11,19,10,11,8,11,7,9,9,16,9,9,7,11,7,10,10,18,10,11,9,14,9,13,12,22,13,15,13,23,16,23,22,39,20,20,13,19,11,14,12,20,11,11,8,13,9,12,11,24,13,13,9,14,8,10,10,35/2,10,11,9,15,10,14,14,27,14,14,10,15,9,12,10,18,10,10,7,11,7,10,10,20,11,12,9,14,9,11,10,18,11,13,11,18,13,19,19,35,18,17,12,17,10,12,10,18,10,10,8,13,9,12,12,22,12,13,10,15,9,11,10,18,10,12,10,17,12,17,17,35,18,18,13,20,12,15,13,23,13,14,11,18,12,17,17,34,18,19,15,24,15,19,18,67/2,19,23,19,34,23,33,33,64,33,33,23,34,19,23,20,35,19,21,16,25,16,22,20,34,17,17,12,18,11,14,13,47/2,13,15,12,20,13,19,19,36,19,19,13,20,12,14,12,45/2,12,14,10,16,11,15,14,28,15,16,11,17,10,13,12,23,13,15,13,22,15,23,23,44,23,23,16,24,14,16,14,47/2,12,13,10,16,10,14,14,25,13,14,10,15,9,12,11,41/2,12,14,11,18,12,18,18,36,19,19,13,18,10,12,11,19,10,11,8,13,9,12,12,26,14,15,11,17,11,14,12,22,13,15,13,23,16,23,22,43,22,22,15,21,12,15,12,43/2,12,12,9,13,9,12,11,18,10,10,7,11,7,8,8,14,8,8,7,11,7,10,10,19,10,9,6,9,6,7,6,9,5,5,4,5,4,5,5,7,4,5,4,6,4,4,4,15/2,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,5/2,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,6,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,2,2,4,3,3,3,11/2,4,4,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,5,8,5,5,4,5,4,5,5,10,5,5,3,4,3,4,4,11/2,3,3,3,4,3,5,5,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,26 -15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,7,13/2,12,13/2,7,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,10,11/2,6,4,6,4,5,9/2,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,5,9,5,6,4,7,5,6,6,11,6,6,5,8,5,7,7,13,8,9,8,13,9,13,13,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,11/2,7,6,10,6,6,9/2,7,9/2,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,11/2,7,6,10,6,7,6,10,7,10,10,20,10,10,15/2,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,9,14,9,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,13,11,20,11,12,9,14,9,12,11,19,10,10,7,10,13/2,8,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,9,6,9,8,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,25,13,13,9,14,8,9,8,14,15/2,8,6,10,6,8,8,14,8,8,6,9,11/2,7,7,12,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,11/2,7,7,15,8,9,7,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,7,9,15/2,12,7,7,5,8,5,7,7,10,6,6,9/2,6,4,5,5,8,5,5,4,7,9/2,6,6,11,6,5,4,5,7/2,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1/2,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,7/2,4,4,5,4,6,11/2,11,6,6,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,7/2,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,9/2,8,5,5,5,8,11/2,8,8,15 -18,10,19/2,7,10,6,7,6,11,6,13/2,5,7,5,13/2,6,12,6,13/2,5,6,4,9/2,4,7,4,5,4,6,4,6,6,9,5,5,4,4,3,4,4,6,4,4,3,4,3,9/2,5,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,11,6,6,4,5,4,9/2,4,5,3,7/2,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,5,3,7/2,2,5,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,6,4,7/2,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,13/2,6,10,6,6,4,6,4,9/2,4,7,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,4,4,7,4,11/2,5,8,6,15/2,8,15,8,8,6,8,5,7,6,10,6,13/2,6,8,6,8,8,16,9,10,7,11,7,10,9,14,8,19/2,8,14,10,29/2,14,26,14,27/2,10,14,8,19/2,8,14,8,9,7,11,7,17/2,8,15,8,17/2,6,8,5,6,6,9,6,13/2,5,8,5,7,7,13,7,8,6,8,5,11/2,5,8,4,9/2,4,6,4,6,6,10,6,6,5,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,15,8,17/2,6,8,5,6,5,8,5,5,4,6,4,5,5,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,7,5,8,8,14,8,15/2,6,8,5,6,6,11,6,13/2,5,8,6,15/2,8,13,7,15/2,6,10,6,8,8,15,9,21/2,9,16,11,15,15,26,14,27/2,9,14,8,19/2,8,14,8,8,6,9,6,17/2,8,15,8,17/2,6,9,6,15/2,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,15/2,7,12,7,7,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,24,12,12,8,12,7,17/2,8,12,7,15/2,6,9,6,17/2,8,15,8,17/2,6,10,6,8,7,12,7,17/2,7,11,8,23/2,12,23,12,25/2,9,13,8,19/2,8,16,9,10,8,13,8,23/2,12,23,12,27/2,10,16,10,13,12,22,13,31/2,13,22,15,22,22,43,22,22,15,22,13,15,13,23,13,14,11,17,11,14,13,23,12,12,8,12,8,10,9,16,9,21/2,8,14,9,13,13,24,13,27/2,10,14,8,10,9,16,9,19/2,7,11,7,10,10,18,10,10,8,12,8,19/2,9,16,9,21/2,9,15,10,31/2,16,31,16,16,11,16,9,11,10,16,9,19/2,8,12,8,10,10,17,9,19/2,7,10,6,17/2,8,14,8,9,7,12,8,25/2,12,24,12,25/2,8,12,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,21/2,9,16,11,31/2,15,29,15,29/2,10,15,9,21/2,9,15,8,8,6,9,6,17/2,8,12,7,7,5,7,4,11/2,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,4,3,4,3,7,4,4,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,13/2,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,7/2,4,7,4,7/2,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,9,5,5,4,6,4,9/2,4,7,4,4,3,5,4,9/2,4,8,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,17 -15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,11/2,10,11/2,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,9/2,5,7/2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,9/2,9,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,5/2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,11/2,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,9/2,6,7,13,7,7,5,7,9/2,6,5,8,5,5,5,7,5,7,7,14,8,8,6,9,6,8,15/2,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,8,5,5,5,7,5,7,7,13,7,8,11/2,7,9/2,5,5,7,4,4,7/2,5,4,5,5,9,5,6,4,6,4,5,9/2,8,9/2,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,9,5,6,4,7,5,6,13/2,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,22,12,12,8,12,7,8,7,11,13/2,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,15/2,11,11,20,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,11/2,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,17/2,14,17/2,11,10,18,21/2,12,11,18,12,18,18,35,18,18,25/2,18,11,13,11,19,11,12,9,14,9,12,11,19,10,10,7,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,15,8,9,7,10,13/2,8,8,14,8,9,8,13,9,13,13,26,14,14,19/2,14,8,9,8,14,8,8,13/2,10,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,10,10,20,10,10,7,10,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,15/2,9,8,12,7,7,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,9/2,7,5,7,13/2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,12,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,7/2,6,7/2,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,4,5,9/2,8,11/2,8,8,15 -25,13,14,10,29/2,8,10,8,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,10,6,6,5,8,6,9,9,13,7,8,6,15/2,5,6,6,8,5,6,5,7,5,7,6,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,15/2,5,6,5,9,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,5,3,3,3,5,3,4,4,4,3,3,3,11/2,4,6,6,10,5,5,4,5,3,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,15/2,5,7,7,12,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,6,5,17/2,6,9,9,14,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,6,10,6,6,4,13/2,4,6,6,10,6,7,6,21/2,8,12,12,23,12,12,8,12,7,9,8,13,8,9,8,25/2,8,12,12,24,13,13,10,31/2,10,13,12,22,12,14,12,21,14,21,21,39,20,20,14,41/2,12,15,13,21,11,12,10,31/2,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,23/2,8,10,10,19,10,10,8,23/2,7,8,7,12,7,7,5,8,6,8,8,15,8,8,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,13,9,13,8,9,8,12,7,7,6,9,6,8,8,16,8,8,6,19/2,6,8,7,13,7,8,6,21/2,7,10,11,21,11,11,8,23/2,7,9,8,16,9,9,7,11,8,11,11,20,11,12,9,14,9,12,11,20,12,14,12,43/2,14,21,21,40,20,20,14,39/2,12,14,12,19,10,11,8,27/2,9,12,12,21,11,12,8,25/2,8,10,9,16,9,11,9,29/2,10,14,14,24,13,14,10,29/2,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,27/2,8,10,9,18,10,12,10,37/2,12,18,18,35,18,18,12,37/2,10,12,10,19,10,11,9,14,9,12,12,22,12,13,9,14,9,11,10,17,10,11,10,33/2,11,16,16,33,17,18,12,18,11,14,12,23,13,14,11,37/2,12,17,17,34,18,19,14,47/2,15,20,18,32,18,21,18,32,22,32,32,62,32,32,22,65/2,19,23,20,33,18,19,15,24,15,20,19,34,18,18,13,39/2,12,16,14,24,14,16,13,43/2,14,19,19,36,19,19,14,41/2,12,14,12,22,12,13,10,15,10,14,14,27,14,15,11,35/2,11,14,13,24,14,17,14,24,16,23,23,46,24,24,16,49/2,14,17,14,24,13,14,11,17,11,15,14,26,14,14,10,29/2,9,12,11,20,11,13,10,17,12,17,17,35,18,18,12,35/2,10,12,10,20,11,11,8,27/2,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,23,15,22,22,43,22,22,15,43/2,12,15,13,21,11,12,9,27/2,9,12,11,18,10,10,7,21/2,6,8,7,13,8,9,8,25/2,8,12,11,19,10,10,7,21/2,6,8,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,4,4,8,5,5,4,6,4,5,5,10,6,6,4,13/2,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,9/2,3,4,4,4,3,3,3,9/2,3,4,5,8,5,5,3,4,3,3,3,6,4,4,3,3,2,2,2,5,3,3,3,9/2,3,4,3,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,7/2,2,3,3,7,4,4,3,9/2,2,2,2,5,3,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,7/2,3,4,3,6,4,4,4,11/2,4,5,5,7,4,5,4,11/2,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,9,20,10,10,7,9,6,7,6,10,6,6,4,13/2,4,6,5,8,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,12,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,6,12,7,8,6,10,7,9,8,12,7,8,7,25/2,9,14,14,26 -17,9,10,7,10,6,7,6,11,6,7,11/2,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,9/2,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,6,6,9,11/2,6,11/2,8,6,8,8,16,9,9,7,10,7,9,8,15,9,10,9,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,8,5,6,6,9,11/2,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,7,5,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,7,15/2,15,8,8,6,8,5,6,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,10,6,8,7,11,6,7,5,8,11/2,7,7,12,7,7,6,9,6,7,6,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,22,12,12,17/2,13,8,10,8,15,9,10,8,12,8,12,12,23,12,13,10,16,10,13,12,21,12,14,12,22,15,22,22,42,22,22,15,22,13,15,13,22,12,13,10,16,10,14,13,23,12,13,9,14,17/2,11,10,16,19/2,11,9,14,19/2,13,13,24,13,13,9,14,8,9,8,15,8,9,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,12,10,16,11,16,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,17,9,10,7,11,7,10,9,16,9,11,9,16,21/2,15,15,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,11/2,6,5,8,6,8,8,13,7,7,5,7,9/2,6,9/2,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,3,2,2,2,4,3,3,7/2,6,7/2,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,9,5,6,5,9,7,10,10,18 -25,13,14,10,15,9,10,9,16,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,11/2,4,7,5,7,6,12,7,7,5,7,4,11/2,5,8,5,6,5,8,6,15/2,8,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,8,5,5,4,6,4,9/2,4,6,4,9/2,3,4,3,4,4,9,5,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,5,4,5,3,4,4,7,4,4,3,4,3,7/2,4,7,4,4,3,5,4,9/2,4,8,5,11/2,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,13/2,5,8,5,6,5,10,6,6,5,9,6,17/2,8,14,8,8,6,9,6,13/2,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,11/2,5,9,6,13/2,6,10,7,11,11,21,11,11,8,11,7,9,8,13,8,9,8,12,8,12,12,23,12,27/2,10,15,10,25/2,12,23,13,15,13,21,14,43/2,22,40,21,21,14,21,12,29/2,12,21,12,13,10,16,10,27/2,12,22,12,12,9,12,7,17/2,8,13,8,17/2,7,11,7,10,10,18,10,10,7,10,6,7,6,12,7,8,6,9,6,8,8,14,8,8,6,9,6,15/2,7,12,7,9,7,12,8,12,12,23,12,25/2,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,17/2,7,12,8,11,11,22,12,12,8,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,27/2,12,21,14,41/2,20,40,20,41/2,14,20,12,27/2,12,20,11,11,9,14,9,12,11,21,11,12,9,14,8,21/2,9,17,10,21/2,8,14,10,27/2,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,18,10,11,8,12,8,19/2,9,17,10,12,10,18,12,35/2,18,34,17,17,12,18,10,12,10,19,10,23/2,9,14,9,13,13,24,13,27/2,10,15,9,11,10,18,10,23/2,10,17,12,17,17,32,17,35/2,12,19,11,27/2,12,22,12,27/2,11,18,12,17,17,33,18,19,14,23,14,37/2,17,31,18,43/2,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,39/2,15,24,15,20,19,34,18,19,13,20,12,31/2,14,24,14,31/2,12,21,14,39/2,19,36,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,29/2,14,24,14,17,14,23,16,23,23,46,24,47/2,16,24,14,17,14,25,14,15,11,17,11,15,14,26,14,14,10,15,9,12,11,20,11,25/2,10,18,12,35/2,18,35,18,18,12,18,10,12,11,19,10,23/2,9,14,9,13,13,25,13,27/2,10,16,10,14,13,23,13,31/2,13,23,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,23/2,11,19,10,21/2,8,12,7,17/2,8,14,8,9,7,12,8,23/2,11,20,10,10,7,10,6,15/2,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,7/2,4,5,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,6,4,7/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,5,5,9,5,11/2,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,11,8,21/2,10,19,10,10,7,10,6,7,6,10,6,11/2,4,6,4,11/2,5,8,5,5,4,5,3,7/2,3,6,4,4,3,6,4,11/2,6,12,7,7,5,7,4,11/2,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,17/2,8,14,10,27/2,14,26 -25,13,14,10,15,9,10,9,16,9,10,7,11,7,10,9,16,8,8,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,9/2,7,5,7,13/2,12,7,7,5,7,9/2,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,9,11/2,6,11/2,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,11,7,9,8,14,8,9,8,12,8,12,12,23,12,13,10,15,10,13,12,23,13,15,13,21,29/2,22,22,41,21,21,14,21,12,14,12,21,12,13,10,16,10,13,12,22,12,12,9,12,7,8,15/2,13,15/2,8,7,11,7,10,10,18,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,15/2,8,7,12,8,11,11,22,12,12,17/2,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,40,21,21,14,20,12,14,12,20,11,12,9,14,9,12,11,21,11,12,9,14,8,10,9,17,10,11,9,14,10,14,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,19,10,11,8,12,8,10,9,17,10,12,10,18,12,18,17,33,17,17,12,17,10,12,11,19,21/2,12,9,15,10,13,13,24,13,14,10,15,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,19,11,14,12,21,12,13,11,18,12,17,17,33,18,19,14,22,14,18,17,31,18,22,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,19,29/2,23,29/2,19,18,34,18,19,13,20,12,15,14,24,14,16,25/2,21,14,20,19,37,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,14,27/2,24,14,16,14,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,11,18,11,15,14,26,14,14,10,15,9,12,11,20,11,12,10,18,12,18,18,34,18,18,12,18,10,12,11,19,21/2,12,9,14,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,22,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,12,11,20,21/2,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,15/2,11,13/2,8,6,10,6,6,9/2,7,4,5,5,8,9/2,5,4,6,4,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,9,8,14,10,14,14,26 -50,26,27,19,28,16,20,17,30,16,18,13,21,13,18,17,31,16,16,11,16,10,12,10,18,10,11,9,16,10,14,14,27,14,15,10,15,9,11,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,10,9,16,9,11,9,16,10,14,14,27,14,14,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,13,7,7,5,8,5,7,7,12,7,7,5,8,6,8,8,14,8,9,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,12,8,11,11,21,11,12,9,14,9,11,10,18,10,12,10,16,11,15,15,28,15,15,11,17,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,8,10,10,18,11,13,11,20,14,21,21,41,21,21,15,22,13,17,15,27,15,17,14,24,16,23,23,44,23,25,19,30,19,25,23,44,25,29,24,42,28,42,42,82,41,41,27,40,23,28,23,41,22,24,18,30,19,25,23,44,23,23,16,24,14,16,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,17,11,16,15,28,15,15,11,18,11,14,13,23,13,15,13,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,12,20,13,18,17,32,17,17,12,18,11,15,14,25,14,16,13,22,15,21,21,42,22,23,16,25,15,18,16,28,15,17,13,22,15,22,21,41,22,23,17,27,17,22,21,39,22,26,22,39,27,40,40,80,41,41,27,40,22,26,22,39,21,23,17,28,17,23,22,42,22,23,17,26,16,20,18,32,18,21,17,28,18,26,25,48,25,26,18,27,16,20,17,31,17,18,14,24,15,20,19,37,20,21,15,24,15,19,17,32,19,23,19,34,23,34,33,65,33,33,22,33,19,24,21,37,20,22,17,29,19,26,25,47,25,26,18,28,17,21,19,34,19,22,19,33,22,32,32,62,32,33,23,36,21,26,23,41,22,25,20,34,23,33,33,64,34,36,27,43,26,35,33,62,35,42,35,62,42,62,62,123,62,62,42,62,35,43,36,65,34,37,28,45,28,37,35,67,35,36,26,40,23,29,26,48,26,30,24,41,27,38,37,73,37,38,26,38,22,26,22,40,22,24,19,31,20,28,27,52,27,29,21,34,21,28,26,48,27,31,26,46,31,45,45,89,45,46,31,47,27,33,28,49,26,28,21,35,22,30,28,52,27,27,19,29,18,23,21,38,21,24,20,34,23,34,34,67,34,35,24,36,20,24,20,36,20,22,17,27,18,26,25,48,25,26,19,31,19,26,24,46,26,30,25,43,29,43,43,85,43,43,29,43,24,29,24,43,23,24,18,28,17,22,21,39,20,21,15,23,14,17,15,26,15,17,14,24,16,22,21,41,21,21,14,21,12,14,11,19,10,11,8,13,8,9,8,15,8,9,7,10,6,8,7,11,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,10,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,8,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,10,10,18,11,13,11,20,13,19,19,37,19,20,14,20,12,14,12,20,11,11,8,12,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,13,8,11,10,17,10,11,9,14,9,12,12,22,12,14,11,17,11,15,14,26,15,17,15,26,18,26,26,50 +50,26,26,18,26,15,18,16,29,16,17,13,20,13,17,16,30,16,16,11,15,9,12,10,18,10,11,8,13,9,12,12,24,12,12,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,7,12,7,9,8,14,9,13,13,26,14,15,11,18,12,16,15,29,17,20,17,29,19,28,28,55,28,29,20,29,16,19,16,27,15,16,12,18,12,16,15,29,15,14,10,14,9,11,9,16,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,7,7,12,7,7,5,8,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,11,10,18,10,10,8,12,8,12,11,21,11,12,9,13,8,10,9,17,10,12,10,18,12,17,17,33,17,17,12,18,11,13,11,20,11,13,10,16,11,15,15,29,16,17,13,20,13,18,17,32,18,21,18,32,22,33,33,66,33,33,23,34,19,23,19,34,18,20,16,27,17,23,22,43,23,24,17,26,15,19,17,31,17,20,16,28,19,27,27,52,27,27,19,28,16,19,16,28,15,17,13,21,14,19,18,33,18,19,14,23,14,18,17,32,18,21,17,30,20,30,30,59,30,31,21,31,18,21,18,31,17,18,13,21,13,17,16,29,15,15,10,15,9,11,10,17,10,11,9,16,11,15,15,28,15,15,10,14,9,11,9,16,9,10,8,14,9,13,12,23,12,13,10,16,10,14,14,26,15,19,16,29,20,29,29,56,29,29,20,30,17,21,17,30,17,19,15,24,15,21,20,39,20,21,14,21,13,16,14,26,15,17,14,24,16,23,23,44,23,23,16,24,14,18,16,30,17,19,16,28,19,27,26,51,27,28,21,33,21,28,27,51,29,34,28,50,34,50,50,98,50,50,34,51,29,36,31,56,30,33,25,40,26,36,34,66,35,37,27,42,25,33,30,57,32,37,31,55,37,54,54,107,54,55,38,59,34,42,37,68,37,42,33,57,37,53,52,102,53,57,42,69,42,57,53,102,57,68,56,100,67,100,100,199,100,100,67,101,57,68,57,102,53,57,43,70,43,58,54,104,53,55,39,60,35,44,39,73,40,46,36,62,40,58,56,110,56,56,39,59,34,42,36,64,34,38,29,47,30,42,40,76,39,41,29,46,27,35,32,59,33,38,31,54,36,54,54,106,54,54,36,54,30,36,30,52,28,30,23,37,23,31,29,55,28,29,21,32,19,25,23,42,23,26,21,37,25,36,35,68,35,35,24,36,21,26,23,41,22,24,19,32,20,28,26,50,26,27,19,30,18,24,23,43,24,28,23,40,26,38,37,72,37,37,25,38,22,26,22,39,21,23,17,28,17,23,21,40,21,21,15,22,13,17,15,27,15,17,14,23,15,21,20,39,20,21,14,21,13,16,15,27,15,17,14,23,15,21,20,39,20,21,16,25,16,21,20,37,21,25,21,38,26,39,39,76,39,39,26,39,23,28,24,42,23,25,19,32,21,30,29,55,29,30,22,34,20,26,24,44,24,28,23,39,26,37,37,72,37,37,26,40,23,28,25,45,24,27,21,36,23,33,32,62,32,34,25,41,25,34,32,60,34,41,34,61,41,61,62,123,62,62,42,63,35,42,35,63,33,35,26,43,27,37,34,65,33,34,24,37,22,27,24,43,24,27,21,36,24,34,33,65,33,34,24,36,21,25,21,38,21,23,18,29,18,25,24,46,24,26,19,29,18,23,21,38,22,26,21,37,25,37,37,73,37,36,24,36,21,25,21,38,20,22,17,29,18,25,24,46,24,24,17,27,16,21,19,34,19,21,17,28,19,27,26,51,26,27,18,27,16,19,16,29,16,17,13,21,14,19,18,35,19,20,14,22,14,18,17,31,18,21,18,31,22,33,33,65,33,32,22,32,18,21,18,32,17,19,15,24,15,21,19,36,19,19,13,19,11,14,13,23,13,15,12,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,19,10,11,8,12,7,9,9,16,9,10,9,15,10,15,15,28,15,16,12,20,13,17,15,28,16,19,16,27,18,26,26,50 +25,13,14,10,13,8,9,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,14,14,28,14,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,5,8,5,6,5,8,5,5,4,7,4,6,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,10,9,16,10,11,10,16,11,17,17,34,17,17,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,15,11,16,9,11,9,16,9,10,8,13,8,11,11,20,11,11,8,11,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,26,14,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,16,17,13,21,13,18,17,34,18,19,14,21,13,17,16,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,29,19,27,26,51,27,29,22,35,22,29,27,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,27,29,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,30,17,21,18,32,17,19,15,24,15,21,20,38,20,21,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,19,13,18,18,34,18,18,13,18,11,13,12,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,19,13,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,11,7,8,8,14,8,9,8,12,8,11,11,20,11,11,8,13,8,11,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,28,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,19,14,21,12,15,13,23,13,14,11,18,12,17,16,32,17,18,13,21,13,18,17,30,17,21,18,31,21,31,31,62,32,32,22,32,18,21,18,32,17,18,14,22,14,19,18,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,17,33,17,18,12,19,11,13,11,19,11,12,9,15,10,13,13,24,13,14,10,15,9,12,11,19,11,14,11,19,13,19,19,37,19,19,13,19,11,13,11,20,11,12,9,15,10,13,13,23,12,12,9,14,8,11,10,17,10,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,11,8,10,10,18,10,10,7,12,8,10,9,16,10,11,10,16,11,17,17,33,17,17,12,17,10,11,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +25,13,14,10,13,8,9,8,15,8,8,6,10,7,9,9,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,28,14,14,10,16,9,11,9,14,8,8,6,10,7,9,9,15,8,8,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,8,6,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,31,16,16,11,16,10,12,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,16,11,16,10,12,10,16,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,25,13,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,15,16,12,21,13,18,17,34,18,19,14,21,13,17,15,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,28,19,27,26,51,27,28,21,35,22,30,28,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,28,30,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,29,17,21,18,32,17,18,14,24,15,21,20,38,20,20,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,18,12,18,18,34,18,18,13,18,11,13,11,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,20,14,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,11,7,8,8,15,9,10,8,12,8,11,11,20,11,12,9,13,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,29,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,20,14,21,12,15,13,24,13,14,11,18,12,17,16,32,17,18,14,21,13,18,17,30,17,20,17,31,21,31,31,61,31,32,22,32,18,21,18,31,17,18,14,22,14,18,17,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,18,33,17,18,12,19,11,13,11,19,11,12,9,15,10,14,13,24,13,14,10,15,9,12,11,19,11,14,12,19,13,19,19,38,20,20,13,19,11,14,12,20,11,12,9,15,10,14,13,23,12,12,9,14,8,10,9,17,10,12,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,12,8,10,9,17,10,12,10,16,11,17,17,33,17,17,12,17,10,12,10,17,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,9,13,13,25 +17,9,10,7,9,6,7,6,10,6,6,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,6,9,6,6,5,7,5,7,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,11,6,8,6,11,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,20,10,11,8,11,7,8,7,11,6,7,6,9,6,8,7,14,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,17,33,17,17,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,10,14,9,12,10,19,11,13,11,19,13,19,19,36,19,19,14,20,12,15,13,24,13,15,12,19,13,18,18,34,18,19,14,24,15,20,19,34,20,23,20,35,23,34,34,67,34,34,23,34,20,23,20,35,19,20,15,24,15,20,19,36,18,19,14,20,12,15,14,25,14,16,13,22,14,20,20,37,19,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,14,10,16,10,12,11,20,12,13,11,19,13,19,18,36,19,19,13,18,11,13,11,17,10,11,8,13,8,11,10,19,10,10,8,11,7,9,8,15,8,10,8,12,8,12,12,23,12,12,9,12,8,9,8,14,8,9,7,11,7,9,9,18,10,10,7,11,7,8,8,15,8,10,8,14,10,14,13,25,13,13,9,14,8,10,8,13,8,8,6,10,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,7,13,8,9,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,10,20,10,11,8,12,8,10,8,15,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,16,9,10,8,12,8,12,11,21,12,12,10,15,9,12,11,20,12,14,12,21,14,21,21,41,21,22,15,22,12,14,12,21,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,8,9,8,12,8,12,12,22,12,12,8,13,8,9,8,13,8,8,6,10,7,9,9,17,9,9,7,10,6,8,8,13,8,9,8,13,9,13,13,26,14,14,9,13,8,10,8,14,8,9,7,10,7,10,9,16,9,9,6,9,6,7,6,12,7,8,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,7,5,8,5,7,6,12,7,8,7,11,8,12,12,22,12,12,8,12,7,9,7,12,7,8,6,8,6,7,7,13,7,7,5,7,4,6,5,8,5,6,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,4,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,6,6,10,6,6,6,10,7,9,9,17 +26,13,13,9,14,8,10,9,15,8,8,6,9,6,9,8,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,7,5,7,7,13,7,7,5,8,6,8,8,14,8,10,9,15,10,14,14,28,15,15,11,16,9,10,8,13,8,9,7,11,7,9,9,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,12,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,16,11,17,17,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,12,21,11,11,8,12,7,9,8,17,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,17,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,13,7,6,4,6,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,8,6,8,7,14,8,10,9,15,10,15,15,29,15,16,11,16,9,11,10,15,8,9,7,12,8,10,10,20,11,11,8,12,7,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,25,13,14,10,16,10,14,13,25,14,17,15,26,17,25,25,49,25,25,17,26,15,18,15,29,16,17,13,21,13,18,17,34,18,18,13,21,13,17,15,28,16,19,16,28,19,29,29,53,27,28,20,30,18,22,19,35,19,21,17,28,19,27,26,50,27,29,22,35,22,29,27,51,29,34,29,52,35,51,50,100,51,51,34,51,29,35,29,53,28,30,22,36,23,31,29,53,27,28,20,30,18,22,20,38,21,23,19,32,21,30,29,55,28,28,19,29,17,20,17,32,17,18,14,22,14,19,19,38,20,20,15,23,14,17,16,30,17,20,16,28,19,28,27,54,28,28,19,27,15,18,15,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,11,18,13,19,19,33,17,17,12,18,11,13,11,21,11,12,9,15,10,14,13,26,14,14,10,16,10,13,12,22,12,14,12,20,13,19,19,36,19,19,13,20,11,13,11,19,10,11,9,14,9,11,10,22,11,11,8,12,7,8,7,14,8,9,7,12,8,11,11,21,11,11,8,12,7,9,8,16,9,9,7,12,8,12,11,20,11,11,8,12,8,11,10,18,11,13,11,20,13,19,19,37,19,19,13,20,12,14,12,23,13,14,11,17,11,15,14,29,15,15,11,17,11,14,12,21,12,14,12,20,14,20,19,36,19,19,13,20,12,15,13,24,13,14,11,18,12,17,16,31,17,18,14,22,13,17,16,29,17,20,17,31,21,31,31,61,31,31,21,32,18,22,18,30,16,18,14,22,14,19,18,33,17,18,13,19,12,15,13,22,12,14,11,18,12,18,18,33,17,18,12,18,11,13,11,20,11,12,9,14,9,12,12,25,13,13,10,15,9,12,11,20,12,14,12,20,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,13,24,13,13,9,13,8,10,9,18,10,12,9,15,10,13,13,27,14,14,10,14,8,9,8,16,9,10,8,12,8,10,10,17,9,9,7,11,7,9,8,17,10,12,10,16,11,16,17,31,16,17,12,18,10,12,10,18,10,10,8,12,8,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,8,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,7,4,5,5,10,6,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,6,9,6,9,9,17,9,10,7,10,6,7,6,9,5,6,4,7,5,6,6,11,6,7,5,7,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,9,9,14,8,8,6,9,6,8,8,15,8,10,9,15,10,14,14,28,15,15,10,15,9,10,9,16,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,12,10,16,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,29,20,29,28,56,29,29,20,29,17,20,17,30,16,17,13,21,13,18,17,30,16,16,12,17,10,13,12,21,12,13,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,10,8,13,8,11,11,21,11,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,15,9,10,9,15,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,12,7,8,7,11,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,13,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,8,7,11,7,10,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,8,11,7,9,8,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15 +18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,5,4,5,5,9,5,6,4,6,4,5,5,9,6,7,6,10,7,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,6,4,6,6,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,8,7,10,7,11,11,20,11,12,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,6,5,8,6,9,9,14,8,8,6,9,6,7,6,10,6,7,6,10,7,11,11,17,9,10,8,11,7,10,10,18,10,12,10,18,12,17,17,34,18,18,12,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,15,9,11,10,19,11,14,12,19,13,19,19,36,19,19,13,20,12,14,13,24,13,15,12,20,13,18,18,33,18,20,15,23,15,20,18,35,20,24,20,35,24,35,34,67,34,34,23,35,20,24,20,35,19,20,15,25,16,21,20,36,19,20,14,21,12,15,14,25,14,16,13,22,14,20,19,37,19,19,13,19,11,13,12,21,11,12,9,15,10,13,12,24,13,14,10,15,9,12,11,21,12,14,11,19,13,18,18,35,18,18,12,18,10,12,10,18,10,10,8,12,8,10,10,20,10,10,8,12,8,10,9,14,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,13,9,14,14,24,13,14,9,14,8,10,8,13,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,13,8,9,8,14,10,14,13,26,14,14,9,13,8,9,8,15,9,10,8,11,8,11,10,19,10,10,8,12,7,9,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,10,9,17,9,10,8,13,8,11,11,21,11,12,9,15,9,12,11,20,12,14,12,21,14,21,21,42,21,21,15,21,12,14,12,20,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,9,10,8,14,9,12,12,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,17,9,9,7,11,7,8,7,13,8,9,8,13,9,12,13,25,13,14,10,14,8,10,8,15,8,8,6,11,7,9,9,17,9,10,7,9,6,8,7,12,7,8,6,10,7,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,11,20,11,11,8,11,7,8,7,12,7,7,5,8,5,6,6,13,7,8,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,3,3,4,4,4,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,10,7,10,10,18 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,8,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,4,7,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,15,8,9,7,10,6,9,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,8,12,8,11,10,18,10,10,8,12,8,9,9,16,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,13,10,17,11,15,15,27,15,16,12,20,13,17,16,29,17,20,17,29,20,29,29,56,28,28,19,29,17,20,17,29,16,17,13,21,13,18,17,31,16,17,12,18,11,13,12,21,12,14,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,17,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,6,7,7,12,7,8,7,11,8,12,12,21,11,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,11,7,8,7,12,8,12,11,22,12,12,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,9,7,11,7,9,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,17,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,11,7,8,8,13,8,9,7,12,8,11,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,7,10,11,21,11,11,8,12,7,9,7,13,7,7,6,9,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,7,7,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,11,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,15 +27,14,13,9,13,8,9,8,15,8,9,6,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,4,7,7,11,6,6,5,8,6,8,8,14,8,9,8,14,10,15,15,25,13,14,10,14,8,10,8,14,8,9,7,11,7,9,9,15,8,8,5,6,4,5,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,15,8,9,6,9,6,7,6,10,6,6,5,9,6,7,7,11,6,7,6,9,6,7,6,11,6,7,6,9,6,9,10,19,10,10,8,12,7,8,7,12,7,7,6,10,7,10,10,16,9,9,7,12,8,10,9,16,9,11,10,17,12,17,17,31,16,16,11,16,9,11,10,17,9,10,8,13,9,12,11,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,14,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,9,17,9,10,8,12,7,9,9,16,9,11,9,16,11,15,15,32,16,16,11,17,10,12,10,18,10,11,8,13,8,11,10,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,7,11,6,7,6,9,6,8,8,14,8,10,9,15,10,15,15,32,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,17,9,9,7,11,7,9,8,13,8,9,8,13,9,13,13,21,11,11,8,13,8,10,9,15,9,11,9,16,11,16,15,26,14,15,11,18,11,15,14,27,15,18,15,25,17,24,24,50,25,25,17,26,15,18,16,28,15,17,13,22,14,19,18,32,17,18,13,21,13,16,15,28,16,20,17,29,20,29,29,53,27,28,20,30,17,21,19,34,19,22,18,30,20,28,27,48,25,27,21,34,21,29,27,52,29,34,29,51,34,51,51,100,50,50,34,51,29,34,29,52,28,30,23,37,23,32,30,55,28,29,21,32,19,23,21,38,21,24,19,32,21,29,29,55,28,29,20,30,17,21,18,32,17,19,14,23,14,19,18,34,18,20,15,23,14,18,16,30,17,20,17,29,19,28,27,51,26,26,18,26,15,17,15,26,14,15,11,18,12,16,15,30,16,17,12,18,11,14,12,22,13,15,12,21,14,20,19,33,17,18,13,19,11,14,12,21,11,12,9,14,9,12,12,25,13,14,10,16,10,12,11,20,12,14,12,20,14,20,20,37,19,18,12,18,10,12,10,18,10,10,8,12,8,11,10,22,12,12,9,13,8,10,8,14,8,9,7,12,8,12,11,23,12,12,9,14,9,11,9,16,9,10,8,13,9,12,11,23,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,38,19,19,13,20,12,14,12,22,12,13,11,18,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,13,18,18,37,19,20,14,22,13,15,13,24,13,15,12,19,12,17,16,31,16,17,13,21,13,18,16,30,17,20,17,30,20,30,30,62,31,31,21,30,17,21,17,30,16,17,12,19,12,16,16,33,17,18,13,19,11,14,13,24,13,14,11,19,13,18,18,34,18,18,12,18,10,12,11,19,10,11,9,14,9,12,11,24,13,13,9,14,9,11,10,18,10,12,10,17,12,18,18,36,19,19,13,19,11,14,12,22,12,13,10,16,10,14,13,25,13,13,9,14,9,11,10,17,9,10,8,13,9,12,12,27,14,14,10,15,9,11,9,16,9,9,7,12,8,10,9,18,10,10,7,11,7,9,9,16,9,11,9,15,11,16,16,29,15,15,10,15,9,11,10,17,9,10,8,12,7,9,9,19,10,10,7,10,6,8,8,14,8,9,7,10,7,10,10,18,9,9,6,9,6,7,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,26 +14,8,7,5,7,4,5,5,8,5,5,4,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,4,5,4,5,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,11,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,12,10,16,11,15,14,25,14,15,11,18,11,15,15,27,16,18,15,27,18,27,27,52,26,26,18,27,15,18,16,27,15,16,12,19,12,17,16,29,15,16,11,17,10,12,11,20,11,13,10,17,11,16,15,29,15,15,11,16,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,12,8,10,9,16,9,11,9,15,10,15,14,27,14,14,10,14,8,9,8,14,8,9,6,10,7,9,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,10,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,16,9,11,9,16,11,16,16,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,9,17,9,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14 +15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,6,8,9,15,8,8,6,8,5,6,5,8,5,6,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,3,4,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,7,5,6,6,8,5,6,5,9,6,8,8,18,10,10,7,10,6,8,6,11,6,7,5,8,5,7,6,10,6,6,5,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,19,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,8,8,12,7,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,10,9,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,19,11,12,10,17,11,16,15,27,15,16,12,19,12,16,16,29,17,20,16,29,19,28,29,55,28,28,19,28,16,20,17,29,15,16,13,20,13,18,17,31,16,17,12,18,11,13,12,22,12,14,11,17,12,17,16,31,16,16,11,17,10,12,10,18,10,10,8,12,8,10,10,18,10,10,8,13,8,10,9,16,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,16,9,10,7,11,7,10,9,17,9,10,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,22,12,12,8,10,6,8,7,11,6,6,5,8,5,7,6,13,7,8,6,8,5,5,5,9,5,6,5,7,5,8,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,8,7,13,7,8,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,17,11,16,17,35,18,17,12,17,10,11,10,16,9,10,7,10,7,9,9,18,10,10,7,11,7,9,8,13,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,10,7,10,11,20,11,11,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,14 +12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,7,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,5,8,6,8,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,6,3,3,3,3,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,13,8,9,8,15,8,9,8,13,8,12,11,20,11,12,9,14,9,12,12,21,12,15,12,21,14,21,21,41,21,21,14,21,12,15,12,21,11,12,10,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,5,9,5,6,5,9,6,9,8,14,7,7,5,8,5,5,5,9,5,6,4,7,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,26,13,13,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,7,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,8,5,8,5,5,5,8,5,5,4,5,4,5,4,8,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10 +19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,5,4,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,4,4,3,3,3,4,3,4,4,8,5,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,12,8,11,11,22,11,11,8,11,7,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,9,9,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,7,5,7,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,8,14,8,8,6,9,6,8,8,12,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,8,5,5,4,5,3,4,3,7,4,4,4,6,4,6,5,9,5,6,5,8,5,7,6,12,7,9,7,12,8,12,11,22,12,12,8,12,7,8,7,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,5,11,6,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,17,17,32,17,17,12,18,11,13,11,18,10,11,8,13,9,13,13,21,11,12,9,14,9,11,11,20,11,13,11,18,12,18,19,36,19,19,13,20,12,15,13,24,13,15,12,20,13,19,18,32,17,19,14,23,15,20,19,34,19,23,19,33,23,34,34,66,33,33,23,34,19,23,19,34,18,20,15,24,15,20,19,36,19,19,14,21,13,16,14,25,14,16,12,20,14,20,19,35,18,18,12,18,11,13,11,20,11,12,9,14,9,12,11,21,11,12,9,14,9,12,11,18,10,12,10,18,12,17,17,34,18,18,12,18,11,13,11,19,10,11,8,12,8,11,10,19,10,10,8,12,7,8,7,14,8,10,8,14,9,13,13,22,12,12,8,12,7,9,7,14,8,8,6,10,7,9,8,16,9,9,7,11,7,8,7,14,8,10,8,14,10,14,13,26,14,14,9,13,8,9,8,12,7,8,6,9,6,9,8,16,8,8,6,8,5,6,5,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,16,9,9,7,10,6,7,7,13,7,8,7,12,8,12,12,26,14,14,10,14,9,11,9,16,9,10,7,11,8,11,11,18,10,11,8,12,7,9,9,16,9,9,7,12,8,11,11,24,13,13,9,14,9,11,10,17,10,11,8,13,9,12,11,20,11,12,9,14,9,12,11,19,11,13,11,18,13,19,19,42,21,21,14,20,12,14,12,19,10,10,8,12,8,11,11,22,12,12,9,13,8,11,10,16,9,10,8,14,10,14,13,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,9,8,15,8,9,7,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,6,10,7,10,9,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,14,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,4,3,2,2,2,2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16 +12,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,5,3,4,3,4,2,3,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,23,12,12,8,13,8,10,8,15,8,9,8,12,8,12,11,20,11,12,9,15,10,13,12,21,12,15,12,20,14,21,21,41,21,21,14,21,12,15,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,12,6,7,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,8,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,12,12,26,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,4,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,4,6,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,7,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10 +17,9,8,6,9,5,6,5,9,5,5,4,6,4,4,4,9,5,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,4,4,2,2,2,4,3,4,4,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,7,11,6,6,4,6,4,6,5,8,5,5,4,8,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,9,6,8,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,7,4,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,6,5,10,6,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,31,16,16,11,17,10,13,11,19,11,12,10,16,11,15,15,27,15,16,12,20,13,17,16,29,17,20,16,27,19,28,28,55,28,28,19,28,16,20,17,29,15,16,12,21,13,18,17,31,16,16,12,18,11,14,13,22,12,14,11,19,13,18,17,29,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,10,9,15,10,14,14,29,15,14,10,15,9,10,9,15,8,8,6,11,7,10,9,15,8,8,6,10,6,7,6,12,7,8,7,12,8,11,11,20,11,11,7,10,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,8,5,7,6,11,7,8,7,12,8,12,11,21,11,11,8,11,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,9,5,6,6,12,7,8,7,10,7,10,10,22,12,12,8,12,7,9,8,14,8,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,11,7,9,8,13,7,8,7,10,7,10,9,17,9,10,8,12,8,10,9,16,9,11,9,15,11,16,16,36,18,18,12,18,10,12,10,17,9,10,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,11,8,12,12,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,10,7,10,10,21,11,10,7,10,6,8,7,12,7,7,6,10,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,11,6,6,5,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +16,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,5,6,5,8,6,9,9,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,9,6,10,6,8,7,14,8,9,8,13,9,13,13,23,12,13,9,13,8,9,8,14,8,8,6,10,7,10,10,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,29,15,15,11,16,10,12,10,18,10,11,9,15,10,14,14,26,14,15,11,18,12,16,15,27,16,18,15,26,18,26,26,51,26,26,18,27,16,19,16,27,15,16,12,19,12,16,16,29,15,16,11,17,10,13,12,21,12,13,11,18,12,17,16,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,16,9,9,7,10,6,9,8,15,8,10,8,14,9,13,13,27,14,14,9,14,8,9,8,14,8,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,19,10,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,21,11,11,8,11,7,8,7,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,8,10,8,14,10,15,15,34,17,17,12,17,10,11,9,16,9,9,7,11,7,10,9,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,9,9,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,13 +29,15,14,10,14,8,9,8,14,8,9,7,10,6,8,7,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,17,9,9,7,10,6,7,5,8,5,5,5,8,5,7,7,12,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,11,6,6,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,4,7,4,4,4,6,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,16,16,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,9,16,9,9,6,8,5,6,5,7,4,4,4,6,4,5,4,13,7,7,5,7,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,6,9,9,10,6,6,4,5,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,12,19,10,10,7,10,6,8,7,13,8,9,7,11,8,11,11,21,11,12,9,14,9,11,10,17,10,11,9,16,11,16,16,34,18,18,13,19,11,12,10,18,10,10,8,12,8,11,10,19,10,10,7,11,7,8,7,13,8,9,8,13,9,12,12,25,13,13,9,12,7,8,7,11,7,8,6,10,6,8,8,15,9,10,8,12,8,10,10,18,10,12,10,17,11,16,16,34,18,18,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,11,8,12,8,10,9,15,9,10,8,13,9,12,11,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,18,18,33,17,17,12,17,10,11,9,15,8,9,7,11,7,10,9,17,9,9,7,11,7,9,8,14,8,10,8,13,9,12,11,20,11,11,8,13,8,10,9,15,9,10,8,14,10,14,14,28,15,16,12,19,12,16,15,28,16,19,16,27,18,25,25,44,22,22,15,23,13,16,14,24,13,14,11,19,13,18,18,34,18,20,15,23,14,18,17,32,18,21,17,29,20,29,29,56,29,30,21,33,19,24,21,38,21,23,18,30,19,26,25,49,26,28,20,32,20,27,25,47,27,32,27,47,32,48,49,98,49,49,33,50,28,33,28,49,26,28,21,34,22,30,29,55,28,29,21,32,19,24,22,40,22,25,20,33,21,30,30,50,26,26,18,26,15,18,15,27,15,16,12,20,13,17,16,30,16,17,13,20,12,15,14,26,15,17,15,26,17,25,25,52,26,26,18,27,15,17,14,24,13,15,11,18,12,16,15,27,14,15,11,16,10,12,11,19,11,13,11,19,13,19,18,36,19,19,13,20,12,14,12,21,11,12,9,14,9,12,12,22,12,13,10,15,9,12,12,22,13,15,12,20,14,20,20,38,20,20,14,21,12,14,12,20,11,11,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,10,8,14,9,13,13,24,13,13,10,15,9,11,10,17,9,10,8,12,8,11,11,22,12,12,9,14,9,11,10,18,11,13,11,18,12,17,17,39,20,20,14,21,12,15,13,23,12,13,10,16,10,14,14,27,14,15,11,16,10,12,11,19,11,13,10,17,12,18,18,34,18,18,13,20,12,14,12,21,12,14,11,18,12,16,16,30,16,17,13,20,13,17,16,29,16,19,16,27,18,27,27,65,33,33,22,33,19,22,18,32,17,18,13,21,13,18,17,32,17,17,12,18,11,13,12,21,12,14,12,20,13,19,19,32,17,17,12,18,10,12,11,19,10,11,9,14,9,12,11,20,11,11,8,12,8,10,9,16,9,11,9,16,11,16,16,36,19,19,13,19,11,14,12,21,12,13,10,17,11,15,14,26,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,28,15,15,10,15,9,11,9,15,8,9,7,11,8,11,10,19,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,29,15,15,10,14,8,10,9,15,9,10,8,12,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,14,7,7,5,8,5,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,23 +15,8,8,6,7,4,5,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,6,4,4,3,3,2,3,3,4,3,3,2,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,16,11,17,10,12,11,20,11,12,10,16,10,14,14,25,14,14,11,17,11,14,13,24,14,17,14,24,17,25,25,50,25,25,17,26,15,17,14,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,10,17,11,16,16,26,14,14,9,14,8,10,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,8,8,13,8,9,8,14,9,13,13,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,6,5,8,5,6,6,12,7,7,6,8,5,6,6,12,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,5,6,5,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,12,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,20,10,10,7,11,6,8,7,12,7,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,9,8,15,9,10,8,14,10,14,14,34,17,17,12,17,10,12,10,16,9,10,7,11,7,10,9,16,9,9,6,9,6,7,6,11,7,8,7,11,7,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,15,8,8,5,7,5,6,5,8,5,6,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,12 +15,8,8,6,7,5,6,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,9,14,8,8,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,10,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,6,4,6,5,10,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,24,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,9,15,10,15,15,30,16,16,11,18,10,12,11,20,11,12,10,17,11,14,14,26,14,14,11,17,11,15,14,25,15,18,15,25,17,26,26,50,26,26,18,27,15,18,15,25,13,14,11,18,12,16,15,29,15,16,11,17,10,13,12,22,12,14,11,18,12,16,16,26,14,14,9,14,8,10,9,14,8,8,7,11,7,9,9,16,9,10,7,11,7,9,8,13,8,10,8,14,10,14,13,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,18,10,10,7,11,7,8,7,12,6,6,5,8,5,6,6,12,7,8,6,8,5,6,6,12,7,8,6,10,7,10,11,21,11,12,8,11,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,7,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,6,4,7,5,7,7,12,6,6,5,7,5,6,6,9,5,6,6,9,6,9,9,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,10,9,15,9,10,8,15,10,14,15,35,18,17,12,18,10,12,10,16,9,10,7,12,8,10,9,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,11,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,16,8,8,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,4,6,4,5,5,6,4,4,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,6,6,11 +11,6,6,4,5,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,11,13,11,18,12,18,18,35,18,18,12,19,11,12,10,17,9,10,8,13,9,12,11,20,11,11,8,12,7,9,8,15,9,10,8,13,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,9,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,5,6,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,9,5,6,5,7,5,7,8,15,8,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,6,4,7,5,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,24,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,4,3,3,3,5,4,5,5,5,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,8 +16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,7,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,5,3,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,7,10,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,18,10,10,8,12,7,8,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,5,9,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,6,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,5,7,4,5,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,5,8,6,8,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,15,14,26,13,13,9,12,7,8,7,14,8,9,7,11,7,10,10,19,11,12,9,14,9,12,11,19,11,12,10,16,11,15,15,32,17,17,12,18,11,13,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,15,15,27,15,18,15,27,18,27,28,53,27,27,19,28,16,19,15,26,14,16,12,20,13,17,16,31,16,16,12,18,11,14,13,23,13,15,12,20,13,18,17,29,15,14,10,14,9,11,9,16,9,9,7,12,8,10,10,17,9,10,8,12,7,9,8,13,8,10,8,14,10,14,14,29,15,15,10,15,9,10,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,7,6,13,8,9,7,11,8,11,11,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,6,7,6,10,7,10,9,20,11,11,7,10,6,7,6,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,10,7,10,10,20,10,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,8,6,10,7,9,9,16,9,10,9,15,10,15,15,37,19,18,12,18,10,12,11,17,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,14,8,9,8,13,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,6,4,6,6,11,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,2,2,2,1,1,1,4,3,3,2,2,2,3,3,5,3,4,3,4,3,5,5,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,8,4,4,3,4,3,5,5,6,4,4,3,4,3,4,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,11 +9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,5,5,8,5,6,4,7,5,6,6,11,6,7,5,8,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,17,9,9,7,11,7,9,9,16,9,11,9,16,11,16,16,31,16,16,11,16,10,11,9,15,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,13,8,9,7,12,8,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,4,4,4,6,4,6,6,12,7,7,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,6,9,6,9,9,22,11,11,8,11,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7 +11,6,6,4,7,4,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,8,6,8,8,11,6,6,4,7,4,4,4,8,4,4,3,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,6,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,6,11,6,6,5,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,12,11,20,10,10,7,10,6,6,6,10,6,7,5,8,6,8,8,14,8,8,6,10,7,9,8,14,8,9,8,12,8,12,12,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,15,9,12,11,21,12,14,12,21,14,21,21,38,20,20,14,20,12,14,12,19,11,12,9,14,9,12,12,23,12,13,9,14,8,10,9,16,9,10,8,14,9,12,12,22,12,12,8,11,7,8,7,12,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,6,5,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,10,7,10,6,6,5,8,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,8,7,14,8,8,5,7,4,5,5,8,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,27,14,14,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,7,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,6,6,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,8,11,11,20,11,11,8,13,8,11,10,18,11,13,11,18,13,19,19,34,17,17,12,18,10,12,10,17,10,11,8,13,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,10,20,11,11,7,10,6,7,6,10,6,7,5,7,5,6,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,7,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,7 +18,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,7,5,8,5,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,5,6,5,8,6,9,9,12,7,7,5,7,5,6,6,10,6,7,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,11,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,16,9,9,6,8,5,6,5,8,5,6,5,8,5,6,6,7,4,5,4,7,5,7,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,10,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,10,6,8,7,12,9,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,6,8,7,14,8,8,6,9,5,6,5,9,5,6,5,8,6,9,9,18,9,9,6,9,6,7,6,10,6,7,6,9,7,10,10,16,9,10,7,11,7,10,10,18,10,12,10,17,12,18,18,31,16,16,11,16,9,11,10,17,9,10,8,14,9,12,11,23,12,13,10,16,10,12,11,20,11,13,11,20,13,19,19,37,19,20,14,20,12,16,14,26,14,16,13,21,14,20,19,36,19,20,15,24,15,20,18,33,19,22,19,34,23,34,34,62,32,32,22,32,18,21,18,32,17,18,14,23,15,20,19,39,20,20,14,20,12,15,13,24,13,15,12,20,13,18,18,36,19,19,13,18,11,13,11,18,10,11,9,14,9,11,11,22,12,12,9,13,8,10,9,16,9,11,9,16,11,15,15,34,17,17,12,17,10,12,10,18,10,11,8,12,8,11,11,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,23,12,11,8,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,30,15,15,10,15,9,10,8,14,8,8,7,11,7,9,8,12,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,15,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,9,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,9,17,9,10,8,12,7,9,8,14,8,9,8,14,9,13,13,24,13,13,9,12,8,10,9,15,8,9,7,11,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,18,18,43,22,22,15,21,12,14,12,22,12,13,10,16,10,13,12,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,13,22,12,12,9,13,8,9,8,14,7,7,5,8,5,7,7,15,8,8,6,8,5,7,7,12,7,9,8,13,9,12,12,23,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,18,9,9,7,10,6,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,6,8,5,6,5,8,5,5,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,7,7,4,5,4,5,3,3,3,4,2,2,2,2,2,2,2,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,7,5,6,6,10,6,7,5,8,5,7,7,12 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,7,4,5,4,7,4,4,3,5,4,5,4,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,7,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,13,7,7,6,9,6,7,6,11,6,7,6,11,8,11,11,20,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,13,8,11,10,18,10,12,11,19,13,19,19,34,18,18,12,18,10,12,10,18,10,10,8,13,8,11,11,21,11,11,8,11,7,9,8,13,8,9,7,11,7,10,10,20,11,11,7,10,6,7,6,10,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,10,6,7,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7 +11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,4,6,4,4,4,7,4,5,5,8,6,8,8,11,6,7,5,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,5,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,9,6,8,7,15,8,8,6,10,6,8,7,13,7,8,7,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,8,14,9,13,12,23,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,20,12,14,12,20,11,12,9,14,9,12,12,24,12,12,8,13,8,10,8,15,9,10,8,12,8,11,11,22,12,12,8,11,7,8,7,11,7,8,6,9,6,8,7,14,8,8,6,8,5,6,6,10,6,8,7,11,7,10,10,21,11,10,7,11,7,8,7,12,7,8,6,9,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,6,6,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,7,5,6,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,11,6,7,6,11,8,11,11,26,13,13,9,13,8,10,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,4,2,2,2,4,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,11,10,17,12,17,17,31,16,16,11,16,9,11,10,16,9,10,8,12,8,10,10,19,10,10,7,10,6,8,6,12,7,8,6,10,7,9,9,17,9,9,6,9,6,6,5,9,6,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,5,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,7,4,6,5,9,5,6,5,9,6,9,9,20,10,11,8,11,7,8,7,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,8,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,5,6,5,8,5,6,6,9,6,7,6,10,7,11,11,16,9,9,6,8,5,7,6,10,6,6,4,6,4,4,4,9,5,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,8,6,8,7,14,7,7,5,8,5,7,6,12,7,8,7,11,8,12,12,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,8,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,10,6,7,5,8,6,8,7,13,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,14,8,10,9,16,11,15,15,24,13,13,9,13,8,9,8,16,9,9,7,12,8,11,10,20,11,11,8,12,7,9,9,17,10,11,9,16,11,16,16,30,16,17,12,18,11,14,12,21,12,14,11,18,12,17,17,31,17,18,13,20,12,16,15,27,15,18,16,28,19,28,28,53,27,27,18,27,15,18,16,28,15,16,12,20,13,18,17,31,16,16,11,16,10,12,10,19,11,12,10,16,11,15,15,29,15,15,10,15,9,10,8,15,8,9,7,12,8,11,10,20,11,11,8,12,7,9,8,13,8,10,8,14,9,13,13,26,14,14,10,15,9,11,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,24,13,13,9,13,8,9,8,12,7,7,5,8,6,8,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,6,13,7,8,6,8,5,6,5,9,5,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,9,8,14,10,15,15,33,17,17,12,18,10,12,11,17,9,10,8,14,9,11,11,19,10,10,7,10,6,8,7,13,8,9,7,12,8,12,11,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,7,8,6,10,6,8,7,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,4,6,4,5,4,8,5,6,5,7,5,7,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,7,4,5,4,5,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,11 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,6,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,5,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,4,7,5,6,6,9,6,7,6,11,7,10,10,16,9,9,6,9,6,6,6,11,6,6,5,8,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,18,10,12,11,18,12,18,18,34,18,18,12,18,10,12,11,18,10,11,8,13,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,17,9,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,7,6,9,6,8,7,13,7,7,5,7,4,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,3,4,3,3,2,4,2,3,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,5,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,15,8,8,6,8,5,6,5,7,4,4,4,6,4,6,5,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,7,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,8,8,13,8,10,8,15,10,14,14,23,12,12,9,13,8,9,8,15,8,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,15,29,15,16,11,17,10,12,11,20,11,12,10,17,11,16,15,29,15,16,12,19,12,16,15,27,15,18,15,26,18,26,26,49,25,26,18,26,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,27,14,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,12,7,8,7,14,8,9,7,13,9,12,12,25,13,14,10,13,8,10,9,15,8,9,7,11,7,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,9,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,7,5,6,6,9,5,6,5,10,7,10,10,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,10,6,7,6,11,6,6,5,9,6,9,9,16,9,9,7,10,6,8,8,14,8,10,8,14,10,14,14,31,16,16,11,17,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,8,6,8,9,19,10,10,7,9,5,6,6,10,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,6,4,6,6,10 +11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,8,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,8,8,13,8,9,8,14,10,14,14,22,12,12,8,12,8,9,8,14,8,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,11,16,10,12,11,20,11,12,10,17,11,15,15,28,15,16,12,19,12,16,14,26,15,18,15,26,17,25,25,48,25,25,17,26,15,18,15,26,14,16,12,19,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,15,10,14,14,26,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,8,7,14,8,9,7,12,8,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,30,16,16,11,16,10,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,19,10,10,7,9,5,6,6,10,6,6,5,8,6,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,10 +20,10,10,7,10,6,8,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,8,8,8,5,5,4,6,4,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,7,7,12,7,7,6,10,7,9,9,17,9,10,8,12,8,10,10,18,10,12,11,19,13,19,19,25,13,13,9,13,8,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,5,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,20,11,11,8,12,8,10,9,16,9,11,9,14,9,12,12,22,12,12,9,15,10,13,12,23,13,16,13,22,15,21,21,27,14,15,11,16,9,11,10,17,9,10,8,12,8,11,10,19,10,11,8,12,7,9,9,16,9,10,8,13,9,12,12,24,13,13,9,13,8,9,8,13,7,8,6,9,6,9,9,17,9,10,7,10,7,9,8,14,8,10,8,14,10,15,15,32,16,16,11,17,10,13,12,21,12,13,10,16,10,13,12,23,12,12,8,11,7,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,15,8,9,7,12,8,11,11,20,11,12,9,13,9,12,11,21,12,14,12,20,13,19,19,35,18,18,12,18,11,13,11,20,11,12,10,17,11,15,14,26,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,26,14,14,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,17,12,18,11,15,14,26,15,18,15,27,18,26,26,42,22,22,15,23,13,16,14,24,13,15,12,19,12,17,16,31,16,16,12,18,11,15,14,26,15,18,16,28,19,27,27,54,28,28,19,29,17,22,19,34,18,20,16,27,18,26,25,49,26,28,21,34,21,28,26,50,28,33,28,50,33,49,49,94,48,48,32,48,27,31,26,46,24,26,19,31,20,27,25,47,24,25,18,27,16,19,17,31,17,20,16,26,17,25,25,49,25,26,18,26,15,18,16,28,15,16,12,18,12,16,15,28,15,16,12,18,11,15,14,25,14,16,13,22,15,22,22,47,24,23,16,23,13,16,14,25,14,15,12,19,12,16,15,28,15,15,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,16,11,15,9,10,9,16,9,10,8,13,9,12,11,21,11,12,9,13,8,11,10,19,11,13,11,19,13,19,19,43,22,22,15,22,13,16,14,25,13,14,11,18,11,15,13,24,13,13,9,14,8,10,9,15,8,9,7,12,8,11,11,20,10,10,7,10,6,7,7,12,7,8,7,11,8,11,10,19,10,11,8,12,8,11,10,19,11,12,10,18,12,17,17,24,13,13,10,15,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,10,7,9,9,16,9,11,10,17,11,16,16,30,16,16,11,17,10,13,11,20,11,11,9,14,9,13,12,23,12,13,10,17,10,13,12,23,13,16,14,26,18,26,26,59,30,30,21,32,18,22,19,33,18,19,14,23,14,19,18,34,18,19,13,20,12,14,13,23,13,15,12,19,13,19,19,36,19,19,13,19,11,13,11,18,10,11,9,14,9,12,12,23,12,13,10,15,9,11,10,19,11,13,10,17,12,17,16,37,19,19,13,19,11,13,11,19,10,10,7,11,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,8,11,11,20,11,11,7,10,6,7,7,12,7,8,6,9,6,7,6,11,6,7,5,8,5,7,6,11,7,9,8,14,10,15,15,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,9,9,18 +10,6,6,4,6,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,7,4,5,5,8,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,3,3,4,3,4,3,5,4,5,5,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,14,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,9,6,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,13,25,14,15,11,17,11,14,13,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,14,10,16,10,14,13,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,8,8,7,12,8,11,11,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,8,14,10,14,14,30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,8,6,8,8,11,6,6,5,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,10 +10,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,6,4,4,4,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,4,3,4,3,4,3,5,5,2,2,2,2,1,1,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,13,7,8,7,12,8,12,11,14,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,10,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,10,6,8,7,11,6,7,5,9,6,8,7,12,7,7,5,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,17,9,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,10,7,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,15,15,27,14,14,10,15,9,11,10,17,10,11,9,15,10,14,13,25,14,15,11,17,11,14,13,26,15,18,15,26,18,26,26,48,25,25,17,25,14,16,14,24,13,14,10,17,11,15,14,24,13,13,9,14,8,10,9,16,9,10,8,13,9,12,12,26,14,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,14,8,8,7,12,8,11,11,25,13,12,8,13,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,7,12,7,8,6,9,6,8,7,12,8,10,9,14,10,14,14,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,6,6,10 +7,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,4,3,3,3,6,3,3,3,4,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,4,4,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,7,7,5,7,4,6,5,8,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,7,12,7,8,7,11,7,10,10,17,10,10,8,12,8,10,9,18,10,13,11,18,12,18,18,33,17,17,12,17,10,11,9,17,9,10,7,12,8,10,10,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,9,18,10,10,7,9,6,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,4,6,5,8,5,6,4,7,4,6,5,8,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,12,6,7,6,8,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,6,4,4,4,8,4,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,13,7,7,5,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,3,3,4,3,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,6,8,7,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,10,5,5,4,5,4,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,13,7,7,6,9,6,7,7,10,6,7,6,10,7,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,15,21,11,11,8,12,7,9,8,13,8,9,7,11,7,9,9,18,10,10,7,10,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,25,13,14,11,18,11,15,14,26,15,18,16,28,19,27,27,49,25,25,17,26,14,16,13,25,13,14,11,17,11,15,14,25,13,14,10,14,8,10,9,16,9,10,8,14,9,13,13,28,15,15,10,14,8,9,8,15,8,9,7,11,7,8,8,15,8,8,6,9,6,8,7,14,8,9,7,12,8,12,12,26,13,13,9,14,8,9,8,14,8,8,6,10,7,9,9,17,9,9,7,10,6,7,7,11,6,7,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,7,6,10,5,5,4,6,4,4,4,5,3,4,4,6,4,5,5,11,6,6,5,8,5,7,6,9,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,10,6,6,4,6,4,6,5,10,6,7,6,9,6,9,8,17,9,9,7,10,6,7,6,12,7,7,6,10,6,8,8,12,7,7,6,10,6,7,7,12,7,9,9,16,11,16,15,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,21,11,11,7,10,6,8,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,8,21,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,6,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,2,3,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,11 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,5,8,5,6,5,8,6,8,9,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,7,10,7,9,8,15,9,11,9,16,11,16,16,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,4,3,5,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,4,7,5,6,5,9,6,9,9,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,5,3,4,3,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,6,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,5,6,5,8,5,7,7,10,6,6,5,9,5,6,6,10,6,7,6,10,7,10,10,15,8,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,8,12,8,11,10,18,11,13,11,19,13,19,19,34,18,18,12,19,11,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,7,10,9,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,8,7,10,6,7,5,8,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,9,5,6,5,7,5,6,6,9,5,6,4,7,4,5,4,7,4,5,4,5,4,6,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,3,3,3,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,6,6,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,15,8,7,5,7,5,6,5,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,7,7,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,5,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,13,7,8,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,9,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,30,15,15,11,16,9,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,7,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,5,4,4,4,5,3,3,3,4,3,5,5,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,5,4,5,5,7,4,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6 +10,6,6,5,7,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,11,6,5,4,5,3,4,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,16,9,9,6,8,5,6,6,10,6,6,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,11,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,8,6,10,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,10,6,8,8,14,8,9,7,10,6,7,7,12,7,7,6,10,7,10,10,15,8,8,6,10,7,9,9,16,9,10,9,15,11,16,16,24,13,13,9,14,8,10,8,14,8,9,7,12,8,11,10,18,10,11,8,12,7,9,9,16,9,11,10,17,11,16,16,29,15,15,11,17,10,12,10,18,10,12,9,15,10,14,14,27,15,16,12,20,12,16,15,28,16,20,17,29,19,28,28,54,27,27,18,26,15,17,15,26,14,15,11,17,11,15,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,14,30,16,16,11,17,10,11,9,16,9,9,7,11,7,9,9,14,8,8,6,9,6,8,8,14,8,10,8,13,9,13,13,28,15,15,11,16,9,11,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,11,8,11,11,28,15,15,10,15,9,10,8,14,8,9,7,11,7,9,9,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,13,7,8,6,8,5,5,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,9,7,10,6,7,6,10,6,6,4,6,4,5,4,11,6,7,5,8,5,6,6,11,6,7,6,10,6,8,8,21,11,11,8,13,8,10,8,14,8,9,7,10,7,9,9,16,9,9,7,11,7,8,8,14,9,11,9,16,11,16,16,31,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,11,7,9,8,15,9,10,8,13,9,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,6,8,8,21,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,4,3,5,5,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10 +5,3,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,11,7,9,8,15,9,11,9,16,11,15,15,29,15,15,10,14,8,10,8,14,8,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,6,6,5,8,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,5,6,5,8,6,8,8,8,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,5,8,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,9,10,8,13,8,10,9,17,10,12,10,18,12,17,17,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,5,6,6,10,6,7,6,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,9,5,5,4,6,4,6,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,6,4,5,3,4,4,6,4,4,3,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,13,7,6,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,10,7,10,10,18,9,9,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,5,12,6,6,5,8,5,6,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,4,6 +4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,7,4,5,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,13,8,9,8,14,9,13,13,24,12,12,9,13,8,9,8,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,14,7,7,5,8,5,6,5,7,4,4,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,6,5,8,5,7,7,9,5,5,4,6,4,4,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,4,5,5,11,6,6,5,8,5,6,6,9,5,6,6,10,7,10,10,9,5,6,4,6,4,4,4,5,3,3,2,3,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,7,5,6,6,9,5,5,4,7,4,5,5,8,5,5,4,5,4,5,4,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,9,9,12,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,6,8,7,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,7,11,8,11,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,22,22,40,21,21,14,21,12,14,12,20,11,11,8,12,8,11,10,20,11,11,7,10,6,8,7,12,7,8,7,11,7,10,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,10,6,7,6,10,7,10,10,21,11,11,7,10,6,7,6,12,7,7,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,8,5,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,5,8,6,8,8,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,5,4,5,4,5,5,6,4,5,4,6,4,6,7,10,5,5,4,6,4,4,3,7,4,4,3,4,3,3,3,8,4,4,3,4,3,5,5,7,4,5,4,6,4,6,5,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,7,6,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,6,8,7,13,7,8,6,8,5,7,6,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,4,5,4,9,5,5,4,6,4,6,6,16,9,9,6,9,6,7,6,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,7,4,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,13,8,9,8,13,7,7,6,8,6,7,7,12,7,7,5,7,4,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,7,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,7,4,5,5,8,5,6,5,8,6,9,9,7,4,5,4,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,6,5,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,7,10,10,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,10,10,19,10,11,9,14,9,12,11,20,12,14,11,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,12,8,10,9,16,9,9,6,9,6,8,7,11,7,8,6,9,6,9,9,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,18,9,9,6,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,4,6,4,4,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,6,5,8,5,7,7,20,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,13,7,7,5,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,9,5,6,6,10,6,7,6,11,8,11,11,17,9,9,7,9,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,7,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,4,2,2,2,3,3,4,4,6 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,10,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,7,12,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,19,13,19,19,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,9,9,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,9,6,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,6,5,9,5,6,5,7,5,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,5,6,3,3,3,3,2,3,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,13,7,7,5,8,5,6,5,9,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5 +7,4,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,5,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,3,2,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,6,8,8,14,8,10,9,16,11,16,16,13,7,7,5,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,11,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,7,5,8,5,7,6,11,7,8,7,12,9,14,14,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,18,10,10,7,10,6,8,7,11,7,8,6,10,7,9,8,14,8,9,7,10,6,8,7,12,7,9,8,14,10,14,15,20,11,11,8,12,7,8,7,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,7,12,7,8,7,12,8,11,11,17,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,11,13,11,18,12,18,19,32,17,17,12,17,10,12,10,18,10,11,9,14,9,13,12,23,12,12,9,14,9,11,11,20,11,13,11,18,13,19,19,33,17,17,12,19,11,14,12,22,12,14,11,19,13,18,18,34,18,19,14,23,15,20,19,36,21,25,21,37,25,37,37,69,35,35,23,33,19,22,18,31,16,17,12,19,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,12,17,16,36,18,18,13,19,11,13,11,18,10,10,8,12,8,11,11,21,12,13,10,15,9,12,11,19,11,12,10,16,11,16,16,32,17,17,12,17,10,11,9,15,8,9,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,24,13,13,9,13,8,10,9,15,8,9,7,10,6,8,7,12,7,8,6,10,6,8,7,13,8,9,8,13,9,13,13,36,19,19,13,20,11,13,11,19,10,11,8,12,8,11,10,18,10,10,7,9,6,7,7,12,7,7,6,10,6,8,8,10,6,6,5,7,5,6,6,10,6,7,6,9,6,8,7,12,7,8,6,10,6,8,7,13,8,9,7,11,7,10,10,16,9,9,7,10,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,6,4,5,4,7,5,8,8,24,13,13,9,14,9,11,10,17,9,10,8,12,8,11,11,20,11,11,8,13,9,12,12,22,13,15,12,21,14,20,20,30,15,15,11,16,10,12,10,17,9,10,8,12,8,11,11,20,11,11,8,13,8,10,9,15,9,10,8,12,8,12,12,23,12,12,8,12,7,9,8,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,7,6,9,6,9,9,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,7,12,7,8,6,10,6,8,7,13,7,8,7,12,8,10,10,11,6,7,5,7,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,6,10,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,6,7,5,8,5,7,6,10,6,6,5,8,5,7,7,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,4,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,5,9 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,16,8,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,8,12,8,11,10,19,11,13,11,19,13,20,20,36,19,19,12,18,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,7,6,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,5,12,7,7,5,7,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,5,3,3,3,3,3,4,3,5 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,5,3,4,4,5,3,4,4,5,4,6,5,6,3,3,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,4,7,4,5,5,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,8,8,12,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,5,7,4,5,4,7,4,4,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,7,6,10,7,11,11,17,9,9,6,10,6,7,6,11,6,7,6,9,6,7,7,13,7,6,5,7,5,6,6,11,7,8,7,10,7,10,11,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,8,13,8,11,10,20,12,14,12,20,14,21,21,38,20,20,13,19,11,13,11,17,9,9,7,10,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,10,7,10,9,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,7,20,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,4,3,5,3,3,3,6,3,2,2,3,2,2,2,4,3,4,3,4,3,5,5,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,8,12,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,4,5,5,6,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,5,3,3,3,3,3,4,4,6 +3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,5,3,3,3,4,3,3,3,5,4,4,4,6,5,7,7,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,3,5,3,3,3,5,4,4,4,7,4,5,4,6,4,4,4,7,4,5,5,8,6,8,8,12,6,6,5,7,4,5,4,8,5,5,4,7,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,15,15,28,14,14,10,14,8,9,8,13,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,5,8,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,14,8,8,6,8,5,5,4,8,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4 +3,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,5,3,4,4,7,5,7,7,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,10,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,5,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,13,7,8,6,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,5,4,7,4,5,4,7,5,7,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,8,5,7,7,12,7,8,7,12,9,13,13,22,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,23,12,13,9,14,9,12,11,23,13,16,13,23,16,23,23,44,22,22,15,21,12,14,12,20,11,11,8,12,8,10,10,18,9,9,7,10,7,9,8,13,8,9,7,12,8,11,10,21,11,10,7,10,6,7,6,10,5,5,4,6,4,6,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,10,6,6,5,8,5,6,5,9,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,5,6,5,9,5,5,4,6,4,4,4,9,5,5,4,7,5,8,8,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,6,4,5,4,6,4,4,3,5,3,3,3,5,4,5,5,7,4,4,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,12,8,12,12,17,9,9,7,10,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,8,5,6,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,5,14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,6 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,14,8,10,8,14,10,14,14,26,14,14,9,13,8,9,8,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,4,5,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,3,5,3,4,3,6,4,6,6,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,8,11,6,6,4,6,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,6,6,10,7,10,10,14,8,8,6,9,5,6,6,10,6,6,5,9,6,7,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,11,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,17,10,12,10,16,9,9,7,11,7,9,8,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,17,9,8,6,8,5,6,5,8,4,4,3,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,6,8,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,6,5,7,4,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,4,5,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,4,4,4,8,5,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,6,6,9,7,10,10,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,8,17,9,10,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,8,6,7,7,15,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 +2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,2,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,6,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,8,5,5,4,6,4,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,4,7,4,5,5,8,5,6,5,8,5,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,10,6,8,8,14,8,10,8,14,9,13,13,23,12,12,9,13,8,9,8,13,7,7,6,9,6,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,13,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,15,8,9,6,9,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,15,16,25,13,14,10,14,9,11,10,18,10,11,8,12,8,11,10,20,11,11,8,11,7,10,9,16,9,11,10,17,12,18,18,31,16,16,12,18,11,13,11,20,11,13,10,16,11,15,15,31,17,18,13,21,13,17,16,30,17,20,17,31,21,31,31,59,30,30,20,30,17,19,16,28,15,15,11,17,11,15,14,27,14,14,10,16,9,11,10,18,10,12,9,15,10,13,13,27,14,14,10,14,8,10,8,14,8,8,7,11,7,9,8,16,9,9,7,11,7,8,8,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,16,9,9,7,12,8,10,9,15,8,8,6,10,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,13,8,9,8,13,7,7,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,31,16,16,11,16,9,11,9,15,8,9,7,11,7,9,8,12,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,17,9,9,7,11,7,9,8,14,8,9,7,10,7,9,9,19,10,11,8,12,7,9,9,16,9,11,9,16,11,16,16,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,14,8,8,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,3,4,4,6,4,5,4,6,4,6,5,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,4,5,4,5,4,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,8,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,6,8,5,7,6,10,6,7,5,7,5,7,6,11,6,7,5,7,4,6,5,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,17,12,17,17,33,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,5,5,8,4,5,4,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,7,5,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,6,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,9,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,13,7,8,6,8,5,6,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,9,8,14,8,8,7,12,8,10,10,21,11,12,9,13,9,12,11,20,12,14,12,20,14,20,20,39,20,20,13,20,11,13,11,19,10,11,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,5,9,5,6,4,5,3,4,4,8,4,4,4,6,4,5,4,7,4,5,4,7,5,8,8,20,10,10,7,11,7,8,6,10,6,6,5,8,5,6,5,9,5,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,4,2,2,2,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,11,6,7,6,11,7,10,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,11,6,7,5,7,5,6,6,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,17,9,10,7,11,7,10,9,16,10,11,10,16,11,17,17,32,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,6,11,6,7,5,7,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4 +-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,4,3,4,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,6,6,10,7,9,9,10,5,5,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,4,6,4,5,5,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,9,5,6,4,6,4,4,4,7,4,5,5,8,6,8,7,12,7,8,6,9,6,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,7,4,5,4,8,5,5,5,8,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,6,5,7,7,12,7,7,5,8,6,8,7,12,7,8,7,11,8,11,12,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,8,14,8,9,8,14,10,15,15,26,13,13,9,14,8,10,9,17,9,10,8,12,8,11,11,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,15,29,15,16,12,19,12,17,16,28,16,19,16,28,19,28,29,55,28,28,19,28,16,18,15,27,15,16,12,18,11,15,14,27,14,14,10,15,9,11,10,17,9,10,8,14,9,13,12,23,12,12,8,12,7,8,7,14,8,9,7,12,8,10,9,15,8,9,7,10,7,9,8,16,9,10,8,13,9,13,13,25,13,13,9,14,8,9,8,16,9,9,7,10,6,8,8,14,8,9,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,11,8,11,7,8,7,13,7,8,6,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,10,10,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,13,7,7,5,6,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,7,6,12,7,7,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,9,8,14,10,15,15,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,4,4,5,3,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,18,9,9,7,10,6,7,6,12,6,7,6,8,5,7,7,13,7,7,6,8,6,7,6,11,6,8,6,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,11,8,11,10,20,11,11,8,13,8,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,12,10,18,10,11,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,6,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,10,6,6,5,7,4,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,7,6,9,5,5,4,7,4,6,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,6,5,8,6,9,9,9,5,4,3,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,4,4,7,4,5,5,8,6,8,7,13,7,8,6,8,6,8,7,13,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,7,7,12,6,6,5,6,4,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,9,11,9,17,9,10,8,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,11,21,11,12,10,16,11,16,15,30,16,17,13,19,12,16,15,29,17,20,16,28,19,28,28,53,27,27,18,27,15,18,15,27,14,15,11,18,11,15,14,27,14,14,10,15,9,11,10,16,9,10,8,14,9,12,12,22,12,12,8,13,7,8,8,13,7,8,7,11,7,10,9,16,9,10,7,10,7,9,8,16,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,8,11,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,9,8,16,9,10,7,10,6,8,8,14,8,10,9,15,11,16,16,19,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,8,6,8,8,13,7,6,5,7,4,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,8,5,6,5,8,6,9,9,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,9,6,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25,13,13,10,14,9,11,9,16,9,10,8,11,7,10,10,19,10,11,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,12,21,11,12,10,16,11,16,15,30,16,17,13,20,12,16,15,29,16,19,16,28,19,28,28,52,26,26,18,26,15,18,15,27,14,15,11,18,11,15,14,26,14,14,10,15,9,11,10,16,9,10,8,13,9,12,12,22,12,12,8,13,8,9,8,13,7,8,7,11,7,10,9,16,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,8,8,16,9,9,7,10,6,8,8,14,8,10,9,15,11,16,16,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,7 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,4,3,5,5,8,5,5,4,6,5,7,7,12,7,7,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,9,17,9,10,8,12,8,11,11,20,11,13,11,19,13,18,18,15,8,8,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,8,7,11,8,12,12,22,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,13,10,16,10,13,12,23,13,15,12,21,14,21,21,27,14,14,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,11,8,12,8,10,9,17,10,11,9,15,10,14,14,26,14,14,10,15,9,11,10,17,10,11,9,14,9,13,12,23,13,14,11,17,11,14,13,24,14,16,13,23,15,22,22,44,22,22,15,21,12,14,12,22,12,13,10,16,10,14,14,27,14,15,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,12,9,13,8,9,8,14,8,9,8,13,9,13,12,23,12,13,9,14,9,12,11,21,12,13,11,19,13,19,20,35,18,18,12,18,11,14,12,22,12,13,10,16,11,15,14,27,14,14,10,15,9,12,11,19,11,13,10,17,11,16,16,31,16,16,12,18,11,13,11,20,11,13,11,18,12,17,17,32,17,18,13,20,13,17,16,30,17,19,15,26,18,26,25,49,25,25,17,26,15,19,17,30,16,18,13,21,13,18,17,32,17,17,12,19,12,16,15,27,15,17,14,24,16,23,23,44,23,23,16,25,15,19,17,30,17,19,16,28,19,27,26,51,27,29,22,35,22,30,28,54,30,36,31,55,37,54,54,103,52,52,35,51,28,33,28,49,26,28,20,32,20,27,25,48,25,26,18,28,16,20,18,33,18,21,17,28,18,26,26,50,26,26,18,26,15,17,14,25,14,15,12,19,12,17,16,30,16,17,13,20,12,16,14,25,14,17,14,24,16,24,24,48,24,24,16,24,14,17,15,26,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,13,7,8,7,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,17,18,51,26,26,17,25,14,17,14,25,13,14,11,18,12,16,15,28,15,15,11,16,10,13,11,20,11,12,9,15,10,13,13,25,13,13,9,14,8,10,9,16,9,9,7,12,8,11,10,19,10,11,8,11,7,9,8,15,8,9,8,13,9,13,13,25,13,13,9,13,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,38,19,19,13,20,12,15,13,23,13,14,11,18,12,17,16,30,16,17,12,19,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,12,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,11,10,19,10,11,9,15,10,15,15,28,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,20,10,10,7,9,5,6,6,10,6,6,5,7,5,7,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,7,10,6,7,6,11,6,7,5,7,5,6,6,10,5,5,4,5,4,5,4,7,5,6,5,8,6,9,9,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,5,4,5,3,4,4,6,4,5,4,7,5,8,8,14,7,7,5,7,4,5,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,13,25,13,13,9,13,8,10,9,15,9,10,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,8,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,52,26,26,18,26,15,17,14,25,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,10,11,9,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,10,6,9,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,10,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,9,6,10,7,9,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,6,5,9,6,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,4,3,4,3,4,4,7 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,7,11,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,8,6,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,6,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,13,8,10,9,15,9,10,7,12,8,10,9,17,9,10,7,10,6,8,8,14,8,10,8,13,9,12,12,23,12,12,9,14,8,10,9,16,9,11,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,53,27,26,18,26,15,18,15,26,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,9,10,8,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,5,9,5,6,5,9,7,10,10,27,14,14,9,13,8,10,8,12,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,8,6,10,7,9,8,15,9,10,9,16,11,15,15,18,9,9,7,10,6,6,5,10,6,6,5,8,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,4,3,4,4,7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,6,3,3,3,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,4,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,7,5,7,6,11,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,9,6,7,6,10,6,7,5,8,6,7,7,12,6,7,5,7,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,7,8,6,11,7,10,10,17,9,10,8,12,8,11,10,19,11,13,11,19,13,19,19,36,18,18,12,18,10,12,10,18,10,10,7,12,8,10,9,17,9,10,7,10,6,7,6,12,6,7,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,7,5,6,6,10,6,7,6,11,8,10,10,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,1,3,2,3,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,11,8,12,12,14,7,7,5,6,4,4,4,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,7,6,13,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,10,9,16,9,9,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,14,8,9,7,12,8,11,10,17,9,10,7,10,7,9,8,15,9,10,8,12,8,12,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,15,25,13,14,11,18,11,15,14,27,15,18,16,28,19,27,27,54,27,27,18,26,15,17,14,26,14,15,11,17,11,14,13,25,13,13,9,14,9,11,9,17,9,10,8,14,9,13,13,25,13,13,9,12,7,8,7,13,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,8,13,9,13,13,24,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,12,6,6,4,6,4,5,5,10,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,12,7,7,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,11,11,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,14,8,8,6,10,6,8,8,14,8,10,9,16,11,15,15,19,10,10,7,10,6,6,5,11,6,7,5,8,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,8,6,9,9,13,7,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,3,3,3,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,3,3,5,3,4,3,4,3,4,4,8 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,8,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,8,7,11,7,9,8,16,9,10,9,16,11,15,15,31,16,15,10,15,9,10,8,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,8,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,6,6,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,5,6,5,9,5,6,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,9,7,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,13,8,10,10,19,11,12,10,19,13,18,18,37,19,18,12,18,10,12,10,19,10,11,8,12,8,10,9,17,9,10,7,10,6,7,6,12,7,7,6,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,4,4,6,4,6,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,3,4,4,6 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,8,4,5,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,5,9,5,5,5,7,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,31,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,10,5,5,4,6,4,5,5,10,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,3,4,4,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,11,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,7,10,6,6,5,9,6,7,6,9,6,8,8,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,26,14,14,10,14,8,9,7,12,7,7,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,5,7,7,13,8,9,7,12,8,11,11,23,12,12,9,14,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,8,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,8,8,14,8,9,8,14,10,14,14,25,13,13,9,13,8,10,9,15,9,10,8,12,8,11,10,17,9,10,7,11,7,8,8,14,8,9,7,12,8,11,11,24,13,13,10,15,9,12,10,18,10,12,10,16,11,15,15,27,15,16,12,18,11,15,15,28,16,18,15,27,18,27,27,56,29,29,19,28,16,19,16,28,15,15,11,17,11,14,14,26,14,14,10,15,9,10,9,16,9,11,9,14,9,13,12,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,8,17,9,10,7,10,6,8,7,12,7,9,8,13,9,14,14,23,12,13,9,13,7,8,7,12,7,8,6,9,6,9,9,16,9,9,7,11,7,8,7,12,7,7,6,10,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,7,6,10,6,7,5,8,5,6,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,19,10,11,8,11,7,8,7,11,6,7,6,10,7,9,8,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,5,3,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,5,3,4,3,4,3,5,5,10 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,5,3,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,15,10,15,15,30,16,16,10,15,9,11,9,15,8,8,6,9,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,5,5,3,5,3,4,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,5,4,5,5,8,5,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,17,17,11,17,10,12,10,16,9,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,9,6,7,6,9,7,10,10,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,2,2,2,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,24,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,8,8,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,1,1,1,1,1,1,0,0,3,2,1,1,0,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,4,7,5,6,5,8,6,8,8,6,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,1,1,1,1,0,0,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,10,6,6,4,6,4,6,6,12,7,7,5,7,5,6,6,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,9,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,11,6,7,5,8,5,7,7,16,9,9,7,10,6,7,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,11,13,11,19,10,11,8,13,9,12,11,20,11,11,8,11,7,9,8,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,8,5,5,4,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,5,4,6,6,11,6,5,3,4,3,3,3,6,4,4,4,6,4,4,4,9,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,15,8,8,6,8,5,5,5,7,4,5,4,7,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,3,7,4,5,4,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,24,12,12,8,13,8,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,7,4,4,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5 +1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,5,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,7,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,7,9,9,16,9,11,9,17,11,16,16,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,2,2,3,5,3,4,3,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,5,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,8,8,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,9,16,9,11,9,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,11,6,6,5,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,10,5,5,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,7,6,11,8,11,12,8,4,4,3,5,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,11,6,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,5,6,5,9,7,10,10,14,8,8,5,7,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,8,12,13,29,15,16,11,16,9,10,8,14,8,8,7,11,7,9,8,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,11,7,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,20,11,12,9,13,8,10,10,18,10,12,10,17,11,15,15,31,16,16,11,15,9,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,11,9,14,9,13,12,25,13,13,10,15,9,12,10,18,10,11,9,16,10,14,14,26,14,15,12,19,12,16,16,30,17,20,17,29,20,29,29,59,30,31,21,31,18,21,18,31,17,18,13,20,13,17,16,31,16,16,11,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,10,7,9,9,16,9,11,9,14,10,14,14,25,13,14,10,15,9,10,9,16,9,9,7,12,8,10,9,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,11,8,12,7,9,8,14,8,9,7,11,7,9,8,15,8,9,7,11,7,9,8,15,9,11,9,15,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,9,6,7,6,11,6,7,5,7,4,5,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,7,12,8,11,11,20,11,11,8,13,8,10,10,18,11,13,11,18,12,18,18,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,9,6,9,9,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,10,5,5,4,5,3,4,3,4,3,3,3,5,4,5,5,11,6,6,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,6,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,6,4,4,4,7,5,7,7,12 +1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,6,4,6,6,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,8,6,10,7,9,9,16,9,11,9,15,10,15,15,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,6,6,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,7,5,7,7,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,2,2,2,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,6,4,6,6,10,6,6,4,7,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,31,16,17,12,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,5,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,8,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,5,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,9,5,4,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,6,4,6,6,10,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,4,5,4,4,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,5,8,5,7,7,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,4,4,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,2,3,2,3,2,3,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,4,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,6 +0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,7,4,5,4,7,5,7,7,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,5,5,8,5,7,7,16,9,9,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,15,8,9,7,10,6,7,7,10,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,9,9,17,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,14,8,9,7,12,8,10,9,17,10,11,10,17,12,17,17,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,10,19,10,10,8,12,7,9,7,11,6,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,11,6,6,5,8,5,6,5,9,5,6,6,10,7,9,9,14,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,10,7,9,9,16,8,8,5,7,5,6,5,6,4,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,4,3,5,5,9 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,4,5,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,5,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,4,4,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,4,4,4,6,4,6,5,7,4,4,4,6,5,7,7,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,10,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,5,6,4,5,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,10,6,6,5,8,6,7,7,12,7,9,8,13,9,13,13,22,12,11,8,11,7,8,7,12,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,-1,0,0,1,2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,4,3,4,3,4,4,6,4,5,5,8,6,8,7,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,9,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,7,7,12,7,8,7,12,8,11,11,23,12,12,9,13,8,10,8,14,8,9,7,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,8,5,6,5,13,7,7,5,7,5,6,6,10,6,7,7,12,8,11,11,19,10,10,8,12,7,9,7,12,7,8,7,11,7,10,9,12,7,7,5,7,5,7,7,12,7,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,12,9,15,9,12,12,22,13,15,13,23,16,23,23,41,21,21,14,21,12,14,12,21,11,11,8,13,9,12,11,22,12,12,9,13,8,9,8,14,8,9,7,10,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,13,13,16,8,8,6,9,6,7,6,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,6,6,10,6,7,7,12,8,11,11,24,12,12,9,13,8,9,8,13,7,7,5,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,7,12,7,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,6,11,8,11,11,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,4,5,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,4,2,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14 +1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,10,6,7,6,9,6,7,7,12,7,9,8,13,9,13,13,22,12,12,8,12,7,8,7,12,6,6,5,7,5,7,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,9,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,5,3,3,3,5,3,4,3,5,3,3,2,3,2,3,4,8,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,7,8,6,10,6,8,8,14,8,10,9,14,10,14,15,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,13,7,7,6,9,5,6,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,5,5,8,4,4,3,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,5,9,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,3,2,2,2,3,2,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,5,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,3,2,2,2,2,3,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,9 +2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,1,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,0,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,6,6,11,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,5,5,4,6,4,5,5,11,6,7,6,10,7,9,9,22,11,11,8,12,7,9,8,13,7,8,6,10,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,6,10,7,10,9,15,8,8,6,10,6,7,7,10,6,6,5,8,6,8,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,9,7,12,8,11,10,19,11,13,11,20,14,20,20,35,18,18,12,17,10,11,10,17,9,9,7,11,7,9,9,18,10,10,7,11,6,7,6,12,7,7,5,8,6,9,9,17,9,9,6,8,5,7,6,11,6,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,5,7,7,10,5,5,4,6,4,5,5,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,12,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,6,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,3,3,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,3,2,3,2,2,2,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,2,2,5,3,3,2,2,2,2,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,3,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12 +2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,6,9,5,6,4,7,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,4,6,4,4,4,8,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,8,4,5,4,7,5,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,14,14,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,3,3,4,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,7,7,5,7,4,5,5,7,4,5,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,6,6,1,1,2,1,2,1,1,1,3,2,2,1,2,2,2,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,14,8,8,6,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,4,4,4,5,3,4,4,8,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,11,10,18,11,13,11,19,13,20,20,33,17,16,11,16,9,11,9,15,8,9,7,11,7,10,9,17,9,9,7,9,5,6,6,11,6,7,6,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,9,5,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,8,5,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,1,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,6,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,7,5,8,5,6,6,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,10,10,18,11,13,11,19,13,20,20,32,16,16,11,16,9,11,9,15,8,9,7,11,7,9,9,16,9,9,6,9,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +4,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,7,14,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,7,6,10,7,10,10,3,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,2,2,-11,-5,-5,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,0,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,26,14,14,10,14,8,10,8,13,7,8,6,9,6,8,7,12,6,6,5,7,5,7,7,12,7,8,7,12,8,11,10,19,10,10,7,11,7,9,8,14,8,9,7,10,7,10,10,18,9,9,7,10,7,9,8,15,9,10,8,14,9,13,13,27,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,14,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,7,10,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,9,11,9,15,10,15,15,43,22,22,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,10,15,9,12,11,19,11,12,9,15,10,14,14,26,14,14,10,15,9,11,10,19,10,11,9,14,9,13,12,22,12,12,9,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,16,10,12,11,19,10,11,8,13,9,12,11,21,11,12,9,14,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,18,11,14,13,23,13,15,13,23,15,22,21,41,22,23,17,27,17,23,21,39,22,26,22,39,26,38,38,61,31,32,22,33,19,23,20,35,19,20,15,24,15,20,19,35,18,18,12,18,11,13,11,20,11,13,11,18,12,16,15,29,15,15,10,15,9,11,10,17,10,11,8,13,9,13,13,24,13,13,9,14,9,12,11,19,11,14,12,20,13,19,19,20,11,11,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,8,7,11,8,11,11,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,16,10,13,11,20,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,21,11,11,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,5,7,7,12,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,26,14,14,10,15,9,12,10,18,10,11,9,15,10,13,12,23,12,12,9,13,8,11,10,17,10,12,10,18,12,17,17,31,16,15,10,15,9,11,10,17,9,10,7,11,8,11,10,19,10,10,7,11,6,7,6,11,6,7,6,10,7,11,11,20,10,10,7,9,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,22,12,12,8,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,11,8,11,10,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,2,2,1,1,1,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,9,6,8,7,12,8,11,11,22 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,6,5,10,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,10,7,10,10,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,7,5,6,6,12 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,3,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,6,5,10,6,6,4,5,4,5,5,9,5,6,5,7,5,8,8,15,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,9,17,9,10,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,16,9,9,6,8,5,6,6,9,5,6,5,7,5,8,7,13,7,8,5,7,5,6,6,11,7,8,7,10,7,11,11,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,8,5,6,5,10,6,7,6,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,4,6,6,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,4,7,5,6,6,12 +2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,5,7,7,12,6,7,5,7,5,6,5,9,6,6,5,8,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,14,22,11,11,8,12,7,8,7,13,7,7,6,8,6,8,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,5,4,5,4,8,5,6,5,7,5,8,8,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-3,-1,0,1,1,1,2,2,1,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,14,7,7,5,7,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,5,10,6,7,5,8,6,9,9,15,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,8,4,4,3,5,4,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,6,5,8,5,6,5,8,6,8,8,24,13,13,9,14,8,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,9,9,6,9,5,6,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,15,8,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,6,5,9,7,10,10,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,23,13,14,10,16,10,13,12,21,12,14,12,20,14,21,21,33,17,17,12,17,10,12,10,19,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,10,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,7,6,11,7,8,6,10,7,11,11,12,7,7,5,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,5,7,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,7,6,10,6,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,4,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,5,8,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,4,3,4,3,3,2,5,3,3,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,4,5,4,7,5,7,7,14 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,8,5,5,4,5,3,3,3,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,-1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,2,2,2,2,10,6,6,4,6,4,4,3,6,3,3,2,4,2,2,2,5,3,3,3,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,6,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,17,9,10,7,10,6,6,5,9,5,6,4,6,4,6,6,12,6,6,5,8,5,5,4,7,5,6,4,6,4,6,6,13,7,6,5,6,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,7,12,6,6,5,8,5,6,6,10,6,6,5,10,7,9,9,18,10,10,8,11,7,10,9,15,9,10,8,15,11,16,16,23,12,12,8,12,7,8,7,13,7,7,5,9,6,7,7,14,7,7,5,7,5,6,5,7,4,4,3,5,4,6,6,12,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,4,4,3,5,4,6,5,8,4,4,3,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,6,4,6,6,10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,16,9,9,7,10,6,8,8,13,8,9,8,13,9,14,14,20,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,7,5,6,4,5,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,9,5,4,3,4,3,3,2,2,2,2,2,2,2,2,3,1,1,2,2,3,2,3,3,4,3,3,3,4,3,5,6,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,3,4,4,8,5,5,5,8,5,7,7,6,3,3,2,3,2,3,2,3,2,1,1,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,6,6,10,6,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,5,5,4,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,11,6,6,5,7,5,6,6,12,7,9,8,13,9,12,12,28,15,15,10,14,8,10,8,14,8,9,7,11,7,9,8,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,20,10,10,7,9,5,6,6,10,6,7,6,9,6,7,7,16,8,8,6,8,5,6,6,10,6,7,6,10,7,9,8,19,10,10,7,11,7,8,6,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,6,11,7,8,6,10,7,10,11,20,11,11,8,13,8,10,9,16,9,10,9,15,10,14,14,29,15,15,11,17,11,14,13,23,13,16,14,24,16,24,24,35,18,18,12,17,10,12,10,18,10,11,9,14,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,19,10,10,7,11,7,8,7,11,6,7,6,10,7,9,9,13,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,14,13,26,14,14,9,13,8,9,7,12,7,8,6,10,6,8,7,11,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,7,7,5,8,6,8,7,13,8,9,8,13,9,12,12,21,11,10,7,10,6,7,6,10,6,6,5,7,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,5,4,5,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,7,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,8,5,6,6,10,7,10,9,17 +1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,10,6,8,7,13,8,9,8,13,9,13,13,19,10,10,7,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10 +2,1,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,9,5,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,9,5,6,4,7,5,6,5,11,6,6,5,6,4,5,5,7,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,13,7,8,6,9,6,7,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,9,8,14,8,10,8,15,10,15,15,22,12,12,8,10,6,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,7,4,5,4,7,4,5,5,12,6,6,4,7,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,6,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,4,3,4,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,2,2,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,9,5,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,7,7,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,7,11,7,8,7,12,8,12,12,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9 +2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,5,4,6,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,13,7,8,6,9,6,7,6,9,5,6,4,6,4,6,6,10,5,5,4,6,4,6,6,11,6,7,6,10,7,11,11,18,10,11,8,12,7,8,7,13,7,8,7,12,8,12,12,23,12,12,9,14,9,12,11,18,10,12,11,19,13,19,19,29,15,15,10,14,8,10,8,13,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,10,6,7,5,8,5,7,6,16,9,9,6,8,5,5,4,9,5,6,5,7,5,8,8,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,3,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,12,7,7,5,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,5,6,5,9,6,9,9,17,9,9,6,8,5,6,5,7,4,5,4,6,4,4,4,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,16 +2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,4,8,5,5,5,8,5,7,7,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,19,10,10,7,9,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,5,4,5,4,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,7,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,4,5,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,11 +3,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,3,4,3,6,3,3,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,4,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,17,9,8,6,9,5,6,5,8,5,5,4,5,4,6,5,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,6,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,7,10,10,16,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,18,12,18,18,26,14,14,9,13,7,8,7,12,7,8,6,8,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,8,5,5,4,8,5,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,5,4,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,6,4,6,5,10,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,3,3,4,4,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,3,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,2,3,3,4,3,3,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,7,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,17,12,18,18,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,3,4,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,3,2,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,4,5,5,9,5,6,5,9,6,8,8,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,9,5,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,8,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,10,9,15,10,15,15,31,16,15,10,14,8,9,8,14,8,8,6,10,7,10,9,17,9,9,7,11,7,8,7,12,7,8,7,11,7,10,9,20,11,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,20,13,19,19,42,21,21,14,20,12,14,12,21,11,12,9,14,9,13,12,22,12,12,9,14,9,11,9,16,9,10,8,14,9,13,12,27,14,14,10,14,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,7,11,8,11,11,21,11,12,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,29,16,17,12,19,11,14,13,24,14,16,13,21,14,20,20,38,20,21,16,25,15,20,18,34,19,22,19,33,23,34,34,49,25,26,18,26,15,17,15,26,14,14,10,16,10,13,12,22,11,11,8,12,7,9,8,14,8,9,7,10,7,10,9,25,13,14,10,14,8,10,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,11,10,18,10,12,9,15,10,14,13,20,10,10,7,9,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,14,8,8,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,16,11,15,15,31,16,16,11,16,10,12,11,19,10,10,7,11,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,8,13,9,12,11,15,8,9,7,10,6,7,6,10,6,7,6,10,7,10,10,18,10,10,8,13,8,10,9,17,10,11,9,15,10,15,15,27,14,14,10,15,9,10,8,14,8,8,6,9,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,5,3,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,5,4,7,5,7,6,11,6,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,7,5,7,8,14,8,8,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,7,8,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,9,8,13,9,14,14,28 +2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,17,9,8,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,11,7,10,10,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,26,14,14,10,14,8,9,8,14,8,8,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,7,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,7,5,7,6,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,15 +2,2,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,6,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,3,5,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,9,9,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,9,5,6,5,6,4,4,4,7,4,5,4,7,5,6,5,12,6,6,4,7,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,7,6,12,7,8,7,11,8,11,11,24,13,13,9,13,8,9,8,12,7,7,6,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,12,9,14,9,12,11,19,11,12,11,18,12,18,19,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,4,3,4,4,9,5,4,3,5,3,4,4,4,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,6,3,3,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,5,6,5,7,5,7,6,9,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,6,4,4,3,3,2,2,2,3,2,3,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,5,8,5,5,3,4,3,3,2,4,3,3,2,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,2,4,3,4,4,6,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,16 +1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,5,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,13,9,14,14,20,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,10,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,5,4,6,6,11 +1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,12,7,7,5,7,4,4,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,6,4,5,5,8,5,7,6,10,7,10,10,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,6,8,7,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,12,8,11,11,19,10,10,8,12,8,10,9,14,8,9,7,12,8,12,12,24,13,14,10,16,10,14,13,23,13,15,12,21,14,21,21,31,16,16,11,16,9,11,9,17,9,10,7,10,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,13,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,5,11,7,8,7,11,8,11,10,20,11,11,8,12,7,9,8,12,7,8,6,9,6,7,7,10,5,5,4,6,4,4,4,8,5,5,4,5,4,5,5,11,6,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,6,6,5,7,4,5,4,8,4,4,3,5,4,5,5,10,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,3,5,4,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,4,3,6,3,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,8,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,17 +0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,5,3,4,4,9,5,5,4,5,4,5,4,5,4,4,4,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,9,8,14,8,9,8,13,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,8,5,5,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,11 +-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,2,2,2,2,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,7,4,5,4,4,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,6,5,6,4,6,5,8,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,7,5,6,5,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,23,12,12,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,11,10,19,11,12,10,18,12,18,18,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,9,5,4,4,5,3,4,3,4,3,4,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,7,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,5,6,6,9,5,6,5,7,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,4,8,5,5,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,13 +-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,10,5,5,4,6,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,5,8,5,5,4,5,3,4,4,4,3,3,3,5,4,5,5,8,5,5,5,8,6,8,8,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,0,-1,-1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,13,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,13,7,8,6,9,6,7,7,13,8,9,8,13,9,13,13,29,15,16,11,16,9,11,9,16,9,9,7,10,6,8,8,14,8,9,7,10,6,8,7,12,7,8,7,11,7,9,9,19,10,10,7,11,7,9,8,14,8,9,7,10,6,8,8,18,10,10,8,13,8,10,10,18,10,12,10,18,12,18,18,41,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,24,13,14,10,15,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,13,8,10,9,16,9,10,8,12,8,10,10,20,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,24,13,13,9,14,9,11,9,16,9,10,8,13,8,11,11,18,10,10,8,12,8,11,10,18,10,12,10,16,11,16,16,30,16,16,12,18,11,14,12,21,12,14,11,19,13,18,17,31,17,18,14,22,14,19,17,32,18,22,18,32,22,32,32,43,22,22,15,22,13,15,13,22,12,12,9,13,9,12,11,22,12,12,8,11,7,8,7,12,7,7,6,10,7,10,9,21,11,11,8,12,7,9,8,13,7,7,6,9,6,9,9,15,8,9,7,10,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,4,3,4,4,7,5,6,6,14,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,10,6,8,8,14,8,9,8,14,10,14,15,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,15,8,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,8,6,8,5,5,5,8,5,6,5,7,5,6,6,13,7,8,6,9,6,7,6,11,7,8,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,14,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,9,7,12,8,10,9,16,9,11,9,16,11,16,16,19,10,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,3,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,7,7,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,7,5,8,5,5,5,8,5,5,4,7,5,6,5,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,8,7,11,8,12,12,24 +-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,9,5,6,4,5,4,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,2,3,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,7,10,11,23,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,14,8,8,6,9,6,7,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,7,6,9,5,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,18,12,18,18,24,12,13,9,12,7,9,7,12,7,7,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,5,8,6,8,9,16,9,9,6,9,6,7,6,9,5,6,4,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,7,5,6,5,10,6,7,6,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,5,4,6,5,9,5,4,3,5,3,3,3,5,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,6,9,6,7,7,13,7,8,7,13,9,12,13,27,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,7,10,6,8,7,11,6,7,6,10,7,9,9,15,8,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,11,6,6,5,9,6,8,8,17,9,9,6,9,6,8,7,10,6,6,5,8,6,8,8,12,7,8,6,8,5,7,7,12,7,8,6,11,8,11,11,20,11,11,8,12,8,10,8,15,9,10,8,12,8,12,12,21,12,13,10,15,9,12,11,22,13,15,13,22,15,22,22,27,14,15,10,14,8,10,8,14,8,8,6,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,10,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,6,4,5,4,8,5,5,4,6,5,7,7,11,6,7,5,8,5,6,6,12,7,8,7,11,7,10,11,13,7,7,5,7,4,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,4,5,4,5,5,9,5,5,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,4,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,5,4,8,5,7,7,14,8,8,5,7,5,6,6,8,5,5,4,7,5,7,7,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,10,11,8,12,8,10,9,18,10,12,10,18,12,18,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,4,6,4,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,2,2,2,1,1,1,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,17,9,10,7,10,6,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,6,6,11,6,6,5,8,6,9,9,15,8,8,6,9,5,5,4,7,4,4,4,6,4,6,6,13,7,7,6,9,6,8,7,13,8,9,8,13,9,14,14,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,11,7,10,10,19,10,10,8,12,7,9,7,12,7,8,6,10,7,10,9,17,10,11,8,13,8,11,11,19,11,13,11,18,13,19,19,39,20,20,14,20,12,14,12,20,11,11,9,14,9,12,12,24,13,13,9,14,8,10,9,17,10,11,9,14,9,13,13,23,12,12,9,13,8,10,9,16,9,10,8,12,8,11,10,20,11,12,9,13,8,10,9,14,8,10,8,13,9,13,12,24,12,12,8,12,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,18,10,12,9,15,10,15,15,30,16,16,12,18,11,13,12,21,12,14,11,18,12,17,17,30,16,18,13,21,13,18,16,32,18,22,18,32,22,32,32,39,20,20,14,20,11,13,11,19,10,11,9,14,9,12,11,22,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,9,9,14,8,9,7,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,9,7,10,6,8,7,11,7,8,7,11,8,11,11,18,9,9,7,10,6,8,7,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,14,8,9,7,10,7,9,8,17,10,12,10,16,11,15,15,17,9,9,6,9,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,6,4,5,5,8,6,8,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,4,4,6,4,5,5,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,7,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,4,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,12,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,6,5,9,6,6,6,9,6,10,10,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,7,9,8,16,9,9,6,9,6,7,6,12,7,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,6,10,6,7,6,9,6,9,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,13,7,7,6,8,6,7,7,12,7,8,6,11,8,11,11,21,11,11,8,12,8,9,8,14,8,9,7,12,8,12,11,21,11,12,9,15,9,12,11,22,12,15,12,22,15,22,22,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,6,4,4,4,7,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,16 +-3,-1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,6,4,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,12,7,8,7,12,7,8,7,11,7,9,9,17,9,10,8,13,9,12,11,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,9,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,38,20,20,14,20,12,14,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,9,8,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,12,6,6,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,7,11,7,8,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,17,9,9,7,10,6,6,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,8,6,8,9,16,9,9,7,10,6,8,7,11,6,7,5,9,6,9,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,6,4,4,4,6,4,4,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,7,9,9,17,9,10,8,13,8,11,10,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,22,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,8,14,8,9,7,11,8,11,11,19,10,11,8,13,8,11,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,20,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,31,18,21,18,32,22,32,32,37,19,19,13,20,11,13,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,11,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,9,16,9,9,7,10,6,7,6,11,6,7,5,9,6,8,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,4,4,3,5,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,23,12,13,9,13,8,9,7,12,7,8,7,11,7,10,9,16,9,10,8,12,8,10,9,15,9,10,8,14,9,13,13,24,12,12,9,13,7,8,7,12,7,7,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,12,23,12,12,9,13,8,10,9,16,9,9,7,12,8,11,11,20,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,27,15,18,15,26,18,26,26,52,27,27,18,26,15,19,16,29,16,17,14,23,15,22,21,40,21,21,15,24,15,19,17,31,17,20,16,28,19,27,27,53,27,27,19,28,16,20,17,30,17,19,15,24,15,21,21,40,21,23,17,26,16,22,21,39,22,26,22,40,27,39,39,76,39,39,27,40,23,28,23,41,22,23,18,29,19,26,24,46,24,24,17,26,16,20,17,31,17,19,15,25,17,24,24,47,24,24,17,25,15,18,15,27,15,17,13,22,15,21,21,40,21,22,16,26,16,22,21,41,23,28,23,40,27,39,39,76,38,38,26,39,23,28,24,44,23,25,19,31,20,27,26,50,26,28,20,31,18,23,21,38,21,24,19,32,21,30,30,59,30,31,22,33,20,26,23,43,23,26,21,35,23,33,32,62,33,35,26,42,26,35,33,63,35,42,35,63,42,62,62,73,37,37,25,37,21,26,22,38,20,22,17,27,17,24,23,45,23,24,17,26,16,20,18,32,18,20,16,28,19,27,27,53,27,27,19,29,17,21,18,31,17,18,14,22,14,18,17,33,17,18,13,21,13,16,15,28,16,19,16,28,19,28,28,55,28,28,19,28,16,20,17,31,17,18,14,22,14,20,19,36,19,19,14,22,14,18,16,29,16,18,14,24,16,23,23,44,23,23,16,25,15,19,16,29,16,18,14,23,15,20,20,38,20,21,15,23,14,19,18,33,18,21,17,30,20,29,28,54,28,28,19,28,16,19,15,26,14,15,11,18,12,16,15,29,15,15,11,17,10,13,12,21,12,13,10,15,10,14,14,27,14,14,10,14,9,11,9,16,9,10,8,12,8,11,11,20,11,11,8,13,8,11,11,21,12,15,13,23,16,23,23,44,22,22,15,22,13,16,14,25,14,15,12,19,12,17,17,32,17,18,13,20,12,15,14,25,14,17,14,23,16,23,23,45,23,23,16,23,14,17,15,26,14,15,12,19,13,18,17,32,17,18,13,20,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,13,12,21,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,8,10,9,17,9,9,6,7,4,5,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,9,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,14,8,10,8,14,8,9,7,11,8,11,11,20,11,11,8,12,7,9,8,14,8,9,8,13,9,12,11,21,11,12,9,14,9,11,10,17,10,11,8,13,9,13,12,23,12,13,10,17,11,14,13,24,13,15,13,22,15,21,21,41,21,22,15,23,13,16,13,23,12,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,22,14,20,20,38,19,19,13,20,11,13,11,20,11,11,9,14,10,14,13,25,13,14,11,17,10,13,12,23,13,16,14,24,16,24,24,46 +-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12,6,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,8,9,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,10,9,15,9,10,8,13,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,16,9,10,8,13,9,13,13,24,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,11,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,30,16,16,12,17,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,19,13,19,11,13,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,9,16,9,10,8,12,8,10,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,19,10,11,8,12,8,10,9,17,10,11,9,15,10,15,15,28,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,12,8,12,8,9,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,5,9,6,6,5,7,5,7,6,12,6,7,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,13,9,12,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,15,9,10,8,12,9,13,13,23,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,12,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,31,16,16,12,18,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,18,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,28,14,14,10,15,9,10,9,16,9,10,8,12,8,10,9,18,10,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,15,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,7,9,6,8,7,11,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,13,9,12,12,24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,12,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,4,3,4,3,4,3,4,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,9,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,8,6,9,6,8,7,14,8,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,12,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,7,5,8,6,7,7,14,8,8,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,26,14,14,10,14,8,10,8,15,8,8,6,10,7,9,9,16,8,9,6,9,6,7,6,10,6,7,6,8,6,9,9,16,8,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,9,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,18,10,10,8,11,7,9,8,13,8,9,7,12,8,11,11,21,11,11,8,12,8,9,8,15,8,10,8,12,8,12,12,21,11,12,9,15,9,12,12,21,12,15,12,22,15,21,21,25,13,12,8,12,7,8,8,13,7,8,6,10,6,8,8,16,8,9,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,6,8,6,7,6,12,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,6,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,4,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,11,7,10,10,13,7,7,5,7,4,5,4,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,9,5,6,5,9,6,8,8,16 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,18,9,9,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,26,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,21,11,12,9,13,8,11,10,17,10,11,9,15,10,14,14,28,15,15,11,16,9,11,10,15,9,10,8,12,8,12,12,22,12,13,9,14,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,12,14,12,22,12,12,9,15,10,13,12,23,12,13,9,14,9,11,9,15,8,9,7,12,8,12,12,23,12,13,9,13,8,9,8,15,9,10,8,12,8,12,11,21,11,12,9,14,9,12,12,21,12,14,12,20,14,20,20,37,19,20,14,20,12,15,13,21,11,12,10,16,11,15,14,27,14,14,10,16,10,12,11,20,11,12,10,17,11,16,16,32,17,17,12,18,11,14,12,22,12,14,11,18,12,18,17,30,16,18,13,21,13,18,17,31,18,21,18,32,21,31,31,37,19,18,12,18,11,13,11,19,11,12,9,14,9,12,11,23,12,12,9,14,8,10,9,16,9,11,9,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,11,7,10,9,18,10,10,7,11,7,8,8,15,9,10,9,16,11,15,15,27,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,22,12,12,9,13,8,9,8,13,7,8,6,10,7,10,10,19,10,11,8,12,8,10,9,17,9,10,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,9,7,10,6,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,5,7,7,10,6,7,5,8,5,7,7,10,6,7,7,12,9,13,13,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,9,17,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,10,10,16,9,10,7,11,7,9,8,15,9,10,9,16,11,15,15,19,10,10,7,10,6,7,6,12,7,7,5,7,5,6,5,10,5,5,4,6,4,5,5,7,5,6,5,8,5,7,6,9,5,5,4,5,3,4,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,5,5,4,6,4,5,4,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,14,7,7,5,8,6,8,7,11,6,7,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,7,7,5,8,5,6,6,13,8,9,7,12,8,12,12,24 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,11,6,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,7,6,9,6,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,7,12,8,12,12,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,8,16,8,8,6,9,6,7,6,12,7,7,6,10,6,9,9,18,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,21,11,10,7,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,7,9,5,6,5,9,5,5,4,7,4,6,5,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,9,6,6,6,10,7,9,9,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,-2,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,4,2,2,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,13,7,6,4,7,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,6,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,8,16,9,9,7,9,5,6,6,11,6,6,5,9,6,8,9,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,15,8,8,6,10,7,9,9,15,9,10,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,19,10,10,7,11,7,9,8,14,8,8,7,11,7,10,10,21,11,12,8,12,8,10,9,14,8,9,7,12,8,12,12,20,11,12,9,14,9,12,12,21,12,14,12,22,15,21,21,25,13,12,8,13,8,10,8,13,7,8,6,9,6,8,8,16,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,11,6,7,6,11,6,6,5,8,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,9,7,10,10,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,8,6,8,5,6,6,11,7,8,7,12,8,11,11,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,4,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,16 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,7,4,6,6,11,6,7,5,7,4,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,5,5,9,5,6,5,8,5,7,8,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,13,7,7,6,9,6,8,7,13,8,9,8,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,6,9,6,8,7,12,7,7,6,9,6,8,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,4,4,4,5,4,5,5,10,6,6,4,7,4,5,5,9,6,6,5,8,6,8,8,18,9,9,7,10,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,-2,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,6,5,7,5,6,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,7,7,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,7,4,5,4,6,4,4,4,6,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,18,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,8,6,10,6,8,8,14,8,9,7,12,8,12,12,25,13,13,10,15,9,11,10,17,9,10,7,11,7,9,9,19,10,11,8,13,8,10,9,16,9,11,9,16,11,15,15,28,14,14,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,12,9,15,9,12,11,20,11,13,11,19,13,20,20,38,19,19,13,20,12,14,12,20,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,12,12,8,12,7,9,8,15,8,9,7,11,7,10,10,24,13,14,11,17,11,14,13,23,13,15,12,21,14,21,20,38,19,19,13,20,12,15,13,22,12,14,11,17,11,15,14,29,15,16,11,16,10,13,11,20,11,12,9,15,10,14,14,32,17,18,13,19,11,13,11,20,11,13,11,18,12,17,17,29,16,17,13,20,13,18,17,32,18,21,18,31,21,30,30,35,18,18,12,18,11,13,11,20,11,12,9,15,9,12,11,24,13,13,9,13,8,10,8,14,8,9,8,13,9,12,12,30,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,10,14,8,9,8,14,8,9,7,10,7,10,10,16,9,9,7,11,7,9,8,13,8,9,7,12,8,11,11,20,10,10,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,12,7,9,8,15,9,10,8,14,10,15,15,31,16,16,11,17,10,12,10,17,9,10,8,12,7,9,9,16,9,9,7,11,7,8,7,12,7,8,6,10,7,9,8,13,7,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,9,8,14,8,9,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,24,13,14,10,15,9,10,9,16,9,10,8,12,8,10,9,19,10,11,8,12,8,11,10,18,10,12,10,17,11,16,16,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,8,5,6,5,8,5,7,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,5,5,9,5,4,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,7,7,12,7,8,7,11,8,11,12,24,13,13,9,14,8,10,8,14,8,8,6,9,6,9,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,11,11,22,12,12,8,11,7,8,8,14,8,9,7,11,7,9,9,14,8,8,6,9,6,7,6,11,7,9,8,13,9,13,13,25 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,20,10,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,20,10,11,8,11,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,17,9,10,7,10,6,7,6,11,6,7,6,10,7,9,9,15,8,9,7,11,7,10,9,17,10,11,10,17,11,16,16,18,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,6,9,9,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,7,5,7,7,13 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,5,6,6,10,6,6,5,6,4,6,5,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,7,5,6,6,9,5,6,4,7,5,6,6,14,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,21,11,12,8,11,7,8,7,12,7,7,6,9,6,8,8,16,9,9,6,9,6,7,6,11,6,7,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,6,10,7,10,10,16,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,19,10,10,7,10,6,7,7,12,6,6,5,8,5,6,6,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,17,9,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,6,9,5,6,5,8,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,5,4,6,6,9,5,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,5,7,5,8,8,13,7,8,6,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,4,6,4,6,7,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,13,7,7,5,6,4,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,14 +-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,8,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,4,5,5,7,4,5,4,5,4,5,5,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,15,8,9,6,9,5,6,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,7,7,14,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,4,3,5,5,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,4,3,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,9,7,10,6,8,8,15,9,10,8,14,10,14,14,26,13,13,9,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,6,8,5,6,6,9,5,6,5,8,6,8,9,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,17,9,9,7,11,7,9,9,15,9,10,9,16,11,15,15,24,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,19,10,10,7,10,6,7,7,13,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,7,11,7,10,10,20,11,12,9,13,9,12,11,22,13,15,13,22,15,21,21,23,12,12,9,13,8,9,8,13,7,8,6,8,6,8,7,15,8,8,6,8,5,6,6,9,5,6,5,8,6,9,9,22,12,12,8,12,7,9,7,10,6,7,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,5,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,16,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,7,7,14,8,10,8,14,9,12,12,13,7,8,6,8,5,5,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,5,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,5,8,5,6,6,8,5,5,5,8,6,8,8,18,9,9,7,10,6,6,5,11,6,6,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,5,4,7,5,7,6,10,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,17 +-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,9,6,6,6,10,7,10,10,15,8,8,6,9,6,7,6,10,6,6,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,6,4,7,5,7,7,13,7,7,5,8,5,5,5,9,5,5,4,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,14,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,13,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,14,9,13,13,20,11,11,8,12,7,9,8,13,7,8,6,9,6,9,9,16,9,9,6,9,5,6,6,11,7,8,6,9,6,9,9,17,9,9,7,10,6,7,6,12,7,7,6,9,6,9,9,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,18,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,5,7,7,18,10,10,7,10,6,8,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,10,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,5,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,15 +-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,13,9,12,12,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,17,17,18,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,9,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,10,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,6,14,8,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,14 +-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,17,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,15,8,7,5,7,4,4,4,6,3,3,3,4,3,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,7,6,11,7,10,10,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,23,12,13,9,14,8,10,9,15,9,10,8,14,9,13,12,22,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,22,13,15,13,22,12,13,10,15,9,12,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,12,12,21,11,11,8,13,8,9,8,14,8,9,8,14,9,13,13,24,13,14,11,17,11,14,13,24,14,16,13,23,16,23,22,36,19,19,13,20,12,14,12,21,12,13,10,16,11,15,15,28,15,15,11,16,10,12,11,21,12,13,10,17,11,16,16,29,15,15,11,16,10,13,11,20,11,13,10,17,11,15,15,28,15,17,13,20,13,17,17,32,18,22,18,32,22,32,32,35,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,7,9,8,15,9,10,8,12,8,12,12,31,16,17,12,18,10,12,11,19,10,11,8,13,9,12,11,20,11,11,8,12,8,10,9,17,10,12,10,16,10,14,14,23,12,12,9,14,8,9,8,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,31,16,16,11,16,9,10,8,13,7,8,6,9,6,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,17,9,9,7,11,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,13,9,13,13,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,6,10,7,10,10,28,14,14,10,14,8,10,8,14,8,10,8,13,8,11,11,20,11,12,9,13,8,10,10,18,11,13,11,18,12,18,18,19,10,10,7,10,6,7,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,4,7,7,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,8,5,6,5,7,5,8,8,9,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,9,7,12,7,7,6,10,7,9,8,14,8,9,7,11,7,9,8,14,8,9,8,14,10,14,14,27 +-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,17,17,18,9,9,7,10,6,6,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,6,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,7,4,6,6,11,6,7,5,7,5,6,6,9,6,7,6,9,7,10,10,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,10,6,6,4,5,3,4,3,4,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,12,7,8,6,9,6,7,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,6,9,6,7,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,16,9,10,8,12,8,10,10,16,10,12,10,17,12,18,18,18,9,9,7,10,6,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,17,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,9,5,6,5,9,7,10,10,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,5,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,12,7,7,5,6,4,4,4,5,3,3,2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,8,8,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,5,10,5,5,4,5,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,5,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,8,5,7,7,13,8,9,7,12,8,12,12,26,13,13,9,13,8,9,8,12,7,8,6,9,6,7,7,13,7,7,5,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,6,8,7,13,8,9,7,12,8,12,12,21,11,10,7,10,6,7,6,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,12,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,18,10,10,8,13,8,11,10,17,10,12,10,18,13,19,19,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,7,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,5,5,9,5,6,5,8,5,7,7,18,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,6,5,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,14,8,8,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,10,6,7,6,10,8,12,12,12,6,6,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,2,2,2,2,3,3,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,7,12,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,17 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,8,5,5,4,5,4,5,4,8,5,6,5,7,5,7,7,16,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,8,5,7,6,10,6,7,6,11,8,11,11,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,5,4,6,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,5,9,5,6,5,7,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,21,11,11,8,10,6,8,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,7,6,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,13,7,8,6,10,6,8,8,13,8,9,8,13,9,14,14,15,8,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,5,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,5,8,5,5,4,7,5,6,5,8,5,6,5,8,6,9,9,9,5,4,3,5,3,3,3,5,3,2,2,3,2,2,2,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,7,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,5,3,3,2,2,2,3,3,4,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,3,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,4,6,4,4,4,7,5,8,8,17,9,9,6,9,6,7,6,9,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,8,8,14,8,10,9,15,10,15,15,34,18,18,12,17,10,11,9,16,9,9,7,10,7,9,9,15,8,9,7,10,6,8,8,14,8,9,7,11,8,11,11,18,9,9,6,9,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,28,14,14,10,15,9,10,8,14,8,10,8,13,8,11,11,18,10,10,8,13,8,10,9,16,9,11,9,15,10,13,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,10,21,11,12,10,16,10,13,12,22,12,14,12,21,15,22,22,25,13,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,8,5,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,15,8,9,7,10,6,8,7,12,7,7,6,10,7,10,9,12,7,7,5,7,5,6,5,8,5,5,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,6,7,6,10,6,6,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,7,5,8,5,6,5,8,5,6,5,9,6,9,9,17,9,9,7,11,7,8,7,12,7,8,6,9,5,6,6,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,5,6,6,10,6,7,5,8,6,8,8,13,7,8,7,11,7,9,8,15,9,10,8,14,10,15,15,16,8,8,6,8,5,6,5,7,4,4,4,6,4,5,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,5,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,3,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,5,5,9,6,8,8,17,9,9,6,8,5,7,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22 +-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,7,4,4,3,4,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,6,4,7,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,12,6,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,8,7,5,7,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,3,4,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,5,8,5,6,6,10,7,10,9,22,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,14,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,7,4,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,5,4,6,4,4,3,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,7,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11 +-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,2,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,11,6,5,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,14,8,9,7,10,6,8,7,14,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,17,9,8,6,8,5,6,6,12,7,7,6,10,7,9,9,16,9,9,7,10,6,7,6,13,8,10,8,14,10,14,13,24,13,13,9,14,8,10,8,12,7,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,8,7,13,8,9,7,11,7,9,9,17,9,10,8,12,8,11,10,19,11,13,11,18,12,18,18,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,9,6,7,6,9,6,9,9,15,8,8,6,10,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,7,11,6,6,5,8,6,8,7,13,8,10,8,14,10,14,14,17,9,9,6,9,5,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,8,6,9,5,6,5,8,4,4,3,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,18 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,7,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,20,10,11,8,10,6,7,6,9,5,6,5,7,4,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,12,6,7,5,8,5,7,7,13,8,9,7,12,8,12,12,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,11,6,6,5,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,4,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,3,3,4,4,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,5,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,29,15,15,10,14,8,10,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,10,6,6,6,10,6,8,8,16,8,8,6,8,5,7,6,11,6,7,5,9,6,9,8,16,9,9,6,10,6,7,7,12,7,8,7,12,8,12,12,22,12,12,8,13,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,11,7,10,9,17,9,10,7,11,7,10,9,18,10,12,10,17,12,17,17,24,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,14,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,5,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,4,6,6,9,5,6,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,28,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,9,6,6,6,9,6,8,8,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,10,6,7,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,5,4,5,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,8,5,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,14,10,14,14,16,8,9,6,9,5,6,5,8,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,6,6,9,6,9,9,17 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,2,2,3,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,9,5,6,5,7,5,8,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,-3,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,18,9,9,7,10,6,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,20,11,13,11,20,13,19,19,55,28,28,19,28,16,19,16,28,15,16,12,20,13,18,17,33,17,18,12,18,11,14,12,22,12,14,11,17,11,16,16,30,16,16,11,17,10,12,11,20,11,12,9,15,10,13,12,23,12,13,10,15,9,12,11,21,12,14,12,22,15,22,22,41,21,22,15,22,13,15,13,23,12,13,10,16,10,12,11,21,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,37,19,19,13,19,12,15,13,23,13,15,12,21,14,20,20,38,20,21,15,24,15,19,18,34,19,23,19,33,22,33,32,45,23,23,16,25,14,17,14,25,14,15,11,17,10,13,12,23,12,12,8,12,7,9,8,15,9,10,9,15,10,14,14,27,14,13,9,13,8,9,8,13,7,7,6,9,6,9,8,15,8,9,6,9,5,6,5,9,5,6,5,9,6,8,8,16,8,8,5,7,4,5,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,6,10,7,10,10,30,15,15,11,16,10,12,10,17,9,9,7,11,7,9,9,17,9,9,6,8,5,6,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,10,9,15,10,14,14,25,13,14,10,14,8,9,8,14,8,9,8,13,8,11,11,20,11,12,9,14,8,10,9,17,9,10,8,14,10,14,14,26,14,14,10,14,9,12,11,19,11,12,10,16,11,15,15,28,15,16,12,19,12,16,16,30,17,20,16,28,19,28,27,31,16,16,11,15,9,11,10,17,10,11,8,13,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,7,9,8,15,8,7,5,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,6,6,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,15,8,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,5,5,8,5,7,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,7,11,7,9,8,15,8,9,8,13,9,12,12,25,13,13,9,12,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,16,9,9,6,9,6,8,8,14,8,9,7,12,8,11,10,18,10,11,8,13,8,10,9,16,10,12,10,18,12,18,17,33 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,5,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,9,17,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,6,6,11,7,8,7,11,8,11,12,21,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,23,12,12,9,13,8,9,8,13,7,8,6,9,6,7,6,12,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,9,5,6,4,5,4,5,5,7,4,5,4,7,5,6,6,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,10,18,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,12,20,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,24,12,12,9,14,8,10,8,13,7,8,6,9,6,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,8,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,4,8,5,5,4,6,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,2,4,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,13,8,9,7,12,8,12,12,16,9,9,6,10,6,7,6,9,5,6,4,6,4,5,4,8,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,5,5,8,4,4,3,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,13 +-2,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,-1,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,7,4,5,4,5,4,5,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,7,4,5,5,11,6,7,6,10,7,10,10,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,6,7,6,11,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,8,12,7,9,8,13,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,11,18,12,18,18,24,13,13,9,14,8,10,8,14,8,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,5,5,8,5,7,7,15,8,8,5,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,5,5,8,6,9,9,13,7,7,5,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,13,7,7,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,10,7,9,9,15,9,11,9,16,11,16,16,16,9,9,6,8,5,6,6,10,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,7,6,10,7,10,10,19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,4,3,5,4,5,6,8,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,11 +-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,2,2,2,3,4,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,4,3,3,3,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,5,3,4,5,6,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,22,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,7,11,7,8,8,14,8,9,8,13,9,13,13,17,9,9,7,9,5,6,6,9,5,5,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,3,6,4,6,5,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,10,5,5,4,5,3,4,3,5,3,4,3,6,4,5,5,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,4,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14 +-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,10,6,6,4,7,4,5,5,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,7,7,12,7,7,5,6,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,5,4,4,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,1,1,2,1,1,1,2,1,1,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,3,6,4,6,5,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,4,3,5,4,5,4,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,7,8,4,4,3,5,4,5,5,10,6,7,7,12,8,12,11,34,18,18,12,17,10,12,10,18,10,11,8,13,8,10,9,22,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,14,8,8,6,10,6,7,6,11,6,7,6,9,6,8,7,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,6,13,7,8,6,10,6,8,7,12,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,23,13,14,10,16,10,13,12,22,13,15,12,20,14,20,20,26,14,14,10,15,9,10,8,14,8,9,7,10,6,8,7,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,15,8,8,6,9,5,6,5,7,4,5,4,5,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,10,16,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,9,5,6,5,8,5,7,6,10,6,6,5,9,7,10,10,15,8,8,6,8,5,7,6,10,6,6,5,9,6,9,8,19,10,11,8,13,8,10,9,16,10,12,10,17,12,18,18,17,9,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,5,10,6,7,5,8,5,6,6,11,7,8,7,12,8,11,11,21 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,7,5,7,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,4,4,6,4,4,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,11,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12 +-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,20,11,11,7,10,6,7,6,10,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,6,4,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,8,6,8,8,13,7,8,6,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,16,8,8,6,9,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,5,12,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,5,3,4,4,5,3,3,3,5,3,4,3,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,13 +0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,12,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,5,4,9,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,6,10 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,4,6,5,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,2,1,1,1,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,5,3,3,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,11,6,5,4,5,3,3,3,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,10,6,7,6,10,7,10,9,24,12,12,9,13,8,9,8,13,7,8,6,10,7,9,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,15,8,9,6,9,6,7,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,7,8,6,10,7,9,9,15,8,9,7,10,6,7,6,12,7,9,7,12,8,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,20,10,10,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,6,4,4,3,5,4,5,5,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,5,10,6,7,6,9,6,7,7,14,8,8,6,9,6,8,7,11,7,8,7,12,9,13,13,14,7,7,5,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,9,9,17 +0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,6,7,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,4,5,9,6,7,6,9,6,8,8,21,11,12,8,12,7,9,7,12,7,8,6,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,9,13,7,8,6,9,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,12,8,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,8,5,8,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,9,6,7,6,10,6,7,6,11,8,12,12,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16 +-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,16,9,10,7,11,7,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16 +-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,7,5,8,8,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,6,4,6,6,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,3,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,1,1,1,0,0,0,1,1,1,2,2,2,1,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,16,9,9,6,8,5,7,6,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,5,9,5,6,4,6,4,6,6,12,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,39,20,21,14,21,12,15,12,21,11,12,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,15,10,14,14,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,23,12,13,10,15,9,11,10,19,11,12,10,17,11,16,16,31,16,17,13,21,13,17,15,27,15,18,15,27,18,27,28,32,17,17,12,17,10,12,10,18,10,10,7,11,7,9,8,15,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,7,4,4,3,3,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,5,5,11,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,13,7,8,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,6,4,4,4,7,5,6,6,13,7,7,5,7,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,7,14,8,10,8,13,8,11,11,24,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,22,12,13,10,16,10,14,13,23,13,15,12,21,14,21,21,21,11,11,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,6,4,5,3,3,3,5,3,4,3,5,4,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,6,7,7,4,4,3,4,2,2,2,2,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,1,6,4,4,3,3,2,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,2,2,3,3,5,3,3,2,3,3,4,4,7,5,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,15,15,30 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,6,8,5,6,6,10,6,6,5,8,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,4,4,8,5,6,6,9,6,9,9,13,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,14,8,10,8,14,10,14,15,17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,6,8,7,12,7,8,7,11,8,11,11,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,4,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,8,8,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,4,3,4,4,6,4,5,4,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,6,4,6,4,4,4,9,5,6,6,10,7,10,9,14,7,7,5,9,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,15,9,10,8,15,10,15,16,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,8,5,7,7,8,4,4,3,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,5,4,8,5,6,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,12,6,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,16 +0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,7,5,6,6,15,8,9,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,7,4,5,5,8,5,7,7,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,7,6,11,7,8,6,11,8,11,12,14,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,6,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,11 +-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,6,5,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,7,4,4,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,4,10,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,6,10,7,10,9,24,13,13,9,14,8,9,8,12,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,5,9,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,11,7,8,7,12,8,11,11,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,17,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,4,3,7,4,4,3,5,4,5,4,7,4,4,4,6,4,5,4,9,5,6,5,9,6,9,8,14,7,7,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,7,10,6,8,8,14,8,9,7,12,9,13,14,12,7,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,6,3,3,2,3,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,8,5,5,4,7,5,6,6,8,5,6,5,9,6,9,9,17 +0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,9,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,7,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,4,4,6,4,6,6,10 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,4,3,4,3,5,4,5,4,6,3,3,2,4,3,4,4,7,4,4,4,7,5,8,7,19,10,11,8,11,7,8,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,13,9,14,14,18,10,10,7,10,6,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,7,6,11,7,8,7,10,7,11,11,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,6,5,7,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,14,8,9,7,10,6,8,8,14,8,9,8,12,9,13,13,17,9,9,6,9,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12 +-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,2,3,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,3,2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,10,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,5,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,9,5,6,5,7,5,6,5,9,6,7,6,9,7,10,10,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,8,14,8,9,7,12,8,12,11,18,9,9,6,9,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,13,13,26,14,14,10,16,10,12,10,18,10,12,9,15,10,13,13,26,14,16,12,19,12,16,14,26,14,16,13,23,16,24,24,32,16,16,11,16,9,11,9,16,9,10,8,12,7,9,9,16,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,6,4,4,4,6,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,5,5,4,6,4,6,6,10,6,8,7,12,8,11,11,20,11,11,8,12,7,9,7,12,7,8,7,11,7,10,10,22,12,13,10,15,9,12,10,18,10,12,10,18,13,19,19,17,9,9,6,8,5,7,6,10,6,6,5,7,4,5,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,2,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,23 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,19,10,9,6,9,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,8,10,8,13,9,14,14,18,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,7,5,7,7,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,6,9,6,7,6,10,6,7,6,11,8,11,11,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,7,5,7,7,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,7,5,8,8,13,7,7,5,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,7,13,7,8,5,7,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,6,9,5,6,5,10,7,10,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,16,11,16,16,21,11,11,8,11,7,8,7,11,6,6,5,9,6,8,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,3,2,2,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,7,6,12,7,8,7,13,9,12,13,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,7,5,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,18,10,10,7,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,11,8,10,11,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,2,2,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,8,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,6,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,6,6,9,6,7,6,10,7,10,10,31,16,16,11,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,9,6,7,6,13,7,8,6,10,7,10,10,18,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,6,9,6,8,7,11,7,8,6,10,7,10,10,19,10,10,7,11,7,9,8,12,7,8,6,9,6,8,8,15,8,9,7,10,7,9,8,12,7,9,8,13,9,13,13,24,13,13,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,10,16,10,13,13,25,14,17,14,24,16,24,23,32,16,16,11,16,9,11,10,16,9,9,7,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,6,10,7,10,10,18,9,9,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,10,7,10,10,18,10,11,8,12,7,9,9,18,11,13,11,19,13,19,19,16,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,5,5,9,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22 +-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,9,5,6,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,16,9,9,6,10,6,7,7,11,6,7,6,10,6,9,9,17,9,10,7,11,7,9,9,17,10,11,9,16,11,16,16,22,11,11,8,11,7,8,7,11,6,7,5,8,6,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,12,7,7,6,8,5,7,6,12,7,9,8,13,9,13,13,11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,1,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,6,9,7,10,10,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,13,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,11,7,8,7,11,8,12,12,23 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,14,8,8,5,7,4,5,4,8,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,8,7,11,8,12,12,23 +-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,5,4,6,7,14,8,8,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,14,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,6,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,9,6,8,8,16,9,9,7,12,7,9,9,16,9,10,8,14,9,13,12,23,12,13,10,15,9,12,12,22,12,14,11,19,13,18,18,62,31,31,21,31,18,22,19,33,17,18,14,22,14,18,17,32,17,18,13,20,12,16,14,26,15,17,13,22,15,22,22,43,22,23,16,24,14,17,15,26,14,16,12,19,12,16,16,30,16,16,12,18,11,14,13,23,13,15,13,22,14,20,20,38,20,20,14,20,12,14,13,23,12,13,10,17,11,14,13,24,13,13,10,16,10,12,11,20,11,13,11,19,13,19,18,35,18,19,13,19,12,15,13,24,14,16,13,21,14,20,20,40,22,24,18,30,19,25,24,45,26,31,26,45,30,45,45,65,33,32,22,32,18,21,18,32,17,18,13,21,13,17,16,31,16,17,12,17,10,13,12,21,11,12,9,15,10,13,13,25,13,12,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,8,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,11,13,11,19,12,17,17,32,16,16,11,15,9,10,9,15,8,9,7,11,7,9,8,15,8,8,6,10,6,7,6,11,7,8,7,12,9,13,13,24,13,13,9,14,9,12,11,19,11,12,9,15,10,14,14,27,15,17,13,21,13,18,17,32,19,23,19,34,23,35,35,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,6,6,11,7,8,6,10,7,10,10,18,9,9,6,9,5,5,4,5,3,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-3,-1,-1,0,0,1,1,1,0,1,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,4,5,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,13,7,8,7,11,8,11,10,19,11,12,9,14,9,11,10,19,11,13,12,21,15,22,22,44 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,32,16,16,11,16,10,12,10,17,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,11,13,10,16,10,13,12,23,13,16,13,23,16,23,23,33,17,17,11,16,9,11,9,17,9,10,7,11,7,9,9,16,8,9,6,9,6,7,6,11,6,7,5,8,6,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,7,13,7,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,11,7,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,12,12,23 +-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,5,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,10,32,17,17,11,16,10,12,10,16,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,10,8,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,7,10,7,10,10,20,11,13,10,16,10,14,13,22,13,16,13,23,15,22,23,33,17,17,11,16,9,11,9,17,9,10,8,12,8,10,9,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,2,2,3,5,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,5,3,4,4,5,4,5,5,10,6,6,4,7,4,5,4,7,4,5,4,6,4,6,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,9,5,6,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,12,8,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,9,6,7,6,11,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,3,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,22,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,9,7,11,7,9,9,15,9,11,9,15,10,15,15,23,12,12,8,11,6,8,6,12,6,7,6,8,6,7,7,10,6,6,4,6,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,6,4,4,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,8,6,7,6,11,7,8,7,11,8,12,12,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,2,4,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,5,4,8,6,8,8,16 +-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,2,2,4,3,5,5,7,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,9,5,5,3,4,3,4,4,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,13,7,6,4,6,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,32,16,16,11,16,10,12,10,16,9,10,8,12,8,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,9,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,12,8,11,11,20,11,11,8,12,7,9,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,11,8,11,7,8,7,14,8,9,7,10,7,10,11,20,11,13,10,16,10,14,13,22,13,15,13,22,15,23,23,35,18,18,12,16,9,11,9,17,9,10,8,12,8,11,10,15,8,8,6,9,6,7,7,11,6,6,5,7,5,7,7,12,7,7,5,6,4,5,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,7,5,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,10,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,5,7,7,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,9,10,8,12,8,10,9,16,9,11,9,16,11,17,17,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,7,5,7,5,7,6,9,6,7,6,11,8,12,12,24 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,4,5,4,7,5,7,7,14 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,2,2,4,3,3,2,3,2,2,2,2,2,2,3,7,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,22,12,12,8,11,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,7,10,7,10,9,16,9,10,9,15,11,16,16,24,12,12,8,11,6,7,6,12,7,8,6,9,6,8,7,11,6,6,4,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,2,1,0,0,1,1,1,1,2,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,7,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,12,7,8,6,8,5,7,7,12,7,8,7,11,8,12,12,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,5,5,6,4,6,5,8,6,8,9,17 +-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,19,10,10,7,9,6,7,6,10,6,7,5,8,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,14,7,7,5,8,5,5,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,6,8,6,8,8,14,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,8,14 +-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,4,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,33,17,17,12,17,10,12,10,18,10,11,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,8,7,11,8,11,11,19,11,12,9,14,9,13,13,24,14,16,13,23,16,23,23,35,18,17,12,17,10,12,10,16,9,10,8,13,8,11,11,16,9,9,6,9,6,7,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,6,4,5,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,8,8,18,10,11,8,12,8,11,10,18,10,12,10,17,12,17,17,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,3,3,6,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,8,5,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,8,7,11,8,12,13,25 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,13,8,9,8,13,9,12,12,19,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,5,7,7,13 +-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,4,3,4,3,6,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,20,10,10,7,11,6,7,6,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,4,3,5,4,6,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,13,7,8,5,7,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,8,14,8,9,8,14,9,13,13,21,11,11,8,10,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,5,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,8,5,6,6,11,6,7,6,11,7,10,10,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,4,5,4,6,5,7,7,14 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,5,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,4,3,5,4,6,6,10 +-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,4,4,6,4,6,6,7,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,9,5,6,5,8,5,6,6,9,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,13,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,5,5,10,5,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,7,6,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,8,16,9,11,9,16,11,16,16,27,14,14,10,14,8,8,7,13,7,8,6,10,6,8,8,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,11,6,6,4,4,3,4,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,6,6,14,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,5,3,4,4,6,4,5,5,8,6,9,9,16 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,11,6,6,4,5,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,5,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,3,3,5,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,5,3,3,3,4,2,3,3,4,3,3,3,5,4,6,6,10 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,3,2,2,2,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,24,12,12,9,13,8,9,8,12,7,8,6,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,15,8,8,5,7,5,6,5,8,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,13,9,14,14,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,13,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,4,7,5,7,7,13 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,8,7,12,8,13,13,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,5,3,4,4,7,5,7,7,12 +-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,1,1,2,2,3,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,6,4,5,5,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,16,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,9,6,9,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,10,6,7,5,8,5,6,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,8,15,9,11,9,15,10,15,16,44,23,23,16,24,14,17,14,24,13,14,11,17,11,14,13,24,13,13,9,12,7,9,8,13,7,8,7,12,8,11,11,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,27,14,13,9,13,8,9,8,13,7,7,6,9,6,8,8,15,8,8,6,8,5,7,7,12,7,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,8,7,12,8,10,10,18,10,10,8,12,8,11,11,20,12,14,12,21,15,22,23,41,21,21,14,21,13,16,14,24,13,14,10,15,10,13,12,22,12,12,8,11,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,11,6,5,4,5,3,3,3,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,7,6,11,6,7,6,11,7,10,10,14,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,22,11,11,8,12,7,9,8,13,7,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,11,7,10,10,17,9,10,8,12,7,9,9,16,9,10,8,14,9,12,12,22,12,12,9,14,9,12,11,21,12,13,11,18,12,18,18,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,7,7,5,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,4,3,4,3,-2,0,0,1,1,1,2,2,4,3,4,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,16,8,8,6,9,6,7,6,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,13,7,8,6,8,6,7,7,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,4,3,5,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,4,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,6,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,13,13,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,4,4,3,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,17,9,9,6,9,6,7,6,10,6,6,5,7,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,4,5,4,7,5,8,8,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8 +-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,3,4,3,4,3,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,26,13,13,9,14,8,9,8,15,8,8,6,10,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,7,7,11,7,9,8,13,9,14,14,27,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,14,7,7,5,8,5,7,6,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,8,5,6,5,7,5,7,6,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,8,5,5,3,4,3,4,3,5,3,3,3,5,4,5,5,12,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,8,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,12,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,7,5,8,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,5,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,1,0,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,2,2,1,1,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,3,4,3,4,4,7 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,1,1,1,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,21,11,10,7,10,6,7,6,12,6,6,5,8,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,13,7,8,6,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,4,6,4,6,6,10,6,7,6,11,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,6,6,5,7,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,3,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,9 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,7,6,10,6,6,4,7,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,19,10,11,7,11,6,8,7,11,6,7,6,8,6,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,8,5,5,4,5,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8 +-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,0,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,3,3,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,4,6,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,10,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,10,9,15,10,14,14,36,18,18,12,18,10,12,10,18,10,11,8,12,8,10,9,17,9,9,6,9,6,7,7,12,7,9,7,12,8,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,8,21,11,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,7,5,7,5,6,5,8,5,6,5,8,6,8,9,13,7,8,6,9,6,7,6,10,6,7,5,8,6,8,8,16,9,10,7,11,7,10,9,16,9,11,10,17,12,19,19,35,18,18,13,20,12,14,12,21,12,13,10,15,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,10,6,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,8,4,4,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,7,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,16,9,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,10,15,15,15,8,8,5,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,4,3,4,2,2,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,-2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,7,6,9,6,8,8,15 +-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,6,8,8,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,4,4,4,5,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,6,5,9,5,6,6,10,7,11,11,20,10,10,8,11,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9 +-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,9,5,6,4,5,3,4,3,5,3,3,3,4,3,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,9,5,6,6,9,6,9,9,23,12,12,8,11,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,6,4,7,5,6,5,10,6,6,5,9,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,10 +-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,5,7,5,8,8,19,10,10,7,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8 +-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,4,4,6,5,7,7,9,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,7,14,8,9,7,12,9,13,13,32,16,16,11,16,9,10,9,16,9,10,8,12,8,10,9,17,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,20,10,10,7,11,7,8,7,10,6,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,7,17,9,10,7,10,6,8,7,9,5,6,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,5,7,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,9,15,9,11,9,16,11,16,16,33,17,17,12,18,10,12,11,19,10,11,9,14,9,11,10,19,10,10,7,10,6,7,7,10,6,7,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,5,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,5,7,7,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,17,9,9,6,9,5,6,5,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,13 +-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,5,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,9,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,6,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,5,4,6,4,6,5,9,6,7,6,10,7,10,10,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,5,5,7,5,8,8,10,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,13,7,8,7,13,9,12,12,30,16,16,11,15,9,11,9,15,9,10,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,6,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,7,15,8,8,6,8,5,6,6,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,7,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,15,9,10,9,15,10,15,15,32,17,17,12,18,10,12,10,17,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,8,7,13,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,13,9,12,12,29,15,16,11,15,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,6,9,6,9,8,15,9,10,9,15,10,15,15,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,18,9,9,6,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,11,6,7,6,8,6,8,7,13,8,9,8,13,9,14,14,17,9,9,6,9,5,6,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-24,-11,-11,-7,-11,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,7,6,11,8,11,12,30,16,16,11,17,10,12,10,18,10,10,7,10,7,9,8,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,9,13,8,10,9,16,9,11,9,14,9,12,12,23,12,12,9,14,9,11,10,18,10,12,10,17,11,16,16,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,11,12,9,14,9,13,13,24,13,15,13,22,15,23,23,57,29,29,20,29,17,20,16,28,15,17,13,20,13,18,17,32,17,17,12,18,11,14,13,23,13,14,12,20,13,19,18,34,17,17,12,18,11,13,11,19,10,11,8,13,9,12,12,22,12,12,8,12,8,10,9,15,8,9,7,12,9,13,13,28,14,14,10,14,9,11,10,17,9,9,7,11,7,10,9,17,9,10,7,10,7,9,8,15,8,9,7,12,8,11,11,22,12,12,9,13,8,10,8,14,8,10,8,14,9,13,13,24,13,15,11,18,12,17,16,30,17,20,17,29,20,29,29,63,32,31,21,31,18,21,17,29,15,16,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,14,10,14,14,26,13,13,9,13,8,9,8,13,8,9,7,11,7,9,9,17,9,9,6,9,6,7,6,9,6,7,6,9,6,9,9,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,9,7,10,10,25,13,13,9,14,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,10,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,9,6,9,6,9,8,15,8,9,7,12,8,12,12,27,14,13,9,13,8,10,8,14,8,8,6,9,6,9,9,16,9,9,6,9,6,8,8,14,8,9,8,14,10,14,14,28,15,16,11,17,10,13,12,21,12,14,11,19,13,18,17,32,17,18,13,20,13,17,15,28,16,19,16,27,18,27,27,33,17,17,12,17,10,11,10,17,9,9,7,10,6,8,8,15,8,8,6,9,5,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,6,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,6,5,7,4,5,5,7,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,4,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,6,7,5,8,5,6,6,11,7,8,8,14,10,14,14,27 +-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,9,17,9,9,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,5,7,7,15,8,8,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,16,9,10,9,15,10,15,15,32,16,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,4,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,5,3,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,3,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,10,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,30,16,16,11,15,9,10,9,15,8,9,7,11,7,9,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,15,8,8,5,8,5,6,5,9,5,6,4,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,6,4,6,6,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,8,6,11,7,10,9,16,9,10,9,15,10,15,15,33,17,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,4,4,5,4,6,6,14,8,8,6,7,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,18,9,9,6,10,6,6,6,10,6,6,4,6,4,6,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,7,4,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,12,6,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,8,5,7,6,11,6,7,6,10,7,11,11,23,12,11,8,11,6,8,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,4,2,3,3,5,3,4,4,5,4,6,6,10 +-13,-6,-6,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,3,2,3,2,3,2,3,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,13,7,8,6,8,5,6,6,12,7,7,6,10,7,10,10,11,6,7,5,8,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,7,6,11,6,7,5,8,6,8,7,13,7,8,7,12,9,13,13,31,16,16,11,16,10,12,10,16,9,10,8,12,8,10,9,17,9,10,7,10,6,7,7,14,8,9,7,12,8,11,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,16,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,7,12,8,10,9,17,10,11,9,15,11,16,16,35,18,18,12,16,9,11,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,5,5,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,3,2,3,2,3,2,3,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,4,4,5,3,4,4,6,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,5,8,6,8,7,11,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,5,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,12,7,9,9,16,9,11,9,14,10,15,15,20,10,10,7,11,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,4,4,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,3,3,3,3,2,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,15 +-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,5,5,7,5,8,8,18,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,12,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +-10,-4,-4,-3,-6,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,4,4,6,4,4,3,4,2,2,2,5,3,3,3,5,4,5,5,12,7,7,5,7,5,6,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,9,6,7,6,9,6,9,9,21,11,11,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,7,5,6,6,11,6,7,6,8,6,8,8,13,7,8,6,7,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,12,7,9,7,11,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,5,10,6,6,4,7,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,4,5,4,6,6,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,6,4,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,8,6,9,6,7,6,12,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,11 +-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,11,7,8,6,10,6,6,4,7,4,6,5,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,4,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,10 +-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,9,5,5,3,4,3,3,3,6,4,4,4,7,5,8,8,19,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,5,8,6,8,8,15,8,9,6,9,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,13,7,8,6,10,7,9,8,14,8,10,8,13,9,13,13,33,17,17,12,17,10,12,10,18,10,11,9,14,9,11,10,21,11,12,8,12,7,9,9,16,9,10,8,14,9,12,11,19,10,10,7,11,7,8,6,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,9,5,6,5,7,5,8,8,20,10,10,7,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,7,7,16,9,9,6,8,5,7,6,10,6,7,6,9,6,9,9,18,10,11,8,13,8,11,10,18,10,12,11,19,13,19,19,40,20,20,14,20,11,13,11,18,10,11,8,13,8,10,9,19,10,10,7,10,6,7,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,7,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,4,6,4,5,4,6,4,4,3,5,4,6,6,16,9,9,6,8,5,6,5,9,5,5,4,7,4,5,4,8,5,5,3,4,3,4,4,7,4,5,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,7,12,7,9,8,13,9,12,12,21,11,11,8,11,7,9,8,14,8,9,7,12,8,12,11,19,10,11,8,13,8,11,10,18,10,12,10,18,12,18,17,24,12,12,8,11,7,8,7,12,7,8,6,9,6,8,8,10,6,6,5,7,4,5,4,6,4,5,4,7,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,5,9,5,5,4,6,4,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,9,17 +-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,9 +-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,12,8,11,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,13,7,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,12,8,12,12,25,13,13,9,13,7,8,7,11,6,6,5,9,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,3,3,2,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,4,5,5,10 +-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,11,6,7,6,9,6,7,6,11,6,7,6,11,8,11,12,27,14,14,10,16,9,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,12,7,8,6,10,7,10,9,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,8,14,10,15,15,34,17,17,11,16,9,11,9,15,8,9,7,11,7,8,7,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,5,5,12,7,7,5,8,5,6,5,8,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,17,9,10,7,10,6,8,7,10,6,6,5,7,5,7,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,10,7,10,7,9,8,14,8,9,8,14,10,15,15,22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,6,4,5,4,8,4,5,4,8,5,7,8,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,22,11,11,8,11,6,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,7,5,7,4,5,5,7,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,14,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,9,5,6,6,11,6,7,6,11,7,10,10,26,14,14,10,15,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,5,6,4,5,5,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,4,12,6,6,5,8,5,5,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,5,8,5,6,6,16,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,3,4,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,6,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,5,6,6,15,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-34,-17,-17,-11,-16,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,4,7,4,5,5,8,5,7,7,5,3,3,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,9,6,9,8,15,9,10,8,13,9,12,12,23,12,13,9,14,8,10,8,14,8,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,18,10,10,7,11,6,7,6,11,6,7,6,9,6,9,9,17,9,9,7,11,7,8,7,13,7,8,7,12,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,11,20,11,11,8,11,7,8,7,12,7,8,7,11,8,11,11,20,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,49,25,25,17,24,13,15,13,22,12,13,10,16,10,14,13,24,13,13,9,14,9,11,10,19,11,13,10,17,11,15,15,27,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,16,9,9,7,12,7,9,9,16,8,8,6,9,6,8,8,14,8,8,6,10,7,9,9,27,14,15,11,17,10,12,11,20,11,12,10,17,11,15,14,27,14,15,11,17,11,14,14,26,15,17,14,25,17,26,26,61,31,31,21,31,17,20,16,27,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,14,8,9,7,11,7,10,9,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,7,12,8,12,12,10,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,29,15,16,11,16,9,11,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,11,17,10,12,10,18,10,12,10,17,11,15,15,28,15,15,11,18,12,16,15,29,16,18,15,26,18,26,26,39,20,19,13,19,11,13,11,19,10,11,8,12,8,10,10,18,10,10,7,11,7,8,6,10,6,6,5,9,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,4,6,4,5,4,6,4,6,5,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,3,5,4,6,6,8,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,7,5,7,5,7,6,11,6,7,5,8,6,8,8,15 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,8,7,11,8,11,11,26,13,13,9,13,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,8,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,21,11,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +-18,-9,-9,-5,-9,-4,-5,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,4,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,13,7,8,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,7,5,7,6,12,7,8,6,9,6,8,7,13,7,8,7,12,8,11,11,27,14,14,9,14,8,9,7,13,7,8,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,10,7,9,9,16,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,16,9,9,6,9,6,7,7,12,7,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,14,14,34,17,17,11,17,10,11,9,15,8,8,6,10,7,9,8,14,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,7,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,7,17,9,9,6,9,5,6,5,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,7,11,7,10,9,16,9,10,9,15,10,15,15,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,7,5,6,4,4,4,6,4,4,4,5,4,6,6,12,6,6,5,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,10,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,10,6,6,4,5,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,5,8,5,6,6,11,7,8,6,10,7,9,9,17,9,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,6,15,8,8,6,8,5,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,30,16,16,11,16,9,10,8,15,8,9,7,11,7,9,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,6,9,9,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,19,10,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,10,7,10,7,9,8,16,9,11,9,16,11,16,16,40,20,19,13,18,10,12,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,11,7,8,6,10,7,10,9,21,11,10,7,10,6,7,6,12,7,8,6,9,6,8,8,12,7,7,5,8,5,7,6,10,6,7,6,10,7,10,11,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,20,11,11,8,12,8,11,10,18,11,13,11,18,12,18,18,28,14,14,10,14,8,10,9,14,8,9,7,10,6,8,7,14,7,7,5,7,4,5,5,7,4,5,4,7,5,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,6,5,8,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,5,3,3,3,4,3,4,4,3,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,9 +-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,12,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,7,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,18,9,9,6,9,5,6,6,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6 +-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,5,7,7,13,7,8,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,9,6,8,7,12,7,9,7,13,9,12,12,25,13,13,9,13,8,9,7,12,7,8,6,9,6,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,10,6,6,5,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,6,4,6,6,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,8,10,8,14,10,14,14,32,16,16,11,16,9,11,9,14,8,9,7,10,7,9,8,12,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,9,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,10,7,10,6,8,8,15,9,11,9,16,11,16,16,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,12,6,6,4,7,4,5,5,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,11,6,6,4,5,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8 +-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,6,7,7,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,12,7,7,6,9,6,7,7,12,7,9,7,13,9,12,12,30,15,15,10,15,9,10,8,13,7,8,6,9,6,8,7,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,2,3,2,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,7,15,8,9,7,10,6,8,8,14,8,10,8,15,10,14,14,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8 +-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,8,8,6,10,6,8,7,12,7,9,7,12,8,12,11,23,12,12,8,12,7,9,8,13,7,8,6,10,6,7,7,14,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,16,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,10,8,12,8,10,9,16,9,10,8,13,9,14,14,24,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,11,7,8,8,14,8,9,7,10,7,10,9,20,10,10,7,11,7,8,8,14,8,9,7,12,8,11,10,19,11,12,9,14,9,12,12,22,13,15,13,22,15,21,21,42,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,19,10,11,8,12,7,9,9,16,9,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,13,8,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,9,10,8,12,8,10,9,17,9,9,7,11,7,8,8,14,8,9,8,13,9,12,11,27,14,14,10,15,9,11,10,18,10,11,9,15,10,14,14,22,12,12,9,15,10,13,12,22,13,15,13,23,15,22,22,57,29,28,19,27,15,18,15,25,13,14,11,18,11,14,13,21,11,11,8,12,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,6,5,8,6,9,9,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,6,4,6,6,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,21,11,11,8,11,7,8,7,11,6,7,6,9,6,9,8,14,8,8,6,9,5,6,6,10,6,7,5,8,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,9,7,11,7,9,9,16,9,10,9,15,10,14,14,31,16,17,12,17,10,12,10,16,9,10,8,13,9,12,11,17,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,27,14,14,10,15,9,11,10,18,10,11,9,15,10,13,13,27,14,15,11,18,11,15,14,26,15,18,15,27,18,26,26,48,24,24,16,23,13,15,13,22,12,12,9,14,9,12,12,21,11,11,8,11,7,9,8,13,8,9,8,13,9,12,12,24,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,3,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,8,5,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14 +-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,32,16,16,11,15,9,10,8,14,8,8,6,10,6,8,8,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,4,5,5,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,9,13,8,9,8,13,7,7,5,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8 +-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,5,6,4,5,5,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,7,12,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,9,9,7,9,5,6,5,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,18,9,9,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,11,7,10,9,15,9,11,9,16,11,16,16,38,19,19,13,18,10,12,10,17,9,10,8,12,8,10,9,14,8,8,6,8,5,7,6,11,6,6,5,8,6,8,7,12,6,6,5,6,4,4,4,6,4,4,3,5,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,12,7,8,7,10,7,10,10,21,11,11,8,11,7,8,7,10,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,9,5,6,6,11,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,17,9,10,8,13,8,11,10,18,10,12,10,18,12,18,18,33,17,17,11,16,9,10,9,16,8,8,6,11,7,8,8,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,4,5,5,7,4,4,4,7,5,6,6,12,6,6,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,9 +-18,-8,-8,-5,-8,-4,-6,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,4,6,5,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,12,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,5,4,4,4,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,6,9,6,7,6,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,11,7,9,8,15,9,10,9,15,10,15,15,28,15,15,10,14,8,9,8,13,7,7,6,9,6,7,7,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8 +-33,-16,-16,-10,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-5,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,8,5,6,5,10,6,6,4,6,4,6,6,15,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,16,9,9,6,9,6,7,7,13,8,9,8,13,9,14,14,26,13,13,9,14,8,10,9,13,7,8,6,10,6,8,8,17,9,10,8,12,7,9,8,14,8,8,7,11,7,10,9,20,11,11,8,12,7,8,7,12,7,8,7,11,7,9,9,17,10,11,8,13,8,11,10,19,11,14,12,20,14,21,21,39,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,18,10,10,7,10,7,9,8,14,8,9,8,14,10,14,13,25,13,14,10,14,8,9,8,15,8,9,7,12,8,10,10,18,10,10,7,10,6,8,7,14,8,10,8,14,10,14,13,25,13,14,10,14,9,11,9,15,9,10,8,12,7,9,9,17,9,9,7,10,6,8,8,12,7,9,8,13,9,12,12,26,14,14,10,14,9,11,10,17,9,10,8,13,9,13,12,21,11,12,9,15,10,13,12,22,13,15,13,22,15,22,22,55,28,28,19,28,16,19,16,27,14,15,11,18,11,14,13,21,11,12,8,12,8,10,9,16,9,9,7,10,7,9,9,19,10,9,6,9,6,7,6,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,9,7,10,6,8,8,17,10,12,10,16,11,16,15,31,16,16,11,16,9,11,9,15,9,10,8,12,8,10,10,18,10,10,8,12,7,9,9,14,8,10,9,15,10,14,14,28,15,15,11,16,10,12,11,19,10,11,9,14,9,13,13,25,13,14,11,18,11,15,14,26,15,18,15,26,18,26,26,50,26,26,18,26,14,16,13,23,12,13,10,16,10,13,12,23,12,12,8,12,7,8,7,15,9,10,8,12,8,11,11,21,11,11,8,12,7,9,8,13,7,8,6,10,7,9,8,13,7,7,5,8,5,7,7,11,6,7,6,9,6,8,8,17,9,9,7,10,6,6,5,10,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,5,4,7,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,6,6,9,6,10,10,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,6,7,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,8,7,13,8,10,8,13,9,14,14,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,36,19,19,13,19,11,13,11,18,10,10,8,12,8,10,9,15,8,8,6,9,6,7,6,11,6,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,8,11,10,21,11,11,8,11,6,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,8,13,7,8,6,10,7,9,9,17,9,10,8,12,8,11,10,18,10,12,10,17,12,18,18,33,17,17,12,18,10,11,9,16,9,9,7,11,7,9,8,16,8,8,6,8,5,6,6,10,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-4,-6,-6,-14,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,12,7,8,6,8,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,12,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,13,7,8,7,10,7,9,9,17,9,10,8,12,7,8,7,14,8,9,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,11,7,10,9,17,9,10,8,13,8,11,10,20,12,14,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,18,10,10,7,11,7,8,8,14,8,10,8,14,9,13,13,25,13,14,10,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,28,19,28,16,18,15,26,14,14,11,17,11,14,13,22,12,12,9,13,8,10,9,15,8,8,6,10,7,10,10,19,10,10,7,10,6,6,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,12,9,16,11,16,15,31,16,16,11,16,9,11,9,15,8,9,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,10,9,14,10,14,14,27,14,14,10,16,10,12,11,18,10,12,9,15,10,14,13,25,14,15,11,18,12,16,15,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,4,5,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,14,8,9,7,11,7,9,9,17,9,10,8,11,7,8,7,13,8,9,7,11,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,13,8,11,10,20,11,13,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,13,8,11,10,19,10,10,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,13,9,13,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,13,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,27,18,27,16,18,15,26,14,15,11,17,11,14,13,23,12,12,9,13,8,10,9,15,8,9,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,11,9,16,11,16,16,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,10,17,9,9,7,11,7,9,8,15,8,10,9,14,10,14,14,27,14,14,10,15,9,12,11,18,10,12,9,15,10,14,13,25,14,15,11,17,11,15,14,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,5,7,5,7,7,13 +-70,-35,-35,-23,-34,-19,-23,-19,-35,-17,-18,-12,-20,-11,-15,-14,-28,-14,-14,-9,-13,-7,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-19,-19,-40,-20,-20,-13,-20,-11,-13,-10,-19,-9,-9,-6,-11,-6,-9,-9,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-9,-8,-15,-9,-14,-14,-28,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-5,-7,-7,-15,-7,-6,-3,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,1,1,1,1,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,8,8,15,8,9,8,13,9,12,11,20,12,15,13,23,16,23,24,47,24,25,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,13,9,14,8,10,8,14,8,8,7,11,7,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,31,16,17,12,18,11,14,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,14,12,22,13,15,13,22,15,21,21,41,21,21,15,22,13,17,15,27,15,16,12,19,12,17,17,32,17,19,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,34,19,23,19,34,18,20,15,25,16,22,20,38,20,20,14,22,13,16,14,24,14,16,13,21,14,19,19,37,19,20,14,22,13,16,14,24,13,15,12,19,12,16,16,30,16,17,13,21,13,17,16,31,18,21,17,30,20,30,30,58,30,30,21,31,18,21,18,32,17,19,15,24,15,20,19,36,19,19,13,20,12,15,14,25,14,16,13,22,14,20,20,38,20,21,15,22,13,17,15,27,15,17,14,24,16,22,21,40,21,23,17,28,17,23,21,40,23,27,23,40,27,41,42,104,53,54,37,55,31,38,32,56,29,31,23,38,23,31,29,56,29,29,21,32,19,24,21,37,21,24,20,34,22,32,31,61,31,31,21,31,18,22,19,33,17,18,14,22,14,19,18,34,18,18,13,21,13,18,17,32,18,21,17,30,20,28,28,54,28,28,19,29,17,20,17,30,16,18,14,24,15,21,20,37,19,20,15,24,15,19,17,31,18,21,17,29,19,27,27,53,27,27,19,29,17,22,19,35,19,22,17,28,18,26,26,51,27,29,21,34,21,27,25,48,27,31,26,45,30,45,45,88,45,45,30,45,26,31,26,46,24,26,20,32,20,26,24,45,23,24,17,27,16,20,17,31,17,20,16,26,17,23,23,44,23,23,16,24,14,17,14,25,14,16,12,20,13,17,17,32,17,18,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,35,20,23,20,35,19,21,17,28,18,24,23,45,23,24,17,26,16,20,18,34,19,23,19,33,22,32,32,64,33,33,23,34,20,24,21,37,20,23,18,31,20,28,27,51,27,30,22,36,22,29,27,52,29,34,28,49,33,49,49,98,49,49,33,49,28,33,28,50,27,29,21,34,21,28,26,49,25,26,18,28,16,20,18,33,18,20,16,27,18,26,25,49,25,26,18,26,15,18,15,27,15,16,13,22,14,20,19,36,19,19,13,20,12,15,13,24,13,15,12,21,14,21,21,42,22,22,15,23,14,17,15,27,15,16,12,20,13,18,17,31,16,17,12,19,12,17,16,29,16,18,15,26,18,26,25,49,25,25,17,25,14,17,15,27,15,17,14,23,15,21,20,39,21,22,17,27,17,23,22,41,23,28,23,41,28,41,40,79,40,41,28,41,24,29,24,43,23,25,18,29,18,24,22,41,21,21,14,21,13,16,14,24,13,14,11,19,13,18,18,34,17,17,12,18,11,13,11,20,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,19,11,12,10,18,12,16,16,30,16,16,11,15,9,11,9,15,8,9,7,12,7,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,10,9,16,9,9,7,10,6,8,7,13,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,26 +-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,8,7,12,8,12,12,24,12,13,9,13,8,9,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,16,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,9,8,14,8,8,6,10,7,9,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,10,11,8,11,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,15,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,11,7,10,9,16,9,11,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,15,11,18,11,14,13,25,14,16,14,23,16,23,23,45,23,23,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,17,12,17,17,34,18,18,12,18,10,12,10,18,10,11,9,15,10,13,12,23,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,26,14,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,25,17,25,14,17,15,25,14,15,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,8,14,8,8,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,8,13,9,14,13,25,13,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,21,14,21,20,40,21,21,14,21,12,15,12,22,12,13,10,15,10,13,12,21,11,11,8,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,7,6,11,6,6,5,8,6,7,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,13 +-35,-17,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,5,7,5,6,6,10,6,7,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,8,14,8,8,7,11,7,10,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,20,10,10,7,11,7,8,7,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,16,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,18,10,10,8,12,8,10,9,18,10,10,8,11,7,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,14,11,18,11,14,13,25,14,17,14,24,16,23,23,45,23,24,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,18,10,12,10,19,11,12,9,15,10,13,12,22,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,27,15,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,24,17,25,14,17,15,25,13,14,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,13,7,8,7,11,7,9,9,16,9,9,7,10,7,9,9,16,9,10,8,13,9,14,13,24,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,19,10,11,9,13,9,12,11,20,12,14,12,21,14,20,20,41,21,21,14,20,12,14,12,22,12,12,9,16,10,13,12,21,11,11,7,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,9,5,6,4,5,3,4,4,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,7,13 +-23,-11,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,5,10,6,6,5,8,5,7,6,11,6,7,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,20,10,11,7,11,6,8,7,12,6,7,6,9,6,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,35,18,18,13,19,11,13,11,20,10,11,8,14,8,11,10,20,11,11,8,12,7,9,8,13,8,8,7,12,8,12,11,21,11,11,8,11,7,8,7,12,7,7,6,8,6,7,6,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,6,8,6,7,6,11,6,7,6,10,7,9,9,18,9,9,7,10,6,7,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,6,12,7,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,5,8,5,6,6,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,12,24,12,12,8,12,7,9,8,13,8,8,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,8,8,13,8,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,17,9,9,7,11,6,7,7,12,6,7,6,10,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,11,6,7,6,9,7,10,9,16,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,14,14,10,14,8,9,8,15,8,8,7,11,7,9,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,12,6,6,5,7,4,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,3,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,5,9 +-35,-17,-17,-11,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-9,-6,-9,-9,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,7,5,7,6,10,6,8,7,11,8,11,12,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,7,5,6,6,8,5,5,5,8,6,8,8,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,6,11,7,8,7,11,7,10,10,20,11,11,7,10,6,8,7,14,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,10,17,12,17,17,33,17,17,12,17,10,12,10,17,9,10,8,13,8,11,11,20,11,11,7,10,6,8,7,13,7,8,7,11,7,9,9,20,11,11,7,10,6,7,7,11,7,8,6,10,7,9,9,16,9,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,15,10,15,9,11,10,17,9,10,8,12,8,10,9,18,10,10,7,11,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,9,7,12,8,11,11,21,11,12,9,14,9,12,11,21,12,14,12,20,14,21,21,53,27,27,19,28,16,20,17,29,16,17,13,20,13,17,15,30,16,16,12,18,11,14,12,19,11,13,11,18,12,17,17,30,15,15,11,16,10,12,10,18,10,10,8,12,8,10,9,17,9,10,8,12,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,12,8,10,9,16,9,11,9,14,9,13,13,25,13,14,10,14,8,10,9,18,10,12,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,14,24,16,23,22,45,23,24,16,24,14,16,13,23,12,13,10,17,11,14,13,25,13,14,10,14,9,11,9,18,10,11,9,14,9,12,12,24,13,13,9,12,7,8,7,13,8,9,7,11,7,10,9,16,9,9,7,10,7,9,9,17,10,11,9,16,11,17,17,36,19,19,13,18,11,13,11,19,10,11,9,14,9,13,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,16,16,32,17,17,12,17,10,13,11,19,11,12,10,16,11,15,14,27,15,16,12,18,11,15,14,27,15,17,14,25,17,25,25,48,24,24,16,24,14,17,15,24,13,14,11,17,11,15,14,25,13,14,10,16,9,11,10,17,10,11,9,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,9,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,21,11,11,8,12,7,9,8,13,8,9,7,12,8,10,10,16,9,9,7,10,7,9,9,16,9,11,9,14,10,14,14,23,12,12,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,20,41,21,20,14,20,12,14,12,21,12,13,10,16,10,13,12,20,11,11,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,8,5,5,5,9,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,6,4,4,4,6,4,4,4,6,4,5,4,6,4,6,6,12 +-19,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,6,6,6,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,31,16,16,11,16,10,12,10,16,9,10,7,11,7,10,9,17,9,9,7,11,7,8,7,11,7,8,7,11,7,10,10,17,9,9,7,9,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,5,9,5,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,9,8,15,8,9,6,10,6,8,8,14,8,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,11,6,7,5,8,6,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,9,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,12,7,8,7,11,6,7,6,9,6,7,7,13,7,7,5,6,4,4,4,8,5,6,5,7,5,6,6,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,10,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,5,6,5,8,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,14,10,15,15,38,19,19,13,19,11,14,12,19,10,11,8,12,8,11,10,20,11,11,8,13,8,9,8,14,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,6,11,6,6,5,9,6,8,7,14,8,8,6,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,10,7,10,9,17,9,10,7,12,8,10,10,17,10,12,10,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,7,12,7,9,9,17,9,10,7,9,6,7,6,13,7,8,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,25,13,13,9,13,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,10,6,8,7,13,7,8,7,11,8,12,12,21,11,12,8,12,7,9,8,13,7,8,7,11,7,10,9,18,10,10,8,12,8,10,10,18,10,12,10,17,12,17,17,32,16,16,11,16,10,12,10,17,9,10,8,11,7,10,9,16,9,10,7,11,7,8,7,11,7,8,6,10,7,10,9,17,9,9,6,9,5,6,6,11,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,6,4,6,6,10,6,7,6,10,7,10,9,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,13,7,8,6,9,6,8,7,13,8,10,8,13,9,13,13,27,14,14,10,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8 +-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,12,7,7,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,6,6,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,7,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,12,9,13,13,32,16,16,11,16,9,11,10,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,7,12,7,8,7,11,8,10,10,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,6,5,9,5,5,4,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,10,6,6,6,9,6,8,8,15,8,9,6,10,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,6,9,8,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,7,6,9,6,6,5,8,6,8,8,14,8,8,6,8,5,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-32,-15,-15,-10,-16,-8,-9,-7,-14,-7,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,21,11,11,8,11,6,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,7,12,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,10,6,8,8,14,8,10,9,16,11,16,16,33,17,16,11,16,10,12,10,17,9,10,7,11,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,9,9,21,11,11,8,12,7,8,7,12,7,8,7,11,7,10,10,17,9,9,7,11,7,10,9,16,9,11,9,16,11,15,15,26,14,14,10,15,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,11,7,8,6,10,6,7,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,7,6,9,7,10,10,22,12,13,10,15,9,12,11,20,12,14,12,22,15,21,21,58,29,29,20,30,17,20,17,29,15,16,12,18,11,15,14,29,15,16,12,18,11,14,12,22,12,14,12,20,13,18,18,32,17,17,11,16,9,11,10,18,10,10,7,11,7,10,9,16,8,8,6,9,6,8,8,14,8,10,9,15,10,15,15,27,14,13,9,13,8,9,8,14,8,9,7,12,8,10,10,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,16,9,10,9,15,10,14,14,26,14,14,11,17,11,14,14,26,15,17,14,25,17,24,23,46,23,23,16,23,13,16,14,24,13,14,10,16,10,13,13,25,13,13,9,14,9,11,10,18,10,11,9,14,10,14,14,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,11,7,10,9,17,10,12,10,18,12,18,18,38,19,19,13,20,12,14,11,19,11,12,9,14,9,13,13,22,12,13,10,15,9,12,11,20,11,13,11,18,12,17,17,32,17,17,12,18,11,13,12,21,12,13,10,15,10,14,14,28,15,16,12,19,12,16,14,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,13,10,15,10,14,13,24,13,13,9,13,8,10,9,16,9,10,9,15,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,11,7,10,10,17,9,9,6,9,6,7,7,13,8,9,7,12,8,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,7,10,10,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,7,9,8,14,8,9,8,13,9,12,12,19,10,10,8,12,8,10,10,18,11,13,11,19,13,19,19,41,21,21,14,20,11,13,11,18,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,10,6,8,7,12,7,8,6,10,6,8,8,15,8,8,6,8,5,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,5,7,7,12 +-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,5,7,6,11,7,8,7,12,8,11,11,31,16,15,11,16,9,11,9,16,8,9,7,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,12,24,12,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,20,11,11,8,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,7,12,7,7,6,9,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,14,9,13,13,25,13,13,9,13,8,9,8,13,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,7 +-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,11,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,5,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,33,17,16,11,17,10,11,10,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,13,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,9,13,13,25,13,14,10,14,8,9,8,15,8,8,6,9,6,8,8,14,8,8,6,8,5,7,6,11,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,6,12,7,8,7,11,8,11,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,15,9,10,9,15,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,7,5,6,6,9,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,6,10,6,8,6,10,7,10,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,6,4,5,3,4,4,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,7 +-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,25,13,12,9,13,8,9,7,13,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,6,4,5,5,9,6,6,5,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,7,7,12,7,7,6,8,5,7,7,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,13,7,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,6,4,5,4,6,4,5,5,6,4,5,4,6,4,5,5,7,4,5,4,6,4,6,6,14,7,7,5,6,4,5,4,8,5,6,5,7,5,6,6,12,7,7,5,6,4,4,4,7,4,5,5,8,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,8,12,7,8,6,12,7,7,5,8,5,7,7,11,6,7,5,7,4,5,4,9,5,6,5,8,5,6,6,15,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,12,7,8,7,11,8,11,11,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,41,21,20,14,20,12,14,11,20,11,11,8,12,8,10,9,18,10,10,7,11,7,8,7,15,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,11,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,19,10,9,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,30,15,15,11,16,9,11,9,18,10,11,8,12,8,10,9,16,9,9,7,10,6,7,6,13,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,14,8,8,7,11,7,10,10,17,9,10,7,10,6,8,8,15,9,10,8,14,9,13,13,23,12,13,9,14,8,10,9,17,9,10,8,14,9,12,11,20,11,12,9,13,8,11,10,18,10,12,10,17,11,16,16,32,17,17,11,16,9,11,10,16,9,9,7,10,6,8,8,17,9,9,6,9,6,8,7,10,6,7,6,10,7,10,10,16,9,9,6,8,5,5,5,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,9,13,7,7,5,8,5,7,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,7,7,11,7,8,7,12,9,13,13,29,15,15,10,14,8,9,7,12,7,8,6,10,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,5,7,7,10,6,6,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,5,5,10 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,4,4,3,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,5,4,5,5,7,4,5,4,5,3,4,3,6,4,4,4,5,4,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,25,13,13,9,13,8,9,7,13,7,7,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,7,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,5,10,6,6,4,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,6,9,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,6,5,9,5,6,5,10,7,10,10,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,4,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,6,8,6,11,8,11,11,34,18,18,12,18,10,12,10,17,9,10,7,11,7,8,8,15,8,8,6,9,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,6,9,6,8,7,13,7,8,7,12,8,12,12,26,14,14,10,14,8,9,8,15,8,8,6,10,7,9,8,15,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,8,5,7,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,15,9,10,8,15,10,14,14,26,14,14,9,13,8,10,8,13,7,8,6,9,6,7,7,13,7,8,6,7,5,6,5,8,5,6,5,9,6,8,8,12,6,6,5,6,4,5,4,8,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,6,5,6,4,6,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,7,4,4,3,5,4,6,6,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,8,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,32,17,17,11,17,10,11,10,16,9,9,7,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,6,7,7,12,7,8,7,11,8,11,11,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,8,5,7,6,12,7,7,6,10,7,10,10,19,10,10,8,12,7,9,8,14,8,8,7,11,7,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,10,14,14,24,13,13,9,12,7,9,7,12,7,7,5,8,6,7,7,12,6,7,5,7,5,6,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +-33,-16,-15,-10,-15,-8,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-8,-8,-5,-9,-4,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,2,3,3,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,11,8,12,12,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,13,7,7,5,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,6,10,6,8,7,13,8,9,7,11,7,10,10,19,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,6,9,6,8,8,14,8,9,7,12,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,9,9,16,9,9,7,11,7,10,10,19,11,12,10,16,11,16,16,36,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,9,7,12,8,10,9,25,13,12,8,12,7,8,7,12,7,7,6,10,7,10,10,18,10,10,7,11,7,9,9,17,10,11,9,16,11,17,17,22,11,11,8,11,7,8,7,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,6,8,8,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,18,10,11,9,14,9,11,10,19,11,13,11,18,12,18,19,62,31,31,21,32,18,20,17,29,15,16,12,19,12,16,14,26,14,14,10,15,9,12,11,20,12,14,11,19,13,18,18,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,19,10,11,8,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,17,9,9,6,9,6,7,7,13,8,9,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,8,7,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,21,47,24,24,17,25,14,17,15,27,14,15,11,17,11,14,14,26,14,14,10,16,10,12,10,18,10,12,10,17,11,15,15,26,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,16,9,9,7,11,7,10,10,19,11,12,10,17,12,17,17,40,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,24,13,14,10,15,9,11,10,18,11,13,11,20,13,19,19,36,19,19,14,22,13,16,14,25,14,15,12,19,12,17,17,33,18,19,14,21,12,15,14,25,14,17,14,24,16,24,25,45,23,23,15,22,13,16,14,24,13,14,11,17,11,14,12,22,12,12,9,13,8,9,8,15,9,10,9,15,10,15,15,20,11,11,8,11,7,9,8,14,8,9,7,11,8,11,11,22,12,13,9,14,9,11,9,16,9,11,9,14,9,12,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,18,10,12,10,16,11,15,15,21,11,12,9,13,8,9,8,15,8,9,7,11,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,20,13,19,18,43,22,22,15,21,12,14,12,22,12,12,9,15,10,13,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,11,11,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,14,8,8,6,10,6,8,7,13,8,9,7,11,7,10,9,19,10,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,6,10,7,10,10,17,9,9,6,9,5,6,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,13 +-16,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,9,6,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,32,16,16,11,17,10,11,9,15,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,8,12,7,9,8,13,8,8,6,10,7,9,9,17,10,10,8,11,7,8,8,13,8,9,8,13,9,13,13,23,12,12,8,12,7,9,8,12,7,8,6,9,6,7,7,12,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,5,9,5,6,4,7,4,5,5,9,5,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,4,4,5,3,4,3,6,4,4,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,33,17,17,12,17,10,12,10,16,8,8,6,10,6,8,8,14,8,8,6,9,5,6,6,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,5,4,5,4,7,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,25,13,13,9,14,8,9,8,15,8,8,6,10,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,20,10,10,8,12,7,9,8,14,8,8,7,10,7,10,9,18,10,11,8,12,7,9,8,14,8,10,8,13,9,14,14,23,12,12,8,12,7,9,8,12,7,8,6,8,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,9,6,8,8,12,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,5,4,6,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,7,10,10,23,12,12,8,11,7,8,7,12,7,7,6,8,5,7,6,12,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,5,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,3,3,4,2,3,2,4,3,3,3,5,3,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,5,4,7,5,6,5,8,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,5,4,7,5,6,6,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-16,-8,-8,-5,-8,-4,-5,-3,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,5,7,7,9,5,5,4,6,4,5,4,6,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,7,5,8,5,7,7,9,5,6,4,6,4,5,5,9,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,11,6,7,5,8,5,7,6,12,7,8,6,10,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,6,10,7,11,11,36,18,18,12,18,10,12,10,17,9,10,7,10,7,9,9,15,8,9,6,9,6,8,7,13,8,9,7,12,8,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,7,8,7,12,8,12,12,26,14,14,10,15,9,10,8,16,9,10,7,11,7,9,9,14,8,8,6,8,5,6,5,10,6,6,5,9,6,9,9,15,8,8,6,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,6,12,7,8,6,10,7,9,9,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,12,7,8,7,11,8,11,10,21,11,12,9,14,8,10,9,16,9,10,8,12,8,11,10,20,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,24,13,13,9,14,8,10,9,13,7,7,5,8,6,8,7,13,7,7,5,7,4,5,4,8,5,7,6,10,7,9,9,14,8,8,6,8,5,5,5,9,5,6,5,8,6,8,7,11,6,6,5,8,5,6,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,11,11,25,13,13,9,12,7,9,8,13,7,8,6,10,6,8,7,13,7,8,6,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,3,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,9,5,6,5,7,4,5,5,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,4,4,4,5,4,5,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,7,7,22,11,11,8,11,6,7,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,6,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,12,7,7,6,8,5,6,6,9,5,6,5,7,5,7,6,12,7,7,5,8,5,6,5,10,6,6,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,7,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,6,4,4,3,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,4,3,5,4,6,5,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,28,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,5,8,5,6,5,9,5,6,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,5,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,3,5,3,4,3,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,7,11,6,6,4,7,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,9,5,6,4,7,4,5,5,10,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,8,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,5,3,4,4,8,5,6,6,10,6,6,4,7,4,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,4,6,4,4,4,7,4,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,4,4,5,4,5,6,12,7,7,5,7,4,5,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,25,13,12,8,12,7,8,6,11,6,7,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,4,5,4,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,5,5,7,5,7,7,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,4,7,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,4,4,4,6,4,5,5,8,6,8,8,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,7,5,8,5,6,5,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,22,11,11,7,10,6,7,6,11,6,7,6,9,6,8,8,12,7,7,5,7,5,6,6,11,7,8,6,10,7,9,8,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,16,9,9,7,10,7,9,8,14,8,9,7,12,8,12,12,15,8,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,4,5,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,12,45,23,23,16,23,13,14,11,19,10,11,8,13,8,11,11,20,11,11,8,12,7,9,9,16,9,9,7,12,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,7,6,13,7,8,6,8,5,7,6,10,6,7,6,11,7,10,10,23,12,12,8,11,7,8,7,12,7,8,6,10,6,8,8,15,8,8,5,7,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,7,6,10,6,6,5,8,5,7,7,10,6,7,6,9,6,8,8,14,8,9,8,13,9,13,13,30,16,16,11,15,9,11,10,18,10,11,8,13,8,11,11,18,10,10,7,9,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,12,7,9,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,11,11,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,25,13,14,10,16,9,11,10,18,10,12,9,15,9,12,12,26,14,14,10,15,9,12,11,20,11,13,11,19,13,18,18,30,16,16,11,17,10,12,10,16,9,9,7,11,7,10,9,14,8,8,6,9,5,6,5,8,5,6,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,9,6,7,6,10,6,6,5,7,5,8,8,12,7,7,5,7,5,6,6,10,6,6,5,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,15,8,9,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,15,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,6,9,6,7,6,11,6,6,5,8,6,8,8,12,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,10,6,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,2,8,5,5,3,4,3,4,3,5,4,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,5,5,10 +-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,25,13,13,9,13,7,8,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,5,8,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,14,8,8,6,9,6,7,6,10,6,7,6,9,6,7,7,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,2,3,3,4,3,7,4,5,4,4,3,4,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,8,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,10,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,28,15,15,10,14,8,8,7,13,7,7,6,9,6,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,5,3,4,4,7,5,6,6,14,8,8,5,7,5,6,5,7,5,6,5,7,5,6,5,9,5,6,4,5,3,4,4,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,6,5,9,6,8,8,19,10,10,7,10,6,8,7,12,7,7,5,9,6,8,7,11,6,7,5,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,8,6,8,7,15,8,9,7,10,6,8,7,11,7,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,4,3,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,6,5,10,6,6,5,6,4,6,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7 +-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,22,12,12,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,5,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,6,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,10,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,4,9,5,5,4,6,4,5,4,4,3,3,3,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,5,5,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,9,7,10,10,12,6,6,4,6,4,4,3,6,4,5,4,6,4,5,5,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,7,5,6,5,8,6,9,10,37,19,18,12,18,10,11,9,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,7,5,7,4,4,4,6,4,4,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,11,8,11,11,26,14,14,9,13,8,9,8,15,8,9,7,11,7,10,9,15,8,8,6,10,6,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,9,9,22,11,11,8,11,7,8,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,9,9,19,10,11,8,12,7,9,9,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,17,10,12,10,16,11,16,16,27,14,13,9,13,8,9,8,14,7,7,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,5,5,9,6,8,8,15,8,8,5,7,4,5,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,5,5,4,6,4,6,6,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,14,7,7,5,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,2,2,2,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9 +-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,6,6,24,12,12,8,12,7,8,6,12,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,5,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,4,4,8,5,5,5,7,5,7,7,17,9,9,6,9,5,6,5,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,6,4,4,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,4,5,6,4,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,6,6,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,7,5,7,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,11,6,6,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,12,7,7,6,9,6,9,9,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,9,35,18,17,12,17,10,11,9,17,9,9,7,10,6,8,8,16,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,6,4,7,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,8,6,9,9,22,12,12,8,11,7,8,7,12,7,7,5,9,6,8,7,11,6,7,5,7,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,7,9,8,14,8,9,7,11,8,11,10,20,11,12,9,13,8,10,10,18,10,12,9,16,11,16,16,26,13,13,9,13,7,8,7,13,7,8,6,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,7,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,5,7,4,5,4,8,5,7,7,14,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,6,7,9,5,4,3,5,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,8,6,8,8,34,18,17,12,17,10,11,9,16,9,9,7,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,9,6,9,9,22,11,11,8,11,7,8,7,12,7,7,5,8,6,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,8,13,8,9,7,11,7,10,10,19,10,11,8,13,8,10,10,18,10,11,9,16,11,16,16,26,13,13,9,13,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,7,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,9,5,5,3,5,3,4,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-20,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,9,7,10,10,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,24,13,13,9,13,8,9,7,12,7,7,6,9,6,7,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,7,6,11,6,6,5,7,5,7,7,13,7,8,6,10,6,7,7,12,7,8,7,11,8,12,12,27,14,15,11,17,10,13,11,19,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,10,8,14,9,13,13,25,13,14,10,15,9,10,9,15,8,9,7,10,7,10,9,17,9,10,8,14,9,11,11,20,11,12,10,17,12,17,17,20,11,11,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,9,6,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,18,10,11,8,12,7,9,8,15,9,11,9,15,11,16,16,67,34,33,22,33,19,22,19,33,17,18,13,20,12,16,15,29,15,15,11,17,10,12,11,20,11,12,9,15,10,14,14,26,13,13,9,14,8,9,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,8,8,15,8,9,7,11,8,11,11,33,17,18,12,18,11,13,11,18,10,10,8,12,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,11,6,6,5,8,6,9,9,16,9,10,8,13,8,11,11,20,11,13,11,18,12,18,18,46,24,24,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,14,10,16,10,13,11,20,11,13,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,10,8,13,9,14,14,26,14,14,11,17,10,12,11,20,11,12,10,17,12,17,17,42,21,21,14,20,12,14,12,21,11,12,10,16,10,14,14,27,14,15,11,16,10,12,11,21,12,14,12,20,13,19,18,34,18,18,13,19,11,14,12,21,12,13,10,17,11,16,16,32,17,19,14,23,14,18,17,32,18,21,17,30,20,30,30,50,26,26,17,25,14,16,14,24,13,14,10,16,10,14,13,25,13,13,9,14,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,11,9,15,10,14,13,27,14,14,10,16,10,12,10,18,10,10,7,11,7,10,10,18,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,22,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,20,11,11,9,14,9,12,11,20,12,14,12,21,14,20,20,35,18,18,13,20,12,14,12,20,11,11,8,11,7,10,9,16,9,9,6,9,6,7,7,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,16,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,9,9,16 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,34,18,17,12,17,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,17,9,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,9,5,6,6,11,6,7,6,9,6,9,9,22,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,11,9,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,6,8,5,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,6,4,6,5,7,4,4,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,16,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,14,8,8,6,8,5,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,6,4,6,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,7,5,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,12,10,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,7,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,24,12,12,8,12,7,8,7,12,6,7,5,8,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,5,4,5,4,12,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,6,9,5,6,5,7,4,6,5,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,6,5,8,5,5,4,7,5,6,6,12,6,7,6,8,6,7,6,12,7,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,6 +-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,5,4,6,4,6,6,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,5,8,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,8,5,7,6,10,6,7,6,9,6,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,6,7,6,10,7,10,9,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,8,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,35,18,18,12,18,11,13,11,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,9,8,14,8,9,7,10,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,16,8,8,6,8,5,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,23,12,12,8,12,7,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,6,7,7,10,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,18,10,12,10,16,11,16,16,27,14,14,10,14,8,9,8,13,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,9,7,10,6,7,6,10,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,7,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,8,5,7,7,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,4,3,4,3,5,4,5,5,8 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,20,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5 +-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,5,3,3,2,4,3,4,3,6,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,7,4,5,4,7,4,5,5,9,5,6,4,5,3,4,4,5,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,25,13,13,9,13,8,9,8,12,7,7,6,9,6,8,7,13,7,8,5,7,5,6,5,8,5,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,13,7,7,5,8,5,5,4,6,3,3,2,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,6,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,16,9,9,7,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,10,7,10,6,7,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,6,4,6,5,11,6,6,4,7,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,5,3,4,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,22,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,12,6,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,5,7,4,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,7,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,3,3,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,3,3,5,3,4,4,13,7,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,3,3,4,3,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,7,6,10,7,9,9,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,9,39,20,20,13,19,11,13,11,18,10,10,7,11,7,9,9,21,11,12,9,13,8,9,8,13,7,8,7,11,7,10,10,18,9,9,7,10,6,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,20,11,11,8,11,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,6,5,8,5,7,7,14,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,25,13,14,10,15,9,10,9,16,9,9,7,10,6,8,8,13,7,8,6,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,8,14,8,8,7,11,8,11,11,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,9,18,10,10,7,10,6,8,7,12,7,7,6,10,7,10,9,20,11,11,8,13,8,10,8,14,8,8,6,10,7,10,10,18,10,11,8,12,8,11,10,18,11,13,11,18,12,18,17,27,14,14,10,15,9,11,9,16,8,8,6,9,6,8,7,12,7,7,5,8,5,7,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,10,6,7,6,9,6,7,7,13,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,19,10,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,5,5,8,6,8,8,9,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,4,5,9 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,21,11,11,7,11,6,7,6,10,6,6,4,6,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,9,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,4,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,2,8,4,4,3,5,3,4,3,4,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,3,3,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,23,12,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,12,6,6,4,6,4,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,10,7,10,10,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,7 +-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,18,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,9,5,5,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,29,15,14,10,14,8,10,9,15,8,8,6,10,6,8,8,17,9,9,7,10,6,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,5,7,7,13,7,7,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,5,3,4,4,6,4,5,5,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,20,10,10,7,11,7,8,7,13,7,7,5,8,5,7,6,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,11,6,7,6,10,7,9,8,14,8,9,8,13,9,13,13,21,11,12,8,12,7,9,7,13,7,8,6,8,5,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,5,8,5,7,7,11,6,6,5,8,5,5,5,8,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,11,6,7,5,8,5,6,6,10,6,7,5,8,6,8,9,15,8,9,6,9,6,7,6,9,5,6,5,8,5,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,6,4,4,4,5,4,6,6,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,4,5,5,8,5,5,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,3,2,2,2,3,2,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,6,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,4,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,4,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,5,3,4,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,27,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,4,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,11,6,7,5,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,10,6,6,5,8,6,8,7,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,5,9 +-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,8,5,7,7,26,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,6,6,18,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,3,5,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,9,5,5,4,7,5,6,5,9,6,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8 +-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,5,4,6,6,7,4,4,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,3,4,4,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,5,4,5,6,16,9,9,6,8,5,6,5,9,6,7,6,9,6,9,8,15,8,8,6,8,5,7,7,12,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,8,15,9,10,8,13,9,14,14,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,10,9,17,10,11,9,15,10,14,14,51,26,26,17,25,15,18,15,27,15,16,12,19,12,15,14,25,13,13,9,14,8,10,9,16,9,11,9,14,10,14,13,21,11,10,7,10,6,7,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,8,8,14,8,9,7,11,8,12,12,20,11,11,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,5,7,7,15,8,9,6,9,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,6,10,7,10,10,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,11,7,10,9,17,9,10,8,13,9,12,12,24,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,12,9,13,13,29,15,15,11,16,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,11,7,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,36,18,18,12,18,10,12,11,19,10,10,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,11,7,10,10,18,10,10,7,9,6,7,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,10,6,7,5,8,5,7,6,11,7,8,6,10,7,9,9,16,9,9,6,9,6,8,8,14,8,10,8,14,10,15,15,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,6,5,7,4,5,5,8,4,4,3,5,4,6,6,10,6,7,6,10,7,9,9,6,3,3,3,4,3,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,8,15 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,6,5,7,5,7,7,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,8,7,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,11,6,6,4,6,4,4,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,2,4,3,3,3,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,6,4,5,4,7,4,5,4,4,3,4,4,8,5,5,4,5,3,4,5,8,5,6,5,8,5,7,7,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,8,8,12,6,6,4,7,4,4,3,6,4,4,3,5,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,5,7,7,11,6,6,4,7,4,4,3,5,3,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,3,3,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,8,6,11,7,10,10,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,4,4,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,5,5,4,6,4,4,3,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,4,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,7,8,6,10,7,9,9,29,15,16,11,16,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,8,7,10,6,7,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,12,7,7,5,8,5,5,4,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,5,7,4,5,4,7,5,7,7,24,12,12,8,12,7,8,7,14,8,8,6,8,5,6,6,12,7,7,5,8,5,7,7,10,6,7,6,10,7,10,9,16,9,9,6,9,6,7,6,11,6,7,5,7,5,6,5,10,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,4,5,5,7,4,4,3,5,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,5,8,5,6,6,13,8,9,7,12,8,11,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,10 +-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,4,4,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,7,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,3,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,13,7,8,6,7,5,6,5,9,5,6,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,7,4,4,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,6,6,20,11,11,7,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,8,5,6,5,7,4,4,4,6,4,6,5,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,9,6,9,9,19,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,8,4,4,4,6,4,4,4,8,5,5,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,6,4,5,5,9,5,6,4,6,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,2,2,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,2,2,3,6,4,4,4,5,3,4,4,8 +-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,6,7,7,12,6,7,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,7,4,4,4,5,4,5,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,9,6,9,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,3,5,3,4,3,5,3,4,4,8 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,3,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,2,2,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,9,5,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,6,4,4,4,6,4,5,4,6,4,5,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,5,7,5,6,6,10,6,8,7,11,8,11,11,17,9,9,6,9,5,6,5,7,4,5,4,5,4,5,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,13,9,13,13,39,20,20,14,21,12,14,12,21,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,15,8,8,6,10,7,9,9,21,11,10,7,10,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,10,7,9,9,35,18,18,13,20,11,13,11,20,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,9,13,13,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,19,10,10,8,12,7,9,7,12,7,7,5,8,5,7,7,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,15,8,9,7,11,7,10,10,18,10,11,9,16,11,16,15,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,14,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,8,5,5,4,5,4,5,5,10,6,6,5,9,6,8,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,8,5,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,16,9,9,6,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,14 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,20,10,10,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,7,4,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,11,6,6,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,4,3,4,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,26,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,14,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,24,12,12,9,13,8,9,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,10,6,6,5,8,5,6,6,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,5,3,3,3,4,2,2,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,5,4,5,5,9 +-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,20,10,10,7,11,6,7,6,12,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,12,7,7,5,7,4,4,4,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,6,5,10,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,38,19,19,13,20,11,13,11,19,10,11,9,14,9,12,11,20,11,11,8,12,7,8,7,13,7,8,7,11,7,9,9,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,20,11,12,9,13,8,11,10,18,10,10,8,12,7,9,8,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,9,14,8,10,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,10,6,8,7,14,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,20,10,10,7,10,6,8,7,9,5,6,5,8,5,7,7,10,5,5,4,6,4,5,4,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,4,5,6,11 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,2,8,5,5,4,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,23,12,12,8,12,7,8,7,14,8,8,6,9,6,8,7,13,7,7,6,8,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,6,4,7,5,6,6,10,6,7,6,9,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,7,4,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,6,5,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-5,-12,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,7,11,6,6,5,6,4,5,5,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,19,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,7,5,6,5,8,6,8,8,34,17,17,12,18,10,12,11,20,11,12,9,13,8,11,10,19,10,10,8,11,7,8,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,12,7,8,6,9,6,8,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,14,8,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,19,10,10,7,10,6,8,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,4,6,6,10 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,5,5,7,5,7,7,12,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,6,8,8,34,17,17,12,18,10,12,11,19,10,11,9,13,8,11,10,19,10,10,8,11,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,13,7,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,10 +-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,19,10,10,8,12,7,8,7,12,7,7,6,10,6,8,7,13,7,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,10,6,7,6,10,6,6,5,8,6,9,9,17,9,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,24,12,12,9,13,8,9,8,13,7,7,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,9,8,14,10,14,14,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,11,21,11,12,9,14,8,10,9,16,9,11,9,16,11,16,16,31,16,16,11,16,9,10,9,15,8,8,6,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,6,8,8,15,8,9,7,11,7,10,10,19,11,13,11,18,13,19,19,72,36,36,25,37,21,24,20,34,18,19,15,24,15,20,19,35,18,19,13,20,12,15,13,24,13,15,12,20,13,18,18,34,18,18,13,20,12,15,13,22,12,12,9,15,10,14,13,25,14,15,11,17,10,13,12,22,12,13,11,18,12,17,17,34,18,18,12,18,10,12,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,16,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,68,34,34,23,35,20,24,20,34,18,19,15,24,15,21,20,39,20,21,15,22,13,17,15,28,16,18,14,23,15,21,20,39,20,20,13,19,11,13,11,18,10,12,9,15,9,12,12,22,12,12,9,15,9,11,10,19,11,12,10,16,11,15,15,30,16,16,11,15,9,10,8,14,8,8,7,11,7,10,10,18,10,10,8,13,8,11,11,21,12,13,11,19,13,20,20,38,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,13,24,14,17,14,24,17,26,26,56,29,29,20,29,17,20,17,31,17,18,13,21,13,17,16,29,15,15,11,17,10,12,11,19,10,11,9,14,9,12,12,23,12,12,8,12,7,9,9,16,9,9,7,11,7,10,9,16,9,10,7,11,7,10,9,16,9,11,9,15,11,16,16,30,16,16,11,17,11,14,12,22,12,13,10,16,11,15,14,27,14,15,11,16,10,13,12,22,13,15,12,20,13,18,18,35,18,18,13,19,11,14,12,22,12,13,11,18,12,17,17,32,17,17,12,18,11,14,13,23,13,16,14,24,16,23,23,38,19,19,13,20,12,15,13,23,12,13,10,15,10,14,13,24,13,14,10,15,9,10,9,16,9,11,9,16,11,15,14,27,14,14,10,16,10,13,11,20,11,12,9,15,10,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,28,15,15,10,15,9,10,8,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,11,7,8,6,10,7,9,9,18,9,9,6,8,5,6,5,7,4,4,3,4,3,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,7,10,10,18 +-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,19,11,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,20,10,11,8,12,7,9,8,15,9,10,8,12,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,7,12,7,9,8,13,9,14,14,28,15,15,10,15,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,7,4,5,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,9,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,3,3,3,4,4,6,4,4,4,6,4,6,5,9 +-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,4,3,13,7,8,6,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,5,7,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,18,10,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,19,10,11,8,12,8,10,9,15,9,10,8,12,8,12,11,20,10,10,7,10,6,6,5,10,6,6,5,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,14,14,10,16,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,6,8,7,11,6,6,5,8,6,8,7,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,10,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,11,11,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,5,3,4,4,6,4,6,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,5,4,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,24,13,13,9,12,7,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,6,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,24,12,12,8,12,7,8,7,12,7,7,6,8,6,7,7,13,7,8,6,8,6,7,6,10,6,7,6,8,6,8,8,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,6,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,12,6,7,5,7,4,6,5,8,5,6,5,8,6,9,9,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-9,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,14,7,7,5,8,5,6,5,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,8,8,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,8,8,17,9,8,6,8,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,35,18,18,12,18,11,13,11,17,9,10,8,12,8,11,10,20,10,10,7,11,7,8,7,14,8,8,7,11,7,9,9,19,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,6,10,6,8,7,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,9,5,6,5,9,6,9,9,35,18,18,12,18,10,12,10,18,10,11,8,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,19,10,10,7,10,6,6,5,11,6,7,6,9,6,7,6,12,7,7,5,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,6,10,7,10,11,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,13,8,10,8,14,10,15,15,29,15,16,11,16,9,11,9,15,8,8,6,10,7,9,9,15,8,8,6,8,5,6,6,9,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,5,9,6,7,6,9,6,8,8,17,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,9,5,6,5,8,5,7,7,16,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,5,4,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,10,6,6,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,4,2,2,2,4,3,3,3,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,6,4,4,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,4,3,4,4,7,4,4,3,5,4,5,5,12,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,24,12,12,8,13,7,8,7,12,7,8,6,9,6,8,7,15,8,7,5,8,5,6,5,10,6,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,23,12,12,8,13,8,9,7,13,7,8,6,8,6,8,7,13,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,6,5,10,6,8,7,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,7,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,8,4,4,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6 +-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,10,6,7,5,8,5,7,6,13,7,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,7,6,11,6,7,5,8,5,6,5,9,5,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-6,-9,-9,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,8,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,3,11,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,8,4,4,3,5,4,5,5,8,5,5,4,5,4,6,6,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,15,8,8,6,9,5,6,5,9,5,6,5,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,5,9,6,8,8,12,6,6,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,9,6,7,7,18,9,9,7,10,6,7,6,10,6,6,4,6,4,6,5,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,7,6,10,7,10,9,34,18,18,13,19,11,13,11,18,10,11,8,12,8,11,11,22,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,16,9,10,7,11,7,8,7,13,8,9,8,13,9,12,12,17,9,10,7,10,6,6,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,5,3,3,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,34,18,18,13,19,11,12,10,18,10,11,9,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,8,13,8,11,11,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,6,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,5,6,5,9,5,6,5,9,7,10,10,19,10,10,8,12,7,9,7,12,7,7,6,10,7,10,9,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,29,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,13,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,13,7,8,6,8,5,5,5,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,6,5,9,6,9,9,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,11,7,9,9,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,13,9,13,13,20,11,11,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,7,5,6,4,5,5,8,5,6,5,7,5,6,6,15,8,8,6,9,5,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,13,7,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3,3,4,3,4,5,9 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,7,4,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,4,3,3,3,6,4,4,4,6,4,5,5,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,5 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,3,8,5,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,6,4,4,4,6,4,5,5,19,10,11,8,10,6,8,7,11,6,6,5,7,5,6,6,12,7,8,6,8,5,6,5,9,5,6,5,8,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,11,6,6,4,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,4,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,8,12,7,7,6,11,6,7,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,7,4,5,5,9,5,6,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,12,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,4,5,3,4,4,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,23,12,12,8,12,7,9,8,13,7,7,5,8,6,8,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,5,10,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,23,12,13,9,14,8,9,7,12,7,7,5,8,6,8,7,13,7,8,6,9,5,6,6,12,7,7,6,10,7,9,9,14,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,10,6,7,5,8,5,7,7,11,6,7,5,8,5,7,7,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,14,8,8,5,7,5,6,6,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,8,5,7,6,10,7,11,11,14,8,8,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,8,4,4,3,4,3,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,6 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3 +0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,6,3,3,3,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,5,3,3,3,4,3,4,3,5,4,6,6,8,4,4,3,3,2,3,3,3,2,2,2,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,6,5,19,10,10,7,11,7,8,7,12,7,7,5,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,6,9,6,8,8,15,8,8,6,7,4,5,4,8,5,5,4,5,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,5,6,5,6,4,6,6,20,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,9,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,3,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,5,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3 +0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,7,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,13,7,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,5,4,4,3,5,4,5,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,16,9,9,6,9,6,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,2,2,2,1,1,1,1,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,3,3,4,3,4,5,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,10,6,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,22,12,12,9,13,8,9,8,13,7,7,5,8,5,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,7,7,10,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,7,6,11,6,7,6,10,7,9,9,35,18,19,13,19,11,14,12,20,11,12,9,15,10,13,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,14,27,14,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,10,8,13,9,14,14,24,13,13,9,12,7,8,7,11,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,4,4,3,3,2,3,3,5,4,5,4,7,5,7,7,14,8,8,6,10,6,7,7,12,7,9,7,12,8,11,11,36,19,19,13,19,11,14,12,21,11,12,8,12,8,11,10,18,10,10,7,11,7,9,8,13,7,8,7,12,8,12,12,19,10,9,6,8,5,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,18,9,9,7,10,6,8,8,14,8,8,7,11,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,18,12,17,17,34,17,17,11,16,9,11,10,17,9,9,7,11,6,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,19,10,11,8,12,7,9,7,12,7,8,6,9,6,9,9,16,9,9,7,10,6,8,8,15,9,11,9,15,11,16,16,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,6,13,7,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,22,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,4,5,4,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,4 +0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,14,8,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,10,6,5,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,5,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,4,6,6,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,8,5,7,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,19,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,7,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,9,6,7,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,4,5,13,7,7,5,7,4,4,4,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,4,2,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,5,5,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,6,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,3,3,5,4,4,4,5,4,5,5,13,7,7,5,8,5,6,5,8,4,5,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,6,3,3,2,2,2,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 +1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,1,2,1,1,1,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,4,6,4,5,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,14,7,7,5,6,4,5,5,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,20,11,11,8,11,7,9,8,13,7,8,6,8,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,9,5,5,4,7,4,5,5,9,5,6,5,8,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,3,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,10,6,6,5,7,4,5,4,8,5,5,5,8,5,7,7,20,10,10,7,11,7,8,7,11,6,6,5,8,5,6,5,11,6,6,5,8,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,5,5,11,6,6,4,6,4,5,5,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,11,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,6,9,5,6,5,8,6,9,9,12,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,5,3,4,3,4,3,4,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,8,4,4,3,3,2,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,5,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,12,6,6,4,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,4,4,8,4,4,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,4,5,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,5,7,4,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,2,3,3,5,3,3,2,3,3,4,4,17,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,5,8,6,8,8,25,13,13,9,14,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,9,7,11,7,10,10,20,10,10,7,10,6,7,7,12,7,7,5,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,6,3,3,2,3,2,3,3,6,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,23,12,12,9,14,8,9,8,14,8,8,6,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,6,9,5,5,3,4,3,4,4,6,4,4,3,5,4,6,6,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,13,7,8,6,10,6,8,7,13,8,9,8,13,9,13,12,24,13,13,9,12,7,8,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,9,6,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,6,9,6,7,7,12,7,8,7,11,7,10,10,16,8,8,6,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,4,4,3,5,4,5,5,10,5,5,4,5,3,3,2,2,1,1,1,0,0,0,1,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,5,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,2,3,3,4,4,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,3,3,4,3,5,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,9,6,7,6,9,5,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,4,5,4,5,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,3,4,3,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,4,5,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2 +1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,12,7,8,7,13,7,7,6,9,6,9,9,14,8,8,6,10,6,7,7,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,6,10,5,5,4,6,5,7,7,11,6,7,6,11,7,10,10,19,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,6,9,6,7,6,10,7,10,9,21,11,11,8,12,7,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,6,9,6,7,6,12,7,9,7,12,8,12,11,18,9,9,6,8,5,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,9,9,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,5,11,6,6,5,8,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,3,4,4,6,4,4,4,14,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,4,3,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,4,5,4,4,4,6,4,4,4,6,4,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,4,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-3,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,6,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,8,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,17,9,9,7,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,10,7,10,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,7,10,10,17,9,8,6,8,5,6,5,10,6,6,4,5,4,5,4,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,12,7,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,7,5,6,4,5,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,9,16,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,9,6,9,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,13,7,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,7,7,6,8,5,7,6,10,6,7,6,11,7,10,10,16,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,8,5,6,5,9,6,8,8,10,5,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,26,13,13,9,14,8,10,8,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,9,8,14,9,13,13,41,21,20,14,20,12,15,13,22,12,14,11,18,12,16,15,29,15,16,11,16,9,11,10,18,10,12,10,18,12,17,17,32,17,17,12,19,11,14,12,21,11,12,9,14,9,12,12,23,12,13,10,16,10,13,12,21,12,13,10,17,12,17,17,31,16,16,10,14,8,10,8,13,8,9,7,11,7,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,9,17,9,9,6,9,6,8,7,12,7,8,6,9,6,8,7,13,7,8,6,10,7,9,8,14,8,10,9,16,11,17,17,39,20,19,13,19,11,14,12,20,11,12,9,15,9,12,11,20,11,12,9,13,8,11,10,18,10,11,9,14,10,14,14,26,14,14,10,15,9,10,8,14,8,8,6,9,6,7,6,11,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,25,13,12,8,12,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,11,7,10,10,20,11,11,8,11,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,19,11,14,12,20,13,19,19,31,16,16,11,16,9,10,8,13,7,7,6,9,6,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,21,11,11,8,11,7,8,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,10,8,12,7,9,9,16,9,11,10,18,12,18,18,26,14,14,10,14,8,10,9,16,9,9,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,9,7,12,8,11,11,21,11,12,8,12,7,9,7,12,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,23,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,2,2,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,9,7,10,6,8,7,11,6,7,5,7,5,6,6,12,7,7,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,4,7,4,4,4,6,4,5,4,8,5,6,5,9,6,9,9,20,10,10,7,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,6,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,7,5,6,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,8,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,4,4,8,5,6,5,9,7,10,10,21,11,11,8,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,2,2,2,2,2,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,5,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,4,3,4,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,5,6,5,8,6,8,8,23,12,12,8,12,7,9,7,13,7,8,6,10,6,8,8,16,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,7,11,6,7,5,8,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,15,8,7,5,6,4,5,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,8,7,12,8,12,12,16,8,8,6,8,5,5,4,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,3,3,2,3,3,4,3,4,4,13,7,8,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,6,7,6,10,7,10,10,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,13,7,6,4,6,4,5,5,7,4,4,3,4,3,4,3,6,3,3,2,2,2,3,3,2,2,2,2,4,3,4,4,13,7,7,5,6,4,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,7,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,11,6,6,4,5,3,4,3,6,3,3,3,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,18,10,10,7,9,6,7,6,9,5,6,5,8,5,6,6,11,6,7,5,6,4,5,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,4,3,4,3,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0 +1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,4,3,4,3,4,4,6,3,3,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,15,8,8,6,9,5,6,5,9,5,5,4,5,3,4,3,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,7,4,5,4,5,4,6,6,10,6,6,5,8,6,9,9,30,15,15,10,14,8,10,9,15,8,9,7,10,7,9,8,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,7,12,8,11,11,17,9,9,6,8,5,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,14,8,8,5,7,4,5,5,8,4,4,3,5,4,5,5,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,24,13,13,9,14,8,10,9,15,8,8,6,10,6,8,8,11,6,7,5,7,4,5,4,7,4,5,4,7,5,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,5,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,14,14,18,9,9,7,10,6,7,6,10,6,6,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,2,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,10,6,7,7,12,7,9,7,12,8,11,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,5,4,6,5,7,7,15,8,7,5,7,5,6,5,8,5,5,4,5,3,4,3,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,12,7,7,5,6,4,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3 +0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,5,7,4,5,4,8,5,6,5,8,6,8,7,13,7,6,5,7,5,6,5,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,9,5,4,3,5,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,5,5,8,6,8,9,11,6,6,4,7,4,4,4,7,4,4,3,4,3,3,3,6,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,9,5,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,5,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-2,0,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-5,-3,-4,-4,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,8,5,5,4,6,4,4,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,8,8,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,8,5,6,5,7,5,7,6,11,6,6,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,5,6,6,12,7,8,7,12,8,11,11,20,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,7,4,5,4,7,5,8,8,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,7,6,11,6,7,6,11,8,12,12,15,8,8,6,8,5,5,4,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,3,4,3,4,4,11,6,6,4,5,3,4,3,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6 +1,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,5,3,4,3,4,3,5,4,7,4,4,4,5,4,5,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-3,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,6,4,4,3,5,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,6,5,7,7,22,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,8,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,9,5,6,5,7,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,8,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,10,6,6,6,10,7,11,11,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,3,4,3,4,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,5,7,7,12,6,6,5,8,5,5,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,4,3,3,2,3,3,9,5,6,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,5,7,7,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,18,9,9,6,9,6,6,6,10,6,6,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,5,3,4,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,6,6,10,7,10,10,14,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,4,4,4,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-9,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-7,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,10,5,5,3,4,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,2,1,1,1,1,1,1,2,3,2,3,2,6,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,6,4,4,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,40,21,21,14,21,12,15,13,23,12,13,10,15,9,12,11,21,11,12,9,13,8,9,8,15,9,11,9,15,10,15,15,23,12,12,8,12,7,9,8,14,8,9,7,11,7,9,9,16,9,9,7,11,7,10,10,18,10,12,11,19,13,19,18,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,8,10,9,17,10,12,11,19,13,19,19,34,17,17,11,16,9,11,10,17,9,9,7,11,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,8,5,6,6,10,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,13,8,11,11,20,11,13,11,20,14,20,19,26,13,13,9,13,7,8,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,6,5,9,6,7,6,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,8,5,7,7,12,7,7,5,6,4,5,4,6,4,5,4,6,4,6,6,15,8,9,6,9,6,8,7,13,7,8,6,9,6,9,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,23,12,12,9,14,8,9,8,14,8,8,7,11,7,10,9,16,9,9,6,9,6,7,7,12,7,7,6,10,7,9,9,20,10,10,7,9,5,6,5,9,5,4,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,5,4,6,6,16,8,8,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-13 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,9,5,6,4,5,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,21,11,11,8,11,7,8,7,13,7,7,6,8,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,10,14,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,5,3,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,9,5,6,4,6,4,4,3,5,3,2,2,4,2,2,2,5,3,2,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,22,12,12,8,12,7,8,7,14,8,8,6,8,6,8,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,8,6,10,7,10,10,16,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,5,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,5,5,8,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,4,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,11,6,6,4,6,4,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-7 +0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,16,9,9,6,9,5,6,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,2,2,3,3,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,25,13,13,9,14,8,10,9,16,9,9,7,10,7,9,8,14,8,8,6,9,6,7,6,12,7,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,6,12,7,9,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,11,6,7,5,8,5,6,5,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,6,9,6,8,7,10,6,8,7,12,8,11,11,24,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,7,8,6,10,7,9,8,15,9,10,8,14,9,13,13,16,8,8,6,8,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,7,13,7,8,6,8,5,6,5,6,4,4,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,15,8,8,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,3,5,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,3,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,5,10,6,6,5,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,20,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,6,4,6,4,4,3,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,4,5,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,6,6,4,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,12,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,5,8,8,12,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,11,7,8,6,11,8,11,10,11,6,6,4,5,4,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,1,1,1,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,5,6,11,6,6,4,6,4,5,4,7,4,3,2,3,2,3,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,7,4,5,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,36,19,19,13,20,12,14,12,21,11,11,8,13,8,10,9,20,11,11,8,13,8,10,9,16,9,11,9,14,9,13,13,24,12,12,9,13,8,10,8,14,8,8,6,9,6,9,9,14,8,8,6,10,7,10,9,17,10,12,10,18,12,18,18,29,15,16,11,16,9,11,9,15,9,10,8,12,8,10,9,18,9,9,6,9,6,7,7,12,7,8,7,11,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,9,16,9,10,9,15,10,15,16,33,17,17,12,18,10,12,10,17,10,11,8,13,8,11,10,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,7,15,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,11,6,6,5,8,6,8,8,18,10,10,8,12,8,11,11,20,11,13,11,19,13,19,19,21,11,11,8,11,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,7,5,7,8,16,8,8,6,9,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,6,5,8,5,6,5,9,6,9,8,18,9,9,6,8,5,5,4,7,4,5,4,5,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,9,8,12,7,8,6,9,6,7,7,12,7,9,8,13,9,13,13,20,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,8,6,9,6,7,6,11,7,8,6,10,6,8,8,16,9,9,6,9,5,6,5,8,5,6,5,7,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,4,3,4,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,20,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,13,7,7,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,11,6,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,4,4,6,4,5,5,5,3,4,3,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,24,12,12,9,13,8,10,8,13,7,7,5,8,5,7,6,13,7,8,6,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,9,8,14,8,8,6,9,5,6,5,8,5,6,5,6,4,6,6,12,7,7,5,9,6,8,8,13,8,10,8,14,10,14,14,14,7,7,5,6,4,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,13,7,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,7,7,20,10,10,7,11,7,8,7,11,6,6,5,7,4,6,5,11,6,6,5,7,4,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,8,4,5,4,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,12,8,12,11,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,3,3,4,4,7,4,4,3,4,3,5,5,8,5,5,5,8,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,4,6,6,10,6,6,4,6,4,4,3,7,4,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,34,17,17,12,18,11,13,11,18,10,10,8,12,7,9,9,18,10,10,7,11,7,9,8,13,8,9,8,13,9,12,12,22,11,11,8,12,7,9,7,13,7,8,6,8,6,8,8,15,8,9,7,11,7,9,9,17,10,12,10,16,11,16,16,29,15,15,11,16,9,11,9,16,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,11,7,8,7,12,8,12,11,19,10,11,8,11,7,8,8,14,8,9,7,11,7,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,16,16,32,16,16,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,5,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,7,7,13,8,9,7,12,8,12,12,21,11,12,8,12,7,9,7,12,7,8,7,11,7,10,10,19,10,11,8,13,8,11,10,18,11,13,11,20,13,19,19,18,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,18,9,9,6,8,5,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,13,7,8,7,12,8,12,12,21,11,11,8,11,7,9,8,13,7,8,6,10,7,9,9,14,8,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,6,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,4,4,10,5,5,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,4,2,3,2,3,2,3,2,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,23,12,12,8,12,7,9,7,12,7,7,6,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,6,7,6,11,6,7,5,8,5,7,7,12,6,7,5,7,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,8,8,6,10,6,8,7,13,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,4,8,5,6,4,7,4,6,6,10,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,7,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,9,5,5,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,4,3,4,3,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,11,12,9,14,9,11,10,19,11,12,10,16,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,15,8,8,6,10,6,6,5,9,5,6,5,8,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,13,7,8,6,11,7,10,10,18,10,11,8,14,9,12,11,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,7,5,6,6,12,7,7,6,8,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,10,6,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-6,-4,-6,-6,-14 +1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,10,5,5,3,5,3,4,3,4,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,33,17,18,12,17,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,11,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,10,11,8,14,9,11,10,19,11,12,10,17,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,9,9,15,8,8,6,9,6,6,5,9,5,6,5,7,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,14,8,8,6,11,7,10,10,18,10,11,8,14,9,11,10,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,7,5,7,6,12,7,7,6,8,5,7,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-10,-5,-7,-6,-11,-7,-12,-12,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-9,-14,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-11,-23,-12,-13,-9,-15,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-38,-18,-18,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-1,-1,0,0,0,0,1,1,1,2,2,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,6,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,9,5,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,5,3,4,4,7,6,9,9,17,9,10,7,10,6,7,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,7,6,11,6,7,6,10,7,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,8,11,10,19,10,11,8,13,8,11,11,21,12,14,12,22,15,22,21,66,33,33,23,34,19,22,19,33,18,19,15,25,16,21,20,38,20,20,14,21,12,15,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,19,12,16,16,30,16,17,13,20,12,16,15,28,16,18,15,25,17,25,25,49,25,25,17,26,15,17,15,26,14,15,11,17,11,15,14,26,14,15,11,17,10,13,12,22,12,14,11,19,13,18,18,34,18,18,12,18,11,13,11,19,11,13,10,17,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,30,21,31,31,62,31,31,21,32,18,21,18,32,17,19,14,23,15,21,20,39,20,21,15,24,14,18,16,30,16,18,15,25,17,24,24,46,24,24,16,23,13,16,14,24,13,15,12,20,13,18,17,33,18,19,14,21,13,17,15,27,15,17,14,24,16,23,23,44,23,23,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,11,17,11,14,13,24,13,15,12,20,14,20,20,39,20,21,15,22,13,16,14,25,14,16,12,20,13,18,17,33,18,19,14,22,14,19,18,34,20,24,21,37,25,38,38,34,18,18,12,18,11,14,12,21,11,12,9,15,9,12,11,20,11,11,8,12,7,9,8,14,8,9,7,10,7,10,10,19,10,11,8,13,8,9,8,15,8,9,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,8,10,9,16,9,9,7,10,7,9,8,15,8,9,7,11,7,8,7,13,8,9,8,13,9,12,12,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,14,27,14,15,11,18,11,14,12,22,13,16,13,23,15,22,22,44,22,22,15,21,12,15,12,21,11,11,8,11,7,9,8,13,7,7,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-13,-27 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,7,11,6,8,7,13,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,9,7,10,7,9,8,15,9,10,9,15,11,16,16,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,11,20,10,11,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,8,11,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13 +0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,2,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,13,7,7,6,9,6,8,8,13,7,8,6,9,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,8,16,9,10,9,15,11,16,16,32,17,17,12,17,10,12,10,17,9,10,8,12,8,11,11,19,10,10,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,9,7,10,6,8,8,15,8,9,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-2,-3,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,4,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,7,4,4,4,6,4,6,6,10,6,6,4,7,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,6,8,6,8,7,13,7,7,6,9,6,7,6,11,6,7,5,9,6,8,8,16,8,8,6,8,5,6,6,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,5,7,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,4,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,8,13,9,13,13,12,6,6,5,7,4,6,5,8,4,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,8,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,2,1,1,0,1,1,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,6,4,4,3,3,2,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,5,5,10,6,6,5,7,5,7,7,10,6,8,7,11,8,11,11,33,17,17,12,17,10,11,10,18,10,10,8,12,8,11,10,20,10,10,7,10,6,7,7,14,8,8,7,11,7,10,10,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,9,13,7,8,6,9,6,7,7,14,8,8,6,9,6,7,7,13,8,9,7,11,7,10,10,18,9,9,7,10,6,7,7,10,6,6,5,8,6,8,8,14,8,9,7,10,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,18,10,12,10,17,9,10,8,12,8,10,10,18,10,11,8,12,7,9,8,15,8,9,7,12,8,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,10,7,9,8,15,9,10,8,12,8,12,12,23,12,11,7,10,6,7,7,11,6,6,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,10,11,18,10,10,7,11,7,9,8,12,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,17,10,13,11,19,13,19,19,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,5,5,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,11,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,8,8,12,6,6,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,6,6,5,8,6,8,7,12,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,6,4,6,6,11,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,12,7,9,8,14,10,14,14,12,6,6,5,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,6,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,8,4,5,4,6,4,5,5,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,9,9,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,5,6,6,10,6,8,7,12,8,12,12,10,6,6,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,4,2,3,3,4,3,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,5,4,6,4,6,5,9,5,5,4,7,4,5,4,7,4,4,4,6,4,4,4,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,4,11,6,6,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,3,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,3,3,6,4,4,4,6,4,5,5,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,34,17,17,12,18,10,11,9,16,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,10,6,8,8,14,8,8,6,10,7,10,10,13,7,8,6,9,6,8,7,12,7,9,8,14,10,14,14,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,9,7,12,8,11,11,17,9,9,7,11,7,8,7,12,7,7,6,10,7,10,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,16,16,11,17,10,11,9,16,9,9,7,12,8,11,10,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,21,11,12,8,12,7,9,7,12,7,7,5,8,6,8,8,17,9,10,7,10,7,9,8,14,8,9,8,13,9,12,12,23,12,12,8,11,6,7,6,10,6,6,5,7,5,7,7,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,11,11,9,14,9,11,10,18,11,13,11,20,14,20,20,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,16,9,10,7,11,7,9,8,14,8,10,8,13,9,12,12,18,9,9,6,8,5,6,5,9,5,6,5,7,4,5,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,6,5,7,5,7,7,10,5,5,4,4,3,4,3,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,19,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,4,4,3,5,4,5,4,7,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,6,5,9,5,6,6,10,7,10,10,18,9,9,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,5,6,4,6,4,6,6,12,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,10,6,6,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,10,6,7,7,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,4,3,4,3,6,4,4,3,4,3,4,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,10,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,4,4,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,5,6,5,8,6,8,9,22,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,15,8,8,6,9,6,7,6,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,10,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,7,6,10,6,8,7,11,8,11,11,20,11,11,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,11,7,9,8,14,9,13,13,14,7,7,5,6,4,5,5,7,4,4,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,7,4,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,5,5,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,4,5,4,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,4,7,5,6,5,9,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,5,6,5,8,5,5,5,7,5,7,7,12,7,7,5,7,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,8,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,10,6,8,7,11,8,11,11,12,6,6,4,5,3,4,3,5,3,3,2,4,3,4,4,6,3,3,3,3,3,4,3,5,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,7,4,5,5,9,5,6,5,8,6,8,8,9,5,5,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,6,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,11,6,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9 +-3,-1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,2,2,4,3,3,3,4,3,5,5,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,6,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,2,2,2,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,11,6,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,7,6,9,6,8,8,14,8,10,8,14,9,13,13,35,18,18,12,18,11,13,11,18,10,11,8,13,8,10,10,18,10,10,7,11,7,8,8,14,8,9,8,14,9,12,12,21,11,11,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,6,7,6,10,6,7,6,10,7,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,11,15,8,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,10,17,9,10,8,12,7,9,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,9,9,20,10,10,7,11,6,7,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,15,8,9,8,13,9,13,13,26,13,13,9,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,7,12,7,7,6,9,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,19,13,18,18,19,10,10,7,9,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15,8,9,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,15,8,8,5,7,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-9,-19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,5,3,3,2,4,3,3,3,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,6,4,5,4,8,5,6,5,7,5,7,7,10,6,6,5,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,8,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,4,4,4,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,6,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-6 +-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,1,1,2,2,2,2,2,2,2,2,2,2,2,3,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,6,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,4,6,4,6,6,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,5,5,11,6,6,4,6,3,3,3,6,4,4,4,6,4,6,5,6,4,5,4,6,4,4,4,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,9,5,5,3,4,3,3,3,7,4,5,4,6,5,7,7,9,5,6,5,8,5,7,6,9,5,6,6,10,7,11,11,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,7,5,6,6,16,8,8,6,9,5,6,5,8,4,4,3,6,4,5,5,9,5,6,4,5,3,4,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,5,8,4,4,3,4,2,2,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,8,6,8,8,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,6,4,6,7,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-2,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6 +-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,5,8,5,7,6,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,6,11,7,10,10,27,14,13,9,12,7,8,7,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,7,6,9,6,9,9,12,7,7,5,8,5,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,10,6,6,4,5,3,4,4,8,5,5,4,7,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,24,12,12,9,13,8,9,7,11,6,6,4,6,4,5,5,12,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,18,10,10,7,9,5,6,6,10,6,6,4,5,4,5,4,10,6,6,5,7,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,12,7,7,5,6,4,4,3,5,3,4,3,5,3,4,3,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,5,9,6,7,6,11,8,12,12,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,5,7,7,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,4,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,1,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,3,4,3,3,3,3,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,5,8,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,8,6,8,8,8,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,7,5,7,8,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,0,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,2,2,3,2,2,2,4,3,3,3,-5,-2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,8,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,8,8,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,9,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,4,5,5,11,6,7,6,10,7,10,10,9,5,6,4,6,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,4,3,3,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,16,9,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,7,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,6,4,4,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,5,8,5,5,4,6,4,5,5,10,6,7,6,8,6,8,8,22,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,7,5,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,11,6,6,4,7,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,10,7,10,10,5,3,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,8,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,20,11,11,7,10,6,7,6,10,6,6,4,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,10,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,1,1,1,2,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,11,6,7,6,9,6,8,8,15,9,11,9,16,11,15,15,40,20,20,13,19,11,12,10,18,10,10,8,12,8,10,10,19,10,10,7,10,6,8,7,11,6,7,6,11,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,14,8,9,7,10,6,8,7,13,8,9,7,11,8,11,11,17,9,9,6,9,6,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,8,8,14,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,10,17,12,17,17,40,20,20,13,19,11,13,11,19,10,11,8,13,8,10,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,6,10,6,7,5,8,5,7,7,26,14,14,10,15,9,11,10,17,9,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,8,7,11,8,11,11,20,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,11,10,19,11,14,12,20,13,19,19,17,9,9,6,9,5,6,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,8,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,11,8,12,8,10,9,16,9,11,10,18,12,18,18,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,5,3,2,1,1,1,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25 +-3,-1,-2,-1,-2,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,7,10,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,10,6,6,5,7,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-7,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,11,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,9,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,6,7,11,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,0,-1,0,-1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,8,4,5,4,5,4,5,5,8,5,6,5,7,5,8,8,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,-8,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,4,3,3,3,4,3,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,10,5,5,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,6,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,20,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,8,5,6,5,8,6,8,7,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,9,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,3,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,3,4,3,3,2,1,1,2,2,3,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,15,8,8,6,7,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,3,2,2,2,5,3,3,3,5,3,4,5,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,14,8,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,3,2,4,3,3,3,4,2,2,2,3,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,4,7,4,4,4,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,8,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,4,5,5,8,5,5,4,7,5,8,8,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,5,8,6,8,7,8,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,5,7,5,8,8,14,8,9,7,12,9,13,13,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,6,5,8,5,7,7,12,7,9,7,12,8,11,11,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,1,1,1,0,-1,0,1,1,1,1,1,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,5,3,3,2,4,3,4,3,5,4,4,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,2,1,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,3,3,3,4,3,4,3,4,3,5,4,5,5,14,8,8,5,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,4,8,5,6,5,7,5,8,8,8,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,-1,0,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,4,5,4,6,6,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,8,5,5,3,4,3,4,3,7,4,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,7,4,5,4,5,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,8,4,4,3,4,3,5,5,9,6,7,6,10,6,8,8,14,7,7,5,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,9,5,6,5,8,6,9,10,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,7,4,4,4,6,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,3,2,1,1,1,1,2,2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 +2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,4,4,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,4,6,4,5,5,8,5,5,4,8,6,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,7,5,7,7,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-5,-11 +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,4,5,5,8,5,5,4,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,7,7,2,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,9,5,6,4,6,4,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,5,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,4,4,7,5,6,5,8,6,9,9,25,13,13,9,14,9,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,18,10,10,7,10,6,8,7,13,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,20,10,10,7,9,6,7,6,10,6,6,5,9,6,7,7,12,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,5,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,5,5,10,6,6,5,8,5,7,7,13,8,10,8,14,10,14,14,21,11,11,8,11,6,6,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,5,5,8,6,8,8,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,8,5,5,4,7,5,6,6,14,8,8,6,10,6,7,6,11,6,7,6,9,6,7,7,12,7,7,5,7,5,7,7,12,7,8,7,12,9,13,13,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,1,1,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,6,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,6,4,5,5,7,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,2,2,5,3,4,4,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,8,8,12,6,6,4,7,4,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,8,5,6,5,7,5,8,8,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-11 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,11,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,5,4,6,6,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-5,-3,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,5,3,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,11,6,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,5,8,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,4,4,6,4,6,5,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,10,6,7,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,5,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,5,6,6,4,4,3,4,3,3,2,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,9,9,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,1,0,0,0,1,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,7,11,6,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,3,2,3,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,1,1,1,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,9,9,22,12,12,9,13,8,10,8,14,8,8,6,9,6,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,15,8,8,6,10,6,7,7,12,7,7,6,9,6,7,6,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,16,9,9,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,11,8,12,12,18,10,10,7,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,13,7,6,4,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,7,7,12,7,9,7,12,8,10,10,0,0,0,0,-1,0,0,0,-1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,6,6,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,1,2,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,5,4,6,4,4,4,6,5,7,7,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,10,6,6,4,6,4,4,4,8,5,5,3,5,3,4,4,9,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,10,6,6,4,7,4,4,4,8,5,5,4,6,4,5,4,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,6,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,5,3,4,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,8,4,4,3,4,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,4,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,23,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,9,6,8,8,13,7,8,6,8,5,6,5,7,4,4,3,4,3,4,4,10,5,5,4,6,4,4,4,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,10,5,5,4,6,4,6,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,4,6,4,6,6,12,7,7,5,8,5,7,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,13,7,7,5,6,4,5,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,7,4,4,4,6,4,6,6,11,6,7,5,8,5,6,6,12,7,7,6,10,7,9,9,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-7,-4,-6,-6,-14 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,4,3,4,2,3,2,3,2,3,2,3,2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,8,5,5,4,7,5,6,6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,2,2,2,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,8,5,6,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,8,8,13,7,8,6,8,5,6,5,10,6,6,5,7,5,7,7,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,13,9,13,7,8,7,13,7,8,6,10,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-25,-12,-13,-8,-13,-7,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-22,-11,-12,-8,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,2,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,16,8,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,6,7,6,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,13,19,19,47,24,24,16,24,14,16,13,23,12,13,10,17,11,15,15,29,15,15,10,15,9,12,11,19,11,12,10,16,11,15,15,30,16,16,11,15,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,26,13,13,9,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,7,11,8,11,10,19,11,13,10,17,12,17,18,29,15,15,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,13,9,14,9,11,10,17,10,12,10,16,11,15,15,28,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,11,8,11,12,23,12,11,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,10,15,15,28,14,14,10,14,8,10,9,15,9,10,8,14,9,13,12,22,11,11,8,12,8,10,9,17,10,12,10,18,12,17,17,40,21,21,15,22,13,15,13,22,12,13,9,14,9,13,12,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,21,11,11,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,6,9,6,8,7,12,7,9,8,14,10,14,13,25,13,14,10,14,8,9,7,12,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,27,14,15,11,16,10,12,10,18,10,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,10,9,15,10,15,15,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,1,1,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-24 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,10,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,6,5,10,7,9,9,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-7,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,5,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,8,6,8,7,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,10,7,10,10,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,5,5,8,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 +0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7 +0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-5,-4,-7,-4,-5,-4,-8,-5,-9,-9,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,1,1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,3,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,9,5,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,7,7,11,7,8,6,10,7,10,10,25,13,13,9,14,8,9,8,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,5,10,6,6,5,9,6,9,10,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,22,12,12,8,11,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,6,4,5,4,8,5,6,5,8,5,7,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,4,7,5,8,8,13,7,8,6,8,5,5,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,5,8,6,8,8,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11 +1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,5,4,5,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,4,3,3,3,7,4,4,4,7,5,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,5,8,5,5,4,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,1,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,7,7,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-9,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,1,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,29,15,15,10,15,9,10,8,14,8,9,7,10,7,10,9,17,9,9,6,9,6,7,6,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,5,8,5,6,5,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,10,7,9,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,6,4,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,6,11,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,14,7,7,5,7,4,5,4,6,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,11,10,21,11,11,8,11,7,8,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,7,5,6,5,7,5,7,7,17,9,9,7,9,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,3,2,2,3,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,5,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6 +1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4 +0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-3,-11,-5,-6,-4,-6,-3,-4,-3,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,3,2,2,1,0,0,0,0,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,9,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,13,7,7,5,6,4,5,4,8,5,5,4,5,4,5,5,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,6,4,6,7,13,7,8,6,8,5,6,5,7,4,4,3,5,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,5,7,7,17,9,8,6,8,5,5,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,6,4,4,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,4,6,4,6,6,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-8 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,4,2,3,2,3,2,3,2,3,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,5,4,4,4,6,4,6,6,14,7,7,5,8,5,5,4,8,4,4,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,4,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,4,5,9,5,6,4,5,4,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,11,6,5,4,5,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,1,1,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,2,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,1,1,1,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,3,2,2,1,1,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,4,5,5,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,4,5,4,5,5,7,4,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,6,4,4,3,3,3,4,4,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,3,6,4,4,3,5,4,5,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,3,2,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,3,5,3,4,3,5,3,4,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 +-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-5,-10,-6,-9,-9,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,3,4,3,5,6,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,11,9,15,10,15,15,35,18,18,13,19,11,13,11,18,10,11,8,12,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,22,11,11,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,8,6,9,5,6,6,10,6,6,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,12,6,6,4,6,4,6,5,9,5,6,4,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,11,27,14,14,10,16,9,11,9,16,9,9,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,4,5,4,12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,6,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,5,4,6,5,7,7,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,12,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,4,6,4,5,5,9,5,6,5,8,6,8,9,20,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,4,4,5,4,5,5,13,7,6,5,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,0,0,0,0,0,1,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,10,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,10,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,8,8,6,8,5,5,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,9,6,9,9,12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,5,5,6,4,4,4,6,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,4,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,5,3,3,3,4,3,3,3,8,5,5,3,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,4,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,5,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,9,5,5,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,5,6,5,7,5,8,8,19,10,10,7,10,6,8,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,6,5,11,6,6,4,7,4,5,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,8,8,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,3,2,2,2,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,4,4,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,17,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,2,1,1,1,5,3,3,3,5,3,4,3,5,3,4,3,5,4,6,6,15,8,9,6,9,5,6,5,8,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,12,9,13,13,32,17,17,11,16,10,12,10,17,9,10,7,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,11,6,7,5,7,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,22,12,12,8,11,7,8,7,11,7,8,6,10,6,8,8,10,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,3,3,3,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,8,4,4,3,6,4,4,4,8,5,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-3,-6,-3,-5,-5,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,6,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,13,7,7,5,8,5,5,5,7,4,5,4,6,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,5,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,7,6,12,7,8,7,12,9,13,13,29,15,16,11,16,9,10,8,16,9,9,7,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,6,6,10,6,7,6,10,7,11,11,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,9,5,6,6,10,7,9,9,16,8,8,6,9,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,8,4,4,3,5,4,5,5,9,5,6,5,8,6,9,9,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17 +-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,5,4,5,4,8,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,3,3,2,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,4,4,4,6,4,5,4,6,4,6,6,12,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,6,9,5,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,4,3,6,4,4,4,8,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,7,4,5,4,6,4,5,4,7,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-8,-5,-7,-7,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,11,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,7,5,8,8,25,13,13,9,13,7,8,6,10,6,6,5,7,5,6,6,11,6,7,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,10,7,9,9,18,10,10,8,12,8,11,11,21,12,15,13,23,16,23,23,53,27,26,18,26,15,17,14,24,13,14,11,17,11,14,14,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,28,14,14,10,15,9,11,10,19,10,11,8,13,9,12,11,21,11,12,9,15,9,12,11,19,11,14,12,21,14,20,20,35,18,18,12,16,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,9,9,18,9,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,9,16,11,17,17,32,17,17,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,20,11,11,8,12,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,10,10,18,10,12,10,17,11,16,15,44,22,22,15,23,13,16,13,22,12,12,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-7,-16,-8,-10,-8,-16,-11,-17,-17,-34 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,7,4,4,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,13,9,12,12,28,14,14,10,14,8,10,8,13,7,8,6,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,12,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,6,5,9,5,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,4,4,4,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,4,6,4,6,5,10,6,6,4,7,4,5,5,7,4,4,4,6,4,6,6,12,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3,-3,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,15,8,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,9,8,14,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,8,6,8,7,15,8,9,7,10,6,7,7,11,6,6,5,8,6,9,9,18,10,10,7,10,6,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,6,9,5,6,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,6,6,4,6,4,4,3,3,2,2,2,4,3,4,4,7,4,4,4,6,4,5,4,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,6,10,7,9,9,24,13,13,9,12,7,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,9,5,5,4,5,4,5,4,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,14,8,8,5,7,4,5,5,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,4,5,3,4,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,6,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,8,6,10,7,10,10,21,11,10,7,10,6,8,6,11,6,6,4,6,4,6,5,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,7,5,6,5,9,6,9,9,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,8,7,17,9,9,6,8,5,6,6,9,5,5,4,7,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,9,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,7,6,9,6,9,9,17,10,12,10,17,11,16,16,34,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,19,10,11,8,12,7,9,8,14,8,8,7,11,7,10,10,21,11,11,7,10,6,7,6,10,6,7,6,10,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,6,5,7,5,8,8,15,8,8,5,7,4,4,3,4,3,4,3,5,3,4,4,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,19,10,11,8,11,6,7,6,11,6,6,5,8,5,7,6,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,5,10,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,5,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,5,3,4,3,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,10,21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,7,5,6,5,10,6,6,4,6,4,6,5,7,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,3,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,5,3,3,2,3,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,7,16,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,8,6,9,6,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,5,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-5,-5,-12 +-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,1,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,7,7,10,6,7,6,11,8,12,12,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,4,3,3,3,4,3,3,3,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,7,4,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,6,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,8,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,10,8,13,9,14,14,25,13,14,10,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,5,4,6,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,20,10,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,8,13,9,13,13,24,13,13,9,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,5,8,5,7,7,13,7,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-10,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,2,3,3,5,3,3,3,5,4,5,5,3,2,2,2,4,3,4,4,6,3,3,3,4,3,5,5,8,5,5,5,8,5,7,7,12,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,26,15,18,15,27,18,26,26,46,24,24,16,23,14,17,15,26,14,15,11,17,11,14,14,26,14,14,10,16,10,13,11,20,11,13,11,18,12,17,16,28,14,14,10,15,9,12,10,18,10,11,9,14,9,12,12,23,12,13,10,15,9,12,11,21,12,14,11,19,13,19,19,32,16,16,11,17,10,12,10,17,9,10,8,12,8,11,11,22,11,11,8,11,7,9,8,13,7,8,7,11,7,10,10,24,12,12,9,13,8,9,7,12,7,7,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,11,7,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,6,6,13,7,8,6,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,7,13,8,10,9,16,11,16,16,37,19,19,13,19,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,10,6,6,5,9,5,6,4,6,5,7,7,10,6,6,4,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,4,6,3,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-13,-6,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-10,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-10,-13,-10,-19,-13,-20,-20,-42 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,4,7,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 +-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,9,5,6,5,9,5,6,5,9,6,7,7,14,8,8,7,10,6,8,8,15,9,10,9,15,10,15,15,26,14,14,9,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,7,7,11,7,8,6,11,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,14,7,7,5,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,6,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,6,4,4,4,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,10,6,8,7,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,12,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-6,-3,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,9,5,5,4,6,5,8,8,16,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,19,10,11,8,12,8,10,10,18,9,9,7,10,7,9,8,12,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,10,8,13,9,12,12,22,12,12,9,13,8,9,7,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,10,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,11,6,7,5,8,5,6,5,9,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,7,5,8,5,5,4,7,4,4,3,4,3,5,5,6,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,20,10,10,7,11,6,7,6,12,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,7,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-3,-2,-3,-2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-5,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,4,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,6,6,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,14,8,10,9,14,10,14,15,26,13,13,9,14,8,10,8,15,8,9,7,10,7,9,9,14,8,8,6,8,5,6,6,10,6,6,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,13,7,8,6,8,5,6,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,7,4,5,4,7,5,8,8,15,8,8,6,7,5,6,5,10,5,5,4,6,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,5,3,4,3,4,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,5,10,6,6,5,7,5,6,5,9,5,6,6,9,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,6,6,5,9,6,9,9,15,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,12,7,7,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,7,9,6,6,6,9,6,6,5,7,5,6,6,9,5,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,7,5,6,5,9,5,5,4,5,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,6,5,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 +-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,1,1,2,3,2,3,3,5,4,6,6,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,21,11,10,7,10,6,7,6,10,6,6,5,8,5,6,6,13,7,8,6,10,6,8,7,13,7,8,6,10,7,11,11,19,10,11,8,13,8,11,10,17,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,47,24,24,16,24,14,17,15,26,14,15,11,18,12,16,15,24,12,12,9,13,8,11,10,17,10,11,9,15,11,16,16,29,15,15,11,17,10,12,10,18,10,11,9,14,10,14,14,22,12,12,9,15,9,12,11,20,11,12,10,17,12,17,17,31,16,17,12,17,10,11,10,17,9,10,8,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,12,23,12,11,8,11,7,9,8,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,9,16,8,8,6,9,6,8,8,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,5,8,5,6,5,8,5,5,5,8,6,8,9,16,9,10,8,12,8,10,9,17,10,12,10,17,11,16,16,33,17,17,12,17,10,12,10,18,10,11,8,12,7,9,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,14,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,13,7,7,6,8,5,7,6,11,7,8,6,10,7,9,9,17,9,10,8,11,7,10,9,17,10,12,10,17,12,18,18,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,9,6,9,6,8,7,11,7,8,6,10,7,11,11,20,10,10,7,12,7,8,7,13,7,8,6,9,7,10,9,15,8,8,6,11,7,9,8,14,8,8,7,11,8,12,12,21,11,12,8,11,7,8,7,11,6,7,6,8,6,8,7,12,6,6,5,8,5,6,6,9,6,7,6,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,9,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,6,4,4,4,8,5,5,4,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-13,-27 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,7,5,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,15,10,15,9,10,8,14,8,9,7,10,7,9,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,10,10,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-5,-4,-10,-5,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-27,-13,-12,-8,-12,-6,-8,-6,-12,-5,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,7,6,10,6,8,7,11,8,11,11,20,11,11,8,12,8,10,9,17,9,10,8,14,9,13,13,25,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,49,25,26,18,26,15,17,14,24,13,15,11,18,11,15,14,26,13,13,9,14,9,11,10,17,10,11,9,16,11,17,17,30,16,16,11,17,10,11,10,18,10,11,9,14,10,14,13,22,12,13,10,16,10,12,11,20,11,13,10,17,12,17,17,32,17,17,12,17,10,11,10,16,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,7,10,6,7,7,13,8,9,7,12,8,12,13,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,7,4,5,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,5,5,8,6,8,9,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-14,-7,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 +-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-4,-3,-6,-3,-5,-5,-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,6,5,8,5,7,7,14,8,8,6,8,6,7,6,12,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,10,12,10,18,12,18,18,33,17,17,12,18,10,12,10,16,9,10,8,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,10,9,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,8,12,7,8,7,11,6,7,6,8,6,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,11,11,22,11,11,8,11,6,8,6,11,6,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-13,-13,-26 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,4,3,6,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,17,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,49,25,25,17,26,15,18,14,24,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,17,10,12,10,17,11,16,16,31,16,16,11,17,10,12,10,18,10,12,9,15,10,14,13,23,12,13,10,15,9,12,11,20,11,12,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,7,13,9,12,12,22,12,12,8,13,7,8,7,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,10,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,8,6,8,5,5,5,8,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-11,-7,-11,-10,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-40 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,16,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,50,25,25,17,26,15,18,14,25,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,18,10,12,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,12,9,15,10,13,13,23,12,13,10,15,9,12,11,20,11,13,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,22,12,12,8,13,8,9,8,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,7,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-13,-10,-19,-13,-20,-20,-40 +-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,7,6,10,7,11,11,22,12,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,17,12,19,12,16,15,28,16,19,15,26,18,27,27,53,27,27,19,29,17,20,17,31,17,18,13,20,13,17,17,32,17,17,12,18,11,14,13,25,14,16,13,23,16,24,24,46,24,25,17,26,15,19,17,31,17,20,16,28,19,28,27,53,28,30,22,36,22,30,28,52,30,36,30,53,36,53,53,106,54,54,36,54,30,36,30,53,28,30,22,36,22,30,28,53,27,28,20,32,19,24,21,38,21,24,19,33,21,30,30,58,29,29,20,29,17,21,18,31,17,18,14,23,15,21,21,40,21,21,15,23,14,18,16,30,17,19,16,28,18,26,26,51,26,27,19,28,16,20,17,30,16,17,13,22,14,19,17,32,17,18,13,21,13,16,14,26,15,18,15,26,17,25,25,49,25,25,18,27,16,21,19,34,19,21,16,26,17,24,24,46,24,26,19,30,18,24,23,43,24,29,24,43,29,44,44,86,43,43,29,42,24,28,23,41,22,23,17,28,17,23,21,40,21,21,15,23,14,17,14,25,14,16,13,22,15,21,21,40,21,21,15,24,14,18,16,28,16,18,14,23,15,20,20,38,20,21,16,25,15,20,19,35,20,23,19,33,22,33,33,64,33,33,23,34,19,23,20,35,19,20,16,26,16,22,21,40,21,22,16,25,15,20,18,34,19,23,19,32,21,31,31,61,32,33,23,35,21,26,23,41,22,25,20,34,22,31,30,58,31,33,24,38,23,30,28,52,29,34,28,50,34,50,50,99,50,51,34,51,29,35,29,51,27,28,21,33,20,26,24,46,24,24,17,27,16,20,17,30,17,19,16,28,18,26,26,50,25,25,17,26,15,19,16,29,15,16,12,20,13,17,17,32,17,17,12,19,12,15,14,27,15,17,14,24,16,22,22,42,22,22,15,22,13,15,12,21,11,12,10,16,10,14,13,23,12,13,10,16,10,13,12,22,13,15,13,22,14,20,20,39,20,20,14,21,13,16,14,25,14,16,12,20,13,19,19,36,19,21,16,25,16,21,20,38,21,25,21,37,25,38,38,74,38,38,26,38,22,26,22,39,21,22,17,27,17,22,20,37,19,20,15,24,15,19,17,30,17,20,16,27,18,26,26,50,26,26,18,27,16,19,16,27,15,17,13,22,14,19,18,34,18,18,13,21,13,16,15,27,15,18,15,26,18,26,26,50,25,25,17,25,14,16,14,24,13,14,11,19,12,16,15,28,15,16,11,17,10,13,12,23,13,16,14,24,16,23,23,46,24,24,17,25,15,18,16,28,16,18,15,25,16,23,22,43,23,25,19,30,18,24,22,42,23,27,22,39,26,38,38,76,38,38,26,38,22,26,23,41,22,24,18,29,18,24,23,44,23,24,17,25,15,18,16,29,16,17,14,23,15,22,21,41,21,22,15,22,13,15,13,23,13,14,11,19,13,18,17,32,17,18,13,20,12,16,15,27,15,18,15,27,19,28,28,56,29,29,20,29,17,20,17,30,16,17,12,19,12,15,14,25,13,13,10,15,10,13,12,22,12,13,11,18,12,17,17,32,16,16,11,16,9,11,9,16,9,10,8,13,9,12,12,22,12,12,9,14,9,12,11,19,11,13,11,18,12,17,16,30,16,16,11,15,9,11,9,15,8,8,6,8,5,5,4,6,3,2,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-8,-16,-8,-10,-9,-17,-11,-17,-17,-34,-17,-18,-12,-19,-10,-13,-11,-21,-11,-13,-10,-19,-12,-18,-18,-38,-20,-22,-16,-27,-16,-23,-21,-42,-23,-27,-23,-42,-27,-40,-40,-81 +-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,13,9,13,8,10,9,16,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,27,18,27,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,11,9,16,9,10,8,12,8,11,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,11,7,8,8,13,8,10,8,14,9,13,13,25,13,13,10,14,9,11,10,17,10,11,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,21,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,32,17,17,12,18,10,12,10,18,10,11,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,17,12,18,11,13,12,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,18,15,26,14,14,11,17,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,8,11,11,20,11,13,11,19,13,20,20,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,14,8,9,7,12,8,10,10,17,9,9,7,11,7,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,6,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,8,8,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-20,-13,-20,-20,-40 +-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,10,7,10,6,8,7,14,8,9,7,12,8,12,12,23,12,12,9,13,8,10,9,17,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,26,18,26,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,10,9,16,9,10,8,12,8,12,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,13,27,14,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,13,8,10,8,14,9,13,13,25,13,14,10,14,9,11,10,17,9,10,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,8,11,11,20,11,12,9,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,12,10,16,11,17,17,32,16,16,11,18,10,12,10,19,11,12,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,17,15,26,14,14,11,18,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,9,12,11,20,12,14,11,20,14,20,20,38,20,20,13,19,11,14,11,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,13,7,8,7,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,7,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,19,13,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,11,7,8,7,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,7,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,0,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-21,-11,-14,-11,-20,-13,-20,-20,-41 +-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,7,4,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,7,5,7,4,6,5,10,6,7,6,9,6,9,9,16,9,9,6,9,6,7,6,12,7,7,6,10,7,10,10,18,10,11,8,12,8,11,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,11,8,13,8,11,10,19,10,10,8,11,7,8,8,13,7,8,7,12,8,11,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,6,5,9,6,7,6,10,6,9,9,17,9,9,6,9,6,7,7,12,6,7,6,10,6,9,8,15,8,9,7,10,6,8,8,14,8,10,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,7,7,14,8,8,6,9,5,6,6,9,5,6,5,8,6,7,7,13,7,8,6,8,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,14,8,11,10,18,10,12,10,17,12,17,18,34,17,17,12,18,10,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,7,6,10,6,7,6,10,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,8,8,15,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,8,6,10,6,9,8,16,8,8,6,10,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-27 +-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,4,4,6,5,7,7,10,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,16,8,8,6,9,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,8,14,8,9,8,13,9,13,13,24,12,12,9,13,8,10,9,17,10,11,9,15,10,14,14,27,14,15,11,18,12,16,15,26,15,18,15,26,18,26,26,52,26,26,18,27,16,19,16,27,15,16,12,20,13,17,15,28,15,15,11,16,10,13,11,18,10,12,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,9,7,12,8,12,11,20,11,12,9,14,8,10,9,15,9,10,8,14,9,13,13,27,14,15,11,16,9,11,9,16,9,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,10,9,17,10,11,9,14,9,13,12,22,12,13,9,14,9,12,11,20,12,14,12,22,15,22,21,42,22,22,15,22,13,15,12,20,11,11,9,14,9,12,11,21,11,11,8,11,7,8,7,14,8,9,7,12,8,10,10,21,11,12,8,12,7,8,7,13,8,9,7,12,8,11,10,20,11,11,8,12,8,10,9,18,10,11,9,16,11,16,16,33,17,17,12,17,10,13,11,19,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,16,9,11,9,16,11,16,16,31,16,17,12,17,10,13,11,19,11,13,11,18,12,16,15,31,17,18,13,20,12,16,15,27,15,17,14,25,17,25,26,50,25,25,17,26,15,18,15,26,14,15,11,18,11,14,13,25,13,13,9,14,9,11,10,15,9,11,9,15,10,14,14,24,13,13,9,14,9,11,9,16,9,9,7,11,7,10,9,15,8,9,7,11,7,8,8,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,19,11,13,11,20,14,20,19,38,20,20,14,20,12,14,11,20,11,11,9,14,9,11,11,21,11,12,8,12,8,10,9,17,9,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,8,9,7,12,8,10,9,17,9,10,7,10,6,8,8,15,9,10,8,14,10,14,13,26,14,14,9,13,8,10,8,13,7,8,6,10,7,9,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,11,22,12,13,10,15,9,12,12,21,12,13,11,19,13,19,20,38,19,19,13,20,12,14,12,20,11,12,9,14,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,12,12,21,11,11,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,15,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,15,8,8,6,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,4,6,4,6,6,9,5,6,5,8,6,8,8,16,8,7,5,6,4,5,4,7,4,5,4,5,3,3,3,3,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-20,-10,-11,-7,-12,-7,-10,-9,-21,-11,-13,-11,-20,-13,-20,-20,-41 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,11,9,15,8,9,7,11,7,10,9,16,9,9,6,9,6,7,6,10,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,9,6,6,5,8,6,8,8,16,8,9,6,9,6,7,5,9,5,5,4,7,4,5,5,10,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,24,12,12,9,13,8,9,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,5,4,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,8,15,10,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,9,5,5,4,7,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,11,6,7,5,8,5,7,7,11,7,8,7,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,12,22,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-22 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,18,11,13,11,17,9,10,8,12,8,12,11,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,8,8,14,8,8,6,10,6,7,6,11,7,8,6,10,7,9,9,19,10,10,7,11,7,8,6,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,9,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,14,8,8,6,7,4,5,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,7,5,8,7,13,7,8,6,9,6,7,7,12,7,8,7,10,7,10,10,22,12,12,8,12,7,8,7,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,21,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,21,11,12,9,13,8,10,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,11,7,10,10,16,9,9,7,9,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,9,13,13,26,14,14,10,14,8,10,8,13,7,8,6,10,6,8,7,15,8,8,6,8,5,6,6,12,7,8,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,6,11,7,8,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,9,13,8,10,9,14,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,10,7,10,10,20,10,10,7,10,6,8,6,10,6,6,5,7,5,6,6,8,5,6,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-8,-7,-12,-8,-12,-13,-27 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,15,9,10,8,15,10,15,15,30,15,15,10,15,9,10,9,14,8,8,6,10,7,10,9,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,4,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,6,9,6,7,6,12,7,7,5,7,4,5,5,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,9,5,5,5,8,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,3,5,3,4,3,5,4,6,6,8,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,16,9,10,7,11,7,10,9,16,9,10,8,13,9,13,13,25,13,14,10,14,9,11,9,16,9,9,7,12,8,10,9,17,9,10,7,11,7,8,8,14,8,9,8,14,10,14,14,25,13,14,10,15,9,11,9,16,9,11,9,15,10,14,14,26,14,15,11,18,11,15,14,26,15,18,15,25,17,25,26,53,27,27,18,27,15,17,14,25,13,14,11,18,12,16,15,27,14,15,11,16,10,12,10,18,10,12,10,17,11,16,16,27,14,14,9,13,8,9,8,14,8,9,7,11,8,11,11,20,10,10,7,11,7,9,9,16,9,10,9,15,10,14,13,27,14,13,9,13,8,9,8,15,8,9,7,11,7,9,8,17,9,9,7,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,15,9,10,9,16,9,10,8,13,8,11,11,21,11,12,9,14,9,11,11,20,12,14,12,21,14,21,21,40,20,20,13,19,11,14,12,20,11,12,9,13,8,11,10,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,15,15,32,17,17,12,19,11,14,12,20,11,12,9,13,8,11,11,21,11,12,9,14,9,11,9,16,9,11,10,17,12,17,17,32,17,17,12,17,10,12,10,18,10,12,9,15,11,16,16,32,17,18,13,20,12,16,14,26,15,18,16,28,19,27,27,53,27,27,19,28,16,18,15,26,14,14,10,16,10,13,12,25,13,14,10,16,10,12,10,18,10,12,10,17,11,15,15,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,14,7,7,5,8,5,7,7,12,7,8,7,13,9,12,12,22,11,11,7,10,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,15,9,12,12,22,13,15,13,22,15,21,20,39,20,19,13,19,11,14,12,20,11,12,9,13,8,11,11,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,9,15,10,14,14,27,14,14,10,15,9,10,8,13,7,8,6,10,7,10,10,15,8,9,7,11,7,9,8,14,8,9,8,13,9,12,12,21,11,12,8,12,7,9,8,15,8,9,7,11,8,11,10,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,21,14,21,12,14,12,20,11,11,9,14,9,13,12,23,12,12,8,12,7,9,8,14,8,9,8,13,8,11,11,23,12,12,8,12,7,9,8,13,7,8,6,9,6,9,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,30,16,16,11,15,9,10,8,14,8,8,7,11,7,9,8,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,28,14,14,10,14,8,9,8,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,10,9,15,10,15,14,28,14,14,10,15,9,10,8,14,8,8,6,9,6,7,7,13,7,8,6,9,5,6,6,10,6,7,6,9,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20 +-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,3,6,4,4,3,5,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,15,15,30,15,15,11,15,9,10,9,15,8,8,7,10,7,10,9,16,8,8,6,10,6,7,6,12,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,5,11,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,12,7,8,6,9,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,8,5,6,5,6,4,6,6,11,6,6,4,6,4,4,4,7,5,6,4,7,5,6,6,10,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,19,10,10,7,10,6,7,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,17,9,10,8,12,7,9,8,14,8,10,9,16,11,16,15,29,15,15,11,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,7,5,6,5,8,5,6,4,7,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,6,5,7,4,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,8,6,9,6,7,7,13,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,6,5,8,6,8,8,16,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,11,23,12,12,8,12,7,9,7,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,8,5,6,6,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21 +-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,6,4,5,5,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,6,4,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,4,3,4,5,5,3,3,3,4,3,3,3,7,4,4,3,5,4,5,6,10,6,6,5,8,5,7,7,11,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,17,17,36,18,18,12,18,10,12,10,18,10,11,8,12,8,11,11,19,10,11,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,10,7,11,7,9,8,16,9,9,7,10,6,7,6,12,7,7,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,6,9,5,6,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,13,7,8,6,9,5,6,5,11,6,7,6,10,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,12,7,7,6,10,7,10,9,18,9,9,7,10,6,6,5,10,6,6,5,9,6,8,8,13,7,8,6,8,5,6,6,11,6,7,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,6,8,8,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,27,14,14,10,14,8,10,9,14,8,8,6,9,6,8,8,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,5,4,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,5,11,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,6,6,10,6,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,7,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,4,2,2,3,6,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,5,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,9,15,10,14,15,30,16,16,11,16,9,11,9,15,9,10,7,11,7,10,9,17,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,17,9,8,6,8,5,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,7,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,21,11,12,8,12,7,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,12,7,7,5,6,4,6,5,10,6,6,6,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,14,8,10,9,16,11,16,15,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,7,5,6,5,6,4,6,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,12,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,7,4,5,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,12,22,12,12,8,11,7,9,8,12,7,8,6,9,6,8,8,14,8,8,6,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,9,17,9,9,6,9,5,6,6,9,5,6,5,7,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,9,6,6,5,8,6,7,7,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,17,9,10,7,10,6,8,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,8,9,7,10,6,8,8,13,8,10,8,15,10,15,14,27,14,14,10,14,8,10,9,15,8,9,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18 +-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-2,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,6,6,5,3,3,3,4,3,4,3,5,3,4,4,6,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,15,15,28,15,15,10,14,8,10,8,13,7,8,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,10,8,14,10,15,15,23,12,12,9,13,8,10,9,15,9,10,8,14,9,13,13,24,13,14,10,16,10,14,13,23,13,16,14,25,17,26,26,54,28,28,20,30,17,20,17,31,17,18,14,22,14,19,17,32,17,17,12,18,11,14,13,24,13,15,12,19,12,17,16,29,15,15,10,14,8,9,8,14,8,9,7,12,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,16,11,15,15,21,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,10,18,10,11,9,16,10,14,14,26,14,14,9,13,8,9,8,13,7,8,6,10,7,10,10,18,10,10,8,13,9,12,12,22,13,15,12,20,14,20,20,38,19,19,13,19,11,13,11,20,11,12,9,14,9,12,12,23,12,13,10,15,9,11,10,17,10,11,9,14,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,9,6,9,9,16,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,34,17,17,12,17,10,12,10,16,9,10,8,12,8,11,10,19,10,11,8,13,8,10,10,18,10,12,10,18,12,17,17,30,16,16,12,18,11,13,11,19,11,12,10,16,11,15,15,29,16,17,13,20,12,16,15,28,16,19,15,26,18,26,27,51,26,26,18,27,15,17,14,25,13,14,11,18,11,15,14,26,14,14,10,14,8,10,9,17,10,11,9,15,10,14,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,9,16,9,9,7,11,7,8,7,12,7,8,7,11,8,11,11,24,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,12,6,6,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,12,8,12,7,9,9,16,9,10,8,13,9,13,12,23,12,12,9,14,9,12,11,21,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,22,12,13,9,14,9,12,11,21,11,11,8,13,8,10,8,14,8,10,8,13,9,12,12,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,9,17,9,9,7,11,7,9,9,17,9,10,8,14,10,14,14,24,12,12,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,20,11,11,8,13,8,10,9,15,8,9,7,11,7,10,10,19,11,12,9,14,9,11,10,18,11,13,11,19,13,20,20,38,20,20,14,20,12,15,13,23,12,13,10,17,11,14,13,24,13,13,9,13,8,9,8,13,7,8,7,12,8,11,11,22,12,12,8,11,7,9,8,13,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,17,11,15,15,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,8,7,12,7,8,6,9,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,7,10,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36 +-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,7,5,8,8,14,8,8,5,8,5,6,5,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,15,15,11,16,9,11,9,16,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,15,8,8,6,7,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,7,5,7,8,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,8,14,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,6,9,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18 +-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,14,14,28,15,15,11,16,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,16,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,5,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,6,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,6,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,21,11,10,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,7,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,6,6,5,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,4,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,6,9,5,6,6,10,7,9,8,16,8,8,5,8,5,6,5,9,5,5,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-9,-19 +0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,6,4,4,4,6,4,6,5,9,5,6,5,7,4,6,5,9,6,6,6,9,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,6,5,9,5,6,5,8,5,7,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,5,5,6,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,8,4,4,4,6,4,5,5,8,4,5,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,5,4,4,3,5,4,4,3,5,4,5,5,7,4,4,3,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,4,4,4,7,5,6,4,7,5,7,8,13,7,7,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,5,6,5,8,6,9,9,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,14,8,8,6,10,6,8,7,14,8,9,8,14,10,15,15,30,15,15,11,16,10,12,10,18,10,10,7,11,7,10,10,18,10,10,7,10,6,8,7,14,8,9,7,12,8,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,9,14,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,8,6,11,6,7,5,8,5,7,7,11,6,7,5,8,5,6,5,10,6,6,5,8,6,8,7,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,10,6,7,5,8,6,8,8,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,10,7,10,6,7,7,12,7,8,6,10,7,10,9,16,9,9,7,10,6,8,8,16,9,10,9,15,10,15,15,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,6,9,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,9,7,12,8,11,11,22,12,12,9,13,8,9,7,13,7,8,6,9,6,8,8,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,5,6,5,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,12,7,9,8,12,7,7,5,8,6,8,8,14,7,7,5,7,4,5,4,7,5,6,5,8,5,7,7,14,7,7,5,6,4,4,4,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,3,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,7,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,6,6,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,11,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,8,7,11,8,12,11,22,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,7,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,6,5,7,4,5,5,8,5,6,5,8,6,8,9,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,6,4,4,4,8,5,5,4,5,4,6,6,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,5,8,5,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,4,4,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,8,4,4,3,6,4,4,3,6,4,4,3,4,3,5,5,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,4,7,5,6,6,10,5,5,4,6,4,4,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,6,5,9,6,7,6,10,7,11,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,6,5,7,5,6,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,9,6,8,8,14,7,7,5,8,5,7,6,10,6,6,5,8,6,8,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,11,8,13,8,10,9,16,10,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,12,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,20,10,10,7,11,7,8,6,10,6,7,6,9,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,8,7,16,8,8,6,9,5,6,5,8,5,5,4,7,5,7,7,15,8,9,7,10,6,8,7,12,7,8,7,13,9,14,14,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,7,11,6,7,5,7,5,6,6,11,7,8,6,10,7,9,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,24,12,12,8,12,7,8,7,12,7,8,6,9,6,8,8,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,19,10,11,8,12,7,9,8,14,8,10,8,13,8,11,11,19,10,10,8,12,8,11,10,18,10,12,10,18,12,18,18,38,19,19,13,20,11,12,10,17,10,11,8,13,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,13,7,8,6,10,7,9,8,14,8,9,7,12,8,12,12,28,15,15,10,14,8,10,9,16,9,10,7,11,7,9,9,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,6,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,13,7,7,5,7,4,5,5,9,5,6,5,7,5,6,6,15,8,9,7,10,6,7,6,11,6,7,6,9,6,7,7,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,10,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,11,7,10,10,20,10,10,7,9,5,6,5,8,4,4,3,5,4,6,6,8,5,5,3,4,3,4,4,7,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-25 +-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,12,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,9,6,7,6,10,6,8,7,11,8,11,12,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,5,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,5,6,4,5,5,8,5,6,5,9,6,9,9,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,15,8,8,5,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,24,12,12,9,13,7,8,6,12,7,7,6,9,6,8,7,14,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,4,3,5,3,4,3,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,9,5,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,19,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,6,5,8,5,5,5,8,6,8,8,13,7,8,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,6,9,6,9,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,6,5,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,10,7,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,9,9,14,8,8,6,9,5,6,6,11,6,7,6,10,7,9,8,17,9,10,8,12,8,10,9,13,8,10,9,16,11,16,16,28,15,15,11,16,9,11,9,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,14,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,6,12,7,9,7,12,8,12,12,18,10,10,7,9,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,7,5,6,5,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,14,31,16,16,11,16,9,10,8,16,9,9,7,12,8,11,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,9,5,6,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,5,5,8,6,9,9,12,7,7,5,6,4,5,4,6,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,12,7,8,6,10,7,10,10,26,14,14,9,13,8,9,7,14,8,9,7,10,6,8,7,11,6,6,5,8,5,6,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,7,4,5,4,9,5,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,7,10,6,7,6,10,7,10,11,18,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,5,8,5,7,7,13,7,7,5,6,4,4,3,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,7,5,8,5,7,6,9,6,7,6,11,8,11,11,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,6,4,4,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,10,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,4,4,9,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,6,7,6,9,6,9,9,21,11,11,7,11,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,4,6,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,7,5,7,7,18,10,10,6,9,5,6,5,9,5,6,5,7,4,6,5,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,4,6,6,8,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,13,8,10,8,15,10,15,15,27,14,14,10,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,10,6,7,6,9,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,11,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,19,10,10,7,10,6,7,6,10,6,7,5,9,6,8,7,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,7,13,9,12,12,30,15,15,10,15,9,10,8,15,8,8,6,10,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,5,8,5,6,5,9,5,6,4,6,4,4,4,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,26,14,14,9,13,7,8,7,12,7,8,6,9,6,8,7,10,5,5,4,6,4,5,4,8,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,8,9,7,10,6,8,7,13,8,9,7,12,8,12,12,29,15,15,10,14,8,10,8,15,8,8,6,10,7,9,9,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,6,9,6,7,6,10,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,9,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,5,4,5,6,12,6,6,4,5,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,9,6,9,8,15,9,11,9,16,11,17,17,28,14,14,10,14,8,10,9,17,9,10,8,12,8,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,14,26,14,14,10,14,9,11,10,18,10,11,8,13,9,12,12,22,12,13,10,15,10,14,14,26,15,18,15,27,19,28,28,51,26,25,17,25,14,16,13,23,12,13,9,14,9,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,15,30,16,16,11,17,10,12,10,17,9,10,8,13,8,11,10,19,10,11,8,13,8,11,10,19,11,12,10,18,12,18,19,27,14,15,10,15,9,11,9,15,8,9,7,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,8,12,7,9,8,15,8,9,7,12,9,13,13,24,13,13,10,16,10,12,11,21,12,14,12,20,14,20,20,29,15,15,11,17,10,12,10,17,9,9,7,11,7,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,10,11,8,12,7,8,7,13,7,8,6,10,7,10,10,18,10,10,8,13,8,10,10,18,10,11,9,14,10,14,14,35,18,18,12,17,10,12,11,19,10,11,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,10,9,15,10,15,15,28,15,15,11,16,10,12,11,19,10,11,8,13,9,12,12,23,13,14,10,16,10,13,12,22,13,15,13,22,15,23,23,56,28,28,19,29,17,20,17,30,16,17,13,20,13,17,16,31,16,16,12,18,11,13,12,21,11,12,10,16,10,14,14,27,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,24,13,14,10,15,9,12,11,21,11,12,10,16,11,15,15,20,11,12,9,13,8,10,8,14,8,8,7,11,7,8,8,14,8,9,7,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,12,7,7,6,10,7,11,11,20,11,12,9,15,9,12,11,20,11,12,10,17,11,16,16,49,25,25,17,25,14,16,13,22,12,12,9,14,9,11,10,18,10,10,7,11,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,10,6,6,5,8,5,5,4,6,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,8,6,8,9,25,13,13,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,9,7,12,8,10,10,18,11,13,11,18,13,19,19,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,13,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,8,6,8,5,7,6,10,6,8,7,11,8,11,10,22,12,12,9,13,8,9,8,13,7,7,5,6,4,5,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,2,2,2,2,4,3,4,3,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-7,-12,-7,-11,-10,-21,-11,-13,-11,-21,-13,-20,-20,-42 +0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,14,8,10,8,14,10,15,15,26,14,13,9,13,8,9,7,12,7,7,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,7,4,4,4,5,4,6,5,10,6,6,4,7,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,7,6,12,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,11,6,7,6,8,6,8,8,11,6,6,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,6,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,17,9,10,7,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,9,6,8,8,14,8,10,8,15,10,15,15,26,14,14,9,14,8,9,8,12,7,8,6,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,8,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,7,7,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,10,5,5,4,7,5,6,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,5,4,6,5,10,6,6,4,6,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,6,8,5,6,6,12,7,8,7,11,8,12,12,29,15,15,10,16,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,12,7,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,10,6,7,6,8,6,8,8,11,6,6,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,24,12,12,9,13,7,8,7,12,7,7,5,8,5,7,6,10,6,6,5,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,5,4,6,4,6,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,3,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 +0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,6,9,5,5,4,7,5,7,7,12,7,7,5,6,4,5,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,12,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,15,9,11,9,16,11,16,15,26,14,14,10,14,8,10,8,13,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,7,6,8,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,7,7,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,6,10,6,7,5,8,5,5,5,9,5,6,4,6,4,5,4,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,6,8,7,18,9,9,6,9,5,6,5,10,6,6,4,6,4,6,5,10,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,12,12,28,15,15,11,16,10,12,10,15,8,8,6,10,7,9,9,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,5,6,6,8,5,6,5,7,5,6,6,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,12,12,8,12,7,9,8,13,7,8,6,9,5,6,6,11,6,7,5,7,5,6,5,8,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-11,-23 +0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,7,9,6,7,6,9,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,4,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12 +0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,3,2,3,2,3,2,3,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,6,4,5,5,7,5,6,5,7,5,7,7,17,9,9,6,9,5,6,5,9,5,6,5,7,4,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-7,-15 +-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,17,9,10,7,10,6,7,6,9,5,6,4,7,4,6,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-6,-13 +-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,8,5,7,6,11,7,8,6,10,7,11,11,18,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,9,8,14,8,8,7,11,7,9,9,17,10,11,8,13,8,11,10,17,10,12,10,16,11,15,15,28,15,15,10,15,9,11,9,16,9,9,6,9,6,7,7,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,10,7,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,11,19,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,3,3,3,4,3,4,4,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,8,11,11,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,12,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,7,5,8,6,8,7,11,6,7,5,7,4,5,5,9,5,6,5,9,6,7,7,15,8,9,6,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,10,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,26,14,14,10,15,9,10,9,15,8,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,7,10,10,16,9,9,7,10,6,8,7,11,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,9,5,6,5,8,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,1,1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,6,5,7,5,6,6,9,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,11,6,6,5,7,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,9,16,8,8,6,9,5,6,6,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,3,4,4,9,5,5,3,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,4,4,8,5,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,3,5,3,2,2,4,3,4,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,6,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,18,10,10,7,10,6,6,6,9,5,6,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,9,5,6,4,5,3,4,3,4,3,4,3,3,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,2,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,4,3,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,12,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,7,7,5,7,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,5,3,3,2,4,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,4,5,5,6,4,4,4,6,4,5,5,9,5,6,4,6,5,7,7,14,7,7,5,8,5,7,7,11,6,7,6,9,6,8,7,12,7,7,6,10,7,9,8,14,8,9,7,12,8,12,12,18,9,9,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,13,7,7,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,13,7,7,5,6,4,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,7,4,5,5,8,6,8,8,22,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,11,7,8,7,13,7,7,5,8,5,6,5,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,3,2,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,9,5,5,3,4,3,3,2,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,4,3,3,3,5,4,5,5,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-1,-1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,6,11,6,7,5,8,5,7,7,12,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,4,7,5,7,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,5,5,3,4,3,3,2,2,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,9,6,8,7,11,6,7,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-5,-2,-2,-1,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,6,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,27,14,14,10,16,9,11,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,11,20,11,13,11,19,13,20,20,28,14,14,9,13,8,9,7,12,7,8,6,9,6,8,7,12,7,7,6,9,6,7,7,12,7,8,6,10,7,10,9,13,7,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,10,7,11,11,24,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,6,5,9,6,9,9,17,9,10,8,12,7,9,8,14,8,10,8,13,9,13,13,23,12,12,8,11,7,8,6,10,6,7,5,8,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,16,8,8,5,7,4,5,5,8,5,5,4,7,4,5,5,8,5,5,4,7,5,7,7,12,7,8,7,11,7,10,10,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,11,6,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,9,7,12,8,10,9,17,10,11,9,15,10,15,15,32,17,17,11,16,10,12,10,17,9,10,8,12,8,10,9,16,8,8,6,8,5,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,13,7,7,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,3,4,3,3,3,4,3,3,3,5,3,4,4,17,9,9,6,8,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,4,6,6,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,5,3,3,2,3,2,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-13,-27 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,20,10,10,7,10,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 +-3,-1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,6,12,7,8,7,11,8,12,12,15,8,8,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,5,7,7,13,7,8,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,5,3,4,4,6,3,3,2,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,21,11,10,7,11,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,6,4,5,5,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,5,6,11,6,5,4,5,3,4,4,6,4,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,10,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,4,5,5,9,5,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,15,8,7,5,8,5,6,5,9,5,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,5,6,4,4,3,5,4,5,5,9,5,6,5,8,6,8,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,14,8,8,6,10,6,7,5,8,5,5,4,6,4,5,5,11,6,5,4,5,4,5,4,7,4,4,3,4,3,5,5,10,5,5,3,4,3,4,3,6,4,5,4,6,4,6,6,10,6,7,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,3,8,5,5,4,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,4,3,4,3,4,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,8,5,6,5,7,5,6,6,22,12,12,8,12,7,9,8,13,7,8,6,8,5,7,6,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,12,7,7,5,6,4,5,5,9,5,5,4,5,4,5,5,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,14,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14 +-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,4,4,5,3,4,3,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,4,14,8,8,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,6,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8 +-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,7,5,8,8,15,8,7,5,7,5,6,5,8,5,6,5,7,5,6,5,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,12,8,11,11,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,7,5,6,5,8,5,5,5,8,6,9,9,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,3,4,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,6,10,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,17,9,9,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,11,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,9,5,5,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,5,4,6,5,7,7,12,7,9,8,14,10,14,13,25,13,13,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,7,12,7,7,6,10,7,10,10,24,13,13,9,12,7,9,8,14,8,9,7,12,8,12,12,24,13,13,10,15,9,11,10,19,11,13,11,19,13,20,20,19,10,10,7,11,6,7,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,9,5,6,6,10,6,7,6,9,6,8,8,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,15,10,15,15,15,8,8,6,9,5,5,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,5,8,6,8,8,31,16,16,11,17,10,11,9,16,9,10,7,11,7,9,9,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,7,5,6,6,10,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,9,8,14,8,8,6,9,6,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,8,5,5,4,5,4,5,5,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,10,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,11,6,6,4,7,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,18,10,10,7,10,6,7,6,9,5,6,4,7,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,8,5,5,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,9,6,9,9,17,9,9,6,8,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,16,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,7,13,8,10,8,13,9,14,14,12,7,7,5,8,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,4,2,2,2,3,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,21,11,12,8,12,7,8,6,10,6,6,5,8,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,12,12,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,18,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +-2,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,8,7,12,8,12,12,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,12,11,23,12,13,10,15,9,12,11,20,11,13,11,20,13,19,19,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,4,3,6,4,4,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,6,8,8,16,9,9,6,8,5,5,5,8,5,6,5,8,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,8,13,8,10,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,7,5,7,7,13,7,7,5,8,5,5,4,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,6,4,4,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,32,16,16,11,16,9,10,8,15,8,8,6,10,6,8,7,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,21,11,11,8,12,7,9,8,11,6,6,5,8,5,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,4,4,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,8,8,14,8,9,8,14,9,13,13,11,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,5,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,4,3,4,4,21,11,11,8,11,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,15,8,8,6,8,5,6,5,8,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-10 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,14,9,12,11,21,12,14,11,20,14,20,19,16,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,13,8,10,9,14,10,14,14,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,8,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,13,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,7,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,6,4,4,4,8,5,5,3,5,3,4,3,4,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,1,0,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,21,12,12,9,14,9,12,11,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,14,8,10,9,14,10,14,14,14,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,13,9,12,13,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,4,4,3,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,5,4,7,5,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,4,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,20,11,11,7,10,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,7,6,10,7,10,9,17,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,20,11,11,8,13,9,12,11,21,12,15,12,21,15,22,22,42,21,21,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,21,21,40,21,22,15,23,14,18,16,28,15,17,13,22,14,20,19,37,20,21,16,25,16,22,21,39,22,27,22,39,26,38,37,28,14,14,10,15,9,10,8,14,8,8,6,10,6,7,6,11,6,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,5,4,7,5,8,8,14,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,28,15,15,10,14,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,8,7,11,8,12,12,22,12,13,10,17,11,14,14,26,15,18,15,27,18,27,27,27,14,14,10,15,9,11,9,15,8,8,6,10,7,9,9,16,9,9,6,8,5,7,6,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,6,5,9,5,5,4,7,4,5,5,8,5,6,5,9,7,10,10,20,11,11,8,12,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,7,6,10,7,11,11,21,11,11,8,11,7,8,6,10,6,7,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,60,30,30,21,31,17,20,17,29,16,17,13,22,14,18,17,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,21,11,11,8,13,8,9,8,13,7,7,5,8,5,7,7,12,7,8,6,10,6,8,8,15,8,9,7,12,8,12,12,24,13,14,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,13,9,14,9,12,11,21,12,14,11,19,12,17,17,33,17,17,12,17,10,11,10,17,9,10,8,13,9,13,12,23,12,13,10,16,10,13,12,22,13,15,13,24,16,24,24,42,21,21,14,21,12,14,11,18,10,10,7,11,7,10,10,18,10,10,7,10,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,9,6,7,6,9,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,11,11,42,22,22,15,22,13,15,13,24,13,14,10,16,10,13,12,21,11,12,9,14,9,11,10,18,10,11,9,16,11,15,15,30,15,15,11,16,10,12,11,19,10,11,8,13,8,11,10,19,10,11,8,11,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,3,3,4,3,3,3,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-16,-33 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,4,4,5,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,12,14,12,20,14,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,6,9,6,8,7,14,8,10,8,14,10,14,14,14,8,8,6,8,5,6,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,13,9,12,13,22,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-16 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,5,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,10,6,6,5,6,4,6,6,11,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,12,8,10,10,20,12,14,11,19,13,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,10,6,6,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,5,9,6,8,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,17,9,9,6,9,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,13,22,12,12,8,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 +0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,6,7,7,14,8,10,8,13,9,13,13,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,10,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,20,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11 +0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,3,2,2,1,0,0,0,-1,12,6,6,5,7,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,3,3,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,5,8,5,7,7,10,6,6,4,6,4,6,6,12,7,9,7,12,8,12,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,12,12,8,12,7,9,8,15,9,10,8,12,8,11,11,20,11,11,8,12,8,11,10,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,14,7,7,5,6,4,4,3,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,13,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,4,6,6,30,16,16,11,16,9,11,9,14,8,8,6,10,7,9,9,18,9,9,6,9,5,6,5,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,5,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,9,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,6,12,7,8,7,13,9,13,13,21,11,10,7,10,6,7,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,5,7,7,21,11,12,8,12,7,8,7,11,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-8,-17 +0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,9,5,6,5,7,5,7,6,11,6,7,5,7,5,7,6,12,7,8,6,11,8,11,11,9,5,5,4,5,3,4,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,4,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,11,6,5,4,6,4,4,3,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9 +0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,8,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,5,9,6,7,6,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,9,13,13,11,6,6,4,6,4,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,9,9,10,6,6,4,6,4,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,6,4,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,4,4,5,4,6,6,10,6,6,5,6,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,14,7,7,5,7,4,5,5,7,4,4,3,6,4,6,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,6,5,11,6,7,5,6,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,2,1,0,1,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-3,-5,-5,-10 +1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,7,4,5,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,11,6,7,5,7,5,7,6,11,7,8,6,10,7,11,11,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,5,8,6,7,7,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,1,1,1,0,1,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,1,0,0,0,0,13,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,7,4,3,2,3,2,3,3,4,3,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,8,6,8,8,14,8,9,7,12,9,13,13,24,12,12,8,11,7,8,7,12,6,6,5,7,5,7,7,12,7,7,6,9,6,7,6,10,6,6,5,9,7,10,10,22,12,12,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,10,17,12,17,18,16,8,8,6,9,5,6,5,7,4,4,3,3,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,12,14,8,8,6,9,5,6,5,9,5,6,5,7,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,31,16,16,11,17,10,12,10,16,9,9,7,10,7,9,9,19,10,11,8,11,6,7,6,10,6,6,5,8,5,6,6,9,5,4,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,9,5,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,6,10,6,8,7,11,7,10,10,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,14,10,14,14,18,9,9,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,6,5,7,4,5,5,13,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,4,5,5,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,7,16,9,9,6,9,5,6,6,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,10,6,6,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,9,10,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,0,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,8,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,5,5,9,5,5,4,7,5,8,8,14,7,7,5,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,7,5,6,6,12,7,8,6,9,5,6,6,12,7,8,6,11,7,10,10,9,5,6,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,7,4,4,4,6,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8 +1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,0,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,10,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,4,3,7,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,7,6,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,6,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,4,2,2,2,1,1,2,2,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,5,7,4,5,4,7,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,11,8,11,11,9,5,6,4,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,6,4,4,3,5,3,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,8,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,2,2,1,1,2,2,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,3,3,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,4,4,4,7,5,6,6,5,3,4,3,4,3,3,3,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,7,4,4,3,5,3,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,14,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,7,8,5,5,4,6,4,6,6,11,6,7,6,10,7,9,9,16,9,10,7,11,7,10,10,18,10,11,9,16,11,16,16,27,14,14,10,14,8,8,7,11,6,6,5,8,5,7,7,12,7,7,5,8,5,5,5,8,5,6,5,9,6,9,9,20,11,11,8,12,8,10,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,10,18,10,12,11,19,13,19,19,16,9,9,6,8,5,5,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,6,4,6,6,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,3,2,3,2,3,3,10,6,6,4,5,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,5,9,6,7,6,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,5,5,15,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,8,8,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,38,20,20,14,20,12,14,12,20,11,12,9,14,9,11,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,4,7,7,9,5,6,4,6,4,5,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,7,10,10,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,7,11,7,8,8,14,8,10,8,14,10,14,14,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,14,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,14,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,20,10,10,7,10,6,8,7,13,7,8,6,10,6,8,8,14,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,4,5,3,3,3,4,3,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-6,-9,-9,-19 +0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,3,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,11,6,6,5,6,4,5,5,8,4,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,3,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,6,4,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,6,3,3,3,4,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,6,6,5,3,3,2,4,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,2,1,1,1,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,10,6,6,5,7,5,7,6,11,7,8,6,10,7,10,10,15,8,8,6,8,5,5,4,8,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,11,7,8,6,10,7,11,11,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,3,7,4,4,4,6,4,5,4,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,5,3,3,3,4,3,3,3,3,2,3,3,4,3,5,5,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-11 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,13,7,8,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,3,3,3,4,3,6,4,4,4,6,4,6,6,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,3,3,2,3,2,3,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,5,3,3,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,15,8,9,6,9,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,3,4,3,5,4,5,4,2,2,2,1,1,1,2,2,2,2,2,2,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,9,8,13,9,13,12,18,10,10,7,9,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,6,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,13,8,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,5,3,2,2,2,2,2,2,4,3,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,3,2,3,3,4,4,7,4,5,4,5,4,6,6,7,4,4,3,3,2,3,2,3,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,28,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,13,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,4,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,9,9,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,5,4,6,5,7,7,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,4,4,7,5,6,6,14,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,4,3,5,5,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,8,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,8,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,2,1,1,1,1,1,1,1,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,4,3,4,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,8,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,-3,-1,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,12,7,9,7,12,8,12,12,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,3,5,3,2,2,2,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,11,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,5,3,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,5,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,12,7,7,5,8,5,6,5,10,6,6,4,7,5,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,8,5,7,7,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,5,4,6,5,5,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,4,2,2,2,2,2,2,2,5,3,4,3,5,4,6,6,5,3,4,3,3,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15 +3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,5,3,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,4,3,3,2,2,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,9,9,19,10,11,8,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,18,10,11,8,12,8,11,11,20,12,14,12,21,15,22,22,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,9,10,9,15,10,13,13,25,13,14,10,16,10,13,13,24,14,16,13,23,15,21,21,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,4,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,11,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,5,5,8,6,9,9,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,47,24,23,15,22,13,15,12,21,12,13,10,15,10,13,12,21,11,11,8,11,6,7,6,11,6,7,6,11,8,11,10,19,10,10,8,12,7,9,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,7,10,10,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,16,8,8,6,8,5,6,5,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,4,19,10,11,8,11,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,14,9,12,12,23,12,13,9,13,8,9,8,14,8,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-9,-8,-15,-10,-16,-16,-33 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,6,8,6,7,7,12,7,8,7,12,8,11,11,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,1,1,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,5,5,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,7,6,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,8,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,6,8,7,12,7,8,7,12,8,11,11,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,1,1,2,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,5,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,7,8,6,8,5,6,6,11,6,6,4,7,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,5,5,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,4,6,6,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,17,9,9,6,9,5,6,5,8,5,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,2,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,4,3,3,2,2,2,2,1,1,1,1,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,11,8,12,12,13,7,7,5,8,5,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,7,12,8,11,11,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,5,7,7,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,25,13,13,9,13,8,9,7,12,7,8,6,9,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,4,3,3,2,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,3,3,7,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,1,1,1,2,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16 +2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,4,5,4,5,4,7,4,5,4,7,5,7,7,1,1,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,4,3,3,2,2,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,4,6,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,3,4,3,5,3,4,3,4,3,4,5,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,18,10,10,7,9,6,7,6,9,5,6,5,7,4,5,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,3,2,2,2,3,3,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,3,6,4,6,5,8,4,4,3,5,3,4,3,4,3,3,2,3,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11 +2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,2,2,2,1,1,1,2,2,3,2,2,2,2,2,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10 +2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,8,6,10,6,8,8,14,8,9,8,13,9,14,14,18,9,9,6,9,5,6,6,10,6,6,5,7,5,6,5,7,4,4,3,5,4,6,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,12,7,8,6,9,6,8,8,14,8,9,8,13,9,12,12,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,7,5,3,4,3,4,3,3,2,2,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,6,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,5,3,3,2,3,2,2,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,29,15,14,10,14,8,10,8,14,8,8,6,9,6,8,7,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,1,1,0,0,0,0,0,0,0,1,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,5,3,4,3,4,3,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19 +2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3,5,3,4,3,5,4,5,5,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +3,2,2,1,0,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,7,5,6,5,8,5,7,7,10,5,5,4,6,4,4,4,9,5,5,4,6,4,6,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,9,7,10,10,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,19,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,4,4,12,7,7,5,8,5,5,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,3,3,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,6,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,8,5,5,4,6,4,5,4,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,7,4,4,4,6,4,5,5,9,5,6,4,6,4,5,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-4,-2,-4,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,4,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,4,2,3,3,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,6,4,4,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,17,9,9,7,10,6,7,6,9,5,6,5,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,10,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,5,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,4,3,4,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,6,6,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,16,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14 +4,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,3,5,3,3,3,5,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,11,8,12,13,18,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,18,10,11,8,12,8,10,9,16,9,11,9,16,11,16,17,25,13,14,10,14,8,10,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,9,22,11,11,8,11,7,8,6,10,6,6,5,7,5,7,7,14,8,8,7,11,7,10,9,17,10,12,10,16,11,16,16,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,5,8,6,8,7,3,2,2,2,2,2,2,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,8,4,4,3,3,2,2,2,3,2,3,3,5,4,5,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,31,16,17,12,17,10,13,11,20,11,11,9,14,9,11,11,20,11,11,8,11,6,7,6,10,6,7,5,8,6,8,7,17,9,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,9,8,18,9,9,7,10,6,7,6,11,6,6,4,5,3,4,4,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,6,4,6,6,14,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,5,8,6,8,8,13,7,7,5,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,11,7,9,8,13,7,7,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,4,7,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,8,19,10,10,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,10,6,6,4,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-13,-14,-29 +2,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,5,9,5,6,5,9,6,9,9,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +2,1,1,1,2,2,2,1,0,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,5,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,5,11,6,7,5,7,5,6,6,10,6,6,5,9,7,10,10,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,9,5,6,4,6,4,5,4,8,5,6,5,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,6,9,5,6,5,9,7,10,10,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,17,9,10,7,10,6,8,7,12,6,6,5,8,5,7,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-7,-4,-7,-7,-15 +2,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,5,4,5,4,6,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,5,4,5,5,7,4,5,4,7,5,7,7,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7,4,4,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-3,-5,-3,-5,-5,-11 +2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,4,8,5,5,4,6,4,4,4,7,4,5,5,8,6,9,9,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,8,5,7,6,11,6,7,6,10,7,11,11,17,9,8,6,8,5,6,6,10,6,6,5,7,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,10,7,11,11,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,3,4,4,6,4,4,4,4,3,3,2,2,2,3,3,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-2,-4,-4,19,10,10,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,3,3,3,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,4,3,7,4,4,4,6,4,6,6,10,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-9,-9,-19 +2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,4,3,3,3,3,3,4,3,8,4,4,3,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,5,6,4,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,7,5,6,6,9,5,6,5,8,6,9,9,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,6,4,6,4,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,4,3,5,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15 +3,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,13,7,8,6,8,5,6,6,10,6,7,6,10,7,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,24,12,12,8,12,7,8,7,13,7,7,6,9,6,8,8,15,8,9,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,7,8,6,9,6,7,7,13,7,8,6,10,7,9,9,16,9,11,9,15,10,15,15,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,1,0,0,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,28,15,15,11,16,10,12,10,17,9,9,7,11,7,9,8,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,5,8,5,5,4,6,4,5,4,7,4,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,4,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,5,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,9,5,5,4,7,5,7,7,9,5,5,4,6,3,3,3,4,2,2,2,3,2,3,4,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-13,-6,-7,-5,-10,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,4,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,6,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,8,6,10,7,10,10,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,7,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,3,2,2,2,3,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,5,3,4,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,-1,0,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,14,8,7,5,7,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,6,9,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,3,2,3,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,5,6,5,10,6,6,5,8,5,7,7,14,8,8,7,11,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,8,6,10,7,10,9,16,9,9,7,10,6,7,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,8,7,9,5,6,5,8,6,8,7,13,7,7,6,9,6,9,8,15,9,10,8,14,9,13,13,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,3,2,3,2,3,2,3,2,2,1,1,1,2,1,1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,26,13,13,9,14,8,10,9,15,8,8,6,9,6,7,7,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,8,5,6,5,8,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,6,7,11,6,7,5,7,4,5,4,6,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-30 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-4,-5,-4,-9,-4,-6,-4,-9,-6,-9,-9,-19 +1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,11,7,10,9,16,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,8,6,8,6,8,8,13,8,9,8,14,10,14,13,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,14,9,14,8,10,9,14,8,8,6,9,6,8,8,14,8,8,6,7,5,6,6,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,8,6,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,1,1,1,2,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,25,13,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,7,5,6,6,9,5,5,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,6,7,5,7,5,6,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,10,6,7,7,12,8,12,11,21,11,12,9,14,9,11,10,18,10,11,9,14,10,14,14,27,14,14,10,16,10,14,13,24,14,16,13,23,16,23,23,44,23,23,16,24,14,17,14,24,13,14,10,16,10,14,13,25,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,26,14,14,10,15,9,11,9,16,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,23,13,15,13,23,16,23,23,45,23,23,16,23,13,15,12,21,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,20,12,14,12,20,13,19,19,37,19,19,14,21,12,15,14,25,14,15,12,19,13,18,17,33,17,18,14,22,13,17,16,29,16,19,15,26,17,25,25,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,9,5,4,3,4,2,2,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-8,50,25,25,17,25,14,16,13,22,12,13,10,16,10,12,11,21,11,11,8,11,7,8,7,13,8,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,7,5,8,5,7,7,13,8,9,7,11,8,12,12,22,11,11,8,12,7,8,7,12,7,7,5,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,8,15,8,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,7,5,7,7,13,7,7,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,4,7,5,7,7,12,7,7,5,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-9,-12,-11,-22,-11,-13,-10,-19,-11,-16,-16,-32,-16,-17,-12,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-28,-28,-58 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,11,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,22,11,11,8,12,7,8,6,11,6,7,5,8,5,7,6,13,7,8,6,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,12,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,8,8,15,9,10,8,14,9,13,13,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,6,5,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,4,7,4,5,4,6,4,5,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,13,7,7,6,8,5,6,5,9,5,6,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,10,6,9,9,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,3,2,3,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,6,5,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,7,6,9,6,8,7,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,7,7,12,7,9,7,12,8,12,12,22,12,12,8,11,6,7,6,10,6,6,5,8,5,7,6,14,7,7,5,8,5,7,7,10,6,7,6,10,7,10,10,19,10,11,8,12,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,6,8,8,16,9,11,9,14,9,13,13,0,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,3,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,13,9,13,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,6,4,5,5,9,5,6,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,8,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-8,-6,-12,-8,-12,-13,-27 +2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-7,-15 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,5,3,3,2,4,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,7,5,7,7,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,3,2,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14 +3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,3,3,6,4,5,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,9,6,7,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,13,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,8,8,7,11,7,8,8,14,8,9,7,11,8,11,11,22,12,12,8,12,7,8,6,10,6,6,4,6,4,6,6,14,8,8,6,9,6,8,7,12,7,7,6,9,6,9,9,17,9,9,6,8,5,6,6,10,6,7,6,9,6,8,8,13,7,8,6,10,6,8,8,14,8,10,8,13,9,12,11,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,1,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,26,13,13,9,13,7,8,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,3,2,3,2,3,2,3,3,4,3,4,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,7,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,5,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-13,-13,-26 +2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,3,3,3,3,3,4,4,7,4,4,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,5,6,4,4,3,4,3,3,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,13,7,8,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,4,6,4,6,6,13,7,8,5,8,5,5,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,15,8,8,6,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,5,8,5,5,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,11,6,6,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,4,6,4,4,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,5,4,6,6,6,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,9,5,6,5,8,5,6,6,8,5,5,5,8,6,8,7,17,9,9,6,9,5,5,4,8,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,5,5,6,4,4,3,5,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,5,7,7,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,16,8,8,6,8,5,5,4,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,2,2,2,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,5,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,1,1,0,0,0,0,0,1,1,1,0,0,0,0,4,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,3,2,3,2,5,3,3,2,3,3,4,4,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16 +4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,4,3,3,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,7,4,5,5,7,5,8,8,16,9,9,6,9,5,6,6,9,5,6,4,6,4,4,5,8,4,4,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,3,4,4,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,2,3,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,2,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,9,5,6,4,6,4,4,4,8,4,4,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,0,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-12 +11,6,6,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,3,5,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,2,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,6,5,7,7,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,7,7,13,8,9,8,13,9,13,13,29,15,15,10,15,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,6,5,7,5,8,8,19,10,10,7,10,6,8,8,14,8,8,6,10,6,8,8,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,25,13,12,8,12,7,8,6,10,5,5,4,6,4,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,11,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,6,7,6,11,8,11,11,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,25,13,12,8,12,7,9,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,3,4,5,16,9,9,6,8,5,5,4,7,4,5,4,6,4,4,4,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,10,5,5,4,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,3,2,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,4,3,5,5,6,4,4,3,4,3,4,3,5,3,3,2,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,13,7,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,9,5,5,4,5,3,3,3,4,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,3,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,5,6,5,8,6,8,7,16,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,6,4,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +8,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,2,2,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,7,4,5,4,6,4,5,4,7,4,5,4,5,4,5,5,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,3,6,4,5,4,6,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,6,6,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,9,5,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7 +6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +11,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,0,0,0,1,1,1,2,2,4,2,2,2,3,2,3,3,7,4,5,4,5,3,3,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,8,5,6,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,8,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,7,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,13,7,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,3,2,1,1,1,1,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,1,1,1,1,1,2,7,4,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,2,6,4,4,3,3,3,4,4,6,4,5,4,7,5,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,5,5,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12 +6,4,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,4,5,3,4,4,11,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,5,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,7,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,7,4,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7 +6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +11,6,5,4,5,3,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,2,1,1,1,1,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,5,3,4,4,6,4,6,6,17,9,8,6,8,5,6,6,10,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,13,7,8,6,9,5,6,5,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,5,10,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,9,5,5,4,5,3,4,3,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,7,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,3,2,3,3,4,3,4,4,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,5,3,3,2,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-2,-2,-6 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,5,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,7,4,4,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,8,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,7,2,2,2,1,2,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,5,5,4,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,2,2,2,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,7,4,4,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,7,4,5,4,7,5,7,7,2,2,2,1,2,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +17,9,9,6,7,4,4,4,6,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,1,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,5,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,8,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,6,8,8,14,8,10,8,14,10,14,13,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,14,7,7,5,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,14,7,7,5,7,4,5,5,8,5,5,4,5,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,5,9,5,4,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,11,6,6,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,6,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,3,3,6,5,7,7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,5,3,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 +9,5,5,3,4,3,3,3,4,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,3,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,7,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +10,5,5,3,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,8,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,0,0,0,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +10,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,0,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,5,5,9,5,5,4,6,4,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,9,5,4,3,4,3,3,2,4,3,3,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,5,3,3,2,3,2,2,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,6,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,5,3,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,4,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,0,0,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,4,3,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,5,10,6,6,5,7,5,6,6,10,6,7,6,11,7,10,10,6,3,2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,9,5,5,4,6,4,4,3,4,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,6,4,6,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 +7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,5,3,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,5,3,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,2,2,2,4,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,2,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +10,5,5,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,12,7,7,5,6,4,4,4,7,4,4,4,6,4,6,5,7,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,5,4,5,5,9,5,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,5,7,7,6,3,3,2,3,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,5,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,2,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,2,3,3,4,3,4,4,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,2,1,1,1,1,1,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,16,8,8,6,9,6,8,7,12,7,8,6,10,6,8,7,13,7,7,5,8,5,7,7,12,7,7,6,10,7,11,11,7,4,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,1,1,1,1,1,0,0,-1,0,-1,0,4,3,3,2,3,2,2,2,2,1,1,1,0,0,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-3,-3,-12,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,1,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,3,4,4,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,3,2,1,1,1,1,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 +8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8 +8,4,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,13,7,7,5,7,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,-7,-3,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9 +6,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +8,5,5,3,4,3,4,3,3,2,2,2,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,4,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,9,5,6,4,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,4,3,3,3,14,8,8,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,4,3,4,3,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,9,5,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,-1,-1,0,0,0,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,1,1,1,1,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-11 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,12,6,6,5,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-3,-3,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-8 +12,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,21,11,10,7,10,6,7,7,12,7,7,5,8,5,6,6,11,6,7,5,7,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,5,3,3,3,4,3,5,5,8,5,6,5,9,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,9,5,3,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,9,5,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-7,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-12,-12,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,5,5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-4,-4,-9 +9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,14,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,5,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,5,3,2,2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-6,-4,-8,-5,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-3,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,7,7,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8 +14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,5,3,4,3,4,3,4,3,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,7,5,7,7,11,6,6,5,7,5,6,5,6,4,5,4,6,4,6,6,11,6,6,4,6,4,6,6,10,6,6,5,9,6,8,8,4,3,3,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,6,3,3,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-3,-1,0,0,0,1,1,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,4,3,5,5,8,4,4,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10 +14,8,8,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,4,3,4,3,4,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3,3,4,3,4,3,5,3,4,4,5,4,6,6,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,6,4,4,3,5,3,4,4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +14,8,8,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,19,10,10,7,9,6,7,6,10,6,6,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +26,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,36,19,19,13,20,12,14,12,20,11,12,9,14,9,12,11,19,10,11,8,11,7,8,8,14,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,3,4,4,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,5,6,11,6,7,5,8,5,7,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,9,16,9,10,9,15,10,15,15,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,9,5,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-6,-12,-8,-12,-12,-24,-12,-12,-7,-11,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-22,-22,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,0,1,1,1,0,1,1,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,8,8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-8,-9,-7,-13,-8,-13,-14,-29 +14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-4,-3,-6,-4,-6,-6,-14 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,6,4,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,6,5,8,5,6,5,7,5,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-7,-4,-6,-6,-14 +10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9 +15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,5,5,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,6,5,7,4,5,4,7,5,8,8,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-9,-4,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,3,4,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13 +9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7 +12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,14,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,-1,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9 +11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8 +20,10,10,7,9,6,7,6,9,5,5,4,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,11,6,7,5,7,4,5,4,5,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,21,11,11,8,11,6,7,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,7,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,1,1,1,1,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-2,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-7,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-14,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15 +11,6,6,4,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,3,3,3,3,4,4,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7 +13,7,7,4,5,3,4,4,5,3,3,3,3,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,13,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,3,2,3,3,3,3,4,4,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-4,-4,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6 +16,8,8,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,3,3,3,4,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,3,2,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,0,1,1,1,2,2,2,1,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,5,3,3,3,4,3,5,5,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11 +10,6,6,4,5,3,4,3,5,3,3,3,4,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7 +14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,1,1,2,2,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-5,-5,-11 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,5,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +27,14,14,10,14,8,9,8,13,7,7,5,8,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,6,5,9,5,6,6,10,7,9,9,18,9,9,6,8,5,5,5,8,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,5,5,12,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,4,5,5,8,6,8,8,28,14,14,9,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,6,9,6,7,6,9,5,6,5,9,6,8,7,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,5,3,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-16,-11,-17,-17,-17,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,7,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,5,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-2,2,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-21 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,15,8,8,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,15,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,0,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,0,0,0,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,5,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +19,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,6,4,5,4,6,5,7,7,14,7,7,5,6,4,4,3,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,5,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12 +12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,13,7,6,4,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +25,13,13,9,12,7,9,8,14,8,8,6,9,6,7,7,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,3,7,4,4,3,4,3,3,3,6,4,5,5,8,5,7,7,22,11,11,8,11,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,1,1,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,2,2,2,1,1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-7,-14,-9,-13,-13,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,-2,-2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +14,8,7,5,7,4,5,5,8,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,13,7,7,5,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,4,3,3,2,5,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10 +14,8,7,5,8,5,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,3,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +24,13,13,9,13,8,9,8,11,6,6,5,8,5,7,7,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,5,3,4,4,8,5,7,7,20,10,10,7,10,6,7,6,8,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-10,-5,-7,-6,-12,-7,-11,-11,-11,-5,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-2,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16 +16,9,9,6,9,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +23,12,12,8,13,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,19,10,10,7,10,6,6,5,9,5,6,4,5,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-6,-6,-10,-5,-6,-5,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +23,12,12,8,12,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +44,22,22,15,21,12,13,11,18,10,10,7,11,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,9,6,7,6,11,6,7,6,10,6,8,8,14,8,8,7,11,7,9,8,15,9,11,10,17,12,17,17,32,17,17,12,18,10,12,11,19,11,12,9,15,9,12,11,21,11,11,8,13,8,9,8,13,7,8,6,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,35,18,19,13,19,11,12,10,17,9,10,7,10,6,8,7,12,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,4,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,2,2,3,3,4,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,3,3,3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-6,-11,-7,-12,-12,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-11,-12,-9,-15,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-23,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,1,1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-15,-15,-30 +23,12,12,8,11,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,7,9,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +23,12,12,8,12,7,8,6,10,6,6,5,7,5,6,5,9,5,6,5,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,17,9,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,12,6,7,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +26,13,13,9,14,8,8,7,11,6,6,5,7,4,5,5,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,9,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,5,8,5,7,7,18,10,10,7,11,6,7,6,10,5,5,4,6,4,4,4,7,4,3,2,3,2,3,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,3,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,3,2,3,2,3,4,4,3,3,3,4,2,2,2,4,2,2,2,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15 +16,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,11,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +20,10,10,7,10,6,6,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,7,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 +18,9,9,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +32,16,16,11,15,9,10,8,14,8,8,6,9,6,7,6,13,7,7,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,11,6,7,5,7,4,5,5,9,6,7,6,11,7,10,10,22,12,12,8,12,7,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,1,0,0,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-14,-9,-15,-15,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,1,1,1,1,2,2,2,1,1,1,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18 +18,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-7,-4,-7,-8,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +20,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,7,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,11,6,6,5,6,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-6,-5,-9,-5,-8,-9,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 +16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +27,14,14,9,13,8,9,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,6,10,7,10,10,19,10,9,6,9,5,6,5,8,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,0,0,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +24,12,12,8,12,7,8,7,10,6,6,5,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,4,4,10,6,6,4,5,3,4,3,5,3,4,4,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,6,4,7,5,6,6,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-11,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 +23,12,12,8,12,7,8,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,4,4,10,5,5,4,5,3,4,3,5,3,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +44,22,22,15,22,13,16,13,23,12,13,9,13,8,10,9,17,9,10,7,11,7,8,7,11,6,7,6,9,6,9,8,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,10,18,10,11,8,12,7,9,8,13,8,9,7,11,7,10,9,20,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,7,6,10,6,8,7,11,7,10,10,25,13,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-9,-19,-10,-13,-11,-20,-13,-21,-21,-26,-12,-12,-8,-13,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,6,3,3,3,4,3,3,3,4,2,2,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,3,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-12,-25 +23,12,12,8,12,7,9,8,12,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-12 +24,12,12,9,12,7,9,8,13,7,8,5,8,5,6,5,10,6,6,5,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +27,14,14,10,14,8,10,9,15,8,9,6,9,6,7,6,13,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,6,6,5,7,5,7,6,13,7,7,5,8,5,5,5,10,6,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,16,9,9,6,9,6,7,6,8,5,5,4,6,4,6,5,8,5,5,3,4,2,2,2,4,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-17,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,4,3,3,3,4,3,3,2,2,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +22,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,11,6,6,5,7,4,4,4,7,4,4,4,7,5,6,5,11,6,6,5,6,4,4,4,8,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-6,-4,-6,-5,-11,-5,-6,-5,-11,-7,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,6,4,5,4,7,4,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +40,21,21,14,20,12,14,12,22,12,12,9,13,8,11,10,19,10,10,7,11,7,9,8,15,8,9,8,13,8,11,10,20,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,12,10,16,11,17,17,28,15,15,11,16,9,11,10,17,9,10,7,11,7,8,8,17,9,10,7,10,6,8,7,12,7,8,6,10,7,9,9,20,11,11,7,10,6,8,7,13,7,8,6,9,6,9,8,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,25,13,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,1,1,1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-7,-10,-10,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 +23,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,12,6,6,5,7,4,5,5,9,5,5,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,12,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,4,6,4,6,6,14,8,7,5,8,5,5,5,8,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,7,7,11,6,7,6,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-16 +23,12,12,8,12,7,9,8,13,7,7,5,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,6,11,6,6,4,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,6,6,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,7,14,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-13 +40,21,21,15,22,13,15,13,22,12,12,9,15,10,13,12,23,12,12,8,12,7,8,7,15,8,9,7,11,7,10,10,20,10,10,7,11,7,9,8,13,8,9,7,11,7,10,10,17,9,9,7,10,7,10,9,15,9,10,9,15,10,15,15,28,15,15,11,16,9,11,9,17,9,9,7,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,5,7,7,11,6,7,6,11,8,12,12,24,12,12,8,12,7,9,8,13,7,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,8,4,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-12,-7,-11,-11,-24 +27,14,14,10,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,11,8,11,6,7,6,12,6,7,5,7,5,6,6,11,6,6,5,7,4,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-12,-12,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +39,20,20,14,22,13,15,13,22,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,12,7,8,7,13,7,8,6,10,7,9,9,17,9,10,7,10,6,8,8,15,9,10,9,14,10,14,15,28,15,16,11,16,9,10,9,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-11,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +39,20,20,14,21,12,15,13,22,12,13,10,16,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,15,9,10,9,14,10,14,15,29,15,16,11,16,9,10,9,16,9,9,7,10,6,8,8,15,8,9,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +77,39,38,25,37,21,24,20,35,19,20,15,23,14,19,18,33,17,18,12,18,10,12,11,19,11,12,10,16,11,16,15,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-13,-14,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-13,-10,-19,-12,-19,-19,-39,-19,-19,-13,-21,-12,-15,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-18,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-37,-37,-55,-27,-28,-18,-28,-15,-18,-14,-26,-13,-15,-11,-19,-11,-16,-15,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-13,-27,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-21,-44,-21,-21,-14,-21,-11,-14,-12,-24,-12,-14,-10,-18,-11,-16,-15,-31,-15,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-18,-12,-18,-17,-35,-17,-18,-12,-18,-10,-13,-11,-20,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-10,-16,-9,-13,-12,-24,-12,-14,-11,-21,-13,-20,-20,-40,-20,-20,-13,-19,-10,-12,-10,-19,-9,-10,-7,-13,-8,-11,-11,-22,-11,-11,-8,-14,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-37,-18,-19,-12,-19,-11,-14,-12,-24,-12,-14,-10,-17,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-24,-13,-16,-13,-25,-16,-25,-24,-49,-24,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-35,-17,-18,-12,-19,-10,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-24,-13,-15,-12,-21,-13,-19,-19,-38,-19,-19,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-12,-12,-24,-12,-13,-9,-16,-9,-13,-12,-25,-14,-17,-14,-26,-17,-25,-25,-50 +39,20,19,13,19,11,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-7,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-7,-6,-14,-6,-7,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-24 +38,19,19,13,19,11,12,11,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-24 +25,13,13,9,13,7,8,8,12,7,7,6,8,6,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-18,-8,-9,-6,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 +37,19,18,12,18,10,12,11,17,9,10,8,12,8,11,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-20,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-20,-13,-20,-20,-27,-13,-13,-8,-13,-7,-9,-7,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-5,-4,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-11,-6,-7,-5,-10,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-19,-9,-9,-6,-10,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-9,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-12,-12,-24 +21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +25,13,12,8,12,7,8,7,13,7,8,6,9,6,8,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-2,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,1,1,0,1,0,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-8,-5,-8,-7,-15,-7,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16 +21,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +37,19,20,14,20,11,13,11,19,10,10,8,12,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,9,6,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,5,3,3,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,3,2,1,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-21,-11,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-13,-20,-20,-27,-13,-13,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-11,-23 +20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-11,-6,-10,-10,-13,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,6,4,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-6,-11,-6,-8,-6,-12,-7,-11,-11,-14,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-14,-6,-6,-4,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12 +17,9,9,6,9,5,6,6,9,5,5,4,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-5,-2,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +27,14,14,10,14,8,10,9,14,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,7,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,2,1,1,1,0,1,1,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +23,12,12,8,12,7,9,8,12,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +21,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10 +40,20,20,13,19,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,7,5,6,4,5,5,9,5,5,4,5,3,3,2,2,2,2,2,2,1,0,0,-1,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,12,7,7,5,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,1,1,1,0,-1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-6,-3,-3,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-20,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-8,-11,-10,-21,-11,-14,-12,-22,-14,-22,-22,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-7,-11,-10,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-10,-6,-10,-10,-24,-11,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-19 +20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +20,11,11,7,10,6,8,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10 +14,8,8,6,8,5,6,5,7,4,5,4,5,4,4,4,8,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-4,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +21,11,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,0,0,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-4,-6,-4,-8,-5,-8,-8,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6 +13,7,7,5,8,5,5,5,8,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +24,13,13,9,14,8,10,8,13,7,7,5,8,5,7,7,15,8,8,6,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-3,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5 +14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-6,-5,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6 +11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-5 +18,9,9,7,10,6,7,7,11,6,6,5,8,5,6,6,11,6,7,5,8,5,5,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,5,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,1,1,2,1,1,0,1,1,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-6,-8,-6,-12,-7,-11,-11,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,3,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-4,-9 +12,6,6,5,7,4,5,5,8,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5 +16,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,4,6,5,9,5,5,4,6,4,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-4,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8 +16,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7 +31,16,17,12,17,10,11,10,17,9,10,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,5,3,3,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-21,-20,-28,-13,-13,-8,-12,-6,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-14,-9,-15,-15,-27,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-29,-14,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-14 +16,9,9,6,9,5,6,5,9,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-2,-3,-7 +17,9,9,6,9,5,6,5,8,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-3,-1,-1,0,-1,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-7 +12,6,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4 +17,9,10,7,10,6,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-16,-8,-8,-5,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7 +10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +11,6,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +17,9,9,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,6,4,4,4,6,4,6,5,11,6,6,4,5,3,4,3,5,3,3,2,2,2,2,2,7,4,4,2,2,1,1,1,0,1,1,1,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,3,2,3,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,2,3,3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-3,-3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,4,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4 +8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +18,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,5,3,4,3,5,3,4,3,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,1,1,1,1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,7,4,4,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,5,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,0,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,0,0,0,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-2,0,0,0,-2,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,4,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-12,-6,-6,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +13,7,7,5,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,2,2,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1 +11,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,2,2,3,2,2,1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +10,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +18,10,10,7,10,6,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,3,4,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,3,4,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-8,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-9,-21,-10,-9,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-7,-5,-9,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,1,1,0,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,7,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 +15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-5,-7,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +28,14,14,9,13,7,8,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-18,-48,-23,-23,-15,-24,-13,-16,-13,-23,-12,-13,-9,-15,-9,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-10,-7,-12,-7,-11,-10,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,16,8,8,6,8,5,5,4,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-13,-9,-14,-14,-26,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-8,-16,-8,-10,-8,-14,-8,-12,-11,-23,-11,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-10,-8,-16,-10,-16,-16,-35,-17,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 +15,8,7,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 +15,8,7,5,8,5,5,4,7,4,4,3,5,3,4,3,6,3,3,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +11,6,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +16,9,9,6,8,5,5,5,7,4,4,3,4,3,4,4,7,4,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-5,-12,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +12,6,6,4,5,3,4,4,5,3,4,3,3,2,2,2,6,3,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,5,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +17,9,9,6,9,5,6,5,8,4,4,3,5,3,4,3,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,3,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-23,-11,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,2,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +10,6,6,4,5,3,4,4,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-2,-2,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2 +11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,0,-2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,1,1,1,1,2,2,2,1,0,1,1,1,0,0,-1,-1,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-2,-5 +7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 +10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-3,-1,-2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5 +10,6,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,4,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4 +19,10,9,6,9,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,5,3,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-18,-9,-9,-6,-10,-5,-7,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-17,-8,-8,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,8,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4 +10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-8,-7,-11,-5,-6,-4,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3,-3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-12,-5,-5,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,4,3,4,3,3,3,3,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3 +13,7,7,5,7,4,5,4,6,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-11,-17,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,2,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,8,5,5,4,5,3,3,3,4,2,2,2,2,1,1,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-7 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +9,5,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-7,-11,-5,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3 +7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,7,4,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-5 +8,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 +11,6,6,4,5,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,6,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +21,11,12,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-11,-6,-9,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-12,-7,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-33,-16,-16,-10,-16,-8,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,15,8,8,5,7,4,4,3,5,3,3,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-9,-14,-13,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-9,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9 +11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-4,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-2,-2,-4,-2,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-4,-3,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-6,-4,-6,-7,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-10,-5,-5,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,6,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,6,6,4,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,1,2,2,2,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3 +9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +16,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,-5,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-18,-8,-8,-5,-8,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-8,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-5,-8,-3,-3,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,1,1,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1 +23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,13,7,7,5,7,5,6,5,8,5,5,5,8,6,8,7,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,1,1,1,0,0,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-4,-5,-4,-9,-5,-8,-8,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-6,-10,-10,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-21,-10,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-37,-18,-17,-11,-17,-9,-10,-8,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,6,3,3,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-12,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,8,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3 +12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-8,-19,-9,-9,-6,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-4,-7,-4,-7,-8,-20,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,8,8,6,8,5,5,5,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-24,-12,-12,-8,-12,-6,-7,-5,-10,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,2,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +12,6,6,4,7,4,4,4,8,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1 +11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +20,11,11,8,11,7,8,7,12,7,7,6,10,6,8,8,14,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-7,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-12,-12,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-35,-17,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-11,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1 +12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +14,8,8,5,7,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1 +12,7,7,5,6,4,5,4,8,4,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-20,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,2,3,2,2,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-8,-7,-14,-9,-14,-13,-36,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,6,5,8,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-14,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-4,-5,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,5,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,3,4,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-13,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-6,-11,-6,-9,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0 +42,22,22,15,21,12,14,12,20,11,11,9,14,8,10,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-9,-17,-8,-9,-7,-13,-8,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-15,-15,-22,-11,-11,-7,-10,-6,-8,-7,-13,-6,-7,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-18,-17,-35,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-14,-14,-29,-15,-16,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-27,-55,-27,-27,-18,-27,-15,-18,-15,-27,-14,-15,-11,-19,-12,-17,-16,-31,-15,-16,-11,-18,-10,-13,-11,-21,-11,-12,-10,-18,-11,-17,-16,-33,-16,-16,-11,-17,-9,-12,-10,-20,-10,-11,-8,-14,-9,-13,-13,-26,-13,-13,-9,-15,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-11,-18,-11,-15,-14,-27,-15,-18,-15,-27,-17,-25,-25,-76,-37,-37,-24,-36,-20,-24,-19,-35,-18,-19,-13,-22,-13,-19,-17,-34,-17,-17,-11,-17,-9,-11,-9,-18,-9,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-37,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-12,-10,-19,-9,-10,-7,-13,-8,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-12,-15,-13,-24,-16,-24,-24,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,0,1,1,1,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,-1,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3,2,2,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-11,-11,-23,-11,-12,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0 +21,11,11,8,11,7,8,6,10,6,6,5,7,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-5,-10,-5,-5,-3,-6,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-4,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-5,-5,-10,-6,-7,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-6,-14,-7,-8,-7,-14,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-10,-5,-7,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-4,-9,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-6,-5,-10,-6,-8,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-6,-5,-8,-4,-4,-3,-6,-4,-5,-4,-10,-5,-5,-3,-5,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-4,-4,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-25,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0 +20,10,10,7,10,6,7,6,9,5,5,4,6,4,6,5,10,5,5,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-14,-9,-14,-8,-10,-8,-13,-7,-8,-6,-10,-6,-8,-7,-17,-8,-8,-5,-8,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-10,-6,-10,-5,-7,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-17,-8,-9,-6,-10,-6,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-8,-6,-12,-8,-12,-12,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-6,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0 +13,7,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-7,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-7,-5,-8,-8,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1 +10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1 +17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-6,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-7,-4,-6,-5,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-36,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-7,-11,-6,-9,-8,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-8,-13,-13,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +10,6,6,4,5,3,3,3,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2 +8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1 +10,6,6,4,5,3,3,3,6,3,3,2,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +16,8,8,5,7,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-8,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-31,-15,-16,-10,-16,-8,-10,-9,-17,-8,-8,-5,-9,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-6,-7,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-40,-20,-20,-13,-21,-11,-14,-11,-21,-10,-10,-7,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3 +8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +8,4,4,3,4,3,4,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-5,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-8,-5,-8,-4,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,2,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0 +7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0 +6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0 +11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-16,-8,-8,-5,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,3,3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,1,1,2,2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1 +4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-19,-9,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0 +5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0 +9,5,6,5,7,5,6,5,8,5,5,4,7,5,6,6,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,4,3,5,5,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-6,-9,-9,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-29,-14,-14,-9,-14,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-37,-18,-19,-12,-19,-10,-12,-10,-18,-9,-9,-7,-12,-7,-11,-10,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,1,1,2,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0 +5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0 +4,3,3,3,3,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-10,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-9,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,2,3,2,2,1,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-3,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,0,0,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-8,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,1,1,1,1,1,1,1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-2,0,0,0,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,-1,0,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-13,-6,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,1,1,1,0,0,0,1,1,1,1,0,0,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3 +7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-9,-4,-4,-2,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,2,3,3,5,3,3,3,5,4,6,6,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-5,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-15,-7,-8,-5,-6,-3,-4,-3,-8,-4,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2 +6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-9,-5,-8,-4,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,4,2,2,2,3,2,3,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3 +4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3 +5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,1,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,4 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 +8,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-26,-12,-12,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-3,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,1,1,1,1,1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-5,-8,-8,-13,-6,-7,-5,-8,-5,-8,-7,-13,-7,-8,-7,-14,-9,-14,-13,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-14,-7,-7,-5,-8,-4,-6,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,0,1,1,2,3,2,3,3,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,3,2,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-2,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,9 +5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6 +8,4,4,3,4,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-5,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,4,3,5,5,8 +8,4,4,3,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8 +14,8,8,5,7,4,4,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-34,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-20,-9,-9,-6,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-8,-10,-9,-17,-11,-18,-18,-38,-18,-18,-12,-18,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-27,-51,-25,-25,-16,-25,-13,-16,-13,-25,-12,-12,-8,-14,-8,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-30,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-9,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-23,-11,-12,-8,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,3,3,4,4,7,4,5,5,9,6,9,9,16,8,8,6,8,5,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-5,-7,-4,-5,-4,-6,-3,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,3,4,4,8 +6,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6 +9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-9,-9,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,-2,0,0,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8 +6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5 +7,4,4,3,3,2,2,2,4,2,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-3,-5,-5,-14,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-5,-2,-3,-3,-9,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,2,1,1,2,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +9,5,6,4,6,4,5,4,6,3,3,2,2,2,2,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-4,-7,-7,-22,-11,-11,-7,-11,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-6,-6,-15,-7,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-16,-15,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,2,2,2,1,1,1,2,2,4,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9 +5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5 +6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4 +8,4,4,3,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-7,-7,-4,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6 +5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6 +10,5,5,4,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,3,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-3,-3,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-8,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-17,-11,-16,-16,-36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,8,4,4,3,4,2,2,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,0,0,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,5,4,5,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-12,-6,-6,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5 +5,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5 +7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +14,8,8,5,7,5,6,5,8,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,3,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,8,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8 +8,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-2,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +10,6,6,4,6,4,5,4,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-5,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-5,-4,-6,-4,-6,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,6,4,4,3,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +16,9,9,6,8,5,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-10,-5,-6,-5,-10,-7,-11,-11,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,6,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,1,2,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,-4,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,-1,0,1,1,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,-1,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6 +15,8,9,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,2,2,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +29,15,15,10,15,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,3,2,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-10,-30,-14,-14,-9,-15,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,4,3,3,2,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-13,-11,-20,-13,-21,-21,-56,-27,-27,-18,-28,-15,-18,-15,-27,-13,-14,-9,-14,-8,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-9,-14,-14,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,9,5,5,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,3,5,4,5,4,7,5,6,5,8,6,9,9,16 +15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,5,5,9 +15,8,8,6,8,5,6,5,6,4,4,3,4,3,4,3,6,3,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-3,-4,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9 +11,6,6,4,6,4,4,4,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,4,7 +17,9,9,6,8,5,6,5,6,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-4,-16,-8,-8,-5,-8,-4,-5,-3,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-17,-8,-7,-4,-7,-4,-5,-4,-10,-5,-5,-3,-6,-4,-6,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-11,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,6,4,4,3,4,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,-1,4,3,3,2,3,2,3,3,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,5,4,6,6,11 +10,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,3,4,4,7 +13,7,6,4,6,4,4,4,5,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-12,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,3,5,3,3,3,4,3,5,5,8 +12,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +21,11,10,7,10,6,7,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-33,-16,-16,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-9,-8,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-9,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,6,6,12 +11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7 +12,6,6,4,7,4,4,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,8 +9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7 +15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,2,2,2,2,2,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,-1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,5,5,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13 +10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9 +14,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-10,-5,-6,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +13,7,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +25,13,13,8,11,6,7,6,9,5,5,4,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-8,-27,-13,-12,-8,-12,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-12,-12,-24,-13,-15,-12,-22,-14,-22,-21,-45,-22,-21,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-15,-8,-9,-7,-14,-9,-14,-14,-22,-10,-10,-6,-10,-5,-7,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,6,6,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 +13,7,7,5,6,4,4,4,5,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,12 +14,7,7,5,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-25,-12,-12,-7,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,13 +11,6,6,4,5,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +18,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-16,-8,-9,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,3,2,3,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,9,8,15 +11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,9 +15,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-9,-5,-6,-6,-13,-7,-8,-6,-11,-7,-12,-12,-25,-12,-12,-8,-11,-6,-8,-7,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5,-2,-1,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,12 +14,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12 +27,14,14,9,13,8,9,7,12,7,8,6,9,6,7,6,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-28,-14,-14,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-11,-24,-12,-12,-9,-15,-9,-12,-12,-24,-13,-16,-13,-23,-15,-23,-23,-45,-22,-22,-14,-22,-12,-15,-13,-24,-12,-14,-10,-17,-10,-15,-14,-27,-13,-13,-9,-15,-8,-11,-9,-18,-9,-10,-8,-14,-8,-12,-12,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-7,-13,-7,-9,-8,-16,-8,-10,-8,-15,-9,-13,-13,-28,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-7,-14,-9,-14,-14,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,2,2,2,2,1,1,1,2,2,2,2,6,4,4,3,3,2,1,1,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,8,6,9,6,7,6,11,6,7,6,10,7,11,11,22 +15,8,8,6,8,5,5,4,7,4,5,4,5,4,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,3,4,4,8,4,5,4,6,4,5,4,7,4,4,4,6,5,7,7,13 +18,10,10,7,9,5,6,5,8,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-6,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,8,6,8,8,16 +15,8,8,6,8,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-9,-5,-7,-6,-14,-6,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,14 +26,13,13,9,13,8,9,7,11,6,6,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,2,2,2,2,2,2,4,2,2,2,2,2,3,3,6,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-8,-11,-11,-22,-11,-11,-8,-14,-8,-12,-11,-23,-12,-15,-12,-23,-15,-23,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-12,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-16,-8,-9,-7,-14,-9,-14,-14,-27,-13,-13,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-9,-7,-14,-9,-14,-14,-28,-13,-13,-8,-13,-7,-8,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,7,6,9,6,8,7,11,7,8,7,12,9,13,13,25 +18,9,9,6,9,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-6,-7,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-15,-8,-10,-8,-13,-8,-13,-13,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-6,-4,-6,-6,-14,-7,-7,-5,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,4,3,4,3,4,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,5,9,6,7,6,12,7,8,7,13,9,14,14,26 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-8,-9,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,13,9,13,13,26 +50,25,25,17,24,13,15,12,21,11,11,8,12,8,10,9,17,9,9,7,10,6,6,5,9,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,3,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-8,-7,-13,-9,-14,-15,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-10,-7,-12,-7,-10,-10,-21,-10,-10,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-39,-19,-20,-13,-21,-11,-14,-12,-22,-11,-13,-9,-16,-10,-15,-15,-30,-15,-15,-11,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-26,-53,-27,-28,-19,-30,-17,-21,-18,-34,-18,-20,-15,-27,-17,-24,-23,-45,-23,-24,-18,-30,-18,-26,-24,-48,-26,-32,-26,-47,-31,-46,-46,-94,-46,-46,-31,-47,-25,-30,-25,-46,-23,-25,-19,-32,-20,-28,-26,-51,-25,-26,-18,-28,-16,-21,-19,-36,-19,-22,-17,-29,-19,-28,-27,-54,-27,-27,-18,-28,-15,-19,-16,-30,-15,-17,-13,-23,-14,-21,-20,-40,-20,-21,-14,-23,-13,-18,-16,-32,-17,-19,-15,-28,-18,-28,-28,-57,-28,-27,-18,-27,-15,-18,-15,-27,-14,-15,-10,-17,-10,-14,-13,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-10,-8,-14,-9,-13,-12,-25,-13,-14,-11,-19,-11,-16,-15,-29,-16,-19,-16,-30,-19,-29,-29,-58,-28,-28,-19,-29,-15,-18,-15,-28,-14,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-5,-5,-3,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,8,16,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,13,7,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,4,6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,3,3,4,4,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,11,11,20,11,12,9,15,9,12,12,22,13,16,14,25,17,25,25,50 diff --git a/worlds/diamond_world2.csv b/worlds/diamond_world2.csv new file mode 100644 index 0000000..d51e78a --- /dev/null +++ b/worlds/diamond_world2.csv @@ -0,0 +1,257 @@ +54,102,116,132,158,159,140,207,229,196,157,171,261,284,275,322,482,460,363,438,641,901,1431,1938,2724,2943,3854,4444,3889,4374,5896,6636,5925,6653,9764,12769,12864,9305,7398,9721,9630,7535,5882,4872,4098,7778,9385,10017,13287,10766,6878,7037,8674,10026,10329,12788,14776,11178,7584,6270,5816,4793,3297,2901,2281,1952,1514,1512,2230,1570,1413,891,514,920,1062,2164,2972,3805,3680,4377,3728,3423,2090,2491,2623,2053,1559,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,198,394,561,1230,1520,1995,2107,1602,1349,1696,1557,1097,692,480,144,183,258,312,336,567,652,938,1053,718,682,560,295,264,185,176,240,202,114,78,32,25,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,827,1035,1444,1569,1188,1324,2036,2913,3602,4379,3896,3696,3039,4308,5187,5234,5454,5259,3759,3158,3156,2434,2461,3302,3722,3143,3070,2444,1845,2378,2234,2386,1996,1579,1173,787,534,236,0,26,43,96,118,111,109,143,198,435,729,1418,2085,3296,4312,5042,7529,8380,8128,6343,5903,4959,4039,6504,6962,6717,4329,3425,2243,3978,4792,4876,4724,3767,2925,2772,3398,2407,2155,1020,0,12,24,31,48,39,39,44,56 +41,70,132,151,160,164,190,228,156,162,182,259,294,312,349,366,406,354,339,446,788,989,1440,2132,2859,3879,4451,3884,5894,5785,6928,5117,9479,8944,8882,9244,8506,7222,6220,6822,8140,7512,4746,5536,5603,8872,13548,12820,10124,10644,6286,7120,7084,8630,10278,10881,9791,10136,8670,6297,6179,4585,3641,3050,3005,2500,1744,1516,1807,1498,1023,778,355,952,1020,2133,4002,4108,4928,4747,3051,2948,1666,1927,2881,2138,1741,985,183,174,136,119,80,66,32,18,0,1,2,2,2,5,5,7,4,174,374,578,881,1278,1903,2477,3279,2030,2260,1918,1770,1380,1036,640,408,422,607,707,752,766,909,888,1530,1088,792,660,350,308,199,350,398,433,393,437,289,249,216,247,263,270,258,201,108,216,330,397,350,289,227,231,91,101,121,138,0,26,54,59,138,195,182,218,50,368,629,1068,1788,1732,1582,1630,2299,2576,2308,2999,3179,3566,4023,4280,4935,5181,4782,4696,3109,3260,3532,3146,1546,2124,2902,2541,2657,2672,2132,2148,2007,1598,1446,1250,1014,681,613,274,130,158,149,234,336,338,275,302,306,556,1054,1588,2440,2953,2880,4318,5856,5977,5619,5900,5060,4874,3930,5878,7622,5992,4926,4130,2930,3908,4600,5122,4191,3036,2320,2624,3235,2977,3248,2414,537,454,448,368,334,262,216,128,43 +33,66,110,183,227,187,181,268,130,126,147,243,233,366,407,407,283,341,439,455,842,1077,1650,1816,3787,3523,4724,4828,6627,6756,7043,5634,10664,8572,9575,8976,7290,5319,4652,6281,7554,6226,5942,5906,8240,10155,13952,15263,8829,8094,7972,7892,5903,9171,10106,11464,8832,8317,8050,6156,5091,3988,3592,3860,2901,1981,1532,1258,1132,1109,1076,858,297,925,1441,2588,3878,5115,5634,6016,2050,1684,1904,2434,3270,2692,1650,1007,371,299,280,326,190,118,76,46,0,2,4,5,4,7,8,11,6,294,537,725,1450,1728,1751,2593,3560,2610,2506,1884,1949,1463,1162,824,566,726,950,1114,927,1064,1070,1045,1648,1562,1275,632,310,316,286,344,485,579,764,792,639,496,505,626,602,561,456,409,254,424,556,708,719,622,518,385,192,208,262,327,0,58,110,140,285,364,360,409,116,364,564,910,2015,1843,1538,1355,1876,1908,2144,3081,2456,3870,4770,4738,3385,3412,4216,4850,3759,3730,3518,3548,1284,1311,1564,2237,3517,3165,2741,2152,1768,1535,1030,951,821,742,534,354,304,333,289,419,698,495,500,366,357,655,1196,1452,2215,2595,2638,4427,3651,3673,4441,5546,3881,5098,4840,6112,7255,5345,4954,4006,3974,4142,4283,4018,2774,2230,2200,3251,2909,4092,4108,3240,1067,872,736,824,569,515,422,261,36 +36,61,99,172,251,224,208,318,124,159,212,261,272,332,354,412,176,495,722,628,954,1132,1229,1844,4269,4028,5194,5382,7081,5824,5730,5373,9529,9947,8936,8470,7134,5555,5378,4561,6648,6787,5624,7102,7951,8523,11987,13608,9303,7582,5878,7194,6839,10309,9502,9698,9737,9020,6341,5617,4089,3664,4053,3892,2398,1708,1482,1010,876,1044,997,858,277,808,1357,2278,3520,4738,5474,7014,2045,2036,1884,2844,2775,2042,1488,928,549,432,461,412,327,199,106,58,0,4,6,7,7,11,10,17,10,478,1008,1254,2218,1706,1678,2930,2641,2772,3122,2266,1817,1602,1287,968,985,1047,1458,1534,1205,1382,1146,1184,1650,1370,1197,661,268,372,365,446,682,793,861,962,1003,826,576,883,928,764,444,466,512,730,853,1073,1286,989,605,548,328,291,443,500,0,81,172,245,326,508,714,712,208,598,956,1110,1623,1700,2373,2399,1453,1866,1430,2154,3237,3480,4554,4977,4278,3952,3941,3594,2928,3839,3498,4120,1578,1666,1312,1690,2687,3002,2430,2328,1010,1110,853,1124,1372,901,504,383,436,507,594,658,873,636,577,461,438,936,1559,2006,2557,2563,2079,3056,2541,2627,3879,4406,3763,4554,3412,4730,4908,4753,5214,5174,4391,5022,4454,4256,2160,2534,2143,3686,3924,5439,5707,5660,1449,1274,789,1078,1222,1016,728,396,25 +31,65,120,166,200,218,320,336,170,217,292,299,357,517,514,525,100,214,410,791,1072,1309,1279,2138,3386,4128,3610,4500,5626,5241,3576,3564,9429,7379,5484,5116,6090,6102,6224,4794,5022,8233,9129,10492,8628,10028,13826,14730,8683,8122,5196,6046,7248,9273,9994,11641,9015,6314,3811,3191,2767,3288,4158,4456,2234,2538,2003,1587,744,761,774,759,376,1088,1874,2233,2637,4046,4527,6164,2458,2391,1854,1696,2283,1624,1613,1395,658,573,624,487,428,374,228,99,0,4,6,7,7,10,13,23,13,818,1706,2126,2513,2722,3187,3955,3033,2419,1594,1635,1658,1398,1461,988,1122,1210,1539,1806,1922,1247,949,893,1855,1540,1282,831,306,320,420,670,715,884,985,842,1050,1221,1239,1385,961,766,614,692,731,702,966,1315,1537,1432,1093,614,433,650,690,744,0,69,151,262,435,710,965,1222,308,496,678,1128,1772,2294,2768,3467,1392,2128,2274,2442,3056,4089,6722,7916,3851,3976,4006,2799,2856,3260,4140,4106,1379,1976,2458,2821,2934,2628,3156,2762,512,806,1258,1223,1549,1139,1022,653,661,746,989,1065,929,1036,826,595,524,941,1403,1882,3098,2822,2406,1707,2387,2176,2810,3121,4372,5180,5238,3752,5000,4376,3699,4442,4357,4334,2913,3319,2029,2793,3084,4817,6005,4315,4342,6805,2035,1844,1519,1433,1670,1347,823,478,12 +52,84,94,124,165,256,241,320,188,256,229,234,279,354,386,343,78,404,637,1060,1530,1766,1286,2191,2850,3546,3680,4388,6196,4938,5058,3482,10454,7318,5137,3890,5945,6336,5014,4191,5255,6476,6725,8554,9045,8378,9202,12976,5074,5696,5131,5144,5797,7589,9541,9943,7806,5833,4037,3304,2491,3509,4158,4782,3000,3338,2799,2224,2314,1646,988,1008,482,1496,2625,2889,2620,3394,5073,5460,3190,3010,2522,2267,2139,2021,1524,1192,677,610,756,584,475,390,226,116,0,5,7,10,8,14,22,27,21,648,1747,2301,2635,2846,4031,3768,3686,2692,2082,1721,1804,1351,1611,1098,1423,1564,1578,1866,2757,2232,1546,1478,2424,1880,1770,1084,482,725,1008,1355,1444,1378,1022,1070,1203,1410,1798,1812,2327,1867,1397,999,884,1203,1731,1972,1992,2212,2401,1596,952,1136,1221,926,0,74,124,234,442,728,1030,1070,854,898,920,1207,1266,2051,2274,2533,1570,1617,1784,2354,2396,4320,5250,5439,4116,3415,4316,3553,2556,3083,3487,3592,1326,2332,2314,2666,2694,2267,2090,2278,766,1184,1538,1780,1698,1442,1383,966,1016,1058,1279,1066,1122,1090,752,578,495,1102,1517,2322,2278,2004,2057,1923,2260,2690,3010,4668,4081,4358,4327,3914,4891,4744,3735,4706,4262,4930,4416,4426,2833,3548,3809,4340,4840,5014,5148,7168,3848,3768,2595,2524,2055,1398,1050,473,12 +83,95,86,75,171,254,268,236,276,271,246,237,250,264,210,194,46,452,957,1081,1825,1518,1878,1789,2717,2852,4240,3786,4750,4955,5158,4376,10835,6927,5854,4958,6478,6282,5166,4925,6066,5636,6989,5506,6501,6788,9158,13448,3983,3584,4232,4250,4810,5843,6297,7684,8722,5364,4102,3099,2260,3880,5346,6268,4256,3950,3090,2301,3111,2578,1670,1128,505,2037,2928,3428,2578,2679,4055,4098,3125,2962,2409,2696,2405,2067,1266,1062,629,836,812,656,683,466,237,134,0,5,7,8,8,18,22,28,29,556,1226,2225,2214,3268,3880,3453,3531,2699,2076,1928,1407,1466,1472,1017,1427,1599,1724,2543,3110,2264,2150,1468,2395,1695,1778,1060,537,1351,1854,2096,1840,1529,1232,1175,1352,1418,1867,2262,4348,3184,1753,1459,1010,1741,2152,2312,3300,2738,2979,2662,1393,1138,1448,1441,0,70,150,208,399,686,995,1090,1448,962,946,788,1225,1900,2338,2162,1534,1664,1700,2004,2179,2436,3464,4239,4686,4376,4110,4102,1644,2795,3428,3410,1404,1680,2302,2637,1600,1536,1861,2720,1225,1338,1736,2382,1754,1726,1689,1133,1380,1077,1158,878,1014,825,764,706,567,1540,2030,3265,2316,2215,2052,2216,2088,2018,2766,3107,3600,3439,3793,3332,4352,4337,4510,5014,5160,5988,4957,3734,2840,3750,4094,5148,4271,4808,5708,9182,6564,4691,4368,4416,1777,1676,1447,684,8 +132,128,96,80,100,154,242,200,222,218,162,182,189,186,142,124,20,486,820,1247,2190,2106,2357,2294,2575,3356,3566,4736,4451,4580,5516,5121,8905,6719,5854,4044,5408,4625,5962,4546,5389,5466,6665,4668,4380,5374,8267,9236,1710,1952,2474,3070,4274,4269,5009,6744,5170,4208,4277,3388,2006,3502,4448,6597,6392,5783,4880,3214,3088,2922,1985,1258,539,1916,2564,2938,3285,3578,2788,3712,2513,2304,2204,1764,1823,1564,1080,974,703,669,586,666,633,440,322,164,0,5,7,10,12,20,25,30,34,532,832,1604,1676,2726,3937,3530,2746,2349,2620,2006,1283,1196,1223,1006,1438,1586,1620,2706,2527,2547,2359,2055,1810,1732,2004,1341,718,1436,2490,2148,2138,2294,2102,1581,1186,1460,1801,2285,4268,3311,2445,1794,1091,2149,2154,2692,3287,3242,3387,3428,2538,2192,1707,1524,0,102,221,285,484,598,921,1147,1368,1206,1013,916,1138,2008,1886,2784,1279,1794,1689,2437,2920,3466,4364,3636,3737,3981,2927,3116,1667,2694,2890,3483,950,1326,1632,2148,1394,1400,1388,1726,1315,2166,2238,2352,2448,2112,1831,1281,1572,1438,1532,1356,1236,1008,755,778,554,1353,1975,3350,2828,2952,2606,3534,1406,2098,3238,3246,2906,3598,3395,3488,4525,4723,3294,4682,4647,4815,5474,5135,4703,4870,5150,3736,4136,5366,5806,8656,6950,7070,6052,4623,3121,2540,1912,1102,5 +172,178,198,178,196,158,185,222,229,239,209,173,93,71,54,26,0,426,841,1386,1536,2154,2288,2380,2536,2932,2974,3231,4097,3932,3269,4141,7287,5723,5666,3237,1402,2021,2406,3193,4852,4887,4580,5015,7267,7539,8661,6374,0,176,356,564,720,1286,2301,2886,3558,4194,3876,4881,4996,6557,6726,6386,9020,9632,10300,8260,7326,5288,3874,2546,422,1048,1357,2081,2195,3632,4262,4221,2267,1453,1011,908,503,870,976,850,1024,1059,828,746,688,644,398,231,0,5,8,12,11,22,29,34,31,738,1473,1745,2414,3842,4366,3968,2483,2129,1506,923,466,822,978,1253,1134,824,740,887,1067,1556,2458,2421,1720,1752,2415,2347,3403,2813,2899,2603,3414,2751,2677,3596,4769,3968,3454,3363,5292,5556,4165,5327,6326,6191,4907,4756,3409,3864,4552,4264,3702,2868,2281,1956,0,96,217,368,404,964,1435,1637,1778,1845,1304,1245,1129,2066,2634,2920,999,1062,962,1458,1748,1893,1870,3245,3603,4076,5502,5015,4786,4516,3909,3708,812,622,662,639,436,1198,1565,1545,1886,1441,1185,1468,1511,1378,1106,1176,1426,1177,1087,1415,1644,1409,1189,937,519,832,1471,2260,3964,4371,5043,4298,942,1633,2571,3145,2800,2868,2856,3650,3841,4090,3104,2920,3340,3773,5128,5395,5782,7408,6762,5564,6739,6663,8074,9540,9852,7768,6503,4701,3705,2784,1755,1014,0 +148,173,206,202,216,180,224,236,222,197,206,155,128,92,62,27,2,294,646,1200,1237,1788,1764,1872,1877,2354,2661,2776,3298,3116,2572,3191,7137,5147,3767,3145,1535,1840,2193,3382,3651,4270,4074,4763,5149,6369,8185,5060,0,245,352,765,748,1702,2650,3393,3654,3811,2937,3128,4237,5467,6078,7542,10336,10171,7855,7321,5520,4604,5240,3012,1948,2065,1922,2816,4134,4043,4573,4595,1522,1180,985,888,900,964,943,951,1028,869,857,732,576,504,346,172,0,6,12,16,22,26,32,35,34,637,974,1410,1805,2768,3571,4654,3426,2320,1418,1096,832,924,943,1169,2358,2060,1402,1657,1344,1748,2180,2690,1470,1569,2128,2398,2673,2462,2613,3180,4051,3116,3006,4136,3812,3595,3711,3196,5464,6236,5207,4087,5811,4956,4395,3302,2538,3366,4668,4183,3084,2554,2044,1610,0,96,199,310,445,842,1031,1570,1650,1719,1066,1002,1042,1373,2234,2610,1361,1660,1345,1551,1831,2112,2640,3680,3210,3880,3956,3502,3356,3922,4733,4736,666,662,522,621,353,972,1555,1286,1932,1678,1364,1606,1229,1278,1377,1214,1766,1711,1872,1441,1550,1158,970,808,521,792,1231,2292,3448,4311,3789,5092,782,1416,1912,2242,2154,2570,3783,3756,3204,3801,3481,2588,3913,4498,5592,6875,4886,5719,8496,8200,6928,7901,10068,15414,15263,13083,11664,7708,4797,4888,3201,2330,1540 +144,174,172,202,203,236,200,255,207,177,145,149,128,77,60,32,3,224,463,876,1511,1414,1852,2169,1606,2272,2559,2383,2248,2345,2870,2428,5915,5223,3536,2646,1496,1641,1872,2415,2776,3549,3886,4758,3805,3963,5027,3933,0,278,500,646,677,1664,2504,3339,2698,2164,2546,3003,4596,6412,6328,6031,9536,6829,7132,4744,6433,5123,4996,4204,4432,3644,2327,2859,5248,4493,4730,6642,1057,1154,898,699,1071,1063,871,896,881,710,640,415,591,422,246,138,0,7,13,23,29,28,32,34,30,459,881,1082,1459,2156,2326,3815,3252,2097,1800,1726,1000,1087,1351,1446,2843,2670,2134,2068,1974,2665,2608,1936,1160,1498,1775,2515,1830,1905,2852,3580,4548,4238,3167,3868,3381,3931,3328,2636,7645,6171,5003,4374,5546,3616,2580,1847,2661,3317,3972,4036,3608,2450,2278,1606,0,122,210,230,345,784,1116,1535,1025,1172,1240,1265,666,1185,1562,1754,1734,1764,1730,1790,2401,3060,3336,3931,2287,2862,2748,2836,3520,3954,4239,3880,742,784,614,558,313,694,1162,1104,1750,1798,1405,1802,1416,1789,1636,1521,2684,2380,2076,1578,1032,1098,1112,882,503,834,1407,2140,3151,3682,4066,4663,568,923,1324,1093,2576,3015,3673,4361,3343,4005,3744,3162,4793,4957,5518,6200,4843,5460,7734,7590,8456,13855,16102,20632,20141,18254,15122,9441,6753,6906,4893,3816,2924 +202,232,142,150,178,145,148,259,171,162,151,137,142,82,69,38,5,214,472,682,1430,1726,1885,1604,1840,1966,2121,2156,1762,1984,2338,1939,5574,5207,2845,2932,2289,2492,1845,2860,2720,2958,3012,3138,2528,2782,3196,2897,0,340,667,772,801,1362,2079,2194,2469,1946,1956,2970,4771,5731,6912,8068,8016,7246,8004,5656,6266,5684,4411,4908,5902,4262,3570,3477,5476,4434,4306,6268,1260,1284,1026,970,973,1063,604,628,904,595,481,350,314,275,208,92,0,12,24,27,44,34,35,38,29,379,980,1001,1496,1920,2085,2783,3750,2628,1992,1804,1534,1582,1432,1476,3532,2554,1776,1940,2557,2312,2208,2070,669,960,1208,1718,1481,2341,2995,3986,7077,5625,4156,4972,3955,3588,3298,3688,7592,7152,4195,3614,4891,4194,2613,2384,2913,3010,2806,2697,3034,2528,1814,1316,0,114,217,270,444,704,1054,1166,962,998,852,956,743,908,945,1207,2151,2272,2435,2434,2589,2860,3506,3536,1254,2226,2594,2610,2895,3278,4594,4326,502,510,588,478,401,745,856,988,1753,1406,1374,1400,1776,1564,1327,1466,2287,2592,2615,1739,1289,1293,1343,800,411,894,1194,1690,2434,3114,3260,4266,372,620,1195,1224,1730,2521,3231,3880,2326,3290,4488,4085,5227,6030,6398,7754,4756,6365,7248,7210,7564,15862,23973,25307,23159,17669,15273,10115,6410,6096,5297,5156,4043 +260,268,190,174,127,201,215,246,161,128,122,116,118,72,48,22,4,149,329,738,954,1388,1846,1821,2090,2204,1749,1646,1372,936,773,738,5415,5776,5160,4042,2797,2466,2717,2573,1781,1884,1600,2088,2150,1846,1273,914,0,244,495,672,915,1070,889,1205,1470,2578,3436,4205,4411,5973,9081,10774,6859,6360,4905,6255,6104,6430,5552,4638,6307,6047,5011,4927,5678,7986,8698,7228,1148,990,952,957,1060,1093,1048,836,739,568,384,255,168,155,114,50,0,10,15,28,45,44,54,65,17,384,800,914,1244,1764,2237,2394,4023,3697,2709,2634,1815,1506,1580,1526,3371,2560,2655,2524,2624,2810,2171,2190,328,539,894,909,1158,1527,1789,2840,7925,8184,9050,6790,6306,5850,7735,5566,8410,8722,7751,6416,2985,3139,2377,1977,2727,2265,1801,1936,1898,1931,2084,1788,0,90,180,306,394,588,669,857,872,1008,909,986,772,679,830,821,1968,2059,2919,2529,2810,3306,3194,2818,547,937,1775,2330,3228,3306,2735,2631,279,433,454,489,414,405,555,1034,1603,1410,1860,1555,1548,1549,1574,1269,2528,2638,2195,1979,1636,1132,1148,794,505,1057,1277,1708,2473,3357,3216,3626,198,467,654,1029,1334,2448,2952,2904,1414,2220,3876,3930,4598,6139,6500,8761,3403,3898,4452,5189,5570,10044,16185,19920,24950,21127,21348,13906,8331,8732,8943,7224,4934 +264,201,173,146,141,179,158,218,188,112,114,98,118,80,58,30,6,114,306,588,578,1132,1354,1314,1447,1384,1237,1024,1330,846,667,585,3832,4541,3480,2689,2032,1936,1980,1897,1090,1384,1230,1684,1492,1160,1077,714,0,175,393,506,693,698,602,1176,1046,1605,2420,3232,2933,5196,7614,10361,7532,6540,7056,7329,7794,7938,6683,6187,6462,5635,5974,5974,5916,6543,6230,7360,2033,2896,2169,2422,1918,1838,1410,942,502,412,338,174,176,135,111,52,0,10,22,34,49,50,65,62,32,332,542,852,1274,1570,2255,2230,2894,2904,2112,1934,1349,1538,1444,1719,3143,2866,3087,3166,2448,2310,2708,2463,398,699,849,1212,974,1658,1985,3062,7653,8897,8478,7915,5233,5132,5479,5448,8682,7408,5781,4852,2466,2340,2051,1543,2145,1982,1245,1642,1179,1580,1680,1596,0,76,122,194,295,454,488,645,792,718,724,834,1000,1064,978,758,1630,1722,2310,2543,3014,2889,2289,2444,572,1032,1292,1930,2634,2858,2541,2700,246,338,304,334,318,395,385,732,1219,1390,1299,1363,1421,1468,1552,1520,2325,2084,1848,1466,1587,1098,874,569,436,683,745,1206,1501,2201,2251,2888,116,326,538,754,1012,1508,1855,2256,948,1806,3169,3278,4324,5222,6220,9012,4712,6422,10277,11928,8814,12812,20807,31296,25722,28928,18144,18143,12857,11855,13726,12316,12089 +194,129,108,154,161,135,171,220,159,113,99,98,126,110,58,33,6,107,181,279,331,589,718,890,1108,1163,860,797,902,861,565,447,2021,2008,2114,2159,1379,1031,1053,938,816,1059,1066,1218,915,931,758,566,0,101,238,391,293,520,608,754,691,926,1554,2406,1941,4000,6374,8886,5860,6333,6992,7000,8546,10140,9697,5861,4959,6211,6903,7826,6287,5550,5138,5089,3783,3474,4076,3316,2737,2070,2178,1358,284,286,230,163,126,86,74,38,0,10,21,26,48,64,58,61,53,255,394,703,1040,1405,1552,1349,2382,2473,2126,1319,794,1034,1641,1857,2716,2270,2818,2744,2202,1968,2433,2027,648,707,1004,1640,1261,1956,2882,3018,6733,5853,7214,8106,3947,4522,4003,4552,8631,6025,5136,3306,2589,1726,1232,988,1806,1646,1208,1687,969,1456,1555,1254,0,36,84,122,248,374,432,539,452,512,527,547,945,940,1076,720,1867,1707,1446,1712,2289,2356,2394,2294,810,944,1091,1772,2488,2599,2274,2427,144,152,220,229,236,221,276,379,1144,1433,1298,1414,1310,1358,1616,1500,2163,1671,1329,1020,1296,1103,806,414,236,406,450,706,1065,1212,1532,2048,61,198,422,787,636,764,1220,1178,532,1464,1952,2884,3063,5397,6625,10116,5887,11172,18890,18074,12026,18582,30224,40808,36294,26032,18902,17653,19977,15624,14598,17871,16324 +184,126,120,161,193,156,178,181,169,118,121,91,113,83,52,33,6,43,108,145,191,288,360,492,597,526,480,364,437,387,290,232,876,969,1058,1009,726,552,631,504,354,474,582,620,528,526,333,251,0,53,105,186,141,223,305,432,379,571,1072,1555,1420,3426,5525,8938,4423,6876,7086,8149,8951,8958,11993,9060,7849,7558,6750,5642,4462,3961,4579,4967,4628,3956,3948,3828,2860,2530,2024,1206,232,214,171,147,108,91,55,30,0,12,29,36,50,59,63,64,67,272,402,635,980,1535,1844,1899,2524,2091,1794,1134,755,1154,1421,2190,2560,2448,2424,2506,2240,2518,2863,2018,1026,878,1174,1390,1283,2238,3317,3771,5190,5480,7418,5700,5128,5972,5238,4735,7714,6208,4458,3329,1706,1207,970,554,724,920,927,1126,895,1134,1651,1424,0,21,48,64,109,174,201,259,229,352,489,626,974,1016,1355,1234,1669,1421,1444,1562,1774,1606,1244,1641,994,1064,1122,1320,1891,1827,1832,1892,62,102,130,126,119,126,176,236,617,875,796,1210,1393,1378,1475,1692,1713,1418,1466,1168,880,673,549,304,194,223,299,354,457,568,910,967,26,104,213,345,360,444,700,704,237,828,1381,2074,2019,3332,4245,6924,6136,14894,26236,27980,23007,33378,33312,30328,35774,28618,18830,17451,24184,19180,17111,16296,19720 +126,109,112,96,113,127,120,102,61,63,71,64,54,44,23,13,4,6,6,6,4,5,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2535,4902,5449,7849,7269,9893,9724,4772,4716,3925,3182,1591,1305,642,365,0,117,211,387,617,1556,2386,3232,4454,3078,2790,2873,2737,2927,2194,1440,996,592,363,299,146,105,56,34,0,16,34,45,53,79,135,154,190,358,576,718,970,1224,1913,1906,2248,1506,1178,1130,879,1198,1391,1393,1298,1339,1509,1003,944,1056,1573,1451,1158,1716,2686,3005,3821,3944,4383,4356,6436,9074,8901,8959,8948,7981,6839,6395,4808,4001,3645,2611,767,610,530,277,82,140,159,198,175,712,1086,1131,0,20,44,80,93,121,169,154,151,379,537,690,913,957,1235,1302,1482,2010,2052,1761,2190,3252,3931,3638,3635,3321,2907,1814,1250,1418,1353,1444,0,0,0,0,0,0,0,0,0,134,320,529,769,1343,1663,1921,1949,1506,1547,1893,1735,1498,1035,622,0,0,0,0,0,0,0,0,0,1332,2790,3521,5052,5829,8526,8165,10216,10163,8593,7708,5606,6039,4782,5827,8467,9957,10786,9430,9853,15394,15863,21493,21924,18056,15136,16732,25184,22627,23025,17582,18619 +126,114,119,102,93,91,81,84,51,50,66,50,50,42,23,16,6,40,58,90,74,130,217,230,1089,1275,1176,1274,652,1144,1514,1892,410,617,574,638,650,524,339,200,362,506,734,692,724,710,988,870,157,202,187,237,152,112,104,64,8,1961,4109,4150,5852,6768,8151,7902,5598,4866,3593,2570,1284,983,776,470,304,512,693,886,782,1866,2783,2928,5560,3423,2751,3114,2968,2923,2220,1766,793,467,288,232,240,192,116,57,0,17,36,46,63,83,119,136,163,502,780,807,1320,1463,2451,2196,1882,1781,1716,1280,901,1141,1071,1017,1354,1166,1100,944,1072,1372,1366,1504,1003,1400,2500,2768,3756,4590,4516,6254,5999,8376,6044,6074,9270,9007,7930,5760,3640,3434,3490,3353,2204,1739,1420,912,423,450,473,474,476,1286,1642,1740,249,251,340,273,176,181,191,222,204,427,715,744,893,1200,1631,1976,1541,1683,2133,1982,1872,2305,2544,2746,3472,3307,2211,1850,1359,1318,1659,1566,51,71,87,96,122,155,217,216,124,240,309,610,763,1139,1273,1728,1764,1790,1679,1644,1237,1298,1024,777,165,158,177,191,92,96,91,44,90,1292,2312,3256,3650,4872,6232,9203,8698,9713,8430,7670,6242,5276,4877,5091,8891,9306,9501,9528,8710,12082,17202,16902,17260,19840,14977,14050,18965,18548,16558,14314,14214 +149,106,96,131,99,77,68,97,48,45,45,38,32,30,24,19,6,60,117,196,141,274,359,372,2386,2240,2224,1802,1620,3056,3544,4359,845,874,1274,1306,1363,867,608,378,714,1098,1286,1362,1536,1355,1776,2048,353,435,449,430,281,210,179,157,16,1360,2730,3150,4675,6363,8858,7107,4623,4250,3463,2592,1385,1253,902,627,564,772,1096,1792,962,2001,2856,3070,6949,6460,3868,2886,3123,2850,1960,1610,573,356,222,190,254,181,168,91,0,20,36,63,98,107,94,132,132,521,839,1343,1660,2032,2320,2344,1889,2173,1882,1554,1149,1117,980,800,997,816,728,727,972,1440,1544,1240,750,1377,1988,3016,4120,5140,5837,7471,7736,5408,5374,4309,9858,8968,8002,8144,3471,3632,3150,2706,3208,3026,2195,1370,880,789,848,726,622,1702,2228,2510,448,570,551,413,206,266,280,222,293,492,692,835,895,1071,1514,1866,1265,1654,1695,1456,1295,1757,2173,1815,2181,2287,1861,1600,1532,1614,1438,1303,109,134,188,178,241,298,373,363,243,358,447,908,1118,1219,1084,1280,1665,1968,1825,1946,937,1396,1419,918,298,334,338,328,224,206,162,103,199,1185,1969,2614,2547,4949,6640,7356,9900,8280,8690,6545,5800,5210,3470,2774,6764,7078,8842,11095,11822,12885,18176,17712,20951,22455,18202,12137,12574,15892,14380,10430,11241 +137,122,102,118,106,92,66,82,50,55,60,37,32,32,24,18,7,64,117,234,290,386,549,613,4052,3418,3165,2438,2535,3140,3470,5700,1100,1404,2090,1988,1836,1662,926,596,816,1755,2348,2156,2001,3108,3969,3618,626,613,687,592,388,350,302,184,28,1206,2311,3796,4358,5977,9148,8088,4572,4002,2557,2362,1418,1101,1076,738,592,969,1055,1719,1898,2730,2764,3667,7688,4891,4881,2898,2474,2305,2169,1502,430,341,195,190,282,236,192,98,0,28,44,73,131,133,136,157,181,534,858,1460,1868,1866,2533,2614,1576,1930,1677,1374,1075,1044,1199,1196,898,825,869,854,1081,1295,1483,1466,618,1215,2110,2545,3451,4632,4738,6583,5623,5966,6132,5126,8770,6953,6426,6054,2252,2910,4502,3726,5030,3563,2626,2375,1322,1052,1146,1194,1130,2103,2105,3255,865,912,677,588,355,352,386,324,398,613,707,843,1016,1224,1471,2137,806,944,1252,978,1129,1243,1311,1240,1865,1325,1245,1122,1162,1114,1218,1090,140,277,253,253,339,458,488,672,302,354,461,776,1045,1017,1059,1066,2471,1776,1704,1537,1196,1453,1308,1140,568,524,404,326,297,263,282,158,300,965,1505,2090,2880,3868,4595,7361,9202,9294,7355,6620,5037,4436,2582,2603,4365,5109,5487,8296,11162,13536,12892,15124,15304,13139,12276,11746,8754,11565,11142,11852,11322 +89,63,64,93,105,115,126,97,72,69,56,40,34,34,22,15,5,115,188,265,394,472,547,716,4579,5183,5332,4450,3872,4584,6147,7278,1736,1893,1955,2612,2462,2001,2065,1201,1166,2290,2754,2699,3333,3158,3666,3498,1004,1044,775,589,658,483,454,310,49,906,1557,3134,5046,5618,5955,6864,4232,3213,3481,3241,1972,1933,1476,1222,851,1336,1988,1856,2502,3159,3190,3693,6836,6688,5780,4191,2598,2712,2242,1547,387,446,468,361,380,320,240,126,0,34,55,96,135,176,169,170,177,677,1196,1288,1623,2057,2459,1922,1727,1834,1817,1478,1078,932,1026,1392,927,1194,1253,1054,1190,1451,1488,1240,431,1444,2053,2588,3052,3540,4663,5972,5857,7456,7198,7528,5723,5150,5267,7336,1935,3103,3457,3828,5427,4620,2514,2628,1324,1402,1691,1811,1858,2139,2473,2305,1041,845,757,561,576,552,348,353,371,498,789,1009,1184,1271,1269,1706,434,346,412,610,647,704,807,804,970,945,858,938,942,716,655,737,235,279,434,389,397,405,515,838,503,638,567,785,1040,1178,1165,894,3066,2135,1882,1884,1342,908,863,1040,881,776,415,499,474,408,276,154,356,616,1010,1716,2330,4297,5397,7539,10415,7304,5739,4500,3122,2055,1986,1599,3387,5248,6168,7271,7519,5825,7003,8371,10092,8474,5224,6792,7262,9136,10153,9311,12996 +120,108,102,128,100,114,101,116,63,62,63,44,43,28,22,16,6,358,706,910,784,1327,1748,2201,6661,6400,7620,4800,4529,5704,6588,9919,4180,3632,2999,2766,3068,2034,2080,1674,1312,2140,2280,4447,4479,4336,5032,7739,3229,2168,1675,1858,1610,1379,1210,702,80,636,1134,2090,3440,4009,3394,3935,3594,2824,3330,2698,2043,2164,1764,1680,1348,2068,1952,1914,3175,3453,3136,4475,6976,5820,5466,3096,2182,1862,1642,1326,624,669,643,370,550,462,294,124,0,42,88,140,170,210,214,266,259,763,1176,1360,1242,1599,2232,1856,957,1288,1093,1212,723,766,896,1101,757,1092,1003,912,999,1042,1217,986,754,1612,1640,2518,3894,4688,5274,7768,6126,6792,6769,6626,6548,5660,4780,8511,4069,4786,3172,4812,8077,8002,5240,3514,1647,2046,1787,1746,1596,2175,2125,1940,1027,832,937,728,484,440,474,382,470,670,917,1086,1388,1304,1459,2074,430,339,474,556,539,504,632,542,738,672,904,758,1133,990,561,766,222,266,440,428,420,462,633,778,630,757,843,1104,766,1007,1031,891,2834,2498,1654,1411,1468,1170,968,1182,1134,1006,682,620,606,552,411,212,543,784,972,1522,2008,4031,4405,6476,8992,7051,5327,3737,2803,1996,1616,1284,2280,3718,4880,5331,6189,5136,5063,7646,6936,5129,5296,5188,5772,5845,7690,6890,9891 +151,140,150,153,92,103,106,118,59,55,53,38,38,28,22,13,5,507,1128,1302,1542,1911,2916,3356,8389,7295,8304,4645,4797,5848,7377,10382,5665,4901,3717,3313,2923,1906,1696,1769,1218,1640,2405,4241,5434,5506,7460,9686,5343,3404,3057,3298,3332,2420,2265,1064,125,511,1046,1937,1815,1934,1922,1654,1925,2183,2602,1996,1597,1800,2660,2832,2483,2133,2715,2532,3680,3732,3546,3982,6790,5715,3939,2302,2202,2080,1352,1288,917,656,664,515,821,516,324,160,0,58,121,160,185,256,314,433,314,585,1134,1125,876,1331,1356,1248,644,702,736,830,640,578,530,803,844,900,1020,988,1022,1098,814,784,1230,1573,1832,2605,3574,4728,4556,9495,7466,7864,7831,6942,6798,5559,4969,7074,6507,5073,3862,5883,9942,7943,6890,4882,2187,2376,2018,1934,1738,1659,1520,1678,890,926,970,939,398,392,562,416,472,840,962,1163,1395,1391,1503,1966,286,392,388,386,271,302,290,252,331,449,727,726,1145,854,738,797,211,258,392,363,487,648,633,832,671,863,880,1217,843,621,664,463,2291,1842,1832,1801,1573,1777,1520,1048,1256,1007,942,659,943,798,412,195,737,843,1074,1442,2104,3193,3694,5376,8740,6910,3990,2344,1900,1248,764,795,2188,3606,4142,4471,4130,4614,4009,5240,3612,3973,3620,4933,2713,3594,3888,3306,3951 +155,146,155,146,83,88,101,104,78,72,54,36,41,27,20,14,6,598,1552,2654,3290,5094,5386,5354,8020,7366,9991,5714,4165,6857,8475,11971,5886,5682,5841,4076,3217,2486,1653,1698,2116,2740,2608,5224,6725,9528,10284,17216,5626,5647,4692,5113,4032,3354,2874,1432,189,428,621,946,768,1065,802,765,1220,1681,2024,1532,1466,2187,2696,2881,3498,3014,3291,2702,3878,3852,3903,4943,5932,4253,3435,2135,1912,1840,1476,1134,761,710,800,692,904,522,299,126,0,70,165,186,265,330,347,445,364,556,870,961,1024,1328,1159,1358,270,385,392,414,394,412,382,538,825,858,888,780,790,754,431,395,2012,1765,2003,2752,3512,4502,5196,9982,6928,6354,6284,6142,6924,5336,6147,7897,6714,7315,5590,7224,10742,8506,6187,3968,2494,2200,1826,1940,1469,1382,1403,1813,1234,1024,778,632,437,558,700,614,595,759,896,904,1254,1138,1284,1704,404,413,444,352,182,184,185,150,195,400,500,702,973,694,832,975,266,286,443,420,467,601,986,1094,1098,976,612,868,969,622,482,376,1982,1829,2288,2006,2029,2372,2350,1704,1684,1528,1426,1202,1126,774,568,336,898,1037,1253,1290,1532,2450,2172,3356,5129,3956,3140,1782,1101,776,514,398,975,1462,1791,1972,1890,2302,1891,2168,1951,2264,1954,1848,1621,1845,1953,1434,1593 +187,233,241,204,163,151,128,115,104,85,38,28,17,16,13,11,5,1747,3828,5816,7349,6215,5829,6994,8706,9705,8641,12651,18377,13699,10491,14075,7659,7202,5680,3655,2168,1711,1865,2157,2822,6478,9255,13613,14013,12303,15536,21901,6938,5926,3328,2682,2396,2086,1485,955,206,202,238,182,147,126,70,30,272,819,1506,1968,2828,2725,2414,2376,3492,3721,3899,4049,5470,4748,6396,7026,3964,4179,4307,4284,3059,1844,1386,1120,950,765,608,357,119,95,54,24,0,41,78,102,166,168,214,306,523,657,824,870,906,950,793,913,0,49,92,152,207,294,336,598,814,729,544,482,297,260,137,62,2289,2953,4119,3624,3696,4464,5090,7204,8375,6355,6383,5238,6442,8455,10960,8285,8823,9426,7720,6740,4950,3154,2527,3122,2954,2501,1838,1749,1874,2292,2431,2494,1310,1823,1741,1510,1325,1324,1181,846,820,850,674,969,1234,1136,960,1110,393,384,317,186,83,67,59,34,0,208,441,570,722,698,983,900,390,591,812,841,990,1073,1319,1283,1194,1177,894,551,399,273,234,104,1532,1521,1221,891,650,993,1052,1413,1790,1446,1467,1023,560,412,344,161,859,1072,1506,1740,1888,1828,1916,1796,2118,1698,2007,2136,1818,1202,783,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,148,194,214,138,140,130,139,126,100,51,46,26,20,19,12,5,1600,2865,4802,4835,4811,6572,5852,6016,7476,8462,11404,16429,14294,10761,13772,11965,9464,7356,5464,4612,4179,4632,2964,2828,6233,9136,11312,18148,23407,21589,34114,6571,8413,8046,8654,7403,6911,5887,4208,1068,1208,1152,1490,1657,1292,1318,731,235,1020,1399,1938,2564,2210,2138,2788,2905,2824,3316,3642,4419,4483,5324,5459,3154,3952,3125,2838,3580,2316,1346,1208,944,686,446,302,153,131,73,46,0,49,120,136,225,262,314,411,438,708,838,868,1011,1071,966,984,406,398,470,572,614,926,1631,1530,1656,1516,1195,960,747,658,434,433,3166,2893,3805,3494,3718,4260,5444,5690,5201,6188,6252,5451,5509,7529,9120,8767,9529,9092,6607,5382,5168,3858,1964,2686,1888,2429,2075,1768,2273,2698,2966,2994,1708,1430,1792,1857,1583,1403,1316,909,1144,1017,874,1044,1342,1162,1036,1206,310,327,341,209,106,92,92,61,51,224,421,454,678,732,773,750,353,694,901,1100,1080,1358,1314,1554,2001,1724,1428,970,878,582,534,304,1496,1740,1471,996,654,768,1202,1363,1697,1424,1442,1110,836,602,501,288,906,1147,1297,1350,1574,1636,1304,1918,1737,1652,2042,1729,1920,1293,494,279,0,199,456,592,640,568,650,570,440,542,662,795,1044,1228,1465,1630,2132 +93,125,119,119,162,130,122,145,122,82,75,54,27,24,18,11,4,1294,2460,3240,4542,4036,5297,5814,5524,6591,8724,11260,13614,16581,16058,15398,16723,13605,8055,6831,5967,5496,6076,5522,3183,7219,11650,14267,17651,22535,37376,42319,9190,11653,15017,13220,9956,11527,9562,7807,1713,1791,2199,2488,3484,3569,2545,1769,266,771,1081,1601,1751,1930,1492,1978,2240,2505,2038,2908,2652,2726,3527,3476,2462,3264,3224,3003,3017,1834,1500,902,1075,756,486,313,210,182,124,72,0,59,132,164,272,317,370,488,360,540,960,1198,1122,1304,1204,1234,690,809,842,1348,1072,1720,2592,3213,3242,3201,2129,2099,1192,1108,888,624,4074,3893,2468,2384,2708,3777,4180,5121,3373,4915,5198,4360,4391,6450,8804,10035,9226,6084,5118,4091,5073,3557,2298,2092,1576,2168,2060,2711,3048,2805,2764,2859,1685,1718,1476,1559,1566,1522,1100,1076,1346,1413,1092,1460,1211,1322,994,1334,266,271,296,264,101,122,105,74,93,210,392,350,443,375,424,444,243,556,1136,1269,1124,1735,1865,1749,2854,2570,2050,1379,1276,848,800,659,1747,1560,1367,1034,689,718,971,1078,2368,1662,1427,1152,930,917,728,377,1120,1247,1102,838,1362,1063,1160,1484,1793,1415,1429,1238,1483,1028,422,195,0,392,814,1104,1095,1408,1350,1279,736,1046,1124,1454,1945,2297,2628,2973,4699 +66,92,113,121,145,126,104,115,137,85,60,53,36,34,23,16,5,1008,2229,2758,3870,4050,3444,3853,3162,4904,6195,10134,14001,12607,17643,18002,14670,13584,8418,9736,9374,8488,6386,6676,5620,8963,14896,16184,19614,22642,32066,45810,13388,15773,16982,19110,17600,18557,17131,11179,2502,2746,3766,4455,6499,5845,4689,3635,255,648,929,1170,1386,1719,1291,1664,2001,1810,1513,2029,2083,2746,3761,3352,2447,2586,2513,1978,2232,1608,1662,1067,766,664,467,382,287,194,177,72,0,86,152,207,315,364,381,454,490,652,842,1006,1308,1199,1398,1525,1161,964,1000,1284,1381,2360,2439,3808,3200,3244,2472,2442,1418,1306,1331,1050,4030,3366,2414,2501,2741,3117,3202,4928,2492,3988,5254,4836,3859,6357,7198,10121,7708,8545,7373,6508,5982,4326,2383,2217,1870,2685,2515,3416,3439,2594,2260,2794,2264,1771,1491,1700,2011,1662,1304,1088,1636,1634,1209,1546,1380,1490,1464,1412,147,150,254,196,148,148,190,157,124,250,311,354,477,418,389,424,161,535,1060,1632,1468,1738,1766,1831,3569,3528,3185,2504,1576,1298,898,656,1229,1356,1326,1101,970,863,828,948,2233,1729,1249,1290,1662,1188,833,480,1072,985,967,694,940,800,628,724,1964,1984,1470,1316,894,658,270,158,0,552,1439,1581,2201,1944,2049,1458,986,1704,2261,2216,2684,3062,3142,4673,6439 +43,51,66,85,96,124,129,104,107,100,87,72,48,43,34,21,4,852,1457,2807,3412,2573,2501,2634,1721,6425,10047,13223,13784,13056,11617,21239,17471,19445,20871,14004,12494,9003,6284,6024,7234,11109,12474,16058,21432,30849,32756,48554,15649,17964,25386,28671,29025,26906,19939,12385,3212,3371,4296,5304,7834,7306,7025,6033,167,256,447,703,855,731,938,1360,1189,1896,2317,2631,2296,4078,4610,4260,1730,2054,2625,2873,2206,1958,1690,1444,665,464,370,409,321,294,184,86,0,49,118,203,320,279,369,505,470,748,955,1220,1195,1608,1679,1734,1312,1859,2260,2562,2161,2708,3903,4388,4377,3966,4100,3479,1922,1743,1727,1349,3572,2875,2677,2154,2084,3690,4213,6060,2822,2429,2851,4781,5160,5284,7499,9323,9208,6230,5317,5520,5327,4047,3424,2572,2254,3164,3336,3278,2940,2537,2258,2661,2500,2656,2945,2298,2356,1935,1855,1650,1434,1226,1249,1728,1748,1642,1511,1240,41,72,94,161,179,193,172,176,142,236,275,360,488,369,243,263,88,401,641,1355,1670,1646,2186,2186,3698,3143,4084,3713,2294,2474,1850,1116,1086,1257,1472,1087,1175,1063,732,647,1923,1977,1635,1625,1927,1516,1173,616,1050,1062,985,862,492,431,280,342,2344,2035,1687,1129,600,335,222,123,0,808,2005,1963,2863,2972,2641,2609,1407,1806,1973,2567,3336,4214,4764,6388,8390 +60,66,61,90,76,102,112,100,85,84,58,56,47,38,33,18,5,580,1193,1961,2424,2205,1624,1953,1268,5366,6268,8476,13278,13395,13806,22746,16453,17798,15995,13481,14240,11354,10460,8778,12771,13382,17470,18092,27214,27132,26790,35166,21758,21050,25070,32839,37866,33838,30032,21968,6362,6562,7514,8012,8264,10642,10158,6525,119,244,343,506,745,698,901,1440,817,1134,1744,1726,2019,2607,3582,2798,1164,1595,1570,1652,1594,1358,1258,853,393,297,341,284,213,198,104,62,0,71,121,226,291,338,425,457,527,674,930,977,1074,1223,1295,1392,1774,1913,2726,2644,3088,3314,4536,4396,4490,4297,4472,3476,2716,2425,1419,1512,3432,2325,2721,2154,1669,2808,3910,5296,4351,3190,3226,3597,4756,5980,5607,7736,8534,6765,4927,5228,5136,4596,4300,3326,2364,2892,2731,3066,2489,2134,2193,2244,1760,2228,2054,2108,2340,2319,1636,1852,1302,1166,1243,1500,1577,1252,1012,939,36,62,82,137,142,172,194,156,208,243,202,340,339,252,235,216,170,434,781,1245,2187,2341,2345,2092,3694,3935,4167,3182,2302,1814,1573,1384,1455,1679,1394,1408,1487,1192,1557,1346,2938,2488,2726,2528,2820,1986,1724,936,780,862,832,699,549,496,435,398,2293,1721,1339,884,433,356,175,115,0,950,2161,2486,3086,3294,2937,3236,3330,4378,5202,5984,7027,5439,5556,6581,8354 +72,75,66,79,70,72,90,84,45,44,52,54,40,38,24,15,3,325,795,1139,1848,1922,1549,1845,742,3092,4412,5715,10920,12887,15582,18943,10738,11819,14460,15045,13960,15275,13042,15439,14439,14000,20501,26242,25698,27998,33648,33805,36034,35617,23894,39879,54431,38474,35865,19332,7642,8546,10044,8174,11705,12590,10300,9556,62,175,326,438,513,654,664,928,604,871,904,889,1157,1920,2324,2361,767,864,1076,1377,1148,1040,686,532,223,240,222,194,108,77,70,38,0,86,144,272,189,309,379,316,541,715,808,1222,785,884,1314,1398,1928,2163,2344,2312,3303,4012,4252,4469,6089,5749,3724,3016,2938,1742,1381,1544,2443,1881,1930,1876,2024,3087,3884,5558,4765,4763,3684,3848,3421,5501,6028,7260,5993,5199,4456,4960,3612,4381,3817,3797,3625,3645,3446,2983,1673,1932,1650,1971,1326,1568,1835,2471,2294,1875,2204,1591,1472,1440,1262,1324,1343,1149,759,783,22,40,72,154,142,152,154,173,237,242,204,326,254,224,250,226,306,461,741,1190,2317,2517,2005,1880,4396,3870,3034,2461,2382,1832,2042,1823,1732,1428,1762,2068,1914,1896,2150,2617,3177,2607,2950,3341,3194,2932,2290,1680,840,888,740,715,499,540,518,382,1798,1869,1320,833,368,231,170,88,0,1200,2146,3197,3058,3292,4406,4552,6579,8243,7632,8868,11471,7807,6016,7640,7385 +82,68,60,72,56,62,72,64,38,46,44,41,36,26,20,12,2,192,400,578,861,926,645,856,357,2026,3638,5497,7006,8018,14228,19450,11287,14782,16138,15640,13577,13504,12964,14385,17274,20602,23814,27126,20476,29628,37949,41728,35020,32875,32029,40682,61726,46436,41962,26824,14561,11890,8380,11862,11868,11331,8044,6861,27,88,180,236,289,290,306,396,320,332,386,412,502,866,1150,1152,461,474,618,684,615,446,280,262,98,128,119,96,57,46,38,23,0,82,166,213,215,280,296,336,498,632,711,974,864,892,1199,1275,1728,2430,2773,2718,3282,3252,3931,4214,4197,4579,4307,3170,2680,1710,1633,1652,2486,2152,1634,2126,2682,3099,3171,4387,4788,4430,4078,3434,2223,3020,3751,4998,5284,4654,5660,5486,3527,3438,4122,3832,3802,3963,3901,2547,1597,1552,1419,1676,1726,1500,1341,1803,2000,2282,2284,1940,1630,1518,1592,1086,978,828,510,462,11,41,96,142,198,191,191,204,189,189,242,230,216,218,261,216,337,508,806,1170,2151,2107,2697,2502,3834,3146,2805,2482,2250,1804,2249,1558,1514,2081,2454,2198,2172,1888,1858,2333,2948,3320,3412,3197,3577,2718,1887,1638,863,758,616,698,565,662,616,446,1178,1203,723,487,356,263,178,84,0,1347,2859,4158,4975,5664,4760,6654,7957,9852,9294,9638,15084,12824,8001,8792,8468 +64,2122,4177,5746,6026,6539,9546,10042,8374,11374,15283,14883,18564,15097,17178,18928,15405,12864,14754,12678,8076,5086,3263,1726,0,2545,5672,9741,11801,15814,17196,19674,15750,11460,5709,4930,2767,2118,1318,739,0,3455,8092,10282,15128,15677,15704,30115,36363,40917,33575,21326,15700,14476,8500,4772,0,574,1343,2504,3022,2804,3933,5977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,137,148,204,239,304,410,522,535,450,415,439,381,368,392,487,450,288,173,85,69,57,24,0,417,802,936,1199,1046,1046,1299,2692,2444,2053,1474,1132,1347,1599,1699,1990,1774,1973,1438,1427,1192,658,379,0,118,280,371,452,516,458,475,540,688,677,583,715,829,923,1241,1629,1159,1060,943,792,845,717,566,326,403,647,774,917,983,1305,1400,1125,1140,1159,1004,811,790,645,433,406,338,171,163,151,169,200,217,406,577,612,464,502,508,459,404,275,293,273,258,181,348,442,618,799,1120,1101,1153,1411,1276,1252,1204,868,1100,1106,1088,1439,1719,1474,1316,822,1330,1913,3203,4694,3560,3180,3872,5517,5380,5022,8037,10889,17820,18835,17311,17114,16494,11589,13362,12851,11574,14544,12831,9098,10344,8921,7380,4179,6946,10286,12024,12155 +64,1810,3392,4875,5031,5951,7883,8948,8529,12400,15981,12696,12954,11986,16481,12903,14035,12805,11621,8706,5318,4770,3577,1976,235,2242,6157,7142,10551,12606,15695,14321,17470,12638,5142,4940,2746,2631,2678,2737,1959,5862,10708,13844,18966,20629,25139,28784,44892,34770,23458,18882,14269,11911,7703,3888,412,1070,1828,2243,3484,3212,3963,4891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,199,323,377,472,711,870,600,638,692,650,440,612,504,604,460,462,455,352,209,261,354,279,346,1135,1929,1972,2086,2252,2198,3040,3186,2752,2491,2112,1687,1688,2042,1931,1700,2232,1626,1909,1308,1008,529,324,0,98,230,277,372,458,489,478,469,528,514,568,852,910,882,980,1404,1110,1002,813,615,742,596,462,294,512,700,941,921,1137,1194,1228,1084,1192,1121,906,643,512,456,406,509,406,254,232,157,150,172,170,327,668,687,748,1054,1484,1667,2380,2686,1792,1184,1079,1094,988,870,1188,2338,3250,3802,5681,6868,7087,5912,6746,4492,5099,3865,4418,4680,4594,4002,3294,1102,1718,2553,4394,4565,4040,3721,4343,4565,4497,4682,7884,10848,14768,12706,15922,23733,19858,19355,13278,10920,11054,8655,9633,8850,9620,9237,9058,5925,10266,12020,11440,11766 +56,800,1864,2582,4223,3982,5176,5060,6654,10766,11606,11158,12811,12120,11794,14475,13148,9842,10708,7970,5104,4404,3090,1803,452,2903,4695,5242,7608,9486,10846,11209,14729,9024,6094,5852,3269,3801,4642,5266,3418,8196,12938,19001,18356,21720,29334,40980,38520,25448,24490,18993,19502,16168,9558,4933,970,1238,1791,3220,2884,3029,4114,6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,271,507,469,709,1023,1367,677,919,916,1050,646,701,816,1040,654,559,524,575,368,592,648,530,677,1925,2930,2696,3116,3006,3128,4003,3327,2792,3094,2278,1990,2120,2496,2262,1971,1838,2008,1700,1514,1048,611,357,0,64,120,205,318,391,430,418,373,372,528,804,719,1027,994,948,1727,1203,1024,1143,686,581,483,446,170,480,647,759,1112,1183,1001,980,1005,812,929,736,600,418,380,355,472,449,366,335,197,160,124,108,407,764,876,1066,1741,2757,2890,3309,4429,3451,2204,2187,1799,1507,1434,2027,3626,5140,7519,10159,12513,13065,12598,13002,8456,8588,7421,7847,6384,8010,7161,5654,1295,2339,2754,3927,4395,4556,3842,4777,3734,3998,4122,6132,10536,11200,11985,14089,28398,26046,21118,14310,13419,8410,6984,5086,9465,10736,9790,7702,8792,9272,13754,11366,11305 +39,570,1298,1606,3298,2990,2554,3020,6821,8020,7818,9562,10534,9834,7522,9947,14030,11128,11103,9144,6296,6675,5470,2872,584,2540,4047,6114,5990,7692,7625,7535,9152,6553,4119,5376,4628,7266,9283,12134,5639,12829,15246,24704,24541,25153,30253,40327,43382,40833,30003,21678,16554,14686,7338,3806,1315,1316,1666,2510,3274,3608,4016,7682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,273,583,504,1009,1294,1584,480,696,779,1076,1260,1114,1308,1765,907,724,768,748,672,750,820,842,797,1914,2930,3194,3956,3647,3262,4934,4160,3905,3835,2965,2342,3146,3330,2985,1258,1502,2127,1978,1681,1176,684,384,0,55,78,124,218,304,367,340,403,529,714,822,762,914,812,1030,1770,1514,1350,1122,780,624,498,404,131,337,522,708,831,810,700,866,946,875,826,538,416,424,413,260,451,408,326,246,202,146,147,112,291,807,1046,1649,1818,3288,3731,4710,5767,4133,3658,2878,2180,2164,2455,3602,5999,7269,8816,12374,15680,17380,19617,18526,18002,13128,12205,10190,10366,11988,12038,9407,1035,2256,2746,4340,5202,5324,6262,5820,2853,3702,4783,5751,7104,8743,8544,11996,28947,28290,20009,16376,12215,8628,6251,5067,6547,7374,8761,7276,9165,15010,15250,18838,20150 +36,317,736,874,1398,1793,1794,1278,7597,5332,5206,7421,8712,8451,6700,6606,21187,17039,13466,11055,8532,6642,5468,3618,651,2253,4217,5336,5506,5219,3567,3126,6972,6260,8074,7437,5288,8178,9269,10994,9254,20566,25252,27424,35173,53516,57308,57967,57543,44551,41989,29646,14874,13005,7239,3708,1468,1751,1984,2586,3072,4011,6130,10286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,244,608,786,1431,1667,1707,500,761,798,1032,1488,1682,1529,2146,1104,1454,1350,1389,1088,946,1132,942,1030,2551,3748,3835,4530,4523,5282,5970,4710,3386,2909,2623,2880,3088,2446,2136,1153,1260,1124,1027,1394,977,864,388,0,22,45,82,96,99,136,281,456,581,655,793,707,1000,994,1176,2516,2361,2113,1475,1020,904,546,356,123,246,432,593,690,486,415,400,810,786,670,451,403,402,353,272,400,343,247,243,184,146,112,125,191,807,1162,1587,2456,3058,4128,7288,6120,5471,3973,3391,2736,4836,6150,5241,10262,9266,12004,16483,18367,19797,17951,19353,21921,23364,23178,19523,11770,12054,13096,12759,1174,1918,3381,5414,5882,6226,6843,7508,1737,3222,3953,3951,4538,5719,8580,11456,37820,38257,31328,18337,10954,11412,8583,5815,4784,5136,4791,5993,8940,12999,18832,19322,22809 +26,402,896,1312,1067,1352,1532,1522,4803,4680,3399,5278,8318,7058,5539,5990,19118,18138,17502,12224,12320,7336,5054,3530,1432,2876,4429,4554,4340,4787,3809,4973,5967,6196,6491,8364,10149,10546,10877,16180,9228,14246,18254,26426,37077,44815,38335,41908,51628,42332,36629,25024,14230,12108,10126,5404,1560,1562,1526,2218,2667,4660,5851,11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,355,828,974,1340,1908,1890,753,1172,1277,1499,1356,1886,1785,2803,948,1342,1648,1528,998,1078,1510,1399,1395,3118,3854,3956,5331,5126,5304,5652,4567,3170,2413,2893,2436,2458,2581,1759,966,1144,1154,1260,1410,954,787,510,0,20,32,72,78,96,119,185,351,438,478,592,536,504,751,711,1710,1698,1920,1494,969,648,397,238,122,223,352,440,728,945,775,822,514,517,477,401,340,355,232,169,390,272,254,223,160,148,105,112,178,626,851,1426,2447,4092,4778,8362,8534,9474,8416,6496,7355,9672,9067,11152,10949,13652,13020,17194,26033,24068,22706,20386,21659,24021,25803,17271,10455,10774,12688,11328,2137,3235,3348,4865,4078,4532,6295,5286,1734,2753,3627,3464,4261,5173,7966,9124,55060,43104,33557,32636,19850,20523,15472,11424,7608,7466,10484,10620,11336,14827,15538,17403,19377 +23,486,980,1665,1094,1060,1506,1861,4256,3406,3267,3267,6334,6570,5847,5571,22172,18111,16530,15771,13868,11396,6996,4182,2803,4081,4145,4001,5324,5886,5686,7479,4375,6304,6324,8078,11803,13737,15884,18276,13616,16980,19064,27970,32145,31680,28794,31236,56852,37762,32238,20303,17016,16695,11055,6092,1282,1520,1452,2759,2899,6353,8352,10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,488,734,1210,1395,1752,2068,991,1542,1954,1576,1373,1832,2482,3213,1256,1319,1426,1452,856,1153,1472,1527,1361,3434,4678,5056,5902,6260,5482,6122,4642,3552,2602,2524,3085,2148,1932,1810,1144,1446,1436,1204,1012,1082,834,668,0,16,30,46,49,66,76,122,152,258,291,260,218,313,324,445,1658,1686,1548,1135,831,675,296,165,87,206,318,501,744,946,1193,1209,373,380,452,391,227,187,162,140,316,312,223,141,113,124,130,143,124,508,880,1093,2637,5054,6782,6577,8275,10036,12422,9994,10593,11959,13898,18370,12756,14961,16416,18145,35884,30315,24888,19172,27372,23362,22329,19256,13599,15195,13139,12855,3797,4032,3798,4915,4122,3852,3668,4484,1226,1512,2360,3252,4351,4755,6976,8237,55950,54194,43920,44106,34660,25213,19467,17953,13140,11592,13304,10246,18846,18801,15092,12743,13920 +12,461,1049,1636,1552,1449,1468,1647,3427,2828,2180,2356,3273,3827,3956,4838,26952,25816,25586,21216,14278,11702,9629,5511,2695,2998,3651,3391,3261,4198,4624,6176,3121,5490,6760,9798,10438,14736,18776,20006,15762,17574,19457,24026,45345,37302,25546,36322,54154,36607,23605,23263,15271,13544,9571,6265,1736,1521,1717,2696,2808,5845,7410,10753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,469,758,1138,1763,2275,1963,1353,1840,2307,1726,2143,2418,2977,3500,1426,1530,1458,1389,1288,1568,1896,2232,2112,3738,5137,5851,7947,7440,5591,6124,3166,2570,1978,2195,2022,1901,1747,1420,908,1016,1318,1194,900,1066,676,636,0,9,17,22,29,34,36,54,94,116,144,150,125,152,135,198,1826,1494,1162,1165,863,640,353,195,51,191,247,347,511,793,1111,1622,255,232,242,217,202,176,123,118,196,203,182,141,135,128,104,112,177,594,964,1546,2234,3668,4997,7720,11562,13416,12304,14278,13164,18544,19204,19319,16747,23735,24505,27624,31879,33743,32852,24237,24362,19192,18613,16184,13749,10588,11322,11435,4876,4589,3049,3316,3021,2980,3064,2962,1526,1710,2473,2689,3874,3988,3824,4351,40714,59503,64262,57186,41356,38374,30441,21167,15883,15314,16130,15258,18065,18754,22562,18780,17009 +0,61,149,217,323,847,1519,1651,2152,3187,4715,6017,5432,5664,6529,6119,28265,25154,31076,24890,17569,16738,12501,8883,3866,4114,4620,4527,3048,4350,6273,6260,2652,4703,6006,9528,12794,16956,16796,20480,25025,35652,47832,49170,51062,49419,48260,45092,44163,45256,49298,48770,39238,24573,12631,8681,1838,2086,2752,4428,5433,6154,5073,6977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,407,622,996,1485,2036,2166,1938,3592,4085,5131,5186,6098,5893,4247,2170,1373,1128,927,843,896,1367,2413,3160,3748,4876,4713,5966,7959,7532,6971,2944,3491,3408,2572,2396,1585,1171,847,520,576,530,488,493,598,547,568,0,2,3,5,4,5,4,5,4,6,6,6,4,5,3,2,1576,1400,1138,1276,1136,898,709,375,0,135,328,632,792,1237,1586,1632,75,100,165,167,188,159,141,148,169,158,101,93,121,113,150,110,183,1080,2056,3393,6331,7706,9113,12819,12705,15149,12684,15109,14628,14974,20148,17477,20786,15352,10929,9051,9144,16105,18829,17325,23898,29645,38444,33172,31470,24776,23064,17760,7082,9344,8678,7986,5725,4054,2941,2665,2191,2044,1668,1565,1690,1194,1247,1294,42891,40277,52577,42393,48325,37762,33690,21181,15662,14220,17488,16676,14286,21018,21533,16581,16998 +0,202,378,531,534,1129,1417,2010,3028,3882,4318,5720,5615,5920,5278,5373,31591,23290,29055,22547,16219,15696,9492,8176,2958,3086,4146,3226,2575,4003,5292,6191,2086,3612,4489,8360,11128,11330,11749,15599,18905,28156,30678,38304,40543,38414,41471,35369,43382,45582,47578,44864,28833,19985,13072,8269,2434,3039,3618,5496,5995,5798,5544,9270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,464,752,715,1323,1996,1670,2526,3449,4154,5010,4966,5521,4818,4188,2818,2757,2637,1704,1929,1954,2126,2902,2966,4000,6030,6644,7744,9396,8967,7074,2000,2670,2494,2024,1664,1794,1004,1035,391,504,622,516,656,556,453,504,144,149,148,139,161,104,50,40,8,44,61,85,110,144,279,296,975,852,768,871,758,630,453,280,0,154,263,550,628,1072,1132,1244,244,232,232,243,218,196,183,188,162,142,111,108,119,130,142,120,182,1684,3809,6123,7621,8286,9709,15062,11398,13413,13903,18466,19384,23536,23198,21412,19896,16650,9457,10290,7976,13550,18937,20601,37866,33836,36651,29346,41094,34996,27645,19066,7729,8630,8359,6776,6177,5270,3208,2952,1700,1916,2254,2594,4006,2997,2917,4402,56444,49884,45324,40874,43050,34959,32966,20486,11248,12927,16958,14206,14238,15069,15699,14485,15149 +0,342,590,915,873,1083,1814,2478,2965,4477,4528,6074,5050,6332,5794,5880,25983,21790,20532,14492,12989,12275,10120,7681,1960,1994,2816,2558,3241,4006,3473,4358,1662,3272,4072,5074,6042,7466,9992,10670,13593,19614,24048,33180,26556,28196,22838,21502,42756,45127,35826,23577,20804,17415,10949,6795,2278,3396,4372,7902,8639,8124,8002,8520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,436,635,751,932,1430,1258,2416,3134,4830,4581,6073,5924,4442,3281,4575,4440,4244,2654,3286,3841,3123,3718,3290,4046,6785,5359,11395,9268,8100,6089,1326,2008,2051,1662,1745,1301,1153,930,307,582,770,806,990,681,501,380,243,240,334,279,308,170,96,46,11,73,136,172,261,376,475,609,702,696,592,692,669,555,362,211,0,108,214,563,743,1004,954,1225,346,247,245,266,272,271,181,198,105,120,101,121,77,125,136,119,220,2419,4802,6277,8060,9181,14109,17060,6540,11964,15604,16119,22462,23910,23382,19742,17288,13014,11438,11311,9381,9674,12773,16959,45008,40926,34047,38300,47846,35556,23064,16570,8040,8088,5960,4464,8662,7516,4335,2509,1425,1700,2376,3562,5810,4344,4484,6859,56168,60824,55168,51818,45538,29594,27386,24867,8892,12118,14878,13386,9875,10709,12278,15355,14589 +0,367,708,1240,1309,1566,2583,2996,4725,5490,4597,6426,6532,7318,6710,6829,15638,15868,14983,14903,13160,11689,9103,7916,1184,1686,2129,2396,2476,3255,3388,3758,1238,2148,2722,3729,3475,5680,6407,6132,11063,15465,14912,20586,21084,21380,20159,25248,38798,32167,26895,19976,20620,15654,8512,6158,1839,3258,3536,5988,9742,8732,6224,8785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,266,428,484,751,897,1072,2505,3188,4897,4782,5819,5553,4111,4242,4500,4470,6027,4422,3816,4475,4293,5190,4204,6384,6979,6554,10067,9607,9884,8286,1113,1317,1556,1196,1147,916,837,903,352,592,925,942,1277,789,547,466,466,548,569,453,402,272,139,72,12,106,214,308,334,538,674,974,714,565,599,564,478,490,381,182,0,111,206,507,500,570,640,1004,451,381,260,322,272,233,158,169,89,106,92,105,67,96,123,114,382,2964,5030,7746,9942,10471,11670,13415,5390,10520,14721,17054,22725,21138,22460,22112,13322,10860,9044,8875,7183,12584,13659,16196,47806,52578,39739,38540,39581,34374,22720,14492,7485,7460,7405,6324,6571,6500,5022,2728,1071,1992,2532,5224,8208,8750,8008,10676,57376,54661,40837,40405,36386,29150,23577,19384,5912,9458,9261,10254,8718,8370,7748,10582,11776 +0,516,986,1828,2394,2186,2566,3577,5586,7429,7365,7186,7556,8607,8875,9046,9780,9356,8899,9058,8956,10363,9316,8601,866,1361,1526,1886,2214,2476,2163,2547,519,758,1031,1102,1386,1690,1830,1945,8780,9000,13119,11592,11984,18374,23395,29335,31998,22589,22844,22942,15916,9482,6964,5009,2270,4204,5294,6051,7777,8291,6041,8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,180,203,268,397,685,778,2651,3349,4142,5137,4776,3985,3397,3114,4368,4100,2851,4076,4408,3710,4476,5727,4567,4576,4630,8449,10312,11427,11276,8242,1416,939,631,531,387,620,928,1081,398,537,680,1217,1368,941,970,736,782,748,721,646,435,321,318,201,14,102,226,456,559,809,1073,1028,644,668,613,486,406,314,130,70,0,54,121,210,383,520,571,553,545,411,284,255,303,234,157,124,113,87,58,50,56,83,122,108,544,3732,5736,7716,9010,10172,9540,12669,2816,4837,8282,14851,20865,15684,17416,22241,6647,8874,9379,7618,7831,11013,13380,17439,50075,53587,41138,40512,40436,34412,30384,15510,10178,9807,6450,7708,6956,5712,3378,2002,1173,3161,4385,8287,10204,8990,8715,11139,43315,49084,40099,36606,23762,27700,23997,15307,3358,5955,6750,6854,9050,7245,6263,4994,6207 +0,844,1917,2714,3397,4901,3915,4664,6727,8664,8684,9489,9326,7966,9090,8376,8663,9472,11106,9912,8815,7569,7308,6402,1095,1470,1442,1745,1634,1920,2436,2560,491,690,950,1064,1367,1393,1592,1974,6157,6330,11878,11784,10831,16199,13890,20755,17902,20996,21490,16742,11918,7351,5674,4004,2312,2694,3429,5046,8647,7722,5668,7054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,332,414,476,596,921,994,2257,3036,2970,3967,3757,3754,2840,3087,3064,3170,3455,3378,4821,5264,4437,5894,3612,4736,5732,7964,10182,10497,10778,7232,1216,911,671,464,574,660,778,871,336,628,737,1240,1285,1098,972,822,1169,796,934,673,666,422,316,235,34,168,310,426,722,966,978,1190,498,492,452,390,231,180,94,58,0,62,110,240,327,453,521,715,756,622,434,374,371,286,150,106,109,73,54,45,44,69,86,90,542,2839,4848,7796,8905,13224,11247,14502,6294,7211,7609,11340,22600,25248,16334,19678,7728,9662,11357,9788,9795,14639,13932,21360,56636,48900,42656,37004,36711,32229,29082,15488,12766,10371,5154,6729,7841,5054,3334,1998,1055,2930,4213,5894,8817,10200,11587,16728,42656,37926,32311,28581,18378,20814,17478,12766,2310,5122,6854,7998,13375,10014,12038,8979,8037 +0,1240,2456,3583,5179,5087,6452,8648,8341,10525,10371,9180,8619,9539,10650,7958,8672,10376,10798,9348,5795,5275,5198,4252,1662,1936,1668,1684,1323,1498,1943,2040,590,673,728,758,927,1122,1214,1477,4438,6741,7360,8235,8923,10187,10785,13644,11628,10984,13732,11206,7509,6097,4062,2748,1690,2082,3234,4948,6925,5985,5504,4555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,550,639,591,861,1057,1337,1598,2463,3264,3671,4477,4102,3166,2768,3077,3774,3258,3183,4690,5985,5962,7048,4112,6391,6566,7839,10228,10433,8034,5928,829,770,487,588,649,630,655,774,386,734,1031,1818,1499,1571,1194,1059,1287,1134,933,620,681,603,406,205,50,194,315,410,831,1195,1337,1310,239,267,290,249,142,116,73,39,0,80,140,276,255,485,616,730,979,610,542,476,365,339,202,122,74,58,56,38,27,42,72,71,455,2639,5734,7574,9901,10248,15402,13314,9841,10345,8787,9938,30115,28426,21360,15450,9096,10504,15728,13077,16127,15092,17696,36387,45295,39101,45058,48145,25631,28305,24640,20552,11663,7427,6270,6376,7991,4642,3112,1723,798,3012,5126,7434,11465,14548,13058,15459,29901,29619,29030,22886,17024,11926,12482,7412,1099,3680,6631,10634,15148,15071,13943,14818,11231 +0,1538,2914,4981,6126,5855,5507,6242,10327,9622,10420,9227,11530,9356,10076,9336,8834,10431,10429,8786,5086,4836,5497,4564,2246,2091,1616,1332,1135,1198,1210,1395,545,526,512,566,572,602,799,702,2185,3537,3628,4259,6262,6534,5526,7088,7410,6582,8277,7522,4000,3704,2102,1578,1449,1747,1999,3106,3783,3935,3877,3682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,654,938,1012,1228,1635,1566,1889,2392,3318,3616,4646,3636,3442,2547,3331,3694,4513,4210,5071,5572,4248,5508,4000,6040,7500,7360,9751,8172,7315,4967,463,447,371,499,687,781,885,734,623,1034,1214,1636,2015,1742,1242,1348,1537,1162,978,770,579,556,481,252,97,313,438,600,1062,1338,1706,1524,132,150,136,127,69,50,43,21,0,84,154,272,279,460,585,908,939,792,594,454,398,318,240,133,34,40,42,30,23,37,51,56,486,2980,7315,9201,8589,11728,14182,14859,14062,13501,16973,16138,22532,24738,17976,15341,13945,14532,20550,18697,20622,21954,27641,35965,44310,38424,33619,35872,27620,23826,16722,17278,15176,10106,9466,6930,6904,5036,3892,2247,341,3048,4892,8814,13590,11874,11650,15774,29386,21262,15599,14008,10628,7426,8236,4285,620,3236,5764,11044,12740,13232,12854,16296,14335 +0,468,999,1868,2578,2143,2293,2915,4660,7928,8741,11344,13663,15867,12806,10018,10531,10892,8566,10096,9769,8116,10470,9173,10777,11720,8806,8543,5996,4591,3452,2034,501,475,588,439,360,324,210,88,0,288,716,801,1106,997,956,1613,1822,1166,1034,966,906,860,598,279,0,226,461,650,842,1780,2673,3695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,48,58,89,148,235,304,366,384,338,384,526,1369,1976,2646,3314,2734,2040,1655,872,631,341,296,204,732,1080,2192,2895,2842,3666,3823,0,140,257,374,483,758,892,1088,969,1637,2122,2213,2331,2234,2052,1762,1642,1562,1503,942,596,520,619,612,520,914,1675,1735,2003,1770,1540,1943,0,25,48,74,129,127,182,279,330,260,305,398,400,516,476,609,912,878,723,601,364,308,360,367,388,406,331,288,334,278,131,88,439,1546,2604,3490,5250,9808,12174,11716,12576,16431,16593,19541,19474,19368,26251,24939,18542,19063,20530,20572,25825,15898,13754,15384,16089,14221,19004,27148,27550,24308,21249,20266,15418,15511,15760,11520,8116,6113,5273,3200,2146,3227,4292,5335,8135,8328,10245,16597,22922,21114,19434,19244,15365,22723,22793,24134,27271,28242,27864,27153,32829,36453,33839,22524,17356 +0,433,970,1652,1833,2580,3002,4720,3598,5248,5997,11928,10118,12168,8002,7777,9475,8346,10792,10632,13154,11502,10463,11089,9728,9912,7773,7313,4900,3776,3695,2260,506,441,496,403,285,293,256,154,90,314,826,838,990,852,1180,1511,1669,1447,1111,894,716,728,520,206,0,220,372,586,809,1612,2320,2834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,58,77,67,142,251,323,311,387,511,500,764,1480,1783,3002,4557,3604,2700,2133,1324,796,380,278,168,720,1272,2274,2732,2380,2813,3841,0,108,225,266,468,674,630,804,723,1234,2038,1713,2150,1904,1569,1721,1698,1392,1411,970,687,498,511,616,433,806,1334,1652,1618,1530,1524,1793,0,26,52,84,144,114,163,230,264,239,295,448,595,667,694,686,676,742,646,555,322,350,334,358,215,276,268,276,270,212,135,85,433,1654,2368,4219,6954,11344,10137,12030,8984,13254,17558,17396,15242,13368,17463,18894,15471,20308,25646,26528,20004,18282,12790,14377,14093,15202,20722,25202,25276,20802,20762,17444,20034,16822,16212,12150,9911,8750,6295,4188,3436,4270,5344,6212,7590,6480,8469,14208,29642,27650,23834,17631,12190,19384,24826,23089,25321,24898,28094,27378,38760,37080,29903,22636,12704 +0,568,1001,1413,1711,3132,4352,5830,1960,3431,4352,8545,11532,9431,7015,6064,6511,7732,10294,10283,12337,11727,10012,7743,11867,10904,8412,5786,3649,3386,2855,2308,558,436,386,496,282,247,230,185,210,518,740,703,708,700,1018,1200,1880,1930,1544,1238,728,582,446,186,0,202,436,645,789,1558,1868,1773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,53,70,62,186,334,428,352,446,544,534,1110,1808,2053,2505,5013,3896,3324,2599,1404,1111,483,251,150,990,1564,1778,2704,2380,2162,3300,0,87,172,171,393,400,528,556,593,786,1282,1416,1709,2044,1756,1396,1283,1079,945,718,552,474,433,370,258,609,1060,1391,1518,1353,1604,1221,0,31,51,77,117,138,149,235,144,251,324,499,592,529,700,981,743,640,622,477,397,373,396,425,145,187,188,273,303,208,118,85,343,1660,2980,4667,7610,11473,12378,12862,6807,10853,13162,16921,8972,11539,10836,9082,19849,24763,24160,29262,22140,16333,15822,10940,9379,14896,15966,14746,21454,17444,13612,12982,23958,22148,19886,14204,13326,10668,5654,3942,4129,4631,4664,5990,4884,5570,5997,9271,28234,29004,26480,20418,13854,18790,18622,21774,17361,19609,22650,21281,36112,24935,23430,15590,11565 +0,510,1003,1763,2306,2882,3125,4571,1493,3066,3848,6589,7820,6027,6248,5644,5764,10094,12376,12327,11335,11658,9527,8916,13059,9338,5929,4592,3731,3723,3822,2410,562,580,387,478,362,359,298,216,292,402,594,551,491,690,1139,1566,2291,1760,1566,1160,994,760,654,342,0,183,376,634,789,1357,2029,1848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,41,72,97,205,346,390,414,736,873,902,1331,1684,1889,2469,4838,4404,2875,2480,1891,1120,575,331,92,691,950,1220,1979,1625,1810,2374,0,45,118,142,257,282,374,397,621,748,1156,1215,1524,1555,1254,1164,744,710,555,604,388,474,474,431,230,696,1012,1346,1582,1465,2093,1676,0,26,39,55,86,117,98,154,96,222,375,554,561,657,532,809,547,446,376,456,469,440,391,422,85,130,137,178,178,142,114,89,360,2098,3069,5042,6178,9097,8669,12328,5408,6990,9287,13165,7349,8948,12165,11082,22268,21604,21607,19338,23742,17318,14342,10623,7750,10898,10062,12464,13711,13529,10934,10880,22496,19413,17667,16354,14394,10608,7952,6562,3708,4959,4039,5082,4485,4750,5902,9714,25425,24948,29040,19638,15390,21012,24188,27792,24876,25853,23847,20606,30045,23342,17343,14118,11098 +0,629,1069,2097,2824,3352,2793,3276,1288,2298,3186,4642,5184,6172,5953,4766,6914,10073,9879,12500,11716,9155,10996,10937,12561,11412,9020,7836,4500,3717,2407,2367,759,757,848,702,533,563,476,350,307,265,282,273,320,506,884,1403,2558,2510,1766,1846,1408,1032,916,458,0,165,358,463,580,1064,1241,1694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,63,79,105,128,191,295,493,488,677,884,1163,1207,1768,2296,4944,3798,4020,2343,1829,1503,963,555,64,332,592,1362,1724,2168,2575,2810,0,31,62,90,139,163,139,180,735,710,642,1029,1366,973,823,709,242,283,316,346,344,367,468,342,267,658,907,1328,1318,1251,1735,1631,0,12,24,39,68,66,87,128,62,388,604,820,806,963,1106,1053,205,232,354,510,501,455,331,401,62,101,111,111,136,123,115,77,358,1970,3836,5700,6289,8441,10182,13222,5154,6904,8870,8465,8319,7988,8082,7087,23974,23058,25931,21483,21876,20221,11946,10383,7716,10094,10541,10580,8619,9082,9740,8882,21042,14876,15972,17930,16311,10877,7862,5374,4591,3286,3483,3375,4785,6056,6011,5345,34439,27062,18287,21673,21686,22417,18901,22676,24174,25020,21696,18346,19180,21196,16716,12782,10861 +0,464,905,1564,2272,2689,2697,3926,1658,2202,3306,4496,3234,4520,5806,4276,6570,7058,8967,9078,9042,7783,8748,8869,7604,8246,6872,5806,5484,4228,2326,1910,592,849,687,544,405,472,449,449,458,399,467,476,719,1074,1429,1827,2244,1870,1445,1566,1314,909,759,331,0,138,302,348,653,1033,1124,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,109,182,271,286,234,320,480,476,575,899,837,1207,1647,2412,4678,3888,3177,2384,1862,1378,1008,612,106,371,672,1102,1186,1667,1844,1902,0,20,55,70,92,126,131,116,478,651,636,966,857,714,610,542,140,214,283,328,283,390,364,350,356,566,887,913,998,1126,1282,1464,0,12,28,45,50,54,94,106,56,343,622,620,584,782,976,1088,317,384,509,506,577,571,440,446,63,92,130,96,150,101,88,60,261,2244,3194,5125,7440,9392,10129,14052,6444,6474,8603,7580,6477,6860,8174,6365,30194,26770,26920,23322,24071,17172,14671,8957,5792,8060,9054,8508,7522,6512,6876,6494,21108,18668,19605,14510,14455,9810,10836,7926,3890,4043,4994,4589,3558,4096,4216,4538,28112,24593,15704,19732,16355,17497,20506,17386,19790,17522,14646,12986,17186,14689,12731,13874,14965 +0,445,793,1302,2216,2926,3480,4414,2158,3259,3570,5513,2590,3675,5512,5922,5985,5716,6229,5615,5629,6165,7660,8734,6409,5811,5380,4794,4894,3896,3110,2081,698,561,640,733,405,394,452,479,710,562,666,598,1058,1535,1809,1836,2156,2267,1632,1230,838,554,462,237,0,101,227,363,638,922,956,805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,168,302,357,353,372,390,691,579,436,654,889,1325,1360,1815,2902,2798,2948,2166,1461,1008,1018,730,152,354,547,837,1141,933,1048,1118,0,14,30,49,78,71,89,118,439,516,542,688,446,406,238,242,97,127,196,176,348,266,256,277,336,516,584,736,778,981,1220,1410,0,13,22,46,42,66,77,94,63,238,442,774,491,746,788,778,408,432,517,485,531,520,515,430,80,114,110,96,114,77,64,50,129,1731,3064,4172,6990,7376,10166,11774,7120,7408,5577,5102,4908,5880,5968,5490,28245,20158,19735,23470,18732,13102,12762,8160,3579,4888,5944,5286,4677,4238,5060,7036,14208,17773,17120,14078,14827,14629,11382,7729,4428,4524,4851,4650,3425,3699,4446,2854,27995,20479,15863,14468,13025,12427,17262,11978,9836,8524,11080,12691,13775,16713,14976,12332,15547 +0,396,551,1130,1663,2328,2566,2998,2805,3397,3569,4551,2630,4292,7512,6530,5857,4334,5376,4046,5686,6260,6471,6186,5690,4046,4882,5040,4856,4172,2448,1878,571,606,497,533,483,484,480,448,860,760,842,832,1068,1870,1681,2300,2257,1644,1464,1163,472,361,342,174,0,115,216,400,583,748,744,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,175,260,433,365,419,368,602,489,297,462,444,768,732,1362,3160,3027,2267,1871,1508,1140,1071,652,305,397,416,455,630,602,600,716,0,9,14,28,47,40,51,60,256,273,255,370,246,201,141,140,50,104,186,178,292,262,226,279,388,460,483,491,637,993,1301,1300,0,12,25,45,53,51,58,68,57,238,480,535,705,790,812,904,727,582,495,530,487,552,544,327,103,135,114,78,71,54,42,28,63,2025,3797,4922,5642,8519,8066,8325,6270,6692,7116,4944,4119,4764,5089,2971,26799,21259,18255,18378,14725,10292,9285,6168,2748,4138,3435,3254,3916,4792,5067,7420,18962,18239,17302,14381,11485,10478,8415,6370,6498,5287,4057,4538,3412,3615,4163,2534,21350,20477,19273,17451,12088,13076,13348,9112,4990,5472,8703,11166,12341,13248,15648,11656,14703 +0,636,1259,1520,1876,1973,1702,2238,2764,3493,4505,8195,11193,11824,12921,11096,3888,3609,4074,6792,8366,10020,9214,7505,5755,5154,5124,4362,2279,1549,1192,929,470,371,281,291,246,310,320,613,747,1049,1022,865,1066,1027,1101,1649,1693,1243,714,480,261,233,166,88,0,89,153,251,416,593,586,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,106,143,192,249,357,386,524,476,279,244,138,179,244,406,3284,2313,1994,1511,788,578,611,557,356,355,371,316,268,230,188,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,75,114,115,211,333,402,467,535,664,835,1214,1106,1086,1084,0,13,22,31,49,70,77,66,68,224,428,533,720,787,847,808,1034,974,911,957,782,606,518,349,171,176,126,146,137,127,85,38,0,485,1013,1271,1836,2962,4165,6042,7320,7504,6554,6910,6080,5551,3608,1815,23803,19518,8817,6899,5561,4111,4110,2560,1546,2206,2810,3607,3802,5350,7401,8062,21926,20820,18684,21177,20883,16951,17795,10994,7402,8811,7307,5200,5296,3255,2653,1495,18091,18581,14842,11388,11862,9756,9893,6819,2374,1824,1766,2388,2395,4370,6771,10596,12435 +0,538,1129,1260,1150,1444,1462,1836,3317,3828,3254,5583,10011,9536,10218,8609,2836,3392,4500,5938,7245,7365,6182,5968,4101,4279,3811,3194,2092,1446,935,904,566,322,285,277,246,291,349,482,548,742,838,832,772,1106,1145,1804,1140,981,627,434,405,304,158,84,0,96,139,296,396,566,432,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,89,214,202,342,429,488,402,454,289,238,144,224,277,340,2932,2430,1848,1416,804,589,671,428,288,280,308,281,268,196,176,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,115,125,186,334,435,419,437,626,777,1314,1230,1155,1178,0,13,24,30,52,68,84,68,64,238,316,442,729,822,768,542,693,746,765,739,568,542,519,286,151,176,165,144,145,102,78,40,0,475,904,1337,2280,3058,3943,5674,6451,6170,6463,6621,6470,5115,2740,1674,17609,11560,9240,7142,4464,4090,3519,2790,2141,2948,2882,3837,4817,5743,9289,7124,18953,21226,18078,19633,23584,21412,16290,12268,7828,8489,6654,5041,4280,2907,2516,1199,12171,15148,10360,9477,7216,6562,7837,5462,2305,2394,1976,2766,3388,4594,6563,7776,9843 +0,332,623,793,948,1224,1412,1394,2867,3841,3535,5210,7656,6114,6179,5596,2556,2515,3542,4481,4016,4984,5450,5302,3856,4104,3138,2176,1542,1433,1050,638,530,321,261,259,259,376,498,606,568,446,528,581,538,910,1346,1906,1143,878,777,488,431,265,220,116,0,80,156,199,303,300,414,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,92,159,274,404,441,420,433,412,343,223,116,220,288,375,3393,2762,1870,1374,697,500,538,322,340,306,314,228,248,226,128,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,55,117,152,209,297,401,246,451,516,562,1100,1197,1222,1650,0,11,22,23,45,67,67,76,38,144,272,392,552,694,667,483,613,717,620,598,555,496,429,264,111,147,156,160,110,80,65,30,0,542,1066,1528,2174,2217,3288,4216,6202,6296,5488,4606,6206,4583,2662,1555,9725,8325,6708,6151,4593,4425,3538,3218,2905,3800,3920,4737,4945,6235,8906,7775,17346,16636,18393,16088,19340,16970,15765,9605,7337,5829,6550,5312,2947,2106,1772,1029,8982,8644,10318,7994,4661,5902,5454,4307,1954,2235,2993,3251,4585,4601,4302,6126,7177 +0,228,447,598,937,1024,967,1204,2398,2982,2166,3279,5023,4520,5548,3914,3062,3076,2302,3266,3571,3995,4757,3864,3030,3444,2941,1888,1396,1132,838,682,423,349,265,316,245,406,602,640,318,338,392,548,604,857,1201,1632,1077,1048,786,537,374,286,177,118,0,52,93,148,158,210,276,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,76,164,206,364,390,420,238,254,221,180,137,267,269,362,2628,2332,1464,1213,575,468,373,270,226,202,246,204,160,160,90,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,42,94,140,161,238,314,177,368,447,487,844,1010,911,1070,0,11,22,27,33,50,45,60,43,158,277,348,542,552,543,378,650,622,671,534,537,362,394,186,98,102,113,123,90,70,48,28,0,540,1119,1437,2304,2176,3057,4325,5352,5940,5915,4573,4204,3128,2551,1268,4928,4700,3847,4024,4681,3545,2864,2853,3360,3784,5753,6447,5530,7273,7744,8146,17985,12780,18198,16624,20399,21166,17222,11293,7085,5534,4918,4772,3758,2684,2294,1152,8214,7266,6625,4923,2810,3464,3587,4260,1333,2542,3983,4078,5697,4508,3725,4507,5828 +0,140,241,396,684,882,879,818,1534,2344,3106,3473,3206,3011,2445,2392,3385,4300,4398,3000,2942,2971,2069,1254,2614,2214,2347,1797,1142,787,765,463,359,365,474,446,350,327,368,409,93,157,295,441,563,1091,1545,1344,1489,1415,1063,646,414,339,244,126,0,22,40,60,80,103,122,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,135,184,222,327,325,346,152,154,192,140,122,216,315,337,1806,1167,785,686,470,505,388,215,196,224,178,134,98,63,51,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,76,85,113,142,173,199,87,163,226,487,646,619,603,881,0,9,18,26,26,27,26,32,33,112,242,294,354,377,424,363,681,632,473,508,383,278,162,128,119,96,67,68,76,45,31,15,0,654,1220,1437,2052,2518,3614,4088,4392,3648,2804,2378,2960,2004,1254,616,2552,2410,3424,3873,3354,4050,4026,3691,3478,6579,8144,8566,8736,8236,8124,5686,12782,10981,11530,12017,16478,12127,11670,11934,4901,3931,3686,3831,4287,3821,2604,1406,5857,5808,4624,3334,2262,2782,4439,4246,1095,2156,2521,3294,5563,5422,3877,3334,3200 +0,108,222,329,544,648,565,646,1190,1832,2875,2918,2539,1903,1625,1741,2986,2710,2772,2330,2892,2236,1775,1175,2043,1756,1398,1351,1010,716,518,314,308,288,372,346,218,256,302,359,78,157,194,338,506,724,1286,1176,1070,818,882,523,252,234,141,86,0,17,33,48,66,86,94,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,114,121,156,228,266,270,120,126,150,122,97,172,245,272,1474,1063,640,544,276,327,296,186,131,130,111,99,69,58,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,51,64,74,88,152,196,71,128,199,338,416,520,608,692,0,8,14,17,24,26,18,24,20,116,220,244,270,281,263,228,594,496,491,400,340,240,116,93,66,60,53,50,53,38,27,16,0,432,931,1178,1311,1982,2487,2476,3746,3409,1896,2094,2588,1644,1104,535,1924,2112,2295,2758,3774,3569,3425,3724,4473,7152,7848,8712,7358,7478,7551,8857,17492,11912,11215,10656,15579,11788,10414,10918,4591,3918,2909,3526,3739,3516,2531,1242,4090,4316,4732,3170,2244,2670,3363,5073,1619,2324,3054,3844,4088,4598,3620,3335,3528 +0,90,176,289,433,478,410,419,1010,1116,1736,1890,1512,1284,1047,1054,1695,1917,1952,1948,2037,1296,1184,898,1528,1398,1092,903,599,396,265,182,216,217,266,213,145,184,172,271,62,103,165,216,383,596,774,870,516,516,427,351,152,144,104,54,0,17,28,36,40,60,84,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,64,66,99,121,139,172,52,58,78,78,85,142,152,163,954,812,532,325,173,198,171,121,77,70,80,75,51,44,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,31,38,46,65,92,156,62,88,122,169,310,386,447,500,0,5,8,13,18,15,14,15,12,64,124,102,122,126,174,128,402,449,356,353,237,140,88,53,42,51,46,45,37,23,16,8,0,253,592,785,780,1155,1258,1659,2348,2336,1731,1115,1524,1444,912,475,1152,1236,1844,2060,3006,4153,4301,4398,6075,8112,7862,7258,6638,10056,10488,14310,16717,13677,11012,10266,9504,6852,7050,6867,3106,3635,3046,3185,4840,2968,1624,824,1767,2821,3762,3640,1797,2989,3772,5131,2517,2430,3364,4290,3940,4321,4029,3998,3074 +0,49,82,134,199,192,234,198,554,694,868,1040,761,631,431,526,990,879,925,856,1178,802,622,482,715,590,495,356,338,196,158,110,100,130,134,89,62,89,85,137,37,52,80,92,202,250,338,360,282,272,233,152,75,72,46,25,0,10,17,24,22,34,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,32,40,50,58,82,94,29,34,43,41,44,67,63,86,528,370,233,160,79,82,75,60,38,42,34,36,31,24,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,17,22,20,36,45,75,33,46,73,106,152,213,269,246,0,2,5,7,9,9,8,8,7,32,58,52,51,65,98,70,207,230,192,177,134,82,39,27,25,26,22,24,22,14,10,6,0,158,307,393,406,522,685,741,1369,1270,973,664,670,656,503,214,527,1090,1458,2140,2895,3156,3676,4390,5091,8069,8445,9248,7133,11283,15212,14274,14141,14907,15626,11694,11627,9784,9414,7021,3412,3434,2777,3741,3771,2528,1424,794,887,1768,2622,3170,2694,2759,2591,4089,4280,3842,3552,5382,6024,5639,4924,4029,2976 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,887,959,1484,1793,2298,2767,3564,2519,2494,2163,2408,3020,3528,4996,5352,6086,5768,6962,9577,8466,11249,10943,8698,7479,6391,7664,7684,5233,4808,5000,4962,5204,4299,3885,2488,2221,2641,4078,4676,4643,4412,4280,4958,4206,3281,3081,4086 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10883,11507,11764,8240,4892,4517,4528,2788,7762,7454,4224,2926,1968,1327,1104,592,0,12,26,42,66,67,85,123,110,118,112,90,77,58,30,15,374,518,786,928,1106,957,880,550,2396,1816,1282,1081,854,544,312,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,1042,696,674,227,220,130,69,0,0,0,0,0,0,0,0,98,186,205,256,370,518,464,708,1822,1606,1427,1654,834,714,329,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,797,1046,1479,1872,1769,2842,3142,2158,1854,2353,2388,2690,3103,4474,5675,5514,5408,8855,9370,10592,11037,10686,9167,7022,5568,4879,5630,4358,3443,4508,4570,4858,3781,3182,2964,2636,2437,3718,5426,3997,4053,3986,5160,4918,3540,4346,5944 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24308,23593,19744,17760,10836,9321,8486,6812,18816,16600,9474,7156,3343,2536,2183,1146,0,26,56,83,114,140,172,288,214,216,243,177,138,99,54,30,796,886,1341,1883,2284,1835,1914,1163,5935,4219,2596,2350,1937,1469,614,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2448,1863,1670,1299,548,446,246,130,0,0,0,0,0,0,0,0,217,312,458,476,705,750,1134,1367,3299,2654,3222,3450,1800,1227,809,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,620,964,1074,1489,1653,1724,3426,2491,1852,2004,1775,2176,2890,2998,6916,8260,7028,10590,11118,11905,13840,10491,10354,6906,6792,5807,4691,3522,3224,3738,4361,3010,2933,2244,2969,3172,3211,3660,4860,4030,4096,3201,4003,5186,5416,6808,6009 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33179,32663,34328,24516,15480,16438,16656,8963,22938,18754,9813,7906,5228,4194,3035,1678,0,36,75,145,164,239,309,366,456,362,330,314,254,190,112,49,1446,1741,1504,2072,2350,2650,2671,1993,8746,6945,4452,3424,2382,1490,1056,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3210,2752,2286,1543,749,536,389,188,0,0,0,0,0,0,0,0,371,476,654,811,1018,1472,1679,2377,7520,6020,5264,4587,2840,2286,1874,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,507,687,650,1034,1492,1649,2877,2054,1332,1560,1614,2062,2631,2876,8248,9616,8946,10850,12815,13160,16131,14576,13556,9081,5194,5258,3321,3552,3774,4184,3608,2468,1908,2212,2114,2522,2424,2836,4475,4404,3626,3138,3908,5030,5471,5872,5860 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43440,32260,36696,34782,27094,17045,14774,10410,28388,21379,24061,15460,8642,6301,5587,2935,0,56,120,219,272,372,369,406,687,800,670,539,332,276,198,95,2141,2546,2154,3086,3386,3406,2773,2320,9670,7862,5374,3794,2942,2722,2035,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3707,3225,2464,2018,960,666,406,244,0,0,0,0,0,0,0,0,476,616,1048,1088,1155,1722,3004,3816,10322,10772,7853,7385,5200,4484,2335,1474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,217,404,523,669,924,1607,2345,1751,1408,1180,1402,1250,1378,2038,8100,6965,7167,9041,11524,13442,13672,17160,14181,14662,10938,8281,3420,3079,2032,2458,2595,2478,2241,2027,1770,2058,2524,2264,5172,3780,3991,4270,4172,3612,4634,4561,5837 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52558,54068,53587,53064,39568,29778,28248,21702,30294,29097,28000,17120,10290,7108,4514,1946,0,60,110,206,345,408,556,566,708,707,675,490,404,295,250,117,2246,2234,2981,4147,3976,4380,3336,4059,11394,10042,6104,5232,3326,3136,2029,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4343,4302,3634,2514,928,892,567,252,0,0,0,0,0,0,0,0,899,1814,3367,3899,4462,4390,6612,6710,11719,10504,7195,7206,4297,3708,2194,1924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,340,446,746,839,1326,1442,3072,2522,1362,1591,1585,1658,1429,1519,7088,7653,9990,11854,10742,14014,14740,17997,12725,12595,7909,6002,3785,2732,2324,1946,3431,3162,3008,2901,1656,3045,3682,3994,8488,6826,5599,4196,4814,5743,6318,7840,10467 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65417,70158,68066,54485,41042,46242,38942,28511,40295,36898,23640,19122,9074,6467,4199,1750,0,64,126,189,506,539,572,583,597,612,459,410,424,320,276,120,1955,2430,3408,4511,3578,3852,4662,5503,14336,12349,7146,6302,3694,2900,1623,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5221,4941,4272,2659,1281,997,592,333,0,0,0,0,0,0,0,0,1112,2594,5114,5540,7030,8485,8042,7316,10485,7510,8180,5762,4613,4122,2962,2658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,433,624,747,1025,1626,1952,2950,2521,1912,1544,1600,1434,1284,1402,8206,9316,11339,15271,12441,13560,15574,15792,11481,7148,6104,4345,3558,3113,2054,1976,4383,4069,3599,3398,2271,4496,5773,7882,10458,8090,6198,5842,5223,5306,7536,9675,13071 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52776,62464,62093,51128,47335,42998,35440,35263,31332,33790,21941,18662,9413,6810,4712,2350,0,70,171,248,460,487,473,701,881,864,620,518,406,354,321,156,2127,2662,3722,4732,5544,5398,6298,7702,13695,11666,5581,5758,3690,2254,1275,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8866,8155,6842,3742,1550,1267,637,355,0,0,0,0,0,0,0,0,1485,3924,7062,7024,6867,9496,12818,13406,11246,7727,6761,6366,4511,3643,3063,2504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,393,716,712,1128,2104,2116,2924,1806,1315,1764,1586,1182,1055,834,12732,11186,11724,13642,13265,12760,13690,12417,9532,7712,6900,4526,3266,3184,1996,1308,5215,4572,3468,4118,2707,5448,5932,9386,9962,8370,9980,6704,6761,6085,7539,10160,11807 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55104,62194,62170,56876,57627,53254,54708,42310,33042,26160,19813,19188,23602,16558,15579,7696,0,132,319,690,897,698,826,814,1150,1051,1021,792,505,384,309,181,2394,4308,5231,5889,5801,9233,12531,10497,12316,8797,8386,7535,6052,4116,2082,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12949,9174,9137,9474,9033,6506,3622,1955,0,0,0,0,0,0,0,0,1377,4428,6678,11591,13754,11224,8760,9632,14160,13635,13862,11870,12693,7632,5046,4074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,432,950,1172,1477,1775,1644,1984,1797,1704,1590,1510,1023,823,396,15913,16620,13971,12664,14243,14243,11624,11152,11516,10151,8136,8502,6278,5069,2591,1441,5928,8434,10976,12544,11458,10375,11373,12898,10187,9531,9065,8568,9869,8548,8070,10326,13040 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84297,75106,60232,50648,63758,66673,43638,43766,24794,22163,16592,18869,19171,18328,13519,7032,0,172,381,788,1057,774,762,1166,1187,1258,1051,949,996,728,752,765,11225,12098,11849,13866,15608,18375,17538,13734,11568,11242,7900,7469,5512,4139,2265,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15628,13337,10326,12240,9719,6199,3215,1843,0,282,548,962,1274,1102,1153,1514,6032,8521,12891,14124,19200,13027,12456,13315,27530,24024,20340,20731,19446,11640,6522,4406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,483,868,1042,1312,1181,1316,2258,1838,1389,1239,1631,1309,1006,688,14092,17245,17836,17820,11626,15179,12711,12955,11472,9733,8407,6620,5074,3654,3104,1560,4379,5346,7883,8266,10962,10851,9157,12040,10462,8446,9232,8287,11182,10318,7924,9588,9605 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99824,72706,53926,40920,64430,62159,44572,30462,17578,17908,18032,15004,21150,15660,12010,5758,0,192,463,744,1321,978,920,1200,1672,1583,1306,1238,1496,1257,1306,1036,17853,16568,20987,20572,24340,19452,19705,16161,16368,15227,11300,7722,5485,4144,3480,1754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15366,13896,14388,12888,8235,5382,4209,2201,0,454,919,1741,2761,2394,1982,2620,10833,14619,19660,19133,22066,17229,12565,17964,32985,34709,28468,28147,21530,17960,10800,5366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,440,789,1134,904,867,1221,2170,1942,1204,1027,1621,1220,1338,1059,14667,15442,18212,18002,12498,15091,15864,15146,11090,10190,8271,4706,6001,5135,3308,1958,4214,5472,5472,6211,10067,10678,8319,13682,11847,9132,8592,6232,13291,12075,11220,10031,10531 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93825,84452,73387,64769,65203,58114,32628,29480,12168,14638,15353,14758,14728,10600,8393,4391,0,364,700,1040,1651,1211,946,1300,2109,1584,1243,1314,1436,1806,1659,1477,27457,23200,21563,27932,34003,29224,21205,18373,17966,16776,14910,9630,6385,4376,4001,1757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19207,17132,22062,16082,12706,7261,4782,2007,0,896,2123,2363,4322,3888,3364,4966,15526,17490,27287,25500,25262,23889,22056,21404,38481,43428,33453,34034,30632,21471,14080,7862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,343,585,880,1058,972,1548,2163,2138,1235,1118,1491,1270,1361,1343,13941,13786,18995,18784,17868,16771,17680,17114,9040,8810,7755,4596,4650,3234,2110,1370,5362,4699,4706,4908,8543,10826,11626,13778,12033,12138,9509,9707,14068,11452,13185,12288,13520 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128109,122646,92774,73669,76259,66737,57629,33382,11586,12157,11605,7926,6650,5846,4153,1743,0,294,666,1272,1508,1407,1319,1347,1979,2100,1877,1866,1743,2048,2282,2310,31209,40809,48904,49447,40698,27190,16407,10419,17311,11916,12109,11085,8813,6907,4160,2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22083,25658,22092,16804,14245,9686,9509,4179,0,1300,2401,3654,5335,5963,4894,6883,21828,31524,32669,31202,33114,36920,32006,22033,49803,52616,49447,46529,34200,29431,18291,10918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,297,414,662,982,1395,1192,2328,2550,2029,1354,1167,1322,1212,1326,15584,14480,15360,13617,17408,22464,23215,17439,5324,4592,4470,3354,2604,2105,1389,938,6266,6274,5824,5422,4260,5869,6992,9050,9931,9394,11815,13952,11826,13688,14798,15434,14883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100736,118528,81538,76434,63512,61726,43166,29766,11229,9118,10004,7432,6162,4179,3970,1699,0,453,860,1562,1493,1522,1339,1360,1948,2140,2586,2602,2124,2262,2542,2592,37336,38720,43738,44361,43466,34858,24992,19826,22249,16134,12742,12530,7234,6580,3788,2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17918,17442,20682,17456,13697,11040,6593,4098,0,1944,3819,5102,5702,7016,9096,13574,32651,36058,29239,24876,32032,29080,25841,25171,63292,56820,54895,50850,40287,24639,18019,10606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,304,406,700,1066,1184,1182,1807,2044,1692,2177,1519,1496,1406,1426,14149,12630,14687,17096,13684,16369,15141,13701,4647,4464,4021,3134,2403,2250,1411,962,4608,4866,4626,4972,6995,6294,7116,9542,6831,9844,10550,10956,10097,9804,14663,13176,11862 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83181,78517,73147,72913,75686,56355,41416,19718,7516,7216,7350,6484,4465,3853,2764,1646,0,656,1150,1490,1084,1266,1490,1676,2227,2079,2662,2336,1862,2358,3588,3250,42467,41366,49572,56782,41262,36119,25910,24223,20861,18647,18847,14798,6988,5937,4421,2634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13212,12066,13812,9241,10884,7450,5942,3391,0,2204,4577,6729,7759,12034,13166,19388,39050,31217,33982,23718,33405,29818,31821,30386,58956,56789,52411,45233,34482,29097,14136,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,222,457,561,788,1239,1486,1254,1730,1970,2680,1962,1655,1367,1359,14304,10910,10642,11775,14132,10866,11894,15555,5023,4175,5188,3940,1425,1590,1658,1077,2315,3314,4950,5270,8652,7188,5582,7146,6991,8678,10086,8849,6065,7234,10769,14436,14471 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99531,84944,67346,59402,56276,49642,32485,19125,4056,3171,3964,2964,2242,2148,1304,724,0,594,1306,1700,1491,1588,1869,1949,2558,2084,2242,2216,1504,2961,3547,4278,41314,45088,42776,47768,45640,35158,40426,27000,22686,18349,16052,14302,9141,5826,4235,2164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16597,17796,15559,15093,11066,7608,5658,2816,0,2028,5228,7947,9940,13320,20288,27666,38239,38812,35135,29824,26670,34752,34231,38399,60126,43022,43756,41398,31071,24940,15505,9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,320,410,547,722,968,1028,1000,1466,1967,2944,3705,3152,2360,2291,9881,9112,7113,9367,13055,9475,9351,12023,5360,4664,6072,3906,1728,1916,1555,1605,1692,3560,5290,7598,7006,7360,6035,7416,9602,10208,10897,8293,5668,6992,7901,10350,10630 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100087,86369,51504,42580,36239,23242,18204,7874,0,0,0,0,0,0,0,0,0,892,1534,2141,3488,3965,3824,3877,4863,3866,4634,5626,8410,9816,9480,7150,56114,64833,64337,76937,73711,59946,66339,44365,31092,28081,29635,24806,12431,8404,4608,1879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16177,20640,22357,32540,51019,47956,63787,55622,50617,51418,53680,45400,49654,49003,46648,46798,35098,23956,15972,17916,16871,16420,13355,20931,24212,18766,21229,21108,17925,15685,10182,6074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,804,1251,2234,2406,3082,4240,7765,6683,5502,3820,2354,1894,1260,508,0,47,89,110,155,546,961,1179,1430,2054,2567,3032,3308,5596,6806,6892,6911,7730,8232,9668,11828,10934,8752,6856,6973 +0,1,2,2,2,3,4,5,2,4,4,5,4,5,5,5,2,195,470,774,1206,2468,3976,4222,9633,7874,6135,6608,4984,7302,6228,5558,91714,77124,68496,55960,50660,33508,29997,21924,13270,12722,11118,6752,3067,2822,1877,1258,0,946,1347,2909,2672,3278,3784,3571,5564,4759,3789,5802,7330,6923,6257,6092,56732,55489,75263,68166,60318,62546,46083,38364,33994,29819,30799,24252,20707,15030,6874,4415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17043,17718,26934,28376,42034,41986,54992,41632,69117,52332,57669,56315,47593,48659,45871,41754,31844,26522,21002,18900,25796,20376,15939,19600,18960,21894,22510,16782,12313,12216,8737,6586,912,1254,1712,2076,2144,2371,1998,1272,1025,1006,986,732,693,522,261,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,859,1336,1865,2315,2948,4000,6232,5398,5579,3760,2998,2456,1128,676,4,60,111,154,162,553,956,1412,1222,2364,2407,3334,2509,4446,5922,6964,5279,5895,5248,7030,12019,10143,8993,6692,5465 +0,2,3,4,3,5,6,8,4,6,6,7,6,7,7,7,3,470,854,1317,2939,5083,7623,9853,17751,15142,15328,11470,12279,10795,14439,10950,69663,69958,75432,88786,58057,52948,42483,46757,32510,26152,25006,14323,6678,6472,4422,1847,0,725,1738,2023,2267,2645,3015,3363,4422,3480,3624,6044,5440,5895,5558,5306,69790,80751,65092,70797,48490,43848,42914,40433,44089,38744,31432,21338,24940,15898,10606,6162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14725,22846,27039,29017,42561,33984,38474,37502,77950,72579,72452,67922,41013,47740,40061,42920,37088,36170,23482,23011,28204,27417,18503,17387,16751,19340,18134,13529,10684,10002,7090,5816,1690,2262,3056,3341,4937,5189,4090,2631,1982,1783,1796,1587,1568,1058,638,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,848,1041,1518,2934,3378,4332,5399,3792,3860,3017,2751,2044,1419,853,6,52,120,188,121,394,795,1136,1527,2533,3205,2798,2359,3822,4878,4530,3782,4670,4528,5508,9454,8270,6840,4626,4036 +0,2,4,5,5,8,10,12,6,8,12,12,10,10,10,12,5,623,1904,2638,4439,7392,12488,13165,21393,15094,13477,16152,12712,13834,16209,15934,111888,94386,86319,64766,66688,69156,73634,63116,34818,35764,32606,22190,11298,8603,7099,3818,0,706,1688,1777,1730,2288,2428,2776,3635,4002,3296,4434,4433,4094,4657,3734,72299,67394,45226,54400,49631,42932,45916,41193,48573,41012,33624,26521,24332,13062,10309,5210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22001,23728,30045,25117,36084,31103,26768,22892,85417,73506,63682,64747,52894,47587,38590,31120,23322,23603,18068,19860,20990,25568,17376,20014,12724,16782,18106,14770,10347,9326,7748,7932,2978,3293,3905,5329,7299,6844,4796,3422,3860,3178,2470,1864,1995,1302,784,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,667,1366,2039,2854,4315,4966,4460,3733,3600,2400,2290,1779,857,542,9,44,106,158,153,510,720,925,1251,2061,2522,3046,2038,2660,3478,3546,2792,3366,3303,4068,6146,4612,4169,3618,2303 +0,2,3,5,5,10,11,12,6,8,8,10,13,19,20,18,4,1201,2474,3952,5690,7565,11363,11702,25422,26197,20447,22699,18655,14366,15215,17398,121823,121510,89214,74213,74138,69025,66604,54726,50360,52264,37656,25489,20766,12276,7848,3459,0,302,659,1349,2050,2099,2248,2760,3590,3772,3890,3201,3358,2317,1730,1648,69157,56722,67143,45521,45188,59740,62407,70334,57693,65862,52770,42434,24016,20666,13399,5716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27806,25056,33555,32883,29296,26594,24548,19574,67712,58860,57174,48577,51988,45765,31340,29719,19762,20999,21391,25523,24216,22344,22045,21195,10605,7502,7596,7424,9554,10614,8425,8269,4471,7165,7860,8626,8530,6529,3723,2857,5213,4472,4590,3859,2401,1489,888,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,1456,1714,2200,2268,1981,3456,3400,3666,3119,2215,1890,1246,675,318,12,41,79,125,150,294,555,745,785,1384,1852,1865,2155,1632,1301,1944,1748,1594,1502,2557,2851,2305,1867,1569,1226 +0,2,5,7,7,11,13,14,8,12,14,16,14,18,18,22,6,1416,3032,5316,8432,9742,15264,16682,18129,20309,21982,19530,20737,19411,18844,21018,144953,133725,121284,88310,77770,66999,68818,50762,58314,49528,31987,24766,22540,14572,11238,4950,0,280,487,1172,1760,1860,1718,2096,3117,2826,3015,2889,2414,1964,1604,1501,74608,59784,53809,41911,40936,47468,59048,66800,63617,49034,39998,38125,22181,15153,11870,4962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22301,26870,30446,31006,35978,28686,27642,20304,41742,48652,55823,50156,38437,35086,32306,23050,17504,19958,23188,16818,21772,23890,21759,18063,7723,7518,8153,6315,9268,9546,7691,7710,8123,9522,11830,9946,10576,8783,5417,5806,6665,4900,6148,4474,3275,2934,1323,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,924,1264,1296,1856,2144,2841,3100,2853,2666,1920,1729,1010,508,232,19,46,63,84,106,280,557,754,564,1063,1763,1492,1879,1667,1750,2214,1723,1900,1567,2258,2612,2290,2485,2348,1605 +0,2,4,6,8,14,18,20,10,14,16,18,13,19,20,26,6,2463,4472,6363,8386,14824,17453,26758,19340,16695,18567,23260,19452,20220,20888,21430,137185,148297,117962,109078,63487,51490,61496,54922,53565,43145,36882,22087,23251,14747,11682,5939,0,200,390,638,1011,1515,1518,1538,2441,2343,2152,1792,1506,1150,1295,1319,79067,65149,41964,34836,41731,56736,53452,76967,52879,44154,40486,26742,26682,16716,8738,4853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23156,27478,26148,33326,39045,33134,25676,24966,30364,34355,46244,38025,28814,24092,25210,21658,22424,23851,18434,20543,20109,15355,17624,15185,6237,6079,6171,4595,7410,5702,6484,7801,13117,10350,11900,8254,11640,11326,8005,8674,8359,6299,6110,4748,4657,3117,2214,1312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,808,1056,921,1312,1700,2098,2220,1756,1560,1416,1112,671,341,218,20,36,54,72,107,294,438,763,395,753,1316,1166,2112,2226,2325,2559,2125,2251,2086,2220,3005,2299,2524,2439,2747 +0,2,5,7,8,16,19,20,17,17,20,20,16,18,22,28,5,2812,6458,8542,10318,11883,18288,22842,22025,19754,23777,19211,13809,17786,23204,25592,151536,115979,120571,91982,72095,79625,87507,84376,53846,46893,50231,30148,19790,14552,9906,4735,0,98,204,346,409,586,841,732,1170,1298,1524,1279,1165,1006,1474,1282,73399,61936,51290,36370,37914,42624,56967,73608,52812,48388,43991,29338,23511,16339,8470,4287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25464,30160,24239,25227,38112,26781,22228,26588,28031,31041,42978,32813,26679,28160,22864,19473,31927,28546,25292,21358,18609,13183,14858,8979,4000,3331,3697,3445,4736,5240,5260,8228,14207,14048,16182,14302,12226,13515,11498,11027,7227,5708,5765,5328,5878,4364,3699,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,446,664,868,972,1456,1723,1014,864,809,648,602,342,183,112,30,47,57,68,117,198,292,445,232,488,773,964,1411,1952,2250,2377,2491,2342,1966,2316,2219,1970,2612,3322,3908 +0,4,6,12,14,17,19,18,21,23,21,18,16,23,22,24,3,5796,11214,13734,17926,22974,32675,30565,31878,30644,30556,39437,36315,33468,36745,30829,144220,152177,174202,163330,186448,138473,145905,96426,76836,59091,65975,49524,32760,27363,13358,7245,0,0,0,0,0,0,0,0,0,145,333,581,776,892,724,1089,93560,79086,60715,69237,55356,43779,38166,52410,56457,36867,29874,31883,24134,20444,15210,8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22420,18667,13093,11213,9485,12330,11980,15797,25988,27022,19953,12498,4690,11688,15569,19897,36845,30705,25523,24862,26780,20064,15175,7443,2437,2976,2829,4299,5999,6858,8902,10327,15352,19366,19624,16924,18880,14726,17576,15567,9452,8514,6134,6104,7621,4848,2934,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,653,846,1044,1357,1354,1434,0,8,16,19,26,34,40,42,35,50,59,80,81,62,60,82,0,389,748,1158,1193,1268,1552,2200,2527,3840,4098,3399,4280,4534,4225,4752,4230 +0,6,10,13,17,21,20,22,24,22,20,20,16,23,23,28,5,6473,11402,16722,23879,33432,38405,44058,50627,43462,37613,34310,43662,34902,37182,31101,162398,151772,131312,149052,154457,157864,134511,89450,69957,61882,50113,44633,24738,21028,17754,8496,0,126,352,446,839,710,732,1008,1281,1554,1920,2011,1691,2379,2335,2220,86680,73720,59909,57086,57269,55850,45503,50346,53311,38508,30345,31287,24924,18350,13832,6512,0,0,0,0,0,0,0,0,0,304,518,809,802,740,580,630,22170,20426,15052,12865,9450,8234,12455,11934,16761,15977,15124,12598,9089,11650,19701,20030,39625,30945,29621,30824,23497,19132,14540,6793,2328,2850,3538,4433,5308,6708,8808,8895,12343,15450,18766,18709,15484,13235,13230,11705,7048,7978,7815,8072,9034,5610,2848,1273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,462,702,711,844,1193,876,0,9,14,20,20,26,33,35,34,38,53,62,70,70,74,70,0,249,618,893,886,1070,1465,1680,1562,2660,2828,2856,4171,4346,3668,4101,4917 +0,7,11,17,18,23,24,20,22,21,20,20,19,26,31,31,6,8234,14880,23708,23122,40146,45933,48582,59234,53780,42766,36061,37075,36396,39280,31843,133054,118335,111854,92765,177920,149405,97413,79950,88373,62509,46398,35541,26859,20092,18061,9158,0,324,616,946,1589,1766,1494,1905,2352,2956,2942,4046,2516,3276,4788,4711,105516,99936,68034,42566,41213,53913,51716,55579,59516,48326,39259,36017,26096,18423,13406,7092,0,0,0,0,0,0,0,0,0,636,1095,1937,1524,1284,1201,1423,28737,27372,21513,14426,9336,10685,9182,11153,10290,12045,10762,9824,11437,13762,18604,19690,39808,33583,29504,26851,16789,17144,13968,8753,2097,3099,3770,3619,6155,5271,6314,4361,7856,11003,14522,13076,18024,14086,11500,9670,5325,5165,7384,8238,7624,5580,2782,1285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,372,523,648,727,719,620,0,6,10,22,15,23,27,28,22,34,48,43,53,64,66,56,0,176,416,510,704,802,900,1284,1232,1740,2305,2355,2932,3421,3021,3668,4402 +0,6,12,18,21,22,22,24,17,20,20,18,18,30,36,32,10,9925,18161,24110,28643,35673,42030,55803,66136,68969,48786,50640,29020,36138,41802,37187,137734,135034,99290,104762,145882,125247,92585,85442,59970,59241,35382,32686,25296,21614,19338,9920,0,408,1096,1352,1875,2155,1468,1896,3134,4192,3229,4415,4161,5344,8453,7381,74744,82511,53359,45368,28457,41504,50347,53712,54166,36842,40540,32298,18398,15772,13518,7006,0,0,0,0,0,0,0,0,0,929,1710,2534,2900,2627,2798,2828,24236,22404,20822,13874,7685,8084,6681,8040,7871,10794,9488,12242,13258,12609,15238,17373,47586,42630,32353,28852,19231,17248,15429,9019,1726,2892,3426,3908,4753,5152,5884,4682,7347,8974,8772,11584,14884,11008,8356,6958,6091,6117,7910,6852,5410,3498,1929,1043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,248,360,393,515,425,412,0,6,12,19,17,20,27,30,21,30,43,46,54,61,66,63,0,170,411,546,747,698,613,869,1031,1222,2077,2382,2919,2530,2734,3346,2792 +0,5,8,13,20,20,24,23,10,14,16,17,22,30,32,28,9,8460,18068,24405,28400,47607,56532,49824,81150,57676,56475,39862,26168,31014,32175,31623,171581,168735,147332,123919,68660,79830,86336,61224,53107,49952,35027,33942,25957,19998,11613,5203,0,725,1211,1805,2702,4146,4302,3542,5451,5142,5092,6027,6635,5254,5908,7668,72928,82252,71295,49647,29534,24444,29560,30284,56103,40096,41583,35756,18607,14738,6478,2977,0,0,0,0,0,0,0,0,0,695,1558,2616,4312,4406,5129,4850,23323,19032,15322,11477,7346,7238,8337,6226,5119,5320,7780,12063,14268,15915,16890,18902,49006,36760,35994,31826,25803,24241,15539,9377,1858,1831,2011,3447,4657,3473,2695,3124,5362,5998,6364,9102,12171,11040,8765,6872,5963,4929,5779,4603,3993,2888,2610,1290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,178,270,205,172,226,0,5,7,12,16,13,12,18,16,23,35,38,42,44,34,40,0,157,312,438,668,531,564,618,859,1158,1296,1936,2620,2361,1607,1664,2203 +0,6,9,16,23,26,22,26,17,21,24,33,34,34,30,29,12,9803,17954,20492,32029,43874,60430,61501,93178,86744,52604,49182,26590,25260,38199,38236,159434,134634,125404,88402,61042,63241,61608,56772,57586,43896,38542,30921,25153,17172,12771,5314,0,882,1940,2882,6554,7067,7966,6662,6193,7928,6266,7884,10689,8749,10262,11531,57706,64186,54840,46799,24703,24106,37728,36818,37349,35811,36191,22212,13442,12063,6650,2929,0,0,0,0,0,0,0,0,0,1474,2076,4493,6636,8789,8511,9968,20982,18068,12375,9149,6493,6090,7462,6439,4406,5388,7214,10798,15658,14382,16424,23018,50815,43866,37068,34266,33185,26122,17124,8702,1558,1648,1695,2670,3466,2762,2342,2708,5913,7327,6722,9040,11995,8892,7009,5307,3951,3304,4819,3994,3608,2446,1755,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,125,172,191,158,118,178,0,6,8,11,12,12,9,14,14,20,23,34,34,32,28,32,0,107,224,372,474,380,469,390,592,774,980,1428,2575,1734,1299,1642,2026 +0,6,10,18,22,27,26,24,17,24,28,29,37,34,29,34,12,9857,16796,18648,34438,39130,59502,59624,94426,77308,74268,73309,33358,33530,34238,38179,117279,95450,98304,100867,40524,43337,51374,69860,53538,46780,40119,35868,26876,16650,10020,5566,0,1179,2908,4094,9264,11482,10019,9852,9941,8088,8623,7998,15757,15407,12196,17255,63827,58309,53831,35647,22468,34494,38046,41296,30408,27001,27884,21618,9188,8268,5776,3388,0,0,0,0,0,0,0,0,0,1616,3523,5532,9404,10127,13484,14779,24643,16404,13036,7575,5041,6660,6069,3951,2345,5143,8726,9281,12131,13984,18509,30066,37685,36891,36822,36461,35619,30236,21804,11018,805,896,1160,1805,1842,1770,2504,2857,5989,6856,9790,7324,8051,7760,5986,5063,3315,2961,2303,2796,2228,1722,998,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,60,124,157,103,94,98,0,5,7,11,7,7,6,8,7,12,14,18,21,26,22,25,0,71,162,236,298,342,367,291,360,690,879,989,1798,1409,1244,1174,1411 +0,6,10,16,16,24,22,21,19,24,34,34,31,36,35,36,16,7586,15910,18978,35372,35605,49939,58985,70660,69074,84733,63937,60928,45066,46152,51680,67209,78137,76196,83466,45422,54258,60268,69870,51441,39562,34164,29374,24682,16295,9969,4904,0,1676,3347,6228,9459,11880,14088,16472,18451,15780,13810,13607,17952,13983,14875,15450,52005,41023,43452,42368,35407,39826,32080,27132,29368,22417,17208,13404,6807,6043,4008,2312,0,0,0,0,0,0,0,0,0,2712,5280,7732,11402,10220,11624,17495,23004,16381,12254,6194,4385,4160,4584,2796,1005,6164,11507,11772,15422,18772,26234,31562,39992,41733,40326,35834,36072,26979,19992,10718,450,526,695,1174,982,1386,1846,2545,8642,8164,8496,7421,8566,6120,4519,3477,1962,1480,968,1452,1103,859,547,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,32,56,68,60,56,53,0,2,5,7,5,5,4,5,5,7,8,10,12,13,11,12,0,40,85,108,123,172,201,150,198,304,500,512,917,714,500,718,791 +0,0,0,0,0,0,0,0,0,3008,6079,11734,14065,16028,17029,30491,34833,36528,53568,54657,52020,51484,36003,28117,30444,45598,52202,51271,66690,52236,53547,49166,48234,37766,40332,43831,38817,42967,32912,38830,33012,24885,14890,13298,16427,9960,5430,2648,0,0,0,0,0,0,0,0,0,3055,5872,10156,12409,15430,15975,15961,26835,23290,30726,30870,21854,13743,11678,5797,0,0,0,0,0,0,0,0,0,796,1634,1731,2568,4390,7596,9190,15364,17195,16045,13148,16560,18947,21302,19296,20534,12946,11263,9814,10631,8924,9625,9872,7392,8582,7853,5568,4651,3270,2606,1500,0,122,294,333,468,598,969,1957,2322,2774,2712,3552,3927,4480,3839,2787,11968,11398,11589,8512,7016,9650,14178,15486,15912,15956,12634,7556,3669,2974,3056,2168,1619,2032,2478,2690,2367,2400,2114,1701,1914,1572,782,547,305,222,201,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +0,472,1154,1804,3252,4206,5201,7196,13348,22858,23268,30164,38753,43752,61507,60198,23486,37468,37373,48132,60795,51796,40830,43578,45776,56536,57300,69872,88086,97756,108289,91950,39517,41181,42296,47442,25482,31750,34541,30964,28089,24344,12815,13196,11204,9108,6669,3336,0,1,2,5,2,4,4,5,5,2760,6461,8264,10254,10333,14938,17062,41027,34896,35716,36076,25603,23227,18103,11609,6427,5058,4624,5195,3459,6049,8447,12346,8655,10310,12206,14798,13025,13402,20649,28605,26078,22947,21298,18556,16022,16024,14614,17343,16352,12539,7024,8892,10932,8386,8491,8060,5525,6371,7651,4602,4764,3350,2686,1422,0,168,280,404,581,710,793,1230,2900,3112,3188,2911,4100,4406,3334,3464,11278,12298,14935,14520,12043,19946,17524,19546,26122,18085,15013,10429,6862,6267,5047,4766,2860,2675,1925,2144,3050,3297,2891,2076,2466,1980,1832,1190,745,738,884,978,0,44,89,160,118,183,259,200,265,256,271,218,120,68,55,54,87,81,90,83,70,73,68,54,30,39,53,54,44,35,23,13,0,13,19,32,30,34,45,38,22,26,29,24,19,16,10,6,126,126,91,96,43,47,74,74,17,34,46,40,32,30,16,12,0,0,0,0,0,0,1,0,0,1,2,2,2,2,2,1,2,5,5,6,5,6,5,6,10,8,5,5,2,2,2,1,0 +0,974,2180,3884,7477,9704,9853,10578,25699,36428,50718,60452,75303,94978,86002,95982,23553,25727,36634,41474,61169,45957,51902,70250,64131,78783,74558,69805,129555,129066,155402,126355,47798,51616,46288,37728,21628,25561,29060,26355,23001,18197,16541,11020,11190,9011,5938,3537,0,2,4,7,5,7,6,7,7,2733,5120,9261,7071,8968,12735,9942,56157,41573,45975,45036,35824,25341,18834,16305,11768,10569,7870,12364,8093,9688,16022,22172,14648,21009,21740,26156,27474,25306,30196,39714,28120,28450,25894,19013,20703,19444,13042,12059,9260,7468,6076,7700,11995,9218,8148,7742,6181,6752,6760,4955,4959,3035,2269,1355,0,204,376,512,503,698,920,1199,3272,3380,3344,2229,3734,4049,4258,3602,10395,15048,15240,17121,21272,20063,28266,29834,29542,24342,16904,12340,8988,9894,8056,8165,3598,3471,2280,2503,5079,4278,3764,2836,2729,2512,2335,1509,1513,1654,1642,2060,0,93,192,285,224,360,432,388,632,484,538,467,217,194,118,103,212,211,150,140,164,166,116,104,57,88,108,92,104,68,42,19,0,21,42,65,60,83,82,78,43,52,52,49,33,27,15,10,221,177,208,146,87,105,140,149,32,53,77,83,74,48,36,22,0,0,0,0,1,2,2,2,1,2,3,4,3,4,3,2,5,7,8,10,7,8,8,8,15,12,8,7,3,4,3,2,0 +0,1682,3016,5845,8792,12282,11698,16773,27186,54222,91182,76362,98684,91528,100592,105936,21464,24268,35199,34488,49808,45692,69859,67542,83168,96300,102819,105479,109105,133293,149679,137065,36690,35052,33470,34926,26057,24496,35034,27738,27009,17103,12427,9216,10022,7432,5732,2862,0,2,5,9,8,10,10,13,10,2170,3519,6989,8348,10563,12133,13962,63361,48449,59425,44521,28812,23598,17057,18302,13096,11766,9491,15180,17255,23364,25372,31836,20935,21960,22944,31252,29690,31230,43001,50758,34182,35650,37342,26224,22116,17466,19258,15438,7142,6036,7218,6237,9499,8386,5790,5454,5112,5794,4745,3935,3834,2309,1733,925,0,172,322,608,752,822,1189,1342,4689,3754,4154,2682,2984,3052,3470,3242,13482,19438,16822,21253,26430,26048,39796,41040,34953,24238,24264,20838,12254,11022,12083,10577,5221,4126,2948,3845,5474,4663,3449,2820,3082,3094,2456,2478,1730,2700,2880,2620,0,148,233,440,327,509,724,740,793,603,649,472,397,298,204,166,251,220,144,229,221,172,173,174,117,152,139,145,144,101,73,34,0,34,50,70,90,108,120,114,70,78,69,52,41,38,16,10,342,324,330,222,131,134,166,175,67,78,92,95,103,62,37,25,0,0,0,1,2,2,2,2,2,3,4,5,4,5,4,3,8,11,11,12,12,14,14,16,21,19,13,10,5,5,4,2,0 +0,3571,7153,10146,11737,17112,21047,24158,39275,39416,49171,82791,113460,112605,85582,111768,15597,23058,41182,42419,47856,57706,70810,63528,81273,91204,106648,135971,124134,129874,119270,112077,21605,20105,27042,23484,30314,23266,25885,23817,26072,15973,10940,9958,8160,5546,3420,1438,0,2,5,10,10,14,20,17,10,1770,3133,6172,7726,6614,7653,12215,59915,46076,41908,37998,30386,23328,27339,24473,17068,17534,21997,21933,23096,26818,32224,36895,26400,32744,36110,32504,42231,42005,54576,56871,31135,30306,37868,33034,24657,23869,20896,11290,7177,8440,9503,7448,6787,7490,6376,4706,4553,5836,5622,4585,3606,3252,2150,966,0,277,492,622,774,671,877,896,5639,4427,4968,3264,1867,2141,2191,2093,22442,17834,17084,28739,32898,24633,28433,33528,36156,24466,20268,17968,17058,13797,17211,14309,7053,5992,6930,6572,4995,4321,2774,1751,3271,3350,2630,2978,2770,2623,3452,3443,0,188,370,391,568,659,734,875,1080,986,763,737,550,392,256,162,340,289,242,316,294,302,223,232,150,131,123,145,166,116,98,57,0,22,46,86,120,152,145,139,123,96,78,60,58,42,27,17,476,503,391,225,162,239,250,315,79,75,70,105,108,91,61,39,0,0,1,2,2,2,3,2,2,2,3,4,3,4,3,2,10,13,18,20,16,17,12,17,23,16,12,10,4,5,3,2,0 +0,3404,7703,12022,13018,16793,23748,27286,46469,53452,82300,110766,121556,124219,99769,119091,11607,24744,32115,34430,40062,59561,57519,69058,97878,107156,104411,135817,102554,105620,108834,113249,14120,16154,21871,18540,25754,17979,22424,17574,18387,14060,8816,6983,6368,4368,3431,1544,0,3,6,10,10,15,17,20,12,1356,2853,4058,7386,6653,7560,8962,48053,43561,38680,28839,31228,27475,24443,21866,17446,26328,30280,32780,36336,39019,46453,50012,27863,41584,55671,58520,44869,49780,53612,64715,43659,38988,54486,41729,27062,27912,19878,12218,6141,6392,6700,5987,4458,5970,5216,3949,3494,4003,3993,3384,2786,2632,1688,708,0,291,444,684,766,1302,2502,2778,7186,5539,6258,5341,3804,3598,3527,4568,18654,17644,22936,30550,24895,22318,23877,23876,47808,33434,25194,20145,16044,18252,17664,16170,11728,8630,10351,7679,6760,6416,4565,2560,3446,3561,2488,2922,2514,3242,4319,3385,0,192,341,352,640,810,1035,904,1274,980,957,911,650,563,349,324,369,392,288,340,508,387,288,257,126,128,140,178,177,134,108,52,0,30,60,109,192,168,130,134,159,137,126,104,78,66,33,19,936,854,523,550,586,406,434,406,205,180,141,153,192,134,114,76,0,0,2,2,2,5,5,5,2,5,5,5,4,5,5,5,22,26,22,20,19,16,13,18,28,22,19,16,6,7,5,2,0 +0,4246,7305,9959,12047,20064,29658,27611,51763,93742,106774,152193,150204,137124,104690,114838,12050,17634,18936,23594,41927,56255,60621,58888,102130,105180,125190,120067,48841,85912,118833,131236,6545,9090,12210,15828,13451,15503,14000,14618,12879,9580,8525,5656,5883,4944,3153,1835,0,2,5,9,11,13,18,22,10,695,1638,2547,4751,5764,6866,6291,41878,28860,29802,22963,27070,23055,22499,20210,22768,35780,37822,54002,67367,71216,58727,60683,31051,41937,65918,81627,39651,54258,65204,71338,44516,41235,52973,42959,33100,25887,24088,16038,7221,7467,5371,5373,4138,4333,4944,4938,3027,2542,2676,2636,1929,1434,1475,748,0,219,492,794,903,2061,3746,3654,6440,7851,6692,6296,5127,4739,5960,5667,19884,22624,26111,32688,16169,19523,26678,26824,45983,37161,27335,22503,20738,18794,22603,26265,14348,12645,10879,10352,10740,7780,5804,4333,2688,2493,3244,3575,2404,3164,3786,4138,0,161,318,424,816,1110,1188,1146,1443,1019,1064,908,587,617,482,384,407,436,458,402,561,352,316,293,156,189,182,203,145,127,88,51,0,34,70,91,199,167,154,155,186,196,168,135,98,82,42,25,1338,1092,876,740,837,816,553,455,270,191,202,204,233,175,139,83,0,1,2,2,3,5,4,5,3,5,4,5,3,5,4,5,31,34,28,20,16,17,16,18,23,22,20,17,6,7,5,2,0 +0,3892,7923,14791,20026,27733,31474,35220,49093,82692,105542,124866,147890,136105,119000,127862,9808,11058,16906,20826,29816,43468,58449,74944,115228,87190,109243,85569,42179,88013,114910,127221,3448,4702,7415,8086,7880,8482,8224,7146,7391,7567,6289,3948,3068,2638,2066,887,0,2,5,9,10,15,22,22,13,542,1540,2240,3559,4296,3544,4500,48580,39166,24557,18752,21862,23789,18622,18982,22184,29366,40941,59956,63314,64098,73003,76998,32308,54727,68078,86127,73804,66494,80558,58218,56846,54098,47595,45957,40240,39236,26810,24776,11208,9846,6886,5372,3140,2619,3678,3052,2613,2536,1936,2044,1537,1497,1214,560,0,265,514,784,1280,2166,4658,5297,7283,6918,7286,7566,8480,6816,7827,8944,20654,26234,29102,23120,19061,20424,23827,24397,33467,28966,21877,24128,25489,23831,23007,24758,16566,14646,10584,10236,9784,8902,7336,5563,2366,3170,3118,2704,2454,3256,4183,4194,0,184,383,630,752,910,1151,1532,1750,1410,1276,969,809,716,408,368,529,472,545,520,616,454,323,332,243,211,216,189,158,128,82,49,0,52,115,162,260,290,238,246,245,208,180,146,125,104,44,26,1474,1564,1306,1109,1058,890,569,455,440,346,270,284,218,215,170,118,0,0,2,2,2,5,5,5,2,5,5,5,2,5,5,5,61,44,40,28,19,20,18,22,22,26,21,17,7,8,7,4,0 +0,6599,12847,24273,28405,24992,29450,44150,48709,69116,99005,127390,150921,139983,123906,145958,5696,25710,47148,57550,77516,91537,98795,92134,95566,90744,107018,192682,235288,187040,180253,236093,0,111,228,378,551,1077,1440,2908,3790,3836,2811,1738,1155,864,465,222,0,5,8,12,12,14,18,22,19,81,134,265,375,1063,1476,1558,40378,32720,31558,32536,42368,33355,37400,37557,29558,40231,39353,46315,66499,58877,40333,61868,45535,58575,57223,69962,59862,39532,37952,55114,66224,51616,55786,41961,38965,37080,27199,29247,14158,11816,8738,9101,6434,4342,3829,3401,2202,1967,1380,1482,1350,926,605,316,0,1416,2445,3610,5065,5263,6404,5333,6288,6256,5268,6688,10838,11092,15036,13242,22970,23310,23445,29993,34226,30752,42120,40985,29668,36764,37888,33464,28946,36496,33299,25661,14407,10801,9025,6459,2188,2898,3311,3493,2676,2902,2249,2506,2147,2477,3011,3453,0,172,314,586,786,1103,1467,1518,1537,1759,1410,960,884,804,780,536,655,515,556,404,159,183,249,266,296,278,188,128,116,79,77,38,0,53,113,120,163,175,166,215,286,338,334,308,241,170,154,86,1963,1670,1801,1476,1135,1199,1117,731,490,404,400,413,409,342,206,143,0,0,1,2,2,2,3,2,2,2,3,2,2,2,3,2,80,55,42,36,33,30,22,29,27,24,16,22,21,13,8,5,0 +0,5751,11778,17358,19118,23861,26298,30418,38357,68540,74143,110148,112474,107927,93757,114269,8534,22302,31636,45643,68695,82063,97782,87802,73623,95428,115002,173614,147146,161812,197912,228001,11281,10290,13054,11433,13400,11442,9471,12074,14464,10930,7861,5722,3189,2734,1296,734,0,5,8,10,11,14,18,18,15,61,114,224,312,903,1162,1266,39920,39810,37104,30444,55196,38018,27132,25618,22110,30063,36182,53043,51327,51384,52481,76674,41771,47670,37286,45259,66059,47336,35998,44063,99578,82742,68330,61308,51504,40689,32289,29155,11277,11422,10265,6704,6136,4036,3938,2756,1891,2040,2222,1927,1697,2131,2082,1838,1115,2036,4124,4414,6883,8098,9808,10652,5848,6855,5534,8268,10734,12693,12434,13428,20678,24227,23828,34810,25918,31714,35088,35208,30729,34614,26524,25597,28908,29456,40646,31094,15250,13164,7463,6398,3732,4461,4783,3846,3451,2980,2856,2740,2217,3424,3963,3980,438,638,515,987,980,1226,1770,1826,1941,1534,1142,973,721,747,681,542,801,659,540,354,194,244,316,274,312,255,250,193,139,105,106,56,0,51,91,100,144,200,164,242,677,712,639,532,444,426,482,454,1237,1294,1680,1146,1185,1180,734,540,365,476,504,518,467,348,454,392,0,18,33,42,81,92,79,123,18,28,36,44,50,62,76,94,109,116,150,164,228,258,230,180,124,121,134,120,101,63,40,20,0 +0,3494,7796,11783,16296,24198,25945,33065,44829,60029,83244,106670,90798,82670,94682,74796,14624,22403,31568,28899,70611,69213,74301,71938,37667,72258,96632,148653,110408,140744,151873,221562,23653,26171,24096,18924,24013,21534,16551,19894,24406,18001,15576,11194,6494,4165,2418,1303,0,4,6,8,10,11,12,14,12,51,101,152,268,693,1090,1590,50016,53927,40402,32668,51698,44337,27924,19713,11763,23781,41504,45316,51432,49481,60716,57773,48158,41201,33053,41261,66430,66228,48414,38152,106433,90747,71829,76482,52670,44322,35010,39211,12284,10319,8574,5797,4730,5074,3894,2640,1590,1672,2394,3414,2037,3237,4012,3717,1928,3130,4895,4938,9447,10971,10795,14792,5207,7317,7402,7558,9979,12174,14398,14671,27306,31006,30258,22996,20658,23740,27025,25325,37305,29297,24627,22974,33691,29049,35380,33943,13983,12375,9446,7660,6242,6914,5662,4686,3335,2887,3092,2607,3262,3072,4218,4602,756,940,908,1150,1274,1807,1758,2033,1811,1378,1414,1354,484,422,562,476,992,749,660,388,320,276,294,289,384,352,232,234,135,138,100,50,0,47,78,103,102,166,217,344,1032,848,824,674,713,825,729,743,989,958,1065,1250,1256,1094,578,385,398,380,523,542,584,615,604,498,0,38,66,70,140,128,164,216,37,40,57,75,119,130,158,183,147,156,217,314,466,400,364,317,218,218,218,174,152,91,66,38,0 +0,3340,6541,10651,18371,19948,22907,26416,36888,58988,64794,84258,79494,70262,76908,56204,16484,22836,22508,27382,51907,52393,61981,78126,26114,45850,54112,109128,87995,112682,139888,195722,30790,34716,38055,29316,37031,31270,29243,33856,37547,29712,28933,16786,11746,6686,3440,2016,0,2,5,6,7,9,8,11,12,62,115,150,173,496,778,1310,34943,32991,36831,36756,45502,33354,22974,15106,8762,21502,30808,36584,41049,56877,75839,67636,42565,43423,44023,48150,63670,53922,36452,33336,115354,89944,81354,69342,53907,46306,39428,33033,9544,8636,7075,4862,3051,3682,2838,2336,2011,2032,2156,3454,2878,4186,5065,4606,4058,5154,7978,6556,8206,9626,9549,14822,5916,7451,8572,9368,10438,14316,16139,14166,21517,28089,31193,25086,24115,23667,19666,20562,28945,34470,36156,26204,28342,38128,39725,37336,8362,9360,7090,7653,8875,7625,8268,7486,5216,5268,3328,2974,3534,4220,6322,5897,1167,1533,1351,1819,1641,2561,2332,2446,1833,1842,1476,1198,463,572,816,822,1121,812,755,534,372,322,262,292,554,512,319,252,204,183,122,62,0,32,70,121,125,188,259,340,1348,1200,825,836,739,750,903,845,1267,1008,970,1046,879,936,504,314,346,571,551,682,713,694,743,706,0,52,79,118,140,188,212,360,48,72,84,122,175,230,262,290,153,180,208,424,604,625,584,436,289,300,242,197,163,137,80,42,0 +0,4269,8347,12746,14876,18028,16028,13636,39047,54113,53042,61651,58706,60754,55135,52297,19731,17320,17770,18472,24700,53126,73835,88819,21089,44006,56368,63381,65860,89008,102836,204068,42843,46346,37374,37094,38345,38610,43829,46983,41096,33966,25758,18202,14236,10302,5139,2614,0,0,1,2,2,4,4,5,12,58,87,129,145,552,900,1101,34322,33914,25948,35747,35585,26980,25731,15537,7452,12429,18166,25909,40981,43609,67472,57388,51293,55594,44468,42868,42726,42106,30468,27926,91592,68981,50836,54150,64328,56048,38635,25088,5990,5321,5442,4050,2418,2173,2273,1816,1858,3044,4066,3694,4873,4790,6913,5950,5471,4571,5578,6972,9438,9991,9324,10938,6928,7231,10804,10871,14398,14460,12385,8613,22161,14554,13965,17876,20414,14058,9740,11826,32548,35417,29360,29500,32484,28067,37498,30460,6896,7582,6149,8338,8606,7296,9378,7124,5441,4565,3870,4007,3179,4887,5153,5589,1533,1522,1786,2296,2468,2550,3133,2648,2121,2031,1428,954,568,787,863,992,1677,1172,1064,633,314,317,237,316,610,508,511,426,228,212,158,69,0,32,77,141,170,152,207,336,1234,1141,1399,1232,856,1015,1175,1011,1260,1479,1378,1069,813,811,596,337,323,383,464,709,1045,981,946,997,0,31,72,143,206,270,384,455,68,93,154,221,253,270,330,403,135,392,541,627,708,706,669,482,394,320,362,263,220,176,84,46,0 +0,3448,6193,6897,8546,10295,11175,12384,30067,40260,42405,51634,64646,54600,69966,67298,25470,29670,38527,31056,29540,41355,57070,64178,13073,25853,41480,52616,57781,75812,93713,167113,37712,43668,35616,39724,60845,61970,53734,59355,66471,38202,25798,23802,34318,20490,7324,4228,0,0,0,1,2,4,5,6,10,40,61,78,121,487,607,989,50060,45869,32520,37580,35490,30646,22010,14362,4905,10848,14826,23024,46980,53988,76360,69598,69882,57596,39978,54374,54724,54738,41390,49358,82783,64768,58586,64600,76813,69535,34896,26508,4571,3983,4286,3240,1725,1574,1907,1708,1346,4304,6391,7333,6794,7271,11106,8832,13072,11362,8138,9495,19203,16573,13579,15463,8930,10776,16446,16630,12685,13801,12819,12628,19882,18335,22144,21222,17664,14846,13529,13098,30583,28193,30620,28882,22599,28446,27936,26910,7999,8922,10440,8336,6074,9398,11514,9438,7250,6361,6185,4771,5072,4980,5048,7416,1756,2249,2444,3003,2110,2485,3120,2622,1743,1934,2332,1453,1927,1706,1434,1458,1866,1608,967,692,425,388,389,378,501,456,443,381,181,153,124,61,0,61,119,203,347,339,404,460,1593,1284,1242,1414,778,1013,1280,1456,1261,1417,1443,1118,655,512,524,273,264,588,750,1317,1006,1278,1610,1896,0,40,84,148,261,299,369,419,225,296,392,409,438,420,387,399,409,468,582,722,1316,1089,860,828,552,600,569,478,494,361,228,123,0 +0,1978,4181,4950,4859,6113,6054,7228,20662,25135,33886,59024,69269,75327,66042,71234,38786,39975,46852,48493,28183,35963,36715,42416,11580,17303,24489,29632,34291,73497,99536,165181,51217,53988,49847,47281,85528,66105,74314,84174,73637,61616,33302,27802,46110,26699,12598,6413,0,0,0,0,1,2,3,4,8,22,42,56,97,371,612,807,60334,52597,53937,46645,34652,34056,24628,11892,3166,9930,16880,24632,47918,64091,68471,48402,83526,62663,53792,48252,62110,61624,58849,71360,114316,99962,68554,60305,85990,52219,31928,19999,3679,3165,2092,1310,1071,1020,914,1046,1103,3980,8196,11036,9327,9751,13726,14241,17203,13499,14308,14678,26380,21162,13545,14988,13455,13053,18577,22486,14000,10830,11266,8451,24896,24711,26732,23910,18700,14765,14613,15481,35124,33804,25157,20898,22383,29339,26566,22198,12896,9982,11421,9122,5795,9493,10156,12119,11723,8314,8042,6864,5700,6433,6692,6719,2723,2102,2394,2859,2028,2358,2708,2508,1997,2708,2528,2176,3285,2824,2120,1585,2182,1896,1344,806,478,502,436,417,482,508,377,295,154,109,68,41,0,85,192,375,522,646,608,760,1804,1710,1360,1710,1054,1113,1375,1297,1407,1744,1594,1288,598,405,294,147,131,668,1086,1542,1391,1950,2209,2200,0,48,84,140,326,432,394,376,325,468,536,482,483,665,628,568,754,835,795,846,1528,1352,1077,1002,889,794,806,684,759,510,480,274,0 +0,814,1910,2234,2182,2402,2582,4132,8531,18014,32754,54500,63800,67944,66110,76140,51511,60388,66925,58910,39541,29882,25327,26961,6852,9876,19588,21558,26128,58759,75038,136707,60621,58445,50802,71223,101946,75746,80826,89110,88214,52044,35232,36384,42828,30828,15218,8164,0,0,0,0,0,1,2,2,5,16,21,27,40,194,367,342,76411,66463,41481,38525,38630,28715,21833,11374,1414,12314,22589,23628,51230,57242,53655,65682,85920,71111,62948,48476,47483,66145,65647,70374,99934,88807,59810,70747,81935,53198,40227,19556,2158,1418,925,671,485,563,444,435,512,4364,8123,10445,13667,16264,21322,21434,22714,19209,17765,18155,28153,26738,15773,20131,16310,19083,15680,20712,15602,14020,9422,9182,25970,22394,28974,19395,18653,16570,19577,21603,26404,23204,21888,19719,14586,16992,16372,18378,15357,14928,17023,11725,7662,7833,9379,12424,13142,11996,7271,6379,6273,6960,6648,7337,3217,2417,2624,3424,2566,2781,2673,2945,3388,3381,4195,3338,3642,3196,2084,1764,2547,2181,1558,1054,692,504,416,381,476,396,395,270,190,126,87,44,0,114,250,377,522,904,908,1412,1908,1814,2564,2164,1755,1734,1951,1686,2011,1866,1751,1274,567,474,256,126,67,876,1490,1933,2151,2482,2457,3040,0,59,122,186,308,377,436,373,389,476,665,606,459,525,722,820,835,1104,1155,1082,1332,1164,1208,1053,852,922,1336,1007,814,596,478,242,0 +0,5828,13870,34751,44772,58832,57087,55899,55225,75062,70678,70161,99794,74786,60669,77740,69956,76640,62461,78054,70259,73569,55653,66669,66458,91408,90903,82552,106518,87444,83821,93084,98252,76313,55119,46504,31965,30914,30818,26352,22942,19892,19392,16017,17126,10464,5728,2337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68617,59662,48013,31367,20265,43210,58695,71229,110212,102111,139315,131318,144765,115429,100482,71412,73755,80172,83586,106493,123316,136908,116210,81855,81403,74879,45815,42976,36162,24414,22539,12898,0,2453,4573,8668,11730,17539,18983,17716,17060,14868,12434,10197,5093,11769,17005,17960,21711,22316,26464,27048,36882,35446,31457,29919,28014,33652,29690,27585,28072,29282,22065,16227,27379,30862,47076,50840,64294,60838,64926,45802,49357,49690,41247,42125,36265,31564,26971,19335,18357,11511,9270,7596,4750,4753,4979,7394,11420,9190,5666,4966,3754,4073,4059,5663,3369,5172,5311,5258,6348,5370,3932,5414,5091,3875,4282,3404,3937,2518,2160,1990,2636,2284,2261,3437,3541,3624,3645,3009,2857,2304,1467,1216,1088,788,432,197,0,390,741,1086,1343,1047,1266,1790,2331,2348,2389,3278,3571,2819,2042,2554,2922,3090,4698,5172,5826,5479,7747,5634,5678,5548,4961,3648,2238,2492,1917,3388,0,154,325,335,502,508,759,600,682,677,500,433,552,688,1044,1165,1034,1144,1111,1083,801,628,533,453,354,366,272,219,117,82,63,28,0 +0,7272,19472,28156,36495,42168,55043,50803,50637,52822,57832,65300,100068,88425,62820,85479,76799,69096,54657,77619,71898,63413,60817,83910,79289,80705,77383,81872,110385,102007,89331,81200,110842,90270,59342,39976,35334,35258,42235,40760,30503,29236,26114,22826,11682,9394,4855,2221,0,136,283,536,655,664,556,760,948,750,712,484,308,239,135,95,68482,52414,32000,26344,22353,37301,60523,95266,174346,157763,135598,142770,127115,112043,66004,57248,51172,72968,89054,112917,103311,115202,114400,86486,52783,54120,51165,42344,31661,31240,26460,12850,0,3016,5830,12026,16963,17041,23970,23860,16081,15354,16044,11256,7616,13466,16931,17846,22948,26732,25696,29696,29376,32756,24856,23633,30812,30000,22551,22997,34370,26365,17035,11074,30908,32420,46338,45922,57920,46263,53082,53806,51316,56028,49565,41150,23817,22962,23656,15158,18967,15398,10762,13054,9630,11304,11677,11974,14038,11682,9028,6138,3368,4778,6230,8648,3954,5494,5638,6036,5417,4263,4409,5663,4518,4116,3011,3288,3450,2746,2307,1751,2923,2806,2064,2884,3389,3164,4015,3356,2369,2150,1241,961,909,748,312,181,0,307,807,953,1117,1012,1102,1488,1750,2320,2187,2448,3379,2756,1713,2210,3945,4042,4770,5588,5432,6201,5270,5242,4170,4196,4296,3461,1907,1879,2008,3180,79,216,485,584,526,564,717,632,494,616,740,737,890,1065,1201,1394,910,1122,1068,1030,725,646,702,780,656,576,449,360,305,279,309,191,52 +0,11085,21133,29679,25841,36400,41444,39533,41137,47792,45277,41392,82170,88684,90466,82777,71902,65774,69712,78802,59684,71901,62938,86468,85635,72762,46144,62952,115944,89726,93246,109896,115364,107546,68180,38042,36211,43686,41149,41126,31445,39943,36308,27394,11480,8808,5150,2358,0,335,568,854,1367,1130,1376,1719,1800,1604,1326,909,545,442,292,238,59528,39156,29091,28433,31606,42523,50687,102522,195225,221990,179200,178230,116417,95803,63674,72349,38639,47183,71650,83018,74966,68548,76271,56944,49028,53558,45318,57699,30960,30092,21566,10338,0,4515,7628,15486,19783,16810,21020,28494,18111,13386,15345,12933,10291,10405,14762,14512,23772,27260,26692,27642,32513,23579,19629,18736,28547,23787,24782,19367,29424,24878,13982,7426,33002,35768,42548,34863,39572,38320,46588,41322,58223,59635,43744,39296,19726,17575,15952,11962,14490,12672,15506,21771,18036,16862,18529,19681,16944,12353,13134,9465,4547,6389,7866,9278,3447,4218,5094,5135,4340,4320,3510,5049,2664,2437,2045,2348,4409,3442,2788,2219,2855,3038,2604,2593,3648,3112,3742,2800,2170,1808,1320,1050,840,576,325,176,0,275,608,893,985,1095,1164,1322,1505,2519,3053,2458,2378,2267,1670,1976,5636,4127,3552,3428,3838,5269,5354,4278,3356,3533,2575,2459,989,1541,1598,2442,152,321,486,734,598,716,732,745,455,770,870,735,1422,1480,1518,1744,790,823,932,834,950,923,902,868,1161,799,786,552,521,536,455,338,125 +0,9752,20137,30422,29408,26960,38122,34768,41092,41702,31950,40577,58697,64718,65316,79238,68088,79836,105286,82213,64234,63477,69916,69744,59149,59077,37570,58260,88729,97503,86739,91552,123752,109458,64631,62944,47475,43168,51247,45786,37371,39578,34620,23814,10814,9848,5946,2678,0,520,1008,1244,2344,2420,3134,2847,2470,1836,2088,1332,916,734,491,378,62893,41972,26512,25207,28063,51790,69267,96821,161003,199660,213265,149763,87900,81414,47741,60726,25513,36423,67488,79799,62887,71635,78590,82610,52190,47238,49645,53924,33314,30668,16782,8012,0,6028,12306,17332,18665,19894,22073,35105,19582,20020,15610,14494,11746,10016,12475,13890,25749,21308,18756,22808,22452,18988,13104,12590,23577,18471,18652,19098,22679,15928,11263,6601,29950,35698,43302,33740,31437,31811,53220,37872,57729,43709,45530,29948,21550,18458,19766,15230,20142,17530,24868,22350,28956,32762,29293,26993,23885,19002,19445,12992,5567,8100,9629,10444,2872,4370,4639,4964,5630,4620,3667,5541,2681,2178,2205,2322,3662,3956,3264,2463,2706,3180,3247,3422,3509,3433,3676,2990,1444,1382,926,712,640,528,351,208,0,297,460,650,803,840,1080,1097,1924,2330,2408,2252,1836,1613,1607,1693,6008,5352,3821,3610,2980,3841,4706,3991,2970,3078,1969,1682,1017,1204,1211,1950,314,674,986,1176,1152,943,1168,1215,594,996,1036,1350,1748,1853,2295,2076,680,798,892,884,843,1044,1287,1240,1438,1278,972,820,762,655,793,555,173 +0,6448,12601,17056,25723,30583,28404,25249,48339,45728,60827,44064,38557,42441,55232,69633,93497,83842,62786,75777,91592,116368,106542,95837,59812,61410,84622,75538,62828,46293,35759,30398,124495,116048,112380,85562,51777,58231,52911,48198,47322,39142,40081,30894,14280,8476,4854,2724,0,616,1159,2199,2630,2652,3927,3348,3379,2703,2813,2109,1258,1117,869,531,49094,44903,53119,41190,32436,38572,49624,81284,171004,134920,88599,96240,100718,92385,60130,62787,14449,36440,55576,68002,74883,95289,88128,89786,57586,66452,54375,46274,39319,30847,14248,8247,0,8214,14615,18300,23295,20998,28429,30309,15344,15858,14560,14578,14904,10179,9148,12132,21596,19228,12198,14094,11303,10333,9648,7351,16484,12266,11742,12424,16748,14627,10579,6220,39232,43860,38844,39414,31500,35054,31166,37063,41599,44892,45005,39143,23564,26203,21767,14454,24424,25293,22278,23945,31744,28414,29260,33686,27634,19572,10811,7705,7222,5997,7650,12948,2536,2368,3181,3950,5279,7786,7835,5852,2018,2573,2969,2456,3165,3383,2553,1939,2108,2062,2449,2828,3290,2551,2297,1982,871,721,878,727,620,459,218,103,0,186,356,596,887,796,816,839,2272,2344,2823,2778,1998,1490,1618,2435,6984,5364,3841,2789,2161,1734,2025,2354,3689,2364,1906,1340,800,1447,2078,2004,468,491,610,1045,1459,1751,1973,1922,582,746,981,1526,2054,2360,2292,1830,745,680,598,658,908,1144,1389,1502,1776,1758,1403,1142,1060,1001,691,507,282 +0,5406,10582,13662,20852,23985,26469,23822,39367,41948,52262,47227,36594,29914,42880,42174,88794,90128,50835,74907,75504,83028,80902,85866,59252,54604,56876,59291,48407,31718,33206,29860,119466,119600,120542,91660,50115,63396,57149,58284,51992,38279,39789,31442,18804,11535,7640,3964,0,596,1311,1879,2799,3553,4167,3596,3967,2992,3412,2054,1318,1002,820,525,44494,59163,61450,52960,35694,44927,57176,77258,138280,120558,77891,88708,73308,71334,57061,44239,18168,31390,40896,56815,74218,83627,71895,62070,66130,51324,48668,41767,31001,23382,12831,6399,0,6765,11284,16558,25581,28657,33294,37205,24989,24006,26588,21404,30137,26696,17982,23206,15988,14598,11573,10474,8112,8058,9298,8791,19598,13274,12324,12345,13709,10923,9178,5130,49123,44486,40942,35075,30652,24801,26681,25968,43788,38524,34280,30644,17469,20604,17953,14273,23499,27825,29330,26077,34157,27150,26829,26194,21384,18871,11066,8888,10159,8561,9914,13790,1715,2155,2994,3619,4769,4820,6706,6464,1944,2560,2042,2228,3241,2938,2427,1676,1920,2020,1989,2409,2412,2328,1805,1385,823,705,897,726,457,436,218,98,0,192,426,567,748,912,1284,1414,2780,3373,4378,3356,3367,2924,2520,3392,4699,4524,4234,3965,2864,3096,3521,3265,4308,3362,2684,2260,1320,1498,2222,1779,615,832,1044,1512,2161,2167,2356,2384,1522,1518,1184,1707,2377,2022,1808,1842,553,662,701,768,927,1181,1479,1320,2136,1896,1656,1390,1362,1070,687,558,342 +0,4135,7438,10925,18527,22289,26185,19601,41830,43154,40390,41156,32660,29591,24618,30210,85658,69688,60482,77122,39954,76496,89812,87673,70643,66125,45379,39268,35934,31336,21521,19791,121381,96817,105050,97371,51331,72437,73662,76952,40463,38619,31668,31441,21910,13139,9812,5369,0,676,1159,1844,3618,2966,3661,3906,4372,4219,3166,2095,1272,927,757,581,40450,48594,66591,53662,39843,48229,61130,50537,159010,114309,68808,49792,54227,54086,35988,35502,15974,28161,42379,59176,58914,61209,50499,38544,54797,45903,40031,31116,27413,23363,12865,5426,0,4452,9584,12456,24263,33833,36106,35868,27574,28321,32297,27662,40758,33056,29317,25711,16244,13486,9860,9343,4694,5658,8722,11385,18881,16978,11934,9200,11139,7828,7924,5329,50696,47741,47286,35809,20943,17936,17192,19272,31520,21933,22418,13866,15129,16714,12746,16992,18018,19612,29496,21944,33148,27588,18618,17130,21880,15608,16466,13655,10786,9642,9780,15675,1251,1643,2458,2843,5454,4671,6068,6942,2372,2201,1926,1613,2686,2346,1594,1052,2507,2678,1958,1503,2689,1640,1314,1066,562,577,730,655,498,376,178,85,0,232,401,650,637,1018,1378,2369,4209,4022,4834,5046,3944,3648,4002,5687,4594,4976,4123,4947,3440,4535,4407,3729,4645,3524,3471,2931,1601,1481,1732,1428,983,1146,1454,1833,2873,2898,2652,2942,2038,1605,1734,2273,2457,1994,1744,1640,447,631,791,1183,785,1415,1644,1944,2363,1688,1752,1627,1495,1075,1016,828,481 +0,4257,7816,11326,12360,19380,19030,17826,32036,28630,30720,31664,23514,16964,14738,17086,61095,64060,48788,47223,34944,40954,55881,65800,51697,54041,39781,28661,27245,21378,13860,12728,110800,119432,92885,110376,94604,83586,89274,82038,51034,43752,31094,30810,23119,16747,12231,6094,0,821,1412,1980,3093,3782,3743,3850,4382,3558,3398,2172,1137,864,578,526,26668,40146,64733,66578,61247,59514,76750,63360,144821,89411,52478,39747,29844,32353,22744,19410,13045,23350,34090,35518,55324,48392,39668,35200,48939,42571,42110,27900,26934,19765,11122,5691,0,4430,10174,14450,19839,29802,36146,31046,29422,34626,29698,42286,68592,44547,44310,42443,9171,7778,6541,6470,5082,8056,8395,14531,17261,15998,13506,10127,11198,8025,5434,3712,50755,35576,45656,35574,17260,17630,16382,16326,15146,14310,17337,12502,13736,13053,14199,16080,22434,26776,43185,42406,35657,33294,21064,24876,27292,22979,20328,13902,10960,10628,8246,12392,1106,1826,2214,2670,3390,3742,3828,4336,2472,2156,1800,1884,1917,1653,1213,786,2530,2446,1460,1360,2034,1324,972,963,733,606,758,572,357,249,144,68,0,192,378,762,840,1236,1456,2562,3738,4401,4607,3674,4722,3813,4014,5584,6260,6120,4662,5554,6807,6366,5712,4813,4071,3405,2673,2490,2617,1984,1672,1080,1401,1360,1552,1818,2931,3051,3415,2920,2484,2272,1724,2178,2163,2226,1504,1516,245,507,877,1064,1170,1481,2140,1744,2146,1894,1851,1862,1439,1184,1132,666,532 +0,5765,10527,15853,24815,29213,37027,31634,29727,26777,23125,18650,8970,8725,10161,8214,53771,58158,68074,68653,89298,58592,52559,55610,46006,39105,25982,28293,34105,18472,11575,4664,113095,104342,80080,45940,19237,29156,39738,37298,46296,37348,21307,16332,7894,5825,3848,2011,0,322,723,853,1215,1149,1616,2868,4134,4527,4334,3365,2678,2182,1012,602,15566,45006,62758,70202,81005,99951,106742,83608,83268,80648,63033,48795,44129,27772,21516,11608,15177,12241,11216,10353,7071,13117,22381,26715,42572,38355,25435,24119,31223,22793,11875,7044,0,5096,10214,12178,17460,30097,40229,47844,40736,46933,47792,48286,63964,74938,60957,58056,2824,6036,11991,15032,21799,24612,30195,30214,22126,13120,9824,7370,5373,3762,3170,2174,37596,37447,50796,47065,37571,33004,28384,19914,4890,3894,3307,3450,4933,9545,11260,16981,28948,33634,38732,37688,48343,49031,45515,30210,28659,19221,16748,15515,16690,13341,16058,14833,1409,1571,1563,1495,1906,2610,2714,2781,3014,3072,2772,2532,1725,1115,1023,478,1907,1572,1488,1358,1666,1746,1337,1358,929,916,870,836,585,391,303,176,0,626,1499,2072,2965,3161,3757,4217,3890,4081,3642,2937,1450,3557,5222,5683,7376,7840,6459,5054,5246,4693,3982,4594,3848,3060,3495,3519,3417,2982,1879,930,1475,1368,1066,1624,1831,2167,2640,2489,2978,2462,1605,1836,1905,2108,1671,1393,0,121,238,424,486,912,1384,1668,1701,1853,1701,1434,802,754,717,646,542 +0,4398,8375,14386,17532,26866,33559,27900,22818,21762,17354,11503,8613,10218,9702,7384,41084,51268,60540,75322,91061,83242,49778,55356,35210,33704,26098,26256,21527,15595,11956,5494,112198,90652,76122,53685,26860,31205,36907,51445,31144,29272,18934,14658,9914,7020,4471,2328,0,698,1403,1710,2412,2542,2400,3366,4250,5044,4940,4048,3441,3288,4026,3254,11864,37656,52549,57709,92620,89139,87455,96584,88222,87237,64058,69129,64184,60661,61882,38986,40475,33903,28965,23148,39278,45522,44156,44066,28437,31330,31346,29230,27880,18988,10032,8549,12520,15470,20663,20787,18036,33002,40610,40866,43135,57092,45862,59372,45394,55814,67908,71454,4975,7703,12344,12534,21973,25058,23848,23075,22926,13328,12057,8686,5320,5230,4469,3334,23940,31744,40004,38468,37390,34891,28160,17248,4797,3942,4027,4046,5512,6582,9833,11126,28910,33122,37344,39118,47906,40140,43301,32519,30195,25206,17082,16658,13320,13587,11421,10277,1894,1503,1907,1812,2227,2072,2185,2512,3828,3188,2968,2234,2005,1838,1334,1049,2823,2443,2449,2414,1837,1620,1121,980,753,742,541,609,458,334,306,156,0,590,1383,1716,1918,3020,3033,3338,2754,3349,3781,2634,1903,4449,6348,6038,8132,8005,6552,5726,4846,4591,4162,3483,4208,3719,3035,3766,2576,2390,1684,1210,1354,1162,1332,1566,1718,1934,1974,2626,3244,2306,1596,1555,1968,2017,1934,1676,98,162,248,372,495,731,1342,1410,2120,2136,1433,1135,1074,946,1055,894,515 +0,2676,6526,9648,14124,19208,21620,24526,19714,15109,15698,11545,10988,8160,8095,5342,42794,43254,52262,69501,69344,54538,57802,43974,25079,23830,19038,18871,16726,11709,9622,6142,84130,87298,72910,50323,33728,41761,50820,54722,26180,24910,18814,15945,11300,9444,5481,2748,0,966,1790,3051,3468,3165,3643,3614,5792,4732,5342,5686,4240,5795,6258,5916,12680,35352,53190,60037,91956,84252,68510,105235,72077,65542,86764,88223,88272,78594,81668,60901,59796,46547,40526,42045,66279,69810,83938,75645,22859,31644,31482,34879,23573,19761,12305,10761,20976,27474,27348,22964,25406,23962,29594,36413,64817,71508,57987,69420,37201,38450,57064,54006,8874,9850,9486,11659,21934,22636,17526,16699,19877,19942,15463,14816,6891,6271,5737,3483,21518,27026,30519,24724,28188,31169,23960,14246,4988,4276,5151,4679,6181,8770,8882,6919,19829,20862,31487,41280,34643,41510,35332,31280,21993,24790,19812,12907,10450,11708,9220,9338,1830,2136,2110,2228,2105,1984,1414,1905,3876,3320,2394,1848,2553,1618,1233,1507,4255,3843,3214,2947,2246,1639,1045,1036,598,452,468,456,320,272,237,110,0,504,1074,1409,1675,2431,2832,2824,2590,2470,2986,2702,1737,3771,6481,7028,6408,5834,5426,5109,6159,5007,3739,2971,4188,3472,3758,4544,2500,2096,1844,1388,1664,1273,1154,1106,1433,1352,1704,2280,2459,1560,1398,1107,1509,1257,1553,1673,196,298,305,382,392,537,876,939,2105,1553,1688,1180,1253,1050,1131,757,400 +0,2130,4338,8873,9691,12221,16742,16928,15182,12510,11488,9217,10799,8967,6635,5418,31957,40392,35828,53327,51715,46552,51983,35658,16752,17290,17907,15210,12232,12744,11720,6573,59807,63872,41913,36996,28843,42086,43105,46829,24859,26720,23732,17370,10737,9091,5294,3315,0,980,1841,2808,4147,6018,6113,5862,4768,5729,6302,6420,6402,8791,8534,10160,14193,28900,42099,41802,65645,78102,72202,98186,70896,63402,109222,101718,80036,80364,81140,80119,56042,54308,63036,55036,83948,87538,84980,84636,21642,21574,25628,29320,23464,23545,15267,20804,31344,32240,36380,37046,31460,34172,36994,39647,67600,59290,57361,66862,45430,60128,51007,51489,8816,9742,7082,9844,13270,15960,14893,12806,24994,18804,20733,15074,10888,8333,6504,3646,22074,26834,26933,20891,19440,20090,18472,10565,4695,4780,5003,6039,5776,5824,7884,6366,13670,17582,22161,28186,32480,33504,27189,25020,27623,25522,24688,18768,8916,8970,10392,8590,1497,1698,1648,1769,1440,1509,1335,1464,3673,3202,2336,2246,2414,1708,1478,1514,5138,4608,4418,3500,3055,2246,1305,926,606,414,375,432,292,266,159,98,0,455,750,1098,1786,2263,2708,3116,1553,1868,2211,2504,2086,4632,5523,6500,6645,5268,4988,5352,5240,4516,3569,2440,3285,3276,3216,3556,2807,2650,2586,1894,1696,1276,1200,1395,1562,1700,1858,2306,1787,1357,1066,1183,1573,1496,1786,1582,342,438,412,384,470,622,835,799,2257,1902,1655,1046,1269,1214,1168,740,523 +0,1499,2973,4847,8845,9502,7459,5980,7225,7764,9716,7480,7204,8450,7162,5866,18695,28036,39944,48521,47054,29514,22130,23916,11237,14645,16725,14173,13708,10798,9918,6292,26797,29693,34610,31970,31514,43157,51564,55577,32872,19292,14707,15946,13472,12713,8220,4114,0,1316,2945,3204,4945,7350,9285,9908,5838,4402,4608,5697,7861,10343,10357,10712,16748,21421,34759,49330,55575,56810,52829,68725,65382,75301,82811,78429,106962,88359,89609,83427,71403,64055,78588,100345,97764,93718,92516,85726,15851,15862,15755,20513,29873,37800,40832,39103,34639,36920,39326,47310,40874,36826,45165,45425,56822,70700,61523,53588,51000,49454,56343,61409,12350,12535,11899,12599,10872,9582,6404,6455,26718,18232,17037,14447,11732,7357,6536,4549,17652,16794,16922,19122,17702,13939,6980,5285,3983,3700,3652,4322,6284,5538,4371,3940,7614,9389,9788,15658,20792,15598,16148,17585,25359,22311,17713,13819,6976,7164,8194,9026,1872,1602,1602,1259,1476,1418,1360,1189,3986,4092,3549,2908,2871,3037,3176,2394,5570,5747,4378,4548,3342,2732,1597,1098,582,551,586,550,344,277,185,86,0,466,836,1040,1460,2154,2130,2300,641,953,1166,2000,2408,2714,4008,5469,6225,5173,5968,5053,4424,3375,3504,2214,3144,3427,3585,2866,2812,2456,1528,1618,1196,1071,1036,1397,1612,1594,1464,1642,1139,1059,1089,1397,1238,1576,1438,1297,607,456,483,618,623,805,825,796,2577,2247,2014,1395,1135,1135,996,892,778 +0,1084,2146,3507,6202,7042,5676,5380,4839,5336,6578,6368,5044,6157,5781,4706,10816,16306,31036,32832,31790,24124,16402,16856,7947,9952,10500,12746,11939,11113,9764,7610,27361,26692,29064,34038,31251,37684,35030,41870,29550,23538,15120,10872,11085,7732,6994,3252,0,1298,2516,3650,4857,7019,7046,7622,6124,6460,6149,6728,9981,11588,9765,10768,16032,23036,27782,42486,41025,47960,55710,78802,68070,73311,73566,84660,117667,94893,123500,103283,84575,76496,102641,104924,86592,93522,106912,108474,36912,29826,26667,26908,41434,42729,48959,51438,36362,29442,37552,37200,26511,31154,45939,41370,67318,64822,72151,59919,39199,53584,52041,44108,21370,16746,14664,12744,9076,8494,6600,7036,28151,19200,14479,10951,12163,8596,6522,4216,16525,16998,10978,15332,13439,10774,7022,5636,4508,4682,4982,6338,7136,6648,5783,4771,10930,8213,11251,13774,20062,19548,14764,19775,17273,15368,14326,11549,9526,7208,6151,6183,3948,3274,2667,1626,1779,1757,1846,1762,4154,4772,3441,2980,3133,3558,3431,2702,5478,4762,4134,3777,4631,2998,2159,1442,410,496,492,428,257,202,141,68,0,336,655,868,856,1232,1406,1878,501,795,1323,2228,2859,3778,4461,7126,6088,5860,6918,4418,4269,3622,2791,2098,2678,2456,3426,3034,3171,3206,2539,2218,2086,1664,1593,1806,1648,1448,1535,1894,1436,1308,1234,1008,1176,1106,1001,1202,886,858,967,1040,917,1049,996,1056,2631,2218,1802,1798,1566,1134,1080,850,738 +0,863,1502,2174,5139,4546,4161,3560,2483,3320,4143,4555,2955,2520,2650,2644,7901,12068,13319,16608,19780,19498,14250,13128,6305,5988,7761,9292,10879,8287,8828,8956,19914,26382,24530,27048,22368,26450,31231,25740,29274,19551,15828,9369,6120,4352,4054,1792,0,1400,2479,5142,4487,4946,6456,8293,4727,6849,7800,8122,16261,15042,13276,13712,19471,25843,29800,35071,46633,54713,66545,95509,56154,69883,67664,88519,149236,166047,136012,104214,77599,89201,97859,136121,118032,93768,103408,106448,50108,42350,33216,35827,45227,38161,44120,39148,28662,37336,34374,37296,22278,32144,42566,58439,60317,60184,58948,52106,38313,42120,37466,33381,24536,17601,18811,14123,7771,7924,7873,8292,23074,17165,16035,11376,12661,10174,7074,4714,14340,10252,10455,10610,15566,9982,8855,5714,4436,4980,7724,7632,6382,7313,6296,7524,11320,9474,9079,10985,14408,14036,19037,19531,15509,15183,14784,11457,9710,8055,6688,6726,4829,3196,3136,1744,1636,1676,2010,1659,3134,3134,3480,2767,3076,3777,3926,4733,4450,4251,3302,4024,4691,3610,2010,1114,404,389,254,194,108,104,68,41,0,236,426,446,590,864,1156,1252,390,737,1192,2222,3260,4530,5600,7590,4001,4568,5682,4459,2829,2115,1769,1657,2280,2535,2492,2756,2570,2970,3094,2322,2420,2043,1911,1851,1794,1583,1888,1675,1386,1129,1106,845,756,820,894,1185,883,919,1186,1413,1004,1227,1418,1736,3114,2838,2446,1950,1555,1102,988,675,521 +0,458,741,1050,2990,2882,2410,1848,1142,1630,2188,2446,1714,1650,1526,1350,3332,4664,7214,8071,9976,9650,6642,6836,2870,3730,4650,5370,7831,9167,9633,11212,16754,22152,21447,20297,24307,25625,26614,22112,25162,20196,12966,9540,5609,4776,3606,1978,0,1404,2079,4087,5941,6804,6434,7416,6068,8506,8844,9842,16074,15862,18244,13257,18601,25606,31917,38129,53504,57290,77616,93712,71480,69458,67328,104254,151868,160661,122411,105716,99764,115788,128727,110364,108608,97802,102881,104376,72876,78048,54450,45040,42990,40717,33578,39115,43874,38198,29358,34943,25824,31545,43252,52772,71081,63874,57353,49566,46579,38374,34783,30179,27675,21313,24422,18024,9088,11193,11107,8213,16582,14584,11934,11934,11668,9388,6106,4796,9726,8068,7884,7980,9076,5819,5564,4540,4408,6322,8476,7545,8119,9736,10357,9668,12536,8907,6865,8587,10756,12560,14129,20213,14452,15674,13450,10795,11018,8562,7367,7182,5302,4322,3312,2002,1531,1941,2453,2004,3158,3636,4018,2624,2798,3338,5036,4886,5488,5000,4802,4504,4493,3521,2028,1285,232,228,126,114,64,52,34,23,0,134,234,257,350,444,678,590,210,881,1403,1888,3293,3566,4142,4940,3735,4572,5874,4972,2960,2250,1432,1360,1743,2066,2167,2891,2278,3122,3498,2792,2148,2626,2366,2286,1891,1670,2096,1639,1456,1282,1040,850,1002,986,792,1020,895,1000,969,1421,1604,1480,1533,2159,2328,2538,2384,2114,2070,1748,1607,989,668 +0,757,1407,1784,2163,5502,10396,17121,19926,21214,17539,22191,29510,30643,33818,32444,20699,14903,7348,5517,2180,1586,1094,574,0,2526,5074,9491,15039,18454,22045,24888,23131,25330,37205,32558,30119,27725,20272,24294,24282,15585,12096,8214,3558,2611,1413,787,0,62,114,162,166,412,633,900,1177,1435,1461,1724,1858,3670,6761,9164,8578,9890,8728,7639,8801,9067,7701,5238,5375,3817,3734,3286,3896,2626,2299,1142,0,2150,4094,5809,8154,10489,11077,12569,13036,13082,14307,14507,13080,16163,14598,12870,10088,7501,5464,6784,6720,8783,8378,9888,9508,9843,10550,9399,9519,16215,20629,24735,21099,33733,40848,44352,40667,38951,32555,26698,27128,27054,20416,9757,3453,3976,3668,3151,3281,2642,1954,2462,2200,1558,1355,1558,1882,1505,847,709,660,555,318,167,0,16953,32838,35793,53209,60467,66699,59177,60754,81825,90284,106582,107215,105888,71866,74591,96912,69096,43014,30071,14357,8329,4331,1831,0,0,0,0,0,0,0,0,0,5659,9687,12188,17277,23002,22766,26924,36250,36591,41622,40238,27398,34066,34417,35451,28272,36962,37985,38316,28298,25563,23673,17572,5706,4978,3053,1975,1609,1074,756,354,0,3462,6419,7244,9678,9032,6872,8873,11975,16535,16012,18913,21196,25104,23764,24123,23284,27068,23140,20211,23348,20273,18364,12912,12811,10118,7705,7016,9585,5678,3239,1918,0,0,0,0,0,0,0,0,0,254,426,638,760,877,782,732,899 +0,588,1258,1694,1696,4169,7790,11195,12274,15664,18052,19282,27458,23558,34031,29196,47434,32530,17122,14568,7607,5830,5414,2240,242,2192,4928,8370,14346,15845,17697,17913,27319,34477,39950,39167,26971,30103,29774,22236,23635,18545,13664,9990,4817,3501,1600,974,1662,1746,2069,2280,2870,2286,1325,1091,1053,1459,1736,2016,2476,5142,7977,8205,7296,6534,7084,5940,6762,6515,8508,6258,4333,4406,4164,3535,3318,2215,2246,1035,0,1674,2963,4999,6928,8137,7156,8111,11842,12976,11966,12580,11191,13478,14108,10972,9456,7856,6036,6789,6953,7208,5727,6293,9960,9477,7862,8530,10868,11672,17056,16831,17689,30473,44120,46890,41234,42998,33046,29756,31728,22209,16462,10866,6354,4270,5365,3580,3696,2690,2849,3088,2117,2326,2404,2486,1984,2028,2384,1806,1487,992,566,350,10194,22887,27073,39734,48872,58874,57949,62300,64642,71568,81978,91474,98744,89670,74021,66756,131976,116514,85265,41112,16603,11484,10308,4406,0,0,0,0,0,0,0,0,0,4675,10660,13578,18679,19921,23534,22968,27353,30730,37349,37304,33899,32360,39370,33735,39986,41910,38637,29992,30840,34277,29714,18476,7595,5236,3969,2793,1504,1212,1250,658,0,2607,5218,6882,7716,7656,8505,11158,15352,16574,18433,19235,18000,20024,22467,23496,19389,17478,21968,21155,17906,15081,12584,11796,9553,6990,6258,7764,8657,5649,2611,1472,599,521,426,447,450,360,184,162,1383,1006,890,944,832,902,1030,1185,1295 +0,416,994,1671,1312,3704,5684,8355,10744,13827,15964,17952,21231,23439,25980,16220,60171,40168,34373,23980,12742,8801,8300,3854,521,2287,4792,6007,14958,11903,12744,12870,23798,23261,33900,36547,23912,22480,30554,24380,26607,16712,11910,6706,5373,3784,2310,1566,4039,4083,3688,4784,5198,4436,2658,1589,1234,1800,1880,2886,3825,5175,7106,6374,6106,4667,4002,5208,4523,5153,6609,5145,3287,3670,3529,3068,3128,2003,1720,924,0,943,1928,3182,6107,4798,5778,6632,11427,11408,10928,13191,10318,8368,9646,10597,7176,5939,6756,5847,5838,5517,4804,4196,8322,6861,7120,5259,8846,10570,8988,10764,14910,28850,37056,48371,39137,42008,36826,26011,26518,18248,17698,13376,9410,8724,6484,4452,4082,2898,2913,2646,2129,2648,3966,3922,2441,2958,3576,3371,2029,1840,1086,568,24225,25649,25784,28866,55308,70882,70032,72625,53330,70332,74036,86659,59506,59027,63342,74736,191202,172652,100953,63420,23275,17183,12892,6799,0,0,0,0,0,0,0,0,0,3758,8294,13170,15994,19044,18270,21283,17488,30437,38670,29988,36713,40780,34113,30401,41731,38046,29144,28626,43183,29075,28906,19426,9386,8121,5225,4035,1996,1514,1530,836,0,2804,4800,6785,4018,7458,8896,11063,17006,18475,17096,17167,20581,25388,23914,18282,17934,17742,13686,12413,8817,8371,11810,8643,4987,4476,5056,6708,8664,5994,2792,1524,1122,979,970,894,1037,688,444,338,2742,2402,1295,1796,1283,1149,1008,1274,1392 +0,620,1333,1566,1550,3132,3777,5932,11657,18515,24021,25523,24467,25300,22465,11546,69505,48651,36020,23614,17819,16726,18030,8952,809,2014,3288,5109,9719,9365,15006,15923,27036,25149,38109,33908,24934,23546,23394,20184,22780,18356,9910,7294,4238,3068,2548,2118,6500,6624,5588,7260,7360,5428,5317,2940,1144,1956,2279,3382,3700,4246,5981,6740,3921,4251,5074,4837,4842,5938,5630,5036,3983,3120,2984,3292,2749,1924,1938,950,0,876,1453,2870,3978,3911,3938,3417,8240,8082,7242,8637,7316,8524,7872,8228,8628,7590,8033,6298,5751,4884,4674,5601,6684,7124,6087,5920,6630,6539,6275,8411,20095,27820,28586,36934,40590,33520,38322,34314,34193,32920,24871,18052,15982,10456,9277,4733,3639,3314,3632,2812,2194,3708,4318,4342,3954,4380,4742,4500,2943,2219,1325,672,26754,24986,27001,31576,47353,54294,56814,79188,52692,62560,64482,76024,64593,70367,85939,87967,161049,166382,98218,72502,25380,25074,16676,7676,0,0,0,0,0,0,0,0,0,4409,11254,12520,13448,18606,17736,17314,17021,24712,38087,34633,34669,39833,39070,52310,40144,28860,34872,26322,34148,27222,22354,16706,10419,9036,7465,4989,3274,2319,1760,992,0,1638,2802,5088,3156,6402,9798,10570,21928,14740,13361,17046,15560,19832,19694,16191,16490,16645,12456,9954,6332,6490,8075,6000,3506,4125,5073,5760,6549,4664,2641,2311,1816,1846,1438,1253,1361,1172,777,588,3970,2560,1487,2038,1525,1578,1424,2054,2105 +0,514,1036,1382,1929,3132,5294,5343,15805,18622,21141,20280,21360,18090,10881,7242,67191,58048,54414,40042,30400,26124,14777,7163,850,2213,4122,6279,7249,7800,11534,10068,25183,22535,30239,34417,28393,22032,23691,19172,24288,18787,18834,10076,4986,4956,3333,2873,6857,8888,11338,10970,10202,7373,5546,2742,776,1752,2598,3344,4398,5221,7140,6229,3223,3531,4886,5175,6236,4284,4424,3602,5381,6042,5336,3690,2510,2064,1567,713,0,460,974,1210,1749,1674,1971,1844,4948,7432,7593,7266,6348,7543,9585,9024,9059,7500,6622,6410,4414,5620,7301,7844,4513,3790,4186,4300,4668,5018,6117,5665,28072,33621,39080,28013,30308,25390,23517,20689,37480,31455,19998,16908,18766,13781,8056,4995,3165,2713,3043,3785,3310,3412,3386,4016,6023,5250,5312,4946,4418,2995,2033,1149,34855,31610,39646,37763,32325,43750,56116,83597,51105,62643,70637,61345,62752,89849,100101,93170,187000,180676,134064,93338,33206,20558,12960,5340,0,0,0,0,0,0,0,0,0,4582,8043,14760,17362,13077,10210,14176,14779,22914,34100,41308,34920,36047,50232,66537,47643,42366,55558,49716,34518,30547,16740,14111,13405,9888,5731,4999,4180,3364,2830,1184,0,809,1782,2600,2881,3832,5074,7598,21339,17848,17458,14917,16294,14760,9287,11870,17222,14595,9189,6019,3282,3118,3083,3746,2454,3455,3333,3290,4864,4630,4026,3387,2681,2115,2247,1810,2256,1865,1832,1054,4214,4414,3289,3174,2130,2697,2499,2658,2820 +0,367,738,896,1757,2766,3679,4422,9396,14786,15807,15906,16446,14238,7653,6344,75651,54616,51543,41908,40762,33187,19755,12748,3204,4790,7325,8758,7372,11406,11831,15830,22064,24687,32613,30669,32971,23836,24900,20666,24324,15796,14594,12886,7799,6176,4501,3229,9159,10948,18314,15776,16233,10456,6623,4030,584,1578,2025,3535,3781,6200,6379,7836,4719,3522,3944,5466,7112,5828,4220,4371,6210,4520,4196,3512,2992,2174,1503,780,0,398,650,962,962,1080,1082,1202,4170,5283,4684,5730,3574,5264,6066,6784,6951,6064,5935,5000,3063,4564,5752,5451,3109,3366,3536,3306,2740,3890,3665,3980,27018,32121,35743,27054,44736,36705,33951,29448,32600,23898,21356,20624,21502,16108,10300,6825,3051,3588,2803,3692,3423,4528,7132,9346,8984,7306,8153,5465,4608,3494,2112,1164,28646,40977,39435,48288,36257,55250,59768,81174,58079,59228,55351,65166,53469,82648,90839,71420,394162,242357,180076,112724,49117,40637,24862,13132,0,0,0,0,0,0,0,0,0,3290,6250,9871,11244,11920,15352,16056,17158,24024,35845,29316,49039,52988,65952,74206,52566,45320,49495,42431,37107,26326,16119,16362,15109,10890,9249,6147,6235,4140,2897,1467,0,992,2281,2380,2900,5464,5568,8162,14912,19762,15802,16139,17704,13653,9585,11474,15442,13117,9513,5421,3326,3790,5047,5711,5144,5316,4602,5157,9390,8593,5690,6238,4888,4257,3980,3686,3345,3348,2963,2516,5146,3946,2760,2654,1824,2528,2633,2666,3032 +0,400,674,872,1318,2388,2918,3716,6149,10368,12006,15982,9884,6982,6366,4398,59477,48855,51655,34896,56979,38579,27614,17306,5116,8433,10446,10948,8930,9652,12854,17259,20661,25706,24874,18774,26918,22560,24952,23983,18011,16766,13645,13774,10445,7034,4985,3393,15874,14927,20697,16605,18656,11917,9982,4426,243,1301,2370,4021,4990,6984,7313,7676,5948,4046,3813,6660,5778,5144,3901,4146,5064,3585,3268,3611,2551,2094,1586,926,0,278,546,842,546,638,610,779,2732,3628,3648,4395,2372,4042,4894,5687,5388,4765,4310,3618,2864,3402,3593,4293,2978,3145,2914,2271,1522,2146,2612,2822,32862,39456,33838,22118,45056,34794,36645,27770,26646,23691,16223,22220,20624,20309,14429,10306,3233,3723,3625,3358,3328,6352,8508,10968,15232,11037,8786,7279,6016,4974,2368,1223,29070,40503,45572,41827,47813,74430,90750,105281,63447,70572,63094,55506,41637,47054,66726,55822,472640,404950,241540,162770,77422,57400,46403,25722,0,0,0,0,0,0,0,0,0,3105,7178,10081,10503,13925,15784,16516,26461,24702,31742,28096,57048,79878,77648,81402,42721,52722,45273,35525,30600,22853,16302,16271,15486,11284,10038,6826,7233,6567,3918,1983,0,878,2106,2310,2174,5150,8396,11839,13805,15832,18916,15952,14343,13423,11084,12660,15841,11824,7733,5312,3141,4786,5524,6378,7212,6150,6652,6437,12835,8546,8255,9454,6662,6564,4648,4469,5993,5778,3846,4032,4826,3863,3301,3221,1200,1518,2574,3854,4290 +0,154,356,413,785,1331,1705,1749,3411,4972,5448,6787,4726,3707,2568,2252,70782,57712,47793,44904,64338,39243,27466,17997,5884,7307,11151,13442,15113,15913,13988,18567,20942,23633,27429,23324,24331,20144,19289,16329,14879,14248,13031,9934,12488,7945,6006,5474,18988,24686,31598,22622,16918,15666,11224,5246,106,1038,2180,3092,3757,5540,6279,7978,5300,5002,5623,6396,7079,4874,4009,4110,4369,3992,2951,3104,3040,2001,1831,908,0,128,306,444,290,317,344,415,1543,1635,1637,1584,985,1720,2252,2916,2317,2676,2294,1792,1234,1774,1559,2068,1521,1636,1568,1192,675,1136,1193,1146,31613,31868,28010,24621,40258,33674,31949,27300,30910,32788,20705,27206,23391,23887,20478,14476,2653,3306,4656,3926,5138,7202,9884,16766,19616,15131,11694,8486,6593,4890,3558,1710,34786,49316,43580,51820,55292,81212,66910,94066,72443,66794,43860,39950,40463,40639,39754,32917,413263,361170,224652,170042,146742,86500,54960,23854,0,0,0,0,0,0,0,0,0,2754,6611,7920,12332,13930,18589,21936,28686,29910,34642,40696,47984,69908,71809,65412,31396,41247,37718,37624,26289,23895,16330,12970,10427,9596,8614,6921,6914,5432,3856,1879,0,1083,1882,2171,2253,5298,9737,9506,14984,16936,14380,16302,11596,13660,11670,11403,12338,10126,6404,4910,3596,4278,8145,8296,8988,11870,11304,11018,12136,13026,15925,12772,7265,7366,5038,5616,5544,4244,4944,4664,4204,3596,2898,2404,1360,1846,2543,3123,3883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62127,59684,71612,65214,60962,49630,39684,25867,7218,8868,13779,15786,19820,21973,23231,21388,20442,23625,30556,24799,23932,24890,18632,12403,10177,8295,7856,9863,9322,6141,4616,5083,27172,24488,28582,24913,20889,16098,9208,4963,0,2238,5576,8108,9081,12456,12589,13743,7011,5278,4373,3347,3579,3555,3589,3995,3918,4398,4881,4322,3124,1994,1571,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25176,22101,24452,21500,11445,14230,15240,23452,29354,35464,37803,38784,29011,21446,20334,16209,2345,10934,15990,20606,21015,25702,29281,24849,21008,18324,19752,21834,18253,11712,6052,3033,51974,44276,25965,20290,24691,38380,44188,51485,62460,48893,28538,19496,6552,5345,4430,2002,553573,476572,510933,508509,382949,272691,250182,108901,0,0,0,0,0,0,0,0,0,1396,2964,3476,5306,9866,11373,22082,29404,21300,21766,29371,31482,48761,53589,55824,29360,32700,35640,37296,30379,22968,12525,10211,9346,8256,5448,5133,5705,5044,2831,1275,0,2839,6427,9308,10430,10331,7308,8590,12438,13481,14495,9648,9239,7122,7206,7958,10315,11211,10336,9275,6877,6445,8612,10950,9774,8415,6798,9200,12432,14220,14048,15648,7867,7298,4529,5840,5336,5482,4544,4275,5218,4297,3769,2966,3306,3142,2928,3461,3601 +0,586,1128,1662,3534,3353,3092,3048,5376,9220,12518,17467,14583,16010,19538,17790,57998,63122,75816,57522,46494,47634,54624,48544,15318,19629,21772,21126,34232,28040,28520,28645,17142,21850,25204,23787,18250,18582,13715,14640,11123,9806,11642,10645,11556,9692,7305,5814,28095,22606,23333,23828,18880,18810,14807,9592,971,3511,5224,7014,7564,9697,12068,11118,5010,4306,3729,3148,3197,3446,3182,2977,4150,4520,4018,3404,3451,2180,1235,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,811,941,1121,1072,945,883,727,508,510,500,410,192,629,1077,801,24567,22480,23418,18862,10484,15162,12278,17822,21052,27957,31127,28584,32354,23244,18576,12379,3267,9146,11296,17250,22976,28868,29952,25830,18963,25043,26564,22244,23081,19646,14656,11281,45752,44446,32501,38340,27217,33538,41734,49554,49137,42308,28372,21259,7882,7237,5927,5228,497662,572082,476519,450248,395294,316563,197239,111378,0,0,0,0,0,0,0,0,0,2222,4172,5214,6346,10174,11609,20092,31124,30654,25602,38007,33487,39464,46153,68072,24791,29812,39014,39359,33984,24581,13533,10043,7213,6526,4730,4150,5228,4012,2658,1074,0,2384,4586,7653,10030,8390,7727,7802,8170,10462,9996,7577,8086,6236,6499,7213,8587,8222,9470,7724,6886,8143,7234,7968,8592,8098,7181,9647,11678,12298,13017,13738,7263,7732,7362,7061,6862,6350,5639,5070,5200,5586,5293,4924,4795,3817,4978,4111,3337 +0,844,1964,3176,6657,7933,7674,5697,9400,16442,21377,31066,35929,29402,36381,29915,53628,56922,56232,43898,47912,56463,68420,60148,28266,27128,23471,23776,39960,43126,37163,27609,20393,24543,21274,20098,12587,9977,10600,12662,13935,13132,13004,12269,13775,12860,8782,7396,20679,20613,22930,27271,25406,17746,18214,13914,2258,4144,5918,7964,6795,8588,8530,6454,3029,3123,2198,2312,2630,2015,2381,1727,3197,3467,2676,2502,3148,2266,1438,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1867,1616,1793,1838,2174,1804,1762,1255,1066,1128,864,775,403,1286,1822,1971,21311,17214,20208,16686,13071,12985,14660,15660,12605,13638,21170,20707,26308,24476,20146,12878,3946,7350,12034,13668,27850,27746,30234,28202,23290,28835,28838,25829,30615,26494,20242,17744,37267,43580,35688,44835,38117,43790,44926,54576,44331,37427,35718,25450,12385,10784,9718,7676,634404,597821,545778,506411,315741,271407,189370,80948,0,0,0,0,0,0,0,0,0,2110,5160,8372,7620,9517,14118,24083,38059,34964,39678,49353,38971,47137,59198,65220,23947,29073,35160,32988,33045,21151,15706,9187,7745,4923,4048,3195,4572,3247,1846,990,0,2138,4054,6056,8474,6707,7574,8094,7005,8739,8962,6100,7105,5734,5032,4754,9132,8471,5559,5049,5733,5820,8443,8681,8031,7913,9260,9919,11204,11206,12520,13460,9586,9041,8576,7141,7783,7280,6178,5864,7167,7900,6358,5862,6381,5628,5402,4520,3592 +0,3071,4777,6570,8190,8522,12240,13135,15565,27825,36550,43508,44515,55309,53871,57942,67947,74777,62737,49175,53135,75826,78666,91456,38165,33830,24490,34154,42963,47542,51327,44324,14845,17236,19086,21020,16666,13718,13940,12774,19321,15884,15276,14885,15126,11066,9194,8054,22390,21234,28070,25700,20719,19138,14510,16351,3792,4456,7095,8226,7722,7197,8453,5974,2086,2050,1708,1766,1493,1444,1824,1290,2649,2654,1899,2017,2356,1564,1165,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,2594,3213,3054,2789,2297,2360,1539,1583,1774,1418,1140,738,1698,2626,3212,28248,20614,23012,16544,9332,13056,14326,13738,10155,10684,14984,14268,19336,16779,12435,9792,4563,8732,10703,14466,19756,24102,33740,31393,31592,29136,21336,26725,26262,32474,36685,30039,27061,30223,37558,47100,55544,52916,48444,57345,48615,35290,23075,19006,16799,11910,11266,11280,674056,660707,613183,470296,342889,197719,122938,74626,0,0,0,0,0,0,0,0,0,2818,4737,8152,7529,13010,17154,20316,45936,38276,43994,56718,47873,55685,58868,66278,18323,24934,27613,24118,29514,16604,11936,8024,5440,4970,3314,2606,2960,1998,1566,740,0,1593,2872,3878,5622,5510,4596,8183,4388,7402,8359,6367,5203,4656,4694,3745,8399,8370,4700,4528,4734,6380,8888,7425,7620,8653,11490,10362,14128,14266,14722,18509,13764,12461,10290,10735,8423,8492,6225,4988,9296,7594,5950,7000,6949,7652,8692,6804,4948 +0,2395,4051,8061,11858,14074,13322,17361,22853,30470,40823,48510,59223,49152,53357,57283,116134,98918,63307,52510,45530,57195,57588,80124,43661,43915,34012,34428,46911,63030,60732,63737,13700,10428,9843,11032,15598,13659,16664,16794,24498,22192,19143,18792,14540,10906,8256,6726,19505,16007,16217,21363,22012,23564,19029,22068,5992,8000,8733,10352,9524,8868,7686,6935,1225,1244,1199,795,592,926,1051,1008,1412,1371,1910,1571,1448,1009,474,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,3964,3161,3005,4068,4240,3617,2196,2021,1600,1759,1420,882,2313,3620,4815,27939,21784,21446,17042,7990,8082,7775,10212,8862,12764,13354,13685,11058,10236,8242,6088,4086,7200,12034,18434,19586,29186,36728,43848,49613,37534,29863,28347,26924,39095,41484,33045,14601,21208,35300,40198,62726,48269,57666,54796,46357,31726,27182,22164,16324,14775,11354,11816,821635,779777,744653,541762,269288,202342,113318,51889,0,0,0,0,0,0,0,0,0,2436,5886,8802,9868,11075,10559,15349,43651,53721,51862,54133,50716,47300,64667,62285,17744,14247,13947,17621,18151,14411,12662,7324,2489,1917,1533,1322,1608,995,660,324,0,627,1331,2322,2903,4726,5842,5560,3912,5582,6465,5049,5844,4895,3189,2792,10236,9123,8791,6982,3086,3560,3789,4952,6510,7980,11349,13283,16660,20365,18587,23608,16860,16018,15474,13806,12946,10838,5644,5774,12167,9908,9173,7846,8557,6817,5445,4903,6128 +0,5750,12531,15339,13381,18929,26734,33032,30525,35040,56903,58956,69947,58902,61318,82234,160925,114665,78851,82580,160781,127926,124909,151113,88302,96768,91370,79715,54366,63093,68799,65140,12496,10840,10481,12735,15753,18439,20087,20662,17279,19406,20822,18856,18912,13903,9108,8349,19459,17866,14137,18699,20136,18055,16835,21482,8413,8535,8615,10514,13156,9514,7336,5764,1162,1083,1051,704,497,700,868,786,856,1032,1064,1111,967,755,336,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4846,4356,4974,4998,6706,4976,4006,3236,1600,1652,1848,1310,1186,2216,4000,5042,16982,19240,16700,14090,5690,6151,8801,9298,7703,11149,9777,9130,9827,8737,7454,5724,4340,7130,8564,11321,20953,27274,38650,47424,53771,51424,30627,33420,36697,40034,35586,28444,28283,41516,48399,43876,66174,67413,53236,64902,56856,39318,32129,28359,18969,18076,14037,14252,573968,543586,621958,388410,206306,177648,119191,54682,0,0,0,0,0,0,0,0,0,3416,5880,9728,15490,17628,19435,16223,44549,43034,44544,41391,41710,41157,58526,51260,14027,14445,14166,15022,12796,10561,10781,5750,1843,1650,1261,1183,1362,918,511,238,0,534,1015,1583,2426,3367,3254,3676,3309,3410,5501,4755,5212,3922,2671,2433,6930,7664,5657,4702,3630,4054,3292,4801,4270,5536,9447,13012,12630,16266,13693,17916,14351,18116,17696,17630,12744,9494,7479,7162,11935,8150,10166,8320,7807,7186,5676,5982,6427 +0,9711,19767,32158,19944,28512,39692,47953,50635,56008,79679,87956,91026,84948,81958,87746,156359,125586,98200,107402,242303,176744,174934,166805,152860,148354,140923,108477,82709,79310,71266,76301,8690,8998,10789,13934,13595,15587,19634,20834,15693,16462,17863,16356,18644,13383,13784,14334,24126,24183,18536,18568,16184,13567,14518,20262,9359,7097,7739,10256,13631,8455,5131,3780,795,767,614,505,246,384,414,377,584,645,714,699,514,346,249,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6338,5426,5558,6314,7707,6490,3609,3133,1642,1683,1447,871,1137,2781,3634,4328,12740,12907,11758,9070,6210,7842,8036,7221,7985,6936,7954,5920,6364,5982,4777,4861,5975,6140,8126,10754,21745,32815,33207,47820,40919,35814,43164,45474,40508,48400,43236,46853,38326,42497,66187,64779,92764,92358,62633,58082,62024,50935,31525,28194,17248,16634,19948,16790,454624,403110,301131,280720,160187,115204,95429,45917,0,0,0,0,0,0,0,0,0,3253,6238,10113,22593,26679,23719,23556,39336,32235,26432,28812,32728,34544,33092,45084,12165,12445,10803,9994,10844,9156,5786,2982,1424,1258,1036,737,1066,805,382,201,0,397,662,1226,1213,1632,1968,2196,2306,3023,3466,3716,4071,2502,2064,1956,6023,6344,5162,3970,3278,3851,3571,3337,3436,5382,7580,9342,12555,10486,12064,10225,14569,13364,17632,20342,10570,10895,8588,10283,10041,8905,9741,10806,8336,5966,5958,6566,7279 +0,10210,25977,36716,31934,39364,43570,50702,57752,84260,83398,97256,127998,105314,112959,130258,126812,130660,146034,182578,312369,277087,261908,278780,264301,201631,249438,204024,128763,111917,80969,102178,3488,5324,5748,8948,13680,13848,16908,21745,20975,17635,25017,26242,26032,26850,21880,25094,27685,22306,22550,18686,15771,17589,15934,21644,16784,14938,10211,13178,13997,8032,3828,2775,406,422,352,242,122,178,222,203,330,326,322,352,288,195,135,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7809,7160,6051,6569,7602,5432,4798,4046,2576,2342,1930,1231,1227,2740,4422,5768,8877,8168,7971,5830,4266,5920,7254,5991,6441,5374,5422,5732,4626,4948,4604,4128,4673,5102,6355,9856,15102,24765,30802,46063,33636,32022,39953,44101,45174,51578,45132,45688,40679,55286,68939,79083,73360,76650,43416,62122,54574,45296,27860,26252,22272,25930,26981,27927,399114,268866,221794,227980,118475,104275,58239,33403,0,0,0,0,0,0,0,0,0,3582,6997,11075,25332,24234,30572,29701,38224,29306,26518,29429,29546,32539,28194,31320,7142,6332,4938,4268,5160,3947,2894,1628,790,632,590,484,554,392,171,96,0,156,303,606,635,806,953,1004,1348,1656,1550,1726,2061,1286,1036,787,6762,5924,5634,3418,2384,2471,2530,2074,1647,2830,3898,4556,8427,8075,7855,9122,12288,12582,14364,16050,13597,9632,7588,9670,7817,8493,9518,9164,9091,7622,6786,6953,7766 +0,886,1681,3501,5010,16397,26928,27839,35561,55824,76718,77309,75060,124237,140267,117072,142456,165780,163990,135850,98950,123140,118650,176406,185769,225468,276276,302020,245783,168651,165885,131000,0,3764,7316,11136,16120,17592,26819,31654,31224,30193,25044,37890,38676,38276,45839,43914,32321,24035,17888,14952,9947,7206,7009,9108,12870,9368,7229,8514,8485,5538,3315,1840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11155,11246,13484,11489,9544,10582,15086,17488,20470,22178,19870,15811,11918,10015,5611,5758,6432,7152,5509,3844,2392,2932,3252,3510,3688,2542,1876,1706,1298,1408,1676,2473,5116,17106,23708,28650,34415,38704,35102,40890,40818,42434,53863,57893,43265,45696,52029,48096,46792,39612,37248,28915,32679,32363,23854,17418,6822,14791,26070,31900,42370,47365,44243,44275,381273,395941,365818,427042,414236,486181,479397,373732,287868,205188,116951,120326,87169,51819,37582,18959,0,1890,4635,8877,11178,12284,10347,11290,16059,14321,16432,11878,7902,16617,22531,31032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8160,8488,11255,8694,9624,9918,10726,14798,20475,26040,23980,17989,14693,14805,14636,14507,12756,8740,7024,5403,5064,6629,7825,7615,10806,9507,6543,4792,1738,3102,5558,6638,6516 +0,1192,2838,5075,9070,19128,28071,36545,33664,58272,72290,63378,101477,106749,115600,107455,156801,135568,161598,134875,121122,164946,186521,219494,153623,192120,243178,241238,188729,172024,127894,108167,2647,7768,12121,12916,17574,21712,25026,30436,35823,34164,29330,32910,46180,40226,51808,42548,29340,26201,26779,17332,11959,7935,8309,8622,13029,9042,8066,8036,8036,5974,5172,3275,7435,7548,10020,8666,11344,14848,11892,10892,5864,7291,8566,6330,7060,7032,5728,5003,9435,7424,4581,5552,5232,5310,5607,5462,2296,1951,2498,2632,3118,2649,1914,758,10880,10696,10336,8820,9000,11014,12948,17901,15106,15132,17641,15013,10236,8072,6368,5058,5987,5538,6126,5434,2826,3278,3854,3899,5056,4155,4129,3438,3478,3707,3329,3722,3823,11774,22199,28686,40703,45310,30806,36750,53495,50510,56540,63190,59493,80921,104199,83084,39868,35718,26564,28042,22140,21972,19149,15866,8116,18016,32885,39038,43717,49946,45164,37684,403410,357838,309987,321650,287445,326325,310639,259800,219146,201987,111990,91167,76257,47173,36629,16502,0,2335,4816,6893,8746,7940,8286,10690,17578,15592,13923,12141,12024,17695,28808,30576,6004,9300,9326,9768,17115,12772,8378,7360,8720,7070,6219,4870,4072,3696,3483,3940,4972,3816,2817,2437,3360,3662,3134,3147,4226,3282,3434,3517,2592,2094,1352,756,17667,14550,9866,9666,8181,10559,12686,13623,19218,19682,22665,16360,15118,14508,11229,13126,10397,8944,7899,5328,4537,6086,5579,6320,11680,10260,9824,6705,4658,6299,5320,6495,6790 +0,2272,4514,6283,11595,25916,41420,46489,47883,48980,50218,46060,96982,84090,104377,104463,128555,197035,200353,145831,166020,229473,221812,236164,112260,150122,162530,222861,167488,146366,120012,104624,6047,7933,13166,12437,17184,24942,30546,37441,32243,33646,30996,24154,44734,38030,45140,43296,32875,30427,30663,27601,13064,10382,7279,7002,10958,10167,8435,6019,8354,7150,5990,5815,14393,18613,16795,16189,20337,24832,24880,21020,13164,13587,14864,14812,17380,15460,13354,10256,17052,14598,10812,13365,9125,11135,12587,14046,4037,4075,5336,5407,7646,6587,3363,1730,9191,9014,6850,6078,8335,11932,11764,14312,13666,12453,10042,12895,8178,5756,5686,4878,5876,7076,6161,5779,3418,3902,4512,3502,6016,5535,5946,5888,5747,5061,5226,7481,2706,8242,16560,35566,33732,42850,39658,50807,79271,77502,71934,107317,97282,95406,131338,166114,27858,22084,24346,21147,17521,13146,12324,9824,10655,17596,32001,32435,54219,51834,33082,29149,321652,302688,293731,292438,181011,160822,201734,176744,204673,143700,82412,55337,61758,48284,34387,16675,0,2179,4768,7007,7972,8104,7734,8752,17640,17306,12440,13514,15543,18463,25990,29985,13094,16418,20346,21934,30429,25734,17976,14831,15050,12629,12652,9137,8003,6724,8432,8727,8606,7793,6312,5703,6610,7348,7276,6644,9306,8966,6794,7252,5099,4758,3356,1962,24008,17027,11259,11037,8885,13471,14124,14848,23426,15786,15678,14692,13002,9652,9935,7787,7591,6042,6228,3997,2984,3151,4283,6153,11438,12634,13062,12169,9079,6359,6268,9362,10207 +0,3568,5578,7333,9746,28716,52488,58903,44438,48418,59126,63812,83313,83676,92978,105328,143082,179233,207624,221304,194544,199258,190653,208169,89177,116268,129118,155750,119020,122995,87265,60981,9607,10364,9886,11329,16219,22098,24699,38494,35730,30646,26144,31758,36716,39049,43167,40162,35143,31152,28051,29274,18443,13422,12857,9192,10270,10865,9786,7324,9102,8000,5909,6772,29413,33114,32222,26934,27238,29042,30009,38539,22198,18743,26231,21792,22223,24768,18206,15525,23392,21632,17407,19264,12915,15556,21344,22128,7913,7925,7517,7360,9637,8106,5052,2528,9849,6876,7950,5462,6489,8759,10056,11396,14101,11068,9516,10540,7093,4826,3972,3594,8152,8718,8840,6902,5211,6382,4917,3999,6087,6051,6838,8236,7236,6192,5890,8241,2736,11304,18980,32948,32304,41582,31395,40146,68922,71614,84571,109161,100368,127241,154508,184895,15020,17238,18243,18928,16107,14406,11965,9984,17117,24820,27728,34440,52560,37131,22774,28804,268601,256158,188448,196708,169954,143582,194947,147418,129343,101190,61202,48038,49320,33515,27836,11734,0,2071,2774,4986,4770,5768,6910,9452,13139,16954,17979,19098,18732,22476,29000,21456,20900,25906,31477,34216,41257,37888,24694,21620,20672,16062,17870,14743,9054,10508,10827,14100,11639,11742,11141,9301,9128,9537,11992,11950,12999,13735,10587,10817,10166,8302,5944,2828,23892,24154,18230,14471,10222,10741,13195,13231,20388,18602,13584,11826,13499,10122,10087,8154,10416,8058,5653,3896,2501,4196,4741,6474,11910,13928,11409,14906,13130,11209,8315,7535,7774 +0,3844,7956,11802,12440,20669,25372,52636,45954,46799,57898,77072,73926,95321,89841,89309,187599,236720,249545,288535,262544,250253,312488,260590,75592,78318,92063,85711,107146,74184,43779,37470,12855,11197,7996,9358,12714,18192,30102,30630,32474,33262,31409,33901,44223,36211,26546,33522,31676,30980,22187,17184,18447,17554,13629,10623,10439,11251,11513,9887,7876,6678,5260,6281,35405,31062,19672,20056,30022,43088,51184,45289,31179,30212,39764,42375,31749,21495,17299,13632,32529,28557,38040,31457,22562,25908,33542,35423,11616,14901,15112,14686,12272,10025,5600,2366,10342,10345,7370,5425,4372,7832,9569,13336,11123,10488,8283,9169,8235,6217,3616,2676,12374,11510,13216,12337,7755,8319,7654,6471,6412,8964,10089,9370,8332,8274,10304,11260,3855,10101,14894,24067,30573,33276,31684,44732,90624,117755,129078,109340,131503,171959,174090,147345,6279,12750,15757,17192,19246,13961,10862,7636,18576,27550,35740,39806,38825,32752,20118,17245,134195,190788,188099,191463,153268,128390,158072,124153,50469,33566,23714,24244,22932,15975,9656,5582,0,628,1419,2508,3622,5771,9716,10620,13209,13043,12729,17682,20801,24860,24744,27035,35721,35038,40694,37789,44498,49338,46421,46190,21794,21284,20151,16344,11603,12286,9491,13217,13312,11651,8126,10032,11980,11886,10870,12914,18166,13064,10777,14346,14844,8380,4495,2038,26492,20294,20874,14547,10774,10273,12719,12332,16478,12853,11171,10434,11206,8557,4886,5172,11606,10280,8018,4464,2328,5161,6474,8646,17385,16530,15330,14188,16524,13645,11183,8910,8674 +0,3325,5859,8876,9768,19127,24158,40520,40282,56020,80100,85352,75473,82884,76380,90764,215204,213625,246576,254319,302756,296662,314417,214042,56579,68898,96790,109385,88773,73458,59940,45525,18388,13818,12649,10519,11615,20510,25859,27960,37318,38810,31878,32358,32477,29056,34170,48704,35876,32068,27988,25778,17660,14729,10657,8369,7510,8058,8515,7566,6734,5926,6807,6878,35913,36651,41476,31835,42800,52630,59388,51273,35945,37233,46394,44652,52727,39449,26558,24204,46514,41333,54190,39166,21979,27320,38718,37679,20342,19844,21258,19750,13247,10516,5938,3130,9269,8048,7274,5401,5459,7200,8508,13216,11689,10266,7458,8683,7780,6423,3934,2929,14661,12418,13533,10724,6730,6096,6135,5818,5035,8019,10835,10228,6730,8544,8826,10123,4946,11190,13876,27702,40438,54642,56315,76946,92296,108749,107742,104648,133070,144210,201402,165454,4983,11127,15460,15330,13805,13770,10333,9118,12928,21231,29989,34957,38434,32162,20791,20812,121620,142006,108647,107527,149214,122974,116689,109295,31901,24450,18863,18402,20750,12140,8568,4522,0,522,1134,2182,2070,5318,7126,10477,13300,11492,14387,15599,18248,19264,17992,22822,27401,30326,37692,37894,39762,47970,50003,40600,35265,32120,29460,22902,24514,22496,23830,21653,11800,13734,10638,12484,14505,15478,16133,19485,29858,24838,19336,16160,16690,11276,5516,2454,21746,23862,21542,18588,13349,12223,10380,8230,11360,9994,8186,7624,8185,6306,3946,3509,15649,11122,7140,5922,2427,6520,10135,11845,17458,18216,15574,11430,15220,12335,13947,11998,9336 +0,2541,5513,7172,10905,19962,25574,34366,45916,56653,76096,79203,61662,55472,68214,86176,190638,200667,176794,202588,328219,278948,215500,148158,46290,88457,112182,105572,80825,85421,69766,53749,26306,16537,14456,14597,7988,15321,26300,33408,44282,37269,34147,28606,23195,45359,53474,70818,44278,47507,44410,29789,23498,19476,9722,6042,5207,6904,6514,6895,7338,7624,6552,5890,48423,56959,53509,60658,58801,58202,68955,78624,46910,54534,47535,52568,58282,56459,45486,35103,55561,44728,52574,39641,31260,38696,42861,34228,26921,31250,27069,20592,18757,13698,6784,3332,7931,5634,5755,5813,6855,8251,9376,10798,11350,10229,8852,8813,9391,7613,5281,4952,12104,12154,10702,10007,4000,5613,5888,5614,5006,7932,9044,8264,5014,7728,9942,10239,5928,12052,19129,34736,53421,61018,70554,87388,73190,110505,119252,114389,149298,182003,187693,172439,2814,7172,11103,11246,8452,8281,10736,10828,12041,21934,27709,32412,28252,27961,20555,21620,79639,74115,73614,51964,102066,101287,98096,87858,28240,22667,14748,13611,13802,9367,7560,3622,0,505,898,1794,1444,3355,6774,8202,10052,9704,12109,15588,10229,13877,14259,14729,30328,28517,30080,35960,32688,33970,46871,55369,37235,32207,33432,38843,48652,50694,43674,34958,12954,15863,14944,15251,15552,15896,17822,29665,31690,26772,23604,19372,16672,9995,5579,2314,22504,25900,22212,23489,17035,14931,9447,5388,6525,6795,6973,7836,3392,2348,2254,2233,16126,14090,9039,5852,2785,7492,11118,16470,16810,13834,13407,11666,17661,16049,16946,14412,10440 +0,2864,4386,6727,11952,19880,21175,30734,48870,50860,72298,58548,50072,46784,48923,48196,219597,242497,222984,224010,251536,248516,185413,110152,52258,86216,127305,96114,82366,79468,63779,66293,26106,19718,13661,13277,8861,18760,26357,26557,42722,37110,35184,27640,22613,52112,55145,65328,50860,50668,44672,30898,21621,18382,7656,6657,6282,5786,7435,7560,6886,7652,10458,7647,66149,56790,64474,66944,71736,67400,61252,84356,47432,54778,54830,56002,81264,67865,71941,51337,58227,50222,47772,44104,41122,40284,46991,39082,31096,30424,37454,26403,20283,17668,10136,4589,4877,4526,5254,5940,6390,6572,7613,10572,10057,10918,8559,10667,8663,7913,5706,6131,12909,12412,10340,9791,3888,4542,4179,5875,6486,7799,11399,8891,5924,7328,9607,9098,4334,15822,21055,29955,46282,50488,75229,93827,104537,123112,129616,122179,120229,125415,167669,160488,1258,4163,7587,8579,6849,9406,13615,13028,13578,18160,25091,31331,29706,29820,23200,26748,32992,31381,29690,31886,49068,46836,46450,41633,13760,10444,8641,8158,7847,5261,3390,1736,0,374,714,1179,1108,1882,3172,4635,6571,7096,8813,11512,7498,11731,11642,14240,36708,32882,32877,41622,40821,43514,44992,52444,32877,38170,48338,60717,62603,60657,39923,38792,16687,14572,16596,19802,27414,25576,21047,34199,29644,23708,28603,22340,22857,15786,8439,3322,26132,27305,19498,25862,20592,16010,12006,7354,2652,2769,3659,3444,1519,1228,1202,1014,16915,13950,9148,6638,3141,6708,9936,14110,19043,15280,11105,14302,15601,18313,20796,16127,9466 +0,6084,11557,24773,31396,36914,48567,55355,44580,42875,52273,34340,30697,34338,33484,26707,217715,209056,175110,120672,61814,69130,58005,56510,61929,71112,70795,95125,91953,91981,118729,112671,31351,35070,33065,28331,28324,27154,23097,21773,31092,35645,53726,51548,74920,59613,61349,62307,66083,66637,49439,30299,16214,15181,11074,7573,5878,6696,9167,8752,11387,13090,14629,12536,68110,72516,71275,76382,59866,63406,61217,72351,64930,64501,59722,47705,27976,32406,26500,39031,57568,43474,38418,24976,23105,26460,34001,38486,36120,38212,39736,33786,23748,16753,15700,8316,3301,4339,3952,3356,3278,4336,4843,7672,10818,9493,8764,13428,15970,13870,15769,12022,11927,13070,14474,13090,10592,8619,7470,6335,8248,6637,6504,9830,10440,10542,12000,11838,4736,20915,31182,42423,54830,63356,85534,99192,106283,96928,88287,98567,105320,90856,88150,140140,0,1340,2545,5194,6196,11218,13127,18903,20602,34614,38004,35839,38058,44084,49782,45674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,289,426,725,1094,1905,2098,2210,5683,11581,13828,14465,11528,10434,14586,44008,48507,45501,51965,53310,61966,66250,54054,41496,51269,54446,62580,78550,55567,48448,44378,15177,15053,13375,10754,10108,22926,32758,30901,37940,44000,44574,42686,28560,21844,14084,6750,27276,19667,17862,11897,3070,2282,993,589,0,0,0,0,0,0,0,0,16487,17749,13711,14644,17563,16410,22611,19699,15981,19221,20447,19850,16874,12978,14366,14444,11139 +0,5778,11135,19137,28741,33262,47064,47310,33128,37346,38969,32064,30994,30038,35004,26073,204634,186582,131782,93779,57438,63641,75538,82236,54638,80494,98935,109878,78396,98427,79854,89448,25321,27056,31616,30486,30404,26138,29073,33908,54777,72560,97965,115014,128204,93198,80175,99464,62427,53907,42848,25695,14998,12291,7564,6430,6281,6846,8752,8844,8703,11843,19944,16334,54831,67612,83024,73634,79402,75314,72172,80544,53000,44188,42862,44088,36543,43051,38270,57073,75830,64946,53114,41442,39611,44608,39395,38950,42247,33586,34820,26370,24213,20395,12269,7218,2431,3270,4140,3094,4082,4998,4446,8096,10790,10599,10137,11014,13383,14532,18525,12432,8395,11409,13729,13658,7537,7505,7992,6999,9523,7398,8384,9799,8932,9846,9625,8076,5376,16707,35949,47781,53296,68298,53376,83138,79985,88602,81772,75922,88218,90134,97350,112262,11311,9342,12236,14470,13061,12354,18928,20584,18400,25524,40204,46908,56791,50746,53692,47090,17748,15007,7472,6772,5394,5120,3635,3662,5716,5920,5197,3824,2455,1824,1016,555,0,178,349,383,520,1016,1522,1622,2007,5188,10247,11770,12106,10824,8381,12233,35158,39054,47154,71284,54122,56356,46512,44906,48046,59854,63864,80182,69258,66214,57389,56496,27556,27360,19684,16822,15972,19320,27766,28168,32198,33968,41868,44118,52567,38695,20995,12228,26916,26846,27180,20327,9952,10142,8202,5628,354,440,556,504,604,480,286,136,14279,14660,12162,10834,11880,13632,13671,13848,16622,15318,21943,17303,12776,10259,10717,10876,11765 +0,5199,10791,14967,26533,25272,34813,37350,36330,36020,34409,22278,23782,23797,26036,32678,155930,122516,128514,80757,59056,80580,87798,94420,68251,77650,95312,83938,77348,68273,75281,102404,17698,20711,20815,23012,26180,30174,27154,33220,74626,86235,127602,125330,154001,123222,97778,98006,56785,46735,27682,20309,12730,9040,7430,6820,6091,6594,6312,8726,7706,11661,19396,17581,50148,73387,77824,67191,117869,102703,90798,103555,38544,35924,44781,45592,55251,57196,52379,83917,91617,81020,56947,65440,58953,53148,57437,45644,39722,41444,29708,20281,27421,16732,10758,5675,2448,2324,3229,3103,5108,5501,4061,8856,13168,12243,10604,11678,12328,16198,15638,16087,8945,8323,10533,12294,7720,6296,6580,7254,7704,8998,9130,10283,10226,7636,8389,5728,4607,16492,29476,45824,34790,41767,46243,48667,69679,60273,78892,83327,115217,116119,107416,102028,25849,26180,18050,23944,21976,18213,20272,22889,10674,26395,34117,54777,78994,59614,57312,53231,31146,23662,18660,12737,13395,12268,9009,6708,9725,8841,10353,6582,5002,3549,1936,896,0,159,349,490,499,990,1216,1224,1563,3766,5592,6866,10630,9119,7008,8666,40815,52953,50018,73875,48406,36405,41845,36484,61019,58178,74400,82189,68973,61512,59450,59754,32993,27557,29880,23396,19598,19418,20857,17486,40439,49925,48552,56110,61011,40876,31304,23436,34448,35117,36143,30834,18149,16202,12910,9400,643,738,1197,978,1094,729,524,252,10286,8708,9110,8895,11414,11379,7858,11708,11860,13469,16522,12826,7947,9511,9982,10553,13169 +0,4431,8660,13434,15497,19264,25175,32506,37011,46309,44121,33100,25040,22618,18306,21620,108027,84857,81050,60822,48740,74600,91617,105578,66170,69656,71257,88078,77308,88125,103684,86168,10918,18846,26700,30968,29945,33776,37006,48628,83109,105150,115182,145312,177323,149102,104965,99214,33106,35004,17742,13596,13232,11114,5997,4951,4086,5423,5367,7014,6620,13480,19518,18092,40320,65097,76477,88060,101355,81986,74905,95735,35941,38922,50378,62108,58978,59525,48468,70394,84211,76440,71012,80950,74454,68832,55920,43632,41678,40170,31842,25501,19512,14228,11577,5676,1226,1800,2252,3360,5678,5809,4811,7829,13216,14262,14941,16630,17759,20014,15905,12120,8544,10213,12149,11347,6620,6005,5408,6580,7984,7880,7265,9415,9330,7897,6028,5030,5140,12638,22514,34944,32154,42065,55657,54405,80824,76044,91372,85942,95158,99512,96841,75012,33089,35086,26754,25862,24625,19782,26158,21519,9036,23296,43184,44989,84578,65153,56658,69959,40329,32414,19907,18536,16155,12956,11705,9320,17050,18890,16885,11376,7843,4980,3236,1720,0,146,307,500,498,930,878,1052,2036,3282,5697,6536,8952,8568,8110,8008,27162,46872,67576,86736,69915,62464,51423,68075,80205,82112,90645,69917,70260,65986,72517,82607,63316,54758,46895,41434,31861,31146,36744,26806,51792,59694,64939,63997,58112,41794,31495,29171,62270,53566,34109,35436,24596,21574,17366,12360,1085,1594,2254,1899,2320,1362,1013,502,7217,6830,7655,7926,7001,6866,5788,6259,10950,12023,12065,11145,6954,10083,8997,10208,12402 +0,3103,5892,7534,11634,18332,27409,32467,51192,51564,38894,36189,28254,32754,28027,22221,57438,38827,37294,53229,55514,76276,80746,96217,73535,66402,71628,87926,109596,96220,110301,91970,6963,16216,28151,30953,35342,40462,43658,49092,113861,120746,161820,168648,183950,144988,128876,101566,21140,16658,15086,12208,10353,8923,9369,6850,3352,3621,3196,3386,4814,10922,14360,17612,41477,63458,99538,126027,114704,108903,138068,105035,24963,40608,51534,75919,75388,87444,110597,129423,92274,89595,83888,69626,72472,61481,42639,37671,37792,35031,33746,31658,21154,13425,10354,5396,452,1597,2380,3270,4576,3664,4149,5920,12562,12181,16440,20782,19939,14252,11216,11557,11618,9176,10392,8117,8136,7200,7429,5571,6893,5582,6502,5634,6739,5650,4211,3775,4789,9592,11454,17677,31224,35397,55765,53868,74220,89746,112099,100968,101878,81627,76751,63300,56402,53506,57044,42640,37332,25228,23823,18825,7752,21778,39542,51575,75796,74728,59400,83182,57352,58749,41620,31046,20697,20122,14858,14405,30456,22441,17913,15728,10006,6218,3288,1401,0,148,363,581,605,722,1052,1136,1953,3131,3620,6342,9486,8125,7983,7771,15962,37758,72253,80080,105262,131783,130246,100632,115979,85366,71638,62064,56532,62296,83031,113150,86746,58943,42907,45321,36764,38793,31029,27563,62237,51396,39064,56191,59543,52140,36042,29092,74171,61170,48253,33430,29432,23187,22570,14367,1995,1630,1962,2507,2871,2860,2004,1058,4121,3530,3342,4300,4338,5046,4302,3939,6446,6226,8184,6799,8228,10037,9345,7572,8936 +0,3574,7128,12496,14652,22962,22648,32775,48053,44805,30629,29580,24248,31166,28297,28770,52268,45609,51345,61584,50105,68255,67916,75073,67354,69720,86643,80714,76854,87375,102640,68028,13759,21106,28422,37132,35233,37231,43265,48898,90899,96008,148822,144176,139049,155221,148237,107161,26114,29107,26999,24078,26060,19210,11622,5993,2462,2709,2966,3709,6259,9437,12302,22804,35885,64899,85407,105060,80684,110545,158778,144224,60931,73796,62479,85271,97797,108795,121514,124137,91840,107322,114988,94452,106058,70526,51444,51177,38996,34016,37386,33786,34886,23971,16640,6980,342,1308,2275,2778,4118,4024,4703,6874,12134,11396,14127,17141,22384,17061,11721,14190,10101,8162,8262,8348,8311,6442,6851,5902,4771,4397,5858,4720,4406,5341,4790,4356,3231,8577,9581,22855,28028,31730,49579,45792,49271,61668,107858,95166,110489,91692,87096,66616,60594,67724,70322,55764,70548,55319,34648,26854,11062,29708,55902,68243,89484,91570,84788,84641,66590,57671,50774,37000,40064,38676,25948,20128,35644,26299,20670,16504,11657,8132,4480,2364,0,122,251,351,412,556,876,902,1313,2872,3284,5355,5833,5098,6750,5032,33630,64999,94450,85722,102358,123716,149938,126034,121493,97224,86598,123228,106968,107666,127838,109803,83062,63868,48900,45540,40824,38438,37251,43418,66987,59626,51457,69130,65317,64834,69820,57528,72152,70739,65499,40182,27977,24973,26406,14700,5405,4447,5396,4533,3621,3560,2401,1186,3308,3007,2362,2514,3620,3342,2808,2612,4003,5146,5707,4668,7085,7375,8530,5902,7194 +0,4501,8671,15503,13552,18236,29108,32538,40606,39970,30399,28334,21706,27060,41744,42882,63362,49250,54578,67148,51728,57171,83330,77134,59905,68402,88601,74888,76950,69758,75520,67605,22786,23556,25648,39418,36687,46982,50073,43354,85527,75723,97481,119014,131477,158595,140012,116756,36620,33163,42252,48662,33606,19380,14188,7194,1164,1901,3144,3850,6408,8657,14064,25399,46831,46618,69374,81150,79242,102764,143835,123962,89084,105569,103228,95724,160883,127850,136983,102910,123667,141665,127851,83892,108203,77656,81436,73101,28908,38276,35828,38028,40660,26938,18776,10100,272,1264,2002,3013,3689,4637,5233,9484,8353,8996,11748,16422,18342,14693,15611,18626,8275,7486,9308,6670,6386,4773,4343,3710,3856,3509,3475,4344,2786,3867,5266,4986,2898,7096,12308,23808,21579,24430,35946,36269,31949,59962,73655,92899,111675,88387,70714,98200,92561,92892,75302,56614,82784,52918,46336,28335,11368,39030,54378,70110,101354,95234,102926,86445,73088,49482,44466,32448,55048,36674,31216,27208,34738,27034,22962,19239,11043,10075,6526,2768,0,62,144,290,229,300,467,636,1076,1935,2956,2964,2972,3013,3320,3837,47648,85079,94884,76669,83052,98875,152070,106375,112329,95005,112178,142476,162894,129816,131806,130740,91010,84034,64274,56137,59041,63180,46409,48380,72916,78134,65169,90278,77715,90332,104041,77528,65953,72347,74616,42044,36999,27422,21700,17495,7432,8934,7672,5329,4378,2830,2443,1100,1916,1378,1334,1952,2399,2125,1514,1432,2576,3240,4214,4841,3734,4456,5296,5226,7261 +0,3954,8279,15175,15180,15726,18520,27608,36015,25956,27372,22874,17983,29809,56660,51487,75372,57832,63374,70560,54622,69722,89377,78125,68197,93458,103016,82008,72125,71686,83761,64240,23244,30198,37558,48984,58160,67828,63312,77976,118113,107950,106385,136141,140107,148098,156397,97500,55264,48504,39968,50019,43026,29992,14774,7900,564,1644,2417,4736,9386,14889,21970,24384,59017,67912,59022,77835,94686,117176,152966,151968,137958,137664,112468,118650,186125,137750,162280,132428,98382,125541,112247,103985,96904,80865,73882,56782,36064,48058,58513,45340,44074,28194,17537,10266,157,970,1372,2482,3478,4986,5048,9641,9024,9686,12980,15546,15739,15313,13272,16366,10761,8471,7764,6292,4081,3147,2743,2278,1994,1826,2549,3231,2488,3393,5688,5386,1450,6030,9716,16054,19459,19806,23856,25494,21729,41812,49646,64509,77599,76889,87515,112638,97640,93850,64269,61412,82548,64860,41948,28017,15917,40435,79918,96072,106148,112218,115435,92547,108698,79459,60204,56696,51317,42606,32318,36415,35834,33652,24208,20927,20655,17092,9146,4716,0,37,76,140,119,165,217,281,602,962,1224,1473,1629,1920,1512,1711,63430,70326,97522,112090,123818,152719,224271,167337,166540,134524,152234,179976,190192,182758,116466,123197,126142,85862,100653,85676,70798,86866,73829,61844,65450,64675,64353,85672,88851,97746,125855,112400,104575,96090,96557,57572,32215,27182,23275,17175,9556,8106,9500,7454,5898,4158,1979,1066,796,720,732,1074,1234,912,638,662,1430,1852,2192,3024,2418,3410,3779,3946,4806 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5437,10578,13274,15639,11976,11318,14528,19547,25192,26003,27621,22948,24224,36069,37920,35157,43679,65131,74353,59058,54981,48874,33312,33981,32256,21549,15450,8461,16222,27302,26738,36373,30416,33422,23244,22595,14192,11389,5465,0,2434,5264,10110,12571,13036,16049,28339,64821,64949,78211,98533,115621,90906,82198,73152,70352,57336,53513,38995,40365,35427,23307,15453,5880,5754,6740,6557,5209,5980,5221,4811,5186,4806,4973,4846,3377,1914,1397,606,0,340,566,888,1273,1553,2265,2512,2769,3093,3024,3545,5783,6442,5394,6851,8198,10570,9778,13793,15231,11100,10488,7836,8729,6487,5469,3821,1533,2538,4703,4991,698,885,813,732,544,522,586,459,345,278,285,188,72,63,46,20,0,3538,7601,8048,11378,11738,17808,18726,15975,24487,36478,52564,91898,116438,104322,130764,122502,78449,63980,60605,62758,43293,19491,11387,0,50799,86558,142826,163339,211528,228124,202968,186312,210818,199609,251726,331732,280922,274645,243864,217252,196348,148523,136502,119303,98594,81203,33928,71552,65076,56672,70125,69075,61859,50978,55700,74338,54904,46848,48780,38951,55930,73744,95733,155189,167426,141067,194380,191109,214209,168024,117499,60943,67270,66153,50677,54280,54830,59034,85099,110414,102235,135318,131912,97412,79428,100167,66103,56384,58736,62115,44459,37034,31796,23010,11144,0,0,0,0,0,0,0,0,0,196,456,723,1266,2405,2826,3615,3282 +0,37,81,114,224,188,212,264,408,406,329,209,117,144,262,302,1338,6039,8050,11070,12320,13510,10550,10966,24912,23708,21707,20134,21580,22284,34582,32940,36198,48264,72710,70293,56920,52590,53373,39292,34264,33096,35582,23942,11933,23146,31681,38129,38106,27173,34433,24133,23570,18622,13858,9482,3772,7182,8874,13487,16732,22073,25883,29090,76250,74297,83059,107409,79295,76852,68578,72285,69775,58278,50495,42062,48756,38802,22952,19838,5636,5278,4524,4270,4627,5044,4390,4667,5472,5151,5240,3960,2990,2273,1290,629,0,314,600,672,828,1290,1875,1836,2230,3404,3296,4070,5731,5506,5757,5954,8654,8758,10353,11468,13268,10903,7818,8346,6726,6612,4482,3426,1714,3202,5547,4802,792,882,858,746,368,394,523,400,468,399,322,281,139,96,73,38,0,5636,12107,12877,21591,23034,30567,32922,15842,24600,42312,66754,85407,101966,100701,129914,109752,69611,54728,48757,41402,33988,22206,10314,6608,38364,75218,99666,131636,169222,187251,172659,247259,245562,209674,223278,309587,307998,279193,280387,164256,156954,129258,154056,153452,97094,69240,37111,65298,62914,59595,58456,52762,59727,67457,64874,68074,54016,61410,49160,31266,63192,87427,134912,195750,180156,167949,240512,229278,219580,132896,81053,86818,90594,93622,69391,55129,50155,52398,69834,74636,99128,105228,115888,116847,102350,83505,57744,55285,47880,40614,31248,36067,24604,18916,10252,0,28,57,94,66,110,146,142,161,314,632,924,1371,2330,2832,3357,2996 +0,89,162,246,390,444,444,604,1004,790,672,486,278,418,461,694,2481,5433,8246,8725,12931,11589,13567,11668,24477,18932,18604,17544,15151,20598,21966,28421,54124,54701,67848,47756,61822,44614,41628,31290,31093,40004,38130,34478,17751,28938,39530,39161,32483,30259,24790,16913,31035,24467,19394,18829,7740,11198,15320,19773,23186,24606,32684,34107,73602,74806,76082,89630,73270,75748,61396,66329,66181,60200,46240,31474,47914,44756,32396,20632,3960,3288,2896,2311,2769,4695,5099,4936,6768,4891,4861,3240,2713,2154,1486,886,0,252,514,734,646,1094,1244,1238,2110,3529,4402,5640,5288,4290,4957,5056,6745,7223,8544,11714,8326,8111,8562,8139,7965,5890,5550,3287,2147,3654,5229,6230,978,801,724,730,373,413,345,360,492,531,460,341,160,109,82,39,0,6381,13452,18814,29633,32435,42374,50366,12081,26015,47826,90799,103133,109775,99269,89064,77759,66697,49634,36456,32519,23717,19594,10358,12501,30915,51488,63110,89035,117720,116708,100110,235066,205659,169867,132583,275917,222718,265813,261618,126373,116092,120532,148298,144397,102591,58816,32880,56608,49772,62117,83248,58188,69231,63710,52020,82467,61360,56218,41284,28344,91833,140214,170251,213470,246076,267046,317846,217081,206961,163737,108889,143447,139917,105542,97390,50187,45951,39682,43931,67523,73104,76436,99470,108600,94567,58442,43338,41267,34849,29880,20328,23928,14927,10664,4898,0,59,98,187,157,192,279,259,273,515,634,841,1103,1636,2538,2560,3643 +0,129,333,402,528,626,686,776,1310,1145,1100,787,388,534,640,899,3336,5126,7755,6878,9878,9723,10523,10269,19666,20966,18082,16332,18992,22328,23602,22091,60520,79124,78677,62319,68176,45514,40917,34831,42053,46946,42513,40107,28855,27862,39573,32865,29352,29974,23090,20362,23080,21472,21768,22746,10269,18575,20616,21388,32278,31428,27796,26506,79156,63171,77286,83550,114053,82918,86516,72148,48768,44715,42519,37406,34991,36138,32319,30478,2675,2108,1675,2159,2856,3740,3989,4418,6388,4646,4112,2558,1853,1472,926,450,0,164,354,430,406,723,1028,1279,1719,3210,4301,4719,4327,4328,4928,5628,4428,5451,6002,9418,8818,7957,8048,7518,8210,8396,6417,4176,2231,3318,4499,6048,1176,921,773,711,418,358,325,307,662,610,519,426,270,192,113,60,0,9796,21602,27922,33655,45566,49742,58556,13890,32830,62196,80817,85928,93214,80817,64896,51565,47787,38075,30187,27010,23228,14416,8731,15686,31380,46345,52310,63381,83932,91626,75230,221144,184838,140920,111566,213570,200803,168957,194519,165102,120204,132157,133780,115341,81934,70695,32350,61453,61400,85024,89512,71339,71070,94644,73685,122636,109664,75956,59104,33270,83051,120256,146307,316378,339384,298496,314372,271706,194840,137472,103978,144972,163733,144601,115426,64962,59853,36037,37284,106581,83392,74761,94455,102302,79699,59077,44288,31177,27595,23163,19396,18408,13726,9585,4952,0,78,114,248,358,398,308,342,501,754,895,829,1154,1326,1639,2366,2912 +0,207,428,684,913,1262,1248,1346,1611,1662,1415,1090,526,770,1129,1135,4865,5777,5624,5992,5866,5104,6814,10350,16628,17338,22013,19654,19130,19783,15163,16263,87415,73770,46340,43328,58074,51419,49968,45752,52636,43781,36555,44850,39221,44847,40501,34446,16542,17378,13252,20009,23650,24191,35799,33574,16252,23768,27587,28452,31218,26742,32405,27554,62338,78680,116638,103716,117488,98848,95168,84047,25223,27792,32307,36747,32455,29835,37132,27628,1312,992,1132,1583,2275,2706,2880,2752,4667,4313,2726,1898,700,505,392,167,0,46,96,160,200,320,354,738,1477,2910,3484,3780,4390,4008,5595,5591,1938,3092,4405,7913,9297,9828,14393,10416,10241,9196,7233,5184,2724,4542,5551,5264,1222,851,729,462,361,388,298,372,867,823,804,703,414,360,216,130,0,17836,31523,38592,47918,51119,60415,59295,21323,30025,34849,63980,81547,67327,78064,51107,39214,35576,29342,19191,15640,15267,10067,11059,23736,21772,24780,34464,58396,40803,34592,41511,282249,207985,210322,191376,111944,117969,145654,155693,150852,136671,113537,120187,117852,79922,55808,32715,75701,75698,78123,82418,102274,111658,96430,77226,137832,107428,89754,65791,39177,50046,80178,118916,376920,412501,323042,334284,254514,221969,154164,132042,167572,131340,136103,91109,76450,82873,84992,66834,113884,120190,144306,118817,93576,88645,82357,49598,12466,14860,16771,17530,13552,13436,9831,5159,0,68,157,288,457,418,524,568,615,773,914,823,858,1113,1873,1639,2220 +0,222,550,870,1070,1305,1577,1568,2786,2100,2228,2212,2294,1695,1961,1818,5542,4856,6530,6201,7816,7662,7735,12624,17175,18108,21297,19375,11838,11964,9944,10224,61914,55730,49386,41691,45032,50165,38718,42906,41041,43000,33240,33501,25360,33086,24467,25140,13807,14518,18485,23037,25945,32456,34153,56364,36150,33964,34968,42722,48553,43719,44633,47804,59159,73614,77200,87102,102895,82035,93125,63066,33511,34919,29956,29637,31848,27851,35059,26000,793,763,772,1000,1488,2116,2511,2191,3141,3136,2452,1315,453,412,329,134,0,36,90,134,141,202,308,470,1117,2216,2578,3096,2779,3464,4380,3316,1761,3233,4372,7372,10082,8972,9861,9568,7860,9932,8761,4822,1885,3806,5018,4558,1504,1072,626,530,460,405,446,360,730,722,660,556,485,393,191,112,0,15750,25936,33432,42557,48860,62000,56448,31497,34799,53228,54544,59579,63561,101521,90793,23540,29124,26587,16740,15994,18534,12845,15064,21316,28092,38430,47761,55527,42768,37025,45983,234726,178295,211246,148096,105352,119637,131334,151942,114170,100200,77358,93832,108687,86528,49479,22652,64652,81370,86542,72486,116314,98719,75796,65172,116885,89506,78458,62402,50295,73282,98842,98651,298723,362664,360551,239719,301850,225838,169280,148117,218807,143572,164496,122202,59763,69270,67812,67381,140029,133879,122831,113288,79616,63740,58276,36090,9482,13116,15800,15315,8740,9144,8112,4718,0,96,181,282,488,574,756,994,693,884,1014,1015,910,1308,1938,1510,2130 +0,293,552,998,1070,1694,1985,1747,3373,3004,2866,2618,3320,3229,2433,2683,4939,4765,5953,6671,11078,9666,10438,12129,13441,13468,15680,13107,8564,8598,8702,7123,58519,49177,46103,41852,36936,36660,37308,33040,34695,31886,33188,30781,16678,13545,16850,11488,10185,17226,18936,22325,24898,34668,44672,63094,49891,35028,35943,66954,55775,48098,61842,57687,66069,62298,56332,60924,81924,75033,64284,76990,40119,33157,30650,35559,21862,22511,26440,25541,626,692,548,784,1281,1193,1507,1601,2766,2326,1390,888,418,357,210,108,0,26,54,69,98,129,210,306,695,1142,1760,2024,2141,1928,2644,2293,1211,3092,4292,6517,7877,8012,5880,8952,8384,8165,7518,6544,1844,2126,3106,2837,1381,947,652,520,524,556,492,480,633,650,630,576,488,372,242,105,0,16679,28332,29358,46674,54204,71642,56983,46905,48246,60794,72027,58855,93746,100464,129196,12700,16609,18667,13117,15534,19281,17564,16934,25930,27610,41596,40479,40133,41580,41566,46005,208510,180825,144022,132662,106213,118002,131026,90533,95369,77116,58688,76890,116481,70753,37770,15532,85618,108364,104136,107922,99710,88020,73746,48588,72757,66230,66020,69801,77735,85375,100267,119952,336758,374346,341246,290471,321027,284851,245566,199415,241306,227392,145158,95845,44272,47750,67768,78749,159784,126794,122716,102272,67338,58892,40982,24014,7894,7854,9923,8293,7627,5484,4254,3338,0,84,176,453,667,1054,1196,1321,1032,888,945,1069,678,1157,1450,1704,1434 +0,369,852,1176,1432,1759,2102,2518,3056,3290,2833,3874,4841,4000,4092,4895,7661,7718,7714,7654,9553,8733,11684,13784,16205,15138,12668,10205,7947,7834,6266,6238,61515,54948,36990,29824,21610,24086,25450,32114,31122,27126,19820,18364,11982,9334,11140,7318,4901,11880,19640,26246,33660,43444,61270,70786,62690,69102,53466,89656,74054,77690,73417,65854,75867,56738,44062,57282,67114,58480,40814,50858,43719,34649,23067,26500,16670,20330,30390,26000,258,288,305,416,522,584,771,762,1496,1123,682,426,219,159,106,58,0,15,30,33,49,74,124,130,410,672,958,1014,1238,927,1350,1114,1044,2170,2736,4935,6198,5550,4804,6516,6170,6216,6214,5026,2000,2508,2410,2043,1284,980,642,632,539,656,564,658,663,653,662,494,511,349,243,121,0,18614,41669,46754,58926,73025,67398,81840,94927,58756,66290,55564,54628,76108,104204,166272,7460,11678,18425,15668,15460,16122,19144,21031,30940,40252,44297,41000,45298,51208,47346,48344,158523,152586,147138,131728,150246,162004,168812,109260,79814,77938,68832,75772,72292,51533,34233,17280,78304,87309,97326,107836,126473,105570,98509,62984,85392,75226,71468,65890,74050,78914,78838,86424,352232,324876,258075,309698,357156,289414,250207,238397,282083,187119,120540,90668,47337,55161,73026,74226,198754,149389,180530,128992,94795,73167,44424,22730,3736,4445,4914,4897,3709,3204,3194,2229,0,81,191,428,665,924,1383,1534,1284,984,738,854,670,1256,1547,2012,1842 +0,207,369,560,665,1358,1845,2714,3471,4069,6282,7166,7422,9930,9717,7689,9170,10877,11437,13132,12960,13940,16026,16670,14808,15616,14252,14540,11332,9929,6556,5196,73889,58940,65470,47389,44423,51789,53905,49730,34860,29327,14688,11096,10346,8578,4014,2222,188,17295,42461,63569,78157,98858,99279,95414,97425,105196,119469,80276,78750,78876,68326,85174,72699,75442,78426,58599,67727,57812,67398,49463,37234,28188,20882,20921,15840,19944,19421,25962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,2932,4115,5489,5236,4201,5013,5053,5379,6344,7116,5536,5168,4265,3600,2156,1242,1331,1625,1542,1375,1501,1307,1038,689,642,575,567,547,449,360,158,0,17696,34083,47891,83285,86118,128271,144464,112893,131712,127788,168400,229936,245879,244077,186832,0,1017,2473,4144,4522,9366,12243,24380,32056,33297,41962,45984,43252,45230,57752,66120,137402,137541,98420,121523,156151,147588,130089,121388,94632,86760,106542,66431,58849,47646,36806,18998,81398,110299,129829,118367,145558,133784,137306,89677,82223,56292,50923,54417,44219,51264,54411,80226,264046,249733,193422,216863,173960,158002,170863,209974,251676,213860,178294,155922,122523,116515,71706,100347,178070,134661,154548,173999,150561,115351,59670,26162,0,354,696,1096,1199,1533,1730,1530,0,231,471,594,923,1282,1571,1564,1492,1449,1079,1164,925,1256,1650,2361,2301 +19,224,360,580,686,1084,1426,2196,2534,4013,5131,5431,5557,6572,7232,7299,9716,15042,17633,25346,29786,31631,25556,30190,17104,20614,16450,16272,15150,12764,9520,12515,100434,70743,92529,83610,54504,57034,83627,59067,49427,44646,34870,27221,19953,16453,16238,12950,5433,23820,41836,50350,60294,79156,107358,108026,79282,89134,101081,68582,56577,66758,54588,78576,68002,75695,59372,59774,42041,43157,58911,39094,48550,33832,21073,20114,15565,18887,19658,24028,2099,1617,1124,826,342,1752,2732,2644,3191,2050,1469,866,320,256,113,56,0,0,0,0,0,0,0,0,0,5,8,15,24,24,29,33,1062,2548,3746,4358,3709,4222,4756,4364,4965,4974,4704,4179,4517,3766,3510,2162,820,872,1340,1312,876,1254,998,964,1138,838,643,590,438,462,346,172,0,15162,35087,50702,77137,79548,90128,100687,81293,92196,108183,156468,223801,252616,196850,228140,5021,5676,6232,7768,6770,10639,16968,23308,29476,31437,36075,37793,45454,52150,47611,63060,83988,113204,97525,116768,150138,140808,126398,91450,98209,92790,98054,70927,70857,48305,33132,16942,61646,72676,99600,112558,135510,136338,114967,72644,86268,71615,54819,41845,40765,51972,49828,67634,232972,181148,164282,187910,187787,159396,189569,197836,160915,172970,143913,120226,125979,120686,83660,122012,172099,141188,125965,163444,172674,103276,57678,30542,2387,2885,2988,2508,1628,1764,2358,1740,324,496,731,900,1096,1056,1248,1348,1294,1274,1626,1244,913,1404,1548,1914,2512 +42,230,452,634,695,954,1611,1976,2148,2818,3866,4077,4006,4394,3379,4175,8067,18028,24714,42429,44361,42958,40064,37463,21458,23312,21932,22517,14938,15557,16770,20695,95990,94507,112628,119942,89793,92782,92542,75840,69818,68512,52698,35004,26896,29578,28225,28650,9190,18974,35385,40371,63580,63488,87421,106504,80279,94858,81304,73774,53979,53894,67264,67428,69681,63798,56009,44726,37080,39964,44070,39230,44747,30860,19490,14776,16911,24485,27916,29964,3853,2880,2106,1666,770,3482,5485,5550,6732,5710,3598,2084,743,475,248,107,0,0,0,0,0,0,0,0,0,8,14,20,39,52,51,46,940,2013,3148,2700,3995,3245,3492,2944,3963,3411,3819,4017,3105,3292,2574,1782,658,626,625,730,725,798,1078,1263,1351,1153,816,542,478,436,256,130,0,13212,30064,41174,87082,65068,57439,69451,69359,87648,95760,131906,229826,246050,238480,241186,9773,10636,11483,14194,8043,14664,16614,20682,17940,25830,29120,33734,36223,47465,48126,44869,60252,64506,83518,92253,107952,102643,92675,87802,83415,83119,65598,64924,64164,42291,33874,17824,41645,50774,66630,98322,126005,87202,85012,71912,77583,72605,57424,47110,51452,50357,59855,64700,154494,170043,140984,141661,163007,172066,191148,221931,143946,130958,141313,111582,141379,141683,102119,98116,136437,147282,147123,169583,165419,119918,51224,38066,4927,4324,4910,3325,2021,1774,2200,2219,750,872,811,1146,1013,1160,993,1152,1368,1526,1657,1193,1067,1478,1493,1411,1914 +75,294,448,676,858,1124,1803,1844,1488,2020,2569,2908,3264,3060,2846,3525,7016,16548,29444,40212,46444,43162,55142,49308,26212,24858,18422,22344,22838,28386,40798,49565,96583,109414,131725,128087,127349,119724,156701,112552,110806,98376,79361,48194,33400,37308,39832,40896,11160,28914,44964,63814,85502,74372,72058,101443,58989,66698,58694,70676,63368,67534,55766,75400,48287,62169,57557,38926,34075,29204,39465,40512,35921,25637,14721,12928,12788,23530,36598,33556,7872,5299,3726,3062,1425,3692,8662,10442,14579,12666,7249,3354,1457,924,502,230,0,0,0,0,0,0,0,0,0,16,29,36,50,60,66,72,1157,1784,2897,2432,3521,3308,2901,2508,2345,2512,2095,1946,2132,1902,1672,1283,430,506,432,514,610,722,1076,1132,1566,1486,1300,702,338,292,254,122,0,15371,23198,37466,81557,61332,41338,64516,51694,72204,112892,156829,184508,212048,205882,229522,21453,17099,21190,16745,12818,14740,19606,22452,25792,23258,19108,20482,26531,31300,33346,32702,47970,58770,63472,76124,85687,87378,80002,70386,82377,56914,43192,50566,56266,36500,22830,12490,25645,37570,56459,67716,95903,84788,58905,45452,68414,65998,65566,50236,51169,69768,66089,70560,133741,120912,91432,105399,101428,121232,108646,138682,168349,149783,169090,132317,113636,109086,97177,97528,102193,100928,117196,128294,139752,84408,47446,40015,6929,6278,6073,3698,1960,1951,2561,2390,1061,1034,1059,1072,1110,979,979,706,1204,1764,1413,1240,996,1448,1525,1557,1620 +89,408,652,665,1000,1208,1559,1874,937,1520,2260,2142,2404,2626,3591,3133,9434,18930,23246,44928,55778,63540,67448,77026,26203,29340,28611,30286,25659,37104,44347,48924,111437,90902,112389,112915,138740,160615,131552,156899,142548,106601,54044,42400,35660,37651,37368,46631,16051,42363,55037,103026,122304,158729,155749,127151,45152,50536,55322,66299,57720,55785,49589,74408,46331,31263,24296,22447,21682,37774,44608,42024,32581,28201,23411,19106,13464,15831,20504,32157,10050,8008,7631,4126,2432,5798,8272,11901,20899,15066,15162,10116,2135,1614,1081,442,0,0,0,0,0,0,0,0,0,17,27,44,57,75,110,137,987,1539,2442,2124,2674,2708,3289,2573,1006,1062,850,688,754,684,680,848,246,324,318,430,641,768,779,926,1635,1471,1043,578,347,203,140,76,0,16428,32383,51944,55676,61238,62900,51996,23665,68811,117937,133901,149310,177568,245464,195949,28245,23354,21154,18851,14694,13450,16246,19773,26296,29685,26146,18524,11904,10970,9142,12687,34532,48560,63668,78343,75320,57596,65086,38026,62732,57084,48953,47242,48372,35032,28678,16101,14346,37586,54238,61236,70747,66281,43391,24692,45734,48608,38242,64123,75820,68104,60517,87251,90635,84617,110274,110899,79137,53812,51880,52906,139972,118850,94608,101567,119821,88150,99835,84022,52612,91510,110272,114810,109982,73874,56308,34882,8755,6181,4218,3556,2038,1910,2702,2612,1219,1371,1470,1609,1312,876,538,504,1462,1274,912,1078,1098,1498,1485,1276,1572 +120,358,532,624,822,1194,1480,1681,514,988,1601,1841,2952,3152,4048,4372,8006,14922,28659,40362,59448,51965,67963,71211,37580,39005,34684,36186,36333,47105,51821,50843,94136,93748,123196,118021,146574,167908,161223,186044,137884,125830,89958,62240,36800,30390,40220,51090,48280,49461,75453,97344,139989,116286,115674,119407,90714,87276,66416,70680,78784,65482,44109,58264,76436,45360,36328,28411,25210,37980,42104,41712,29655,27323,23456,22939,15790,21622,20604,26445,12355,10168,7076,5877,5035,9010,13279,17274,21392,14798,13890,9070,1954,1762,1224,695,0,0,0,0,0,0,0,0,0,16,33,61,72,110,126,156,702,1099,2007,1817,2561,2482,2151,1971,957,777,826,622,550,458,589,588,410,591,562,714,644,675,779,926,1653,1476,873,631,515,328,206,112,0,15630,31015,34700,47961,50394,48208,47163,38324,70250,110974,121950,136790,159896,173339,175622,43590,34822,33366,25462,20992,16789,18550,19610,17376,19232,17503,13249,13585,13364,13039,16012,30970,35436,50024,56732,65971,44867,44018,28542,44050,40878,41000,37328,38843,31956,20997,11618,11564,26009,30027,30369,63187,51516,33089,17935,32499,33332,33404,54830,58816,57596,58245,90987,69476,85202,74618,62818,73919,47460,47928,41403,97904,84208,64791,83648,117201,99050,92314,72164,43706,91052,128922,106688,113870,77887,44864,35688,21825,13510,8240,5344,3468,2844,3221,3040,1139,1573,1730,2054,1896,1482,816,657,1747,1692,1446,1172,1319,1528,1427,1138,1122 +136,336,429,468,536,685,962,1198,287,584,718,1005,2572,3986,5849,6224,6796,19404,25867,37823,66158,58728,67163,81982,44643,44140,47552,34316,41968,57384,65722,70615,123493,133264,109872,141872,209294,225213,212019,171964,169772,144343,123535,87002,38579,33714,38518,41730,64528,70895,82450,116424,114344,106315,80514,97107,142314,127128,98142,95566,87274,77692,45023,56546,84666,61034,44644,33902,32164,26980,34056,24921,31131,31682,23469,23663,20996,21823,27755,26292,12181,9067,9188,6130,6530,10400,17355,24324,20555,14222,12722,6757,2451,1896,1155,498,0,0,0,0,0,0,0,0,0,23,42,82,73,149,180,177,373,769,1216,1120,1748,1683,1683,1612,676,531,535,536,232,320,418,444,610,598,665,684,596,668,634,993,1298,965,1084,839,585,400,256,114,0,10097,20568,28042,47531,45210,35054,38852,52741,81958,105380,118793,115184,129941,119038,138333,73020,50112,39780,27074,26336,22162,15878,14144,16065,12587,11246,12398,12147,14191,14765,26356,33078,34516,26658,32638,42192,34538,27794,18915,28063,22361,22684,18636,22940,20158,12110,7026,6744,13038,17830,19319,43300,35071,26118,12434,29998,37982,40218,52840,47656,62605,64055,89122,81131,79122,69590,62346,45101,29430,28176,18535,86953,84653,55339,60120,80310,78706,59770,48978,55033,89956,105964,92799,112763,75120,47333,31744,27707,18753,10866,7732,4076,4092,3100,2615,1588,1802,2386,2436,2351,2130,1365,894,1909,2051,1613,1377,1391,1213,902,840,614 +144,200,241,314,365,352,421,488,163,414,590,986,2028,4090,6316,6237,7355,24378,33908,44526,64125,64753,69820,84368,75272,54120,49403,51893,54528,77606,81273,60672,102875,98340,141656,167169,202889,234554,222190,180222,187001,170093,114004,79367,34684,45253,45680,59780,66588,90180,98734,123619,125068,108921,97422,113020,178587,122364,98060,79462,89905,74548,57910,56818,96822,69908,46942,42365,35844,33584,34470,30839,18697,21210,24867,25391,20491,21804,25556,28898,18250,14532,10811,8012,7625,10797,15219,21768,21922,16434,10933,7674,4103,2596,1630,728,0,0,0,0,0,0,0,0,0,23,53,86,72,140,216,203,328,538,656,682,965,830,720,710,372,288,218,246,123,138,181,198,727,756,856,834,680,697,816,927,1304,1143,1022,812,729,446,301,140,0,11894,20794,26186,35748,40088,42394,40798,52351,78027,109448,108573,98886,104854,137253,129324,87900,59413,38314,39490,34094,22344,14536,10799,8468,8104,6620,7122,8765,11032,14964,25263,32524,26314,28272,30053,28463,24720,21778,11328,13760,12221,11987,11354,11701,10194,5309,2934,2860,6005,9930,9042,25912,21672,13273,6767,12003,18734,22743,32867,36061,53201,54802,93152,100715,69722,64232,56250,40500,24016,18318,13964,41365,46310,28504,31624,46090,39248,31492,21236,75007,98321,105821,92651,78080,58707,64556,43542,35936,26324,14429,8806,5027,3963,2894,1949,1478,1924,2031,2013,1982,1912,1929,1392,1744,1748,1654,1201,1423,1061,738,450,346 +150,689,1561,1703,2166,2131,2432,2606,2425,1861,1924,1757,1307,2368,4110,5650,7666,20376,32618,54985,86753,88016,62263,63632,90182,87521,84107,82623,121082,124822,120035,110420,65105,50480,46716,35411,37126,33890,24574,11886,0,11621,21807,47561,58124,47119,52885,75254,82918,56064,37425,26800,12885,10751,13706,15996,13555,15596,21502,20807,18286,32694,50938,64281,81335,76355,60772,67444,83584,83829,73744,78103,90187,66140,69792,60278,43127,36811,27686,27458,22020,20443,17512,14256,10427,9177,12382,12613,11366,8943,7885,4537,1697,970,703,290,0,2,3,4,3,5,6,8,8,12,17,23,36,108,183,241,228,199,194,133,133,92,53,32,24,28,31,25,20,19,12,7,1102,842,492,571,466,660,740,1062,1275,1646,1471,1291,1080,911,612,351,0,3055,6012,9404,10788,10522,8447,8509,12755,19440,28320,25848,30676,55268,64307,78339,85026,54936,44489,34604,18797,14440,12148,9165,10703,9752,10732,13611,19086,27450,31079,28340,31216,23630,19207,24736,23049,16686,16211,13230,13155,10240,5985,4464,4050,2274,1309,771,0,1833,4411,8503,10518,26266,38745,48770,57959,57913,79552,82408,122492,153846,143422,115992,88402,57413,43489,27933,20320,18600,13996,6144,0,0,0,0,0,0,0,0,120705,98291,76422,68858,85848,56675,43720,20246,0,154,336,701,973,1105,1600,1393,1393,1282,937,728,457,674,806,1020,1254,939,808,632,755,659,367,193,0 +174,734,1234,1207,1678,2267,2352,2354,2017,2150,1710,1614,1156,2044,3030,4107,7525,25492,48234,52752,74492,68488,65943,76971,74228,74876,85371,78510,117667,117648,144904,94412,70445,60519,46096,29902,36236,25976,20009,10187,436,10738,24460,32640,53985,51568,46553,58520,110575,73088,44793,36802,26408,19570,16547,17836,14304,17259,19064,19483,20602,35628,44592,63015,65200,67525,49836,65124,64369,69552,56573,61634,74184,70005,49466,48628,37840,39768,24754,20095,17989,19019,14432,15440,10796,9952,12148,10978,12357,9660,6613,4982,2594,2290,1052,532,0,5,7,9,7,12,14,18,12,19,18,26,40,107,147,201,181,386,630,1023,1656,1847,1702,2185,737,1099,1292,1338,1843,2325,2876,3752,869,780,697,544,531,630,538,750,943,1226,1109,959,703,668,365,242,0,2742,5676,9106,9976,10834,11910,11702,17634,20094,29687,29568,38662,50744,68850,77600,83262,62956,33735,29064,15863,13889,12266,10680,9744,13300,16310,18840,20212,21418,28666,28508,26859,23764,27121,22324,22439,16883,20388,17480,13949,9870,5004,4457,5449,3651,2176,1020,0,1480,2699,6263,10494,18361,25695,35888,50712,70538,61498,101258,72161,82589,127221,119368,76167,52286,47609,32152,26044,18122,13162,5906,0,0,0,0,0,0,0,0,112645,97407,82165,73684,73012,60406,43639,21062,1850,1423,876,1219,1480,1744,2325,1824,1471,1168,1019,726,543,786,811,958,727,706,780,652,531,467,395,197,0 +186,729,1122,1200,1779,1824,2222,2342,1884,2134,2170,1612,1298,2037,2364,3668,10582,32610,49968,66513,81841,65625,51568,44061,46315,73900,77202,64172,163746,135226,123659,116406,68253,54894,39050,24897,29890,21705,12919,7104,821,13721,22510,23019,40407,47577,45282,39100,107515,81240,53324,35774,35636,23185,17482,18076,19564,15858,19962,16184,20964,22901,34465,40144,63102,72260,61552,59200,64958,54531,54124,43325,76139,68006,48202,46580,49143,32691,30770,29482,19331,19464,16412,12090,8870,10080,9304,9814,14247,10424,8197,6041,4739,2983,1552,639,0,5,8,12,9,13,20,20,13,22,23,34,30,87,128,168,174,530,910,2202,3562,3353,3946,5748,1763,2202,2652,3020,3742,4113,6447,7328,985,952,680,637,582,560,564,871,794,1042,1036,1054,527,453,260,116,0,1838,4084,6356,10397,10347,12472,17858,18380,27993,28622,27799,41148,49694,50708,57687,61044,40637,25238,22454,16492,14879,10436,10081,10278,15145,20874,26170,15415,25119,28347,31978,22935,29988,29531,27164,30729,29000,21346,21306,10196,6848,4590,4569,5682,3410,2352,959,0,994,2180,4286,6981,14010,18882,23164,33960,43601,70368,91013,55606,80096,93891,93484,83189,66765,45224,41458,26110,15884,11344,6236,0,0,0,0,0,0,0,0,92666,67121,67276,85803,93972,71026,36912,16855,3246,2316,1648,1696,2702,2353,2407,1688,1256,1035,856,682,625,909,986,985,558,564,596,600,512,410,305,156,0 +263,432,776,1231,1508,2004,2118,1712,1874,1662,1644,1269,895,1400,2044,2476,10789,27048,43332,51332,72222,67870,46995,44084,42858,61396,74700,74682,127974,117487,125723,111250,73076,50383,37000,27074,24130,15903,13150,6532,1256,10975,14441,22670,34492,43776,38775,44604,88544,73509,38899,32980,30905,27318,23476,21240,15815,16640,12054,13610,18738,19464,22854,22200,62917,60634,48264,49074,50226,48027,57247,48256,62603,50736,29377,32628,44891,34218,25674,24622,16601,16138,15590,14944,12332,10399,10140,10268,14292,8270,7808,6322,3964,2762,1960,706,0,8,14,14,17,20,23,28,12,17,24,34,41,66,92,122,130,758,1114,3300,5028,6218,8466,9210,2569,3383,4960,4723,6002,8646,10571,11083,1322,962,604,684,460,592,621,878,846,984,944,836,449,404,202,94,0,2000,3832,5740,9329,11739,16571,19400,16380,24447,33134,28666,33647,41372,43274,52032,33140,21794,17489,14369,12062,10858,11744,9646,9894,15524,16152,22020,17571,20960,23741,28074,19444,28261,29619,28318,24827,27108,19957,21062,10717,7162,6088,5224,5567,3763,3009,1394,0,1314,2750,5405,5420,10379,15762,17027,44905,43974,52278,60728,43523,67975,78808,110856,69314,66311,33661,34315,29160,18746,10336,5624,0,0,0,0,0,0,0,0,59361,63127,64882,65586,79806,54928,34807,19608,5379,4058,2825,2820,3150,3140,2958,2439,864,825,863,600,514,622,974,724,606,514,584,468,301,276,188,84,0 +323,626,800,829,1138,1714,1752,1582,2206,1397,867,859,564,954,1137,1254,9647,17131,33126,51047,58785,57564,75421,72985,28301,42882,69862,105104,116158,125576,102477,118168,58437,42360,23009,19278,16326,12671,10825,5877,1282,10812,23002,36248,38692,50387,55399,64593,72785,74960,53010,39882,39736,33938,22281,22792,18614,14045,9594,9058,12706,10882,7209,10095,57211,57792,51934,43496,32422,29241,28007,32060,47689,57138,55785,52099,33308,27122,26009,18992,13438,14968,15039,11938,14546,10619,9787,12888,10716,7585,7077,5575,5121,3494,1820,788,0,7,11,19,22,21,20,29,10,19,28,30,37,52,59,52,65,2210,3718,5732,5908,8482,12929,11906,4519,6157,7788,8402,8028,11694,12918,15193,1520,1518,1139,798,562,819,867,1129,1045,649,564,500,455,347,287,141,0,3687,6313,9833,11576,17136,24607,29168,20974,24408,23547,37712,40870,34194,38030,44550,10302,8302,8252,7446,6704,9440,9801,11046,9708,12906,12348,18568,20592,18332,11534,14405,21502,22846,17139,21287,27673,24370,26804,22274,10812,9125,6640,6663,5489,5182,3808,2211,0,1007,2287,4811,6484,6296,7679,7824,46188,50049,59419,52846,44542,59856,55378,84262,56915,47768,36084,39808,33513,29801,20436,11560,0,0,0,0,0,0,0,0,53841,74775,71957,72418,60923,39959,38699,24745,6666,5204,4731,3988,4139,2985,2794,2940,519,462,380,448,440,320,336,500,538,444,328,318,236,132,85,48,0 +214,513,507,674,861,1028,1237,1206,1691,1290,864,762,459,734,734,766,8519,16587,29092,48440,53999,55176,62556,60418,23912,45921,48527,88388,82943,115172,97104,94751,34552,33443,17528,14384,11733,11136,6661,3832,1080,7991,16933,21510,34456,34626,36637,35830,88421,69330,49136,38012,44846,43024,26916,26292,20699,17208,17191,13852,12223,13408,9708,11920,68082,61708,53297,48970,32945,26021,25667,28899,32389,37708,38667,35134,25304,27427,23252,18387,19011,15812,14773,16733,11324,10095,11268,11778,10456,8874,9693,6670,3440,2828,2040,1117,0,6,9,17,20,28,37,40,20,28,30,30,31,60,56,74,107,1994,5257,5816,7348,10066,12059,14340,8559,9018,8870,9251,8127,11576,16124,15592,1198,1280,930,620,466,618,615,762,1010,629,543,471,443,308,220,104,0,3558,7891,10743,13112,17948,22804,27542,16172,23114,23415,31801,32871,34328,52192,47358,8314,7052,8045,6989,5792,7505,6426,6900,8363,10436,10318,16351,19472,20415,16895,19180,17485,24336,25108,26790,25758,23675,26165,21632,15275,9978,7783,6188,5067,4044,3564,1647,0,1753,2910,7066,6728,11255,11473,11760,35716,39692,54302,40149,41252,48214,52566,90057,46386,34836,34478,31293,22700,20732,14255,6510,0,0,0,0,0,0,0,0,44804,64680,80629,67695,44160,36590,32908,21108,9762,7579,8121,5944,6152,4235,4088,3407,312,344,318,290,311,258,313,454,413,352,298,257,175,124,79,42,0 +172,280,382,593,774,699,719,1052,1005,820,794,572,329,433,642,801,7460,18302,23097,41018,43883,42817,41525,36237,20723,38282,47756,73523,81051,93712,112686,109550,19966,14748,13674,11527,7606,7399,5047,3444,852,7474,11947,18042,19167,24150,28074,30427,82583,64724,55396,54372,38860,32411,35378,27190,19539,23286,21904,20871,14216,13702,12574,14716,57219,58273,60394,39579,39447,33871,28842,27153,28718,31374,33146,35072,22436,23793,17632,16450,20120,15606,17714,18526,11204,10963,12794,13907,9154,10546,9090,6568,2816,2426,1839,1034,0,5,7,12,13,30,42,49,24,32,37,30,30,45,78,90,157,2515,5354,6564,7129,7519,11609,12268,16348,13284,11882,12996,8223,9696,15327,15658,1041,798,818,456,364,417,564,582,771,593,458,314,333,310,187,87,0,4861,8258,11005,13520,18000,21439,25856,13946,18145,24145,28177,31123,36138,51074,42679,7783,5474,5781,5359,4062,4866,4938,5190,8594,8057,10718,9966,12634,21225,23795,23994,17420,20095,26127,28534,30928,27149,26744,22150,15496,14823,10732,7626,3109,2608,2226,982,0,2666,4836,9427,10231,10770,14503,12238,27649,34374,40796,43520,38875,37503,44336,68833,28289,30200,27631,29203,14057,11234,9866,4140,0,0,0,0,0,0,0,0,44129,64222,66336,62014,36662,33666,19802,13815,12053,13653,12556,8229,6121,5489,4170,2543,222,221,170,186,308,242,273,296,354,327,237,212,146,84,48,29,0 +222,214,288,413,566,514,508,819,820,654,466,478,252,313,365,388,6236,10336,18027,30935,29814,31912,29101,32931,21579,33286,47546,67401,59789,85220,89705,97088,13485,9321,10594,7482,5494,4640,3337,2748,1102,4974,7880,10474,10151,13621,13885,15542,90361,62296,75872,69026,48980,47326,46504,35380,20609,19108,19150,25566,24298,21704,23144,20754,57366,59752,46195,38024,33183,24014,22801,18056,16953,18128,19384,20232,15717,15498,13872,17138,19620,16746,18592,19336,14316,13180,14051,11934,7864,7562,7894,5842,3404,2992,1822,1169,0,5,7,12,13,32,47,58,46,58,42,40,34,56,80,92,180,1928,4908,5718,5637,8963,12170,13482,15832,16879,12583,12155,10807,15254,15418,18940,927,734,742,568,346,382,512,408,630,520,423,270,214,166,114,62,0,3533,7781,8987,12237,13052,13804,23856,20153,24976,25962,26302,39674,52817,50703,51848,4870,4548,4304,5014,4269,4000,3872,4020,7308,6650,10056,9434,12105,19224,20728,28854,19596,25622,27521,32395,36631,31334,29456,17606,16252,12914,10580,8109,2514,2356,1834,896,0,2594,4389,9303,12544,13011,19647,16711,22375,23624,23705,35196,32857,47520,51729,66136,30424,26280,16164,19069,11023,7720,6096,2928,0,0,0,0,0,0,0,0,53745,61078,53016,44565,38104,32003,22453,18130,13748,12733,12741,8904,6960,5166,3828,2700,127,122,83,108,162,145,136,140,192,170,134,94,67,48,31,15,0 +224,187,238,171,130,304,406,468,499,375,428,298,152,89,60,34,3184,4127,6848,8494,8329,7238,9248,13547,22304,26900,29331,26273,29500,35704,41850,83329,6502,5220,4083,2956,1500,1517,1253,1265,1458,999,1030,805,548,376,296,172,73450,54346,51305,46539,54768,59994,50149,35868,23308,24274,21282,18915,11651,11348,14586,20472,56871,37291,33737,27184,13773,9449,9336,5514,880,7080,11356,14906,21867,19741,15865,21103,24656,19425,21002,13107,8405,9709,11483,8184,8352,7817,6566,6080,6337,5172,2419,1312,0,5,9,15,24,38,40,40,56,68,58,56,58,81,94,101,180,2994,7164,8726,13479,14857,15772,17998,21168,24110,25047,29972,38229,46305,39060,25666,697,591,396,490,449,367,304,378,472,418,445,373,403,303,219,94,0,2534,4437,9603,12575,18196,18764,20768,22186,30837,41221,47669,42970,55335,54958,47662,2134,3264,4650,4779,5659,5635,3792,4889,4400,5437,7328,9810,11826,13150,19570,27672,22019,20218,18816,17861,18955,18719,19347,13464,12889,8404,6925,4230,3595,1964,1301,666,0,972,2074,2193,3394,10039,13819,17436,18122,28694,50459,51280,65280,63986,57905,75993,24787,21406,14703,12158,10571,9688,6652,2929,0,0,0,0,0,0,0,0,59163,51367,48155,43810,45979,38342,33261,20894,16524,10191,7385,7560,6258,4378,2772,1916,0,2,3,5,5,8,11,13,11,13,11,8,5,5,3,2,0 +298,270,250,196,162,344,388,486,419,456,399,381,436,348,330,372,2791,4194,6509,6508,6303,8265,6897,10734,19569,23428,24408,23964,27458,32578,34714,76284,6409,5078,4877,3670,1726,3336,4356,6364,3704,3537,3417,3314,2827,2856,2401,2496,69305,57560,47840,48260,50421,53233,40322,27784,30600,30248,23076,17754,11042,12409,16082,16279,54440,43594,30880,22243,18806,12529,9108,5808,2229,6741,12112,15269,20189,18612,17696,25696,25537,17054,17272,14586,6911,7903,10626,7430,7155,5304,4857,4688,7131,5268,1798,1150,0,6,12,16,19,30,37,44,49,60,70,58,56,71,86,82,144,3434,5729,9146,10996,14305,20304,22468,22486,22194,20313,25938,27097,31330,37953,24508,600,488,397,404,459,424,374,414,502,439,334,277,406,267,192,92,0,1852,5097,8414,10745,12553,11083,13718,17092,29126,30250,36296,33421,33182,45306,43746,1867,2572,3306,4540,6456,4780,3048,3708,4019,5075,6736,6808,7783,10546,11497,18502,18407,21718,21818,18884,15914,16328,16049,13863,13090,10678,7549,5502,3394,2430,1916,934,0,966,2631,3004,3690,9727,17303,16318,13638,23770,46034,43368,57527,52379,52600,63508,23508,19454,13504,11532,9912,7360,4962,2654,0,0,0,0,0,0,0,0,62792,44524,34102,40178,42450,37724,26763,20816,10220,7484,6313,5554,5687,3708,2482,1881,0,2,4,6,5,9,10,10,12,10,8,8,5,6,5,2,0 +296,313,286,186,194,278,429,484,369,430,530,598,593,570,601,604,3405,3678,4910,4523,4999,5852,7880,9409,16743,18779,24015,30571,19263,33573,39086,66546,7610,5958,4775,3022,2560,5426,8050,13321,6927,5442,5159,6813,5239,6335,5512,5478,42418,47179,47774,59522,52045,34931,35206,21876,33755,30050,24442,14267,7215,9675,12758,11994,52109,41473,27258,16697,19917,14909,7701,5028,3033,6045,9799,16705,15125,20348,21654,30402,23776,21360,13388,10585,7946,7951,8422,7354,4717,5394,4303,5103,6171,3953,2062,957,0,6,10,14,18,24,32,49,51,47,58,60,63,67,66,62,177,2360,4808,8160,12238,17568,19692,23610,17366,12900,13704,22409,19124,21525,28009,19138,462,509,406,418,364,316,360,460,392,447,380,247,320,198,120,72,0,2050,4836,6133,9212,8752,8485,7472,19940,17425,23398,24002,22778,27550,38422,53174,1244,1838,2293,3421,5737,4893,3714,2976,2391,3767,4138,5208,4466,6104,7597,9912,23223,24831,22764,20423,16668,13399,15480,15842,11265,8877,7508,6050,3688,2447,1979,952,0,1182,2524,2492,3016,7278,15030,15462,8472,24614,33798,47580,32382,36991,39305,50384,15739,14240,13342,7982,7364,5343,3904,1738,0,0,0,0,0,0,0,0,49347,40018,26199,26415,30605,32585,24317,16696,6932,6790,5333,4726,3255,2828,1488,1242,0,2,3,5,4,7,8,8,8,8,6,7,4,5,4,2,0 +241,258,244,204,161,254,324,373,231,382,635,625,818,722,646,856,3032,3666,4673,5351,6629,6318,8668,7943,18156,16488,21873,21232,16908,35741,41228,51306,9742,8099,7194,5038,2974,7446,14577,17638,7912,6052,4848,7310,6941,7283,7790,7610,26750,39346,37336,44031,42449,35616,42499,30313,38266,36738,31630,15482,9243,8668,8722,10290,49596,37010,30423,18346,18590,12158,6365,4123,3041,5289,7345,13575,16379,20928,19411,23792,13749,13388,12413,9705,6251,7502,8373,7970,5504,4152,4468,4720,5993,3685,2491,1194,0,6,8,12,15,22,32,39,37,38,44,43,65,50,46,46,150,2272,3631,7214,10246,17341,19124,24788,18452,15436,16185,18482,13193,16562,21412,16402,323,301,343,352,347,362,328,366,410,336,286,208,226,171,112,56,0,2098,3905,5736,9014,8346,7568,8150,14004,16486,25218,24020,19845,23164,26634,37380,1492,1601,2026,3526,4483,4382,3456,3430,1601,2810,2938,4445,4235,5915,5564,7565,18888,17121,16926,15700,12304,14696,11259,13584,10099,9084,6040,4420,2876,2080,1857,829,0,1387,2573,3806,4696,9177,15594,14158,8870,17430,28227,35594,24955,34966,34353,45722,12517,11370,7445,6189,6102,4296,3008,1246,0,0,0,0,0,0,0,0,35933,36331,34008,33098,33466,29118,19084,12857,4651,3957,2642,2622,2538,2248,1038,1048,0,1,2,4,4,6,7,7,7,8,7,7,5,6,5,2,0 +256,192,144,141,184,156,162,241,144,238,382,616,964,910,1116,945,2259,3743,5888,6868,7228,6460,8291,6850,18711,13530,14146,17948,18598,32475,37990,33525,12224,10940,8277,7426,4820,8841,11527,20744,9979,11412,12780,9766,10694,12517,11435,11760,15763,13994,16998,32298,40428,41441,50460,38980,47269,39439,34033,17602,8353,7265,8355,6700,48352,41480,39011,28664,14964,11994,7375,4932,4076,7952,9354,13686,14423,14973,15879,18425,10232,9042,6624,6841,7527,7980,5894,6120,4923,4941,6055,4268,4601,3430,2736,1396,0,2,5,10,10,17,23,30,22,32,38,37,44,43,58,45,82,2906,5092,7982,11732,16708,22628,27956,21544,18748,23576,15894,13703,10991,10726,9305,210,191,242,260,318,328,327,346,349,267,198,159,150,143,99,50,0,1513,2693,5099,5878,6434,8786,7744,10083,13412,12280,13783,21711,38168,44293,53446,1613,2876,3490,3244,3756,3117,2076,2206,578,843,1510,2201,2843,2630,3417,5435,12418,15555,15114,10670,11031,11773,13867,12040,7353,5665,6215,3553,2172,1523,1046,588,0,1455,2987,4480,5418,6503,6853,12290,8192,14881,16806,19738,17320,23656,23699,29821,6303,5839,4539,5118,4020,2994,2204,980,0,0,0,0,0,0,0,0,38622,32510,24212,27964,29745,18973,12582,8398,1856,1438,1087,1100,999,1074,1282,1171,0,0,1,2,2,2,3,4,3,5,4,5,4,5,3,2,0 +188,145,126,156,148,117,129,178,133,338,566,929,1216,1046,1147,1456,2776,3813,6158,5768,7550,5874,5749,5548,15013,13528,14034,14631,13481,26124,31138,28574,12772,12684,8865,7988,3949,8646,13712,20914,15582,17778,18540,14638,13971,14340,17067,18445,17574,18310,18127,31832,33853,36532,45956,36807,44128,32816,28634,18186,12714,12234,12814,8698,39354,30278,24606,22324,17062,13140,8383,7269,6896,9928,10122,12025,11521,10995,15086,16286,9232,6918,4783,5239,4939,4936,5451,5433,4300,4082,4020,3684,3402,2306,1755,1014,0,2,5,10,10,14,22,24,15,23,30,30,41,40,44,34,66,2584,5308,9485,12050,17454,19757,21432,17648,19851,24006,20297,15472,12232,10325,8801,150,164,235,258,249,244,252,214,217,170,150,118,130,108,74,41,0,1070,1640,3131,5088,6062,7229,6688,7064,10208,8797,13508,17375,25414,28120,29380,1191,1880,2867,2900,3071,2293,1764,1652,353,786,1010,1641,2194,2166,2364,3680,9863,9602,13574,9388,6812,8998,10185,9042,5964,5188,5127,2826,1845,1360,872,426,0,1083,1900,3145,4031,5882,4367,8098,6214,10814,11581,13118,16155,18932,17882,23374,4894,5049,2753,3355,2388,2323,1610,702,0,0,0,0,0,0,0,0,27649,25871,15367,18566,27083,16562,12630,7439,1195,1032,911,920,939,817,995,998,0,0,0,1,2,3,4,5,4,6,5,6,5,5,4,2,0 +194,186,160,144,102,91,86,99,85,357,802,1102,1235,1337,1392,1674,3861,3669,4886,4574,6362,5496,5682,4067,12756,10829,12237,13353,8370,11550,20254,24383,13040,14033,10372,6845,4538,10326,16392,21478,22180,23236,19156,15353,20344,18814,17697,22774,22513,22346,25590,32316,28465,34540,35955,37785,46228,27954,21788,24061,14007,14763,17204,15023,32002,19276,15432,13893,13859,14474,12078,9262,8063,10386,11482,11540,11708,14292,12702,12142,5708,5652,4368,4072,3700,3434,3374,4139,3357,3086,2986,2462,1536,1369,1292,663,0,2,4,7,5,9,13,14,11,17,22,18,29,32,26,21,41,4040,7994,11394,14332,11050,13223,14140,18973,14950,17830,16774,12856,12969,12936,10778,133,144,150,149,215,138,108,118,160,139,98,94,73,61,45,22,0,481,991,1520,3325,3361,4147,3770,4007,7095,8222,10618,7620,10239,15567,15173,554,1101,1468,1712,1377,1160,958,1267,193,536,747,1002,1961,2228,1884,2262,7629,9363,8322,7974,5864,6428,5980,5509,5046,3646,3618,1842,1300,770,417,190,0,687,1253,1807,2451,3298,3175,4772,3768,5257,8481,9234,11972,13897,17486,16742,4247,2566,1894,1815,1804,1150,822,437,0,0,0,0,0,0,0,0,16967,15719,12501,13378,18083,14486,8877,5511,753,661,660,703,650,650,571,619,0,0,0,0,1,2,3,4,3,5,4,5,3,4,3,2,0 +157,132,100,94,70,66,65,64,42,357,736,1594,1418,1754,2128,2288,3374,4301,3393,2919,4906,4504,3373,3158,8785,7414,8438,10688,9742,11229,13929,14317,11968,8848,8900,6442,4500,9622,13224,21372,23361,24642,23512,23206,19048,20926,22349,22556,26998,24660,25597,26626,34208,34600,34447,42532,43484,29273,20002,25838,24270,25189,21674,17111,21383,14760,9112,8883,11312,11530,11025,10864,8630,9526,10612,9052,9943,8964,8060,8290,2691,2284,2613,2088,1828,1549,1392,1944,1706,1549,1318,1062,734,738,567,318,0,1,2,5,2,5,7,8,7,10,11,10,15,19,16,12,18,3586,6048,9064,15324,12788,9180,15107,15882,16243,13438,15809,16486,15234,16638,13904,59,70,78,80,106,70,49,44,86,68,41,40,41,28,20,12,0,211,481,765,1586,1680,2481,1774,2255,3572,4187,6244,4322,5444,7609,9938,268,448,785,894,712,512,489,600,107,252,419,412,1174,1204,934,1308,3663,4436,4717,4139,2634,2768,2622,2860,2738,2338,1609,910,744,434,200,92,0,298,507,910,1257,1478,1332,2446,1651,3082,4932,4910,5717,6432,7652,9673,2111,1286,884,772,852,595,371,188,0,0,0,0,0,0,0,0,9911,8165,5550,6004,9042,7383,4340,2706,445,364,378,365,342,330,297,330,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,1,0 +78,80,61,47,17,28,42,51,51,47,56,65,76,75,66,74,64,60,70,64,56,37,33,17,0,0,0,0,0,0,0,0,0,3284,5670,6496,8689,10630,9647,13180,13187,14136,10654,11168,11660,12244,10445,17076,18555,18417,12152,8756,5492,20578,28848,25982,35967,39841,35015,27422,27515,19521,15367,12924,11727,8936,6453,5114,3748,5568,7591,8332,8294,5537,3968,3042,2333,2796,4110,4430,3574,3300,2761,3416,3764,4474,3957,3622,2806,4651,7286,11573,12826,12641,16436,16214,22994,20908,23287,26812,23056,17604,13920,15144,11950,12912,10885,8752,8815,7087,4953,2439,0,0,0,0,0,0,0,0,0,4030,8434,13132,16269,18498,17576,15471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +72,78,61,43,30,34,47,46,40,51,62,72,61,59,55,68,52,45,60,54,48,36,32,16,0,0,0,0,0,0,0,0,1196,3349,5734,7379,12237,11761,10528,12226,15869,12560,14903,14952,13955,15322,21072,21192,12056,13633,11062,9954,11342,21566,25465,36128,27141,33362,32215,32546,20866,19534,14067,12260,29128,18620,15188,10830,5709,8789,13705,19408,22245,20049,12526,10261,6760,6382,5454,5190,4362,5676,4289,6260,5663,6244,6936,5869,3672,6672,12674,13558,18836,22174,25246,27756,19265,16546,15988,17982,16021,13444,19137,16068,15374,14509,11291,11554,9742,8629,7318,7432,0,60,100,118,286,449,459,642,1160,4880,7762,11762,12068,16175,22673,22187,0,1,2,2,2,2,2,4,4,4,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,2,2,4,4,6,4,5,4,4,2,2,2,3,2,5,5,6,5,7,6,7,17,15,10,9,8,9,6,5,0,1,2,2,2,2,2,2,0,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,6,4,6,8,10,8,10,7,7,7,8,7,7,8,10,11,12,8,12,11,11,13,11,8,6,2,2,2,1,0 +46,59,66,50,47,49,46,39,34,56,60,58,46,57,62,65,40,46,36,37,48,36,26,12,0,0,0,0,0,0,0,0,2714,3227,5284,8000,14389,13324,12030,9798,21046,21656,16428,22872,20389,25568,25210,32110,10784,13774,13592,9910,13469,22457,34460,31764,30631,26737,29538,31719,24591,17227,14101,13038,37387,38644,27472,21265,8041,13846,19296,25960,30508,31940,24091,20292,13333,13029,8454,6766,6609,5762,7428,7923,5883,7324,8002,9386,4140,8255,15428,19068,20697,28410,30868,27586,16268,16639,13790,14050,15677,16047,18491,16534,16611,13606,13224,15251,11281,12597,11890,14510,0,116,226,303,541,728,1022,1109,2599,6126,8362,7840,11230,13844,20735,26648,0,2,3,4,3,5,5,7,6,6,4,5,4,5,5,5,0,2,3,4,3,5,4,5,3,5,4,5,3,5,5,5,1,2,4,5,4,6,6,10,6,7,6,6,4,5,5,6,4,7,8,8,9,12,10,12,29,21,20,19,17,13,10,7,0,2,3,4,3,5,4,5,1,2,3,4,3,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,8,10,6,12,15,17,14,12,12,13,12,12,13,10,14,16,22,26,16,18,18,21,22,18,14,10,4,5,4,2,0 +47,56,64,49,54,48,51,46,24,46,39,48,49,48,52,60,40,41,40,43,42,35,26,12,0,0,0,0,0,0,0,0,3820,5312,6150,9720,14264,10766,9790,9744,22936,16362,15757,19952,24353,31698,31355,32416,10775,13184,17646,14527,12118,20228,24058,28467,28010,28750,23856,24596,29052,18105,15008,11573,53391,50688,39594,27462,13590,20879,30112,37453,43109,45033,30074,32154,21708,20202,15962,9118,7214,8422,10055,10456,8162,10700,12113,11620,7849,12102,16324,21911,31871,29440,36312,37280,11227,12486,13732,11614,11386,14664,18392,19608,17677,15770,10855,12964,15486,14184,17826,19886,0,180,295,458,612,1190,1953,1672,4605,6608,7848,8926,14273,17821,18558,27310,0,2,4,5,5,7,7,8,7,7,6,7,6,7,7,7,0,2,4,5,4,6,5,6,4,6,6,7,5,7,7,8,2,5,6,8,7,10,10,14,8,9,8,8,7,10,9,10,6,9,11,15,17,14,16,18,39,38,31,28,22,19,12,10,0,2,4,5,4,6,6,7,2,4,5,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,14,12,18,18,24,24,27,20,22,19,20,22,16,25,26,30,32,23,22,18,26,26,19,13,13,7,8,6,4,0 +41,51,66,60,58,62,52,46,21,28,29,30,36,42,60,70,36,44,48,34,33,34,22,13,0,0,0,0,0,0,0,0,4346,6766,10440,11342,12646,9880,8810,7690,22553,19618,20067,19679,25504,29969,30603,27572,12405,12639,17337,18145,16051,16682,17569,31377,33903,25414,26118,26536,24368,23395,22105,20495,73031,55922,60923,39376,17894,20202,25221,33019,62245,52828,47652,43484,31763,23332,19674,11684,6248,7032,7373,11285,11974,14139,18798,20628,9747,10782,16523,26503,35410,37383,29328,38827,9914,11062,15351,16287,12122,15352,15312,23364,14367,12047,12095,15611,20863,19767,19669,18597,0,245,509,635,838,1538,1982,2788,5910,9884,12930,12839,14662,19198,27382,30784,0,2,3,5,4,6,6,7,7,10,8,8,6,8,8,8,0,2,3,4,3,5,4,5,3,5,6,6,4,7,8,8,2,6,8,8,9,12,10,13,9,9,9,8,8,10,11,12,6,10,14,16,22,17,16,20,43,47,46,34,24,20,20,12,0,2,3,4,3,5,6,6,2,4,4,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,19,18,19,14,13,14,24,31,27,31,26,26,26,17,17,34,31,24,26,32,24,23,24,32,36,28,20,9,7,4,2,0 +116,113,95,90,76,62,64,62,23,30,28,33,34,31,51,46,23,32,37,33,34,29,18,10,0,0,0,0,0,0,0,0,7669,11638,15176,16708,11728,14030,12505,12766,23312,23768,24952,22746,25526,30100,34946,34055,16582,19994,18108,20390,11793,15358,15434,27946,30709,26942,24766,25382,24798,21626,17927,12447,82775,78830,70788,42582,20894,28312,24620,43549,51318,55793,39630,34016,36297,27920,20225,9398,7095,6262,6144,10760,9539,14373,15572,25353,13657,16444,24770,35666,43326,34008,30421,38390,10678,13362,13060,14595,12159,13416,14916,19928,15721,15718,16115,23194,26450,27664,24482,30250,0,248,492,896,1162,2253,2571,3956,7031,10902,14131,11962,9938,15006,20060,22850,0,2,5,7,5,7,8,9,11,10,10,10,8,10,11,12,0,2,5,6,5,7,6,7,5,7,8,8,7,10,9,9,2,8,12,13,11,18,22,24,19,21,17,17,22,20,18,20,10,14,16,21,26,28,34,30,45,44,44,38,27,24,22,14,0,2,5,6,5,7,7,7,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,22,18,18,14,16,20,29,38,36,36,38,30,30,20,19,35,36,34,40,42,44,32,32,36,40,30,22,10,8,6,4,0 +185,175,142,105,81,81,68,51,21,26,25,31,20,23,28,30,17,20,20,25,22,18,12,7,0,0,0,0,0,0,0,0,11002,17712,20244,29453,15937,16430,21748,23347,25071,19882,22732,25808,29473,33982,28333,25834,22421,19956,22524,18377,9082,12401,19310,19733,31870,26299,31098,28584,21167,20242,13383,10763,86971,85913,80482,54924,33352,32671,32536,34961,50925,47915,41113,34450,55999,37529,19408,10379,5980,5385,6811,8035,9299,11891,16732,27084,15206,26288,38717,52718,41170,37878,31570,28511,9950,10776,16984,21903,18050,18207,12952,16196,15584,21185,22023,29491,30796,29232,30434,30956,0,256,555,1052,1383,2217,4106,5402,7918,10868,11692,14796,7093,13338,15168,20796,0,2,4,6,4,7,8,8,11,9,7,8,8,9,10,12,0,2,4,6,4,6,6,7,6,8,8,8,8,11,10,10,3,10,12,13,13,18,26,32,23,29,29,20,28,32,26,24,9,14,16,21,39,44,40,36,46,32,30,32,24,20,19,14,0,2,4,5,4,6,6,6,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,15,10,22,26,35,32,34,44,36,31,32,29,20,35,31,37,50,45,42,40,42,44,38,32,22,7,7,6,4,0 +212,174,184,142,111,90,73,57,20,24,26,24,15,23,26,34,8,11,12,14,13,10,7,5,0,0,0,0,0,0,0,0,10860,12462,20088,25948,27755,24414,33268,24478,32684,29182,25881,28115,23690,27310,33687,26074,32057,32544,24332,21340,9887,14088,19787,21098,29640,23981,23948,28264,15969,15478,9984,9054,97275,83714,71941,50812,46903,47354,50031,51778,54798,62736,45407,43120,57593,44417,15779,8592,6224,5146,5311,6264,6447,11950,18031,27092,28348,30507,46818,46593,34864,32254,35330,35685,8512,8288,13806,17762,19427,14856,13358,14606,18156,20524,25464,30086,29319,36940,43009,30210,0,356,893,1378,1836,3008,4479,7404,8730,9920,12364,10424,8564,13852,16665,23390,0,2,5,7,5,8,8,9,10,9,7,9,7,12,14,14,0,2,5,7,5,7,8,9,7,10,10,8,10,11,12,12,2,8,14,16,18,23,32,28,23,28,31,30,34,30,29,36,13,19,19,32,38,40,49,47,52,38,34,31,23,22,22,14,0,2,5,6,5,7,6,7,5,7,7,8,7,8,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,29,24,17,11,20,30,43,42,46,54,57,47,41,28,25,56,52,54,62,67,64,53,58,38,33,26,19,8,10,7,5,0 +275,190,159,110,55,46,24,18,16,20,29,42,61,65,61,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11941,11570,13595,13478,14344,16736,25390,26454,31884,35578,49632,45193,39996,29398,33190,21818,48972,59619,56899,52978,34726,38027,38466,31805,24546,21164,24358,22822,22548,23587,17323,9272,93787,88962,69679,54590,21817,40735,55981,66620,71120,54784,60741,42838,24744,15587,11763,5778,6681,12657,15906,22012,26420,25617,25962,27253,34460,31016,34705,39697,57837,60288,42799,42260,4447,6376,9276,12442,15741,11925,10947,15047,19582,24916,27954,27280,39369,38636,29254,38081,0,1622,3604,6478,7226,8611,10565,9790,9636,11499,10091,9967,12800,12711,14332,20336,0,2,3,4,3,7,8,10,8,8,9,12,15,15,18,18,0,2,3,5,5,7,6,7,6,8,8,8,7,8,7,8,2,6,8,12,11,15,21,23,26,30,39,53,70,83,72,67,19,24,25,34,31,46,50,50,50,53,41,42,35,26,26,16,0,2,3,5,4,6,6,6,4,6,6,8,9,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,30,31,32,46,44,51,48,44,42,30,12,13,10,12,61,69,86,76,68,65,59,48,36,42,34,31,24,24,15,8,0 +196,188,133,100,69,56,44,32,44,46,46,54,51,68,62,62,9,11,8,6,7,8,8,8,4,5,5,5,4,4,2,1,11695,14032,12886,9856,18977,23316,25238,26412,26211,29062,41536,39756,24499,23092,22154,18038,33194,35386,37198,34610,35017,32887,32752,30720,18423,19023,23550,23828,22775,19486,15546,8872,72297,82366,80849,52122,22314,36393,43444,68620,74176,63718,47922,41780,22988,15075,12036,8438,5913,10170,13560,19031,29882,27562,35075,36885,37817,38062,46242,60298,67490,59712,36453,27948,17836,13128,17411,13436,12520,11880,15202,15410,17742,21719,27017,37084,45306,43376,40797,39280,4160,5422,6228,7367,6044,7942,8755,7982,8103,8573,10583,11120,12476,12256,16216,15371,0,2,5,6,5,10,8,10,14,14,14,17,15,18,16,18,4,6,7,8,5,8,8,8,10,10,9,9,9,12,10,11,2,6,8,10,12,16,16,22,30,38,51,60,54,64,87,68,43,44,40,46,38,55,60,84,55,61,60,60,41,38,36,19,0,2,5,6,5,7,6,7,6,7,7,10,10,10,11,9,2,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,48,42,48,42,52,47,46,51,47,65,70,48,27,29,28,29,63,81,101,94,96,88,66,50,41,42,30,29,28,21,15,9,0 +141,142,139,115,77,69,50,48,65,61,68,58,61,74,63,53,18,17,14,10,13,13,14,14,6,8,8,8,6,7,5,2,11252,13588,13368,12042,17784,19257,25894,23098,25648,22502,20207,28354,15672,15991,17686,22678,28704,27238,30166,28243,29321,31541,28077,21310,19282,17226,19878,20779,17834,12039,11938,5993,62686,67900,71114,47056,16804,26363,40214,69035,83656,75800,46300,33858,14371,17193,15097,11273,7690,11379,12758,16761,26314,33058,39507,37892,43458,48719,55600,57546,62020,48348,34494,26652,27787,29240,21492,15972,12633,14074,14443,14582,12821,16197,23828,26872,39961,40454,48064,44141,10144,8394,8742,7619,4419,7313,9008,8413,6391,7465,8402,9101,10557,12396,12782,10192,0,2,4,5,6,8,8,10,16,18,14,17,16,20,18,17,6,8,8,8,4,7,8,8,10,10,10,10,11,12,12,10,3,5,6,8,8,12,16,18,24,39,48,59,34,50,76,94,72,59,50,47,43,56,74,77,57,72,82,88,54,49,33,22,0,2,4,5,4,5,4,5,6,7,6,8,8,8,9,10,3,5,4,5,3,5,4,5,1,2,4,5,4,5,4,5,51,52,50,51,65,60,55,64,61,60,75,65,39,38,36,39,91,127,122,119,92,84,82,64,55,40,30,25,22,20,12,7,0 +160,150,157,110,90,82,70,48,73,72,87,71,76,78,90,76,29,28,26,24,15,20,20,24,12,13,14,14,9,9,7,5,10358,12314,11135,13002,15021,18950,21843,23620,25956,22320,18161,19572,12136,12928,12149,17769,24553,21784,26306,30316,24632,30218,27611,24979,19766,20084,19470,20602,14882,11483,8826,6349,83318,75828,74994,52746,25644,33494,33357,64242,68581,60106,50767,38992,20378,16098,13186,9354,7330,10120,17101,18734,27910,33723,32002,34918,51016,50694,43253,48368,59263,38094,25826,20241,38705,29810,23294,17696,9808,9978,10151,13870,11176,15416,27313,28405,32954,38600,51604,39442,12712,13816,11320,7422,5391,6740,8753,6645,3535,4521,5285,5664,6262,9226,11354,12582,0,2,5,6,6,8,8,9,16,18,15,16,17,22,21,18,9,10,12,8,5,9,8,12,9,12,10,11,10,11,12,12,4,7,8,9,8,12,16,23,18,30,43,48,33,63,94,92,90,57,55,56,53,68,92,86,81,79,84,88,75,55,29,18,0,2,5,6,5,6,5,6,5,7,6,7,7,8,10,8,5,6,5,6,5,6,5,6,2,5,6,7,6,7,5,6,56,44,52,56,78,80,71,80,94,84,97,91,58,53,38,46,73,86,111,114,89,88,60,60,52,46,34,28,20,18,14,8,0 +149,120,131,106,88,70,46,36,82,72,57,67,74,72,52,55,33,31,34,25,18,18,21,24,13,11,9,10,12,11,6,4,9252,12448,13262,13408,14928,19780,22456,19266,22868,19053,18220,14522,11705,8578,8195,11788,14987,20875,25365,28436,30358,30548,29298,27867,23595,15912,14770,15872,16546,11073,7003,4133,79664,64507,37314,32209,31397,41091,46181,58733,67953,47436,35564,31052,23106,20806,16124,12777,6191,7418,12186,21272,25540,44141,53531,43144,62059,84791,80739,65274,54251,45521,38396,18466,39415,35207,32534,20569,9404,8760,7393,8716,6880,18770,25020,30040,40034,39012,45122,55442,20126,17086,13617,8868,5189,4956,4616,4232,2082,2372,2043,2486,3342,6846,10114,13796,0,2,3,5,4,5,4,5,18,15,14,16,16,20,18,18,12,10,9,7,4,7,9,12,8,10,9,10,8,8,6,7,3,5,6,8,9,12,12,17,13,26,30,37,38,54,83,108,88,67,60,54,44,68,97,109,115,114,104,103,78,65,33,18,0,2,3,5,4,6,6,5,3,5,6,6,4,5,4,5,5,7,6,6,4,6,6,6,2,4,4,6,6,6,4,5,64,56,61,61,72,67,55,68,109,98,128,130,98,102,77,72,77,83,65,104,120,107,73,66,42,36,23,20,22,20,13,7,0 +159,178,194,156,125,114,90,68,82,82,57,81,80,80,48,64,40,37,42,32,16,22,29,31,24,20,13,15,16,14,10,6,14884,16469,15024,17954,22228,18742,25848,18174,24266,19466,20920,18856,11159,9376,10026,10444,12484,17042,17047,16728,23596,22908,20945,21764,22446,15494,11558,10734,15910,9442,7149,4810,79569,64122,64934,62268,31273,42359,46052,52438,62098,42190,30139,27426,22442,20267,13840,10356,7994,13140,19054,25258,38272,49392,42476,48970,54440,70278,78986,45612,51986,37758,35266,21378,50971,41112,31623,29462,11264,11297,10321,14696,8590,18556,24895,25226,43016,43851,33950,47663,23952,16606,14198,9364,6020,7211,4761,4497,1567,1593,1932,1726,2816,4454,8418,10866,0,2,5,6,6,8,8,8,22,18,12,18,14,17,17,18,17,12,10,10,6,8,8,12,8,10,12,12,10,12,11,11,6,8,8,10,12,13,11,16,14,26,35,40,49,74,97,99,88,77,72,65,56,92,84,104,109,115,78,96,68,66,38,26,0,2,4,6,5,7,7,6,4,6,7,7,5,7,7,8,7,10,8,9,7,8,10,8,5,7,7,8,7,8,10,8,49,59,54,82,93,72,66,62,118,99,122,120,149,114,90,76,99,104,94,106,142,117,83,86,73,58,40,41,28,24,22,12,0 +178,214,192,146,123,128,111,74,98,64,56,64,100,87,53,61,47,39,45,36,16,26,28,27,27,27,20,21,14,12,10,6,17978,17250,20198,19987,25788,27352,22327,18596,20893,21884,22023,19940,12124,13554,11311,11679,14007,15197,12442,17978,12363,14618,14820,10614,14809,11090,7426,5844,12084,11402,7026,3337,66848,81425,73260,75047,40534,43563,35544,47611,41781,43823,35808,32254,16578,12254,11616,11524,12232,15662,23188,27990,47314,49654,52166,52957,38486,53464,54704,43206,38434,32415,29678,24392,50303,42017,44124,33531,11300,17290,17796,22419,10056,18437,22932,25561,39032,34836,32928,42468,23954,18270,12963,9608,7787,6735,6106,3579,1411,1288,1194,1261,2339,2938,4225,4174,0,2,4,5,6,10,11,10,19,19,12,15,9,15,20,18,16,13,12,11,6,8,8,12,7,10,12,12,9,10,12,14,7,8,8,9,12,11,10,13,10,29,42,50,70,80,95,98,68,73,64,74,59,77,108,100,136,98,80,86,83,68,52,36,0,2,3,5,4,6,6,5,3,5,6,7,4,7,7,8,8,10,8,10,8,10,9,8,6,8,8,10,7,11,11,10,47,49,62,92,86,90,64,66,86,106,93,103,151,154,113,117,90,98,120,142,126,130,94,81,80,77,67,60,32,30,23,12,0 +168,214,203,140,114,134,144,96,110,86,64,104,122,96,66,80,68,61,58,36,16,24,21,27,28,26,20,22,15,12,12,7,20402,21043,19031,19834,27908,24781,20934,16948,21377,18384,13464,12722,13489,11878,11366,13234,16896,18165,12324,15678,7105,9710,10728,8928,10395,7774,6082,4902,6880,6850,3444,2191,68244,98474,81352,77064,51470,51197,44769,44252,32134,29411,33892,36256,24586,18280,13778,13152,14839,22578,27891,34694,42586,46480,39135,51486,46256,48783,45675,33685,25701,24942,22833,18902,41000,40851,34592,29110,13267,17825,23496,20418,14458,23320,27477,40630,40039,41386,33370,39505,27624,20700,16568,14256,12081,9923,7494,3650,593,608,714,664,994,1586,2030,2015,0,2,5,6,7,10,11,13,15,15,12,15,9,16,22,17,22,18,19,15,10,12,11,14,8,12,11,14,12,12,10,13,8,10,10,12,11,10,10,13,11,34,66,58,78,94,118,118,105,107,72,85,91,88,122,102,97,102,90,84,90,66,56,32,0,1,2,4,4,5,5,5,2,5,6,7,5,8,10,10,8,9,8,10,8,11,10,8,7,9,10,11,8,12,14,13,63,62,71,90,84,72,66,72,93,103,86,104,163,126,99,112,116,122,145,126,105,132,110,98,108,109,73,65,42,36,22,12,0 +158,144,87,97,106,89,96,136,200,184,181,218,185,140,85,80,90,79,63,87,108,86,53,37,29,24,15,13,7,7,6,4,26422,29805,38686,31176,37517,54568,53984,52716,47930,38716,45935,30583,21353,21194,27910,28471,23358,22224,15043,17916,20780,12900,10360,5866,0,0,0,0,0,0,0,0,83008,72149,73683,51231,26549,28530,21748,21489,21819,29796,33431,36982,29043,29080,26198,20377,18770,15177,11743,10295,7006,11815,22042,33524,40034,31382,18691,15914,19988,16670,14746,14234,43361,60216,91282,90081,119990,106760,88836,93359,93496,95482,79380,79692,66990,56712,51729,35269,28740,30623,22353,24467,19458,16842,21042,18806,21602,18861,18146,15913,15812,13203,9320,5088,0,2,3,5,5,12,20,22,26,28,28,25,21,20,24,20,20,26,23,24,22,18,13,13,16,17,11,10,8,8,7,8,7,9,11,12,10,28,47,64,72,70,82,116,154,140,143,119,124,108,55,48,31,21,18,13,9,10,12,18,18,16,18,13,0,2,3,4,3,5,6,8,8,9,10,12,13,12,10,8,6,10,15,19,17,18,23,26,21,20,25,24,15,16,11,10,66,97,145,173,197,187,145,154,181,192,156,124,65,82,89,118,110,120,96,63,57,62,86,109,143,127,110,90,90,60,49,21,0 +170,142,106,90,130,122,121,148,146,180,182,196,142,146,118,108,98,115,171,270,267,397,576,1030,1162,1238,1312,1134,1576,1420,1570,1508,36998,40827,47017,42726,33227,43244,62803,52684,42363,43466,42907,33056,18048,23009,24283,23043,24150,25040,18844,21816,21208,14953,9889,7330,3980,4709,4286,3173,4390,3748,2626,2176,58776,63046,47416,43948,30980,27832,21690,23976,15466,29136,32602,30609,27253,20146,22091,16887,20221,18011,12356,13759,8608,13504,20665,31348,33795,33894,21065,22430,29244,20646,14076,11778,29036,43371,71662,83773,77408,95318,72703,71386,124326,94450,97969,84008,53275,52572,41257,39703,42543,28683,31681,32422,25210,19787,16410,15470,19000,17923,20299,17102,16827,12399,8127,5376,0,2,5,7,7,13,18,17,26,25,26,23,20,23,21,20,21,28,25,24,25,23,22,18,24,20,12,12,10,11,11,12,8,10,10,14,12,30,43,60,75,84,84,103,148,156,121,134,111,113,66,49,31,36,47,39,28,28,21,26,24,21,22,19,0,2,5,6,5,7,7,8,8,11,14,15,12,12,9,10,10,14,15,16,19,18,22,29,15,21,24,21,13,14,14,16,106,128,166,176,211,181,140,142,174,150,149,94,52,80,78,114,78,75,75,66,55,56,74,84,130,133,96,85,99,66,41,24,2 +176,148,123,99,115,124,142,140,105,114,134,137,152,135,139,121,95,160,290,419,424,840,982,2296,2615,2840,2564,2773,3828,3851,3504,3182,46961,52249,62272,48737,28736,33236,53378,55657,56918,45686,41217,33358,17232,18538,17343,23522,26785,31474,29574,31692,17365,16675,13353,10902,7180,9152,8164,8599,8239,7760,5377,4178,57547,53323,43822,42362,30121,31437,26371,28483,15327,19686,24768,24318,18068,16853,17420,15934,21921,21968,16002,19765,13258,15634,19736,25330,29239,27868,30851,32620,33437,23578,17524,11996,22875,30871,39453,46217,67547,66388,57357,51485,119634,109011,102168,73980,48899,46538,43618,26550,44712,37301,36016,29724,24357,21493,16134,11460,20839,21725,18032,16794,12540,9993,9262,7267,0,2,5,7,6,12,14,18,19,29,28,32,24,25,23,20,22,28,28,26,20,25,22,24,27,18,14,19,12,14,11,10,7,8,10,16,16,28,44,52,81,83,92,76,140,167,149,182,147,126,68,56,42,55,60,53,48,38,36,27,22,20,23,24,0,2,4,6,4,7,7,10,8,12,15,15,13,12,8,8,9,12,16,18,16,17,22,26,12,16,14,18,12,12,12,14,133,125,134,114,172,146,154,111,122,125,91,81,55,74,88,91,66,73,56,58,34,53,58,56,114,78,70,63,78,50,38,25,4 +135,123,153,126,129,124,104,106,86,115,147,152,135,136,155,158,86,238,568,601,742,1021,1486,2578,3401,3788,4408,4554,5714,4626,4025,4100,56068,56504,66900,55428,40385,46918,52577,65291,53280,47576,44986,33744,20030,25632,26957,27514,20784,27865,28105,32202,16847,19030,16878,13359,12376,14955,17596,13352,10648,9094,6528,5384,56857,57776,54694,38832,21306,28002,27293,32473,16808,16610,15254,18155,16142,13218,13852,12552,19536,20011,17566,19818,17428,20615,23971,21096,38227,31497,32914,33804,29195,29706,17360,11506,20636,22626,34965,30712,32718,41848,42261,36973,86096,96201,79432,68778,62610,49369,52365,36121,37689,37832,36212,35142,27146,25270,26023,19231,16156,18751,14337,16389,16166,12492,11268,8908,0,4,7,8,8,14,19,20,25,28,29,29,20,24,20,20,25,30,24,24,20,22,24,25,23,24,18,19,19,17,12,11,8,12,12,19,20,40,56,67,77,81,61,64,92,129,155,152,139,97,91,68,48,64,64,60,65,49,37,31,27,22,21,24,0,2,5,7,5,8,8,11,10,13,17,14,12,12,10,9,12,16,15,18,20,21,19,28,12,16,15,20,15,15,14,18,136,121,103,104,187,160,165,118,90,76,74,77,77,84,125,124,60,67,60,55,47,48,61,58,73,66,63,64,67,41,32,21,7 +151,137,136,123,137,110,129,87,65,98,98,134,156,144,121,154,48,289,544,902,1012,2550,3772,3596,4974,3963,4008,4544,5747,7806,7263,5467,67922,75399,61470,54891,50397,66220,61840,67338,66097,59853,44861,30777,29927,21926,23819,27839,22060,17942,18419,17490,21617,26559,24972,21182,18366,20746,17811,21201,17576,14724,10440,9414,72362,63270,54298,41717,20949,17978,19736,22494,15339,16272,18725,18433,12806,14648,11910,9908,24954,28798,25750,26498,22585,21187,22367,20570,34550,41235,39581,45904,38374,33842,24450,16611,27041,23516,16705,13964,10014,11932,19045,22750,91170,88766,69433,72207,56375,38942,35664,29777,48859,43302,46125,46213,39904,30524,28362,17209,10196,14416,17604,17672,16817,12441,10772,8022,0,4,6,8,8,13,21,24,30,28,35,28,20,19,18,17,29,27,20,16,17,18,23,20,26,29,26,20,20,17,12,14,10,17,18,16,18,41,54,79,92,99,79,60,46,102,137,179,101,95,77,72,42,46,48,67,60,52,37,33,36,36,34,34,0,2,3,5,5,8,9,10,12,10,9,12,12,10,7,7,10,16,16,18,24,31,28,36,8,10,13,17,16,17,15,16,131,111,98,106,156,182,160,133,48,68,73,84,77,100,107,136,37,50,46,38,44,61,58,62,58,73,74,66,50,38,31,21,7 +98,100,97,112,120,125,123,87,68,80,88,102,155,112,99,116,56,442,730,1370,2944,4018,4534,5133,7100,5740,4963,5664,6032,7482,7258,7735,67110,64528,69526,45657,32588,42414,62326,52177,57298,49019,45030,55500,49133,41366,44280,55006,19800,16203,18012,20930,28330,24942,24356,25290,19238,17435,21071,18604,21895,17274,10367,10262,70328,53998,51765,46385,21192,25348,27698,27751,12834,13481,14946,13793,10179,11675,8716,7806,25070,25590,30162,22872,15950,16036,24146,20168,46056,38390,36756,33085,29191,31278,16080,11946,25159,21685,16016,13712,10366,14484,14381,16112,78356,69862,51544,42781,40473,33578,24025,23022,34303,42920,36862,43051,36322,26459,23853,21116,11984,12713,16944,17232,16220,15139,13534,12086,0,5,7,8,10,16,20,26,28,32,39,28,28,20,18,18,25,22,18,22,21,20,20,21,22,26,24,22,24,20,14,14,12,16,21,19,22,41,68,73,81,75,73,51,54,82,118,153,172,138,96,84,77,57,53,82,77,80,78,60,47,40,44,44,0,2,5,6,5,10,9,13,16,15,12,14,11,12,8,7,12,15,16,19,24,30,30,32,15,18,18,19,24,26,18,22,134,100,99,122,147,142,141,114,46,82,72,97,128,148,116,146,33,44,41,38,37,48,42,44,45,50,65,48,44,36,36,22,8 +88,78,91,115,147,145,122,85,70,77,72,92,106,114,90,94,82,771,1216,1678,4405,6034,5758,7887,7911,6542,6150,5282,8363,11104,10743,9804,57108,62879,54625,45054,21113,26563,42476,34841,59363,41272,42016,49574,57662,55723,59240,50236,17464,16460,16351,19732,27740,25447,25802,23309,21538,21082,22101,20184,24152,14712,11968,10272,56004,62266,51500,50940,23306,24244,28364,30830,12275,12303,15138,12018,10626,7416,7220,5809,17106,25972,27215,24923,16192,15388,20792,18377,42320,39302,29003,31306,34419,28422,14420,9269,18848,13545,11940,10952,13067,11609,12224,10284,65534,55230,43606,27956,28476,21560,15118,18348,32934,30874,37780,47826,22392,22006,26569,21249,13188,14568,17502,13935,18363,18327,17208,16216,0,4,6,10,9,17,20,24,30,40,36,34,26,21,16,17,20,16,16,22,21,20,20,22,24,24,20,16,20,16,14,10,14,18,20,20,18,48,62,63,59,57,43,46,44,73,98,106,199,174,104,100,89,89,59,78,91,90,93,95,46,39,42,40,0,2,4,5,4,7,9,14,14,15,14,13,10,10,7,6,9,17,18,18,22,22,28,40,24,28,22,26,24,22,22,29,143,125,84,107,136,110,118,98,53,72,102,89,220,162,176,200,25,34,32,37,23,36,38,32,40,45,38,38,50,46,30,20,7 +84,78,64,87,93,106,123,86,72,62,65,76,84,92,107,116,83,1124,1924,2904,4206,6014,6536,7954,8490,6510,6951,6826,9049,10596,11924,11492,66138,56765,34389,27042,22139,27822,32017,34644,39819,39926,48154,58388,65892,57722,50518,59175,12088,11492,13123,21890,27502,23503,27185,21784,22950,27189,19876,24770,22764,20674,18548,14642,55798,55609,33552,42133,36662,31002,34954,33972,15190,14998,13820,11202,11263,7102,5980,4430,19758,28708,34257,27316,18269,19130,23578,28834,44410,33780,32585,29230,29495,22828,13075,8532,14785,13228,12408,13066,15809,12784,11584,11801,30369,32364,26472,20587,19799,14632,10328,11964,24009,26340,28620,37046,25167,31129,33801,31212,18460,20024,24841,17282,16948,16870,13740,16598,0,4,6,8,8,16,17,18,22,28,26,32,27,25,20,20,31,25,20,21,29,29,23,20,21,24,22,21,18,18,13,10,12,16,18,21,16,41,48,49,63,57,36,37,28,58,73,101,219,169,125,114,101,92,78,82,95,96,91,88,55,58,57,62,0,2,5,6,5,7,10,10,12,14,12,13,8,9,7,6,13,16,16,16,13,19,23,40,27,28,24,29,26,28,30,34,143,138,104,100,121,108,98,95,88,99,120,170,293,216,143,178,14,22,20,26,20,23,30,24,30,28,25,28,41,40,23,20,10 +75,78,84,64,46,70,74,76,86,117,152,153,155,138,99,96,71,814,1559,2882,4224,5814,7682,8488,7868,9751,10685,9294,7576,11065,14337,15598,56477,39510,35197,24800,16498,15278,21059,21931,31699,51379,76450,83248,79153,73962,76406,73878,6740,8513,11928,14068,20268,15823,13620,15200,24045,22656,14739,13584,10091,11081,10478,12582,48277,49203,49934,49524,40631,30929,22687,23939,23251,20601,17176,16780,19543,15794,11653,7600,31033,31098,27786,26081,28526,32844,33931,33148,32050,25092,17514,12035,9984,9514,6496,3604,16570,16781,11838,16332,20319,14588,14025,10167,8884,7070,4532,6117,5897,7252,6602,8392,25908,22547,19599,28753,31870,27464,21434,22248,26856,18194,13781,17730,16820,18177,18633,20146,0,5,8,12,12,12,12,17,16,14,9,8,6,14,20,24,32,31,41,45,46,42,30,30,25,26,31,22,19,19,14,8,11,14,13,18,26,32,33,50,50,71,72,67,56,64,78,91,243,240,162,130,138,107,124,110,96,107,112,102,83,70,74,84,0,2,3,4,3,6,7,8,7,7,5,5,3,4,3,2,13,14,12,10,7,18,23,34,38,32,27,40,39,30,24,27,106,76,55,56,39,56,62,76,102,90,115,130,182,198,217,248,0,2,3,5,4,7,8,12,16,18,23,22,20,18,10,12,9 +60,64,69,52,32,56,60,70,65,112,143,154,133,139,92,90,58,850,1270,2275,3560,4673,5850,5984,7424,7801,6996,8501,7188,12326,14191,13878,43820,33134,31557,23410,13943,22457,25360,36539,32642,47492,65976,77352,53735,55603,81350,79392,5839,8080,13545,18290,19644,20555,17515,21761,28356,20871,18573,15188,15372,12605,10822,12996,37360,39970,45840,41002,38149,29499,20681,24528,23817,21918,19157,19192,21518,15920,11224,10000,35446,40065,32815,31636,33872,39960,39435,42026,36664,28525,22950,16932,16079,10860,8105,4468,15543,13720,9196,11458,14848,13376,10872,8986,7047,6376,4192,4942,7399,7144,6812,9654,27261,24218,18567,29070,22300,19253,21305,17267,24592,21244,15990,17411,22244,24001,18514,16699,0,6,12,16,15,15,19,23,27,22,15,14,10,17,21,25,32,34,37,39,38,38,31,26,27,30,38,28,20,20,14,12,17,19,17,22,34,36,39,46,55,66,80,75,60,66,89,72,197,176,189,148,174,162,142,100,102,122,165,105,116,86,79,82,0,2,5,7,5,8,8,10,8,10,12,12,8,8,7,5,15,16,14,14,13,18,22,28,28,24,23,36,38,38,37,42,112,100,53,64,58,62,68,83,96,102,142,148,163,182,180,208,48,42,38,31,29,32,26,39,37,49,56,50,59,44,42,32,20 +44,41,48,41,24,32,41,50,63,88,136,152,143,139,106,98,52,674,1402,2618,2030,2174,3255,4015,6806,6350,6734,6144,8681,11942,15316,17654,40244,36844,25612,19158,14460,33455,41558,48988,41938,51507,48744,61670,42578,54644,64868,55094,5782,8923,13360,22646,27002,20188,23393,28029,24672,22359,18390,21655,16410,13015,13218,12281,30064,36270,36806,41945,30162,30025,20406,26356,16981,18681,16912,16047,20843,17392,15841,14442,48608,33910,31172,29025,41820,45568,50237,46746,29214,21498,21250,15763,16945,13503,10462,6467,14432,11871,9317,10402,15917,15549,10576,11116,5747,5151,4262,5007,6496,8956,9038,9793,29343,24782,19994,31002,18451,18044,14604,21297,28703,26496,18460,19754,25724,19720,20550,18703,0,7,11,14,20,24,20,19,31,27,22,17,11,15,18,23,31,28,28,41,37,30,28,23,27,26,34,31,26,20,11,10,18,17,20,24,34,31,38,52,41,48,64,76,68,79,70,72,155,178,186,142,196,151,122,84,150,167,177,130,123,117,104,84,0,2,5,7,5,8,9,10,10,14,14,13,11,12,8,7,15,17,14,12,15,20,21,24,18,26,25,30,27,38,38,47,137,117,72,60,62,82,81,76,121,129,146,129,91,98,143,133,80,94,76,57,58,60,48,53,53,80,83,66,91,85,60,54,36 +44,48,52,38,26,32,35,47,46,62,112,100,88,112,97,94,55,460,994,1612,1562,1518,2060,2786,6954,5474,5690,5956,7802,11816,18700,16331,25574,23930,24974,20354,16522,34708,48819,49386,50122,45820,60617,55816,48128,54235,55867,66225,7063,11661,18572,25933,34151,32246,32980,29868,28344,24677,20315,24662,18103,22370,22848,19936,22684,32134,29274,34766,31714,25046,25313,20064,15232,14191,12989,18734,18910,21045,18055,16029,63300,41090,32050,34014,34551,49908,47204,46615,34730,32776,24367,18568,18202,12115,12803,6855,8885,7954,8819,8780,13327,10440,7808,8763,6455,6083,4377,5264,5597,7731,8903,8952,28303,20952,15007,19312,19788,14986,15172,17038,23624,21284,13982,22570,27362,22444,19485,16982,0,8,12,16,21,26,21,30,28,30,21,17,10,19,26,26,25,24,23,32,36,30,34,24,32,27,35,32,22,20,12,11,20,19,18,24,26,35,39,41,26,42,65,74,54,70,78,74,156,176,183,162,223,148,137,105,148,174,191,157,140,136,128,138,0,2,5,8,7,8,8,10,14,17,23,23,19,15,11,10,22,16,17,16,19,18,19,24,13,22,24,31,31,42,46,57,98,100,68,74,56,60,75,70,110,112,108,101,90,105,83,94,117,121,110,82,88,82,70,74,99,114,108,108,105,110,82,66,44 +52,47,46,29,21,24,29,38,17,31,51,55,67,84,79,64,57,226,344,490,750,901,1412,1149,6931,5472,6610,6446,8429,9680,9461,14975,9890,11070,11234,17986,23321,21545,22701,31592,61992,49052,38804,51141,52708,49969,58303,74676,7011,11378,20635,30756,31326,32552,32749,32703,22767,24815,20525,20426,27218,22134,12959,16630,17057,22938,33146,33591,33803,29536,20896,19218,12665,14832,16910,22957,22462,17634,21443,16478,58418,54666,36258,33462,36148,40818,40052,51951,45656,51085,41756,25449,18271,15772,8490,4551,4657,6769,6856,8799,9436,6409,5616,7719,7991,6082,6388,5822,5302,6932,8698,6956,23535,24209,22214,25874,22166,20460,21589,13009,26460,22905,21178,19913,23691,22506,16145,13234,0,7,11,17,22,29,27,28,28,24,17,15,10,13,17,27,11,18,28,30,29,24,14,16,32,29,26,20,20,19,12,10,18,18,17,20,26,27,23,33,14,18,25,44,56,66,58,71,202,171,211,207,196,179,196,159,135,123,163,162,162,126,104,136,0,2,4,7,7,10,12,12,14,17,24,26,20,16,10,10,22,18,13,13,16,17,16,17,11,12,13,20,26,29,32,42,97,94,66,71,72,84,72,69,80,90,96,79,73,72,57,52,128,132,111,119,96,90,81,95,140,136,95,97,138,103,74,60,43 +49,42,35,28,19,25,25,26,12,24,46,46,61,62,74,56,38,148,327,390,482,589,1037,854,4420,4808,5552,5760,6521,9388,10793,13416,11204,12892,10061,14924,13668,18718,30896,39500,56934,45868,32520,32804,63442,67303,67476,69632,15426,16736,22812,26032,24048,26293,30950,30560,30620,30188,31670,22521,45909,34114,23887,25677,25493,26166,24731,28618,27499,24902,14354,15536,9938,17218,22004,31178,27007,27047,23230,25027,46120,40158,36827,34540,33954,35982,36714,52751,45981,47754,33347,25011,14475,12332,6828,3952,3558,4774,5960,7334,5423,4689,4292,4868,5355,5363,5718,5288,4602,5736,6978,6306,16949,17463,19303,25644,22559,21294,21298,15264,27124,26050,23488,22366,23858,21470,19048,17479,0,8,15,19,25,30,31,28,28,26,22,22,22,24,18,24,12,22,30,31,27,26,19,18,25,28,26,20,17,18,17,14,15,20,24,21,28,26,21,28,14,23,32,48,57,71,64,66,150,140,226,224,210,172,178,156,163,164,160,156,156,158,138,124,0,2,5,8,11,13,12,14,12,20,24,24,20,14,10,12,16,18,17,18,20,20,23,24,13,18,18,26,34,38,34,42,74,70,62,56,74,72,75,61,63,66,80,65,77,64,77,94,147,118,109,108,102,91,97,110,117,122,132,138,168,136,86,62,47 +36,34,25,18,12,17,19,23,7,17,25,26,44,45,44,53,19,99,209,217,291,500,606,510,2654,3532,5370,4570,4818,7995,11470,14387,9924,9295,12728,11524,10502,19072,30282,49765,41671,45696,41312,36398,57267,64504,68434,57043,30926,32159,25041,21958,27540,28692,21976,23642,32392,37713,35436,35336,54631,42740,36488,35250,28916,28823,26716,25542,22895,17040,14780,16057,9925,16142,29070,37041,33776,37514,31320,35504,33445,32404,30420,27534,26611,27528,36388,45607,42456,40481,32666,22451,15398,12349,5910,2846,2929,3672,3688,4798,3512,3143,3360,4064,4160,4805,4122,3673,3762,4244,4268,4648,14363,20531,19944,27699,17636,14535,16872,20303,21184,22628,18562,25639,17530,17652,21460,19114,0,8,16,22,25,23,26,34,28,25,20,26,30,23,23,24,14,23,28,26,24,19,18,16,20,19,18,20,11,14,15,17,10,17,22,26,20,28,26,23,10,20,29,45,82,96,82,81,155,151,183,196,161,165,168,177,236,255,212,193,175,158,181,143,0,2,5,8,11,11,11,13,12,18,22,20,17,17,11,12,12,16,18,22,28,34,32,29,18,20,26,30,29,33,29,42,46,42,37,47,69,72,56,41,48,60,58,69,60,74,74,111,179,130,97,105,80,99,108,114,88,93,140,180,172,160,112,78,65 +22,21,12,10,7,10,12,14,5,11,14,14,22,26,22,29,12,59,105,113,145,208,268,264,1508,3307,5128,5479,6081,7508,11476,13749,12162,12742,12326,9504,11011,22809,32863,45573,43638,42012,43065,39209,59317,63557,75436,67204,40460,34752,30491,27120,30634,26400,19980,21675,30922,32524,42878,33588,43918,46946,34100,36487,25167,26766,39266,36419,28031,26176,24759,16442,13366,19799,26768,34465,39818,42762,43348,45309,45134,42836,30944,26448,22577,22602,23882,32452,47848,36051,27116,14770,13330,9086,4658,2174,1733,1694,1999,1979,1847,1716,2173,2260,2177,2759,2544,2880,2820,2777,2712,3396,7768,15210,16201,18501,19286,17970,14918,17974,17133,20731,19222,19498,19331,24554,24501,27142,0,8,14,24,25,24,25,30,25,27,24,28,39,38,34,34,18,24,22,25,21,17,15,18,20,19,19,16,10,12,16,16,10,16,23,24,19,26,24,20,14,27,37,66,86,112,126,132,161,136,113,136,146,146,150,199,218,285,202,222,233,228,191,175,0,2,5,10,12,12,12,14,12,19,18,22,20,20,14,14,14,18,24,25,30,34,37,34,26,24,34,42,38,42,37,39,49,56,53,58,55,52,42,26,23,36,36,54,44,77,120,126,164,145,120,89,47,91,108,114,109,114,102,124,162,136,118,74,55 +0,4430,7954,12047,18674,18520,23746,22199,28745,36470,32272,31829,36166,42030,39609,28079,29518,23802,26665,22180,15992,10696,6308,3487,0,2301,5488,9770,15848,13525,16425,14155,18842,15932,12541,6966,4160,2642,1494,794,0,0,0,0,0,0,0,0,0,4968,10139,12260,15504,14100,17372,17462,21262,20246,14158,9404,8217,16680,33373,35758,29756,43014,57181,59020,67454,82882,95587,84888,99668,120119,103194,70857,62578,73028,78248,55223,52710,44564,53889,47594,40694,30537,17915,15318,16691,17756,19955,13244,12165,8112,6639,3050,0,2066,4166,6528,9539,16104,23578,36792,48932,40252,37793,40386,47686,61870,56228,46408,40588,42320,31512,28443,35179,35788,36015,35926,41179,44256,36817,33136,33084,33492,31032,27319,0,2,4,7,7,10,10,11,12,14,18,24,22,18,18,17,11,11,11,10,6,8,8,10,8,8,6,6,4,6,6,10,10,30,40,42,50,129,181,231,228,303,281,230,274,253,317,305,210,252,305,230,265,311,288,349,381,335,231,305,316,288,185,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,17,22,22,21,32,42,41,49,41,33,34,23,18,11,10,10,7,3,4,3,2,0,4,6,11,12,17,16,16,19,18,15,19,18,20,28,44,62 +4,4258,9126,11742,12968,16014,22104,24154,27146,30304,31482,35628,23040,32130,36657,28575,19367,17636,25607,21101,15274,11534,7050,4262,494,3450,7272,9708,18367,16691,15372,19014,11963,12348,10930,8368,7183,6437,5236,6128,3599,4213,4999,4902,4523,4174,3959,3416,3366,6186,9474,9599,16924,17100,20690,18524,20953,21110,19224,22422,14081,26978,28391,38626,23640,39354,38771,54901,56940,61610,68426,73776,72518,94362,76112,77193,80671,72394,80751,68121,53128,53944,55770,47518,51156,31462,20374,14264,19509,17022,22179,16802,13356,9606,7660,3193,0,4082,8526,10941,12214,23190,29314,38766,55150,52600,43285,42735,47752,54424,62919,55681,39069,34468,31092,35498,51089,41007,39412,40644,31615,40046,29462,32997,28827,31974,28886,27951,0,5,7,10,10,11,13,13,19,20,18,22,20,18,19,16,13,13,12,13,10,10,12,12,8,9,7,7,6,8,8,10,22,38,43,59,75,146,194,205,222,218,286,270,203,231,270,214,280,288,317,246,299,354,260,334,396,308,206,286,332,314,212,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,8,8,7,6,11,24,24,32,54,52,59,54,41,40,56,34,46,44,34,26,15,18,17,13,16,14,12,12,14,20,26,23,24,24,27,24,18,20,21,24,24,30,46,43,59 +6,3905,8036,11959,11689,18835,21198,25616,16579,20476,22144,31558,21424,29030,27122,25702,15074,20670,20807,17409,9572,9319,6696,7170,1226,6265,9276,11042,16281,21528,20394,20128,9647,8026,10134,7664,9912,9172,8269,10858,8212,9742,9078,10573,7713,7082,8408,7329,8020,9460,10400,8396,15599,13812,18364,15086,26849,24418,30192,31628,22612,27726,33858,41778,13987,27485,34206,59936,31266,29585,40076,52287,42632,55257,65460,64704,84170,62286,60924,62639,52185,53084,69094,68515,47151,38966,19846,14094,19262,18648,22792,18806,12845,9912,7401,3606,0,5833,10609,18834,20987,30256,35438,41170,65393,58921,47898,37788,42293,48269,65400,58255,38210,33859,43703,39056,50568,46114,33902,33983,36139,39184,29282,35687,27698,26504,23678,21425,0,5,7,9,9,10,12,12,21,26,23,22,18,15,14,10,11,12,12,14,9,10,11,14,7,7,6,7,6,8,8,10,36,48,58,82,99,164,180,242,182,206,223,227,178,154,148,123,290,323,288,260,382,386,337,339,355,338,239,225,344,252,180,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,20,22,14,13,13,12,18,29,44,46,88,72,88,72,40,48,46,44,64,64,42,42,16,20,21,22,23,22,22,24,26,36,38,36,29,32,36,35,21,24,23,34,26,35,47,52,70 +7,3324,8274,12576,12308,16004,21156,19838,11497,12154,14100,23462,28602,31166,23957,17797,15740,16084,14386,12406,8158,9152,10111,8270,2012,5340,9093,8846,14774,16374,16113,17041,7941,7680,6799,7646,9194,10016,10451,17102,11570,14614,12536,12832,11667,14174,13627,14070,11133,10792,11753,11436,14629,12914,12572,12500,35404,27170,39325,37696,34642,36854,39102,36586,10710,17897,23988,44230,35063,39102,38023,43063,30128,36942,44643,46182,63843,57770,81736,70392,71185,73692,73022,59516,53753,35264,17516,15702,30140,20593,21956,17426,14058,10290,6422,3328,0,6770,12482,25718,28410,30401,42214,59302,81441,53366,37380,48487,38586,57861,69482,54298,47672,43272,37562,40741,50609,42909,37032,35284,22192,23344,25243,30901,32103,30874,21242,18827,0,5,7,10,12,12,14,14,24,22,22,21,16,16,12,11,8,11,14,13,12,12,12,15,10,10,8,9,8,8,8,10,52,50,75,112,131,184,186,242,244,232,229,228,168,183,146,97,287,278,340,340,380,381,306,353,307,284,210,258,304,192,132,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,30,28,23,22,22,18,25,43,60,81,122,113,116,93,44,48,47,51,64,70,56,49,17,20,29,33,28,34,37,38,38,46,53,44,36,40,33,32,18,22,22,25,28,35,56,66,65 +7,3044,7053,11268,12948,17110,15715,17619,6433,10772,14270,23168,29926,24395,23143,17250,13251,14294,13424,10344,6562,6560,8764,7097,3599,5498,8600,8544,9674,10877,9573,12712,5722,6594,9862,11883,10049,14483,15180,17124,12407,12219,10101,13934,18316,20776,17794,15046,14412,16482,18845,16355,13533,12756,15553,13990,47808,42717,47405,39852,41694,43216,43541,43282,7994,15810,29826,36193,35852,40632,51774,38627,17085,25867,28748,43435,61583,46168,48733,53124,86847,75076,89074,67928,48802,41340,21563,14044,31895,29422,17490,13301,14678,8712,6661,3432,0,9942,18685,25934,30258,28088,35882,58485,71945,71550,66289,51978,48872,40221,42180,33524,44266,36911,42646,47315,41981,36478,30199,37881,13937,19162,21744,21972,27230,21212,18874,17176,0,2,5,8,10,13,12,13,18,13,11,12,12,10,7,7,6,10,11,10,10,13,12,15,8,10,7,8,8,10,7,8,50,47,61,93,132,119,117,161,241,243,186,200,238,219,130,114,217,286,353,410,368,474,496,536,383,391,284,264,210,139,103,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,47,41,36,34,31,28,28,40,68,75,95,117,123,101,74,37,29,31,49,60,64,63,71,17,23,30,32,34,46,47,45,54,48,41,39,51,44,45,32,16,19,22,27,30,44,45,50,52 +9,3540,5959,9335,10971,14552,14443,14735,13150,13531,16618,22468,33416,29882,27735,22911,13512,13545,14526,11745,10166,10474,9041,7177,5797,6655,9594,8530,8104,9610,7958,8899,7805,10106,10844,9165,8526,12912,12275,20254,21946,21682,20969,26908,26701,30930,25506,17968,18685,17103,18783,20944,17811,18007,15706,16512,55931,45064,39250,36460,30308,33986,41493,29014,6304,12642,23267,28220,31122,33360,32734,31179,16808,23807,32797,49263,44440,50747,50360,54288,81232,67675,70664,56260,49216,49101,25646,21227,24714,26206,20517,15227,16396,12888,5945,2912,0,9974,17284,23536,29459,31306,43072,53608,74515,61889,45973,45566,36773,32089,30245,34931,29884,31499,33910,32458,28742,26888,27639,33170,26442,20640,21227,25517,24961,21150,18209,20869,0,4,7,9,10,13,11,14,18,13,10,12,10,12,9,8,7,11,12,13,8,13,13,17,10,11,10,10,8,9,8,10,60,81,77,100,120,126,136,184,208,184,158,172,238,176,147,125,250,294,292,420,373,442,475,458,310,308,222,198,158,129,115,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,54,46,54,58,36,32,44,74,106,132,134,148,124,141,35,38,31,50,68,66,65,64,23,38,44,47,37,60,55,52,60,54,36,57,54,53,59,37,29,32,30,28,30,35,40,46,43 +11,2484,5979,9646,12464,9969,11034,10523,18246,17412,20109,32371,35110,28309,29488,26884,10324,9990,13256,17108,15542,14242,10208,8975,6408,7433,7739,6327,4302,5778,7597,8179,10686,9663,12702,11074,10890,11142,14687,17205,31309,28404,28372,39241,46396,38179,35846,23631,22020,26682,23766,22218,20976,19388,21468,22867,54590,43996,45815,43583,28629,34748,31431,29509,2940,7589,14332,17468,18308,25638,24542,19498,18290,25320,31244,38889,40281,34705,38087,56308,93289,91348,61996,46873,72004,61483,39534,26234,17622,19384,22302,16531,16207,13076,7668,3467,0,12920,22056,27837,40394,44624,44632,44134,58446,57434,41440,54802,40321,36263,27968,36552,30117,27526,26118,18816,18444,20640,26999,39012,30208,24457,21784,26646,25342,19790,18958,22704,0,4,6,8,6,10,10,10,12,12,9,12,9,10,11,12,7,8,10,12,7,13,15,17,11,14,12,10,6,7,7,8,55,81,97,121,103,87,109,185,129,115,118,130,188,144,132,118,266,268,368,472,374,452,382,372,272,207,177,137,147,107,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,70,83,67,91,77,57,49,57,118,148,150,148,159,154,165,32,35,40,52,86,84,90,79,36,47,46,58,48,46,62,56,49,43,40,55,74,81,64,39,33,35,34,27,30,35,38,30,26 +12,2146,4316,8697,8978,12108,15899,18434,19547,22300,21396,28470,34927,25016,28652,30314,16213,15979,16778,16332,16888,17018,15044,12069,8124,7544,6816,6374,4348,4636,4581,4824,13686,16928,14415,12292,8889,14097,21990,26141,26462,31843,31387,42063,56229,42100,24494,23156,31176,23942,20767,23389,30549,26232,26053,28938,53621,43806,30439,27766,24460,24460,22511,21991,1684,6166,11567,14479,14889,17282,23586,22132,24917,29726,34646,37836,45608,42591,36452,50888,89984,74712,73975,67847,68011,62754,41412,35035,20521,20318,19650,14218,16627,13670,9034,4482,0,10330,21824,25986,37790,37370,31699,28674,48919,34493,36088,44818,45024,40371,28543,31184,27248,23140,20867,16304,16694,17100,19286,28936,31055,24366,21321,20578,20196,19868,16344,24455,0,3,5,7,5,8,9,10,12,14,14,13,12,14,12,13,7,9,10,10,7,13,16,16,10,14,12,10,7,8,7,8,77,108,104,115,122,118,88,126,101,93,97,114,110,116,93,86,267,232,320,435,319,378,281,284,287,204,179,114,92,97,76,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,127,82,76,102,86,70,69,64,124,137,162,173,193,241,251,26,34,40,54,67,77,72,69,47,66,77,60,64,62,80,72,69,54,51,64,70,84,73,53,34,34,32,32,27,24,31,22,16 +9,1670,3051,6449,8361,11475,17481,21015,21621,19494,15113,21193,20654,17592,21046,23612,18868,18084,18653,13562,11008,14784,14857,10348,10668,8992,7046,6965,8092,6231,4850,3764,23297,24622,36102,38323,35496,37298,27965,24411,32928,33089,23799,23222,21167,19062,19399,23947,31795,41471,43936,49322,40865,47731,44427,48850,47138,40195,28600,27092,21436,20285,29216,29290,0,5955,12388,16590,17852,18768,19543,23136,29703,22956,18533,24218,25032,27658,30664,42954,68836,65740,67768,82674,70831,52135,42278,30036,26096,23750,23850,14703,12752,10258,5942,3555,0,991,1833,2393,3238,13051,20174,22398,31236,29161,27602,36586,37892,29073,21890,17239,15357,12940,14260,19212,20357,24102,25760,32928,29770,31134,35044,29140,29379,41398,41325,31130,0,4,6,7,7,9,11,10,9,12,12,12,12,13,15,17,4,5,4,5,5,7,7,8,10,11,8,8,9,10,8,7,87,116,132,147,141,106,103,82,82,78,81,82,73,88,90,72,203,190,156,149,97,141,171,152,206,168,199,181,132,109,120,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,154,203,193,179,140,135,113,57,83,116,163,176,227,217,268,29,34,27,33,46,47,32,53,55,61,52,48,33,36,44,49,82,72,82,70,52,48,52,48,42,37,27,34,36,24,19,12,0 +17,1698,3322,5474,9322,12668,15723,20796,20714,17722,15980,17350,15550,17234,21180,25849,16898,16264,16796,13770,9024,10980,13625,10433,6200,6216,6297,7240,7014,6572,7401,6000,29460,29346,35754,35928,36580,37028,25795,29087,27233,23604,18874,21562,22200,23263,18992,25957,33551,43537,42000,40383,51835,51176,46338,42090,47408,46410,37658,35985,33669,30849,31626,28396,4228,10062,12812,12662,15550,17154,22942,27240,29596,25764,21124,23311,23554,27214,38776,53348,58654,58916,73059,64556,48308,52614,40768,35936,26355,22892,18133,14190,11296,9382,6718,3692,0,731,1648,2312,2227,7949,16322,16563,29908,24682,27420,32602,46011,41868,20474,17498,12282,10620,8480,14577,15976,19226,21878,26266,21706,22450,24875,26054,33130,39694,31445,30967,0,4,7,9,10,10,12,12,8,10,13,13,12,16,17,18,6,8,8,10,8,11,10,15,12,14,10,12,12,11,11,9,90,104,92,108,128,101,78,80,81,72,64,70,46,68,80,74,180,176,149,120,86,122,162,196,177,162,188,162,154,154,104,96,2,2,2,1,0,0,0,0,0,6,10,15,20,28,36,39,148,152,179,136,130,116,122,91,42,87,105,136,142,203,240,286,30,38,37,51,43,51,52,72,39,56,68,58,32,45,68,67,72,82,96,84,50,58,72,52,42,44,44,42,36,30,21,14,0 +19,1802,4046,5807,7439,10047,12028,14598,16983,14588,14082,15565,8530,13073,22508,28018,13346,12196,16993,15174,9482,9680,11712,11473,4552,5028,4643,6519,6583,6081,8139,7530,34119,31818,24858,35910,41808,35502,36046,35943,18265,15172,17940,21923,29608,29964,22896,28003,42677,39839,47290,37490,54742,45262,50258,53738,43006,44464,43370,40478,38735,29652,27360,22938,7210,8539,13972,14038,15245,17810,21280,24734,23238,22958,20452,18272,23043,35183,45459,50325,44258,51653,56914,45788,37030,37131,41917,37238,32256,26790,18508,17764,10985,9643,6662,3587,0,611,1222,2533,1875,4830,7440,8821,20860,22452,22584,31980,41699,37717,27053,24202,8248,6311,6210,8516,8644,13297,17334,16412,23925,25075,22464,22379,25906,23030,30764,24717,0,2,5,7,8,8,8,12,7,10,10,12,9,17,18,20,6,8,10,14,11,12,12,14,14,15,13,12,10,12,10,10,88,84,89,104,78,68,81,62,65,55,53,65,32,53,66,54,112,115,146,113,77,115,172,210,146,109,116,100,138,127,114,117,3,4,3,2,1,0,0,0,0,8,16,26,44,54,76,98,138,146,108,102,75,90,102,68,38,54,92,142,130,185,302,337,32,37,55,75,41,54,62,98,33,46,62,56,37,65,76,80,88,85,81,92,58,54,68,55,55,58,50,47,45,31,28,15,0 +32,1759,3038,6577,7793,9489,9096,14220,12516,12059,10053,11958,7601,12370,13489,21980,11086,11652,14758,13833,13327,12428,8818,8701,4108,4715,4809,8260,7478,6590,7630,6862,25210,25635,31597,31011,37786,34110,40992,31320,19520,16150,19832,22276,25313,26485,22791,24520,36056,39574,49719,45890,43216,44981,46808,54265,53938,51303,62568,43683,42316,46390,35943,34448,10660,11556,11362,12000,10685,13188,13794,15024,20402,20514,24836,21834,24357,38014,49988,65973,39503,41954,40263,34866,23304,28131,26941,29020,29140,21408,13601,15490,10940,8931,5486,2454,0,614,1048,2096,2254,4050,6280,6674,23192,27590,28245,27868,31255,23142,17590,17734,5191,4823,4809,6340,5394,8713,11620,12270,18329,17974,17034,18758,20945,21697,20380,22582,0,2,5,7,7,9,10,12,8,10,10,12,10,16,16,21,8,12,11,16,17,16,16,16,16,16,13,13,10,12,10,10,99,106,110,78,82,72,76,58,66,56,54,41,20,40,48,46,67,82,99,102,79,106,153,168,99,93,90,84,100,80,90,85,5,6,5,4,2,1,0,0,0,15,20,38,61,75,107,106,103,85,76,80,75,78,86,60,42,72,119,144,136,193,245,262,28,48,58,54,53,72,84,102,32,47,50,46,45,64,92,71,76,92,78,105,83,84,101,77,40,48,50,46,46,30,29,12,0 +36,1912,4527,5634,9329,10623,14123,15695,14296,14807,12322,9838,6418,11930,15027,21538,9073,9745,12360,14856,15126,13482,8608,8938,3333,5049,7114,6971,8038,9878,11092,10586,28258,21798,19532,20371,26996,28934,31364,35473,16974,17101,22153,26128,25041,19700,16300,23867,42868,43555,39681,35463,47608,52926,51402,56336,67208,64551,69184,54344,38420,33258,30505,35156,13633,10664,10937,9928,9044,7159,6125,7830,11548,12512,18247,22668,21730,38881,43639,56866,28335,24316,18289,16331,18560,16169,18908,18886,23518,23393,17511,13010,8485,5825,5073,2733,0,710,1256,2055,2186,3342,4384,4004,22924,22816,22351,21318,23792,23922,18194,15401,3384,2826,2372,2805,2556,3187,4716,5538,15193,21086,20371,22594,18952,16945,22736,28441,0,2,3,5,4,6,6,7,7,8,7,9,11,13,11,14,9,14,16,17,17,15,16,19,16,15,12,11,10,11,8,7,144,128,77,64,58,57,70,72,56,36,23,16,14,24,30,46,50,72,71,78,85,108,136,124,65,86,92,74,68,59,50,45,4,5,4,4,2,2,1,0,0,23,52,58,74,99,104,130,55,46,46,61,56,60,58,39,63,107,128,151,124,243,314,364,23,28,31,56,72,94,122,106,42,50,42,55,71,74,75,60,89,80,71,82,109,129,122,98,42,42,39,44,40,33,18,9,0 +27,1833,3322,4772,6776,7748,8286,10431,12859,12583,11082,8312,7012,10121,12501,18116,6846,10004,11609,13722,12452,12658,11812,10849,7402,6704,7409,6302,9600,10293,10954,9655,22450,23430,24193,26230,19049,20276,24993,29380,15012,14140,15895,21671,24045,23216,18860,26341,31324,34507,37816,43768,42676,45253,47887,58338,67736,67368,85381,78855,69250,46608,37301,33322,22239,15251,17819,14701,17753,14542,14539,12084,12700,14854,17966,23274,25354,37224,45257,40800,34466,30374,24548,22118,17420,18127,19504,18674,22868,16078,14034,12970,7509,4660,3538,2073,0,584,1097,1669,1993,2833,3656,3244,14208,16364,16456,17669,17523,20014,14140,9819,2791,2278,1585,2065,1782,2762,3069,4304,14050,15032,14970,15234,12155,13264,18326,17942,0,2,4,5,5,7,7,8,7,10,10,12,12,13,13,16,8,16,19,16,20,19,18,20,13,13,10,11,8,10,8,7,169,119,92,77,54,60,53,54,53,35,20,20,12,21,27,40,35,49,54,50,75,78,81,92,50,53,58,62,45,42,48,40,6,7,6,6,4,4,2,1,0,32,66,92,97,106,126,142,98,78,90,108,80,66,54,45,53,88,118,135,142,206,262,283,17,24,34,54,78,82,110,104,60,63,58,74,86,86,70,76,64,63,62,82,92,104,110,90,37,50,48,48,40,33,18,8,0 +26,1596,2953,3941,5085,5300,6572,7469,9292,7426,8863,8117,6426,8932,12024,13080,6497,8496,12068,13845,13037,11930,11246,9959,10406,9682,8734,6533,8923,8370,7378,6659,25316,22372,23610,24028,19573,20785,21938,14818,18232,16362,16178,23671,21032,19675,18870,21508,29817,32160,39199,47423,51355,43708,56830,57990,68255,83983,109258,114456,95316,54497,33486,28860,28014,25220,20670,22373,28767,23248,23147,16976,13442,17400,17803,20728,21000,32762,35754,42402,40108,40347,28530,27819,15330,13426,14649,16554,15927,15816,15432,12157,4173,4016,2972,1477,0,412,857,991,1242,1506,2461,1932,8480,11455,12288,14905,16706,11979,9345,6751,3354,2786,1546,1947,1081,1845,2932,2515,10224,11565,12404,9114,6916,6518,8654,9129,0,2,3,4,3,5,5,7,4,7,8,8,9,12,11,16,8,12,17,22,17,15,14,13,13,12,8,8,6,7,6,5,147,104,79,58,59,60,42,34,31,25,20,22,9,19,22,20,19,24,26,23,47,50,56,62,21,28,34,29,34,32,30,23,6,7,6,6,4,5,3,2,0,28,63,86,98,130,141,174,126,144,120,143,90,75,58,62,50,86,111,106,119,147,212,222,9,18,32,55,69,86,108,88,78,72,58,75,95,90,80,75,55,53,54,51,71,66,74,80,45,55,46,45,35,29,16,10,0 +31,1370,2568,4938,4710,6326,7274,7714,7596,7876,6567,5808,5702,6572,9393,9739,7960,8692,10601,11472,11734,12078,15795,16626,9858,10636,8881,9216,7348,9112,10071,9900,17583,20364,22571,20098,14173,17520,20412,18670,15440,17445,13681,18976,19265,21274,21795,27942,33878,33898,34941,46778,56494,49965,62765,61508,87556,102636,107804,110368,91672,76214,35134,33892,33981,26218,20606,32204,35888,31858,26356,20512,14068,13908,16367,17726,21050,24803,24526,32120,37978,28704,25960,26245,17056,17383,16345,15114,11804,11849,10690,7204,3882,3147,2571,1233,0,190,446,591,681,997,1214,1240,4541,4920,7472,8180,9029,6876,6139,4420,2208,1690,1218,1148,662,1021,1728,1272,4526,5596,7818,5416,4430,5178,5397,5598,0,1,2,2,2,2,2,4,2,5,7,8,8,12,11,14,9,14,19,20,22,22,20,18,11,11,8,7,5,6,5,5,104,78,77,60,59,44,37,36,31,29,20,22,10,16,17,15,12,14,16,14,27,28,30,30,10,16,16,15,20,19,16,14,5,7,7,7,5,6,4,2,0,34,69,100,101,134,122,149,155,156,140,152,108,95,63,64,52,68,96,86,72,106,188,164,5,15,25,47,61,80,112,88,69,61,63,80,85,96,103,87,60,60,50,59,64,64,65,60,52,50,38,36,23,22,17,9,0 +36,814,1541,2850,3939,6095,6628,7094,8655,8181,9443,8638,6060,6508,6795,7876,8902,10038,12063,11830,8901,10351,10586,8133,6512,9171,13026,15190,12517,13485,11201,11096,14482,27683,47369,56430,59161,48273,52450,62612,54411,43558,36133,51357,51319,41031,32268,29016,33622,41536,40703,27796,26414,18821,13318,7855,0,1924,3956,9010,11888,15606,19858,26734,38534,38396,42325,40399,27362,31165,24746,22055,16287,16580,17576,15931,12306,19543,22845,28004,29356,31189,27991,18254,12108,18260,19442,16026,17203,17566,21100,17583,13408,11269,8280,3400,0,130,305,423,457,498,687,984,1193,1384,1903,1873,1624,1496,1202,1478,1482,1534,1238,849,464,297,183,78,0,526,976,1231,1433,1414,1861,2019,0,0,1,2,2,4,4,5,5,7,8,11,14,12,11,10,10,12,15,17,12,12,13,12,11,12,14,12,9,7,4,2,72,86,83,86,83,66,47,58,54,56,49,48,41,41,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,23,34,33,106,143,172,171,177,160,176,260,243,208,168,152,173,259,244,218,195,220,191,188,256,269,210,234,224,147,176,0,14,25,40,50,71,82,92,82,75,71,76,95,100,102,85,66,88,110,139,122,120,135,101,76,53,51,39,20,14,10,6,0 +50,864,1879,2652,3663,4920,6048,6860,9489,9136,8744,7746,4377,6046,5837,7767,6966,9379,11405,8353,6638,8902,7318,6612,5711,6824,8628,10975,11264,10560,8841,7990,17607,27683,47876,46531,44946,45765,46663,49396,49486,44772,44736,46731,36296,36166,43494,46608,34215,34634,33958,30504,23583,17315,11513,6505,112,1606,2949,7283,11572,13604,18657,23350,39540,40240,40314,31447,25390,20121,25463,19363,16207,13088,17821,13496,10902,13405,16470,20692,25536,23182,22221,15931,12020,14110,12782,15966,12966,18580,19810,14649,10105,8760,7002,3274,37,144,261,350,501,590,644,916,1164,1406,1828,2183,1680,1880,1319,1812,1604,1503,1909,1340,869,538,256,107,7,476,712,1033,1233,1544,1814,2004,0,1,2,3,2,5,5,7,7,9,8,11,16,16,10,12,9,13,17,16,10,14,12,12,14,14,14,12,8,8,6,6,48,56,65,74,74,63,52,53,36,45,56,52,61,43,40,27,14,10,10,8,7,8,7,8,14,14,8,8,8,9,7,5,7,16,26,30,26,76,91,134,153,222,223,272,306,292,249,211,121,150,214,244,207,187,138,141,140,172,249,200,262,230,180,234,17,34,51,55,40,50,76,83,78,62,67,76,86,98,96,97,52,70,105,117,136,134,155,130,108,80,70,54,23,20,14,8,0 +59,855,1670,2350,2468,4068,5098,4914,9467,8975,7540,7492,3708,5552,7076,7496,5595,6720,8590,7772,5236,5978,4968,5477,5659,7032,6718,6618,8460,8840,9861,10887,19871,33249,36716,35316,36456,38764,38938,39892,64394,58267,48084,46456,35936,41099,42046,48516,51176,54267,42277,27290,18978,13995,6255,3758,199,1300,2915,5624,9178,13289,17529,19342,37981,35385,31790,34792,17675,16253,21487,15670,12382,13130,12682,14044,8871,9591,9418,12845,33965,22694,18840,11932,16842,14920,11644,12466,13427,15255,14661,9278,8884,7854,5301,2280,89,212,266,348,401,587,648,834,851,1117,1578,1520,1670,1702,2056,1732,2348,2443,2054,1282,988,732,398,224,13,317,738,739,1439,1520,1880,1868,0,2,3,4,3,5,4,6,7,7,6,8,12,13,10,10,8,10,13,12,7,8,10,9,13,12,11,9,7,7,6,7,34,44,46,50,72,59,56,61,31,38,52,45,66,62,48,55,23,21,15,12,12,14,13,12,23,24,17,15,16,17,11,10,8,13,20,28,28,40,66,99,207,248,318,305,263,265,244,223,96,131,166,170,131,125,120,114,157,168,160,173,230,203,212,196,32,46,62,79,44,57,74,86,58,54,62,73,81,110,114,166,55,58,79,71,138,158,156,142,103,95,66,46,32,26,13,7,0 +69,867,1801,2204,2908,3202,3165,3969,6208,8488,6448,5524,3352,4522,5077,6168,4440,4462,5897,5912,5262,4745,5812,4822,6090,6660,7049,6834,7774,8722,9648,8042,15860,25840,40710,39956,36513,33642,36972,31705,61606,62748,51150,48520,46369,41404,35300,42074,44326,34336,37030,20987,16036,10507,7278,3694,300,1904,2512,5370,9973,11112,14293,14376,41796,37114,28358,29050,16826,16652,21370,15941,11039,9321,10135,11219,7889,8185,9210,9632,31598,23636,13550,12314,17742,14859,12556,10486,19190,16457,18382,12420,10698,8388,5847,2730,145,234,258,394,477,744,1073,1302,751,791,1300,1476,1748,1742,1528,1658,1954,2218,2422,1508,1098,754,565,264,18,286,703,749,1156,1631,1283,1418,0,2,4,5,4,6,5,6,7,8,7,9,9,11,9,10,10,12,14,12,7,9,10,12,10,12,10,10,7,8,7,10,35,44,40,46,59,66,46,48,39,47,61,58,76,68,52,63,37,36,26,28,15,18,20,17,34,32,32,28,21,21,15,14,8,14,20,26,31,46,75,84,208,278,308,342,346,296,236,168,107,132,124,156,142,125,111,110,127,112,144,136,179,158,171,182,63,59,82,79,63,64,74,70,84,74,72,88,67,82,128,172,57,73,77,92,133,133,112,161,98,84,70,52,39,32,22,10,0 +69,691,1120,1687,2382,2662,3452,3061,5269,5302,3687,4370,4328,4086,5377,5888,3022,3322,3239,3918,3860,3973,5258,6130,5771,4826,5245,6562,6494,5966,6043,6256,14243,25828,36796,33073,43526,30511,16187,10491,54743,58505,67549,62595,43533,43286,37902,25414,39884,31980,19331,16952,14152,10513,10119,6166,524,3306,5439,6828,7471,8570,7554,9810,32902,40431,35065,24795,19048,16095,7904,8378,6786,7433,10925,9609,10197,9534,7378,7516,23429,20288,18936,18328,14818,13275,9135,7138,20913,15676,10870,8288,9253,7309,4815,2594,218,270,365,535,566,672,709,981,402,766,892,1045,1710,2357,2317,1722,2432,2212,1622,1603,1296,786,627,281,24,404,702,774,984,1095,1024,738,0,2,3,4,3,5,4,5,5,7,6,7,6,8,8,8,11,13,11,10,6,8,9,9,7,7,6,7,6,10,11,11,34,45,53,60,50,47,32,42,42,39,49,60,68,69,60,71,45,49,43,29,19,22,20,19,38,48,43,29,26,29,23,19,8,19,23,24,34,53,59,81,172,248,251,307,318,297,220,258,136,143,152,140,144,135,83,106,74,70,72,88,98,201,271,288,81,90,102,96,78,68,46,45,105,110,120,101,68,93,105,183,58,71,104,106,150,151,217,193,87,60,56,57,46,36,18,11,0 +87,690,1356,1932,2818,3364,3225,2620,4415,4466,4282,4554,4629,4662,4755,4977,2280,2550,2526,3399,2828,3244,4385,4403,4139,3992,4532,4737,4386,4401,5094,6210,11071,17776,31326,35566,31050,28571,21142,16772,48199,51654,45992,41421,33762,33332,37902,25544,36156,25261,15412,14687,11438,8763,9721,5374,773,2442,4724,5168,4985,6836,6550,9192,46983,42396,34016,26090,28947,19610,15061,10506,7712,10167,12882,10458,12019,10211,8126,7566,23059,23632,14746,16758,13567,11861,9845,10068,17436,12112,13043,9046,7628,6283,3840,1991,276,306,356,412,393,525,614,784,468,574,840,1278,1472,1710,2056,1476,1780,1806,1706,1494,1169,973,635,320,73,413,702,908,992,1007,974,793,0,2,4,5,4,6,5,6,5,8,7,9,7,10,8,10,8,12,10,9,6,8,8,8,7,9,8,12,8,12,12,14,49,58,70,91,75,62,44,64,78,78,72,84,66,73,68,77,60,72,64,40,30,30,34,32,38,46,48,45,44,38,28,20,8,19,21,26,46,52,53,75,155,218,201,267,251,286,203,185,137,136,158,135,151,129,118,103,84,68,87,94,133,206,275,294,109,109,114,93,130,98,74,72,111,136,150,110,127,116,167,178,74,112,122,134,123,169,239,229,108,93,74,54,46,34,16,10,0 +84,634,1306,2275,3459,2928,2936,3325,4682,4879,4156,3884,6203,5520,5754,5038,1723,1449,1726,2038,2045,2771,2813,3696,2856,2577,2952,2807,4102,4050,4514,4569,10690,14710,22340,29596,33414,30579,31417,28868,47739,31567,30570,33226,28301,25224,25503,25498,22610,19628,11615,11296,10264,9648,6190,3507,789,1890,2597,3235,3801,4603,5872,5857,51811,51014,38532,39194,31220,29222,17985,14171,10350,12625,12178,14213,11996,10859,8216,7247,22853,16856,15868,13146,16460,12553,12067,11348,16981,11844,10978,9094,7981,5305,2610,1440,325,342,318,300,206,372,450,820,403,643,688,1156,851,1032,1243,1251,1564,1575,1508,1532,1492,1083,721,462,108,290,612,706,833,766,611,690,0,2,3,4,3,5,5,5,4,7,7,10,6,7,7,10,6,8,8,7,4,6,6,7,6,8,8,12,9,12,12,12,55,77,93,112,99,80,64,82,119,116,101,90,69,73,64,82,92,89,76,58,40,50,43,49,52,58,53,49,51,38,33,22,9,18,26,26,43,41,50,64,181,202,220,214,269,194,212,184,173,169,138,126,147,146,116,80,87,82,97,92,171,195,238,251,126,145,132,144,137,134,108,106,164,148,146,131,150,151,183,155,106,144,159,164,138,197,190,155,130,92,67,51,38,34,18,9,0 +76,774,1762,2620,2816,2806,3198,3198,4772,5080,4746,6018,8082,6212,4973,4210,996,884,907,1347,1469,2039,1911,2165,2007,2342,3188,3080,3361,3872,4526,3800,7072,12803,19044,25192,25688,28560,28617,25468,43306,37610,28953,27950,28067,28256,29100,27498,17672,17788,10638,7220,6075,6517,5170,2790,821,1114,1726,1906,1761,2761,2722,3468,49185,46877,43723,41580,33221,23708,21408,17045,11052,14334,16762,18576,17671,13608,10972,8811,17055,18110,16527,14168,17609,14868,17028,14876,11714,11555,7860,5332,4268,3208,1906,838,346,242,281,250,179,298,294,536,411,591,752,896,892,747,1073,1160,1620,1489,1539,1630,1651,1022,840,446,132,338,464,619,595,713,671,768,0,1,2,3,2,5,5,6,5,7,8,10,7,8,7,9,5,7,7,6,4,5,5,5,4,6,7,11,9,12,11,13,78,111,104,130,132,111,93,105,160,142,141,130,98,100,103,124,120,132,112,71,67,44,47,48,65,72,72,69,64,52,37,28,12,24,25,28,40,44,42,62,141,184,158,206,230,174,158,136,150,156,129,146,108,126,106,84,56,91,122,152,204,257,259,284,109,120,127,116,158,148,152,150,185,142,149,162,218,224,183,170,192,182,219,162,115,164,140,142,176,110,77,57,31,30,22,12,0 +50,419,883,1422,2333,2439,3240,3943,3758,5620,6807,7341,6864,5188,3695,4268,0,90,199,339,450,707,838,1172,1202,1186,1721,3346,3860,3529,4958,4714,6509,11333,14262,20582,20539,21294,21044,27672,33342,41632,48194,53366,41467,38277,23355,24244,15535,13144,11624,11534,14197,9305,7231,3591,798,757,694,496,436,370,185,98,41521,33975,35587,34831,22682,19724,21297,16501,10595,9026,8805,6288,2869,5832,11094,12669,14414,10792,8036,5755,5192,5901,8375,11419,11623,9283,5879,4871,2299,1538,921,526,300,401,567,617,615,520,455,424,548,678,733,673,876,908,800,828,1782,1732,2003,1954,1362,1070,721,354,156,253,275,470,660,595,407,531,0,2,3,5,4,6,6,5,3,5,4,5,5,7,7,7,3,4,3,2,2,2,1,0,0,2,4,7,9,10,10,13,129,133,93,95,95,154,179,166,182,182,132,158,249,177,120,123,129,96,71,66,48,45,43,56,56,43,33,37,34,27,19,24,16,38,65,62,80,69,58,64,86,130,150,216,226,204,274,215,128,123,99,142,136,99,96,62,50,89,102,202,239,196,220,248,106,153,163,175,169,181,179,179,148,114,98,120,123,135,150,151,291,252,199,216,224,235,183,160,173,135,116,124,121,92,64,28,0 +53,480,1000,1318,1844,2339,3687,4108,2900,4020,4674,4911,6303,5186,4291,4876,0,100,178,284,368,682,704,1059,968,1388,1718,2422,2948,2564,3578,3298,6289,9408,12016,12747,20181,20054,19928,19612,32790,38550,30088,35169,31332,28172,16756,19576,13498,13790,10312,10732,9500,7980,5180,2814,669,570,498,396,338,246,151,86,41639,34244,38190,31064,25599,20182,18088,13426,7124,7908,7716,4716,3068,4652,9626,12255,11742,11214,7131,6714,7204,8435,8348,8452,11071,7677,5442,3535,2366,1245,894,417,278,414,424,569,564,495,443,456,532,780,827,760,650,629,667,620,1406,1486,1470,1452,1028,836,762,432,197,203,253,396,390,464,465,472,0,2,5,6,6,7,7,7,5,6,5,7,7,9,8,8,5,6,5,6,6,7,5,6,5,7,7,8,13,15,16,14,95,114,82,94,101,108,136,129,219,178,179,188,230,164,120,138,141,106,66,62,55,60,72,60,77,66,39,46,46,44,30,28,15,32,46,74,68,74,57,67,84,115,176,212,233,268,220,180,115,102,80,114,113,75,64,44,40,88,92,150,199,198,193,230,102,144,115,155,166,143,171,144,176,134,118,106,118,163,198,178,282,236,173,170,247,226,146,139,157,140,149,138,135,98,54,28,4 +58,644,1017,1498,1822,2734,2953,3508,1559,2158,3756,3604,5464,5572,3952,4466,0,113,198,370,385,658,879,998,702,1172,1738,1940,1890,2683,2639,2288,4299,6217,6403,7870,13912,12637,12176,19427,32918,31748,25445,27144,24608,17119,17930,18668,13068,12760,11717,9763,9022,7616,5608,2808,631,529,327,359,205,147,128,109,44831,36320,32953,28373,23176,14138,11788,8933,5960,6020,6675,4436,3412,5662,8089,11109,14029,11904,9196,7438,6822,8053,6611,7255,7146,6954,4611,3108,2122,1291,736,345,300,433,428,522,460,500,443,308,606,548,669,567,543,669,628,512,1578,1857,1653,1454,714,779,599,388,176,189,157,240,303,375,406,477,0,2,4,5,6,7,7,7,4,5,4,6,6,7,7,7,6,7,6,8,8,8,8,10,8,8,9,10,13,17,16,15,62,70,72,88,76,86,84,73,220,200,180,214,168,146,126,122,109,78,70,67,70,67,77,87,92,89,60,77,61,55,46,30,17,27,30,44,61,50,60,92,90,102,153,166,203,168,196,163,70,100,96,142,93,82,47,43,47,76,118,119,109,164,168,188,111,124,104,88,117,135,110,108,146,145,102,105,156,171,186,182,199,181,130,128,227,149,140,162,145,134,135,129,126,111,61,41,6 +60,582,1028,1482,1352,2019,1963,3142,1076,1852,2666,2194,3951,4045,3036,3892,0,129,258,374,509,710,1057,1063,512,864,1086,1418,1531,1545,1868,1576,2726,4572,5050,5570,11028,10500,9404,13522,24504,23349,16749,17640,23816,17768,16815,12606,9510,9632,10311,8196,6206,5115,3862,2442,318,320,218,220,151,134,106,105,46220,38396,29985,28362,17037,11270,9980,7408,5127,5707,5224,4012,4740,4962,7605,10192,7915,8218,8186,6754,7547,7632,8450,9248,6282,5272,4998,2918,2036,1264,1014,498,360,516,624,514,650,575,441,346,508,522,496,501,762,786,790,544,1830,2041,1462,1370,754,692,644,414,158,172,124,210,283,292,333,353,0,2,5,6,5,7,7,7,5,6,5,7,6,7,7,7,6,7,7,10,9,12,12,14,12,10,12,14,17,16,15,17,44,64,61,85,58,84,84,84,189,188,135,150,125,128,100,118,106,76,59,76,98,80,68,83,104,103,76,88,61,70,58,38,14,22,22,36,51,42,48,66,106,120,123,147,139,123,124,130,64,94,107,112,84,70,62,47,43,64,78,101,97,132,156,247,149,128,111,94,101,78,71,94,104,98,82,121,172,148,177,205,261,274,229,182,246,180,170,150,139,124,104,106,120,88,47,29,7 +81,449,691,1114,1494,1519,1817,2536,520,902,1121,1126,1484,1688,2433,2787,0,206,354,422,586,644,840,1142,418,424,577,717,852,540,403,396,1961,3343,5192,6268,8167,8982,11958,14298,14579,13482,12916,11943,15212,15215,15019,13713,9526,8228,5640,4573,2842,2321,1227,1055,125,104,80,99,107,84,68,99,34774,33342,25382,18353,14566,12402,7139,7426,5372,6740,5922,5502,4562,6364,8215,8802,5689,6176,5136,5630,8220,9763,8347,9265,6230,5179,4259,3027,1472,1311,990,542,461,380,360,538,646,610,511,281,611,770,786,927,901,601,452,533,1852,1468,931,1000,832,726,649,379,104,109,128,167,210,271,422,484,0,2,3,4,3,5,4,5,4,6,6,6,4,6,6,6,4,6,6,10,10,12,11,12,12,11,10,12,14,17,17,13,42,62,64,65,58,66,85,74,158,107,100,126,123,119,130,98,66,86,90,104,100,89,92,96,103,102,122,86,88,89,60,36,9,17,24,32,30,36,31,39,94,120,107,96,110,100,124,133,85,101,126,122,108,110,92,60,35,49,72,92,104,181,268,335,156,168,127,86,54,69,78,74,71,114,128,144,168,271,339,349,293,212,213,240,192,193,177,126,123,138,140,131,78,58,39,22,7 +74,320,550,866,1201,1158,1468,1430,477,772,788,984,1174,1366,1636,2608,0,156,248,317,488,552,666,874,262,354,442,484,654,402,288,391,1401,3312,4773,6044,6070,8194,9602,9268,9341,9312,8354,8836,11144,12592,10554,8989,7076,4946,4274,3538,2062,1527,1111,883,180,148,96,117,128,138,128,135,27114,20765,22037,18278,11742,7497,6483,5940,3985,4851,5832,4649,3690,6063,7730,6968,4852,4769,4278,5256,6084,8079,6528,6776,4987,3875,3644,2468,1030,1050,862,568,422,486,395,452,445,576,493,327,576,670,664,816,824,498,347,458,1503,1204,622,742,642,592,416,312,101,91,116,171,188,230,332,363,0,2,4,5,4,6,5,6,5,7,6,7,5,7,6,7,5,7,8,12,10,14,12,14,16,16,14,16,12,16,16,20,37,59,67,56,71,74,69,92,171,136,98,134,143,124,112,96,74,84,108,122,82,111,98,100,122,119,82,88,86,60,56,36,17,22,32,36,29,38,37,52,79,78,72,80,78,86,82,111,86,74,101,87,92,86,66,55,33,54,67,86,98,146,199,244,113,96,116,74,36,46,61,67,50,78,94,124,160,264,346,328,239,233,216,232,200,178,187,138,102,106,98,99,85,74,45,30,16 +73,231,334,401,864,876,942,812,362,575,696,648,972,1080,1262,1470,0,64,126,195,271,392,614,666,221,233,317,405,453,422,292,346,1528,2265,3180,3693,5053,6527,7116,6207,5629,5081,5758,8339,7932,8737,7896,6727,3798,3274,2786,1970,1523,1292,822,582,214,152,156,202,193,199,158,142,14505,14146,11480,10120,5549,4701,4009,3910,3555,3879,3854,3378,3294,5054,5210,4148,2927,3694,3279,3420,5281,4062,3896,3547,2181,1872,1862,1360,878,918,707,396,359,440,422,567,412,326,358,291,624,682,740,647,640,486,370,425,946,684,529,486,545,436,385,317,94,115,98,106,147,225,282,286,0,2,3,4,3,5,4,5,3,5,4,5,3,5,4,5,3,7,8,10,9,12,12,12,18,17,14,16,12,14,18,20,36,44,47,53,60,55,62,87,164,140,106,128,184,150,120,87,77,88,120,124,101,132,133,130,112,101,75,83,72,57,46,32,22,31,36,38,32,42,42,57,48,46,56,45,74,76,72,60,59,65,63,73,52,54,48,33,34,46,70,77,97,113,154,159,116,87,76,63,27,40,50,44,24,44,62,94,162,173,236,350,194,175,208,198,213,174,150,92,92,105,86,74,74,64,63,43,28 +66,126,213,262,512,480,560,488,217,286,326,352,504,570,514,877,0,32,70,109,150,204,323,402,172,220,341,374,414,374,286,276,1011,1550,1813,2160,2130,2618,4111,3870,2476,2474,2772,4582,4733,4306,4143,3396,2181,1682,1178,1066,938,702,397,356,224,196,191,252,272,249,233,188,7907,6752,6402,5690,2836,2720,2329,2082,2090,1998,1791,1708,1605,2648,2994,2272,1734,1845,1874,1532,2607,2060,1708,1978,1138,1012,1131,698,538,550,416,284,337,340,373,428,453,317,345,356,541,614,517,662,736,530,408,386,778,502,316,375,382,324,286,242,88,94,85,105,105,144,128,114,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,8,10,10,15,16,16,18,20,22,22,17,20,21,24,37,34,34,42,52,70,80,90,161,120,99,132,190,156,102,102,101,114,136,116,101,127,108,104,159,105,68,67,49,49,53,41,29,34,30,34,25,38,40,48,38,41,51,46,39,46,40,32,28,38,33,39,27,29,30,26,25,40,50,76,99,104,103,112,87,76,47,46,21,25,28,24,12,26,53,74,124,156,201,258,249,186,198,189,176,140,126,74,63,70,65,56,59,56,50,47,40 +44,36,37,30,13,14,12,10,7,8,8,7,5,5,3,2,0,8,15,24,30,95,138,200,198,233,275,322,264,217,189,241,300,353,298,225,231,203,177,88,26,27,23,24,17,15,11,7,0,44,79,147,183,147,150,202,249,230,226,270,297,312,280,245,222,287,286,216,217,218,243,231,225,201,244,263,204,159,107,78,53,60,57,50,37,33,21,12,0,16,30,46,47,130,187,178,249,222,205,310,361,294,284,379,578,506,402,565,650,452,340,338,357,255,176,162,150,133,132,138,123,85,69,59,40,35,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,11,12,14,18,16,16,17,22,22,17,20,24,28,32,33,30,40,36,72,84,93,103,114,102,125,171,160,126,116,110,114,120,110,97,106,86,109,156,110,61,42,39,42,41,41,31,28,34,27,17,30,33,35,38,29,31,23,18,15,11,7,0,2,4,6,6,12,15,17,18,25,34,48,71,75,77,98,93,57,35,26,11,8,6,4,0,15,29,57,84,98,117,220,258,250,187,186,132,99,66,40,17,26,26,36,34,44,56,43,46 diff --git a/worlds/diamond_world2_iso.jpg b/worlds/diamond_world2_iso.jpg new file mode 100644 index 0000000..15ad13a --- /dev/null +++ b/worlds/diamond_world2_iso.jpg Binary files differ diff --git a/worlds/diamond_world2_topo.jpg b/worlds/diamond_world2_topo.jpg new file mode 100644 index 0000000..67fbe5b --- /dev/null +++ b/worlds/diamond_world2_topo.jpg Binary files differ diff --git a/worlds/diamond_world3.csv b/worlds/diamond_world3.csv new file mode 100644 index 0000000..f728357 --- /dev/null +++ b/worlds/diamond_world3.csv @@ -0,0 +1,129 @@ +54,45,48,33,25,19,13,7,0,30,56,85,111,186,266,326,308,342,398,404,478,526,482,386,235,547,794,981,938,973,930,1031,848,1321,1885,1868,2595,2808,3491,3086,2423,2261,2150,1866,2490,2400,2296,1731,1056,1121,977,968,908,719,350,156,0,40,66,106,139,230,302,350,552,1001,1941,2481,2391,2874,3772,3797,3441,3024,2415,1553,1437,1385,1355,2190,2405,1644,1345,1364,1672,1222,1304,660,235,164,166,130,117,364,544,616,737,1044,1266,1885,1976,1907,1535,2132,2040,1908,2521,2150,2796,1799,1566,1266,1324,1154,1471,1270,1186,926,828,373,0,5,9,15,22,36,42,46,44 +59,44,39,31,25,18,13,9,4,33,48,70,98,137,220,226,330,362,321,362,326,373,393,324,200,470,674,734,644,705,825,755,642,1283,1674,2145,1902,2134,2795,2202,1814,2135,2068,1703,2219,2266,2238,1334,1221,1068,927,1072,922,826,520,238,29,58,79,126,148,220,249,304,498,1108,2106,2191,1606,2254,2683,3624,4869,4892,3513,3584,2507,3754,4592,6927,3696,3422,2276,2096,1758,1512,1199,902,1302,1092,855,564,750,896,737,720,636,916,1187,1680,1584,1596,1815,1757,1464,1712,2266,1651,2106,1732,1531,1469,1474,1482,1226,1248,1090,1173,922,530,275,312,253,200,166,123,89,62,33 +54,47,34,30,22,22,14,8,6,32,54,81,92,128,138,136,248,203,180,245,277,281,356,232,222,350,552,831,507,585,522,415,611,1048,1510,2132,1548,2264,2502,1822,1482,1799,2396,1959,1643,1558,1660,1372,1216,1021,952,1089,909,702,556,356,53,82,103,137,215,269,247,312,352,816,1669,1790,1369,1806,2306,2589,6746,6526,4918,6895,4070,7047,8161,8731,6129,4300,3734,2387,1904,1773,1663,1561,2186,2043,1466,999,1240,1169,1287,930,524,644,882,1065,1368,1580,1572,1514,1526,1420,1400,1356,1528,1748,1726,1492,1660,1634,1350,1137,997,1076,968,779,613,501,529,419,292,202,145,83,28 +50,39,24,26,19,22,17,12,8,32,48,62,101,136,161,178,189,193,179,236,264,284,359,294,312,426,470,638,464,534,561,467,509,1028,1894,1884,1593,2331,2178,2190,1576,1810,2214,2059,1876,1574,1795,1704,1187,904,1034,784,782,658,426,278,122,98,112,154,248,240,230,232,415,858,1470,1360,1026,2134,2898,3745,6536,7304,6121,7452,5650,8898,9037,10044,11024,8813,6880,3442,1932,1739,1590,1334,3544,2875,2363,1857,1462,1524,1536,895,265,508,647,882,1203,1330,1448,1184,892,1088,1017,1062,1413,1237,1484,1186,1628,1463,1188,1214,1274,1010,1094,930,1114,688,687,575,340,274,212,110,26 +45,40,34,26,16,12,8,7,9,26,50,71,77,124,178,203,160,209,208,219,199,190,144,224,358,482,603,510,612,634,523,568,557,847,1012,1766,2144,2135,1505,1816,1768,1828,1535,1661,1634,1152,920,1070,953,1032,946,959,796,564,610,374,162,187,206,256,244,183,129,124,519,771,919,814,966,1558,2378,3365,6658,7550,9782,8815,9230,10485,13423,15564,13711,8821,7996,5990,2260,1993,1938,1443,4578,4356,4056,2526,1850,1319,1068,955,104,247,454,712,1070,1065,763,646,628,722,626,676,1004,783,863,634,2095,1269,1074,1101,1238,1164,1018,1021,1417,1124,1200,938,484,367,354,166,27 +36,29,23,22,15,15,13,13,12,26,39,48,48,90,106,144,234,201,176,204,156,140,142,196,393,486,443,513,643,582,463,432,483,702,708,994,1463,1476,1438,1644,1585,1233,1504,1358,1760,1488,1067,1174,861,1062,930,998,1339,1136,598,439,270,302,271,340,494,346,246,222,476,818,989,1014,1204,2096,2424,3972,6113,7783,11573,10580,9109,13048,17592,14989,14571,13236,11292,7032,3388,3810,2754,3110,5995,4750,4442,3367,2224,1842,1202,1036,76,196,383,588,744,594,476,500,459,556,768,684,1514,1108,1030,910,2403,1926,1576,1282,1083,1166,1125,1055,1637,1860,1548,1492,700,600,487,235,19 +25,23,17,17,17,15,14,14,10,25,37,37,39,47,72,100,236,205,226,204,87,94,92,120,353,421,409,371,477,382,299,256,371,504,564,697,727,800,930,1034,1261,1082,1040,1034,1366,1006,1068,1046,718,1155,1354,1587,1555,1125,816,636,321,307,372,415,581,378,354,225,355,759,1033,1302,1930,3154,3366,3742,3804,6151,10185,11202,9443,11786,18736,18116,18431,13811,12021,9441,5235,5634,4548,4414,6949,4792,3987,3418,2295,2380,1808,1360,35,115,193,356,371,349,327,309,354,515,708,692,1582,1535,1420,1145,3583,2384,1832,1624,1110,1110,1214,1251,2081,2180,2274,1625,1106,952,568,298,11 +12,14,12,13,12,14,14,16,11,20,28,29,20,30,38,55,291,249,182,147,62,70,90,164,248,345,338,300,228,204,198,130,215,268,322,386,480,530,761,784,802,846,744,710,863,918,891,1050,949,1096,1273,1353,1238,1308,1097,742,388,512,662,558,713,494,441,308,278,684,1204,1978,2782,2963,2318,2853,4506,6572,10167,11387,11813,15246,19093,19558,15894,13022,12641,9506,6516,4920,5160,5288,6719,5358,5891,4277,3833,3552,3348,2052,18,62,99,172,155,152,195,150,170,500,683,950,1563,1893,1887,1717,3615,2508,1875,1477,1107,1070,1074,1221,2383,2326,1914,1782,1237,1144,626,318,8 +0,2,4,7,7,10,8,12,12,10,9,8,5,5,3,2,292,241,199,201,270,271,268,233,184,150,180,150,104,96,57,30,0,84,163,282,318,302,396,503,542,580,462,664,652,828,783,888,1235,1163,934,1220,1506,1206,1168,923,600,616,730,788,591,623,537,417,139,266,467,902,1357,2620,3758,3489,4095,5723,6818,11223,16184,19013,16734,17158,14824,14493,15844,13046,11070,11676,9831,8869,7840,9358,8310,8808,6789,5621,3699,2794,0,0,0,0,0,0,0,0,0,122,239,534,685,1228,1574,2065,3970,2909,3052,2114,2124,2739,2548,2034,2048,1310,1138,956,699,606,395,197,3 +6,11,13,16,15,16,14,14,17,14,10,10,7,7,5,2,232,278,268,316,356,406,421,493,376,302,278,220,122,223,183,158,0,98,202,265,241,285,452,560,579,504,370,498,582,666,892,1054,1035,876,836,988,1271,1075,1287,884,598,636,696,599,797,754,615,390,246,482,813,1249,903,1768,2916,3236,3494,4704,6145,8302,10831,14066,14296,12928,11657,11734,14097,10754,12122,9655,12061,8773,8971,8542,8337,8280,8869,5428,4264,3023,81,64,56,53,60,65,72,68,28,172,279,423,666,1107,1931,2537,4330,3361,2080,1892,1919,1940,2344,1876,1516,1052,1160,958,549,496,304,180,4 +10,17,18,26,20,16,15,14,15,13,12,12,8,7,5,2,192,332,362,460,469,685,680,856,586,518,340,236,197,333,390,289,0,91,172,217,189,280,427,402,426,446,444,592,423,684,936,1016,923,1037,850,834,1101,962,994,763,844,856,730,557,800,610,696,513,398,789,1164,1337,871,1825,2718,3665,3608,5866,6235,7542,6885,8813,14482,14902,6848,7180,9049,11016,10371,11395,10356,10896,11872,12890,9652,6686,8689,7522,4166,2747,153,131,99,87,145,148,140,111,54,200,330,392,634,1273,1664,1999,3350,2919,1728,2013,1365,1522,1392,1219,1122,888,798,717,454,404,262,154,3 +16,24,30,31,26,28,29,21,20,21,20,18,13,9,7,4,131,218,362,443,555,778,840,806,973,822,469,374,327,411,470,487,0,66,154,185,239,320,360,424,419,370,421,462,293,490,662,965,651,663,502,727,797,942,1131,725,709,697,736,686,969,765,667,388,485,906,1441,1195,1243,1918,2188,2804,3564,4584,4960,5902,6440,11890,12513,12905,7528,6714,7297,7182,8176,7253,9608,9238,14455,12884,9046,8580,5909,6088,4683,3324,251,214,218,206,189,190,195,166,68,232,295,373,477,1295,1822,2448,3430,2465,1768,1573,1422,1210,1101,978,760,845,723,654,465,353,226,112,2 +26,31,36,42,40,38,30,19,24,22,13,15,14,11,8,5,55,120,201,298,480,587,722,973,1045,970,714,593,434,348,363,516,0,76,143,157,224,336,370,390,286,269,225,264,230,325,457,677,288,423,441,747,810,572,534,654,869,1114,1068,808,902,839,560,396,534,1021,1393,1736,1521,1726,1893,1722,4251,5122,5725,6832,6732,7670,11725,15972,6447,5632,4673,4032,4428,5252,6178,7915,14539,11468,9140,8413,5969,4751,3224,3233,435,383,252,304,264,189,194,216,86,188,333,456,524,981,1504,2432,2389,2184,1472,1500,1112,1094,728,1038,693,593,716,604,454,401,237,136,2 +32,34,31,36,54,50,31,23,26,24,15,15,14,13,8,6,40,139,178,259,304,544,610,994,1040,981,660,674,691,1052,889,1701,0,59,137,166,191,219,256,313,344,307,178,196,215,268,419,665,277,356,462,708,880,656,493,518,779,985,1016,854,628,747,629,511,610,1130,1266,1221,1519,2116,2066,2681,4139,5902,6058,6776,7355,9477,12114,17525,6594,7392,6277,7321,7834,8482,6356,8530,14393,13772,8548,7760,4520,4349,3177,2269,545,512,571,472,406,408,289,292,213,368,504,606,499,1062,1528,2207,2184,1936,1295,1246,1075,957,924,1111,718,634,544,492,463,369,268,136,2 +34,39,35,37,50,45,41,26,36,34,20,16,12,12,8,5,39,110,156,226,274,453,654,1045,1331,1095,836,854,744,1448,1715,2650,0,44,85,146,143,195,210,257,335,275,138,164,128,325,430,689,350,378,420,470,726,774,648,656,820,770,896,952,641,671,627,607,752,882,1292,1126,1691,2161,2442,2756,5836,5932,7378,6833,6356,12483,14456,17364,9019,7004,8156,9492,9271,9742,7668,8347,16230,14451,11121,7987,3951,2947,2558,2055,553,743,820,845,576,476,438,298,303,476,692,862,645,1180,1339,1229,1847,1639,1281,1099,846,705,847,957,653,489,494,423,413,310,213,124,1 +40,32,41,38,48,46,43,33,28,30,22,19,13,14,10,6,22,80,96,166,225,448,614,806,1064,848,654,859,708,1368,1767,2534,0,50,110,168,200,221,202,262,301,250,107,117,116,176,269,512,368,380,395,615,794,732,886,908,769,789,1046,965,832,788,894,730,670,734,1134,977,1128,2185,2604,3946,6092,6103,5849,5740,5313,9128,11342,13634,8527,7910,9878,11010,10941,8296,7856,7088,10646,12072,10010,5844,3438,3796,2770,2351,810,1055,1519,1404,988,948,569,463,378,687,766,786,867,1378,1520,1882,1876,1582,1230,1087,1083,1090,865,936,739,593,422,397,381,226,157,78,0 +41,39,48,42,48,43,30,28,20,22,17,15,16,12,7,5,0,278,605,1071,1182,1453,1326,1720,2097,2615,2536,2731,2112,2298,2282,2800,0,7,11,22,24,42,53,103,138,162,206,357,402,278,268,362,366,333,382,445,487,397,322,354,342,305,326,355,386,479,412,516,758,851,911,612,604,497,329,275,160,1252,1981,3248,5523,6379,5166,6304,9109,10836,12885,12417,9646,9241,7285,6066,6991,4897,3622,3996,3235,2721,1636,1751,1308,1792,2391,2595,3637,3594,2869,3284,3761,2573,1877,1491,1276,1962,2284,2384,2156,1466,929,855,729,1243,1399,1141,1353,1213,1129,906,417,309,141,66,0 +33,35,53,40,41,42,28,28,24,19,14,15,15,12,10,6,0,301,752,1051,1287,1913,1844,2566,1912,2544,2356,2645,2610,2740,2866,2838,158,324,438,420,303,424,414,536,573,634,682,886,749,654,616,618,454,496,503,620,792,633,524,644,474,402,485,517,603,638,591,559,1702,1414,1465,902,819,916,920,798,307,1421,2209,3542,4523,4982,3722,5007,7733,7864,9625,11268,8274,7102,6623,6031,5818,5564,4890,4498,3167,2347,1787,1503,1764,1528,2416,2582,3142,2572,2539,3158,3704,2692,1900,1665,1526,2180,2326,2380,1713,1594,1152,1023,701,884,1352,1109,1755,1296,1177,820,394,294,137,68,5 +28,31,41,48,44,34,36,28,19,17,13,14,15,14,8,5,0,373,698,1062,1525,2070,2490,2958,2364,2818,3170,2662,3888,3248,3268,3655,334,525,794,910,565,611,788,867,1269,1268,1155,1214,1167,998,1132,1042,493,799,840,756,938,762,762,947,493,532,562,786,862,933,806,727,2618,2419,1980,1159,1403,1125,1330,1483,529,1880,3410,4720,3246,3336,3399,3606,5004,6625,6264,8113,9493,6314,5244,6114,5970,6759,6818,5169,2903,2282,1412,1201,1671,1852,2086,2806,2393,2973,2820,4110,2994,2900,2022,1571,1667,2042,2616,2039,2086,2092,1654,1440,683,804,920,1003,1594,1486,909,767,324,204,137,64,9 +22,28,36,34,41,30,23,22,15,15,12,13,10,9,7,5,0,399,660,1270,2048,2624,4211,3708,3251,4160,4932,4128,3404,3240,3528,3682,400,706,1204,1248,1090,1217,1453,1562,1897,2208,1643,1672,1328,1890,1705,1978,770,851,863,1084,1222,1106,1238,1130,521,614,624,1030,900,984,727,594,2991,2848,2200,1829,1884,1922,1454,1662,883,2066,2988,4042,3315,2774,2742,2370,4814,6504,5816,7380,6910,6239,3930,4724,9805,8193,7666,5540,2945,2226,1597,1280,1170,1478,2223,2056,2269,2924,2931,3330,2058,1918,2099,1473,1715,1617,2900,2281,2291,1905,1502,1170,1076,1190,1244,1081,1089,1065,832,663,367,240,140,72,17 +12,22,23,23,24,21,18,17,10,10,11,10,6,6,4,2,0,594,1050,1522,2054,2863,4668,3868,5409,5532,4846,4735,3862,4505,4469,4123,601,1035,1468,1454,1618,2086,2519,2542,2044,2021,2548,2610,1856,2113,2651,3189,897,911,1191,1372,1219,1312,1031,1186,374,839,1024,1295,1314,1492,1216,1019,4494,3442,3562,2468,1894,2006,2629,2220,1363,2190,2702,3109,3145,3092,3156,2136,4877,5188,5058,6420,6372,5747,5599,3793,11523,10765,7906,5528,3029,2694,1648,799,1194,1842,2212,2013,2180,1838,2126,2814,940,839,1032,1597,1680,1260,1326,1341,2963,2664,2601,1816,1113,1188,953,1282,988,1111,1000,856,444,310,300,192,23 +9,14,20,24,24,18,17,16,8,10,9,8,6,7,5,2,0,596,1071,1452,2697,3182,4567,3824,4139,3958,4447,3474,2683,4140,4780,4352,503,954,1867,1946,2117,2571,2350,2849,2693,3016,3481,3091,3031,3281,3922,4379,1339,1678,1388,1432,1980,1745,1484,1490,689,1354,1339,1933,1110,1238,1065,860,3502,3133,4165,3290,2303,3808,4550,3844,3145,2848,4219,4108,5442,4168,3236,2703,3050,3731,4384,5666,5729,5622,4680,3952,10054,10092,9062,6744,4223,3539,2150,1614,746,1092,1910,1904,1695,1642,1791,2101,652,969,1301,1613,1140,927,1304,1100,2808,2461,3327,2428,1376,1391,1546,1498,1002,1005,744,696,432,322,269,145,30 +6,10,13,18,17,15,11,8,5,7,7,7,4,5,3,2,0,697,1168,1826,3208,3459,3020,3381,3399,3102,3116,3098,2646,3512,4211,3882,648,1355,1790,2082,2075,2135,3236,3505,3769,3258,3834,3442,4333,5467,6054,5722,2236,1846,1774,1699,2686,1950,2130,1748,1168,1535,2304,2638,1425,1356,1112,1046,3636,3160,3869,3356,3744,4985,6594,6552,4739,4962,4626,3747,6336,4852,3138,2490,2499,2838,3122,4971,4799,4368,4304,4617,5997,6986,7648,6645,6982,4708,3338,1999,546,908,1224,1250,1211,1442,1206,1533,575,766,1160,1500,696,836,854,660,1938,2416,3086,2608,2048,2004,1748,1591,1372,990,794,834,496,395,272,132,32 +4,6,7,10,8,9,7,5,2,5,5,5,2,2,2,1,0,623,852,2181,2534,3250,4396,3531,4080,3178,2299,2405,2137,3214,3431,4648,1102,1366,1481,2251,1759,2838,3372,3299,4849,4370,3879,3930,4862,5352,4671,6312,2960,2626,2659,2389,3020,2235,2959,3000,2230,2841,2454,2542,2451,2172,1911,1118,5578,4168,5079,4402,3169,5296,6027,6594,6609,6644,7122,6337,7014,4262,2779,1589,1040,1965,3372,3975,3730,4797,4676,4992,8560,9282,11225,6873,8810,4776,2988,1870,380,700,1044,1012,1062,1178,1094,1228,849,816,1194,1117,624,680,474,433,2460,2914,3690,3500,3134,2714,3066,2364,1456,1407,1231,906,583,348,270,133,35 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,707,934,1136,1384,2044,3728,4995,3934,4426,4102,4439,5422,6795,5362,1548,1988,2547,2784,3407,4210,5592,5653,4980,7057,10152,10058,10568,8668,9227,8728,4383,4847,3789,5211,5562,5214,5688,3842,3057,3194,2938,2488,2096,2120,1825,1204,5747,6870,6643,6222,4058,5836,6007,5984,8932,6996,5525,4163,4003,3431,2709,1109,0,790,1679,1862,2876,4560,6721,8854,8300,9835,9908,9716,8012,5217,3050,1950,394,460,402,610,757,654,709,869,858,775,635,352,180,114,74,34,2577,2426,3123,3717,3119,2754,2215,1674,1771,1382,1015,691,194,148,127,78,30 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,670,823,847,1445,2456,3607,5649,3612,3999,4070,3448,4884,6915,5512,1688,2012,2954,3296,3559,4055,3825,4496,3819,5462,11080,9304,9499,6587,6452,6906,6071,6139,4931,5836,4271,4620,4611,3282,2188,2650,2887,2436,1878,1480,1256,917,5772,5666,5428,4247,4010,5010,5529,7480,11793,10042,7539,6586,4226,3462,2842,1906,780,1590,2120,2802,4117,5384,7517,9616,12257,10588,8846,9824,8876,6271,4078,2259,370,374,392,542,462,526,531,684,602,614,649,378,232,180,106,56,2805,2547,2814,2687,3282,2740,2354,1926,1663,1214,866,624,230,186,124,88,38 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,558,676,856,1775,2516,4172,4974,3438,3462,3552,3807,4396,6052,6042,2442,3036,2899,2971,3160,3254,3210,3345,3653,6036,8392,5561,6014,5190,5336,5228,6046,5424,5340,5899,4560,4404,3843,2498,2087,1853,1980,1997,1894,1315,1058,792,4067,4724,4254,4174,4068,4441,4780,7946,11596,9583,9302,7872,3362,3911,4076,3177,1481,2263,3006,3242,4912,7615,8161,11915,14709,12727,11398,9968,10052,8298,5234,2832,323,377,388,492,363,422,560,504,636,702,603,411,304,276,166,115,2792,1928,1758,1875,2467,2763,2511,2218,1191,889,711,447,260,211,147,97,46 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,492,596,789,1182,1694,3042,3296,2640,3088,4190,4474,4743,4331,4526,2404,2778,2098,2860,2536,2252,2849,3272,3726,4871,7048,6906,6408,6526,6201,7534,5184,4566,3912,4416,4646,3552,3252,2150,1146,1266,1266,1537,1596,1192,840,580,3394,3421,3419,2749,3993,4702,6904,7876,11654,9536,9676,8772,5967,5138,5408,4182,2975,2822,2626,3992,5724,6734,6810,10507,13145,13416,11072,8962,8625,6360,5315,2832,196,264,320,377,289,440,466,558,628,580,460,354,284,204,168,95,2837,1732,1341,1718,2306,2285,2047,1960,816,636,500,336,256,178,104,80,51 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,509,568,735,860,1291,1785,2976,3858,4918,5236,5096,6520,5883,4373,2018,1655,1430,2174,2674,2896,2492,3390,3423,4893,5059,5090,7280,9558,8680,7958,4698,4520,3025,3957,4124,2964,2493,1587,358,506,678,814,976,880,498,316,1729,2406,2974,2864,3910,4665,5843,9834,15647,12326,10347,7602,6610,6505,5708,5420,3977,4273,5690,6861,6332,5485,6759,11743,13963,11303,12048,11376,7496,4690,3839,2634,121,180,304,355,325,371,437,510,488,503,414,358,271,213,122,84,2236,1816,1814,1657,1538,1905,1694,1370,245,182,171,205,220,193,147,95,42 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,455,498,908,1020,1560,1896,2316,3244,4024,5220,5362,4914,4708,3804,2066,2058,1390,1510,1715,1885,1794,2622,2522,3524,4500,4906,5520,7598,6605,6624,3680,3888,2690,2579,2985,2151,2338,1484,224,359,437,602,703,606,389,238,1886,2550,3360,3748,3464,5630,6111,11817,15528,12960,9365,7984,5878,5384,5778,5396,5757,6403,7439,6547,5782,6286,8165,10130,12970,12621,12238,9508,5357,4120,2826,2194,69,156,218,232,294,338,360,396,440,396,263,267,287,194,141,111,1317,1218,1141,1178,1274,1367,1508,996,298,188,194,222,171,156,129,89,64 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,360,418,811,1098,1450,2161,1990,2527,3492,3138,3849,3245,3442,2961,1558,1619,1624,1592,1064,1519,1634,2399,1611,2894,3384,4774,4756,6393,6573,5632,4103,3155,2729,2482,2284,2176,1732,998,143,228,293,448,557,450,264,186,2956,2662,3421,4034,3751,5206,9209,13900,12988,9329,9865,7186,3547,4300,5576,5251,8151,9019,8477,6791,4473,6080,7110,9642,13721,15022,11896,8303,5533,4253,2936,1527,48,96,152,154,215,276,308,373,318,295,214,192,218,188,156,122,837,940,764,789,692,728,862,663,250,191,188,200,131,112,124,95,68 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,272,430,739,797,990,1718,1836,2055,2323,2801,2842,2373,2872,2662,2445,2147,2003,1384,626,1054,1212,1699,1388,2125,2793,3392,5041,5129,4183,5261,4891,3756,2358,2343,2371,1870,1714,982,84,121,167,224,278,189,120,86,3434,3850,4238,3784,3010,4294,6622,11959,15693,12780,10788,6894,3544,4476,6064,6318,7774,8368,9412,8385,4047,5364,6613,7462,11867,11162,7765,6148,3630,2502,2121,1231,25,66,105,113,140,192,245,246,305,220,207,153,200,184,175,132,416,548,406,532,476,552,627,558,318,233,134,140,107,98,110,86,88 +0,116,261,317,450,682,895,998,875,1590,1899,2097,2948,3085,4420,4526,3685,3019,3606,2942,1988,1601,1320,788,0,638,1184,1410,2133,2067,2198,2263,2814,2702,1996,2609,2417,1790,1683,954,0,174,381,629,1157,1898,2180,3517,5869,4059,3380,3235,4578,4013,4291,4918,6032,3985,2957,1920,1043,748,727,329,4625,3083,2643,3428,3453,3827,5719,5676,8245,9591,14768,16092,13422,13757,10716,9717,7752,8614,11411,8998,9503,7742,8101,9508,9234,7012,7232,4601,1299,1109,888,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,48,68,73,69,80,106,126 +0,291,604,1195,1731,2548,2697,3309,2194,2538,2286,2866,3407,3900,5184,4964,3769,3510,2357,2459,1614,1176,1014,499,0,370,976,1106,1632,2361,1795,1894,3338,3134,2446,3336,2742,2810,2360,2013,980,992,1243,1476,1895,2178,2123,3166,4687,4394,5320,4803,4822,5117,4564,4372,4625,3735,2978,2138,1378,1098,814,400,5426,4224,3006,3950,3538,4758,5702,7204,7184,8782,13100,11630,10079,9230,8748,8044,9347,10594,12315,8796,11294,7967,8380,8876,10052,9298,7619,5606,1327,1040,867,498,0,7,13,18,20,26,26,32,7,62,106,153,209,208,186,118,511,450,407,332,288,237,218,121,33,55,54,83,58,76,62,73,106 +0,476,984,2211,3759,3823,4472,6302,3610,3512,3316,3140,4399,4920,5580,5763,3028,2333,2143,1569,1137,929,654,272,0,239,511,726,1843,1646,1860,1777,3721,3011,3230,4410,3219,3021,3852,3264,1645,2107,2086,2021,2090,2138,2547,4322,5033,6257,5634,5941,5527,5750,4410,3962,3781,3546,2660,2266,1461,1381,1147,515,6181,4736,4740,4981,4297,5516,4962,6494,7315,10978,13782,9591,6385,6860,8080,7406,12581,9282,9398,9321,10842,9752,7414,8037,11312,7357,6840,5403,1410,1590,1254,582,0,13,22,29,36,43,56,64,13,108,201,340,452,413,310,231,1213,876,748,671,710,450,386,277,73,90,82,82,67,58,50,68,90 +0,1074,2166,3530,4957,5726,7322,7554,5761,5456,3470,4102,3886,5232,6703,6458,2370,1640,2104,1743,1208,853,538,248,0,198,421,761,1403,1180,1491,1198,4664,4085,3992,5024,5277,5163,4249,4724,1905,2401,2527,2888,3630,3228,2143,3265,5341,6834,7645,7042,7987,7578,6156,6227,3064,2510,2429,2558,1673,1368,1176,646,5486,5836,6118,6610,4182,5138,4700,5628,8470,10718,12160,9638,5967,6642,6979,6996,10326,9272,11636,8682,9845,7033,7231,6968,8476,7952,5147,3934,2232,1802,1550,615,0,16,35,52,62,50,68,94,18,146,299,544,684,654,628,446,1480,930,969,896,975,810,505,326,126,122,105,94,89,75,68,62,67 +0,1286,2836,5394,7114,7048,6471,7346,9677,10258,8786,6289,4142,8004,9457,11575,1722,1847,1385,1481,1102,779,669,351,0,182,365,540,590,739,832,703,4416,3546,4294,5777,6113,6015,4869,4924,2423,3032,4262,5803,5510,3699,3288,2266,7714,8795,7818,7726,9646,7631,8276,8410,2203,1834,1631,2221,2527,1587,1122,493,7125,5888,7278,7550,5642,5985,6826,6539,6850,9764,9550,9081,7542,9473,9080,8781,12858,10539,13350,12578,9329,7239,3803,3691,9867,10387,7531,4928,2315,1922,1409,741,0,18,34,60,80,84,116,161,24,292,557,619,834,779,657,658,1937,1374,1113,976,1221,1069,677,370,183,196,182,142,124,104,90,77,43 +0,1806,3622,5903,10167,10500,6411,8952,7944,10178,7962,8665,7292,8407,11341,10960,1266,1330,1004,852,860,626,572,263,0,120,267,352,392,524,691,601,5168,5257,5658,7179,9671,7582,5668,4580,4146,4840,5327,6844,5610,4224,4208,5368,7251,8984,9740,11170,6906,8732,7783,5710,2976,2202,1965,2776,3310,1740,1188,651,5772,5940,7291,5786,5238,4532,5526,5999,5470,7692,7049,6736,6352,8283,9342,9356,13630,11344,13735,10938,7698,7314,6327,5880,9506,8542,7091,4696,1499,1462,945,542,0,29,46,103,101,162,187,174,61,334,492,750,1280,1258,1353,1026,2168,2191,1650,1333,1630,1124,631,453,362,332,302,192,182,157,120,94,68 +0,1516,3760,6014,10074,9941,9338,10699,8388,7166,9368,11918,8461,10152,9576,8185,999,976,720,480,693,528,391,233,0,73,148,214,291,352,406,451,6294,6570,6483,8990,11838,10236,7676,5418,5318,6702,7536,8022,5924,4784,5855,6393,9524,8862,11957,9648,7154,6964,8812,6085,2901,2690,3036,2707,3176,2094,1434,850,5214,5279,6214,4522,4763,4391,5439,6630,5210,5457,6239,3739,4374,5346,8380,10955,10986,11673,11992,11797,9107,9061,7144,7324,8239,8356,6138,3101,1332,930,802,343,0,33,72,106,158,214,226,200,108,264,442,755,1440,1388,1676,1746,3284,2845,2508,1920,2260,1407,852,717,580,497,392,323,213,184,204,151,114 +0,1640,3751,6105,9238,8798,8224,8734,11050,7820,11994,13434,12825,15172,15401,12548,478,456,386,230,331,250,161,100,0,40,65,105,163,200,164,207,8098,8338,9082,11791,15636,10902,8923,8370,7895,9890,12559,10056,9612,8825,9906,8224,8332,10552,10933,13266,8561,8424,8578,7122,4576,3878,3591,3870,3630,2682,1279,771,4718,5612,4834,4178,4402,4928,5058,5307,3933,4517,3877,3234,3316,4918,7565,8618,8696,9860,8810,10822,10480,7896,6423,6104,7054,6007,5920,3634,1588,1000,1022,489,0,54,83,150,187,201,256,235,192,437,514,958,1309,1490,1504,1722,4035,2942,2332,1901,1976,1844,1580,1111,670,615,532,416,260,289,257,196,149 +0,3256,6260,6599,9768,11021,12085,11466,11156,12083,18326,17080,23050,24425,19852,15576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10965,9155,10008,6641,4684,5036,4393,6660,9451,14505,17460,19095,18058,18133,14410,14301,9966,9531,5925,7204,8056,8206,6763,5508,6214,5270,4832,3567,1719,976,702,383,4547,4660,3919,6408,7118,5368,5005,5128,4518,4017,4071,3433,3680,6897,7938,9215,9968,7684,8111,6966,4868,6155,6783,5110,5337,3756,2380,2250,2436,1922,779,376,0,36,64,142,200,210,175,178,222,358,552,670,769,897,1453,1684,3489,3187,2020,2391,2038,2012,1539,1306,746,446,354,380,421,417,366,316,168 +0,2980,6315,6998,9333,10246,9369,7998,12656,12938,12847,15420,23418,19779,18350,15362,486,580,552,759,649,484,277,148,0,70,109,140,294,452,761,1162,9932,10312,9819,9657,7235,7337,11512,12516,9384,12921,15687,17920,19456,17202,14404,11940,7493,6966,5922,6952,7778,5398,6743,5464,6625,6066,5001,3324,1444,1207,985,742,3513,3496,3626,6107,5484,4204,3724,3993,2634,2798,2981,3006,2638,5271,6501,8218,10457,8451,6642,6796,5448,4864,6328,5448,3706,2776,1660,1834,1947,1198,689,270,327,360,389,529,498,372,242,223,516,491,627,758,1340,1112,1584,1632,3076,2657,2872,2815,3290,2886,2340,1370,582,584,452,542,373,408,449,362,209 +0,2961,5592,6580,9159,7674,6882,7908,15945,15972,10821,13732,17225,17969,19528,16569,1185,1265,1126,1268,1347,926,673,279,0,113,229,328,500,879,1562,2207,11694,12148,11721,14487,10614,15672,15912,15921,11066,12232,14869,20020,15632,16534,11984,9548,6581,5788,6756,5987,5474,4541,4868,6088,6624,4746,4916,2734,1685,1298,1210,968,2191,3048,3164,4557,3125,3126,2692,4023,1823,2208,3080,4025,2557,3727,6030,5933,8825,9952,8485,5687,4497,4928,5102,3699,2577,2115,1296,1371,895,579,474,284,669,637,818,772,801,692,380,318,699,788,817,908,1517,2016,1847,2012,2521,2960,3304,3257,3867,3623,2442,1601,619,565,663,561,450,579,522,404,321 +0,2260,4149,4772,7789,5676,5162,6372,16590,12238,12320,12356,11073,13326,13158,16564,1803,1502,1659,1598,1856,1198,918,466,0,206,485,562,778,1084,2138,2342,13384,12553,11887,16237,12170,15930,24225,21502,10758,11445,13383,16906,13464,12844,8448,6296,8574,6774,7272,8803,7318,6497,4898,5251,5721,5050,5278,3914,2439,2186,1319,1209,2396,3012,2914,3758,3750,2923,3085,2843,1677,1880,2524,3346,2247,3496,4446,7554,5553,6877,5604,5216,4270,5072,4818,3275,1836,1450,872,877,591,442,340,149,1405,1571,1603,1306,1146,820,423,334,990,1050,1069,1166,1809,1955,1662,2361,3154,3044,3496,3554,4815,3386,2573,1584,792,914,743,849,612,558,644,472,421 +0,866,1725,3156,4130,5317,7237,6160,12960,15431,13558,12978,10446,13550,18969,19057,2917,2148,2386,2454,2257,1733,941,520,0,218,484,782,986,1328,1933,2849,13966,17104,21791,22164,18629,28355,29378,24853,9748,9966,12257,12099,12954,9208,6909,4594,9464,11671,12298,11166,9883,7509,7035,6426,4738,5897,5209,3747,3124,2762,3019,2171,2023,2202,2976,3350,3158,2388,2805,2626,1246,1638,2391,2004,2510,3083,3383,5309,4087,5560,5256,4505,3642,2992,3254,2756,1040,1026,746,558,274,190,132,75,1884,1768,1612,1353,1196,804,725,518,1475,1878,1800,1882,1594,1677,1808,2652,4195,4462,3306,3720,4224,4004,2870,1305,736,768,760,947,911,810,686,532,488 +0,902,2290,3036,3584,4754,6292,5960,11695,13339,10225,11130,8832,13907,16922,15335,4338,3912,3316,3000,3290,2499,2057,933,0,634,1183,1666,1536,2178,2689,3916,14975,15613,13342,16126,14255,18536,19790,24112,15016,14108,8513,9428,7886,6833,6238,4052,8744,11433,9567,9970,9146,7553,6629,5751,4122,3862,3316,3138,3304,3042,3310,2876,1490,2078,2620,2798,1798,1641,2240,2132,911,1376,1937,2278,2079,2608,3228,4787,3782,4078,3758,3128,2535,2726,2067,1904,853,696,488,310,214,148,81,40,1910,1846,2080,1725,914,914,800,742,1901,1620,1418,1741,1406,1684,2036,2516,2842,3726,3674,4310,3252,3014,2392,1458,708,894,1161,914,1043,742,646,676,562 +0,1231,2358,3724,3176,4183,4802,4701,7278,8275,9609,10943,4389,9030,14441,15912,6478,6021,4324,4104,5348,3974,2792,1167,0,845,1648,2062,2328,2888,4455,3779,12607,12678,11079,8369,15340,15676,19166,17386,18171,11333,8736,8662,5670,5488,4034,4037,9113,8291,11040,9474,7513,5110,4933,4423,2199,2201,2432,2820,3716,3790,3218,2434,1253,1375,1840,2040,1183,1078,1240,1102,442,1015,1336,1679,1181,1356,2060,3381,2816,2432,1954,1862,2071,1602,1648,1827,452,402,284,233,186,144,57,24,1572,1610,1931,1863,905,866,1018,1037,1976,1380,1083,1366,1440,2085,2209,2745,2686,3998,4048,5139,3720,2770,1646,1558,880,955,1371,1106,856,790,584,540,556 +0,1037,1930,2996,2600,3436,4523,4440,5826,7030,7543,8123,2930,7059,10448,11078,8995,6360,6138,5025,6106,3489,2787,1408,0,1057,2081,2576,2835,5287,6630,6198,11028,10424,7012,7236,11094,11853,14148,19089,18138,14964,11085,8099,4824,5390,4898,7292,12051,10021,8167,6641,6496,5205,3786,3285,1736,1819,2226,2828,2758,3620,3913,2694,681,837,772,841,632,534,582,570,207,482,774,1000,648,737,1036,1640,1642,1264,970,973,1143,770,967,887,261,176,166,112,78,72,32,16,1959,1674,2111,1484,1294,1100,1092,1070,1628,1169,1234,1232,1606,1540,2288,2222,2942,3300,3625,4036,3174,3334,1886,1738,1280,1642,1244,978,1163,852,932,675,605 +0,512,963,1020,1542,1761,2660,5156,6537,5926,5827,7863,9725,8499,7827,8978,9690,5739,4123,3792,3340,3774,4400,3821,3267,2574,1794,1627,2199,3390,5357,6418,6516,9205,12142,18789,19231,16438,20768,15706,15838,18722,15901,20408,18604,14541,13965,11326,12938,10773,7851,7594,5244,3688,3961,3934,2978,3119,3564,4574,4813,4070,4610,4246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,2119,1502,2186,2217,2111,1994,2759,3434,3816,3970,3270,3065,2386,2809,3273,2838,2856,1982,1337,970,727,321,176,0,16,35,47,77,160,297,460,473 +0,524,794,1226,1249,2368,3706,5250,5076,4196,4870,6760,7166,7454,7115,7272,9492,5832,3498,3424,2457,3256,4409,3423,2912,2226,1527,1577,2328,3060,3744,4235,7068,6958,9970,12752,20963,20048,15946,19362,16740,15262,12845,13224,15553,16320,13476,13148,12246,11626,8372,7254,6811,5622,5118,3830,5043,4238,5199,5342,4269,4462,6226,5466,466,398,382,521,720,519,444,636,1107,924,707,789,820,703,1031,766,267,302,380,375,612,526,391,269,44,120,139,187,422,254,163,105,2828,2290,2056,1896,2380,2290,2592,3220,2904,3335,3176,3148,2746,2508,2943,2850,2373,2338,2313,1510,1262,1018,435,265,10,32,37,70,84,166,246,454,470 +0,419,902,1472,1186,3100,4490,5265,3064,3430,4492,5894,7418,5408,4242,4475,6845,5296,3674,3733,2272,2962,3062,2508,2174,1495,1453,1396,1766,2218,2500,3552,5443,7156,7162,9344,21858,23356,18557,17948,13372,12884,11911,15311,16054,14664,18376,20880,14206,13493,10626,8509,6569,7442,6845,6374,7111,7332,5554,5404,5675,5174,6684,5557,816,790,750,1155,1201,1066,904,1526,2031,1625,1702,1496,1716,1453,1812,1182,551,682,695,972,1056,1044,749,544,94,222,342,318,725,458,329,202,2225,2048,2018,1600,2823,2703,2666,2744,2063,2256,1780,2494,3015,3356,2660,2085,2650,2256,2490,2350,1470,1223,617,286,15,35,54,78,122,211,229,297,424 +0,339,857,1286,1386,2964,3465,4674,2205,2691,4820,5778,6035,5806,4151,4807,4393,3486,2295,2639,1530,2272,2865,2182,1852,1336,1380,1146,1348,1343,1323,2105,2746,5252,6718,9282,14474,18745,15886,13487,9411,9234,9728,11303,11658,12902,19729,18292,18077,15318,11379,7587,5982,6842,6726,5946,9573,8033,9156,7506,5340,5726,4808,5670,1187,1142,880,1596,1646,1794,2100,2331,2976,2782,2084,1846,2773,2308,2227,1521,921,903,1107,1268,1520,1337,832,583,141,282,520,644,747,635,482,326,2227,1962,1908,2070,2412,2751,2332,3537,1268,1160,1424,1813,1793,2126,2488,1760,3967,3650,3385,2159,1684,1130,746,371,26,50,70,98,141,202,202,260,421 +0,333,747,1344,1597,2083,2290,3782,904,1732,2430,5060,6264,7379,6183,6902,2806,3053,2626,2446,1508,1412,1168,1355,1141,909,606,594,868,813,640,729,1382,4305,6147,9514,12708,12980,11367,8688,4676,5536,5779,8552,11742,14784,15052,15153,21841,18004,18298,12442,4992,5270,6083,7175,11618,10092,9643,8109,7524,5300,4717,5098,1311,1659,2236,1834,2318,2060,2061,3238,3535,4111,3676,3743,3011,2678,1495,1316,1022,1287,1346,1774,1819,1262,1082,632,228,452,706,774,1104,734,670,487,1867,1589,1811,1861,1878,2755,2714,2856,711,996,1389,1398,1292,1334,1331,1794,4822,3138,1981,1478,1436,1230,881,426,35,59,73,114,130,230,285,353,347 +0,544,812,1580,1750,2152,2116,4778,989,2134,2396,4040,4508,5560,6216,5496,2026,2190,2516,3002,1356,1568,1190,1564,1564,1492,1108,815,763,709,432,512,1080,3308,4846,7068,11376,12447,8282,8628,7108,8035,7518,8874,10466,12264,15040,13260,22648,16333,19434,14186,7047,6586,7093,8110,11313,11011,11445,8525,7012,6539,5548,5508,1454,1814,1651,2126,2546,2927,2396,3362,3194,4521,3895,4841,4462,3516,2168,2192,1406,1260,1720,1988,2587,2498,1537,1483,887,1025,1361,1232,2215,1644,1348,1258,1752,1224,1479,1668,2143,2579,2109,2512,597,954,1132,1088,1235,970,991,1326,3730,2588,1618,1469,1261,1052,677,380,45,60,82,123,98,160,184,244,281 +0,596,1039,1541,1629,2327,2700,4560,1343,1598,2496,2404,4617,4132,5347,4688,2119,2098,2840,3347,1615,1872,1506,1485,1953,1903,1455,1195,765,480,374,402,497,2527,5052,6382,9432,9012,9008,9703,7309,8440,9646,9741,8621,8409,12228,9871,22275,15791,15616,12736,9095,9732,8309,8188,12754,11498,12170,9132,4332,5110,5538,4563,1152,1536,1632,1869,2139,2368,3075,3500,4028,4800,5142,5816,5963,4821,3506,3004,2194,2125,1888,1658,3614,2974,2466,2393,1484,1788,1902,1895,3144,2269,2069,1654,1773,1540,1187,1446,1949,1781,2304,2950,602,752,1014,1071,897,1083,1141,875,3992,2582,1514,1235,1057,997,612,351,52,62,64,109,87,118,149,151,220 +0,435,789,1253,1861,1890,1669,3014,2192,2112,2376,2280,3204,3410,4777,4246,2420,2750,2981,2630,2498,2026,1541,1552,1708,1494,1586,933,632,426,322,245,256,1708,4026,5157,7777,8959,8058,8877,10197,10486,9268,11212,9202,10173,8846,8670,15296,13267,12699,11152,11485,10810,10355,10960,10974,11659,12937,9974,5807,5652,4781,5257,1502,1670,1694,2236,2449,3348,3974,4195,3829,4963,5378,5794,4837,4848,4877,3733,2915,2895,3963,3226,3285,3432,2612,2006,2171,2534,2952,2683,2981,2442,1748,1886,1407,1124,1352,1526,1960,1678,1729,1664,690,832,948,840,706,690,649,540,3327,2919,2126,1478,1001,784,512,300,62,58,48,74,79,68,78,80,102 +0,507,1169,1865,1938,1968,2807,2193,2440,2343,3058,3017,3973,3606,2542,2614,3471,3200,3265,2984,3199,2898,2518,2094,2162,2089,1536,978,304,218,113,61,0,1226,2299,3747,5810,6007,8917,10266,9940,8616,8059,13685,15810,10955,11081,7902,14209,12292,15595,14018,10829,11277,15009,16268,13081,10678,10264,5546,3551,4581,5207,4119,1568,1961,1790,2378,3446,3720,4564,4815,4154,5168,5389,5284,4311,5040,4812,4073,4044,4054,5782,4795,4665,3187,2584,2763,2244,1921,994,798,527,1189,1611,1394,1035,1180,981,1338,1323,1010,742,600,738,952,862,630,708,821,744,667,4099,5123,5168,5070,3309,2760,2010,866,71,64,69,46,27,20,10,6,0 +0,404,1044,1146,1402,1822,2310,2048,2162,2160,3168,2731,3448,2988,2125,2484,3298,3030,3342,3200,2348,2988,2396,2017,2694,2320,1914,1185,503,394,424,374,56,1048,1814,2549,5650,5541,7260,8708,8776,7428,7242,12641,12336,11642,8954,6073,14570,10680,10064,9972,10679,13128,11398,13478,12354,9314,8261,6314,3215,4380,3721,3887,1073,1733,1830,2514,2952,2918,4015,3642,3758,4595,5249,5546,3885,4618,3993,3284,4127,4140,4627,4258,5964,4708,2994,2440,2798,2414,1568,1232,1581,1912,2516,2248,865,1023,918,996,1310,961,654,801,962,771,999,787,806,828,538,564,3933,4645,4668,4146,2869,2302,1741,818,65,64,63,38,32,28,24,16,10 +0,320,626,956,1252,1393,1276,1119,1975,1717,2247,2414,2070,1702,2069,2494,4030,3041,2699,2384,2527,1986,2048,1908,3617,3015,1914,1344,718,558,666,677,123,652,1127,2053,4976,6156,5304,5701,5920,6606,8566,9433,9689,9407,9743,6376,10227,9462,8899,6806,9843,11813,10530,8014,8860,8052,8304,6498,2318,2484,3202,3466,954,1240,1826,2505,2351,2003,2418,2388,3383,4758,4762,4472,2822,3565,4646,4373,2987,3303,4506,4196,5716,5611,3796,2731,3995,2730,1940,2044,2351,2284,3230,3886,956,1086,894,799,972,899,841,913,1067,892,810,616,737,577,450,511,4508,4340,2882,2746,3043,2078,1242,659,58,42,42,43,27,30,30,22,16 +0,191,324,540,801,940,874,726,1138,1352,1856,2302,1834,2208,2449,2218,2978,2154,2429,2001,1820,1637,1561,1384,3346,2868,1981,1882,1087,973,926,764,245,784,1051,1648,4182,4180,4283,4900,6645,6928,7720,7872,9544,7909,7433,5560,11291,9334,7370,6375,6768,6992,8024,6948,8289,7122,8486,5770,2492,2546,2172,2873,1248,1624,1954,2346,2819,2008,1577,1920,2835,4530,4090,4752,3483,3976,4615,3893,2935,4107,3757,3730,5163,4019,3674,2782,4597,3364,2513,2458,3504,3028,3310,3418,949,878,579,682,806,807,804,869,981,993,916,723,766,562,352,354,3758,3770,2815,2948,2431,1815,856,533,47,42,36,40,38,38,46,30,20 +0,79,171,240,255,292,389,345,850,1138,1114,1414,1936,2000,2554,2445,2436,2580,2754,2241,1937,2010,1567,1432,3783,3397,2448,2425,1884,2184,1817,1157,295,970,1384,2405,3124,3048,3170,4645,7868,7322,10098,9214,7192,6359,3846,2465,9735,6970,5984,4640,3256,3384,3163,4553,6998,7471,5750,4170,3056,3448,3719,3529,1151,1554,2453,2928,2711,2371,1511,1198,3070,3054,3714,4050,4370,3543,3548,4603,2720,2729,3149,3161,3562,2868,1835,2152,5038,4482,2896,3838,3528,2488,2392,3412,766,934,835,756,1004,1054,1259,1328,1040,831,872,856,768,482,427,344,3175,2838,2471,2716,2128,1572,933,510,20,24,25,36,38,41,34,27,28 +0,68,131,198,187,262,326,264,592,738,711,968,1258,1508,1431,1848,1971,1984,2488,2754,1952,1942,1601,1452,4326,3648,2732,2781,1828,1854,1397,1760,830,1316,1599,2119,2682,2275,2770,3768,7943,6152,6646,6424,6799,5507,3581,2486,6209,4990,5406,3410,2305,2433,3224,3618,5266,5693,4015,3483,3040,3074,3722,2794,1229,1798,2446,2293,2374,2370,1682,1178,2608,3478,4791,4382,4150,2930,3542,3700,2098,2936,3481,5108,4349,3185,2763,2556,3754,3658,3139,3538,4330,3544,2876,2844,1229,1082,896,1105,1488,1428,1605,1602,970,794,816,858,973,848,724,718,2776,2376,2180,2163,2034,1167,800,524,45,42,38,42,35,35,35,34,30 +0,47,78,118,178,220,288,298,525,582,534,627,1099,806,744,780,1706,2379,2282,2239,1409,1994,2006,1961,3693,3590,3428,2640,2212,1855,1556,1641,1255,1423,2134,2033,1793,2711,2996,5036,6479,7418,5998,4239,6079,4615,2852,1943,3992,3446,3332,2619,2322,2401,2407,3157,5465,3949,3228,3591,2938,3166,3285,3474,1141,1379,2092,2159,3204,2226,1690,1295,2540,3482,4284,5305,4110,3710,3309,3946,2164,3373,4278,5984,4151,3075,3276,3538,3478,3366,2917,2266,4022,4190,3242,3173,1512,1105,1186,1603,1670,1836,1614,1232,1096,970,924,642,901,792,869,899,2568,2068,1932,1738,1855,1158,706,366,78,70,52,56,40,47,38,40,42 +0,24,41,60,110,148,129,147,292,274,243,354,485,462,488,490,772,1336,1717,2370,1820,2035,2640,2438,3592,3674,3170,3462,2566,2520,2099,2161,1834,2115,2038,2075,1831,2486,2806,4394,5806,5894,4012,3297,5184,3413,2376,1206,2484,2120,1899,1618,1452,1797,1841,2751,3189,3464,2985,3370,2961,2935,2358,2138,1391,1631,1657,2004,2742,2050,1757,1648,2040,3159,4512,4696,3971,4106,2700,3274,2428,3340,4367,4279,4794,4334,3569,4248,4647,3394,2962,3526,5122,3845,2922,2560,1839,1476,1379,1840,1928,1635,2114,1650,855,862,1018,734,1107,970,1145,1112,1906,1482,1337,1226,1508,978,814,396,101,86,82,68,47,74,76,86,72 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,423,696,757,628,777,890,908,662,488,469,323,394,614,780,726,692,584,459,543,351,209,97,0,530,1106,1735,2412,2314,2807,3674,4523,5596,6067,5465,6175,6127,5072,4405,3146,2375,2546,1597,901,1383,1650,1694,1646,2044,2244,2249,1605,1317,1524,869,604,474,273,312,246,172,90,38,0,118,244,512,613,723,1099,1245,1190,1880,2050,1834,1904,2018,1911,1916,1412,1358,1411,1220,1225,744,371,163,0,6,10,20,27,33,46,63,86,98,133,128,131,112,134,109,108,153,150,140,131,121,156,138,103 +4,5,4,5,5,7,6,6,4,5,4,3,2,2,2,1,0,180,332,582,802,700,768,707,778,719,522,443,336,482,832,804,496,495,526,513,446,384,247,198,47,454,944,1186,1770,2097,2560,3896,4165,5373,5550,4736,5320,5614,4575,4094,2386,2550,2228,1380,976,1077,1082,1308,1612,1917,1798,1747,1585,1466,1307,774,800,592,381,294,213,153,81,40,0,187,436,623,772,889,1439,1458,919,1373,1640,1569,1579,1736,1996,1827,1511,1638,1664,1433,1517,972,568,274,10,28,41,52,61,108,124,138,86,110,130,118,120,96,120,98,136,161,156,170,120,137,141,114,86 +6,7,6,7,9,10,10,10,6,7,6,5,3,4,3,2,0,181,307,394,707,598,593,549,426,550,497,513,462,713,810,904,453,376,452,468,420,293,302,288,113,442,830,1122,1884,2031,2394,3083,3268,3570,3638,3802,3860,3604,4640,3776,2437,2282,1920,1077,758,835,944,1135,1113,1426,1572,991,1222,1116,884,606,921,780,559,343,182,134,62,31,0,316,620,985,726,1005,1332,2257,932,959,1356,1784,1454,1478,1650,1868,1801,1953,1510,1279,1486,1040,624,344,15,43,78,104,81,152,213,182,90,88,104,107,93,96,66,70,169,140,166,214,128,120,116,109,71 +8,8,10,11,14,12,13,12,10,12,8,7,5,5,4,2,0,146,269,340,454,458,496,475,444,651,688,812,711,814,759,848,489,476,370,470,516,443,325,308,156,416,734,1036,1130,1823,2036,2692,3353,4262,5370,4913,5088,4192,4068,3182,1730,1564,1368,803,484,528,645,856,778,1179,999,879,974,898,631,600,867,650,444,311,162,112,47,27,0,383,786,1008,987,1399,2037,2447,713,994,1249,1393,1296,1244,1666,1972,1972,1730,1342,1224,973,880,573,294,30,76,100,124,153,206,253,270,84,81,87,101,101,87,60,65,166,152,160,172,123,124,110,78,58 +8,12,11,17,16,13,13,10,9,10,10,10,5,5,3,2,0,104,230,369,408,328,402,310,478,495,530,748,810,917,1061,1102,629,707,803,733,526,621,602,513,162,360,563,736,900,1430,1490,2336,3885,5742,6301,6118,5339,3169,2449,1859,669,560,311,268,206,382,478,604,752,580,622,624,702,756,718,484,772,666,374,284,141,111,92,39,0,230,534,904,1386,1810,2239,2060,830,710,744,1017,1063,2101,2445,2985,2504,2191,1564,1453,943,607,348,245,45,72,109,142,190,193,238,304,73,97,100,104,74,69,59,53,174,165,194,172,160,123,89,62,55 +14,17,24,26,21,22,22,16,14,13,12,12,7,7,5,3,0,95,220,304,278,268,365,290,522,406,384,553,572,854,1146,978,861,756,812,622,523,501,409,380,353,492,700,716,1081,1288,1342,2082,3683,4201,4364,4333,4608,3270,1739,1302,510,430,358,406,232,364,578,626,739,850,888,954,983,894,891,560,569,427,323,256,111,91,84,42,0,251,592,840,1352,1618,2067,2332,1367,1207,902,1016,1084,1825,2474,2694,2302,2004,1685,1274,852,680,461,296,52,68,108,193,229,309,283,430,79,110,107,120,128,112,91,80,186,170,222,202,210,150,143,100,56 +17,24,28,31,26,28,24,17,14,14,10,12,7,7,6,4,0,83,151,226,187,212,256,216,442,421,396,414,465,590,905,1278,922,890,677,573,352,387,396,451,520,524,674,800,962,915,1230,1430,3237,3745,3415,4214,2807,2225,1584,919,346,460,454,411,350,488,505,494,957,1042,977,1041,1151,932,874,631,380,288,234,185,70,56,49,21,0,224,500,608,920,1263,1748,2387,1939,1704,1342,1141,1491,2104,2965,3273,3031,3004,1994,1418,1047,896,470,305,59,81,132,237,292,305,420,462,109,119,138,134,236,194,154,136,191,190,209,219,224,169,178,141,70 +29,29,23,33,34,25,23,20,16,17,15,14,9,10,8,5,0,55,104,134,122,213,245,270,452,388,385,382,298,584,716,1038,883,817,549,513,363,366,341,524,731,693,672,692,735,758,812,747,5831,4658,3550,3576,2451,1858,1009,651,156,357,433,596,542,535,547,678,1325,1450,1485,1245,1090,1084,989,696,354,282,191,152,64,61,58,24,0,237,475,614,1116,1400,2072,2272,1709,2012,2152,1671,1780,2228,2538,3410,2463,2758,2306,1804,1425,854,564,298,63,114,162,248,324,273,312,404,205,226,195,226,264,232,182,160,186,225,226,237,190,177,210,169,86 +35,28,19,15,9,10,12,14,12,10,7,6,3,4,3,2,0,23,51,72,103,162,272,344,368,472,571,772,849,909,1084,926,780,760,536,782,800,874,779,806,798,615,664,653,488,367,340,156,6510,6577,4899,4410,5365,5004,3515,1646,0,200,344,491,588,725,970,1116,1391,1198,1009,673,419,578,602,529,440,343,238,222,228,185,104,56,0,158,341,581,757,1176,1937,1770,2268,3110,4975,4221,5087,4398,5530,4239,2111,1528,1146,1168,1028,778,546,255,72,95,121,199,246,253,261,270,242,164,122,131,109,122,125,163,148,131,121,137,148,129,170,156,131 +53,42,34,28,20,16,20,20,13,13,12,11,8,10,7,5,0,26,48,74,100,188,269,322,299,447,484,510,880,753,1052,990,732,634,610,677,693,678,703,778,663,1016,1358,1194,1553,1416,1298,1174,4308,4644,3643,4780,5487,3584,3155,1523,380,396,360,418,560,642,816,771,1771,1397,1236,866,447,494,555,432,429,313,211,211,192,142,75,44,0,109,280,461,505,904,1310,1580,1766,3262,3918,4502,4221,4516,5358,4686,1760,1288,1438,1325,1146,864,628,332,152,160,112,170,328,344,350,462,289,233,208,177,206,170,186,154,117,104,136,130,91,128,139,123,91 +67,57,45,39,26,23,22,20,15,15,16,12,11,10,8,5,0,27,52,65,123,161,199,252,234,310,372,449,731,605,722,592,539,541,628,728,827,636,594,787,589,1100,1752,2253,2425,2022,2120,1920,3815,4025,3574,5548,4544,3982,2196,1118,636,558,441,462,606,556,735,753,1861,1361,1397,1125,608,495,530,313,349,237,204,159,117,86,63,30,0,124,224,381,356,615,1017,1356,1935,2374,3884,3822,5305,4266,4429,4187,1684,1283,1438,1094,1232,885,600,302,183,190,154,198,375,461,478,596,316,271,262,187,270,262,194,140,74,110,116,142,74,91,128,124,82 +78,72,44,47,39,34,31,23,25,29,24,22,15,14,12,7,0,24,48,69,118,177,176,211,218,245,284,308,524,454,436,466,427,390,509,553,734,586,498,682,762,1146,1684,2877,2961,2652,2728,2268,3524,4056,3379,5402,5390,3620,2490,1272,1134,1047,846,782,591,630,783,699,2221,1635,1320,1017,821,724,600,471,246,194,150,120,91,66,54,24,0,87,148,296,354,538,755,954,2673,2370,2918,3578,4276,3758,4897,3844,1432,1462,1257,1127,863,734,575,306,206,191,212,228,320,459,428,608,612,459,455,308,226,236,188,116,52,80,73,99,70,80,90,94,92 +63,57,35,40,42,31,26,18,32,33,26,27,22,18,15,8,0,27,62,61,87,95,145,176,151,133,167,198,234,266,326,398,190,271,278,325,470,652,786,933,925,1465,2622,3336,3482,3646,4263,3382,2240,2305,3447,4786,5276,4304,2921,1920,1740,1624,1263,1128,783,792,840,591,2067,1480,1132,932,1154,1035,893,670,90,108,110,88,70,57,43,20,0,83,147,198,243,367,405,632,2927,2553,1915,2547,2996,3149,2696,3609,1742,1652,1062,853,846,529,327,227,213,198,243,323,349,606,676,961,778,466,341,354,284,207,107,82,21,32,38,58,86,85,61,81,97 +80,66,60,64,66,48,48,31,38,28,21,23,26,21,17,9,0,22,39,48,58,64,108,100,118,134,180,245,253,285,446,440,153,234,221,348,457,720,655,1014,1907,2570,2779,3693,3254,3248,3515,3987,3344,3654,4607,5060,6642,5926,4224,2616,1963,1652,1367,1011,868,726,716,541,2173,1790,1340,1318,872,954,912,458,79,83,94,88,49,50,35,18,0,141,234,628,674,789,813,947,1996,2592,1970,3008,2779,3458,4010,4775,1869,1542,1039,946,757,606,320,187,239,193,253,232,356,607,518,717,562,437,336,313,359,248,171,94,20,27,28,48,54,65,43,64,61 +76,72,69,88,68,69,60,47,38,34,22,25,23,16,12,7,0,12,20,31,30,48,54,56,66,110,159,225,314,493,508,522,119,193,253,350,403,546,836,924,2484,3224,3780,4239,4579,5369,4389,4340,6074,4941,4955,6102,6025,7073,5813,3943,1887,1741,1035,1078,718,757,775,495,2085,2144,1854,1974,969,681,644,399,63,64,54,43,43,43,28,17,0,202,394,802,1158,1124,1086,1306,1998,2232,2766,3176,3432,4139,5101,4858,1376,1102,887,791,425,386,354,178,298,259,184,157,256,384,590,804,528,482,316,254,388,234,191,105,14,19,18,24,38,41,30,42,45 +89,95,88,96,76,74,67,59,47,46,34,32,26,23,12,8,0,7,10,17,16,26,24,30,32,98,142,234,373,482,600,473,58,154,239,410,584,670,882,1521,2768,4249,4857,6537,7579,7624,5072,6216,5885,5894,5558,7161,7586,6888,6060,4248,3117,1944,1406,1234,811,808,732,468,2187,1727,1449,1354,897,688,441,270,30,34,28,20,20,20,17,10,0,284,617,1038,1153,1558,1528,1398,1744,1995,2970,2910,3336,4361,4184,4898,870,732,555,572,486,454,300,242,210,192,182,184,221,333,451,666,652,593,557,439,499,316,181,86,8,9,9,14,21,21,16,23,22 +77,78,82,72,55,34,22,20,13,13,14,10,7,7,4,2,0,18,36,61,71,136,168,164,188,194,257,304,402,337,356,631,0,0,0,0,0,0,0,0,0,2181,3867,4230,6403,4861,5368,7448,8388,7221,7840,6484,3061,3944,3742,3945,5360,4307,4671,4720,4724,4654,3121,1868,1597,1425,1181,731,466,502,608,487,423,380,296,236,98,81,53,23,0,23,42,55,60,62,65,71,84,1380,2326,2578,3449,3705,3823,4197,350,389,319,380,367,294,328,427,519,544,636,873,1073,1195,1138,899,675,542,451,421,360,487,632,640,569,470,448,482,431,303,302,135,0 +54,60,64,62,47,32,22,17,14,15,17,17,8,8,6,4,0,15,37,56,82,100,118,146,186,191,260,326,334,346,430,707,0,29,71,94,186,158,101,83,296,1762,2541,3261,4490,5012,5522,7528,6888,7178,7350,5396,2055,3006,2760,3598,5568,3963,3819,4283,3643,3568,2417,1612,1642,1334,1131,828,503,658,832,731,590,564,365,322,200,143,91,43,0,19,35,50,65,76,99,114,162,954,1949,2179,3266,3424,3860,3559,340,381,450,466,394,424,305,328,396,480,723,744,782,814,884,672,555,552,454,465,352,466,537,526,500,558,612,522,498,400,326,171,0 +37,50,57,44,34,27,28,16,12,17,15,17,8,8,6,4,0,15,32,50,69,73,82,122,169,175,260,376,361,368,458,830,0,57,128,153,404,293,189,163,541,1264,2122,3476,3301,3313,4832,8886,8293,6663,7615,4844,1990,2526,2814,3013,4794,5292,4202,5633,4143,2717,2270,1420,1764,1215,1047,651,505,823,882,815,721,633,512,408,297,182,140,80,0,22,40,64,92,98,113,142,256,721,1342,1648,2788,2670,3282,3361,444,450,435,553,478,437,300,272,437,466,622,732,590,575,761,670,572,562,489,394,417,523,530,498,501,475,597,630,443,454,318,143,0 +36,40,49,41,36,26,22,16,12,14,15,14,12,10,8,5,0,15,34,40,65,68,49,60,124,220,282,348,367,324,474,668,0,130,281,314,456,348,274,223,694,1330,2006,2378,2780,3562,4129,7334,8351,7396,5984,4470,2198,2210,2205,2244,4074,3554,4074,4422,3444,2781,2496,1396,1795,1274,952,638,457,876,979,720,676,598,470,426,452,252,194,109,0,17,38,54,96,92,126,141,294,716,1042,1663,2010,2476,2304,1958,768,746,551,594,546,582,442,384,428,400,426,450,331,408,466,434,528,483,591,457,478,698,718,724,459,406,448,537,464,340,302,140,0 +28,27,34,28,32,30,29,22,8,12,12,14,12,12,8,5,0,10,21,36,44,36,32,39,96,245,315,288,368,495,501,633,0,111,238,412,646,636,540,468,825,1142,1240,2340,2975,4360,6139,7371,7496,4831,2875,2864,1926,2115,1622,1358,2751,2986,2450,2624,3440,3179,2748,1904,1283,1329,1144,841,404,588,736,726,653,496,371,500,464,343,287,165,0,23,48,60,72,113,139,155,388,759,1430,1392,1691,1426,1603,1027,957,825,496,575,552,423,456,388,397,296,277,248,188,172,131,158,334,401,513,596,662,771,907,801,326,274,284,385,414,341,278,159,0 +25,26,25,26,33,27,26,23,13,16,15,17,15,15,12,7,0,14,27,44,37,38,46,44,115,214,258,270,329,406,439,568,0,166,338,561,715,770,618,654,1094,1354,1165,1926,2480,3140,5023,4878,5506,3716,2709,2067,2126,1768,1420,1492,2761,2437,2048,3073,3000,2714,2125,1338,1227,1296,1296,766,582,852,697,687,769,496,552,508,424,278,270,124,0,36,60,88,145,186,202,256,390,748,1372,1170,1731,1468,1428,1188,1390,1069,739,949,853,772,632,548,450,334,240,202,214,202,180,158,496,586,724,750,1008,891,821,952,614,580,340,458,526,338,300,158,0 +14,19,18,30,30,24,26,24,19,22,17,17,20,15,12,7,0,14,26,43,38,45,54,75,112,171,210,260,260,285,292,341,0,194,419,676,1116,1096,839,988,1438,1288,1642,1974,2335,2165,2614,2608,4110,2424,1914,1417,1791,1569,1578,2316,2801,2776,2309,2805,2714,2157,1754,1009,1390,1256,1256,1189,770,856,866,777,700,597,573,456,417,250,167,79,0,39,88,115,221,263,326,386,337,704,880,836,1656,1599,1772,1250,1427,1166,1093,1221,1259,1186,838,710,468,356,266,172,168,171,210,216,552,582,728,883,1277,1186,1064,885,790,656,510,583,482,416,232,123,0 +8,11,15,22,23,25,22,23,25,27,23,18,20,16,14,8,0,17,36,47,54,48,52,72,113,132,136,152,163,197,239,244,0,268,517,756,1140,981,940,1101,1184,1016,1532,1474,1270,1198,1337,1428,2792,1821,1148,1334,1343,1572,2108,2610,3659,3258,1896,2526,2456,1855,1905,1344,1158,1509,1347,1000,836,922,871,848,773,652,596,506,362,254,188,94,0,62,135,140,294,302,427,442,361,620,842,944,1203,1207,1445,1296,1483,1323,1131,1300,1596,1292,936,700,380,320,177,152,187,192,244,238,640,690,754,1034,1125,1194,943,995,714,620,618,518,373,344,150,91,0 +0,4,6,10,13,23,25,24,30,24,24,22,21,15,10,6,0,14,23,44,56,45,46,55,76,86,70,48,35,46,60,73,0,147,291,378,463,959,1146,1497,1426,1454,1020,671,647,458,208,115,2030,2097,2188,2957,3044,2172,2080,2499,3467,3251,3322,3914,3812,3126,1767,1216,1191,1054,712,591,316,419,617,510,588,491,365,256,135,73,43,26,0,104,225,268,376,357,466,409,496,584,790,728,1005,969,1017,1126,1480,1284,1060,889,1089,878,474,424,312,324,438,441,474,410,512,440,747,710,452,360,352,431,557,578,853,734,567,573,471,356,252,147,0 +36,27,16,17,22,26,32,32,43,38,40,29,21,20,12,8,0,12,20,36,58,48,42,57,76,75,63,46,48,52,70,74,0,169,291,300,475,858,1190,1358,2374,2308,2304,1796,886,710,797,526,1538,1794,1710,1984,3076,2652,1697,2290,3972,3668,3720,3985,3958,2696,1744,1669,1064,878,542,542,364,484,528,564,508,388,420,272,140,95,42,24,0,83,223,252,255,360,458,409,418,490,874,808,900,1066,1283,1150,2123,1626,1298,1113,862,928,712,600,309,336,537,527,672,582,639,552,732,730,386,394,305,388,590,676,818,798,607,622,401,364,284,170,20 +64,52,30,23,31,26,29,34,62,47,46,43,26,25,16,8,0,9,18,37,59,57,53,50,65,70,52,39,44,50,70,78,0,157,262,315,330,811,1038,1279,3273,2842,2863,1929,1488,1441,1120,1097,1334,1470,1349,1493,2426,1836,2028,1649,4167,3298,4048,4092,4198,3410,2272,2060,1170,943,542,484,387,546,559,522,446,392,375,255,145,94,56,28,0,82,146,189,182,241,349,315,383,534,736,938,1150,1366,1270,1115,2548,2270,1446,1462,817,855,870,894,301,396,474,454,709,708,556,437,663,584,452,394,221,416,484,666,1028,737,805,970,480,369,289,163,44 +94,64,60,52,53,46,42,41,64,47,38,36,24,20,15,10,0,12,21,34,60,52,65,58,72,66,50,47,37,59,66,71,0,126,240,302,294,570,649,808,4103,3713,3663,2967,2258,2032,1819,1410,1544,1604,1290,1440,2084,1815,1843,1760,4286,4057,4607,4240,3016,2757,2305,2800,1121,789,623,493,514,514,553,429,343,345,334,258,168,112,83,43,0,44,74,150,129,245,348,290,342,565,784,1144,1488,1120,1256,1434,2102,1926,1859,1488,1234,1276,862,1091,246,330,371,564,820,770,584,558,473,452,316,268,262,320,415,570,824,829,1020,748,626,417,259,166,75 +91,86,54,61,57,59,50,31,77,53,50,46,30,23,19,12,0,14,24,28,40,44,44,42,54,38,31,46,44,52,52,70,0,53,107,144,250,284,344,536,3899,4150,3982,3366,2502,1990,1488,1421,1303,1353,1026,1164,1468,1517,2104,2277,3029,3616,3687,2955,3061,2477,2781,2800,1017,665,532,430,494,493,608,482,341,244,262,177,160,157,108,59,0,20,35,56,90,149,238,301,207,457,722,1158,1374,1249,1524,1704,2269,1424,1221,1200,1593,1140,1011,976,165,422,621,729,830,927,823,668,248,260,296,274,283,367,419,419,816,665,695,838,701,484,400,249,87 +110,88,72,62,60,61,48,44,100,70,41,36,44,30,22,14,0,11,22,27,36,34,36,30,44,36,21,36,35,36,32,49,0,104,220,324,398,770,1018,1750,3248,3802,5005,3764,2878,3288,3704,3357,2192,1918,1014,1208,1194,1650,1770,1750,2308,2556,3144,2834,2866,3032,3141,2498,792,651,393,468,448,393,512,436,337,251,233,151,146,120,67,42,0,18,31,52,70,143,178,278,131,390,555,856,1152,1426,1933,1944,1558,1304,1658,1550,1465,1248,1228,1026,306,492,688,718,795,748,926,754,337,301,243,264,286,383,421,348,827,752,541,683,489,514,552,394,204 +134,94,72,51,44,47,54,36,98,82,48,41,47,43,26,16,0,8,16,18,20,22,19,24,22,20,17,26,23,18,18,27,0,174,330,707,530,1289,2099,2836,3636,4813,4946,5738,3415,4493,4792,4380,2772,2013,1217,1039,1038,1168,1252,1124,1468,1775,2070,1821,3454,2868,2992,2624,687,396,299,264,286,323,282,210,228,148,126,96,104,90,50,30,0,19,33,54,56,118,158,188,115,319,416,932,1162,1370,1698,1603,1405,1585,1584,1648,1575,1185,1152,931,495,478,680,849,772,854,834,668,361,307,297,301,277,251,332,231,691,762,633,556,348,399,523,371,350 +108,88,81,70,40,44,53,56,92,66,56,47,56,40,29,20,0,5,10,12,10,12,10,14,13,12,10,12,12,12,11,12,0,190,371,715,906,1935,2466,3326,5192,5546,5771,5927,3761,4660,6226,6189,4066,3174,2101,1570,1216,1099,1113,789,669,1119,1386,1624,2406,2934,2506,3634,389,232,146,136,132,141,131,103,105,86,54,42,50,42,26,17,0,18,32,40,48,92,89,137,72,266,406,642,742,1174,1384,1464,1242,1410,1699,1700,1433,1439,1323,1132,924,821,870,1020,1042,1266,1070,726,475,360,291,264,202,212,255,234,477,488,485,522,322,440,578,532,446 +110,120,95,75,34,54,87,105,111,74,43,28,13,12,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,13,20,23,23,30,30,29,285,600,807,1311,1212,1090,1505,1861,2092,1656,1576,1028,1488,2651,3654,0,329,547,1029,1604,1248,1106,1661,1956,2238,2600,2216,2637,2524,3017,2430,1953,1695,1218,1303,1974,1618,1683,1347,769,756,994,1020,1410,1844,1930,2032,1509,3004,3945,5539,5728,4998,3955,5612,6135,5175,4287,4110,5323,4255,4750,4158,3536,3181,3732,3002,2563,2494,1993,1297,955,1242,1150,1254,1156,1076,801,663,486 +87,132,91,86,51,89,92,111,130,78,54,30,19,16,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,29,52,45,60,53,46,172,172,205,221,242,372,491,664,302,604,1040,1268,2090,1713,2035,2164,2645,3316,3018,2210,2704,2482,2681,3501,0,261,414,878,1541,1122,757,1438,1697,2124,2567,2067,2358,2170,2190,2206,1690,1390,1180,1170,1559,1674,1896,1014,613,880,1018,1096,1132,1260,1219,1378,1622,2548,3315,4514,3426,4384,3600,4844,5850,5344,5396,4449,5186,4583,5426,4123,3002,2440,2944,3266,2850,2347,1382,1228,960,1085,1104,1165,755,685,754,692,570 +103,98,127,122,74,101,114,117,126,101,63,42,18,17,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,52,92,91,84,108,119,290,368,465,550,574,643,857,1284,614,849,1164,1488,2695,2326,2601,3105,4721,3962,4038,3668,3817,4099,3531,3046,0,256,436,903,1105,1055,703,940,2282,2074,2102,1875,1688,1416,1518,1835,1244,880,946,865,1733,1418,1537,957,698,842,1103,1238,866,987,902,684,2151,2154,2886,3493,2671,2425,3160,4377,4148,6188,6372,5842,6476,4596,4990,3782,2300,2407,3167,2610,2562,1783,1386,1130,1291,1070,1014,1208,562,554,563,560,471 +145,128,146,135,84,106,82,110,86,74,63,42,17,15,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,67,112,149,168,198,166,361,461,700,878,733,1024,1288,1674,669,1094,1560,1879,2862,2703,2624,2578,6280,6223,3693,3598,3968,4050,3009,2882,0,137,263,524,744,847,824,898,2401,2220,1441,1495,1494,1172,1356,1105,669,706,1008,964,1153,1066,1268,816,803,662,786,958,764,665,850,814,2968,2524,1776,2171,1592,2729,2728,4372,6642,6955,7472,6076,6078,5542,4769,4254,1934,2273,2172,2012,1830,1625,1770,1324,1136,1051,673,763,449,452,574,465,407 +146,100,79,107,112,94,83,98,70,40,27,25,15,13,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,105,182,236,242,258,203,539,547,593,812,1084,1732,1941,2416,899,1213,1343,1749,2606,3236,3088,2740,7496,7607,7417,6872,4548,3791,2324,2366,0,98,176,243,392,400,558,875,1916,2197,1812,1565,1336,1279,1197,962,247,500,743,906,996,1198,1045,644,650,459,428,617,730,1002,1010,918,2908,2114,1997,1744,1268,3122,4815,4677,7336,9160,8269,6003,5169,3949,3982,4478,1010,1046,1253,1422,1708,1596,1116,1407,1235,878,770,534,396,275,256,243,277 +148,108,77,98,102,84,86,92,69,54,32,27,12,13,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,154,242,220,258,316,342,589,583,516,756,1025,1572,1748,2120,1878,1726,1322,2302,2491,3050,3680,4392,8579,8268,8440,10282,8577,8527,8519,6141,0,82,148,276,468,517,468,760,1768,1644,1295,1382,1584,1158,936,1050,140,345,580,549,600,790,733,524,830,656,749,951,850,869,812,728,3350,2519,1488,1234,1070,2651,3384,4672,4747,6428,5627,6376,5986,5212,4711,4832,926,983,1113,1251,1886,1686,1398,1118,1604,1080,751,561,493,363,285,240,166 +114,116,103,76,58,81,80,76,61,47,28,28,10,9,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,220,382,264,298,376,560,492,463,466,629,964,1411,2014,1726,2476,2111,1876,1981,2266,3529,3722,4246,7593,9956,10367,12556,14354,11065,11908,9494,0,89,168,213,442,400,361,582,1494,1648,1370,1413,1378,963,1000,850,92,219,277,437,347,353,424,416,807,1043,1064,958,875,696,730,723,2737,2004,1464,1098,826,1830,3200,3125,3902,5351,5229,5266,6037,6968,6129,4824,1164,1136,1195,1333,2395,1869,1474,1420,1550,1015,938,678,477,448,333,266,133 +121,110,94,58,44,50,60,60,49,43,26,22,12,11,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,271,397,468,588,654,642,870,757,456,618,894,1126,2226,2159,2126,2224,1748,1738,1504,3050,2952,4590,7433,9483,14023,16535,14573,13906,13172,11828,0,70,142,196,382,318,320,395,837,934,931,888,1124,1105,1008,864,41,116,182,266,228,348,376,352,788,1048,827,852,814,768,1100,959,3394,2118,1508,1112,867,1540,2274,3170,4026,4510,5513,5834,6025,5753,6665,4464,1017,1168,1498,1277,2175,1598,1242,1534,1439,1002,970,756,702,564,432,216,73 +95,100,86,91,76,84,63,53,26,28,24,22,13,10,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,140,243,411,647,716,920,1028,1299,1819,3006,3656,3351,2276,2597,2701,2611,2910,4277,5838,6428,5276,8274,8654,6366,6526,10329,13025,13194,10459,11532,0,22,45,82,136,165,242,270,304,508,815,834,880,807,822,694,0,30,70,96,151,228,326,484,528,531,390,399,398,466,519,594,3129,3108,2065,2604,3201,3951,4341,3986,3144,3242,3137,2406,2340,3129,3658,4819,1264,1531,1685,1622,1154,924,1032,1104,1138,967,854,992,922,604,361,180,0 +84,90,84,78,83,80,62,42,29,22,20,19,15,14,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,286,486,840,1034,1058,1212,899,1469,1438,2434,3619,3084,2481,2542,2328,3632,4053,5824,7561,7168,6066,8243,10032,8686,9560,10300,9564,9760,8535,7280,0,24,36,80,98,166,163,178,287,578,856,912,716,748,648,586,2,27,71,96,113,210,269,318,529,444,344,473,349,466,476,476,2127,2325,2205,2686,2920,3260,3284,2542,3590,3516,2562,2306,2247,2699,2698,3364,1148,1506,1692,1214,819,1062,1161,1260,875,802,806,938,895,735,464,296,78 +89,97,78,82,75,58,61,36,32,29,15,12,14,11,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,460,691,1049,862,1090,1684,534,1199,1557,2052,3466,3447,2286,3415,1776,3932,5478,7800,9950,8266,6414,7363,8171,8940,11368,10380,9289,9148,7550,7081,0,20,34,76,94,128,136,147,338,504,722,734,780,586,504,540,4,35,58,74,96,237,316,343,380,315,329,348,320,295,327,506,1743,1701,2006,1992,2695,2628,2180,1895,3377,3026,2480,2390,1571,2346,2979,2525,1333,1419,1140,945,864,962,1160,1136,500,716,776,663,887,722,689,416,155 +88,102,78,87,60,58,39,27,28,25,15,14,13,11,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,498,928,1004,1341,1882,2281,474,947,1260,1668,2579,2622,1991,2748,1750,5109,7185,8583,11678,11698,7894,8902,7134,9104,9728,11552,11280,10160,7426,6360,0,19,30,67,80,122,140,150,289,427,609,653,800,604,490,513,7,48,83,100,108,219,268,314,217,298,299,322,372,362,363,380,1809,1614,1868,1303,2135,1674,1327,1126,3339,2860,1880,1992,1762,2465,3322,2652,1185,1096,646,560,779,738,989,918,504,576,869,776,820,690,793,532,299 +70,94,86,73,62,49,40,20,23,26,20,13,8,7,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,622,820,1354,1790,2026,2698,640,1184,1621,1626,1723,1402,1611,2473,1747,3302,4088,6866,9793,10070,9308,10237,9130,11020,13364,13598,11537,10949,7474,5660,0,24,40,47,72,99,135,144,204,232,341,488,594,584,536,525,8,50,98,118,138,202,198,290,132,243,310,396,396,286,304,353,1966,1455,1523,1110,896,809,713,537,2792,3012,3073,3108,2384,2498,2316,2949,714,548,572,562,554,771,918,959,415,480,471,746,788,694,789,572,357 +48,66,58,55,42,41,27,19,23,21,15,13,8,7,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,521,719,1226,1506,1851,2812,1278,1863,1965,2494,3006,2256,2022,2852,2149,3198,3356,5947,8960,9390,8381,9379,10736,11946,11620,9660,9779,8684,9314,6876,0,18,36,40,47,75,79,132,156,223,312,451,424,434,331,374,12,44,84,106,114,165,241,306,143,214,325,304,380,318,255,279,2355,1738,1709,1194,855,843,684,488,2366,2243,2130,2322,1564,1410,1764,1916,565,504,480,501,623,731,937,826,478,494,503,672,756,785,741,614,363 +31,43,40,40,37,32,22,12,15,17,12,9,6,6,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,385,578,729,1245,1982,3536,1765,2203,2606,2402,3313,2774,1908,2692,2441,3559,3588,7488,8086,8564,6520,10605,10689,8532,8975,8216,10221,9097,9951,6620,0,12,25,28,40,53,58,70,71,117,182,229,225,281,286,210,12,48,68,89,63,147,209,269,120,143,232,225,279,241,249,223,2436,2414,1628,1177,776,604,668,432,1154,1248,1131,1181,992,888,854,807,439,496,464,430,514,694,800,952,502,570,481,750,831,802,644,454,456 +19,22,18,22,16,16,13,8,10,9,7,6,4,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,302,459,617,1032,1448,2037,1760,2340,3122,2907,3666,2414,1927,2490,2445,3587,4173,7500,7408,8270,6076,9249,11084,8802,8040,7138,8332,9146,7650,6960,0,8,14,15,22,30,35,46,43,78,76,122,137,140,156,104,15,44,48,65,42,96,162,210,108,170,191,181,249,282,351,294,2904,2336,1832,1156,586,632,522,314,616,786,719,634,672,608,722,688,358,404,438,424,523,681,745,872,662,545,638,758,679,672,635,614,573 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,716,1362,1589,1470,1427,2364,2708,2363,1794,1540,1283,1156,773,373,0,570,1110,1642,2014,4646,5769,5193,0,0,1,2,2,2,3,2,2,7,11,14,14,16,20,22,20,25,31,43,42,38,42,48,44,89,108,190,269,320,285,270,2927,3170,2829,2520,3151,2933,4021,4080,3079,2770,2285,1914,996,796,510,410,376,374,478,532,465,531,563,464,378,360,306,286,253,398,443,586,571 +4,5,5,6,7,8,8,7,7,8,7,7,7,6,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,808,1031,1280,1344,1283,1792,2922,2079,1530,1398,1113,1050,569,400,55,690,1196,1776,3098,3566,4572,5220,0,0,2,2,2,5,5,5,4,8,10,14,14,18,18,23,20,24,28,37,47,47,46,51,64,108,109,232,325,316,310,284,2539,2184,2496,2725,3410,2858,3065,3169,2174,2272,2241,1652,1092,976,742,512,322,356,464,365,406,411,438,327,432,428,476,432,302,429,562,664,566 +6,10,9,11,13,15,14,11,11,12,12,11,12,10,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,669,783,930,962,871,1434,2187,1944,1832,1685,1419,825,514,311,112,717,1406,2208,3172,3050,3454,3504,0,1,2,2,3,5,4,5,4,8,10,14,11,17,16,16,17,24,23,23,40,51,53,54,80,116,161,210,283,270,260,216,2095,1950,2048,2406,2969,3598,3350,2673,1935,1894,1748,1419,1224,982,760,380,381,431,428,330,305,281,282,225,441,460,498,460,291,512,592,718,768 +11,14,16,14,17,19,18,18,15,16,19,16,17,14,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,419,672,634,694,790,798,2334,1916,1742,1750,1198,840,666,554,136,1182,2056,2761,2831,3345,4020,3672,0,0,2,2,2,5,5,5,5,8,12,15,12,14,14,14,17,23,23,27,34,44,53,47,89,127,143,222,247,245,197,221,1402,1408,1441,1948,2003,2449,2440,2175,2321,2531,1747,1439,920,802,691,364,359,415,305,232,268,196,261,244,525,484,618,496,383,497,573,774,800 +12,14,11,15,18,20,28,23,17,19,25,26,20,15,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,133,286,430,432,494,458,2457,1792,1182,998,1102,1058,952,576,192,1219,2296,3137,3375,3283,2817,3873,0,0,1,2,2,2,3,2,4,6,6,8,10,12,9,10,16,22,25,30,39,31,32,36,102,98,137,212,228,227,150,194,1210,1486,1944,1630,1899,2001,1654,1740,2758,2428,1886,1698,1030,949,558,328,248,265,199,207,150,174,146,199,466,455,405,382,371,558,626,616,898 +26,27,18,20,22,25,34,30,20,24,29,26,28,23,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,102,212,334,419,442,367,1655,1246,1144,880,905,936,822,577,216,1266,1827,3294,3589,4102,4154,3252,0,0,0,1,2,3,4,4,5,7,7,9,10,12,10,10,17,24,27,35,39,39,35,62,109,123,154,269,210,221,209,226,1409,1712,1980,2021,2349,2086,1723,2268,2344,1600,1951,1575,872,832,590,361,325,266,201,209,202,164,199,240,409,356,378,369,454,528,485,528,598 +33,34,24,23,21,32,33,33,27,30,28,30,39,27,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,68,147,213,294,330,260,1416,944,863,836,1100,805,638,604,264,1312,2086,3205,4296,3816,4778,4337,0,0,0,0,1,2,3,4,3,5,5,7,10,11,8,8,11,19,22,33,33,36,50,91,165,161,168,254,175,215,232,218,1882,1991,2540,2204,2292,2464,1818,1800,1383,1212,1612,1419,1033,766,562,444,319,263,230,242,206,215,186,233,445,486,470,360,384,422,536,531,497 +35,32,21,30,27,38,36,36,42,34,37,34,41,27,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,39,79,117,143,192,137,987,722,621,630,734,664,542,548,306,1301,2072,2680,3433,4435,4324,3920,0,0,0,0,0,1,2,2,2,5,5,7,8,8,7,7,7,12,15,24,26,42,50,106,134,167,204,274,284,257,194,269,2298,2688,2862,2351,2616,2520,2101,1855,1351,1084,1510,1203,716,537,590,465,366,256,270,262,240,226,236,224,366,412,334,370,450,402,646,664,682 +38,29,31,29,37,50,53,42,48,46,42,34,23,18,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,617,676,766,818,786,638,578,442,1471,2960,2906,3904,4378,5080,5302,0,0,0,0,0,0,0,0,1,2,3,2,2,2,3,2,0,20,39,80,118,116,102,102,141,131,101,94,64,83,109,195,2238,2058,2476,2256,1694,1921,1654,1758,1505,1346,814,608,496,553,455,348,347,434,498,464,545,446,419,345,299,516,611,845,856,644,540,698,684 +26,28,30,34,33,46,60,48,36,35,43,36,31,26,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,556,607,785,613,548,536,398,340,1123,2940,2891,3477,4231,4646,4046,0,0,0,0,0,0,0,0,0,2,4,4,2,5,5,5,0,22,31,63,109,110,111,121,120,109,101,64,52,85,102,149,2199,1732,1770,1639,1353,1534,1350,1423,1660,1180,791,624,490,434,371,310,261,358,387,427,443,369,324,306,253,504,708,834,639,508,410,531,426 +16,25,32,39,35,48,48,58,31,39,36,34,39,26,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,630,596,523,614,526,356,341,294,984,2046,2440,4218,4122,3281,2482,0,0,0,0,0,0,0,0,0,2,3,4,3,5,4,5,0,19,32,73,84,106,120,112,74,62,66,52,51,80,88,116,1644,1690,1379,1633,1508,1535,1570,1057,1396,1072,788,630,323,290,276,229,211,264,264,324,264,344,326,341,292,548,629,901,456,357,356,397,376 +17,23,25,36,39,46,43,42,31,42,46,40,33,28,22,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,419,432,416,393,381,226,223,231,1034,1557,2741,3900,3391,3780,3170,0,0,0,0,0,0,0,0,0,1,2,3,2,5,5,5,0,14,32,58,60,95,97,102,61,56,53,39,34,54,56,80,1033,1017,788,1039,1102,1175,1006,812,1250,1078,809,620,287,352,220,232,115,183,245,282,288,262,223,231,275,432,596,675,461,374,418,376,288 +11,19,20,31,38,42,43,38,42,42,28,36,32,22,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,294,298,258,208,146,115,110,184,767,1534,2342,2582,2451,3516,3020,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3,2,0,16,30,40,51,47,47,79,48,42,35,21,14,20,32,58,674,527,504,689,758,768,676,504,1304,1134,811,634,359,324,235,205,51,116,179,190,246,276,258,160,181,199,270,438,593,522,511,400,283 +23,30,35,38,36,43,44,48,53,44,30,34,37,29,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,190,171,188,140,120,82,74,139,646,940,1528,2295,2246,3020,2758,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,12,21,34,48,39,48,54,37,34,29,19,12,18,35,49,583,452,412,565,512,512,420,318,991,910,658,530,253,201,154,145,42,96,173,170,244,192,172,135,164,166,247,407,465,432,396,288,214 +41,49,51,42,32,42,51,56,51,39,42,35,46,43,27,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,111,120,78,136,124,70,47,89,342,646,758,1509,1617,2020,1556,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,0,8,17,25,28,28,37,43,34,23,18,12,6,17,26,32,394,352,342,396,399,338,304,202,683,695,508,313,248,180,126,101,28,67,114,143,177,128,106,95,140,175,192,296,219,207,232,210,122 +47,56,60,54,36,42,49,62,44,46,55,47,40,40,23,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,47,72,49,72,58,38,28,39,180,276,352,755,836,1064,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,8,14,15,16,16,23,16,12,9,8,4,9,12,18,226,199,195,179,188,159,126,110,372,382,303,172,115,100,56,51,17,40,63,77,98,65,65,64,76,116,108,160,114,128,144,118,74 +52,58,54,50,42,47,47,58,48,41,50,37,39,38,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,7,9,17,22,31,30,43,52,46,44,51,54,55,48 diff --git a/worlds/diamond_world3_iso.jpg b/worlds/diamond_world3_iso.jpg new file mode 100644 index 0000000..b642cba --- /dev/null +++ b/worlds/diamond_world3_iso.jpg Binary files differ diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/worlds/diamond_world.csv b/worlds/diamond_world.csv index c978edb..367aea9 100644 --- a/worlds/diamond_world.csv +++ b/worlds/diamond_world.csv @@ -1,1025 +1,1025 @@ -50,25,25,17,25,15,18,15,26,14,15,11,16,10,14,13,23,12,12,8,12,7,9,9,16,9,10,9,15,10,15,15,28,14,14,10,14,9,11,9,16,9,9,7,11,8,11,10,19,10,11,8,13,8,11,10,17,10,12,10,17,11,16,16,31,16,16,11,16,9,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,4,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-18,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-11,-17,-17,-36,-18,-18,-12,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-17,-12,-21,-12,-16,-15,-30,-16,-19,-16,-30,-20,-30,-29,-59,-29,-29,-19,-29,-16,-19,-16,-29,-15,-17,-12,-21,-13,-19,-18,-37,-18,-19,-13,-21,-12,-16,-14,-28,-15,-17,-13,-24,-16,-24,-23,-47,-23,-24,-16,-26,-14,-18,-15,-28,-15,-17,-13,-24,-15,-22,-22,-44,-22,-24,-17,-27,-16,-22,-20,-40,-22,-26,-21,-39,-26,-40,-40,-82,-40,-40,-26,-40,-22,-26,-21,-39,-20,-22,-16,-26,-15,-21,-19,-37,-18,-18,-12,-20,-11,-15,-13,-26,-14,-16,-13,-23,-14,-21,-21,-42,-21,-22,-15,-23,-13,-16,-14,-28,-14,-16,-12,-20,-12,-18,-17,-35,-18,-19,-13,-22,-13,-17,-15,-30,-16,-20,-16,-29,-19,-28,-27,-54,-27,-27,-18,-28,-16,-20,-17,-31,-16,-18,-13,-22,-13,-19,-17,-34,-17,-18,-13,-21,-12,-17,-16,-31,-16,-19,-15,-27,-17,-26,-26,-53,-26,-27,-19,-30,-17,-22,-19,-36,-19,-23,-18,-33,-21,-31,-31,-62,-32,-34,-25,-42,-25,-35,-33,-64,-35,-43,-35,-64,-42,-64,-64,-129,-64,-64,-42,-64,-36,-44,-37,-67,-34,-37,-27,-45,-27,-36,-33,-65,-32,-33,-22,-35,-20,-25,-22,-43,-22,-25,-20,-35,-22,-33,-32,-65,-32,-33,-22,-35,-20,-25,-21,-40,-20,-22,-17,-29,-18,-26,-24,-48,-24,-26,-18,-30,-17,-22,-20,-39,-21,-25,-21,-39,-26,-39,-38,-77,-38,-39,-26,-39,-21,-26,-22,-40,-20,-22,-16,-27,-16,-23,-22,-44,-22,-22,-15,-23,-13,-16,-14,-26,-14,-16,-12,-21,-14,-21,-20,-41,-20,-21,-14,-23,-13,-17,-14,-27,-14,-17,-13,-23,-14,-21,-20,-41,-21,-22,-15,-25,-15,-21,-19,-37,-20,-24,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-24,-20,-38,-19,-21,-15,-26,-15,-21,-19,-38,-19,-19,-13,-22,-13,-17,-16,-31,-16,-19,-15,-27,-17,-25,-24,-49,-24,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-17,-10,-15,-14,-27,-14,-15,-10,-17,-9,-12,-11,-22,-12,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-13,-16,-13,-24,-12,-14,-10,-17,-10,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-8,-9,-7,-13,-8,-13,-13,-27,-13,-13,-9,-15,-8,-10,-8,-15,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,9,8,13,9,14,15,29,15,14,10,14,8,8,7,11,6,7,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,5,4,7,4,4,3,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,5,5,8,5,7,7,12,7,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,13,25,13,14,10,16,10,14,13,24,14,17,15,26,18,26,26,50 -26,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,11/2,10,6,6,9/2,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-9,-15/2,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-41,-20,-20,-25/2,-19,-10,-13,-10,-19,-19/2,-10,-15/2,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-10,-6,-9,-8,-17,-8,-8,-6,-10,-11/2,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-15,-15,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-21,-17,-31,-41/2,-32,-32,-64,-32,-32,-21,-32,-18,-22,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-19/2,-12,-11,-21,-21/2,-12,-19/2,-17,-11,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-19,-19/2,-10,-8,-14,-17/2,-12,-12,-24,-12,-13,-9,-15,-8,-10,-19/2,-19,-10,-12,-10,-19,-12,-19,-37/2,-38,-37/2,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-13/2,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-17,-11,-16,-16,-34,-33/2,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-13,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-9/2,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,7/2,4,4,9,5,4,3,5,3,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25 -26,14,27/2,9,13,8,9,8,13,7,15/2,6,9,6,8,7,11,6,13/2,4,6,4,5,5,9,5,6,5,9,6,9,8,15,8,15/2,6,8,5,6,5,8,5,5,4,7,4,11/2,5,10,6,11/2,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,17/2,6,8,5,11/2,5,8,4,9/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,4,4,5,4,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,4,4,7,4,7/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,1,1,1/2,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-6,-4,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-9,-19/2,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-12,-23/2,-8,-13,-7,-17/2,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-7,-12,-7,-21/2,-10,-20,-10,-25/2,-10,-20,-13,-20,-20,-41,-20,-39/2,-12,-19,-10,-13,-10,-19,-10,-21/2,-8,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-21/2,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-31/2,-15,-31,-16,-17,-12,-21,-12,-35/2,-16,-31,-17,-41/2,-17,-31,-20,-63/2,-32,-65,-32,-32,-21,-32,-18,-43/2,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-10,-25/2,-11,-20,-10,-12,-10,-18,-11,-16,-16,-32,-16,-16,-11,-17,-9,-23/2,-10,-19,-10,-21/2,-8,-15,-9,-25/2,-12,-24,-12,-13,-9,-15,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-12,-37/2,-18,-38,-18,-37/2,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-7,-12,-7,-19/2,-9,-18,-9,-11,-9,-17,-11,-33/2,-16,-35,-17,-33/2,-10,-16,-9,-23/2,-10,-18,-9,-10,-7,-13,-8,-21/2,-10,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,6,4,9/2,4,7,5,15/2,8,15,8,8,6,8,5,5,4,6,4,7/2,3,5,3,7/2,4,6,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,2,2,2,5/2,2,4,3,3,3,5,4,9/2,4,9,5,9/2,3,5,3,4,3,3,2,3,3,4,3,3,3,7,4,9/2,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,11/2,4,5,4,5,4,7,4,9/2,4,7,5,13/2,7,12,7,8,6,9,6,15/2,7,13,8,9,8,13,9,13,13,25 -18,10,10,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,7/2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-7/2,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-9/2,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-9,-9/2,-5,-4,-9,-5,-8,-8,-18,-17/2,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-11/2,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-12,-11,-20,-11,-13,-11,-20,-13,-21,-21,-43,-21,-21,-14,-21,-23/2,-14,-12,-22,-11,-12,-8,-14,-8,-11,-21/2,-21,-10,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-21,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-11/2,-10,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-11/2,-11,-7,-10,-10,-23,-11,-10,-6,-10,-6,-8,-6,-12,-6,-6,-4,-8,-9/2,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-9/2,-7,-7,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,5/2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,4,5/2,3,2,2,2,2,2,3,2,2,2,5,3,3,3,4,5/2,3,3,4,5/2,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,5,8,5,5,4,6,4,5,5,9,11/2,6,11/2,9,6,9,9,17 -26,13,13,9,25/2,7,8,7,13,7,8,6,17/2,5,6,6,11,6,6,5,7,5,6,5,10,6,6,6,19/2,6,9,9,14,8,8,6,17/2,6,7,6,8,5,5,4,7,5,6,5,11,6,6,4,13/2,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,15/2,4,5,4,7,4,4,3,9/2,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,11/2,4,6,5,9,5,5,4,11/2,4,4,3,5,3,4,4,11/2,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,3/2,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-6,-13,-7,-8,-6,-19/2,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-25/2,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-23/2,-7,-11,-11,-20,-10,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-39/2,-13,-20,-20,-41,-20,-20,-13,-39/2,-10,-12,-10,-20,-10,-10,-7,-12,-7,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-23/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-17,-8,-9,-6,-19/2,-6,-8,-7,-14,-7,-8,-7,-27/2,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-14,-14,-10,-31/2,-9,-12,-10,-19,-10,-12,-9,-33/2,-10,-16,-15,-31,-16,-17,-12,-43/2,-13,-18,-17,-31,-17,-20,-17,-63/2,-21,-32,-32,-65,-32,-32,-21,-65/2,-18,-22,-18,-33,-17,-18,-13,-43/2,-13,-18,-17,-32,-16,-16,-11,-17,-9,-12,-11,-20,-10,-12,-10,-18,-11,-17,-17,-32,-16,-16,-10,-33/2,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-12,-10,-39/2,-12,-19,-18,-39,-19,-19,-12,-19,-10,-13,-10,-20,-10,-11,-8,-27/2,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-16,-35,-17,-17,-11,-33/2,-9,-11,-10,-18,-9,-10,-7,-25/2,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-12,-12,-22,-10,-10,-7,-23/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-10,-5,-6,-6,-23/2,-8,-12,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,3,3,3,2,2,2,4,3,4,4,6,4,4,4,7,6,9,9,16,8,8,6,15/2,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,3,3,5,3,4,3,7/2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,5/2,2,2,2,4,3,4,3,5,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,7/2,2,3,3,7,4,5,4,5,3,4,4,5,3,3,3,9/2,3,4,5,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,24 -15,8,8,11/2,8,9/2,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,7/2,6,4,4,4,6,4,6,11/2,8,5,5,4,5,7/2,4,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22,-10,-10,-13/2,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-9,-11/2,-9,-8,-17,-8,-9,-13/2,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-35/2,-18,-23/2,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,7/2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,11/2,8,15/2,14 -18,10,19/2,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,9/2,4,6,4,4,4,7,4,4,4,6,4,13/2,6,10,5,5,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,3,2,3,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-5,-4,-9,-4,-5,-4,-10,-6,-19/2,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-13/2,-4,-6,-3,-9/2,-4,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-7,-6,-13,-6,-13/2,-4,-8,-4,-6,-5,-14,-6,-6,-4,-8,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-9,-9,-6,-10,-6,-15/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-10,-21,-10,-11,-8,-14,-8,-12,-11,-20,-11,-27/2,-11,-21,-14,-21,-21,-43,-21,-43/2,-14,-22,-12,-29/2,-12,-22,-11,-12,-8,-14,-8,-11,-11,-21,-10,-11,-7,-12,-6,-15/2,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-9,-5,-15/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-12,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-15/2,-5,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-3,-8,-4,-5,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-12,-6,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-13/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3,3,2,2,3/2,2,3,2,3,3,4,3,3,3,6,5,7,7,11,6,5,4,5,3,4,4,5,3,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,4,2,5/2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,10,6,17/2,8,16 -15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,11/2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-15/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-4,-4,-3,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-18,-18,-12,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-6,-5,-10,-6,-9,-9,-18,-8,-8,-11/2,-10,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-4,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-9/2,-9,-4,-5,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,7/2,5,4,5,5,8,5,6,5,8,5,7,7,13 -27,14,14,9,12,7,8,7,12,7,7,6,9,5,6,6,12,7,7,5,8,5,6,6,19/2,6,6,6,10,7,9,9,14,7,7,5,7,5,6,6,19/2,5,5,4,6,4,5,4,12,7,7,5,8,5,5,4,15/2,4,5,4,7,5,8,8,16,8,8,6,8,5,5,4,13/2,4,4,3,5,3,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,11/2,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-28,-14,-14,-9,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-20,-10,-11,-8,-14,-8,-11,-10,-21,-11,-14,-11,-20,-13,-20,-20,-38,-18,-18,-12,-18,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-10,-9,-21,-10,-11,-7,-11,-6,-8,-7,-27/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-18,-9,-9,-6,-10,-6,-8,-7,-29/2,-8,-9,-7,-12,-8,-12,-12,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-15,-8,-11,-10,-20,-10,-12,-9,-17,-11,-17,-17,-33,-16,-17,-12,-20,-12,-17,-16,-65/2,-18,-22,-18,-32,-21,-32,-32,-67,-33,-34,-22,-34,-18,-22,-18,-67/2,-16,-17,-12,-20,-12,-17,-16,-30,-15,-15,-10,-17,-10,-13,-11,-43/2,-12,-14,-11,-20,-13,-19,-18,-33,-16,-16,-10,-16,-9,-11,-10,-39/2,-10,-11,-8,-15,-9,-13,-12,-26,-13,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-19,-12,-19,-19,-40,-20,-20,-13,-20,-11,-13,-11,-21,-11,-12,-9,-16,-9,-13,-12,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-8,-15,-10,-15,-15,-34,-16,-16,-10,-16,-9,-11,-9,-17,-9,-10,-7,-13,-8,-12,-11,-20,-10,-10,-7,-11,-6,-9,-8,-15,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-22,-10,-10,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-9,-6,-9,-8,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,2,2,2,2,3,2,3,3,11/2,4,5,5,8,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,2,7/2,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,12,7,7,5,8,5,5,4,15/2,4,5,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 -15,8,8,5,7,4,5,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,6,4,4,5/2,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-11/2,-7,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-11/2,-11,-5,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,7,5,7,7,12 -16,9,9,6,7,4,5,5,8,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,3,3,6,4,4,3,6,4,11/2,6,8,4,9/2,3,5,3,7/2,3,5,3,3,3,4,3,7/2,3,7,4,4,3,5,3,3,3,4,3,3,3,5,4,5,5,9,5,6,4,5,3,4,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,6,4,7/2,2,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-5,-11,-6,-13/2,-4,-8,-5,-9,-9,-18,-9,-19/2,-6,-10,-6,-9,-9,-18,-10,-23/2,-9,-17,-11,-17,-17,-37,-18,-18,-12,-18,-10,-23/2,-10,-17,-8,-17/2,-6,-11,-6,-9,-8,-17,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-7,-6,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-12,-6,-6,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,1,1,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,9/2,5,9,5,11/2,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,7,4,5,4,6,4,7/2,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,7,5,7,7,13 -12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,5,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-13/2,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,10 -18,9,9,6,19/2,6,7,6,10,6,6,4,13/2,4,5,5,8,4,4,4,11/2,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,6,4,6,5,12,7,7,5,13/2,4,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-9,-9,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-13,-6,-7,-4,-15/2,-4,-4,-3,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-19/2,-5,-7,-7,-15,-8,-10,-8,-29/2,-9,-14,-13,-24,-12,-12,-8,-23/2,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-12,-5,-5,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-9,-9,-6,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-21,-10,-11,-8,-13,-8,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-45,-22,-22,-14,-43/2,-12,-14,-12,-20,-10,-11,-8,-25/2,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-13,-8,-12,-11,-20,-10,-10,-7,-12,-6,-8,-7,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-27/2,-8,-13,-13,-26,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-8,-6,-12,-6,-7,-5,-10,-6,-8,-8,-13,-6,-6,-4,-6,-3,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,4,11/2,4,6,6,11,6,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,8,5,5,4,13/2,4,4,4,5,3,4,4,11/2,4,6,5,9,5,6,4,13/2,4,5,5,8,5,5,5,8,6,8,8,15 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9 -15,8,17/2,6,8,5,6,5,8,4,9/2,4,6,4,4,4,7,4,9/2,4,4,3,7/2,3,6,4,9/2,4,5,4,5,6,10,6,11/2,4,5,3,4,4,5,3,7/2,3,4,3,3,3,6,4,7/2,2,3,2,5/2,3,4,3,7/2,3,5,4,9/2,4,10,5,5,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-4,-8,-4,-13/2,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-5,-11,-5,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-7,-11,-11,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-9/2,-2,-5,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-7,-7,-17,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-13/2,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-7,-10,-9,-18,-10,-23/2,-10,-18,-12,-18,-18,-36,-17,-17,-11,-18,-10,-23/2,-9,-17,-8,-9,-6,-11,-6,-19/2,-9,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-10,-10,-16,-8,-8,-5,-10,-5,-13/2,-6,-11,-5,-6,-4,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-10,-6,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-11/2,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-13/2,-6,-11,-5,-6,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,5,4,5,5,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,4,3,7/2,4,7,4,9/2,4,6,3,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,5,7,7,12 -15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,4,5,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-7/2,-7,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-33,-16,-16,-10,-16,-17/2,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-10,-9,-15,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-10,-13/2,-10,-10,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,9/2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11 -28,15,15,11,16,9,11,9,16,8,8,6,8,5,6,6,23/2,7,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,4,15/2,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,17,9,8,6,8,5,5,4,6,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-6,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-25/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-37/2,-9,-10,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-12,-12,-20,-10,-10,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-10,-41/2,-10,-11,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-20,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-10,-10,-41/2,-10,-10,-7,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-11,-9,-16,-10,-16,-16,-65/2,-16,-17,-12,-20,-12,-17,-16,-32,-17,-21,-18,-33,-22,-34,-34,-65,-32,-32,-21,-32,-17,-21,-18,-33,-17,-18,-13,-23,-13,-18,-17,-67/2,-16,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-19,-12,-18,-18,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-12,-26,-13,-14,-10,-17,-9,-12,-11,-22,-12,-15,-12,-22,-14,-22,-21,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-14,-8,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-10,-41/2,-10,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-9,-6,-9,-9,-9,-4,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,9,6,7,7,9,5,4,3,3,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,9,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,6,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,13,8,9,7,11,7,10,10,20 -15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,4,7,4,4,7/2,5,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,3,5/2,4,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-10,-17/2,-16,-11,-17,-17,-32,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-21/2,-18,-9,-9,-6,-9,-9/2,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-5,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-5,-5/2,-4,-5/2,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11 -15,8,17/2,6,8,5,13/2,6,8,5,5,4,5,3,4,4,6,4,9/2,4,6,4,5,4,7,4,9/2,4,5,4,11/2,6,10,5,5,4,6,4,4,3,4,3,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,7/2,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,4,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-6,-17/2,-8,-17,-9,-11,-9,-17,-11,-35/2,-18,-33,-16,-33/2,-10,-16,-8,-10,-8,-16,-8,-9,-7,-11,-6,-19/2,-9,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-7,-5,-9,-5,-13/2,-6,-10,-5,-13/2,-6,-11,-7,-11,-11,-18,-9,-9,-6,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-3,-5,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-5,-9,-5,-6,-5,-9,-4,-5,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,1,3,2,3,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,10,5,5,4,6,4,7/2,3,5,3,3,3,4,3,4,4,7,4,7/2,3,4,3,7/2,4,6,4,4,3,5,3,4,4,5,3,2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,6,6,11 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-15/2,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-4,-7/2,-7,-4,-7,-7,-12,-11/2,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8 -16,8,8,6,19/2,6,6,5,9,5,5,4,6,4,4,4,6,4,4,4,11/2,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,4,3,5,3,2,2,5/2,2,2,3,5,3,4,3,7/2,3,4,4,7,4,4,3,9/2,3,4,3,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,5/2,2,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,1,2,2,2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-23/2,-7,-11,-11,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-7,-7,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-5,-19/2,-6,-10,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-36,-18,-18,-12,-35/2,-10,-12,-10,-18,-9,-10,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-21/2,-6,-7,-6,-11,-5,-6,-5,-19/2,-6,-10,-10,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-12,-19,-9,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-3,-4,-4,-11,-5,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,3/2,1,0,0,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,1,1,6,4,4,2,5/2,2,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,5,4,13/2,5,7,7,12 -10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-4,-7/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,7 -13,7,7,5,7,4,5,4,7,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,3,2,3,2,5,3,5/2,2,3,2,2,2,4,3,3,3,3,2,7/2,4,4,3,3,2,3,2,2,2,1,1,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,3,2,5/2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-8,-5,-15/2,-7,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-15/2,-5,-9,-5,-7,-7,-15,-8,-19/2,-8,-14,-9,-15,-15,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,3,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,7/2,3,4,3,7/2,4,7,4,3,2,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5/2,3,5,3,5/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,3,3,2,2,2,3,2,3,3,4,3,7/2,3,5,4,5,5,8 -12,7,7,5,7,4,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,4,4,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,3/2,2,3/2,2,3/2,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -22,11,11,8,11,7,8,6,10,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,3,2,2,1,1,1,0,0,1/2,1,2,2,3,3,4,4,6,3,3,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,3,2,2,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-8,-6,-12,-8,-12,-12,-29,-14,-14,-9,-14,-8,-10,-8,-29/2,-7,-7,-5,-9,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-6,-11,-7,-12,-12,-23,-12,-13,-9,-16,-9,-13,-12,-51/2,-14,-16,-13,-25,-17,-26,-26,-43,-21,-22,-14,-22,-12,-15,-12,-47/2,-12,-12,-8,-14,-8,-12,-11,-25,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-11,-6,-9,-8,-15,-8,-10,-8,-16,-10,-15,-15,-24,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,1,1,1,2,3,2,3,2,3,2,3,2,3,2,3,2,-1,0,0,1,1,1,2,2,3/2,1,0,0,0,0,0,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,13/2,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,15/2,4,5,4,6,4,6,5,8,5,5,4,5,3,3,3,9/2,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,2,2,2,2,7/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,7,13 -13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-5/2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-12,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,4,5/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,11/2,4,6,4,4,3,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,7/2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,5/2,2,2,2,3/2,2,5,3,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,3/2,2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1/2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,1,1,1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-13/2,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-15,-10,-16,-16,-26,-13,-13,-9,-13,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-6,-9,-9,-13,-6,-6,-4,-7,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,3/2,2,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,3,4,3,7/2,3,5,3,7/2,3,5,4,5,5,10,6,11/2,4,6,4,7/2,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,5,3,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,4,4,8 -12,6,6,9/2,6,4,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-11/2,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-5/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,9/2,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6 -20,11,11,7,10,6,6,5,7,4,4,3,7/2,2,3,3,7,4,5,4,6,4,4,4,6,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,3,4,3,3,3,9/2,4,5,5,4,3,3,2,3,2,2,2,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-14,-11,-41/2,-13,-20,-21,-38,-19,-19,-12,-37/2,-10,-12,-10,-18,-9,-10,-7,-13,-7,-10,-10,-21,-10,-10,-6,-21/2,-6,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-18,-8,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,3,2,2,2,7/2,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,6,6,14,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,4,11/2,4,5,5,10 -13,7,7,5,6,4,4,4,5,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,2,3,2,2,2,3,3,4,7/2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-8,-13,-13,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-4,-8,-5,-8,-8,-11,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 -18,9,9,6,8,5,6,5,7,4,4,3,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,4,9/2,3,5,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,3,3,2,3,3,3,2,5/2,2,4,3,9/2,4,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,3/2,2,1,1,3/2,1,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-17/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-13,-20,-20,-35,-17,-17,-11,-16,-8,-21/2,-9,-17,-8,-9,-7,-12,-7,-19/2,-9,-19,-9,-19/2,-6,-10,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-12,-12,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,4,3,5,3,4,4,7,4,9/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,4,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,3/2,2,2,1,1,1,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,4,3,4,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,2,2,2,2,5/2,3,4,3,7/2,3,5,4,5,5,9 -17,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-8,-17/2,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-35,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-11/2,-11,-6,-8,-6,-12,-8,-12,-12,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,5/2,4,3,3,3,5,4,5,5,8 -33,17,16,11,16,9,10,8,14,8,8,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,7,7,25/2,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,7,5,7,7,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,3,11/2,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-25,-12,-11,-7,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-27,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-13,-7,-9,-8,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-46,-23,-23,-15,-23,-13,-16,-13,-25,-13,-14,-10,-18,-11,-15,-14,-28,-14,-14,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-14,-13,-51/2,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-31,-15,-15,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-9,-7,-13,-9,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-17,-34,-18,-20,-15,-25,-15,-21,-20,-40,-22,-26,-21,-39,-26,-40,-40,-70,-34,-34,-22,-34,-18,-22,-19,-35,-18,-19,-13,-22,-13,-18,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-13,-15,-12,-22,-14,-21,-20,-40,-20,-20,-13,-20,-11,-14,-12,-23,-12,-13,-10,-18,-11,-16,-15,-30,-15,-16,-11,-19,-11,-16,-14,-28,-15,-18,-15,-27,-17,-25,-25,-32,-15,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-10,-8,-16,-11,-17,-17,-36,-17,-17,-11,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,6,6,12,7,8,7,11,8,11,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,31/2,8,8,5,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,5,7,7,14 -17,9,8,6,9,5,6,9/2,8,4,4,7/2,5,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,3/2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-12,-11/2,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-10,-7,-12,-7,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-35,-17,-17,-11,-17,-9,-11,-9,-17,-17/2,-9,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-6,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,6,4,4,4,6,4,6,11/2,12,6,6,4,6,4,4,4,6,7/2,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,7 -16,8,8,6,9,5,11/2,4,8,4,9/2,4,5,4,5,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,5/2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,7/2,4,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3/2,2,1,1,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-5,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-3,-5,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-4,-8,-5,-8,-8,-16,-8,-19/2,-7,-12,-7,-10,-10,-19,-10,-13,-10,-20,-13,-39/2,-20,-36,-17,-17,-11,-17,-9,-23/2,-10,-18,-9,-9,-6,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-15/2,-6,-10,-6,-9,-9,-20,-10,-19/2,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-15/2,-5,-10,-5,-7,-6,-13,-7,-8,-7,-12,-8,-12,-12,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-2,0,1/2,0,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,3,2,3,4,6,4,9/2,4,6,4,11/2,5,12,6,13/2,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,9/2,4,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1,1,6,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,3,3,4,4,7 -11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,4,5/2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-2,-1/2,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,5/2,3,2,2,2,2,2,3,3,4,3,3,5/2,4,3,4,7/2,8,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,5/2,4,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -16,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,2,1,1,0,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-9/2,-2,-4,-5,-14,-7,-7,-4,-13/2,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-4,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-8,-7,-23,-11,-12,-8,-23/2,-6,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-11/2,-3,-4,-4,-6,-3,-3,-2,-11/2,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-7,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-8,-5,-8,-8,-17,-9,-10,-7,-12,-7,-11,-10,-19,-10,-12,-10,-20,-13,-20,-20,-37,-18,-18,-12,-37/2,-10,-12,-10,-18,-9,-9,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-10,-5,-6,-5,-12,-6,-7,-5,-10,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-7,-5,-10,-6,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-14,-7,-9,-7,-25/2,-8,-12,-12,-18,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,-1,-4,-1,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,5,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,3,4,3,4,4,11,6,6,4,11/2,4,4,4,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,2,5/2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,1,3/2,2,2,2,6,4,4,3,3,2,3,3,4,3,3,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,3,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,8 -9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -11,6,6,4,5,3,4,3,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-16,-8,-15/2,-4,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-8,-5,-7,-6,-13,-7,-17/2,-7,-13,-8,-13,-13,-24,-12,-12,-8,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-11/2,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-11/2,-6,-11,-5,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,1,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,5/2,3,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,5,3,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-11,-6,-7,-6,-10,-5,-5,-7/2,-7,-4,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4 -18,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,4,3,4,3,4,4,11/2,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,1,1,1,1,2,2,2,2,7/2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-7,-6,-26,-13,-13,-8,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-9,-6,-10,-10,-15,-7,-7,-4,-7,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-7,-7,-19,-10,-11,-8,-13,-8,-11,-10,-21,-11,-14,-12,-23,-15,-22,-22,-38,-19,-19,-12,-18,-10,-13,-11,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-9,-14,-8,-10,-8,-31/2,-8,-8,-6,-12,-7,-9,-9,-18,-9,-9,-6,-11,-6,-8,-6,-25/2,-6,-8,-7,-13,-8,-13,-13,-21,-10,-9,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-9/2,-5,-7/2,-7,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1/2,0,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3 -11,6,11/2,4,6,4,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-13,-13,-21,-10,-21/2,-6,-10,-5,-7,-6,-12,-6,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-7,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,0,0,1/2,0,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,2,3,2,3,2,2,2,5/2,3,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3 -9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-16,-15/2,-8,-9/2,-7,-7/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-5/2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2 -15,8,7,5,7,4,5,4,6,3,3,3,4,3,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-33/2,-10,-16,-16,-27,-13,-12,-8,-25/2,-7,-9,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-17/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-18,-8,-8,-5,-7,-3,-4,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,1,2,2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,7/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,5/2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -13,7,13/2,5,7,4,5,4,5,3,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-15,-7,-7,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-7,-5,-8,-5,-7,-7,-13,-7,-9,-8,-14,-9,-14,-15,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-15/2,-7,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,6,4,7/2,3,4,2,5/2,2,4,3,7/2,3,5,3,4,4,6,4,7/2,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,5/2,2,4,3,3,3,3,3,4,4,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4 -13,7,6,5,7,4,4,3,5,3,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-11/2,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-13/2,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-7/2,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,3/2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,6,4,4,3,4,5/2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -24,12,12,8,12,7,8,7,11,6,6,4,5,3,4,4,11/2,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,9/2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,1,1,1,1,1,1,2,1,1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-29,-14,-14,-9,-15,-8,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-45/2,-12,-13,-9,-16,-9,-13,-13,-26,-14,-17,-15,-28,-19,-29,-29,-46,-22,-22,-15,-23,-12,-15,-13,-24,-12,-14,-10,-18,-11,-15,-14,-55/2,-13,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-10,-15,-15,-33,-16,-15,-10,-15,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-23,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-16,-30,-14,-14,-8,-12,-6,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,11,6,7,5,8,5,6,6,10,6,6,4,6,4,6,6,21/2,6,6,4,5,3,4,4,7,4,5,4,5,3,4,3,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,17/2,5,5,4,6,4,5,4,6,3,3,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,13,7,7,6,9,5,6,5,9,5,6,4,6,4,4,4,11/2,4,4,3,3,2,2,2,2,2,2,2,4,3,4,4,6 -13,7,7,5,7,4,5,4,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-13/2,-6,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-11/2,-11,-11/2,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -13,7,7,5,7,4,5,4,6,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-3/2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-13/2,-7,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-13/2,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-26,-13,-13,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-6,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,1,1,3/2,1,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,7/2,4,6,3,3,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,2,2,5/2,2,4,3,4,3,6,4,4,3,4,3,7/2,3,3,2,2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,9/2,3,5,3,4,3,5,3,7/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3 -10,5,5,4,5,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1/2,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-5/2,-4,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-9/2,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -16,9,9,6,8,5,5,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,7/2,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-3,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-17,-8,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-8,-31/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-21/2,-6,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-10,-19,-9,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,2,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,1,2,1,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,4,3,4,3,9/2,3,4,4,6,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,9/2,3,4,3,3,2,3,2,7/2,2,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,4,3,9/2,3,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3 -10,11/2,6,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -12,6,13/2,4,6,4,4,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,2,2,3/2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-6,-15/2,-6,-12,-8,-12,-12,-25,-12,-25/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,1,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,7,4,7/2,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-11/2,-7,-6,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -21,11,11,7,10,6,7,5,8,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,9/2,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,0,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,3,2,2,2,7/2,2,3,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-18,-9,-9,-5,-8,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-21,-14,-22,-22,-44,-22,-22,-14,-22,-12,-14,-12,-43/2,-11,-12,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-9,-13,-13,-22,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-21,-10,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,11/2,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,3 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-7,-4,-6,-13/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-5,-4,-8,-9/2,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-11,-5,-6,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2 -13,7,13/2,4,7,4,9/2,4,6,4,7/2,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-27/2,-14,-29,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-15/2,-8,-16,-8,-17/2,-6,-9,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-13/2,-5,-9,-5,-8,-8,-14,-6,-13/2,-4,-6,-3,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-14,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,0,0,1/2,0,4,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,6,4,7/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,5/2,3,6,4,7/2,3,3,2,2,2,3,2,2,2,2,2,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1 -11,6,6,4,6,7/2,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-21/2,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-11/2,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1 -18,9,9,6,17/2,5,6,5,7,4,4,3,9/2,3,3,3,6,4,4,2,5/2,2,2,2,4,2,2,1,1,1,1,0,1,1,1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,9/2,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-10,-4,-4,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-5,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-7,-12,-7,-11,-10,-18,-10,-12,-10,-39/2,-13,-20,-20,-43,-21,-20,-13,-20,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-10,-21,-10,-11,-7,-23/2,-6,-9,-8,-13,-7,-8,-6,-25/2,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-12,-6,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-21/2,-5,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,5,3,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,3,2,3,2,7/2,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-28,-27/2,-13,-17/2,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-14,-13/2,-7,-4,-7,-4,-5,-9/2,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-7/2,-5,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,5/2,4,5/2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1 -17,9,9,6,9,5,11/2,4,7,4,4,3,4,3,7/2,3,5,3,3,2,2,2,3/2,2,3,2,1,1,1,1,1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,3,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-5,-3,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-7,-4,-9/2,-4,-10,-5,-13/2,-5,-10,-6,-19/2,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-39/2,-20,-43,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-14,-8,-21/2,-10,-21,-10,-10,-6,-11,-6,-8,-7,-13,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,6,4,7/2,3,3,2,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,4,4,7,4,9/2,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,3,2,7/2,4,8,4,9/2,3,4,2,2,2,2,2,3/2,2,2,1,1,1,3,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1/2,0,0 -17,9,9,6,9,5,6,9/2,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,4,3,3,3,5,7/2,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-4,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-11/2,-16,-15/2,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-42,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-13,-15/2,-10,-10,-21,-10,-10,-6,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1/2,0 -32,17,17,12,17,10,12,10,18,10,10,8,12,7,9,8,15,8,9,7,10,6,8,7,12,6,6,5,7,5,6,6,12,6,6,4,5,3,3,3,4,2,2,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,3,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,4,4,6,3,3,2,2,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-6,-9,-9,-18,-9,-9,-7,-12,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-7,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-33,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-16,-16,-69/2,-17,-17,-11,-18,-9,-11,-9,-16,-8,-9,-7,-12,-7,-11,-10,-21,-10,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-11,-21,-11,-14,-11,-20,-13,-19,-19,-38,-19,-21,-16,-27,-16,-22,-21,-41,-22,-26,-21,-39,-26,-40,-40,-85,-42,-42,-28,-42,-23,-27,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-16,-14,-26,-14,-16,-13,-23,-15,-22,-22,-44,-21,-21,-14,-21,-11,-14,-12,-23,-12,-13,-10,-18,-11,-17,-17,-34,-17,-17,-12,-20,-11,-15,-13,-24,-13,-15,-13,-24,-15,-23,-22,-91/2,-22,-22,-14,-22,-12,-14,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-40,-20,-20,-13,-20,-11,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-41/2,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,4,6,4,5,5,8,5,7,7,25/2,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1 -16,9,9,6,9,6,7,6,10,6,6,9/2,7,4,5,9/2,8,9/2,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-15/2,-13,-7,-10,-10,-20,-11,-13,-10,-19,-25/2,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-10,-15/2,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-7,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-19,-9,-10,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,5/2,3,2,3,2,3,3,5,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,9,9,6,9,6,7,6,10,6,11/2,4,7,4,9/2,4,8,4,9/2,4,6,4,4,4,6,4,4,3,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,4,3,7/2,3,5,4,9/2,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-6,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-9,-19,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-39/2,-20,-42,-20,-41/2,-13,-21,-11,-27/2,-11,-21,-10,-21/2,-8,-13,-8,-11,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-22,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-15/2,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-11,-6,-7,-6,-10,-5,-11/2,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-19,-9,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,7,4,7/2,2,4,3,3,3,4,2,5/2,2,4,3,7/2,3,4,2,5/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,5/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0 -11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-28,-27/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-8,-5,-7,-6,-14,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,8,8,6,9,6,7,6,9,5,5,4,6,4,4,4,10,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,3,7,4,4,3,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-6,-19/2,-5,-6,-5,-11,-6,-7,-6,-21/2,-6,-9,-9,-20,-10,-10,-7,-25/2,-8,-11,-10,-19,-10,-12,-10,-20,-13,-21,-21,-43,-21,-20,-13,-41/2,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-12,-6,-8,-6,-11,-7,-11,-11,-23,-11,-10,-6,-21/2,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-12,-6,-7,-6,-21/2,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-11/2,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,7,4,4,3,7/2,2,3,3,4,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,2,2,3,3,4,3,5,5,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,1,2,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1/2,1,1,1,0 -10,5,5,4,5,7/2,4,4,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0 -12,6,13/2,5,6,4,9/2,4,6,4,4,3,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-27/2,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-7/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,5,3,3,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,-1 -10,11/2,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-7/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1 -17,9,8,6,8,5,5,5,8,5,5,3,4,3,3,3,10,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,2,3,3,4,4,8,5,5,3,4,2,2,2,7/2,2,2,2,2,1,1,0,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-5,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-10,-11,-8,-14,-8,-12,-10,-41/2,-11,-13,-11,-21,-13,-20,-20,-45,-22,-22,-14,-22,-12,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-25,-12,-13,-8,-13,-7,-9,-8,-29/2,-7,-8,-6,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-8,-6,-11,-7,-11,-11,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3/2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,4,3,5,5,8,4,4,3,4,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-5/2,0,0,0,0,0,-1,-1,-3 -9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-13/2,-10,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -10,5,5,3,4,3,3,3,5,3,3,2,3,2,5/2,2,6,4,7/2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-3/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-7,-11,-11,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-3,-5,-3,-11/2,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,0,1,1,1,1,1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,1,1,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,3,3,2,3,2,3/2,2,2,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -11,6,5,4,5,3,4,3,5,3,2,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,1,1,0,0,1/2,0,0,1,3,2,2,2,5/2,2,3,3,4,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-13,-6,-6,-4,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-10,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-32,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-17/2,-4,-6,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-6,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,3/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3/2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-2 -7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-5,-5,-10,-9/2,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -8,4,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,4,2,5/2,2,2,2,5/2,2,3,2,2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-23/2,-12,-27,-13,-13,-8,-13,-7,-17/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-7,-13/2,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-7,-4,-15/2,-7,-17,-8,-15/2,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,5,3,5/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,-1,0,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2 -7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-10,-21/2,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-16,-7,-7,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,0,0,1/2,1,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,1/2,0,1/2,0,1/2,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -13,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,6,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-18,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-11,-8,-15,-9,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-51,-25,-26,-17,-26,-14,-17,-13,-24,-12,-13,-10,-18,-11,-15,-14,-28,-13,-13,-9,-14,-8,-11,-10,-19,-9,-10,-8,-14,-9,-13,-13,-31,-15,-15,-10,-15,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-10,-43/2,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-31,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-5,-8,-4,-6,-6,-27/2,-6,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,11/2,4,4,3,4,3,3,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,1,1,1,1,1,1,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3 -7,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-11/2,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1 -6,3,3,3,4,3,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1/2,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-10,-5,-5,-3,-4,-2,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-13/2,-6,-11,-7,-21/2,-10,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-13/2,-6,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,5,3,5/2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,0,1,3/2,2,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1 -4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,3,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,3/2,2,3/2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1 -6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,1,4,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-18,-9,-9,-6,-17/2,-4,-6,-5,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,4,3,3,2,5/2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,5,3,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1/2,1,2,2,0,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,1,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-16,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1/2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-17/2,-9,-21,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,1,0,0,1/2,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,2,1,1/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-19,-9,-8,-5,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,0,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-7/2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,-1,1,1,1,0,-1,0,-1,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,-7,-3,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-16,-7,-7,-4,-6,-3,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-2,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-6,-25/2,-6,-8,-7,-14,-9,-15,-15,-36,-18,-18,-11,-17,-9,-11,-10,-37/2,-9,-9,-6,-10,-6,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-2,-11,-5,-5,-4,-7,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,1,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4 -3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-19,-9,-9,-11/2,-9,-5,-6,-5,-10,-9/2,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,3,3,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-8,-5,-9,-9,-22,-10,-21/2,-6,-11,-6,-7,-6,-12,-6,-11/2,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-14,-6,-13/2,-4,-7,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,0,0,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,-3,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-7/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-7,-12,-5,-5,-3,-11/2,-3,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-13,-6,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-3,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-10,-5,-6,-5,-21/2,-7,-12,-12,-31,-15,-15,-10,-31/2,-8,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-12,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,-1,0,0,0,-3/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,7,4,4,3,4,3,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,8,5,5,3,4,3,3,3,3,2,3,2,7/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,2,2,3/2,2,2,1,0,1,1,1,3/2,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-7/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-20,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-4,-6,-5/2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-13/2,-7,-13,-6,-5,-3,-6,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-7,-4,-6,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-31,-15,-15,-10,-16,-8,-21/2,-9,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-4,-11/2,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,6,4,7/2,3,4,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,8,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,5/2,2,3,2,7/2,3,5,3,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3 -4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-3,-6,-3,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-4,-3,-7,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-30,-15,-15,-10,-15,-8,-10,-17/2,-16,-8,-8,-6,-10,-6,-8,-15/2,-16,-8,-8,-5,-9,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-17,-8,-8,-11/2,-9,-9/2,-6,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-7/2,-5,-9/2,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3 -8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-2,-4,-4,-17/2,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-26,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-24,-11,-11,-7,-12,-6,-7,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-5,-10,-6,-10,-10,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-16,-13,-23,-15,-23,-23,-61,-30,-30,-20,-30,-16,-19,-15,-28,-14,-15,-11,-19,-11,-15,-14,-28,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-10,-11,-8,-13,-8,-11,-10,-19,-10,-12,-10,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-22,-10,-10,-6,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,1,0,0,12,7,7,5,8,5,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,4,13/2,4,4,3,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,5,3,3,3,4,3,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 -5,3,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-13/2,-8,-6,-11,-7,-11,-11,-30,-15,-15,-10,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3 -5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-5,-6,-2,-5/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-15/2,-6,-12,-8,-23/2,-11,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-9,-9,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-9,-6,-19/2,-10,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,3/2,1,1,1,1/2,0,7,4,4,3,5,3,4,3,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3/2,2,3/2,2,2,1,1,2,1,1,1,0,0,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,0,1,1,1,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-5/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-10,-5,-5,-3,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-13,-13,-34,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-17,-8,-8,-5,-17/2,-4,-5,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-4,-2,-9/2,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,8,4,4,3,5,3,3,3,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,0,1,1,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,9/2,3,3,2,4,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,3,6,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,0,0,0,0,1/2,1,2,2,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,2,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -2,1,1,1,2,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-4,-9,-6,-9,-9,-25,-12,-12,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-6,-4,-13/2,-7,-12,-6,-6,-4,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,7,4,7/2,3,4,3,3,2,4,2,2,2,1,1,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,1,1,2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,2,4,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,0,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-9,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-4,-6,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-7,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-41,-20,-20,-13,-20,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-9,-8,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-15,-7,-8,-6,-10,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-10,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,12,6,6,4,5,3,4,4,11/2,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,7/2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,9/2,3,3,3,4,3,4,4,5,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-7 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,3/2,2,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,2,2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 -2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-6,-3,-3,-2,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3,-3,-5,-2,-3,-2,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-11,-5,-9/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,1,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 -2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1/2,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-17/2,-8,-11/2,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,6,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,0,0,0,1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-19/2,-5,-7,-7,-16,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,5,3,3,2,7/2,2,3,2,5,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,2,2,3,3,5,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5 -1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-3,-2,-3,-1,-1,-1/2,-2,-1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-5/2,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 -1,1,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-4,-4,-9,-4,-11/2,-4,-8,-4,-6,-6,-11,-6,-7,-6,-10,-7,-11,-11,-28,-14,-14,-9,-14,-8,-19/2,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-8,-7,-15,-7,-7,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,1,1,1,9,5,11/2,4,6,4,7/2,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1/2,1,2,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4 -1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-11/2,-11,-6,-7,-6,-10,-7,-11,-10,-27,-13,-13,-17/2,-13,-7,-9,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4 -0,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-13,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-21,-55,-27,-28,-18,-28,-15,-18,-15,-28,-14,-14,-10,-17,-10,-14,-14,-55/2,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-14,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-39/2,-10,-10,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-30,-15,-15,-9,-14,-7,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,16,8,8,6,8,5,7,6,11,6,6,5,7,5,6,5,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,11/2,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,3,4,2,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-9/2,-2,-2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-9 -0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-21/2,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4 -0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-23/2,-12,-30,-15,-15,-9,-15,-8,-9,-7,-15,-7,-7,-5,-9,-5,-15/2,-7,-14,-6,-13/2,-4,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,5,3,4,4,5,3,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3 -0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-5,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2 --2,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-10,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-5,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-7,-4,-15/2,-4,-6,-5,-12,-6,-8,-7,-13,-9,-14,-14,-35,-17,-17,-11,-35/2,-9,-11,-9,-16,-8,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,11,6,6,4,6,4,5,4,6,4,4,4,11/2,4,4,4,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-1,-1,-3 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1 --2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-4,-3,-5,-5,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-7,-6,-12,-8,-12,-12,-29,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-8,-5,-8,-7,-15,-7,-15/2,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,9,5,11/2,4,6,4,4,4,6,4,7/2,3,5,4,9/2,4,7,4,4,3,3,2,3,3,4,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-9/2,-5,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-28,-27/2,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,5/2,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-19,-9,-8,-5,-8,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-22,-15,-23,-23,-55,-27,-26,-17,-26,-14,-17,-14,-51/2,-12,-13,-9,-16,-10,-15,-14,-26,-13,-13,-9,-14,-8,-11,-10,-37/2,-9,-10,-8,-14,-9,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-12,-7,-9,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,3,16,9,9,6,8,5,6,6,19/2,6,6,4,6,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-6,-11/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-30,-29/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-9,-5,-8,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-11/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-17/2,-7,-14,-9,-15,-15,-36,-18,-35/2,-11,-16,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-8,-17,-8,-17/2,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-8,-4,-11/2,-5,-10,-5,-13/2,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,2,2,3/2,2,0,1,3/2,2,2,2,2,2,11,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,5,4,5,3,4,3,4,3,4,4,5,4,11/2,5,7,4,9/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,3,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2 --4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-29,-14,-14,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,3/2,2,2,2,2,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,7/2,5,9/2,7,4,4,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 --8,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-7,-3,-4,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-19,-9,-9,-6,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-9,-6,-10,-10,-20,-9,-9,-6,-9,-5,-6,-4,-10,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-12,-6,-8,-6,-11,-7,-10,-10,-18,-9,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-14,-21,-22,-53,-26,-26,-17,-51/2,-14,-16,-13,-26,-13,-13,-9,-16,-9,-13,-12,-27,-13,-14,-9,-27/2,-8,-10,-9,-18,-9,-10,-8,-15,-9,-14,-14,-31,-15,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-8,-17,-8,-9,-6,-21/2,-6,-8,-7,-16,-8,-10,-8,-27/2,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,3/2,1,1,1,0,1,1,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,12,6,6,4,6,4,5,5,6,4,5,4,15/2,6,8,7,12,7,7,5,6,4,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,3,7,4,4,4,13/2,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,9/2,3,4,3,5,3,3,2,7/2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1/2,1,1,1,3,2,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4 --5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-13/2,-13,-7,-9,-7,-14,-9,-14,-14,-35,-17,-17,-11,-17,-9,-10,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-19/2,-10,-6,-10,-5,-7,-11/2,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-7/2,-5,-4,-10,-5,-6,-9/2,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-7,-4,-13/2,-7,-14,-7,-7,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-6,-9,-9,-20,-9,-9,-6,-10,-5,-11/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-10,-5,-6,-5,-10,-6,-19/2,-9,-18,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-43/2,-22,-52,-25,-25,-16,-26,-14,-16,-13,-25,-12,-27/2,-10,-16,-10,-27/2,-13,-26,-13,-27/2,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,3,17,9,9,6,9,6,7,6,10,6,13/2,5,7,5,6,6,12,6,13/2,4,6,4,5,5,6,4,5,4,6,5,7,7,12,6,13/2,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,9/2,4,7,4,9/2,4,6,4,6,6,10,6,13/2,5,6,4,4,3,5,3,7/2,3,4,3,7/2,3,6,3,3,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-9/2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-22,-22,-51,-25,-25,-16,-26,-14,-16,-13,-25,-12,-13,-19/2,-16,-10,-14,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-17/2,-18,-17/2,-9,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-8,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-10,-9/2,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3 --17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-15,-10,-15,-15,-61/2,-15,-16,-10,-16,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-19,-12,-19,-20,-39,-19,-18,-12,-18,-10,-12,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-30,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-11,-18,-10,-14,-13,-25,-13,-15,-12,-21,-13,-20,-19,-39,-20,-22,-16,-28,-17,-23,-22,-44,-24,-30,-25,-45,-30,-45,-45,-103,-51,-50,-33,-50,-27,-33,-28,-51,-26,-29,-21,-35,-21,-29,-28,-55,-27,-28,-19,-29,-17,-22,-19,-37,-19,-22,-17,-30,-19,-27,-26,-52,-26,-26,-17,-27,-15,-18,-15,-29,-15,-16,-11,-19,-11,-16,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,4,5,33,17,18,12,18,11,13,11,19,10,10,8,12,8,11,10,19,10,10,7,11,7,8,8,14,8,9,7,11,7,10,10,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,3,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-5,-9/2,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-19/2,-10,-15/2,-13,-8,-11,-10,-22,-12,-14,-12,-22,-14,-22,-22,-51,-25,-25,-16,-25,-13,-16,-27/2,-25,-25/2,-14,-10,-17,-10,-14,-27/2,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-9,-13,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-13/2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,17,9,10,7,10,6,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4 --8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-4,-7,-4,-15/2,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-8,-4,-5,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-15/2,-5,-8,-4,-13/2,-6,-11,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-22,-12,-29/2,-12,-22,-14,-43/2,-22,-51,-25,-25,-16,-25,-14,-33/2,-14,-25,-12,-27/2,-10,-18,-10,-29/2,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-10,-8,-15,-9,-27/2,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-3,-5,-5,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,18,10,19/2,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,5,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,7/2,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-5,-3,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-9/2,-8,-9/2,-6,-6,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-34,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-12,-13/2,-9,-9,-18,-17/2,-9,-6,-10,-5,-6,-11/2,-12,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,12,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3 --8,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-1,0,-3,-1,-1,0,0,0,0,0,2,1,1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-9,-5,-6,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-51,-25,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-35/2,-10,-15,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-15,-9,-14,-13,-25,-12,-13,-8,-13,-7,-8,-7,-14,-7,-7,-5,-19/2,-5,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,2,1,1,2,2,5/2,2,3,3,18,10,10,7,21/2,6,8,7,11,6,7,5,7,4,5,5,10,6,6,4,13/2,4,5,5,6,4,4,4,11/2,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,4,4,6,4,4,3,7/2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5 --4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-7/2,-6,-5,-12,-6,-7,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-8,-5,-8,-4,-5,-9/2,-9,-5,-6,-4,-8,-5,-7,-7,-14,-13/2,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,-1/2,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,1,1,2,2,2,2,2,2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2 --5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-9,-7,-14,-9,-14,-14,-35,-17,-33/2,-11,-17,-9,-23/2,-10,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,3,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,7/2,4,4,3,3,3,4,3,3,3,8,4,9/2,3,4,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3 --4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-29,-14,-14,-9,-14,-8,-10,-8,-14,-7,-8,-11/2,-10,-6,-8,-7,-16,-15/2,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-9/2,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,5/2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3 --8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-2,-3,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-20,-13,-20,-21,-54,-27,-27,-17,-26,-14,-18,-15,-55/2,-14,-15,-11,-19,-11,-15,-14,-29,-14,-14,-9,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-13,-27,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,18,10,10,7,11,6,7,6,11,6,6,4,6,4,5,5,10,6,6,4,6,4,4,4,13/2,4,4,3,5,4,5,5,11,6,6,4,4,3,3,3,4,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,2,2,2,2,5/2,2,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-27,-13,-14,-17/2,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-13/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,2,3,2,2,2,3,2,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 --4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-11,-29,-14,-29/2,-9,-14,-8,-19/2,-8,-14,-7,-7,-5,-10,-6,-15/2,-7,-15,-7,-7,-4,-7,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,2,2,2,2,3,2,5/2,2,10,6,6,4,7,4,9/2,4,7,4,4,3,4,3,4,3,6,4,7/2,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,7/2,2,3,2,2,2,3,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-3 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1/2,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-2 --6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-4,-2,-3,-2,-11/2,-4,-7,-7,-9,-4,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-2,0,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,0,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-7,-5,-17/2,-5,-7,-6,-11,-6,-8,-6,-25/2,-8,-12,-13,-36,-17,-17,-11,-17,-9,-11,-9,-18,-9,-9,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,2,1,1,1,2,2,3,3,12,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,9,5,5,3,7/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-4 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,7,4,4,3,5,3,4,3,5,3,3,5/2,4,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2 --4,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-8,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-10,-30,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3 --4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-19/2,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 --8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-22,-10,-10,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-55,-27,-27,-18,-28,-15,-18,-15,-28,-14,-15,-11,-18,-11,-15,-14,-53/2,-13,-13,-9,-14,-8,-10,-9,-17,-9,-11,-8,-15,-9,-13,-13,-23,-11,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-9,-5,-8,-7,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,21/2,6,5,4,5,3,4,4,6,3,3,2,3,3,4,4,12,6,6,4,5,3,3,3,4,3,3,2,2,1,1,0,-3/2,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-28,-13,-13,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,7/2,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,2,2,2,1,2,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-3,-1,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-12,-6,-11/2,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,3,2,5/2,2,2,2,2,2,8,4,9/2,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,7,4,4,3,3,2,5/2,2,2,2,3/2,1,2,1,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2 --2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,3,2,2,2,2,2,2,2,7,4,4,4,11/2,4,4,3,5,3,3,3,4,3,4,4,8,4,4,3,7/2,2,3,2,4,2,2,2,5/2,2,2,2,8,5,5,4,9/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-3 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,5,3,3,5/2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 -0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,1,1,1/2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,0,0,-1/2,-1,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,6,4,4,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,5,3,7/2,3,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,-1,-3 -0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3 --1,0,0,1,1,1,1,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,0,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-2,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-7,-9,-7,-14,-9,-14,-13,-41,-20,-21,-14,-21,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-7,-11,-10,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,1,8,5,5,3,4,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,0,1,1,1,0,0,0,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 -0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,1/2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-21/2,-11,-7,-11,-6,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,3/2,2,3/2,2,1,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 -0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,1,1,0,0,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,-1,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-25,-12,-25/2,-8,-13,-7,-8,-6,-13,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,3/2,1,5,3,5/2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-2,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 -0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,2,2,2,1,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,4,3,3,2,2,1,1,0,1,1,0,0,1/2,0,0,1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-5,-11,-7,-11,-10,-37,-18,-17,-11,-17,-9,-11,-9,-18,-9,-10,-7,-13,-7,-10,-10,-18,-9,-9,-6,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,5,3,3,3,9/2,3,3,3,5,3,3,2,3,2,3,3,7,4,3,2,3,2,2,2,4,2,2,1,1,1,1,1,4,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,2,2,5/2,2,2,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-8 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-24,-11,-11,-7,-11,-11/2,-7,-11/2,-11,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5 -0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,1,2,2,3/2,2,4,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-6,-5,-10,-6,-9,-9,-35,-17,-17,-11,-16,-8,-21/2,-8,-16,-8,-9,-7,-12,-7,-19/2,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-9,-5,-8,-8,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-13,-6,-11/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-3,-5,-5,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1/2,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,1,1,1,1,3/2,2,3,2,3/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-7 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-34,-33/2,-16,-21/2,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,2,3/2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --2,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,9/2,2,2,2,2,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-7,-7,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-19,-12,-18,-18,-69,-34,-33,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-13,-18,-17,-34,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-9,-16,-10,-16,-16,-63/2,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-26,-12,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-13,-13,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-35/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-8,-3,-3,-2,-3,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-9/2,-6,-9/2,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -0,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,-1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-2,-3,-2,-7/2,-4,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-19/2,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-8,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-6,-6,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,4,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1/2,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,-1,-2,-2,-6,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,2,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5 -1,1,2,2,3/2,2,2,1,2,2,2,2,3/2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,2,5/2,2,3,3,4,2,2,2,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,2,3,2,1,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,3,2,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-6,-3,-3,-2,-5/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-6,-5,-19/2,-6,-10,-10,-34,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-8,-8,-16,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-14,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,2,1,1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8 -1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,3/2,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 -1,1,3/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,0,1,3/2,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,3,2,3/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-5,-2,-7/2,-3,-7,-4,-6,-6,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,2,2,3,2,3,2,2,2,2,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,0,-2,-1,-2,-2,2,2,3/2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6 -1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-3/2,-4,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,3/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,3,4,4,4,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,1,1,3/2,2,2,1,1,0,-1,-1,2,1,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,-2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,3/2,1,1,1,0,0,0,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3/2,2,2,2,2,1,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-36,-17,-17,-11,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,1/2,0,0,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 -0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,1,2,1,1,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,2,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,4,2,5/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,1,1,3/2,2,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 --2,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,0,1,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,1,0,-1/2,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,2,2,-2,0,0,0,-1,0,0,1,2,1,1,1,3/2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,1,1,-5,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-4,-15/2,-4,-7,-7,-27,-13,-12,-8,-25/2,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-5,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,3/2,1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,1,1,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8 --1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-16,-15/2,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 --1,0,0,1,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-13/2,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,0,0,1/2,0,1,1,1/2,1,2,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,3/2,1,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-5/2,-2,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7 --1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,1/2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-22,-10,-10,-7,-11,-11/2,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-2,-4,-3,-5,-4,-11,-5,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,1,1,1,1,1/2,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7 --3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,5,3,4,4,6,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,1,3/2,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-19/2,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-44,-22,-22,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-22,-10,-10,-6,-9,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-21/2,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-8,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 --1,0,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-3/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-22,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 --2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-1,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,1,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,1,1,1,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,-2,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-4,-3/2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,2,2,2,3/2,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,2,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,1,0,0,1,1,0,0,-1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-27,-13,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-4,-15/2,-5,-8,-7,0,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-8,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-16,-7,-7,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,0,1,3/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-13/2,-6,-22,-10,-21/2,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,3/2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-20,-19/2,-10,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-3,-7 --4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,1,1,1,1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-22,-11,-11,-7,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-5,-10,-7,-11,-11,-38,-19,-19,-13,-20,-10,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-7,-6,-21/2,-5,-6,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,7/2,2,3,3,4,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-12,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-20,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 --2,0,-1/2,0,-1,0,1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,5/2,3,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,-1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-13/2,-7,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-13/2,-5,-9,-5,-13/2,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,2,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7 --5,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,1,1,1,1,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,3,2,2,1,1/2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-23,-11,-10,-6,-10,-5,-7,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-5,-21/2,-6,-10,-10,-37,-18,-18,-12,-35/2,-9,-11,-9,-18,-9,-10,-7,-25/2,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-10,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,7/2,3,4,3,5,3,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,2,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 --3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-13/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-3/2,0,-2,-1,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-35/2,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-19/2,-9,-18,-9,-19/2,-6,-10,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-9,-20,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,7/2,2,3,2,7/2,4,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1/2,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1/2,-2,-1,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-6,-10,-5,-6,-11/2,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,4,5/2,3,2,3,3,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 --10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-7,-7,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-5,-10,-6,-9,-9,-37/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-45,-22,-22,-14,-21,-11,-13,-10,-19,-9,-10,-7,-11,-7,-10,-9,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-9,-8,-15,-8,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-16,-9,-12,-10,-20,-11,-14,-11,-21,-14,-21,-21,-74,-37,-37,-24,-37,-20,-25,-21,-38,-19,-20,-14,-24,-14,-20,-19,-37,-18,-19,-13,-20,-11,-14,-12,-24,-13,-15,-12,-22,-14,-21,-21,-42,-21,-21,-13,-20,-11,-13,-10,-19,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-33,-16,-15,-10,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-10,-8,-16,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-9,-15,-8,-11,-10,-19,-10,-13,-11,-21,-14,-21,-21,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-1,0,0,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-12,-25 --4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-37,-18,-18,-12,-18,-10,-12,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-17/2,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-15/2,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-13/2,-10,-10,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-22,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-7,-4,-11/2,-5,-9,-5,-6,-5,-10,-6,-10,-10,-38,-18,-18,-12,-18,-10,-12,-10,-19,-9,-19/2,-7,-12,-7,-10,-9,-18,-8,-17/2,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-4,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-10,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3,3,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,0,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,1,1,1,0,1,2,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-11/2,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-13/2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 --3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-22,-10,-10,-7,-11,-5,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-4,-5,-5,-8,-4,-5,-5,-10,-6,-10,-10,-39,-19,-19,-12,-35/2,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-9,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-5,-4,-10,-5,-7,-6,-11,-7,-11,-11,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-5/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-4,-6,-6,0,0,0,1,3/2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6 --2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-16,-7,-7,-4,-7,-3,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,1,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8 --1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1/2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-13,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,0,0,1/2,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-25,-12,-12,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-42,-20,-20,-13,-20,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,-2,-1,-1,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,0,0,0,0,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-5,-5,-11 --1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-3/2,-2,-2,0,0,0,0,0,0,0,0,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,-3,-1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-14,-6,-13/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6 --1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4 --2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,0,0,0,1,3/2,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-1,0,-1,0,-3/2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1/2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-13,-8,-25/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,-1,0,0,0,1/2,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,2,1,1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-16,-7,-7,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-11,-6,-7,-6,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,-1,0,0,1,0,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-7 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-4,-4,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,-1,-2,-2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,3/2,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-3,-1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,-1,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-30,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-48,-24,-24,-16,-24,-13,-15,-12,-23,-11,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-5,-9,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,7/2,2,2,1,0,1,1,1,0,1,1,1,2,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-1,0,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-16 --3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-24,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-3/2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8 --4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,3,2,1,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-5/2,-2,-1,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-5,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-25,-12,-25/2,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-11/2,-4,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-7,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,1,1,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-7/2,-4,-8 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-9/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-28,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-19/2,-6,-8,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,-1,0,0,0,-1,0,1,1,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,1,1,1,1,3/2,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,1,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1/2,0,-1,-1,-1,-1,-2,-2,-7/2,-2,-4,-4,-9 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,1/2,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,-1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,2,2,2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-13,-6,-6,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-9/2,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,3/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5 --9,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,0,-1,3,2,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-6,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-21,-10,-10,-6,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-37,-18,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,0,0,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1/2,0,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --5,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-13,-6,-11/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-9/2,-4,-23,-11,-11,-7,-11,-6,-15/2,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-11/2,-5,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,0,1,0,-1/2,0,-3,-1,-1,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-4,-3,3,2,2,2,5/2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-6,-18,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-14,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-34,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-6,-23/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-5,-8,-8,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-8,-8,-11,-5,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,0,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7 --4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,-1/2,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-22,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-5,-5,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 --7,-3,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-17,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-17/2,-8,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,0,1,2,2,3/2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,-3/2,-1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-5/2,-2,-6 --6,-5/2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-10,-9/2,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-15/2,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6 --13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-3,-3,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-36,-17,-17,-11,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-17,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-17,-17,-11,-17,-9,-11,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-66,-32,-32,-21,-33,-18,-21,-17,-31,-16,-17,-12,-20,-12,-17,-16,-32,-16,-16,-11,-17,-9,-12,-10,-20,-11,-13,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-33,-16,-15,-10,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-45/2,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-12,-19,-19,-27,-13,-14,-9,-15,-8,-10,-8,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-3,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 --6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,2,2,2,2,2,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-10,-16,-8,-10,-8,-15,-15/2,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-15/2,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-13,-6,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7 --6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-34,-16,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-17/2,-9,-14,-7,-7,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-3,-4,-5/2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-23,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,3,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,2,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,0,0,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-1,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-5,-20,-9,-9,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-6,-36,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-17,-8,-8,-5,-8,-4,-6,-5,-7,-3,-4,-3,-11/2,-3,-4,-3,-10,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-14,-7,-7,-4,-15/2,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-8 --3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 --5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,4,2,2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-5,-3,-4,-4,-26,-13,-13,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 --4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,0,0,-1,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,1,1,1/2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-25,-12,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-5,-43,-21,-20,-13,-20,-11,-13,-11,-20,-10,-11,-7,-12,-7,-10,-10,-19,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-4,-11,-5,-5,-4,-7,-4,-6,-5,-19/2,-5,-6,-5,-9,-6,-10,-10,-20,-9,-9,-6,-9,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-5,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,1,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-23,-11,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-11,-5,-11/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3 --9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,1,1,1,1,0,0,5,3,3,2,7/2,2,3,3,5,3,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-37,-18,-18,-12,-18,-9,-11,-9,-17,-8,-8,-6,-21/2,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,1,1,-1,0,0,0,-1/2,0,0,1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,-3,-1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6 --6,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-9/2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-23,-11,-11,-7,-11,-6,-7,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4 --9,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-3,-5,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-15/2,-7,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-4,-4,-34,-16,-16,-10,-17,-9,-11,-9,-16,-8,-17/2,-6,-9,-5,-7,-7,-15,-7,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-17/2,-8,-19,-9,-9,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6 --8,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-33,-16,-16,-10,-16,-17/2,-10,-8,-15,-15/2,-8,-11/2,-9,-5,-7,-7,-14,-13/2,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-13/2,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-7 --17,-8,-8,-5,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,13/2,4,4,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-8,-8,-31/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-39/2,-10,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-15,-14,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-18,-12,-18,-18,-36,-18,-18,-12,-18,-10,-12,-9,-17,-9,-10,-7,-12,-7,-9,-8,-33/2,-8,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-67,-33,-32,-21,-32,-18,-22,-18,-33,-16,-17,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-19,-12,-17,-17,-36,-18,-18,-12,-19,-10,-12,-10,-18,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-11,-25,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-21/2,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-9,-7,-14,-9,-14,-13,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-7,-3,-2,-1,-1,0,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-15 --8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-12,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-34,-33/2,-16,-21/2,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,3,2,2,2,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-4,-8,-5,-15/2,-8,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-36,-18,-35/2,-12,-17,-9,-11,-9,-18,-9,-19/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-8 --7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-11/2,-6,-7/2,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-26,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --13,-6,-5,-3,-9/2,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-23,-11,-12,-8,-23/2,-6,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-16,-7,-7,-4,-15/2,-4,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-42,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-12,-8,-27/2,-8,-11,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-24,-12,-12,-8,-12,-6,-8,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8 --8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-14,-13/2,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-9,-4,-4,-5/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --11,-5,-9/2,-2,-4,-2,-2,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-4,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7 --10,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-19/2,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-18,-17/2,-8,-5,-8,-4,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --19,-9,-8,-5,-8,-4,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-7,-8,-6,-12,-8,-13,-13,-30,-15,-15,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-17,-8,-9,-6,-10,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-8,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-21,-10,-11,-8,-13,-7,-10,-9,-37/2,-10,-12,-10,-19,-12,-19,-19,-36,-18,-18,-11,-17,-9,-10,-8,-33/2,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-9,-24,-11,-11,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-10,-10,-64,-31,-31,-21,-32,-17,-20,-17,-63/2,-16,-16,-11,-19,-11,-16,-15,-29,-14,-15,-10,-17,-9,-12,-10,-39/2,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-16,-9,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-13,-13,-29,-14,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-12 --10,-9/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-9/2,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-15/2,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,2,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-20,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-8,-7,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-11,-6,-7,-6,-10,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-42,-20,-41/2,-13,-21,-11,-13,-11,-20,-10,-10,-7,-12,-7,-21/2,-10,-20,-9,-9,-6,-11,-6,-8,-6,-12,-6,-15/2,-6,-12,-7,-10,-10,-21,-10,-21/2,-6,-10,-5,-13/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,1/2,1,0,0,1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8 --9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-34,-16,-16,-21/2,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-17/2,-5,-8,-9,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-17/2,-5,-8,-8,-15,-7,-8,-6,-19/2,-6,-8,-8,-14,-7,-9,-7,-14,-9,-14,-14,-30,-14,-14,-9,-29/2,-8,-9,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-9,-5,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-16,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-13,-13,-9,-14,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-11,-8,-27/2,-8,-11,-10,-18,-9,-11,-9,-35/2,-12,-18,-18,-38,-19,-19,-12,-18,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-16,-8,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-23/2,-8,-12,-12,-25,-12,-12,-8,-23/2,-6,-7,-6,-13,-6,-7,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-10,-61,-30,-30,-20,-61/2,-16,-20,-17,-30,-15,-16,-12,-39/2,-12,-16,-15,-30,-15,-15,-10,-33/2,-9,-11,-10,-20,-10,-12,-9,-33/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-18,-9,-10,-7,-25/2,-7,-10,-9,-17,-8,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-7,-6,-11,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-25/2,-8,-13,-13,-29,-14,-14,-9,-27/2,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,1,1,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-11 --11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-11/2,-14,-6,-6,-4,-7,-7/2,-5,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-5,-8,-9,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-40,-20,-20,-13,-20,-21/2,-13,-11,-20,-10,-10,-15/2,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-12,-6,-11/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-19/2,-8,-15,-10,-15,-15,-31,-15,-29/2,-9,-14,-8,-19/2,-8,-15,-7,-15/2,-6,-9,-5,-15/2,-7,-15,-7,-8,-5,-9,-5,-13/2,-6,-11,-5,-6,-5,-9,-6,-17/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-27/2,-14,-28,-13,-13,-9,-15,-8,-19/2,-8,-16,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-10,-6,-9,-9,-17,-8,-17/2,-6,-9,-5,-7,-6,-13,-6,-15/2,-6,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-23/2,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-17/2,-6,-10,-5,-7,-7,-13,-6,-15/2,-6,-11,-7,-21/2,-10,-23,-11,-11,-7,-12,-6,-15/2,-6,-10,-5,-6,-4,-8,-4,-13/2,-6,-14,-6,-6,-4,-8,-5,-7,-6,-13,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-25/2,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-8,-8,-15,-7,-15/2,-5,-9,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-59/2,-20,-30,-16,-20,-17,-31,-16,-33/2,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-23/2,-10,-20,-10,-23/2,-9,-16,-10,-31/2,-15,-31,-15,-16,-10,-16,-8,-21/2,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-18,-9,-19/2,-6,-10,-5,-13/2,-6,-13,-7,-8,-6,-10,-6,-19/2,-10,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-13/2,-6,-12,-6,-13/2,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-15/2,-9,-8,-15,-7,-8,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-6,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-11,-8,-13,-15/2,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-12,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-7,-7,-13,-7,-8,-6,-11,-7,-11,-11,-23,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-9/2,-7,-6,-14,-13/2,-7,-9/2,-8,-5,-7,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-11,-11/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-30,-20,-30,-16,-20,-17,-31,-31/2,-16,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-16,-10,-16,-15,-31,-15,-15,-10,-16,-8,-10,-9,-17,-17/2,-9,-7,-12,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-5,-7,-7,-15,-8,-9,-7,-13,-8,-13,-13,-27,-14,-15,-11,-19,-11,-16,-15,-29,-16,-20,-17,-32,-21,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-13,-22,-13,-18,-17,-33,-16,-17,-12,-19,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-37,-18,-18,-12,-20,-11,-13,-11,-20,-10,-12,-10,-18,-11,-16,-15,-31,-15,-16,-12,-20,-12,-16,-15,-29,-16,-20,-16,-30,-20,-30,-30,-61,-30,-30,-19,-29,-16,-19,-16,-29,-15,-16,-11,-18,-11,-15,-14,-28,-14,-14,-10,-17,-10,-13,-11,-22,-11,-13,-10,-19,-12,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-8,-15,-9,-14,-13,-27,-14,-15,-11,-19,-11,-15,-14,-29,-16,-20,-16,-30,-20,-30,-31,-127/2,-31,-30,-20,-30,-16,-18,-15,-27,-13,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-11,-7,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-18,-9,-10,-7,-12,-7,-11,-11,-23,-12,-15,-12,-21,-14,-22,-22,-122,-60,-60,-40,-61,-33,-40,-34,-62,-32,-34,-24,-40,-24,-34,-32,-63,-32,-33,-22,-35,-20,-25,-22,-41,-22,-25,-20,-36,-23,-35,-34,-68,-34,-34,-22,-33,-18,-22,-19,-35,-18,-20,-15,-25,-16,-23,-22,-44,-22,-24,-17,-27,-16,-21,-18,-35,-19,-22,-18,-34,-22,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-17,-11,-18,-10,-14,-13,-26,-14,-16,-13,-23,-14,-21,-20,-41,-20,-20,-14,-22,-12,-15,-13,-24,-13,-15,-12,-21,-13,-18,-18,-36,-18,-19,-14,-23,-14,-20,-19,-38,-21,-25,-21,-39,-26,-40,-40,-81,-40,-41,-27,-41,-23,-28,-23,-42,-21,-22,-16,-26,-16,-22,-20,-39,-19,-20,-14,-24,-14,-18,-16,-31,-16,-19,-15,-26,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-24,-12,-14,-11,-19,-12,-17,-16,-33,-16,-17,-12,-21,-12,-15,-14,-27,-14,-16,-12,-22,-14,-22,-22,-44,-22,-22,-15,-23,-12,-15,-13,-24,-12,-13,-9,-16,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,4,7,4,3,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --17,-8,-8,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-8,-10,-8,-14,-9,-14,-14,-30,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-8,-15,-19/2,-14,-15,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-11/2,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-17,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-15/2,-11,-10,-22,-11,-12,-8,-13,-7,-10,-17/2,-17,-9,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-13/2,-10,-11/2,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-11,-13/2,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-40,-20,-20,-13,-20,-11,-13,-11,-20,-10,-10,-15/2,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-7,-12,-6,-8,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-19/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-8,-5,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-8,-4,-11/2,-4,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-15/2,-6,-10,-6,-15/2,-7,-14,-8,-19/2,-8,-14,-9,-29/2,-14,-30,-15,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-5,-4,-9,-4,-11/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-9,-8,-15,-10,-29/2,-14,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,3,2,3,2,3,3,4,4,7,4,7/2,3,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,2,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-33/2,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-23/2,-9,-17,-11,-33/2,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-8,-23/2,-10,-22,-11,-12,-8,-13,-7,-19/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-19/2,-6,-10,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-19/2,-9,-19,-10,-13,-10,-19,-12,-39/2,-20,-41,-20,-20,-13,-20,-11,-13,-11,-20,-10,-21/2,-8,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-17/2,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-23/2,-7,-12,-6,-15/2,-6,-11,-6,-13/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-21/2,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-12 --11,-5,-5,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-40,-19,-19,-13,-20,-21/2,-13,-11,-20,-10,-11,-15/2,-13,-15/2,-10,-19/2,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-11/2,-7,-6,-12,-11/2,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-12,-6,-6,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-9/2,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-4,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7 --17,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-10,-8,-31/2,-10,-15,-15,-32,-15,-15,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-9,-9,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-14,-9,-15,-15,-32,-16,-16,-10,-29/2,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-13,-6,-6,-4,-15/2,-4,-5,-5,-11,-6,-7,-5,-19/2,-6,-8,-7,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-7,-7,-13,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-32,-16,-16,-10,-29/2,-8,-9,-7,-14,-7,-7,-5,-17/2,-5,-7,-6,-14,-7,-7,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,4,2,2,2,7/2,3,4,4,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-5,-21/2,-6,-10,-10,-60,-30,-30,-20,-59/2,-16,-20,-17,-31,-15,-16,-12,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-12,-9,-16,-10,-16,-16,-33,-16,-16,-10,-33/2,-9,-11,-10,-19,-9,-10,-7,-25/2,-8,-11,-11,-21,-11,-12,-8,-27/2,-7,-9,-8,-18,-9,-11,-8,-31/2,-10,-14,-14,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-23/2,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-6,-21/2,-6,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-41,-20,-20,-13,-41/2,-11,-14,-11,-21,-11,-12,-8,-14,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-25/2,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-6,-21/2,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,5/2,2,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,1,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,1,2,2,2,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3/2,1,0,0,2,2,2,2,3/2,2,2,2,3,2,1,1,1,1,0,0,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11 --9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,1/2,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-6,-11,-11/2,-6,-4,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-15/2,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-6,-6,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-4,-13/2,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-6,-4,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,1,-2,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-40,-19,-19,-12,-19,-10,-13,-11,-20,-10,-11,-8,-14,-8,-21/2,-10,-20,-10,-10,-6,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-21/2,-7,-11,-6,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-13/2,-5,-10,-6,-19/2,-9,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-6,-4,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-8,-4,-5,-4,-6,-4,-6,-6,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-13/2,-6,-12,-6,-17/2,-7,-13,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,4,3,3,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,2,2,2,2,1,1,1/2,1,1,1,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8 --9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-17/2,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-16,-33,-16,-16,-10,-16,-9,-11,-9,-18,-9,-10,-7,-11,-7,-10,-9,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-32,-16,-16,-10,-15,-8,-10,-8,-31/2,-8,-8,-6,-10,-5,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-21/2,-5,-6,-5,-10,-6,-9,-8,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-11,-5,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-34,-17,-17,-11,-16,-8,-10,-8,-29/2,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,3/2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,3,4,4,8,4,4,3,5,3,2,2,5/2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-6,-12,-7,-11,-11,-59,-29,-30,-20,-30,-17,-21,-17,-32,-16,-16,-11,-19,-11,-15,-14,-29,-14,-15,-10,-16,-9,-12,-10,-19,-10,-11,-8,-15,-10,-15,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-9,-10,-7,-13,-8,-11,-10,-22,-11,-11,-7,-12,-7,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-11,-9,-33/2,-8,-8,-6,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-12,-6,-8,-7,-29/2,-7,-8,-6,-11,-7,-10,-10,-17,-9,-10,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-18,-12,-19,-19,-41,-20,-20,-13,-20,-11,-14,-12,-45/2,-11,-12,-9,-15,-8,-11,-10,-18,-9,-10,-7,-12,-6,-8,-7,-29/2,-8,-9,-7,-14,-9,-13,-12,-24,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-3,-1,0,1,1,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,1/2,1,1,1,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-21,-10,-10,-6,-10,-5,-7,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,3/2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-4,-2,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-13/2,-7,-19,-9,-19/2,-6,-9,-4,-11/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,3,5,3,7/2,3,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-5,-10,-6,-21/2,-10,-22,-10,-21/2,-6,-11,-6,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,2,2,1,1,2,2,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,4,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-7 --6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-5/2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-14,-7,-7,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-24,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-9/2,-8,-15/2,-16,-15/2,-8,-9/2,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --10,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-20,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-7,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-15,-7,-7,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-23/2,-6,-7,-5,-11,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,-1,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-4,-5,-4,-15/2,-4,-7,-7,-41,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-11,-8,-25/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-11,-7,-11,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-7,-5,-17/2,-4,-6,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-12,-8,-25/2,-7,-9,-7,-16,-8,-8,-6,-10,-5,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,0,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,3/2,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,1,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-6,-7/2,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-25,-12,-12,-15/2,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-7/2,-7,-5,-8,-8,-16,-15/2,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-4,-11/2,-4,-9,-4,-7/2,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-21,-10,-9,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3,3,6,3,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3,3,0,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-35,-17,-16,-10,-17,-9,-11,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-7,-11,-11,-22,-11,-11,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3/2,1,2,1,1/2,0,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,1,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-14,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-32,-31/2,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-4,-3,-6,-4,-6,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 --15,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-16,-10,-15,-15,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-10,-7,-11,-11,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-9,-5,-7,-7,-15,-8,-9,-8,-15,-10,-15,-14,-30,-14,-14,-9,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-8,-8,-31/2,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-24,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-38,-18,-18,-11,-17,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-35/2,-8,-8,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1/2,1,2,2,2,2,3,3,4,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-63,-31,-30,-19,-29,-15,-18,-15,-28,-14,-16,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-18,-11,-17,-17,-32,-15,-15,-10,-15,-8,-10,-9,-17,-8,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-7,-12,-7,-10,-9,-18,-10,-12,-9,-17,-11,-16,-16,-33,-16,-16,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-10,-10,-43/2,-10,-11,-8,-14,-8,-11,-11,-22,-12,-15,-12,-22,-14,-20,-20,-41,-20,-20,-13,-20,-11,-13,-10,-18,-9,-10,-8,-14,-8,-12,-11,-45/2,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-6,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-5/2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,2,2,2,1,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-13/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,2,2,3,5/2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-31,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-16,-8,-8,-9/2,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-7,-4,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-5 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-15/2,-8,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,4,3,4,3,5,3,3,2,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-32,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-8,-4,-9/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-11,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-11/2,-6,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,2,2,3/2,2,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1/2,0,1,1,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,1,3,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-2,-3,-3,-6 --5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,1,3,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-4,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,2,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,1,2,2,2,2,7/2,3,4,4,6,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,7/2,3,4,3,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-5,-34,-16,-16,-10,-31/2,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-7,-3,-4,-3,-9,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-11,-6,-8,-6,-23/2,-8,-12,-12,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,4,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 --4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-19,-9,-9,-5,-9,-9/2,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,0,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3,3,5,3,5/2,2,3,2,3/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,3/2,2,0,0,1/2,1,0,0,1/2,1,0,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,2,1,1,0,1,0,0,0,1/2,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-6 --10,-5,-5,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-6,-5,-9,-6,-10,-10,-25,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-8,-8,-26,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,0,1,1,1,1,3/2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,7/2,2,3,2,3,2,3,4,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-40,-19,-19,-12,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-3,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-13,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-25,-12,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,4,2,2,2,2,2,3,3,9/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-13 --5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-21,-10,-10,-6,-9,-5,-6,-9/2,-9,-4,-4,-5/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-6,-5,-15,-7,-15/2,-4,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-16,-8,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-23,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-5,-3,-4,-4,-13,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-5,-7,-3,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,2,2,3/2,2,2,2,3/2,1,3,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3/2,1,1,2,3/2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-6 --9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-23,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,-1,0,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,0,1,1,1,2,2,2,3,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-31,-15,-15,-10,-31/2,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-6,-5,-8,-4,-4,-4,-15/2,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-7,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,7/2,3,4,3,5,3,3,2,7/2,2,3,3,3,2,2,2,7/2,3,4,4,2,2,2,2,5/2,2,1,1,3,2,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-19,-9,-9,-6,-10,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-5,-3,-5,-4,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-3,-7 --8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-28,-14,-27/2,-9,-14,-7,-17/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-13/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-11,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,7/2,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-5/2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-4,-2,-2,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-5/2,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,-1/2,-1,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-9,-8,-15,-10,-15,-15,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-33/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-40,-20,-20,-13,-20,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-11,-23,-11,-12,-8,-13,-7,-10,-9,-17,-8,-9,-7,-13,-8,-12,-11,-45/2,-11,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-44,-22,-22,-15,-23,-13,-16,-13,-25,-12,-13,-10,-17,-10,-13,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-9,-37/2,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-9,-4,-4,-2,-3,-1,0,1,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-54,-26,-26,-17,-26,-14,-17,-13,-24,-12,-13,-9,-16,-9,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-41/2,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-59/2,-14,-14,-10,-16,-9,-11,-10,-20,-10,-11,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-11,-23,-12,-15,-12,-21,-14,-22,-22,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-10,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-9,-9,-6,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-6,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,1,1,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-11/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 --8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-10,-6,-10,-5,-6,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1/2,-4,-2,-2,-1/2,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-15,-7,-8,-5,-7,-7/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-10,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-19/2,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-12,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1/2,1,-4,-2,-3/2,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-6,-11,-6,-7,-5,-10,-6,-21/2,-10,-15,-7,-15/2,-5,-7,-4,-9/2,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,4,3,3,3,5,3,7/2,3,4,3,9/2,4,1,1,1,1,2,2,2,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-5,-3,-5,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,1,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-10,-9/2,-4,-3,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-5,-4,-17/2,-5,-8,-8,-9,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,3,3,4,2,2,1,1,1,2,2,1,1,1,1,3/2,2,2,1,2,2,2,1,1/2,0,0,1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-28,-13,-13,-8,-13,-7,-9,-7,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-7,-16,-7,-7,-4,-15/2,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-11,-6,-7,-6,-23/2,-7,-11,-11,-17,-8,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-3,-3,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,5/2,2,3,3,4,3,4,3,5,4,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-11/2,-5,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,0,0,0,0,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,2,2,2,1,2,2,2,2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-11/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,4,3,3,3,0,0,0,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 --3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,1/2,2,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,5/2,3,3,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-7,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-24,-11,-11,-7,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-16,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9/2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-31,-15,-15,-10,-15,-8,-10,-8,-14,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-19/2,-5,-6,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-6,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,1,1,0,-3/2,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,2,3,2,3,3,5,3,4,3,4,3,5,5,-1,0,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-6,-2,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,0,2,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-9,-6,-9,-8,-17 --2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9 --2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,2,2,3/2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-10,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-5,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,5/2,2,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-5/2,-1,-2,-3,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,1,0,0,0,0,1/2,1,2,2,3,2,2,2,7/2,2,3,3,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-14,-7,-7,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,2,2,2,3/2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,9/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-11,-5,-5,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-5,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-39,-19,-20,-13,-20,-11,-13,-11,-20,-10,-10,-7,-11,-6,-9,-8,-35/2,-8,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-22,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,3,5,3,3,3,5,4,5,4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-22 --2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-18,-8,-17/2,-6,-9,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,0,0,-4,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-7,-3,-4,-3,-7,-4,-7,-7,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,-4,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 --1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-3,-6,-2,-2,-1,-5/2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-20,-9,-9,-6,-10,-5,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,-6,-2,-2,-2,-7/2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-13/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,0,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-6,-5/2,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7 --3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-6,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-3,-1,-1,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-7/2,-4,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-6,-4,-7,-7,-8,-4,-7/2,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-10 --3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-5/2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-16,-15/2,-8,-9/2,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 --6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-6,-29,-14,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,0,0,1,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,1,1,2,2,3,2,3,2,7/2,2,2,2,3,3,4,4,-12,-6,-6,-3,-5,-2,-2,-1,-3/2,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-31,-15,-15,-10,-15,-8,-10,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-5,-4,-15/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-14,-9,-13,-13,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,0,0,0,1,1,1,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20 --3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11 --3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,-7,-3,-7/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,0,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-4,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-8,-4,-4,-3,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14 --2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-12 --4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-2,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-9/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-28,-14,-14,-9,-27/2,-7,-8,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,5/2,2,2,2,4,3,4,3,9/2,3,4,5,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-11/2,-3,-5,-4,-7,-3,-4,-4,-15/2,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-8,-7,-13,-7,-8,-6,-25/2,-8,-12,-12,-11,-5,-5,-4,-13/2,-3,-4,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,0,0,0,0,0,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-7/2,-7,-4,-7,-7,-15 --4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-6,-6,-28,-14,-27/2,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-11/2,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,5/2,2,2,2,2,3,4,3,7/2,3,6,4,11/2,6,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-11,-7,-11,-11,-23 --5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-9/2,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-7/2,-7,-9/2,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,6,4,6,6,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-11,-7,-11,-11,-23 --11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-7,-15,-8,-10,-8,-15,-10,-16,-16,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-12,-12,-59,-29,-29,-19,-28,-15,-19,-16,-30,-15,-17,-13,-22,-13,-18,-17,-34,-17,-17,-11,-18,-10,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-20,-10,-10,-7,-12,-7,-11,-10,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,5,5,9,6,9,10,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-53,-26,-26,-17,-25,-14,-17,-14,-27,-13,-14,-10,-17,-10,-13,-12,-23,-11,-12,-8,-12,-7,-9,-9,-18,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-11,-9,-18,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-9,-12,-11,-21,-11,-12,-10,-18,-11,-17,-17,-36,-17,-17,-11,-18,-9,-11,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-11,-14,-12,-22,-15,-23,-23,-21,-10,-11,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-10,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-13,-9,-16,-9,-12,-11,-23,-12,-15,-13,-24,-15,-23,-23,-46 --5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,3,5/2,3,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-10,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-26,-12,-12,-8,-12,-13/2,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-10,-9/2,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-9/2,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --5,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-7/2,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-15/2,-6,-11,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,2,2,4,3,7/2,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-26,-12,-12,-8,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-4,-9,-4,-5,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-3,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 --5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-5,-29,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,11/2,4,5,5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-26,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-16,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-11,-11,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3,2,1,1,1,1,1,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,2,2,0,0,0,1,3/2,2,2,2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-21/2,-7,-11,-11,-22 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-4,-7/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,2,2,2,2,1,1,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,3/2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,5/2,2,4,3,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-9/2,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,1,1,1,0,0,0,0,0,0,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 --2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-5,-5,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-7/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-15/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,3/2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-8,-31/2,-8,-9,-7,-12,-7,-9,-9,-17,-8,-8,-6,-10,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,4,4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-13,-6,-6,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-26,-12,-12,-8,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-17,-8,-8,-5,-9,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-5,-10,-6,-10,-11,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-6,-12,-6,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-7,-11,-11,-23 --1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-1,-5,-2,-5/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-15,-7,-15/2,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,5/2,2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-13 --1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-4,-3/2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --2,-1,-1,0,0,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-13,-6,-6,-4,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-1,-1,-1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-3,-3,-6,-5/2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-5/2,-4,-4,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,0,0,1/2,0,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,0,0,1/2,1,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,0,1,1,1,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-3/2,-1,-2,-1,-3,-3,-15,-7,-15/2,-5,-8,-4,-6,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-9/2,-4,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1/2,0,0,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-43/2,-10,-11,-7,-12,-7,-9,-9,-18,-9,-10,-7,-13,-8,-13,-12,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-8,-33,-16,-16,-10,-15,-8,-10,-9,-17,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-7,-4,-7,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-9,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,-1/2,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-9/2,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-3/2,-1,-4,-2,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12 -0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -0,1,1,1,1/2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,1,1,1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-3,-4,-4,1,1,0,0,1/2,0,0,0,1,1,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,-5,-2,-3,-2,-4,-2,-3,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-10,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13 -0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-12,-11/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-7 -0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,2,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-17,-8,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,3,2,2,2,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,3,2,2,2,2,2,2,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-19,-9,-9,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,3/2,1,1,1,1,1,1,0,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-2,-29,-14,-13,-8,-13,-7,-8,-6,-21/2,-4,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,1,1,1,4,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-18 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-18,-8,-8,-5,-8,-4,-9/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-3/2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-11/2,-6,-12 -0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,0,1,1,1,0,1/2,0,1/2,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10 --2,-1,-1,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-4,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,2,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-28,-13,-12,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-8,-8,-5,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-16,-8,-15/2,-5,-8,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-4,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-26,-12,-25/2,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-11/2,-6,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-5/2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-7/2,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-26,-12,-12,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 --8,-3,-3,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,7,4,4,3,4,2,2,2,2,1,1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-37,-18,-18,-12,-19,-10,-13,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-11,-8,-14,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-53,-26,-26,-17,-26,-14,-17,-14,-26,-13,-15,-11,-18,-10,-14,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-12,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-8,-8,-35/2,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-11,-23,-11,-12,-8,-13,-7,-9,-8,-17,-9,-11,-10,-19,-12,-18,-18,-37 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1/2,-1,0,0,-1/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,4,2,2,2,2,2,2,1,2,1,1,1/2,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-8,-18 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-1/2,-1,-1,0,-1,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,4,2,5/2,2,2,2,3/2,1,2,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-7,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-13/2,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-9,-9,-11/2,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-6,-4,-6,-11/2,-12 --3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,3,2,2,2,2,1,1,1,1,1,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-17/2,-4,-4,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-5,-11,-5,-6,-4,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,3,2,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-3,-1,-1,0,-1/2,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-20 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1/2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-21,-10,-10,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-3,-3,-5/2,-5,-3,-6,-6,-13 --2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-4,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-19,-9,-9,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-33,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-6,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-5,-4,-8,-5,-7,-7,-2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-12,-12,-25 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-3,-5,-3,-6,-6,-13 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-19,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-1,0,0,0,-1,0,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 -0,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-25,-12,-12,-8,-23/2,-6,-8,-7,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-4,-13/2,-4,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 -0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-15/2,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-23,-11,-21/2,-6,-11,-6,-7,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-19/2,-9,-19 -1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-22,-21/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-7/2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-7,-3,-4,-2,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-4,-4,-9,-9/2,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-8,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-28,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-45,-22,-22,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-9,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-38 -1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1/2,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-20 -2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,-2,-1,-3/2,-2,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,1,1,1,1,2,2,3/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,1/2,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-16 -2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-21/2,-6,-8,-6,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-3,-3,-13/2,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-30,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-4,-4,-4,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,0,1,1,1,3/2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-27 -2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 -2,2,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-25,-12,-23/2,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-21/2,-10,-22 -2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20 -3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-19/2,-5,-6,-4,-8,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-8,-6,-11,-6,-8,-8,-33/2,-9,-11,-9,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-8,-33/2,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-9,-9,-26,-12,-12,-7,-11,-6,-8,-6,-23/2,-6,-6,-4,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1/2,0,0,0,-2,-1,-3,-3,-45,-22,-22,-14,-22,-12,-14,-12,-43/2,-10,-11,-8,-13,-7,-10,-9,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,0,1,1,1,2,2,2,1,1/2,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-15,-7,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-16,-8,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 -2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-24,-12,-12,-15/2,-12,-6,-7,-6,-11,-5,-5,-4,-7,-7/2,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-8,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-12,-8,-23/2,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-3/2,-2,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-4,-11/2,-6,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-24,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1/2,0,0,1,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-10,-12,-10,-37/2,-12,-18,-18,-35,-17,-17,-11,-35/2,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-9,-4,-4,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-22,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-43,-21,-20,-13,-41/2,-11,-13,-11,-19,-9,-10,-7,-12,-7,-9,-9,-16,-7,-7,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-9,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-7,-25/2,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-12,-6,-8,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-9/2,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-28,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-3,-5/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-10,-21/2,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-19/2,-9,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-11,-6,-7,-6,-10,-6,-21/2,-10,-22,-10,-10,-6,-11,-6,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-42,-20,-20,-13,-20,-11,-13,-10,-18,-9,-19/2,-7,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-7,-4,-11/2,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-18,-9,-19/2,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-9/2,-6,-4,-8,-5,-8,-15/2,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-15/2,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-6,-11,-13/2,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-11,-11/2,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-41,-20,-20,-13,-20,-10,-12,-10,-18,-9,-9,-13/2,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-13/2,-14,-7,-7,-5,-7,-4,-6,-5,-11,-11/2,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-11,-14,-12,-23,-15,-23,-23,-46,-23,-23,-15,-23,-12,-15,-13,-25,-13,-15,-11,-20,-12,-18,-18,-36,-18,-19,-13,-21,-12,-16,-15,-29,-15,-17,-14,-25,-16,-25,-24,-49,-24,-25,-17,-26,-15,-19,-16,-30,-16,-18,-14,-24,-15,-22,-21,-42,-21,-23,-17,-28,-17,-23,-21,-41,-22,-26,-21,-39,-25,-37,-37,-71,-35,-34,-22,-34,-18,-22,-18,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-16,-11,-19,-11,-14,-12,-24,-12,-14,-11,-20,-13,-19,-18,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,4,6,5,7,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-2,-3,-4,-83,-41,-41,-27,-42,-23,-28,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-17,-15,-28,-15,-17,-14,-25,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-25,-13,-15,-12,-21,-13,-19,-18,-37,-18,-19,-14,-23,-13,-17,-15,-29,-15,-18,-15,-27,-18,-27,-27,-55,-27,-27,-18,-28,-15,-19,-15,-28,-14,-16,-12,-21,-13,-19,-18,-35,-17,-18,-12,-20,-11,-15,-13,-25,-13,-15,-11,-19,-12,-17,-17,-35,-17,-17,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-15,-14,-29,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,-24,-12,-12,-8,-12,-7,-10,-9,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-38,-19,-20,-14,-22,-12,-16,-14,-27,-14,-15,-11,-20,-13,-19,-18,-36,-18,-19,-14,-24,-15,-21,-20,-39,-21,-26,-22,-40,-27,-41,-41,-83 -1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-11/2,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-17/2,-18,-17/2,-8,-5,-9,-9/2,-6,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-3/2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-23,-11,-12,-7,-12,-6,-8,-6,-12,-6,-7,-11/2,-10,-6,-9,-9,-18,-9,-9,-13/2,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-9,-4,-5,-9/2,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-10,-6,-21/2,-11,-23,-11,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-15,-8,-17/2,-6,-12,-8,-23/2,-12,-25,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-21/2,-10,-20,-10,-11,-8,-13,-8,-21/2,-10,-20,-10,-25/2,-10,-19,-12,-37/2,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-15,-7,-8,-5,-8,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-9,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1,2,3,2,2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-17/2,-7,-13,-8,-13,-13,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-8,-4,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-20,-20,-41 -1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-9/2,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-23,-11,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-6,-7/2,-5,-4,-9,-9/2,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-7/2,-6,-3,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27 -1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-10,-11,-24,-11,-11,-7,-23/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-7,-15,-7,-8,-6,-23/2,-7,-11,-11,-25,-12,-12,-8,-23/2,-6,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-9,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-41,-20,-20,-13,-39/2,-11,-14,-11,-22,-11,-11,-8,-27/2,-8,-11,-11,-20,-10,-10,-6,-21/2,-6,-8,-7,-15,-8,-10,-8,-27/2,-8,-12,-11,-24,-11,-11,-7,-23/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-9,-6,-21/2,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-26,-13,-13,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-6,-19/2,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-5,-11,-5,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-11/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-41 -1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-11/2,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-10,-11/2,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,3/2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-13/2,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-11/2,-5,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-28,-14,-14,-9,-13,-7,-17/2,-7,-15,-7,-7,-5,-8,-5,-8,-7,-12,-6,-7,-5,-7,-4,-11/2,-5,-10,-5,-6,-4,-9,-5,-15/2,-7,-16,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,0,1,1,1,2,2,3/2,1,2,2,3/2,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-7,-4,-13/2,-6,-13,-7,-9,-7,-14,-9,-27/2,-13,-27 -1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-5/2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -2,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-25,-12,-12,-7,-11,-6,-8,-6,-25/2,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-11,-6,-8,-7,-27/2,-7,-8,-6,-12,-7,-11,-11,-25,-12,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-9,-17,-11,-17,-16,-38,-18,-18,-12,-18,-10,-12,-9,-33/2,-8,-9,-6,-10,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-5,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,11/2,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,9/2,3,3,3,4,3,3,2,0,0,0,0,0,1,1,2,5/2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-43,-21,-21,-14,-22,-12,-15,-12,-22,-11,-12,-8,-14,-8,-12,-11,-19,-9,-10,-7,-12,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-10,-8,-33/2,-8,-10,-7,-12,-7,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-27/2,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-13,-7,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,0,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,0,0,0,1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,0,0,-1/2,0,0,1,2,2,2,2,-1,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-8,-8,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-20,-41 -2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,1/2,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-22,-21/2,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-11/2,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-21 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-6,-17/2,-8,-21,-10,-19/2,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1/2,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-24,-12,-23/2,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-11/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,0,1/2,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-11/2,-15,-7,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,1/2,0,0,1,0,1,1,1,0,0,0,1,2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-17/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,1,1,0,0,1/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-30,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-4,-4,-10,-5,-6,-4,-17/2,-6,-9,-9,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-11,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27 -3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,3,3,2,3,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,5/2,2,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,3/2,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-5,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-13/2,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-11,-6,-7,-6,-11,-7,-11,-11,-23 -4,3,3,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,2,3/2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-9/2,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22 -7,4,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,0,1,1,1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,1,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-7,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-11,-6,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-8,-10,-8,-14,-9,-14,-14,-36,-17,-17,-11,-18,-10,-12,-10,-19,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-9,-16,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,3,11/2,3,2,2,2,2,3,3,4,3,3,2,3,2,1,1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-48,-23,-23,-15,-24,-13,-15,-12,-23,-12,-13,-9,-15,-9,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-8,-35/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-11,-7,-12,-7,-11,-10,-20,-11,-13,-11,-20,-14,-22,-22,-45 -4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 -4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-4,-2,-9/2,-4,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-6,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-11/2,-6,-4,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-7/2,-5,-7/2,-7,-9/2,-7,-8,-17 -4,2,2,2,7/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,1/2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,4,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,1,1/2,1,2,2,0,0,0,1,1,1,0,0,-2,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,3,4,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-12,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5/2,-1,-2,-3,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-11,-6,-7,-6,-23/2,-8,-13,-13,-27 -3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-3/2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -3,2,5/2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,2,2,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,5/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-3,-5,-5,-9,-5,-6,-4,-8,-5,-9,-9,-20 -3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,-18,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -6,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-23,-11,-10,-6,-10,-5,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-11,-9,-17,-9,-10,-7,-12,-7,-9,-8,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,-1,-7/2,-2,-2,-2,-4,-2,-4,-5,-5,-2,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-2,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-35 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-11/2,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-11/2,-9,-9,-18 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3,3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,1/2,1,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,1,1,1,1,1,1,1/2,0,0,0,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-11,-6,-13/2,-5,-10,-5,-6,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-10,-21 -3,2,3,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,7/2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,7/2,3,4,4,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,6,4,4,3,3,2,2,2,2,1,1,1,3/2,1,0,0,2,1,1,1,1,1,2,2,0,1,1,1,3/2,1,1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,2,2,3/2,1,0,0,2,2,2,1,1,1,0,0,0,1,1,1,3/2,2,2,2,0,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-28,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-2,-3,-3,-14,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -4,5/2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1,-3,-2,-3,-2,-18,-8,-8,-5,-9,-9/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19 -6,4,7/2,3,4,2,5/2,2,3,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,7/2,3,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3/2,1,2,1,1/2,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-13,-7,-8,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-8,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-14,-6,-6,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-7,-19/2,-8,-14,-9,-14,-14,-29 -6,4,4,3,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-2,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-13,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-9,-15/2,-14,-9,-14,-14,-28 -12,7,7,5,6,4,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,2,1,1,0,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,2,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-15,-7,-8,-5,-8,-4,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,0,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-9,-6,-9,-9,-50,-24,-24,-15,-23,-12,-15,-12,-23,-12,-13,-9,-15,-9,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-15,-9,-13,-13,-27,-13,-14,-9,-15,-8,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-5,-9,-9,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-12,-13,-9,-16,-10,-14,-14,-28,-15,-18,-15,-28,-18,-28,-28,-57 -6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,6,4,4,5/2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-8,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-28 -6,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,3,2,7/2,4,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,6,4,7/2,2,4,3,7/2,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,-1/2,-2,0,0,0,-2,0,0,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-9/2,-9,-6,-9,-9,-19 -6,4,4,3,5,3,4,4,4,3,3,3,4,3,4,3,5,3,3,2,5/2,2,1,1,1,1,1,1,3/2,2,2,2,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,5/2,2,4,4,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,7,4,3,2,3,2,3,3,6,4,4,3,9/2,3,3,2,3,2,3,2,3,2,2,2,3,2,1,1,1/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,0,-3,-1,-2,-1,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-7/2,-2,-4,-4,-25,-12,-11,-7,-21/2,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,0,1,1,1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-14,-6,-6,-4,-13/2,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-13,-7,-9,-8,-15,-10,-15,-15,-30 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,5/2,1,1,2,1,2,1,1,1,2,2,2,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -4,3,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,3,2,2,3/2,1,2,1,1,1,3,2,2,1,2,2,3/2,2,5,3,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,1,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,2,2,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-3/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-17,-8,-15/2,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-3/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,1/2,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21 -3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,3/2,1,1,1,1,1,3/2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,7,4,5,4,5,3,3,2,3,2,3,2,3,2,1,1,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,1,1,0,1,1,1,5,3,3,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,0,0,0,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,6,4,4,3,4,2,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-28,-13,-13,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-27/2,-7,-8,-7,-14,-9,-15,-15,-32 -3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,1/2,0,1/2,0,1/2,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-5,-2,-3,-2,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-2,-1/2,-1,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-17 -4,3,3,2,2,2,5/2,2,4,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,4,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,2,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,2,4,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-6,-3,-3,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,0,-2,0,-1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-19 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 -6,4,4,3,7/2,3,4,3,4,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,1,1,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,7/2,3,4,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,-1,-8,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-2,-2,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-17,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,3/2,2,2,2,3,2,2,1,1,1,1,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-7,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,3,3,3,2,3,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,5,3,4,3,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,-1,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-13/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3/2,0,-2,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-4,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,3,2,3/2,1,2,2,3/2,2,1,1,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,0,0,1,1,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 -8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,4,6,6,8,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,9/2,3,4,3,4,2,2,2,3,2,1,1,1,1,2,2,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-31,-15,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,-1,-7/2,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-11,-21,-13,-20,-20,-42 -4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,1,1,2,3/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,1/2,0,1/2,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 -4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,4,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,5/2,2,4,2,5/2,2,1,1,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-11,-7,-11,-11,-23 -3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,2,1,0,0,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 -4,2,2,2,5/2,2,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,7/2,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,9/2,2,2,2,4,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,3,6,4,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3/2,1,1,1,5,3,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-18,-9,-9,-6,-17/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-3,-2,-4,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-27 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 -3,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,3,4,3,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,6,3,3,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,4,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-12,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-5/2,-3,-7,-3,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,1,-1,0,1/2,0,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-11,-7,-11,-11,-22 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,3,2,2,3/2,2,2,2,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-13/2,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,3/2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-9/2,-6,-5,-10,-6,-10,-10,-20 -6,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,7/2,2,2,2,4,3,5,5,9,5,5,4,5,3,2,2,5/2,2,2,2,2,2,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,3,4,4,9,5,5,4,7,5,6,5,15/2,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,7,4,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-27,-13,-13,-9,-14,-7,-9,-8,-29/2,-7,-7,-5,-8,-4,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-22,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1/2,1,2,2,2,2,2,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,2,2,3,2,3,2,3,2,3,2,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-10,-6,-9,-8,-35/2,-10,-12,-10,-18,-12,-19,-19,-40 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,5/2,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-7/2,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1,-3,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,3,6,4,7/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,3,2,5/2,3,6,4,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,3,5,3,3,2,3,2,3,2,3,2,3,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-15/2,-6,-11,-8,-25/2,-12,-26 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,3,3,5/2,3,3,4,3,3,2,3,2,2,5/2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21 -6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9/2,4,5,5,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,3,3,4,3,3,2,3,2,3,3,2,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-23,-11,-12,-8,-25/2,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,1,3/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-9/2,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-20,-10,-10,-6,-21/2,-5,-6,-5,-8,-4,-5,-4,-13/2,-4,-5,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,2,2,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-19,-10,-12,-10,-18,-12,-18,-18,-38 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-5/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-25 -4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-15/2,-8,-23,-11,-23/2,-8,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,-1,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,2,2,3/2,2,3,2,5/2,2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-17/2,-9,-16,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-13/2,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-19/2,-9,-18,-10,-12,-10,-18,-12,-37/2,-19,-39 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,7/2,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-9,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-11,-13/2,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-39 -7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,6,6,10,7,9,9,33/2,9,10,7,10,6,7,6,10,5,5,4,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,3,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,0,0,1,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-10,-6,-9,-9,-18,-9,-11,-9,-16,-10,-16,-16,-46,-22,-22,-14,-22,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-42,-20,-20,-13,-20,-11,-13,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-8,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,4,-19,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-8,-10,-8,-16,-11,-18,-18,-34,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-28,-14,-14,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-14,-11,-20,-13,-19,-19,-38,-19,-21,-15,-24,-14,-20,-19,-39,-21,-25,-21,-38,-25,-38,-39,-79 -4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-3/2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-11/2,-7,-6,-11,-5,-5,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,1/2,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-9,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-39 -5,3,5/2,2,2,2,3/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,5/2,2,5,3,7/2,4,5,4,9/2,5,9,5,5,4,5,3,3,3,5,3,7/2,3,3,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,3,7,4,4,3,4,3,4,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-6,-15/2,-6,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-20,-10,-10,-6,-10,-5,-7,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,0,0,0,1,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-9,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1/2,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27 -5,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,5,3,2,2,5/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,1/2,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-6,-9,-9,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,1/2,1,1,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,2,2,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-17/2,-4,-5,-4,-9,-4,-4,-3,-13/2,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-8,-18,-9,-10,-6,-21/2,-6,-8,-7,-13,-7,-8,-6,-21/2,-6,-10,-9,-20,-10,-10,-7,-25/2,-7,-10,-10,-19,-10,-13,-10,-39/2,-13,-20,-20,-42 -3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,3/2,0,1,1,1,1,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-7,-11/2,-10,-7,-11,-11,-23 -4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,2,2,3,2,3/2,2,2,2,5/2,3,4,3,3,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,2,1,1/2,0,1,1,2,2,1,1,3/2,1,1,1,3/2,1,2,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-7/2,-4,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,1,1,1,3/2,2,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-12,-6,-6,-4,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-3,-6,-3,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-17/2,-7,-13,-8,-27/2,-14,-29 -3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24 -5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,2,3,2,3,3,9/2,3,4,3,5,4,5,5,5,3,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,2,5/2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-2,0,0,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-1,0,0,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,2,2,6,3,3,2,2,2,2,2,5/2,2,1,1,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-4,-5,-4,-9,-6,-9,-10,-20,-9,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-24,-12,-13,-9,-15,-9,-12,-11,-45/2,-12,-14,-12,-22,-14,-22,-22,-44 -3,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-7,-6,-11,-7,-11,-11,-23 -3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,2,2,2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-13,-8,-25/2,-12,-26 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19 -3,2,3,2,3,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,4,4,6,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-15/2,-4,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,5,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-8,-8,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-10,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-8,-16,-9,-11,-9,-33/2,-10,-16,-16,-33 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,3,2,5/2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-13/2,-7,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-4,-3,-8,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-8,-19/2,-8,-14,-9,-14,-14,-29 -2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,3,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1/2,0,1/2,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-13/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-28 -3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,17/2,4,4,3,5,3,3,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-33/2,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,11/2,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-4,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-2,-1,-2,0,0,0,0,1,2,2,3,2,2,2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-3,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-19,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-14,-15,-11,-18,-11,-15,-14,-27,-14,-17,-14,-27,-18,-27,-28,-57 -2,2,2,1,2,2,2,2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-13,-7,-8,-7,-13,-9,-14,-14,-29 -2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,5/2,2,2,2,3/2,2,3,2,3,3,3,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-12,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,0,0,0,1,1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1/2,0,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-2,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-8,-5,-9,-5,-15/2,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-30 -2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 -3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,7/2,2,3,3,2,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,5/2,2,2,3,1,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,1,2,1,1,1,2,2,2,2,-4,-2,-2,0,-1/2,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,0,-1/2,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-9/2,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,0,1,1,1,1/2,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,3,2,3,2,3,3,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-2,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-16,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-16,-11,-17,-17,-34 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-10,-10,-20 -2,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,3/2,1,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,1,1,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-5,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-12,-15/2,-12,-12,-24 -1,1,1,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,-1,0,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,0,1,1,1,1/2,0,0,1,1,1,1,0,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-11,-7,-11,-11,-20,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,7/2,2,3,2,3,3,4,4,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,2,2,3/2,1,1,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-21/2,-6,-7,-5,-10,-6,-9,-9,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-22,-11,-12,-9,-15,-8,-11,-10,-20,-11,-13,-11,-22,-15,-23,-23,-46 -1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1/2,1,1,1,1,1,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-8,-4,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-25 -1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,5/2,2,4,2,3/2,1,2,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,1,1,1,2,2,3,2,2,1,1,1,3/2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-5,-9,-5,-6,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 -0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1/2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,1/2,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,7/2,2,3,3,5,3,3,2,5/2,2,2,1,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,-6,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-12,-6,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3,-13/2,-4,-6,-6,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-17,-8,-7,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,1,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,2,2,5,3,3,2,3,2,3,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,2,1,0,0,-1/2,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,0,-1/2,0,0,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-7,-25/2,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-40 --1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1/2,0,0,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-26 --3,-1,-1,0,-1,0,1/2,0,0,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,7/2,4,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,4,2,5/2,2,4,3,3,3,5,3,2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-11,-7,-21/2,-10,-20,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-5/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-15,-7,-13/2,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3,3,-6,-2,-2,-1,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-9,-9,-9,-4,-9/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-19,-19,-39 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,4,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-11,-11/2,-6,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-8,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-11,-13,-10,-19,-25/2,-19,-19,-38 --7,-3,-2,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,4,7,4,5,5,8,5,7,7,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,8,4,4,3,5,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-10,-13,-11,-21,-14,-22,-22,-40,-20,-20,-13,-21,-11,-14,-11,-20,-10,-11,-7,-12,-7,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-9,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,0,1,1,1,1,1,2,2,3,4,7,4,3,2,3,2,2,2,3,2,3,3,5,4,5,5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-18,-9,-9,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-9,-4,-5,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-10,-18,-11,-17,-17,-34,-17,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-38,-38,-77 --3,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,3,5/2,4,3,3,3,3,2,3,3,4,3,3,2,4,3,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,3,6,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1/2,0,0,-2,-1,-1,-1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-2,-4,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-9/2,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-19,-19,-38 --3,-1,-1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-3,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,5/2,2,4,2,2,2,4,3,3,3,3,2,2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-4,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-14,-6,-13/2,-4,-7,-3,-3,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-12,-7,-9,-9,-19,-10,-25/2,-10,-18,-12,-19,-19,-39 --2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 --4,-1,-1,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,3,-5,-2,-2,-1,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,5,3,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,3,2,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-6,-25/2,-8,-13,-13,-23,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-11/2,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,7/2,2,3,3,4,3,3,2,5/2,2,3,3,7,4,4,3,7/2,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-5,-19/2,-6,-10,-10,-12,-6,-6,-4,-11/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-7,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-8,-17,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-39/2,-13,-20,-20,-41 --2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-9/2,-9,-9/2,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,4,3,3,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,5,3,7/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-17/2,-7,-14,-9,-14,-14,-29 --3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1/2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1/2,0,1/2,1,1,2,2,2,3/2,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,1,0,0,0,1,1,1,4,2,2,2,3,2,2,2,5/2,2,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,-6,-2,-1,0,0,1,1,1,3/2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,2,2,2,1,0,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,1,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-29,-14,-14,-9,-13,-7,-8,-7,-29/2,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-3,-4,-4,-8,-5,-8,-8,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,3,3,4,4,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,0,1,2,2,3,3,4,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,-1/2,0,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-8,-6,-12,-8,-12,-13,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-3,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-8,-7,-27/2,-7,-8,-6,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-12,-15,-13,-24,-16,-24,-23,-47 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,3,2,3/2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,5,3,7/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,3,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-27/2,-14,-28 --1,0,0,0,0,1/2,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-4,-2,-2,-1,-2,0,0,-1/2,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-13/2,-10,-10,-21 --3,-1,-1,0,-1,0,0,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,2,2,5/2,2,2,1,0,0,0,1,3/2,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,-4,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,3,2,3,3,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,3,-1,0,0,0,1/2,0,0,1,3,2,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-14,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-6,-6,-11,-5,-6,-5,-9,-6,-9,-8,-16,-8,-8,-6,-23/2,-6,-9,-9,-16,-9,-11,-9,-18,-12,-18,-18,-37 --1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23 --2,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1/2,1,-3,-1,-1,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,2,2,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,-1,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-21/2,-7,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,4,3,7/2,3,1,1,1/2,0,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-11/2,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-11/2,-6,-13,-6,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-14,-8,-19/2,-8,-15,-10,-16,-16,-33 --2,0,0,0,-1,0,0,1,1,1,0,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-13/2,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,2,2,2,3,5/2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-15,-15,-32 --6,-2,-2,-1,-2,0,1,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-39/2,-10,-11,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-45,-22,-22,-14,-22,-12,-14,-11,-20,-10,-11,-8,-14,-8,-12,-11,-21,-11,-12,-8,-14,-8,-11,-9,-18,-9,-11,-9,-16,-10,-15,-14,-29,-14,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-27,-13,-12,-8,-12,-6,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-6,-29/2,-7,-7,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,2,1,1,1,1,1,1,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15/2,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,11/2,3,3,2,2,2,3,3,4,3,3,3,6,4,5,5,1,1,1,1,2,1,1,1,0,1,1,2,3,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-8,-15,-10,-17,-17,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-31,-15,-16,-12,-20,-12,-17,-15,-30,-16,-20,-16,-30,-20,-30,-31,-63 --2,0,0,0,0,1/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-32 --2,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,-1,-1,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-25,-12,-23/2,-7,-12,-6,-7,-6,-11,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-11/2,-4,-9,-5,-15/2,-8,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-2,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,0,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-9/2,-2,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-9,-16,-10,-16,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-7,-9/2,-8,-4,-6,-6,-11,-6,-8,-6,-12,-15/2,-12,-12,-25 --3,-1,0,0,-1/2,0,0,1,0,0,0,0,1/2,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,-1/2,0,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-27/2,-9,-14,-14,-30,-14,-14,-9,-13,-7,-9,-7,-12,-6,-6,-4,-8,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-10,-6,-19/2,-4,-5,-4,-7,-3,-4,-2,-4,-3,-5,-5,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,2,3,2,1,1,1,1,1,1,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,2,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,1,1,1,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-11/2,-4,-6,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-9,-21,-11,-12,-8,-27/2,-8,-10,-10,-19,-10,-12,-10,-41/2,-13,-20,-20,-41 --2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-11,-5,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-5,-12,-6,-7,-9/2,-8,-9/2,-6,-6,-11,-6,-7,-6,-12,-8,-12,-12,-24 --3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24,-11,-11,-7,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,3,5,3,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-6,-12,-6,-11/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-6,-17/2,-8,-17,-8,-19/2,-6,-12,-7,-19/2,-8,-16,-8,-10,-9,-17,-11,-16,-16,-33 --2,-1/2,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-21/2,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-16,-8,-8,-6,-11,-6,-8,-8,-15,-8,-10,-8,-15,-10,-15,-15,-30 --5,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-7,-3,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-6,-6,-25/2,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-8,-14,-8,-11,-10,-41/2,-11,-13,-11,-20,-13,-21,-21,-44,-22,-22,-14,-22,-12,-14,-11,-39/2,-10,-10,-7,-12,-7,-11,-11,-21,-10,-10,-7,-12,-7,-10,-8,-33/2,-8,-10,-8,-14,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-6,-8,-8,-16,-8,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-29,-14,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-15,-7,-8,-5,-9,-5,-6,-5,-19/2,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1/2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,4,4,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,3,3,2,2,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,7/2,2,2,2,4,3,4,4,8,4,4,2,2,1,1,1,3/2,1,1,1,2,2,3,3,6,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,1,1/2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-16,-9,-11,-10,-39/2,-10,-12,-9,-17,-10,-15,-15,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-17,-31,-20,-30,-29,-59 --2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24,-12,-12,-15/2,-12,-6,-7,-11/2,-10,-5,-5,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-16,-16,-32 --2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,1,-1,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,-1,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-6,-12,-8,-27/2,-14,-28,-14,-14,-9,-14,-7,-9,-7,-12,-6,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-3,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-10,-10,-22,-11,-11,-8,-14,-8,-21/2,-10,-21,-11,-27/2,-11,-20,-13,-39/2,-19,-39 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-7,-7,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-3/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-13/2,-12,-6,-8,-8,-17,-9,-11,-9,-16,-21/2,-16,-16,-33 --2,0,0,0,-1/2,0,-1,-1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-7,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-39/2,-13,-20,-20,-42,-20,-20,-13,-41/2,-11,-14,-11,-20,-10,-10,-7,-12,-7,-10,-10,-22,-11,-11,-8,-25/2,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-8,-12,-7,-9,-8,-16,-8,-8,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-21/2,-6,-9,-8,-14,-7,-8,-7,-27/2,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-15/2,-4,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-10,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,3,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,6,5,9,5,5,4,9/2,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,7/2,2,3,2,3,2,2,2,7/2,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-15/2,-4,-6,-5,-13,-7,-8,-6,-25/2,-8,-13,-13,-27,-13,-14,-9,-27/2,-7,-9,-7,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-9,-7,-15,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-23/2,-6,-8,-7,-15,-8,-10,-8,-15,-9,-14,-14,-29,-14,-14,-10,-16,-9,-11,-10,-21,-11,-12,-10,-35/2,-11,-16,-16,-32,-16,-18,-13,-43/2,-12,-17,-15,-31,-17,-20,-16,-61/2,-20,-30,-30,-60 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-11,-6,-7,-6,-14,-7,-8,-6,-12,-7,-10,-10,-21,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-21/2,-20,-13,-20,-20,-40 --2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-6,-11,-6,-19/2,-10,-19,-10,-21/2,-8,-14,-8,-21/2,-10,-20,-11,-27/2,-11,-20,-13,-20,-21,-42,-20,-41/2,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-12,-6,-17/2,-8,-15,-8,-19/2,-8,-14,-8,-12,-12,-25,-12,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-12,-7,-19/2,-9,-18,-9,-19/2,-7,-11,-6,-8,-8,-14,-7,-17/2,-7,-14,-8,-25/2,-12,-27,-13,-25/2,-8,-12,-6,-17/2,-7,-12,-6,-6,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-7,-4,-13/2,-6,-12,-6,-13/2,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,4,11/2,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,2,2,4,2,5/2,2,3,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,3,4,3,9/2,5,9,5,4,3,3,2,3,2,2,2,3/2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,3/2,1,2,1,1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,1,1,1,1,1,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-9,-14,-7,-17/2,-7,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-15,-7,-8,-5,-8,-5,-7,-7,-13,-7,-9,-7,-12,-8,-12,-12,-26,-12,-25/2,-8,-12,-7,-9,-8,-15,-8,-17/2,-6,-11,-6,-19/2,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-21/2,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-23/2,-10,-21,-11,-25/2,-10,-18,-11,-33/2,-16,-33,-16,-17,-12,-22,-13,-35/2,-16,-31,-17,-20,-16,-31,-20,-30,-30,-60 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-17/2,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-10,-19,-10,-11,-8,-14,-8,-10,-10,-20,-11,-14,-11,-20,-13,-21,-21,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-15/2,-15,-8,-10,-8,-14,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-11,-6,-8,-15/2,-15,-15/2,-9,-7,-14,-17/2,-13,-25/2,-26,-25/2,-12,-8,-12,-6,-8,-7,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-17/2,-18,-8,-8,-11/2,-9,-9/2,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,5,5,9,5,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,2,2,2,2,2,3/2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-13/2,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-13/2,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-15/2,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-12,-10,-20,-21/2,-12,-19/2,-18,-11,-16,-16,-33,-16,-17,-12,-21,-25/2,-17,-16,-31,-17,-20,-16,-31,-20,-30,-30,-61 --5,-2,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-4,-8,-5,-9,-10,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-7,-5,-10,-7,-11,-11,-22,-11,-12,-8,-14,-8,-11,-9,-18,-10,-12,-10,-19,-12,-19,-18,-37,-18,-18,-12,-18,-10,-13,-11,-20,-10,-11,-8,-15,-9,-13,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-7,-11,-11,-22,-11,-11,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-15,-16,-12,-20,-11,-15,-14,-28,-15,-19,-15,-28,-18,-28,-29,-59,-29,-29,-19,-29,-15,-18,-15,-27,-14,-15,-11,-18,-11,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-16,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-16,-10,-14,-14,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-34,-17,-17,-12,-19,-10,-13,-11,-21,-11,-13,-10,-17,-10,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-28,-56,-28,-28,-18,-28,-15,-18,-15,-27,-13,-14,-10,-16,-10,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-11,-8,-15,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-32,-16,-16,-11,-17,-9,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-11,-7,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-29,-16,-19,-16,-29,-19,-30,-30,-60,-30,-30,-20,-31,-17,-21,-17,-32,-16,-16,-11,-19,-11,-16,-15,-30,-15,-15,-11,-18,-10,-12,-11,-21,-11,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-9,-7,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-16,-9,-13,-12,-25,-13,-16,-13,-23,-15,-24,-24,-49,-24,-25,-17,-26,-14,-17,-15,-28,-14,-16,-12,-20,-12,-17,-16,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-20,-16,-29,-19,-28,-27,-55,-27,-28,-19,-31,-17,-22,-19,-37,-19,-22,-17,-29,-18,-27,-26,-53,-27,-28,-20,-32,-19,-26,-24,-48,-26,-31,-25,-46,-31,-47,-47,-94,-47,-47,-31,-48,-26,-31,-26,-47,-24,-26,-19,-31,-18,-25,-24,-47,-23,-24,-16,-25,-14,-19,-17,-32,-17,-19,-15,-28,-17,-25,-25,-50,-25,-25,-17,-27,-15,-18,-15,-28,-14,-16,-12,-21,-12,-17,-16,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-16,-30,-20,-30,-30,-62,-30,-30,-19,-29,-16,-20,-16,-30,-15,-16,-12,-20,-12,-16,-15,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-11,-20,-13,-19,-19,-40,-20,-20,-13,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-14,-14,-28,-14,-14,-9,-15,-9,-12,-10,-20,-11,-13,-11,-20,-13,-20,-20,-41,-20,-21,-14,-22,-12,-14,-12,-22,-11,-13,-10,-17,-10,-15,-14,-29,-15,-16,-11,-19,-11,-14,-13,-25,-13,-16,-13,-23,-14,-21,-20,-41,-20,-21,-14,-23,-12,-15,-13,-25,-13,-14,-10,-18,-11,-17,-16,-32,-16,-18,-13,-21,-13,-19,-18,-35,-19,-23,-18,-33,-22,-33,-33,-67,-33,-34,-23,-35,-19,-23,-20,-37,-19,-21,-16,-27,-16,-22,-21,-41,-21,-22,-16,-26,-15,-20,-18,-35,-19,-22,-18,-33,-22,-33,-32,-65,-32,-33,-22,-35,-20,-26,-23,-43,-23,-26,-20,-35,-23,-34,-33,-67,-34,-36,-26,-42,-25,-35,-33,-64,-35,-41,-34,-62,-41,-61,-61,-123 --2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-5/2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-17/2,-14,-14,-28,-14,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-15/2,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-23/2,-24,-13,-15,-12,-22,-15,-23,-23,-46,-23,-23,-15,-24,-13,-15,-12,-23,-23/2,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-7,-5,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-15/2,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-17/2,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-19/2,-18,-9,-10,-7,-13,-7,-10,-10,-20,-10,-10,-7,-13,-7,-10,-17/2,-17,-9,-10,-17/2,-16,-21/2,-16,-16,-32,-16,-16,-11,-17,-10,-13,-11,-21,-11,-12,-9,-17,-11,-16,-16,-33,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-13/2,-4,-9,-5,-15/2,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-9,-7,-13,-8,-27/2,-14,-28,-14,-27/2,-9,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-14,-9,-29/2,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-15,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-4,-11/2,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-8,-15,-8,-19/2,-8,-14,-9,-13,-13,-27,-13,-27/2,-10,-15,-8,-21/2,-9,-18,-9,-11,-8,-15,-9,-27/2,-13,-26,-13,-27/2,-10,-16,-9,-25/2,-12,-24,-13,-15,-12,-22,-14,-22,-22,-46,-22,-45/2,-15,-24,-13,-31/2,-12,-23,-12,-25/2,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-25/2,-12,-25,-12,-12,-8,-12,-6,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-29/2,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-11,-5,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-21/2,-8,-16,-10,-16,-16,-33,-16,-33/2,-11,-18,-10,-23/2,-10,-17,-9,-10,-7,-12,-7,-21/2,-10,-21,-10,-10,-7,-13,-7,-19/2,-8,-17,-9,-21/2,-9,-17,-11,-16,-16,-32,-16,-16,-11,-18,-10,-13,-11,-21,-11,-12,-9,-17,-11,-33/2,-16,-34,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --1,0,0,0,0,1,1,1,0,0,0,1/2,0,1/2,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20,-19/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-3,-6,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-3,-5,-4,-10,-9/2,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-6,-8,-15/2,-15,-8,-9,-8,-14,-9,-14,-14,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-10,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-5,-10,-6,-10,-10,-22,-21/2,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-13/2,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-12,-6,-8,-7,-13,-13/2,-7,-6,-11,-7,-10,-10,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 --2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-10,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-15/2,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-27/2,-9,-14,-14,-29,-14,-14,-9,-27/2,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-13/2,-3,-4,-3,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-27,-13,-14,-9,-27/2,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-5,-8,-8,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-31/2,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-15,-7,-7,-5,-17/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-9,-8,-15,-8,-9,-7,-27/2,-9,-14,-14,-28,-14,-15,-10,-16,-9,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-22,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-29/2,-8,-12,-11,-22,-11,-11,-7,-12,-7,-9,-8,-15,-7,-8,-6,-25/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-6,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-15,-8,-10,-8,-29/2,-10,-15,-15,-33,-16,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-17/2,-4,-6,-5,-11,-5,-6,-4,-13/2,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-4,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-5,-19/2,-6,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-15,-15,-33,-16,-16,-11,-35/2,-10,-12,-10,-17,-8,-9,-7,-25/2,-8,-11,-10,-21,-10,-11,-8,-25/2,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-31,-15,-16,-11,-35/2,-10,-13,-11,-19,-10,-11,-9,-17,-11,-16,-15,-34,-17,-18,-13,-22,-13,-18,-16,-31,-17,-20,-16,-30,-20,-30,-30,-61 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-6,-9,-5,-6,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-34 --2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-5,-13/2,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-7,-4,-5,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-11/2,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-17/2,-8,-15,-8,-9,-7,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-23,-11,-12,-8,-14,-8,-12,-11,-21,-11,-27/2,-11,-21,-13,-20,-20,-41 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-5,-9,-9/2,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-19/2,-12,-9,-17,-11,-17,-17,-35 --5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,-1,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-5,-19/2,-5,-6,-4,-7,-4,-5,-5,-12,-6,-7,-5,-8,-4,-6,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-29,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-6,-25/2,-6,-8,-6,-12,-8,-13,-13,-25,-12,-12,-8,-12,-6,-7,-6,-23/2,-6,-7,-5,-9,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-33/2,-8,-9,-6,-11,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-8,-17,-8,-8,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-27/2,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-35/2,-9,-10,-8,-14,-8,-12,-12,-28,-14,-14,-9,-15,-9,-12,-11,-22,-12,-14,-12,-23,-15,-22,-22,-46,-22,-22,-15,-23,-12,-15,-12,-22,-11,-11,-8,-13,-8,-11,-10,-24,-11,-11,-7,-12,-7,-9,-8,-15,-8,-9,-7,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-10,-6,-9,-9,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-16,-34,-16,-15,-9,-14,-7,-9,-7,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-18,-9,-9,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-23/2,-6,-6,-5,-9,-6,-9,-9,-23,-11,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-15,-15,-33,-16,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-35/2,-10,-12,-10,-18,-11,-17,-17,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-9,-16,-10,-15,-15,-34,-17,-18,-13,-22,-13,-18,-17,-33,-18,-21,-17,-31,-21,-32,-32,-64 --2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-7/2,-7,-4,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-16,-10,-16,-16,-33 --2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-8,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-7,-7,-5,-7,-4,-5,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-8,-4,-5,-5,-13,-6,-13/2,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-16,-8,-17/2,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-18,-9,-9,-7,-12,-7,-9,-9,-18,-9,-11,-9,-17,-11,-17,-17,-35 --1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-6,-3,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-13/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-4,-6,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26 --3,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-19,-9,-9,-6,-19/2,-5,-6,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-21/2,-6,-10,-10,-19,-9,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-13,-6,-7,-5,-9,-5,-7,-7,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-12,-6,-6,-4,-11/2,-3,-5,-4,-9,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-7,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-10,-6,-21/2,-5,-6,-5,-11,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-25/2,-7,-10,-10,-21,-11,-13,-11,-21,-14,-21,-21,-43 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-5,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-26 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-5/2,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-5/2,-2,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-7,-3,-7/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-25/2,-13,-26,-12,-25/2,-8,-12,-6,-8,-7,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-12,-6,-6,-4,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-9,-17,-11,-35/2,-17,-35 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-9/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-23/2,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --6,-3,-3,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-3,-6,-6,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-7,-13,-6,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-27,-13,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11,-5,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-8,-17,-9,-12,-10,-18,-11,-17,-17,-29,-14,-14,-9,-14,-7,-9,-7,-12,-6,-7,-5,-10,-6,-8,-7,-29/2,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-30,-14,-14,-9,-15,-8,-11,-9,-17,-9,-10,-8,-14,-9,-13,-12,-51/2,-13,-14,-10,-17,-10,-13,-12,-24,-13,-15,-13,-24,-16,-24,-24,-47,-23,-23,-15,-22,-12,-15,-13,-24,-12,-13,-9,-14,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-9,-8,-17,-9,-10,-7,-13,-8,-12,-12,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-10,-15,-8,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-23/2,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-7,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-29/2,-7,-8,-5,-8,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-9,-16,-10,-16,-15,-32,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-7,-13,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-29,-14,-15,-10,-16,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-59/2,-14,-15,-11,-18,-11,-15,-14,-28,-16,-20,-17,-31,-20,-31,-31,-64 --2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-8,-4,-4,-7/2,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,-32 --2,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,0,1,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,3,2,2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,1,1,1,-2,0,-1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-3,-1,-3/2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-23,-11,-23/2,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-11,-5,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-5,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-3/2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-11,-7,-11,-11,-23 --3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-9,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-5/2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-7/2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-19/2,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-5,-6,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-13,-7,-8,-7,-27/2,-9,-14,-14,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-9,-5,-7,-6,-11,-7,-11,-11,-18,-9,-9,-6,-19/2,-5,-7,-6,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-36 --1,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,0,0,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-17/2,-7,-13,-8,-25/2,-13,-27 --1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --2,-1,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,1,1,2,2,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-4,-5,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-20,-9,-9,-6,-10,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-11,-17,-17,-28,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-15/2,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-25/2,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-31/2,-8,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-14,-11,-21,-14,-22,-22,-45 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-4,-8,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-24 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,-2,0,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-7/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 --2,0,0,0,1/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1/2,0,0,0,1,1,2,2,3/2,1,0,0,-6,-2,-2,-2,-7/2,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-17,-8,-8,-5,-9,-4,-5,-4,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-12,-8,-23/2,-6,-7,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-4,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-12,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-13/2,-4,-5,-5,-13,-6,-7,-5,-17/2,-4,-6,-5,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-9,-9,-19,-9,-10,-7,-13,-7,-9,-8,-17,-9,-12,-10,-35/2,-11,-17,-17,-36 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-13,-8,-25/2,-13,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-11,-7,-10,-10,-21,-10,-9,-6,-10,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-19/2,-6,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-17/2,-8,-17,-9,-21/2,-8,-16,-10,-33/2,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-5,-3,-5,-9/2,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-9/2,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-16,-17/2,-10,-8,-16,-10,-16,-16,-33 --2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-37/2,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-8,-4,-4,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-13,-8,-12,-12,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-12,-7,-11,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-10,-16,-16,-34,-17,-17,-11,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-7,-8,-6,-12,-7,-10,-9,-37/2,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-24,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-25,-25,-42,-20,-20,-13,-19,-10,-13,-10,-19,-9,-10,-7,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-6,-8,-7,-15,-7,-7,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-25,-12,-13,-9,-15,-9,-13,-12,-24,-12,-14,-11,-20,-13,-20,-20,-42,-21,-21,-14,-21,-11,-14,-11,-20,-10,-11,-9,-16,-10,-14,-13,-25,-12,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-11,-17,-18,-37,-19,-20,-14,-22,-12,-16,-14,-26,-13,-15,-12,-22,-14,-20,-19,-38,-19,-20,-15,-25,-15,-20,-18,-34,-18,-22,-18,-33,-22,-33,-33,-66 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-4,-3,-6,-4,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-13/2,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 --1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-6,-2,-5/2,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-4,-3,-6,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-8,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-11/2,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-8,-15/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-15/2,-6,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-19/2,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-11/2,-11,-7,-10,-10,-22 -0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-11/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,1/2,0,0,0,3,2,2,2,3/2,2,2,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-11,-6,-7,-6,-21/2,-7,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-23/2,-7,-10,-9,-18,-10,-12,-10,-35/2,-11,-17,-17,-34 -1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-2,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,1/2,0,1,1,1/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,1/2,1,0,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 -1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-3/2,-1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-13/2,-10,-10,-21 -1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,1,1,1,2,2,2,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,4,3,3,2,3,2,2,1,1/2,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-13,-6,-6,-4,-6,-3,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-14,-7,-8,-7,-27/2,-7,-8,-6,-10,-5,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-25/2,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-15,-7,-8,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-9,-9,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-8,-13,-8,-12,-11,-43/2,-12,-14,-11,-21,-13,-20,-20,-40 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-11,-6,-7,-11/2,-11,-7,-10,-10,-21 -2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-1,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1/2,0,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-4,-4,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-4,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-11,-23 -2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-8,-17 -2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,3/2,1,0,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-3,-4,-4,-15/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-15/2,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-8,-9,-8,-15,-9,-14,-14,-29 -2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-5,-4,-9,-5,-8,-8,-18 -3,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-1,0,0,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1/2,0,1,1,0,0,-1,0,1/2,0,2,2,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-9/2,-4,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-6,-13,-8,-12,-12,-25 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 -4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-4,-7,-7,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-12,-8,-12,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-12,-12,-33,-16,-15,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-27/2,-6,-7,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-7,-13,-7,-9,-7,-13,-8,-11,-11,-23,-12,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23 -3,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-17,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-19,-9,-9,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-9,-4,-5,-3,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-7,-8,-6,-12,-8,-13,-13,-26 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15 -3,2,2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,3,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-19/2,-9,-19 -3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-3/2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-5,-3,-7,-4,-5,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-17 -5,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-4,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,7/2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-10,-5,-7,-6,-21/2,-5,-5,-4,-7,-4,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-15/2,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-11,-17,-17,-34 -4,5/2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-7/2,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18 -5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-11,-22 -5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-13,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-11/2,-9,-9,-18 -8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-3,-2,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,0,-1/2,0,0,0,-1,0,1,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,7/2,2,3,3,4,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,1,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-8,-8,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-8,-4,-5,-4,-17/2,-6,-9,-9,-25,-12,-12,-7,-19/2,-5,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-17/2,-5,-8,-8,-14,-7,-7,-4,-15/2,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-23/2,-6,-9,-8,-19,-10,-12,-9,-33/2,-10,-16,-16,-33 -6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-11/2,-16,-8,-8,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 -8,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,3,4,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-17/2,-8,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,4,2,2,2,2,2,5/2,3,5,3,3,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-25,-12,-23/2,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-11/2,-4,-7,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-11,-6,-17/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-16,-32 -8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-5/2,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-24,-23/2,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-9,-10,-8,-15,-10,-15,-15,-31 -15,8,8,5,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-17,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-11,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,1,1,1,2,2,4,3,3,3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-37,-18,-19,-13,-20,-11,-13,-11,-22,-11,-13,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-9,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-31/2,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-15,-7,-8,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-49,-24,-23,-15,-23,-13,-16,-13,-24,-12,-13,-10,-17,-10,-13,-12,-24,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-30,-15,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-11,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-16,-9,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-10,-9,-19,-10,-11,-9,-17,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-15,-30,-15,-17,-12,-20,-12,-16,-15,-31,-17,-20,-17,-32,-21,-31,-31,-62 -8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-8,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-17/2,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-9,-9,-24,-23/2,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -7,4,9/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-8,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,-1,-2,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,5/2,2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-10,-5,-5,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-5,-9,-5,-6,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,2,2,7/2,2,3,3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-14,-7,-7,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-26,-13,-13,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-7,-16,-8,-10,-8,-29/2,-10,-15,-15,-30 -4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1/2,0,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-11/2,-6,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-21 -4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,0,1,1,1,2,2,2,2,5/2,2,2,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-7,-5,-8,-8,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,3/2,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,-5,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-4,-4,-4,-8,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-27,-13,-13,-9,-14,-7,-8,-6,-25/2,-6,-6,-4,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-15,-10,-16,-16,-33 -4,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -3,2,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,1,1,1/2,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,1,2,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19 -2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,1,2,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 -3,2,2,2,5/2,2,2,2,4,2,2,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,-1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-2,-11/2,-3,-5,-5,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,1,1/2,1,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,2,2,2,2,1,1,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,1,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7/2,3,4,4,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,1,3/2,2,2,2,2,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-3,-3,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-21/2,-7,-11,-11,-24 -2,1,1,1,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-15 -2,1,1,1,2,2,3/2,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,-2,0,0,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-2,-3,-2,-4,-2,-4,-5,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,3/2,2,2,2,2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-6,-6,-15,-7,-15/2,-4,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-19/2,-10,-21 -2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,2,3,5/2,4,3,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,1/2,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-13/2,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20 -3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,1,1/2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5/2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-23/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-13,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-8,-5,-9,-5,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-40 -2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1/2,-1,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-2,-1,-2,-1,-3,-3/2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-20 -2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,1,1,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,7/2,3,4,3,4,4,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-13/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,1,1,0,0,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-10,-6,-19/2,-10,-20 -2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,0,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,9/2,4,5,5,0,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-16,-7,-7,-4,-6,-3,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-2,-3,-2,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-21 -2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,-1/2,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-3,-5,-5,-12 -2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,1,1,2,2,2,2,2,1,2,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,4,3,4,4,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 -1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,2,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,3,2,2,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,2,3,7,4,3,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,3,5,3,4,3,5,3,3,3,7,4,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,2,2,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-5,-10,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-6,-11,-7,-12,-12,-26 -1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,1/2,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-14 -1,1,1,1,2,2,3/2,2,0,0,1/2,1,2,2,2,2,0,1,1,1,0,1,3/2,2,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,2,1,1,1,0,1,3/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,3,2,5/2,2,5,3,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,9/2,4,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-5,-8,-8,-17 -1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,0,1,1,1,0,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-7/2,-6,-6,-13 -0,0,0,0,1/2,1,2,2,0,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1/2,0,0,0,-3,-1,-1,0,-1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,2,3/2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,2,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,4,3,7/2,3,4,4,7,4,4,3,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,3,3,2,4,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,-1,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-3/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,0,1,1,1,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,6,4,9/2,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,5,5,7,4,9/2,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-1,0,1/2,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-5,-13,-6,-13/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-11,-23 --2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,0,1,0,1,1,2,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,4,7,4,4,7/2,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,7/2,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-1,0,0,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-11/2,-10,-6,-10,-11,-23 --5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,1,1,2,2,2,1,1,1,2,2,5/2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,3,3,4,4,6,3,3,3,4,3,4,5,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,4,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,1,2,2,2,2,4,3,4,4,7,4,5,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,4,5,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,4,4,7,5,6,5,8,5,7,7,27/2,7,7,5,8,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,3,5,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-11,-6,-8,-7,-15,-8,-10,-9,-17,-11,-18,-18,-29,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-14,-14,-59/2,-14,-15,-10,-16,-9,-12,-10,-20,-10,-12,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-47 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,5/2,3,5/2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,5,3,4,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,3/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,1,1,1,0,1,3/2,2,2,1,1/2,0,2,2,3/2,1,1,1,3/2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,2,2,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,7,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,7/2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,4,6,4,5,5,7,4,9/2,4,5,3,7/2,3,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-16 --3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,0,0,0,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,3/2,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,7/2,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,4,4,11/2,4,6,6,6,4,4,3,7/2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,5,4,13/2,4,6,6,8,5,5,3,4,3,3,3,4,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-5,-4,-6,-3,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-25 --1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,2,3/2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,3,0,0,0,1,1,1,1/2,0,2,1,1,1,2,2,3/2,2,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,2,2,0,0,0,1,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16 --3,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,4,3,3,2,3,2,2,2,3/2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,2,5/2,1,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,15/2,4,5,4,6,4,6,7,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13/2,4,4,4,7,5,8,8,11,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,5,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-20,-9,-9,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-3,-14,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-31 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,5,5,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 --2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,4,9/2,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,1,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-8,-18 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,3/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 --2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,2,7/2,2,2,2,4,2,2,2,3/2,2,2,1,3,2,2,1,1/2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,0,0,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,5,3,3,2,7/2,2,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,7/2,3,4,4,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,5,5,6,4,4,3,9/2,3,3,3,5,3,4,3,4,3,4,4,4,2,2,2,7/2,2,3,3,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,5/2,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,2,2,2,3/2,1,1,1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-17/2,-4,-6,-6,-12,-6,-8,-6,-25/2,-8,-13,-13,-26 --1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,3/2,2,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,3,2,3,5/2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1/2,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-16 --2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,1,1,1,1,1,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,2,1,1/2,1,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,1,1,3/2,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,3,3,9/2,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,7/2,3,4,2,2,2,4,2,2,2,3,2,7/2,4,8,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,7/2,3,3,2,7/2,4,4,3,3,3,4,3,4,4,7,4,9/2,4,7,5,7,7,11,6,6,4,5,3,7/2,3,5,3,7/2,2,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-2,-6,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1/2,0,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-9/2,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-12,-7,-11,-11,-23 --4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,3/2,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,4,4,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,11/2,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,3,3,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9/2,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,5/2,2,2,3,5,3,4,4,8,5,5,4,7,5,8,8,6,4,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,16,9,9,6,8,5,7,6,10,6,7,5,8,5,6,5,17/2,4,4,3,5,4,5,5,9,6,7,6,10,7,9,9,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,17/2,5,6,4,6,4,5,5,10,6,7,6,10,7,10,11,19,10,10,7,9,5,5,4,7,4,5,4,5,3,4,4,15/2,4,4,3,4,3,4,3,5,3,3,2,3,2,2,1,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,7/2,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-14,-9,-14,-14,-28,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-6,-21,-10,-10,-6,-10,-5,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-14,-9,-14,-13,-25,-12,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-45/2,-11,-12,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-22,-22,-46 --1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1/2,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,3/2,1,2,1,1/2,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,10,5,5,4,6,3,3,3,5,3,7/2,2,4,3,3,3,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-25 -0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,5/2,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18 -0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,2,3,3,3,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,-1,0,-1,0,-1,0,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,2,2,4,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,0,0,0,1,3/2,2,2,1,2,2,2,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,4,3,9/2,4,5,5,5,3,3,3,9/2,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,8,5,6,4,13/2,4,6,6,12,7,7,5,6,4,5,4,6,4,4,4,11/2,4,5,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,5,7,7,11,6,6,4,11/2,3,3,2,5,3,3,3,9/2,3,3,3,6,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-21,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-14,-6,-6,-4,-11/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-9,-8,-15,-10,-15,-15,-30 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-18 -0,0,1/2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,2,1,1,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,3,2,5/2,3,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,5,3,4,3,4,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,4,3,5,4,11/2,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,5,3,7/2,3,4,3,7/2,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,4,7,5,6,6,8,5,5,4,5,3,3,2,4,2,5/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24 -1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,2,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,5,3,3,3,4,5/2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -1,1,1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,2,2,1,1,1,1,0,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,9/2,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,9/2,3,4,3,4,3,3,3,7,4,4,3,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,1,3,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,1,2,2,2,2,3,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,5,7,7,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,10,7,9,9,17,9,10,7,11,6,7,6,11,6,7,6,9,6,7,6,9,5,5,4,5,4,5,5,9,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,4,2,2,1,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-32,-15,-15,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20,-10,-11,-7,-12,-6,-8,-6,-25/2,-6,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-43/2,-12,-14,-11,-21,-14,-21,-21,-42 -1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,11/2,10,11/2,6,4,6,4,4,4,6,4,4,7/2,5,7/2,4,4,6,3,3,5/2,4,3,3,3,6,4,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,9/2,5,4,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,3,5/2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,2,2,3/2,1,1,1,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,3/2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,3,2,5/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,5,3,7/2,3,3,2,7/2,4,5,3,7/2,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,13/2,6,11,6,13/2,4,7,4,5,4,7,4,9/2,4,6,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,13/2,6,11,6,13/2,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,7,4,11/2,5,7,4,11/2,5,8,6,15/2,7,9,5,5,4,5,3,7/2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3/2,2,1,1,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-22,-10,-21/2,-6,-10,-5,-6,-5,-11,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-27/2,-14,-28 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,6,11/2,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,11/2,9,5,6,4,6,4,4,4,6,4,4,7/2,5,4,5,9/2,8,9/2,5,4,6,7/2,4,4,6,4,4,4,6,9/2,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,2,2,2,2,0,0,0,1,3/2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,6,3,3,2,5/2,2,2,1,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-13/2,-4,-6,-6,10,6,6,4,11/2,4,4,3,5,3,3,2,7/2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,5,3,4,3,9/2,3,4,4,6,4,4,3,9/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,4,6,6,12,7,7,5,13/2,4,6,6,11,6,6,5,17/2,6,9,9,16,9,9,6,8,5,6,5,10,6,6,5,15/2,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,13,7,7,6,9,6,7,6,10,6,6,6,19/2,7,10,10,13,7,7,5,7,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,7/2,3,4,3,3,2,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-12,-11,-33,-16,-16,-10,-33/2,-9,-11,-9,-17,-8,-9,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-19,-9,-9,-6,-17/2,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-8,-27/2,-8,-11,-10,-19,-10,-13,-11,-20,-13,-20,-20,-41 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,3/2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,7/2,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-22,-10,-10,-6,-11,-6,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1/2,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,10,6,11/2,4,6,4,4,3,5,3,7/2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,5/2,2,3,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,9,5,5,4,6,4,5,5,7,4,9/2,4,6,4,13/2,6,11,6,7,5,6,4,5,5,9,6,13/2,5,8,6,17/2,8,16,8,17/2,6,9,6,13/2,6,9,5,11/2,4,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,10,7,19/2,9,16,9,9,7,10,6,13/2,6,10,6,13/2,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,13/2,6,10,7,21/2,10,13,7,15/2,5,7,4,5,4,7,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-23/2,-11,-33,-16,-16,-10,-17,-9,-21/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-9,-5,-7,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-3,-4,-3,-8,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-6,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,11,6,6,4,6,4,4,3,5,3,4,5/2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,11/2,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,11/2,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,9/2,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,9,13/2,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,8,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-33,-16,-16,-10,-17,-9,-10,-9,-17,-17/2,-10,-7,-12,-7,-10,-9,-19,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-7/2,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-9/2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-13,-13/2,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 --1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,1,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,11/2,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,3,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,3,4,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,10,8,13,8,11,11,20,12,14,12,20,14,20,20,26,13,13,9,12,7,7,6,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-8,-9,-6,-11,-7,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-68,-33,-33,-22,-34,-19,-23,-19,-34,-17,-19,-14,-24,-15,-21,-20,-39,-19,-20,-14,-22,-12,-16,-14,-26,-14,-16,-13,-23,-14,-21,-21,-42,-20,-20,-13,-21,-11,-13,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-14,-9,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-11,-9,-18,-9,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-11,-17,-17,-34,-16,-16,-11,-17,-9,-11,-10,-19,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-12,-14,-11,-19,-12,-17,-17,-34,-17,-18,-12,-20,-12,-16,-15,-29,-16,-19,-16,-29,-19,-28,-28,-58,-29,-29,-19,-29,-16,-20,-17,-32,-16,-18,-13,-23,-14,-19,-18,-35,-18,-19,-13,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-27,-27,-54,-27,-28,-19,-30,-17,-22,-19,-35,-18,-20,-15,-26,-16,-24,-23,-46,-23,-24,-17,-28,-17,-23,-21,-41,-22,-26,-22,-40,-26,-40,-40,-80 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,11,6,6,9/2,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,5/2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,7,9/2,6,6,10,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-9/2,-10,-5,-7,-6,-11,-7,-11,-11,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-6,-8,-13/2,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-15/2,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-8,-15,-15/2,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-10,-11/2,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-9,-17,-17/2,-10,-7,-12,-8,-12,-11,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-39 -0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,9/2,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,9/2,4,8,4,9/2,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,1,1,1,1/2,0,0,0,1/2,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,4,4,6,4,5,5,9,5,11/2,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,11/2,6,10,6,7,6,10,7,21/2,10,14,8,8,5,7,4,9/2,4,5,3,3,2,4,2,5/2,2,4,2,2,2,3,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-10,-5,-7,-6,-12,-7,-11,-11,-33,-16,-16,-10,-16,-8,-21/2,-9,-16,-8,-9,-6,-11,-6,-19/2,-9,-20,-10,-10,-6,-10,-6,-15/2,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-6,-9,-5,-6,-6,-12,-6,-13/2,-5,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-14,-8,-19/2,-8,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-15/2,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-21/2,-9,-16,-8,-19/2,-7,-12,-8,-23/2,-11,-22,-11,-23/2,-8,-14,-8,-11,-10,-21,-11,-13,-11,-20,-13,-19,-19,-39 -0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,7/2,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,8,9/2,5,4,5,3,4,3,4,3,3,2,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,9/2,5,4,7,5,7,7,10,6,6,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-6,-3,-4,-7/2,-8,-9/2,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-14,-7,-9,-7,-13,-8,-13,-13,-26 -0,1,1,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,7/2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3/2,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,3,2,2,2,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,13/2,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,11/2,4,6,5,8,5,5,4,13/2,4,6,6,11,6,7,6,19/2,7,10,10,15,8,8,6,8,5,5,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-5,-7,-6,-23/2,-8,-12,-12,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-23/2,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-22,-10,-10,-6,-19/2,-5,-6,-5,-9,-4,-5,-3,-11/2,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-15,-8,-10,-8,-29/2,-9,-14,-14,-30,-15,-15,-10,-15,-8,-9,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-15,-8,-9,-7,-27/2,-8,-12,-12,-29,-14,-14,-10,-31/2,-8,-10,-9,-16,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-27/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-13,-20,-20,-40 -0,1,1,1,0,1,1,1,0,0,0,1/2,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,6,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1/2,0,0,1,1,1,-1,0,1,1,0,0,1/2,1,0,0,1/2,0,1,1,3/2,1,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,7,4,4,3,5,3,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,3,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,9/2,5,8,4,9/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,4,4,6,4,4,4,7,4,9/2,4,7,5,7,7,10,5,5,4,6,4,4,3,3,2,3,2,3,2,3/2,1,4,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-9/2,-4,-7,-4,-15/2,-8,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-8,-4,-6,-5,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-14,-6,-6,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-13,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-19/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-20,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-11/2,-4,-9,-5,-15/2,-7,-15,-7,-15/2,-6,-9,-5,-15/2,-6,-14,-7,-9,-7,-14,-9,-27/2,-13,-27 -0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,0,0,0,1,1,1,-1,0,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,3,2,3,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-6,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-5,-8,-8,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-4,-6,-5,-12,-6,-7,-6,-11,-7,-10,-10,-22 --1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,9,5,5,4,5,3,4,4,13/2,4,4,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,9/2,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,7,7,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,6,6,8,5,5,5,8,5,6,6,21/2,6,8,7,12,8,11,11,15,8,8,5,7,4,4,4,11/2,3,3,2,3,2,2,2,6,3,3,2,2,2,2,1,1/2,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-16,-16,-10,-16,-8,-10,-8,-31/2,-8,-9,-7,-12,-7,-9,-8,-20,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-3,-4,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-11,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-18,-9,-9,-6,-9,-5,-8,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-18,-9,-10,-7,-11,-6,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-12,-24,-12,-12,-9,-15,-9,-12,-11,-22,-12,-14,-11,-21,-13,-20,-20,-40 -0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,1,0,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-11/2,-10,-6,-10,-10,-21 -0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,6,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,1,1,1,1,1,1,1,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,-1,0,0,1,0,0,0,1,2,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,7/2,4,7,4,5,4,8,5,7,7,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-19,-9,-9,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-13/2,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-23 -0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,5/2,5,3,4,7/2,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -0,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,1,1,1,1,2,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-3,8,5,5,4,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,2,2,2,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,2,2,2,0,0,0,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,4,4,11/2,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,8,5,6,5,9,6,8,8,12,7,7,5,7,4,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,-2,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-5,-3,-6,-6,-24,-12,-12,-7,-21/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-3,-9,-4,-5,-4,-17/2,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-7,-14,-9,-13,-13,-28 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-3/2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,4,5/2,2,2,3,2,2,2,5,3,4,7/2,6,4,5,5,8,9/2,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-3/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-4,-8,-5,-8,-8,-17 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,9/2,3,5,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,5/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,3,4,3,7/2,3,5,4,5,5,7,4,9/2,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,3,3,6,4,9/2,4,7,5,13/2,6,10,6,11/2,4,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,-1,0,0,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-1,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-17,-8,-17/2,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-14,-7,-15/2,-6,-10,-6,-15/2,-7,-13,-7,-8,-6,-12,-8,-23/2,-12,-24 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,5,3,4,3,5,3,3,2,3,5/2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1/2,0,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,10,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,0,0,0,0,-1,0,0,0,0,1,2,2,4,3,4,4,15/2,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,8,4,4,3,5,3,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-6,12,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,10,5,5,4,6,4,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,5,6,5,8,5,7,7,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,11/2,3,3,2,3,2,3,3,5,3,4,4,6,5,7,8,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,11,18,10,10,7,9,5,6,5,8,4,4,3,4,3,3,2,7/2,2,2,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-39,-19,-19,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-32,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-11,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-15,-23,-23,-47 -0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,1,0,1,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-2,-1,-2,-2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,5/2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5/2,4,3,4,3,4,3,4,4,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24 -0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,3,2,2,2,4,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,1,1,3/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-5/2,-2,7,4,7/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,1,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,3,4,3,7/2,3,4,3,9/2,4,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,3,3,6,4,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,11/2,4,6,4,4,3,5,3,5/2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,0,0,0,0,0,0,1/2,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-23/2,-12,-25 -0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,3/2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-4,-5,-7/2,-7,-5,-8,-8,-17 --1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,-1,1,1,2,2,3/2,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,7,4,4,3,4,3,3,2,4,2,2,2,7/2,2,3,3,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,2,2,0,1,1,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,4,3,3,3,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,9/2,3,4,5,7,4,4,3,4,3,4,4,6,4,4,3,7/2,2,3,3,8,5,5,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,11,6,6,4,11/2,4,4,3,6,3,3,2,7/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-1,0,0,0,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-20,-10,-10,-6,-21/2,-6,-7,-5,-9,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-13,-13,-27 -0,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1/2,1,3,2,2,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,-1,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,3,3,3,2,2,2,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,4,3,4,4,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,8,4,9/2,3,4,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-13,-6,-11/2,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-20 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1/2,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,5/2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,11/2,7,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 -0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,2,2,9/2,3,3,2,3,3,4,4,2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,6,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,8,4,4,3,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3/2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,19/2,6,6,6,10,7,10,9,12,7,7,5,6,4,4,3,9/2,2,2,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34 -0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-11/2,-9,-9,-18 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,3,2,2,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,4,3,7/2,4,1,1,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,8,4,9/2,3,4,3,3,3,3,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-3,-7,-3,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15 -0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,5/2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,4,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,5/2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,3,5,4,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,13/2,4,5,5,7,4,4,4,11/2,4,4,4,5,3,3,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,8,6,8,9,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-17,-8,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-27 -1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,5/2,4,3,4,7/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,4,5,4,9/2,4,5,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,1,1,3/2,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-4,-3,-7,-4,-13/2,-6,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-11/2,-6,-11,-6,-8,-6,-12,-8,-25/2,-12,-26 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,5/2,3,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,5,7/2,4,4,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,9/2,6,4,4,7/2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-25 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,0,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,9/2,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,-1,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,9/2,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,6,4,4,4,7,5,7,7,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,15/2,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,5,9,6,8,8,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,29/2,8,8,6,10,6,7,6,10,6,7,5,8,6,8,8,14,8,9,7,11,7,9,9,17,10,11,9,16,11,16,17,25,13,13,9,13,7,8,7,11,6,5,4,5,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-12,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-31,-15,-16,-11,-17,-9,-11,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-25,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-11,-11,-7,-12,-7,-9,-8,-17,-9,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-10,-14,-13,-27,-14,-17,-14,-26,-17,-25,-25,-50 -1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,1,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,7/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-13/2,-12,-6,-6,-3,-5,-5/2,-3,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-7/2,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-13/2,-8,-7,-13,-8,-12,-12,-25 -1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,1,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,7/2,4,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,4,3,7/2,2,4,2,5/2,2,5,3,7/2,3,5,4,5,5,1,1,1/2,0,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,4,7/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-12,-12,-25 -1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,1,1,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,5/2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1,1,2,2,2,2,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,2,2,2,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,0,0,1,1,1,0,-1,0,-1,-1,3,2,1,1,1,1,2,2,4,2,2,2,5/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,0,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,1,1,1,2,2,4,3,3,2,7/2,3,4,3,2,2,2,2,5/2,2,2,1,2,2,2,2,5/2,2,2,3,4,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,5,3,3,3,9/2,4,5,5,0,1,1,1,1/2,1,1,2,2,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,4,8,4,4,3,9/2,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,13,7,8,6,8,5,5,4,6,4,4,3,3,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-4,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-26 -1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,0,1,1,1,0,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1/2,0,0,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,9/2,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 -0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,1,0,1,1,1,1,1,1,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,0,1,1,1/2,0,2,2,2,1,2,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,3,3,2,3,2,3,2,5/2,2,4,3,7/2,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,-1/2,-1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-17 -0,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,2,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,-1/2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-2,-3,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-7,-7,-14 --2,0,0,1,1,1,2,2,5/2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,-4,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,1,1/2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,5/2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,7/2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,0,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,7,4,4,3,4,2,2,2,7/2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,11/2,4,4,3,5,3,4,4,2,2,2,1,1,1,2,2,7/2,2,2,2,3,2,3,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,10,5,5,4,6,4,6,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,4,13/2,4,4,3,4,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-2,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-24,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-15,-7,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-8,-4,-6,-6,-25/2,-6,-8,-6,-12,-8,-12,-12,-26 -0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,1,1,2,2,2,2,5/2,2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,0,0,1/2,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,5,3,4,3,3,2,5/2,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,3,3,5,3,4,4,6,4,11/2,6,7,4,9/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,1,1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-3,-7,-4,-7,-7,-15 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,9/2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11 --1,0,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,3/2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,3/2,2,2,2,2,2,2,1,1/2,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,3,3,4,3,3,2,2,1,1,0,-1,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,7/2,3,4,3,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,2,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,4,6,4,5,4,13/2,4,6,7,10,6,6,4,11/2,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1/2,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,9/2,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,1,0,0,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,1,1,0,0,0,0,1/2,1,0,1,1,1,2,2,2,2,3,2,1,1,-1,0,1/2,1,0,1,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,2,1,2,2,5/2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,3,3,3,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-3/2,-2,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-5,-8,-8,-17 --2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,3/2,1,1,-1,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-16 --5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3,3,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,13/2,4,3,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,11,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,13/2,4,4,4,6,4,5,5,9,6,7,6,9,6,9,9,15,8,8,5,7,4,5,4,5,3,4,3,5,3,3,3,5,3,3,2,3,2,1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-4,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-24,-12,-12,-8,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-5,-4,-9,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-8,-33/2,-8,-9,-6,-10,-5,-7,-7,-14,-7,-9,-8,-16,-10,-16,-16,-33 --2,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,5,3,4,7/2,5,4,5,5,8,5,5,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-3/2,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 --3,-1,-1,0,-1,0,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,0,-1,0,1,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,5,3,5/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,3,4,2,5/2,2,3,3,4,4,5,3,4,4,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,3/2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17 --2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --3,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,7/2,3,4,4,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,4,11/2,4,6,6,11,6,6,4,11/2,3,3,3,3,2,2,2,5/2,2,3,3,1,1,1,1,2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-2,-2,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1/2,0,0,-1,-2,-1,-2,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-4,-3,-8,-4,-5,-4,-17/2,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --2,-1,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,1,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,7/2,3,4,2,5/2,2,4,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,9,5,9/2,3,5,3,3,3,4,2,5/2,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-12,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-14 --1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,1,1,2,2,2,3/2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1/2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,9/2,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-13 --2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,1,1,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,5,3,3,2,3,2,1,1,1/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,15/2,5,6,6,10,7,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,1,1,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-25 -0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-6,-6,-13 -0,1,1,1,-1,0,1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,7/2,4,6,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,4,5,4,9/2,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-7,-7,-15 -0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-12 --1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-3,-1,-1,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,9/2,3,4,4,9,5,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,3,4,3,3,2,5/2,2,3,3,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,5,8,5,6,5,17/2,6,8,9,15,8,7,5,13/2,4,5,4,8,4,4,3,7/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-9/2,-3,-5,-5,-2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,11/2,5,4,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-5,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14 --2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,5,3,4,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,11/2,5,10,6,11/2,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,4,3,7/2,3,5,4,9/2,4,9,5,11/2,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,15/2,5,8,5,11/2,4,7,4,4,3,4,3,3,3,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-11/2,-5,-12,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-15,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,7/2,5,4,6,5,10,6,6,4,6,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,4,5/2,3,2,4,5/2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,7/2,4,4,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,0,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,4,5,5,8,5,5,3,4,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,6,8,9,35/2,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,9,5,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,9,9,16,9,11,9,15,11,16,16,27,14,15,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,2,1,0,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-6,-9,-9,-37,-18,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-14,-8,-12,-12,-47/2,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-16,-11,-17,-17,-32,-15,-15,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-16,-9,-12,-10,-19,-10,-13,-10,-19,-12,-18,-17,-35,-17,-18,-12,-20,-11,-13,-11,-22,-11,-13,-10,-17,-10,-14,-13,-26,-13,-13,-9,-15,-8,-11,-9,-18,-9,-11,-9,-16,-10,-16,-16,-33,-16,-17,-11,-17,-9,-12,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-16,-11,-17,-10,-13,-12,-24,-12,-14,-11,-21,-14,-21,-21,-43 --2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,5/2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,3,3,6,4,4,3,4,5/2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,5/2,3,5/2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-9/2,-9,-9/2,-6,-9/2,-9,-11/2,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,3,7/2,3,4,3,7/2,3,3,2,3,3,4,3,3,3,6,4,4,3,4,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,4,5,4,5,5,9,6,13/2,6,8,6,17/2,8,14,8,15/2,6,8,5,5,4,8,5,5,4,5,4,9/2,4,6,4,4,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,6,4,7/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,2,2,3/2,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-11/2,-4,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-13/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 -0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,9/2,6,6,10,6,6,4,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-11/2,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-14 --1,0,0,0,0,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,6,4,4,3,7/2,3,4,4,4,3,3,2,3,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,9/2,3,4,5,10,6,6,4,13/2,4,5,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,3,3,3,2,2,2,7/2,3,4,4,6,4,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,9,5,6,4,11/2,4,6,6,10,6,6,6,19/2,6,9,9,14,8,8,5,13/2,4,4,4,8,5,5,4,5,4,5,4,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,5,3,3,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-5/2,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-19,-9,-8,-5,-17/2,-4,-6,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-9,-9,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22 -0,1/2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-11/2,-12 -1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,7/2,4,7,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,3,3,2,2,2,3,3,7,4,9/2,3,4,3,9/2,4,8,5,5,4,8,5,7,7,9,5,5,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,4,3,3,2,3,2,3/2,2,2,1,1,1,1,1,1,1,4,2,5/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-14 -1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,3/2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 -1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-3,-1,-1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,1,1,1,1,2,3,2,3,3,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,-1,0,1,1,2,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,2,-1,0,0,0,0,1,1,1,3/2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,1,1,1,1,2,2,5,3,3,2,3,2,3,3,9/2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,4,2,2,2,2,2,2,2,9/2,3,4,3,5,4,5,4,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,10,6,6,5,8,5,6,6,23/2,7,8,7,11,7,10,10,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,7/2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,1,1/2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-2,-1,-1,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-6,-6,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21 -1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,3/2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,1,1/2,0,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,3/2,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,3,2,7/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,3,3,3,3,2,7/2,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,7/2,4,6,4,4,4,6,4,13/2,6,8,4,9/2,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,5/2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-11/2,-6,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-11/2,-6,-12 -2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,5,3,3,3,5,4,5,5,6,7/2,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,-1,1,1,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,0,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,3/2,1,1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,-1,0,0,1,2,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-3/2,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,5,3,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,11,6,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,9/2,3,3,3,6,4,4,3,9/2,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,0,0,0,0,-3/2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-11/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-8,-8,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,5/2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,6,7/2,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-4,-4,-8 -2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,1,0,1,3/2,1,1,1,2,2,1,1,2,2,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,2,2,3/2,2,2,2,5/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,0,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,5,3,3,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,7/2,3,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,2,4,3,7/2,4,10,5,5,4,5,3,3,3,5,3,5/2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,7,4,4,3,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,9/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,3/2,1,2,2,3/2,1,0,0,0,0,-1,0,-3/2,-2,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-13,-6,-11/2,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-12 -2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,2,3/2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1/2,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,4,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,9,5,5,7/2,4,3,3,3,4,5/2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,5/2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,4,4,7/2,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12 -3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,3,-1,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,10,5,5,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,7/2,2,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,2,4,2,2,2,3,2,3,3,6,4,5,5,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,17,9,9,6,9,6,7,6,11,6,6,4,6,4,4,4,15/2,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,23/2,6,7,5,8,5,6,6,11,7,8,7,13,9,13,13,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7/2,2,2,1,1,1,0,0,0,0,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,1,1,1,1,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-23,-11,-11,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-12,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-9,-23,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1/2,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,3/2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12 -3,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,1,2,5/2,2,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,5,3,3,2,3,2,3/2,2,3,2,2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,9,5,11/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,5,5,8,6,8,8,8,4,9/2,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,-1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-13/2,-6,-10,-4,-9/2,-2,-5,-2,-7/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-9/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13 -3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,3/2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,6,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9 -6,4,4,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,5/2,2,2,3,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,5/2,2,3,3,7,4,3,2,3,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,-1,-1,2,2,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,-1/2,0,0,-1,-1,0,-1,0,-3/2,-1,-2,-1,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,-1,6,3,3,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,3,3,2,7/2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,4,4,5,3,4,3,9/2,3,4,4,6,4,4,3,5,4,5,5,6,4,4,4,11/2,4,4,4,6,4,6,5,17/2,6,8,8,8,5,5,4,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-13,-6,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-7,-7,-14 -4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,5,5,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 -6,4,4,3,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,5/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,5/2,2,3,2,3/2,1,2,2,2,2,2,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,0,0,-5,-2,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,0,0,1/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,5/2,2,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,3,2,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,5,5,5,3,7/2,3,5,3,4,3,5,4,5,4,7,5,7,7,7,4,9/2,4,4,3,7/2,3,5,3,4,3,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-6,-3,-9/2,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 -6,3,3,5/2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,3/2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,3/2,2,2,2,3/2,2,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1/2,0,1/2,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-10 -10,6,6,4,5,3,4,3,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,11/2,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,3,3,3,4,2,2,1,1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,1,1,1,0,0,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,-1,0,0,1,1,1,0,0,1/2,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,4,3,5,5,8,5,5,3,4,3,3,3,6,3,3,2,3,2,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,8,5,5,4,6,4,6,5,9,6,8,7,12,8,12,12,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,1,2,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,4,3,3,3,4,3,3,2,5/2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-4,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-19 -6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,5,3,3,3,4,3,4,7/2,6,4,5,4,7,5,7,7,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-9/2,-10 -8,4,9/2,3,4,3,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,7/2,3,4,2,5/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,0,-1/2,0,-1,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,5,3,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,11/2,4,7,5,7,7,9,5,11/2,4,6,4,4,4,5,3,7/2,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-11 -7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,3/2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1/2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,5/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-8 -11,6,6,4,11/2,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,7/2,2,2,2,3,2,3,2,3,3,4,4,3,2,2,2,3/2,1,1,1,3,2,3,2,3,3,4,4,5,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-2,-2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1/2,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,-7,-3,-3,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,2,2,2,2,3,3,4,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,5,3,3,3,9/2,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,9/2,3,4,4,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,3,3,4,3,3,3,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,12,7,7,5,15/2,5,6,5,8,4,4,3,9/2,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,1,1,2,0,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,1,4,3,3,2,2,2,2,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-15 -8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,3,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,9,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,3,2,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,7/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,5,4,5,4,10,5,5,4,5,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,13/2,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,5,7,4,9/2,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,4,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,4,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,4,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,9/2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-5/2,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-5,-4,-8,-5,-7,-7,-15 -21,11,12,9,13,8,9,8,13,7,7,5,7,5,6,5,9,5,5,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,6,6,10,6,6,4,6,3,3,2,3,2,2,2,2,2,3,3,6,3,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,18,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,10,17,12,18,18,25,13,13,9,12,7,8,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,4,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,5,3,3,2,3,2,3,2,3,2,1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-19/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-21,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,9/2,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,-1/2,-2,-2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,13/2,10,10,13,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 -12,7,7,5,8,5,11/2,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,2,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,9/2,4,6,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,7/2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,7/2,3,4,3,7/2,3,4,3,9/2,4,10,5,5,4,6,4,7/2,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,5,4,5,4,11/2,5,8,5,6,5,8,6,10,10,14,8,15/2,5,6,4,5,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,0,0,1/2,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-15 -8,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,3,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,2,2,3,3,4,7/2,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,9/2,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 -12,7,7,5,15/2,4,5,4,7,4,4,3,9/2,3,4,4,5,3,4,3,7/2,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,6,4,4,3,7/2,3,4,3,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,5,5,8,4,4,3,5,3,3,2,4,3,3,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,0,0,1,1,0,0,-1/2,0,0,-1,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,-7,-3,-4,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,1,1,2,2,2,2,4,3,3,2,5/2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,1,3/2,2,2,1,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,11/2,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,10,6,6,4,11/2,3,3,3,5,3,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,5/2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,14,7,7,5,7,4,5,5,8,5,5,4,5,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,2,2,2,2,3/2,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-17 -7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,3/2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,2,5/2,6,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,8,9/2,4,3,5,3,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-10 -8,5,5,4,6,4,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,2,2,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,6,4,9/2,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,1,1/2,1,2,1,1/2,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,4,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,3,7,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,4,3,3,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,10,6,11/2,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,-1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13 -7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,3,2,3,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,5/2,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-11 -13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,11/2,3,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,9/2,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,2,2,2,3/2,1,1,1,0,0,-1,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,0,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-2,5,3,3,2,3,2,3,2,7/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,7,4,4,3,5,3,3,3,5,4,5,4,7,5,6,6,13,7,7,5,6,4,4,4,13/2,4,4,3,4,3,3,3,8,5,5,4,5,3,3,3,9/2,3,3,3,4,3,5,5,4,3,3,2,2,2,3,3,11/2,4,4,3,5,3,4,4,10,5,5,4,6,4,6,6,21/2,6,8,6,10,7,10,11,16,9,9,7,10,6,7,6,17/2,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,4,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-21/2,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-5,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-12,-7,-11,-11,-22 -8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,5/2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,2,2,2,3/2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12 -9,5,5,4,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,3,3,4,2,5/2,3,4,3,3,3,4,3,4,4,5,3,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,4,9/2,4,7,4,4,3,5,3,3,2,2,2,3/2,2,2,2,2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,5/2,2,3,2,3/2,1,1,1,1/2,0,0,0,1/2,0,2,1,1,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,0,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,3/2,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,4,3,3,2,4,2,2,2,4,3,4,3,5,3,4,4,9,5,5,4,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,7/2,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,7/2,3,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,3/2,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-6,-6,-12,-5,-5,-3,-7,-3,-4,-3,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14 -8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,5/2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,7/2,4,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,-1/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,4,6,4,6,6,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1/2,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11 -13,7,6,4,13/2,4,5,5,8,5,5,4,13/2,4,5,5,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,13/2,4,4,4,8,5,6,5,7,4,5,5,9,5,5,4,6,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,7/2,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,1,1,1,2,2,5,3,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,2,1,1,1,3/2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,3,4,4,5,3,3,3,9/2,4,5,5,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,10,6,7,6,10,7,10,9,13,7,7,5,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1/2,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1/2,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-9,-9,-6,-17/2,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-9,-6,-9,-9,-19 -9,5,4,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,6,7/2,4,3,5,3,4,7/2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,1,1,1,0,0,0,0,0,-1/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,5/2,3,5/2,3,7/2,7,4,5,4,7,5,7,6,8,5,5,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,3/2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,1/2,1,1,0,0,0,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 -13,7,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,7/2,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,5,3,5/2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1/2,1,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,11,6,6,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,4,3,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,7/2,3,4,3,4,5,9,6,13/2,5,9,6,9,9,11,6,6,4,6,3,3,2,5,3,3,2,4,3,3,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-7,-7,-16,-8,-15/2,-5,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-5,-4,-8,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-9/2,-4,-7,-5,-8,-8,-17 -13,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,5/2,4,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1/2,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,7/2,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,4,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,9/2,8,5,6,5,8,6,8,17/2,10,6,6,4,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,1,1,1,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-15/2,-16 -24,13,13,9,12,7,9,8,14,8,9,7,10,6,7,6,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,8,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,11/2,4,4,3,5,3,4,4,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,5,7,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,6,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,20,10,10,7,9,5,6,5,8,4,4,3,5,4,5,5,19/2,6,6,4,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,7,6,9,6,9,9,17,10,11,9,15,11,16,16,18,9,9,6,8,5,5,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,0,0,0,0,0,1,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-6,-13,-7,-8,-7,-13,-9,-15,-15,-28,-14,-14,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-9,-18,-9,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-8,-35/2,-8,-9,-6,-11,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-33 -13,7,7,5,7,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -14,8,15/2,6,8,5,11/2,5,8,5,5,4,5,4,9/2,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,4,5,5,8,4,9/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-1,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,3/2,1,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4,3,7/2,3,6,4,7/2,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,4,4,5,4,11/2,6,11,6,11/2,4,6,4,4,3,5,3,3,2,4,3,7/2,4,6,4,7/2,3,3,2,3,3,3,2,3,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,5,9,5,6,5,8,6,9,9,10,6,11/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-8,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18 -10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,7/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,6,5,7,7,8,9/2,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -15,8,8,6,17/2,5,6,6,8,4,4,4,11/2,4,5,5,7,4,4,3,9/2,4,5,5,6,4,4,4,13/2,4,6,6,11,6,6,4,9/2,3,3,2,5,3,3,3,4,3,3,3,5,3,4,4,11/2,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,6,4,4,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,6,4,4,3,7/2,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,12,7,7,5,13/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,4,3,4,4,11/2,4,6,6,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,12,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-4,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-19/2,-6,-10,-10,-20,-10,-10,-6,-21/2,-6,-8,-7,-13,-6,-6,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22 -9,5,5,4,6,7/2,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,8,5,5,7/2,5,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,5,3,3,2,4,2,2,2,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,7/2,3,5,3,3,3,5,3,4,4,6,4,7/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,4,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,6,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,10,6,11/2,4,6,4,4,4,5,3,7/2,3,4,3,7/2,3,6,4,7/2,2,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,7/2,3,5,3,3,2,3,2,7/2,4,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,0,1,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-4,-3,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-17/2,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17 -11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,5/2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,5/2,4,4,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,6,4,6,4,6,5,17/2,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,10,5,5,4,6,4,5,5,17/2,5,6,5,9,6,9,9,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,11/2,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-5/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,5/2,2,2,2,2,2,3,3,8,5,5,3,4,3,3,3,11/2,3,3,2,3,2,3,3,5,3,2,2,2,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,2,7/2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,4,4,4,9,5,5,4,6,4,6,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,7,6,21/2,6,7,6,9,6,8,8,11,6,7,6,10,6,8,8,27/2,8,10,9,15,11,16,16,18,9,9,6,8,5,5,4,15/2,4,5,4,7,5,6,6,6,4,4,3,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-16,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-9,-6,-9,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-7,-6,-27/2,-7,-8,-6,-10,-6,-8,-7,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-20,-10,-10,-6,-10,-6,-8,-7,-27/2,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-6,-8,-8,-19,-9,-10,-6,-10,-6,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30 -12,13/2,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,6,7/2,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-9/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -14,8,15/2,6,7,4,11/2,5,7,4,5,4,6,4,5,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,10,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,3/2,2,1,1,1,1,-1,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,5,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,6,4,9/2,4,7,5,13/2,6,12,6,13/2,4,7,4,9/2,4,6,4,7/2,3,5,3,7/2,3,6,4,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,9/2,4,5,4,9/2,4,6,4,9/2,4,6,4,11/2,5,8,5,5,4,6,4,6,5,9,6,13/2,6,10,7,21/2,10,12,6,6,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-22,-10,-21/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-10,-20 -12,13/2,6,5,6,4,4,4,6,4,4,7/2,5,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,3,4,3,4,7/2,5,3,4,4,6,4,6,6,10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,7,4,4,3,5,7/2,5,4,7,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-5/2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -22,12,12,8,23/2,6,7,6,11,6,7,6,17/2,6,8,7,11,6,6,5,7,4,5,5,8,5,6,5,17/2,6,9,9,17,9,9,6,19/2,6,7,6,7,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,8,5,6,5,17/2,6,8,8,14,7,7,5,15/2,4,5,5,7,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,9/2,3,3,3,4,3,3,2,7/2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,5/2,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,2,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,2,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,1,2,2,2,2,4,3,3,2,7/2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,7/2,2,3,3,7,4,5,4,6,4,5,5,9,5,6,6,19/2,6,9,9,18,9,9,6,9,5,5,4,7,4,4,4,11/2,4,5,4,8,4,4,4,11/2,4,4,4,7,4,4,4,6,5,7,7,10,6,6,4,13/2,4,5,5,8,5,6,5,15/2,6,8,7,12,7,7,5,15/2,5,6,6,12,7,9,8,14,10,15,15,17,9,9,6,8,5,5,4,8,5,6,5,7,5,6,6,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,1,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-9,-9,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-7,-7,-16,-8,-10,-8,-31/2,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-9,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-10,-7,-23/2,-6,-9,-8,-16,-8,-10,-8,-31/2,-10,-15,-15,-31 -15,8,8,6,8,9/2,5,4,8,9/2,5,4,6,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,5,3,3,3,4,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,7/2,4,4,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-9/2,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-10,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -22,12,12,8,11,6,15/2,6,11,6,13/2,5,8,5,7,7,11,6,13/2,5,7,4,11/2,6,9,6,13/2,5,8,6,17/2,9,17,9,9,6,10,6,13/2,5,7,4,5,4,6,4,11/2,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,17/2,8,15,8,8,6,8,5,11/2,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,2,1,1,1,3,2,2,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,1,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,4,7,4,9/2,4,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,4,9/2,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,27/2,14,16,8,17/2,6,8,5,11/2,4,8,5,5,4,6,4,6,5,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-13/2,-4,-6,-3,-5,-4,-6,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-10,-6,-19/2,-10,-21,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-7,-7,-13,-6,-13/2,-4,-7,-4,-5,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-19/2,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-15/2,-7,-13,-7,-17/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-8,-15,-10,-15,-15,-32,-16,-31/2,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-14,-7,-17/2,-7,-13,-8,-25/2,-12,-26,-13,-13,-8,-14,-7,-17/2,-7,-15,-7,-8,-6,-11,-6,-19/2,-9,-19,-9,-9,-6,-12,-7,-19/2,-8,-16,-8,-21/2,-8,-16,-10,-31/2,-15,-31 -21,11,11,8,11,7,8,13/2,11,6,6,5,8,5,7,13/2,11,6,6,5,7,9/2,6,6,10,6,7,11/2,9,6,9,9,17,9,9,6,9,11/2,6,5,8,9/2,5,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,5/2,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,3/2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,7/2,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-14,-7,-8,-7,-14,-7,-8,-6,-11,-13/2,-10,-9,-19,-9,-9,-6,-12,-7,-9,-8,-17,-9,-10,-8,-16,-10,-16,-15,-31 -41,21,21,14,21,13,16,14,24,13,13,10,16,10,14,13,23,12,12,9,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,13,8,10,9,15,11,16,16,31,16,16,11,16,9,10,8,13,7,8,6,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,7,12,8,11,10,18,9,9,7,10,6,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,0,1,1,2,2,2,3,5,3,4,4,6,4,6,6,21/2,6,7,5,8,5,6,5,9,5,6,5,7,5,8,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,12,12,22,11,11,8,12,7,7,6,10,6,7,5,8,6,8,7,13,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,24,13,13,9,13,7,8,6,10,6,7,5,8,5,6,6,11,6,7,5,8,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,22,11,11,8,11,7,9,8,13,7,7,5,8,6,8,7,13,7,6,4,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,6,5,8,5,7,7,13,8,9,8,13,9,12,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,21,12,13,10,17,11,16,16,31,16,17,12,18,11,13,11,20,11,13,10,17,11,16,15,28,15,15,11,18,11,15,14,27,16,19,16,28,19,27,27,28,15,15,10,15,8,9,7,12,7,7,5,8,6,8,8,15,8,9,7,10,6,7,6,11,7,8,7,11,7,10,10,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,9,16,11,17,17,33,17,18,13,19,11,13,11,20,11,13,10,16,10,13,13,24,13,14,10,16,10,12,11,19,10,11,9,14,9,13,13,24,13,13,9,12,7,8,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-11,-6,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-8,-8,-6,-11,-6,-8,-8,-16,-9,-11,-9,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-17,-35,-18,-19,-14,-24,-14,-19,-18,-35,-19,-23,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-23,-19,-35,-17,-18,-13,-22,-13,-18,-16,-32,-16,-17,-12,-19,-11,-14,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-17,-17,-11,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-18,-12,-18,-19,-39,-19,-20,-13,-21,-12,-15,-13,-25,-13,-14,-10,-18,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-18,-38,-19,-19,-12,-19,-10,-13,-11,-21,-11,-12,-10,-18,-11,-16,-15,-31,-16,-17,-13,-22,-13,-18,-16,-32,-17,-21,-18,-33,-21,-32,-32,-64 -21,11,11,8,11,7,8,7,12,7,7,11/2,8,6,8,7,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,9/2,7,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,4,5/2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,9/2,5,4,6,4,5,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,17/2,14,10,14,14,15,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,17,9,10,7,10,6,7,6,10,6,7,6,8,5,7,7,13,7,7,5,9,11/2,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,5/2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-13/2,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-16,-33/2,-34,-33/2,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-11/2,-9,-5,-6,-11/2,-11,-6,-7,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-9,-9,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-15/2,-8,-6,-11,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -21,11,23/2,8,11,7,8,7,12,7,15/2,6,8,6,8,7,12,6,6,5,8,5,11/2,5,9,5,5,4,7,4,11/2,6,9,5,11/2,4,5,4,9/2,4,6,4,4,3,4,3,9/2,4,6,4,9/2,4,5,3,4,4,7,5,6,5,8,6,17/2,8,16,9,9,6,9,5,11/2,4,6,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,5,5,9,5,5,4,5,3,7/2,3,3,2,3,2,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,4,8,4,4,3,6,4,5,5,8,5,6,5,8,5,6,6,11,6,13/2,5,6,4,4,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,4,6,4,13/2,7,13,7,7,5,7,4,9/2,4,5,3,4,3,4,3,7/2,4,6,4,7/2,3,5,3,4,4,6,4,7/2,3,5,4,5,5,10,6,11/2,4,6,4,5,4,7,4,4,3,5,4,9/2,4,7,4,5,4,4,3,7/2,3,5,4,9/2,4,6,4,13/2,7,11,6,11/2,4,6,4,9/2,4,7,4,9/2,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,9/2,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,13/2,6,9,6,8,8,16,9,9,6,10,6,15/2,6,11,6,7,6,10,6,8,8,15,8,8,6,10,6,17/2,8,13,8,9,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,4,11/2,6,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,5,8,6,17/2,9,17,9,19/2,7,10,6,15/2,6,10,6,7,6,8,5,7,7,13,7,7,5,9,6,13/2,6,10,6,6,5,8,5,7,7,13,7,13/2,4,7,4,5,4,6,3,3,3,3,2,3,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-8,-4,-11/2,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-9,-16,-10,-33/2,-17,-33,-16,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-17/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-10,-7,-10,-5,-7,-6,-12,-6,-13/2,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,4,3,4,4,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,5/2,3,3,5,3,3,5/2,4,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,5/2,3,2,3,3,4,3,3,2,4,5/2,3,3,4,5/2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,4,3,4,7/2,5,3,4,3,3,2,3,3,4,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,9/2,7,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,5/2,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,7,5,7,9/2,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -20,11,11,8,23/2,7,8,7,12,7,8,6,17/2,6,7,7,13,7,7,5,15/2,4,5,5,9,5,6,5,15/2,5,7,6,9,5,5,4,5,4,5,5,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,15,8,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,3,3,2,2,2,9/2,3,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,3,2,1,1,1,1,1,1,2,1,1,0,-1/2,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-2,0,0,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,4,3,3,3,5,3,4,4,6,4,4,3,7/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,5,4,5,5,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,6,4,13/2,4,6,7,12,6,6,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,4,3,9/2,3,4,4,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,10,6,6,4,11/2,4,4,4,7,4,5,4,11/2,4,4,4,7,4,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,12,6,6,5,15/2,5,6,5,11,6,6,5,17/2,6,8,8,17,9,10,7,19/2,6,8,7,12,7,8,6,10,7,9,9,15,8,8,6,21/2,7,9,8,12,7,9,8,14,9,13,13,14,8,8,5,7,4,4,4,8,5,5,4,6,4,6,5,9,5,5,4,11/2,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,15/2,6,8,8,17,9,9,7,10,6,8,7,11,6,6,5,8,5,7,6,12,7,8,6,17/2,5,6,6,8,5,5,4,13/2,5,7,7,13,7,7,5,13/2,4,5,4,6,3,3,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3/2,1,0,0,1,1,2,2,5/2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-4,-5,-4,-9,-6,-10,-10,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-33/2,-10,-16,-17,-32,-16,-16,-10,-33/2,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-19/2,-6,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-10,-5,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-16,-8,-8,-6,-10,-6,-9,-8,-15,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,7/2,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,9/2,6,5,8,6,8,8,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -13,7,8,6,8,5,11/2,5,9,5,11/2,4,6,4,9/2,4,8,5,5,3,5,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,4,3,7/2,4,6,4,4,4,6,4,6,6,11,6,13/2,5,7,4,9/2,4,4,3,3,3,5,3,4,4,6,4,7/2,3,5,3,7/2,3,5,3,5/2,2,3,2,7/2,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,5/2,2,4,3,7/2,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,5,3,7/2,3,6,4,11/2,5,9,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,3,5,3,4,3,6,4,11/2,6,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,7,4,7/2,3,4,3,3,3,6,4,7/2,3,5,3,7/2,4,9,5,5,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,12,6,13/2,5,8,5,6,5,9,5,6,5,8,5,7,6,10,6,11/2,4,7,4,11/2,5,8,5,13/2,6,10,7,9,9,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,6,6,12,6,13/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,8,5,5,4,5,3,4,4,6,4,7/2,3,5,4,11/2,6,10,6,11/2,4,4,3,7/2,3,4,2,2,2,2,2,3/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,3,2,2,2,1,1,3/2,1,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-9,-5,-13/2,-5,-11,-7,-11,-11,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20 -11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,6,7/2,4,3,5,3,4,9/2,10,11/2,6,4,7,4,5,9/2,8,9/2,5,4,7,9/2,6,11/2,8,9/2,4,3,5,4,5,9/2,7,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17 -20,11,11,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,4,3,3,3,4,3,5,5,17/2,5,6,6,10,7,10,9,17,9,10,7,10,6,6,5,15/2,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,2,2,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,9/2,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,11/2,3,3,2,3,3,4,4,5,3,4,3,5,3,4,3,5,3,3,3,5,4,5,5,12,6,6,4,6,4,4,3,9/2,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,12,7,7,5,6,4,5,4,13/2,4,4,4,6,4,5,4,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,13/2,4,6,5,8,6,9,9,11,6,6,4,6,4,4,4,15/2,4,5,4,6,4,4,4,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,13,7,7,5,8,5,6,5,17/2,5,5,4,7,5,8,8,17,9,10,7,11,7,9,8,13,7,8,6,9,6,9,9,13,7,7,5,8,5,7,7,25/2,7,8,7,12,8,12,13,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,7,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,5,13,7,7,5,6,4,4,4,13/2,4,6,5,8,5,7,7,14,8,8,6,8,5,5,4,11/2,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-9,-18,-12,-18,-18,-30,-15,-15,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-35/2,-9,-11,-9,-16,-10,-16,-15,-31 -11,6,6,4,6,4,5,4,7,4,5,4,5,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,2,2,3/2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,6,4,4,5/2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16 -12,6,13/2,4,7,4,5,4,8,5,5,4,5,4,5,4,6,4,7/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,3,2,2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,6,4,7/2,3,3,2,2,2,2,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,4,3,3,3,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,7/2,3,4,3,3,3,6,4,11/2,6,6,4,7/2,2,3,2,5/2,2,5,3,3,3,3,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,3,6,4,4,3,5,3,7/2,4,5,3,4,3,5,3,4,4,9,5,6,4,7,4,5,4,8,5,5,4,5,4,11/2,6,9,5,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,8,8,9,5,11/2,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,7/2,3,6,4,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,9/2,3,5,3,3,3,4,2,2,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-9/2,-5,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-11/2,-4,-8,-5,-8,-8,-17 -9,5,5,4,6,7/2,4,7/2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,9/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,5/2,3,3,3,2,3,2,4,3,3,3,7,4,5,7/2,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,7/2,5,3,4,3,4,3,3,2,3,2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,3,4,4,5,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 -15,8,8,6,17/2,5,6,5,10,5,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,2,2,2,2,7/2,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,4,4,8,5,5,4,11/2,4,4,4,7,4,4,3,5,3,4,3,3,2,3,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,2,2,2,2,5/2,2,3,3,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,5/2,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,9/2,3,4,5,9,5,5,4,5,3,4,3,3,2,3,2,7/2,2,3,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,9/2,3,4,4,5,3,4,4,13/2,5,7,7,6,4,4,3,4,3,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,8,4,4,3,5,3,3,3,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,4,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,5,5,4,13/2,4,6,6,11,6,6,5,15/2,5,6,5,8,5,6,5,8,6,9,9,11,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,9/2,4,5,5,12,7,7,5,7,5,6,5,6,4,4,3,5,3,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,11/2,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,5/2,2,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-6,-8,-6,-23/2,-8,-12,-12,-18,-9,-9,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-20 -10,11/2,6,4,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1/2,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,7/2,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,3,5/2,4,5/2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,7/2,8,4,4,3,5,3,4,3,4,3,3,5/2,4,5/2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 -13,7,15/2,6,8,5,11/2,5,9,5,5,4,5,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,3,5,4,11/2,5,9,5,11/2,4,7,4,9/2,4,7,4,9/2,3,5,4,5,5,6,4,4,3,5,3,4,3,3,2,5/2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,3,3,8,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,9/2,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,7,5,15/2,8,10,6,11/2,4,6,4,7/2,3,5,3,4,3,4,3,4,3,5,3,7/2,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,3,3,4,3,9/2,4,10,5,5,4,6,4,5,4,6,4,7/2,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-5,-9,-6,-19/2,-10,-15,-7,-15/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-16 -13,7,7,5,7,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1/2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,10,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -24,13,13,9,14,8,10,8,13,7,7,6,9,6,7,6,19/2,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,5,8,6,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,25/2,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,5,4,6,6,0,1,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,4,6,6,13,7,8,6,8,5,6,5,7,4,4,3,5,3,3,3,9/2,3,4,3,4,3,4,4,7,4,5,4,5,4,6,6,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,19/2,6,6,5,7,5,6,6,12,7,8,6,10,7,10,11,7,4,3,2,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,14,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,10,11,8,12,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,13,8,11,10,17,10,11,9,15,10,13,13,20,11,11,8,11,6,7,5,8,5,5,4,6,4,5,4,15/2,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,15,8,9,6,9,5,6,5,7,4,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,9,5,4,3,4,3,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-19/2,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-33/2,-8,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-18,-28,-14,-14,-9,-13,-7,-9,-8,-15,-7,-8,-5,-8,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-16,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-4,-5,-4,-7,-4,-7,-6,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-15,-10,-15,-15,-30 -13,7,7,5,8,5,6,5,7,4,4,3,5,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,7/2,5,3,4,3,5,3,4,4,7,4,4,7/2,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,5/2,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,7,9/2,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,3/2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-13,-6,-7,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-15 -13,7,15/2,6,8,5,6,5,7,4,4,3,6,4,4,3,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,9/2,4,5,3,7/2,3,5,3,4,4,7,4,9/2,4,5,4,9/2,4,6,4,4,4,6,4,5,5,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,0,1,3/2,2,2,2,2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,3,2,7/2,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,2,2,2,2,3,2,3,3,5,3,7/2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,13/2,4,7,4,9/2,4,5,3,3,2,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,8,5,5,3,5,3,7/2,3,5,3,5/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,4,2,5/2,2,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,3,8,4,9/2,3,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,1,1,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-9,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -9,5,5,4,6,4,4,4,6,7/2,4,3,4,3,3,5/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,4,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9 -14,7,7,5,8,5,6,5,9,5,5,4,11/2,4,4,3,4,3,4,3,5,3,4,4,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,13/2,4,6,5,6,4,4,3,4,3,3,2,3,2,3,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,7/2,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,-1,0,1,1,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,7,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,4,13/2,4,6,6,5,3,3,2,2,2,2,1,3,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,15/2,6,8,8,11,6,7,5,7,4,5,4,5,3,3,2,7/2,3,4,4,4,3,3,3,9/2,3,3,3,5,3,3,3,9/2,4,5,5,7,4,4,3,9/2,3,4,4,4,2,2,2,7/2,2,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,7/2,3,4,4,10,5,5,4,11/2,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,4,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,5/2,2,2,2,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1/2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-5/2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-3,-3,-8 -10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,7/2,3,4,3,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,3,2,2,2,5/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,-1,-1,-2,0,-1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,4,3,3,3,6,4,4,3,4,3,9/2,5,4,3,3,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,3,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,6,4,7/2,3,4,2,5/2,2,3,2,7/2,3,3,2,2,2,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,2,5/2,2,4,2,5/2,2,3,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,2,1,1,2,2,2,2,3/2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-3,-8,-4,-5,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 -9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,4,3,3,3,6,7/2,3,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,7/2,6,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,4,5,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,1,1,2,2,3,2,3,2,3,2,3,2,3,2,3,3,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,3,3,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,2,2,5/2,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,9/2,3,4,4,6,4,5,5,-2,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,7/2,2,2,2,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,4,5,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,4,3,3,3,4,3,3,3,11/2,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,6,4,5,5,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,6,9,9,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-19/2,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-6,-11,-7,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-3,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,5/2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9 -10,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,7/2,4,3,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,3,5,4,5,4,7,4,4,3,4,3,7/2,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,1,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,3,2,3,3,-2,0,0,0,0,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,2,4,3,3,3,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,4,2,2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,7/2,3,6,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,3,7/2,4,5,3,4,4,6,4,6,6,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,7,4,4,3,4,3,7/2,3,5,3,3,2,4,3,3,3,3,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,3,2,4,3,3,3,5,3,7/2,3,5,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,4,3,9/2,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,7/2,3,6,4,4,3,3,2,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-10 -9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,1,1/2,0,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-4,-4,-8 -15,8,8,6,15/2,4,5,5,8,4,4,4,11/2,4,5,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,3,7,4,4,4,11/2,4,6,5,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,0,0,1,1,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,2,2,2,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,3/2,2,2,1,0,1,1,2,5/2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,5,5,-3,-1,-1,0,1/2,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,2,5,3,4,3,7/2,2,2,2,2,2,2,1,1,1,1,2,4,3,3,3,4,3,5,5,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,17/2,6,8,8,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,3,2,1,1,1,1,1,1,2,2,10,6,6,4,13/2,4,4,4,7,4,5,4,5,3,4,4,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,6,4,5,4,7,5,7,7,10,5,5,4,6,4,5,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,2,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,5,3,3,2,5/2,2,1,1,0,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-3,-13/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-6,-11,-7,-10,-10,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-7,-16 -10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,5/2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1/2,1,1,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 -15,8,8,6,8,5,5,4,7,4,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,5,3,5/2,2,3,2,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,4,5,4,11/2,5,10,6,6,4,5,3,7/2,3,4,3,3,2,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,2,2,5/2,2,3,2,5/2,2,3,3,4,4,-2,0,0,0,0,1,3/2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,6,4,9/2,4,8,5,11/2,5,8,6,8,8,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,2,2,2,2,1,1,3/2,2,10,6,6,4,6,4,4,3,6,4,7/2,2,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,7/2,3,5,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,4,3,6,4,5,5,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,7,4,7/2,3,3,2,5/2,2,4,2,2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,1,1,1,2,2,1,1,1,1,-1,0,0,0,-4,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-7,-5,-10,-6,-10,-10,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-13/2,-7,-15 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,5/2,4,3,6,4,4,3,4,5/2,3,5/2,4,5/2,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,11/2,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,2,3/2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,10,6,6,4,6,4,4,3,5,3,3,2,3,5/2,3,3,5,3,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-10,-5,-6,-5,-10,-6,-10,-10,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-14 -28,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,5,7,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,4,4,6,4,6,6,21/2,6,6,4,6,4,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,4,6,7,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,2,2,2,2,2,2,2,2,4,3,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,8,5,7,7,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,3,3,6,4,5,4,7,5,6,6,25/2,7,8,6,8,5,6,5,8,5,6,5,9,6,8,8,14,8,8,7,11,7,9,8,14,8,9,8,14,10,15,15,6,3,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,7,4,3,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,20,10,10,7,10,6,6,5,7,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,6,4,4,3,5,4,5,4,7,4,5,5,8,6,8,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-4,-19/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-13,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-2,-6,-4,-6,-6,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-10,-7,-12,-7,-9,-8,-15,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-12,-14,-12,-22,-14,-21,-21,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-13,-14,-29 -15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,3,5/2,4,3,6,4,4,3,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,5/2,3,2,4,3,4,4,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -15,8,8,6,8,5,6,5,8,5,11/2,4,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,4,3,4,3,9/2,4,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,9/2,3,5,3,7/2,3,5,3,7/2,3,5,4,5,4,8,4,9/2,4,6,4,11/2,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,2,2,11,6,11/2,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,4,9/2,4,6,4,6,6,9,5,5,4,5,3,7/2,4,5,3,7/2,3,3,2,7/2,3,6,4,7/2,3,3,2,2,2,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,7/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-12,-6,-11/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-10,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -11,6,6,4,6,4,4,7/2,6,4,4,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,3,4,4,5,3,4,4,6,4,6,6,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,8,8,6,17/2,5,6,5,10,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,13/2,4,5,5,8,5,5,4,9/2,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,7/2,3,4,3,6,3,3,2,7/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1/2,0,0,1,-1,0,1,1,1,1,1,2,4,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,3,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,17/2,6,9,9,4,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,7/2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,11,6,6,4,6,3,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,2,4,3,3,2,7/2,3,4,3,8,5,5,3,4,3,3,3,6,4,4,4,13/2,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,7,4,4,3,7/2,2,3,3,6,4,4,3,9/2,3,4,4,5,3,3,2,7/2,2,2,1,2,2,2,1,1,1,1,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,5,4,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,0,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-11,-6,-7,-6,-23/2,-7,-10,-10,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13 -10,5,5,4,5,3,4,3,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,11/2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -12,7,7,5,6,4,5,4,7,4,9/2,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,5/2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,3,3,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,0,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,3/2,2,3,2,3/2,2,1,1,3/2,1,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,2,3/2,1,4,3,3,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,7,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,6,3,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3/2,1,1,2,3/2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1/2,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -21,11,11,7,10,6,8,7,11,6,6,4,6,4,6,6,8,5,5,4,6,4,5,4,15/2,5,6,5,7,4,5,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,3,4,3,4,4,15/2,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,2,1,1,1,4,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,9/2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,19/2,6,8,7,11,8,11,11,8,4,4,3,5,3,3,3,9/2,3,3,2,3,2,2,1,4,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,2,2,2,7/2,2,2,1,1,1,1,1,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,11/2,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,6,7,13,7,7,5,6,4,4,4,13/2,4,4,3,3,2,3,3,8,5,5,3,4,3,4,4,11/2,4,4,3,5,4,5,5,6,3,3,2,3,2,2,2,5/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,3,4,4,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,1,1,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-11,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13 -12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,3,2,2,3/2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,7/2,4,4,6,9/2,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 -13,7,7,5,6,4,9/2,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,3,4,2,5/2,2,1,1,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,7/2,3,5,3,3,2,2,2,5/2,2,4,3,3,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,4,9/2,4,7,5,7,7,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,3,2,2,3/2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,6,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,3,3,6,7/2,4,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -16,9,9,6,17/2,5,6,5,8,5,5,4,11/2,4,5,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,4,2,2,2,7/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,2,5/2,2,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,3,3,6,4,4,3,9/2,3,3,3,7,4,4,3,7/2,2,3,2,4,3,3,2,3,2,2,2,6,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,11/2,4,4,4,8,4,4,4,11/2,4,5,4,7,4,5,4,5,4,5,4,6,4,4,4,15/2,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,5/2,2,3,3,7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,9,5,4,3,9/2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,4,3,4,4,11/2,4,5,5,9,5,6,4,11/2,4,4,3,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,3,3,3,2,2,2,7/2,3,4,4,5,3,3,2,5/2,2,2,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,0,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 -10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,3,5/2,3,3,4,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,5/2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -14,8,8,6,8,5,11/2,4,7,4,9/2,4,5,4,9/2,4,7,4,9/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,4,5,3,3,2,3,2,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,2,1,1,3/2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,5/2,2,4,3,3,3,8,4,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,3,4,3,4,4,6,4,4,4,7,5,6,6,6,4,7/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3,2,2,2,5/2,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,3,2,3,2,2,2,3,3,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,3,2,7/2,4,6,4,4,3,4,3,7/2,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,7/2,4,5,3,3,2,3,2,5/2,3,5,3,7/2,3,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -14,8,8,6,8,5,6,9/2,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,5/2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,8,4,4,3,4,3,4,4,7,4,4,4,5,7/2,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,9/2,6,6,6,4,4,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,3,5/2,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-2,-3,-5/2,-6 -27,14,15,10,15,9,10,8,13,7,7,6,9,6,8,8,27/2,8,8,5,7,5,6,6,10,6,6,5,7,5,7,7,10,6,6,4,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,3,3,4,3,4,4,11,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,3,3,2,2,2,3,2,3,2,3,2,3,2,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,6,4,5,5,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,11/2,4,4,3,3,2,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,5,4,5,5,15,8,9,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,7,12,8,12,12,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,4,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,21/2,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -14,8,8,6,8,5,6,5,7,4,4,7/2,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,3,2,3,3,5,3,3,5/2,3,2,3,3,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,3,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,4,3,6,4,4,3,3,2,5/2,2,5,3,3,3,3,2,7/2,4,10,6,11/2,4,6,4,9/2,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,7/2,4,6,4,5,4,7,5,7,7,6,4,7/2,3,4,3,3,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,3,2,3,3,5,4,9/2,4,6,4,5,5,9,5,9/2,4,5,3,4,4,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5 -11,6,6,9/2,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3 -18,10,10,7,21/2,6,7,5,7,4,4,4,6,4,5,5,8,4,4,3,9/2,4,5,5,6,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,2,2,2,2,1,3,2,1,1,1,1,1,2,4,2,2,2,3/2,1,0,0,2,1,1,1,2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,9/2,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,12,7,7,5,13/2,4,5,4,8,5,5,4,13/2,4,6,6,8,5,5,4,11/2,4,4,4,8,5,5,5,8,6,8,8,7,4,4,3,9/2,3,4,3,5,3,4,3,7/2,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,4,3,7/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,3,6,4,4,4,13/2,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,0,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,1,0,1,1,1,1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-3,-2,-5 -11,6,6,5,7,4,5,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,5/2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,9/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3 -15,8,8,6,9,5,6,5,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,4,3,3,2,2,2,2,1,2,2,3/2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,5/2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,5,10,6,11/2,4,6,4,4,4,7,4,9/2,4,6,4,5,5,6,4,7/2,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,1,1,1,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,3,2,3,2,5/2,2,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,7/2,3,5,3,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-6,-4,-11/2,-6,0,1,1,1,0,0,1/2,1,0,0,0,1,1,1,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4 -14,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,4,3,3,2,3,2,2,3/2,2,2,2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,7/2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4 -26,14,14,10,14,8,8,6,21/2,6,6,4,6,4,6,6,12,6,6,5,7,4,5,5,17/2,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,9/2,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,6,4,5,5,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,9/2,3,3,2,2,2,3,3,1,1,1,1,1,1,2,2,5/2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,15/2,5,6,5,9,6,8,8,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,5,17/2,5,6,5,9,7,11,11,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,9/2,2,2,2,3,2,2,2,6,4,5,4,6,4,4,4,13/2,4,4,3,5,4,5,6,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,7/2,2,3,3,6,5,7,7,9,5,5,4,6,4,5,5,17/2,5,5,4,7,4,5,5,7,4,4,3,5,3,4,4,15/2,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,6,4,4,3,3,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-8,-4,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,6,4,6,13/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,4,3,3,3,4,3,3,2,3,2,3,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 -18,10,10,7,10,6,13/2,5,7,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,4,6,4,7/2,3,4,3,4,3,6,4,7/2,3,4,3,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,9/2,4,9,5,5,4,6,4,4,4,5,3,7/2,3,4,3,9/2,4,6,4,4,3,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,4,3,4,3,7/2,3,3,2,2,2,2,2,5/2,2,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,3,2,5/2,2,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-2,-4,-2,-3,-3,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1/2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,29/2,8,10,8,11,6,7,6,17/2,6,7,6,10,6,6,4,11/2,4,5,5,9,5,6,4,11/2,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,5,3,4,4,6,4,6,6,8,5,5,4,9/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,5/2,2,3,3,2,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,7,5,6,5,17/2,6,9,9,16,9,9,6,17/2,5,6,5,8,5,5,4,13/2,4,6,6,9,5,5,4,7,5,6,6,11,7,8,6,19/2,7,10,10,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,7,4,4,3,9/2,3,3,3,5,3,3,2,7/2,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,5,5,10,5,5,4,11/2,4,4,3,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,6,4,4,4,11/2,4,6,6,12,7,7,5,13/2,4,5,4,8,5,5,4,6,4,5,5,7,4,5,4,11/2,4,4,4,8,5,5,4,15/2,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,9/2,3,3,3,8,5,5,4,11/2,4,4,4,7,4,5,4,11/2,4,6,6,7,4,5,4,5,3,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-1,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-9,-9,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6 -18,10,10,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,9/2,7,5,7,7,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,5/2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,5/2,3,2,4,5/2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,14,8,19/2,8,12,7,7,6,9,6,7,6,10,6,11/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,5,3,4,4,6,4,11/2,6,9,5,5,4,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,0,1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,3,4,2,5/2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,11/2,4,7,5,13/2,6,11,6,6,4,6,4,9/2,4,7,4,11/2,5,8,6,9,9,16,8,17/2,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,6,15/2,6,10,7,19/2,10,11,6,6,4,5,3,7/2,3,4,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,5,4,11/2,5,10,6,11/2,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,9/2,4,6,4,9/2,4,7,4,9/2,4,5,3,4,4,8,5,11/2,4,8,5,7,7,11,6,6,4,7,4,5,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,9/2,4,6,4,11/2,5,7,4,9/2,4,5,3,4,3,5,3,4,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-5 -26,14,14,10,14,8,10,8,12,7,7,6,9,6,7,6,10,6,6,4,6,4,5,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,9,5,5,4,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,2,2,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,6,7,6,10,7,10,10,11,6,6,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,5,4,6,11/2,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-17/2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -52,27,27,18,26,14,16,13,23,12,13,10,15,10,13,12,23,12,13,9,14,9,11,9,16,9,9,7,10,7,10,9,17,9,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,16,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1/2,1,1,1,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,11,11,22,11,11,7,10,6,7,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,6,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,15,9,11,10,18,12,17,17,20,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,9,7,10,10,18,10,11,8,12,8,10,9,15,9,11,9,15,10,15,14,21,11,11,8,11,7,8,7,13,7,7,6,9,6,9,9,17,9,9,6,9,6,8,7,13,7,7,6,9,6,9,8,15,8,7,5,7,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-3,-3,0,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-6,-5,-11,-7,-12,-12,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-7,-31/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15/2,-3,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10 -27,14,14,9,13,15/2,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,5/2,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,4,7/2,5,7/2,4,4,8,5,6,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,9/2,6,4,4,4,7,4,4,7/2,5,7/2,5,5,9,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,9/2,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4 -27,14,27/2,9,13,8,17/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,9/2,3,5,3,7/2,3,4,2,2,2,3,2,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,4,3,7/2,4,6,4,6,6,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,7/2,2,4,2,5/2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,3,2,5/2,3,5,3,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,0,1,1,1,2,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,3,3,5,3,3,2,4,3,3,3,5,3,5/2,2,2,2,5/2,3,4,3,7/2,4,6,4,11/2,6,10,6,11/2,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,9/2,4,5,4,9/2,4,8,5,13/2,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,7/2,3,3,2,5/2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,7,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,9/2,4,5,4,6,6,10,5,5,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,5,4,5,3,3,3,6,4,4,3,5,4,11/2,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,15/2,8,12,6,6,5,7,4,9/2,4,7,4,9/2,4,4,3,9/2,5,9,5,11/2,4,5,4,9/2,4,6,4,4,3,6,4,5,5,9,5,9/2,4,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-3,-6,-6,-14,-6,-6,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 -18,9,9,6,9,11/2,6,5,8,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,2,4,5/2,3,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,4,3,4,3,5,7/2,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,5/2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,5,7,7,6,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,7/2,3,3,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,3,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,7/2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 -26,13,13,9,27/2,8,9,8,12,7,7,6,17/2,6,7,6,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,9/2,3,4,3,3,2,2,2,3,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,3,3,9/2,3,3,3,4,3,3,3,6,5,7,7,9,5,5,4,5,3,4,3,4,2,2,2,7/2,2,3,3,6,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,5,3,3,3,9/2,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,9/2,2,2,2,5,3,3,2,3,2,2,2,5,3,2,2,5/2,2,3,3,4,3,4,3,5,4,6,6,10,6,6,4,13/2,4,6,5,6,4,4,4,11/2,4,4,4,7,4,5,4,11/2,4,5,5,9,6,7,6,19/2,7,10,10,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,9/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,11/2,4,5,4,7,4,4,4,11/2,4,5,4,9,5,5,4,9/2,3,3,3,6,4,4,3,9/2,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,9/2,4,5,5,9,5,6,4,13/2,4,6,5,6,4,5,4,6,4,5,5,10,5,5,4,11/2,3,3,3,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,5,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,3,4,2,2,1,1,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-9/2,-3,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-1,-3 -15,8,8,6,8,5,6,5,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -19,10,19/2,7,10,6,13/2,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,0,1,3/2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,7/2,3,4,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3/2,2,2,2,2,2,6,4,7/2,3,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,3,3,2,3,2,4,3,4,3,6,4,4,3,4,3,9/2,4,8,4,4,3,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,6,3,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,4,2,2,2,3,2,5/2,3,4,3,3,3,3,2,7/2,4,3,2,5/2,2,3,2,7/2,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,9/2,3,5,3,4,4,6,4,4,3,6,4,11/2,5,10,6,11/2,4,5,3,4,4,5,3,4,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,1,1,1,1,2,2,5/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-11/2,-6,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-2 -16,17/2,8,6,9,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -29,15,15,10,14,8,10,8,27/2,8,8,6,10,6,8,7,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,9,5,5,4,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,1,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,7/2,2,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,5,5,17/2,5,6,4,6,5,7,7,11,6,6,4,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,11/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,15/2,4,4,4,6,4,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,9,6,9,9,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,4,3,3,2,3,3,4,4,15/2,5,6,5,7,5,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,3,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,9/2,3,3,3,4,3,5,6,10,5,5,4,6,4,5,5,19/2,6,6,5,7,5,7,7,16,9,9,6,9,5,6,5,17/2,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3/2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3/2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,5,3,3,2,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-4,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,4,2,2,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,-1,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2 -16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,6,7/2,4,5/2,4,2,2,2,3,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,3,2,3,2,2,2,3,2,3,7/2,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,3,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1 -17,9,9,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,5,5,4,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,2,0,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,5/2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,0,0,1/2,0,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,7/2,4,5,3,7/2,3,4,3,9/2,4,5,3,7/2,2,4,2,2,2,3,2,2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,3,2,4,3,7/2,3,5,3,7/2,4,5,4,5,5,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,3,2,5/2,2,3,2,2,2,4,3,7/2,3,4,3,4,4,4,3,7/2,3,3,2,3,3,5,3,3,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,6,4,4,3,4,3,7/2,3,6,4,4,3,4,3,9/2,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,2,3,2,5/2,2,4,3,4,4,6,3,3,3,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,1,1,1,1,0,1,3/2,2,3,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-9/2,-4,4,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1 -13,7,7,5,6,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0 -20,11,11,8,21/2,6,8,7,12,7,8,6,9,6,7,6,10,6,6,4,11/2,4,4,3,5,3,3,3,9/2,4,5,5,6,4,4,3,9/2,3,3,3,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,5,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,4,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,1,2,2,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,6,3,3,2,3,2,2,2,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,3/2,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,7/2,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,11/2,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,13/2,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,11/2,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,7/2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,1,1,3/2,2,2,1,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,-1,-1,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,5,3,2,2,3/2,2,2,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-2,0,0,0,-3/2,0,0,0,2,1,1,1,2,1,1,1,0 -13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,5/2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1 -18,9,9,7,9,6,7,6,11,6,7,5,8,5,7,6,10,6,11/2,4,5,3,4,4,5,3,4,4,6,4,11/2,5,6,4,4,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,2,5/2,2,4,3,4,4,3,2,2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,3/2,1,6,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,1,1,1,1,0,1,3/2,2,1,1,3/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,9/2,5,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,3,2,5/2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,7,4,5,4,5,4,11/2,5,8,5,5,3,4,3,3,2,4,2,5/2,2,3,2,3,3,7,4,7/2,2,4,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,-1/2,0,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,0,0,0,1,0,0,1/2,0,0,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,1,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,4,2,5/2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,2,2,2 -17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,10,6,6,4,5,3,4,4,5,3,4,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,2,4,3,3,3,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,5/2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,0,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,4,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2 -32,17,17,12,18,11,13,11,18,10,10,8,12,8,11,10,39/2,10,11,8,11,7,8,7,11,6,7,5,8,6,9,9,10,6,6,4,5,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,3,5,4,5,5,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,9/2,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,3,4,4,11/2,4,4,4,6,4,5,5,8,5,5,5,8,6,8,7,5,3,4,3,4,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,2,3,3,5,3,3,2,3,2,3,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,7,4,4,3,4,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,11/2,4,4,3,3,3,4,4,6,4,4,3,4,3,4,4,8,5,6,5,7,4,5,5,8,4,4,3,5,3,4,4,17/2,5,6,5,8,5,6,6,11,6,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,8,6,9,6,8,8,29/2,8,8,6,8,5,6,5,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,15/2,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,1,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,6,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,3,2,3,2,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-18,-8,-8,-5,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-10,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,4 -17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,6,3,3,5/2,3,5/2,3,3,5,3,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -17,9,19/2,7,10,6,15/2,6,10,6,6,5,7,5,13/2,6,10,6,6,4,7,4,5,4,6,4,4,3,5,4,11/2,5,6,3,3,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,7/2,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,1,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,1,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,3/2,1,5,3,3,2,3,2,3/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,3/2,2,1,1,2,2,4,3,3,2,3,2,3/2,1,1,1,1,1,1,1,2,2,4,3,3,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,2,2,3/2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,2,2,5/2,3,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,3,3,5,4,9/2,5,4,3,3,2,3,2,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,1,1,1,1,1,6,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,5,3,7/2,2,3,2,3,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,5,7,4,11/2,5,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,7/2,3,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,5/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,1,1,1,0,1,3/2,1,1,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,3,2,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2 -12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,5/2,4,5/2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-2,-3,-3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -19,10,11,8,23/2,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,7,5,6,5,6,4,4,4,11/2,4,6,6,7,4,4,3,9/2,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,2,1,1,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,2,2,2,2,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,3,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,4,4,3,4,3,5,4,6,6,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3/2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,4,3,9/2,3,4,5,7,4,3,2,3,2,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,4,5,5,8,5,6,4,13/2,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,13/2,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,7/2,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-2,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,2,2,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,3 -12,13/2,7,5,7,4,5,4,7,4,4,4,5,7/2,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,10,5,5,4,5,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,2,3/2,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2 -15,8,8,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,3,5,4,9/2,4,6,3,3,3,5,4,5,4,6,4,7/2,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3,2,3,2,3,3,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,3,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,1,1,1,1,2,2,5/2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,9/2,4,6,3,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,4,6,4,4,3,5,4,11/2,5,13,7,7,5,6,4,9/2,4,6,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,5/2,3,6,4,7/2,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-4,-4,3,2,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3 -13,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,1,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,3,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,7/2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,5/2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,4 -24,13,13,9,12,8,10,8,29/2,8,9,7,10,6,8,7,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,7/2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,9/2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,5,3,4,3,5,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,6,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,2,7,4,4,3,3,2,3,3,4,3,4,4,7,5,6,6,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,3,4,4,15/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,13/2,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,11,6,7,6,9,6,8,8,22,11,11,7,10,6,8,6,21/2,6,7,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,5,4,5,5,6,4,4,3,4,2,2,2,5/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,3,3,9/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,3,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,0,2,1,1,1,0,1,1,1,1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-4,-6,-6,4,3,3,2,2,2,2,1,1/2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,1,1,2,1,1,1,3/2,1,1,1,2,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,3,5,3,4,4,7 -13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,13,7,7,9/2,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 -15,8,17/2,6,8,5,13/2,6,10,5,5,4,6,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,5/2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,3,2,3,3,2,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,4,3,7/2,3,1,1,2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,5,3,3,3,5,4,5,4,6,3,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,5,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,11/2,6,15,8,8,5,7,4,5,4,6,4,9/2,4,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,4,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,3,3,4,2,5/2,3,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,2,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-3,-2,-3,-3,3,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,2,2,4 -12,7,7,5,7,4,5,9/2,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,12,7,7,9/2,6,7/2,4,7/2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3 -20,11,11,8,12,7,9,7,12,7,7,5,15/2,5,6,6,12,6,6,4,13/2,4,5,5,7,4,5,4,11/2,4,5,5,7,4,4,3,9/2,3,3,3,5,3,4,3,4,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,9/2,3,4,4,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,6,4,4,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,3,4,2,2,2,2,2,2,1,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,3,2,3,2,3,2,2,2,0,1,1,1,3/2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,5,3,3,2,7/2,2,3,3,5,3,4,3,5,3,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,2,5,3,3,2,7/2,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,3,9/2,3,4,5,10,6,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,9,5,4,3,9/2,4,5,5,10,6,6,5,17/2,6,8,8,21,11,11,7,9,6,7,6,9,5,6,5,8,5,6,6,10,6,6,5,7,4,4,4,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,4,3,5,4,5,5,5,3,3,2,5/2,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,3,2,7/2,3,4,4,7,4,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,3/2,2,2,2,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-14,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-3,-1,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,3,2,2,2,3/2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,4,3,3,3,9/2,3,3,3,5 -14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,5/2,3,2,3,7/2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,6,6,14,15/2,8,5,6,4,5,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,3,5/2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,4 -20,10,10,7,10,6,15/2,6,11,6,7,5,8,5,13/2,6,11,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,4,4,7,4,5,4,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,2,3,2,3,2,3,2,7/2,4,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,5/2,2,1,1,2,2,3,2,3,3,4,3,3,3,6,4,7/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,2,4,3,3,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,2,2,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,0,1,1,1,2,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,7/2,3,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,3,2,3,2,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,5,4,5,5,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,4,4,3,5,5,9,5,6,5,8,6,8,8,20,10,21/2,7,9,5,6,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,7/2,4,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,5,5,4,2,5/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,7/2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,5,3,3,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,7,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,1,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,5,3,7/2,3,5,4,9/2,4,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,1,1,3/2,2,1,1,1,1,2,2,2,1,1,1,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -20,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,3,2,3,3,4,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,5,4,7,4,4,7/2,5,7/2,5,5,8,5,6,5,8,6,8,8,20,10,10,7,9,5,6,6,10,11/2,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,5/2,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3/2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,7/2,4,3,5,3,4,4,6,4,4,3,5,4,5,9/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,3,2,2,2,4,3,3,3,5 -39,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,21,11,11,8,11,6,7,6,10,6,7,5,8,6,8,8,27/2,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,3,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-8,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,0,-1,0,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,7,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,8,9,8,13,9,14,14,38,20,20,14,20,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,23/2,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,6,9,6,7,6,11,6,7,6,9,6,8,8,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,5,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,8,8,8,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-26,-13,-13,-8,-13,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-8,-8,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,4,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,5,9 -20,11,11,8,11,13/2,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,3,2,4,3,4,3,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,5/2,4,5/2,3,3,4,3,4,7/2,6,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,1/2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,1,1,1,1,1,1,0,1/2,0,1/2,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,4,3,4,4,6,7/2,4,5/2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,5,7/2,5,5,5,3,3,3,4,5/2,3,5/2,3,2,3,5/2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,4,5,4,7,9/2,5,9/2,7,5,8,8,20,11,11,8,10,6,7,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,5/2,4,5/2,3,5/2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,7/2,5,4,5,5,5,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,3,3,5 -21,11,11,8,11,6,15/2,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,5,3,3,3,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,3,2,4,3,7/2,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,3,3,5,3,4,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,4,2,5/2,2,3,2,3,3,4,3,4,3,6,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,1,1,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,5/2,3,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,4,3,4,4,5,3,7/2,2,3,2,3,3,5,3,7/2,3,5,3,7/2,4,7,4,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,5,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,3,7,4,9/2,4,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,11/2,5,11,6,6,4,5,4,5,5,8,5,11/2,5,7,5,8,8,21,11,11,8,10,6,8,7,10,6,6,5,8,5,13/2,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,4,3,3,2,3,2,5/2,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,4,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,5,3,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,3,2,3/2,1,1,1,3/2,2,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,3/2,2,3,2,3,3,5 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,9/2,8,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,3,5/2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,7/2,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,3/2,2,3/2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3 -21,11,12,8,23/2,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,13/2,4,5,4,6,3,3,3,4,3,5,5,9,5,4,3,9/2,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,4,4,4,3,4,3,9/2,4,5,5,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,8,4,4,3,7/2,2,3,2,2,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,0,0,0,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,3,2,3,2,3,2,3,3,1,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3/2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,7,4,4,3,3,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,13/2,4,5,5,12,7,7,5,6,4,5,5,9,5,6,5,9,6,8,8,24,12,12,8,23/2,7,8,7,11,6,7,5,15/2,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,5,3,3,3,4,3,4,5,6,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,4,3,3,2,7/2,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,7/2,2,3,2,3,2,2,2,4,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,7/2,3,4,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,2,2,2,3/2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,9/2,4,6,6,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3/2,2,2,2,3 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,7/2,8,4,4,3,4,3,4,3,5,3,4,7/2,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,5/2,4,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2 -15,8,8,6,8,5,11/2,5,9,5,11/2,4,6,4,5,5,9,5,6,4,5,3,4,3,6,3,3,3,4,3,3,3,6,4,7/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,3,3,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,5/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,10,5,5,4,5,4,9/2,4,6,4,9/2,4,7,5,13/2,7,18,9,9,6,9,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,4,5,3,7/2,4,6,4,7/2,3,4,3,7/2,4,7,4,4,3,5,3,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,6,4,4,3,3,2,3,3,4,2,5/2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,0,-1,0,1,1,0,1,3/2,2,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,4,4,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2 -14,7,7,5,7,4,5,4,8,9/2,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-2,-1/2,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,13/2,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,2 -25,13,13,9,13,7,8,7,25/2,7,8,6,10,7,9,8,15,8,7,5,7,4,5,5,9,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,3,8,5,5,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,4,8,5,5,4,5,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,8,4,4,3,4,3,3,2,5/2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,7/2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,3,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,1,1,1,1,1,1,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,1,1,6,3,3,2,2,2,2,2,5/2,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,8,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,17,9,10,7,10,6,7,6,19/2,6,6,4,6,4,6,6,15,8,8,6,9,5,6,6,21/2,6,8,7,12,8,12,12,29,15,14,10,14,8,10,8,29/2,8,8,6,8,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,4,3,3,3,9/2,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,1,1,2,2,2,1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,5,3,3,2,3,2,1,1,1,1,2,2,3,2,3,3,5,3,3,2,2,1,1,1,3/2,2,2,2,3,3,4,4,2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,4,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3 -14,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,9/2,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,16,17/2,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,6,5,9,5,5,4,5,3,7/2,4,5,3,7/2,2,4,3,7/2,3,6,4,4,3,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,1,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,5,3,7/2,2,4,3,3,3,5,3,4,3,5,4,9/2,4,11,6,6,4,6,4,4,4,8,4,9/2,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,13/2,6,10,5,5,4,5,4,5,5,8,5,5,3,5,3,7/2,3,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,3,3,2,3,2,3,2,7/2,3,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,6,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,7/2,3,3,2,3,3,4,3,3,2,2,2,3,3,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,0,0,1,0,0,-1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,5/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2 -11,6,6,9/2,6,4,5,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,9,5,5,7/2,5,3,4,7/2,7,4,4,7/2,5,4,5,4,8,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -18,9,9,6,19/2,6,6,5,9,5,5,4,13/2,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,7/2,2,3,3,9,5,5,3,4,3,3,3,4,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,3,7/2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,0,2,2,2,2,5/2,2,4,4,7,4,4,3,7/2,2,3,2,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,7/2,3,4,4,7,4,4,3,5,3,4,4,5,3,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,1,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,7/2,2,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,3,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,5/2,2,2,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,6,6,14,8,8,6,15/2,5,6,5,11,6,6,5,17/2,6,7,7,14,7,7,5,15/2,5,6,5,10,6,7,6,19/2,7,10,10,25,13,13,9,13,8,9,8,13,7,8,6,8,5,6,6,11,6,6,4,13/2,4,5,4,7,4,5,4,11/2,4,6,5,10,5,5,4,11/2,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,9/2,3,4,3,5,3,3,3,9/2,3,4,3,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,5,7,4,4,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-3/2,0,0,0,0,1,1,1,3/2,2,2,1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,7/2,2,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,3/2,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,4 -12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,8,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,11/2,6,11/2,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -17,9,17/2,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,3,3,9,5,9/2,4,4,3,3,2,3,2,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,4,3,3,3,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,3,7/2,4,6,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,4,2,2,2,3,2,5/2,2,2,2,2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,7/2,3,5,4,11/2,6,14,8,8,5,7,5,6,6,11,6,13/2,5,8,5,7,7,13,7,13/2,5,7,5,6,6,10,6,7,6,10,7,10,9,25,13,25/2,8,13,8,9,8,13,7,15/2,5,8,5,13/2,6,10,6,11/2,4,6,4,9/2,4,8,5,5,4,6,4,6,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,7/2,3,6,3,3,2,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,1/2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,7/2,4,4,2,5/2,2,3,2,5/2,2,4,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,7/2,2,3,2,2,2,3,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4 -16,17/2,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,9,5,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,14,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,12,13/2,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,25/2,12,8,12,7,9,8,13,7,7,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,1,1,1,0,1/2,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,35/2,10,10,7,9,5,6,5,8,5,5,4,5,4,5,5,16,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,4,5,4,5,3,3,2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,3,4,4,8,5,6,5,9,6,9,9,11,6,6,4,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,6,5,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,0,0,0,0,-3/2,0,0,1,2,1,1,1,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,19/2,6,6,5,8,5,7,7,12,7,9,7,12,8,10,10,26,14,14,10,14,9,11,9,16,9,10,8,13,9,13,12,23,12,13,10,16,10,12,11,20,11,13,11,18,12,18,17,47,24,24,16,24,13,15,12,20,11,11,8,13,8,10,10,35/2,9,9,7,10,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,4,5,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,17/2,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,7/2,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,5,5,9,5,4,3,4,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,4,4,6,3,3,3,4,2,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-3,-3,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,7,4,5,4,5,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,5,6,5,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7 -16,9,9,6,9,11/2,6,11/2,9,5,6,5,7,5,6,5,10,6,6,4,5,3,3,3,5,3,3,5/2,3,5/2,3,3,9,5,5,3,5,3,3,3,3,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,6,4,4,5/2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,1,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1/2,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,5/2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,6,7,6,10,7,10,19/2,25,13,13,9,13,7,8,7,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,3,5/2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,4,3,5,3,4,4,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4 -17,9,19/2,7,10,6,13/2,6,10,6,6,5,7,5,6,5,10,6,11/2,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,9,5,5,3,5,3,7/2,3,3,2,2,2,2,2,5/2,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,4,4,3,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,5,3,7/2,4,6,4,11/2,5,7,4,7/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3,3,3,2,7/2,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,7,5,13/2,6,15,8,8,6,8,5,6,6,9,5,6,5,8,6,15/2,7,12,7,15/2,6,9,6,15/2,7,12,7,8,7,11,8,21/2,10,27,14,14,10,13,8,17/2,7,11,6,7,5,8,5,13/2,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,9/2,4,6,4,7/2,3,4,3,4,3,6,3,3,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,0,0,1/2,0,1,1,1,1,-1,0,1/2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-3/2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,0,0,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,4,4,3,7/2,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5 -13,7,7,5,7,4,5,9/2,8,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,9/2,7,5,6,6,10,6,6,5,9,6,8,8,20,11,11,7,10,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,7,4,4,3,4,3,4,3,4,5/2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -20,11,11,8,21/2,6,7,6,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,4,3,5,4,5,5,10,6,6,4,11/2,4,4,3,4,2,2,2,3,2,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,6,4,4,4,13/2,5,7,7,8,4,4,3,9/2,3,4,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,1,1,1,1,1,1,2,5/2,2,2,2,5,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,11/2,4,6,5,6,3,3,2,7/2,2,2,2,5,3,4,3,4,3,4,4,3,2,2,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,18,9,9,6,19/2,6,7,7,10,6,7,6,9,6,9,9,14,8,9,7,10,7,9,9,16,9,10,8,14,10,14,13,33,17,17,11,31/2,9,10,8,13,7,8,6,19/2,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,-1,0,1,1,1,1,0,0,-1,0,0,1,1,1,2,2,4,3,3,2,2,2,2,2,4,3,3,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,11/2,4,6,6,9,5,5,4,9/2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-2,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-1,0,0,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,7/2,2,3,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,6,6,5,3,3,3,5,3,4,4,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,4,4,6,4,4,4,11/2,4,6,6,7,4,5,4,11/2,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,4,4,5,3,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,5/2,2,3,3,3,2,3,2,7/2,3,4,3,5 -13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,5/2,3,3,5,3,4,3,4,5/2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,6,10,6,7,6,9,13/2,9,9,21,11,11,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,5/2,3,5/2,3,2,3,3,3,2,3,2,4,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3 -18,10,19/2,7,9,6,7,6,10,6,6,5,7,4,11/2,5,10,6,6,4,6,4,9/2,4,6,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,5/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,6,3,3,3,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,4,4,7,5,13/2,6,14,8,15/2,6,8,5,13/2,6,9,6,13/2,5,8,5,7,7,12,7,7,5,9,6,15/2,7,13,8,9,8,13,9,12,12,28,14,14,9,13,8,17/2,7,12,7,7,5,8,5,7,6,12,6,13/2,4,7,4,5,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,5/2,2,3,2,3,3,3,2,7/2,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1/2,0,1,1,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,4,3,7/2,3,5,4,9/2,4,5,3,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,4,3,4,3,9/2,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,3,2,7/2,4,4,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4 -17,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,9,11/2,6,5,8,5,7,7,11,6,7,5,8,5,7,7,12,7,9,7,12,8,11,11,26,13,13,17/2,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,5/2,4,3,4,3,4,3,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,5/2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4 -33,17,18,12,18,10,12,10,33/2,9,10,7,10,7,9,8,18,10,10,7,9,6,7,6,21/2,6,8,6,10,6,8,8,14,7,7,5,8,5,6,4,13/2,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,7/2,2,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15/2,4,5,4,7,5,8,8,14,8,8,6,8,5,5,4,9/2,3,4,3,4,3,4,4,3,2,1,1,1,1,2,2,3/2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,3,2,3,2,3,2,2,2,3/2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,5/2,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,2,7/2,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,13/2,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,8,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,23/2,7,8,6,10,7,11,11,23,12,12,9,13,8,11,10,17,10,11,8,13,9,13,13,21,11,12,9,14,9,13,12,45/2,13,15,12,20,14,21,21,48,24,24,16,24,13,15,12,41/2,11,12,9,14,9,11,11,21,11,12,9,13,8,9,8,27/2,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,19/2,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,9/2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,6,4,5,5,8,4,4,3,4,3,3,3,9/2,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,15/2,4,5,4,7,5,8,8,12,6,6,4,5,3,2,2,5/2,2,1,1,1,1,1,1,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,5,4,6,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,17/2,5,6,5,7,5,6,5,7,4,3,2,3,2,3,3,5,3,3,3,5,4,5,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6 -18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,7/2,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,5/2,3,2,2,2,3,2,3,3,2,3/2,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,7/2,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,11/2,8,8,12,7,7,6,9,6,8,7,13,8,9,7,12,8,12,12,27,14,14,10,14,8,9,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,9/2,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -21,11,23/2,8,11,7,8,7,10,6,13/2,5,6,4,11/2,5,11,6,13/2,4,6,4,5,5,8,5,11/2,4,7,5,6,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,6,3,3,3,3,2,2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,7/2,3,5,4,11/2,6,9,5,5,4,6,4,7/2,3,3,2,5/2,2,3,2,3,3,3,2,2,1,2,2,3/2,1,2,1,1,1,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,-1,0,0,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,3,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,9/2,4,6,4,5,5,8,4,9/2,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,17/2,6,9,6,15/2,7,12,7,15/2,6,9,6,9,9,15,8,9,7,11,7,10,9,16,9,21/2,8,14,10,14,14,32,16,33/2,12,16,9,21/2,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,8,5,11/2,5,7,5,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,7/2,2,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,4,5,3,4,4,8,5,5,3,4,3,7/2,4,6,4,4,3,6,4,9/2,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,4,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,4,3,3,2,3,2,3,3,5,3,3,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4 -18,19/2,10,7,9,11/2,6,6,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,5,5,7/2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3/2,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,7,11/2,8,5,7,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,9/2,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,5/2,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1/2,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,31/2,9,10,9,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,8,13,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,5,8,4,4,3,3,2,2,2,5,3,4,3,7/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,6,4,4,3,7/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,3,2,3,3,4,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,15/2,4,4,3,5,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,1,1,3/2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,5/2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,9/2,4,5,5,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,13/2,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,25/2,8,12,12,23,12,13,9,13,8,10,9,18,10,12,9,29/2,10,13,12,22,12,13,10,16,10,13,13,24,14,16,13,21,14,21,21,47,24,24,16,24,14,16,14,22,12,13,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,8,7,11,7,10,9,14,7,7,5,15/2,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,11/2,4,5,5,7,4,5,4,6,4,6,5,10,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,13/2,4,6,6,10,5,5,4,5,3,3,3,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-14,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,-1,-2,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,3,3,9/2,3,4,4,9,5,5,4,11/2,4,4,3,3,2,3,2,7/2,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,5,7,7,10,6,6,4,13/2,4,4,4,8,5,5,5,8,5,7,7,11,6,6,4,11/2,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,13/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,4,3,7/2,2,3,3,4,3,3,3,11/2,4,5,5,7,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4 -21,11,11,8,10,6,7,6,10,6,6,4,7,9/2,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,7/2,5,3,3,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,5/2,3,2,3,2,2,5/2,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,4,5,9/2,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,9,6,9,6,7,13/2,12,7,8,6,10,7,9,9,16,9,9,7,11,7,9,9,16,19/2,11,9,15,10,14,14,32,16,16,11,16,19/2,11,9,15,8,9,13/2,10,6,8,15/2,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,6,10,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,5/2,3,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1/2,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,7/2,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,3,2,4,3,3,5/2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,15,9,21/2,9,15,8,17/2,6,10,6,8,8,15,8,17/2,6,9,5,6,6,10,6,13/2,6,9,6,17/2,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,7/2,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,5,4,7,5,13/2,7,13,7,13/2,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-3/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3,3,4,2,2,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,7/2,2,4,3,3,3,5,3,4,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,13/2,6,12,6,13/2,5,7,5,6,6,10,6,6,5,7,5,13/2,6,13,7,7,5,7,5,13/2,6,12,7,8,7,12,8,12,12,22,12,25/2,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,27/2,10,17,11,14,13,24,14,31/2,13,22,15,21,21,47,24,24,16,24,14,16,13,23,12,25/2,9,14,9,12,11,20,11,11,8,11,7,17/2,7,12,7,8,6,10,7,9,9,15,8,7,5,7,5,6,5,9,5,11/2,4,7,4,11/2,6,10,6,6,4,6,4,11/2,5,8,5,11/2,4,6,4,13/2,6,10,6,13/2,4,7,4,4,4,7,4,4,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,3,5,3,7/2,3,4,2,5/2,2,4,3,7/2,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,10,6,11/2,4,5,3,7/2,3,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,2,1,1/2,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-6,-3,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,7/2,3,4,3,5,5,8,4,4,3,4,3,7/2,3,4,3,3,3,4,3,3,3,6,3,3,2,4,3,7/2,3,5,3,7/2,4,6,4,13/2,6,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,13/2,6,11,6,6,4,6,4,9/2,4,7,4,9/2,4,7,5,7,7,12,6,13/2,4,6,4,4,3,5,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,4,3,7/2,3,5,4,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,2,2,3,2,5/2,2,3,2,3,3,4 -31,16,16,11,15,9,10,9,15,8,8,6,10,13/2,9,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,8,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,5/2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,5/2,3,7/2,6,4,5,4,7,5,6,7,13,7,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,3/2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,6,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,5/2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,7,6,12,7,8,7,12,8,12,12,22,12,12,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,21/2,17,11,14,13,24,14,16,13,22,15,22,22,47,24,24,16,24,14,16,13,23,12,13,9,14,9,12,11,19,10,11,8,11,7,8,7,13,7,8,6,10,7,9,8,15,8,8,5,7,5,6,5,9,5,6,9/2,7,9/2,6,6,10,6,6,4,6,4,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,7,4,4,4,7,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3,5,3,4,3,4,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4 -60,31,31,21,30,17,20,17,30,16,17,13,20,13,17,16,31,16,17,12,17,10,12,11,20,11,12,10,17,12,17,17,32,16,16,11,15,9,11,9,15,8,9,6,9,6,9,8,15,8,9,7,11,7,9,8,13,8,9,8,14,10,14,13,25,13,14,10,14,8,10,9,17,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,13,51/2,14,14,10,15,9,11,10,17,10,11,8,13,8,10,10,18,10,10,7,11,7,8,7,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,13,10,15,9,10,9,16,9,10,7,11,7,10,10,18,9,9,7,10,6,7,6,9,5,6,5,8,6,8,8,15,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,3,4,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,2,2,3,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,39/2,10,10,8,12,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,10,6,8,8,15,9,11,10,17,12,18,19,37,19,19,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,12,22,13,15,12,21,14,21,21,40,21,22,15,23,14,17,14,25,14,16,13,22,14,20,19,37,20,21,16,25,16,22,21,41,23,27,23,41,28,42,42,92,46,46,31,46,26,31,26,47,25,26,19,31,19,26,24,44,23,23,16,23,14,17,14,25,14,16,13,22,14,20,20,38,19,19,13,19,11,14,12,20,11,11,8,13,8,11,11,21,11,12,9,13,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,10,12,10,17,9,10,8,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,19,10,11,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,8,29/2,8,8,6,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,7,13,8,9,8,14,9,13,13,25,13,13,9,14,8,9,7,12,7,7,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,5,7,4,5,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,4,5,4,7 -31,16,16,11,16,9,10,9,16,9,9,7,11,7,9,9,16,17/2,9,6,9,11/2,6,6,11,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,5,4,5,9/2,8,5,5,4,6,4,5,4,7,4,5,5,7,5,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,7,9/2,6,6,9,5,5,4,6,4,5,4,7,9/2,5,5,8,6,8,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,5/2,4,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,5,5,10,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,7/2,5,7/2,4,4,8,5,6,5,9,13/2,10,10,19,10,10,7,11,13/2,8,7,12,7,7,6,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,11,20,11,11,8,12,7,9,15/2,13,15/2,8,7,12,8,11,10,19,10,11,17/2,13,8,11,11,21,12,14,12,21,15,22,22,47,24,24,16,24,14,16,14,24,13,14,10,16,10,14,12,23,12,12,8,12,7,9,8,13,8,9,7,11,15/2,10,10,20,10,10,7,10,6,7,6,11,6,6,5,7,9/2,6,6,11,6,6,5,7,9/2,6,5,8,5,6,9/2,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,8,5,6,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,7/2,5,3,4,7/2,6,4,4,7/2,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,5/2,4 -31,16,16,11,16,9,21/2,9,16,9,9,7,11,7,19/2,9,16,8,17/2,6,9,6,13/2,6,11,6,7,6,9,6,9,9,17,9,17/2,6,8,5,6,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,4,4,6,4,5,5,7,5,8,8,14,8,8,6,8,5,11/2,5,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,9/2,4,6,4,13/2,6,11,6,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,4,4,7,4,9/2,3,5,4,9/2,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,11/2,5,9,5,11/2,4,7,4,11/2,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,15/2,7,13,7,15/2,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,5,4,6,5,7,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,8,4,7/2,3,4,3,3,3,5,3,5/2,2,4,2,5/2,2,5,3,5/2,2,2,2,3/2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,5,5,10,6,6,5,6,4,9/2,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,8,4,4,3,4,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,6,5,9,6,19/2,10,19,10,10,7,11,6,15/2,6,12,7,7,6,8,5,7,7,13,7,15/2,6,8,5,7,7,11,7,8,7,11,8,11,11,20,10,21/2,8,12,7,17/2,7,13,8,17/2,7,12,8,11,10,19,10,23/2,9,13,8,11,11,22,13,15,13,22,15,22,22,47,24,24,16,24,14,33/2,14,24,13,27/2,10,16,10,27/2,12,23,12,12,8,12,7,9,8,13,8,9,7,11,8,21/2,10,20,10,10,7,10,6,7,6,11,6,6,5,6,4,6,6,11,6,13/2,4,7,4,11/2,5,9,5,11/2,4,8,6,8,8,15,8,9,6,8,5,6,5,9,5,11/2,4,8,5,6,6,11,6,13/2,5,6,4,11/2,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,7/2,2,3,2,7/2,4,7,4,9/2,4,5,4,9/2,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,5,3,3,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,4,3,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,13,7,7,5,7,4,5,4,7,4,9/2,3,4,3,4,4,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,4,5,5,8,4,9/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3 -21,11,11,8,11,13/2,8,6,11,6,6,5,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,7/2,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,5/2,4,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,32,17,17,23/2,17,10,12,10,16,9,10,7,11,7,9,8,16,8,8,6,8,5,7,6,9,11/2,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,5/2,5,3,3,3,4,3,4,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,5/2,3,5/2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,5/2,3,3,4,5/2,2,2,3,5/2,3,3,6,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -30,15,15,11,16,9,11,9,16,9,9,7,21/2,7,10,9,16,9,9,6,9,6,7,6,10,6,6,5,9,6,9,9,17,9,10,7,19/2,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,5,4,13/2,5,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,13/2,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,11/2,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,5,4,7,5,8,8,12,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,9,5,6,4,13/2,4,5,5,8,5,5,4,15/2,6,8,8,14,8,8,6,15/2,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,4,3,4,3,5,4,6,6,7,4,4,3,3,2,3,3,5,3,3,2,5/2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,4,3,4,4,11/2,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,11/2,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,4,5,5,9,6,7,6,9,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,11,7,10,10,19,10,10,7,21/2,6,8,7,13,7,8,6,21/2,7,10,10,19,11,12,9,29/2,10,13,12,22,13,15,13,22,15,22,22,49,25,25,17,25,14,16,14,24,13,13,10,31/2,10,12,12,24,12,12,8,25/2,8,10,8,14,8,9,7,21/2,7,10,10,19,10,10,7,19/2,6,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,6,5,9,5,5,4,7,5,6,6,11,6,6,4,11/2,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,9/2,3,4,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3 -17,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,6,11/2,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,8,5,5,7/2,5,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,5/2,4,4,4,5/2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,7/2,4,7/2,5,4,6,6,12,13/2,6,9/2,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,6,4,4,4,7,9/2,6,6,11,6,6,4,6,4,5,4,8,9/2,5,4,6,9/2,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,9,6,7,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 -21,11,11,8,12,7,15/2,6,11,6,13/2,5,7,5,7,7,12,6,13/2,5,7,4,11/2,5,8,5,5,4,6,4,13/2,6,13,7,7,5,6,4,9/2,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,4,11/2,5,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,5,7,4,9/2,4,5,3,4,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,2,3,5,3,7/2,2,3,2,3,3,5,3,4,3,5,4,11/2,6,9,5,5,4,6,4,9/2,4,6,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,3,3,6,4,4,4,5,4,6,6,10,6,11/2,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,5,3,4,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,9/2,4,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,3,4,4,6,4,4,4,6,5,7,7,15,8,15/2,5,8,5,6,5,8,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,4,4,6,4,9/2,4,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,15/2,7,12,7,8,6,10,7,9,8,15,9,10,9,15,10,31/2,16,33,17,35/2,12,17,10,23/2,10,17,9,19/2,7,11,7,9,8,17,9,17/2,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,5,4,11/2,6,12,6,13/2,5,6,4,5,4,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,7/2,3,6,4,7/2,3,5,4,9/2,4,8,5,5,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,2,3,2,3,3,6,4,7/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,2,4,3,3,2,4,3,3,3,4,3,7/2,3,6,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,4,3,7/2,3,4,3,5,5,8,5,5,4,4,3,4,3,5,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3 -18,9,9,7,10,6,7,6,9,5,5,4,6,4,6,6,11,6,6,9/2,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,5/2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,11/2,9,6,8,7,13,8,9,8,13,9,13,27/2,28,15,15,10,14,8,10,8,14,8,8,6,9,6,8,7,14,7,7,5,8,5,6,5,9,5,6,4,7,9/2,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,3,5/2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -31,16,16,11,16,9,11,9,31/2,8,8,6,10,7,10,9,19,10,11,8,12,7,9,8,13,8,9,7,11,7,10,10,20,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,15/2,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,15/2,5,6,5,7,5,6,6,8,4,4,3,4,3,4,3,9/2,3,4,3,5,4,5,5,7,4,4,2,2,2,2,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,11/2,4,5,5,8,6,8,7,14,7,7,5,7,4,5,5,17/2,5,6,4,6,4,5,4,8,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,9,5,6,4,6,4,5,5,17/2,5,6,5,9,7,10,11,22,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,5,6,6,19/2,6,7,7,12,8,12,11,18,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,11,9,14,9,13,12,45/2,13,16,14,24,16,24,24,50,26,26,18,26,15,17,14,49/2,13,14,10,16,10,13,12,24,13,13,9,14,9,11,9,16,9,10,7,11,7,10,10,19,10,10,8,12,7,9,7,12,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,7,18,9,9,6,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,5,7,4,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,3,3,2,7/2,2,2,2,4,3,3,3,9,5,5,4,5,4,5,4,7,4,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,3,2,3,3,9/2,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,11/2,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,3,3,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,2,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,11/2,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,13/2,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,15/2,4,5,4,6,4,5,5,7,4,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5 -17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,11/2,10,6,6,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,5/2,4,3,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,3,3,3,2,3,3,4,3,5,4,8,4,4,3,4,3,3,3,5,3,4,5/2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,13/2,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,6,10,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,9,8,13,9,13,13,27,14,14,10,14,8,9,8,14,15/2,8,6,9,6,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,5/2,4,3,3,3,4,3,3,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -18,10,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,11,6,13/2,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,5,3,7/2,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,7/2,3,3,2,2,2,2,2,3,3,6,3,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,7/2,2,4,3,7/2,3,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,4,4,5,3,4,3,4,3,7/2,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,5/2,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,4,2,5/2,2,3,2,3,2,4,2,5/2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,3,3,2,3,3,4,3,5,5,9,5,9/2,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,5/2,2,5,3,4,3,4,3,7/2,3,6,4,4,3,6,4,6,7,13,7,13/2,4,6,4,9/2,4,7,4,4,4,5,4,9/2,4,7,4,4,3,6,4,4,4,6,4,9/2,4,7,5,7,7,11,6,6,5,6,4,11/2,5,8,5,6,5,6,4,6,6,11,6,13/2,6,9,6,15/2,7,14,8,19/2,8,15,10,29/2,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,7,14,8,15/2,6,8,5,7,6,9,5,11/2,4,6,4,6,6,12,6,6,5,7,4,11/2,4,7,4,7/2,3,4,3,7/2,3,5,3,7/2,2,4,3,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,7/2,3,5,4,9/2,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,7,4,7/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,3,3,2,3,3,6,4,7/2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-5/2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,4,2,2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3 -14,8,8,6,8,5,5,9/2,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,7/2,5,5,9,5,5,3,5,3,3,3,4,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,3/2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,7,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -22,12,12,9,13,8,9,7,13,7,8,6,17/2,6,8,7,13,7,8,6,17/2,5,6,6,10,6,6,5,15/2,5,6,6,13,7,7,5,7,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,2,2,2,3,2,2,2,7/2,3,4,5,12,6,6,4,11/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,3,3,6,4,4,2,5/2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,13/2,4,5,5,6,4,4,3,5,3,4,4,8,4,4,4,11/2,4,4,4,6,4,5,4,6,4,6,6,8,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,7/2,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,9/2,3,4,4,5,3,2,2,2,2,2,2,5,3,3,3,4,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,10,5,5,4,6,3,3,3,6,3,3,2,3,3,4,4,5,3,3,2,3,3,4,4,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,7,4,5,4,13/2,5,7,8,15,8,8,6,8,5,5,5,8,5,6,5,7,5,6,6,9,5,6,4,11/2,4,4,4,6,4,5,4,15/2,6,8,8,12,7,7,5,7,4,5,5,9,5,6,5,17/2,6,7,7,14,8,8,6,21/2,7,10,9,16,10,12,10,18,12,17,17,35,18,18,12,18,11,13,11,18,10,10,8,12,8,10,9,17,9,10,7,19/2,6,7,7,12,6,6,5,15/2,6,8,7,15,8,8,6,15/2,5,6,5,7,4,5,4,11/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,3,3,4,3,4,4,13,7,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,5,3,4,3,4,3,4,5,9,5,4,3,4,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,3,4,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,3,4,4,3,2,2,2,2,2,3,3,4,2,2,2,7/2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,3,2,2,2,3,2,3,3,3,2,2,2,7/2,3,4,4,4,3,3,2,7/2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,2,2,2,7/2,2,2,2,5,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,4 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,5/2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,7/2,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,9/2,7,5,6,6,10,6,8,7,12,8,11,11,22,12,12,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,8,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,5/2,4,5/2,3,3,6,7/2,3,3,4,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3 -19,10,10,7,11,7,8,6,11,6,13/2,5,8,5,7,6,12,7,7,5,8,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,9/2,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,4,4,10,6,11/2,4,4,3,4,4,5,3,7/2,3,4,3,7/2,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,5/2,3,5,3,3,2,3,2,7/2,3,5,3,4,3,5,3,4,4,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,7/2,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,5,3,3,3,5,3,5/2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,5,3,7/2,3,4,2,5/2,3,5,3,3,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,4,3,7/2,3,5,4,5,5,9,5,9/2,3,5,3,3,2,5,3,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,6,4,4,3,4,3,7/2,3,6,4,4,4,6,4,13/2,7,12,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,9/2,4,7,4,5,4,6,4,4,4,6,4,9/2,4,7,5,13/2,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,13/2,6,13,7,15/2,6,10,6,8,8,14,8,21/2,9,16,11,31/2,16,31,16,31/2,10,15,9,11,9,15,8,17/2,7,10,6,17/2,8,14,8,15/2,6,8,5,13/2,6,10,6,6,5,8,5,13/2,6,13,7,13/2,4,6,4,9/2,4,6,4,4,3,5,3,3,3,5,3,7/2,2,4,3,4,3,5,3,7/2,2,3,2,7/2,4,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,3,4,4,2,2,3/2,2,2,2,3/2,2,3,2,3,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,7/2,3,5,3,4,3,9,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3 -18,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,5,4,5,5,9,5,4,3,4,3,3,2,4,5/2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,8,6,10,6,8,8,14,8,10,17/2,15,10,15,15,30,15,15,10,15,9,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,5/2,3,5/2,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,5/2,3,2,2,2,5,3,4,3,4,3,4,3,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,5,8,5,6,5,15/2,4,5,4,6,4,4,3,5,3,4,4,7,5,7,7,19,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,19/2,6,6,4,6,4,4,4,6,4,5,4,6,4,5,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,4,4,15/2,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,16,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,25/2,7,7,5,6,4,5,5,8,5,6,5,8,6,9,9,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,5,4,5,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,3,5,3,4,4,6,4,5,5,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,21/2,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,16,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,11,22,11,11,8,11,7,8,8,14,7,7,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,11,11,19,10,10,7,10,6,8,7,12,7,8,7,12,8,12,12,45/2,12,13,10,16,10,14,13,24,14,17,15,26,18,27,27,57,29,29,19,28,16,19,16,28,15,16,12,19,12,15,13,24,13,13,10,15,9,11,10,18,10,11,9,14,9,12,11,21,11,10,7,10,6,8,7,11,6,7,5,8,5,5,5,8,5,5,3,4,3,3,3,6,4,4,4,7,5,7,6,18,9,9,6,8,5,6,5,8,5,5,4,5,4,6,6,19/2,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,13/2,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,5,7,7,3,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,16,8,8,6,9,5,6,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,10,6,6,5,7,4,5,4,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6 -18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,6,11,6,6,9/2,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,7,10,13/2,8,7,13,7,7,11/2,8,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,7,6,11,6,13/2,5,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,4,9/2,4,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,3,6,4,7/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,3,4,4,9,5,9/2,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,4,11/2,6,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,3,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,1/2,0,0,0,0,1,2,2,3/2,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,4,3,5,4,9/2,5,9,5,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,4,6,4,5,5,12,6,6,4,7,4,5,4,7,4,4,3,4,3,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,6,6,10,6,11/2,4,6,4,5,4,8,5,11/2,4,7,5,7,7,12,7,7,6,10,6,17/2,8,13,8,19/2,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,13/2,6,12,6,13/2,5,6,4,5,4,6,4,4,3,5,3,4,4,4,3,7/2,2,2,2,2,2,5,3,3,3,4,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,3,2,7/2,4,4,3,7/2,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,7,4,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-5,-2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,2,2,5/2,2,2,2,3,3,9,5,9/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4 -14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,4,5/2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,2,3/2,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,6,4,4,3,4,3,4,9/2,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3 -21,11,10,7,10,6,7,6,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,15/2,5,6,5,7,4,4,3,4,3,4,3,4,3,3,2,7/2,2,3,2,4,3,4,4,11/2,4,5,5,13,7,7,5,6,4,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,7/2,2,3,2,5,3,4,3,7/2,3,4,4,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,9/2,3,4,4,9,5,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,4,3,4,4,7,4,4,3,5,3,3,2,5,3,4,3,7/2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,3,2,3,2,7/2,2,3,3,0,0,0,0,0,0,0,0,1,1,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,6,4,4,4,11/2,4,5,5,8,5,5,3,4,3,3,3,5,3,2,2,5/2,2,3,3,7,4,4,3,3,2,3,2,3,2,3,3,11/2,4,4,4,3,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,11/2,4,5,5,13,7,7,5,15/2,4,5,5,7,4,4,3,5,4,5,5,9,5,6,4,11/2,4,4,4,9,5,6,4,13/2,5,7,7,12,7,7,5,15/2,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,21/2,7,9,9,16,9,11,10,17,12,17,17,34,17,17,12,17,10,11,9,17,9,10,8,23/2,8,10,9,15,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,11,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,4,3,9/2,4,5,5,8,5,5,4,9/2,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3/2,2,3,3,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-1,0,0,0,1/2,1,1,1,-6,-2,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,7/2,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,4,10,5,5,4,9/2,3,3,2,5,3,2,2,2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,3,2,7/2,3,4,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,7/2,2,2,2,4,3,4,3,9/2,3,3,3,5 -13,7,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,5,7/2,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,11/2,9,5,5,4,6,7/2,4,4,6,4,4,3,5,7/2,5,9/2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -16,8,8,6,7,4,11/2,5,8,5,5,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,4,3,3,3,4,3,4,4,11,6,11/2,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,8,4,4,3,5,3,4,4,5,3,7/2,3,4,3,7/2,4,4,3,7/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,7/2,3,3,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,7/2,3,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,3,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,5,3,7/2,4,6,4,4,3,6,4,11/2,5,10,6,13/2,4,7,4,5,5,8,5,11/2,4,7,5,13/2,6,10,6,13/2,5,8,5,7,7,12,7,9,8,13,9,27/2,13,26,14,14,9,13,8,9,7,12,7,7,6,9,6,15/2,7,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,5,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,8,4,9/2,4,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,2,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,-2,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,4,3,3,3,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,5/2,2,2,2,3/2,1,1,1,1/2,0,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,5/2,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -14,7,7,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,5/2,3,7/2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,9/2,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,6,7/2,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 -24,12,12,8,12,7,8,7,11,6,7,6,9,6,8,7,15,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,8,5,5,4,13/2,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,9/2,4,5,5,8,6,8,8,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,7,4,4,3,5,4,5,5,19/2,6,6,5,9,6,8,8,14,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,2,2,2,7/2,2,2,2,4,3,4,4,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,11/2,4,4,4,6,4,6,5,6,3,3,3,4,3,4,4,11/2,4,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,6,16,9,9,7,10,6,7,6,9,5,6,5,7,5,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,6,8,8,19,10,10,7,10,6,8,7,25/2,8,9,7,12,8,11,11,18,10,10,8,12,8,10,10,39/2,12,14,12,21,14,21,21,42,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,17,9,10,8,12,7,9,8,27/2,8,8,6,10,7,9,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,12,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,3,3,4,4,11/2,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,6,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,11,6,6,4,6,4,5,4,13/2,4,4,3,4,3,4,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,6,3,3,3,4,2,2,2,5/2,2,2,1,1,1,1,2,-1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,1,1,3/2,2,2,1,1,1,1,2,4,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,1,1,1/2,0,0,0,0,1,1,2,7,4,4,3,4,2,2,2,7/2,2,2,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,9,5,6,4,6,4,4,3,5,3,3,2,3,2,3,4,8,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,9/2,2,2,2,2,1,1,1,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,5,5,8 -13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,4,7/2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,9/2,5,4,7,5,7,13/2,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,11/2,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,5/2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5 -15,8,8,6,8,5,6,5,8,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,6,4,9/2,4,6,4,11/2,6,10,6,6,4,5,3,7/2,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,6,6,11,6,6,4,6,4,4,4,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,5,3,4,3,5,3,3,3,4,3,3,3,3,3,4,4,6,4,5,4,6,4,11/2,6,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,3,2,5,3,4,3,4,2,2,2,3,2,3/2,2,2,2,5/2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,3,9/2,4,6,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,4,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,5,3,4,3,3,2,3,3,4,2,2,2,4,3,9/2,4,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,13/2,5,6,4,11/2,5,8,5,11/2,4,8,6,8,7,12,7,7,6,9,6,15/2,7,13,8,9,8,14,10,27/2,14,26,14,27/2,9,13,8,17/2,7,13,7,7,6,8,6,8,7,12,6,6,5,8,5,5,5,9,5,5,4,7,4,11/2,5,10,5,5,4,5,3,3,3,6,4,7/2,3,4,3,4,4,7,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,5/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,4,4,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,3,3,7,4,9/2,3,4,3,7/2,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,7/2,4,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,4,2,2,2,2,1,1,1,3,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,3/2,2,2,2,3/2,2,3,2,3,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6 -13,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,7/2,5,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,11/2,6,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,21,11,11,15/2,11,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,7/2,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,2,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6 -22,11,11,8,21/2,6,8,6,11,6,7,5,15/2,5,6,5,10,6,6,4,13/2,4,6,5,8,5,6,5,9,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,6,4,5,4,7,5,7,8,15,8,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,6,4,11/2,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,3,3,5,3,3,2,3,3,4,4,7,4,4,4,11/2,4,4,4,12,7,8,6,17/2,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,11/2,4,4,3,7,4,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,7,4,5,4,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,3,6,4,4,3,9/2,3,4,3,5,3,3,3,4,3,5,5,0,0,0,1,3/2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,5/2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,5,4,6,6,8,5,5,4,11/2,4,4,3,5,3,3,2,3,2,3,4,5,3,3,2,3,2,2,2,6,4,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,3,2,7/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,3,3,5,4,5,6,13,7,7,5,8,5,5,4,6,4,4,4,13/2,4,6,6,12,6,6,5,15/2,5,6,6,10,6,6,6,19/2,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,37/2,10,12,10,18,10,10,7,11,7,10,10,17,9,9,6,17/2,5,6,6,12,7,8,6,17/2,6,8,7,13,7,7,5,13/2,4,5,4,7,4,5,4,11/2,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,11/2,4,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,7/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,9/2,4,5,5,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,3,3,9,5,6,4,11/2,4,4,4,6,4,4,3,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,4,-1,0,0,1,1,1,1,1,0,1,1,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,4,4,6,4,6,6,11 -15,8,8,5,8,9/2,6,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,2,2,2,3,2,3,5/2,3,3,4,7/2,5,3,4,3,4,5/2,3,3,4,3,3,5/2,3,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,8,5,5,4,6,7/2,4,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,3,4,3,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,5/2,4,7/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,5/2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,4,5,7/2,4,4,7,4,4,4,7,9/2,6,6,11,6,6,4,7,4,5,4,7,4,5,4,7,5,7,13/2,11,6,7,11/2,8,11/2,7,7,12,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,7/2,6,7/2,4,3,4,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,3,4,3,5,5,8 -22,11,21/2,7,11,6,15/2,6,10,6,11/2,4,6,4,11/2,5,10,6,11/2,4,6,4,5,5,8,5,11/2,5,8,5,7,7,12,6,13/2,5,7,4,9/2,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,9/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,3,3,4,3,3,3,4,3,9/2,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,7,4,4,3,5,3,4,4,12,7,7,5,8,4,9/2,4,7,4,4,3,5,3,4,4,5,3,7/2,3,5,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,6,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,3,3,2,2,2,2,3,7,4,9/2,4,4,3,3,3,5,3,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,7/2,4,6,4,7/2,3,4,3,4,4,6,4,5,4,6,4,13/2,7,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,4,3,7/2,3,5,3,4,3,5,4,9/2,4,7,4,9/2,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,5,3,4,4,5,3,7/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,5,4,6,4,6,6,11,6,13/2,5,7,5,6,6,10,6,13/2,6,10,6,17/2,8,16,8,8,6,10,6,15/2,6,11,6,15/2,6,10,7,10,9,16,9,10,8,12,8,21/2,10,17,10,23/2,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,6,10,6,6,5,7,5,13/2,6,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,9,5,5,3,5,3,7/2,3,5,3,7/2,4,6,4,6,5,9,5,5,4,6,4,9/2,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,7/2,4,8,4,9/2,4,5,3,3,3,5,3,3,3,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,0,1,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-4,-4,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,4,4,-1,0,1,1,1,1,1,1,0,1,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,3,5,3,4,4,6,5,7,7,12 -21,11,10,7,11,6,7,6,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,9/2,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,9/2,8,4,4,7/2,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,4,8,5,5,4,7,5,7,7,12,6,6,5,6,4,4,4,7,4,4,7/2,5,3,4,4,6,3,3,5/2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,9/2,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,11/2,9,6,8,8,16,17/2,9,6,10,6,8,13/2,11,6,7,6,10,7,10,9,17,9,10,8,12,8,10,19/2,17,10,12,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,9,9,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,12 -41,21,22,15,23,14,17,14,25,13,14,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,12,8,12,12,45/2,12,12,9,13,8,10,9,16,9,9,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,14,10,14,13,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,7,6,9,5,5,4,7,5,7,8,29/2,8,8,6,9,5,6,6,10,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,7,6,9,6,7,7,13,7,8,7,11,8,12,12,22,12,12,8,12,7,8,6,10,6,6,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,5,13,7,7,5,8,5,6,5,8,5,5,3,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,6,5,8,6,8,8,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,11,8,12,12,12,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,7,7,27/2,8,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,10,21,11,11,7,10,6,7,7,12,7,8,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,9,15,10,15,16,31,16,16,11,17,10,13,12,22,12,14,12,20,13,18,18,35,18,19,14,23,14,18,17,32,18,21,18,32,22,33,33,67,34,34,22,32,18,21,18,32,17,18,13,20,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,12,22,12,12,9,13,8,9,8,14,8,8,6,10,7,10,10,19,10,10,7,11,7,9,8,15,9,10,8,12,8,11,10,17,9,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,6,5,7,7,25/2,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,2,2,2,1,1,1,2,2,4,3,3,3,5,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,9,9,14,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,7,5,6,5,8,5,7,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,24 -21,11,12,8,12,7,9,8,13,7,8,6,9,6,8,15/2,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,6,6,5,7,9/2,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,12,13/2,6,4,6,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,5,7,7,7,4,4,3,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,17,10,11,10,17,12,17,17,34,18,18,12,17,10,11,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,6,11/2,9,11/2,6,5,7,5,7,6,12,6,6,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,8,4,4,3,5,3,3,3,4,5/2,3,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,6,4,6,7,13 -22,12,23/2,8,12,7,17/2,8,13,7,15/2,6,9,6,8,8,13,7,15/2,6,9,5,11/2,5,9,5,5,4,7,5,13/2,6,12,6,6,4,7,4,11/2,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,5/2,2,4,3,4,4,13,7,6,4,6,4,5,4,6,4,9/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,6,4,9/2,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,7/2,4,5,3,4,4,7,5,7,7,7,4,4,3,6,4,4,4,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,4,6,4,5,4,7,4,9/2,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,16,9,9,7,9,6,15/2,7,12,7,8,7,11,7,10,10,19,10,21/2,8,12,8,21/2,10,17,10,11,10,17,12,35/2,18,34,18,18,12,17,10,11,10,17,9,9,7,10,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,7,5,7,6,12,6,13/2,5,7,5,6,5,8,5,5,4,6,4,11/2,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,4,7/2,3,3,2,5/2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,4,3,5,3,4,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-2,-4,-2,-7/2,-4,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,3,2,3,2,7/2,4,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,1,3/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,4,5,5,7,4,9/2,4,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,13/2,7,13 -15,8,8,6,8,5,6,11/2,9,5,5,4,7,9/2,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,7/2,5,5,9,5,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,7/2,5,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,5/2,4,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9 -22,12,12,8,25/2,8,9,8,12,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,6,6,14,7,7,5,15/2,5,6,5,8,5,6,4,13/2,4,5,5,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,4,13,7,7,5,7,4,5,5,6,4,4,4,6,4,4,4,6,4,4,4,11/2,4,4,4,6,4,4,4,13/2,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,9/2,3,4,3,5,3,4,3,7/2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,4,3,2,2,2,2,2,2,1,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,2,4,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,4,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,3,3,8,5,5,3,4,3,3,3,6,4,5,5,8,6,8,8,7,4,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,9/2,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,4,6,4,4,4,13/2,4,6,6,14,7,7,5,13/2,4,6,5,6,4,4,4,6,4,6,5,9,5,6,4,13/2,4,6,6,9,5,6,6,19/2,6,9,9,17,9,9,7,11,7,9,8,13,7,8,6,21/2,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,35,18,18,12,18,11,13,11,18,10,10,8,23/2,8,10,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,12,6,6,4,13/2,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,3,3,2,7/2,3,4,3,6,3,3,2,3,2,3,2,4,2,2,2,3,3,4,4,6,4,4,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,4,5,4,9,5,6,4,11/2,4,4,3,4,3,3,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,3/2,2,2,1,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,1/2,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,9/2,4,5,5,9,5,6,4,13/2,4,5,5,8,5,6,5,15/2,5,7,7,13 -13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,5,3,4,7/2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,5,7/2,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,6,7/2,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,10,6,6,5,7,9/2,6,5,8,5,5,4,6,9/2,6,6,12,7,7,5,8,5,7,6,11,13/2,8,6,10,7,10,10,20,11,11,15/2,11,7,8,6,11,6,6,5,7,5,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,5/2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8 -17,9,9,7,10,6,13/2,6,8,5,5,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,9/2,5,9,5,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,6,4,7/2,2,4,3,7/2,3,5,4,9/2,4,7,5,6,6,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,7,4,3,2,4,3,3,3,3,2,3,2,4,3,4,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,4,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,7,7,13,7,15/2,6,8,5,13/2,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,19/2,8,13,9,25/2,12,25,13,13,9,13,8,9,7,13,7,7,5,8,5,7,7,11,6,13/2,5,6,4,9/2,4,7,4,5,4,5,4,5,5,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,9/2,5,9,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,5,5,8,5,5,4,5,3,7/2,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,3,3,4,3,7/2,3,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,1,3/2,1,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,4,3,4,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10 -15,8,8,6,8,5,6,5,8,5,5,4,7,9/2,6,11/2,9,5,5,4,5,3,4,7/2,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,4,4,4,6,9/2,6,6,12,13/2,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,13/2,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8 -26,14,14,10,14,8,10,8,27/2,8,8,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,10,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,7,5,8,8,14,8,8,6,9,5,6,5,17/2,5,6,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,6,5,15/2,4,4,3,4,3,5,5,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,3,4,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,1,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,4,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,1,1,1,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,4,5,4,9,5,5,4,6,4,5,5,17/2,5,6,5,9,6,8,8,8,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,10,6,6,4,6,4,4,3,9/2,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,21,11,12,8,12,8,10,9,16,9,10,8,12,8,12,11,20,11,12,9,13,9,12,12,22,12,14,11,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,13,9,12,11,16,9,9,7,10,6,8,6,21/2,6,7,5,8,6,8,8,15,8,9,6,9,5,6,6,19/2,6,6,5,9,6,7,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,6,4,4,4,13/2,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,3,3,3,4,3,4,4,13/2,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,4,4,5,3,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1,1,1,2,3,2,3,2,7/2,2,3,3,4,3,3,3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,5,5,17/2,5,5,4,7,5,7,7,14 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,7,4,4,7/2,5,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,5,5,7/2,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,12,13/2,7,5,7,5,6,5,9,5,6,9/2,7,5,7,6,11,6,7,5,7,5,7,7,12,7,8,13/2,11,15/2,11,11,20,11,11,15/2,11,6,7,6,11,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8 -16,9,9,6,8,5,11/2,5,8,5,11/2,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,5,3,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,6,4,4,3,6,4,4,3,4,3,7/2,4,5,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,6,4,4,3,5,3,7/2,3,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,9/2,4,6,4,6,6,6,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,11/2,4,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,6,4,4,3,6,4,13/2,6,13,7,7,5,8,5,13/2,6,9,5,11/2,4,7,5,7,7,12,7,7,6,8,6,15/2,8,14,8,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,6,4,5,4,7,4,5,4,6,4,11/2,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,2,2,3,3,4,2,5/2,2,4,3,4,4,8,4,4,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,3,2,3/2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,7,4,4,3,2,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,2,2,2,3,3,3,2,2,2,3,2,5/2,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,9/2,4,8 -12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,9/2,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,9/2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,7/2,5,5,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,5,5,7,4,4,7/2,6,4,5,5,10,6,6,5,7,5,6,6,11,13/2,7,6,10,7,10,10,18,19/2,10,7,10,6,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,7/2,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 -20,10,10,7,11,7,8,6,10,6,7,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,7,7,6,4,4,4,11/2,4,4,4,7,4,5,4,6,4,5,5,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,10,6,6,4,13/2,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,4,2,5/2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,3,9/2,3,4,4,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,4,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,4,2,2,2,5/2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,1/2,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,3,2,2,2,3,2,2,2,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,15/2,5,6,6,9,5,5,4,5,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,4,9/2,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,4,11/2,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,5,8,5,5,4,7,5,8,8,17,9,9,7,21/2,6,8,7,11,6,6,5,17/2,6,8,8,16,9,10,7,11,7,10,10,19,11,12,10,33/2,11,16,16,29,15,15,10,31/2,9,11,9,16,9,9,7,21/2,7,9,8,14,8,8,6,8,5,6,5,9,5,6,5,17/2,6,7,7,14,7,7,5,7,4,5,4,7,4,5,4,15/2,5,6,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,11/2,4,5,5,6,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,11/2,4,5,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,7/2,2,3,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,8,4,4,3,7/2,2,3,2,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,11/2,4,4,4,7,4,5,4,13/2,4,6,6,11 -13,7,7,5,7,9/2,5,4,7,4,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,5,3,3,3,5,7/2,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,5/2,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,5/2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,2,5/2,4,3,4,4,7,4,4,3,3,2,3,3,4,5/2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,9/2,6,5,8,9/2,5,4,6,4,6,6,11,6,7,5,8,5,7,7,12,7,8,13/2,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,9/2,8 -18,10,19/2,7,10,6,13/2,6,9,5,11/2,4,6,4,13/2,6,12,6,13/2,4,6,4,4,4,7,4,4,4,6,4,6,6,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,5,3,7/2,3,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,4,4,7,4,9/2,4,5,3,4,4,7,4,7/2,3,4,3,4,4,6,4,9/2,4,5,4,5,5,6,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,5/2,3,5,3,7/2,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,0,0,0,0,0,0,4,3,3,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,9/2,4,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,5/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,1,1,1,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,13/2,6,8,5,5,4,5,3,4,4,6,4,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,7/2,4,6,4,5,5,9,5,5,4,4,3,4,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,6,6,13,7,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,7,5,7,7,15,8,17/2,6,10,6,15/2,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,19/2,9,16,9,11,9,15,10,14,14,25,13,27/2,9,13,8,10,8,14,8,8,6,10,6,17/2,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,13/2,4,6,4,9/2,4,7,4,9/2,4,6,4,11/2,5,9,5,9/2,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,13/2,4,6,4,5,4,7,4,9/2,4,5,3,4,4,7,4,5,4,6,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,3,5,3,7/2,3,4,3,9/2,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,1,3,2,1,1,1,1,1/2,1,1,1,1/2,1,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,3,7,4,7/2,3,4,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,4,3,4,3,4,4,6,4,9/2,4,7,5,7,6,11 -18,10,10,7,10,6,6,11/2,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,5,7,4,4,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,1/2,0,0,0,0,0,0,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,2,1,2,2,2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,13/2,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,15,8,8,6,9,6,7,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,10,9,16,9,11,9,14,10,14,14,24,13,13,9,13,8,9,8,13,15/2,8,6,9,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,7/2,5,7/2,5,9/2,8,9/2,5,4,6,4,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1/2,0,1/2,0,1,3,2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11 -34,18,18,12,17,10,13,11,20,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,8,9,7,11,7,10,10,11,6,7,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,5,9,6,7,7,13,7,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,5,3,4,3,3,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,25/2,7,8,6,8,5,7,7,12,7,8,6,9,7,10,10,11,6,6,4,6,4,6,5,9,5,6,5,8,5,6,6,19/2,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3/2,1,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,8,4,4,3,5,3,3,2,3,2,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,15,8,9,6,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,15,8,9,6,9,6,8,7,13,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,7,8,6,10,7,11,11,23,12,12,8,11,6,7,6,11,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,11,7,8,7,12,8,12,13,29,15,16,12,18,11,13,11,20,11,12,10,17,11,16,15,57/2,15,16,12,18,12,16,15,29,16,18,15,26,18,27,27,47,24,24,16,23,13,16,13,23,13,14,11,18,11,15,14,53/2,14,14,10,14,9,11,10,18,10,11,9,15,10,13,13,22,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,9,7,10,6,8,8,15,8,9,7,12,9,13,13,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,7,10,10,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,6,10,7,9,9,19,10,11,8,11,7,8,7,12,7,7,5,8,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,-1,-7/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,3,2,2,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,4,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5/2,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,4,4,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,21/2,6,6,4,6,4,6,6,11,7,8,7,11,8,11,11,21 -18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,1,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,15,8,9,7,10,6,7,6,11,6,7,6,9,6,9,17/2,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,15/2,9,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,9/2,5,9/2,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,2,2,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,3/2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,13/2,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,11/2,5,6,4,7/2,3,4,2,5/2,2,4,3,3,3,3,2,7/2,4,6,4,7/2,3,5,3,3,3,5,3,7/2,3,4,3,9/2,4,10,6,11/2,4,6,4,7/2,3,4,3,7/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,12,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,5,5,7,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,6,3,3,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,3,3,3,2,7/2,4,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,7/2,3,3,2,3,3,6,4,4,3,5,4,9/2,4,7,4,4,4,7,5,7,7,9,5,5,4,6,4,4,3,6,3,3,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,4,9/2,4,7,4,9/2,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,9/2,4,6,4,6,6,14,8,15/2,5,7,4,5,5,7,4,5,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,5,4,8,6,8,8,15,8,9,7,10,6,7,6,11,6,7,6,10,7,19/2,9,16,9,9,7,10,7,9,9,16,9,11,9,15,10,29/2,15,26,14,14,10,14,8,19/2,8,13,8,17/2,7,11,7,9,9,16,8,8,6,8,5,6,6,11,6,13/2,6,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,9/2,4,8,5,11/2,4,6,4,11/2,5,8,5,5,4,7,5,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,3,3,7,4,4,3,4,3,7/2,4,5,3,7/2,4,6,4,6,6,10,6,11/2,4,7,4,9/2,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,3,2,2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,3/2,1,2,2,3/2,2,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,3,2,2,2,2,2,3/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,1,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,2,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,3,2,3,2,5/2,3,6,3,3,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,7,4,9/2,4,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,12 -13,7,7,5,7,9/2,6,5,8,9/2,5,4,6,4,5,5,8,4,4,3,5,3,4,7/2,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,3,4,7/2,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,7/2,5,3,3,5/2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,7/2,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,7/2,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,7/2,4,7/2,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,3,2,3,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,7/2,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,5/2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,5,5,9 -20,10,10,7,21/2,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,15/2,5,6,5,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,4,4,11/2,4,4,3,6,4,4,3,9/2,4,5,5,12,6,6,4,11/2,3,3,3,4,3,4,4,11/2,4,5,5,8,4,4,3,5,3,4,4,4,3,3,3,9/2,3,4,4,6,3,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,9/2,3,4,4,6,4,5,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,9/2,4,5,5,4,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,3,2,3,3,4,3,4,4,3,2,2,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,5/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,1,1,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,3,4,4,5,3,4,3,5,4,5,5,6,4,4,4,13/2,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,11/2,4,5,4,8,5,5,4,9/2,3,4,4,8,5,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,5,4,15/2,5,7,7,10,6,6,4,13/2,4,6,5,8,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,5,10,6,6,4,13/2,4,5,5,9,5,6,5,17/2,6,9,9,17,9,10,7,21/2,6,8,7,12,7,8,7,23/2,8,10,10,18,10,10,8,13,8,10,10,18,10,12,10,33/2,12,17,17,30,16,16,11,16,9,11,9,16,9,9,7,12,8,11,10,18,9,9,6,19/2,6,8,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,15/2,5,6,6,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,13/2,4,6,6,10,5,5,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,8,5,5,4,6,4,5,5,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,11/2,4,4,3,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,2,5/2,2,3,3,1,1,1,1,3/2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,1,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,3,2,2,1,1/2,0,0,0,2,2,2,1,1/2,0,0,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,1,0,0,0,0,1/2,0,0,0,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,7,4,4,3,9/2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,4,11/2,4,4,4,5,3,4,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,6,4,13/2,5,7,7,13 -12,6,6,5,7,4,5,9/2,7,4,4,4,6,4,4,9/2,8,4,4,3,5,3,4,7/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,3,3,4,3,3,2,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,6,7/2,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,5,8,5,5,9/2,8,5,6,6,11,6,6,5,8,5,6,6,11,13/2,8,6,10,15/2,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,7/2,4,3,4,3,4,4,6,7/2,4,3,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,9 -16,8,8,6,10,6,7,6,10,6,11/2,4,7,4,11/2,6,10,6,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,7/2,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,9/2,3,4,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,11,6,6,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,9/2,4,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,7/2,2,4,2,5/2,2,5,3,3,3,3,2,7/2,4,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,1,6,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3,4,3,2,2,2,2,2,3/2,1,2,1,1,1,0,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,5,3,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,1,2,5/2,2,3,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,2,5/2,2,4,2,5/2,2,2,2,7/2,4,4,3,3,3,4,3,4,4,5,3,7/2,4,6,4,6,6,12,7,7,5,7,4,9/2,4,6,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,3,6,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,11/2,5,9,5,11/2,4,6,4,4,4,7,4,5,4,6,4,13/2,7,15,8,15/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,7,6,10,6,17/2,8,15,8,17/2,6,11,7,17/2,8,14,8,10,8,14,10,14,14,24,12,12,9,13,8,9,7,14,8,8,6,9,6,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,14,8,15/2,5,7,4,5,5,8,4,9/2,4,5,3,4,4,8,4,9/2,4,5,4,5,5,7,4,5,4,8,6,8,8,12,6,13/2,5,7,4,5,4,7,4,9/2,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,4,3,6,4,5,5,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,9/2,4,7,5,7,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,1,1,1,3,2,2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,4,2,5/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,1,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,2,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,-1,0,0,1,0,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,7,4,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12 -15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,4,2,2,2,4,3,3,5/2,3,5/2,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,7/2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,9,5,5,4,5,7/2,4,4,6,4,5,4,6,4,6,13/2,14,8,8,5,7,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,6,4,5,9/2,7,5,7,7,12,7,7,11/2,8,5,6,6,10,6,7,6,9,6,8,8,14,15/2,8,6,10,6,8,15/2,13,8,9,8,13,9,13,13,22,11,11,8,12,7,9,7,12,7,8,6,9,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,9/2,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,8,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,7,5,7,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,3/2,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 -27,14,14,10,14,8,10,9,31/2,8,8,6,10,7,9,8,16,8,8,6,9,6,7,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,6,8,4,4,3,4,3,4,4,11/2,4,4,4,6,5,7,7,14,7,7,5,6,4,4,4,11/2,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,3,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,15/2,4,5,5,8,6,8,7,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,9,5,4,3,4,3,3,3,9/2,2,2,2,3,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,6,4,6,6,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,2,2,5/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5/2,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,11/2,4,4,3,4,3,5,5,6,4,5,4,6,4,6,5,17/2,5,6,5,9,6,9,9,22,12,12,8,12,7,8,6,21/2,6,7,5,8,5,7,7,13,7,6,4,6,4,5,5,8,5,6,5,7,5,8,8,16,9,9,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,10,6,7,6,21/2,6,8,7,12,8,12,12,26,13,13,9,14,8,10,8,27/2,8,8,6,10,6,7,7,12,7,7,5,8,5,6,6,23/2,7,8,7,12,8,12,13,23,12,12,9,14,8,10,10,35/2,10,10,8,14,10,14,14,25,13,14,11,17,11,15,14,25,14,17,14,24,16,24,24,42,22,22,15,21,12,14,12,45/2,12,14,11,18,11,15,14,25,13,13,9,12,7,9,8,27/2,8,9,7,12,8,11,11,23,12,12,8,12,7,9,8,25/2,6,6,5,7,5,6,6,14,8,9,7,10,6,8,7,13,8,9,7,12,9,13,13,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,9,7,10,6,7,6,21/2,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,17/2,5,6,4,6,4,6,6,15,8,9,7,10,6,8,7,25/2,8,9,7,12,8,11,11,16,9,9,7,10,6,7,6,21/2,6,6,5,7,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,6,3,3,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,0,0,0,0,0,0,1/2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,8,6,9,6,7,6,23/2,7,8,6,10,7,11,11,20 -15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,10,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,9/2,5,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,13/2,8,8,14,8,10,8,14,19/2,14,14,24,13,13,9,12,7,8,7,13,7,8,13/2,10,7,9,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,13/2,13,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,9/2,8,5,5,4,7,5,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,7/2,6,7/2,4,3,4,3,4,4,8,5,5,4,6,4,5,9/2,8,5,6,9/2,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,4,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,3/2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,7/2,4,4,7,4,5,4,6,4,6,6,11 -18,10,10,7,10,6,7,6,10,6,6,5,7,5,13/2,6,11,6,11/2,4,6,4,4,4,6,4,9/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,9,5,9/2,3,4,3,3,3,3,2,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,7/2,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,4,9/2,4,5,3,7/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,5,3,4,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,5,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,3,2,3,3,4,3,7/2,4,6,4,9/2,4,6,5,7,7,14,8,15/2,6,8,5,11/2,5,8,5,11/2,4,6,4,5,5,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,11,6,6,4,7,4,11/2,5,8,5,11/2,5,8,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,8,5,5,5,8,6,17/2,8,16,8,8,6,10,6,15/2,6,12,7,15/2,6,10,7,9,9,16,9,9,7,12,8,19/2,9,16,10,23/2,10,16,11,16,16,29,15,15,10,15,9,21/2,9,15,8,19/2,8,12,8,10,9,17,9,17/2,6,9,6,13/2,6,10,6,6,5,8,6,15/2,8,15,8,9,6,8,5,11/2,5,8,4,9/2,4,6,4,11/2,5,9,5,11/2,4,7,4,11/2,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,5,4,6,4,11/2,5,10,6,6,5,6,4,5,5,7,4,5,4,6,4,11/2,6,11,6,6,4,6,4,5,4,7,4,9/2,4,5,4,9/2,4,9,5,6,5,6,4,11/2,5,9,6,13/2,5,8,6,8,8,10,6,11/2,4,6,4,9/2,4,7,4,9/2,4,4,3,3,3,5,3,3,2,3,2,3,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,5,3,5/2,2,3,2,3/2,1,2,1,1/2,0,1,1,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,9/2,4,8,5,5,4,6,4,5,5,8,5,11/2,4,7,5,7,7,12 -15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,2,3,3,3,2,3,2,2,2,2,2,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,3,4,4,3,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,4,3,5,4,6,6,12,13/2,6,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,6,10,6,6,9/2,6,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,8,11/2,7,7,13,7,8,6,10,6,8,8,13,8,10,8,13,9,13,13,24,13,13,9,12,7,9,8,13,7,8,6,10,6,8,8,14,15/2,8,5,8,5,6,5,8,5,5,4,7,5,6,13/2,12,7,7,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,5,4,6,4,4,4,8,9/2,5,9/2,8,11/2,8,8,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,9/2,5,4,5,4,5,9/2,8,5,6,9/2,7,5,7,7,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,5/2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,5/2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,6,10 -25,13,13,9,27/2,8,10,8,14,8,9,7,10,7,9,8,15,8,9,6,19/2,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,5,4,6,6,9,5,4,3,9/2,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,4,3,4,3,5,4,5,4,8,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,3,3,17,9,8,6,17/2,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,5,3,3,2,7/2,3,4,4,8,5,5,4,5,3,4,4,8,5,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,6,4,4,3,7/2,2,3,3,4,2,2,2,7/2,2,3,3,5,3,3,3,5,3,4,4,4,3,4,4,7,5,8,8,5,3,3,2,2,2,2,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,5,3,3,2,2,2,2,2,5/2,2,2,2,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,4,3,9/2,3,4,4,8,5,6,5,8,6,8,9,21,11,12,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,8,23/2,7,8,7,12,7,7,6,17/2,6,8,8,16,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,12,22,12,12,8,25/2,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,33/2,10,14,13,22,13,15,13,45/2,16,23,23,42,22,22,15,43/2,12,15,13,22,12,14,10,33/2,10,14,13,23,12,13,9,13,8,10,8,14,8,9,7,11,8,11,11,21,11,12,8,12,7,8,6,10,6,7,5,8,5,7,7,12,7,7,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,12,8,12,7,8,7,12,7,8,6,19/2,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,8,8,16,8,8,6,8,5,6,6,10,6,7,6,17/2,6,8,7,13,7,8,6,9,6,7,7,14,8,9,7,12,8,11,11,14,8,8,6,9,5,6,5,10,6,6,4,13/2,4,4,4,7,4,5,4,11/2,4,4,3,5,3,4,3,7/2,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,3,2,1,1,1,1,1,1,1/2,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,6,3,3,2,3,2,2,1,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,-4,-1,-1,0,-1/2,0,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,4,5,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,17/2,6,8,9,17 -17,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,7/2,4,3,4,3,3,3,4,3,4,4,6,3,3,2,4,5/2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,5/2,3,2,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,5,7/2,5,9/2,6,4,4,3,4,5/2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,5,4,6,5,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,7/2,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,11/2,6,11/2,9,5,6,4,7,9/2,6,6,10,11/2,6,4,6,4,5,5,8,9/2,5,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,11/2,9,6,8,8,15,8,9,7,11,7,9,9,15,9,10,9,15,11,16,31/2,28,15,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,17/2,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,15/2,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,9/2,6,5,9,5,6,11/2,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,9/2,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,4,7,4,5,5,9,11/2,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-2,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,5/2,4,3,4,4,7,4,4,7/2,6,4,5,4,7,4,4,4,6,4,6,6,12 -24,12,12,9,14,8,19/2,8,14,8,17/2,6,10,7,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,7,5,8,5,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,11/2,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,17,9,9,6,8,5,6,5,10,6,11/2,4,7,4,11/2,5,9,5,11/2,4,6,4,5,4,8,4,9/2,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,4,4,7,4,5,4,6,4,6,6,9,5,11/2,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,4,7,5,15/2,7,4,2,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,3,2,3,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,7,5,6,5,7,6,17/2,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,13/2,5,7,4,11/2,5,10,6,7,6,9,6,19/2,10,19,10,10,7,12,7,8,7,11,6,7,5,8,6,8,8,15,8,17/2,6,9,6,7,7,13,7,8,7,12,8,25/2,12,25,13,13,9,14,8,9,8,13,7,8,6,10,6,17/2,8,15,8,8,6,9,6,15/2,7,11,6,15/2,7,12,8,23/2,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,12,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,45/2,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,27/2,13,23,12,25/2,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,21/2,8,11,6,7,6,10,6,13/2,5,8,5,7,7,12,7,15/2,6,10,6,15/2,7,12,7,17/2,8,12,8,25/2,12,24,12,12,9,13,8,17/2,8,13,7,8,6,9,6,8,8,13,7,15/2,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,13/2,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,15/2,7,13,8,9,7,11,8,21/2,11,14,8,17/2,6,8,5,5,5,9,5,5,4,6,4,4,4,8,4,9/2,4,5,3,7/2,3,5,3,7/2,3,4,3,3,3,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,7/2,4,7,4,7/2,2,4,2,3/2,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,5,3,5/2,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,0,0,-1,0,1/2,1,0,0,0,1,1,1,2,2,3,2,3/2,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,9/2,5,10,6,11/2,4,5,4,9/2,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,13/2,6,10,6,13/2,5,8,6,9,9,17 -24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,8,14,8,8,6,8,5,6,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,16,9,9,6,9,5,6,5,9,5,6,4,7,9/2,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,7/2,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,11/2,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,7,5,7,7,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,9/2,5,5,7,11/2,8,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,11/2,9,6,8,8,15,8,8,6,9,6,7,7,13,15/2,9,15/2,13,9,13,25/2,24,13,13,9,14,8,9,8,14,15/2,8,6,10,13/2,9,8,15,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,23/2,12,9,15,10,13,12,22,13,15,13,22,15,22,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,13,25/2,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,10,15/2,11,6,7,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,9,8,13,9,13,25/2,24,12,12,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,7,13,15/2,8,7,11,15/2,10,11,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,9/2,8,4,4,7/2,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,5/2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,5,3,2,2,3,2,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,1/2,0,0,0,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,3,2,3,3,5,3,4,5/2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17 -46,24,24,16,24,14,17,14,24,13,14,11,19,12,17,16,30,16,17,12,18,11,14,13,23,13,14,11,17,11,16,16,30,16,16,11,16,9,11,9,15,8,9,7,10,7,9,8,15,8,8,6,9,6,7,7,13,7,8,7,11,8,11,11,21,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,31,16,16,11,17,10,12,10,17,10,11,9,14,9,12,12,23,12,12,9,14,9,11,10,17,10,11,9,15,10,14,13,25,13,13,9,14,8,9,7,12,7,8,6,10,6,8,7,13,7,7,5,7,4,5,5,9,5,6,5,9,6,9,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,9,13,8,10,9,15,8,9,7,10,6,8,8,14,8,8,7,11,7,10,9,16,9,11,9,15,10,14,14,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,8,8,14,8,9,7,10,6,8,8,15,9,10,9,16,11,16,16,42,22,22,15,23,13,16,13,22,12,13,9,14,9,12,11,21,11,12,9,13,8,11,10,19,11,13,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,11,9,14,9,13,13,24,13,14,11,17,11,15,14,26,15,18,15,26,17,25,24,95/2,24,24,17,26,15,17,15,26,14,15,11,18,12,16,16,30,16,17,12,19,12,16,15,28,16,19,16,27,18,26,26,52,27,27,19,28,16,20,18,33,18,20,16,26,17,23,23,44,23,25,19,30,19,25,24,45,25,30,25,44,30,44,44,82,42,42,28,42,24,28,23,41,22,23,18,29,18,25,24,45,23,24,16,24,14,17,15,28,15,17,14,23,15,21,21,40,21,21,14,21,12,14,12,21,11,12,10,16,10,14,14,26,14,14,11,17,11,14,12,22,13,16,14,24,16,24,24,95/2,24,24,17,26,15,17,14,25,14,15,11,18,11,15,14,26,13,13,9,14,9,11,10,18,11,13,11,18,12,18,18,35,18,19,13,19,11,13,12,21,11,12,9,14,9,13,12,22,12,13,10,16,10,13,12,23,13,15,13,22,15,21,21,29,15,16,11,16,9,11,9,16,9,10,8,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,12,23,12,12,8,12,7,9,8,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,3,2,1,1,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,2,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,9,9,16,11,17,17,32 -23,12,13,9,12,7,9,7,12,7,8,6,10,7,9,9,16,9,9,7,9,6,8,7,12,7,7,6,9,6,9,8,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,9/2,8,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,9/2,6,4,4,7/2,5,3,3,3,3,5/2,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,16,9,9,6,9,11/2,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,5,7,5,6,11/2,9,11/2,6,5,8,11/2,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,8,9/2,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,9,22,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,11/2,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,9,11,10,17,9,10,8,14,9,12,12,22,12,13,10,16,10,13,25/2,23,13,16,13,23,16,23,23,42,22,22,15,22,12,14,12,21,23/2,12,19/2,15,10,13,25/2,23,12,12,9,13,8,9,8,15,8,9,7,12,8,11,11,21,11,11,8,11,13/2,8,7,11,6,6,11/2,8,6,8,8,14,8,8,6,9,6,8,13/2,11,7,8,7,13,9,12,12,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,13/2,11,6,6,5,8,5,7,7,12,7,7,11/2,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,6,5,6,4,6,6,12,6,6,4,7,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,7,4,5,9/2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,3/2,1,1,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,2,3,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,5,8,6,9,9,17 -23,12,13,9,12,7,17/2,7,12,7,15/2,6,11,7,9,9,16,9,9,7,9,6,8,7,11,6,7,5,9,6,9,8,15,8,17/2,6,8,5,11/2,5,7,4,5,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,5,3,3,3,3,2,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,4,2,2,2,3,2,3/2,1,1,1,3/2,2,2,2,2,2,17,9,9,6,9,6,13/2,6,9,6,13/2,5,7,5,13/2,6,12,6,13/2,5,7,5,6,6,9,6,13/2,5,9,6,7,7,13,7,15/2,5,8,5,5,4,7,4,9/2,4,6,4,9/2,4,6,4,7/2,3,3,2,3,3,5,3,4,3,4,3,5,5,11,6,11/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,8,5,11/2,4,6,4,5,5,8,5,5,5,8,6,17/2,9,22,12,12,8,13,8,17/2,7,12,7,7,5,7,5,6,6,12,6,6,5,8,5,13/2,6,10,6,13/2,6,9,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,8,6,9,6,15/2,7,13,8,19/2,8,14,9,13,13,24,13,13,9,13,8,19/2,8,14,8,17/2,6,10,6,17/2,8,15,8,9,7,10,6,17/2,8,14,8,19/2,8,14,10,14,14,27,14,14,10,14,9,11,10,16,9,21/2,8,14,9,25/2,12,22,12,25/2,10,16,10,27/2,13,23,13,16,13,23,16,23,23,42,22,22,15,22,12,29/2,12,22,12,25/2,10,16,10,27/2,13,24,12,25/2,9,13,8,9,8,15,8,9,7,12,8,23/2,11,21,11,21/2,8,10,6,15/2,7,11,6,13/2,6,8,6,15/2,8,15,8,8,6,10,6,15/2,6,11,7,8,7,13,9,25/2,12,24,12,25/2,9,13,8,19/2,8,13,7,8,6,10,6,17/2,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,19/2,7,10,6,8,7,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,6,13/2,6,9,5,6,5,6,4,6,6,12,6,6,4,7,4,11/2,5,7,4,5,4,7,5,7,7,12,6,13/2,4,7,4,11/2,5,7,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,5,3,3,2,2,2,3/2,2,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-3,-1,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,2,3,2,5/2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,5,3,4,4,7,5,6,5,8,6,19/2,9,17 -16,17/2,9,6,9,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,5,5,8,9/2,5,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,4,3,4,4,8,4,4,7/2,5,3,4,3,4,5/2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,12,7,7,5,6,4,5,4,7,4,5,4,5,7/2,4,4,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,15,8,9,6,9,11/2,6,5,8,5,5,4,5,4,5,5,8,4,4,7/2,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,9,6,7,6,10,13/2,9,9,17,9,9,6,9,6,7,6,10,6,6,5,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,13/2,9,8,15,8,9,7,11,7,10,9,16,9,11,9,16,11,16,16,29,15,15,10,15,9,10,9,15,8,8,13/2,11,7,10,9,16,9,9,6,9,11/2,6,6,10,6,6,5,8,6,8,8,14,15/2,7,5,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,6,4,7,9/2,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,8,4,4,4,6,4,6,5,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,7/2,5,7/2,5,5,9,5,5,7/2,5,3,4,4,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,7/2,4,4,6,5,7,13/2,12 -23,12,13,9,13,8,9,8,12,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,9/2,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,13/2,4,6,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,1,1,1,1,2,2,3/2,2,2,2,18,10,10,7,19/2,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,7,14,7,7,5,7,4,5,4,8,5,5,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,9/2,4,5,6,11,6,6,4,5,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,9,5,6,5,17/2,6,7,7,5,3,3,2,7/2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,3,3,4,3,4,3,9/2,3,4,4,9,5,5,4,9/2,3,3,3,5,3,2,2,5/2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,4,3,4,3,9/2,4,5,5,9,5,6,5,15/2,5,6,6,10,6,7,6,19/2,7,10,10,23,12,13,9,27/2,8,10,8,12,7,7,5,8,5,7,7,12,7,7,5,15/2,5,6,6,9,5,6,5,17/2,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,12,7,7,6,9,6,8,7,13,8,9,8,14,9,13,13,26,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,21/2,7,9,8,14,8,10,8,29/2,10,15,15,27,14,14,10,29/2,9,12,10,16,9,10,8,14,9,12,12,22,12,13,10,16,10,14,13,23,13,16,14,47/2,16,24,24,43,22,22,15,45/2,13,15,13,22,12,13,10,31/2,10,13,13,24,12,12,9,13,8,10,9,14,8,10,8,25/2,8,11,11,21,11,11,8,21/2,6,8,7,12,7,7,6,17/2,6,8,8,16,9,9,7,11,7,8,7,12,7,9,8,25/2,9,13,13,24,13,13,9,14,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,21/2,8,11,11,19,10,10,7,19/2,6,8,7,11,6,7,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,11,8,12,12,16,9,9,6,19/2,6,7,6,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,5,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,3,2,2,2,5/2,2,2,2,5,3,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-3,-1,-1,0,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,3,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,3,6,4,4,3,5,3,4,4,8,5,6,6,19/2,7,10,9,17 -13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,11/2,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,3,3,4,3,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,9/2,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,15/2,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,4,6,4,6,5,7,4,4,7/2,5,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,11/2,8,5,6,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,7,4,4,7/2,6,4,5,5,9,5,6,9/2,7,4,5,5,8,5,6,5,8,11/2,8,8,13,7,8,11/2,8,5,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,12,6,6,4,6,4,5,9/2,7,4,4,7/2,5,4,5,9/2,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,5,4,6,7/2,4,3,5,3,4,9/2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,11/2,10 -16,9,9,7,9,6,13/2,6,8,5,11/2,5,7,5,7,7,12,6,13/2,4,6,4,4,4,7,4,5,4,6,4,11/2,5,11,6,6,4,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,9/2,4,9,5,11/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,1,1/2,0,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,12,6,13/2,4,7,4,5,4,7,4,9/2,4,5,4,9/2,4,10,6,11/2,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,11/2,4,6,4,7/2,3,6,4,4,3,4,3,4,4,4,2,5/2,2,2,2,5/2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,6,4,9/2,4,6,4,11/2,5,4,2,5/2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,7,4,7/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,8,5,5,4,6,4,5,5,8,5,11/2,5,7,5,15/2,8,17,9,19/2,7,10,6,7,6,8,5,11/2,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,13/2,6,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,10,7,9,9,18,10,19/2,7,10,6,8,7,11,6,6,5,7,5,13/2,6,11,6,7,5,8,5,13/2,6,10,6,15/2,6,10,7,21/2,10,20,10,21/2,7,11,7,17/2,7,12,7,8,6,10,6,17/2,8,16,9,10,8,12,8,21/2,10,16,9,11,9,17,12,33/2,16,30,16,31/2,11,15,9,10,9,15,8,17/2,6,11,7,9,9,16,9,9,7,9,6,15/2,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,6,8,5,5,4,7,5,6,6,11,6,13/2,5,8,5,6,6,10,6,7,6,9,6,19/2,9,15,8,17/2,6,9,5,6,5,10,5,5,4,6,4,11/2,5,10,5,5,4,5,4,5,5,7,4,11/2,5,8,6,15/2,8,15,8,7,5,8,5,6,5,9,5,5,4,6,4,11/2,5,9,5,5,4,6,4,11/2,5,8,5,11/2,5,8,6,8,8,11,6,13/2,5,7,5,6,5,7,4,5,4,6,4,11/2,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,0,0,1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,11/2,6,4,5,3,4,7/2,6,7/2,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,6,13/2,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,9/2,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,11/2,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,11/2,7,6,10,5,5,4,6,4,6,5,10,11/2,6,9/2,7,9/2,6,5,9,5,6,5,9,6,9,9,17,9,9,6,10,6,7,6,10,6,7,5,8,11/2,8,7,14,8,8,13/2,10,7,9,8,14,8,10,8,15,10,14,14,25,13,13,9,13,8,9,8,13,7,7,11/2,9,6,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,9/2,8,4,4,7/2,5,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,7,7,10,6,6,9/2,6,4,5,4,6,4,4,4,6,4,5,5,8,9/2,5,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,11/2,10 -24,13,13,9,12,7,8,8,27/2,8,8,7,11,7,10,9,18,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,14,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,5,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,9,5,5,3,4,3,4,4,11/2,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,15/2,5,6,5,8,6,8,8,4,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,6,4,4,3,3,2,2,2,9/2,3,4,3,4,3,5,5,9,5,5,4,7,4,5,4,15/2,4,5,4,7,5,6,5,12,7,7,5,8,6,8,7,25/2,7,8,7,11,8,11,11,27,14,14,10,14,8,10,8,27/2,8,8,6,9,6,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,9,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,29,15,16,11,16,9,11,10,33/2,9,9,7,10,7,9,9,17,9,10,8,12,7,9,8,31/2,9,11,9,16,11,16,16,30,16,16,11,16,10,12,10,37/2,10,11,8,13,9,12,12,25,13,14,11,18,11,14,14,51/2,14,17,14,24,16,24,24,44,22,22,15,22,13,15,13,22,12,13,10,15,9,12,12,25,13,14,10,14,8,10,9,15,9,10,8,14,9,13,13,20,11,11,8,12,7,8,8,27/2,8,8,6,10,6,8,8,18,10,10,7,11,7,9,8,29/2,8,10,8,14,10,14,14,22,11,11,8,11,7,8,8,14,8,8,6,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,8,13,7,8,6,8,5,7,6,23/2,7,8,7,11,8,12,12,18,10,10,7,10,6,8,7,23/2,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,15/2,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,15/2,4,4,3,3,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,7,4,5,4,5,3,3,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,7,4,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,9/2,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,13/2,4,5,5,9,6,9,9,18 -13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,7,4,5,4,6,9/2,6,6,15,8,8,6,8,5,6,5,8,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,15/2,8,6,10,6,8,8,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,12,7,7,11/2,8,5,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,5/2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,10 -13,7,15/2,5,7,4,5,4,8,5,5,4,6,4,11/2,6,9,5,6,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,9,5,4,3,5,3,3,3,4,2,5/2,2,4,3,7/2,3,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,11,6,6,4,6,4,9/2,4,7,4,4,3,4,3,7/2,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,3,5,3,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,3,2,4,3,7/2,4,6,4,4,3,3,2,3,3,4,3,7/2,3,5,4,9/2,4,6,4,7/2,2,3,2,5/2,2,4,3,3,2,2,2,7/2,3,5,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3,3,2,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,3,2,7/2,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,8,17/2,6,8,5,11/2,5,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,5,3,7/2,3,5,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,6,6,9,5,11/2,4,6,4,5,5,8,5,13/2,6,9,6,17/2,8,17,9,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,10,6,6,5,7,4,11/2,6,10,6,7,6,10,7,19/2,9,17,9,19/2,7,9,6,15/2,6,11,6,7,5,8,6,15/2,7,15,8,17/2,6,10,6,17/2,8,15,9,10,9,14,10,14,14,25,13,13,9,13,8,9,7,13,7,8,6,9,6,8,7,14,8,8,6,8,5,13/2,6,9,5,6,5,8,6,8,8,12,6,13/2,5,7,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,11/2,5,9,6,13/2,5,9,6,17/2,8,13,7,7,5,7,4,11/2,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,5,4,6,5,7,7,13,7,15/2,6,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,15/2,8,11,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,5,5,8,5,5,3,5,3,4,4,5,3,4,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,5,3,7/2,3,4,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,5,3,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,1,1,1,2,2,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,0,0,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,6,3,3,2,2,2,5/2,2,3,2,2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,4,3,3,3,5,3,4,4,6,4,5,5,10 -10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,9/2,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,3,5/2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,8,5,5,7/2,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,7/2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,3,5,4,5,5,13,7,7,5,6,4,4,4,6,7/2,4,3,4,3,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,7/2,4,3,5,7/2,5,5,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,9/2,8,5,6,5,8,6,8,7,13,7,8,11/2,7,5,6,5,9,5,6,4,6,9/2,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,9/2,5,4,7,5,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10,11/2,6,4,6,7/2,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,4,2,2,1,2,2,2,1,2,2,2,2,2,3/2,2,1,1,1,0,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,9/2,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,5/2,2,3,3,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,12,6,6,5,7,4,5,4,9,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,11/2,4,6,6,12,6,6,4,11/2,4,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,7/2,3,4,3,3,2,3,2,7/2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,4,3,3,2,2,1,1,1,4,3,3,2,7/2,3,4,3,3,2,2,2,4,3,4,3,5,3,3,2,7/2,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,8,4,4,3,9/2,4,5,5,9,5,5,4,13/2,4,5,5,8,5,6,5,15/2,6,8,8,21,11,10,7,21/2,6,7,6,8,5,6,4,13/2,4,6,6,8,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,7,6,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,22,12,12,8,25/2,7,8,7,12,7,7,6,9,6,7,7,12,7,7,6,9,6,8,7,14,8,9,8,13,9,12,12,21,11,11,8,12,7,9,7,14,8,8,6,10,7,9,9,18,10,10,8,13,8,11,10,18,11,13,11,18,12,18,18,30,16,16,11,15,9,10,9,17,9,10,7,11,7,10,9,16,9,9,7,11,7,9,8,13,7,8,7,11,7,10,10,15,8,8,6,17/2,5,6,5,10,6,6,5,7,5,6,6,14,8,8,6,17/2,5,6,6,11,6,7,6,21/2,7,10,10,15,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,6,5,8,6,9,9,16,8,8,6,17/2,5,6,6,8,5,6,5,15/2,6,8,7,11,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,7,9,5,6,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,2,2,2,5/2,2,2,2,8,4,4,3,9/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,5,3,3,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,0,1,1,1,1/2,1,1,1,2,2,2,1,1/2,1,2,2,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,5/2,2,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,2,3,2,3,3,7,4,4,3,7/2,3,4,3,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,7,4,3,2,3,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,11 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,5/2,3,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,8,4,4,7/2,5,3,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,3,2,3,2,3,2,4,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,2,2,5/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,3,2,4,3,4,3,6,4,4,3,4,3,4,7/2,6,4,4,7/2,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,5,9/2,7,5,7,7,14,8,8,11/2,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,19,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,11/2,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,7/2,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,3,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7 -12,7,7,5,6,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,5,11/2,4,5,3,7/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,5,3,3,3,6,4,7/2,3,4,3,4,4,6,3,3,3,5,3,4,4,6,3,3,3,4,3,7/2,4,8,4,9/2,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,11,6,13/2,5,7,4,4,4,8,4,4,3,4,3,7/2,4,6,4,7/2,3,3,2,3,3,5,3,7/2,3,6,4,11/2,6,11,6,5,4,5,3,4,4,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,7/2,3,5,3,7/2,2,3,3,4,4,7,4,4,3,5,3,7/2,4,7,4,5,4,6,4,11/2,5,7,4,4,3,4,2,5/2,2,3,2,3,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,5,3,4,4,6,4,13/2,7,5,3,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,7,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,3,3,4,4,8,4,9/2,3,4,3,4,4,7,4,4,3,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,6,5,7,5,15/2,8,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,13,7,15/2,6,8,5,6,5,8,5,11/2,5,7,5,13/2,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,13/2,6,9,6,15/2,7,11,6,13/2,5,8,5,13/2,6,12,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,17/2,7,11,7,9,8,14,8,21/2,9,15,10,31/2,16,26,14,27/2,9,13,8,10,8,14,8,9,7,10,6,17/2,8,14,8,8,6,9,6,7,6,11,6,15/2,6,9,6,17/2,8,13,7,15/2,6,8,5,11/2,5,9,5,6,5,7,5,6,6,11,6,13/2,5,6,4,6,6,10,6,7,6,9,6,17/2,8,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,6,4,7,4,11/2,5,8,5,5,5,7,5,7,7,14,8,15/2,5,7,5,6,5,8,4,9/2,4,6,4,11/2,5,9,5,6,4,6,4,9/2,4,8,5,6,5,8,6,17/2,9,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,11/2,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,5,3,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,3/2,2,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,11/2,6,10 -12,6,6,9/2,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,10,6,6,9/2,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,10,11/2,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,13/2,6,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,10,6,8,15/2,13,8,10,8,14,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,7,13,7,7,11/2,8,5,7,6,11,6,7,6,9,6,8,8,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,9/2,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,8,6,9,9,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,3,5/2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,4,5/2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9 -22,12,12,8,11,7,9,8,14,8,8,6,9,6,8,8,15,8,9,6,9,6,7,6,9,5,6,5,7,5,6,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,19/2,6,6,4,6,4,5,5,8,5,5,5,8,5,7,6,14,7,7,5,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,19,10,9,6,9,6,7,6,10,6,6,4,6,4,6,6,19/2,6,6,5,7,5,7,7,12,7,9,7,12,8,11,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,7,6,11,8,12,12,11,6,7,5,8,5,5,5,8,5,5,4,6,4,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,11/2,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,14,10,14,14,31,16,16,11,17,10,11,9,16,8,8,6,9,6,8,7,25/2,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,41/2,11,11,8,12,8,10,9,16,10,12,10,17,12,17,17,33,17,17,12,18,11,13,11,20,11,12,9,15,9,12,12,22,12,13,9,14,9,12,11,21,12,14,12,20,13,18,18,34,18,18,13,19,11,14,12,20,11,12,9,15,10,14,14,26,14,15,12,20,13,17,16,30,17,19,16,28,19,29,29,49,25,26,18,26,15,17,14,24,13,14,11,18,11,14,13,25,13,13,9,14,9,11,11,20,11,12,10,17,11,16,16,24,12,12,8,11,7,8,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,10,9,16,9,10,8,14,10,15,15,25,13,14,10,14,8,10,9,15,8,9,7,10,7,9,9,33/2,9,10,8,12,7,9,9,16,9,10,8,13,9,13,13,25,13,14,10,14,8,10,9,16,9,9,7,12,8,10,9,16,9,10,7,11,8,11,10,19,11,12,10,17,12,17,17,25,13,13,9,14,8,9,8,14,8,8,7,11,8,11,11,41/2,10,10,7,11,7,9,8,15,8,9,7,11,7,10,10,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,15/2,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,9/2,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,2,2,2,2,1,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,2,2,3,3,4,2,2,2,2,2,3,3,9,5,5,4,6,4,5,4,6,4,4,3,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17 -11,6,6,9/2,6,4,5,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,10,5,5,4,5,7/2,4,7/2,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,13/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,16,17/2,8,6,9,11/2,6,5,9,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,13/2,10,7,9,9,16,9,10,9,15,10,15,15,26,27/2,14,10,14,8,9,8,13,7,8,6,10,6,8,7,14,15/2,8,11/2,8,5,6,6,11,6,7,6,9,6,9,9,13,7,6,9/2,6,4,5,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,7,6,9,13/2,9,9,14,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,5/2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,9 -11,6,6,5,6,4,5,4,7,4,9/2,4,6,4,5,5,8,5,11/2,4,6,4,5,4,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,5,3,4,4,8,4,9/2,4,5,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,1/2,1,10,5,5,4,6,4,9/2,4,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,9/2,4,6,4,6,6,10,6,11/2,4,5,3,3,3,4,2,5/2,2,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,8,4,9/2,4,5,3,7/2,4,6,4,4,3,4,3,7/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,4,5,5,7,4,5,4,5,3,7/2,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,13/2,7,7,4,9/2,4,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,5/2,2,2,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,7/2,4,5,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,4,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,9/2,4,7,4,5,4,5,4,5,5,8,5,11/2,5,8,6,15/2,8,17,9,17/2,6,9,6,13/2,6,9,5,11/2,4,5,4,9/2,4,7,4,7/2,3,4,3,3,3,6,4,9/2,4,5,4,5,6,13,7,15/2,6,8,5,6,5,7,4,5,4,8,5,13/2,6,12,6,13/2,5,7,5,6,5,9,6,13/2,6,9,6,9,9,17,9,19/2,6,9,6,15/2,6,11,6,13/2,5,8,5,13/2,6,12,7,15/2,6,8,5,7,6,11,7,8,7,10,7,9,9,19,10,10,7,11,7,8,7,12,7,15/2,6,8,6,8,8,15,8,9,7,10,7,9,9,16,9,21/2,9,16,11,31/2,16,27,14,14,10,14,8,9,8,14,8,17/2,6,10,6,8,7,15,8,17/2,6,8,5,7,7,11,6,15/2,6,10,7,9,9,13,7,13/2,5,6,4,5,4,6,4,9/2,4,5,4,11/2,6,10,6,6,4,6,4,11/2,5,9,5,11/2,5,8,6,17/2,8,14,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,9,5,6,4,7,4,11/2,5,8,5,11/2,4,8,5,7,7,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,11/2,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,19/2,10,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,6,4,5,5,9,5,11/2,4,6,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,7,4,7/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,2,1,-1,0,-1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,5/2,2,2,2,5/2,2,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,3,7/2,4,6,4,9/2,4,5,4,11/2,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,4,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,5/2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,6,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,7/2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,6,4,5,4,5,3,4,3,6,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,5,7,7,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,6,9/2,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,23/2,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,9/2,6,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,11/2,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,7/2,5,4,7,9/2,5,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,7/2,5,5,6,4,4,3,4,3,3,5/2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,5/2,3,3,4,3,4,3,4,3,4,4,7 -12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,11/2,4,4,4,7,4,4,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,11,6,6,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,13/2,5,7,7,10,6,6,4,5,3,4,4,4,3,3,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,7,5,7,6,7,4,5,4,11/2,4,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,7,8,9,5,5,4,9/2,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,2,2,2,2,4,3,3,3,8,4,4,3,9/2,3,4,3,4,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,7/2,2,3,3,3,2,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,13/2,4,6,5,9,5,6,6,19/2,6,9,9,18,9,9,7,10,6,6,5,10,6,6,4,13/2,4,6,5,8,4,4,3,9/2,3,4,4,7,4,5,4,13/2,5,7,7,15,8,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,6,6,9,6,7,6,9,6,9,10,19,10,10,7,10,6,8,7,13,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,21/2,8,11,11,20,10,10,7,11,7,8,7,13,7,8,6,21/2,7,9,8,18,10,10,8,23/2,8,10,9,16,10,12,10,17,12,18,18,30,16,16,10,29/2,8,10,8,15,9,10,8,23/2,8,10,9,17,9,9,7,11,7,9,8,12,7,8,7,23/2,8,10,10,14,7,7,5,15/2,5,6,5,7,4,4,4,6,4,6,6,10,6,6,4,13/2,4,6,6,9,5,6,5,17/2,6,9,10,16,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,10,6,6,5,15/2,5,6,6,9,6,7,6,9,6,8,8,16,8,8,6,17/2,5,6,5,9,5,6,5,7,5,6,6,10,6,7,5,8,5,7,6,11,7,8,7,23/2,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,15/2,5,6,5,10,6,6,5,15/2,6,8,7,9,5,6,4,11/2,4,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,7/2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,6,4,4,3,3,2,3,3,2,1,1,1,3/2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,4,3,3,2,5/2,2,2,3,4,3,3,2,2,2,2,2,4,2,2,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,6,6,11 -7,4,5,7/2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,6,10,6,8,13/2,10,7,11,11,18,10,10,13/2,9,5,6,5,9,11/2,6,5,7,5,6,11/2,10,6,6,9/2,7,9/2,6,5,8,5,5,4,7,5,6,6,9,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,6,6,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,7/2,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,6,7/2,4,3,5,3,4,4,6,4,5,4,5,3,4,4,7,9/2,5,9/2,8,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,7/2,5,4,8,5,5,7/2,5,3,4,7/2,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,1,0,1,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,4,4,7 -9,5,6,4,5,3,4,4,6,4,9/2,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,2,1,1,1,8,4,4,3,5,3,4,3,5,3,7/2,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,5,7,4,9/2,3,4,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,3,5,3,5/2,2,4,3,3,3,5,3,4,4,5,4,6,6,7,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,2,2,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,3,5,3,7/2,3,3,2,2,2,3,2,5/2,2,3,2,3,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,5,4,5,4,5,4,8,5,11/2,4,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,7/2,3,5,3,4,4,6,4,6,6,11,6,13/2,5,8,5,11/2,5,7,4,5,4,6,4,11/2,5,10,5,5,4,6,4,5,5,7,4,11/2,4,7,5,15/2,8,14,8,15/2,5,7,5,6,5,10,5,5,4,6,4,11/2,5,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,9,9,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,13,8,19/2,8,13,9,27/2,14,23,12,25/2,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,12,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,8,5,5,4,6,4,5,5,8,5,5,4,8,6,15/2,8,12,7,7,5,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,11/2,4,6,4,5,5,7,4,5,4,8,5,6,6,12,6,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,6,4,11/2,5,9,6,13/2,6,10,7,9,9,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,9/2,4,6,4,11/2,6,6,4,4,3,4,3,3,3,3,2,3,2,3,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,2,2,2,2,2,7,4,7/2,2,3,2,3,3,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,6,4,4,3,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,-2,0,-1/2,0,0,1,3/2,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,3/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,2,4,3,4,3,5,3,3,3,4,3,3,3,6,4,7/2,3,5,3,4,4,5,3,7/2,3,5,4,5,5,10 -8,5,5,4,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,5/2,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,7/2,6,7/2,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,7/2,5,7/2,4,4,7,9/2,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,7,4,5,4,5,7/2,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,9/2,5,9/2,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,8,6,8,11/2,7,7,12,7,8,7,12,17/2,12,13,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,12,7,7,5,8,5,6,5,9,11/2,6,5,8,5,7,7,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,5,7/2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9 -14,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,5,3,3,3,4,3,3,2,3,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,11/2,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,9/2,2,2,2,3,2,1,1,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,11,6,7,5,8,5,6,5,15/2,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,5,8,6,8,7,11,6,5,4,5,3,4,4,13/2,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,6,5,8,5,6,6,19/2,6,6,5,8,5,7,7,11,6,5,4,5,3,4,4,13/2,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,17/2,6,7,6,10,7,10,10,13,7,7,5,8,5,5,4,15/2,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,4,4,12,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,14,8,9,7,10,6,8,6,21/2,6,6,4,6,4,6,6,10,6,7,6,9,6,7,7,13,7,8,6,10,7,11,11,20,11,11,7,10,6,8,7,13,7,7,5,8,6,8,7,9,5,6,4,6,4,5,4,15/2,4,5,5,8,6,8,9,19,10,10,7,10,6,8,8,27/2,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,25/2,7,8,7,12,9,13,13,24,12,12,9,13,8,10,8,14,8,8,7,11,7,8,8,16,9,9,7,10,6,8,7,25/2,7,8,7,12,9,13,13,28,14,14,10,15,9,11,9,16,9,10,8,12,8,11,11,24,13,13,10,15,10,13,12,43/2,13,16,13,23,16,23,23,39,20,20,14,20,11,13,11,20,11,12,9,15,9,12,11,22,12,12,9,13,8,10,9,33/2,9,10,8,13,9,12,12,19,10,11,8,11,7,8,6,21/2,6,7,5,8,6,8,7,12,7,7,5,8,6,8,7,25/2,7,8,7,13,9,13,13,19,10,10,7,11,7,8,6,10,6,7,6,9,6,7,7,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,23/2,6,6,5,8,6,8,8,15,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,23,12,12,8,12,7,8,8,27/2,8,8,6,9,6,9,8,16,9,9,7,10,6,8,7,23/2,6,7,6,9,6,8,8,10,5,5,3,4,3,3,3,11/2,4,4,3,4,3,3,3,10,5,5,4,6,4,4,4,11/2,3,3,3,4,3,4,3,13,7,6,4,6,4,5,4,13/2,4,4,4,6,4,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,10,5,5,4,6,4,4,3,5,3,4,3,5,3,3,3,1,1,1,1,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,3,3,5,3,3,2,2,2,2,2,7/2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,8,5,6,5,17/2,5,6,5,9,6,9,9,17 -8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,7/2,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,7/2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,7/2,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,7/2,4,4,8,9/2,5,4,6,5,7,7,11,6,6,9/2,6,4,5,9/2,8,4,4,3,5,7/2,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,8,9/2,5,4,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,15/2,16,8,8,6,9,5,6,5,9,5,6,5,7,5,6,13/2,13,7,8,6,9,6,8,7,12,15/2,9,8,13,9,13,13,22,12,12,8,12,7,8,7,11,6,7,11/2,9,11/2,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,3,5,4,5,4,7,4,5,9/2,7,5,8,15/2,11,6,6,4,7,4,5,4,6,4,4,7/2,5,7/2,4,4,9,5,5,4,6,4,5,4,8,9/2,5,4,6,4,6,6,10,6,6,9/2,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,7/2,5,4,5,5,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10 -9,5,6,4,5,4,9/2,4,7,4,5,4,5,4,5,4,7,4,7/2,2,4,3,7/2,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,7/2,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,7/2,3,6,4,11/2,5,7,4,7/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,11/2,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,4,3,6,4,9/2,4,5,3,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,5,9,5,11/2,4,7,4,11/2,5,6,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,15/2,6,7,5,6,5,9,5,9/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,13,7,13/2,4,7,4,11/2,5,9,5,5,4,6,4,11/2,6,10,6,6,5,6,4,11/2,5,9,5,6,5,8,6,9,9,16,8,17/2,6,8,5,13/2,6,9,5,6,4,7,5,6,5,10,6,6,5,6,4,11/2,5,8,5,5,5,8,6,17/2,8,18,10,19/2,6,10,6,7,6,11,6,7,6,9,6,15/2,8,15,8,17/2,6,10,6,17/2,8,14,9,11,9,15,10,15,15,26,14,14,10,14,8,19/2,8,13,7,8,6,10,6,8,8,14,8,15/2,6,8,5,7,6,10,6,13/2,6,9,6,8,8,13,7,7,5,8,5,11/2,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,11/2,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,8,5,5,4,6,4,11/2,5,10,6,6,5,7,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,7,4,5,5,10,6,7,6,10,7,10,10,15,8,17/2,6,8,5,13/2,6,9,5,5,4,6,4,11/2,6,11,6,11/2,4,6,4,5,5,8,4,9/2,4,6,4,6,6,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,8,5,5,4,4,3,7/2,3,4,3,3,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,7,4,4,3,4,3,3,3,3,2,3,2,4,3,3,3,1,1,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,1,0,0,0,0,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,-3,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,4,2,5/2,2,3,2,2,2,4,3,7/2,4,6,3,3,3,5,3,4,4,5,3,4,3,4,3,3,3,8,4,4,3,5,3,4,4,6,4,9/2,4,6,4,6,6,11 -8,9/2,5,4,4,3,4,3,5,3,4,3,4,3,4,7/2,6,3,3,2,3,2,3,5/2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,5/2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,7/2,5,4,5,6,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,6,4,5,9/2,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,6,5,7,5,8,8,13,7,7,5,7,4,5,9/2,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,11/2,8,5,6,5,9,5,6,5,8,5,6,13/2,13,7,7,5,8,5,7,7,12,7,9,15/2,12,8,12,12,22,11,11,8,11,13/2,8,13/2,11,6,7,5,8,5,7,6,11,6,6,9/2,6,4,5,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,7/2,5,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,7/2,5,5,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,1,1,1,1/2,0,0,0,0,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9 -13,7,8,6,15/2,4,5,5,8,5,5,4,6,4,6,6,9,5,4,3,9/2,3,3,3,7,4,4,3,9/2,4,5,5,7,4,4,3,9/2,3,4,3,3,2,2,2,9/2,4,5,5,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,9/2,2,2,2,4,3,3,2,5/2,2,2,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,9/2,3,4,3,6,4,4,4,11/2,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,7,4,4,4,11/2,4,4,4,6,4,5,4,7,5,6,6,11,6,5,4,5,3,4,3,7,4,4,4,11/2,4,6,5,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,13,7,7,5,7,5,6,5,8,5,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,8,5,6,4,13/2,4,6,5,10,6,6,5,15/2,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,5,7,7,10,6,6,4,11/2,4,4,4,7,4,5,4,6,4,6,6,9,5,6,4,11/2,4,4,4,7,4,4,4,6,5,7,7,11,6,7,5,8,5,6,6,9,5,6,4,13/2,4,6,6,12,7,7,5,8,5,7,7,11,7,8,6,21/2,8,11,11,18,10,10,7,11,7,9,8,11,6,6,5,15/2,5,6,6,9,5,6,4,11/2,4,6,5,9,5,6,5,17/2,6,8,9,18,9,9,6,9,6,7,6,12,7,7,6,17/2,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,25/2,9,14,14,21,11,11,8,25/2,7,8,7,14,8,8,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,12,8,12,12,25,13,13,9,25/2,8,9,8,16,9,10,8,13,8,11,11,22,12,13,9,14,9,11,11,20,12,14,12,43/2,15,22,22,38,20,20,13,37/2,11,13,11,18,10,11,8,27/2,8,11,10,18,10,10,7,21/2,6,8,7,15,9,10,8,25/2,8,12,11,19,10,10,8,23/2,7,8,7,10,6,7,5,8,5,7,7,12,7,8,6,17/2,6,7,7,12,7,8,7,11,8,12,12,18,10,10,7,19/2,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,17/2,6,7,6,12,7,7,6,9,6,9,9,16,9,9,7,10,6,7,7,12,7,8,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,21,11,11,8,12,7,9,8,12,7,7,6,9,6,7,7,14,8,8,6,15/2,5,6,6,10,6,6,5,15/2,5,7,7,12,6,6,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,9,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,3,10,6,6,4,13/2,4,4,3,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,10,6,6,4,11/2,4,4,4,4,3,3,2,7/2,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,4,3,3,2,5/2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,7,4,3,2,3,2,2,2,6,4,4,3,5,4,5,5,8,5,5,4,11/2,4,4,3,5,3,4,3,9/2,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,11/2,4,4,4,10,5,5,4,11/2,4,4,4,9,5,6,5,15/2,6,8,8,15 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,5,6,5,8,4,4,7/2,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,6,5,6,4,5,9/2,8,5,5,4,6,4,6,6,9,5,6,4,7,9/2,6,5,9,11/2,6,5,8,6,9,9,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,11/2,6,6,11,6,7,6,9,6,8,8,15,8,9,13/2,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,12,7,9,7,12,7,7,6,9,6,7,7,12,7,7,5,7,9/2,6,5,10,6,7,5,8,6,8,8,13,7,7,11/2,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,9/2,8,9/2,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,9/2,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,7/2,4,4,7,4,4,3,5,7/2,5,5,8,4,4,3,4,5/2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,5/2,4,3,4,7/2,6,3,3,3,4,3,3,5/2,4,3,3,5/2,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,10 -13,7,7,5,7,4,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,4,3,7/2,3,6,4,4,3,5,3,4,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,8,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,5,9,5,9/2,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,3,3,3,5,4,5,5,7,4,5,4,6,4,11/2,5,8,5,6,5,8,6,9,9,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,5,5,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,6,6,10,6,11/2,4,7,4,9/2,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,9/2,4,6,4,9/2,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,5,7,7,10,6,6,5,8,5,11/2,5,8,5,6,5,6,4,6,6,12,6,13/2,5,7,5,13/2,6,12,7,15/2,6,10,7,10,10,19,10,10,7,10,6,15/2,6,11,6,13/2,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,18,10,19/2,7,9,6,7,6,12,7,7,5,9,6,15/2,8,13,7,8,6,10,6,17/2,8,13,8,9,7,12,9,13,13,21,11,23/2,8,12,7,17/2,7,12,7,7,5,9,6,15/2,7,12,7,7,5,9,6,8,7,11,7,8,7,11,8,11,11,22,12,25/2,8,12,8,19/2,9,16,9,10,8,13,8,23/2,11,21,11,12,9,13,8,23/2,11,20,12,27/2,12,20,14,20,20,36,19,19,13,18,10,25/2,10,18,10,10,8,13,8,10,10,18,10,19/2,7,10,6,8,7,14,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,9,6,13/2,5,8,5,13/2,7,12,7,7,5,8,5,13/2,6,12,7,8,7,11,8,23/2,11,19,10,10,7,10,6,15/2,6,11,6,7,6,8,6,8,7,13,7,7,5,8,5,6,6,11,6,13/2,6,9,6,9,9,16,9,9,7,10,6,15/2,6,11,7,8,6,9,6,8,8,15,8,8,6,9,6,15/2,7,14,8,19/2,8,14,9,13,13,21,11,11,8,11,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,15/2,5,7,5,6,6,10,6,11/2,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,8,5,5,3,5,3,4,3,4,2,5/2,2,3,2,3,3,11,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,7/2,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,9,5,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,7,4,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,8,4,4,3,5,3,7/2,3,6,4,4,3,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,8,5,5,4,8,5,7,7,14 -12,7,7,5,6,4,4,4,6,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,9/2,4,7/2,5,3,4,4,6,4,4,3,5,7/2,4,5,9,5,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,9/2,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,7,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,13/2,11,6,6,5,7,5,6,6,10,11/2,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,10,7,9,6,7,6,11,13/2,7,5,9,6,7,7,13,7,8,6,10,6,8,8,13,8,9,15/2,13,9,13,13,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,9,6,7,7,11,7,8,7,11,8,11,11,22,12,12,8,12,8,10,9,16,9,10,8,13,17/2,12,11,21,11,12,9,13,17/2,12,11,20,12,14,12,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,13/2,8,7,13,8,9,7,12,8,11,11,19,10,10,7,11,6,7,6,9,11/2,6,5,7,5,6,13/2,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,6,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,6,11/2,9,6,9,9,16,9,9,7,10,6,8,13/2,11,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,13,9,13,13,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,5,7,5,6,6,10,6,6,4,6,4,6,6,11,6,6,4,6,7/2,4,4,6,4,4,3,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,3,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,7/2,3,2,3,2,3,3,4,3,3,3,5,7/2,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,6,4,4,4,8,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,9/2,8,5,5,4,7,5,7,7,13 -23,12,12,8,12,7,8,7,11,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,23/2,6,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,6,5,7,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,14,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,7,6,10,7,11,11,43/2,11,10,7,10,6,7,6,10,6,7,5,8,6,9,9,16,9,9,7,12,8,11,10,19,11,12,10,18,12,18,18,23,12,13,9,13,8,9,7,12,7,8,6,10,6,8,8,15,8,9,7,11,7,8,7,13,7,8,7,12,8,11,10,19,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,9,8,13,8,9,7,12,9,13,13,20,11,11,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,11,7,10,10,41/2,11,11,7,10,6,8,7,13,7,8,7,12,8,10,10,18,10,10,7,11,7,10,10,18,11,13,11,18,12,18,19,36,19,19,13,19,11,12,10,18,10,11,9,15,10,14,13,24,13,13,10,15,9,12,11,20,11,13,11,18,12,18,17,65/2,17,17,12,17,10,13,12,21,12,14,11,18,12,16,15,29,15,16,12,19,12,16,15,28,16,18,15,25,17,25,25,40,20,20,14,21,13,16,14,24,13,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,23,15,22,22,85/2,22,22,16,24,14,17,15,26,14,16,13,22,14,20,19,36,19,21,16,25,16,22,21,40,23,27,23,40,27,40,40,70,36,36,25,37,21,25,21,37,20,21,15,24,15,19,18,34,18,18,13,20,12,14,12,22,12,14,12,21,14,20,20,75/2,19,19,13,20,12,14,12,20,11,13,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,13,21,14,21,21,36,19,19,13,19,11,14,12,21,11,12,9,14,9,11,11,20,11,11,8,13,8,11,11,20,11,12,10,17,11,16,16,63/2,16,17,12,17,10,13,12,21,11,12,10,16,10,13,13,24,13,14,10,16,10,14,14,27,15,18,15,25,17,25,25,41,21,21,14,21,12,14,12,21,11,12,9,14,9,12,11,19,10,10,7,11,7,8,7,11,7,8,7,11,8,11,11,21,11,11,7,9,5,6,5,8,5,6,5,7,5,6,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,20,10,10,7,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,16,8,8,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,13/2,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,7,4,5,4,5,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,2,3,2,3,2,3,3,4,5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,7,5,8,5,6,6,10,6,6,5,7,5,8,8,14,8,8,6,8,5,5,5,8,5,6,5,9,6,9,8,31/2,8,8,6,8,5,7,6,11,6,7,5,8,6,9,9,16,9,10,7,11,7,8,8,14,8,9,7,12,9,13,13,25 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,19,10,10,7,10,6,6,11/2,10,6,6,5,8,6,8,7,12,7,7,11/2,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,13/2,9,6,7,6,11,13/2,8,6,10,6,8,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,20,10,10,7,11,7,8,7,13,7,7,11/2,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,12,7,9,8,14,8,8,7,12,8,10,10,18,10,11,8,13,9,12,11,21,12,14,12,21,14,21,21,36,19,19,13,19,11,13,11,19,21/2,11,8,13,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,11,15/2,10,10,20,10,10,7,11,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,7,13,8,9,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,6,10,6,6,11/2,9,6,9,9,17,9,9,13/2,9,6,7,13/2,11,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,13/2,8,13/2,11,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,9,5,4,7/2,5,7/2,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,4,5/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,9/2,4,8,4,4,3,4,3,3,2,4,3,3,2,4,3,7/2,4,7,4,9/2,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,3,3,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,9/2,4,9,5,5,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,9/2,4,7,4,7/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,13/2,6,11,6,11/2,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,11/2,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,8,5,11/2,4,6,4,5,5,6,4,4,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,6,4,9/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,13/2,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,11/2,4,7,4,5,5,10,6,7,6,10,7,10,10,19,10,21/2,7,10,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,15/2,6,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,15/2,6,10,6,17/2,8,16,9,9,7,10,7,9,8,14,8,19/2,8,14,9,13,13,20,10,21/2,7,10,6,17/2,7,13,7,15/2,6,9,6,15/2,8,13,7,8,6,9,6,8,7,13,8,9,8,13,9,25/2,12,23,12,12,8,12,7,9,8,14,8,17/2,7,12,8,10,10,18,10,11,8,14,9,12,11,22,12,29/2,12,21,14,21,21,36,19,19,13,19,11,13,11,20,11,11,8,13,8,11,10,18,10,19/2,7,10,6,8,7,11,6,7,6,11,8,21/2,10,20,11,11,8,12,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,10,6,7,7,13,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,11,6,7,5,8,5,7,7,11,6,13/2,5,7,5,6,6,10,6,13/2,6,9,6,19/2,10,18,10,10,7,10,6,15/2,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,15,8,19/2,8,13,9,27/2,14,21,11,23/2,8,11,6,15/2,6,11,6,13/2,5,8,5,13/2,6,10,6,11/2,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,7/2,3,5,3,4,3,4,3,3,3,5,3,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,10,6,11/2,4,5,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,9,5,9/2,4,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,3/2,1,0,0,0,0,4,2,5/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,1,1,2,2,-5,-2,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,7/2,3,5,4,9/2,4,8,5,5,4,5,3,7/2,3,5,3,4,3,5,4,11/2,5,8,4,4,3,5,3,4,4,7,4,4,3,5,4,11/2,5,9,5,5,4,7,4,5,5,8,5,5,4,7,5,8,8,14 -9,5,5,4,5,3,3,3,4,3,3,2,3,3,4,7/2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,4,3,3,3,5,7/2,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,5/2,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,7/2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,11/2,8,5,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,8,5,6,4,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,13/2,9,9,14,15/2,8,5,7,9/2,6,5,9,5,6,4,6,4,6,6,10,11/2,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,16,8,8,6,8,5,6,11/2,10,6,6,5,9,6,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,9/2,8,6,8,15/2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,9/2,7,4,5,5,9,6,7,5,9,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,5/2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,7/2,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10 -13,7,7,5,15/2,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,11/2,4,6,5,10,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,3,8,4,4,3,5,4,5,4,7,4,4,3,9/2,3,4,4,5,3,3,2,7/2,3,4,4,5,3,3,3,9/2,4,5,5,10,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,4,5,3,4,3,9/2,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,5,4,7,5,6,6,11,6,6,4,11/2,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,15/2,5,6,6,12,7,8,7,23/2,8,12,11,13,7,7,5,7,4,5,5,8,5,6,4,13/2,4,6,6,9,5,6,4,13/2,4,5,5,6,4,4,3,5,4,5,6,11,6,7,5,15/2,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,13/2,4,4,3,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,13,7,7,5,13/2,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,15/2,5,6,6,10,6,7,6,21/2,7,10,11,22,12,12,8,23/2,7,8,6,11,6,7,6,19/2,6,8,8,13,7,8,6,17/2,6,7,6,11,7,8,6,10,7,10,10,17,9,9,7,11,6,7,6,12,7,7,6,19/2,7,10,10,16,9,10,7,11,7,9,9,14,8,10,8,27/2,10,14,14,20,10,10,7,21/2,6,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,8,13,9,12,12,24,13,13,9,25/2,8,9,8,15,9,10,8,13,8,11,10,19,11,12,9,14,9,13,12,23,13,15,13,22,15,22,22,38,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,19,10,11,8,23/2,7,8,8,12,7,8,6,21/2,7,10,10,22,12,12,8,25/2,7,8,7,13,7,8,6,19/2,6,9,9,15,8,8,6,10,6,8,7,14,8,10,8,13,9,12,12,20,11,11,8,25/2,7,8,7,13,7,8,6,17/2,6,7,7,13,7,7,6,17/2,5,6,6,11,6,7,6,21/2,8,11,11,19,10,10,7,21/2,6,8,7,13,7,8,6,9,6,9,8,15,9,10,8,23/2,8,10,9,15,9,10,8,29/2,10,14,14,23,12,12,8,12,7,8,7,11,6,6,5,17/2,6,7,7,11,6,6,4,13/2,4,5,4,7,4,5,4,13/2,4,6,6,12,6,6,5,7,4,4,3,6,3,3,2,7/2,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,10,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,1,1,0,0,0,1,1,1,3,2,1,1,1/2,0,0,0,4,3,3,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,1,1,1,2,2,2,1,1,1,2,2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,9/2,3,3,3,6,4,4,4,11/2,4,4,4,9,5,5,4,9/2,3,4,3,6,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,15/2,6,8,8,14 -8,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,3,3,3,4,5/2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,7/2,5,3,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,5/2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,9/2,5,4,5,7/2,4,4,7,4,5,4,6,9/2,6,6,10,6,6,9/2,7,4,4,4,7,4,5,4,6,4,6,6,9,5,6,9/2,7,9/2,6,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,8,8,11/2,8,5,6,5,9,5,6,5,8,5,7,6,11,13/2,7,11/2,8,6,8,7,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,13,7,7,11/2,8,5,7,13/2,11,6,7,5,7,9/2,5,5,8,5,5,4,6,9/2,6,6,13,7,7,5,8,5,5,9/2,8,9/2,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,5,9/2,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,6,9,11/2,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,9/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,2,3/2,1,1,1,1,1,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8 -9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,3,4,2,5/2,2,2,2,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,2,4,2,5/2,2,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,3,3,2,5/2,2,5,3,5/2,2,4,3,7/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,4,4,2,5/2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,3,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,5,3,3,2,4,3,3,3,4,3,7/2,4,6,4,5,5,9,5,5,3,5,3,4,4,5,3,7/2,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,8,8,11,6,6,4,6,4,9/2,4,7,4,9/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,4,3,7/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,7/2,3,6,4,5,4,7,5,7,7,8,5,5,4,6,4,7/2,3,5,3,3,2,3,3,4,4,5,3,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,4,3,7/2,3,6,4,4,3,5,4,5,5,7,4,4,3,6,4,5,5,8,5,11/2,5,8,6,17/2,8,16,9,9,6,8,5,13/2,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,11/2,4,8,6,15/2,8,13,7,7,5,8,5,11/2,5,9,5,6,5,7,5,7,7,11,6,7,5,8,5,13/2,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,11/2,6,8,5,11/2,4,7,5,13/2,6,12,7,7,5,7,5,13/2,6,10,6,7,6,10,7,10,9,18,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,14,8,9,7,10,7,9,9,17,10,11,9,16,11,16,16,29,15,29/2,10,15,9,21/2,9,16,9,9,7,10,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,15/2,8,17,9,9,7,10,6,13/2,6,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,15/2,6,10,7,10,9,16,9,9,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,6,6,5,6,4,5,4,8,5,11/2,5,8,6,8,8,13,7,7,5,7,4,11/2,5,10,6,13/2,5,8,5,7,7,11,6,13/2,5,9,6,15/2,7,12,7,15/2,6,11,8,11,11,16,9,9,6,8,5,6,5,9,5,11/2,4,7,4,11/2,6,8,5,5,3,5,3,7/2,4,5,3,7/2,3,5,4,9/2,5,10,6,11/2,4,5,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,8,5,5,4,5,3,7/2,4,5,3,7/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,2,2,2,1,1,1,1/2,0,2,1,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,2,2,2,2,2,5/2,2,6,3,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,5,3,7/2,4,6,4,9/2,4,6,4,6,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,5/2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,5,8,5,5,9/2,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,9/2,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,7/2,4,4,6,9/2,6,6,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,15/2,14,8,8,11/2,8,5,6,5,9,5,5,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,11/2,11,6,6,5,6,4,6,5,9,5,6,5,9,6,9,8,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,9/2,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,10,14,7,7,5,7,4,5,5,8,9/2,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,7/2,4,4,6,4,6,5,9 -15,8,8,6,8,5,6,6,19/2,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,6,6,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,6,5,11,6,5,4,5,3,4,4,11/2,4,4,3,3,3,4,4,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,1,1,2,2,3,2,3,2,7/2,2,3,3,5,4,5,5,9,5,5,4,5,3,4,4,15/2,4,4,3,4,3,3,3,7,4,5,4,6,4,4,4,15/2,4,5,4,5,4,5,5,11,6,6,4,5,3,4,4,11/2,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,9/2,3,3,3,4,3,4,4,12,6,6,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,8,5,6,6,15,8,8,6,10,6,8,8,27/2,8,9,7,12,9,13,13,19,10,10,7,11,7,8,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,15/2,4,5,5,8,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,6,7,6,11,8,11,10,13,7,8,6,8,5,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,17/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,15/2,5,6,5,7,5,7,7,10,6,6,4,6,4,6,6,23/2,7,8,8,14,10,14,13,25,13,13,9,13,8,10,9,31/2,9,10,8,12,7,9,9,14,8,8,6,9,6,8,7,12,7,9,7,12,8,11,11,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,11,18,10,10,7,11,7,10,10,35/2,10,11,9,15,10,15,15,22,12,12,9,13,8,10,8,27/2,8,8,6,10,7,9,9,19,10,11,8,13,8,10,9,31/2,9,11,9,16,11,15,14,28,15,15,11,16,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,15,10,13,13,25,14,16,14,24,16,24,25,46,24,24,17,25,14,17,14,25,13,14,11,17,11,14,13,24,13,13,9,14,9,11,10,35/2,10,11,9,15,10,13,12,26,14,14,10,15,9,10,8,14,8,9,7,12,8,11,11,22,12,13,9,14,8,10,9,31/2,9,11,9,16,11,15,14,27,14,15,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,6,8,5,6,6,11,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,12,8,11,10,18,10,11,8,12,8,10,10,37/2,10,12,10,18,12,18,17,24,12,12,8,12,7,9,8,13,8,9,7,11,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,4,13,7,8,6,8,5,6,5,17/2,5,5,3,4,3,3,3,6,4,4,3,4,3,3,2,7/2,2,3,2,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,4,2,2,1,1,1,1,1,3/2,1,0,0,0,0,0,0,9,5,6,4,6,4,4,4,13/2,4,4,3,4,3,4,3,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,2,2,3/2,2,2,2,4,3,4,4,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,11/2,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,13/2,4,4,3,5,4,6,6,9,5,5,4,7,4,5,5,17/2,5,6,5,8,5,6,6,12,6,6,5,7,5,6,5,17/2,5,6,6,10,7,10,9,17 -9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,15/2,11,6,6,9/2,7,4,5,4,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,15/2,8,5,7,5,6,5,8,5,6,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,10,6,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,9,6,8,15/2,14,8,9,8,13,9,13,27/2,25,13,13,9,14,8,10,8,14,15/2,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,11/2,7,7,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,11/2,10,11/2,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9 -10,6,11/2,4,5,3,4,4,7,4,4,4,6,4,9/2,4,8,4,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,2,2,0,1,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,4,3,3,3,5,3,7/2,3,6,4,11/2,6,8,5,11/2,4,6,4,9/2,4,7,4,5,4,5,4,9/2,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,7,4,5,4,7,4,5,5,10,6,6,4,5,4,9/2,4,6,4,4,4,5,4,5,5,8,5,11/2,4,6,4,9/2,4,6,4,9/2,3,4,3,9/2,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,13/2,6,9,5,9/2,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,6,4,4,3,3,2,3,3,6,4,4,4,5,4,5,5,9,5,9/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,7,4,5,4,5,4,9/2,4,8,5,6,5,10,7,19/2,9,15,8,17/2,6,8,5,6,5,9,5,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,11/2,5,8,5,7,7,11,6,13/2,5,8,5,11/2,5,8,5,11/2,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,11/2,5,9,5,11/2,4,7,5,6,6,12,7,7,5,8,5,13/2,6,10,6,7,6,10,7,19/2,9,16,9,9,7,9,6,7,6,10,6,7,6,10,6,17/2,8,13,7,15/2,6,10,6,17/2,8,15,9,10,9,15,10,29/2,15,28,14,29/2,10,16,9,21/2,9,15,8,9,7,11,7,9,8,16,9,9,7,9,6,15/2,6,12,7,15/2,6,9,6,8,8,16,9,19/2,6,9,6,13/2,6,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,13/2,6,10,7,19/2,10,17,9,9,6,9,6,13/2,6,11,6,7,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,11/2,5,7,5,15/2,8,14,8,15/2,6,8,5,6,5,9,5,11/2,4,7,5,13/2,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,23/2,11,15,8,8,6,7,5,6,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,4,9/2,4,6,4,4,4,6,4,9/2,4,8,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,7,4,9/2,3,5,3,7/2,4,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,7/2,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,8,4,4,3,4,3,7/2,3,6,4,4,4,6,4,11/2,6,10 -9,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,9/2,7,4,4,3,5,3,4,3,6,7/2,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,8,9/2,5,4,6,9/2,6,7,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,4,8,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,7/2,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,10,6,6,9/2,6,4,4,4,7,4,4,7/2,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,11/2,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,23,12,12,8,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,11/2,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,11/2,8,5,6,5,7,4,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,9/2,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,9/2,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,11/2,9,6,9,9,12,6,6,9/2,6,4,4,4,7,4,4,4,6,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8 -15,8,8,6,8,5,7,6,9,5,5,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,11/2,4,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,0,1,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,9/2,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,15/2,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,17/2,6,7,6,13,7,8,6,21/2,8,11,11,21,11,11,8,12,7,8,6,12,7,8,6,9,6,8,7,13,7,8,6,15/2,4,5,5,8,5,6,4,13/2,4,6,6,13,7,8,6,8,5,5,5,8,5,6,4,13/2,4,6,5,8,5,6,4,13/2,4,5,5,7,4,5,5,17/2,6,8,8,12,6,6,4,11/2,4,4,3,6,4,4,3,4,3,3,3,8,5,5,4,5,4,5,4,8,5,6,5,15/2,5,6,6,11,6,6,4,6,4,5,5,7,4,4,3,5,4,6,6,10,6,6,5,15/2,5,6,6,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,10,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,9,9,14,8,8,6,9,6,7,6,9,5,6,5,17/2,6,8,8,14,8,8,6,19/2,6,8,7,12,7,9,8,25/2,8,12,12,17,9,9,7,10,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,19/2,6,8,7,13,8,9,7,12,8,11,11,21,11,11,8,23/2,7,9,8,13,7,8,7,23/2,8,10,10,18,10,10,8,12,8,10,10,19,11,13,11,39/2,14,20,20,39,20,20,14,21,12,14,11,21,11,12,9,29/2,9,12,11,21,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,23,12,13,9,13,7,8,7,12,7,8,6,21/2,7,10,10,18,10,10,8,23/2,7,8,7,12,7,8,8,27/2,9,13,13,23,12,12,8,23/2,7,8,7,14,8,8,6,9,6,7,7,14,8,8,6,8,5,7,6,10,6,8,6,21/2,7,10,10,20,11,11,8,11,7,9,8,12,7,7,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,15,10,14,14,20,10,10,7,19/2,6,7,6,11,6,6,5,17/2,6,7,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,5/2,2,3,3,9,5,5,4,11/2,4,4,4,7,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,6,4,4,3,9/2,3,3,3,3,2,3,3,4,3,3,3,6,4,4,3,9/2,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,0,0,0,1,3/2,2,2,1,1,1,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,9/2,4,5,5,8,4,4,3,7/2,3,4,4,4,3,3,3,11/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,12 -10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,3,4,5/2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,4,6,7/2,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,9/2,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,5,9,6,8,8,14,15/2,8,5,7,4,5,9/2,8,5,5,4,7,9/2,6,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,15/2,8,11/2,8,5,6,11/2,9,5,6,5,8,5,7,7,12,7,7,11/2,8,11/2,7,7,13,8,9,8,13,9,13,13,25,13,13,9,13,8,9,15/2,14,15/2,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,11/2,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,9,5,6,6,10,7,9,9,14,7,7,5,7,4,5,4,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,5/2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,7/2,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8 -14,8,15/2,6,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,5/2,2,3,2,5/2,2,3,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,3,3,4,3,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,8,4,9/2,4,5,3,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,3,4,3,4,4,6,4,4,4,7,5,13/2,6,12,6,13/2,5,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,8,5,7,6,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,15/2,6,9,6,15/2,7,12,7,7,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,12,7,7,5,7,4,11/2,4,7,4,9/2,4,6,4,9/2,4,8,5,5,4,6,4,9/2,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,5,3,4,4,7,4,11/2,4,6,4,13/2,6,10,6,6,4,6,4,5,4,8,4,9/2,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,7,8,7,12,8,12,12,20,10,21/2,7,10,6,7,6,11,6,13/2,5,9,6,15/2,7,12,7,7,5,8,5,6,5,9,5,11/2,5,8,6,8,8,14,8,15/2,5,7,4,11/2,5,9,5,6,5,7,5,7,7,12,7,15/2,6,8,6,15/2,7,12,7,17/2,7,12,8,11,11,16,8,8,6,9,6,13/2,6,10,6,6,5,8,6,8,8,14,8,15/2,6,8,5,7,6,11,6,15/2,6,11,8,21/2,10,19,10,21/2,7,11,7,17/2,8,12,7,8,7,10,7,9,9,18,10,21/2,8,12,8,10,10,18,11,13,11,18,13,19,19,35,18,37/2,13,18,10,25/2,10,19,10,11,8,14,9,23/2,11,20,11,11,8,12,8,19/2,8,15,9,10,8,12,8,11,11,21,11,11,8,11,6,15/2,6,11,6,7,6,10,7,19/2,10,17,9,10,7,10,6,15/2,7,12,7,8,7,12,9,13,13,20,10,21/2,8,10,6,15/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,6,8,5,6,5,9,6,7,6,9,6,9,9,19,10,21/2,7,10,6,8,7,12,6,13/2,5,8,5,7,7,14,8,15/2,6,9,6,7,7,12,7,17/2,8,13,9,13,13,20,10,21/2,7,10,6,7,6,11,6,6,5,8,5,13/2,6,10,6,11/2,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,4,3,7/2,4,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,9/2,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3/2,2,3,2,3,3,2,2,3/2,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,9/2,3,4,3,4,3,5,3,7/2,3,5,3,4,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,3,4,4,9,5,11/2,4,7,4,11/2,5,8,4,9/2,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,5,3,4,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,9,5,6,9/2,6,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,5/2,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,7/2,5,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,4,6,9/2,6,6,11,6,6,5,7,5,6,5,8,5,6,9/2,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,12,7,7,5,7,9/2,6,9/2,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,4,4,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,7,8,7,12,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,9/2,6,5,8,5,6,5,7,5,7,7,12,7,7,11/2,8,11/2,7,7,12,7,8,7,11,8,11,11,16,8,8,6,9,11/2,6,6,10,6,6,5,8,6,8,7,13,7,7,5,8,5,6,6,10,6,8,13/2,11,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,9,9,17,19/2,10,8,12,8,10,19/2,17,10,12,21/2,18,25/2,18,18,34,35/2,18,12,18,10,12,10,18,10,11,8,13,8,11,11,20,11,11,8,12,15/2,9,8,14,8,9,7,11,8,11,11,20,11,11,8,11,13/2,8,7,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,17/2,12,12,20,10,10,15/2,10,6,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,17/2,12,12,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,9/2,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,5/2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,4,4,6,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,8,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11 -26,14,14,10,15,9,11,9,16,9,9,7,10,6,8,8,31/2,8,8,6,8,5,6,6,10,6,7,5,8,6,9,9,11,6,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,11,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,4,6,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,4,3,4,4,7,5,7,7,8,5,5,3,4,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,8,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,15/2,4,5,4,5,4,5,5,8,5,5,4,7,5,8,8,15,8,8,6,9,5,6,5,8,5,6,5,7,4,5,5,17/2,5,6,5,8,6,8,7,13,8,9,7,12,8,12,12,21,11,12,9,13,8,10,8,14,8,9,8,14,9,13,13,24,13,14,10,15,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,11,13,11,18,10,11,9,14,9,12,12,43/2,11,11,8,12,7,9,8,15,8,9,7,12,8,12,12,22,12,12,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,6,9,6,8,8,16,9,11,9,16,11,15,15,20,11,11,8,12,7,8,7,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,18,10,10,7,11,7,8,7,13,8,9,7,11,7,10,10,35/2,10,10,8,12,8,11,11,20,12,14,12,21,14,21,21,37,19,19,13,20,12,14,12,20,11,13,10,16,10,14,13,49/2,13,14,10,15,9,11,10,18,10,12,10,16,11,15,15,25,13,14,10,16,10,12,10,18,10,11,9,15,10,13,12,45/2,12,13,9,14,9,11,11,20,12,14,12,21,14,21,21,31,16,16,11,16,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,16,10,12,11,19,11,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,13,11,18,12,18,17,33,18,20,15,24,15,20,19,36,20,23,19,34,23,34,34,66,34,34,23,35,20,24,20,35,19,21,16,25,16,22,20,38,19,19,13,20,12,14,13,23,13,14,12,20,14,20,20,38,20,20,14,21,12,15,13,23,13,14,11,18,12,16,16,63/2,16,16,12,18,11,14,13,25,14,17,14,25,16,23,23,38,20,20,14,20,11,13,11,20,11,12,9,15,10,14,13,47/2,13,14,10,15,9,12,11,21,12,13,11,18,12,17,17,38,19,19,13,20,11,13,11,20,11,13,10,16,10,14,14,26,14,14,10,15,10,13,12,22,13,15,13,22,15,22,23,37,19,19,14,21,12,15,12,21,11,12,9,14,9,11,10,37/2,10,11,8,12,7,9,8,15,9,10,8,12,8,11,10,16,9,9,6,9,5,6,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,16,9,9,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,6,4,4,3,5,4,5,5,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,6,6,10,5,5,4,6,4,6,6,23/2,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,29/2,8,9,7,10,6,8,7,12,7,8,7,12,8,12,11,21 -14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,5,5,6,7/2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,5/2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,9/2,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,13/2,12,13/2,6,5,7,9/2,5,9/2,8,5,5,4,5,7/2,4,4,8,4,4,7/2,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,6,11/2,9,6,8,8,14,15/2,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,11/2,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,13/2,8,7,11,6,7,6,10,7,10,10,17,10,11,8,13,8,11,10,19,11,12,10,18,12,18,18,34,18,18,25/2,18,11,13,11,18,10,11,17/2,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,8,7,14,8,9,8,13,9,13,13,20,11,11,8,11,6,7,6,11,6,7,11/2,8,6,8,7,12,7,8,6,8,5,7,6,11,6,7,6,10,7,9,9,20,21/2,10,7,11,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,11/2,7,7,12,7,8,7,12,8,12,12,20,10,10,8,11,7,8,7,12,13/2,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,5/2,3,2,3,3,4,3,3,3,4,3,3,3,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,6,11 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,5,5,3,4,3,7/2,3,7,4,5,4,5,4,5,5,6,4,7/2,2,4,3,3,3,4,3,7/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,4,4,6,4,11/2,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,4,3,6,4,7/2,2,3,2,7/2,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,3,4,3,9/2,5,9,5,5,4,5,3,7/2,3,4,3,3,3,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,7,5,13/2,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,15/2,6,9,6,7,6,12,7,8,7,12,8,12,12,22,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,11/2,5,9,5,11/2,4,6,4,6,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,11/2,4,6,4,5,5,10,6,6,5,9,6,9,8,11,6,7,5,7,4,5,5,8,5,5,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,5,4,6,5,7,7,11,6,13/2,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,13/2,6,12,7,17/2,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,13/2,6,9,6,17/2,8,15,8,17/2,6,10,6,7,6,10,6,7,6,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,19/2,6,10,6,7,6,11,6,6,5,8,6,15/2,8,13,7,8,6,8,5,13/2,6,11,6,15/2,6,10,7,21/2,11,19,10,21/2,8,12,7,17/2,8,12,7,15/2,6,10,7,11,11,18,10,11,9,13,8,23/2,11,20,11,13,11,19,13,39/2,20,36,19,19,13,19,11,13,11,19,10,23/2,9,14,9,12,11,21,11,11,8,12,7,17/2,8,13,8,17/2,7,11,8,11,11,22,12,23/2,8,12,7,9,7,14,8,9,7,10,7,10,10,18,10,10,7,11,7,17/2,8,15,9,10,8,14,10,14,14,22,12,12,8,12,7,8,7,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,7,11,6,15/2,6,10,7,10,10,22,12,23/2,8,11,7,8,7,12,7,7,6,10,6,17/2,8,14,8,17/2,6,8,6,15/2,7,12,7,9,8,12,8,25/2,13,21,11,11,8,12,7,17/2,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,13/2,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,7/2,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,7/2,4,6,3,3,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,7,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,-1/2,0,0,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,4,3,3,3,4,3,3,3,4,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,9/2,4,8,5,5,4,5,4,9/2,4,7,4,5,4,7,5,15/2,7,12 -11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,5,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,9/2,7,5,6,5,9,11/2,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,6,4,4,7/2,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,9/2,5,4,6,5,7,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,4,5,5,9,11/2,6,5,9,13/2,10,10,16,17/2,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,14,8,8,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,11/2,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,6,8,8,14,8,8,13/2,10,13/2,9,8,14,8,10,8,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,10,7,9,17/2,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,17/2,8,6,9,11/2,7,11/2,10,6,7,5,8,6,8,7,13,7,8,11/2,8,5,6,6,11,7,8,6,10,15/2,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,9/2,6,4,5,5,8,5,6,5,8,11/2,8,8,16,17/2,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,6,4,6,5,9,6,7,6,10,7,10,10,16,9,9,13/2,10,6,6,5,10,11/2,6,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,5/2,3,3,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,7/2,5,3,4,7/2,6,4,6,6,10 -18,10,10,7,19/2,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,11/2,4,4,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,6,4,11/2,4,5,5,8,5,5,4,13/2,4,6,6,11,6,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7/2,3,4,5,7,4,4,3,9/2,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,7/2,2,3,3,5,3,4,3,9/2,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,7/2,3,4,4,5,3,4,3,4,3,3,3,7,4,5,4,13/2,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,11/2,4,4,4,6,4,4,3,9/2,4,5,5,8,5,5,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,9,6,8,8,16,9,9,7,21/2,7,9,8,15,9,10,8,27/2,10,14,14,26,13,13,9,13,8,9,8,13,7,8,6,19/2,6,8,8,15,8,8,6,15/2,5,6,6,9,5,6,5,15/2,5,7,7,14,8,8,6,15/2,5,6,5,9,5,6,5,15/2,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,13,7,7,5,8,5,7,6,10,6,6,4,13/2,4,6,6,9,5,5,4,13/2,4,4,4,7,5,6,5,15/2,5,7,7,13,7,7,5,15/2,5,6,6,11,6,7,6,9,6,8,7,11,6,7,5,8,5,7,7,15,9,10,8,29/2,10,15,15,25,13,14,10,29/2,8,9,8,14,8,9,7,21/2,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,19/2,7,10,10,17,9,10,7,21/2,6,8,7,13,7,8,6,10,6,8,8,16,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,22,12,12,8,11,7,9,8,13,7,8,6,9,6,9,9,15,8,9,6,19/2,6,8,7,14,8,9,7,12,8,12,12,22,12,12,9,14,8,10,9,14,8,9,8,13,9,12,12,22,12,12,10,31/2,10,13,12,22,13,15,13,22,15,23,23,43,22,22,15,45/2,13,16,14,23,12,13,10,33/2,10,14,13,24,12,12,8,25/2,8,10,9,15,8,9,8,25/2,8,12,12,25,13,14,10,27/2,8,10,8,16,9,10,8,13,9,12,11,21,11,11,8,12,8,10,9,17,10,11,10,33/2,11,16,16,27,14,14,10,29/2,9,11,9,16,9,9,7,23/2,8,10,10,16,9,9,7,21/2,6,8,7,13,8,9,8,25/2,8,12,12,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,8,15,9,10,9,31/2,11,16,16,26,14,14,10,31/2,9,10,8,15,8,9,7,10,7,9,8,13,7,8,6,8,5,7,6,10,6,6,5,15/2,6,8,7,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,3,9,5,5,4,9/2,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,6,6,13,7,7,5,7,4,4,3,5,3,3,3,9/2,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,9/2,3,4,4,11,6,7,5,15/2,5,6,5,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,16 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,9,11/2,6,5,9,13/2,10,19/2,16,9,9,6,9,5,6,5,9,5,6,5,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,11/2,8,8,14,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,17/2,10,9,15,8,9,7,10,7,9,17/2,15,8,8,6,8,5,7,6,10,11/2,6,5,8,6,8,8,16,17/2,9,6,9,11/2,7,11/2,10,6,6,5,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,7,5,6,6,11,6,6,5,7,9/2,6,5,9,11/2,6,6,10,7,10,10,17,9,9,7,10,6,6,5,10,11/2,6,5,6,9/2,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,6,3,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,6,7/2,4,3,4,3,4,7/2,6,4,4,7/2,6,4,6,6,11 -15,8,17/2,6,8,5,11/2,5,8,5,11/2,4,7,5,6,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,2,4,3,3,3,6,4,7/2,2,4,3,3,3,5,4,9/2,4,6,4,6,5,10,6,11/2,4,5,3,3,3,6,4,4,3,4,3,4,3,5,3,7/2,3,4,3,4,4,6,4,4,4,6,4,13/2,7,14,8,15/2,5,7,4,11/2,5,8,5,6,5,7,5,13/2,7,14,8,8,6,9,6,7,7,13,8,9,7,11,8,12,12,21,11,23/2,8,12,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,7,5,6,4,6,5,8,5,5,5,7,5,13/2,6,12,6,6,4,6,4,5,4,7,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,5,11/2,5,8,5,7,7,11,6,13/2,5,7,5,6,5,7,4,4,3,6,4,9/2,4,9,5,5,4,6,4,9/2,4,7,4,5,4,7,5,13/2,6,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,8,5,7,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,25/2,12,22,12,23/2,8,12,7,15/2,7,12,7,15/2,6,8,6,15/2,7,14,8,8,6,9,5,6,6,10,6,13/2,6,8,6,17/2,8,15,8,9,6,10,6,7,6,10,6,13/2,5,8,5,7,6,13,7,13/2,5,8,5,6,6,11,7,8,7,12,8,23/2,12,20,11,11,7,10,6,7,6,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,8,5,13/2,6,11,7,8,6,10,7,21/2,10,19,10,10,8,12,7,8,7,12,7,15/2,6,11,7,10,10,19,10,11,8,12,8,21/2,10,18,10,25/2,11,19,13,19,19,36,19,19,13,20,12,27/2,12,20,11,12,9,14,9,12,11,19,10,21/2,8,10,7,9,8,13,7,8,7,11,8,11,11,21,11,11,8,12,7,9,7,14,8,17/2,6,10,7,9,9,16,9,19/2,7,10,6,8,7,14,8,9,8,14,10,27/2,14,24,12,25/2,9,14,8,10,8,13,7,15/2,6,10,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,12,8,21/2,10,20,10,21/2,8,11,7,8,7,11,6,13/2,5,9,6,8,7,14,8,17/2,6,9,6,8,7,12,7,8,7,13,9,13,13,24,12,25/2,9,13,7,8,7,13,7,8,6,8,6,15/2,7,10,6,6,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,4,3,4,3,5,3,5/2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,7,4,4,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,5,3,5/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,3,4,4,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,4,3,4,3,7/2,4,5,3,4,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,4,9,5,5,4,6,4,4,4,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,8,6,8,8,15 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,5/2,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,6,4,5,5,8,5,5,9/2,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,9/2,6,4,6,5,8,5,5,9/2,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,9/2,6,4,6,5,9,5,6,9/2,7,5,6,6,10,6,6,5,7,5,7,7,12,7,8,7,11,8,12,12,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,13/2,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,7,10,19/2,18,10,10,15/2,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,11,18,10,10,7,10,13/2,8,7,12,7,8,7,11,8,11,10,19,10,10,7,11,13/2,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,13,15/2,9,8,13,9,12,13,23,12,12,9,13,8,9,8,12,7,8,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,4,5/2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,3/2,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,7/2,5,4,5,5,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,7,7,14 -27,14,14,10,16,9,11,9,31/2,8,9,7,10,6,8,8,17,9,9,7,10,6,7,6,10,6,7,5,8,6,9,9,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,13,7,8,6,8,5,6,6,21/2,6,7,5,8,5,7,7,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,9/2,3,3,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,3,3,5,3,3,3,6,4,4,3,4,3,4,4,15/2,4,5,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,9,16,9,9,6,8,5,6,6,19/2,6,6,4,6,4,6,6,10,6,6,5,7,5,6,6,19/2,6,7,6,11,8,11,11,23,12,12,8,12,8,10,8,29/2,8,10,8,12,8,12,11,25,13,14,11,17,10,13,12,43/2,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,8,11,6,7,6,11,6,7,5,8,6,9,9,16,9,9,7,10,6,8,8,29/2,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,7,11,8,11,11,19,10,11,8,11,7,9,9,16,9,9,7,11,7,10,10,18,10,11,9,14,9,13,12,22,13,15,13,23,16,23,22,39,20,20,13,19,11,14,12,20,11,11,8,13,9,12,11,24,13,13,9,14,8,10,10,35/2,10,11,9,15,10,14,14,27,14,14,10,15,9,12,10,18,10,10,7,11,7,10,10,20,11,12,9,14,9,11,10,18,11,13,11,18,13,19,19,35,18,17,12,17,10,12,10,18,10,10,8,13,9,12,12,22,12,13,10,15,9,11,10,18,10,12,10,17,12,17,17,35,18,18,13,20,12,15,13,23,13,14,11,18,12,17,17,34,18,19,15,24,15,19,18,67/2,19,23,19,34,23,33,33,64,33,33,23,34,19,23,20,35,19,21,16,25,16,22,20,34,17,17,12,18,11,14,13,47/2,13,15,12,20,13,19,19,36,19,19,13,20,12,14,12,45/2,12,14,10,16,11,15,14,28,15,16,11,17,10,13,12,23,13,15,13,22,15,23,23,44,23,23,16,24,14,16,14,47/2,12,13,10,16,10,14,14,25,13,14,10,15,9,12,11,41/2,12,14,11,18,12,18,18,36,19,19,13,18,10,12,11,19,10,11,8,13,9,12,12,26,14,15,11,17,11,14,12,22,13,15,13,23,16,23,22,43,22,22,15,21,12,15,12,43/2,12,12,9,13,9,12,11,18,10,10,7,11,7,8,8,14,8,8,7,11,7,10,10,19,10,9,6,9,6,7,6,9,5,5,4,5,4,5,5,7,4,5,4,6,4,4,4,15/2,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,5/2,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,6,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,2,2,4,3,3,3,11/2,4,4,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,5,8,5,5,4,5,4,5,5,10,5,5,3,4,3,4,4,11/2,3,3,3,4,3,5,5,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,26 -15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,7,13/2,12,13/2,7,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,10,11/2,6,4,6,4,5,9/2,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,5,9,5,6,4,7,5,6,6,11,6,6,5,8,5,7,7,13,8,9,8,13,9,13,13,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,11/2,7,6,10,6,6,9/2,7,9/2,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,11/2,7,6,10,6,7,6,10,7,10,10,20,10,10,15/2,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,9,14,9,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,13,11,20,11,12,9,14,9,12,11,19,10,10,7,10,13/2,8,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,9,6,9,8,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,25,13,13,9,14,8,9,8,14,15/2,8,6,10,6,8,8,14,8,8,6,9,11/2,7,7,12,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,11/2,7,7,15,8,9,7,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,7,9,15/2,12,7,7,5,8,5,7,7,10,6,6,9/2,6,4,5,5,8,5,5,4,7,9/2,6,6,11,6,5,4,5,7/2,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1/2,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,7/2,4,4,5,4,6,11/2,11,6,6,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,7/2,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,9/2,8,5,5,5,8,11/2,8,8,15 -18,10,19/2,7,10,6,7,6,11,6,13/2,5,7,5,13/2,6,12,6,13/2,5,6,4,9/2,4,7,4,5,4,6,4,6,6,9,5,5,4,4,3,4,4,6,4,4,3,4,3,9/2,5,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,11,6,6,4,5,4,9/2,4,5,3,7/2,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,5,3,7/2,2,5,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,6,4,7/2,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,13/2,6,10,6,6,4,6,4,9/2,4,7,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,4,4,7,4,11/2,5,8,6,15/2,8,15,8,8,6,8,5,7,6,10,6,13/2,6,8,6,8,8,16,9,10,7,11,7,10,9,14,8,19/2,8,14,10,29/2,14,26,14,27/2,10,14,8,19/2,8,14,8,9,7,11,7,17/2,8,15,8,17/2,6,8,5,6,6,9,6,13/2,5,8,5,7,7,13,7,8,6,8,5,11/2,5,8,4,9/2,4,6,4,6,6,10,6,6,5,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,15,8,17/2,6,8,5,6,5,8,5,5,4,6,4,5,5,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,7,5,8,8,14,8,15/2,6,8,5,6,6,11,6,13/2,5,8,6,15/2,8,13,7,15/2,6,10,6,8,8,15,9,21/2,9,16,11,15,15,26,14,27/2,9,14,8,19/2,8,14,8,8,6,9,6,17/2,8,15,8,17/2,6,9,6,15/2,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,15/2,7,12,7,7,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,24,12,12,8,12,7,17/2,8,12,7,15/2,6,9,6,17/2,8,15,8,17/2,6,10,6,8,7,12,7,17/2,7,11,8,23/2,12,23,12,25/2,9,13,8,19/2,8,16,9,10,8,13,8,23/2,12,23,12,27/2,10,16,10,13,12,22,13,31/2,13,22,15,22,22,43,22,22,15,22,13,15,13,23,13,14,11,17,11,14,13,23,12,12,8,12,8,10,9,16,9,21/2,8,14,9,13,13,24,13,27/2,10,14,8,10,9,16,9,19/2,7,11,7,10,10,18,10,10,8,12,8,19/2,9,16,9,21/2,9,15,10,31/2,16,31,16,16,11,16,9,11,10,16,9,19/2,8,12,8,10,10,17,9,19/2,7,10,6,17/2,8,14,8,9,7,12,8,25/2,12,24,12,25/2,8,12,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,21/2,9,16,11,31/2,15,29,15,29/2,10,15,9,21/2,9,15,8,8,6,9,6,17/2,8,12,7,7,5,7,4,11/2,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,4,3,4,3,7,4,4,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,13/2,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,7/2,4,7,4,7/2,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,9,5,5,4,6,4,9/2,4,7,4,4,3,5,4,9/2,4,8,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,17 -15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,11/2,10,11/2,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,9/2,5,7/2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,9/2,9,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,5/2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,11/2,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,9/2,6,7,13,7,7,5,7,9/2,6,5,8,5,5,5,7,5,7,7,14,8,8,6,9,6,8,15/2,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,8,5,5,5,7,5,7,7,13,7,8,11/2,7,9/2,5,5,7,4,4,7/2,5,4,5,5,9,5,6,4,6,4,5,9/2,8,9/2,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,9,5,6,4,7,5,6,13/2,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,22,12,12,8,12,7,8,7,11,13/2,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,15/2,11,11,20,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,11/2,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,17/2,14,17/2,11,10,18,21/2,12,11,18,12,18,18,35,18,18,25/2,18,11,13,11,19,11,12,9,14,9,12,11,19,10,10,7,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,15,8,9,7,10,13/2,8,8,14,8,9,8,13,9,13,13,26,14,14,19/2,14,8,9,8,14,8,8,13/2,10,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,10,10,20,10,10,7,10,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,15/2,9,8,12,7,7,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,9/2,7,5,7,13/2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,12,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,7/2,6,7/2,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,4,5,9/2,8,11/2,8,8,15 -25,13,14,10,29/2,8,10,8,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,10,6,6,5,8,6,9,9,13,7,8,6,15/2,5,6,6,8,5,6,5,7,5,7,6,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,15/2,5,6,5,9,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,5,3,3,3,5,3,4,4,4,3,3,3,11/2,4,6,6,10,5,5,4,5,3,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,15/2,5,7,7,12,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,6,5,17/2,6,9,9,14,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,6,10,6,6,4,13/2,4,6,6,10,6,7,6,21/2,8,12,12,23,12,12,8,12,7,9,8,13,8,9,8,25/2,8,12,12,24,13,13,10,31/2,10,13,12,22,12,14,12,21,14,21,21,39,20,20,14,41/2,12,15,13,21,11,12,10,31/2,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,23/2,8,10,10,19,10,10,8,23/2,7,8,7,12,7,7,5,8,6,8,8,15,8,8,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,13,9,13,8,9,8,12,7,7,6,9,6,8,8,16,8,8,6,19/2,6,8,7,13,7,8,6,21/2,7,10,11,21,11,11,8,23/2,7,9,8,16,9,9,7,11,8,11,11,20,11,12,9,14,9,12,11,20,12,14,12,43/2,14,21,21,40,20,20,14,39/2,12,14,12,19,10,11,8,27/2,9,12,12,21,11,12,8,25/2,8,10,9,16,9,11,9,29/2,10,14,14,24,13,14,10,29/2,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,27/2,8,10,9,18,10,12,10,37/2,12,18,18,35,18,18,12,37/2,10,12,10,19,10,11,9,14,9,12,12,22,12,13,9,14,9,11,10,17,10,11,10,33/2,11,16,16,33,17,18,12,18,11,14,12,23,13,14,11,37/2,12,17,17,34,18,19,14,47/2,15,20,18,32,18,21,18,32,22,32,32,62,32,32,22,65/2,19,23,20,33,18,19,15,24,15,20,19,34,18,18,13,39/2,12,16,14,24,14,16,13,43/2,14,19,19,36,19,19,14,41/2,12,14,12,22,12,13,10,15,10,14,14,27,14,15,11,35/2,11,14,13,24,14,17,14,24,16,23,23,46,24,24,16,49/2,14,17,14,24,13,14,11,17,11,15,14,26,14,14,10,29/2,9,12,11,20,11,13,10,17,12,17,17,35,18,18,12,35/2,10,12,10,20,11,11,8,27/2,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,23,15,22,22,43,22,22,15,43/2,12,15,13,21,11,12,9,27/2,9,12,11,18,10,10,7,21/2,6,8,7,13,8,9,8,25/2,8,12,11,19,10,10,7,21/2,6,8,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,4,4,8,5,5,4,6,4,5,5,10,6,6,4,13/2,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,9/2,3,4,4,4,3,3,3,9/2,3,4,5,8,5,5,3,4,3,3,3,6,4,4,3,3,2,2,2,5,3,3,3,9/2,3,4,3,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,7/2,2,3,3,7,4,4,3,9/2,2,2,2,5,3,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,7/2,3,4,3,6,4,4,4,11/2,4,5,5,7,4,5,4,11/2,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,9,20,10,10,7,9,6,7,6,10,6,6,4,13/2,4,6,5,8,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,12,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,6,12,7,8,6,10,7,9,8,12,7,8,7,25/2,9,14,14,26 -17,9,10,7,10,6,7,6,11,6,7,11/2,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,9/2,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,6,6,9,11/2,6,11/2,8,6,8,8,16,9,9,7,10,7,9,8,15,9,10,9,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,8,5,6,6,9,11/2,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,7,5,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,7,15/2,15,8,8,6,8,5,6,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,10,6,8,7,11,6,7,5,8,11/2,7,7,12,7,7,6,9,6,7,6,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,22,12,12,17/2,13,8,10,8,15,9,10,8,12,8,12,12,23,12,13,10,16,10,13,12,21,12,14,12,22,15,22,22,42,22,22,15,22,13,15,13,22,12,13,10,16,10,14,13,23,12,13,9,14,17/2,11,10,16,19/2,11,9,14,19/2,13,13,24,13,13,9,14,8,9,8,15,8,9,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,12,10,16,11,16,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,17,9,10,7,11,7,10,9,16,9,11,9,16,21/2,15,15,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,11/2,6,5,8,6,8,8,13,7,7,5,7,9/2,6,9/2,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,3,2,2,2,4,3,3,7/2,6,7/2,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,9,5,6,5,9,7,10,10,18 -25,13,14,10,15,9,10,9,16,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,11/2,4,7,5,7,6,12,7,7,5,7,4,11/2,5,8,5,6,5,8,6,15/2,8,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,8,5,5,4,6,4,9/2,4,6,4,9/2,3,4,3,4,4,9,5,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,5,4,5,3,4,4,7,4,4,3,4,3,7/2,4,7,4,4,3,5,4,9/2,4,8,5,11/2,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,13/2,5,8,5,6,5,10,6,6,5,9,6,17/2,8,14,8,8,6,9,6,13/2,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,11/2,5,9,6,13/2,6,10,7,11,11,21,11,11,8,11,7,9,8,13,8,9,8,12,8,12,12,23,12,27/2,10,15,10,25/2,12,23,13,15,13,21,14,43/2,22,40,21,21,14,21,12,29/2,12,21,12,13,10,16,10,27/2,12,22,12,12,9,12,7,17/2,8,13,8,17/2,7,11,7,10,10,18,10,10,7,10,6,7,6,12,7,8,6,9,6,8,8,14,8,8,6,9,6,15/2,7,12,7,9,7,12,8,12,12,23,12,25/2,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,17/2,7,12,8,11,11,22,12,12,8,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,27/2,12,21,14,41/2,20,40,20,41/2,14,20,12,27/2,12,20,11,11,9,14,9,12,11,21,11,12,9,14,8,21/2,9,17,10,21/2,8,14,10,27/2,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,18,10,11,8,12,8,19/2,9,17,10,12,10,18,12,35/2,18,34,17,17,12,18,10,12,10,19,10,23/2,9,14,9,13,13,24,13,27/2,10,15,9,11,10,18,10,23/2,10,17,12,17,17,32,17,35/2,12,19,11,27/2,12,22,12,27/2,11,18,12,17,17,33,18,19,14,23,14,37/2,17,31,18,43/2,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,39/2,15,24,15,20,19,34,18,19,13,20,12,31/2,14,24,14,31/2,12,21,14,39/2,19,36,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,29/2,14,24,14,17,14,23,16,23,23,46,24,47/2,16,24,14,17,14,25,14,15,11,17,11,15,14,26,14,14,10,15,9,12,11,20,11,25/2,10,18,12,35/2,18,35,18,18,12,18,10,12,11,19,10,23/2,9,14,9,13,13,25,13,27/2,10,16,10,14,13,23,13,31/2,13,23,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,23/2,11,19,10,21/2,8,12,7,17/2,8,14,8,9,7,12,8,23/2,11,20,10,10,7,10,6,15/2,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,7/2,4,5,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,6,4,7/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,5,5,9,5,11/2,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,11,8,21/2,10,19,10,10,7,10,6,7,6,10,6,11/2,4,6,4,11/2,5,8,5,5,4,5,3,7/2,3,6,4,4,3,6,4,11/2,6,12,7,7,5,7,4,11/2,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,17/2,8,14,10,27/2,14,26 -25,13,14,10,15,9,10,9,16,9,10,7,11,7,10,9,16,8,8,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,9/2,7,5,7,13/2,12,7,7,5,7,9/2,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,9,11/2,6,11/2,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,11,7,9,8,14,8,9,8,12,8,12,12,23,12,13,10,15,10,13,12,23,13,15,13,21,29/2,22,22,41,21,21,14,21,12,14,12,21,12,13,10,16,10,13,12,22,12,12,9,12,7,8,15/2,13,15/2,8,7,11,7,10,10,18,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,15/2,8,7,12,8,11,11,22,12,12,17/2,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,40,21,21,14,20,12,14,12,20,11,12,9,14,9,12,11,21,11,12,9,14,8,10,9,17,10,11,9,14,10,14,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,19,10,11,8,12,8,10,9,17,10,12,10,18,12,18,17,33,17,17,12,17,10,12,11,19,21/2,12,9,15,10,13,13,24,13,14,10,15,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,19,11,14,12,21,12,13,11,18,12,17,17,33,18,19,14,22,14,18,17,31,18,22,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,19,29/2,23,29/2,19,18,34,18,19,13,20,12,15,14,24,14,16,25/2,21,14,20,19,37,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,14,27/2,24,14,16,14,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,11,18,11,15,14,26,14,14,10,15,9,12,11,20,11,12,10,18,12,18,18,34,18,18,12,18,10,12,11,19,21/2,12,9,14,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,22,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,12,11,20,21/2,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,15/2,11,13/2,8,6,10,6,6,9/2,7,4,5,5,8,9/2,5,4,6,4,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,9,8,14,10,14,14,26 -50,26,27,19,28,16,20,17,30,16,18,13,21,13,18,17,31,16,16,11,16,10,12,10,18,10,11,9,16,10,14,14,27,14,15,10,15,9,11,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,10,9,16,9,11,9,16,10,14,14,27,14,14,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,13,7,7,5,8,5,7,7,12,7,7,5,8,6,8,8,14,8,9,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,12,8,11,11,21,11,12,9,14,9,11,10,18,10,12,10,16,11,15,15,28,15,15,11,17,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,8,10,10,18,11,13,11,20,14,21,21,41,21,21,15,22,13,17,15,27,15,17,14,24,16,23,23,44,23,25,19,30,19,25,23,44,25,29,24,42,28,42,42,82,41,41,27,40,23,28,23,41,22,24,18,30,19,25,23,44,23,23,16,24,14,16,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,17,11,16,15,28,15,15,11,18,11,14,13,23,13,15,13,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,12,20,13,18,17,32,17,17,12,18,11,15,14,25,14,16,13,22,15,21,21,42,22,23,16,25,15,18,16,28,15,17,13,22,15,22,21,41,22,23,17,27,17,22,21,39,22,26,22,39,27,40,40,80,41,41,27,40,22,26,22,39,21,23,17,28,17,23,22,42,22,23,17,26,16,20,18,32,18,21,17,28,18,26,25,48,25,26,18,27,16,20,17,31,17,18,14,24,15,20,19,37,20,21,15,24,15,19,17,32,19,23,19,34,23,34,33,65,33,33,22,33,19,24,21,37,20,22,17,29,19,26,25,47,25,26,18,28,17,21,19,34,19,22,19,33,22,32,32,62,32,33,23,36,21,26,23,41,22,25,20,34,23,33,33,64,34,36,27,43,26,35,33,62,35,42,35,62,42,62,62,123,62,62,42,62,35,43,36,65,34,37,28,45,28,37,35,67,35,36,26,40,23,29,26,48,26,30,24,41,27,38,37,73,37,38,26,38,22,26,22,40,22,24,19,31,20,28,27,52,27,29,21,34,21,28,26,48,27,31,26,46,31,45,45,89,45,46,31,47,27,33,28,49,26,28,21,35,22,30,28,52,27,27,19,29,18,23,21,38,21,24,20,34,23,34,34,67,34,35,24,36,20,24,20,36,20,22,17,27,18,26,25,48,25,26,19,31,19,26,24,46,26,30,25,43,29,43,43,85,43,43,29,43,24,29,24,43,23,24,18,28,17,22,21,39,20,21,15,23,14,17,15,26,15,17,14,24,16,22,21,41,21,21,14,21,12,14,11,19,10,11,8,13,8,9,8,15,8,9,7,10,6,8,7,11,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,10,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,8,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,10,10,18,11,13,11,20,13,19,19,37,19,20,14,20,12,14,12,20,11,11,8,12,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,13,8,11,10,17,10,11,9,14,9,12,12,22,12,14,11,17,11,15,14,26,15,17,15,26,18,26,26,50 +50,26,26,18,26,15,18,16,29,16,17,13,20,13,17,16,30,16,16,11,15,9,12,10,18,10,11,8,13,9,12,12,24,12,12,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,7,12,7,9,8,14,9,13,13,26,14,15,11,18,12,16,15,29,17,20,17,29,19,28,28,55,28,29,20,29,16,19,16,27,15,16,12,18,12,16,15,29,15,14,10,14,9,11,9,16,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,7,7,12,7,7,5,8,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,11,10,18,10,10,8,12,8,12,11,21,11,12,9,13,8,10,9,17,10,12,10,18,12,17,17,33,17,17,12,18,11,13,11,20,11,13,10,16,11,15,15,29,16,17,13,20,13,18,17,32,18,21,18,32,22,33,33,66,33,33,23,34,19,23,19,34,18,20,16,27,17,23,22,43,23,24,17,26,15,19,17,31,17,20,16,28,19,27,27,52,27,27,19,28,16,19,16,28,15,17,13,21,14,19,18,33,18,19,14,23,14,18,17,32,18,21,17,30,20,30,30,59,30,31,21,31,18,21,18,31,17,18,13,21,13,17,16,29,15,15,10,15,9,11,10,17,10,11,9,16,11,15,15,28,15,15,10,14,9,11,9,16,9,10,8,14,9,13,12,23,12,13,10,16,10,14,14,26,15,19,16,29,20,29,29,56,29,29,20,30,17,21,17,30,17,19,15,24,15,21,20,39,20,21,14,21,13,16,14,26,15,17,14,24,16,23,23,44,23,23,16,24,14,18,16,30,17,19,16,28,19,27,26,51,27,28,21,33,21,28,27,51,29,34,28,50,34,50,50,98,50,50,34,51,29,36,31,56,30,33,25,40,26,36,34,66,35,37,27,42,25,33,30,57,32,37,31,55,37,54,54,107,54,55,38,59,34,42,37,68,37,42,33,57,37,53,52,102,53,57,42,69,42,57,53,102,57,68,56,100,67,100,100,199,100,100,67,101,57,68,57,102,53,57,43,70,43,58,54,104,53,55,39,60,35,44,39,73,40,46,36,62,40,58,56,110,56,56,39,59,34,42,36,64,34,38,29,47,30,42,40,76,39,41,29,46,27,35,32,59,33,38,31,54,36,54,54,106,54,54,36,54,30,36,30,52,28,30,23,37,23,31,29,55,28,29,21,32,19,25,23,42,23,26,21,37,25,36,35,68,35,35,24,36,21,26,23,41,22,24,19,32,20,28,26,50,26,27,19,30,18,24,23,43,24,28,23,40,26,38,37,72,37,37,25,38,22,26,22,39,21,23,17,28,17,23,21,40,21,21,15,22,13,17,15,27,15,17,14,23,15,21,20,39,20,21,14,21,13,16,15,27,15,17,14,23,15,21,20,39,20,21,16,25,16,21,20,37,21,25,21,38,26,39,39,76,39,39,26,39,23,28,24,42,23,25,19,32,21,30,29,55,29,30,22,34,20,26,24,44,24,28,23,39,26,37,37,72,37,37,26,40,23,28,25,45,24,27,21,36,23,33,32,62,32,34,25,41,25,34,32,60,34,41,34,61,41,61,62,123,62,62,42,63,35,42,35,63,33,35,26,43,27,37,34,65,33,34,24,37,22,27,24,43,24,27,21,36,24,34,33,65,33,34,24,36,21,25,21,38,21,23,18,29,18,25,24,46,24,26,19,29,18,23,21,38,22,26,21,37,25,37,37,73,37,36,24,36,21,25,21,38,20,22,17,29,18,25,24,46,24,24,17,27,16,21,19,34,19,21,17,28,19,27,26,51,26,27,18,27,16,19,16,29,16,17,13,21,14,19,18,35,19,20,14,22,14,18,17,31,18,21,18,31,22,33,33,65,33,32,22,32,18,21,18,32,17,19,15,24,15,21,19,36,19,19,13,19,11,14,13,23,13,15,12,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,19,10,11,8,12,7,9,9,16,9,10,9,15,10,15,15,28,15,16,12,20,13,17,15,28,16,19,16,27,18,26,26,50 +25,13,14,10,13,8,9,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,14,14,28,14,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,5,8,5,6,5,8,5,5,4,7,4,6,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,10,9,16,10,11,10,16,11,17,17,34,17,17,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,15,11,16,9,11,9,16,9,10,8,13,8,11,11,20,11,11,8,11,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,26,14,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,16,17,13,21,13,18,17,34,18,19,14,21,13,17,16,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,29,19,27,26,51,27,29,22,35,22,29,27,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,27,29,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,30,17,21,18,32,17,19,15,24,15,21,20,38,20,21,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,19,13,18,18,34,18,18,13,18,11,13,12,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,19,13,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,11,7,8,8,14,8,9,8,12,8,11,11,20,11,11,8,13,8,11,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,28,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,19,14,21,12,15,13,23,13,14,11,18,12,17,16,32,17,18,13,21,13,18,17,30,17,21,18,31,21,31,31,62,32,32,22,32,18,21,18,32,17,18,14,22,14,19,18,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,17,33,17,18,12,19,11,13,11,19,11,12,9,15,10,13,13,24,13,14,10,15,9,12,11,19,11,14,11,19,13,19,19,37,19,19,13,19,11,13,11,20,11,12,9,15,10,13,13,23,12,12,9,14,8,11,10,17,10,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,11,8,10,10,18,10,10,7,12,8,10,9,16,10,11,10,16,11,17,17,33,17,17,12,17,10,11,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +25,13,14,10,13,8,9,8,15,8,8,6,10,7,9,9,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,28,14,14,10,16,9,11,9,14,8,8,6,10,7,9,9,15,8,8,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,8,6,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,31,16,16,11,16,10,12,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,16,11,16,10,12,10,16,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,25,13,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,15,16,12,21,13,18,17,34,18,19,14,21,13,17,15,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,28,19,27,26,51,27,28,21,35,22,30,28,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,28,30,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,29,17,21,18,32,17,18,14,24,15,21,20,38,20,20,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,18,12,18,18,34,18,18,13,18,11,13,11,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,20,14,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,11,7,8,8,15,9,10,8,12,8,11,11,20,11,12,9,13,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,29,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,20,14,21,12,15,13,24,13,14,11,18,12,17,16,32,17,18,14,21,13,18,17,30,17,20,17,31,21,31,31,61,31,32,22,32,18,21,18,31,17,18,14,22,14,18,17,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,18,33,17,18,12,19,11,13,11,19,11,12,9,15,10,14,13,24,13,14,10,15,9,12,11,19,11,14,12,19,13,19,19,38,20,20,13,19,11,14,12,20,11,12,9,15,10,14,13,23,12,12,9,14,8,10,9,17,10,12,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,12,8,10,9,17,10,12,10,16,11,17,17,33,17,17,12,17,10,12,10,17,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,9,13,13,25 +17,9,10,7,9,6,7,6,10,6,6,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,6,9,6,6,5,7,5,7,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,11,6,8,6,11,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,20,10,11,8,11,7,8,7,11,6,7,6,9,6,8,7,14,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,17,33,17,17,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,10,14,9,12,10,19,11,13,11,19,13,19,19,36,19,19,14,20,12,15,13,24,13,15,12,19,13,18,18,34,18,19,14,24,15,20,19,34,20,23,20,35,23,34,34,67,34,34,23,34,20,23,20,35,19,20,15,24,15,20,19,36,18,19,14,20,12,15,14,25,14,16,13,22,14,20,20,37,19,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,14,10,16,10,12,11,20,12,13,11,19,13,19,18,36,19,19,13,18,11,13,11,17,10,11,8,13,8,11,10,19,10,10,8,11,7,9,8,15,8,10,8,12,8,12,12,23,12,12,9,12,8,9,8,14,8,9,7,11,7,9,9,18,10,10,7,11,7,8,8,15,8,10,8,14,10,14,13,25,13,13,9,14,8,10,8,13,8,8,6,10,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,7,13,8,9,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,10,20,10,11,8,12,8,10,8,15,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,16,9,10,8,12,8,12,11,21,12,12,10,15,9,12,11,20,12,14,12,21,14,21,21,41,21,22,15,22,12,14,12,21,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,8,9,8,12,8,12,12,22,12,12,8,13,8,9,8,13,8,8,6,10,7,9,9,17,9,9,7,10,6,8,8,13,8,9,8,13,9,13,13,26,14,14,9,13,8,10,8,14,8,9,7,10,7,10,9,16,9,9,6,9,6,7,6,12,7,8,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,7,5,8,5,7,6,12,7,8,7,11,8,12,12,22,12,12,8,12,7,9,7,12,7,8,6,8,6,7,7,13,7,7,5,7,4,6,5,8,5,6,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,4,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,6,6,10,6,6,6,10,7,9,9,17 +26,13,13,9,14,8,10,9,15,8,8,6,9,6,9,8,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,7,5,7,7,13,7,7,5,8,6,8,8,14,8,10,9,15,10,14,14,28,15,15,11,16,9,10,8,13,8,9,7,11,7,9,9,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,12,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,16,11,17,17,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,12,21,11,11,8,12,7,9,8,17,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,17,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,13,7,6,4,6,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,8,6,8,7,14,8,10,9,15,10,15,15,29,15,16,11,16,9,11,10,15,8,9,7,12,8,10,10,20,11,11,8,12,7,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,25,13,14,10,16,10,14,13,25,14,17,15,26,17,25,25,49,25,25,17,26,15,18,15,29,16,17,13,21,13,18,17,34,18,18,13,21,13,17,15,28,16,19,16,28,19,29,29,53,27,28,20,30,18,22,19,35,19,21,17,28,19,27,26,50,27,29,22,35,22,29,27,51,29,34,29,52,35,51,50,100,51,51,34,51,29,35,29,53,28,30,22,36,23,31,29,53,27,28,20,30,18,22,20,38,21,23,19,32,21,30,29,55,28,28,19,29,17,20,17,32,17,18,14,22,14,19,19,38,20,20,15,23,14,17,16,30,17,20,16,28,19,28,27,54,28,28,19,27,15,18,15,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,11,18,13,19,19,33,17,17,12,18,11,13,11,21,11,12,9,15,10,14,13,26,14,14,10,16,10,13,12,22,12,14,12,20,13,19,19,36,19,19,13,20,11,13,11,19,10,11,9,14,9,11,10,22,11,11,8,12,7,8,7,14,8,9,7,12,8,11,11,21,11,11,8,12,7,9,8,16,9,9,7,12,8,12,11,20,11,11,8,12,8,11,10,18,11,13,11,20,13,19,19,37,19,19,13,20,12,14,12,23,13,14,11,17,11,15,14,29,15,15,11,17,11,14,12,21,12,14,12,20,14,20,19,36,19,19,13,20,12,15,13,24,13,14,11,18,12,17,16,31,17,18,14,22,13,17,16,29,17,20,17,31,21,31,31,61,31,31,21,32,18,22,18,30,16,18,14,22,14,19,18,33,17,18,13,19,12,15,13,22,12,14,11,18,12,18,18,33,17,18,12,18,11,13,11,20,11,12,9,14,9,12,12,25,13,13,10,15,9,12,11,20,12,14,12,20,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,13,24,13,13,9,13,8,10,9,18,10,12,9,15,10,13,13,27,14,14,10,14,8,9,8,16,9,10,8,12,8,10,10,17,9,9,7,11,7,9,8,17,10,12,10,16,11,16,17,31,16,17,12,18,10,12,10,18,10,10,8,12,8,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,8,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,7,4,5,5,10,6,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,6,9,6,9,9,17,9,10,7,10,6,7,6,9,5,6,4,7,5,6,6,11,6,7,5,7,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,9,9,14,8,8,6,9,6,8,8,15,8,10,9,15,10,14,14,28,15,15,10,15,9,10,9,16,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,12,10,16,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,29,20,29,28,56,29,29,20,29,17,20,17,30,16,17,13,21,13,18,17,30,16,16,12,17,10,13,12,21,12,13,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,10,8,13,8,11,11,21,11,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,15,9,10,9,15,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,12,7,8,7,11,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,13,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,8,7,11,7,10,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,8,11,7,9,8,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15 +18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,5,4,5,5,9,5,6,4,6,4,5,5,9,6,7,6,10,7,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,6,4,6,6,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,8,7,10,7,11,11,20,11,12,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,6,5,8,6,9,9,14,8,8,6,9,6,7,6,10,6,7,6,10,7,11,11,17,9,10,8,11,7,10,10,18,10,12,10,18,12,17,17,34,18,18,12,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,15,9,11,10,19,11,14,12,19,13,19,19,36,19,19,13,20,12,14,13,24,13,15,12,20,13,18,18,33,18,20,15,23,15,20,18,35,20,24,20,35,24,35,34,67,34,34,23,35,20,24,20,35,19,20,15,25,16,21,20,36,19,20,14,21,12,15,14,25,14,16,13,22,14,20,19,37,19,19,13,19,11,13,12,21,11,12,9,15,10,13,12,24,13,14,10,15,9,12,11,21,12,14,11,19,13,18,18,35,18,18,12,18,10,12,10,18,10,10,8,12,8,10,10,20,10,10,8,12,8,10,9,14,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,13,9,14,14,24,13,14,9,14,8,10,8,13,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,13,8,9,8,14,10,14,13,26,14,14,9,13,8,9,8,15,9,10,8,11,8,11,10,19,10,10,8,12,7,9,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,10,9,17,9,10,8,13,8,11,11,21,11,12,9,15,9,12,11,20,12,14,12,21,14,21,21,42,21,21,15,21,12,14,12,20,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,9,10,8,14,9,12,12,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,17,9,9,7,11,7,8,7,13,8,9,8,13,9,12,13,25,13,14,10,14,8,10,8,15,8,8,6,11,7,9,9,17,9,10,7,9,6,8,7,12,7,8,6,10,7,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,11,20,11,11,8,11,7,8,7,12,7,7,5,8,5,6,6,13,7,8,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,3,3,4,4,4,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,10,7,10,10,18 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,8,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,4,7,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,15,8,9,7,10,6,9,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,8,12,8,11,10,18,10,10,8,12,8,9,9,16,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,13,10,17,11,15,15,27,15,16,12,20,13,17,16,29,17,20,17,29,20,29,29,56,28,28,19,29,17,20,17,29,16,17,13,21,13,18,17,31,16,17,12,18,11,13,12,21,12,14,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,17,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,6,7,7,12,7,8,7,11,8,12,12,21,11,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,11,7,8,7,12,8,12,11,22,12,12,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,9,7,11,7,9,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,17,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,11,7,8,8,13,8,9,7,12,8,11,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,7,10,11,21,11,11,8,12,7,9,7,13,7,7,6,9,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,7,7,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,11,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,15 +27,14,13,9,13,8,9,8,15,8,9,6,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,4,7,7,11,6,6,5,8,6,8,8,14,8,9,8,14,10,15,15,25,13,14,10,14,8,10,8,14,8,9,7,11,7,9,9,15,8,8,5,6,4,5,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,15,8,9,6,9,6,7,6,10,6,6,5,9,6,7,7,11,6,7,6,9,6,7,6,11,6,7,6,9,6,9,10,19,10,10,8,12,7,8,7,12,7,7,6,10,7,10,10,16,9,9,7,12,8,10,9,16,9,11,10,17,12,17,17,31,16,16,11,16,9,11,10,17,9,10,8,13,9,12,11,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,14,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,9,17,9,10,8,12,7,9,9,16,9,11,9,16,11,15,15,32,16,16,11,17,10,12,10,18,10,11,8,13,8,11,10,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,7,11,6,7,6,9,6,8,8,14,8,10,9,15,10,15,15,32,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,17,9,9,7,11,7,9,8,13,8,9,8,13,9,13,13,21,11,11,8,13,8,10,9,15,9,11,9,16,11,16,15,26,14,15,11,18,11,15,14,27,15,18,15,25,17,24,24,50,25,25,17,26,15,18,16,28,15,17,13,22,14,19,18,32,17,18,13,21,13,16,15,28,16,20,17,29,20,29,29,53,27,28,20,30,17,21,19,34,19,22,18,30,20,28,27,48,25,27,21,34,21,29,27,52,29,34,29,51,34,51,51,100,50,50,34,51,29,34,29,52,28,30,23,37,23,32,30,55,28,29,21,32,19,23,21,38,21,24,19,32,21,29,29,55,28,29,20,30,17,21,18,32,17,19,14,23,14,19,18,34,18,20,15,23,14,18,16,30,17,20,17,29,19,28,27,51,26,26,18,26,15,17,15,26,14,15,11,18,12,16,15,30,16,17,12,18,11,14,12,22,13,15,12,21,14,20,19,33,17,18,13,19,11,14,12,21,11,12,9,14,9,12,12,25,13,14,10,16,10,12,11,20,12,14,12,20,14,20,20,37,19,18,12,18,10,12,10,18,10,10,8,12,8,11,10,22,12,12,9,13,8,10,8,14,8,9,7,12,8,12,11,23,12,12,9,14,9,11,9,16,9,10,8,13,9,12,11,23,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,38,19,19,13,20,12,14,12,22,12,13,11,18,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,13,18,18,37,19,20,14,22,13,15,13,24,13,15,12,19,12,17,16,31,16,17,13,21,13,18,16,30,17,20,17,30,20,30,30,62,31,31,21,30,17,21,17,30,16,17,12,19,12,16,16,33,17,18,13,19,11,14,13,24,13,14,11,19,13,18,18,34,18,18,12,18,10,12,11,19,10,11,9,14,9,12,11,24,13,13,9,14,9,11,10,18,10,12,10,17,12,18,18,36,19,19,13,19,11,14,12,22,12,13,10,16,10,14,13,25,13,13,9,14,9,11,10,17,9,10,8,13,9,12,12,27,14,14,10,15,9,11,9,16,9,9,7,12,8,10,9,18,10,10,7,11,7,9,9,16,9,11,9,15,11,16,16,29,15,15,10,15,9,11,10,17,9,10,8,12,7,9,9,19,10,10,7,10,6,8,8,14,8,9,7,10,7,10,10,18,9,9,6,9,6,7,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,26 +14,8,7,5,7,4,5,5,8,5,5,4,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,4,5,4,5,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,11,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,12,10,16,11,15,14,25,14,15,11,18,11,15,15,27,16,18,15,27,18,27,27,52,26,26,18,27,15,18,16,27,15,16,12,19,12,17,16,29,15,16,11,17,10,12,11,20,11,13,10,17,11,16,15,29,15,15,11,16,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,12,8,10,9,16,9,11,9,15,10,15,14,27,14,14,10,14,8,9,8,14,8,9,6,10,7,9,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,10,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,16,9,11,9,16,11,16,16,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,9,17,9,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14 +15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,6,8,9,15,8,8,6,8,5,6,5,8,5,6,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,3,4,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,7,5,6,6,8,5,6,5,9,6,8,8,18,10,10,7,10,6,8,6,11,6,7,5,8,5,7,6,10,6,6,5,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,19,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,8,8,12,7,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,10,9,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,19,11,12,10,17,11,16,15,27,15,16,12,19,12,16,16,29,17,20,16,29,19,28,29,55,28,28,19,28,16,20,17,29,15,16,13,20,13,18,17,31,16,17,12,18,11,13,12,22,12,14,11,17,12,17,16,31,16,16,11,17,10,12,10,18,10,10,8,12,8,10,10,18,10,10,8,13,8,10,9,16,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,16,9,10,7,11,7,10,9,17,9,10,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,22,12,12,8,10,6,8,7,11,6,6,5,8,5,7,6,13,7,8,6,8,5,5,5,9,5,6,5,7,5,8,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,8,7,13,7,8,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,17,11,16,17,35,18,17,12,17,10,11,10,16,9,10,7,10,7,9,9,18,10,10,7,11,7,9,8,13,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,10,7,10,11,20,11,11,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,14 +12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,7,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,5,8,6,8,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,6,3,3,3,3,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,13,8,9,8,15,8,9,8,13,8,12,11,20,11,12,9,14,9,12,12,21,12,15,12,21,14,21,21,41,21,21,14,21,12,15,12,21,11,12,10,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,5,9,5,6,5,9,6,9,8,14,7,7,5,8,5,5,5,9,5,6,4,7,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,26,13,13,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,7,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,8,5,8,5,5,5,8,5,5,4,5,4,5,4,8,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10 +19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,5,4,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,4,4,3,3,3,4,3,4,4,8,5,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,12,8,11,11,22,11,11,8,11,7,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,9,9,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,7,5,7,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,8,14,8,8,6,9,6,8,8,12,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,8,5,5,4,5,3,4,3,7,4,4,4,6,4,6,5,9,5,6,5,8,5,7,6,12,7,9,7,12,8,12,11,22,12,12,8,12,7,8,7,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,5,11,6,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,17,17,32,17,17,12,18,11,13,11,18,10,11,8,13,9,13,13,21,11,12,9,14,9,11,11,20,11,13,11,18,12,18,19,36,19,19,13,20,12,15,13,24,13,15,12,20,13,19,18,32,17,19,14,23,15,20,19,34,19,23,19,33,23,34,34,66,33,33,23,34,19,23,19,34,18,20,15,24,15,20,19,36,19,19,14,21,13,16,14,25,14,16,12,20,14,20,19,35,18,18,12,18,11,13,11,20,11,12,9,14,9,12,11,21,11,12,9,14,9,12,11,18,10,12,10,18,12,17,17,34,18,18,12,18,11,13,11,19,10,11,8,12,8,11,10,19,10,10,8,12,7,8,7,14,8,10,8,14,9,13,13,22,12,12,8,12,7,9,7,14,8,8,6,10,7,9,8,16,9,9,7,11,7,8,7,14,8,10,8,14,10,14,13,26,14,14,9,13,8,9,8,12,7,8,6,9,6,9,8,16,8,8,6,8,5,6,5,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,16,9,9,7,10,6,7,7,13,7,8,7,12,8,12,12,26,14,14,10,14,9,11,9,16,9,10,7,11,8,11,11,18,10,11,8,12,7,9,9,16,9,9,7,12,8,11,11,24,13,13,9,14,9,11,10,17,10,11,8,13,9,12,11,20,11,12,9,14,9,12,11,19,11,13,11,18,13,19,19,42,21,21,14,20,12,14,12,19,10,10,8,12,8,11,11,22,12,12,9,13,8,11,10,16,9,10,8,14,10,14,13,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,9,8,15,8,9,7,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,6,10,7,10,9,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,14,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,4,3,2,2,2,2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16 +12,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,5,3,4,3,4,2,3,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,23,12,12,8,13,8,10,8,15,8,9,8,12,8,12,11,20,11,12,9,15,10,13,12,21,12,15,12,20,14,21,21,41,21,21,14,21,12,15,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,12,6,7,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,8,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,12,12,26,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,4,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,4,6,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,7,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10 +17,9,8,6,9,5,6,5,9,5,5,4,6,4,4,4,9,5,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,4,4,2,2,2,4,3,4,4,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,7,11,6,6,4,6,4,6,5,8,5,5,4,8,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,9,6,8,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,7,4,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,6,5,10,6,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,31,16,16,11,17,10,13,11,19,11,12,10,16,11,15,15,27,15,16,12,20,13,17,16,29,17,20,16,27,19,28,28,55,28,28,19,28,16,20,17,29,15,16,12,21,13,18,17,31,16,16,12,18,11,14,13,22,12,14,11,19,13,18,17,29,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,10,9,15,10,14,14,29,15,14,10,15,9,10,9,15,8,8,6,11,7,10,9,15,8,8,6,10,6,7,6,12,7,8,7,12,8,11,11,20,11,11,7,10,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,8,5,7,6,11,7,8,7,12,8,12,11,21,11,11,8,11,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,9,5,6,6,12,7,8,7,10,7,10,10,22,12,12,8,12,7,9,8,14,8,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,11,7,9,8,13,7,8,7,10,7,10,9,17,9,10,8,12,8,10,9,16,9,11,9,15,11,16,16,36,18,18,12,18,10,12,10,17,9,10,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,11,8,12,12,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,10,7,10,10,21,11,10,7,10,6,8,7,12,7,7,6,10,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,11,6,6,5,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +16,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,5,6,5,8,6,9,9,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,9,6,10,6,8,7,14,8,9,8,13,9,13,13,23,12,13,9,13,8,9,8,14,8,8,6,10,7,10,10,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,29,15,15,11,16,10,12,10,18,10,11,9,15,10,14,14,26,14,15,11,18,12,16,15,27,16,18,15,26,18,26,26,51,26,26,18,27,16,19,16,27,15,16,12,19,12,16,16,29,15,16,11,17,10,13,12,21,12,13,11,18,12,17,16,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,16,9,9,7,10,6,9,8,15,8,10,8,14,9,13,13,27,14,14,9,14,8,9,8,14,8,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,19,10,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,21,11,11,8,11,7,8,7,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,8,10,8,14,10,15,15,34,17,17,12,17,10,11,9,16,9,9,7,11,7,10,9,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,9,9,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,13 +29,15,14,10,14,8,9,8,14,8,9,7,10,6,8,7,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,17,9,9,7,10,6,7,5,8,5,5,5,8,5,7,7,12,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,11,6,6,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,4,7,4,4,4,6,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,16,16,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,9,16,9,9,6,8,5,6,5,7,4,4,4,6,4,5,4,13,7,7,5,7,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,6,9,9,10,6,6,4,5,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,12,19,10,10,7,10,6,8,7,13,8,9,7,11,8,11,11,21,11,12,9,14,9,11,10,17,10,11,9,16,11,16,16,34,18,18,13,19,11,12,10,18,10,10,8,12,8,11,10,19,10,10,7,11,7,8,7,13,8,9,8,13,9,12,12,25,13,13,9,12,7,8,7,11,7,8,6,10,6,8,8,15,9,10,8,12,8,10,10,18,10,12,10,17,11,16,16,34,18,18,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,11,8,12,8,10,9,15,9,10,8,13,9,12,11,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,18,18,33,17,17,12,17,10,11,9,15,8,9,7,11,7,10,9,17,9,9,7,11,7,9,8,14,8,10,8,13,9,12,11,20,11,11,8,13,8,10,9,15,9,10,8,14,10,14,14,28,15,16,12,19,12,16,15,28,16,19,16,27,18,25,25,44,22,22,15,23,13,16,14,24,13,14,11,19,13,18,18,34,18,20,15,23,14,18,17,32,18,21,17,29,20,29,29,56,29,30,21,33,19,24,21,38,21,23,18,30,19,26,25,49,26,28,20,32,20,27,25,47,27,32,27,47,32,48,49,98,49,49,33,50,28,33,28,49,26,28,21,34,22,30,29,55,28,29,21,32,19,24,22,40,22,25,20,33,21,30,30,50,26,26,18,26,15,18,15,27,15,16,12,20,13,17,16,30,16,17,13,20,12,15,14,26,15,17,15,26,17,25,25,52,26,26,18,27,15,17,14,24,13,15,11,18,12,16,15,27,14,15,11,16,10,12,11,19,11,13,11,19,13,19,18,36,19,19,13,20,12,14,12,21,11,12,9,14,9,12,12,22,12,13,10,15,9,12,12,22,13,15,12,20,14,20,20,38,20,20,14,21,12,14,12,20,11,11,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,10,8,14,9,13,13,24,13,13,10,15,9,11,10,17,9,10,8,12,8,11,11,22,12,12,9,14,9,11,10,18,11,13,11,18,12,17,17,39,20,20,14,21,12,15,13,23,12,13,10,16,10,14,14,27,14,15,11,16,10,12,11,19,11,13,10,17,12,18,18,34,18,18,13,20,12,14,12,21,12,14,11,18,12,16,16,30,16,17,13,20,13,17,16,29,16,19,16,27,18,27,27,65,33,33,22,33,19,22,18,32,17,18,13,21,13,18,17,32,17,17,12,18,11,13,12,21,12,14,12,20,13,19,19,32,17,17,12,18,10,12,11,19,10,11,9,14,9,12,11,20,11,11,8,12,8,10,9,16,9,11,9,16,11,16,16,36,19,19,13,19,11,14,12,21,12,13,10,17,11,15,14,26,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,28,15,15,10,15,9,11,9,15,8,9,7,11,8,11,10,19,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,29,15,15,10,14,8,10,9,15,9,10,8,12,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,14,7,7,5,8,5,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,23 +15,8,8,6,7,4,5,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,6,4,4,3,3,2,3,3,4,3,3,2,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,16,11,17,10,12,11,20,11,12,10,16,10,14,14,25,14,14,11,17,11,14,13,24,14,17,14,24,17,25,25,50,25,25,17,26,15,17,14,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,10,17,11,16,16,26,14,14,9,14,8,10,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,8,8,13,8,9,8,14,9,13,13,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,6,5,8,5,6,6,12,7,7,6,8,5,6,6,12,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,5,6,5,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,12,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,20,10,10,7,11,6,8,7,12,7,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,9,8,15,9,10,8,14,10,14,14,34,17,17,12,17,10,12,10,16,9,10,7,11,7,10,9,16,9,9,6,9,6,7,6,11,7,8,7,11,7,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,15,8,8,5,7,5,6,5,8,5,6,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,12 +15,8,8,6,7,5,6,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,9,14,8,8,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,10,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,6,4,6,5,10,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,24,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,9,15,10,15,15,30,16,16,11,18,10,12,11,20,11,12,10,17,11,14,14,26,14,14,11,17,11,15,14,25,15,18,15,25,17,26,26,50,26,26,18,27,15,18,15,25,13,14,11,18,12,16,15,29,15,16,11,17,10,13,12,22,12,14,11,18,12,16,16,26,14,14,9,14,8,10,9,14,8,8,7,11,7,9,9,16,9,10,7,11,7,9,8,13,8,10,8,14,10,14,13,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,18,10,10,7,11,7,8,7,12,6,6,5,8,5,6,6,12,7,8,6,8,5,6,6,12,7,8,6,10,7,10,11,21,11,12,8,11,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,7,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,6,4,7,5,7,7,12,6,6,5,7,5,6,6,9,5,6,6,9,6,9,9,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,10,9,15,9,10,8,15,10,14,15,35,18,17,12,18,10,12,10,16,9,10,7,12,8,10,9,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,11,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,16,8,8,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,4,6,4,5,5,6,4,4,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,6,6,11 +11,6,6,4,5,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,11,13,11,18,12,18,18,35,18,18,12,19,11,12,10,17,9,10,8,13,9,12,11,20,11,11,8,12,7,9,8,15,9,10,8,13,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,9,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,5,6,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,9,5,6,5,7,5,7,8,15,8,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,6,4,7,5,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,24,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,4,3,3,3,5,4,5,5,5,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,8 +16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,7,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,5,3,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,7,10,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,18,10,10,8,12,7,8,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,5,9,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,6,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,5,7,4,5,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,5,8,6,8,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,15,14,26,13,13,9,12,7,8,7,14,8,9,7,11,7,10,10,19,11,12,9,14,9,12,11,19,11,12,10,16,11,15,15,32,17,17,12,18,11,13,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,15,15,27,15,18,15,27,18,27,28,53,27,27,19,28,16,19,15,26,14,16,12,20,13,17,16,31,16,16,12,18,11,14,13,23,13,15,12,20,13,18,17,29,15,14,10,14,9,11,9,16,9,9,7,12,8,10,10,17,9,10,8,12,7,9,8,13,8,10,8,14,10,14,14,29,15,15,10,15,9,10,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,7,6,13,8,9,7,11,8,11,11,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,6,7,6,10,7,10,9,20,11,11,7,10,6,7,6,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,10,7,10,10,20,10,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,8,6,10,7,9,9,16,9,10,9,15,10,15,15,37,19,18,12,18,10,12,11,17,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,14,8,9,8,13,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,6,4,6,6,11,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,2,2,2,1,1,1,4,3,3,2,2,2,3,3,5,3,4,3,4,3,5,5,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,8,4,4,3,4,3,5,5,6,4,4,3,4,3,4,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,11 +9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,5,5,8,5,6,4,7,5,6,6,11,6,7,5,8,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,17,9,9,7,11,7,9,9,16,9,11,9,16,11,16,16,31,16,16,11,16,10,11,9,15,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,13,8,9,7,12,8,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,4,4,4,6,4,6,6,12,7,7,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,6,9,6,9,9,22,11,11,8,11,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7 +11,6,6,4,7,4,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,8,6,8,8,11,6,6,4,7,4,4,4,8,4,4,3,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,6,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,6,11,6,6,5,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,12,11,20,10,10,7,10,6,6,6,10,6,7,5,8,6,8,8,14,8,8,6,10,7,9,8,14,8,9,8,12,8,12,12,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,15,9,12,11,21,12,14,12,21,14,21,21,38,20,20,14,20,12,14,12,19,11,12,9,14,9,12,12,23,12,13,9,14,8,10,9,16,9,10,8,14,9,12,12,22,12,12,8,11,7,8,7,12,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,6,5,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,10,7,10,6,6,5,8,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,8,7,14,8,8,5,7,4,5,5,8,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,27,14,14,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,7,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,6,6,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,8,11,11,20,11,11,8,13,8,11,10,18,11,13,11,18,13,19,19,34,17,17,12,18,10,12,10,17,10,11,8,13,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,10,20,11,11,7,10,6,7,6,10,6,7,5,7,5,6,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,7,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,7 +18,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,7,5,8,5,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,5,6,5,8,6,9,9,12,7,7,5,7,5,6,6,10,6,7,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,11,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,16,9,9,6,8,5,6,5,8,5,6,5,8,5,6,6,7,4,5,4,7,5,7,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,10,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,10,6,8,7,12,9,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,6,8,7,14,8,8,6,9,5,6,5,9,5,6,5,8,6,9,9,18,9,9,6,9,6,7,6,10,6,7,6,9,7,10,10,16,9,10,7,11,7,10,10,18,10,12,10,17,12,18,18,31,16,16,11,16,9,11,10,17,9,10,8,14,9,12,11,23,12,13,10,16,10,12,11,20,11,13,11,20,13,19,19,37,19,20,14,20,12,16,14,26,14,16,13,21,14,20,19,36,19,20,15,24,15,20,18,33,19,22,19,34,23,34,34,62,32,32,22,32,18,21,18,32,17,18,14,23,15,20,19,39,20,20,14,20,12,15,13,24,13,15,12,20,13,18,18,36,19,19,13,18,11,13,11,18,10,11,9,14,9,11,11,22,12,12,9,13,8,10,9,16,9,11,9,16,11,15,15,34,17,17,12,17,10,12,10,18,10,11,8,12,8,11,11,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,23,12,11,8,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,30,15,15,10,15,9,10,8,14,8,8,7,11,7,9,8,12,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,15,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,9,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,9,17,9,10,8,12,7,9,8,14,8,9,8,14,9,13,13,24,13,13,9,12,8,10,9,15,8,9,7,11,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,18,18,43,22,22,15,21,12,14,12,22,12,13,10,16,10,13,12,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,13,22,12,12,9,13,8,9,8,14,7,7,5,8,5,7,7,15,8,8,6,8,5,7,7,12,7,9,8,13,9,12,12,23,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,18,9,9,7,10,6,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,6,8,5,6,5,8,5,5,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,7,7,4,5,4,5,3,3,3,4,2,2,2,2,2,2,2,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,7,5,6,6,10,6,7,5,8,5,7,7,12 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,7,4,5,4,7,4,4,3,5,4,5,4,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,7,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,13,7,7,6,9,6,7,6,11,6,7,6,11,8,11,11,20,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,13,8,11,10,18,10,12,11,19,13,19,19,34,18,18,12,18,10,12,10,18,10,10,8,13,8,11,11,21,11,11,8,11,7,9,8,13,8,9,7,11,7,10,10,20,11,11,7,10,6,7,6,10,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,10,6,7,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7 +11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,4,6,4,4,4,7,4,5,5,8,6,8,8,11,6,7,5,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,5,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,9,6,8,7,15,8,8,6,10,6,8,7,13,7,8,7,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,8,14,9,13,12,23,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,20,12,14,12,20,11,12,9,14,9,12,12,24,12,12,8,13,8,10,8,15,9,10,8,12,8,11,11,22,12,12,8,11,7,8,7,11,7,8,6,9,6,8,7,14,8,8,6,8,5,6,6,10,6,8,7,11,7,10,10,21,11,10,7,11,7,8,7,12,7,8,6,9,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,6,6,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,7,5,6,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,11,6,7,6,11,8,11,11,26,13,13,9,13,8,10,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,4,2,2,2,4,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,11,10,17,12,17,17,31,16,16,11,16,9,11,10,16,9,10,8,12,8,10,10,19,10,10,7,10,6,8,6,12,7,8,6,10,7,9,9,17,9,9,6,9,6,6,5,9,6,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,5,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,7,4,6,5,9,5,6,5,9,6,9,9,20,10,11,8,11,7,8,7,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,8,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,5,6,5,8,5,6,6,9,6,7,6,10,7,11,11,16,9,9,6,8,5,7,6,10,6,6,4,6,4,4,4,9,5,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,8,6,8,7,14,7,7,5,8,5,7,6,12,7,8,7,11,8,12,12,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,8,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,10,6,7,5,8,6,8,7,13,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,14,8,10,9,16,11,15,15,24,13,13,9,13,8,9,8,16,9,9,7,12,8,11,10,20,11,11,8,12,7,9,9,17,10,11,9,16,11,16,16,30,16,17,12,18,11,14,12,21,12,14,11,18,12,17,17,31,17,18,13,20,12,16,15,27,15,18,16,28,19,28,28,53,27,27,18,27,15,18,16,28,15,16,12,20,13,18,17,31,16,16,11,16,10,12,10,19,11,12,10,16,11,15,15,29,15,15,10,15,9,10,8,15,8,9,7,12,8,11,10,20,11,11,8,12,7,9,8,13,8,10,8,14,9,13,13,26,14,14,10,15,9,11,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,24,13,13,9,13,8,9,8,12,7,7,5,8,6,8,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,6,13,7,8,6,8,5,6,5,9,5,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,9,8,14,10,15,15,33,17,17,12,18,10,12,11,17,9,10,8,14,9,11,11,19,10,10,7,10,6,8,7,13,8,9,7,12,8,12,11,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,7,8,6,10,6,8,7,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,4,6,4,5,4,8,5,6,5,7,5,7,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,7,4,5,4,5,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,11 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,6,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,5,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,4,7,5,6,6,9,6,7,6,11,7,10,10,16,9,9,6,9,6,6,6,11,6,6,5,8,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,18,10,12,11,18,12,18,18,34,18,18,12,18,10,12,11,18,10,11,8,13,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,17,9,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,7,6,9,6,8,7,13,7,7,5,7,4,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,3,4,3,3,2,4,2,3,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,5,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,15,8,8,6,8,5,6,5,7,4,4,4,6,4,6,5,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,7,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,8,8,13,8,10,8,15,10,14,14,23,12,12,9,13,8,9,8,15,8,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,15,29,15,16,11,17,10,12,11,20,11,12,10,17,11,16,15,29,15,16,12,19,12,16,15,27,15,18,15,26,18,26,26,49,25,26,18,26,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,27,14,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,12,7,8,7,14,8,9,7,13,9,12,12,25,13,14,10,13,8,10,9,15,8,9,7,11,7,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,9,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,7,5,6,6,9,5,6,5,10,7,10,10,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,10,6,7,6,11,6,6,5,9,6,9,9,16,9,9,7,10,6,8,8,14,8,10,8,14,10,14,14,31,16,16,11,17,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,8,6,8,9,19,10,10,7,9,5,6,6,10,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,6,4,6,6,10 +11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,8,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,8,8,13,8,9,8,14,10,14,14,22,12,12,8,12,8,9,8,14,8,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,11,16,10,12,11,20,11,12,10,17,11,15,15,28,15,16,12,19,12,16,14,26,15,18,15,26,17,25,25,48,25,25,17,26,15,18,15,26,14,16,12,19,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,15,10,14,14,26,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,8,7,14,8,9,7,12,8,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,30,16,16,11,16,10,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,19,10,10,7,9,5,6,6,10,6,6,5,8,6,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,10 +20,10,10,7,10,6,8,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,8,8,8,5,5,4,6,4,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,7,7,12,7,7,6,10,7,9,9,17,9,10,8,12,8,10,10,18,10,12,11,19,13,19,19,25,13,13,9,13,8,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,5,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,20,11,11,8,12,8,10,9,16,9,11,9,14,9,12,12,22,12,12,9,15,10,13,12,23,13,16,13,22,15,21,21,27,14,15,11,16,9,11,10,17,9,10,8,12,8,11,10,19,10,11,8,12,7,9,9,16,9,10,8,13,9,12,12,24,13,13,9,13,8,9,8,13,7,8,6,9,6,9,9,17,9,10,7,10,7,9,8,14,8,10,8,14,10,15,15,32,16,16,11,17,10,13,12,21,12,13,10,16,10,13,12,23,12,12,8,11,7,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,15,8,9,7,12,8,11,11,20,11,12,9,13,9,12,11,21,12,14,12,20,13,19,19,35,18,18,12,18,11,13,11,20,11,12,10,17,11,15,14,26,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,26,14,14,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,17,12,18,11,15,14,26,15,18,15,27,18,26,26,42,22,22,15,23,13,16,14,24,13,15,12,19,12,17,16,31,16,16,12,18,11,15,14,26,15,18,16,28,19,27,27,54,28,28,19,29,17,22,19,34,18,20,16,27,18,26,25,49,26,28,21,34,21,28,26,50,28,33,28,50,33,49,49,94,48,48,32,48,27,31,26,46,24,26,19,31,20,27,25,47,24,25,18,27,16,19,17,31,17,20,16,26,17,25,25,49,25,26,18,26,15,18,16,28,15,16,12,18,12,16,15,28,15,16,12,18,11,15,14,25,14,16,13,22,15,22,22,47,24,23,16,23,13,16,14,25,14,15,12,19,12,16,15,28,15,15,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,16,11,15,9,10,9,16,9,10,8,13,9,12,11,21,11,12,9,13,8,11,10,19,11,13,11,19,13,19,19,43,22,22,15,22,13,16,14,25,13,14,11,18,11,15,13,24,13,13,9,14,8,10,9,15,8,9,7,12,8,11,11,20,10,10,7,10,6,7,7,12,7,8,7,11,8,11,10,19,10,11,8,12,8,11,10,19,11,12,10,18,12,17,17,24,13,13,10,15,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,10,7,9,9,16,9,11,10,17,11,16,16,30,16,16,11,17,10,13,11,20,11,11,9,14,9,13,12,23,12,13,10,17,10,13,12,23,13,16,14,26,18,26,26,59,30,30,21,32,18,22,19,33,18,19,14,23,14,19,18,34,18,19,13,20,12,14,13,23,13,15,12,19,13,19,19,36,19,19,13,19,11,13,11,18,10,11,9,14,9,12,12,23,12,13,10,15,9,11,10,19,11,13,10,17,12,17,16,37,19,19,13,19,11,13,11,19,10,10,7,11,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,8,11,11,20,11,11,7,10,6,7,7,12,7,8,6,9,6,7,6,11,6,7,5,8,5,7,6,11,7,9,8,14,10,15,15,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,9,9,18 +10,6,6,4,6,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,7,4,5,5,8,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,3,3,4,3,4,3,5,4,5,5,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,14,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,9,6,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,13,25,14,15,11,17,11,14,13,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,14,10,16,10,14,13,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,8,8,7,12,8,11,11,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,8,14,10,14,14,30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,8,6,8,8,11,6,6,5,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,10 +10,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,6,4,4,4,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,4,3,4,3,4,3,5,5,2,2,2,2,1,1,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,13,7,8,7,12,8,12,11,14,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,10,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,10,6,8,7,11,6,7,5,9,6,8,7,12,7,7,5,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,17,9,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,10,7,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,15,15,27,14,14,10,15,9,11,10,17,10,11,9,15,10,14,13,25,14,15,11,17,11,14,13,26,15,18,15,26,18,26,26,48,25,25,17,25,14,16,14,24,13,14,10,17,11,15,14,24,13,13,9,14,8,10,9,16,9,10,8,13,9,12,12,26,14,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,14,8,8,7,12,8,11,11,25,13,12,8,13,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,7,12,7,8,6,9,6,8,7,12,8,10,9,14,10,14,14,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,6,6,10 +7,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,4,3,3,3,6,3,3,3,4,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,4,4,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,7,7,5,7,4,6,5,8,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,7,12,7,8,7,11,7,10,10,17,10,10,8,12,8,10,9,18,10,13,11,18,12,18,18,33,17,17,12,17,10,11,9,17,9,10,7,12,8,10,10,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,9,18,10,10,7,9,6,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,4,6,5,8,5,6,4,7,4,6,5,8,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,12,6,7,6,8,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,6,4,4,4,8,4,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,13,7,7,5,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,3,3,4,3,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,6,8,7,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,10,5,5,4,5,4,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,13,7,7,6,9,6,7,7,10,6,7,6,10,7,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,15,21,11,11,8,12,7,9,8,13,8,9,7,11,7,9,9,18,10,10,7,10,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,25,13,14,11,18,11,15,14,26,15,18,16,28,19,27,27,49,25,25,17,26,14,16,13,25,13,14,11,17,11,15,14,25,13,14,10,14,8,10,9,16,9,10,8,14,9,13,13,28,15,15,10,14,8,9,8,15,8,9,7,11,7,8,8,15,8,8,6,9,6,8,7,14,8,9,7,12,8,12,12,26,13,13,9,14,8,9,8,14,8,8,6,10,7,9,9,17,9,9,7,10,6,7,7,11,6,7,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,7,6,10,5,5,4,6,4,4,4,5,3,4,4,6,4,5,5,11,6,6,5,8,5,7,6,9,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,10,6,6,4,6,4,6,5,10,6,7,6,9,6,9,8,17,9,9,7,10,6,7,6,12,7,7,6,10,6,8,8,12,7,7,6,10,6,7,7,12,7,9,9,16,11,16,15,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,21,11,11,7,10,6,8,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,8,21,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,6,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,2,3,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,11 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,5,8,5,6,5,8,6,8,9,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,7,10,7,9,8,15,9,11,9,16,11,16,16,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,4,3,5,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,4,7,5,6,5,9,6,9,9,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,5,3,4,3,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,6,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,5,6,5,8,5,7,7,10,6,6,5,9,5,6,6,10,6,7,6,10,7,10,10,15,8,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,8,12,8,11,10,18,11,13,11,19,13,19,19,34,18,18,12,19,11,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,7,10,9,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,8,7,10,6,7,5,8,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,9,5,6,5,7,5,6,6,9,5,6,4,7,4,5,4,7,4,5,4,5,4,6,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,3,3,3,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,6,6,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,15,8,7,5,7,5,6,5,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,7,7,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,5,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,13,7,8,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,9,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,30,15,15,11,16,9,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,7,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,5,4,4,4,5,3,3,3,4,3,5,5,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,5,4,5,5,7,4,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6 +10,6,6,5,7,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,11,6,5,4,5,3,4,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,16,9,9,6,8,5,6,6,10,6,6,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,11,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,8,6,10,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,10,6,8,8,14,8,9,7,10,6,7,7,12,7,7,6,10,7,10,10,15,8,8,6,10,7,9,9,16,9,10,9,15,11,16,16,24,13,13,9,14,8,10,8,14,8,9,7,12,8,11,10,18,10,11,8,12,7,9,9,16,9,11,10,17,11,16,16,29,15,15,11,17,10,12,10,18,10,12,9,15,10,14,14,27,15,16,12,20,12,16,15,28,16,20,17,29,19,28,28,54,27,27,18,26,15,17,15,26,14,15,11,17,11,15,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,14,30,16,16,11,17,10,11,9,16,9,9,7,11,7,9,9,14,8,8,6,9,6,8,8,14,8,10,8,13,9,13,13,28,15,15,11,16,9,11,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,11,8,11,11,28,15,15,10,15,9,10,8,14,8,9,7,11,7,9,9,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,13,7,8,6,8,5,5,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,9,7,10,6,7,6,10,6,6,4,6,4,5,4,11,6,7,5,8,5,6,6,11,6,7,6,10,6,8,8,21,11,11,8,13,8,10,8,14,8,9,7,10,7,9,9,16,9,9,7,11,7,8,8,14,9,11,9,16,11,16,16,31,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,11,7,9,8,15,9,10,8,13,9,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,6,8,8,21,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,4,3,5,5,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10 +5,3,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,11,7,9,8,15,9,11,9,16,11,15,15,29,15,15,10,14,8,10,8,14,8,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,6,6,5,8,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,5,6,5,8,6,8,8,8,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,5,8,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,9,10,8,13,8,10,9,17,10,12,10,18,12,17,17,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,5,6,6,10,6,7,6,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,9,5,5,4,6,4,6,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,6,4,5,3,4,4,6,4,4,3,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,13,7,6,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,10,7,10,10,18,9,9,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,5,12,6,6,5,8,5,6,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,4,6 +4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,7,4,5,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,13,8,9,8,14,9,13,13,24,12,12,9,13,8,9,8,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,14,7,7,5,8,5,6,5,7,4,4,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,6,5,8,5,7,7,9,5,5,4,6,4,4,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,4,5,5,11,6,6,5,8,5,6,6,9,5,6,6,10,7,10,10,9,5,6,4,6,4,4,4,5,3,3,2,3,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,7,5,6,6,9,5,5,4,7,4,5,5,8,5,5,4,5,4,5,4,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,9,9,12,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,6,8,7,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,7,11,8,11,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,22,22,40,21,21,14,21,12,14,12,20,11,11,8,12,8,11,10,20,11,11,7,10,6,8,7,12,7,8,7,11,7,10,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,10,6,7,6,10,7,10,10,21,11,11,7,10,6,7,6,12,7,7,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,8,5,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,5,8,6,8,8,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,5,4,5,4,5,5,6,4,5,4,6,4,6,7,10,5,5,4,6,4,4,3,7,4,4,3,4,3,3,3,8,4,4,3,4,3,5,5,7,4,5,4,6,4,6,5,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,7,6,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,6,8,7,13,7,8,6,8,5,7,6,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,4,5,4,9,5,5,4,6,4,6,6,16,9,9,6,9,6,7,6,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,7,4,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,13,8,9,8,13,7,7,6,8,6,7,7,12,7,7,5,7,4,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,7,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,7,4,5,5,8,5,6,5,8,6,9,9,7,4,5,4,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,6,5,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,7,10,10,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,10,10,19,10,11,9,14,9,12,11,20,12,14,11,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,12,8,10,9,16,9,9,6,9,6,8,7,11,7,8,6,9,6,9,9,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,18,9,9,6,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,4,6,4,4,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,6,5,8,5,7,7,20,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,13,7,7,5,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,9,5,6,6,10,6,7,6,11,8,11,11,17,9,9,7,9,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,7,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,4,2,2,2,3,3,4,4,6 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,10,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,7,12,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,19,13,19,19,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,9,9,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,9,6,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,6,5,9,5,6,5,7,5,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,5,6,3,3,3,3,2,3,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,13,7,7,5,8,5,6,5,9,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5 +7,4,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,5,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,3,2,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,6,8,8,14,8,10,9,16,11,16,16,13,7,7,5,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,11,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,7,5,8,5,7,6,11,7,8,7,12,9,14,14,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,18,10,10,7,10,6,8,7,11,7,8,6,10,7,9,8,14,8,9,7,10,6,8,7,12,7,9,8,14,10,14,15,20,11,11,8,12,7,8,7,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,7,12,7,8,7,12,8,11,11,17,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,11,13,11,18,12,18,19,32,17,17,12,17,10,12,10,18,10,11,9,14,9,13,12,23,12,12,9,14,9,11,11,20,11,13,11,18,13,19,19,33,17,17,12,19,11,14,12,22,12,14,11,19,13,18,18,34,18,19,14,23,15,20,19,36,21,25,21,37,25,37,37,69,35,35,23,33,19,22,18,31,16,17,12,19,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,12,17,16,36,18,18,13,19,11,13,11,18,10,10,8,12,8,11,11,21,12,13,10,15,9,12,11,19,11,12,10,16,11,16,16,32,17,17,12,17,10,11,9,15,8,9,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,24,13,13,9,13,8,10,9,15,8,9,7,10,6,8,7,12,7,8,6,10,6,8,7,13,8,9,8,13,9,13,13,36,19,19,13,20,11,13,11,19,10,11,8,12,8,11,10,18,10,10,7,9,6,7,7,12,7,7,6,10,6,8,8,10,6,6,5,7,5,6,6,10,6,7,6,9,6,8,7,12,7,8,6,10,6,8,7,13,8,9,7,11,7,10,10,16,9,9,7,10,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,6,4,5,4,7,5,8,8,24,13,13,9,14,9,11,10,17,9,10,8,12,8,11,11,20,11,11,8,13,9,12,12,22,13,15,12,21,14,20,20,30,15,15,11,16,10,12,10,17,9,10,8,12,8,11,11,20,11,11,8,13,8,10,9,15,9,10,8,12,8,12,12,23,12,12,8,12,7,9,8,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,7,6,9,6,9,9,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,7,12,7,8,6,10,6,8,7,13,7,8,7,12,8,10,10,11,6,7,5,7,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,6,10,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,6,7,5,8,5,7,6,10,6,6,5,8,5,7,7,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,4,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,5,9 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,16,8,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,8,12,8,11,10,19,11,13,11,19,13,20,20,36,19,19,12,18,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,7,6,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,5,12,7,7,5,7,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,5,3,3,3,3,3,4,3,5 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,5,3,4,4,5,3,4,4,5,4,6,5,6,3,3,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,4,7,4,5,5,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,8,8,12,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,5,7,4,5,4,7,4,4,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,7,6,10,7,11,11,17,9,9,6,10,6,7,6,11,6,7,6,9,6,7,7,13,7,6,5,7,5,6,6,11,7,8,7,10,7,10,11,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,8,13,8,11,10,20,12,14,12,20,14,21,21,38,20,20,13,19,11,13,11,17,9,9,7,10,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,10,7,10,9,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,7,20,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,4,3,5,3,3,3,6,3,2,2,3,2,2,2,4,3,4,3,4,3,5,5,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,8,12,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,4,5,5,6,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,5,3,3,3,3,3,4,4,6 +3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,5,3,3,3,4,3,3,3,5,4,4,4,6,5,7,7,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,3,5,3,3,3,5,4,4,4,7,4,5,4,6,4,4,4,7,4,5,5,8,6,8,8,12,6,6,5,7,4,5,4,8,5,5,4,7,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,15,15,28,14,14,10,14,8,9,8,13,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,5,8,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,14,8,8,6,8,5,5,4,8,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4 +3,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,5,3,4,4,7,5,7,7,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,10,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,5,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,13,7,8,6,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,5,4,7,4,5,4,7,5,7,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,8,5,7,7,12,7,8,7,12,9,13,13,22,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,23,12,13,9,14,9,12,11,23,13,16,13,23,16,23,23,44,22,22,15,21,12,14,12,20,11,11,8,12,8,10,10,18,9,9,7,10,7,9,8,13,8,9,7,12,8,11,10,21,11,10,7,10,6,7,6,10,5,5,4,6,4,6,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,10,6,6,5,8,5,6,5,9,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,5,6,5,9,5,5,4,6,4,4,4,9,5,5,4,7,5,8,8,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,6,4,5,4,6,4,4,3,5,3,3,3,5,4,5,5,7,4,4,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,12,8,12,12,17,9,9,7,10,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,8,5,6,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,5,14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,6 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,14,8,10,8,14,10,14,14,26,14,14,9,13,8,9,8,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,4,5,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,3,5,3,4,3,6,4,6,6,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,8,11,6,6,4,6,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,6,6,10,7,10,10,14,8,8,6,9,5,6,6,10,6,6,5,9,6,7,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,11,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,17,10,12,10,16,9,9,7,11,7,9,8,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,17,9,8,6,8,5,6,5,8,4,4,3,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,6,8,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,6,5,7,4,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,4,5,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,4,4,4,8,5,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,6,6,9,7,10,10,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,8,17,9,10,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,8,6,7,7,15,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 +2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,2,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,6,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,8,5,5,4,6,4,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,4,7,4,5,5,8,5,6,5,8,5,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,10,6,8,8,14,8,10,8,14,9,13,13,23,12,12,9,13,8,9,8,13,7,7,6,9,6,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,13,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,15,8,9,6,9,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,15,16,25,13,14,10,14,9,11,10,18,10,11,8,12,8,11,10,20,11,11,8,11,7,10,9,16,9,11,10,17,12,18,18,31,16,16,12,18,11,13,11,20,11,13,10,16,11,15,15,31,17,18,13,21,13,17,16,30,17,20,17,31,21,31,31,59,30,30,20,30,17,19,16,28,15,15,11,17,11,15,14,27,14,14,10,16,9,11,10,18,10,12,9,15,10,13,13,27,14,14,10,14,8,10,8,14,8,8,7,11,7,9,8,16,9,9,7,11,7,8,8,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,16,9,9,7,12,8,10,9,15,8,8,6,10,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,13,8,9,8,13,7,7,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,31,16,16,11,16,9,11,9,15,8,9,7,11,7,9,8,12,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,17,9,9,7,11,7,9,8,14,8,9,7,10,7,9,9,19,10,11,8,12,7,9,9,16,9,11,9,16,11,16,16,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,14,8,8,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,3,4,4,6,4,5,4,6,4,6,5,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,4,5,4,5,4,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,8,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,6,8,5,7,6,10,6,7,5,7,5,7,6,11,6,7,5,7,4,6,5,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,17,12,17,17,33,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,5,5,8,4,5,4,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,7,5,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,6,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,9,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,13,7,8,6,8,5,6,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,9,8,14,8,8,7,12,8,10,10,21,11,12,9,13,9,12,11,20,12,14,12,20,14,20,20,39,20,20,13,20,11,13,11,19,10,11,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,5,9,5,6,4,5,3,4,4,8,4,4,4,6,4,5,4,7,4,5,4,7,5,8,8,20,10,10,7,11,7,8,6,10,6,6,5,8,5,6,5,9,5,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,4,2,2,2,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,11,6,7,6,11,7,10,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,11,6,7,5,7,5,6,6,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,17,9,10,7,11,7,10,9,16,10,11,10,16,11,17,17,32,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,6,11,6,7,5,7,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4 +-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,4,3,4,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,6,6,10,7,9,9,10,5,5,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,4,6,4,5,5,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,9,5,6,4,6,4,4,4,7,4,5,5,8,6,8,7,12,7,8,6,9,6,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,7,4,5,4,8,5,5,5,8,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,6,5,7,7,12,7,7,5,8,6,8,7,12,7,8,7,11,8,11,12,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,8,14,8,9,8,14,10,15,15,26,13,13,9,14,8,10,9,17,9,10,8,12,8,11,11,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,15,29,15,16,12,19,12,17,16,28,16,19,16,28,19,28,29,55,28,28,19,28,16,18,15,27,15,16,12,18,11,15,14,27,14,14,10,15,9,11,10,17,9,10,8,14,9,13,12,23,12,12,8,12,7,8,7,14,8,9,7,12,8,10,9,15,8,9,7,10,7,9,8,16,9,10,8,13,9,13,13,25,13,13,9,14,8,9,8,16,9,9,7,10,6,8,8,14,8,9,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,11,8,11,7,8,7,13,7,8,6,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,10,10,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,13,7,7,5,6,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,7,6,12,7,7,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,9,8,14,10,15,15,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,4,4,5,3,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,18,9,9,7,10,6,7,6,12,6,7,6,8,5,7,7,13,7,7,6,8,6,7,6,11,6,8,6,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,11,8,11,10,20,11,11,8,13,8,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,12,10,18,10,11,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,6,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,10,6,6,5,7,4,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,7,6,9,5,5,4,7,4,6,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,6,5,8,6,9,9,9,5,4,3,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,4,4,7,4,5,5,8,6,8,7,13,7,8,6,8,6,8,7,13,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,7,7,12,6,6,5,6,4,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,9,11,9,17,9,10,8,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,11,21,11,12,10,16,11,16,15,30,16,17,13,19,12,16,15,29,17,20,16,28,19,28,28,53,27,27,18,27,15,18,15,27,14,15,11,18,11,15,14,27,14,14,10,15,9,11,10,16,9,10,8,14,9,12,12,22,12,12,8,13,7,8,8,13,7,8,7,11,7,10,9,16,9,10,7,10,7,9,8,16,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,8,11,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,9,8,16,9,10,7,10,6,8,8,14,8,10,9,15,11,16,16,19,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,8,6,8,8,13,7,6,5,7,4,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,8,5,6,5,8,6,9,9,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,9,6,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25,13,13,10,14,9,11,9,16,9,10,8,11,7,10,10,19,10,11,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,12,21,11,12,10,16,11,16,15,30,16,17,13,20,12,16,15,29,16,19,16,28,19,28,28,52,26,26,18,26,15,18,15,27,14,15,11,18,11,15,14,26,14,14,10,15,9,11,10,16,9,10,8,13,9,12,12,22,12,12,8,13,8,9,8,13,7,8,7,11,7,10,9,16,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,8,8,16,9,9,7,10,6,8,8,14,8,10,9,15,11,16,16,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,7 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,4,3,5,5,8,5,5,4,6,5,7,7,12,7,7,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,9,17,9,10,8,12,8,11,11,20,11,13,11,19,13,18,18,15,8,8,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,8,7,11,8,12,12,22,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,13,10,16,10,13,12,23,13,15,12,21,14,21,21,27,14,14,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,11,8,12,8,10,9,17,10,11,9,15,10,14,14,26,14,14,10,15,9,11,10,17,10,11,9,14,9,13,12,23,13,14,11,17,11,14,13,24,14,16,13,23,15,22,22,44,22,22,15,21,12,14,12,22,12,13,10,16,10,14,14,27,14,15,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,12,9,13,8,9,8,14,8,9,8,13,9,13,12,23,12,13,9,14,9,12,11,21,12,13,11,19,13,19,20,35,18,18,12,18,11,14,12,22,12,13,10,16,11,15,14,27,14,14,10,15,9,12,11,19,11,13,10,17,11,16,16,31,16,16,12,18,11,13,11,20,11,13,11,18,12,17,17,32,17,18,13,20,13,17,16,30,17,19,15,26,18,26,25,49,25,25,17,26,15,19,17,30,16,18,13,21,13,18,17,32,17,17,12,19,12,16,15,27,15,17,14,24,16,23,23,44,23,23,16,25,15,19,17,30,17,19,16,28,19,27,26,51,27,29,22,35,22,30,28,54,30,36,31,55,37,54,54,103,52,52,35,51,28,33,28,49,26,28,20,32,20,27,25,48,25,26,18,28,16,20,18,33,18,21,17,28,18,26,26,50,26,26,18,26,15,17,14,25,14,15,12,19,12,17,16,30,16,17,13,20,12,16,14,25,14,17,14,24,16,24,24,48,24,24,16,24,14,17,15,26,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,13,7,8,7,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,17,18,51,26,26,17,25,14,17,14,25,13,14,11,18,12,16,15,28,15,15,11,16,10,13,11,20,11,12,9,15,10,13,13,25,13,13,9,14,8,10,9,16,9,9,7,12,8,11,10,19,10,11,8,11,7,9,8,15,8,9,8,13,9,13,13,25,13,13,9,13,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,38,19,19,13,20,12,15,13,23,13,14,11,18,12,17,16,30,16,17,12,19,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,12,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,11,10,19,10,11,9,15,10,15,15,28,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,20,10,10,7,9,5,6,6,10,6,6,5,7,5,7,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,7,10,6,7,6,11,6,7,5,7,5,6,6,10,5,5,4,5,4,5,4,7,5,6,5,8,6,9,9,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,5,4,5,3,4,4,6,4,5,4,7,5,8,8,14,7,7,5,7,4,5,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,13,25,13,13,9,13,8,10,9,15,9,10,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,8,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,52,26,26,18,26,15,17,14,25,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,10,11,9,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,10,6,9,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,10,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,9,6,10,7,9,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,6,5,9,6,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,4,3,4,3,4,4,7 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,7,11,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,8,6,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,6,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,13,8,10,9,15,9,10,7,12,8,10,9,17,9,10,7,10,6,8,8,14,8,10,8,13,9,12,12,23,12,12,9,14,8,10,9,16,9,11,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,53,27,26,18,26,15,18,15,26,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,9,10,8,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,5,9,5,6,5,9,7,10,10,27,14,14,9,13,8,10,8,12,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,8,6,10,7,9,8,15,9,10,9,16,11,15,15,18,9,9,7,10,6,6,5,10,6,6,5,8,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,4,3,4,4,7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,6,3,3,3,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,4,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,7,5,7,6,11,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,9,6,7,6,10,6,7,5,8,6,7,7,12,6,7,5,7,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,7,8,6,11,7,10,10,17,9,10,8,12,8,11,10,19,11,13,11,19,13,19,19,36,18,18,12,18,10,12,10,18,10,10,7,12,8,10,9,17,9,10,7,10,6,7,6,12,6,7,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,7,5,6,6,10,6,7,6,11,8,10,10,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,1,3,2,3,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,11,8,12,12,14,7,7,5,6,4,4,4,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,7,6,13,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,10,9,16,9,9,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,14,8,9,7,12,8,11,10,17,9,10,7,10,7,9,8,15,9,10,8,12,8,12,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,15,25,13,14,11,18,11,15,14,27,15,18,16,28,19,27,27,54,27,27,18,26,15,17,14,26,14,15,11,17,11,14,13,25,13,13,9,14,9,11,9,17,9,10,8,14,9,13,13,25,13,13,9,12,7,8,7,13,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,8,13,9,13,13,24,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,12,6,6,4,6,4,5,5,10,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,12,7,7,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,11,11,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,14,8,8,6,10,6,8,8,14,8,10,9,16,11,15,15,19,10,10,7,10,6,6,5,11,6,7,5,8,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,8,6,9,9,13,7,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,3,3,3,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,3,3,5,3,4,3,4,3,4,4,8 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,8,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,8,7,11,7,9,8,16,9,10,9,16,11,15,15,31,16,15,10,15,9,10,8,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,8,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,6,6,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,5,6,5,9,5,6,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,9,7,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,13,8,10,10,19,11,12,10,19,13,18,18,37,19,18,12,18,10,12,10,19,10,11,8,12,8,10,9,17,9,10,7,10,6,7,6,12,7,7,6,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,4,4,6,4,6,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,3,4,4,6 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,8,4,5,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,5,9,5,5,5,7,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,31,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,10,5,5,4,6,4,5,5,10,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,3,4,4,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,11,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,7,10,6,6,5,9,6,7,6,9,6,8,8,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,26,14,14,10,14,8,9,7,12,7,7,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,5,7,7,13,8,9,7,12,8,11,11,23,12,12,9,14,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,8,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,8,8,14,8,9,8,14,10,14,14,25,13,13,9,13,8,10,9,15,9,10,8,12,8,11,10,17,9,10,7,11,7,8,8,14,8,9,7,12,8,11,11,24,13,13,10,15,9,12,10,18,10,12,10,16,11,15,15,27,15,16,12,18,11,15,15,28,16,18,15,27,18,27,27,56,29,29,19,28,16,19,16,28,15,15,11,17,11,14,14,26,14,14,10,15,9,10,9,16,9,11,9,14,9,13,12,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,8,17,9,10,7,10,6,8,7,12,7,9,8,13,9,14,14,23,12,13,9,13,7,8,7,12,7,8,6,9,6,9,9,16,9,9,7,11,7,8,7,12,7,7,6,10,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,7,6,10,6,7,5,8,5,6,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,19,10,11,8,11,7,8,7,11,6,7,6,10,7,9,8,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,5,3,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,5,3,4,3,4,3,5,5,10 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,5,3,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,15,10,15,15,30,16,16,10,15,9,11,9,15,8,8,6,9,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,5,5,3,5,3,4,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,5,4,5,5,8,5,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,17,17,11,17,10,12,10,16,9,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,9,6,7,6,9,7,10,10,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,2,2,2,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,24,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,8,8,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,1,1,1,1,1,1,0,0,3,2,1,1,0,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,4,7,5,6,5,8,6,8,8,6,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,1,1,1,1,0,0,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,10,6,6,4,6,4,6,6,12,7,7,5,7,5,6,6,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,9,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,11,6,7,5,8,5,7,7,16,9,9,7,10,6,7,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,11,13,11,19,10,11,8,13,9,12,11,20,11,11,8,11,7,9,8,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,8,5,5,4,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,5,4,6,6,11,6,5,3,4,3,3,3,6,4,4,4,6,4,4,4,9,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,15,8,8,6,8,5,5,5,7,4,5,4,7,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,3,7,4,5,4,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,24,12,12,8,13,8,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,7,4,4,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5 +1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,5,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,7,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,7,9,9,16,9,11,9,17,11,16,16,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,2,2,3,5,3,4,3,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,5,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,8,8,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,9,16,9,11,9,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,11,6,6,5,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,10,5,5,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,7,6,11,8,11,12,8,4,4,3,5,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,11,6,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,5,6,5,9,7,10,10,14,8,8,5,7,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,8,12,13,29,15,16,11,16,9,10,8,14,8,8,7,11,7,9,8,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,11,7,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,20,11,12,9,13,8,10,10,18,10,12,10,17,11,15,15,31,16,16,11,15,9,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,11,9,14,9,13,12,25,13,13,10,15,9,12,10,18,10,11,9,16,10,14,14,26,14,15,12,19,12,16,16,30,17,20,17,29,20,29,29,59,30,31,21,31,18,21,18,31,17,18,13,20,13,17,16,31,16,16,11,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,10,7,9,9,16,9,11,9,14,10,14,14,25,13,14,10,15,9,10,9,16,9,9,7,12,8,10,9,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,11,8,12,7,9,8,14,8,9,7,11,7,9,8,15,8,9,7,11,7,9,8,15,9,11,9,15,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,9,6,7,6,11,6,7,5,7,4,5,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,7,12,8,11,11,20,11,11,8,13,8,10,10,18,11,13,11,18,12,18,18,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,9,6,9,9,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,10,5,5,4,5,3,4,3,4,3,3,3,5,4,5,5,11,6,6,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,6,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,6,4,4,4,7,5,7,7,12 +1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,6,4,6,6,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,8,6,10,7,9,9,16,9,11,9,15,10,15,15,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,6,6,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,7,5,7,7,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,2,2,2,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,6,4,6,6,10,6,6,4,7,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,31,16,17,12,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,5,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,8,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,5,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,9,5,4,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,6,4,6,6,10,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,4,5,4,4,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,5,8,5,7,7,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,4,4,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,2,3,2,3,2,3,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,4,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,6 +0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,7,4,5,4,7,5,7,7,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,5,5,8,5,7,7,16,9,9,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,15,8,9,7,10,6,7,7,10,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,9,9,17,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,14,8,9,7,12,8,10,9,17,10,11,10,17,12,17,17,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,10,19,10,10,8,12,7,9,7,11,6,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,11,6,6,5,8,5,6,5,9,5,6,6,10,7,9,9,14,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,10,7,9,9,16,8,8,5,7,5,6,5,6,4,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,4,3,5,5,9 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,4,5,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,5,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,4,4,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,4,4,4,6,4,6,5,7,4,4,4,6,5,7,7,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,10,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,5,6,4,5,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,10,6,6,5,8,6,7,7,12,7,9,8,13,9,13,13,22,12,11,8,11,7,8,7,12,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,-1,0,0,1,2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,4,3,4,3,4,4,6,4,5,5,8,6,8,7,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,9,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,7,7,12,7,8,7,12,8,11,11,23,12,12,9,13,8,10,8,14,8,9,7,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,8,5,6,5,13,7,7,5,7,5,6,6,10,6,7,7,12,8,11,11,19,10,10,8,12,7,9,7,12,7,8,7,11,7,10,9,12,7,7,5,7,5,7,7,12,7,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,12,9,15,9,12,12,22,13,15,13,23,16,23,23,41,21,21,14,21,12,14,12,21,11,11,8,13,9,12,11,22,12,12,9,13,8,9,8,14,8,9,7,10,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,13,13,16,8,8,6,9,6,7,6,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,6,6,10,6,7,7,12,8,11,11,24,12,12,9,13,8,9,8,13,7,7,5,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,7,12,7,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,6,11,8,11,11,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,4,5,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,4,2,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14 +1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,10,6,7,6,9,6,7,7,12,7,9,8,13,9,13,13,22,12,12,8,12,7,8,7,12,6,6,5,7,5,7,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,9,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,5,3,3,3,5,3,4,3,5,3,3,2,3,2,3,4,8,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,7,8,6,10,6,8,8,14,8,10,9,14,10,14,15,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,13,7,7,6,9,5,6,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,5,5,8,4,4,3,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,5,9,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,3,2,2,2,3,2,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,5,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,3,2,2,2,2,3,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,9 +2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,1,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,0,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,6,6,11,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,5,5,4,6,4,5,5,11,6,7,6,10,7,9,9,22,11,11,8,12,7,9,8,13,7,8,6,10,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,6,10,7,10,9,15,8,8,6,10,6,7,7,10,6,6,5,8,6,8,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,9,7,12,8,11,10,19,11,13,11,20,14,20,20,35,18,18,12,17,10,11,10,17,9,9,7,11,7,9,9,18,10,10,7,11,6,7,6,12,7,7,5,8,6,9,9,17,9,9,6,8,5,7,6,11,6,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,5,7,7,10,5,5,4,6,4,5,5,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,12,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,6,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,3,3,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,3,2,3,2,2,2,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,2,2,5,3,3,2,2,2,2,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,3,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12 +2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,6,9,5,6,4,7,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,4,6,4,4,4,8,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,8,4,5,4,7,5,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,14,14,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,3,3,4,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,7,7,5,7,4,5,5,7,4,5,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,6,6,1,1,2,1,2,1,1,1,3,2,2,1,2,2,2,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,14,8,8,6,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,4,4,4,5,3,4,4,8,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,11,10,18,11,13,11,19,13,20,20,33,17,16,11,16,9,11,9,15,8,9,7,11,7,10,9,17,9,9,7,9,5,6,6,11,6,7,6,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,9,5,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,8,5,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,1,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,6,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,7,5,8,5,6,6,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,10,10,18,11,13,11,19,13,20,20,32,16,16,11,16,9,11,9,15,8,9,7,11,7,9,9,16,9,9,6,9,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +4,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,7,14,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,7,6,10,7,10,10,3,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,2,2,-11,-5,-5,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,0,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,26,14,14,10,14,8,10,8,13,7,8,6,9,6,8,7,12,6,6,5,7,5,7,7,12,7,8,7,12,8,11,10,19,10,10,7,11,7,9,8,14,8,9,7,10,7,10,10,18,9,9,7,10,7,9,8,15,9,10,8,14,9,13,13,27,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,14,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,7,10,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,9,11,9,15,10,15,15,43,22,22,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,10,15,9,12,11,19,11,12,9,15,10,14,14,26,14,14,10,15,9,11,10,19,10,11,9,14,9,13,12,22,12,12,9,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,16,10,12,11,19,10,11,8,13,9,12,11,21,11,12,9,14,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,18,11,14,13,23,13,15,13,23,15,22,21,41,22,23,17,27,17,23,21,39,22,26,22,39,26,38,38,61,31,32,22,33,19,23,20,35,19,20,15,24,15,20,19,35,18,18,12,18,11,13,11,20,11,13,11,18,12,16,15,29,15,15,10,15,9,11,10,17,10,11,8,13,9,13,13,24,13,13,9,14,9,12,11,19,11,14,12,20,13,19,19,20,11,11,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,8,7,11,8,11,11,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,16,10,13,11,20,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,21,11,11,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,5,7,7,12,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,26,14,14,10,15,9,12,10,18,10,11,9,15,10,13,12,23,12,12,9,13,8,11,10,17,10,12,10,18,12,17,17,31,16,15,10,15,9,11,10,17,9,10,7,11,8,11,10,19,10,10,7,11,6,7,6,11,6,7,6,10,7,11,11,20,10,10,7,9,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,22,12,12,8,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,11,8,11,10,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,2,2,1,1,1,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,9,6,8,7,12,8,11,11,22 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,6,5,10,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,10,7,10,10,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,7,5,6,6,12 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,3,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,6,5,10,6,6,4,5,4,5,5,9,5,6,5,7,5,8,8,15,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,9,17,9,10,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,16,9,9,6,8,5,6,6,9,5,6,5,7,5,8,7,13,7,8,5,7,5,6,6,11,7,8,7,10,7,11,11,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,8,5,6,5,10,6,7,6,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,4,6,6,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,4,7,5,6,6,12 +2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,5,7,7,12,6,7,5,7,5,6,5,9,6,6,5,8,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,14,22,11,11,8,12,7,8,7,13,7,7,6,8,6,8,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,5,4,5,4,8,5,6,5,7,5,8,8,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-3,-1,0,1,1,1,2,2,1,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,14,7,7,5,7,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,5,10,6,7,5,8,6,9,9,15,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,8,4,4,3,5,4,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,6,5,8,5,6,5,8,6,8,8,24,13,13,9,14,8,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,9,9,6,9,5,6,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,15,8,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,6,5,9,7,10,10,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,23,13,14,10,16,10,13,12,21,12,14,12,20,14,21,21,33,17,17,12,17,10,12,10,19,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,10,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,7,6,11,7,8,6,10,7,11,11,12,7,7,5,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,5,7,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,7,6,10,6,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,4,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,5,8,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,4,3,4,3,3,2,5,3,3,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,4,5,4,7,5,7,7,14 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,8,5,5,4,5,3,3,3,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,-1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,2,2,2,2,10,6,6,4,6,4,4,3,6,3,3,2,4,2,2,2,5,3,3,3,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,6,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,17,9,10,7,10,6,6,5,9,5,6,4,6,4,6,6,12,6,6,5,8,5,5,4,7,5,6,4,6,4,6,6,13,7,6,5,6,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,7,12,6,6,5,8,5,6,6,10,6,6,5,10,7,9,9,18,10,10,8,11,7,10,9,15,9,10,8,15,11,16,16,23,12,12,8,12,7,8,7,13,7,7,5,9,6,7,7,14,7,7,5,7,5,6,5,7,4,4,3,5,4,6,6,12,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,4,4,3,5,4,6,5,8,4,4,3,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,6,4,6,6,10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,16,9,9,7,10,6,8,8,13,8,9,8,13,9,14,14,20,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,7,5,6,4,5,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,9,5,4,3,4,3,3,2,2,2,2,2,2,2,2,3,1,1,2,2,3,2,3,3,4,3,3,3,4,3,5,6,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,3,4,4,8,5,5,5,8,5,7,7,6,3,3,2,3,2,3,2,3,2,1,1,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,6,6,10,6,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,5,5,4,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,11,6,6,5,7,5,6,6,12,7,9,8,13,9,12,12,28,15,15,10,14,8,10,8,14,8,9,7,11,7,9,8,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,20,10,10,7,9,5,6,6,10,6,7,6,9,6,7,7,16,8,8,6,8,5,6,6,10,6,7,6,10,7,9,8,19,10,10,7,11,7,8,6,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,6,11,7,8,6,10,7,10,11,20,11,11,8,13,8,10,9,16,9,10,9,15,10,14,14,29,15,15,11,17,11,14,13,23,13,16,14,24,16,24,24,35,18,18,12,17,10,12,10,18,10,11,9,14,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,19,10,10,7,11,7,8,7,11,6,7,6,10,7,9,9,13,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,14,13,26,14,14,9,13,8,9,7,12,7,8,6,10,6,8,7,11,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,7,7,5,8,6,8,7,13,8,9,8,13,9,12,12,21,11,10,7,10,6,7,6,10,6,6,5,7,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,5,4,5,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,7,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,8,5,6,6,10,7,10,9,17 +1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,10,6,8,7,13,8,9,8,13,9,13,13,19,10,10,7,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10 +2,1,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,9,5,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,9,5,6,4,7,5,6,5,11,6,6,5,6,4,5,5,7,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,13,7,8,6,9,6,7,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,9,8,14,8,10,8,15,10,15,15,22,12,12,8,10,6,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,7,4,5,4,7,4,5,5,12,6,6,4,7,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,6,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,4,3,4,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,2,2,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,9,5,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,7,7,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,7,11,7,8,7,12,8,12,12,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9 +2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,5,4,6,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,13,7,8,6,9,6,7,6,9,5,6,4,6,4,6,6,10,5,5,4,6,4,6,6,11,6,7,6,10,7,11,11,18,10,11,8,12,7,8,7,13,7,8,7,12,8,12,12,23,12,12,9,14,9,12,11,18,10,12,11,19,13,19,19,29,15,15,10,14,8,10,8,13,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,10,6,7,5,8,5,7,6,16,9,9,6,8,5,5,4,9,5,6,5,7,5,8,8,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,3,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,12,7,7,5,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,5,6,5,9,6,9,9,17,9,9,6,8,5,6,5,7,4,5,4,6,4,4,4,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,16 +2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,4,8,5,5,5,8,5,7,7,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,19,10,10,7,9,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,5,4,5,4,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,7,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,4,5,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,11 +3,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,3,4,3,6,3,3,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,4,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,17,9,8,6,9,5,6,5,8,5,5,4,5,4,6,5,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,6,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,7,10,10,16,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,18,12,18,18,26,14,14,9,13,7,8,7,12,7,8,6,8,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,8,5,5,4,8,5,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,5,4,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,6,4,6,5,10,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,3,3,4,4,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,3,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,2,3,3,4,3,3,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,7,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,17,12,18,18,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,3,4,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,3,2,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,4,5,5,9,5,6,5,9,6,8,8,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,9,5,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,8,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,10,9,15,10,15,15,31,16,15,10,14,8,9,8,14,8,8,6,10,7,10,9,17,9,9,7,11,7,8,7,12,7,8,7,11,7,10,9,20,11,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,20,13,19,19,42,21,21,14,20,12,14,12,21,11,12,9,14,9,13,12,22,12,12,9,14,9,11,9,16,9,10,8,14,9,13,12,27,14,14,10,14,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,7,11,8,11,11,21,11,12,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,29,16,17,12,19,11,14,13,24,14,16,13,21,14,20,20,38,20,21,16,25,15,20,18,34,19,22,19,33,23,34,34,49,25,26,18,26,15,17,15,26,14,14,10,16,10,13,12,22,11,11,8,12,7,9,8,14,8,9,7,10,7,10,9,25,13,14,10,14,8,10,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,11,10,18,10,12,9,15,10,14,13,20,10,10,7,9,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,14,8,8,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,16,11,15,15,31,16,16,11,16,10,12,11,19,10,10,7,11,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,8,13,9,12,11,15,8,9,7,10,6,7,6,10,6,7,6,10,7,10,10,18,10,10,8,13,8,10,9,17,10,11,9,15,10,15,15,27,14,14,10,15,9,10,8,14,8,8,6,9,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,5,3,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,5,4,7,5,7,6,11,6,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,7,5,7,8,14,8,8,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,7,8,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,9,8,13,9,14,14,28 +2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,17,9,8,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,11,7,10,10,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,26,14,14,10,14,8,9,8,14,8,8,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,7,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,7,5,7,6,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,15 +2,2,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,6,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,3,5,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,9,9,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,9,5,6,5,6,4,4,4,7,4,5,4,7,5,6,5,12,6,6,4,7,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,7,6,12,7,8,7,11,8,11,11,24,13,13,9,13,8,9,8,12,7,7,6,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,12,9,14,9,12,11,19,11,12,11,18,12,18,19,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,4,3,4,4,9,5,4,3,5,3,4,4,4,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,6,3,3,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,5,6,5,7,5,7,6,9,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,6,4,4,3,3,2,2,2,3,2,3,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,5,8,5,5,3,4,3,3,2,4,3,3,2,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,2,4,3,4,4,6,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,16 +1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,5,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,13,9,14,14,20,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,10,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,5,4,6,6,11 +1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,12,7,7,5,7,4,4,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,6,4,5,5,8,5,7,6,10,7,10,10,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,6,8,7,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,12,8,11,11,19,10,10,8,12,8,10,9,14,8,9,7,12,8,12,12,24,13,14,10,16,10,14,13,23,13,15,12,21,14,21,21,31,16,16,11,16,9,11,9,17,9,10,7,10,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,13,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,5,11,7,8,7,11,8,11,10,20,11,11,8,12,7,9,8,12,7,8,6,9,6,7,7,10,5,5,4,6,4,4,4,8,5,5,4,5,4,5,5,11,6,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,6,6,5,7,4,5,4,8,4,4,3,5,4,5,5,10,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,3,5,4,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,4,3,6,3,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,8,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,17 +0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,5,3,4,4,9,5,5,4,5,4,5,4,5,4,4,4,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,9,8,14,8,9,8,13,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,8,5,5,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,11 +-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,2,2,2,2,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,7,4,5,4,4,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,6,5,6,4,6,5,8,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,7,5,6,5,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,23,12,12,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,11,10,19,11,12,10,18,12,18,18,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,9,5,4,4,5,3,4,3,4,3,4,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,7,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,5,6,6,9,5,6,5,7,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,4,8,5,5,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,13 +-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,10,5,5,4,6,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,5,8,5,5,4,5,3,4,4,4,3,3,3,5,4,5,5,8,5,5,5,8,6,8,8,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,0,-1,-1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,13,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,13,7,8,6,9,6,7,7,13,8,9,8,13,9,13,13,29,15,16,11,16,9,11,9,16,9,9,7,10,6,8,8,14,8,9,7,10,6,8,7,12,7,8,7,11,7,9,9,19,10,10,7,11,7,9,8,14,8,9,7,10,6,8,8,18,10,10,8,13,8,10,10,18,10,12,10,18,12,18,18,41,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,24,13,14,10,15,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,13,8,10,9,16,9,10,8,12,8,10,10,20,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,24,13,13,9,14,9,11,9,16,9,10,8,13,8,11,11,18,10,10,8,12,8,11,10,18,10,12,10,16,11,16,16,30,16,16,12,18,11,14,12,21,12,14,11,19,13,18,17,31,17,18,14,22,14,19,17,32,18,22,18,32,22,32,32,43,22,22,15,22,13,15,13,22,12,12,9,13,9,12,11,22,12,12,8,11,7,8,7,12,7,7,6,10,7,10,9,21,11,11,8,12,7,9,8,13,7,7,6,9,6,9,9,15,8,9,7,10,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,4,3,4,4,7,5,6,6,14,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,10,6,8,8,14,8,9,8,14,10,14,15,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,15,8,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,8,6,8,5,5,5,8,5,6,5,7,5,6,6,13,7,8,6,9,6,7,6,11,7,8,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,14,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,9,7,12,8,10,9,16,9,11,9,16,11,16,16,19,10,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,3,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,7,7,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,7,5,8,5,5,5,8,5,5,4,7,5,6,5,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,8,7,11,8,12,12,24 +-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,9,5,6,4,5,4,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,2,3,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,7,10,11,23,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,14,8,8,6,9,6,7,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,7,6,9,5,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,18,12,18,18,24,12,13,9,12,7,9,7,12,7,7,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,5,8,6,8,9,16,9,9,6,9,6,7,6,9,5,6,4,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,7,5,6,5,10,6,7,6,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,5,4,6,5,9,5,4,3,5,3,3,3,5,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,6,9,6,7,7,13,7,8,7,13,9,12,13,27,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,7,10,6,8,7,11,6,7,6,10,7,9,9,15,8,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,11,6,6,5,9,6,8,8,17,9,9,6,9,6,8,7,10,6,6,5,8,6,8,8,12,7,8,6,8,5,7,7,12,7,8,6,11,8,11,11,20,11,11,8,12,8,10,8,15,9,10,8,12,8,12,12,21,12,13,10,15,9,12,11,22,13,15,13,22,15,22,22,27,14,15,10,14,8,10,8,14,8,8,6,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,10,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,6,4,5,4,8,5,5,4,6,5,7,7,11,6,7,5,8,5,6,6,12,7,8,7,11,7,10,11,13,7,7,5,7,4,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,4,5,4,5,5,9,5,5,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,4,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,5,4,8,5,7,7,14,8,8,5,7,5,6,6,8,5,5,4,7,5,7,7,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,10,11,8,12,8,10,9,18,10,12,10,18,12,18,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,4,6,4,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,2,2,2,1,1,1,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,17,9,10,7,10,6,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,6,6,11,6,6,5,8,6,9,9,15,8,8,6,9,5,5,4,7,4,4,4,6,4,6,6,13,7,7,6,9,6,8,7,13,8,9,8,13,9,14,14,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,11,7,10,10,19,10,10,8,12,7,9,7,12,7,8,6,10,7,10,9,17,10,11,8,13,8,11,11,19,11,13,11,18,13,19,19,39,20,20,14,20,12,14,12,20,11,11,9,14,9,12,12,24,13,13,9,14,8,10,9,17,10,11,9,14,9,13,13,23,12,12,9,13,8,10,9,16,9,10,8,12,8,11,10,20,11,12,9,13,8,10,9,14,8,10,8,13,9,13,12,24,12,12,8,12,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,18,10,12,9,15,10,15,15,30,16,16,12,18,11,13,12,21,12,14,11,18,12,17,17,30,16,18,13,21,13,18,16,32,18,22,18,32,22,32,32,39,20,20,14,20,11,13,11,19,10,11,9,14,9,12,11,22,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,9,9,14,8,9,7,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,9,7,10,6,8,7,11,7,8,7,11,8,11,11,18,9,9,7,10,6,8,7,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,14,8,9,7,10,7,9,8,17,10,12,10,16,11,15,15,17,9,9,6,9,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,6,4,5,5,8,6,8,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,4,4,6,4,5,5,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,7,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,4,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,12,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,6,5,9,6,6,6,9,6,10,10,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,7,9,8,16,9,9,6,9,6,7,6,12,7,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,6,10,6,7,6,9,6,9,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,13,7,7,6,8,6,7,7,12,7,8,6,11,8,11,11,21,11,11,8,12,8,9,8,14,8,9,7,12,8,12,11,21,11,12,9,15,9,12,11,22,12,15,12,22,15,22,22,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,6,4,4,4,7,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,16 +-3,-1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,6,4,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,12,7,8,7,12,7,8,7,11,7,9,9,17,9,10,8,13,9,12,11,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,9,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,38,20,20,14,20,12,14,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,9,8,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,12,6,6,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,7,11,7,8,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,17,9,9,7,10,6,6,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,8,6,8,9,16,9,9,7,10,6,8,7,11,6,7,5,9,6,9,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,6,4,4,4,6,4,4,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,7,9,9,17,9,10,8,13,8,11,10,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,22,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,8,14,8,9,7,11,8,11,11,19,10,11,8,13,8,11,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,20,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,31,18,21,18,32,22,32,32,37,19,19,13,20,11,13,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,11,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,9,16,9,9,7,10,6,7,6,11,6,7,5,9,6,8,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,4,4,3,5,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,23,12,13,9,13,8,9,7,12,7,8,7,11,7,10,9,16,9,10,8,12,8,10,9,15,9,10,8,14,9,13,13,24,12,12,9,13,7,8,7,12,7,7,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,12,23,12,12,9,13,8,10,9,16,9,9,7,12,8,11,11,20,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,27,15,18,15,26,18,26,26,52,27,27,18,26,15,19,16,29,16,17,14,23,15,22,21,40,21,21,15,24,15,19,17,31,17,20,16,28,19,27,27,53,27,27,19,28,16,20,17,30,17,19,15,24,15,21,21,40,21,23,17,26,16,22,21,39,22,26,22,40,27,39,39,76,39,39,27,40,23,28,23,41,22,23,18,29,19,26,24,46,24,24,17,26,16,20,17,31,17,19,15,25,17,24,24,47,24,24,17,25,15,18,15,27,15,17,13,22,15,21,21,40,21,22,16,26,16,22,21,41,23,28,23,40,27,39,39,76,38,38,26,39,23,28,24,44,23,25,19,31,20,27,26,50,26,28,20,31,18,23,21,38,21,24,19,32,21,30,30,59,30,31,22,33,20,26,23,43,23,26,21,35,23,33,32,62,33,35,26,42,26,35,33,63,35,42,35,63,42,62,62,73,37,37,25,37,21,26,22,38,20,22,17,27,17,24,23,45,23,24,17,26,16,20,18,32,18,20,16,28,19,27,27,53,27,27,19,29,17,21,18,31,17,18,14,22,14,18,17,33,17,18,13,21,13,16,15,28,16,19,16,28,19,28,28,55,28,28,19,28,16,20,17,31,17,18,14,22,14,20,19,36,19,19,14,22,14,18,16,29,16,18,14,24,16,23,23,44,23,23,16,25,15,19,16,29,16,18,14,23,15,20,20,38,20,21,15,23,14,19,18,33,18,21,17,30,20,29,28,54,28,28,19,28,16,19,15,26,14,15,11,18,12,16,15,29,15,15,11,17,10,13,12,21,12,13,10,15,10,14,14,27,14,14,10,14,9,11,9,16,9,10,8,12,8,11,11,20,11,11,8,13,8,11,11,21,12,15,13,23,16,23,23,44,22,22,15,22,13,16,14,25,14,15,12,19,12,17,17,32,17,18,13,20,12,15,14,25,14,17,14,23,16,23,23,45,23,23,16,23,14,17,15,26,14,15,12,19,13,18,17,32,17,18,13,20,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,13,12,21,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,8,10,9,17,9,9,6,7,4,5,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,9,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,14,8,10,8,14,8,9,7,11,8,11,11,20,11,11,8,12,7,9,8,14,8,9,8,13,9,12,11,21,11,12,9,14,9,11,10,17,10,11,8,13,9,13,12,23,12,13,10,17,11,14,13,24,13,15,13,22,15,21,21,41,21,22,15,23,13,16,13,23,12,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,22,14,20,20,38,19,19,13,20,11,13,11,20,11,11,9,14,10,14,13,25,13,14,11,17,10,13,12,23,13,16,14,24,16,24,24,46 +-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12,6,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,8,9,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,10,9,15,9,10,8,13,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,16,9,10,8,13,9,13,13,24,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,11,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,30,16,16,12,17,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,19,13,19,11,13,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,9,16,9,10,8,12,8,10,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,19,10,11,8,12,8,10,9,17,10,11,9,15,10,15,15,28,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,12,8,12,8,9,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,5,9,6,6,5,7,5,7,6,12,6,7,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,13,9,12,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,15,9,10,8,12,9,13,13,23,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,12,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,31,16,16,12,18,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,18,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,28,14,14,10,15,9,10,9,16,9,10,8,12,8,10,9,18,10,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,15,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,7,9,6,8,7,11,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,13,9,12,12,24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,12,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,4,3,4,3,4,3,4,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,9,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,8,6,9,6,8,7,14,8,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,12,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,7,5,8,6,7,7,14,8,8,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,26,14,14,10,14,8,10,8,15,8,8,6,10,7,9,9,16,8,9,6,9,6,7,6,10,6,7,6,8,6,9,9,16,8,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,9,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,18,10,10,8,11,7,9,8,13,8,9,7,12,8,11,11,21,11,11,8,12,8,9,8,15,8,10,8,12,8,12,12,21,11,12,9,15,9,12,12,21,12,15,12,22,15,21,21,25,13,12,8,12,7,8,8,13,7,8,6,10,6,8,8,16,8,9,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,6,8,6,7,6,12,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,6,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,4,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,11,7,10,10,13,7,7,5,7,4,5,4,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,9,5,6,5,9,6,8,8,16 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,18,9,9,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,26,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,21,11,12,9,13,8,11,10,17,10,11,9,15,10,14,14,28,15,15,11,16,9,11,10,15,9,10,8,12,8,12,12,22,12,13,9,14,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,12,14,12,22,12,12,9,15,10,13,12,23,12,13,9,14,9,11,9,15,8,9,7,12,8,12,12,23,12,13,9,13,8,9,8,15,9,10,8,12,8,12,11,21,11,12,9,14,9,12,12,21,12,14,12,20,14,20,20,37,19,20,14,20,12,15,13,21,11,12,10,16,11,15,14,27,14,14,10,16,10,12,11,20,11,12,10,17,11,16,16,32,17,17,12,18,11,14,12,22,12,14,11,18,12,18,17,30,16,18,13,21,13,18,17,31,18,21,18,32,21,31,31,37,19,18,12,18,11,13,11,19,11,12,9,14,9,12,11,23,12,12,9,14,8,10,9,16,9,11,9,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,11,7,10,9,18,10,10,7,11,7,8,8,15,9,10,9,16,11,15,15,27,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,22,12,12,9,13,8,9,8,13,7,8,6,10,7,10,10,19,10,11,8,12,8,10,9,17,9,10,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,9,7,10,6,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,5,7,7,10,6,7,5,8,5,7,7,10,6,7,7,12,9,13,13,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,9,17,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,10,10,16,9,10,7,11,7,9,8,15,9,10,9,16,11,15,15,19,10,10,7,10,6,7,6,12,7,7,5,7,5,6,5,10,5,5,4,6,4,5,5,7,5,6,5,8,5,7,6,9,5,5,4,5,3,4,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,5,5,4,6,4,5,4,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,14,7,7,5,8,6,8,7,11,6,7,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,7,7,5,8,5,6,6,13,8,9,7,12,8,12,12,24 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,11,6,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,7,6,9,6,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,7,12,8,12,12,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,8,16,8,8,6,9,6,7,6,12,7,7,6,10,6,9,9,18,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,21,11,10,7,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,7,9,5,6,5,9,5,5,4,7,4,6,5,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,9,6,6,6,10,7,9,9,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,-2,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,4,2,2,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,13,7,6,4,7,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,6,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,8,16,9,9,7,9,5,6,6,11,6,6,5,9,6,8,9,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,15,8,8,6,10,7,9,9,15,9,10,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,19,10,10,7,11,7,9,8,14,8,8,7,11,7,10,10,21,11,12,8,12,8,10,9,14,8,9,7,12,8,12,12,20,11,12,9,14,9,12,12,21,12,14,12,22,15,21,21,25,13,12,8,13,8,10,8,13,7,8,6,9,6,8,8,16,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,11,6,7,6,11,6,6,5,8,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,9,7,10,10,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,8,6,8,5,6,6,11,7,8,7,12,8,11,11,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,4,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,16 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,7,4,6,6,11,6,7,5,7,4,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,5,5,9,5,6,5,8,5,7,8,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,13,7,7,6,9,6,8,7,13,8,9,8,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,6,9,6,8,7,12,7,7,6,9,6,8,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,4,4,4,5,4,5,5,10,6,6,4,7,4,5,5,9,6,6,5,8,6,8,8,18,9,9,7,10,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,-2,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,6,5,7,5,6,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,7,7,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,7,4,5,4,6,4,4,4,6,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,18,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,8,6,10,6,8,8,14,8,9,7,12,8,12,12,25,13,13,10,15,9,11,10,17,9,10,7,11,7,9,9,19,10,11,8,13,8,10,9,16,9,11,9,16,11,15,15,28,14,14,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,12,9,15,9,12,11,20,11,13,11,19,13,20,20,38,19,19,13,20,12,14,12,20,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,12,12,8,12,7,9,8,15,8,9,7,11,7,10,10,24,13,14,11,17,11,14,13,23,13,15,12,21,14,21,20,38,19,19,13,20,12,15,13,22,12,14,11,17,11,15,14,29,15,16,11,16,10,13,11,20,11,12,9,15,10,14,14,32,17,18,13,19,11,13,11,20,11,13,11,18,12,17,17,29,16,17,13,20,13,18,17,32,18,21,18,31,21,30,30,35,18,18,12,18,11,13,11,20,11,12,9,15,9,12,11,24,13,13,9,13,8,10,8,14,8,9,8,13,9,12,12,30,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,10,14,8,9,8,14,8,9,7,10,7,10,10,16,9,9,7,11,7,9,8,13,8,9,7,12,8,11,11,20,10,10,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,12,7,9,8,15,9,10,8,14,10,15,15,31,16,16,11,17,10,12,10,17,9,10,8,12,7,9,9,16,9,9,7,11,7,8,7,12,7,8,6,10,7,9,8,13,7,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,9,8,14,8,9,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,24,13,14,10,15,9,10,9,16,9,10,8,12,8,10,9,19,10,11,8,12,8,11,10,18,10,12,10,17,11,16,16,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,8,5,6,5,8,5,7,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,5,5,9,5,4,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,7,7,12,7,8,7,11,8,11,12,24,13,13,9,14,8,10,8,14,8,8,6,9,6,9,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,11,11,22,12,12,8,11,7,8,8,14,8,9,7,11,7,9,9,14,8,8,6,9,6,7,6,11,7,9,8,13,9,13,13,25 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,20,10,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,20,10,11,8,11,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,17,9,10,7,10,6,7,6,11,6,7,6,10,7,9,9,15,8,9,7,11,7,10,9,17,10,11,10,17,11,16,16,18,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,6,9,9,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,7,5,7,7,13 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,5,6,6,10,6,6,5,6,4,6,5,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,7,5,6,6,9,5,6,4,7,5,6,6,14,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,21,11,12,8,11,7,8,7,12,7,7,6,9,6,8,8,16,9,9,6,9,6,7,6,11,6,7,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,6,10,7,10,10,16,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,19,10,10,7,10,6,7,7,12,6,6,5,8,5,6,6,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,17,9,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,6,9,5,6,5,8,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,5,4,6,6,9,5,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,5,7,5,8,8,13,7,8,6,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,4,6,4,6,7,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,13,7,7,5,6,4,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,14 +-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,8,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,4,5,5,7,4,5,4,5,4,5,5,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,15,8,9,6,9,5,6,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,7,7,14,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,4,3,5,5,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,4,3,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,9,7,10,6,8,8,15,9,10,8,14,10,14,14,26,13,13,9,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,6,8,5,6,6,9,5,6,5,8,6,8,9,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,17,9,9,7,11,7,9,9,15,9,10,9,16,11,15,15,24,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,19,10,10,7,10,6,7,7,13,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,7,11,7,10,10,20,11,12,9,13,9,12,11,22,13,15,13,22,15,21,21,23,12,12,9,13,8,9,8,13,7,8,6,8,6,8,7,15,8,8,6,8,5,6,6,9,5,6,5,8,6,9,9,22,12,12,8,12,7,9,7,10,6,7,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,5,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,16,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,7,7,14,8,10,8,14,9,12,12,13,7,8,6,8,5,5,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,5,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,5,8,5,6,6,8,5,5,5,8,6,8,8,18,9,9,7,10,6,6,5,11,6,6,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,5,4,7,5,7,6,10,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,17 +-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,9,6,6,6,10,7,10,10,15,8,8,6,9,6,7,6,10,6,6,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,6,4,7,5,7,7,13,7,7,5,8,5,5,5,9,5,5,4,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,14,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,13,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,14,9,13,13,20,11,11,8,12,7,9,8,13,7,8,6,9,6,9,9,16,9,9,6,9,5,6,6,11,7,8,6,9,6,9,9,17,9,9,7,10,6,7,6,12,7,7,6,9,6,9,9,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,18,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,5,7,7,18,10,10,7,10,6,8,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,10,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,5,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,15 +-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,13,9,12,12,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,17,17,18,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,9,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,10,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,6,14,8,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,14 +-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,17,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,15,8,7,5,7,4,4,4,6,3,3,3,4,3,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,7,6,11,7,10,10,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,23,12,13,9,14,8,10,9,15,9,10,8,14,9,13,12,22,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,22,13,15,13,22,12,13,10,15,9,12,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,12,12,21,11,11,8,13,8,9,8,14,8,9,8,14,9,13,13,24,13,14,11,17,11,14,13,24,14,16,13,23,16,23,22,36,19,19,13,20,12,14,12,21,12,13,10,16,11,15,15,28,15,15,11,16,10,12,11,21,12,13,10,17,11,16,16,29,15,15,11,16,10,13,11,20,11,13,10,17,11,15,15,28,15,17,13,20,13,17,17,32,18,22,18,32,22,32,32,35,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,7,9,8,15,9,10,8,12,8,12,12,31,16,17,12,18,10,12,11,19,10,11,8,13,9,12,11,20,11,11,8,12,8,10,9,17,10,12,10,16,10,14,14,23,12,12,9,14,8,9,8,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,31,16,16,11,16,9,10,8,13,7,8,6,9,6,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,17,9,9,7,11,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,13,9,13,13,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,6,10,7,10,10,28,14,14,10,14,8,10,8,14,8,10,8,13,8,11,11,20,11,12,9,13,8,10,10,18,11,13,11,18,12,18,18,19,10,10,7,10,6,7,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,4,7,7,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,8,5,6,5,7,5,8,8,9,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,9,7,12,7,7,6,10,7,9,8,14,8,9,7,11,7,9,8,14,8,9,8,14,10,14,14,27 +-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,17,17,18,9,9,7,10,6,6,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,6,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,7,4,6,6,11,6,7,5,7,5,6,6,9,6,7,6,9,7,10,10,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,10,6,6,4,5,3,4,3,4,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,12,7,8,6,9,6,7,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,6,9,6,7,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,16,9,10,8,12,8,10,10,16,10,12,10,17,12,18,18,18,9,9,7,10,6,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,17,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,9,5,6,5,9,7,10,10,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,5,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,12,7,7,5,6,4,4,4,5,3,3,2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,8,8,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,5,10,5,5,4,5,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,5,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,8,5,7,7,13,8,9,7,12,8,12,12,26,13,13,9,13,8,9,8,12,7,8,6,9,6,7,7,13,7,7,5,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,6,8,7,13,8,9,7,12,8,12,12,21,11,10,7,10,6,7,6,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,12,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,18,10,10,8,13,8,11,10,17,10,12,10,18,13,19,19,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,7,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,5,5,9,5,6,5,8,5,7,7,18,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,6,5,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,14,8,8,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,10,6,7,6,10,8,12,12,12,6,6,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,2,2,2,2,3,3,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,7,12,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,17 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,8,5,5,4,5,4,5,4,8,5,6,5,7,5,7,7,16,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,8,5,7,6,10,6,7,6,11,8,11,11,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,5,4,6,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,5,9,5,6,5,7,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,21,11,11,8,10,6,8,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,7,6,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,13,7,8,6,10,6,8,8,13,8,9,8,13,9,14,14,15,8,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,5,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,5,8,5,5,4,7,5,6,5,8,5,6,5,8,6,9,9,9,5,4,3,5,3,3,3,5,3,2,2,3,2,2,2,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,7,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,5,3,3,2,2,2,3,3,4,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,3,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,4,6,4,4,4,7,5,8,8,17,9,9,6,9,6,7,6,9,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,8,8,14,8,10,9,15,10,15,15,34,18,18,12,17,10,11,9,16,9,9,7,10,7,9,9,15,8,9,7,10,6,8,8,14,8,9,7,11,8,11,11,18,9,9,6,9,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,28,14,14,10,15,9,10,8,14,8,10,8,13,8,11,11,18,10,10,8,13,8,10,9,16,9,11,9,15,10,13,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,10,21,11,12,10,16,10,13,12,22,12,14,12,21,15,22,22,25,13,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,8,5,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,15,8,9,7,10,6,8,7,12,7,7,6,10,7,10,9,12,7,7,5,7,5,6,5,8,5,5,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,6,7,6,10,6,6,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,7,5,8,5,6,5,8,5,6,5,9,6,9,9,17,9,9,7,11,7,8,7,12,7,8,6,9,5,6,6,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,5,6,6,10,6,7,5,8,6,8,8,13,7,8,7,11,7,9,8,15,9,10,8,14,10,15,15,16,8,8,6,8,5,6,5,7,4,4,4,6,4,5,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,5,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,3,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,5,5,9,6,8,8,17,9,9,6,8,5,7,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22 +-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,7,4,4,3,4,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,6,4,7,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,12,6,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,8,7,5,7,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,3,4,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,5,8,5,6,6,10,7,10,9,22,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,14,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,7,4,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,5,4,6,4,4,3,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,7,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11 +-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,2,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,11,6,5,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,14,8,9,7,10,6,8,7,14,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,17,9,8,6,8,5,6,6,12,7,7,6,10,7,9,9,16,9,9,7,10,6,7,6,13,8,10,8,14,10,14,13,24,13,13,9,14,8,10,8,12,7,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,8,7,13,8,9,7,11,7,9,9,17,9,10,8,12,8,11,10,19,11,13,11,18,12,18,18,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,9,6,7,6,9,6,9,9,15,8,8,6,10,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,7,11,6,6,5,8,6,8,7,13,8,10,8,14,10,14,14,17,9,9,6,9,5,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,8,6,9,5,6,5,8,4,4,3,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,18 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,7,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,20,10,11,8,10,6,7,6,9,5,6,5,7,4,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,12,6,7,5,8,5,7,7,13,8,9,7,12,8,12,12,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,11,6,6,5,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,4,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,3,3,4,4,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,5,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,29,15,15,10,14,8,10,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,10,6,6,6,10,6,8,8,16,8,8,6,8,5,7,6,11,6,7,5,9,6,9,8,16,9,9,6,10,6,7,7,12,7,8,7,12,8,12,12,22,12,12,8,13,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,11,7,10,9,17,9,10,7,11,7,10,9,18,10,12,10,17,12,17,17,24,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,14,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,5,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,4,6,6,9,5,6,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,28,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,9,6,6,6,9,6,8,8,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,10,6,7,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,5,4,5,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,8,5,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,14,10,14,14,16,8,9,6,9,5,6,5,8,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,6,6,9,6,9,9,17 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,2,2,3,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,9,5,6,5,7,5,8,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,-3,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,18,9,9,7,10,6,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,20,11,13,11,20,13,19,19,55,28,28,19,28,16,19,16,28,15,16,12,20,13,18,17,33,17,18,12,18,11,14,12,22,12,14,11,17,11,16,16,30,16,16,11,17,10,12,11,20,11,12,9,15,10,13,12,23,12,13,10,15,9,12,11,21,12,14,12,22,15,22,22,41,21,22,15,22,13,15,13,23,12,13,10,16,10,12,11,21,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,37,19,19,13,19,12,15,13,23,13,15,12,21,14,20,20,38,20,21,15,24,15,19,18,34,19,23,19,33,22,33,32,45,23,23,16,25,14,17,14,25,14,15,11,17,10,13,12,23,12,12,8,12,7,9,8,15,9,10,9,15,10,14,14,27,14,13,9,13,8,9,8,13,7,7,6,9,6,9,8,15,8,9,6,9,5,6,5,9,5,6,5,9,6,8,8,16,8,8,5,7,4,5,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,6,10,7,10,10,30,15,15,11,16,10,12,10,17,9,9,7,11,7,9,9,17,9,9,6,8,5,6,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,10,9,15,10,14,14,25,13,14,10,14,8,9,8,14,8,9,8,13,8,11,11,20,11,12,9,14,8,10,9,17,9,10,8,14,10,14,14,26,14,14,10,14,9,12,11,19,11,12,10,16,11,15,15,28,15,16,12,19,12,16,16,30,17,20,16,28,19,28,27,31,16,16,11,15,9,11,10,17,10,11,8,13,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,7,9,8,15,8,7,5,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,6,6,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,15,8,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,5,5,8,5,7,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,7,11,7,9,8,15,8,9,8,13,9,12,12,25,13,13,9,12,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,16,9,9,6,9,6,8,8,14,8,9,7,12,8,11,10,18,10,11,8,13,8,10,9,16,10,12,10,18,12,18,17,33 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,5,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,9,17,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,6,6,11,7,8,7,11,8,11,12,21,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,23,12,12,9,13,8,9,8,13,7,8,6,9,6,7,6,12,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,9,5,6,4,5,4,5,5,7,4,5,4,7,5,6,6,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,10,18,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,12,20,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,24,12,12,9,14,8,10,8,13,7,8,6,9,6,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,8,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,4,8,5,5,4,6,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,2,4,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,13,8,9,7,12,8,12,12,16,9,9,6,10,6,7,6,9,5,6,4,6,4,5,4,8,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,5,5,8,4,4,3,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,13 +-2,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,-1,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,7,4,5,4,5,4,5,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,7,4,5,5,11,6,7,6,10,7,10,10,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,6,7,6,11,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,8,12,7,9,8,13,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,11,18,12,18,18,24,13,13,9,14,8,10,8,14,8,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,5,5,8,5,7,7,15,8,8,5,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,5,5,8,6,9,9,13,7,7,5,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,13,7,7,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,10,7,9,9,15,9,11,9,16,11,16,16,16,9,9,6,8,5,6,6,10,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,7,6,10,7,10,10,19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,4,3,5,4,5,6,8,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,11 +-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,2,2,2,3,4,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,4,3,3,3,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,5,3,4,5,6,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,22,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,7,11,7,8,8,14,8,9,8,13,9,13,13,17,9,9,7,9,5,6,6,9,5,5,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,3,6,4,6,5,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,10,5,5,4,5,3,4,3,5,3,4,3,6,4,5,5,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,4,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14 +-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,10,6,6,4,7,4,5,5,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,7,7,12,7,7,5,6,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,5,4,4,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,1,1,2,1,1,1,2,1,1,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,3,6,4,6,5,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,4,3,5,4,5,4,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,7,8,4,4,3,5,4,5,5,10,6,7,7,12,8,12,11,34,18,18,12,17,10,12,10,18,10,11,8,13,8,10,9,22,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,14,8,8,6,10,6,7,6,11,6,7,6,9,6,8,7,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,6,13,7,8,6,10,6,8,7,12,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,23,13,14,10,16,10,13,12,22,13,15,12,20,14,20,20,26,14,14,10,15,9,10,8,14,8,9,7,10,6,8,7,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,15,8,8,6,9,5,6,5,7,4,5,4,5,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,10,16,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,9,5,6,5,8,5,7,6,10,6,6,5,9,7,10,10,15,8,8,6,8,5,7,6,10,6,6,5,9,6,9,8,19,10,11,8,13,8,10,9,16,10,12,10,17,12,18,18,17,9,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,5,10,6,7,5,8,5,6,6,11,7,8,7,12,8,11,11,21 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,7,5,7,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,4,4,6,4,4,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,11,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12 +-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,20,11,11,7,10,6,7,6,10,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,6,4,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,8,6,8,8,13,7,8,6,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,16,8,8,6,9,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,5,12,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,5,3,4,4,5,3,3,3,5,3,4,3,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,13 +0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,12,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,5,4,9,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,6,10 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,4,6,5,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,2,1,1,1,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,5,3,3,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,11,6,5,4,5,3,3,3,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,10,6,7,6,10,7,10,9,24,12,12,9,13,8,9,8,13,7,8,6,10,7,9,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,15,8,9,6,9,6,7,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,7,8,6,10,7,9,9,15,8,9,7,10,6,7,6,12,7,9,7,12,8,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,20,10,10,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,6,4,4,3,5,4,5,5,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,5,10,6,7,6,9,6,7,7,14,8,8,6,9,6,8,7,11,7,8,7,12,9,13,13,14,7,7,5,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,9,9,17 +0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,6,7,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,4,5,9,6,7,6,9,6,8,8,21,11,12,8,12,7,9,7,12,7,8,6,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,9,13,7,8,6,9,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,12,8,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,8,5,8,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,9,6,7,6,10,6,7,6,11,8,12,12,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16 +-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,16,9,10,7,11,7,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16 +-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,7,5,8,8,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,6,4,6,6,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,3,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,1,1,1,0,0,0,1,1,1,2,2,2,1,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,16,9,9,6,8,5,7,6,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,5,9,5,6,4,6,4,6,6,12,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,39,20,21,14,21,12,15,12,21,11,12,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,15,10,14,14,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,23,12,13,10,15,9,11,10,19,11,12,10,17,11,16,16,31,16,17,13,21,13,17,15,27,15,18,15,27,18,27,28,32,17,17,12,17,10,12,10,18,10,10,7,11,7,9,8,15,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,7,4,4,3,3,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,5,5,11,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,13,7,8,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,6,4,4,4,7,5,6,6,13,7,7,5,7,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,7,14,8,10,8,13,8,11,11,24,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,22,12,13,10,16,10,14,13,23,13,15,12,21,14,21,21,21,11,11,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,6,4,5,3,3,3,5,3,4,3,5,4,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,6,7,7,4,4,3,4,2,2,2,2,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,1,6,4,4,3,3,2,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,2,2,3,3,5,3,3,2,3,3,4,4,7,5,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,15,15,30 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,6,8,5,6,6,10,6,6,5,8,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,4,4,8,5,6,6,9,6,9,9,13,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,14,8,10,8,14,10,14,15,17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,6,8,7,12,7,8,7,11,8,11,11,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,4,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,8,8,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,4,3,4,4,6,4,5,4,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,6,4,6,4,4,4,9,5,6,6,10,7,10,9,14,7,7,5,9,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,15,9,10,8,15,10,15,16,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,8,5,7,7,8,4,4,3,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,5,4,8,5,6,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,12,6,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,16 +0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,7,5,6,6,15,8,9,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,7,4,5,5,8,5,7,7,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,7,6,11,7,8,6,11,8,11,12,14,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,6,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,11 +-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,6,5,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,7,4,4,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,4,10,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,6,10,7,10,9,24,13,13,9,14,8,9,8,12,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,5,9,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,11,7,8,7,12,8,11,11,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,17,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,4,3,7,4,4,3,5,4,5,4,7,4,4,4,6,4,5,4,9,5,6,5,9,6,9,8,14,7,7,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,7,10,6,8,8,14,8,9,7,12,9,13,14,12,7,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,6,3,3,2,3,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,8,5,5,4,7,5,6,6,8,5,6,5,9,6,9,9,17 +0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,9,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,7,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,4,4,6,4,6,6,10 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,4,3,4,3,5,4,5,4,6,3,3,2,4,3,4,4,7,4,4,4,7,5,8,7,19,10,11,8,11,7,8,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,13,9,14,14,18,10,10,7,10,6,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,7,6,11,7,8,7,10,7,11,11,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,6,5,7,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,14,8,9,7,10,6,8,8,14,8,9,8,12,9,13,13,17,9,9,6,9,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12 +-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,2,3,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,3,2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,10,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,5,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,9,5,6,5,7,5,6,5,9,6,7,6,9,7,10,10,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,8,14,8,9,7,12,8,12,11,18,9,9,6,9,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,13,13,26,14,14,10,16,10,12,10,18,10,12,9,15,10,13,13,26,14,16,12,19,12,16,14,26,14,16,13,23,16,24,24,32,16,16,11,16,9,11,9,16,9,10,8,12,7,9,9,16,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,6,4,4,4,6,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,5,5,4,6,4,6,6,10,6,8,7,12,8,11,11,20,11,11,8,12,7,9,7,12,7,8,7,11,7,10,10,22,12,13,10,15,9,12,10,18,10,12,10,18,13,19,19,17,9,9,6,8,5,7,6,10,6,6,5,7,4,5,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,2,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,23 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,19,10,9,6,9,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,8,10,8,13,9,14,14,18,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,7,5,7,7,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,6,9,6,7,6,10,6,7,6,11,8,11,11,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,7,5,7,7,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,7,5,8,8,13,7,7,5,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,7,13,7,8,5,7,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,6,9,5,6,5,10,7,10,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,16,11,16,16,21,11,11,8,11,7,8,7,11,6,6,5,9,6,8,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,3,2,2,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,7,6,12,7,8,7,13,9,12,13,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,7,5,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,18,10,10,7,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,11,8,10,11,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,2,2,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,8,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,6,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,6,6,9,6,7,6,10,7,10,10,31,16,16,11,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,9,6,7,6,13,7,8,6,10,7,10,10,18,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,6,9,6,8,7,11,7,8,6,10,7,10,10,19,10,10,7,11,7,9,8,12,7,8,6,9,6,8,8,15,8,9,7,10,7,9,8,12,7,9,8,13,9,13,13,24,13,13,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,10,16,10,13,13,25,14,17,14,24,16,24,23,32,16,16,11,16,9,11,10,16,9,9,7,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,6,10,7,10,10,18,9,9,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,10,7,10,10,18,10,11,8,12,7,9,9,18,11,13,11,19,13,19,19,16,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,5,5,9,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22 +-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,9,5,6,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,16,9,9,6,10,6,7,7,11,6,7,6,10,6,9,9,17,9,10,7,11,7,9,9,17,10,11,9,16,11,16,16,22,11,11,8,11,7,8,7,11,6,7,5,8,6,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,12,7,7,6,8,5,7,6,12,7,9,8,13,9,13,13,11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,1,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,6,9,7,10,10,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,13,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,11,7,8,7,11,8,12,12,23 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,14,8,8,5,7,4,5,4,8,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,8,7,11,8,12,12,23 +-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,5,4,6,7,14,8,8,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,14,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,6,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,9,6,8,8,16,9,9,7,12,7,9,9,16,9,10,8,14,9,13,12,23,12,13,10,15,9,12,12,22,12,14,11,19,13,18,18,62,31,31,21,31,18,22,19,33,17,18,14,22,14,18,17,32,17,18,13,20,12,16,14,26,15,17,13,22,15,22,22,43,22,23,16,24,14,17,15,26,14,16,12,19,12,16,16,30,16,16,12,18,11,14,13,23,13,15,13,22,14,20,20,38,20,20,14,20,12,14,13,23,12,13,10,17,11,14,13,24,13,13,10,16,10,12,11,20,11,13,11,19,13,19,18,35,18,19,13,19,12,15,13,24,14,16,13,21,14,20,20,40,22,24,18,30,19,25,24,45,26,31,26,45,30,45,45,65,33,32,22,32,18,21,18,32,17,18,13,21,13,17,16,31,16,17,12,17,10,13,12,21,11,12,9,15,10,13,13,25,13,12,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,8,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,11,13,11,19,12,17,17,32,16,16,11,15,9,10,9,15,8,9,7,11,7,9,8,15,8,8,6,10,6,7,6,11,7,8,7,12,9,13,13,24,13,13,9,14,9,12,11,19,11,12,9,15,10,14,14,27,15,17,13,21,13,18,17,32,19,23,19,34,23,35,35,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,6,6,11,7,8,6,10,7,10,10,18,9,9,6,9,5,5,4,5,3,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-3,-1,-1,0,0,1,1,1,0,1,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,4,5,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,13,7,8,7,11,8,11,10,19,11,12,9,14,9,11,10,19,11,13,12,21,15,22,22,44 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,32,16,16,11,16,10,12,10,17,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,11,13,10,16,10,13,12,23,13,16,13,23,16,23,23,33,17,17,11,16,9,11,9,17,9,10,7,11,7,9,9,16,8,9,6,9,6,7,6,11,6,7,5,8,6,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,7,13,7,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,11,7,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,12,12,23 +-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,5,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,10,32,17,17,11,16,10,12,10,16,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,10,8,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,7,10,7,10,10,20,11,13,10,16,10,14,13,22,13,16,13,23,15,22,23,33,17,17,11,16,9,11,9,17,9,10,8,12,8,10,9,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,2,2,3,5,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,5,3,4,4,5,4,5,5,10,6,6,4,7,4,5,4,7,4,5,4,6,4,6,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,9,5,6,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,12,8,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,9,6,7,6,11,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,3,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,22,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,9,7,11,7,9,9,15,9,11,9,15,10,15,15,23,12,12,8,11,6,8,6,12,6,7,6,8,6,7,7,10,6,6,4,6,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,6,4,4,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,8,6,7,6,11,7,8,7,11,8,12,12,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,2,4,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,5,4,8,6,8,8,16 +-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,2,2,4,3,5,5,7,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,9,5,5,3,4,3,4,4,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,13,7,6,4,6,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,32,16,16,11,16,10,12,10,16,9,10,8,12,8,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,9,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,12,8,11,11,20,11,11,8,12,7,9,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,11,8,11,7,8,7,14,8,9,7,10,7,10,11,20,11,13,10,16,10,14,13,22,13,15,13,22,15,23,23,35,18,18,12,16,9,11,9,17,9,10,8,12,8,11,10,15,8,8,6,9,6,7,7,11,6,6,5,7,5,7,7,12,7,7,5,6,4,5,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,7,5,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,10,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,5,7,7,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,9,10,8,12,8,10,9,16,9,11,9,16,11,17,17,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,7,5,7,5,7,6,9,6,7,6,11,8,12,12,24 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,4,5,4,7,5,7,7,14 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,2,2,4,3,3,2,3,2,2,2,2,2,2,3,7,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,22,12,12,8,11,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,7,10,7,10,9,16,9,10,9,15,11,16,16,24,12,12,8,11,6,7,6,12,7,8,6,9,6,8,7,11,6,6,4,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,2,1,0,0,1,1,1,1,2,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,7,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,12,7,8,6,8,5,7,7,12,7,8,7,11,8,12,12,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,5,5,6,4,6,5,8,6,8,9,17 +-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,19,10,10,7,9,6,7,6,10,6,7,5,8,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,14,7,7,5,8,5,5,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,6,8,6,8,8,14,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,8,14 +-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,4,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,33,17,17,12,17,10,12,10,18,10,11,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,8,7,11,8,11,11,19,11,12,9,14,9,13,13,24,14,16,13,23,16,23,23,35,18,17,12,17,10,12,10,16,9,10,8,13,8,11,11,16,9,9,6,9,6,7,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,6,4,5,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,8,8,18,10,11,8,12,8,11,10,18,10,12,10,17,12,17,17,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,3,3,6,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,8,5,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,8,7,11,8,12,13,25 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,13,8,9,8,13,9,12,12,19,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,5,7,7,13 +-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,4,3,4,3,6,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,20,10,10,7,11,6,7,6,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,4,3,5,4,6,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,13,7,8,5,7,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,8,14,8,9,8,14,9,13,13,21,11,11,8,10,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,5,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,8,5,6,6,11,6,7,6,11,7,10,10,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,4,5,4,6,5,7,7,14 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,5,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,4,3,5,4,6,6,10 +-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,4,4,6,4,6,6,7,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,9,5,6,5,8,5,6,6,9,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,13,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,5,5,10,5,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,7,6,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,8,16,9,11,9,16,11,16,16,27,14,14,10,14,8,8,7,13,7,8,6,10,6,8,8,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,11,6,6,4,4,3,4,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,6,6,14,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,5,3,4,4,6,4,5,5,8,6,9,9,16 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,11,6,6,4,5,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,5,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,3,3,5,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,5,3,3,3,4,2,3,3,4,3,3,3,5,4,6,6,10 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,3,2,2,2,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,24,12,12,9,13,8,9,8,12,7,8,6,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,15,8,8,5,7,5,6,5,8,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,13,9,14,14,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,13,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,4,7,5,7,7,13 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,8,7,12,8,13,13,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,5,3,4,4,7,5,7,7,12 +-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,1,1,2,2,3,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,6,4,5,5,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,16,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,9,6,9,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,10,6,7,5,8,5,6,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,8,15,9,11,9,15,10,15,16,44,23,23,16,24,14,17,14,24,13,14,11,17,11,14,13,24,13,13,9,12,7,9,8,13,7,8,7,12,8,11,11,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,27,14,13,9,13,8,9,8,13,7,7,6,9,6,8,8,15,8,8,6,8,5,7,7,12,7,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,8,7,12,8,10,10,18,10,10,8,12,8,11,11,20,12,14,12,21,15,22,23,41,21,21,14,21,13,16,14,24,13,14,10,15,10,13,12,22,12,12,8,11,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,11,6,5,4,5,3,3,3,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,7,6,11,6,7,6,11,7,10,10,14,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,22,11,11,8,12,7,9,8,13,7,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,11,7,10,10,17,9,10,8,12,7,9,9,16,9,10,8,14,9,12,12,22,12,12,9,14,9,12,11,21,12,13,11,18,12,18,18,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,7,7,5,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,4,3,4,3,-2,0,0,1,1,1,2,2,4,3,4,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,16,8,8,6,9,6,7,6,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,13,7,8,6,8,6,7,7,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,4,3,5,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,4,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,6,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,13,13,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,4,4,3,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,17,9,9,6,9,6,7,6,10,6,6,5,7,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,4,5,4,7,5,8,8,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8 +-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,3,4,3,4,3,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,26,13,13,9,14,8,9,8,15,8,8,6,10,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,7,7,11,7,9,8,13,9,14,14,27,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,14,7,7,5,8,5,7,6,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,8,5,6,5,7,5,7,6,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,8,5,5,3,4,3,4,3,5,3,3,3,5,4,5,5,12,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,8,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,12,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,7,5,8,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,5,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,1,0,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,2,2,1,1,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,3,4,3,4,4,7 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,1,1,1,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,21,11,10,7,10,6,7,6,12,6,6,5,8,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,13,7,8,6,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,4,6,4,6,6,10,6,7,6,11,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,6,6,5,7,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,3,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,9 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,7,6,10,6,6,4,7,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,19,10,11,7,11,6,8,7,11,6,7,6,8,6,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,8,5,5,4,5,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8 +-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,0,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,3,3,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,4,6,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,10,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,10,9,15,10,14,14,36,18,18,12,18,10,12,10,18,10,11,8,12,8,10,9,17,9,9,6,9,6,7,7,12,7,9,7,12,8,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,8,21,11,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,7,5,7,5,6,5,8,5,6,5,8,6,8,9,13,7,8,6,9,6,7,6,10,6,7,5,8,6,8,8,16,9,10,7,11,7,10,9,16,9,11,10,17,12,19,19,35,18,18,13,20,12,14,12,21,12,13,10,15,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,10,6,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,8,4,4,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,7,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,16,9,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,10,15,15,15,8,8,5,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,4,3,4,2,2,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,-2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,7,6,9,6,8,8,15 +-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,6,8,8,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,4,4,4,5,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,6,5,9,5,6,6,10,7,11,11,20,10,10,8,11,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9 +-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,9,5,6,4,5,3,4,3,5,3,3,3,4,3,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,9,5,6,6,9,6,9,9,23,12,12,8,11,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,6,4,7,5,6,5,10,6,6,5,9,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,10 +-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,5,7,5,8,8,19,10,10,7,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8 +-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,4,4,6,5,7,7,9,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,7,14,8,9,7,12,9,13,13,32,16,16,11,16,9,10,9,16,9,10,8,12,8,10,9,17,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,20,10,10,7,11,7,8,7,10,6,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,7,17,9,10,7,10,6,8,7,9,5,6,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,5,7,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,9,15,9,11,9,16,11,16,16,33,17,17,12,18,10,12,11,19,10,11,9,14,9,11,10,19,10,10,7,10,6,7,7,10,6,7,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,5,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,5,7,7,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,17,9,9,6,9,5,6,5,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,13 +-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,5,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,9,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,6,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,5,4,6,4,6,5,9,6,7,6,10,7,10,10,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,5,5,7,5,8,8,10,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,13,7,8,7,13,9,12,12,30,16,16,11,15,9,11,9,15,9,10,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,6,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,7,15,8,8,6,8,5,6,6,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,7,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,15,9,10,9,15,10,15,15,32,17,17,12,18,10,12,10,17,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,8,7,13,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,13,9,12,12,29,15,16,11,15,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,6,9,6,9,8,15,9,10,9,15,10,15,15,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,18,9,9,6,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,11,6,7,6,8,6,8,7,13,8,9,8,13,9,14,14,17,9,9,6,9,5,6,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-24,-11,-11,-7,-11,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,7,6,11,8,11,12,30,16,16,11,17,10,12,10,18,10,10,7,10,7,9,8,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,9,13,8,10,9,16,9,11,9,14,9,12,12,23,12,12,9,14,9,11,10,18,10,12,10,17,11,16,16,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,11,12,9,14,9,13,13,24,13,15,13,22,15,23,23,57,29,29,20,29,17,20,16,28,15,17,13,20,13,18,17,32,17,17,12,18,11,14,13,23,13,14,12,20,13,19,18,34,17,17,12,18,11,13,11,19,10,11,8,13,9,12,12,22,12,12,8,12,8,10,9,15,8,9,7,12,9,13,13,28,14,14,10,14,9,11,10,17,9,9,7,11,7,10,9,17,9,10,7,10,7,9,8,15,8,9,7,12,8,11,11,22,12,12,9,13,8,10,8,14,8,10,8,14,9,13,13,24,13,15,11,18,12,17,16,30,17,20,17,29,20,29,29,63,32,31,21,31,18,21,17,29,15,16,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,14,10,14,14,26,13,13,9,13,8,9,8,13,8,9,7,11,7,9,9,17,9,9,6,9,6,7,6,9,6,7,6,9,6,9,9,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,9,7,10,10,25,13,13,9,14,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,10,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,9,6,9,6,9,8,15,8,9,7,12,8,12,12,27,14,13,9,13,8,10,8,14,8,8,6,9,6,9,9,16,9,9,6,9,6,8,8,14,8,9,8,14,10,14,14,28,15,16,11,17,10,13,12,21,12,14,11,19,13,18,17,32,17,18,13,20,13,17,15,28,16,19,16,27,18,27,27,33,17,17,12,17,10,11,10,17,9,9,7,10,6,8,8,15,8,8,6,9,5,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,6,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,6,5,7,4,5,5,7,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,4,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,6,7,5,8,5,6,6,11,7,8,8,14,10,14,14,27 +-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,9,17,9,9,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,5,7,7,15,8,8,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,16,9,10,9,15,10,15,15,32,16,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,4,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,5,3,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,3,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,10,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,30,16,16,11,15,9,10,9,15,8,9,7,11,7,9,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,15,8,8,5,8,5,6,5,9,5,6,4,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,6,4,6,6,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,8,6,11,7,10,9,16,9,10,9,15,10,15,15,33,17,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,4,4,5,4,6,6,14,8,8,6,7,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,18,9,9,6,10,6,6,6,10,6,6,4,6,4,6,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,7,4,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,12,6,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,8,5,7,6,11,6,7,6,10,7,11,11,23,12,11,8,11,6,8,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,4,2,3,3,5,3,4,4,5,4,6,6,10 +-13,-6,-6,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,3,2,3,2,3,2,3,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,13,7,8,6,8,5,6,6,12,7,7,6,10,7,10,10,11,6,7,5,8,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,7,6,11,6,7,5,8,6,8,7,13,7,8,7,12,9,13,13,31,16,16,11,16,10,12,10,16,9,10,8,12,8,10,9,17,9,10,7,10,6,7,7,14,8,9,7,12,8,11,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,16,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,7,12,8,10,9,17,10,11,9,15,11,16,16,35,18,18,12,16,9,11,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,5,5,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,3,2,3,2,3,2,3,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,4,4,5,3,4,4,6,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,5,8,6,8,7,11,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,5,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,12,7,9,9,16,9,11,9,14,10,15,15,20,10,10,7,11,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,4,4,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,3,3,3,3,2,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,15 +-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,5,5,7,5,8,8,18,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,12,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +-10,-4,-4,-3,-6,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,4,4,6,4,4,3,4,2,2,2,5,3,3,3,5,4,5,5,12,7,7,5,7,5,6,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,9,6,7,6,9,6,9,9,21,11,11,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,7,5,6,6,11,6,7,6,8,6,8,8,13,7,8,6,7,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,12,7,9,7,11,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,5,10,6,6,4,7,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,4,5,4,6,6,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,6,4,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,8,6,9,6,7,6,12,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,11 +-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,11,7,8,6,10,6,6,4,7,4,6,5,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,4,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,10 +-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,9,5,5,3,4,3,3,3,6,4,4,4,7,5,8,8,19,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,5,8,6,8,8,15,8,9,6,9,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,13,7,8,6,10,7,9,8,14,8,10,8,13,9,13,13,33,17,17,12,17,10,12,10,18,10,11,9,14,9,11,10,21,11,12,8,12,7,9,9,16,9,10,8,14,9,12,11,19,10,10,7,11,7,8,6,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,9,5,6,5,7,5,8,8,20,10,10,7,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,7,7,16,9,9,6,8,5,7,6,10,6,7,6,9,6,9,9,18,10,11,8,13,8,11,10,18,10,12,11,19,13,19,19,40,20,20,14,20,11,13,11,18,10,11,8,13,8,10,9,19,10,10,7,10,6,7,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,7,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,4,6,4,5,4,6,4,4,3,5,4,6,6,16,9,9,6,8,5,6,5,9,5,5,4,7,4,5,4,8,5,5,3,4,3,4,4,7,4,5,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,7,12,7,9,8,13,9,12,12,21,11,11,8,11,7,9,8,14,8,9,7,12,8,12,11,19,10,11,8,13,8,11,10,18,10,12,10,18,12,18,17,24,12,12,8,11,7,8,7,12,7,8,6,9,6,8,8,10,6,6,5,7,4,5,4,6,4,5,4,7,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,5,9,5,5,4,6,4,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,9,17 +-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,9 +-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,12,8,11,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,13,7,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,12,8,12,12,25,13,13,9,13,7,8,7,11,6,6,5,9,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,3,3,2,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,4,5,5,10 +-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,11,6,7,6,9,6,7,6,11,6,7,6,11,8,11,12,27,14,14,10,16,9,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,12,7,8,6,10,7,10,9,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,8,14,10,15,15,34,17,17,11,16,9,11,9,15,8,9,7,11,7,8,7,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,5,5,12,7,7,5,8,5,6,5,8,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,17,9,10,7,10,6,8,7,10,6,6,5,7,5,7,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,10,7,10,7,9,8,14,8,9,8,14,10,15,15,22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,6,4,5,4,8,4,5,4,8,5,7,8,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,22,11,11,8,11,6,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,7,5,7,4,5,5,7,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,14,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,9,5,6,6,11,6,7,6,11,7,10,10,26,14,14,10,15,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,5,6,4,5,5,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,4,12,6,6,5,8,5,5,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,5,8,5,6,6,16,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,3,4,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,6,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,5,6,6,15,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-34,-17,-17,-11,-16,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,4,7,4,5,5,8,5,7,7,5,3,3,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,9,6,9,8,15,9,10,8,13,9,12,12,23,12,13,9,14,8,10,8,14,8,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,18,10,10,7,11,6,7,6,11,6,7,6,9,6,9,9,17,9,9,7,11,7,8,7,13,7,8,7,12,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,11,20,11,11,8,11,7,8,7,12,7,8,7,11,8,11,11,20,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,49,25,25,17,24,13,15,13,22,12,13,10,16,10,14,13,24,13,13,9,14,9,11,10,19,11,13,10,17,11,15,15,27,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,16,9,9,7,12,7,9,9,16,8,8,6,9,6,8,8,14,8,8,6,10,7,9,9,27,14,15,11,17,10,12,11,20,11,12,10,17,11,15,14,27,14,15,11,17,11,14,14,26,15,17,14,25,17,26,26,61,31,31,21,31,17,20,16,27,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,14,8,9,7,11,7,10,9,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,7,12,8,12,12,10,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,29,15,16,11,16,9,11,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,11,17,10,12,10,18,10,12,10,17,11,15,15,28,15,15,11,18,12,16,15,29,16,18,15,26,18,26,26,39,20,19,13,19,11,13,11,19,10,11,8,12,8,10,10,18,10,10,7,11,7,8,6,10,6,6,5,9,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,4,6,4,5,4,6,4,6,5,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,3,5,4,6,6,8,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,7,5,7,5,7,6,11,6,7,5,8,6,8,8,15 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,8,7,11,8,11,11,26,13,13,9,13,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,8,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,21,11,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +-18,-9,-9,-5,-9,-4,-5,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,4,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,13,7,8,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,7,5,7,6,12,7,8,6,9,6,8,7,13,7,8,7,12,8,11,11,27,14,14,9,14,8,9,7,13,7,8,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,10,7,9,9,16,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,16,9,9,6,9,6,7,7,12,7,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,14,14,34,17,17,11,17,10,11,9,15,8,8,6,10,7,9,8,14,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,7,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,7,17,9,9,6,9,5,6,5,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,7,11,7,10,9,16,9,10,9,15,10,15,15,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,7,5,6,4,4,4,6,4,4,4,5,4,6,6,12,6,6,5,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,10,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,10,6,6,4,5,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,5,8,5,6,6,11,7,8,6,10,7,9,9,17,9,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,6,15,8,8,6,8,5,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,30,16,16,11,16,9,10,8,15,8,9,7,11,7,9,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,6,9,9,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,19,10,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,10,7,10,7,9,8,16,9,11,9,16,11,16,16,40,20,19,13,18,10,12,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,11,7,8,6,10,7,10,9,21,11,10,7,10,6,7,6,12,7,8,6,9,6,8,8,12,7,7,5,8,5,7,6,10,6,7,6,10,7,10,11,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,20,11,11,8,12,8,11,10,18,11,13,11,18,12,18,18,28,14,14,10,14,8,10,9,14,8,9,7,10,6,8,7,14,7,7,5,7,4,5,5,7,4,5,4,7,5,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,6,5,8,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,5,3,3,3,4,3,4,4,3,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,9 +-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,12,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,7,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,18,9,9,6,9,5,6,6,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6 +-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,5,7,7,13,7,8,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,9,6,8,7,12,7,9,7,13,9,12,12,25,13,13,9,13,8,9,7,12,7,8,6,9,6,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,10,6,6,5,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,6,4,6,6,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,8,10,8,14,10,14,14,32,16,16,11,16,9,11,9,14,8,9,7,10,7,9,8,12,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,9,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,10,7,10,6,8,8,15,9,11,9,16,11,16,16,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,12,6,6,4,7,4,5,5,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,11,6,6,4,5,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8 +-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,6,7,7,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,12,7,7,6,9,6,7,7,12,7,9,7,13,9,12,12,30,15,15,10,15,9,10,8,13,7,8,6,9,6,8,7,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,2,3,2,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,7,15,8,9,7,10,6,8,8,14,8,10,8,15,10,14,14,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8 +-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,8,8,6,10,6,8,7,12,7,9,7,12,8,12,11,23,12,12,8,12,7,9,8,13,7,8,6,10,6,7,7,14,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,16,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,10,8,12,8,10,9,16,9,10,8,13,9,14,14,24,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,11,7,8,8,14,8,9,7,10,7,10,9,20,10,10,7,11,7,8,8,14,8,9,7,12,8,11,10,19,11,12,9,14,9,12,12,22,13,15,13,22,15,21,21,42,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,19,10,11,8,12,7,9,9,16,9,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,13,8,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,9,10,8,12,8,10,9,17,9,9,7,11,7,8,8,14,8,9,8,13,9,12,11,27,14,14,10,15,9,11,10,18,10,11,9,15,10,14,14,22,12,12,9,15,10,13,12,22,13,15,13,23,15,22,22,57,29,28,19,27,15,18,15,25,13,14,11,18,11,14,13,21,11,11,8,12,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,6,5,8,6,9,9,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,6,4,6,6,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,21,11,11,8,11,7,8,7,11,6,7,6,9,6,9,8,14,8,8,6,9,5,6,6,10,6,7,5,8,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,9,7,11,7,9,9,16,9,10,9,15,10,14,14,31,16,17,12,17,10,12,10,16,9,10,8,13,9,12,11,17,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,27,14,14,10,15,9,11,10,18,10,11,9,15,10,13,13,27,14,15,11,18,11,15,14,26,15,18,15,27,18,26,26,48,24,24,16,23,13,15,13,22,12,12,9,14,9,12,12,21,11,11,8,11,7,9,8,13,8,9,8,13,9,12,12,24,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,3,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,8,5,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14 +-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,32,16,16,11,15,9,10,8,14,8,8,6,10,6,8,8,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,4,5,5,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,9,13,8,9,8,13,7,7,5,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8 +-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,5,6,4,5,5,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,7,12,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,9,9,7,9,5,6,5,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,18,9,9,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,11,7,10,9,15,9,11,9,16,11,16,16,38,19,19,13,18,10,12,10,17,9,10,8,12,8,10,9,14,8,8,6,8,5,7,6,11,6,6,5,8,6,8,7,12,6,6,5,6,4,4,4,6,4,4,3,5,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,12,7,8,7,10,7,10,10,21,11,11,8,11,7,8,7,10,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,9,5,6,6,11,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,17,9,10,8,13,8,11,10,18,10,12,10,18,12,18,18,33,17,17,11,16,9,10,9,16,8,8,6,11,7,8,8,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,4,5,5,7,4,4,4,7,5,6,6,12,6,6,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,9 +-18,-8,-8,-5,-8,-4,-6,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,4,6,5,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,12,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,5,4,4,4,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,6,9,6,7,6,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,11,7,9,8,15,9,10,9,15,10,15,15,28,15,15,10,14,8,9,8,13,7,7,6,9,6,7,7,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8 +-33,-16,-16,-10,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-5,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,8,5,6,5,10,6,6,4,6,4,6,6,15,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,16,9,9,6,9,6,7,7,13,8,9,8,13,9,14,14,26,13,13,9,14,8,10,9,13,7,8,6,10,6,8,8,17,9,10,8,12,7,9,8,14,8,8,7,11,7,10,9,20,11,11,8,12,7,8,7,12,7,8,7,11,7,9,9,17,10,11,8,13,8,11,10,19,11,14,12,20,14,21,21,39,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,18,10,10,7,10,7,9,8,14,8,9,8,14,10,14,13,25,13,14,10,14,8,9,8,15,8,9,7,12,8,10,10,18,10,10,7,10,6,8,7,14,8,10,8,14,10,14,13,25,13,14,10,14,9,11,9,15,9,10,8,12,7,9,9,17,9,9,7,10,6,8,8,12,7,9,8,13,9,12,12,26,14,14,10,14,9,11,10,17,9,10,8,13,9,13,12,21,11,12,9,15,10,13,12,22,13,15,13,22,15,22,22,55,28,28,19,28,16,19,16,27,14,15,11,18,11,14,13,21,11,12,8,12,8,10,9,16,9,9,7,10,7,9,9,19,10,9,6,9,6,7,6,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,9,7,10,6,8,8,17,10,12,10,16,11,16,15,31,16,16,11,16,9,11,9,15,9,10,8,12,8,10,10,18,10,10,8,12,7,9,9,14,8,10,9,15,10,14,14,28,15,15,11,16,10,12,11,19,10,11,9,14,9,13,13,25,13,14,11,18,11,15,14,26,15,18,15,26,18,26,26,50,26,26,18,26,14,16,13,23,12,13,10,16,10,13,12,23,12,12,8,12,7,8,7,15,9,10,8,12,8,11,11,21,11,11,8,12,7,9,8,13,7,8,6,10,7,9,8,13,7,7,5,8,5,7,7,11,6,7,6,9,6,8,8,17,9,9,7,10,6,6,5,10,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,5,4,7,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,6,6,9,6,10,10,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,6,7,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,8,7,13,8,10,8,13,9,14,14,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,36,19,19,13,19,11,13,11,18,10,10,8,12,8,10,9,15,8,8,6,9,6,7,6,11,6,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,8,11,10,21,11,11,8,11,6,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,8,13,7,8,6,10,7,9,9,17,9,10,8,12,8,11,10,18,10,12,10,17,12,18,18,33,17,17,12,18,10,11,9,16,9,9,7,11,7,9,8,16,8,8,6,8,5,6,6,10,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-4,-6,-6,-14,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,12,7,8,6,8,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,12,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,13,7,8,7,10,7,9,9,17,9,10,8,12,7,8,7,14,8,9,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,11,7,10,9,17,9,10,8,13,8,11,10,20,12,14,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,18,10,10,7,11,7,8,8,14,8,10,8,14,9,13,13,25,13,14,10,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,28,19,28,16,18,15,26,14,14,11,17,11,14,13,22,12,12,9,13,8,10,9,15,8,8,6,10,7,10,10,19,10,10,7,10,6,6,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,12,9,16,11,16,15,31,16,16,11,16,9,11,9,15,8,9,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,10,9,14,10,14,14,27,14,14,10,16,10,12,11,18,10,12,9,15,10,14,13,25,14,15,11,18,12,16,15,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,4,5,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,14,8,9,7,11,7,9,9,17,9,10,8,11,7,8,7,13,8,9,7,11,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,13,8,11,10,20,11,13,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,13,8,11,10,19,10,10,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,13,9,13,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,13,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,27,18,27,16,18,15,26,14,15,11,17,11,14,13,23,12,12,9,13,8,10,9,15,8,9,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,11,9,16,11,16,16,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,10,17,9,9,7,11,7,9,8,15,8,10,9,14,10,14,14,27,14,14,10,15,9,12,11,18,10,12,9,15,10,14,13,25,14,15,11,17,11,15,14,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,5,7,5,7,7,13 +-70,-35,-35,-23,-34,-19,-23,-19,-35,-17,-18,-12,-20,-11,-15,-14,-28,-14,-14,-9,-13,-7,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-19,-19,-40,-20,-20,-13,-20,-11,-13,-10,-19,-9,-9,-6,-11,-6,-9,-9,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-9,-8,-15,-9,-14,-14,-28,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-5,-7,-7,-15,-7,-6,-3,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,1,1,1,1,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,8,8,15,8,9,8,13,9,12,11,20,12,15,13,23,16,23,24,47,24,25,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,13,9,14,8,10,8,14,8,8,7,11,7,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,31,16,17,12,18,11,14,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,14,12,22,13,15,13,22,15,21,21,41,21,21,15,22,13,17,15,27,15,16,12,19,12,17,17,32,17,19,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,34,19,23,19,34,18,20,15,25,16,22,20,38,20,20,14,22,13,16,14,24,14,16,13,21,14,19,19,37,19,20,14,22,13,16,14,24,13,15,12,19,12,16,16,30,16,17,13,21,13,17,16,31,18,21,17,30,20,30,30,58,30,30,21,31,18,21,18,32,17,19,15,24,15,20,19,36,19,19,13,20,12,15,14,25,14,16,13,22,14,20,20,38,20,21,15,22,13,17,15,27,15,17,14,24,16,22,21,40,21,23,17,28,17,23,21,40,23,27,23,40,27,41,42,104,53,54,37,55,31,38,32,56,29,31,23,38,23,31,29,56,29,29,21,32,19,24,21,37,21,24,20,34,22,32,31,61,31,31,21,31,18,22,19,33,17,18,14,22,14,19,18,34,18,18,13,21,13,18,17,32,18,21,17,30,20,28,28,54,28,28,19,29,17,20,17,30,16,18,14,24,15,21,20,37,19,20,15,24,15,19,17,31,18,21,17,29,19,27,27,53,27,27,19,29,17,22,19,35,19,22,17,28,18,26,26,51,27,29,21,34,21,27,25,48,27,31,26,45,30,45,45,88,45,45,30,45,26,31,26,46,24,26,20,32,20,26,24,45,23,24,17,27,16,20,17,31,17,20,16,26,17,23,23,44,23,23,16,24,14,17,14,25,14,16,12,20,13,17,17,32,17,18,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,35,20,23,20,35,19,21,17,28,18,24,23,45,23,24,17,26,16,20,18,34,19,23,19,33,22,32,32,64,33,33,23,34,20,24,21,37,20,23,18,31,20,28,27,51,27,30,22,36,22,29,27,52,29,34,28,49,33,49,49,98,49,49,33,49,28,33,28,50,27,29,21,34,21,28,26,49,25,26,18,28,16,20,18,33,18,20,16,27,18,26,25,49,25,26,18,26,15,18,15,27,15,16,13,22,14,20,19,36,19,19,13,20,12,15,13,24,13,15,12,21,14,21,21,42,22,22,15,23,14,17,15,27,15,16,12,20,13,18,17,31,16,17,12,19,12,17,16,29,16,18,15,26,18,26,25,49,25,25,17,25,14,17,15,27,15,17,14,23,15,21,20,39,21,22,17,27,17,23,22,41,23,28,23,41,28,41,40,79,40,41,28,41,24,29,24,43,23,25,18,29,18,24,22,41,21,21,14,21,13,16,14,24,13,14,11,19,13,18,18,34,17,17,12,18,11,13,11,20,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,19,11,12,10,18,12,16,16,30,16,16,11,15,9,11,9,15,8,9,7,12,7,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,10,9,16,9,9,7,10,6,8,7,13,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,26 +-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,8,7,12,8,12,12,24,12,13,9,13,8,9,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,16,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,9,8,14,8,8,6,10,7,9,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,10,11,8,11,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,15,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,11,7,10,9,16,9,11,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,15,11,18,11,14,13,25,14,16,14,23,16,23,23,45,23,23,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,17,12,17,17,34,18,18,12,18,10,12,10,18,10,11,9,15,10,13,12,23,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,26,14,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,25,17,25,14,17,15,25,14,15,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,8,14,8,8,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,8,13,9,14,13,25,13,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,21,14,21,20,40,21,21,14,21,12,15,12,22,12,13,10,15,10,13,12,21,11,11,8,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,7,6,11,6,6,5,8,6,7,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,13 +-35,-17,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,5,7,5,6,6,10,6,7,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,8,14,8,8,7,11,7,10,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,20,10,10,7,11,7,8,7,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,16,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,18,10,10,8,12,8,10,9,18,10,10,8,11,7,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,14,11,18,11,14,13,25,14,17,14,24,16,23,23,45,23,24,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,18,10,12,10,19,11,12,9,15,10,13,12,22,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,27,15,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,24,17,25,14,17,15,25,13,14,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,13,7,8,7,11,7,9,9,16,9,9,7,10,7,9,9,16,9,10,8,13,9,14,13,24,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,19,10,11,9,13,9,12,11,20,12,14,12,21,14,20,20,41,21,21,14,20,12,14,12,22,12,12,9,16,10,13,12,21,11,11,7,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,9,5,6,4,5,3,4,4,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,7,13 +-23,-11,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,5,10,6,6,5,8,5,7,6,11,6,7,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,20,10,11,7,11,6,8,7,12,6,7,6,9,6,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,35,18,18,13,19,11,13,11,20,10,11,8,14,8,11,10,20,11,11,8,12,7,9,8,13,8,8,7,12,8,12,11,21,11,11,8,11,7,8,7,12,7,7,6,8,6,7,6,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,6,8,6,7,6,11,6,7,6,10,7,9,9,18,9,9,7,10,6,7,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,6,12,7,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,5,8,5,6,6,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,12,24,12,12,8,12,7,9,8,13,8,8,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,8,8,13,8,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,17,9,9,7,11,6,7,7,12,6,7,6,10,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,11,6,7,6,9,7,10,9,16,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,14,14,10,14,8,9,8,15,8,8,7,11,7,9,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,12,6,6,5,7,4,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,3,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,5,9 +-35,-17,-17,-11,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-9,-6,-9,-9,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,7,5,7,6,10,6,8,7,11,8,11,12,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,7,5,6,6,8,5,5,5,8,6,8,8,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,6,11,7,8,7,11,7,10,10,20,11,11,7,10,6,8,7,14,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,10,17,12,17,17,33,17,17,12,17,10,12,10,17,9,10,8,13,8,11,11,20,11,11,7,10,6,8,7,13,7,8,7,11,7,9,9,20,11,11,7,10,6,7,7,11,7,8,6,10,7,9,9,16,9,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,15,10,15,9,11,10,17,9,10,8,12,8,10,9,18,10,10,7,11,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,9,7,12,8,11,11,21,11,12,9,14,9,12,11,21,12,14,12,20,14,21,21,53,27,27,19,28,16,20,17,29,16,17,13,20,13,17,15,30,16,16,12,18,11,14,12,19,11,13,11,18,12,17,17,30,15,15,11,16,10,12,10,18,10,10,8,12,8,10,9,17,9,10,8,12,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,12,8,10,9,16,9,11,9,14,9,13,13,25,13,14,10,14,8,10,9,18,10,12,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,14,24,16,23,22,45,23,24,16,24,14,16,13,23,12,13,10,17,11,14,13,25,13,14,10,14,9,11,9,18,10,11,9,14,9,12,12,24,13,13,9,12,7,8,7,13,8,9,7,11,7,10,9,16,9,9,7,10,7,9,9,17,10,11,9,16,11,17,17,36,19,19,13,18,11,13,11,19,10,11,9,14,9,13,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,16,16,32,17,17,12,17,10,13,11,19,11,12,10,16,11,15,14,27,15,16,12,18,11,15,14,27,15,17,14,25,17,25,25,48,24,24,16,24,14,17,15,24,13,14,11,17,11,15,14,25,13,14,10,16,9,11,10,17,10,11,9,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,9,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,21,11,11,8,12,7,9,8,13,8,9,7,12,8,10,10,16,9,9,7,10,7,9,9,16,9,11,9,14,10,14,14,23,12,12,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,20,41,21,20,14,20,12,14,12,21,12,13,10,16,10,13,12,20,11,11,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,8,5,5,5,9,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,6,4,4,4,6,4,4,4,6,4,5,4,6,4,6,6,12 +-19,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,6,6,6,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,31,16,16,11,16,10,12,10,16,9,10,7,11,7,10,9,17,9,9,7,11,7,8,7,11,7,8,7,11,7,10,10,17,9,9,7,9,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,5,9,5,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,9,8,15,8,9,6,10,6,8,8,14,8,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,11,6,7,5,8,6,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,9,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,12,7,8,7,11,6,7,6,9,6,7,7,13,7,7,5,6,4,4,4,8,5,6,5,7,5,6,6,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,10,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,5,6,5,8,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,14,10,15,15,38,19,19,13,19,11,14,12,19,10,11,8,12,8,11,10,20,11,11,8,13,8,9,8,14,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,6,11,6,6,5,9,6,8,7,14,8,8,6,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,10,7,10,9,17,9,10,7,12,8,10,10,17,10,12,10,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,7,12,7,9,9,17,9,10,7,9,6,7,6,13,7,8,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,25,13,13,9,13,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,10,6,8,7,13,7,8,7,11,8,12,12,21,11,12,8,12,7,9,8,13,7,8,7,11,7,10,9,18,10,10,8,12,8,10,10,18,10,12,10,17,12,17,17,32,16,16,11,16,10,12,10,17,9,10,8,11,7,10,9,16,9,10,7,11,7,8,7,11,7,8,6,10,7,10,9,17,9,9,6,9,5,6,6,11,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,6,4,6,6,10,6,7,6,10,7,10,9,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,13,7,8,6,9,6,8,7,13,8,10,8,13,9,13,13,27,14,14,10,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8 +-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,12,7,7,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,6,6,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,7,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,12,9,13,13,32,16,16,11,16,9,11,10,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,7,12,7,8,7,11,8,10,10,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,6,5,9,5,5,4,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,10,6,6,6,9,6,8,8,15,8,9,6,10,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,6,9,8,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,7,6,9,6,6,5,8,6,8,8,14,8,8,6,8,5,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-32,-15,-15,-10,-16,-8,-9,-7,-14,-7,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,21,11,11,8,11,6,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,7,12,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,10,6,8,8,14,8,10,9,16,11,16,16,33,17,16,11,16,10,12,10,17,9,10,7,11,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,9,9,21,11,11,8,12,7,8,7,12,7,8,7,11,7,10,10,17,9,9,7,11,7,10,9,16,9,11,9,16,11,15,15,26,14,14,10,15,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,11,7,8,6,10,6,7,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,7,6,9,7,10,10,22,12,13,10,15,9,12,11,20,12,14,12,22,15,21,21,58,29,29,20,30,17,20,17,29,15,16,12,18,11,15,14,29,15,16,12,18,11,14,12,22,12,14,12,20,13,18,18,32,17,17,11,16,9,11,10,18,10,10,7,11,7,10,9,16,8,8,6,9,6,8,8,14,8,10,9,15,10,15,15,27,14,13,9,13,8,9,8,14,8,9,7,12,8,10,10,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,16,9,10,9,15,10,14,14,26,14,14,11,17,11,14,14,26,15,17,14,25,17,24,23,46,23,23,16,23,13,16,14,24,13,14,10,16,10,13,13,25,13,13,9,14,9,11,10,18,10,11,9,14,10,14,14,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,11,7,10,9,17,10,12,10,18,12,18,18,38,19,19,13,20,12,14,11,19,11,12,9,14,9,13,13,22,12,13,10,15,9,12,11,20,11,13,11,18,12,17,17,32,17,17,12,18,11,13,12,21,12,13,10,15,10,14,14,28,15,16,12,19,12,16,14,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,13,10,15,10,14,13,24,13,13,9,13,8,10,9,16,9,10,9,15,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,11,7,10,10,17,9,9,6,9,6,7,7,13,8,9,7,12,8,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,7,10,10,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,7,9,8,14,8,9,8,13,9,12,12,19,10,10,8,12,8,10,10,18,11,13,11,19,13,19,19,41,21,21,14,20,11,13,11,18,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,10,6,8,7,12,7,8,6,10,6,8,8,15,8,8,6,8,5,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,5,7,7,12 +-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,5,7,6,11,7,8,7,12,8,11,11,31,16,15,11,16,9,11,9,16,8,9,7,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,12,24,12,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,20,11,11,8,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,7,12,7,7,6,9,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,14,9,13,13,25,13,13,9,13,8,9,8,13,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,7 +-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,11,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,5,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,33,17,16,11,17,10,11,10,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,13,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,9,13,13,25,13,14,10,14,8,9,8,15,8,8,6,9,6,8,8,14,8,8,6,8,5,7,6,11,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,6,12,7,8,7,11,8,11,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,15,9,10,9,15,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,7,5,6,6,9,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,6,10,6,8,6,10,7,10,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,6,4,5,3,4,4,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,7 +-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,25,13,12,9,13,8,9,7,13,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,6,4,5,5,9,6,6,5,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,7,7,12,7,7,6,8,5,7,7,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,13,7,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,6,4,5,4,6,4,5,5,6,4,5,4,6,4,5,5,7,4,5,4,6,4,6,6,14,7,7,5,6,4,5,4,8,5,6,5,7,5,6,6,12,7,7,5,6,4,4,4,7,4,5,5,8,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,8,12,7,8,6,12,7,7,5,8,5,7,7,11,6,7,5,7,4,5,4,9,5,6,5,8,5,6,6,15,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,12,7,8,7,11,8,11,11,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,41,21,20,14,20,12,14,11,20,11,11,8,12,8,10,9,18,10,10,7,11,7,8,7,15,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,11,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,19,10,9,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,30,15,15,11,16,9,11,9,18,10,11,8,12,8,10,9,16,9,9,7,10,6,7,6,13,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,14,8,8,7,11,7,10,10,17,9,10,7,10,6,8,8,15,9,10,8,14,9,13,13,23,12,13,9,14,8,10,9,17,9,10,8,14,9,12,11,20,11,12,9,13,8,11,10,18,10,12,10,17,11,16,16,32,17,17,11,16,9,11,10,16,9,9,7,10,6,8,8,17,9,9,6,9,6,8,7,10,6,7,6,10,7,10,10,16,9,9,6,8,5,5,5,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,9,13,7,7,5,8,5,7,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,7,7,11,7,8,7,12,9,13,13,29,15,15,10,14,8,9,7,12,7,8,6,10,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,5,7,7,10,6,6,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,5,5,10 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,4,4,3,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,5,4,5,5,7,4,5,4,5,3,4,3,6,4,4,4,5,4,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,25,13,13,9,13,8,9,7,13,7,7,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,7,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,5,10,6,6,4,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,6,9,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,6,5,9,5,6,5,10,7,10,10,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,4,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,6,8,6,11,8,11,11,34,18,18,12,18,10,12,10,17,9,10,7,11,7,8,8,15,8,8,6,9,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,6,9,6,8,7,13,7,8,7,12,8,12,12,26,14,14,10,14,8,9,8,15,8,8,6,10,7,9,8,15,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,8,5,7,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,15,9,10,8,15,10,14,14,26,14,14,9,13,8,10,8,13,7,8,6,9,6,7,7,13,7,8,6,7,5,6,5,8,5,6,5,9,6,8,8,12,6,6,5,6,4,5,4,8,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,6,5,6,4,6,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,7,4,4,3,5,4,6,6,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,8,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,32,17,17,11,17,10,11,10,16,9,9,7,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,6,7,7,12,7,8,7,11,8,11,11,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,8,5,7,6,12,7,7,6,10,7,10,10,19,10,10,8,12,7,9,8,14,8,8,7,11,7,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,10,14,14,24,13,13,9,12,7,9,7,12,7,7,5,8,6,7,7,12,6,7,5,7,5,6,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +-33,-16,-15,-10,-15,-8,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-8,-8,-5,-9,-4,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,2,3,3,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,11,8,12,12,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,13,7,7,5,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,6,10,6,8,7,13,8,9,7,11,7,10,10,19,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,6,9,6,8,8,14,8,9,7,12,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,9,9,16,9,9,7,11,7,10,10,19,11,12,10,16,11,16,16,36,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,9,7,12,8,10,9,25,13,12,8,12,7,8,7,12,7,7,6,10,7,10,10,18,10,10,7,11,7,9,9,17,10,11,9,16,11,17,17,22,11,11,8,11,7,8,7,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,6,8,8,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,18,10,11,9,14,9,11,10,19,11,13,11,18,12,18,19,62,31,31,21,32,18,20,17,29,15,16,12,19,12,16,14,26,14,14,10,15,9,12,11,20,12,14,11,19,13,18,18,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,19,10,11,8,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,17,9,9,6,9,6,7,7,13,8,9,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,8,7,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,21,47,24,24,17,25,14,17,15,27,14,15,11,17,11,14,14,26,14,14,10,16,10,12,10,18,10,12,10,17,11,15,15,26,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,16,9,9,7,11,7,10,10,19,11,12,10,17,12,17,17,40,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,24,13,14,10,15,9,11,10,18,11,13,11,20,13,19,19,36,19,19,14,22,13,16,14,25,14,15,12,19,12,17,17,33,18,19,14,21,12,15,14,25,14,17,14,24,16,24,25,45,23,23,15,22,13,16,14,24,13,14,11,17,11,14,12,22,12,12,9,13,8,9,8,15,9,10,9,15,10,15,15,20,11,11,8,11,7,9,8,14,8,9,7,11,8,11,11,22,12,13,9,14,9,11,9,16,9,11,9,14,9,12,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,18,10,12,10,16,11,15,15,21,11,12,9,13,8,9,8,15,8,9,7,11,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,20,13,19,18,43,22,22,15,21,12,14,12,22,12,12,9,15,10,13,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,11,11,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,14,8,8,6,10,6,8,7,13,8,9,7,11,7,10,9,19,10,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,6,10,7,10,10,17,9,9,6,9,5,6,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,13 +-16,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,9,6,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,32,16,16,11,17,10,11,9,15,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,8,12,7,9,8,13,8,8,6,10,7,9,9,17,10,10,8,11,7,8,8,13,8,9,8,13,9,13,13,23,12,12,8,12,7,9,8,12,7,8,6,9,6,7,7,12,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,5,9,5,6,4,7,4,5,5,9,5,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,4,4,5,3,4,3,6,4,4,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,33,17,17,12,17,10,12,10,16,8,8,6,10,6,8,8,14,8,8,6,9,5,6,6,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,5,4,5,4,7,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,25,13,13,9,14,8,9,8,15,8,8,6,10,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,20,10,10,8,12,7,9,8,14,8,8,7,10,7,10,9,18,10,11,8,12,7,9,8,14,8,10,8,13,9,14,14,23,12,12,8,12,7,9,8,12,7,8,6,8,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,9,6,8,8,12,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,5,4,6,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,7,10,10,23,12,12,8,11,7,8,7,12,7,7,6,8,5,7,6,12,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,5,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,3,3,4,2,3,2,4,3,3,3,5,3,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,5,4,7,5,6,5,8,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,5,4,7,5,6,6,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-16,-8,-8,-5,-8,-4,-5,-3,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,5,7,7,9,5,5,4,6,4,5,4,6,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,7,5,8,5,7,7,9,5,6,4,6,4,5,5,9,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,11,6,7,5,8,5,7,6,12,7,8,6,10,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,6,10,7,11,11,36,18,18,12,18,10,12,10,17,9,10,7,10,7,9,9,15,8,9,6,9,6,8,7,13,8,9,7,12,8,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,7,8,7,12,8,12,12,26,14,14,10,15,9,10,8,16,9,10,7,11,7,9,9,14,8,8,6,8,5,6,5,10,6,6,5,9,6,9,9,15,8,8,6,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,6,12,7,8,6,10,7,9,9,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,12,7,8,7,11,8,11,10,21,11,12,9,14,8,10,9,16,9,10,8,12,8,11,10,20,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,24,13,13,9,14,8,10,9,13,7,7,5,8,6,8,7,13,7,7,5,7,4,5,4,8,5,7,6,10,7,9,9,14,8,8,6,8,5,5,5,9,5,6,5,8,6,8,7,11,6,6,5,8,5,6,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,11,11,25,13,13,9,12,7,9,8,13,7,8,6,10,6,8,7,13,7,8,6,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,3,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,9,5,6,5,7,4,5,5,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,4,4,4,5,4,5,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,7,7,22,11,11,8,11,6,7,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,6,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,12,7,7,6,8,5,6,6,9,5,6,5,7,5,7,6,12,7,7,5,8,5,6,5,10,6,6,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,7,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,6,4,4,3,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,4,3,5,4,6,5,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,28,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,5,8,5,6,5,9,5,6,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,5,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,3,5,3,4,3,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,7,11,6,6,4,7,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,9,5,6,4,7,4,5,5,10,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,8,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,5,3,4,4,8,5,6,6,10,6,6,4,7,4,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,4,6,4,4,4,7,4,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,4,4,5,4,5,6,12,7,7,5,7,4,5,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,25,13,12,8,12,7,8,6,11,6,7,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,4,5,4,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,5,5,7,5,7,7,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,4,7,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,4,4,4,6,4,5,5,8,6,8,8,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,7,5,8,5,6,5,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,22,11,11,7,10,6,7,6,11,6,7,6,9,6,8,8,12,7,7,5,7,5,6,6,11,7,8,6,10,7,9,8,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,16,9,9,7,10,7,9,8,14,8,9,7,12,8,12,12,15,8,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,4,5,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,12,45,23,23,16,23,13,14,11,19,10,11,8,13,8,11,11,20,11,11,8,12,7,9,9,16,9,9,7,12,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,7,6,13,7,8,6,8,5,7,6,10,6,7,6,11,7,10,10,23,12,12,8,11,7,8,7,12,7,8,6,10,6,8,8,15,8,8,5,7,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,7,6,10,6,6,5,8,5,7,7,10,6,7,6,9,6,8,8,14,8,9,8,13,9,13,13,30,16,16,11,15,9,11,10,18,10,11,8,13,8,11,11,18,10,10,7,9,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,12,7,9,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,11,11,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,25,13,14,10,16,9,11,10,18,10,12,9,15,9,12,12,26,14,14,10,15,9,12,11,20,11,13,11,19,13,18,18,30,16,16,11,17,10,12,10,16,9,9,7,11,7,10,9,14,8,8,6,9,5,6,5,8,5,6,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,9,6,7,6,10,6,6,5,7,5,8,8,12,7,7,5,7,5,6,6,10,6,6,5,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,15,8,9,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,15,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,6,9,6,7,6,11,6,6,5,8,6,8,8,12,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,10,6,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,2,8,5,5,3,4,3,4,3,5,4,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,5,5,10 +-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,25,13,13,9,13,7,8,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,5,8,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,14,8,8,6,9,6,7,6,10,6,7,6,9,6,7,7,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,2,3,3,4,3,7,4,5,4,4,3,4,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,8,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,10,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,28,15,15,10,14,8,8,7,13,7,7,6,9,6,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,5,3,4,4,7,5,6,6,14,8,8,5,7,5,6,5,7,5,6,5,7,5,6,5,9,5,6,4,5,3,4,4,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,6,5,9,6,8,8,19,10,10,7,10,6,8,7,12,7,7,5,9,6,8,7,11,6,7,5,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,8,6,8,7,15,8,9,7,10,6,8,7,11,7,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,4,3,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,6,5,10,6,6,5,6,4,6,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7 +-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,22,12,12,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,5,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,6,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,10,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,4,9,5,5,4,6,4,5,4,4,3,3,3,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,5,5,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,9,7,10,10,12,6,6,4,6,4,4,3,6,4,5,4,6,4,5,5,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,7,5,6,5,8,6,9,10,37,19,18,12,18,10,11,9,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,7,5,7,4,4,4,6,4,4,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,11,8,11,11,26,14,14,9,13,8,9,8,15,8,9,7,11,7,10,9,15,8,8,6,10,6,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,9,9,22,11,11,8,11,7,8,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,9,9,19,10,11,8,12,7,9,9,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,17,10,12,10,16,11,16,16,27,14,13,9,13,8,9,8,14,7,7,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,5,5,9,6,8,8,15,8,8,5,7,4,5,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,5,5,4,6,4,6,6,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,14,7,7,5,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,2,2,2,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9 +-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,6,6,24,12,12,8,12,7,8,6,12,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,5,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,4,4,8,5,5,5,7,5,7,7,17,9,9,6,9,5,6,5,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,6,4,4,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,4,5,6,4,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,6,6,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,7,5,7,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,11,6,6,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,12,7,7,6,9,6,9,9,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,9,35,18,17,12,17,10,11,9,17,9,9,7,10,6,8,8,16,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,6,4,7,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,8,6,9,9,22,12,12,8,11,7,8,7,12,7,7,5,9,6,8,7,11,6,7,5,7,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,7,9,8,14,8,9,7,11,8,11,10,20,11,12,9,13,8,10,10,18,10,12,9,16,11,16,16,26,13,13,9,13,7,8,7,13,7,8,6,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,7,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,5,7,4,5,4,8,5,7,7,14,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,6,7,9,5,4,3,5,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,8,6,8,8,34,18,17,12,17,10,11,9,16,9,9,7,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,9,6,9,9,22,11,11,8,11,7,8,7,12,7,7,5,8,6,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,8,13,8,9,7,11,7,10,10,19,10,11,8,13,8,10,10,18,10,11,9,16,11,16,16,26,13,13,9,13,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,7,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,9,5,5,3,5,3,4,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-20,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,9,7,10,10,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,24,13,13,9,13,8,9,7,12,7,7,6,9,6,7,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,7,6,11,6,6,5,7,5,7,7,13,7,8,6,10,6,7,7,12,7,8,7,11,8,12,12,27,14,15,11,17,10,13,11,19,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,10,8,14,9,13,13,25,13,14,10,15,9,10,9,15,8,9,7,10,7,10,9,17,9,10,8,14,9,11,11,20,11,12,10,17,12,17,17,20,11,11,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,9,6,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,18,10,11,8,12,7,9,8,15,9,11,9,15,11,16,16,67,34,33,22,33,19,22,19,33,17,18,13,20,12,16,15,29,15,15,11,17,10,12,11,20,11,12,9,15,10,14,14,26,13,13,9,14,8,9,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,8,8,15,8,9,7,11,8,11,11,33,17,18,12,18,11,13,11,18,10,10,8,12,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,11,6,6,5,8,6,9,9,16,9,10,8,13,8,11,11,20,11,13,11,18,12,18,18,46,24,24,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,14,10,16,10,13,11,20,11,13,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,10,8,13,9,14,14,26,14,14,11,17,10,12,11,20,11,12,10,17,12,17,17,42,21,21,14,20,12,14,12,21,11,12,10,16,10,14,14,27,14,15,11,16,10,12,11,21,12,14,12,20,13,19,18,34,18,18,13,19,11,14,12,21,12,13,10,17,11,16,16,32,17,19,14,23,14,18,17,32,18,21,17,30,20,30,30,50,26,26,17,25,14,16,14,24,13,14,10,16,10,14,13,25,13,13,9,14,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,11,9,15,10,14,13,27,14,14,10,16,10,12,10,18,10,10,7,11,7,10,10,18,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,22,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,20,11,11,9,14,9,12,11,20,12,14,12,21,14,20,20,35,18,18,13,20,12,14,12,20,11,11,8,11,7,10,9,16,9,9,6,9,6,7,7,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,16,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,9,9,16 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,34,18,17,12,17,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,17,9,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,9,5,6,6,11,6,7,6,9,6,9,9,22,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,11,9,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,6,8,5,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,6,4,6,5,7,4,4,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,16,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,14,8,8,6,8,5,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,6,4,6,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,7,5,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,12,10,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,7,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,24,12,12,8,12,7,8,7,12,6,7,5,8,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,5,4,5,4,12,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,6,9,5,6,5,7,4,6,5,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,6,5,8,5,5,4,7,5,6,6,12,6,7,6,8,6,7,6,12,7,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,6 +-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,5,4,6,4,6,6,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,5,8,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,8,5,7,6,10,6,7,6,9,6,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,6,7,6,10,7,10,9,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,8,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,35,18,18,12,18,11,13,11,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,9,8,14,8,9,7,10,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,16,8,8,6,8,5,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,23,12,12,8,12,7,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,6,7,7,10,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,18,10,12,10,16,11,16,16,27,14,14,10,14,8,9,8,13,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,9,7,10,6,7,6,10,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,7,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,8,5,7,7,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,4,3,4,3,5,4,5,5,8 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,20,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5 +-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,5,3,3,2,4,3,4,3,6,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,7,4,5,4,7,4,5,5,9,5,6,4,5,3,4,4,5,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,25,13,13,9,13,8,9,8,12,7,7,6,9,6,8,7,13,7,8,5,7,5,6,5,8,5,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,13,7,7,5,8,5,5,4,6,3,3,2,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,6,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,16,9,9,7,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,10,7,10,6,7,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,6,4,6,5,11,6,6,4,7,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,5,3,4,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,22,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,12,6,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,5,7,4,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,7,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,3,3,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,3,3,5,3,4,4,13,7,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,3,3,4,3,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,7,6,10,7,9,9,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,9,39,20,20,13,19,11,13,11,18,10,10,7,11,7,9,9,21,11,12,9,13,8,9,8,13,7,8,7,11,7,10,10,18,9,9,7,10,6,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,20,11,11,8,11,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,6,5,8,5,7,7,14,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,25,13,14,10,15,9,10,9,16,9,9,7,10,6,8,8,13,7,8,6,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,8,14,8,8,7,11,8,11,11,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,9,18,10,10,7,10,6,8,7,12,7,7,6,10,7,10,9,20,11,11,8,13,8,10,8,14,8,8,6,10,7,10,10,18,10,11,8,12,8,11,10,18,11,13,11,18,12,18,17,27,14,14,10,15,9,11,9,16,8,8,6,9,6,8,7,12,7,7,5,8,5,7,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,10,6,7,6,9,6,7,7,13,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,19,10,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,5,5,8,6,8,8,9,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,4,5,9 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,21,11,11,7,11,6,7,6,10,6,6,4,6,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,9,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,4,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,2,8,4,4,3,5,3,4,3,4,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,3,3,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,23,12,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,12,6,6,4,6,4,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,10,7,10,10,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,7 +-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,18,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,9,5,5,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,29,15,14,10,14,8,10,9,15,8,8,6,10,6,8,8,17,9,9,7,10,6,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,5,7,7,13,7,7,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,5,3,4,4,6,4,5,5,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,20,10,10,7,11,7,8,7,13,7,7,5,8,5,7,6,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,11,6,7,6,10,7,9,8,14,8,9,8,13,9,13,13,21,11,12,8,12,7,9,7,13,7,8,6,8,5,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,5,8,5,7,7,11,6,6,5,8,5,5,5,8,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,11,6,7,5,8,5,6,6,10,6,7,5,8,6,8,9,15,8,9,6,9,6,7,6,9,5,6,5,8,5,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,6,4,4,4,5,4,6,6,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,4,5,5,8,5,5,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,3,2,2,2,3,2,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,6,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,4,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,4,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,5,3,4,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,27,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,4,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,11,6,7,5,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,10,6,6,5,8,6,8,7,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,5,9 +-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,8,5,7,7,26,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,6,6,18,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,3,5,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,9,5,5,4,7,5,6,5,9,6,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8 +-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,5,4,6,6,7,4,4,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,3,4,4,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,5,4,5,6,16,9,9,6,8,5,6,5,9,6,7,6,9,6,9,8,15,8,8,6,8,5,7,7,12,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,8,15,9,10,8,13,9,14,14,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,10,9,17,10,11,9,15,10,14,14,51,26,26,17,25,15,18,15,27,15,16,12,19,12,15,14,25,13,13,9,14,8,10,9,16,9,11,9,14,10,14,13,21,11,10,7,10,6,7,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,8,8,14,8,9,7,11,8,12,12,20,11,11,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,5,7,7,15,8,9,6,9,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,6,10,7,10,10,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,11,7,10,9,17,9,10,8,13,9,12,12,24,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,12,9,13,13,29,15,15,11,16,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,11,7,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,36,18,18,12,18,10,12,11,19,10,10,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,11,7,10,10,18,10,10,7,9,6,7,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,10,6,7,5,8,5,7,6,11,7,8,6,10,7,9,9,16,9,9,6,9,6,8,8,14,8,10,8,14,10,15,15,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,6,5,7,4,5,5,8,4,4,3,5,4,6,6,10,6,7,6,10,7,9,9,6,3,3,3,4,3,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,8,15 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,6,5,7,5,7,7,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,8,7,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,11,6,6,4,6,4,4,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,2,4,3,3,3,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,6,4,5,4,7,4,5,4,4,3,4,4,8,5,5,4,5,3,4,5,8,5,6,5,8,5,7,7,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,8,8,12,6,6,4,7,4,4,3,6,4,4,3,5,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,5,7,7,11,6,6,4,7,4,4,3,5,3,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,3,3,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,8,6,11,7,10,10,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,4,4,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,5,5,4,6,4,4,3,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,4,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,7,8,6,10,7,9,9,29,15,16,11,16,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,8,7,10,6,7,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,12,7,7,5,8,5,5,4,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,5,7,4,5,4,7,5,7,7,24,12,12,8,12,7,8,7,14,8,8,6,8,5,6,6,12,7,7,5,8,5,7,7,10,6,7,6,10,7,10,9,16,9,9,6,9,6,7,6,11,6,7,5,7,5,6,5,10,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,4,5,5,7,4,4,3,5,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,5,8,5,6,6,13,8,9,7,12,8,11,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,10 +-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,4,4,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,7,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,3,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,13,7,8,6,7,5,6,5,9,5,6,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,7,4,4,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,6,6,20,11,11,7,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,8,5,6,5,7,4,4,4,6,4,6,5,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,9,6,9,9,19,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,8,4,4,4,6,4,4,4,8,5,5,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,6,4,5,5,9,5,6,4,6,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,2,2,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,2,2,3,6,4,4,4,5,3,4,4,8 +-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,6,7,7,12,6,7,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,7,4,4,4,5,4,5,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,9,6,9,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,3,5,3,4,3,5,3,4,4,8 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,3,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,2,2,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,9,5,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,6,4,4,4,6,4,5,4,6,4,5,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,5,7,5,6,6,10,6,8,7,11,8,11,11,17,9,9,6,9,5,6,5,7,4,5,4,5,4,5,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,13,9,13,13,39,20,20,14,21,12,14,12,21,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,15,8,8,6,10,7,9,9,21,11,10,7,10,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,10,7,9,9,35,18,18,13,20,11,13,11,20,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,9,13,13,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,19,10,10,8,12,7,9,7,12,7,7,5,8,5,7,7,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,15,8,9,7,11,7,10,10,18,10,11,9,16,11,16,15,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,14,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,8,5,5,4,5,4,5,5,10,6,6,5,9,6,8,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,8,5,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,16,9,9,6,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,14 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,20,10,10,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,7,4,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,11,6,6,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,4,3,4,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,26,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,14,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,24,12,12,9,13,8,9,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,10,6,6,5,8,5,6,6,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,5,3,3,3,4,2,2,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,5,4,5,5,9 +-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,20,10,10,7,11,6,7,6,12,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,12,7,7,5,7,4,4,4,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,6,5,10,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,38,19,19,13,20,11,13,11,19,10,11,9,14,9,12,11,20,11,11,8,12,7,8,7,13,7,8,7,11,7,9,9,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,20,11,12,9,13,8,11,10,18,10,10,8,12,7,9,8,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,9,14,8,10,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,10,6,8,7,14,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,20,10,10,7,10,6,8,7,9,5,6,5,8,5,7,7,10,5,5,4,6,4,5,4,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,4,5,6,11 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,2,8,5,5,4,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,23,12,12,8,12,7,8,7,14,8,8,6,9,6,8,7,13,7,7,6,8,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,6,4,7,5,6,6,10,6,7,6,9,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,7,4,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,6,5,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-5,-12,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,7,11,6,6,5,6,4,5,5,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,19,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,7,5,6,5,8,6,8,8,34,17,17,12,18,10,12,11,20,11,12,9,13,8,11,10,19,10,10,8,11,7,8,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,12,7,8,6,9,6,8,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,14,8,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,19,10,10,7,10,6,8,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,4,6,6,10 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,5,5,7,5,7,7,12,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,6,8,8,34,17,17,12,18,10,12,11,19,10,11,9,13,8,11,10,19,10,10,8,11,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,13,7,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,10 +-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,19,10,10,8,12,7,8,7,12,7,7,6,10,6,8,7,13,7,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,10,6,7,6,10,6,6,5,8,6,9,9,17,9,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,24,12,12,9,13,8,9,8,13,7,7,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,9,8,14,10,14,14,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,11,21,11,12,9,14,8,10,9,16,9,11,9,16,11,16,16,31,16,16,11,16,9,10,9,15,8,8,6,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,6,8,8,15,8,9,7,11,7,10,10,19,11,13,11,18,13,19,19,72,36,36,25,37,21,24,20,34,18,19,15,24,15,20,19,35,18,19,13,20,12,15,13,24,13,15,12,20,13,18,18,34,18,18,13,20,12,15,13,22,12,12,9,15,10,14,13,25,14,15,11,17,10,13,12,22,12,13,11,18,12,17,17,34,18,18,12,18,10,12,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,16,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,68,34,34,23,35,20,24,20,34,18,19,15,24,15,21,20,39,20,21,15,22,13,17,15,28,16,18,14,23,15,21,20,39,20,20,13,19,11,13,11,18,10,12,9,15,9,12,12,22,12,12,9,15,9,11,10,19,11,12,10,16,11,15,15,30,16,16,11,15,9,10,8,14,8,8,7,11,7,10,10,18,10,10,8,13,8,11,11,21,12,13,11,19,13,20,20,38,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,13,24,14,17,14,24,17,26,26,56,29,29,20,29,17,20,17,31,17,18,13,21,13,17,16,29,15,15,11,17,10,12,11,19,10,11,9,14,9,12,12,23,12,12,8,12,7,9,9,16,9,9,7,11,7,10,9,16,9,10,7,11,7,10,9,16,9,11,9,15,11,16,16,30,16,16,11,17,11,14,12,22,12,13,10,16,11,15,14,27,14,15,11,16,10,13,12,22,13,15,12,20,13,18,18,35,18,18,13,19,11,14,12,22,12,13,11,18,12,17,17,32,17,17,12,18,11,14,13,23,13,16,14,24,16,23,23,38,19,19,13,20,12,15,13,23,12,13,10,15,10,14,13,24,13,14,10,15,9,10,9,16,9,11,9,16,11,15,14,27,14,14,10,16,10,13,11,20,11,12,9,15,10,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,28,15,15,10,15,9,10,8,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,11,7,8,6,10,7,9,9,18,9,9,6,8,5,6,5,7,4,4,3,4,3,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,7,10,10,18 +-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,19,11,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,20,10,11,8,12,7,9,8,15,9,10,8,12,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,7,12,7,9,8,13,9,14,14,28,15,15,10,15,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,7,4,5,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,9,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,3,3,3,4,4,6,4,4,4,6,4,6,5,9 +-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,4,3,13,7,8,6,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,5,7,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,18,10,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,19,10,11,8,12,8,10,9,15,9,10,8,12,8,12,11,20,10,10,7,10,6,6,5,10,6,6,5,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,14,14,10,16,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,6,8,7,11,6,6,5,8,6,8,7,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,10,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,11,11,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,5,3,4,4,6,4,6,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,5,4,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,24,13,13,9,12,7,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,6,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,24,12,12,8,12,7,8,7,12,7,7,6,8,6,7,7,13,7,8,6,8,6,7,6,10,6,7,6,8,6,8,8,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,6,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,12,6,7,5,7,4,6,5,8,5,6,5,8,6,9,9,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-9,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,14,7,7,5,8,5,6,5,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,8,8,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,8,8,17,9,8,6,8,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,35,18,18,12,18,11,13,11,17,9,10,8,12,8,11,10,20,10,10,7,11,7,8,7,14,8,8,7,11,7,9,9,19,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,6,10,6,8,7,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,9,5,6,5,9,6,9,9,35,18,18,12,18,10,12,10,18,10,11,8,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,19,10,10,7,10,6,6,5,11,6,7,6,9,6,7,6,12,7,7,5,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,6,10,7,10,11,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,13,8,10,8,14,10,15,15,29,15,16,11,16,9,11,9,15,8,8,6,10,7,9,9,15,8,8,6,8,5,6,6,9,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,5,9,6,7,6,9,6,8,8,17,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,9,5,6,5,8,5,7,7,16,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,5,4,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,10,6,6,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,4,2,2,2,4,3,3,3,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,6,4,4,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,4,3,4,4,7,4,4,3,5,4,5,5,12,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,24,12,12,8,13,7,8,7,12,7,8,6,9,6,8,7,15,8,7,5,8,5,6,5,10,6,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,23,12,12,8,13,8,9,7,13,7,8,6,8,6,8,7,13,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,6,5,10,6,8,7,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,7,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,8,4,4,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6 +-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,10,6,7,5,8,5,7,6,13,7,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,7,6,11,6,7,5,8,5,6,5,9,5,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-6,-9,-9,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,8,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,3,11,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,8,4,4,3,5,4,5,5,8,5,5,4,5,4,6,6,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,15,8,8,6,9,5,6,5,9,5,6,5,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,5,9,6,8,8,12,6,6,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,9,6,7,7,18,9,9,7,10,6,7,6,10,6,6,4,6,4,6,5,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,7,6,10,7,10,9,34,18,18,13,19,11,13,11,18,10,11,8,12,8,11,11,22,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,16,9,10,7,11,7,8,7,13,8,9,8,13,9,12,12,17,9,10,7,10,6,6,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,5,3,3,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,34,18,18,13,19,11,12,10,18,10,11,9,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,8,13,8,11,11,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,6,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,5,6,5,9,5,6,5,9,7,10,10,19,10,10,8,12,7,9,7,12,7,7,6,10,7,10,9,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,29,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,13,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,13,7,8,6,8,5,5,5,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,6,5,9,6,9,9,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,11,7,9,9,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,13,9,13,13,20,11,11,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,7,5,6,4,5,5,8,5,6,5,7,5,6,6,15,8,8,6,9,5,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,13,7,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3,3,4,3,4,5,9 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,7,4,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,4,3,3,3,6,4,4,4,6,4,5,5,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,5 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,3,8,5,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,6,4,4,4,6,4,5,5,19,10,11,8,10,6,8,7,11,6,6,5,7,5,6,6,12,7,8,6,8,5,6,5,9,5,6,5,8,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,11,6,6,4,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,4,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,8,12,7,7,6,11,6,7,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,7,4,5,5,9,5,6,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,12,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,4,5,3,4,4,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,23,12,12,8,12,7,9,8,13,7,7,5,8,6,8,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,5,10,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,23,12,13,9,14,8,9,7,12,7,7,5,8,6,8,7,13,7,8,6,9,5,6,6,12,7,7,6,10,7,9,9,14,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,10,6,7,5,8,5,7,7,11,6,7,5,8,5,7,7,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,14,8,8,5,7,5,6,6,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,8,5,7,6,10,7,11,11,14,8,8,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,8,4,4,3,4,3,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,6 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3 +0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,6,3,3,3,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,5,3,3,3,4,3,4,3,5,4,6,6,8,4,4,3,3,2,3,3,3,2,2,2,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,6,5,19,10,10,7,11,7,8,7,12,7,7,5,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,6,9,6,8,8,15,8,8,6,7,4,5,4,8,5,5,4,5,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,5,6,5,6,4,6,6,20,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,9,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,3,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,5,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3 +0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,7,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,13,7,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,5,4,4,3,5,4,5,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,16,9,9,6,9,6,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,2,2,2,1,1,1,1,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,3,3,4,3,4,5,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,10,6,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,22,12,12,9,13,8,9,8,13,7,7,5,8,5,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,7,7,10,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,7,6,11,6,7,6,10,7,9,9,35,18,19,13,19,11,14,12,20,11,12,9,15,10,13,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,14,27,14,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,10,8,13,9,14,14,24,13,13,9,12,7,8,7,11,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,4,4,3,3,2,3,3,5,4,5,4,7,5,7,7,14,8,8,6,10,6,7,7,12,7,9,7,12,8,11,11,36,19,19,13,19,11,14,12,21,11,12,8,12,8,11,10,18,10,10,7,11,7,9,8,13,7,8,7,12,8,12,12,19,10,9,6,8,5,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,18,9,9,7,10,6,8,8,14,8,8,7,11,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,18,12,17,17,34,17,17,11,16,9,11,10,17,9,9,7,11,6,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,19,10,11,8,12,7,9,7,12,7,8,6,9,6,9,9,16,9,9,7,10,6,8,8,15,9,11,9,15,11,16,16,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,6,13,7,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,22,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,4,5,4,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,4 +0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,14,8,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,10,6,5,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,5,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,4,6,6,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,8,5,7,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,19,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,7,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,9,6,7,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,4,5,13,7,7,5,7,4,4,4,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,4,2,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,5,5,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,6,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,3,3,5,4,4,4,5,4,5,5,13,7,7,5,8,5,6,5,8,4,5,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,6,3,3,2,2,2,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 +1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,1,2,1,1,1,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,4,6,4,5,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,14,7,7,5,6,4,5,5,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,20,11,11,8,11,7,9,8,13,7,8,6,8,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,9,5,5,4,7,4,5,5,9,5,6,5,8,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,3,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,10,6,6,5,7,4,5,4,8,5,5,5,8,5,7,7,20,10,10,7,11,7,8,7,11,6,6,5,8,5,6,5,11,6,6,5,8,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,5,5,11,6,6,4,6,4,5,5,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,11,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,6,9,5,6,5,8,6,9,9,12,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,5,3,4,3,4,3,4,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,8,4,4,3,3,2,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,5,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,12,6,6,4,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,4,4,8,4,4,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,4,5,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,5,7,4,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,2,3,3,5,3,3,2,3,3,4,4,17,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,5,8,6,8,8,25,13,13,9,14,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,9,7,11,7,10,10,20,10,10,7,10,6,7,7,12,7,7,5,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,6,3,3,2,3,2,3,3,6,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,23,12,12,9,14,8,9,8,14,8,8,6,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,6,9,5,5,3,4,3,4,4,6,4,4,3,5,4,6,6,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,13,7,8,6,10,6,8,7,13,8,9,8,13,9,13,12,24,13,13,9,12,7,8,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,9,6,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,6,9,6,7,7,12,7,8,7,11,7,10,10,16,8,8,6,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,4,4,3,5,4,5,5,10,5,5,4,5,3,3,2,2,1,1,1,0,0,0,1,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,5,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,2,3,3,4,4,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,3,3,4,3,5,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,9,6,7,6,9,5,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,4,5,4,5,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,3,4,3,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,4,5,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2 +1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,12,7,8,7,13,7,7,6,9,6,9,9,14,8,8,6,10,6,7,7,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,6,10,5,5,4,6,5,7,7,11,6,7,6,11,7,10,10,19,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,6,9,6,7,6,10,7,10,9,21,11,11,8,12,7,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,6,9,6,7,6,12,7,9,7,12,8,12,11,18,9,9,6,8,5,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,9,9,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,5,11,6,6,5,8,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,3,4,4,6,4,4,4,14,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,4,3,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,4,5,4,4,4,6,4,4,4,6,4,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,4,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-3,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,6,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,8,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,17,9,9,7,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,10,7,10,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,7,10,10,17,9,8,6,8,5,6,5,10,6,6,4,5,4,5,4,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,12,7,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,7,5,6,4,5,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,9,16,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,9,6,9,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,13,7,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,7,7,6,8,5,7,6,10,6,7,6,11,7,10,10,16,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,8,5,6,5,9,6,8,8,10,5,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,26,13,13,9,14,8,10,8,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,9,8,14,9,13,13,41,21,20,14,20,12,15,13,22,12,14,11,18,12,16,15,29,15,16,11,16,9,11,10,18,10,12,10,18,12,17,17,32,17,17,12,19,11,14,12,21,11,12,9,14,9,12,12,23,12,13,10,16,10,13,12,21,12,13,10,17,12,17,17,31,16,16,10,14,8,10,8,13,8,9,7,11,7,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,9,17,9,9,6,9,6,8,7,12,7,8,6,9,6,8,7,13,7,8,6,10,7,9,8,14,8,10,9,16,11,17,17,39,20,19,13,19,11,14,12,20,11,12,9,15,9,12,11,20,11,12,9,13,8,11,10,18,10,11,9,14,10,14,14,26,14,14,10,15,9,10,8,14,8,8,6,9,6,7,6,11,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,25,13,12,8,12,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,11,7,10,10,20,11,11,8,11,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,19,11,14,12,20,13,19,19,31,16,16,11,16,9,10,8,13,7,7,6,9,6,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,21,11,11,8,11,7,8,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,10,8,12,7,9,9,16,9,11,10,18,12,18,18,26,14,14,10,14,8,10,9,16,9,9,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,9,7,12,8,11,11,21,11,12,8,12,7,9,7,12,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,23,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,2,2,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,9,7,10,6,8,7,11,6,7,5,7,5,6,6,12,7,7,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,4,7,4,4,4,6,4,5,4,8,5,6,5,9,6,9,9,20,10,10,7,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,6,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,7,5,6,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,8,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,4,4,8,5,6,5,9,7,10,10,21,11,11,8,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,2,2,2,2,2,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,5,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,4,3,4,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,5,6,5,8,6,8,8,23,12,12,8,12,7,9,7,13,7,8,6,10,6,8,8,16,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,7,11,6,7,5,8,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,15,8,7,5,6,4,5,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,8,7,12,8,12,12,16,8,8,6,8,5,5,4,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,3,3,2,3,3,4,3,4,4,13,7,8,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,6,7,6,10,7,10,10,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,13,7,6,4,6,4,5,5,7,4,4,3,4,3,4,3,6,3,3,2,2,2,3,3,2,2,2,2,4,3,4,4,13,7,7,5,6,4,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,7,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,11,6,6,4,5,3,4,3,6,3,3,3,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,18,10,10,7,9,6,7,6,9,5,6,5,8,5,6,6,11,6,7,5,6,4,5,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,4,3,4,3,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0 +1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,4,3,4,3,4,4,6,3,3,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,15,8,8,6,9,5,6,5,9,5,5,4,5,3,4,3,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,7,4,5,4,5,4,6,6,10,6,6,5,8,6,9,9,30,15,15,10,14,8,10,9,15,8,9,7,10,7,9,8,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,7,12,8,11,11,17,9,9,6,8,5,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,14,8,8,5,7,4,5,5,8,4,4,3,5,4,5,5,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,24,13,13,9,14,8,10,9,15,8,8,6,10,6,8,8,11,6,7,5,7,4,5,4,7,4,5,4,7,5,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,5,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,14,14,18,9,9,7,10,6,7,6,10,6,6,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,2,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,10,6,7,7,12,7,9,7,12,8,11,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,5,4,6,5,7,7,15,8,7,5,7,5,6,5,8,5,5,4,5,3,4,3,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,12,7,7,5,6,4,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3 +0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,5,7,4,5,4,8,5,6,5,8,6,8,7,13,7,6,5,7,5,6,5,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,9,5,4,3,5,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,5,5,8,6,8,9,11,6,6,4,7,4,4,4,7,4,4,3,4,3,3,3,6,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,9,5,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,5,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-2,0,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-5,-3,-4,-4,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,8,5,5,4,6,4,4,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,8,8,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,8,5,6,5,7,5,7,6,11,6,6,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,5,6,6,12,7,8,7,12,8,11,11,20,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,7,4,5,4,7,5,8,8,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,7,6,11,6,7,6,11,8,12,12,15,8,8,6,8,5,5,4,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,3,4,3,4,4,11,6,6,4,5,3,4,3,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6 +1,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,5,3,4,3,4,3,5,4,7,4,4,4,5,4,5,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-3,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,6,4,4,3,5,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,6,5,7,7,22,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,8,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,9,5,6,5,7,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,8,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,10,6,6,6,10,7,11,11,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,3,4,3,4,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,5,7,7,12,6,6,5,8,5,5,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,4,3,3,2,3,3,9,5,6,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,5,7,7,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,18,9,9,6,9,6,6,6,10,6,6,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,5,3,4,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,6,6,10,7,10,10,14,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,4,4,4,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-9,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-7,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,10,5,5,3,4,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,2,1,1,1,1,1,1,2,3,2,3,2,6,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,6,4,4,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,40,21,21,14,21,12,15,13,23,12,13,10,15,9,12,11,21,11,12,9,13,8,9,8,15,9,11,9,15,10,15,15,23,12,12,8,12,7,9,8,14,8,9,7,11,7,9,9,16,9,9,7,11,7,10,10,18,10,12,11,19,13,19,18,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,8,10,9,17,10,12,11,19,13,19,19,34,17,17,11,16,9,11,10,17,9,9,7,11,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,8,5,6,6,10,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,13,8,11,11,20,11,13,11,20,14,20,19,26,13,13,9,13,7,8,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,6,5,9,6,7,6,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,8,5,7,7,12,7,7,5,6,4,5,4,6,4,5,4,6,4,6,6,15,8,9,6,9,6,8,7,13,7,8,6,9,6,9,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,23,12,12,9,14,8,9,8,14,8,8,7,11,7,10,9,16,9,9,6,9,6,7,7,12,7,7,6,10,7,9,9,20,10,10,7,9,5,6,5,9,5,4,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,5,4,6,6,16,8,8,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-13 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,9,5,6,4,5,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,21,11,11,8,11,7,8,7,13,7,7,6,8,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,10,14,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,5,3,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,9,5,6,4,6,4,4,3,5,3,2,2,4,2,2,2,5,3,2,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,22,12,12,8,12,7,8,7,14,8,8,6,8,6,8,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,8,6,10,7,10,10,16,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,5,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,5,5,8,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,4,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,11,6,6,4,6,4,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-7 +0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,16,9,9,6,9,5,6,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,2,2,3,3,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,25,13,13,9,14,8,10,9,16,9,9,7,10,7,9,8,14,8,8,6,9,6,7,6,12,7,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,6,12,7,9,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,11,6,7,5,8,5,6,5,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,6,9,6,8,7,10,6,8,7,12,8,11,11,24,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,7,8,6,10,7,9,8,15,9,10,8,14,9,13,13,16,8,8,6,8,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,7,13,7,8,6,8,5,6,5,6,4,4,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,15,8,8,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,3,5,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,3,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,5,10,6,6,5,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,20,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,6,4,6,4,4,3,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,4,5,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,6,6,4,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,12,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,5,8,8,12,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,11,7,8,6,11,8,11,10,11,6,6,4,5,4,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,1,1,1,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,5,6,11,6,6,4,6,4,5,4,7,4,3,2,3,2,3,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,7,4,5,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,36,19,19,13,20,12,14,12,21,11,11,8,13,8,10,9,20,11,11,8,13,8,10,9,16,9,11,9,14,9,13,13,24,12,12,9,13,8,10,8,14,8,8,6,9,6,9,9,14,8,8,6,10,7,10,9,17,10,12,10,18,12,18,18,29,15,16,11,16,9,11,9,15,9,10,8,12,8,10,9,18,9,9,6,9,6,7,7,12,7,8,7,11,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,9,16,9,10,9,15,10,15,16,33,17,17,12,18,10,12,10,17,10,11,8,13,8,11,10,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,7,15,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,11,6,6,5,8,6,8,8,18,10,10,8,12,8,11,11,20,11,13,11,19,13,19,19,21,11,11,8,11,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,7,5,7,8,16,8,8,6,9,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,6,5,8,5,6,5,9,6,9,8,18,9,9,6,8,5,5,4,7,4,5,4,5,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,9,8,12,7,8,6,9,6,7,7,12,7,9,8,13,9,13,13,20,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,8,6,9,6,7,6,11,7,8,6,10,6,8,8,16,9,9,6,9,5,6,5,8,5,6,5,7,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,4,3,4,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,20,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,13,7,7,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,11,6,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,4,4,6,4,5,5,5,3,4,3,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,24,12,12,9,13,8,10,8,13,7,7,5,8,5,7,6,13,7,8,6,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,9,8,14,8,8,6,9,5,6,5,8,5,6,5,6,4,6,6,12,7,7,5,9,6,8,8,13,8,10,8,14,10,14,14,14,7,7,5,6,4,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,13,7,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,7,7,20,10,10,7,11,7,8,7,11,6,6,5,7,4,6,5,11,6,6,5,7,4,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,8,4,5,4,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,12,8,12,11,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,3,3,4,4,7,4,4,3,4,3,5,5,8,5,5,5,8,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,4,6,6,10,6,6,4,6,4,4,3,7,4,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,34,17,17,12,18,11,13,11,18,10,10,8,12,7,9,9,18,10,10,7,11,7,9,8,13,8,9,8,13,9,12,12,22,11,11,8,12,7,9,7,13,7,8,6,8,6,8,8,15,8,9,7,11,7,9,9,17,10,12,10,16,11,16,16,29,15,15,11,16,9,11,9,16,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,11,7,8,7,12,8,12,11,19,10,11,8,11,7,8,8,14,8,9,7,11,7,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,16,16,32,16,16,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,5,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,7,7,13,8,9,7,12,8,12,12,21,11,12,8,12,7,9,7,12,7,8,7,11,7,10,10,19,10,11,8,13,8,11,10,18,11,13,11,20,13,19,19,18,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,18,9,9,6,8,5,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,13,7,8,7,12,8,12,12,21,11,11,8,11,7,9,8,13,7,8,6,10,7,9,9,14,8,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,6,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,4,4,10,5,5,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,4,2,3,2,3,2,3,2,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,23,12,12,8,12,7,9,7,12,7,7,6,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,6,7,6,11,6,7,5,8,5,7,7,12,6,7,5,7,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,8,8,6,10,6,8,7,13,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,4,8,5,6,4,7,4,6,6,10,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,7,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,9,5,5,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,4,3,4,3,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,11,12,9,14,9,11,10,19,11,12,10,16,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,15,8,8,6,10,6,6,5,9,5,6,5,8,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,13,7,8,6,11,7,10,10,18,10,11,8,14,9,12,11,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,7,5,6,6,12,7,7,6,8,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,10,6,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-6,-4,-6,-6,-14 +1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,10,5,5,3,5,3,4,3,4,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,33,17,18,12,17,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,11,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,10,11,8,14,9,11,10,19,11,12,10,17,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,9,9,15,8,8,6,9,6,6,5,9,5,6,5,7,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,14,8,8,6,11,7,10,10,18,10,11,8,14,9,11,10,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,7,5,7,6,12,7,7,6,8,5,7,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-10,-5,-7,-6,-11,-7,-12,-12,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-9,-14,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-11,-23,-12,-13,-9,-15,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-38,-18,-18,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-1,-1,0,0,0,0,1,1,1,2,2,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,6,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,9,5,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,5,3,4,4,7,6,9,9,17,9,10,7,10,6,7,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,7,6,11,6,7,6,10,7,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,8,11,10,19,10,11,8,13,8,11,11,21,12,14,12,22,15,22,21,66,33,33,23,34,19,22,19,33,18,19,15,25,16,21,20,38,20,20,14,21,12,15,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,19,12,16,16,30,16,17,13,20,12,16,15,28,16,18,15,25,17,25,25,49,25,25,17,26,15,17,15,26,14,15,11,17,11,15,14,26,14,15,11,17,10,13,12,22,12,14,11,19,13,18,18,34,18,18,12,18,11,13,11,19,11,13,10,17,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,30,21,31,31,62,31,31,21,32,18,21,18,32,17,19,14,23,15,21,20,39,20,21,15,24,14,18,16,30,16,18,15,25,17,24,24,46,24,24,16,23,13,16,14,24,13,15,12,20,13,18,17,33,18,19,14,21,13,17,15,27,15,17,14,24,16,23,23,44,23,23,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,11,17,11,14,13,24,13,15,12,20,14,20,20,39,20,21,15,22,13,16,14,25,14,16,12,20,13,18,17,33,18,19,14,22,14,19,18,34,20,24,21,37,25,38,38,34,18,18,12,18,11,14,12,21,11,12,9,15,9,12,11,20,11,11,8,12,7,9,8,14,8,9,7,10,7,10,10,19,10,11,8,13,8,9,8,15,8,9,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,8,10,9,16,9,9,7,10,7,9,8,15,8,9,7,11,7,8,7,13,8,9,8,13,9,12,12,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,14,27,14,15,11,18,11,14,12,22,13,16,13,23,15,22,22,44,22,22,15,21,12,15,12,21,11,11,8,11,7,9,8,13,7,7,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-13,-27 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,7,11,6,8,7,13,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,9,7,10,7,9,8,15,9,10,9,15,11,16,16,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,11,20,10,11,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,8,11,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13 +0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,2,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,13,7,7,6,9,6,8,8,13,7,8,6,9,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,8,16,9,10,9,15,11,16,16,32,17,17,12,17,10,12,10,17,9,10,8,12,8,11,11,19,10,10,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,9,7,10,6,8,8,15,8,9,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-2,-3,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,4,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,7,4,4,4,6,4,6,6,10,6,6,4,7,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,6,8,6,8,7,13,7,7,6,9,6,7,6,11,6,7,5,9,6,8,8,16,8,8,6,8,5,6,6,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,5,7,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,4,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,8,13,9,13,13,12,6,6,5,7,4,6,5,8,4,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,8,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,2,1,1,0,1,1,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,6,4,4,3,3,2,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,5,5,10,6,6,5,7,5,7,7,10,6,8,7,11,8,11,11,33,17,17,12,17,10,11,10,18,10,10,8,12,8,11,10,20,10,10,7,10,6,7,7,14,8,8,7,11,7,10,10,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,9,13,7,8,6,9,6,7,7,14,8,8,6,9,6,7,7,13,8,9,7,11,7,10,10,18,9,9,7,10,6,7,7,10,6,6,5,8,6,8,8,14,8,9,7,10,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,18,10,12,10,17,9,10,8,12,8,10,10,18,10,11,8,12,7,9,8,15,8,9,7,12,8,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,10,7,9,8,15,9,10,8,12,8,12,12,23,12,11,7,10,6,7,7,11,6,6,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,10,11,18,10,10,7,11,7,9,8,12,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,17,10,13,11,19,13,19,19,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,5,5,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,11,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,8,8,12,6,6,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,6,6,5,8,6,8,7,12,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,6,4,6,6,11,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,12,7,9,8,14,10,14,14,12,6,6,5,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,6,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,8,4,5,4,6,4,5,5,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,9,9,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,5,6,6,10,6,8,7,12,8,12,12,10,6,6,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,4,2,3,3,4,3,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,5,4,6,4,6,5,9,5,5,4,7,4,5,4,7,4,4,4,6,4,4,4,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,4,11,6,6,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,3,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,3,3,6,4,4,4,6,4,5,5,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,34,17,17,12,18,10,11,9,16,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,10,6,8,8,14,8,8,6,10,7,10,10,13,7,8,6,9,6,8,7,12,7,9,8,14,10,14,14,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,9,7,12,8,11,11,17,9,9,7,11,7,8,7,12,7,7,6,10,7,10,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,16,16,11,17,10,11,9,16,9,9,7,12,8,11,10,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,21,11,12,8,12,7,9,7,12,7,7,5,8,6,8,8,17,9,10,7,10,7,9,8,14,8,9,8,13,9,12,12,23,12,12,8,11,6,7,6,10,6,6,5,7,5,7,7,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,11,11,9,14,9,11,10,18,11,13,11,20,14,20,20,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,16,9,10,7,11,7,9,8,14,8,10,8,13,9,12,12,18,9,9,6,8,5,6,5,9,5,6,5,7,4,5,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,6,5,7,5,7,7,10,5,5,4,4,3,4,3,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,19,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,4,4,3,5,4,5,4,7,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,6,5,9,5,6,6,10,7,10,10,18,9,9,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,5,6,4,6,4,6,6,12,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,10,6,6,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,10,6,7,7,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,4,3,4,3,6,4,4,3,4,3,4,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,10,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,4,4,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,5,6,5,8,6,8,9,22,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,15,8,8,6,9,6,7,6,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,10,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,7,6,10,6,8,7,11,8,11,11,20,11,11,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,11,7,9,8,14,9,13,13,14,7,7,5,6,4,5,5,7,4,4,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,7,4,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,5,5,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,4,5,4,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,4,7,5,6,5,9,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,5,6,5,8,5,5,5,7,5,7,7,12,7,7,5,7,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,8,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,10,6,8,7,11,8,11,11,12,6,6,4,5,3,4,3,5,3,3,2,4,3,4,4,6,3,3,3,3,3,4,3,5,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,7,4,5,5,9,5,6,5,8,6,8,8,9,5,5,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,6,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,11,6,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9 +-3,-1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,2,2,4,3,3,3,4,3,5,5,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,6,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,2,2,2,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,11,6,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,7,6,9,6,8,8,14,8,10,8,14,9,13,13,35,18,18,12,18,11,13,11,18,10,11,8,13,8,10,10,18,10,10,7,11,7,8,8,14,8,9,8,14,9,12,12,21,11,11,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,6,7,6,10,6,7,6,10,7,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,11,15,8,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,10,17,9,10,8,12,7,9,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,9,9,20,10,10,7,11,6,7,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,15,8,9,8,13,9,13,13,26,13,13,9,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,7,12,7,7,6,9,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,19,13,18,18,19,10,10,7,9,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15,8,9,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,15,8,8,5,7,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-9,-19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,5,3,3,2,4,3,3,3,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,6,4,5,4,8,5,6,5,7,5,7,7,10,6,6,5,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,8,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,4,4,4,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,6,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-6 +-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,1,1,2,2,2,2,2,2,2,2,2,2,2,3,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,6,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,4,6,4,6,6,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,5,5,11,6,6,4,6,3,3,3,6,4,4,4,6,4,6,5,6,4,5,4,6,4,4,4,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,9,5,5,3,4,3,3,3,7,4,5,4,6,5,7,7,9,5,6,5,8,5,7,6,9,5,6,6,10,7,11,11,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,7,5,6,6,16,8,8,6,9,5,6,5,8,4,4,3,6,4,5,5,9,5,6,4,5,3,4,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,5,8,4,4,3,4,2,2,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,8,6,8,8,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,6,4,6,7,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-2,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6 +-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,5,8,5,7,6,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,6,11,7,10,10,27,14,13,9,12,7,8,7,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,7,6,9,6,9,9,12,7,7,5,8,5,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,10,6,6,4,5,3,4,4,8,5,5,4,7,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,24,12,12,9,13,8,9,7,11,6,6,4,6,4,5,5,12,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,18,10,10,7,9,5,6,6,10,6,6,4,5,4,5,4,10,6,6,5,7,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,12,7,7,5,6,4,4,3,5,3,4,3,5,3,4,3,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,5,9,6,7,6,11,8,12,12,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,5,7,7,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,4,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,1,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,3,4,3,3,3,3,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,5,8,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,8,6,8,8,8,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,7,5,7,8,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,0,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,2,2,3,2,2,2,4,3,3,3,-5,-2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,8,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,8,8,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,9,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,4,5,5,11,6,7,6,10,7,10,10,9,5,6,4,6,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,4,3,3,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,16,9,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,7,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,6,4,4,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,5,8,5,5,4,6,4,5,5,10,6,7,6,8,6,8,8,22,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,7,5,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,11,6,6,4,7,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,10,7,10,10,5,3,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,8,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,20,11,11,7,10,6,7,6,10,6,6,4,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,10,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,1,1,1,2,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,11,6,7,6,9,6,8,8,15,9,11,9,16,11,15,15,40,20,20,13,19,11,12,10,18,10,10,8,12,8,10,10,19,10,10,7,10,6,8,7,11,6,7,6,11,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,14,8,9,7,10,6,8,7,13,8,9,7,11,8,11,11,17,9,9,6,9,6,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,8,8,14,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,10,17,12,17,17,40,20,20,13,19,11,13,11,19,10,11,8,13,8,10,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,6,10,6,7,5,8,5,7,7,26,14,14,10,15,9,11,10,17,9,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,8,7,11,8,11,11,20,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,11,10,19,11,14,12,20,13,19,19,17,9,9,6,9,5,6,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,8,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,11,8,12,8,10,9,16,9,11,10,18,12,18,18,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,5,3,2,1,1,1,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25 +-3,-1,-2,-1,-2,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,7,10,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,10,6,6,5,7,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-7,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,11,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,9,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,6,7,11,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,0,-1,0,-1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,8,4,5,4,5,4,5,5,8,5,6,5,7,5,8,8,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,-8,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,4,3,3,3,4,3,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,10,5,5,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,6,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,20,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,8,5,6,5,8,6,8,7,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,9,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,3,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,3,4,3,3,2,1,1,2,2,3,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,15,8,8,6,7,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,3,2,2,2,5,3,3,3,5,3,4,5,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,14,8,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,3,2,4,3,3,3,4,2,2,2,3,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,4,7,4,4,4,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,8,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,4,5,5,8,5,5,4,7,5,8,8,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,5,8,6,8,7,8,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,5,7,5,8,8,14,8,9,7,12,9,13,13,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,6,5,8,5,7,7,12,7,9,7,12,8,11,11,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,1,1,1,0,-1,0,1,1,1,1,1,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,5,3,3,2,4,3,4,3,5,4,4,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,2,1,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,3,3,3,4,3,4,3,4,3,5,4,5,5,14,8,8,5,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,4,8,5,6,5,7,5,8,8,8,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,-1,0,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,4,5,4,6,6,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,8,5,5,3,4,3,4,3,7,4,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,7,4,5,4,5,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,8,4,4,3,4,3,5,5,9,6,7,6,10,6,8,8,14,7,7,5,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,9,5,6,5,8,6,9,10,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,7,4,4,4,6,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,3,2,1,1,1,1,2,2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 +2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,4,4,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,4,6,4,5,5,8,5,5,4,8,6,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,7,5,7,7,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-5,-11 +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,4,5,5,8,5,5,4,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,7,7,2,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,9,5,6,4,6,4,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,5,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,4,4,7,5,6,5,8,6,9,9,25,13,13,9,14,9,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,18,10,10,7,10,6,8,7,13,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,20,10,10,7,9,6,7,6,10,6,6,5,9,6,7,7,12,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,5,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,5,5,10,6,6,5,8,5,7,7,13,8,10,8,14,10,14,14,21,11,11,8,11,6,6,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,5,5,8,6,8,8,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,8,5,5,4,7,5,6,6,14,8,8,6,10,6,7,6,11,6,7,6,9,6,7,7,12,7,7,5,7,5,7,7,12,7,8,7,12,9,13,13,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,1,1,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,6,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,6,4,5,5,7,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,2,2,5,3,4,4,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,8,8,12,6,6,4,7,4,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,8,5,6,5,7,5,8,8,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-11 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,11,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,5,4,6,6,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-5,-3,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,5,3,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,11,6,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,5,8,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,4,4,6,4,6,5,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,10,6,7,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,5,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,5,6,6,4,4,3,4,3,3,2,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,9,9,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,1,0,0,0,1,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,7,11,6,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,3,2,3,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,1,1,1,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,9,9,22,12,12,9,13,8,10,8,14,8,8,6,9,6,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,15,8,8,6,10,6,7,7,12,7,7,6,9,6,7,6,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,16,9,9,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,11,8,12,12,18,10,10,7,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,13,7,6,4,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,7,7,12,7,9,7,12,8,10,10,0,0,0,0,-1,0,0,0,-1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,6,6,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,1,2,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,5,4,6,4,4,4,6,5,7,7,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,10,6,6,4,6,4,4,4,8,5,5,3,5,3,4,4,9,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,10,6,6,4,7,4,4,4,8,5,5,4,6,4,5,4,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,6,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,5,3,4,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,8,4,4,3,4,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,4,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,23,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,9,6,8,8,13,7,8,6,8,5,6,5,7,4,4,3,4,3,4,4,10,5,5,4,6,4,4,4,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,10,5,5,4,6,4,6,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,4,6,4,6,6,12,7,7,5,8,5,7,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,13,7,7,5,6,4,5,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,7,4,4,4,6,4,6,6,11,6,7,5,8,5,6,6,12,7,7,6,10,7,9,9,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-7,-4,-6,-6,-14 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,4,3,4,2,3,2,3,2,3,2,3,2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,8,5,5,4,7,5,6,6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,2,2,2,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,8,5,6,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,8,8,13,7,8,6,8,5,6,5,10,6,6,5,7,5,7,7,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,13,9,13,7,8,7,13,7,8,6,10,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-25,-12,-13,-8,-13,-7,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-22,-11,-12,-8,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,2,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,16,8,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,6,7,6,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,13,19,19,47,24,24,16,24,14,16,13,23,12,13,10,17,11,15,15,29,15,15,10,15,9,12,11,19,11,12,10,16,11,15,15,30,16,16,11,15,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,26,13,13,9,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,7,11,8,11,10,19,11,13,10,17,12,17,18,29,15,15,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,13,9,14,9,11,10,17,10,12,10,16,11,15,15,28,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,11,8,11,12,23,12,11,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,10,15,15,28,14,14,10,14,8,10,9,15,9,10,8,14,9,13,12,22,11,11,8,12,8,10,9,17,10,12,10,18,12,17,17,40,21,21,15,22,13,15,13,22,12,13,9,14,9,13,12,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,21,11,11,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,6,9,6,8,7,12,7,9,8,14,10,14,13,25,13,14,10,14,8,9,7,12,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,27,14,15,11,16,10,12,10,18,10,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,10,9,15,10,15,15,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,1,1,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-24 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,10,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,6,5,10,7,9,9,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-7,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,5,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,8,6,8,7,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,10,7,10,10,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,5,5,8,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 +0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7 +0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-5,-4,-7,-4,-5,-4,-8,-5,-9,-9,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,1,1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,3,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,9,5,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,7,7,11,7,8,6,10,7,10,10,25,13,13,9,14,8,9,8,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,5,10,6,6,5,9,6,9,10,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,22,12,12,8,11,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,6,4,5,4,8,5,6,5,8,5,7,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,4,7,5,8,8,13,7,8,6,8,5,5,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,5,8,6,8,8,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11 +1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,5,4,5,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,4,3,3,3,7,4,4,4,7,5,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,5,8,5,5,4,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,1,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,7,7,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-9,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,1,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,29,15,15,10,15,9,10,8,14,8,9,7,10,7,10,9,17,9,9,6,9,6,7,6,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,5,8,5,6,5,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,10,7,9,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,6,4,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,6,11,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,14,7,7,5,7,4,5,4,6,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,11,10,21,11,11,8,11,7,8,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,7,5,6,5,7,5,7,7,17,9,9,7,9,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,3,2,2,3,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,5,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6 +1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4 +0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-3,-11,-5,-6,-4,-6,-3,-4,-3,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,3,2,2,1,0,0,0,0,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,9,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,13,7,7,5,6,4,5,4,8,5,5,4,5,4,5,5,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,6,4,6,7,13,7,8,6,8,5,6,5,7,4,4,3,5,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,5,7,7,17,9,8,6,8,5,5,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,6,4,4,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,4,6,4,6,6,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-8 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,4,2,3,2,3,2,3,2,3,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,5,4,4,4,6,4,6,6,14,7,7,5,8,5,5,4,8,4,4,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,4,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,4,5,9,5,6,4,5,4,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,11,6,5,4,5,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,1,1,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,2,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,1,1,1,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,3,2,2,1,1,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,4,5,5,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,4,5,4,5,5,7,4,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,6,4,4,3,3,3,4,4,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,3,6,4,4,3,5,4,5,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,3,2,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,3,5,3,4,3,5,3,4,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 +-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-5,-10,-6,-9,-9,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,3,4,3,5,6,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,11,9,15,10,15,15,35,18,18,13,19,11,13,11,18,10,11,8,12,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,22,11,11,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,8,6,9,5,6,6,10,6,6,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,12,6,6,4,6,4,6,5,9,5,6,4,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,11,27,14,14,10,16,9,11,9,16,9,9,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,4,5,4,12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,6,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,5,4,6,5,7,7,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,12,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,4,6,4,5,5,9,5,6,5,8,6,8,9,20,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,4,4,5,4,5,5,13,7,6,5,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,0,0,0,0,0,1,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,10,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,10,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,8,8,6,8,5,5,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,9,6,9,9,12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,5,5,6,4,4,4,6,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,4,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,5,3,3,3,4,3,3,3,8,5,5,3,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,4,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,5,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,9,5,5,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,5,6,5,7,5,8,8,19,10,10,7,10,6,8,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,6,5,11,6,6,4,7,4,5,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,8,8,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,3,2,2,2,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,4,4,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,17,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,2,1,1,1,5,3,3,3,5,3,4,3,5,3,4,3,5,4,6,6,15,8,9,6,9,5,6,5,8,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,12,9,13,13,32,17,17,11,16,10,12,10,17,9,10,7,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,11,6,7,5,7,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,22,12,12,8,11,7,8,7,11,7,8,6,10,6,8,8,10,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,3,3,3,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,8,4,4,3,6,4,4,4,8,5,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-3,-6,-3,-5,-5,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,6,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,13,7,7,5,8,5,5,5,7,4,5,4,6,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,5,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,7,6,12,7,8,7,12,9,13,13,29,15,16,11,16,9,10,8,16,9,9,7,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,6,6,10,6,7,6,10,7,11,11,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,9,5,6,6,10,7,9,9,16,8,8,6,9,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,8,4,4,3,5,4,5,5,9,5,6,5,8,6,9,9,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17 +-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,5,4,5,4,8,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,3,3,2,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,4,4,4,6,4,5,4,6,4,6,6,12,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,6,9,5,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,4,3,6,4,4,4,8,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,7,4,5,4,6,4,5,4,7,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-8,-5,-7,-7,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,11,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,7,5,8,8,25,13,13,9,13,7,8,6,10,6,6,5,7,5,6,6,11,6,7,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,10,7,9,9,18,10,10,8,12,8,11,11,21,12,15,13,23,16,23,23,53,27,26,18,26,15,17,14,24,13,14,11,17,11,14,14,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,28,14,14,10,15,9,11,10,19,10,11,8,13,9,12,11,21,11,12,9,15,9,12,11,19,11,14,12,21,14,20,20,35,18,18,12,16,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,9,9,18,9,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,9,16,11,17,17,32,17,17,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,20,11,11,8,12,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,10,10,18,10,12,10,17,11,16,15,44,22,22,15,23,13,16,13,22,12,12,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-7,-16,-8,-10,-8,-16,-11,-17,-17,-34 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,7,4,4,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,13,9,12,12,28,14,14,10,14,8,10,8,13,7,8,6,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,12,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,6,5,9,5,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,4,4,4,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,4,6,4,6,5,10,6,6,4,7,4,5,5,7,4,4,4,6,4,6,6,12,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3,-3,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,15,8,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,9,8,14,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,8,6,8,7,15,8,9,7,10,6,7,7,11,6,6,5,8,6,9,9,18,10,10,7,10,6,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,6,9,5,6,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,6,6,4,6,4,4,3,3,2,2,2,4,3,4,4,7,4,4,4,6,4,5,4,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,6,10,7,9,9,24,13,13,9,12,7,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,9,5,5,4,5,4,5,4,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,14,8,8,5,7,4,5,5,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,4,5,3,4,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,6,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,8,6,10,7,10,10,21,11,10,7,10,6,8,6,11,6,6,4,6,4,6,5,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,7,5,6,5,9,6,9,9,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,8,7,17,9,9,6,8,5,6,6,9,5,5,4,7,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,9,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,7,6,9,6,9,9,17,10,12,10,17,11,16,16,34,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,19,10,11,8,12,7,9,8,14,8,8,7,11,7,10,10,21,11,11,7,10,6,7,6,10,6,7,6,10,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,6,5,7,5,8,8,15,8,8,5,7,4,4,3,4,3,4,3,5,3,4,4,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,19,10,11,8,11,6,7,6,11,6,6,5,8,5,7,6,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,5,10,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,5,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,5,3,4,3,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,10,21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,7,5,6,5,10,6,6,4,6,4,6,5,7,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,3,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,5,3,3,2,3,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,7,16,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,8,6,9,6,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,5,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-5,-5,-12 +-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,1,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,7,7,10,6,7,6,11,8,12,12,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,4,3,3,3,4,3,3,3,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,7,4,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,6,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,8,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,10,8,13,9,14,14,25,13,14,10,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,5,4,6,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,20,10,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,8,13,9,13,13,24,13,13,9,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,5,8,5,7,7,13,7,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-10,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,2,3,3,5,3,3,3,5,4,5,5,3,2,2,2,4,3,4,4,6,3,3,3,4,3,5,5,8,5,5,5,8,5,7,7,12,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,26,15,18,15,27,18,26,26,46,24,24,16,23,14,17,15,26,14,15,11,17,11,14,14,26,14,14,10,16,10,13,11,20,11,13,11,18,12,17,16,28,14,14,10,15,9,12,10,18,10,11,9,14,9,12,12,23,12,13,10,15,9,12,11,21,12,14,11,19,13,19,19,32,16,16,11,17,10,12,10,17,9,10,8,12,8,11,11,22,11,11,8,11,7,9,8,13,7,8,7,11,7,10,10,24,12,12,9,13,8,9,7,12,7,7,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,11,7,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,6,6,13,7,8,6,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,7,13,8,10,9,16,11,16,16,37,19,19,13,19,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,10,6,6,5,9,5,6,4,6,5,7,7,10,6,6,4,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,4,6,3,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-13,-6,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-10,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-10,-13,-10,-19,-13,-20,-20,-42 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,4,7,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 +-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,9,5,6,5,9,5,6,5,9,6,7,7,14,8,8,7,10,6,8,8,15,9,10,9,15,10,15,15,26,14,14,9,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,7,7,11,7,8,6,11,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,14,7,7,5,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,6,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,6,4,4,4,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,10,6,8,7,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,12,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-6,-3,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,9,5,5,4,6,5,8,8,16,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,19,10,11,8,12,8,10,10,18,9,9,7,10,7,9,8,12,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,10,8,13,9,12,12,22,12,12,9,13,8,9,7,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,10,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,11,6,7,5,8,5,6,5,9,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,7,5,8,5,5,4,7,4,4,3,4,3,5,5,6,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,20,10,10,7,11,6,7,6,12,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,7,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-3,-2,-3,-2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-5,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,4,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,6,6,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,14,8,10,9,14,10,14,15,26,13,13,9,14,8,10,8,15,8,9,7,10,7,9,9,14,8,8,6,8,5,6,6,10,6,6,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,13,7,8,6,8,5,6,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,7,4,5,4,7,5,8,8,15,8,8,6,7,5,6,5,10,5,5,4,6,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,5,3,4,3,4,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,5,10,6,6,5,7,5,6,5,9,5,6,6,9,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,6,6,5,9,6,9,9,15,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,12,7,7,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,7,9,6,6,6,9,6,6,5,7,5,6,6,9,5,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,7,5,6,5,9,5,5,4,5,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,6,5,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 +-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,1,1,2,3,2,3,3,5,4,6,6,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,21,11,10,7,10,6,7,6,10,6,6,5,8,5,6,6,13,7,8,6,10,6,8,7,13,7,8,6,10,7,11,11,19,10,11,8,13,8,11,10,17,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,47,24,24,16,24,14,17,15,26,14,15,11,18,12,16,15,24,12,12,9,13,8,11,10,17,10,11,9,15,11,16,16,29,15,15,11,17,10,12,10,18,10,11,9,14,10,14,14,22,12,12,9,15,9,12,11,20,11,12,10,17,12,17,17,31,16,17,12,17,10,11,10,17,9,10,8,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,12,23,12,11,8,11,7,9,8,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,9,16,8,8,6,9,6,8,8,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,5,8,5,6,5,8,5,5,5,8,6,8,9,16,9,10,8,12,8,10,9,17,10,12,10,17,11,16,16,33,17,17,12,17,10,12,10,18,10,11,8,12,7,9,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,14,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,13,7,7,6,8,5,7,6,11,7,8,6,10,7,9,9,17,9,10,8,11,7,10,9,17,10,12,10,17,12,18,18,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,9,6,9,6,8,7,11,7,8,6,10,7,11,11,20,10,10,7,12,7,8,7,13,7,8,6,9,7,10,9,15,8,8,6,11,7,9,8,14,8,8,7,11,8,12,12,21,11,12,8,11,7,8,7,11,6,7,6,8,6,8,7,12,6,6,5,8,5,6,6,9,6,7,6,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,9,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,6,4,4,4,8,5,5,4,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-13,-27 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,7,5,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,15,10,15,9,10,8,14,8,9,7,10,7,9,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,10,10,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-5,-4,-10,-5,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-27,-13,-12,-8,-12,-6,-8,-6,-12,-5,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,7,6,10,6,8,7,11,8,11,11,20,11,11,8,12,8,10,9,17,9,10,8,14,9,13,13,25,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,49,25,26,18,26,15,17,14,24,13,15,11,18,11,15,14,26,13,13,9,14,9,11,10,17,10,11,9,16,11,17,17,30,16,16,11,17,10,11,10,18,10,11,9,14,10,14,13,22,12,13,10,16,10,12,11,20,11,13,10,17,12,17,17,32,17,17,12,17,10,11,10,16,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,7,10,6,7,7,13,8,9,7,12,8,12,13,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,7,4,5,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,5,5,8,6,8,9,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-14,-7,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 +-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-4,-3,-6,-3,-5,-5,-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,6,5,8,5,7,7,14,8,8,6,8,6,7,6,12,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,10,12,10,18,12,18,18,33,17,17,12,18,10,12,10,16,9,10,8,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,10,9,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,8,12,7,8,7,11,6,7,6,8,6,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,11,11,22,11,11,8,11,6,8,6,11,6,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-13,-13,-26 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,4,3,6,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,17,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,49,25,25,17,26,15,18,14,24,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,17,10,12,10,17,11,16,16,31,16,16,11,17,10,12,10,18,10,12,9,15,10,14,13,23,12,13,10,15,9,12,11,20,11,12,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,7,13,9,12,12,22,12,12,8,13,7,8,7,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,10,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,8,6,8,5,5,5,8,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-11,-7,-11,-10,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-40 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,16,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,50,25,25,17,26,15,18,14,25,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,18,10,12,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,12,9,15,10,13,13,23,12,13,10,15,9,12,11,20,11,13,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,22,12,12,8,13,8,9,8,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,7,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-13,-10,-19,-13,-20,-20,-40 +-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,7,6,10,7,11,11,22,12,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,17,12,19,12,16,15,28,16,19,15,26,18,27,27,53,27,27,19,29,17,20,17,31,17,18,13,20,13,17,17,32,17,17,12,18,11,14,13,25,14,16,13,23,16,24,24,46,24,25,17,26,15,19,17,31,17,20,16,28,19,28,27,53,28,30,22,36,22,30,28,52,30,36,30,53,36,53,53,106,54,54,36,54,30,36,30,53,28,30,22,36,22,30,28,53,27,28,20,32,19,24,21,38,21,24,19,33,21,30,30,58,29,29,20,29,17,21,18,31,17,18,14,23,15,21,21,40,21,21,15,23,14,18,16,30,17,19,16,28,18,26,26,51,26,27,19,28,16,20,17,30,16,17,13,22,14,19,17,32,17,18,13,21,13,16,14,26,15,18,15,26,17,25,25,49,25,25,18,27,16,21,19,34,19,21,16,26,17,24,24,46,24,26,19,30,18,24,23,43,24,29,24,43,29,44,44,86,43,43,29,42,24,28,23,41,22,23,17,28,17,23,21,40,21,21,15,23,14,17,14,25,14,16,13,22,15,21,21,40,21,21,15,24,14,18,16,28,16,18,14,23,15,20,20,38,20,21,16,25,15,20,19,35,20,23,19,33,22,33,33,64,33,33,23,34,19,23,20,35,19,20,16,26,16,22,21,40,21,22,16,25,15,20,18,34,19,23,19,32,21,31,31,61,32,33,23,35,21,26,23,41,22,25,20,34,22,31,30,58,31,33,24,38,23,30,28,52,29,34,28,50,34,50,50,99,50,51,34,51,29,35,29,51,27,28,21,33,20,26,24,46,24,24,17,27,16,20,17,30,17,19,16,28,18,26,26,50,25,25,17,26,15,19,16,29,15,16,12,20,13,17,17,32,17,17,12,19,12,15,14,27,15,17,14,24,16,22,22,42,22,22,15,22,13,15,12,21,11,12,10,16,10,14,13,23,12,13,10,16,10,13,12,22,13,15,13,22,14,20,20,39,20,20,14,21,13,16,14,25,14,16,12,20,13,19,19,36,19,21,16,25,16,21,20,38,21,25,21,37,25,38,38,74,38,38,26,38,22,26,22,39,21,22,17,27,17,22,20,37,19,20,15,24,15,19,17,30,17,20,16,27,18,26,26,50,26,26,18,27,16,19,16,27,15,17,13,22,14,19,18,34,18,18,13,21,13,16,15,27,15,18,15,26,18,26,26,50,25,25,17,25,14,16,14,24,13,14,11,19,12,16,15,28,15,16,11,17,10,13,12,23,13,16,14,24,16,23,23,46,24,24,17,25,15,18,16,28,16,18,15,25,16,23,22,43,23,25,19,30,18,24,22,42,23,27,22,39,26,38,38,76,38,38,26,38,22,26,23,41,22,24,18,29,18,24,23,44,23,24,17,25,15,18,16,29,16,17,14,23,15,22,21,41,21,22,15,22,13,15,13,23,13,14,11,19,13,18,17,32,17,18,13,20,12,16,15,27,15,18,15,27,19,28,28,56,29,29,20,29,17,20,17,30,16,17,12,19,12,15,14,25,13,13,10,15,10,13,12,22,12,13,11,18,12,17,17,32,16,16,11,16,9,11,9,16,9,10,8,13,9,12,12,22,12,12,9,14,9,12,11,19,11,13,11,18,12,17,16,30,16,16,11,15,9,11,9,15,8,8,6,8,5,5,4,6,3,2,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-8,-16,-8,-10,-9,-17,-11,-17,-17,-34,-17,-18,-12,-19,-10,-13,-11,-21,-11,-13,-10,-19,-12,-18,-18,-38,-20,-22,-16,-27,-16,-23,-21,-42,-23,-27,-23,-42,-27,-40,-40,-81 +-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,13,9,13,8,10,9,16,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,27,18,27,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,11,9,16,9,10,8,12,8,11,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,11,7,8,8,13,8,10,8,14,9,13,13,25,13,13,10,14,9,11,10,17,10,11,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,21,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,32,17,17,12,18,10,12,10,18,10,11,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,17,12,18,11,13,12,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,18,15,26,14,14,11,17,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,8,11,11,20,11,13,11,19,13,20,20,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,14,8,9,7,12,8,10,10,17,9,9,7,11,7,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,6,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,8,8,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-20,-13,-20,-20,-40 +-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,10,7,10,6,8,7,14,8,9,7,12,8,12,12,23,12,12,9,13,8,10,9,17,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,26,18,26,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,10,9,16,9,10,8,12,8,12,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,13,27,14,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,13,8,10,8,14,9,13,13,25,13,14,10,14,9,11,10,17,9,10,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,8,11,11,20,11,12,9,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,12,10,16,11,17,17,32,16,16,11,18,10,12,10,19,11,12,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,17,15,26,14,14,11,18,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,9,12,11,20,12,14,11,20,14,20,20,38,20,20,13,19,11,14,11,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,13,7,8,7,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,7,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,19,13,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,11,7,8,7,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,7,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,0,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-21,-11,-14,-11,-20,-13,-20,-20,-41 +-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,7,4,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,7,5,7,4,6,5,10,6,7,6,9,6,9,9,16,9,9,6,9,6,7,6,12,7,7,6,10,7,10,10,18,10,11,8,12,8,11,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,11,8,13,8,11,10,19,10,10,8,11,7,8,8,13,7,8,7,12,8,11,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,6,5,9,6,7,6,10,6,9,9,17,9,9,6,9,6,7,7,12,6,7,6,10,6,9,8,15,8,9,7,10,6,8,8,14,8,10,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,7,7,14,8,8,6,9,5,6,6,9,5,6,5,8,6,7,7,13,7,8,6,8,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,14,8,11,10,18,10,12,10,17,12,17,18,34,17,17,12,18,10,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,7,6,10,6,7,6,10,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,8,8,15,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,8,6,10,6,9,8,16,8,8,6,10,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-27 +-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,4,4,6,5,7,7,10,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,16,8,8,6,9,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,8,14,8,9,8,13,9,13,13,24,12,12,9,13,8,10,9,17,10,11,9,15,10,14,14,27,14,15,11,18,12,16,15,26,15,18,15,26,18,26,26,52,26,26,18,27,16,19,16,27,15,16,12,20,13,17,15,28,15,15,11,16,10,13,11,18,10,12,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,9,7,12,8,12,11,20,11,12,9,14,8,10,9,15,9,10,8,14,9,13,13,27,14,15,11,16,9,11,9,16,9,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,10,9,17,10,11,9,14,9,13,12,22,12,13,9,14,9,12,11,20,12,14,12,22,15,22,21,42,22,22,15,22,13,15,12,20,11,11,9,14,9,12,11,21,11,11,8,11,7,8,7,14,8,9,7,12,8,10,10,21,11,12,8,12,7,8,7,13,8,9,7,12,8,11,10,20,11,11,8,12,8,10,9,18,10,11,9,16,11,16,16,33,17,17,12,17,10,13,11,19,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,16,9,11,9,16,11,16,16,31,16,17,12,17,10,13,11,19,11,13,11,18,12,16,15,31,17,18,13,20,12,16,15,27,15,17,14,25,17,25,26,50,25,25,17,26,15,18,15,26,14,15,11,18,11,14,13,25,13,13,9,14,9,11,10,15,9,11,9,15,10,14,14,24,13,13,9,14,9,11,9,16,9,9,7,11,7,10,9,15,8,9,7,11,7,8,8,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,19,11,13,11,20,14,20,19,38,20,20,14,20,12,14,11,20,11,11,9,14,9,11,11,21,11,12,8,12,8,10,9,17,9,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,8,9,7,12,8,10,9,17,9,10,7,10,6,8,8,15,9,10,8,14,10,14,13,26,14,14,9,13,8,10,8,13,7,8,6,10,7,9,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,11,22,12,13,10,15,9,12,12,21,12,13,11,19,13,19,20,38,19,19,13,20,12,14,12,20,11,12,9,14,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,12,12,21,11,11,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,15,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,15,8,8,6,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,4,6,4,6,6,9,5,6,5,8,6,8,8,16,8,7,5,6,4,5,4,7,4,5,4,5,3,3,3,3,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-20,-10,-11,-7,-12,-7,-10,-9,-21,-11,-13,-11,-20,-13,-20,-20,-41 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,11,9,15,8,9,7,11,7,10,9,16,9,9,6,9,6,7,6,10,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,9,6,6,5,8,6,8,8,16,8,9,6,9,6,7,5,9,5,5,4,7,4,5,5,10,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,24,12,12,9,13,8,9,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,5,4,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,8,15,10,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,9,5,5,4,7,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,11,6,7,5,8,5,7,7,11,7,8,7,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,12,22,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-22 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,18,11,13,11,17,9,10,8,12,8,12,11,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,8,8,14,8,8,6,10,6,7,6,11,7,8,6,10,7,9,9,19,10,10,7,11,7,8,6,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,9,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,14,8,8,6,7,4,5,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,7,5,8,7,13,7,8,6,9,6,7,7,12,7,8,7,10,7,10,10,22,12,12,8,12,7,8,7,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,21,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,21,11,12,9,13,8,10,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,11,7,10,10,16,9,9,7,9,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,9,13,13,26,14,14,10,14,8,10,8,13,7,8,6,10,6,8,7,15,8,8,6,8,5,6,6,12,7,8,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,6,11,7,8,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,9,13,8,10,9,14,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,10,7,10,10,20,10,10,7,10,6,8,6,10,6,6,5,7,5,6,6,8,5,6,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-8,-7,-12,-8,-12,-13,-27 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,15,9,10,8,15,10,15,15,30,15,15,10,15,9,10,9,14,8,8,6,10,7,10,9,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,4,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,6,9,6,7,6,12,7,7,5,7,4,5,5,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,9,5,5,5,8,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,3,5,3,4,3,5,4,6,6,8,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,16,9,10,7,11,7,10,9,16,9,10,8,13,9,13,13,25,13,14,10,14,9,11,9,16,9,9,7,12,8,10,9,17,9,10,7,11,7,8,8,14,8,9,8,14,10,14,14,25,13,14,10,15,9,11,9,16,9,11,9,15,10,14,14,26,14,15,11,18,11,15,14,26,15,18,15,25,17,25,26,53,27,27,18,27,15,17,14,25,13,14,11,18,12,16,15,27,14,15,11,16,10,12,10,18,10,12,10,17,11,16,16,27,14,14,9,13,8,9,8,14,8,9,7,11,8,11,11,20,10,10,7,11,7,9,9,16,9,10,9,15,10,14,13,27,14,13,9,13,8,9,8,15,8,9,7,11,7,9,8,17,9,9,7,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,15,9,10,9,16,9,10,8,13,8,11,11,21,11,12,9,14,9,11,11,20,12,14,12,21,14,21,21,40,20,20,13,19,11,14,12,20,11,12,9,13,8,11,10,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,15,15,32,17,17,12,19,11,14,12,20,11,12,9,13,8,11,11,21,11,12,9,14,9,11,9,16,9,11,10,17,12,17,17,32,17,17,12,17,10,12,10,18,10,12,9,15,11,16,16,32,17,18,13,20,12,16,14,26,15,18,16,28,19,27,27,53,27,27,19,28,16,18,15,26,14,14,10,16,10,13,12,25,13,14,10,16,10,12,10,18,10,12,10,17,11,15,15,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,14,7,7,5,8,5,7,7,12,7,8,7,13,9,12,12,22,11,11,7,10,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,15,9,12,12,22,13,15,13,22,15,21,20,39,20,19,13,19,11,14,12,20,11,12,9,13,8,11,11,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,9,15,10,14,14,27,14,14,10,15,9,10,8,13,7,8,6,10,7,10,10,15,8,9,7,11,7,9,8,14,8,9,8,13,9,12,12,21,11,12,8,12,7,9,8,15,8,9,7,11,8,11,10,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,21,14,21,12,14,12,20,11,11,9,14,9,13,12,23,12,12,8,12,7,9,8,14,8,9,8,13,8,11,11,23,12,12,8,12,7,9,8,13,7,8,6,9,6,9,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,30,16,16,11,15,9,10,8,14,8,8,7,11,7,9,8,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,28,14,14,10,14,8,9,8,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,10,9,15,10,15,14,28,14,14,10,15,9,10,8,14,8,8,6,9,6,7,7,13,7,8,6,9,5,6,6,10,6,7,6,9,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20 +-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,3,6,4,4,3,5,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,15,15,30,15,15,11,15,9,10,9,15,8,8,7,10,7,10,9,16,8,8,6,10,6,7,6,12,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,5,11,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,12,7,8,6,9,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,8,5,6,5,6,4,6,6,11,6,6,4,6,4,4,4,7,5,6,4,7,5,6,6,10,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,19,10,10,7,10,6,7,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,17,9,10,8,12,7,9,8,14,8,10,9,16,11,16,15,29,15,15,11,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,7,5,6,5,8,5,6,4,7,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,6,5,7,4,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,8,6,9,6,7,7,13,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,6,5,8,6,8,8,16,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,11,23,12,12,8,12,7,9,7,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,8,5,6,6,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21 +-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,6,4,5,5,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,6,4,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,4,3,4,5,5,3,3,3,4,3,3,3,7,4,4,3,5,4,5,6,10,6,6,5,8,5,7,7,11,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,17,17,36,18,18,12,18,10,12,10,18,10,11,8,12,8,11,11,19,10,11,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,10,7,11,7,9,8,16,9,9,7,10,6,7,6,12,7,7,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,6,9,5,6,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,13,7,8,6,9,5,6,5,11,6,7,6,10,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,12,7,7,6,10,7,10,9,18,9,9,7,10,6,6,5,10,6,6,5,9,6,8,8,13,7,8,6,8,5,6,6,11,6,7,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,6,8,8,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,27,14,14,10,14,8,10,9,14,8,8,6,9,6,8,8,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,5,4,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,5,11,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,6,6,10,6,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,7,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,4,2,2,3,6,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,5,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,9,15,10,14,15,30,16,16,11,16,9,11,9,15,9,10,7,11,7,10,9,17,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,17,9,8,6,8,5,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,7,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,21,11,12,8,12,7,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,12,7,7,5,6,4,6,5,10,6,6,6,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,14,8,10,9,16,11,16,15,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,7,5,6,5,6,4,6,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,12,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,7,4,5,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,12,22,12,12,8,11,7,9,8,12,7,8,6,9,6,8,8,14,8,8,6,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,9,17,9,9,6,9,5,6,6,9,5,6,5,7,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,9,6,6,5,8,6,7,7,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,17,9,10,7,10,6,8,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,8,9,7,10,6,8,8,13,8,10,8,15,10,15,14,27,14,14,10,14,8,10,9,15,8,9,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18 +-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-2,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,6,6,5,3,3,3,4,3,4,3,5,3,4,4,6,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,15,15,28,15,15,10,14,8,10,8,13,7,8,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,10,8,14,10,15,15,23,12,12,9,13,8,10,9,15,9,10,8,14,9,13,13,24,13,14,10,16,10,14,13,23,13,16,14,25,17,26,26,54,28,28,20,30,17,20,17,31,17,18,14,22,14,19,17,32,17,17,12,18,11,14,13,24,13,15,12,19,12,17,16,29,15,15,10,14,8,9,8,14,8,9,7,12,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,16,11,15,15,21,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,10,18,10,11,9,16,10,14,14,26,14,14,9,13,8,9,8,13,7,8,6,10,7,10,10,18,10,10,8,13,9,12,12,22,13,15,12,20,14,20,20,38,19,19,13,19,11,13,11,20,11,12,9,14,9,12,12,23,12,13,10,15,9,11,10,17,10,11,9,14,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,9,6,9,9,16,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,34,17,17,12,17,10,12,10,16,9,10,8,12,8,11,10,19,10,11,8,13,8,10,10,18,10,12,10,18,12,17,17,30,16,16,12,18,11,13,11,19,11,12,10,16,11,15,15,29,16,17,13,20,12,16,15,28,16,19,15,26,18,26,27,51,26,26,18,27,15,17,14,25,13,14,11,18,11,15,14,26,14,14,10,14,8,10,9,17,10,11,9,15,10,14,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,9,16,9,9,7,11,7,8,7,12,7,8,7,11,8,11,11,24,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,12,6,6,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,12,8,12,7,9,9,16,9,10,8,13,9,13,12,23,12,12,9,14,9,12,11,21,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,22,12,13,9,14,9,12,11,21,11,11,8,13,8,10,8,14,8,10,8,13,9,12,12,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,9,17,9,9,7,11,7,9,9,17,9,10,8,14,10,14,14,24,12,12,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,20,11,11,8,13,8,10,9,15,8,9,7,11,7,10,10,19,11,12,9,14,9,11,10,18,11,13,11,19,13,20,20,38,20,20,14,20,12,15,13,23,12,13,10,17,11,14,13,24,13,13,9,13,8,9,8,13,7,8,7,12,8,11,11,22,12,12,8,11,7,9,8,13,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,17,11,15,15,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,8,7,12,7,8,6,9,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,7,10,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36 +-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,7,5,8,8,14,8,8,5,8,5,6,5,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,15,15,11,16,9,11,9,16,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,15,8,8,6,7,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,7,5,7,8,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,8,14,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,6,9,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18 +-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,14,14,28,15,15,11,16,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,16,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,5,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,6,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,6,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,21,11,10,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,7,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,6,6,5,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,4,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,6,9,5,6,6,10,7,9,8,16,8,8,5,8,5,6,5,9,5,5,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-9,-19 +0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,6,4,4,4,6,4,6,5,9,5,6,5,7,4,6,5,9,6,6,6,9,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,6,5,9,5,6,5,8,5,7,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,5,5,6,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,8,4,4,4,6,4,5,5,8,4,5,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,5,4,4,3,5,4,4,3,5,4,5,5,7,4,4,3,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,4,4,4,7,5,6,4,7,5,7,8,13,7,7,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,5,6,5,8,6,9,9,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,14,8,8,6,10,6,8,7,14,8,9,8,14,10,15,15,30,15,15,11,16,10,12,10,18,10,10,7,11,7,10,10,18,10,10,7,10,6,8,7,14,8,9,7,12,8,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,9,14,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,8,6,11,6,7,5,8,5,7,7,11,6,7,5,8,5,6,5,10,6,6,5,8,6,8,7,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,10,6,7,5,8,6,8,8,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,10,7,10,6,7,7,12,7,8,6,10,7,10,9,16,9,9,7,10,6,8,8,16,9,10,9,15,10,15,15,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,6,9,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,9,7,12,8,11,11,22,12,12,9,13,8,9,7,13,7,8,6,9,6,8,8,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,5,6,5,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,12,7,9,8,12,7,7,5,8,6,8,8,14,7,7,5,7,4,5,4,7,5,6,5,8,5,7,7,14,7,7,5,6,4,4,4,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,3,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,7,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,6,6,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,11,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,8,7,11,8,12,11,22,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,7,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,6,5,7,4,5,5,8,5,6,5,8,6,8,9,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,6,4,4,4,8,5,5,4,5,4,6,6,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,5,8,5,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,4,4,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,8,4,4,3,6,4,4,3,6,4,4,3,4,3,5,5,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,4,7,5,6,6,10,5,5,4,6,4,4,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,6,5,9,6,7,6,10,7,11,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,6,5,7,5,6,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,9,6,8,8,14,7,7,5,8,5,7,6,10,6,6,5,8,6,8,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,11,8,13,8,10,9,16,10,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,12,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,20,10,10,7,11,7,8,6,10,6,7,6,9,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,8,7,16,8,8,6,9,5,6,5,8,5,5,4,7,5,7,7,15,8,9,7,10,6,8,7,12,7,8,7,13,9,14,14,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,7,11,6,7,5,7,5,6,6,11,7,8,6,10,7,9,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,24,12,12,8,12,7,8,7,12,7,8,6,9,6,8,8,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,19,10,11,8,12,7,9,8,14,8,10,8,13,8,11,11,19,10,10,8,12,8,11,10,18,10,12,10,18,12,18,18,38,19,19,13,20,11,12,10,17,10,11,8,13,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,13,7,8,6,10,7,9,8,14,8,9,7,12,8,12,12,28,15,15,10,14,8,10,9,16,9,10,7,11,7,9,9,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,6,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,13,7,7,5,7,4,5,5,9,5,6,5,7,5,6,6,15,8,9,7,10,6,7,6,11,6,7,6,9,6,7,7,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,10,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,11,7,10,10,20,10,10,7,9,5,6,5,8,4,4,3,5,4,6,6,8,5,5,3,4,3,4,4,7,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-25 +-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,12,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,9,6,7,6,10,6,8,7,11,8,11,12,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,5,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,5,6,4,5,5,8,5,6,5,9,6,9,9,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,15,8,8,5,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,24,12,12,9,13,7,8,6,12,7,7,6,9,6,8,7,14,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,4,3,5,3,4,3,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,9,5,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,19,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,6,5,8,5,5,5,8,6,8,8,13,7,8,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,6,9,6,9,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,6,5,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,10,7,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,9,9,14,8,8,6,9,5,6,6,11,6,7,6,10,7,9,8,17,9,10,8,12,8,10,9,13,8,10,9,16,11,16,16,28,15,15,11,16,9,11,9,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,14,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,6,12,7,9,7,12,8,12,12,18,10,10,7,9,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,7,5,6,5,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,14,31,16,16,11,16,9,10,8,16,9,9,7,12,8,11,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,9,5,6,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,5,5,8,6,9,9,12,7,7,5,6,4,5,4,6,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,12,7,8,6,10,7,10,10,26,14,14,9,13,8,9,7,14,8,9,7,10,6,8,7,11,6,6,5,8,5,6,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,7,4,5,4,9,5,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,7,10,6,7,6,10,7,10,11,18,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,5,8,5,7,7,13,7,7,5,6,4,4,3,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,7,5,8,5,7,6,9,6,7,6,11,8,11,11,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,6,4,4,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,10,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,4,4,9,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,6,7,6,9,6,9,9,21,11,11,7,11,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,4,6,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,7,5,7,7,18,10,10,6,9,5,6,5,9,5,6,5,7,4,6,5,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,4,6,6,8,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,13,8,10,8,15,10,15,15,27,14,14,10,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,10,6,7,6,9,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,11,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,19,10,10,7,10,6,7,6,10,6,7,5,9,6,8,7,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,7,13,9,12,12,30,15,15,10,15,9,10,8,15,8,8,6,10,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,5,8,5,6,5,9,5,6,4,6,4,4,4,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,26,14,14,9,13,7,8,7,12,7,8,6,9,6,8,7,10,5,5,4,6,4,5,4,8,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,8,9,7,10,6,8,7,13,8,9,7,12,8,12,12,29,15,15,10,14,8,10,8,15,8,8,6,10,7,9,9,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,6,9,6,7,6,10,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,9,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,5,4,5,6,12,6,6,4,5,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,9,6,9,8,15,9,11,9,16,11,17,17,28,14,14,10,14,8,10,9,17,9,10,8,12,8,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,14,26,14,14,10,14,9,11,10,18,10,11,8,13,9,12,12,22,12,13,10,15,10,14,14,26,15,18,15,27,19,28,28,51,26,25,17,25,14,16,13,23,12,13,9,14,9,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,15,30,16,16,11,17,10,12,10,17,9,10,8,13,8,11,10,19,10,11,8,13,8,11,10,19,11,12,10,18,12,18,19,27,14,15,10,15,9,11,9,15,8,9,7,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,8,12,7,9,8,15,8,9,7,12,9,13,13,24,13,13,10,16,10,12,11,21,12,14,12,20,14,20,20,29,15,15,11,17,10,12,10,17,9,9,7,11,7,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,10,11,8,12,7,8,7,13,7,8,6,10,7,10,10,18,10,10,8,13,8,10,10,18,10,11,9,14,10,14,14,35,18,18,12,17,10,12,11,19,10,11,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,10,9,15,10,15,15,28,15,15,11,16,10,12,11,19,10,11,8,13,9,12,12,23,13,14,10,16,10,13,12,22,13,15,13,22,15,23,23,56,28,28,19,29,17,20,17,30,16,17,13,20,13,17,16,31,16,16,12,18,11,13,12,21,11,12,10,16,10,14,14,27,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,24,13,14,10,15,9,12,11,21,11,12,10,16,11,15,15,20,11,12,9,13,8,10,8,14,8,8,7,11,7,8,8,14,8,9,7,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,12,7,7,6,10,7,11,11,20,11,12,9,15,9,12,11,20,11,12,10,17,11,16,16,49,25,25,17,25,14,16,13,22,12,12,9,14,9,11,10,18,10,10,7,11,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,10,6,6,5,8,5,5,4,6,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,8,6,8,9,25,13,13,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,9,7,12,8,10,10,18,11,13,11,18,13,19,19,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,13,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,8,6,8,5,7,6,10,6,8,7,11,8,11,10,22,12,12,9,13,8,9,8,13,7,7,5,6,4,5,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,2,2,2,2,4,3,4,3,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-7,-12,-7,-11,-10,-21,-11,-13,-11,-21,-13,-20,-20,-42 +0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,14,8,10,8,14,10,15,15,26,14,13,9,13,8,9,7,12,7,7,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,7,4,4,4,5,4,6,5,10,6,6,4,7,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,7,6,12,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,11,6,7,6,8,6,8,8,11,6,6,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,6,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,17,9,10,7,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,9,6,8,8,14,8,10,8,15,10,15,15,26,14,14,9,14,8,9,8,12,7,8,6,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,8,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,7,7,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,10,5,5,4,7,5,6,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,5,4,6,5,10,6,6,4,6,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,6,8,5,6,6,12,7,8,7,11,8,12,12,29,15,15,10,16,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,12,7,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,10,6,7,6,8,6,8,8,11,6,6,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,24,12,12,9,13,7,8,7,12,7,7,5,8,5,7,6,10,6,6,5,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,5,4,6,4,6,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,3,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 +0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,6,9,5,5,4,7,5,7,7,12,7,7,5,6,4,5,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,12,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,15,9,11,9,16,11,16,15,26,14,14,10,14,8,10,8,13,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,7,6,8,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,7,7,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,6,10,6,7,5,8,5,5,5,9,5,6,4,6,4,5,4,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,6,8,7,18,9,9,6,9,5,6,5,10,6,6,4,6,4,6,5,10,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,12,12,28,15,15,11,16,10,12,10,15,8,8,6,10,7,9,9,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,5,6,6,8,5,6,5,7,5,6,6,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,12,12,8,12,7,9,8,13,7,8,6,9,5,6,6,11,6,7,5,7,5,6,5,8,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-11,-23 +0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,7,9,6,7,6,9,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,4,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12 +0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,3,2,3,2,3,2,3,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,6,4,5,5,7,5,6,5,7,5,7,7,17,9,9,6,9,5,6,5,9,5,6,5,7,4,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-7,-15 +-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,17,9,10,7,10,6,7,6,9,5,6,4,7,4,6,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-6,-13 +-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,8,5,7,6,11,7,8,6,10,7,11,11,18,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,9,8,14,8,8,7,11,7,9,9,17,10,11,8,13,8,11,10,17,10,12,10,16,11,15,15,28,15,15,10,15,9,11,9,16,9,9,6,9,6,7,7,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,10,7,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,11,19,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,3,3,3,4,3,4,4,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,8,11,11,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,12,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,7,5,8,6,8,7,11,6,7,5,7,4,5,5,9,5,6,5,9,6,7,7,15,8,9,6,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,10,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,26,14,14,10,15,9,10,9,15,8,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,7,10,10,16,9,9,7,10,6,8,7,11,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,9,5,6,5,8,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,1,1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,6,5,7,5,6,6,9,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,11,6,6,5,7,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,9,16,8,8,6,9,5,6,6,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,3,4,4,9,5,5,3,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,4,4,8,5,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,3,5,3,2,2,4,3,4,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,6,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,18,10,10,7,10,6,6,6,9,5,6,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,9,5,6,4,5,3,4,3,4,3,4,3,3,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,2,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,4,3,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,12,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,7,7,5,7,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,5,3,3,2,4,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,4,5,5,6,4,4,4,6,4,5,5,9,5,6,4,6,5,7,7,14,7,7,5,8,5,7,7,11,6,7,6,9,6,8,7,12,7,7,6,10,7,9,8,14,8,9,7,12,8,12,12,18,9,9,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,13,7,7,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,13,7,7,5,6,4,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,7,4,5,5,8,6,8,8,22,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,11,7,8,7,13,7,7,5,8,5,6,5,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,3,2,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,9,5,5,3,4,3,3,2,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,4,3,3,3,5,4,5,5,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-1,-1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,6,11,6,7,5,8,5,7,7,12,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,4,7,5,7,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,5,5,3,4,3,3,2,2,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,9,6,8,7,11,6,7,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-5,-2,-2,-1,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,6,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,27,14,14,10,16,9,11,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,11,20,11,13,11,19,13,20,20,28,14,14,9,13,8,9,7,12,7,8,6,9,6,8,7,12,7,7,6,9,6,7,7,12,7,8,6,10,7,10,9,13,7,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,10,7,11,11,24,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,6,5,9,6,9,9,17,9,10,8,12,7,9,8,14,8,10,8,13,9,13,13,23,12,12,8,11,7,8,6,10,6,7,5,8,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,16,8,8,5,7,4,5,5,8,5,5,4,7,4,5,5,8,5,5,4,7,5,7,7,12,7,8,7,11,7,10,10,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,11,6,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,9,7,12,8,10,9,17,10,11,9,15,10,15,15,32,17,17,11,16,10,12,10,17,9,10,8,12,8,10,9,16,8,8,6,8,5,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,13,7,7,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,3,4,3,3,3,4,3,3,3,5,3,4,4,17,9,9,6,8,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,4,6,6,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,5,3,3,2,3,2,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-13,-27 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,20,10,10,7,10,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 +-3,-1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,6,12,7,8,7,11,8,12,12,15,8,8,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,5,7,7,13,7,8,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,5,3,4,4,6,3,3,2,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,21,11,10,7,11,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,6,4,5,5,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,5,6,11,6,5,4,5,3,4,4,6,4,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,10,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,4,5,5,9,5,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,15,8,7,5,8,5,6,5,9,5,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,5,6,4,4,3,5,4,5,5,9,5,6,5,8,6,8,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,14,8,8,6,10,6,7,5,8,5,5,4,6,4,5,5,11,6,5,4,5,4,5,4,7,4,4,3,4,3,5,5,10,5,5,3,4,3,4,3,6,4,5,4,6,4,6,6,10,6,7,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,3,8,5,5,4,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,4,3,4,3,4,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,8,5,6,5,7,5,6,6,22,12,12,8,12,7,9,8,13,7,8,6,8,5,7,6,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,12,7,7,5,6,4,5,5,9,5,5,4,5,4,5,5,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,14,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14 +-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,4,4,5,3,4,3,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,4,14,8,8,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,6,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8 +-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,7,5,8,8,15,8,7,5,7,5,6,5,8,5,6,5,7,5,6,5,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,12,8,11,11,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,7,5,6,5,8,5,5,5,8,6,9,9,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,3,4,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,6,10,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,17,9,9,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,11,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,9,5,5,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,5,4,6,5,7,7,12,7,9,8,14,10,14,13,25,13,13,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,7,12,7,7,6,10,7,10,10,24,13,13,9,12,7,9,8,14,8,9,7,12,8,12,12,24,13,13,10,15,9,11,10,19,11,13,11,19,13,20,20,19,10,10,7,11,6,7,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,9,5,6,6,10,6,7,6,9,6,8,8,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,15,10,15,15,15,8,8,6,9,5,5,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,5,8,6,8,8,31,16,16,11,17,10,11,9,16,9,10,7,11,7,9,9,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,7,5,6,6,10,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,9,8,14,8,8,6,9,6,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,8,5,5,4,5,4,5,5,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,10,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,11,6,6,4,7,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,18,10,10,7,10,6,7,6,9,5,6,4,7,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,8,5,5,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,9,6,9,9,17,9,9,6,8,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,16,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,7,13,8,10,8,13,9,14,14,12,7,7,5,8,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,4,2,2,2,3,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,21,11,12,8,12,7,8,6,10,6,6,5,8,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,12,12,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,18,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +-2,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,8,7,12,8,12,12,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,12,11,23,12,13,10,15,9,12,11,20,11,13,11,20,13,19,19,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,4,3,6,4,4,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,6,8,8,16,9,9,6,8,5,5,5,8,5,6,5,8,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,8,13,8,10,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,7,5,7,7,13,7,7,5,8,5,5,4,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,6,4,4,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,32,16,16,11,16,9,10,8,15,8,8,6,10,6,8,7,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,21,11,11,8,12,7,9,8,11,6,6,5,8,5,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,4,4,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,8,8,14,8,9,8,14,9,13,13,11,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,5,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,4,3,4,4,21,11,11,8,11,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,15,8,8,6,8,5,6,5,8,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-10 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,14,9,12,11,21,12,14,11,20,14,20,19,16,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,13,8,10,9,14,10,14,14,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,8,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,13,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,7,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,6,4,4,4,8,5,5,3,5,3,4,3,4,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,1,0,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,21,12,12,9,14,9,12,11,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,14,8,10,9,14,10,14,14,14,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,13,9,12,13,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,4,4,3,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,5,4,7,5,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,4,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,20,11,11,7,10,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,7,6,10,7,10,9,17,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,20,11,11,8,13,9,12,11,21,12,15,12,21,15,22,22,42,21,21,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,21,21,40,21,22,15,23,14,18,16,28,15,17,13,22,14,20,19,37,20,21,16,25,16,22,21,39,22,27,22,39,26,38,37,28,14,14,10,15,9,10,8,14,8,8,6,10,6,7,6,11,6,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,5,4,7,5,8,8,14,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,28,15,15,10,14,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,8,7,11,8,12,12,22,12,13,10,17,11,14,14,26,15,18,15,27,18,27,27,27,14,14,10,15,9,11,9,15,8,8,6,10,7,9,9,16,9,9,6,8,5,7,6,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,6,5,9,5,5,4,7,4,5,5,8,5,6,5,9,7,10,10,20,11,11,8,12,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,7,6,10,7,11,11,21,11,11,8,11,7,8,6,10,6,7,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,60,30,30,21,31,17,20,17,29,16,17,13,22,14,18,17,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,21,11,11,8,13,8,9,8,13,7,7,5,8,5,7,7,12,7,8,6,10,6,8,8,15,8,9,7,12,8,12,12,24,13,14,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,13,9,14,9,12,11,21,12,14,11,19,12,17,17,33,17,17,12,17,10,11,10,17,9,10,8,13,9,13,12,23,12,13,10,16,10,13,12,22,13,15,13,24,16,24,24,42,21,21,14,21,12,14,11,18,10,10,7,11,7,10,10,18,10,10,7,10,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,9,6,7,6,9,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,11,11,42,22,22,15,22,13,15,13,24,13,14,10,16,10,13,12,21,11,12,9,14,9,11,10,18,10,11,9,16,11,15,15,30,15,15,11,16,10,12,11,19,10,11,8,13,8,11,10,19,10,11,8,11,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,3,3,4,3,3,3,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-16,-33 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,4,4,5,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,12,14,12,20,14,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,6,9,6,8,7,14,8,10,8,14,10,14,14,14,8,8,6,8,5,6,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,13,9,12,13,22,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-16 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,5,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,10,6,6,5,6,4,6,6,11,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,12,8,10,10,20,12,14,11,19,13,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,10,6,6,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,5,9,6,8,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,17,9,9,6,9,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,13,22,12,12,8,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 +0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,6,7,7,14,8,10,8,13,9,13,13,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,10,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,20,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11 +0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,3,2,2,1,0,0,0,-1,12,6,6,5,7,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,3,3,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,5,8,5,7,7,10,6,6,4,6,4,6,6,12,7,9,7,12,8,12,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,12,12,8,12,7,9,8,15,9,10,8,12,8,11,11,20,11,11,8,12,8,11,10,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,14,7,7,5,6,4,4,3,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,13,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,4,6,6,30,16,16,11,16,9,11,9,14,8,8,6,10,7,9,9,18,9,9,6,9,5,6,5,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,5,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,9,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,6,12,7,8,7,13,9,13,13,21,11,10,7,10,6,7,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,5,7,7,21,11,12,8,12,7,8,7,11,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-8,-17 +0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,9,5,6,5,7,5,7,6,11,6,7,5,7,5,7,6,12,7,8,6,11,8,11,11,9,5,5,4,5,3,4,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,4,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,11,6,5,4,6,4,4,3,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9 +0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,8,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,5,9,6,7,6,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,9,13,13,11,6,6,4,6,4,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,9,9,10,6,6,4,6,4,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,6,4,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,4,4,5,4,6,6,10,6,6,5,6,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,14,7,7,5,7,4,5,5,7,4,4,3,6,4,6,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,6,5,11,6,7,5,6,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,2,1,0,1,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-3,-5,-5,-10 +1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,7,4,5,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,11,6,7,5,7,5,7,6,11,7,8,6,10,7,11,11,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,5,8,6,7,7,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,1,1,1,0,1,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,1,0,0,0,0,13,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,7,4,3,2,3,2,3,3,4,3,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,8,6,8,8,14,8,9,7,12,9,13,13,24,12,12,8,11,7,8,7,12,6,6,5,7,5,7,7,12,7,7,6,9,6,7,6,10,6,6,5,9,7,10,10,22,12,12,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,10,17,12,17,18,16,8,8,6,9,5,6,5,7,4,4,3,3,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,12,14,8,8,6,9,5,6,5,9,5,6,5,7,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,31,16,16,11,17,10,12,10,16,9,9,7,10,7,9,9,19,10,11,8,11,6,7,6,10,6,6,5,8,5,6,6,9,5,4,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,9,5,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,6,10,6,8,7,11,7,10,10,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,14,10,14,14,18,9,9,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,6,5,7,4,5,5,13,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,4,5,5,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,7,16,9,9,6,9,5,6,6,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,10,6,6,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,9,10,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,0,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,8,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,5,5,9,5,5,4,7,5,8,8,14,7,7,5,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,7,5,6,6,12,7,8,6,9,5,6,6,12,7,8,6,11,7,10,10,9,5,6,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,7,4,4,4,6,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8 +1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,0,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,10,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,4,3,7,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,7,6,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,6,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,4,2,2,2,1,1,2,2,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,5,7,4,5,4,7,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,11,8,11,11,9,5,6,4,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,6,4,4,3,5,3,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,8,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,2,2,1,1,2,2,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,3,3,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,4,4,4,7,5,6,6,5,3,4,3,4,3,3,3,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,7,4,4,3,5,3,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,14,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,7,8,5,5,4,6,4,6,6,11,6,7,6,10,7,9,9,16,9,10,7,11,7,10,10,18,10,11,9,16,11,16,16,27,14,14,10,14,8,8,7,11,6,6,5,8,5,7,7,12,7,7,5,8,5,5,5,8,5,6,5,9,6,9,9,20,11,11,8,12,8,10,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,10,18,10,12,11,19,13,19,19,16,9,9,6,8,5,5,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,6,4,6,6,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,3,2,3,2,3,3,10,6,6,4,5,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,5,9,6,7,6,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,5,5,15,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,8,8,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,38,20,20,14,20,12,14,12,20,11,12,9,14,9,11,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,4,7,7,9,5,6,4,6,4,5,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,7,10,10,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,7,11,7,8,8,14,8,10,8,14,10,14,14,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,14,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,14,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,20,10,10,7,10,6,8,7,13,7,8,6,10,6,8,8,14,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,4,5,3,3,3,4,3,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-6,-9,-9,-19 +0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,3,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,11,6,6,5,6,4,5,5,8,4,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,3,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,6,4,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,6,3,3,3,4,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,6,6,5,3,3,2,4,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,2,1,1,1,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,10,6,6,5,7,5,7,6,11,7,8,6,10,7,10,10,15,8,8,6,8,5,5,4,8,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,11,7,8,6,10,7,11,11,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,3,7,4,4,4,6,4,5,4,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,5,3,3,3,4,3,3,3,3,2,3,3,4,3,5,5,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-11 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,13,7,8,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,3,3,3,4,3,6,4,4,4,6,4,6,6,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,3,3,2,3,2,3,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,5,3,3,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,15,8,9,6,9,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,3,4,3,5,4,5,4,2,2,2,1,1,1,2,2,2,2,2,2,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,9,8,13,9,13,12,18,10,10,7,9,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,6,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,13,8,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,5,3,2,2,2,2,2,2,4,3,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,3,2,3,3,4,4,7,4,5,4,5,4,6,6,7,4,4,3,3,2,3,2,3,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,28,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,13,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,4,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,9,9,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,5,4,6,5,7,7,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,4,4,7,5,6,6,14,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,4,3,5,5,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,8,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,8,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,2,1,1,1,1,1,1,1,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,4,3,4,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,8,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,-3,-1,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,12,7,9,7,12,8,12,12,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,3,5,3,2,2,2,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,11,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,5,3,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,5,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,12,7,7,5,8,5,6,5,10,6,6,4,7,5,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,8,5,7,7,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,5,4,6,5,5,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,4,2,2,2,2,2,2,2,5,3,4,3,5,4,6,6,5,3,4,3,3,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15 +3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,5,3,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,4,3,3,2,2,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,9,9,19,10,11,8,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,18,10,11,8,12,8,11,11,20,12,14,12,21,15,22,22,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,9,10,9,15,10,13,13,25,13,14,10,16,10,13,13,24,14,16,13,23,15,21,21,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,4,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,11,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,5,5,8,6,9,9,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,47,24,23,15,22,13,15,12,21,12,13,10,15,10,13,12,21,11,11,8,11,6,7,6,11,6,7,6,11,8,11,10,19,10,10,8,12,7,9,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,7,10,10,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,16,8,8,6,8,5,6,5,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,4,19,10,11,8,11,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,14,9,12,12,23,12,13,9,13,8,9,8,14,8,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-9,-8,-15,-10,-16,-16,-33 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,6,8,6,7,7,12,7,8,7,12,8,11,11,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,1,1,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,5,5,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,7,6,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,8,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,6,8,7,12,7,8,7,12,8,11,11,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,1,1,2,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,5,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,7,8,6,8,5,6,6,11,6,6,4,7,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,5,5,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,4,6,6,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,17,9,9,6,9,5,6,5,8,5,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,2,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,4,3,3,2,2,2,2,1,1,1,1,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,11,8,12,12,13,7,7,5,8,5,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,7,12,8,11,11,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,5,7,7,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,25,13,13,9,13,8,9,7,12,7,8,6,9,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,4,3,3,2,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,3,3,7,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,1,1,1,2,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16 +2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,4,5,4,5,4,7,4,5,4,7,5,7,7,1,1,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,4,3,3,2,2,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,4,6,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,3,4,3,5,3,4,3,4,3,4,5,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,18,10,10,7,9,6,7,6,9,5,6,5,7,4,5,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,3,2,2,2,3,3,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,3,6,4,6,5,8,4,4,3,5,3,4,3,4,3,3,2,3,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11 +2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,2,2,2,1,1,1,2,2,3,2,2,2,2,2,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10 +2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,8,6,10,6,8,8,14,8,9,8,13,9,14,14,18,9,9,6,9,5,6,6,10,6,6,5,7,5,6,5,7,4,4,3,5,4,6,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,12,7,8,6,9,6,8,8,14,8,9,8,13,9,12,12,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,7,5,3,4,3,4,3,3,2,2,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,6,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,5,3,3,2,3,2,2,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,29,15,14,10,14,8,10,8,14,8,8,6,9,6,8,7,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,1,1,0,0,0,0,0,0,0,1,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,5,3,4,3,4,3,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19 +2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3,5,3,4,3,5,4,5,5,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +3,2,2,1,0,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,7,5,6,5,8,5,7,7,10,5,5,4,6,4,4,4,9,5,5,4,6,4,6,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,9,7,10,10,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,19,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,4,4,12,7,7,5,8,5,5,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,3,3,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,6,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,8,5,5,4,6,4,5,4,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,7,4,4,4,6,4,5,5,9,5,6,4,6,4,5,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-4,-2,-4,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,4,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,4,2,3,3,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,6,4,4,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,17,9,9,7,10,6,7,6,9,5,6,5,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,10,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,5,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,4,3,4,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,6,6,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,16,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14 +4,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,3,5,3,3,3,5,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,11,8,12,13,18,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,18,10,11,8,12,8,10,9,16,9,11,9,16,11,16,17,25,13,14,10,14,8,10,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,9,22,11,11,8,11,7,8,6,10,6,6,5,7,5,7,7,14,8,8,7,11,7,10,9,17,10,12,10,16,11,16,16,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,5,8,6,8,7,3,2,2,2,2,2,2,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,8,4,4,3,3,2,2,2,3,2,3,3,5,4,5,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,31,16,17,12,17,10,13,11,20,11,11,9,14,9,11,11,20,11,11,8,11,6,7,6,10,6,7,5,8,6,8,7,17,9,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,9,8,18,9,9,7,10,6,7,6,11,6,6,4,5,3,4,4,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,6,4,6,6,14,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,5,8,6,8,8,13,7,7,5,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,11,7,9,8,13,7,7,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,4,7,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,8,19,10,10,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,10,6,6,4,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-13,-14,-29 +2,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,5,9,5,6,5,9,6,9,9,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +2,1,1,1,2,2,2,1,0,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,5,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,5,11,6,7,5,7,5,6,6,10,6,6,5,9,7,10,10,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,9,5,6,4,6,4,5,4,8,5,6,5,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,6,9,5,6,5,9,7,10,10,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,17,9,10,7,10,6,8,7,12,6,6,5,8,5,7,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-7,-4,-7,-7,-15 +2,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,5,4,5,4,6,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,5,4,5,5,7,4,5,4,7,5,7,7,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7,4,4,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-3,-5,-3,-5,-5,-11 +2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,4,8,5,5,4,6,4,4,4,7,4,5,5,8,6,9,9,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,8,5,7,6,11,6,7,6,10,7,11,11,17,9,8,6,8,5,6,6,10,6,6,5,7,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,10,7,11,11,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,3,4,4,6,4,4,4,4,3,3,2,2,2,3,3,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-2,-4,-4,19,10,10,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,3,3,3,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,4,3,7,4,4,4,6,4,6,6,10,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-9,-9,-19 +2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,4,3,3,3,3,3,4,3,8,4,4,3,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,5,6,4,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,7,5,6,6,9,5,6,5,8,6,9,9,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,6,4,6,4,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,4,3,5,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15 +3,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,13,7,8,6,8,5,6,6,10,6,7,6,10,7,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,24,12,12,8,12,7,8,7,13,7,7,6,9,6,8,8,15,8,9,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,7,8,6,9,6,7,7,13,7,8,6,10,7,9,9,16,9,11,9,15,10,15,15,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,1,0,0,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,28,15,15,11,16,10,12,10,17,9,9,7,11,7,9,8,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,5,8,5,5,4,6,4,5,4,7,4,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,4,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,5,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,9,5,5,4,7,5,7,7,9,5,5,4,6,3,3,3,4,2,2,2,3,2,3,4,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-13,-6,-7,-5,-10,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,4,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,6,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,8,6,10,7,10,10,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,7,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,3,2,2,2,3,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,5,3,4,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,-1,0,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,14,8,7,5,7,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,6,9,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,3,2,3,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,5,6,5,10,6,6,5,8,5,7,7,14,8,8,7,11,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,8,6,10,7,10,9,16,9,9,7,10,6,7,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,8,7,9,5,6,5,8,6,8,7,13,7,7,6,9,6,9,8,15,9,10,8,14,9,13,13,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,3,2,3,2,3,2,3,2,2,1,1,1,2,1,1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,26,13,13,9,14,8,10,9,15,8,8,6,9,6,7,7,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,8,5,6,5,8,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,6,7,11,6,7,5,7,4,5,4,6,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-30 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-4,-5,-4,-9,-4,-6,-4,-9,-6,-9,-9,-19 +1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,11,7,10,9,16,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,8,6,8,6,8,8,13,8,9,8,14,10,14,13,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,14,9,14,8,10,9,14,8,8,6,9,6,8,8,14,8,8,6,7,5,6,6,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,8,6,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,1,1,1,2,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,25,13,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,7,5,6,6,9,5,5,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,6,7,5,7,5,6,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,10,6,7,7,12,8,12,11,21,11,12,9,14,9,11,10,18,10,11,9,14,10,14,14,27,14,14,10,16,10,14,13,24,14,16,13,23,16,23,23,44,23,23,16,24,14,17,14,24,13,14,10,16,10,14,13,25,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,26,14,14,10,15,9,11,9,16,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,23,13,15,13,23,16,23,23,45,23,23,16,23,13,15,12,21,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,20,12,14,12,20,13,19,19,37,19,19,14,21,12,15,14,25,14,15,12,19,13,18,17,33,17,18,14,22,13,17,16,29,16,19,15,26,17,25,25,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,9,5,4,3,4,2,2,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-8,50,25,25,17,25,14,16,13,22,12,13,10,16,10,12,11,21,11,11,8,11,7,8,7,13,8,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,7,5,8,5,7,7,13,8,9,7,11,8,12,12,22,11,11,8,12,7,8,7,12,7,7,5,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,8,15,8,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,7,5,7,7,13,7,7,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,4,7,5,7,7,12,7,7,5,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-9,-12,-11,-22,-11,-13,-10,-19,-11,-16,-16,-32,-16,-17,-12,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-28,-28,-58 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,11,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,22,11,11,8,12,7,8,6,11,6,7,5,8,5,7,6,13,7,8,6,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,12,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,8,8,15,9,10,8,14,9,13,13,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,6,5,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,4,7,4,5,4,6,4,5,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,13,7,7,6,8,5,6,5,9,5,6,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,10,6,9,9,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,3,2,3,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,6,5,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,7,6,9,6,8,7,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,7,7,12,7,9,7,12,8,12,12,22,12,12,8,11,6,7,6,10,6,6,5,8,5,7,6,14,7,7,5,8,5,7,7,10,6,7,6,10,7,10,10,19,10,11,8,12,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,6,8,8,16,9,11,9,14,9,13,13,0,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,3,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,13,9,13,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,6,4,5,5,9,5,6,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,8,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-8,-6,-12,-8,-12,-13,-27 +2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-7,-15 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,5,3,3,2,4,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,7,5,7,7,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,3,2,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14 +3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,3,3,6,4,5,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,9,6,7,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,13,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,8,8,7,11,7,8,8,14,8,9,7,11,8,11,11,22,12,12,8,12,7,8,6,10,6,6,4,6,4,6,6,14,8,8,6,9,6,8,7,12,7,7,6,9,6,9,9,17,9,9,6,8,5,6,6,10,6,7,6,9,6,8,8,13,7,8,6,10,6,8,8,14,8,10,8,13,9,12,11,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,1,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,26,13,13,9,13,7,8,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,3,2,3,2,3,2,3,3,4,3,4,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,7,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,5,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-13,-13,-26 +2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,3,3,3,3,3,4,4,7,4,4,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,5,6,4,4,3,4,3,3,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,13,7,8,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,4,6,4,6,6,13,7,8,5,8,5,5,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,15,8,8,6,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,5,8,5,5,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,11,6,6,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,4,6,4,4,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,5,4,6,6,6,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,9,5,6,5,8,5,6,6,8,5,5,5,8,6,8,7,17,9,9,6,9,5,5,4,8,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,5,5,6,4,4,3,5,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,5,7,7,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,16,8,8,6,8,5,5,4,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,2,2,2,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,5,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,1,1,0,0,0,0,0,1,1,1,0,0,0,0,4,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,3,2,3,2,5,3,3,2,3,3,4,4,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16 +4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,4,3,3,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,7,4,5,5,7,5,8,8,16,9,9,6,9,5,6,6,9,5,6,4,6,4,4,5,8,4,4,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,3,4,4,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,2,3,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,2,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,9,5,6,4,6,4,4,4,8,4,4,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,0,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-12 +11,6,6,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,3,5,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,2,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,6,5,7,7,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,7,7,13,8,9,8,13,9,13,13,29,15,15,10,15,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,6,5,7,5,8,8,19,10,10,7,10,6,8,8,14,8,8,6,10,6,8,8,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,25,13,12,8,12,7,8,6,10,5,5,4,6,4,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,11,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,6,7,6,11,8,11,11,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,25,13,12,8,12,7,9,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,3,4,5,16,9,9,6,8,5,5,4,7,4,5,4,6,4,4,4,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,10,5,5,4,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,3,2,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,4,3,5,5,6,4,4,3,4,3,4,3,5,3,3,2,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,13,7,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,9,5,5,4,5,3,3,3,4,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,3,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,5,6,5,8,6,8,7,16,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,6,4,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +8,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,2,2,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,7,4,5,4,6,4,5,4,7,4,5,4,5,4,5,5,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,3,6,4,5,4,6,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,6,6,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,9,5,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7 +6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +11,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,0,0,0,1,1,1,2,2,4,2,2,2,3,2,3,3,7,4,5,4,5,3,3,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,8,5,6,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,8,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,7,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,13,7,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,3,2,1,1,1,1,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,1,1,1,1,1,2,7,4,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,2,6,4,4,3,3,3,4,4,6,4,5,4,7,5,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,5,5,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12 +6,4,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,4,5,3,4,4,11,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,5,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,7,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,7,4,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7 +6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +11,6,5,4,5,3,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,2,1,1,1,1,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,5,3,4,4,6,4,6,6,17,9,8,6,8,5,6,6,10,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,13,7,8,6,9,5,6,5,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,5,10,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,9,5,5,4,5,3,4,3,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,7,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,3,2,3,3,4,3,4,4,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,5,3,3,2,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-2,-2,-6 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,5,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,7,4,4,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,8,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,7,2,2,2,1,2,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,5,5,4,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,2,2,2,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,7,4,4,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,7,4,5,4,7,5,7,7,2,2,2,1,2,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +17,9,9,6,7,4,4,4,6,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,1,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,5,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,8,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,6,8,8,14,8,10,8,14,10,14,13,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,14,7,7,5,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,14,7,7,5,7,4,5,5,8,5,5,4,5,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,5,9,5,4,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,11,6,6,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,6,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,3,3,6,5,7,7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,5,3,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 +9,5,5,3,4,3,3,3,4,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,3,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,7,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +10,5,5,3,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,8,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,0,0,0,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +10,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,0,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,5,5,9,5,5,4,6,4,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,9,5,4,3,4,3,3,2,4,3,3,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,5,3,3,2,3,2,2,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,6,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,5,3,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,4,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,0,0,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,4,3,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,5,10,6,6,5,7,5,6,6,10,6,7,6,11,7,10,10,6,3,2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,9,5,5,4,6,4,4,3,4,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,6,4,6,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 +7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,5,3,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,5,3,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,2,2,2,4,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,2,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +10,5,5,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,12,7,7,5,6,4,4,4,7,4,4,4,6,4,6,5,7,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,5,4,5,5,9,5,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,5,7,7,6,3,3,2,3,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,5,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,2,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,2,3,3,4,3,4,4,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,2,1,1,1,1,1,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,16,8,8,6,9,6,8,7,12,7,8,6,10,6,8,7,13,7,7,5,8,5,7,7,12,7,7,6,10,7,11,11,7,4,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,1,1,1,1,1,0,0,-1,0,-1,0,4,3,3,2,3,2,2,2,2,1,1,1,0,0,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-3,-3,-12,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,1,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,3,4,4,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,3,2,1,1,1,1,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 +8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8 +8,4,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,13,7,7,5,7,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,-7,-3,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9 +6,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +8,5,5,3,4,3,4,3,3,2,2,2,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,4,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,9,5,6,4,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,4,3,3,3,14,8,8,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,4,3,4,3,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,9,5,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,-1,-1,0,0,0,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,1,1,1,1,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-11 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,12,6,6,5,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-3,-3,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-8 +12,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,21,11,10,7,10,6,7,7,12,7,7,5,8,5,6,6,11,6,7,5,7,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,5,3,3,3,4,3,5,5,8,5,6,5,9,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,9,5,3,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,9,5,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-7,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-12,-12,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,5,5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-4,-4,-9 +9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,14,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,5,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,5,3,2,2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-6,-4,-8,-5,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-3,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,7,7,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8 +14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,5,3,4,3,4,3,4,3,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,7,5,7,7,11,6,6,5,7,5,6,5,6,4,5,4,6,4,6,6,11,6,6,4,6,4,6,6,10,6,6,5,9,6,8,8,4,3,3,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,6,3,3,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-3,-1,0,0,0,1,1,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,4,3,5,5,8,4,4,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10 +14,8,8,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,4,3,4,3,4,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3,3,4,3,4,3,5,3,4,4,5,4,6,6,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,6,4,4,3,5,3,4,4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +14,8,8,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,19,10,10,7,9,6,7,6,10,6,6,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +26,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,36,19,19,13,20,12,14,12,20,11,12,9,14,9,12,11,19,10,11,8,11,7,8,8,14,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,3,4,4,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,5,6,11,6,7,5,8,5,7,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,9,16,9,10,9,15,10,15,15,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,9,5,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-6,-12,-8,-12,-12,-24,-12,-12,-7,-11,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-22,-22,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,0,1,1,1,0,1,1,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,8,8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-8,-9,-7,-13,-8,-13,-14,-29 +14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-4,-3,-6,-4,-6,-6,-14 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,6,4,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,6,5,8,5,6,5,7,5,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-7,-4,-6,-6,-14 +10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9 +15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,5,5,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,6,5,7,4,5,4,7,5,8,8,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-9,-4,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,3,4,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13 +9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7 +12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,14,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,-1,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9 +11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8 +20,10,10,7,9,6,7,6,9,5,5,4,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,11,6,7,5,7,4,5,4,5,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,21,11,11,8,11,6,7,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,7,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,1,1,1,1,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-2,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-7,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-14,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15 +11,6,6,4,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,3,3,3,3,4,4,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7 +13,7,7,4,5,3,4,4,5,3,3,3,3,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,13,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,3,2,3,3,3,3,4,4,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-4,-4,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6 +16,8,8,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,3,3,3,4,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,3,2,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,0,1,1,1,2,2,2,1,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,5,3,3,3,4,3,5,5,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11 +10,6,6,4,5,3,4,3,5,3,3,3,4,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7 +14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,1,1,2,2,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-5,-5,-11 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,5,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +27,14,14,10,14,8,9,8,13,7,7,5,8,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,6,5,9,5,6,6,10,7,9,9,18,9,9,6,8,5,5,5,8,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,5,5,12,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,4,5,5,8,6,8,8,28,14,14,9,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,6,9,6,7,6,9,5,6,5,9,6,8,7,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,5,3,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-16,-11,-17,-17,-17,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,7,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,5,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-2,2,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-21 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,15,8,8,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,15,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,0,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,0,0,0,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,5,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +19,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,6,4,5,4,6,5,7,7,14,7,7,5,6,4,4,3,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,5,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12 +12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,13,7,6,4,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +25,13,13,9,12,7,9,8,14,8,8,6,9,6,7,7,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,3,7,4,4,3,4,3,3,3,6,4,5,5,8,5,7,7,22,11,11,8,11,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,1,1,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,2,2,2,1,1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-7,-14,-9,-13,-13,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,-2,-2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +14,8,7,5,7,4,5,5,8,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,13,7,7,5,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,4,3,3,2,5,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10 +14,8,7,5,8,5,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,3,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +24,13,13,9,13,8,9,8,11,6,6,5,8,5,7,7,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,5,3,4,4,8,5,7,7,20,10,10,7,10,6,7,6,8,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-10,-5,-7,-6,-12,-7,-11,-11,-11,-5,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-2,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16 +16,9,9,6,9,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +23,12,12,8,13,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,19,10,10,7,10,6,6,5,9,5,6,4,5,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-6,-6,-10,-5,-6,-5,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +23,12,12,8,12,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +44,22,22,15,21,12,13,11,18,10,10,7,11,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,9,6,7,6,11,6,7,6,10,6,8,8,14,8,8,7,11,7,9,8,15,9,11,10,17,12,17,17,32,17,17,12,18,10,12,11,19,11,12,9,15,9,12,11,21,11,11,8,13,8,9,8,13,7,8,6,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,35,18,19,13,19,11,12,10,17,9,10,7,10,6,8,7,12,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,4,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,2,2,3,3,4,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,3,3,3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-6,-11,-7,-12,-12,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-11,-12,-9,-15,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-23,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,1,1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-15,-15,-30 +23,12,12,8,11,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,7,9,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +23,12,12,8,12,7,8,6,10,6,6,5,7,5,6,5,9,5,6,5,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,17,9,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,12,6,7,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +26,13,13,9,14,8,8,7,11,6,6,5,7,4,5,5,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,9,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,5,8,5,7,7,18,10,10,7,11,6,7,6,10,5,5,4,6,4,4,4,7,4,3,2,3,2,3,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,3,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,3,2,3,2,3,4,4,3,3,3,4,2,2,2,4,2,2,2,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15 +16,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,11,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +20,10,10,7,10,6,6,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,7,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 +18,9,9,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +32,16,16,11,15,9,10,8,14,8,8,6,9,6,7,6,13,7,7,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,11,6,7,5,7,4,5,5,9,6,7,6,11,7,10,10,22,12,12,8,12,7,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,1,0,0,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-14,-9,-15,-15,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,1,1,1,1,2,2,2,1,1,1,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18 +18,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-7,-4,-7,-8,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +20,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,7,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,11,6,6,5,6,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-6,-5,-9,-5,-8,-9,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 +16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +27,14,14,9,13,8,9,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,6,10,7,10,10,19,10,9,6,9,5,6,5,8,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,0,0,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +24,12,12,8,12,7,8,7,10,6,6,5,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,4,4,10,6,6,4,5,3,4,3,5,3,4,4,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,6,4,7,5,6,6,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-11,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 +23,12,12,8,12,7,8,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,4,4,10,5,5,4,5,3,4,3,5,3,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +44,22,22,15,22,13,16,13,23,12,13,9,13,8,10,9,17,9,10,7,11,7,8,7,11,6,7,6,9,6,9,8,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,10,18,10,11,8,12,7,9,8,13,8,9,7,11,7,10,9,20,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,7,6,10,6,8,7,11,7,10,10,25,13,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-9,-19,-10,-13,-11,-20,-13,-21,-21,-26,-12,-12,-8,-13,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,6,3,3,3,4,3,3,3,4,2,2,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,3,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-12,-25 +23,12,12,8,12,7,9,8,12,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-12 +24,12,12,9,12,7,9,8,13,7,8,5,8,5,6,5,10,6,6,5,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +27,14,14,10,14,8,10,9,15,8,9,6,9,6,7,6,13,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,6,6,5,7,5,7,6,13,7,7,5,8,5,5,5,10,6,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,16,9,9,6,9,6,7,6,8,5,5,4,6,4,6,5,8,5,5,3,4,2,2,2,4,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-17,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,4,3,3,3,4,3,3,2,2,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +22,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,11,6,6,5,7,4,4,4,7,4,4,4,7,5,6,5,11,6,6,5,6,4,4,4,8,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-6,-4,-6,-5,-11,-5,-6,-5,-11,-7,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,6,4,5,4,7,4,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +40,21,21,14,20,12,14,12,22,12,12,9,13,8,11,10,19,10,10,7,11,7,9,8,15,8,9,8,13,8,11,10,20,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,12,10,16,11,17,17,28,15,15,11,16,9,11,10,17,9,10,7,11,7,8,8,17,9,10,7,10,6,8,7,12,7,8,6,10,7,9,9,20,11,11,7,10,6,8,7,13,7,8,6,9,6,9,8,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,25,13,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,1,1,1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-7,-10,-10,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 +23,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,12,6,6,5,7,4,5,5,9,5,5,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,12,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,4,6,4,6,6,14,8,7,5,8,5,5,5,8,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,7,7,11,6,7,6,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-16 +23,12,12,8,12,7,9,8,13,7,7,5,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,6,11,6,6,4,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,6,6,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,7,14,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-13 +40,21,21,15,22,13,15,13,22,12,12,9,15,10,13,12,23,12,12,8,12,7,8,7,15,8,9,7,11,7,10,10,20,10,10,7,11,7,9,8,13,8,9,7,11,7,10,10,17,9,9,7,10,7,10,9,15,9,10,9,15,10,15,15,28,15,15,11,16,9,11,9,17,9,9,7,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,5,7,7,11,6,7,6,11,8,12,12,24,12,12,8,12,7,9,8,13,7,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,8,4,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-12,-7,-11,-11,-24 +27,14,14,10,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,11,8,11,6,7,6,12,6,7,5,7,5,6,6,11,6,6,5,7,4,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-12,-12,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +39,20,20,14,22,13,15,13,22,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,12,7,8,7,13,7,8,6,10,7,9,9,17,9,10,7,10,6,8,8,15,9,10,9,14,10,14,15,28,15,16,11,16,9,10,9,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-11,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +39,20,20,14,21,12,15,13,22,12,13,10,16,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,15,9,10,9,14,10,14,15,29,15,16,11,16,9,10,9,16,9,9,7,10,6,8,8,15,8,9,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +77,39,38,25,37,21,24,20,35,19,20,15,23,14,19,18,33,17,18,12,18,10,12,11,19,11,12,10,16,11,16,15,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-13,-14,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-13,-10,-19,-12,-19,-19,-39,-19,-19,-13,-21,-12,-15,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-18,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-37,-37,-55,-27,-28,-18,-28,-15,-18,-14,-26,-13,-15,-11,-19,-11,-16,-15,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-13,-27,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-21,-44,-21,-21,-14,-21,-11,-14,-12,-24,-12,-14,-10,-18,-11,-16,-15,-31,-15,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-18,-12,-18,-17,-35,-17,-18,-12,-18,-10,-13,-11,-20,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-10,-16,-9,-13,-12,-24,-12,-14,-11,-21,-13,-20,-20,-40,-20,-20,-13,-19,-10,-12,-10,-19,-9,-10,-7,-13,-8,-11,-11,-22,-11,-11,-8,-14,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-37,-18,-19,-12,-19,-11,-14,-12,-24,-12,-14,-10,-17,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-24,-13,-16,-13,-25,-16,-25,-24,-49,-24,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-35,-17,-18,-12,-19,-10,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-24,-13,-15,-12,-21,-13,-19,-19,-38,-19,-19,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-12,-12,-24,-12,-13,-9,-16,-9,-13,-12,-25,-14,-17,-14,-26,-17,-25,-25,-50 +39,20,19,13,19,11,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-7,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-7,-6,-14,-6,-7,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-24 +38,19,19,13,19,11,12,11,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-24 +25,13,13,9,13,7,8,8,12,7,7,6,8,6,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-18,-8,-9,-6,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 +37,19,18,12,18,10,12,11,17,9,10,8,12,8,11,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-20,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-20,-13,-20,-20,-27,-13,-13,-8,-13,-7,-9,-7,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-5,-4,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-11,-6,-7,-5,-10,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-19,-9,-9,-6,-10,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-9,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-12,-12,-24 +21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +25,13,12,8,12,7,8,7,13,7,8,6,9,6,8,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-2,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,1,1,0,1,0,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-8,-5,-8,-7,-15,-7,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16 +21,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +37,19,20,14,20,11,13,11,19,10,10,8,12,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,9,6,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,5,3,3,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,3,2,1,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-21,-11,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-13,-20,-20,-27,-13,-13,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-11,-23 +20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-11,-6,-10,-10,-13,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,6,4,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-6,-11,-6,-8,-6,-12,-7,-11,-11,-14,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-14,-6,-6,-4,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12 +17,9,9,6,9,5,6,6,9,5,5,4,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-5,-2,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +27,14,14,10,14,8,10,9,14,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,7,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,2,1,1,1,0,1,1,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +23,12,12,8,12,7,9,8,12,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +21,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10 +40,20,20,13,19,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,7,5,6,4,5,5,9,5,5,4,5,3,3,2,2,2,2,2,2,1,0,0,-1,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,12,7,7,5,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,1,1,1,0,-1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-6,-3,-3,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-20,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-8,-11,-10,-21,-11,-14,-12,-22,-14,-22,-22,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-7,-11,-10,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-10,-6,-10,-10,-24,-11,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-19 +20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +20,11,11,7,10,6,8,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10 +14,8,8,6,8,5,6,5,7,4,5,4,5,4,4,4,8,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-4,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +21,11,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,0,0,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-4,-6,-4,-8,-5,-8,-8,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6 +13,7,7,5,8,5,5,5,8,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +24,13,13,9,14,8,10,8,13,7,7,5,8,5,7,7,15,8,8,6,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-3,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5 +14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-6,-5,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6 +11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-5 +18,9,9,7,10,6,7,7,11,6,6,5,8,5,6,6,11,6,7,5,8,5,5,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,5,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,1,1,2,1,1,0,1,1,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-6,-8,-6,-12,-7,-11,-11,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,3,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-4,-9 +12,6,6,5,7,4,5,5,8,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5 +16,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,4,6,5,9,5,5,4,6,4,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-4,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8 +16,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7 +31,16,17,12,17,10,11,10,17,9,10,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,5,3,3,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-21,-20,-28,-13,-13,-8,-12,-6,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-14,-9,-15,-15,-27,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-29,-14,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-14 +16,9,9,6,9,5,6,5,9,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-2,-3,-7 +17,9,9,6,9,5,6,5,8,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-3,-1,-1,0,-1,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-7 +12,6,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4 +17,9,10,7,10,6,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-16,-8,-8,-5,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7 +10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +11,6,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +17,9,9,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,6,4,4,4,6,4,6,5,11,6,6,4,5,3,4,3,5,3,3,2,2,2,2,2,7,4,4,2,2,1,1,1,0,1,1,1,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,3,2,3,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,2,3,3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-3,-3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,4,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4 +8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +18,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,5,3,4,3,5,3,4,3,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,1,1,1,1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,7,4,4,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,5,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,0,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,0,0,0,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-2,0,0,0,-2,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,4,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-12,-6,-6,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +13,7,7,5,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,2,2,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1 +11,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,2,2,3,2,2,1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +10,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +18,10,10,7,10,6,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,3,4,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,3,4,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-8,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-9,-21,-10,-9,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-7,-5,-9,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,1,1,0,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,7,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 +15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-5,-7,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +28,14,14,9,13,7,8,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-18,-48,-23,-23,-15,-24,-13,-16,-13,-23,-12,-13,-9,-15,-9,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-10,-7,-12,-7,-11,-10,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,16,8,8,6,8,5,5,4,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-13,-9,-14,-14,-26,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-8,-16,-8,-10,-8,-14,-8,-12,-11,-23,-11,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-10,-8,-16,-10,-16,-16,-35,-17,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 +15,8,7,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 +15,8,7,5,8,5,5,4,7,4,4,3,5,3,4,3,6,3,3,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +11,6,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +16,9,9,6,8,5,5,5,7,4,4,3,4,3,4,4,7,4,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-5,-12,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +12,6,6,4,5,3,4,4,5,3,4,3,3,2,2,2,6,3,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,5,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +17,9,9,6,9,5,6,5,8,4,4,3,5,3,4,3,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,3,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-23,-11,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,2,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +10,6,6,4,5,3,4,4,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-2,-2,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2 +11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,0,-2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,1,1,1,1,2,2,2,1,0,1,1,1,0,0,-1,-1,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-2,-5 +7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 +10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-3,-1,-2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5 +10,6,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,4,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4 +19,10,9,6,9,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,5,3,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-18,-9,-9,-6,-10,-5,-7,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-17,-8,-8,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,8,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4 +10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-8,-7,-11,-5,-6,-4,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3,-3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-12,-5,-5,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,4,3,4,3,3,3,3,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3 +13,7,7,5,7,4,5,4,6,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-11,-17,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,2,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,8,5,5,4,5,3,3,3,4,2,2,2,2,1,1,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-7 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +9,5,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-7,-11,-5,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3 +7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,7,4,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-5 +8,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 +11,6,6,4,5,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,6,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +21,11,12,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-11,-6,-9,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-12,-7,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-33,-16,-16,-10,-16,-8,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,15,8,8,5,7,4,4,3,5,3,3,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-9,-14,-13,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-9,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9 +11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-4,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-2,-2,-4,-2,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-4,-3,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-6,-4,-6,-7,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-10,-5,-5,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,6,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,6,6,4,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,1,2,2,2,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3 +9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +16,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,-5,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-18,-8,-8,-5,-8,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-8,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-5,-8,-3,-3,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,1,1,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1 +23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,13,7,7,5,7,5,6,5,8,5,5,5,8,6,8,7,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,1,1,1,0,0,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-4,-5,-4,-9,-5,-8,-8,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-6,-10,-10,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-21,-10,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-37,-18,-17,-11,-17,-9,-10,-8,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,6,3,3,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-12,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,8,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3 +12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-8,-19,-9,-9,-6,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-4,-7,-4,-7,-8,-20,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,8,8,6,8,5,5,5,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-24,-12,-12,-8,-12,-6,-7,-5,-10,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,2,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +12,6,6,4,7,4,4,4,8,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1 +11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +20,11,11,8,11,7,8,7,12,7,7,6,10,6,8,8,14,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-7,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-12,-12,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-35,-17,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-11,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1 +12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +14,8,8,5,7,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1 +12,7,7,5,6,4,5,4,8,4,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-20,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,2,3,2,2,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-8,-7,-14,-9,-14,-13,-36,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,6,5,8,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-14,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-4,-5,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,5,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,3,4,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-13,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-6,-11,-6,-9,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0 +42,22,22,15,21,12,14,12,20,11,11,9,14,8,10,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-9,-17,-8,-9,-7,-13,-8,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-15,-15,-22,-11,-11,-7,-10,-6,-8,-7,-13,-6,-7,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-18,-17,-35,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-14,-14,-29,-15,-16,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-27,-55,-27,-27,-18,-27,-15,-18,-15,-27,-14,-15,-11,-19,-12,-17,-16,-31,-15,-16,-11,-18,-10,-13,-11,-21,-11,-12,-10,-18,-11,-17,-16,-33,-16,-16,-11,-17,-9,-12,-10,-20,-10,-11,-8,-14,-9,-13,-13,-26,-13,-13,-9,-15,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-11,-18,-11,-15,-14,-27,-15,-18,-15,-27,-17,-25,-25,-76,-37,-37,-24,-36,-20,-24,-19,-35,-18,-19,-13,-22,-13,-19,-17,-34,-17,-17,-11,-17,-9,-11,-9,-18,-9,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-37,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-12,-10,-19,-9,-10,-7,-13,-8,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-12,-15,-13,-24,-16,-24,-24,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,0,1,1,1,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,-1,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3,2,2,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-11,-11,-23,-11,-12,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0 +21,11,11,8,11,7,8,6,10,6,6,5,7,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-5,-10,-5,-5,-3,-6,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-4,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-5,-5,-10,-6,-7,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-6,-14,-7,-8,-7,-14,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-10,-5,-7,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-4,-9,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-6,-5,-10,-6,-8,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-6,-5,-8,-4,-4,-3,-6,-4,-5,-4,-10,-5,-5,-3,-5,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-4,-4,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-25,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0 +20,10,10,7,10,6,7,6,9,5,5,4,6,4,6,5,10,5,5,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-14,-9,-14,-8,-10,-8,-13,-7,-8,-6,-10,-6,-8,-7,-17,-8,-8,-5,-8,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-10,-6,-10,-5,-7,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-17,-8,-9,-6,-10,-6,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-8,-6,-12,-8,-12,-12,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-6,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0 +13,7,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-7,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-7,-5,-8,-8,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1 +10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1 +17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-6,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-7,-4,-6,-5,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-36,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-7,-11,-6,-9,-8,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-8,-13,-13,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +10,6,6,4,5,3,3,3,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2 +8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1 +10,6,6,4,5,3,3,3,6,3,3,2,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +16,8,8,5,7,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-8,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-31,-15,-16,-10,-16,-8,-10,-9,-17,-8,-8,-5,-9,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-6,-7,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-40,-20,-20,-13,-21,-11,-14,-11,-21,-10,-10,-7,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3 +8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +8,4,4,3,4,3,4,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-5,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-8,-5,-8,-4,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,2,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0 +7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0 +6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0 +11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-16,-8,-8,-5,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,3,3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,1,1,2,2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1 +4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-19,-9,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0 +5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0 +9,5,6,5,7,5,6,5,8,5,5,4,7,5,6,6,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,4,3,5,5,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-6,-9,-9,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-29,-14,-14,-9,-14,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-37,-18,-19,-12,-19,-10,-12,-10,-18,-9,-9,-7,-12,-7,-11,-10,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,1,1,2,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0 +5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0 +4,3,3,3,3,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-10,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-9,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,2,3,2,2,1,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-3,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,0,0,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-8,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,1,1,1,1,1,1,1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-2,0,0,0,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,-1,0,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-13,-6,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,1,1,1,0,0,0,1,1,1,1,0,0,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3 +7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-9,-4,-4,-2,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,2,3,3,5,3,3,3,5,4,6,6,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-5,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-15,-7,-8,-5,-6,-3,-4,-3,-8,-4,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2 +6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-9,-5,-8,-4,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,4,2,2,2,3,2,3,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3 +4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3 +5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,1,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,4 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 +8,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-26,-12,-12,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-3,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,1,1,1,1,1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-5,-8,-8,-13,-6,-7,-5,-8,-5,-8,-7,-13,-7,-8,-7,-14,-9,-14,-13,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-14,-7,-7,-5,-8,-4,-6,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,0,1,1,2,3,2,3,3,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,3,2,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-2,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,9 +5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6 +8,4,4,3,4,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-5,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,4,3,5,5,8 +8,4,4,3,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8 +14,8,8,5,7,4,4,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-34,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-20,-9,-9,-6,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-8,-10,-9,-17,-11,-18,-18,-38,-18,-18,-12,-18,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-27,-51,-25,-25,-16,-25,-13,-16,-13,-25,-12,-12,-8,-14,-8,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-30,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-9,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-23,-11,-12,-8,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,3,3,4,4,7,4,5,5,9,6,9,9,16,8,8,6,8,5,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-5,-7,-4,-5,-4,-6,-3,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,3,4,4,8 +6,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6 +9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-9,-9,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,-2,0,0,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8 +6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5 +7,4,4,3,3,2,2,2,4,2,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-3,-5,-5,-14,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-5,-2,-3,-3,-9,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,2,1,1,2,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +9,5,6,4,6,4,5,4,6,3,3,2,2,2,2,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-4,-7,-7,-22,-11,-11,-7,-11,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-6,-6,-15,-7,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-16,-15,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,2,2,2,1,1,1,2,2,4,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9 +5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5 +6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4 +8,4,4,3,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-7,-7,-4,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6 +5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6 +10,5,5,4,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,3,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-3,-3,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-8,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-17,-11,-16,-16,-36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,8,4,4,3,4,2,2,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,0,0,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,5,4,5,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-12,-6,-6,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5 +5,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5 +7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +14,8,8,5,7,5,6,5,8,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,3,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,8,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8 +8,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-2,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +10,6,6,4,6,4,5,4,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-5,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-5,-4,-6,-4,-6,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,6,4,4,3,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +16,9,9,6,8,5,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-10,-5,-6,-5,-10,-7,-11,-11,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,6,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,1,2,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,-4,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,-1,0,1,1,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,-1,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6 +15,8,9,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,2,2,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +29,15,15,10,15,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,3,2,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-10,-30,-14,-14,-9,-15,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,4,3,3,2,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-13,-11,-20,-13,-21,-21,-56,-27,-27,-18,-28,-15,-18,-15,-27,-13,-14,-9,-14,-8,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-9,-14,-14,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,9,5,5,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,3,5,4,5,4,7,5,6,5,8,6,9,9,16 +15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,5,5,9 +15,8,8,6,8,5,6,5,6,4,4,3,4,3,4,3,6,3,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-3,-4,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9 +11,6,6,4,6,4,4,4,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,4,7 +17,9,9,6,8,5,6,5,6,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-4,-16,-8,-8,-5,-8,-4,-5,-3,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-17,-8,-7,-4,-7,-4,-5,-4,-10,-5,-5,-3,-6,-4,-6,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-11,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,6,4,4,3,4,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,-1,4,3,3,2,3,2,3,3,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,5,4,6,6,11 +10,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,3,4,4,7 +13,7,6,4,6,4,4,4,5,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-12,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,3,5,3,3,3,4,3,5,5,8 +12,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +21,11,10,7,10,6,7,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-33,-16,-16,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-9,-8,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-9,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,6,6,12 +11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7 +12,6,6,4,7,4,4,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,8 +9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7 +15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,2,2,2,2,2,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,-1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,5,5,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13 +10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9 +14,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-10,-5,-6,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +13,7,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +25,13,13,8,11,6,7,6,9,5,5,4,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-8,-27,-13,-12,-8,-12,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-12,-12,-24,-13,-15,-12,-22,-14,-22,-21,-45,-22,-21,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-15,-8,-9,-7,-14,-9,-14,-14,-22,-10,-10,-6,-10,-5,-7,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,6,6,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 +13,7,7,5,6,4,4,4,5,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,12 +14,7,7,5,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-25,-12,-12,-7,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,13 +11,6,6,4,5,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +18,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-16,-8,-9,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,3,2,3,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,9,8,15 +11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,9 +15,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-9,-5,-6,-6,-13,-7,-8,-6,-11,-7,-12,-12,-25,-12,-12,-8,-11,-6,-8,-7,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5,-2,-1,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,12 +14,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12 +27,14,14,9,13,8,9,7,12,7,8,6,9,6,7,6,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-28,-14,-14,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-11,-24,-12,-12,-9,-15,-9,-12,-12,-24,-13,-16,-13,-23,-15,-23,-23,-45,-22,-22,-14,-22,-12,-15,-13,-24,-12,-14,-10,-17,-10,-15,-14,-27,-13,-13,-9,-15,-8,-11,-9,-18,-9,-10,-8,-14,-8,-12,-12,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-7,-13,-7,-9,-8,-16,-8,-10,-8,-15,-9,-13,-13,-28,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-7,-14,-9,-14,-14,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,2,2,2,2,1,1,1,2,2,2,2,6,4,4,3,3,2,1,1,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,8,6,9,6,7,6,11,6,7,6,10,7,11,11,22 +15,8,8,6,8,5,5,4,7,4,5,4,5,4,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,3,4,4,8,4,5,4,6,4,5,4,7,4,4,4,6,5,7,7,13 +18,10,10,7,9,5,6,5,8,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-6,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,8,6,8,8,16 +15,8,8,6,8,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-9,-5,-7,-6,-14,-6,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,14 +26,13,13,9,13,8,9,7,11,6,6,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,2,2,2,2,2,2,4,2,2,2,2,2,3,3,6,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-8,-11,-11,-22,-11,-11,-8,-14,-8,-12,-11,-23,-12,-15,-12,-23,-15,-23,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-12,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-16,-8,-9,-7,-14,-9,-14,-14,-27,-13,-13,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-9,-7,-14,-9,-14,-14,-28,-13,-13,-8,-13,-7,-8,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,7,6,9,6,8,7,11,7,8,7,12,9,13,13,25 +18,9,9,6,9,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-6,-7,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-15,-8,-10,-8,-13,-8,-13,-13,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-6,-4,-6,-6,-14,-7,-7,-5,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,4,3,4,3,4,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,5,9,6,7,6,12,7,8,7,13,9,14,14,26 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-8,-9,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,13,9,13,13,26 +50,25,25,17,24,13,15,12,21,11,11,8,12,8,10,9,17,9,9,7,10,6,6,5,9,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,3,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-8,-7,-13,-9,-14,-15,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-10,-7,-12,-7,-10,-10,-21,-10,-10,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-39,-19,-20,-13,-21,-11,-14,-12,-22,-11,-13,-9,-16,-10,-15,-15,-30,-15,-15,-11,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-26,-53,-27,-28,-19,-30,-17,-21,-18,-34,-18,-20,-15,-27,-17,-24,-23,-45,-23,-24,-18,-30,-18,-26,-24,-48,-26,-32,-26,-47,-31,-46,-46,-94,-46,-46,-31,-47,-25,-30,-25,-46,-23,-25,-19,-32,-20,-28,-26,-51,-25,-26,-18,-28,-16,-21,-19,-36,-19,-22,-17,-29,-19,-28,-27,-54,-27,-27,-18,-28,-15,-19,-16,-30,-15,-17,-13,-23,-14,-21,-20,-40,-20,-21,-14,-23,-13,-18,-16,-32,-17,-19,-15,-28,-18,-28,-28,-57,-28,-27,-18,-27,-15,-18,-15,-27,-14,-15,-10,-17,-10,-14,-13,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-10,-8,-14,-9,-13,-12,-25,-13,-14,-11,-19,-11,-16,-15,-29,-16,-19,-16,-30,-19,-29,-29,-58,-28,-28,-19,-29,-15,-18,-15,-28,-14,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-5,-5,-3,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,8,16,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,13,7,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,4,6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,3,3,4,4,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,11,11,20,11,12,9,15,9,12,12,22,13,16,14,25,17,25,25,50 diff --git a/worlds/diamond_world2.csv b/worlds/diamond_world2.csv new file mode 100644 index 0000000..d51e78a --- /dev/null +++ b/worlds/diamond_world2.csv @@ -0,0 +1,257 @@ +54,102,116,132,158,159,140,207,229,196,157,171,261,284,275,322,482,460,363,438,641,901,1431,1938,2724,2943,3854,4444,3889,4374,5896,6636,5925,6653,9764,12769,12864,9305,7398,9721,9630,7535,5882,4872,4098,7778,9385,10017,13287,10766,6878,7037,8674,10026,10329,12788,14776,11178,7584,6270,5816,4793,3297,2901,2281,1952,1514,1512,2230,1570,1413,891,514,920,1062,2164,2972,3805,3680,4377,3728,3423,2090,2491,2623,2053,1559,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,198,394,561,1230,1520,1995,2107,1602,1349,1696,1557,1097,692,480,144,183,258,312,336,567,652,938,1053,718,682,560,295,264,185,176,240,202,114,78,32,25,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,827,1035,1444,1569,1188,1324,2036,2913,3602,4379,3896,3696,3039,4308,5187,5234,5454,5259,3759,3158,3156,2434,2461,3302,3722,3143,3070,2444,1845,2378,2234,2386,1996,1579,1173,787,534,236,0,26,43,96,118,111,109,143,198,435,729,1418,2085,3296,4312,5042,7529,8380,8128,6343,5903,4959,4039,6504,6962,6717,4329,3425,2243,3978,4792,4876,4724,3767,2925,2772,3398,2407,2155,1020,0,12,24,31,48,39,39,44,56 +41,70,132,151,160,164,190,228,156,162,182,259,294,312,349,366,406,354,339,446,788,989,1440,2132,2859,3879,4451,3884,5894,5785,6928,5117,9479,8944,8882,9244,8506,7222,6220,6822,8140,7512,4746,5536,5603,8872,13548,12820,10124,10644,6286,7120,7084,8630,10278,10881,9791,10136,8670,6297,6179,4585,3641,3050,3005,2500,1744,1516,1807,1498,1023,778,355,952,1020,2133,4002,4108,4928,4747,3051,2948,1666,1927,2881,2138,1741,985,183,174,136,119,80,66,32,18,0,1,2,2,2,5,5,7,4,174,374,578,881,1278,1903,2477,3279,2030,2260,1918,1770,1380,1036,640,408,422,607,707,752,766,909,888,1530,1088,792,660,350,308,199,350,398,433,393,437,289,249,216,247,263,270,258,201,108,216,330,397,350,289,227,231,91,101,121,138,0,26,54,59,138,195,182,218,50,368,629,1068,1788,1732,1582,1630,2299,2576,2308,2999,3179,3566,4023,4280,4935,5181,4782,4696,3109,3260,3532,3146,1546,2124,2902,2541,2657,2672,2132,2148,2007,1598,1446,1250,1014,681,613,274,130,158,149,234,336,338,275,302,306,556,1054,1588,2440,2953,2880,4318,5856,5977,5619,5900,5060,4874,3930,5878,7622,5992,4926,4130,2930,3908,4600,5122,4191,3036,2320,2624,3235,2977,3248,2414,537,454,448,368,334,262,216,128,43 +33,66,110,183,227,187,181,268,130,126,147,243,233,366,407,407,283,341,439,455,842,1077,1650,1816,3787,3523,4724,4828,6627,6756,7043,5634,10664,8572,9575,8976,7290,5319,4652,6281,7554,6226,5942,5906,8240,10155,13952,15263,8829,8094,7972,7892,5903,9171,10106,11464,8832,8317,8050,6156,5091,3988,3592,3860,2901,1981,1532,1258,1132,1109,1076,858,297,925,1441,2588,3878,5115,5634,6016,2050,1684,1904,2434,3270,2692,1650,1007,371,299,280,326,190,118,76,46,0,2,4,5,4,7,8,11,6,294,537,725,1450,1728,1751,2593,3560,2610,2506,1884,1949,1463,1162,824,566,726,950,1114,927,1064,1070,1045,1648,1562,1275,632,310,316,286,344,485,579,764,792,639,496,505,626,602,561,456,409,254,424,556,708,719,622,518,385,192,208,262,327,0,58,110,140,285,364,360,409,116,364,564,910,2015,1843,1538,1355,1876,1908,2144,3081,2456,3870,4770,4738,3385,3412,4216,4850,3759,3730,3518,3548,1284,1311,1564,2237,3517,3165,2741,2152,1768,1535,1030,951,821,742,534,354,304,333,289,419,698,495,500,366,357,655,1196,1452,2215,2595,2638,4427,3651,3673,4441,5546,3881,5098,4840,6112,7255,5345,4954,4006,3974,4142,4283,4018,2774,2230,2200,3251,2909,4092,4108,3240,1067,872,736,824,569,515,422,261,36 +36,61,99,172,251,224,208,318,124,159,212,261,272,332,354,412,176,495,722,628,954,1132,1229,1844,4269,4028,5194,5382,7081,5824,5730,5373,9529,9947,8936,8470,7134,5555,5378,4561,6648,6787,5624,7102,7951,8523,11987,13608,9303,7582,5878,7194,6839,10309,9502,9698,9737,9020,6341,5617,4089,3664,4053,3892,2398,1708,1482,1010,876,1044,997,858,277,808,1357,2278,3520,4738,5474,7014,2045,2036,1884,2844,2775,2042,1488,928,549,432,461,412,327,199,106,58,0,4,6,7,7,11,10,17,10,478,1008,1254,2218,1706,1678,2930,2641,2772,3122,2266,1817,1602,1287,968,985,1047,1458,1534,1205,1382,1146,1184,1650,1370,1197,661,268,372,365,446,682,793,861,962,1003,826,576,883,928,764,444,466,512,730,853,1073,1286,989,605,548,328,291,443,500,0,81,172,245,326,508,714,712,208,598,956,1110,1623,1700,2373,2399,1453,1866,1430,2154,3237,3480,4554,4977,4278,3952,3941,3594,2928,3839,3498,4120,1578,1666,1312,1690,2687,3002,2430,2328,1010,1110,853,1124,1372,901,504,383,436,507,594,658,873,636,577,461,438,936,1559,2006,2557,2563,2079,3056,2541,2627,3879,4406,3763,4554,3412,4730,4908,4753,5214,5174,4391,5022,4454,4256,2160,2534,2143,3686,3924,5439,5707,5660,1449,1274,789,1078,1222,1016,728,396,25 +31,65,120,166,200,218,320,336,170,217,292,299,357,517,514,525,100,214,410,791,1072,1309,1279,2138,3386,4128,3610,4500,5626,5241,3576,3564,9429,7379,5484,5116,6090,6102,6224,4794,5022,8233,9129,10492,8628,10028,13826,14730,8683,8122,5196,6046,7248,9273,9994,11641,9015,6314,3811,3191,2767,3288,4158,4456,2234,2538,2003,1587,744,761,774,759,376,1088,1874,2233,2637,4046,4527,6164,2458,2391,1854,1696,2283,1624,1613,1395,658,573,624,487,428,374,228,99,0,4,6,7,7,10,13,23,13,818,1706,2126,2513,2722,3187,3955,3033,2419,1594,1635,1658,1398,1461,988,1122,1210,1539,1806,1922,1247,949,893,1855,1540,1282,831,306,320,420,670,715,884,985,842,1050,1221,1239,1385,961,766,614,692,731,702,966,1315,1537,1432,1093,614,433,650,690,744,0,69,151,262,435,710,965,1222,308,496,678,1128,1772,2294,2768,3467,1392,2128,2274,2442,3056,4089,6722,7916,3851,3976,4006,2799,2856,3260,4140,4106,1379,1976,2458,2821,2934,2628,3156,2762,512,806,1258,1223,1549,1139,1022,653,661,746,989,1065,929,1036,826,595,524,941,1403,1882,3098,2822,2406,1707,2387,2176,2810,3121,4372,5180,5238,3752,5000,4376,3699,4442,4357,4334,2913,3319,2029,2793,3084,4817,6005,4315,4342,6805,2035,1844,1519,1433,1670,1347,823,478,12 +52,84,94,124,165,256,241,320,188,256,229,234,279,354,386,343,78,404,637,1060,1530,1766,1286,2191,2850,3546,3680,4388,6196,4938,5058,3482,10454,7318,5137,3890,5945,6336,5014,4191,5255,6476,6725,8554,9045,8378,9202,12976,5074,5696,5131,5144,5797,7589,9541,9943,7806,5833,4037,3304,2491,3509,4158,4782,3000,3338,2799,2224,2314,1646,988,1008,482,1496,2625,2889,2620,3394,5073,5460,3190,3010,2522,2267,2139,2021,1524,1192,677,610,756,584,475,390,226,116,0,5,7,10,8,14,22,27,21,648,1747,2301,2635,2846,4031,3768,3686,2692,2082,1721,1804,1351,1611,1098,1423,1564,1578,1866,2757,2232,1546,1478,2424,1880,1770,1084,482,725,1008,1355,1444,1378,1022,1070,1203,1410,1798,1812,2327,1867,1397,999,884,1203,1731,1972,1992,2212,2401,1596,952,1136,1221,926,0,74,124,234,442,728,1030,1070,854,898,920,1207,1266,2051,2274,2533,1570,1617,1784,2354,2396,4320,5250,5439,4116,3415,4316,3553,2556,3083,3487,3592,1326,2332,2314,2666,2694,2267,2090,2278,766,1184,1538,1780,1698,1442,1383,966,1016,1058,1279,1066,1122,1090,752,578,495,1102,1517,2322,2278,2004,2057,1923,2260,2690,3010,4668,4081,4358,4327,3914,4891,4744,3735,4706,4262,4930,4416,4426,2833,3548,3809,4340,4840,5014,5148,7168,3848,3768,2595,2524,2055,1398,1050,473,12 +83,95,86,75,171,254,268,236,276,271,246,237,250,264,210,194,46,452,957,1081,1825,1518,1878,1789,2717,2852,4240,3786,4750,4955,5158,4376,10835,6927,5854,4958,6478,6282,5166,4925,6066,5636,6989,5506,6501,6788,9158,13448,3983,3584,4232,4250,4810,5843,6297,7684,8722,5364,4102,3099,2260,3880,5346,6268,4256,3950,3090,2301,3111,2578,1670,1128,505,2037,2928,3428,2578,2679,4055,4098,3125,2962,2409,2696,2405,2067,1266,1062,629,836,812,656,683,466,237,134,0,5,7,8,8,18,22,28,29,556,1226,2225,2214,3268,3880,3453,3531,2699,2076,1928,1407,1466,1472,1017,1427,1599,1724,2543,3110,2264,2150,1468,2395,1695,1778,1060,537,1351,1854,2096,1840,1529,1232,1175,1352,1418,1867,2262,4348,3184,1753,1459,1010,1741,2152,2312,3300,2738,2979,2662,1393,1138,1448,1441,0,70,150,208,399,686,995,1090,1448,962,946,788,1225,1900,2338,2162,1534,1664,1700,2004,2179,2436,3464,4239,4686,4376,4110,4102,1644,2795,3428,3410,1404,1680,2302,2637,1600,1536,1861,2720,1225,1338,1736,2382,1754,1726,1689,1133,1380,1077,1158,878,1014,825,764,706,567,1540,2030,3265,2316,2215,2052,2216,2088,2018,2766,3107,3600,3439,3793,3332,4352,4337,4510,5014,5160,5988,4957,3734,2840,3750,4094,5148,4271,4808,5708,9182,6564,4691,4368,4416,1777,1676,1447,684,8 +132,128,96,80,100,154,242,200,222,218,162,182,189,186,142,124,20,486,820,1247,2190,2106,2357,2294,2575,3356,3566,4736,4451,4580,5516,5121,8905,6719,5854,4044,5408,4625,5962,4546,5389,5466,6665,4668,4380,5374,8267,9236,1710,1952,2474,3070,4274,4269,5009,6744,5170,4208,4277,3388,2006,3502,4448,6597,6392,5783,4880,3214,3088,2922,1985,1258,539,1916,2564,2938,3285,3578,2788,3712,2513,2304,2204,1764,1823,1564,1080,974,703,669,586,666,633,440,322,164,0,5,7,10,12,20,25,30,34,532,832,1604,1676,2726,3937,3530,2746,2349,2620,2006,1283,1196,1223,1006,1438,1586,1620,2706,2527,2547,2359,2055,1810,1732,2004,1341,718,1436,2490,2148,2138,2294,2102,1581,1186,1460,1801,2285,4268,3311,2445,1794,1091,2149,2154,2692,3287,3242,3387,3428,2538,2192,1707,1524,0,102,221,285,484,598,921,1147,1368,1206,1013,916,1138,2008,1886,2784,1279,1794,1689,2437,2920,3466,4364,3636,3737,3981,2927,3116,1667,2694,2890,3483,950,1326,1632,2148,1394,1400,1388,1726,1315,2166,2238,2352,2448,2112,1831,1281,1572,1438,1532,1356,1236,1008,755,778,554,1353,1975,3350,2828,2952,2606,3534,1406,2098,3238,3246,2906,3598,3395,3488,4525,4723,3294,4682,4647,4815,5474,5135,4703,4870,5150,3736,4136,5366,5806,8656,6950,7070,6052,4623,3121,2540,1912,1102,5 +172,178,198,178,196,158,185,222,229,239,209,173,93,71,54,26,0,426,841,1386,1536,2154,2288,2380,2536,2932,2974,3231,4097,3932,3269,4141,7287,5723,5666,3237,1402,2021,2406,3193,4852,4887,4580,5015,7267,7539,8661,6374,0,176,356,564,720,1286,2301,2886,3558,4194,3876,4881,4996,6557,6726,6386,9020,9632,10300,8260,7326,5288,3874,2546,422,1048,1357,2081,2195,3632,4262,4221,2267,1453,1011,908,503,870,976,850,1024,1059,828,746,688,644,398,231,0,5,8,12,11,22,29,34,31,738,1473,1745,2414,3842,4366,3968,2483,2129,1506,923,466,822,978,1253,1134,824,740,887,1067,1556,2458,2421,1720,1752,2415,2347,3403,2813,2899,2603,3414,2751,2677,3596,4769,3968,3454,3363,5292,5556,4165,5327,6326,6191,4907,4756,3409,3864,4552,4264,3702,2868,2281,1956,0,96,217,368,404,964,1435,1637,1778,1845,1304,1245,1129,2066,2634,2920,999,1062,962,1458,1748,1893,1870,3245,3603,4076,5502,5015,4786,4516,3909,3708,812,622,662,639,436,1198,1565,1545,1886,1441,1185,1468,1511,1378,1106,1176,1426,1177,1087,1415,1644,1409,1189,937,519,832,1471,2260,3964,4371,5043,4298,942,1633,2571,3145,2800,2868,2856,3650,3841,4090,3104,2920,3340,3773,5128,5395,5782,7408,6762,5564,6739,6663,8074,9540,9852,7768,6503,4701,3705,2784,1755,1014,0 +148,173,206,202,216,180,224,236,222,197,206,155,128,92,62,27,2,294,646,1200,1237,1788,1764,1872,1877,2354,2661,2776,3298,3116,2572,3191,7137,5147,3767,3145,1535,1840,2193,3382,3651,4270,4074,4763,5149,6369,8185,5060,0,245,352,765,748,1702,2650,3393,3654,3811,2937,3128,4237,5467,6078,7542,10336,10171,7855,7321,5520,4604,5240,3012,1948,2065,1922,2816,4134,4043,4573,4595,1522,1180,985,888,900,964,943,951,1028,869,857,732,576,504,346,172,0,6,12,16,22,26,32,35,34,637,974,1410,1805,2768,3571,4654,3426,2320,1418,1096,832,924,943,1169,2358,2060,1402,1657,1344,1748,2180,2690,1470,1569,2128,2398,2673,2462,2613,3180,4051,3116,3006,4136,3812,3595,3711,3196,5464,6236,5207,4087,5811,4956,4395,3302,2538,3366,4668,4183,3084,2554,2044,1610,0,96,199,310,445,842,1031,1570,1650,1719,1066,1002,1042,1373,2234,2610,1361,1660,1345,1551,1831,2112,2640,3680,3210,3880,3956,3502,3356,3922,4733,4736,666,662,522,621,353,972,1555,1286,1932,1678,1364,1606,1229,1278,1377,1214,1766,1711,1872,1441,1550,1158,970,808,521,792,1231,2292,3448,4311,3789,5092,782,1416,1912,2242,2154,2570,3783,3756,3204,3801,3481,2588,3913,4498,5592,6875,4886,5719,8496,8200,6928,7901,10068,15414,15263,13083,11664,7708,4797,4888,3201,2330,1540 +144,174,172,202,203,236,200,255,207,177,145,149,128,77,60,32,3,224,463,876,1511,1414,1852,2169,1606,2272,2559,2383,2248,2345,2870,2428,5915,5223,3536,2646,1496,1641,1872,2415,2776,3549,3886,4758,3805,3963,5027,3933,0,278,500,646,677,1664,2504,3339,2698,2164,2546,3003,4596,6412,6328,6031,9536,6829,7132,4744,6433,5123,4996,4204,4432,3644,2327,2859,5248,4493,4730,6642,1057,1154,898,699,1071,1063,871,896,881,710,640,415,591,422,246,138,0,7,13,23,29,28,32,34,30,459,881,1082,1459,2156,2326,3815,3252,2097,1800,1726,1000,1087,1351,1446,2843,2670,2134,2068,1974,2665,2608,1936,1160,1498,1775,2515,1830,1905,2852,3580,4548,4238,3167,3868,3381,3931,3328,2636,7645,6171,5003,4374,5546,3616,2580,1847,2661,3317,3972,4036,3608,2450,2278,1606,0,122,210,230,345,784,1116,1535,1025,1172,1240,1265,666,1185,1562,1754,1734,1764,1730,1790,2401,3060,3336,3931,2287,2862,2748,2836,3520,3954,4239,3880,742,784,614,558,313,694,1162,1104,1750,1798,1405,1802,1416,1789,1636,1521,2684,2380,2076,1578,1032,1098,1112,882,503,834,1407,2140,3151,3682,4066,4663,568,923,1324,1093,2576,3015,3673,4361,3343,4005,3744,3162,4793,4957,5518,6200,4843,5460,7734,7590,8456,13855,16102,20632,20141,18254,15122,9441,6753,6906,4893,3816,2924 +202,232,142,150,178,145,148,259,171,162,151,137,142,82,69,38,5,214,472,682,1430,1726,1885,1604,1840,1966,2121,2156,1762,1984,2338,1939,5574,5207,2845,2932,2289,2492,1845,2860,2720,2958,3012,3138,2528,2782,3196,2897,0,340,667,772,801,1362,2079,2194,2469,1946,1956,2970,4771,5731,6912,8068,8016,7246,8004,5656,6266,5684,4411,4908,5902,4262,3570,3477,5476,4434,4306,6268,1260,1284,1026,970,973,1063,604,628,904,595,481,350,314,275,208,92,0,12,24,27,44,34,35,38,29,379,980,1001,1496,1920,2085,2783,3750,2628,1992,1804,1534,1582,1432,1476,3532,2554,1776,1940,2557,2312,2208,2070,669,960,1208,1718,1481,2341,2995,3986,7077,5625,4156,4972,3955,3588,3298,3688,7592,7152,4195,3614,4891,4194,2613,2384,2913,3010,2806,2697,3034,2528,1814,1316,0,114,217,270,444,704,1054,1166,962,998,852,956,743,908,945,1207,2151,2272,2435,2434,2589,2860,3506,3536,1254,2226,2594,2610,2895,3278,4594,4326,502,510,588,478,401,745,856,988,1753,1406,1374,1400,1776,1564,1327,1466,2287,2592,2615,1739,1289,1293,1343,800,411,894,1194,1690,2434,3114,3260,4266,372,620,1195,1224,1730,2521,3231,3880,2326,3290,4488,4085,5227,6030,6398,7754,4756,6365,7248,7210,7564,15862,23973,25307,23159,17669,15273,10115,6410,6096,5297,5156,4043 +260,268,190,174,127,201,215,246,161,128,122,116,118,72,48,22,4,149,329,738,954,1388,1846,1821,2090,2204,1749,1646,1372,936,773,738,5415,5776,5160,4042,2797,2466,2717,2573,1781,1884,1600,2088,2150,1846,1273,914,0,244,495,672,915,1070,889,1205,1470,2578,3436,4205,4411,5973,9081,10774,6859,6360,4905,6255,6104,6430,5552,4638,6307,6047,5011,4927,5678,7986,8698,7228,1148,990,952,957,1060,1093,1048,836,739,568,384,255,168,155,114,50,0,10,15,28,45,44,54,65,17,384,800,914,1244,1764,2237,2394,4023,3697,2709,2634,1815,1506,1580,1526,3371,2560,2655,2524,2624,2810,2171,2190,328,539,894,909,1158,1527,1789,2840,7925,8184,9050,6790,6306,5850,7735,5566,8410,8722,7751,6416,2985,3139,2377,1977,2727,2265,1801,1936,1898,1931,2084,1788,0,90,180,306,394,588,669,857,872,1008,909,986,772,679,830,821,1968,2059,2919,2529,2810,3306,3194,2818,547,937,1775,2330,3228,3306,2735,2631,279,433,454,489,414,405,555,1034,1603,1410,1860,1555,1548,1549,1574,1269,2528,2638,2195,1979,1636,1132,1148,794,505,1057,1277,1708,2473,3357,3216,3626,198,467,654,1029,1334,2448,2952,2904,1414,2220,3876,3930,4598,6139,6500,8761,3403,3898,4452,5189,5570,10044,16185,19920,24950,21127,21348,13906,8331,8732,8943,7224,4934 +264,201,173,146,141,179,158,218,188,112,114,98,118,80,58,30,6,114,306,588,578,1132,1354,1314,1447,1384,1237,1024,1330,846,667,585,3832,4541,3480,2689,2032,1936,1980,1897,1090,1384,1230,1684,1492,1160,1077,714,0,175,393,506,693,698,602,1176,1046,1605,2420,3232,2933,5196,7614,10361,7532,6540,7056,7329,7794,7938,6683,6187,6462,5635,5974,5974,5916,6543,6230,7360,2033,2896,2169,2422,1918,1838,1410,942,502,412,338,174,176,135,111,52,0,10,22,34,49,50,65,62,32,332,542,852,1274,1570,2255,2230,2894,2904,2112,1934,1349,1538,1444,1719,3143,2866,3087,3166,2448,2310,2708,2463,398,699,849,1212,974,1658,1985,3062,7653,8897,8478,7915,5233,5132,5479,5448,8682,7408,5781,4852,2466,2340,2051,1543,2145,1982,1245,1642,1179,1580,1680,1596,0,76,122,194,295,454,488,645,792,718,724,834,1000,1064,978,758,1630,1722,2310,2543,3014,2889,2289,2444,572,1032,1292,1930,2634,2858,2541,2700,246,338,304,334,318,395,385,732,1219,1390,1299,1363,1421,1468,1552,1520,2325,2084,1848,1466,1587,1098,874,569,436,683,745,1206,1501,2201,2251,2888,116,326,538,754,1012,1508,1855,2256,948,1806,3169,3278,4324,5222,6220,9012,4712,6422,10277,11928,8814,12812,20807,31296,25722,28928,18144,18143,12857,11855,13726,12316,12089 +194,129,108,154,161,135,171,220,159,113,99,98,126,110,58,33,6,107,181,279,331,589,718,890,1108,1163,860,797,902,861,565,447,2021,2008,2114,2159,1379,1031,1053,938,816,1059,1066,1218,915,931,758,566,0,101,238,391,293,520,608,754,691,926,1554,2406,1941,4000,6374,8886,5860,6333,6992,7000,8546,10140,9697,5861,4959,6211,6903,7826,6287,5550,5138,5089,3783,3474,4076,3316,2737,2070,2178,1358,284,286,230,163,126,86,74,38,0,10,21,26,48,64,58,61,53,255,394,703,1040,1405,1552,1349,2382,2473,2126,1319,794,1034,1641,1857,2716,2270,2818,2744,2202,1968,2433,2027,648,707,1004,1640,1261,1956,2882,3018,6733,5853,7214,8106,3947,4522,4003,4552,8631,6025,5136,3306,2589,1726,1232,988,1806,1646,1208,1687,969,1456,1555,1254,0,36,84,122,248,374,432,539,452,512,527,547,945,940,1076,720,1867,1707,1446,1712,2289,2356,2394,2294,810,944,1091,1772,2488,2599,2274,2427,144,152,220,229,236,221,276,379,1144,1433,1298,1414,1310,1358,1616,1500,2163,1671,1329,1020,1296,1103,806,414,236,406,450,706,1065,1212,1532,2048,61,198,422,787,636,764,1220,1178,532,1464,1952,2884,3063,5397,6625,10116,5887,11172,18890,18074,12026,18582,30224,40808,36294,26032,18902,17653,19977,15624,14598,17871,16324 +184,126,120,161,193,156,178,181,169,118,121,91,113,83,52,33,6,43,108,145,191,288,360,492,597,526,480,364,437,387,290,232,876,969,1058,1009,726,552,631,504,354,474,582,620,528,526,333,251,0,53,105,186,141,223,305,432,379,571,1072,1555,1420,3426,5525,8938,4423,6876,7086,8149,8951,8958,11993,9060,7849,7558,6750,5642,4462,3961,4579,4967,4628,3956,3948,3828,2860,2530,2024,1206,232,214,171,147,108,91,55,30,0,12,29,36,50,59,63,64,67,272,402,635,980,1535,1844,1899,2524,2091,1794,1134,755,1154,1421,2190,2560,2448,2424,2506,2240,2518,2863,2018,1026,878,1174,1390,1283,2238,3317,3771,5190,5480,7418,5700,5128,5972,5238,4735,7714,6208,4458,3329,1706,1207,970,554,724,920,927,1126,895,1134,1651,1424,0,21,48,64,109,174,201,259,229,352,489,626,974,1016,1355,1234,1669,1421,1444,1562,1774,1606,1244,1641,994,1064,1122,1320,1891,1827,1832,1892,62,102,130,126,119,126,176,236,617,875,796,1210,1393,1378,1475,1692,1713,1418,1466,1168,880,673,549,304,194,223,299,354,457,568,910,967,26,104,213,345,360,444,700,704,237,828,1381,2074,2019,3332,4245,6924,6136,14894,26236,27980,23007,33378,33312,30328,35774,28618,18830,17451,24184,19180,17111,16296,19720 +126,109,112,96,113,127,120,102,61,63,71,64,54,44,23,13,4,6,6,6,4,5,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2535,4902,5449,7849,7269,9893,9724,4772,4716,3925,3182,1591,1305,642,365,0,117,211,387,617,1556,2386,3232,4454,3078,2790,2873,2737,2927,2194,1440,996,592,363,299,146,105,56,34,0,16,34,45,53,79,135,154,190,358,576,718,970,1224,1913,1906,2248,1506,1178,1130,879,1198,1391,1393,1298,1339,1509,1003,944,1056,1573,1451,1158,1716,2686,3005,3821,3944,4383,4356,6436,9074,8901,8959,8948,7981,6839,6395,4808,4001,3645,2611,767,610,530,277,82,140,159,198,175,712,1086,1131,0,20,44,80,93,121,169,154,151,379,537,690,913,957,1235,1302,1482,2010,2052,1761,2190,3252,3931,3638,3635,3321,2907,1814,1250,1418,1353,1444,0,0,0,0,0,0,0,0,0,134,320,529,769,1343,1663,1921,1949,1506,1547,1893,1735,1498,1035,622,0,0,0,0,0,0,0,0,0,1332,2790,3521,5052,5829,8526,8165,10216,10163,8593,7708,5606,6039,4782,5827,8467,9957,10786,9430,9853,15394,15863,21493,21924,18056,15136,16732,25184,22627,23025,17582,18619 +126,114,119,102,93,91,81,84,51,50,66,50,50,42,23,16,6,40,58,90,74,130,217,230,1089,1275,1176,1274,652,1144,1514,1892,410,617,574,638,650,524,339,200,362,506,734,692,724,710,988,870,157,202,187,237,152,112,104,64,8,1961,4109,4150,5852,6768,8151,7902,5598,4866,3593,2570,1284,983,776,470,304,512,693,886,782,1866,2783,2928,5560,3423,2751,3114,2968,2923,2220,1766,793,467,288,232,240,192,116,57,0,17,36,46,63,83,119,136,163,502,780,807,1320,1463,2451,2196,1882,1781,1716,1280,901,1141,1071,1017,1354,1166,1100,944,1072,1372,1366,1504,1003,1400,2500,2768,3756,4590,4516,6254,5999,8376,6044,6074,9270,9007,7930,5760,3640,3434,3490,3353,2204,1739,1420,912,423,450,473,474,476,1286,1642,1740,249,251,340,273,176,181,191,222,204,427,715,744,893,1200,1631,1976,1541,1683,2133,1982,1872,2305,2544,2746,3472,3307,2211,1850,1359,1318,1659,1566,51,71,87,96,122,155,217,216,124,240,309,610,763,1139,1273,1728,1764,1790,1679,1644,1237,1298,1024,777,165,158,177,191,92,96,91,44,90,1292,2312,3256,3650,4872,6232,9203,8698,9713,8430,7670,6242,5276,4877,5091,8891,9306,9501,9528,8710,12082,17202,16902,17260,19840,14977,14050,18965,18548,16558,14314,14214 +149,106,96,131,99,77,68,97,48,45,45,38,32,30,24,19,6,60,117,196,141,274,359,372,2386,2240,2224,1802,1620,3056,3544,4359,845,874,1274,1306,1363,867,608,378,714,1098,1286,1362,1536,1355,1776,2048,353,435,449,430,281,210,179,157,16,1360,2730,3150,4675,6363,8858,7107,4623,4250,3463,2592,1385,1253,902,627,564,772,1096,1792,962,2001,2856,3070,6949,6460,3868,2886,3123,2850,1960,1610,573,356,222,190,254,181,168,91,0,20,36,63,98,107,94,132,132,521,839,1343,1660,2032,2320,2344,1889,2173,1882,1554,1149,1117,980,800,997,816,728,727,972,1440,1544,1240,750,1377,1988,3016,4120,5140,5837,7471,7736,5408,5374,4309,9858,8968,8002,8144,3471,3632,3150,2706,3208,3026,2195,1370,880,789,848,726,622,1702,2228,2510,448,570,551,413,206,266,280,222,293,492,692,835,895,1071,1514,1866,1265,1654,1695,1456,1295,1757,2173,1815,2181,2287,1861,1600,1532,1614,1438,1303,109,134,188,178,241,298,373,363,243,358,447,908,1118,1219,1084,1280,1665,1968,1825,1946,937,1396,1419,918,298,334,338,328,224,206,162,103,199,1185,1969,2614,2547,4949,6640,7356,9900,8280,8690,6545,5800,5210,3470,2774,6764,7078,8842,11095,11822,12885,18176,17712,20951,22455,18202,12137,12574,15892,14380,10430,11241 +137,122,102,118,106,92,66,82,50,55,60,37,32,32,24,18,7,64,117,234,290,386,549,613,4052,3418,3165,2438,2535,3140,3470,5700,1100,1404,2090,1988,1836,1662,926,596,816,1755,2348,2156,2001,3108,3969,3618,626,613,687,592,388,350,302,184,28,1206,2311,3796,4358,5977,9148,8088,4572,4002,2557,2362,1418,1101,1076,738,592,969,1055,1719,1898,2730,2764,3667,7688,4891,4881,2898,2474,2305,2169,1502,430,341,195,190,282,236,192,98,0,28,44,73,131,133,136,157,181,534,858,1460,1868,1866,2533,2614,1576,1930,1677,1374,1075,1044,1199,1196,898,825,869,854,1081,1295,1483,1466,618,1215,2110,2545,3451,4632,4738,6583,5623,5966,6132,5126,8770,6953,6426,6054,2252,2910,4502,3726,5030,3563,2626,2375,1322,1052,1146,1194,1130,2103,2105,3255,865,912,677,588,355,352,386,324,398,613,707,843,1016,1224,1471,2137,806,944,1252,978,1129,1243,1311,1240,1865,1325,1245,1122,1162,1114,1218,1090,140,277,253,253,339,458,488,672,302,354,461,776,1045,1017,1059,1066,2471,1776,1704,1537,1196,1453,1308,1140,568,524,404,326,297,263,282,158,300,965,1505,2090,2880,3868,4595,7361,9202,9294,7355,6620,5037,4436,2582,2603,4365,5109,5487,8296,11162,13536,12892,15124,15304,13139,12276,11746,8754,11565,11142,11852,11322 +89,63,64,93,105,115,126,97,72,69,56,40,34,34,22,15,5,115,188,265,394,472,547,716,4579,5183,5332,4450,3872,4584,6147,7278,1736,1893,1955,2612,2462,2001,2065,1201,1166,2290,2754,2699,3333,3158,3666,3498,1004,1044,775,589,658,483,454,310,49,906,1557,3134,5046,5618,5955,6864,4232,3213,3481,3241,1972,1933,1476,1222,851,1336,1988,1856,2502,3159,3190,3693,6836,6688,5780,4191,2598,2712,2242,1547,387,446,468,361,380,320,240,126,0,34,55,96,135,176,169,170,177,677,1196,1288,1623,2057,2459,1922,1727,1834,1817,1478,1078,932,1026,1392,927,1194,1253,1054,1190,1451,1488,1240,431,1444,2053,2588,3052,3540,4663,5972,5857,7456,7198,7528,5723,5150,5267,7336,1935,3103,3457,3828,5427,4620,2514,2628,1324,1402,1691,1811,1858,2139,2473,2305,1041,845,757,561,576,552,348,353,371,498,789,1009,1184,1271,1269,1706,434,346,412,610,647,704,807,804,970,945,858,938,942,716,655,737,235,279,434,389,397,405,515,838,503,638,567,785,1040,1178,1165,894,3066,2135,1882,1884,1342,908,863,1040,881,776,415,499,474,408,276,154,356,616,1010,1716,2330,4297,5397,7539,10415,7304,5739,4500,3122,2055,1986,1599,3387,5248,6168,7271,7519,5825,7003,8371,10092,8474,5224,6792,7262,9136,10153,9311,12996 +120,108,102,128,100,114,101,116,63,62,63,44,43,28,22,16,6,358,706,910,784,1327,1748,2201,6661,6400,7620,4800,4529,5704,6588,9919,4180,3632,2999,2766,3068,2034,2080,1674,1312,2140,2280,4447,4479,4336,5032,7739,3229,2168,1675,1858,1610,1379,1210,702,80,636,1134,2090,3440,4009,3394,3935,3594,2824,3330,2698,2043,2164,1764,1680,1348,2068,1952,1914,3175,3453,3136,4475,6976,5820,5466,3096,2182,1862,1642,1326,624,669,643,370,550,462,294,124,0,42,88,140,170,210,214,266,259,763,1176,1360,1242,1599,2232,1856,957,1288,1093,1212,723,766,896,1101,757,1092,1003,912,999,1042,1217,986,754,1612,1640,2518,3894,4688,5274,7768,6126,6792,6769,6626,6548,5660,4780,8511,4069,4786,3172,4812,8077,8002,5240,3514,1647,2046,1787,1746,1596,2175,2125,1940,1027,832,937,728,484,440,474,382,470,670,917,1086,1388,1304,1459,2074,430,339,474,556,539,504,632,542,738,672,904,758,1133,990,561,766,222,266,440,428,420,462,633,778,630,757,843,1104,766,1007,1031,891,2834,2498,1654,1411,1468,1170,968,1182,1134,1006,682,620,606,552,411,212,543,784,972,1522,2008,4031,4405,6476,8992,7051,5327,3737,2803,1996,1616,1284,2280,3718,4880,5331,6189,5136,5063,7646,6936,5129,5296,5188,5772,5845,7690,6890,9891 +151,140,150,153,92,103,106,118,59,55,53,38,38,28,22,13,5,507,1128,1302,1542,1911,2916,3356,8389,7295,8304,4645,4797,5848,7377,10382,5665,4901,3717,3313,2923,1906,1696,1769,1218,1640,2405,4241,5434,5506,7460,9686,5343,3404,3057,3298,3332,2420,2265,1064,125,511,1046,1937,1815,1934,1922,1654,1925,2183,2602,1996,1597,1800,2660,2832,2483,2133,2715,2532,3680,3732,3546,3982,6790,5715,3939,2302,2202,2080,1352,1288,917,656,664,515,821,516,324,160,0,58,121,160,185,256,314,433,314,585,1134,1125,876,1331,1356,1248,644,702,736,830,640,578,530,803,844,900,1020,988,1022,1098,814,784,1230,1573,1832,2605,3574,4728,4556,9495,7466,7864,7831,6942,6798,5559,4969,7074,6507,5073,3862,5883,9942,7943,6890,4882,2187,2376,2018,1934,1738,1659,1520,1678,890,926,970,939,398,392,562,416,472,840,962,1163,1395,1391,1503,1966,286,392,388,386,271,302,290,252,331,449,727,726,1145,854,738,797,211,258,392,363,487,648,633,832,671,863,880,1217,843,621,664,463,2291,1842,1832,1801,1573,1777,1520,1048,1256,1007,942,659,943,798,412,195,737,843,1074,1442,2104,3193,3694,5376,8740,6910,3990,2344,1900,1248,764,795,2188,3606,4142,4471,4130,4614,4009,5240,3612,3973,3620,4933,2713,3594,3888,3306,3951 +155,146,155,146,83,88,101,104,78,72,54,36,41,27,20,14,6,598,1552,2654,3290,5094,5386,5354,8020,7366,9991,5714,4165,6857,8475,11971,5886,5682,5841,4076,3217,2486,1653,1698,2116,2740,2608,5224,6725,9528,10284,17216,5626,5647,4692,5113,4032,3354,2874,1432,189,428,621,946,768,1065,802,765,1220,1681,2024,1532,1466,2187,2696,2881,3498,3014,3291,2702,3878,3852,3903,4943,5932,4253,3435,2135,1912,1840,1476,1134,761,710,800,692,904,522,299,126,0,70,165,186,265,330,347,445,364,556,870,961,1024,1328,1159,1358,270,385,392,414,394,412,382,538,825,858,888,780,790,754,431,395,2012,1765,2003,2752,3512,4502,5196,9982,6928,6354,6284,6142,6924,5336,6147,7897,6714,7315,5590,7224,10742,8506,6187,3968,2494,2200,1826,1940,1469,1382,1403,1813,1234,1024,778,632,437,558,700,614,595,759,896,904,1254,1138,1284,1704,404,413,444,352,182,184,185,150,195,400,500,702,973,694,832,975,266,286,443,420,467,601,986,1094,1098,976,612,868,969,622,482,376,1982,1829,2288,2006,2029,2372,2350,1704,1684,1528,1426,1202,1126,774,568,336,898,1037,1253,1290,1532,2450,2172,3356,5129,3956,3140,1782,1101,776,514,398,975,1462,1791,1972,1890,2302,1891,2168,1951,2264,1954,1848,1621,1845,1953,1434,1593 +187,233,241,204,163,151,128,115,104,85,38,28,17,16,13,11,5,1747,3828,5816,7349,6215,5829,6994,8706,9705,8641,12651,18377,13699,10491,14075,7659,7202,5680,3655,2168,1711,1865,2157,2822,6478,9255,13613,14013,12303,15536,21901,6938,5926,3328,2682,2396,2086,1485,955,206,202,238,182,147,126,70,30,272,819,1506,1968,2828,2725,2414,2376,3492,3721,3899,4049,5470,4748,6396,7026,3964,4179,4307,4284,3059,1844,1386,1120,950,765,608,357,119,95,54,24,0,41,78,102,166,168,214,306,523,657,824,870,906,950,793,913,0,49,92,152,207,294,336,598,814,729,544,482,297,260,137,62,2289,2953,4119,3624,3696,4464,5090,7204,8375,6355,6383,5238,6442,8455,10960,8285,8823,9426,7720,6740,4950,3154,2527,3122,2954,2501,1838,1749,1874,2292,2431,2494,1310,1823,1741,1510,1325,1324,1181,846,820,850,674,969,1234,1136,960,1110,393,384,317,186,83,67,59,34,0,208,441,570,722,698,983,900,390,591,812,841,990,1073,1319,1283,1194,1177,894,551,399,273,234,104,1532,1521,1221,891,650,993,1052,1413,1790,1446,1467,1023,560,412,344,161,859,1072,1506,1740,1888,1828,1916,1796,2118,1698,2007,2136,1818,1202,783,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,148,194,214,138,140,130,139,126,100,51,46,26,20,19,12,5,1600,2865,4802,4835,4811,6572,5852,6016,7476,8462,11404,16429,14294,10761,13772,11965,9464,7356,5464,4612,4179,4632,2964,2828,6233,9136,11312,18148,23407,21589,34114,6571,8413,8046,8654,7403,6911,5887,4208,1068,1208,1152,1490,1657,1292,1318,731,235,1020,1399,1938,2564,2210,2138,2788,2905,2824,3316,3642,4419,4483,5324,5459,3154,3952,3125,2838,3580,2316,1346,1208,944,686,446,302,153,131,73,46,0,49,120,136,225,262,314,411,438,708,838,868,1011,1071,966,984,406,398,470,572,614,926,1631,1530,1656,1516,1195,960,747,658,434,433,3166,2893,3805,3494,3718,4260,5444,5690,5201,6188,6252,5451,5509,7529,9120,8767,9529,9092,6607,5382,5168,3858,1964,2686,1888,2429,2075,1768,2273,2698,2966,2994,1708,1430,1792,1857,1583,1403,1316,909,1144,1017,874,1044,1342,1162,1036,1206,310,327,341,209,106,92,92,61,51,224,421,454,678,732,773,750,353,694,901,1100,1080,1358,1314,1554,2001,1724,1428,970,878,582,534,304,1496,1740,1471,996,654,768,1202,1363,1697,1424,1442,1110,836,602,501,288,906,1147,1297,1350,1574,1636,1304,1918,1737,1652,2042,1729,1920,1293,494,279,0,199,456,592,640,568,650,570,440,542,662,795,1044,1228,1465,1630,2132 +93,125,119,119,162,130,122,145,122,82,75,54,27,24,18,11,4,1294,2460,3240,4542,4036,5297,5814,5524,6591,8724,11260,13614,16581,16058,15398,16723,13605,8055,6831,5967,5496,6076,5522,3183,7219,11650,14267,17651,22535,37376,42319,9190,11653,15017,13220,9956,11527,9562,7807,1713,1791,2199,2488,3484,3569,2545,1769,266,771,1081,1601,1751,1930,1492,1978,2240,2505,2038,2908,2652,2726,3527,3476,2462,3264,3224,3003,3017,1834,1500,902,1075,756,486,313,210,182,124,72,0,59,132,164,272,317,370,488,360,540,960,1198,1122,1304,1204,1234,690,809,842,1348,1072,1720,2592,3213,3242,3201,2129,2099,1192,1108,888,624,4074,3893,2468,2384,2708,3777,4180,5121,3373,4915,5198,4360,4391,6450,8804,10035,9226,6084,5118,4091,5073,3557,2298,2092,1576,2168,2060,2711,3048,2805,2764,2859,1685,1718,1476,1559,1566,1522,1100,1076,1346,1413,1092,1460,1211,1322,994,1334,266,271,296,264,101,122,105,74,93,210,392,350,443,375,424,444,243,556,1136,1269,1124,1735,1865,1749,2854,2570,2050,1379,1276,848,800,659,1747,1560,1367,1034,689,718,971,1078,2368,1662,1427,1152,930,917,728,377,1120,1247,1102,838,1362,1063,1160,1484,1793,1415,1429,1238,1483,1028,422,195,0,392,814,1104,1095,1408,1350,1279,736,1046,1124,1454,1945,2297,2628,2973,4699 +66,92,113,121,145,126,104,115,137,85,60,53,36,34,23,16,5,1008,2229,2758,3870,4050,3444,3853,3162,4904,6195,10134,14001,12607,17643,18002,14670,13584,8418,9736,9374,8488,6386,6676,5620,8963,14896,16184,19614,22642,32066,45810,13388,15773,16982,19110,17600,18557,17131,11179,2502,2746,3766,4455,6499,5845,4689,3635,255,648,929,1170,1386,1719,1291,1664,2001,1810,1513,2029,2083,2746,3761,3352,2447,2586,2513,1978,2232,1608,1662,1067,766,664,467,382,287,194,177,72,0,86,152,207,315,364,381,454,490,652,842,1006,1308,1199,1398,1525,1161,964,1000,1284,1381,2360,2439,3808,3200,3244,2472,2442,1418,1306,1331,1050,4030,3366,2414,2501,2741,3117,3202,4928,2492,3988,5254,4836,3859,6357,7198,10121,7708,8545,7373,6508,5982,4326,2383,2217,1870,2685,2515,3416,3439,2594,2260,2794,2264,1771,1491,1700,2011,1662,1304,1088,1636,1634,1209,1546,1380,1490,1464,1412,147,150,254,196,148,148,190,157,124,250,311,354,477,418,389,424,161,535,1060,1632,1468,1738,1766,1831,3569,3528,3185,2504,1576,1298,898,656,1229,1356,1326,1101,970,863,828,948,2233,1729,1249,1290,1662,1188,833,480,1072,985,967,694,940,800,628,724,1964,1984,1470,1316,894,658,270,158,0,552,1439,1581,2201,1944,2049,1458,986,1704,2261,2216,2684,3062,3142,4673,6439 +43,51,66,85,96,124,129,104,107,100,87,72,48,43,34,21,4,852,1457,2807,3412,2573,2501,2634,1721,6425,10047,13223,13784,13056,11617,21239,17471,19445,20871,14004,12494,9003,6284,6024,7234,11109,12474,16058,21432,30849,32756,48554,15649,17964,25386,28671,29025,26906,19939,12385,3212,3371,4296,5304,7834,7306,7025,6033,167,256,447,703,855,731,938,1360,1189,1896,2317,2631,2296,4078,4610,4260,1730,2054,2625,2873,2206,1958,1690,1444,665,464,370,409,321,294,184,86,0,49,118,203,320,279,369,505,470,748,955,1220,1195,1608,1679,1734,1312,1859,2260,2562,2161,2708,3903,4388,4377,3966,4100,3479,1922,1743,1727,1349,3572,2875,2677,2154,2084,3690,4213,6060,2822,2429,2851,4781,5160,5284,7499,9323,9208,6230,5317,5520,5327,4047,3424,2572,2254,3164,3336,3278,2940,2537,2258,2661,2500,2656,2945,2298,2356,1935,1855,1650,1434,1226,1249,1728,1748,1642,1511,1240,41,72,94,161,179,193,172,176,142,236,275,360,488,369,243,263,88,401,641,1355,1670,1646,2186,2186,3698,3143,4084,3713,2294,2474,1850,1116,1086,1257,1472,1087,1175,1063,732,647,1923,1977,1635,1625,1927,1516,1173,616,1050,1062,985,862,492,431,280,342,2344,2035,1687,1129,600,335,222,123,0,808,2005,1963,2863,2972,2641,2609,1407,1806,1973,2567,3336,4214,4764,6388,8390 +60,66,61,90,76,102,112,100,85,84,58,56,47,38,33,18,5,580,1193,1961,2424,2205,1624,1953,1268,5366,6268,8476,13278,13395,13806,22746,16453,17798,15995,13481,14240,11354,10460,8778,12771,13382,17470,18092,27214,27132,26790,35166,21758,21050,25070,32839,37866,33838,30032,21968,6362,6562,7514,8012,8264,10642,10158,6525,119,244,343,506,745,698,901,1440,817,1134,1744,1726,2019,2607,3582,2798,1164,1595,1570,1652,1594,1358,1258,853,393,297,341,284,213,198,104,62,0,71,121,226,291,338,425,457,527,674,930,977,1074,1223,1295,1392,1774,1913,2726,2644,3088,3314,4536,4396,4490,4297,4472,3476,2716,2425,1419,1512,3432,2325,2721,2154,1669,2808,3910,5296,4351,3190,3226,3597,4756,5980,5607,7736,8534,6765,4927,5228,5136,4596,4300,3326,2364,2892,2731,3066,2489,2134,2193,2244,1760,2228,2054,2108,2340,2319,1636,1852,1302,1166,1243,1500,1577,1252,1012,939,36,62,82,137,142,172,194,156,208,243,202,340,339,252,235,216,170,434,781,1245,2187,2341,2345,2092,3694,3935,4167,3182,2302,1814,1573,1384,1455,1679,1394,1408,1487,1192,1557,1346,2938,2488,2726,2528,2820,1986,1724,936,780,862,832,699,549,496,435,398,2293,1721,1339,884,433,356,175,115,0,950,2161,2486,3086,3294,2937,3236,3330,4378,5202,5984,7027,5439,5556,6581,8354 +72,75,66,79,70,72,90,84,45,44,52,54,40,38,24,15,3,325,795,1139,1848,1922,1549,1845,742,3092,4412,5715,10920,12887,15582,18943,10738,11819,14460,15045,13960,15275,13042,15439,14439,14000,20501,26242,25698,27998,33648,33805,36034,35617,23894,39879,54431,38474,35865,19332,7642,8546,10044,8174,11705,12590,10300,9556,62,175,326,438,513,654,664,928,604,871,904,889,1157,1920,2324,2361,767,864,1076,1377,1148,1040,686,532,223,240,222,194,108,77,70,38,0,86,144,272,189,309,379,316,541,715,808,1222,785,884,1314,1398,1928,2163,2344,2312,3303,4012,4252,4469,6089,5749,3724,3016,2938,1742,1381,1544,2443,1881,1930,1876,2024,3087,3884,5558,4765,4763,3684,3848,3421,5501,6028,7260,5993,5199,4456,4960,3612,4381,3817,3797,3625,3645,3446,2983,1673,1932,1650,1971,1326,1568,1835,2471,2294,1875,2204,1591,1472,1440,1262,1324,1343,1149,759,783,22,40,72,154,142,152,154,173,237,242,204,326,254,224,250,226,306,461,741,1190,2317,2517,2005,1880,4396,3870,3034,2461,2382,1832,2042,1823,1732,1428,1762,2068,1914,1896,2150,2617,3177,2607,2950,3341,3194,2932,2290,1680,840,888,740,715,499,540,518,382,1798,1869,1320,833,368,231,170,88,0,1200,2146,3197,3058,3292,4406,4552,6579,8243,7632,8868,11471,7807,6016,7640,7385 +82,68,60,72,56,62,72,64,38,46,44,41,36,26,20,12,2,192,400,578,861,926,645,856,357,2026,3638,5497,7006,8018,14228,19450,11287,14782,16138,15640,13577,13504,12964,14385,17274,20602,23814,27126,20476,29628,37949,41728,35020,32875,32029,40682,61726,46436,41962,26824,14561,11890,8380,11862,11868,11331,8044,6861,27,88,180,236,289,290,306,396,320,332,386,412,502,866,1150,1152,461,474,618,684,615,446,280,262,98,128,119,96,57,46,38,23,0,82,166,213,215,280,296,336,498,632,711,974,864,892,1199,1275,1728,2430,2773,2718,3282,3252,3931,4214,4197,4579,4307,3170,2680,1710,1633,1652,2486,2152,1634,2126,2682,3099,3171,4387,4788,4430,4078,3434,2223,3020,3751,4998,5284,4654,5660,5486,3527,3438,4122,3832,3802,3963,3901,2547,1597,1552,1419,1676,1726,1500,1341,1803,2000,2282,2284,1940,1630,1518,1592,1086,978,828,510,462,11,41,96,142,198,191,191,204,189,189,242,230,216,218,261,216,337,508,806,1170,2151,2107,2697,2502,3834,3146,2805,2482,2250,1804,2249,1558,1514,2081,2454,2198,2172,1888,1858,2333,2948,3320,3412,3197,3577,2718,1887,1638,863,758,616,698,565,662,616,446,1178,1203,723,487,356,263,178,84,0,1347,2859,4158,4975,5664,4760,6654,7957,9852,9294,9638,15084,12824,8001,8792,8468 +64,2122,4177,5746,6026,6539,9546,10042,8374,11374,15283,14883,18564,15097,17178,18928,15405,12864,14754,12678,8076,5086,3263,1726,0,2545,5672,9741,11801,15814,17196,19674,15750,11460,5709,4930,2767,2118,1318,739,0,3455,8092,10282,15128,15677,15704,30115,36363,40917,33575,21326,15700,14476,8500,4772,0,574,1343,2504,3022,2804,3933,5977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,137,148,204,239,304,410,522,535,450,415,439,381,368,392,487,450,288,173,85,69,57,24,0,417,802,936,1199,1046,1046,1299,2692,2444,2053,1474,1132,1347,1599,1699,1990,1774,1973,1438,1427,1192,658,379,0,118,280,371,452,516,458,475,540,688,677,583,715,829,923,1241,1629,1159,1060,943,792,845,717,566,326,403,647,774,917,983,1305,1400,1125,1140,1159,1004,811,790,645,433,406,338,171,163,151,169,200,217,406,577,612,464,502,508,459,404,275,293,273,258,181,348,442,618,799,1120,1101,1153,1411,1276,1252,1204,868,1100,1106,1088,1439,1719,1474,1316,822,1330,1913,3203,4694,3560,3180,3872,5517,5380,5022,8037,10889,17820,18835,17311,17114,16494,11589,13362,12851,11574,14544,12831,9098,10344,8921,7380,4179,6946,10286,12024,12155 +64,1810,3392,4875,5031,5951,7883,8948,8529,12400,15981,12696,12954,11986,16481,12903,14035,12805,11621,8706,5318,4770,3577,1976,235,2242,6157,7142,10551,12606,15695,14321,17470,12638,5142,4940,2746,2631,2678,2737,1959,5862,10708,13844,18966,20629,25139,28784,44892,34770,23458,18882,14269,11911,7703,3888,412,1070,1828,2243,3484,3212,3963,4891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,199,323,377,472,711,870,600,638,692,650,440,612,504,604,460,462,455,352,209,261,354,279,346,1135,1929,1972,2086,2252,2198,3040,3186,2752,2491,2112,1687,1688,2042,1931,1700,2232,1626,1909,1308,1008,529,324,0,98,230,277,372,458,489,478,469,528,514,568,852,910,882,980,1404,1110,1002,813,615,742,596,462,294,512,700,941,921,1137,1194,1228,1084,1192,1121,906,643,512,456,406,509,406,254,232,157,150,172,170,327,668,687,748,1054,1484,1667,2380,2686,1792,1184,1079,1094,988,870,1188,2338,3250,3802,5681,6868,7087,5912,6746,4492,5099,3865,4418,4680,4594,4002,3294,1102,1718,2553,4394,4565,4040,3721,4343,4565,4497,4682,7884,10848,14768,12706,15922,23733,19858,19355,13278,10920,11054,8655,9633,8850,9620,9237,9058,5925,10266,12020,11440,11766 +56,800,1864,2582,4223,3982,5176,5060,6654,10766,11606,11158,12811,12120,11794,14475,13148,9842,10708,7970,5104,4404,3090,1803,452,2903,4695,5242,7608,9486,10846,11209,14729,9024,6094,5852,3269,3801,4642,5266,3418,8196,12938,19001,18356,21720,29334,40980,38520,25448,24490,18993,19502,16168,9558,4933,970,1238,1791,3220,2884,3029,4114,6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,271,507,469,709,1023,1367,677,919,916,1050,646,701,816,1040,654,559,524,575,368,592,648,530,677,1925,2930,2696,3116,3006,3128,4003,3327,2792,3094,2278,1990,2120,2496,2262,1971,1838,2008,1700,1514,1048,611,357,0,64,120,205,318,391,430,418,373,372,528,804,719,1027,994,948,1727,1203,1024,1143,686,581,483,446,170,480,647,759,1112,1183,1001,980,1005,812,929,736,600,418,380,355,472,449,366,335,197,160,124,108,407,764,876,1066,1741,2757,2890,3309,4429,3451,2204,2187,1799,1507,1434,2027,3626,5140,7519,10159,12513,13065,12598,13002,8456,8588,7421,7847,6384,8010,7161,5654,1295,2339,2754,3927,4395,4556,3842,4777,3734,3998,4122,6132,10536,11200,11985,14089,28398,26046,21118,14310,13419,8410,6984,5086,9465,10736,9790,7702,8792,9272,13754,11366,11305 +39,570,1298,1606,3298,2990,2554,3020,6821,8020,7818,9562,10534,9834,7522,9947,14030,11128,11103,9144,6296,6675,5470,2872,584,2540,4047,6114,5990,7692,7625,7535,9152,6553,4119,5376,4628,7266,9283,12134,5639,12829,15246,24704,24541,25153,30253,40327,43382,40833,30003,21678,16554,14686,7338,3806,1315,1316,1666,2510,3274,3608,4016,7682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,273,583,504,1009,1294,1584,480,696,779,1076,1260,1114,1308,1765,907,724,768,748,672,750,820,842,797,1914,2930,3194,3956,3647,3262,4934,4160,3905,3835,2965,2342,3146,3330,2985,1258,1502,2127,1978,1681,1176,684,384,0,55,78,124,218,304,367,340,403,529,714,822,762,914,812,1030,1770,1514,1350,1122,780,624,498,404,131,337,522,708,831,810,700,866,946,875,826,538,416,424,413,260,451,408,326,246,202,146,147,112,291,807,1046,1649,1818,3288,3731,4710,5767,4133,3658,2878,2180,2164,2455,3602,5999,7269,8816,12374,15680,17380,19617,18526,18002,13128,12205,10190,10366,11988,12038,9407,1035,2256,2746,4340,5202,5324,6262,5820,2853,3702,4783,5751,7104,8743,8544,11996,28947,28290,20009,16376,12215,8628,6251,5067,6547,7374,8761,7276,9165,15010,15250,18838,20150 +36,317,736,874,1398,1793,1794,1278,7597,5332,5206,7421,8712,8451,6700,6606,21187,17039,13466,11055,8532,6642,5468,3618,651,2253,4217,5336,5506,5219,3567,3126,6972,6260,8074,7437,5288,8178,9269,10994,9254,20566,25252,27424,35173,53516,57308,57967,57543,44551,41989,29646,14874,13005,7239,3708,1468,1751,1984,2586,3072,4011,6130,10286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,244,608,786,1431,1667,1707,500,761,798,1032,1488,1682,1529,2146,1104,1454,1350,1389,1088,946,1132,942,1030,2551,3748,3835,4530,4523,5282,5970,4710,3386,2909,2623,2880,3088,2446,2136,1153,1260,1124,1027,1394,977,864,388,0,22,45,82,96,99,136,281,456,581,655,793,707,1000,994,1176,2516,2361,2113,1475,1020,904,546,356,123,246,432,593,690,486,415,400,810,786,670,451,403,402,353,272,400,343,247,243,184,146,112,125,191,807,1162,1587,2456,3058,4128,7288,6120,5471,3973,3391,2736,4836,6150,5241,10262,9266,12004,16483,18367,19797,17951,19353,21921,23364,23178,19523,11770,12054,13096,12759,1174,1918,3381,5414,5882,6226,6843,7508,1737,3222,3953,3951,4538,5719,8580,11456,37820,38257,31328,18337,10954,11412,8583,5815,4784,5136,4791,5993,8940,12999,18832,19322,22809 +26,402,896,1312,1067,1352,1532,1522,4803,4680,3399,5278,8318,7058,5539,5990,19118,18138,17502,12224,12320,7336,5054,3530,1432,2876,4429,4554,4340,4787,3809,4973,5967,6196,6491,8364,10149,10546,10877,16180,9228,14246,18254,26426,37077,44815,38335,41908,51628,42332,36629,25024,14230,12108,10126,5404,1560,1562,1526,2218,2667,4660,5851,11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,355,828,974,1340,1908,1890,753,1172,1277,1499,1356,1886,1785,2803,948,1342,1648,1528,998,1078,1510,1399,1395,3118,3854,3956,5331,5126,5304,5652,4567,3170,2413,2893,2436,2458,2581,1759,966,1144,1154,1260,1410,954,787,510,0,20,32,72,78,96,119,185,351,438,478,592,536,504,751,711,1710,1698,1920,1494,969,648,397,238,122,223,352,440,728,945,775,822,514,517,477,401,340,355,232,169,390,272,254,223,160,148,105,112,178,626,851,1426,2447,4092,4778,8362,8534,9474,8416,6496,7355,9672,9067,11152,10949,13652,13020,17194,26033,24068,22706,20386,21659,24021,25803,17271,10455,10774,12688,11328,2137,3235,3348,4865,4078,4532,6295,5286,1734,2753,3627,3464,4261,5173,7966,9124,55060,43104,33557,32636,19850,20523,15472,11424,7608,7466,10484,10620,11336,14827,15538,17403,19377 +23,486,980,1665,1094,1060,1506,1861,4256,3406,3267,3267,6334,6570,5847,5571,22172,18111,16530,15771,13868,11396,6996,4182,2803,4081,4145,4001,5324,5886,5686,7479,4375,6304,6324,8078,11803,13737,15884,18276,13616,16980,19064,27970,32145,31680,28794,31236,56852,37762,32238,20303,17016,16695,11055,6092,1282,1520,1452,2759,2899,6353,8352,10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,488,734,1210,1395,1752,2068,991,1542,1954,1576,1373,1832,2482,3213,1256,1319,1426,1452,856,1153,1472,1527,1361,3434,4678,5056,5902,6260,5482,6122,4642,3552,2602,2524,3085,2148,1932,1810,1144,1446,1436,1204,1012,1082,834,668,0,16,30,46,49,66,76,122,152,258,291,260,218,313,324,445,1658,1686,1548,1135,831,675,296,165,87,206,318,501,744,946,1193,1209,373,380,452,391,227,187,162,140,316,312,223,141,113,124,130,143,124,508,880,1093,2637,5054,6782,6577,8275,10036,12422,9994,10593,11959,13898,18370,12756,14961,16416,18145,35884,30315,24888,19172,27372,23362,22329,19256,13599,15195,13139,12855,3797,4032,3798,4915,4122,3852,3668,4484,1226,1512,2360,3252,4351,4755,6976,8237,55950,54194,43920,44106,34660,25213,19467,17953,13140,11592,13304,10246,18846,18801,15092,12743,13920 +12,461,1049,1636,1552,1449,1468,1647,3427,2828,2180,2356,3273,3827,3956,4838,26952,25816,25586,21216,14278,11702,9629,5511,2695,2998,3651,3391,3261,4198,4624,6176,3121,5490,6760,9798,10438,14736,18776,20006,15762,17574,19457,24026,45345,37302,25546,36322,54154,36607,23605,23263,15271,13544,9571,6265,1736,1521,1717,2696,2808,5845,7410,10753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,469,758,1138,1763,2275,1963,1353,1840,2307,1726,2143,2418,2977,3500,1426,1530,1458,1389,1288,1568,1896,2232,2112,3738,5137,5851,7947,7440,5591,6124,3166,2570,1978,2195,2022,1901,1747,1420,908,1016,1318,1194,900,1066,676,636,0,9,17,22,29,34,36,54,94,116,144,150,125,152,135,198,1826,1494,1162,1165,863,640,353,195,51,191,247,347,511,793,1111,1622,255,232,242,217,202,176,123,118,196,203,182,141,135,128,104,112,177,594,964,1546,2234,3668,4997,7720,11562,13416,12304,14278,13164,18544,19204,19319,16747,23735,24505,27624,31879,33743,32852,24237,24362,19192,18613,16184,13749,10588,11322,11435,4876,4589,3049,3316,3021,2980,3064,2962,1526,1710,2473,2689,3874,3988,3824,4351,40714,59503,64262,57186,41356,38374,30441,21167,15883,15314,16130,15258,18065,18754,22562,18780,17009 +0,61,149,217,323,847,1519,1651,2152,3187,4715,6017,5432,5664,6529,6119,28265,25154,31076,24890,17569,16738,12501,8883,3866,4114,4620,4527,3048,4350,6273,6260,2652,4703,6006,9528,12794,16956,16796,20480,25025,35652,47832,49170,51062,49419,48260,45092,44163,45256,49298,48770,39238,24573,12631,8681,1838,2086,2752,4428,5433,6154,5073,6977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,407,622,996,1485,2036,2166,1938,3592,4085,5131,5186,6098,5893,4247,2170,1373,1128,927,843,896,1367,2413,3160,3748,4876,4713,5966,7959,7532,6971,2944,3491,3408,2572,2396,1585,1171,847,520,576,530,488,493,598,547,568,0,2,3,5,4,5,4,5,4,6,6,6,4,5,3,2,1576,1400,1138,1276,1136,898,709,375,0,135,328,632,792,1237,1586,1632,75,100,165,167,188,159,141,148,169,158,101,93,121,113,150,110,183,1080,2056,3393,6331,7706,9113,12819,12705,15149,12684,15109,14628,14974,20148,17477,20786,15352,10929,9051,9144,16105,18829,17325,23898,29645,38444,33172,31470,24776,23064,17760,7082,9344,8678,7986,5725,4054,2941,2665,2191,2044,1668,1565,1690,1194,1247,1294,42891,40277,52577,42393,48325,37762,33690,21181,15662,14220,17488,16676,14286,21018,21533,16581,16998 +0,202,378,531,534,1129,1417,2010,3028,3882,4318,5720,5615,5920,5278,5373,31591,23290,29055,22547,16219,15696,9492,8176,2958,3086,4146,3226,2575,4003,5292,6191,2086,3612,4489,8360,11128,11330,11749,15599,18905,28156,30678,38304,40543,38414,41471,35369,43382,45582,47578,44864,28833,19985,13072,8269,2434,3039,3618,5496,5995,5798,5544,9270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,464,752,715,1323,1996,1670,2526,3449,4154,5010,4966,5521,4818,4188,2818,2757,2637,1704,1929,1954,2126,2902,2966,4000,6030,6644,7744,9396,8967,7074,2000,2670,2494,2024,1664,1794,1004,1035,391,504,622,516,656,556,453,504,144,149,148,139,161,104,50,40,8,44,61,85,110,144,279,296,975,852,768,871,758,630,453,280,0,154,263,550,628,1072,1132,1244,244,232,232,243,218,196,183,188,162,142,111,108,119,130,142,120,182,1684,3809,6123,7621,8286,9709,15062,11398,13413,13903,18466,19384,23536,23198,21412,19896,16650,9457,10290,7976,13550,18937,20601,37866,33836,36651,29346,41094,34996,27645,19066,7729,8630,8359,6776,6177,5270,3208,2952,1700,1916,2254,2594,4006,2997,2917,4402,56444,49884,45324,40874,43050,34959,32966,20486,11248,12927,16958,14206,14238,15069,15699,14485,15149 +0,342,590,915,873,1083,1814,2478,2965,4477,4528,6074,5050,6332,5794,5880,25983,21790,20532,14492,12989,12275,10120,7681,1960,1994,2816,2558,3241,4006,3473,4358,1662,3272,4072,5074,6042,7466,9992,10670,13593,19614,24048,33180,26556,28196,22838,21502,42756,45127,35826,23577,20804,17415,10949,6795,2278,3396,4372,7902,8639,8124,8002,8520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,436,635,751,932,1430,1258,2416,3134,4830,4581,6073,5924,4442,3281,4575,4440,4244,2654,3286,3841,3123,3718,3290,4046,6785,5359,11395,9268,8100,6089,1326,2008,2051,1662,1745,1301,1153,930,307,582,770,806,990,681,501,380,243,240,334,279,308,170,96,46,11,73,136,172,261,376,475,609,702,696,592,692,669,555,362,211,0,108,214,563,743,1004,954,1225,346,247,245,266,272,271,181,198,105,120,101,121,77,125,136,119,220,2419,4802,6277,8060,9181,14109,17060,6540,11964,15604,16119,22462,23910,23382,19742,17288,13014,11438,11311,9381,9674,12773,16959,45008,40926,34047,38300,47846,35556,23064,16570,8040,8088,5960,4464,8662,7516,4335,2509,1425,1700,2376,3562,5810,4344,4484,6859,56168,60824,55168,51818,45538,29594,27386,24867,8892,12118,14878,13386,9875,10709,12278,15355,14589 +0,367,708,1240,1309,1566,2583,2996,4725,5490,4597,6426,6532,7318,6710,6829,15638,15868,14983,14903,13160,11689,9103,7916,1184,1686,2129,2396,2476,3255,3388,3758,1238,2148,2722,3729,3475,5680,6407,6132,11063,15465,14912,20586,21084,21380,20159,25248,38798,32167,26895,19976,20620,15654,8512,6158,1839,3258,3536,5988,9742,8732,6224,8785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,266,428,484,751,897,1072,2505,3188,4897,4782,5819,5553,4111,4242,4500,4470,6027,4422,3816,4475,4293,5190,4204,6384,6979,6554,10067,9607,9884,8286,1113,1317,1556,1196,1147,916,837,903,352,592,925,942,1277,789,547,466,466,548,569,453,402,272,139,72,12,106,214,308,334,538,674,974,714,565,599,564,478,490,381,182,0,111,206,507,500,570,640,1004,451,381,260,322,272,233,158,169,89,106,92,105,67,96,123,114,382,2964,5030,7746,9942,10471,11670,13415,5390,10520,14721,17054,22725,21138,22460,22112,13322,10860,9044,8875,7183,12584,13659,16196,47806,52578,39739,38540,39581,34374,22720,14492,7485,7460,7405,6324,6571,6500,5022,2728,1071,1992,2532,5224,8208,8750,8008,10676,57376,54661,40837,40405,36386,29150,23577,19384,5912,9458,9261,10254,8718,8370,7748,10582,11776 +0,516,986,1828,2394,2186,2566,3577,5586,7429,7365,7186,7556,8607,8875,9046,9780,9356,8899,9058,8956,10363,9316,8601,866,1361,1526,1886,2214,2476,2163,2547,519,758,1031,1102,1386,1690,1830,1945,8780,9000,13119,11592,11984,18374,23395,29335,31998,22589,22844,22942,15916,9482,6964,5009,2270,4204,5294,6051,7777,8291,6041,8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,180,203,268,397,685,778,2651,3349,4142,5137,4776,3985,3397,3114,4368,4100,2851,4076,4408,3710,4476,5727,4567,4576,4630,8449,10312,11427,11276,8242,1416,939,631,531,387,620,928,1081,398,537,680,1217,1368,941,970,736,782,748,721,646,435,321,318,201,14,102,226,456,559,809,1073,1028,644,668,613,486,406,314,130,70,0,54,121,210,383,520,571,553,545,411,284,255,303,234,157,124,113,87,58,50,56,83,122,108,544,3732,5736,7716,9010,10172,9540,12669,2816,4837,8282,14851,20865,15684,17416,22241,6647,8874,9379,7618,7831,11013,13380,17439,50075,53587,41138,40512,40436,34412,30384,15510,10178,9807,6450,7708,6956,5712,3378,2002,1173,3161,4385,8287,10204,8990,8715,11139,43315,49084,40099,36606,23762,27700,23997,15307,3358,5955,6750,6854,9050,7245,6263,4994,6207 +0,844,1917,2714,3397,4901,3915,4664,6727,8664,8684,9489,9326,7966,9090,8376,8663,9472,11106,9912,8815,7569,7308,6402,1095,1470,1442,1745,1634,1920,2436,2560,491,690,950,1064,1367,1393,1592,1974,6157,6330,11878,11784,10831,16199,13890,20755,17902,20996,21490,16742,11918,7351,5674,4004,2312,2694,3429,5046,8647,7722,5668,7054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,332,414,476,596,921,994,2257,3036,2970,3967,3757,3754,2840,3087,3064,3170,3455,3378,4821,5264,4437,5894,3612,4736,5732,7964,10182,10497,10778,7232,1216,911,671,464,574,660,778,871,336,628,737,1240,1285,1098,972,822,1169,796,934,673,666,422,316,235,34,168,310,426,722,966,978,1190,498,492,452,390,231,180,94,58,0,62,110,240,327,453,521,715,756,622,434,374,371,286,150,106,109,73,54,45,44,69,86,90,542,2839,4848,7796,8905,13224,11247,14502,6294,7211,7609,11340,22600,25248,16334,19678,7728,9662,11357,9788,9795,14639,13932,21360,56636,48900,42656,37004,36711,32229,29082,15488,12766,10371,5154,6729,7841,5054,3334,1998,1055,2930,4213,5894,8817,10200,11587,16728,42656,37926,32311,28581,18378,20814,17478,12766,2310,5122,6854,7998,13375,10014,12038,8979,8037 +0,1240,2456,3583,5179,5087,6452,8648,8341,10525,10371,9180,8619,9539,10650,7958,8672,10376,10798,9348,5795,5275,5198,4252,1662,1936,1668,1684,1323,1498,1943,2040,590,673,728,758,927,1122,1214,1477,4438,6741,7360,8235,8923,10187,10785,13644,11628,10984,13732,11206,7509,6097,4062,2748,1690,2082,3234,4948,6925,5985,5504,4555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,550,639,591,861,1057,1337,1598,2463,3264,3671,4477,4102,3166,2768,3077,3774,3258,3183,4690,5985,5962,7048,4112,6391,6566,7839,10228,10433,8034,5928,829,770,487,588,649,630,655,774,386,734,1031,1818,1499,1571,1194,1059,1287,1134,933,620,681,603,406,205,50,194,315,410,831,1195,1337,1310,239,267,290,249,142,116,73,39,0,80,140,276,255,485,616,730,979,610,542,476,365,339,202,122,74,58,56,38,27,42,72,71,455,2639,5734,7574,9901,10248,15402,13314,9841,10345,8787,9938,30115,28426,21360,15450,9096,10504,15728,13077,16127,15092,17696,36387,45295,39101,45058,48145,25631,28305,24640,20552,11663,7427,6270,6376,7991,4642,3112,1723,798,3012,5126,7434,11465,14548,13058,15459,29901,29619,29030,22886,17024,11926,12482,7412,1099,3680,6631,10634,15148,15071,13943,14818,11231 +0,1538,2914,4981,6126,5855,5507,6242,10327,9622,10420,9227,11530,9356,10076,9336,8834,10431,10429,8786,5086,4836,5497,4564,2246,2091,1616,1332,1135,1198,1210,1395,545,526,512,566,572,602,799,702,2185,3537,3628,4259,6262,6534,5526,7088,7410,6582,8277,7522,4000,3704,2102,1578,1449,1747,1999,3106,3783,3935,3877,3682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,654,938,1012,1228,1635,1566,1889,2392,3318,3616,4646,3636,3442,2547,3331,3694,4513,4210,5071,5572,4248,5508,4000,6040,7500,7360,9751,8172,7315,4967,463,447,371,499,687,781,885,734,623,1034,1214,1636,2015,1742,1242,1348,1537,1162,978,770,579,556,481,252,97,313,438,600,1062,1338,1706,1524,132,150,136,127,69,50,43,21,0,84,154,272,279,460,585,908,939,792,594,454,398,318,240,133,34,40,42,30,23,37,51,56,486,2980,7315,9201,8589,11728,14182,14859,14062,13501,16973,16138,22532,24738,17976,15341,13945,14532,20550,18697,20622,21954,27641,35965,44310,38424,33619,35872,27620,23826,16722,17278,15176,10106,9466,6930,6904,5036,3892,2247,341,3048,4892,8814,13590,11874,11650,15774,29386,21262,15599,14008,10628,7426,8236,4285,620,3236,5764,11044,12740,13232,12854,16296,14335 +0,468,999,1868,2578,2143,2293,2915,4660,7928,8741,11344,13663,15867,12806,10018,10531,10892,8566,10096,9769,8116,10470,9173,10777,11720,8806,8543,5996,4591,3452,2034,501,475,588,439,360,324,210,88,0,288,716,801,1106,997,956,1613,1822,1166,1034,966,906,860,598,279,0,226,461,650,842,1780,2673,3695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,48,58,89,148,235,304,366,384,338,384,526,1369,1976,2646,3314,2734,2040,1655,872,631,341,296,204,732,1080,2192,2895,2842,3666,3823,0,140,257,374,483,758,892,1088,969,1637,2122,2213,2331,2234,2052,1762,1642,1562,1503,942,596,520,619,612,520,914,1675,1735,2003,1770,1540,1943,0,25,48,74,129,127,182,279,330,260,305,398,400,516,476,609,912,878,723,601,364,308,360,367,388,406,331,288,334,278,131,88,439,1546,2604,3490,5250,9808,12174,11716,12576,16431,16593,19541,19474,19368,26251,24939,18542,19063,20530,20572,25825,15898,13754,15384,16089,14221,19004,27148,27550,24308,21249,20266,15418,15511,15760,11520,8116,6113,5273,3200,2146,3227,4292,5335,8135,8328,10245,16597,22922,21114,19434,19244,15365,22723,22793,24134,27271,28242,27864,27153,32829,36453,33839,22524,17356 +0,433,970,1652,1833,2580,3002,4720,3598,5248,5997,11928,10118,12168,8002,7777,9475,8346,10792,10632,13154,11502,10463,11089,9728,9912,7773,7313,4900,3776,3695,2260,506,441,496,403,285,293,256,154,90,314,826,838,990,852,1180,1511,1669,1447,1111,894,716,728,520,206,0,220,372,586,809,1612,2320,2834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,58,77,67,142,251,323,311,387,511,500,764,1480,1783,3002,4557,3604,2700,2133,1324,796,380,278,168,720,1272,2274,2732,2380,2813,3841,0,108,225,266,468,674,630,804,723,1234,2038,1713,2150,1904,1569,1721,1698,1392,1411,970,687,498,511,616,433,806,1334,1652,1618,1530,1524,1793,0,26,52,84,144,114,163,230,264,239,295,448,595,667,694,686,676,742,646,555,322,350,334,358,215,276,268,276,270,212,135,85,433,1654,2368,4219,6954,11344,10137,12030,8984,13254,17558,17396,15242,13368,17463,18894,15471,20308,25646,26528,20004,18282,12790,14377,14093,15202,20722,25202,25276,20802,20762,17444,20034,16822,16212,12150,9911,8750,6295,4188,3436,4270,5344,6212,7590,6480,8469,14208,29642,27650,23834,17631,12190,19384,24826,23089,25321,24898,28094,27378,38760,37080,29903,22636,12704 +0,568,1001,1413,1711,3132,4352,5830,1960,3431,4352,8545,11532,9431,7015,6064,6511,7732,10294,10283,12337,11727,10012,7743,11867,10904,8412,5786,3649,3386,2855,2308,558,436,386,496,282,247,230,185,210,518,740,703,708,700,1018,1200,1880,1930,1544,1238,728,582,446,186,0,202,436,645,789,1558,1868,1773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,53,70,62,186,334,428,352,446,544,534,1110,1808,2053,2505,5013,3896,3324,2599,1404,1111,483,251,150,990,1564,1778,2704,2380,2162,3300,0,87,172,171,393,400,528,556,593,786,1282,1416,1709,2044,1756,1396,1283,1079,945,718,552,474,433,370,258,609,1060,1391,1518,1353,1604,1221,0,31,51,77,117,138,149,235,144,251,324,499,592,529,700,981,743,640,622,477,397,373,396,425,145,187,188,273,303,208,118,85,343,1660,2980,4667,7610,11473,12378,12862,6807,10853,13162,16921,8972,11539,10836,9082,19849,24763,24160,29262,22140,16333,15822,10940,9379,14896,15966,14746,21454,17444,13612,12982,23958,22148,19886,14204,13326,10668,5654,3942,4129,4631,4664,5990,4884,5570,5997,9271,28234,29004,26480,20418,13854,18790,18622,21774,17361,19609,22650,21281,36112,24935,23430,15590,11565 +0,510,1003,1763,2306,2882,3125,4571,1493,3066,3848,6589,7820,6027,6248,5644,5764,10094,12376,12327,11335,11658,9527,8916,13059,9338,5929,4592,3731,3723,3822,2410,562,580,387,478,362,359,298,216,292,402,594,551,491,690,1139,1566,2291,1760,1566,1160,994,760,654,342,0,183,376,634,789,1357,2029,1848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,41,72,97,205,346,390,414,736,873,902,1331,1684,1889,2469,4838,4404,2875,2480,1891,1120,575,331,92,691,950,1220,1979,1625,1810,2374,0,45,118,142,257,282,374,397,621,748,1156,1215,1524,1555,1254,1164,744,710,555,604,388,474,474,431,230,696,1012,1346,1582,1465,2093,1676,0,26,39,55,86,117,98,154,96,222,375,554,561,657,532,809,547,446,376,456,469,440,391,422,85,130,137,178,178,142,114,89,360,2098,3069,5042,6178,9097,8669,12328,5408,6990,9287,13165,7349,8948,12165,11082,22268,21604,21607,19338,23742,17318,14342,10623,7750,10898,10062,12464,13711,13529,10934,10880,22496,19413,17667,16354,14394,10608,7952,6562,3708,4959,4039,5082,4485,4750,5902,9714,25425,24948,29040,19638,15390,21012,24188,27792,24876,25853,23847,20606,30045,23342,17343,14118,11098 +0,629,1069,2097,2824,3352,2793,3276,1288,2298,3186,4642,5184,6172,5953,4766,6914,10073,9879,12500,11716,9155,10996,10937,12561,11412,9020,7836,4500,3717,2407,2367,759,757,848,702,533,563,476,350,307,265,282,273,320,506,884,1403,2558,2510,1766,1846,1408,1032,916,458,0,165,358,463,580,1064,1241,1694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,63,79,105,128,191,295,493,488,677,884,1163,1207,1768,2296,4944,3798,4020,2343,1829,1503,963,555,64,332,592,1362,1724,2168,2575,2810,0,31,62,90,139,163,139,180,735,710,642,1029,1366,973,823,709,242,283,316,346,344,367,468,342,267,658,907,1328,1318,1251,1735,1631,0,12,24,39,68,66,87,128,62,388,604,820,806,963,1106,1053,205,232,354,510,501,455,331,401,62,101,111,111,136,123,115,77,358,1970,3836,5700,6289,8441,10182,13222,5154,6904,8870,8465,8319,7988,8082,7087,23974,23058,25931,21483,21876,20221,11946,10383,7716,10094,10541,10580,8619,9082,9740,8882,21042,14876,15972,17930,16311,10877,7862,5374,4591,3286,3483,3375,4785,6056,6011,5345,34439,27062,18287,21673,21686,22417,18901,22676,24174,25020,21696,18346,19180,21196,16716,12782,10861 +0,464,905,1564,2272,2689,2697,3926,1658,2202,3306,4496,3234,4520,5806,4276,6570,7058,8967,9078,9042,7783,8748,8869,7604,8246,6872,5806,5484,4228,2326,1910,592,849,687,544,405,472,449,449,458,399,467,476,719,1074,1429,1827,2244,1870,1445,1566,1314,909,759,331,0,138,302,348,653,1033,1124,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,109,182,271,286,234,320,480,476,575,899,837,1207,1647,2412,4678,3888,3177,2384,1862,1378,1008,612,106,371,672,1102,1186,1667,1844,1902,0,20,55,70,92,126,131,116,478,651,636,966,857,714,610,542,140,214,283,328,283,390,364,350,356,566,887,913,998,1126,1282,1464,0,12,28,45,50,54,94,106,56,343,622,620,584,782,976,1088,317,384,509,506,577,571,440,446,63,92,130,96,150,101,88,60,261,2244,3194,5125,7440,9392,10129,14052,6444,6474,8603,7580,6477,6860,8174,6365,30194,26770,26920,23322,24071,17172,14671,8957,5792,8060,9054,8508,7522,6512,6876,6494,21108,18668,19605,14510,14455,9810,10836,7926,3890,4043,4994,4589,3558,4096,4216,4538,28112,24593,15704,19732,16355,17497,20506,17386,19790,17522,14646,12986,17186,14689,12731,13874,14965 +0,445,793,1302,2216,2926,3480,4414,2158,3259,3570,5513,2590,3675,5512,5922,5985,5716,6229,5615,5629,6165,7660,8734,6409,5811,5380,4794,4894,3896,3110,2081,698,561,640,733,405,394,452,479,710,562,666,598,1058,1535,1809,1836,2156,2267,1632,1230,838,554,462,237,0,101,227,363,638,922,956,805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,168,302,357,353,372,390,691,579,436,654,889,1325,1360,1815,2902,2798,2948,2166,1461,1008,1018,730,152,354,547,837,1141,933,1048,1118,0,14,30,49,78,71,89,118,439,516,542,688,446,406,238,242,97,127,196,176,348,266,256,277,336,516,584,736,778,981,1220,1410,0,13,22,46,42,66,77,94,63,238,442,774,491,746,788,778,408,432,517,485,531,520,515,430,80,114,110,96,114,77,64,50,129,1731,3064,4172,6990,7376,10166,11774,7120,7408,5577,5102,4908,5880,5968,5490,28245,20158,19735,23470,18732,13102,12762,8160,3579,4888,5944,5286,4677,4238,5060,7036,14208,17773,17120,14078,14827,14629,11382,7729,4428,4524,4851,4650,3425,3699,4446,2854,27995,20479,15863,14468,13025,12427,17262,11978,9836,8524,11080,12691,13775,16713,14976,12332,15547 +0,396,551,1130,1663,2328,2566,2998,2805,3397,3569,4551,2630,4292,7512,6530,5857,4334,5376,4046,5686,6260,6471,6186,5690,4046,4882,5040,4856,4172,2448,1878,571,606,497,533,483,484,480,448,860,760,842,832,1068,1870,1681,2300,2257,1644,1464,1163,472,361,342,174,0,115,216,400,583,748,744,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,175,260,433,365,419,368,602,489,297,462,444,768,732,1362,3160,3027,2267,1871,1508,1140,1071,652,305,397,416,455,630,602,600,716,0,9,14,28,47,40,51,60,256,273,255,370,246,201,141,140,50,104,186,178,292,262,226,279,388,460,483,491,637,993,1301,1300,0,12,25,45,53,51,58,68,57,238,480,535,705,790,812,904,727,582,495,530,487,552,544,327,103,135,114,78,71,54,42,28,63,2025,3797,4922,5642,8519,8066,8325,6270,6692,7116,4944,4119,4764,5089,2971,26799,21259,18255,18378,14725,10292,9285,6168,2748,4138,3435,3254,3916,4792,5067,7420,18962,18239,17302,14381,11485,10478,8415,6370,6498,5287,4057,4538,3412,3615,4163,2534,21350,20477,19273,17451,12088,13076,13348,9112,4990,5472,8703,11166,12341,13248,15648,11656,14703 +0,636,1259,1520,1876,1973,1702,2238,2764,3493,4505,8195,11193,11824,12921,11096,3888,3609,4074,6792,8366,10020,9214,7505,5755,5154,5124,4362,2279,1549,1192,929,470,371,281,291,246,310,320,613,747,1049,1022,865,1066,1027,1101,1649,1693,1243,714,480,261,233,166,88,0,89,153,251,416,593,586,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,106,143,192,249,357,386,524,476,279,244,138,179,244,406,3284,2313,1994,1511,788,578,611,557,356,355,371,316,268,230,188,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,75,114,115,211,333,402,467,535,664,835,1214,1106,1086,1084,0,13,22,31,49,70,77,66,68,224,428,533,720,787,847,808,1034,974,911,957,782,606,518,349,171,176,126,146,137,127,85,38,0,485,1013,1271,1836,2962,4165,6042,7320,7504,6554,6910,6080,5551,3608,1815,23803,19518,8817,6899,5561,4111,4110,2560,1546,2206,2810,3607,3802,5350,7401,8062,21926,20820,18684,21177,20883,16951,17795,10994,7402,8811,7307,5200,5296,3255,2653,1495,18091,18581,14842,11388,11862,9756,9893,6819,2374,1824,1766,2388,2395,4370,6771,10596,12435 +0,538,1129,1260,1150,1444,1462,1836,3317,3828,3254,5583,10011,9536,10218,8609,2836,3392,4500,5938,7245,7365,6182,5968,4101,4279,3811,3194,2092,1446,935,904,566,322,285,277,246,291,349,482,548,742,838,832,772,1106,1145,1804,1140,981,627,434,405,304,158,84,0,96,139,296,396,566,432,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,89,214,202,342,429,488,402,454,289,238,144,224,277,340,2932,2430,1848,1416,804,589,671,428,288,280,308,281,268,196,176,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,115,125,186,334,435,419,437,626,777,1314,1230,1155,1178,0,13,24,30,52,68,84,68,64,238,316,442,729,822,768,542,693,746,765,739,568,542,519,286,151,176,165,144,145,102,78,40,0,475,904,1337,2280,3058,3943,5674,6451,6170,6463,6621,6470,5115,2740,1674,17609,11560,9240,7142,4464,4090,3519,2790,2141,2948,2882,3837,4817,5743,9289,7124,18953,21226,18078,19633,23584,21412,16290,12268,7828,8489,6654,5041,4280,2907,2516,1199,12171,15148,10360,9477,7216,6562,7837,5462,2305,2394,1976,2766,3388,4594,6563,7776,9843 +0,332,623,793,948,1224,1412,1394,2867,3841,3535,5210,7656,6114,6179,5596,2556,2515,3542,4481,4016,4984,5450,5302,3856,4104,3138,2176,1542,1433,1050,638,530,321,261,259,259,376,498,606,568,446,528,581,538,910,1346,1906,1143,878,777,488,431,265,220,116,0,80,156,199,303,300,414,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,92,159,274,404,441,420,433,412,343,223,116,220,288,375,3393,2762,1870,1374,697,500,538,322,340,306,314,228,248,226,128,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,55,117,152,209,297,401,246,451,516,562,1100,1197,1222,1650,0,11,22,23,45,67,67,76,38,144,272,392,552,694,667,483,613,717,620,598,555,496,429,264,111,147,156,160,110,80,65,30,0,542,1066,1528,2174,2217,3288,4216,6202,6296,5488,4606,6206,4583,2662,1555,9725,8325,6708,6151,4593,4425,3538,3218,2905,3800,3920,4737,4945,6235,8906,7775,17346,16636,18393,16088,19340,16970,15765,9605,7337,5829,6550,5312,2947,2106,1772,1029,8982,8644,10318,7994,4661,5902,5454,4307,1954,2235,2993,3251,4585,4601,4302,6126,7177 +0,228,447,598,937,1024,967,1204,2398,2982,2166,3279,5023,4520,5548,3914,3062,3076,2302,3266,3571,3995,4757,3864,3030,3444,2941,1888,1396,1132,838,682,423,349,265,316,245,406,602,640,318,338,392,548,604,857,1201,1632,1077,1048,786,537,374,286,177,118,0,52,93,148,158,210,276,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,76,164,206,364,390,420,238,254,221,180,137,267,269,362,2628,2332,1464,1213,575,468,373,270,226,202,246,204,160,160,90,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,42,94,140,161,238,314,177,368,447,487,844,1010,911,1070,0,11,22,27,33,50,45,60,43,158,277,348,542,552,543,378,650,622,671,534,537,362,394,186,98,102,113,123,90,70,48,28,0,540,1119,1437,2304,2176,3057,4325,5352,5940,5915,4573,4204,3128,2551,1268,4928,4700,3847,4024,4681,3545,2864,2853,3360,3784,5753,6447,5530,7273,7744,8146,17985,12780,18198,16624,20399,21166,17222,11293,7085,5534,4918,4772,3758,2684,2294,1152,8214,7266,6625,4923,2810,3464,3587,4260,1333,2542,3983,4078,5697,4508,3725,4507,5828 +0,140,241,396,684,882,879,818,1534,2344,3106,3473,3206,3011,2445,2392,3385,4300,4398,3000,2942,2971,2069,1254,2614,2214,2347,1797,1142,787,765,463,359,365,474,446,350,327,368,409,93,157,295,441,563,1091,1545,1344,1489,1415,1063,646,414,339,244,126,0,22,40,60,80,103,122,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,135,184,222,327,325,346,152,154,192,140,122,216,315,337,1806,1167,785,686,470,505,388,215,196,224,178,134,98,63,51,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,76,85,113,142,173,199,87,163,226,487,646,619,603,881,0,9,18,26,26,27,26,32,33,112,242,294,354,377,424,363,681,632,473,508,383,278,162,128,119,96,67,68,76,45,31,15,0,654,1220,1437,2052,2518,3614,4088,4392,3648,2804,2378,2960,2004,1254,616,2552,2410,3424,3873,3354,4050,4026,3691,3478,6579,8144,8566,8736,8236,8124,5686,12782,10981,11530,12017,16478,12127,11670,11934,4901,3931,3686,3831,4287,3821,2604,1406,5857,5808,4624,3334,2262,2782,4439,4246,1095,2156,2521,3294,5563,5422,3877,3334,3200 +0,108,222,329,544,648,565,646,1190,1832,2875,2918,2539,1903,1625,1741,2986,2710,2772,2330,2892,2236,1775,1175,2043,1756,1398,1351,1010,716,518,314,308,288,372,346,218,256,302,359,78,157,194,338,506,724,1286,1176,1070,818,882,523,252,234,141,86,0,17,33,48,66,86,94,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,114,121,156,228,266,270,120,126,150,122,97,172,245,272,1474,1063,640,544,276,327,296,186,131,130,111,99,69,58,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,51,64,74,88,152,196,71,128,199,338,416,520,608,692,0,8,14,17,24,26,18,24,20,116,220,244,270,281,263,228,594,496,491,400,340,240,116,93,66,60,53,50,53,38,27,16,0,432,931,1178,1311,1982,2487,2476,3746,3409,1896,2094,2588,1644,1104,535,1924,2112,2295,2758,3774,3569,3425,3724,4473,7152,7848,8712,7358,7478,7551,8857,17492,11912,11215,10656,15579,11788,10414,10918,4591,3918,2909,3526,3739,3516,2531,1242,4090,4316,4732,3170,2244,2670,3363,5073,1619,2324,3054,3844,4088,4598,3620,3335,3528 +0,90,176,289,433,478,410,419,1010,1116,1736,1890,1512,1284,1047,1054,1695,1917,1952,1948,2037,1296,1184,898,1528,1398,1092,903,599,396,265,182,216,217,266,213,145,184,172,271,62,103,165,216,383,596,774,870,516,516,427,351,152,144,104,54,0,17,28,36,40,60,84,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,64,66,99,121,139,172,52,58,78,78,85,142,152,163,954,812,532,325,173,198,171,121,77,70,80,75,51,44,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,31,38,46,65,92,156,62,88,122,169,310,386,447,500,0,5,8,13,18,15,14,15,12,64,124,102,122,126,174,128,402,449,356,353,237,140,88,53,42,51,46,45,37,23,16,8,0,253,592,785,780,1155,1258,1659,2348,2336,1731,1115,1524,1444,912,475,1152,1236,1844,2060,3006,4153,4301,4398,6075,8112,7862,7258,6638,10056,10488,14310,16717,13677,11012,10266,9504,6852,7050,6867,3106,3635,3046,3185,4840,2968,1624,824,1767,2821,3762,3640,1797,2989,3772,5131,2517,2430,3364,4290,3940,4321,4029,3998,3074 +0,49,82,134,199,192,234,198,554,694,868,1040,761,631,431,526,990,879,925,856,1178,802,622,482,715,590,495,356,338,196,158,110,100,130,134,89,62,89,85,137,37,52,80,92,202,250,338,360,282,272,233,152,75,72,46,25,0,10,17,24,22,34,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,32,40,50,58,82,94,29,34,43,41,44,67,63,86,528,370,233,160,79,82,75,60,38,42,34,36,31,24,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,17,22,20,36,45,75,33,46,73,106,152,213,269,246,0,2,5,7,9,9,8,8,7,32,58,52,51,65,98,70,207,230,192,177,134,82,39,27,25,26,22,24,22,14,10,6,0,158,307,393,406,522,685,741,1369,1270,973,664,670,656,503,214,527,1090,1458,2140,2895,3156,3676,4390,5091,8069,8445,9248,7133,11283,15212,14274,14141,14907,15626,11694,11627,9784,9414,7021,3412,3434,2777,3741,3771,2528,1424,794,887,1768,2622,3170,2694,2759,2591,4089,4280,3842,3552,5382,6024,5639,4924,4029,2976 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,887,959,1484,1793,2298,2767,3564,2519,2494,2163,2408,3020,3528,4996,5352,6086,5768,6962,9577,8466,11249,10943,8698,7479,6391,7664,7684,5233,4808,5000,4962,5204,4299,3885,2488,2221,2641,4078,4676,4643,4412,4280,4958,4206,3281,3081,4086 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10883,11507,11764,8240,4892,4517,4528,2788,7762,7454,4224,2926,1968,1327,1104,592,0,12,26,42,66,67,85,123,110,118,112,90,77,58,30,15,374,518,786,928,1106,957,880,550,2396,1816,1282,1081,854,544,312,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,1042,696,674,227,220,130,69,0,0,0,0,0,0,0,0,98,186,205,256,370,518,464,708,1822,1606,1427,1654,834,714,329,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,797,1046,1479,1872,1769,2842,3142,2158,1854,2353,2388,2690,3103,4474,5675,5514,5408,8855,9370,10592,11037,10686,9167,7022,5568,4879,5630,4358,3443,4508,4570,4858,3781,3182,2964,2636,2437,3718,5426,3997,4053,3986,5160,4918,3540,4346,5944 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24308,23593,19744,17760,10836,9321,8486,6812,18816,16600,9474,7156,3343,2536,2183,1146,0,26,56,83,114,140,172,288,214,216,243,177,138,99,54,30,796,886,1341,1883,2284,1835,1914,1163,5935,4219,2596,2350,1937,1469,614,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2448,1863,1670,1299,548,446,246,130,0,0,0,0,0,0,0,0,217,312,458,476,705,750,1134,1367,3299,2654,3222,3450,1800,1227,809,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,620,964,1074,1489,1653,1724,3426,2491,1852,2004,1775,2176,2890,2998,6916,8260,7028,10590,11118,11905,13840,10491,10354,6906,6792,5807,4691,3522,3224,3738,4361,3010,2933,2244,2969,3172,3211,3660,4860,4030,4096,3201,4003,5186,5416,6808,6009 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33179,32663,34328,24516,15480,16438,16656,8963,22938,18754,9813,7906,5228,4194,3035,1678,0,36,75,145,164,239,309,366,456,362,330,314,254,190,112,49,1446,1741,1504,2072,2350,2650,2671,1993,8746,6945,4452,3424,2382,1490,1056,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3210,2752,2286,1543,749,536,389,188,0,0,0,0,0,0,0,0,371,476,654,811,1018,1472,1679,2377,7520,6020,5264,4587,2840,2286,1874,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,507,687,650,1034,1492,1649,2877,2054,1332,1560,1614,2062,2631,2876,8248,9616,8946,10850,12815,13160,16131,14576,13556,9081,5194,5258,3321,3552,3774,4184,3608,2468,1908,2212,2114,2522,2424,2836,4475,4404,3626,3138,3908,5030,5471,5872,5860 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43440,32260,36696,34782,27094,17045,14774,10410,28388,21379,24061,15460,8642,6301,5587,2935,0,56,120,219,272,372,369,406,687,800,670,539,332,276,198,95,2141,2546,2154,3086,3386,3406,2773,2320,9670,7862,5374,3794,2942,2722,2035,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3707,3225,2464,2018,960,666,406,244,0,0,0,0,0,0,0,0,476,616,1048,1088,1155,1722,3004,3816,10322,10772,7853,7385,5200,4484,2335,1474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,217,404,523,669,924,1607,2345,1751,1408,1180,1402,1250,1378,2038,8100,6965,7167,9041,11524,13442,13672,17160,14181,14662,10938,8281,3420,3079,2032,2458,2595,2478,2241,2027,1770,2058,2524,2264,5172,3780,3991,4270,4172,3612,4634,4561,5837 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52558,54068,53587,53064,39568,29778,28248,21702,30294,29097,28000,17120,10290,7108,4514,1946,0,60,110,206,345,408,556,566,708,707,675,490,404,295,250,117,2246,2234,2981,4147,3976,4380,3336,4059,11394,10042,6104,5232,3326,3136,2029,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4343,4302,3634,2514,928,892,567,252,0,0,0,0,0,0,0,0,899,1814,3367,3899,4462,4390,6612,6710,11719,10504,7195,7206,4297,3708,2194,1924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,340,446,746,839,1326,1442,3072,2522,1362,1591,1585,1658,1429,1519,7088,7653,9990,11854,10742,14014,14740,17997,12725,12595,7909,6002,3785,2732,2324,1946,3431,3162,3008,2901,1656,3045,3682,3994,8488,6826,5599,4196,4814,5743,6318,7840,10467 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65417,70158,68066,54485,41042,46242,38942,28511,40295,36898,23640,19122,9074,6467,4199,1750,0,64,126,189,506,539,572,583,597,612,459,410,424,320,276,120,1955,2430,3408,4511,3578,3852,4662,5503,14336,12349,7146,6302,3694,2900,1623,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5221,4941,4272,2659,1281,997,592,333,0,0,0,0,0,0,0,0,1112,2594,5114,5540,7030,8485,8042,7316,10485,7510,8180,5762,4613,4122,2962,2658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,433,624,747,1025,1626,1952,2950,2521,1912,1544,1600,1434,1284,1402,8206,9316,11339,15271,12441,13560,15574,15792,11481,7148,6104,4345,3558,3113,2054,1976,4383,4069,3599,3398,2271,4496,5773,7882,10458,8090,6198,5842,5223,5306,7536,9675,13071 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52776,62464,62093,51128,47335,42998,35440,35263,31332,33790,21941,18662,9413,6810,4712,2350,0,70,171,248,460,487,473,701,881,864,620,518,406,354,321,156,2127,2662,3722,4732,5544,5398,6298,7702,13695,11666,5581,5758,3690,2254,1275,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8866,8155,6842,3742,1550,1267,637,355,0,0,0,0,0,0,0,0,1485,3924,7062,7024,6867,9496,12818,13406,11246,7727,6761,6366,4511,3643,3063,2504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,393,716,712,1128,2104,2116,2924,1806,1315,1764,1586,1182,1055,834,12732,11186,11724,13642,13265,12760,13690,12417,9532,7712,6900,4526,3266,3184,1996,1308,5215,4572,3468,4118,2707,5448,5932,9386,9962,8370,9980,6704,6761,6085,7539,10160,11807 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55104,62194,62170,56876,57627,53254,54708,42310,33042,26160,19813,19188,23602,16558,15579,7696,0,132,319,690,897,698,826,814,1150,1051,1021,792,505,384,309,181,2394,4308,5231,5889,5801,9233,12531,10497,12316,8797,8386,7535,6052,4116,2082,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12949,9174,9137,9474,9033,6506,3622,1955,0,0,0,0,0,0,0,0,1377,4428,6678,11591,13754,11224,8760,9632,14160,13635,13862,11870,12693,7632,5046,4074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,432,950,1172,1477,1775,1644,1984,1797,1704,1590,1510,1023,823,396,15913,16620,13971,12664,14243,14243,11624,11152,11516,10151,8136,8502,6278,5069,2591,1441,5928,8434,10976,12544,11458,10375,11373,12898,10187,9531,9065,8568,9869,8548,8070,10326,13040 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84297,75106,60232,50648,63758,66673,43638,43766,24794,22163,16592,18869,19171,18328,13519,7032,0,172,381,788,1057,774,762,1166,1187,1258,1051,949,996,728,752,765,11225,12098,11849,13866,15608,18375,17538,13734,11568,11242,7900,7469,5512,4139,2265,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15628,13337,10326,12240,9719,6199,3215,1843,0,282,548,962,1274,1102,1153,1514,6032,8521,12891,14124,19200,13027,12456,13315,27530,24024,20340,20731,19446,11640,6522,4406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,483,868,1042,1312,1181,1316,2258,1838,1389,1239,1631,1309,1006,688,14092,17245,17836,17820,11626,15179,12711,12955,11472,9733,8407,6620,5074,3654,3104,1560,4379,5346,7883,8266,10962,10851,9157,12040,10462,8446,9232,8287,11182,10318,7924,9588,9605 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99824,72706,53926,40920,64430,62159,44572,30462,17578,17908,18032,15004,21150,15660,12010,5758,0,192,463,744,1321,978,920,1200,1672,1583,1306,1238,1496,1257,1306,1036,17853,16568,20987,20572,24340,19452,19705,16161,16368,15227,11300,7722,5485,4144,3480,1754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15366,13896,14388,12888,8235,5382,4209,2201,0,454,919,1741,2761,2394,1982,2620,10833,14619,19660,19133,22066,17229,12565,17964,32985,34709,28468,28147,21530,17960,10800,5366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,440,789,1134,904,867,1221,2170,1942,1204,1027,1621,1220,1338,1059,14667,15442,18212,18002,12498,15091,15864,15146,11090,10190,8271,4706,6001,5135,3308,1958,4214,5472,5472,6211,10067,10678,8319,13682,11847,9132,8592,6232,13291,12075,11220,10031,10531 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93825,84452,73387,64769,65203,58114,32628,29480,12168,14638,15353,14758,14728,10600,8393,4391,0,364,700,1040,1651,1211,946,1300,2109,1584,1243,1314,1436,1806,1659,1477,27457,23200,21563,27932,34003,29224,21205,18373,17966,16776,14910,9630,6385,4376,4001,1757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19207,17132,22062,16082,12706,7261,4782,2007,0,896,2123,2363,4322,3888,3364,4966,15526,17490,27287,25500,25262,23889,22056,21404,38481,43428,33453,34034,30632,21471,14080,7862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,343,585,880,1058,972,1548,2163,2138,1235,1118,1491,1270,1361,1343,13941,13786,18995,18784,17868,16771,17680,17114,9040,8810,7755,4596,4650,3234,2110,1370,5362,4699,4706,4908,8543,10826,11626,13778,12033,12138,9509,9707,14068,11452,13185,12288,13520 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128109,122646,92774,73669,76259,66737,57629,33382,11586,12157,11605,7926,6650,5846,4153,1743,0,294,666,1272,1508,1407,1319,1347,1979,2100,1877,1866,1743,2048,2282,2310,31209,40809,48904,49447,40698,27190,16407,10419,17311,11916,12109,11085,8813,6907,4160,2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22083,25658,22092,16804,14245,9686,9509,4179,0,1300,2401,3654,5335,5963,4894,6883,21828,31524,32669,31202,33114,36920,32006,22033,49803,52616,49447,46529,34200,29431,18291,10918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,297,414,662,982,1395,1192,2328,2550,2029,1354,1167,1322,1212,1326,15584,14480,15360,13617,17408,22464,23215,17439,5324,4592,4470,3354,2604,2105,1389,938,6266,6274,5824,5422,4260,5869,6992,9050,9931,9394,11815,13952,11826,13688,14798,15434,14883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100736,118528,81538,76434,63512,61726,43166,29766,11229,9118,10004,7432,6162,4179,3970,1699,0,453,860,1562,1493,1522,1339,1360,1948,2140,2586,2602,2124,2262,2542,2592,37336,38720,43738,44361,43466,34858,24992,19826,22249,16134,12742,12530,7234,6580,3788,2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17918,17442,20682,17456,13697,11040,6593,4098,0,1944,3819,5102,5702,7016,9096,13574,32651,36058,29239,24876,32032,29080,25841,25171,63292,56820,54895,50850,40287,24639,18019,10606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,304,406,700,1066,1184,1182,1807,2044,1692,2177,1519,1496,1406,1426,14149,12630,14687,17096,13684,16369,15141,13701,4647,4464,4021,3134,2403,2250,1411,962,4608,4866,4626,4972,6995,6294,7116,9542,6831,9844,10550,10956,10097,9804,14663,13176,11862 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83181,78517,73147,72913,75686,56355,41416,19718,7516,7216,7350,6484,4465,3853,2764,1646,0,656,1150,1490,1084,1266,1490,1676,2227,2079,2662,2336,1862,2358,3588,3250,42467,41366,49572,56782,41262,36119,25910,24223,20861,18647,18847,14798,6988,5937,4421,2634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13212,12066,13812,9241,10884,7450,5942,3391,0,2204,4577,6729,7759,12034,13166,19388,39050,31217,33982,23718,33405,29818,31821,30386,58956,56789,52411,45233,34482,29097,14136,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,222,457,561,788,1239,1486,1254,1730,1970,2680,1962,1655,1367,1359,14304,10910,10642,11775,14132,10866,11894,15555,5023,4175,5188,3940,1425,1590,1658,1077,2315,3314,4950,5270,8652,7188,5582,7146,6991,8678,10086,8849,6065,7234,10769,14436,14471 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99531,84944,67346,59402,56276,49642,32485,19125,4056,3171,3964,2964,2242,2148,1304,724,0,594,1306,1700,1491,1588,1869,1949,2558,2084,2242,2216,1504,2961,3547,4278,41314,45088,42776,47768,45640,35158,40426,27000,22686,18349,16052,14302,9141,5826,4235,2164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16597,17796,15559,15093,11066,7608,5658,2816,0,2028,5228,7947,9940,13320,20288,27666,38239,38812,35135,29824,26670,34752,34231,38399,60126,43022,43756,41398,31071,24940,15505,9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,320,410,547,722,968,1028,1000,1466,1967,2944,3705,3152,2360,2291,9881,9112,7113,9367,13055,9475,9351,12023,5360,4664,6072,3906,1728,1916,1555,1605,1692,3560,5290,7598,7006,7360,6035,7416,9602,10208,10897,8293,5668,6992,7901,10350,10630 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100087,86369,51504,42580,36239,23242,18204,7874,0,0,0,0,0,0,0,0,0,892,1534,2141,3488,3965,3824,3877,4863,3866,4634,5626,8410,9816,9480,7150,56114,64833,64337,76937,73711,59946,66339,44365,31092,28081,29635,24806,12431,8404,4608,1879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16177,20640,22357,32540,51019,47956,63787,55622,50617,51418,53680,45400,49654,49003,46648,46798,35098,23956,15972,17916,16871,16420,13355,20931,24212,18766,21229,21108,17925,15685,10182,6074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,804,1251,2234,2406,3082,4240,7765,6683,5502,3820,2354,1894,1260,508,0,47,89,110,155,546,961,1179,1430,2054,2567,3032,3308,5596,6806,6892,6911,7730,8232,9668,11828,10934,8752,6856,6973 +0,1,2,2,2,3,4,5,2,4,4,5,4,5,5,5,2,195,470,774,1206,2468,3976,4222,9633,7874,6135,6608,4984,7302,6228,5558,91714,77124,68496,55960,50660,33508,29997,21924,13270,12722,11118,6752,3067,2822,1877,1258,0,946,1347,2909,2672,3278,3784,3571,5564,4759,3789,5802,7330,6923,6257,6092,56732,55489,75263,68166,60318,62546,46083,38364,33994,29819,30799,24252,20707,15030,6874,4415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17043,17718,26934,28376,42034,41986,54992,41632,69117,52332,57669,56315,47593,48659,45871,41754,31844,26522,21002,18900,25796,20376,15939,19600,18960,21894,22510,16782,12313,12216,8737,6586,912,1254,1712,2076,2144,2371,1998,1272,1025,1006,986,732,693,522,261,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,859,1336,1865,2315,2948,4000,6232,5398,5579,3760,2998,2456,1128,676,4,60,111,154,162,553,956,1412,1222,2364,2407,3334,2509,4446,5922,6964,5279,5895,5248,7030,12019,10143,8993,6692,5465 +0,2,3,4,3,5,6,8,4,6,6,7,6,7,7,7,3,470,854,1317,2939,5083,7623,9853,17751,15142,15328,11470,12279,10795,14439,10950,69663,69958,75432,88786,58057,52948,42483,46757,32510,26152,25006,14323,6678,6472,4422,1847,0,725,1738,2023,2267,2645,3015,3363,4422,3480,3624,6044,5440,5895,5558,5306,69790,80751,65092,70797,48490,43848,42914,40433,44089,38744,31432,21338,24940,15898,10606,6162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14725,22846,27039,29017,42561,33984,38474,37502,77950,72579,72452,67922,41013,47740,40061,42920,37088,36170,23482,23011,28204,27417,18503,17387,16751,19340,18134,13529,10684,10002,7090,5816,1690,2262,3056,3341,4937,5189,4090,2631,1982,1783,1796,1587,1568,1058,638,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,848,1041,1518,2934,3378,4332,5399,3792,3860,3017,2751,2044,1419,853,6,52,120,188,121,394,795,1136,1527,2533,3205,2798,2359,3822,4878,4530,3782,4670,4528,5508,9454,8270,6840,4626,4036 +0,2,4,5,5,8,10,12,6,8,12,12,10,10,10,12,5,623,1904,2638,4439,7392,12488,13165,21393,15094,13477,16152,12712,13834,16209,15934,111888,94386,86319,64766,66688,69156,73634,63116,34818,35764,32606,22190,11298,8603,7099,3818,0,706,1688,1777,1730,2288,2428,2776,3635,4002,3296,4434,4433,4094,4657,3734,72299,67394,45226,54400,49631,42932,45916,41193,48573,41012,33624,26521,24332,13062,10309,5210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22001,23728,30045,25117,36084,31103,26768,22892,85417,73506,63682,64747,52894,47587,38590,31120,23322,23603,18068,19860,20990,25568,17376,20014,12724,16782,18106,14770,10347,9326,7748,7932,2978,3293,3905,5329,7299,6844,4796,3422,3860,3178,2470,1864,1995,1302,784,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,667,1366,2039,2854,4315,4966,4460,3733,3600,2400,2290,1779,857,542,9,44,106,158,153,510,720,925,1251,2061,2522,3046,2038,2660,3478,3546,2792,3366,3303,4068,6146,4612,4169,3618,2303 +0,2,3,5,5,10,11,12,6,8,8,10,13,19,20,18,4,1201,2474,3952,5690,7565,11363,11702,25422,26197,20447,22699,18655,14366,15215,17398,121823,121510,89214,74213,74138,69025,66604,54726,50360,52264,37656,25489,20766,12276,7848,3459,0,302,659,1349,2050,2099,2248,2760,3590,3772,3890,3201,3358,2317,1730,1648,69157,56722,67143,45521,45188,59740,62407,70334,57693,65862,52770,42434,24016,20666,13399,5716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27806,25056,33555,32883,29296,26594,24548,19574,67712,58860,57174,48577,51988,45765,31340,29719,19762,20999,21391,25523,24216,22344,22045,21195,10605,7502,7596,7424,9554,10614,8425,8269,4471,7165,7860,8626,8530,6529,3723,2857,5213,4472,4590,3859,2401,1489,888,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,1456,1714,2200,2268,1981,3456,3400,3666,3119,2215,1890,1246,675,318,12,41,79,125,150,294,555,745,785,1384,1852,1865,2155,1632,1301,1944,1748,1594,1502,2557,2851,2305,1867,1569,1226 +0,2,5,7,7,11,13,14,8,12,14,16,14,18,18,22,6,1416,3032,5316,8432,9742,15264,16682,18129,20309,21982,19530,20737,19411,18844,21018,144953,133725,121284,88310,77770,66999,68818,50762,58314,49528,31987,24766,22540,14572,11238,4950,0,280,487,1172,1760,1860,1718,2096,3117,2826,3015,2889,2414,1964,1604,1501,74608,59784,53809,41911,40936,47468,59048,66800,63617,49034,39998,38125,22181,15153,11870,4962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22301,26870,30446,31006,35978,28686,27642,20304,41742,48652,55823,50156,38437,35086,32306,23050,17504,19958,23188,16818,21772,23890,21759,18063,7723,7518,8153,6315,9268,9546,7691,7710,8123,9522,11830,9946,10576,8783,5417,5806,6665,4900,6148,4474,3275,2934,1323,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,924,1264,1296,1856,2144,2841,3100,2853,2666,1920,1729,1010,508,232,19,46,63,84,106,280,557,754,564,1063,1763,1492,1879,1667,1750,2214,1723,1900,1567,2258,2612,2290,2485,2348,1605 +0,2,4,6,8,14,18,20,10,14,16,18,13,19,20,26,6,2463,4472,6363,8386,14824,17453,26758,19340,16695,18567,23260,19452,20220,20888,21430,137185,148297,117962,109078,63487,51490,61496,54922,53565,43145,36882,22087,23251,14747,11682,5939,0,200,390,638,1011,1515,1518,1538,2441,2343,2152,1792,1506,1150,1295,1319,79067,65149,41964,34836,41731,56736,53452,76967,52879,44154,40486,26742,26682,16716,8738,4853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23156,27478,26148,33326,39045,33134,25676,24966,30364,34355,46244,38025,28814,24092,25210,21658,22424,23851,18434,20543,20109,15355,17624,15185,6237,6079,6171,4595,7410,5702,6484,7801,13117,10350,11900,8254,11640,11326,8005,8674,8359,6299,6110,4748,4657,3117,2214,1312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,808,1056,921,1312,1700,2098,2220,1756,1560,1416,1112,671,341,218,20,36,54,72,107,294,438,763,395,753,1316,1166,2112,2226,2325,2559,2125,2251,2086,2220,3005,2299,2524,2439,2747 +0,2,5,7,8,16,19,20,17,17,20,20,16,18,22,28,5,2812,6458,8542,10318,11883,18288,22842,22025,19754,23777,19211,13809,17786,23204,25592,151536,115979,120571,91982,72095,79625,87507,84376,53846,46893,50231,30148,19790,14552,9906,4735,0,98,204,346,409,586,841,732,1170,1298,1524,1279,1165,1006,1474,1282,73399,61936,51290,36370,37914,42624,56967,73608,52812,48388,43991,29338,23511,16339,8470,4287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25464,30160,24239,25227,38112,26781,22228,26588,28031,31041,42978,32813,26679,28160,22864,19473,31927,28546,25292,21358,18609,13183,14858,8979,4000,3331,3697,3445,4736,5240,5260,8228,14207,14048,16182,14302,12226,13515,11498,11027,7227,5708,5765,5328,5878,4364,3699,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,446,664,868,972,1456,1723,1014,864,809,648,602,342,183,112,30,47,57,68,117,198,292,445,232,488,773,964,1411,1952,2250,2377,2491,2342,1966,2316,2219,1970,2612,3322,3908 +0,4,6,12,14,17,19,18,21,23,21,18,16,23,22,24,3,5796,11214,13734,17926,22974,32675,30565,31878,30644,30556,39437,36315,33468,36745,30829,144220,152177,174202,163330,186448,138473,145905,96426,76836,59091,65975,49524,32760,27363,13358,7245,0,0,0,0,0,0,0,0,0,145,333,581,776,892,724,1089,93560,79086,60715,69237,55356,43779,38166,52410,56457,36867,29874,31883,24134,20444,15210,8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22420,18667,13093,11213,9485,12330,11980,15797,25988,27022,19953,12498,4690,11688,15569,19897,36845,30705,25523,24862,26780,20064,15175,7443,2437,2976,2829,4299,5999,6858,8902,10327,15352,19366,19624,16924,18880,14726,17576,15567,9452,8514,6134,6104,7621,4848,2934,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,653,846,1044,1357,1354,1434,0,8,16,19,26,34,40,42,35,50,59,80,81,62,60,82,0,389,748,1158,1193,1268,1552,2200,2527,3840,4098,3399,4280,4534,4225,4752,4230 +0,6,10,13,17,21,20,22,24,22,20,20,16,23,23,28,5,6473,11402,16722,23879,33432,38405,44058,50627,43462,37613,34310,43662,34902,37182,31101,162398,151772,131312,149052,154457,157864,134511,89450,69957,61882,50113,44633,24738,21028,17754,8496,0,126,352,446,839,710,732,1008,1281,1554,1920,2011,1691,2379,2335,2220,86680,73720,59909,57086,57269,55850,45503,50346,53311,38508,30345,31287,24924,18350,13832,6512,0,0,0,0,0,0,0,0,0,304,518,809,802,740,580,630,22170,20426,15052,12865,9450,8234,12455,11934,16761,15977,15124,12598,9089,11650,19701,20030,39625,30945,29621,30824,23497,19132,14540,6793,2328,2850,3538,4433,5308,6708,8808,8895,12343,15450,18766,18709,15484,13235,13230,11705,7048,7978,7815,8072,9034,5610,2848,1273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,462,702,711,844,1193,876,0,9,14,20,20,26,33,35,34,38,53,62,70,70,74,70,0,249,618,893,886,1070,1465,1680,1562,2660,2828,2856,4171,4346,3668,4101,4917 +0,7,11,17,18,23,24,20,22,21,20,20,19,26,31,31,6,8234,14880,23708,23122,40146,45933,48582,59234,53780,42766,36061,37075,36396,39280,31843,133054,118335,111854,92765,177920,149405,97413,79950,88373,62509,46398,35541,26859,20092,18061,9158,0,324,616,946,1589,1766,1494,1905,2352,2956,2942,4046,2516,3276,4788,4711,105516,99936,68034,42566,41213,53913,51716,55579,59516,48326,39259,36017,26096,18423,13406,7092,0,0,0,0,0,0,0,0,0,636,1095,1937,1524,1284,1201,1423,28737,27372,21513,14426,9336,10685,9182,11153,10290,12045,10762,9824,11437,13762,18604,19690,39808,33583,29504,26851,16789,17144,13968,8753,2097,3099,3770,3619,6155,5271,6314,4361,7856,11003,14522,13076,18024,14086,11500,9670,5325,5165,7384,8238,7624,5580,2782,1285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,372,523,648,727,719,620,0,6,10,22,15,23,27,28,22,34,48,43,53,64,66,56,0,176,416,510,704,802,900,1284,1232,1740,2305,2355,2932,3421,3021,3668,4402 +0,6,12,18,21,22,22,24,17,20,20,18,18,30,36,32,10,9925,18161,24110,28643,35673,42030,55803,66136,68969,48786,50640,29020,36138,41802,37187,137734,135034,99290,104762,145882,125247,92585,85442,59970,59241,35382,32686,25296,21614,19338,9920,0,408,1096,1352,1875,2155,1468,1896,3134,4192,3229,4415,4161,5344,8453,7381,74744,82511,53359,45368,28457,41504,50347,53712,54166,36842,40540,32298,18398,15772,13518,7006,0,0,0,0,0,0,0,0,0,929,1710,2534,2900,2627,2798,2828,24236,22404,20822,13874,7685,8084,6681,8040,7871,10794,9488,12242,13258,12609,15238,17373,47586,42630,32353,28852,19231,17248,15429,9019,1726,2892,3426,3908,4753,5152,5884,4682,7347,8974,8772,11584,14884,11008,8356,6958,6091,6117,7910,6852,5410,3498,1929,1043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,248,360,393,515,425,412,0,6,12,19,17,20,27,30,21,30,43,46,54,61,66,63,0,170,411,546,747,698,613,869,1031,1222,2077,2382,2919,2530,2734,3346,2792 +0,5,8,13,20,20,24,23,10,14,16,17,22,30,32,28,9,8460,18068,24405,28400,47607,56532,49824,81150,57676,56475,39862,26168,31014,32175,31623,171581,168735,147332,123919,68660,79830,86336,61224,53107,49952,35027,33942,25957,19998,11613,5203,0,725,1211,1805,2702,4146,4302,3542,5451,5142,5092,6027,6635,5254,5908,7668,72928,82252,71295,49647,29534,24444,29560,30284,56103,40096,41583,35756,18607,14738,6478,2977,0,0,0,0,0,0,0,0,0,695,1558,2616,4312,4406,5129,4850,23323,19032,15322,11477,7346,7238,8337,6226,5119,5320,7780,12063,14268,15915,16890,18902,49006,36760,35994,31826,25803,24241,15539,9377,1858,1831,2011,3447,4657,3473,2695,3124,5362,5998,6364,9102,12171,11040,8765,6872,5963,4929,5779,4603,3993,2888,2610,1290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,178,270,205,172,226,0,5,7,12,16,13,12,18,16,23,35,38,42,44,34,40,0,157,312,438,668,531,564,618,859,1158,1296,1936,2620,2361,1607,1664,2203 +0,6,9,16,23,26,22,26,17,21,24,33,34,34,30,29,12,9803,17954,20492,32029,43874,60430,61501,93178,86744,52604,49182,26590,25260,38199,38236,159434,134634,125404,88402,61042,63241,61608,56772,57586,43896,38542,30921,25153,17172,12771,5314,0,882,1940,2882,6554,7067,7966,6662,6193,7928,6266,7884,10689,8749,10262,11531,57706,64186,54840,46799,24703,24106,37728,36818,37349,35811,36191,22212,13442,12063,6650,2929,0,0,0,0,0,0,0,0,0,1474,2076,4493,6636,8789,8511,9968,20982,18068,12375,9149,6493,6090,7462,6439,4406,5388,7214,10798,15658,14382,16424,23018,50815,43866,37068,34266,33185,26122,17124,8702,1558,1648,1695,2670,3466,2762,2342,2708,5913,7327,6722,9040,11995,8892,7009,5307,3951,3304,4819,3994,3608,2446,1755,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,125,172,191,158,118,178,0,6,8,11,12,12,9,14,14,20,23,34,34,32,28,32,0,107,224,372,474,380,469,390,592,774,980,1428,2575,1734,1299,1642,2026 +0,6,10,18,22,27,26,24,17,24,28,29,37,34,29,34,12,9857,16796,18648,34438,39130,59502,59624,94426,77308,74268,73309,33358,33530,34238,38179,117279,95450,98304,100867,40524,43337,51374,69860,53538,46780,40119,35868,26876,16650,10020,5566,0,1179,2908,4094,9264,11482,10019,9852,9941,8088,8623,7998,15757,15407,12196,17255,63827,58309,53831,35647,22468,34494,38046,41296,30408,27001,27884,21618,9188,8268,5776,3388,0,0,0,0,0,0,0,0,0,1616,3523,5532,9404,10127,13484,14779,24643,16404,13036,7575,5041,6660,6069,3951,2345,5143,8726,9281,12131,13984,18509,30066,37685,36891,36822,36461,35619,30236,21804,11018,805,896,1160,1805,1842,1770,2504,2857,5989,6856,9790,7324,8051,7760,5986,5063,3315,2961,2303,2796,2228,1722,998,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,60,124,157,103,94,98,0,5,7,11,7,7,6,8,7,12,14,18,21,26,22,25,0,71,162,236,298,342,367,291,360,690,879,989,1798,1409,1244,1174,1411 +0,6,10,16,16,24,22,21,19,24,34,34,31,36,35,36,16,7586,15910,18978,35372,35605,49939,58985,70660,69074,84733,63937,60928,45066,46152,51680,67209,78137,76196,83466,45422,54258,60268,69870,51441,39562,34164,29374,24682,16295,9969,4904,0,1676,3347,6228,9459,11880,14088,16472,18451,15780,13810,13607,17952,13983,14875,15450,52005,41023,43452,42368,35407,39826,32080,27132,29368,22417,17208,13404,6807,6043,4008,2312,0,0,0,0,0,0,0,0,0,2712,5280,7732,11402,10220,11624,17495,23004,16381,12254,6194,4385,4160,4584,2796,1005,6164,11507,11772,15422,18772,26234,31562,39992,41733,40326,35834,36072,26979,19992,10718,450,526,695,1174,982,1386,1846,2545,8642,8164,8496,7421,8566,6120,4519,3477,1962,1480,968,1452,1103,859,547,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,32,56,68,60,56,53,0,2,5,7,5,5,4,5,5,7,8,10,12,13,11,12,0,40,85,108,123,172,201,150,198,304,500,512,917,714,500,718,791 +0,0,0,0,0,0,0,0,0,3008,6079,11734,14065,16028,17029,30491,34833,36528,53568,54657,52020,51484,36003,28117,30444,45598,52202,51271,66690,52236,53547,49166,48234,37766,40332,43831,38817,42967,32912,38830,33012,24885,14890,13298,16427,9960,5430,2648,0,0,0,0,0,0,0,0,0,3055,5872,10156,12409,15430,15975,15961,26835,23290,30726,30870,21854,13743,11678,5797,0,0,0,0,0,0,0,0,0,796,1634,1731,2568,4390,7596,9190,15364,17195,16045,13148,16560,18947,21302,19296,20534,12946,11263,9814,10631,8924,9625,9872,7392,8582,7853,5568,4651,3270,2606,1500,0,122,294,333,468,598,969,1957,2322,2774,2712,3552,3927,4480,3839,2787,11968,11398,11589,8512,7016,9650,14178,15486,15912,15956,12634,7556,3669,2974,3056,2168,1619,2032,2478,2690,2367,2400,2114,1701,1914,1572,782,547,305,222,201,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +0,472,1154,1804,3252,4206,5201,7196,13348,22858,23268,30164,38753,43752,61507,60198,23486,37468,37373,48132,60795,51796,40830,43578,45776,56536,57300,69872,88086,97756,108289,91950,39517,41181,42296,47442,25482,31750,34541,30964,28089,24344,12815,13196,11204,9108,6669,3336,0,1,2,5,2,4,4,5,5,2760,6461,8264,10254,10333,14938,17062,41027,34896,35716,36076,25603,23227,18103,11609,6427,5058,4624,5195,3459,6049,8447,12346,8655,10310,12206,14798,13025,13402,20649,28605,26078,22947,21298,18556,16022,16024,14614,17343,16352,12539,7024,8892,10932,8386,8491,8060,5525,6371,7651,4602,4764,3350,2686,1422,0,168,280,404,581,710,793,1230,2900,3112,3188,2911,4100,4406,3334,3464,11278,12298,14935,14520,12043,19946,17524,19546,26122,18085,15013,10429,6862,6267,5047,4766,2860,2675,1925,2144,3050,3297,2891,2076,2466,1980,1832,1190,745,738,884,978,0,44,89,160,118,183,259,200,265,256,271,218,120,68,55,54,87,81,90,83,70,73,68,54,30,39,53,54,44,35,23,13,0,13,19,32,30,34,45,38,22,26,29,24,19,16,10,6,126,126,91,96,43,47,74,74,17,34,46,40,32,30,16,12,0,0,0,0,0,0,1,0,0,1,2,2,2,2,2,1,2,5,5,6,5,6,5,6,10,8,5,5,2,2,2,1,0 +0,974,2180,3884,7477,9704,9853,10578,25699,36428,50718,60452,75303,94978,86002,95982,23553,25727,36634,41474,61169,45957,51902,70250,64131,78783,74558,69805,129555,129066,155402,126355,47798,51616,46288,37728,21628,25561,29060,26355,23001,18197,16541,11020,11190,9011,5938,3537,0,2,4,7,5,7,6,7,7,2733,5120,9261,7071,8968,12735,9942,56157,41573,45975,45036,35824,25341,18834,16305,11768,10569,7870,12364,8093,9688,16022,22172,14648,21009,21740,26156,27474,25306,30196,39714,28120,28450,25894,19013,20703,19444,13042,12059,9260,7468,6076,7700,11995,9218,8148,7742,6181,6752,6760,4955,4959,3035,2269,1355,0,204,376,512,503,698,920,1199,3272,3380,3344,2229,3734,4049,4258,3602,10395,15048,15240,17121,21272,20063,28266,29834,29542,24342,16904,12340,8988,9894,8056,8165,3598,3471,2280,2503,5079,4278,3764,2836,2729,2512,2335,1509,1513,1654,1642,2060,0,93,192,285,224,360,432,388,632,484,538,467,217,194,118,103,212,211,150,140,164,166,116,104,57,88,108,92,104,68,42,19,0,21,42,65,60,83,82,78,43,52,52,49,33,27,15,10,221,177,208,146,87,105,140,149,32,53,77,83,74,48,36,22,0,0,0,0,1,2,2,2,1,2,3,4,3,4,3,2,5,7,8,10,7,8,8,8,15,12,8,7,3,4,3,2,0 +0,1682,3016,5845,8792,12282,11698,16773,27186,54222,91182,76362,98684,91528,100592,105936,21464,24268,35199,34488,49808,45692,69859,67542,83168,96300,102819,105479,109105,133293,149679,137065,36690,35052,33470,34926,26057,24496,35034,27738,27009,17103,12427,9216,10022,7432,5732,2862,0,2,5,9,8,10,10,13,10,2170,3519,6989,8348,10563,12133,13962,63361,48449,59425,44521,28812,23598,17057,18302,13096,11766,9491,15180,17255,23364,25372,31836,20935,21960,22944,31252,29690,31230,43001,50758,34182,35650,37342,26224,22116,17466,19258,15438,7142,6036,7218,6237,9499,8386,5790,5454,5112,5794,4745,3935,3834,2309,1733,925,0,172,322,608,752,822,1189,1342,4689,3754,4154,2682,2984,3052,3470,3242,13482,19438,16822,21253,26430,26048,39796,41040,34953,24238,24264,20838,12254,11022,12083,10577,5221,4126,2948,3845,5474,4663,3449,2820,3082,3094,2456,2478,1730,2700,2880,2620,0,148,233,440,327,509,724,740,793,603,649,472,397,298,204,166,251,220,144,229,221,172,173,174,117,152,139,145,144,101,73,34,0,34,50,70,90,108,120,114,70,78,69,52,41,38,16,10,342,324,330,222,131,134,166,175,67,78,92,95,103,62,37,25,0,0,0,1,2,2,2,2,2,3,4,5,4,5,4,3,8,11,11,12,12,14,14,16,21,19,13,10,5,5,4,2,0 +0,3571,7153,10146,11737,17112,21047,24158,39275,39416,49171,82791,113460,112605,85582,111768,15597,23058,41182,42419,47856,57706,70810,63528,81273,91204,106648,135971,124134,129874,119270,112077,21605,20105,27042,23484,30314,23266,25885,23817,26072,15973,10940,9958,8160,5546,3420,1438,0,2,5,10,10,14,20,17,10,1770,3133,6172,7726,6614,7653,12215,59915,46076,41908,37998,30386,23328,27339,24473,17068,17534,21997,21933,23096,26818,32224,36895,26400,32744,36110,32504,42231,42005,54576,56871,31135,30306,37868,33034,24657,23869,20896,11290,7177,8440,9503,7448,6787,7490,6376,4706,4553,5836,5622,4585,3606,3252,2150,966,0,277,492,622,774,671,877,896,5639,4427,4968,3264,1867,2141,2191,2093,22442,17834,17084,28739,32898,24633,28433,33528,36156,24466,20268,17968,17058,13797,17211,14309,7053,5992,6930,6572,4995,4321,2774,1751,3271,3350,2630,2978,2770,2623,3452,3443,0,188,370,391,568,659,734,875,1080,986,763,737,550,392,256,162,340,289,242,316,294,302,223,232,150,131,123,145,166,116,98,57,0,22,46,86,120,152,145,139,123,96,78,60,58,42,27,17,476,503,391,225,162,239,250,315,79,75,70,105,108,91,61,39,0,0,1,2,2,2,3,2,2,2,3,4,3,4,3,2,10,13,18,20,16,17,12,17,23,16,12,10,4,5,3,2,0 +0,3404,7703,12022,13018,16793,23748,27286,46469,53452,82300,110766,121556,124219,99769,119091,11607,24744,32115,34430,40062,59561,57519,69058,97878,107156,104411,135817,102554,105620,108834,113249,14120,16154,21871,18540,25754,17979,22424,17574,18387,14060,8816,6983,6368,4368,3431,1544,0,3,6,10,10,15,17,20,12,1356,2853,4058,7386,6653,7560,8962,48053,43561,38680,28839,31228,27475,24443,21866,17446,26328,30280,32780,36336,39019,46453,50012,27863,41584,55671,58520,44869,49780,53612,64715,43659,38988,54486,41729,27062,27912,19878,12218,6141,6392,6700,5987,4458,5970,5216,3949,3494,4003,3993,3384,2786,2632,1688,708,0,291,444,684,766,1302,2502,2778,7186,5539,6258,5341,3804,3598,3527,4568,18654,17644,22936,30550,24895,22318,23877,23876,47808,33434,25194,20145,16044,18252,17664,16170,11728,8630,10351,7679,6760,6416,4565,2560,3446,3561,2488,2922,2514,3242,4319,3385,0,192,341,352,640,810,1035,904,1274,980,957,911,650,563,349,324,369,392,288,340,508,387,288,257,126,128,140,178,177,134,108,52,0,30,60,109,192,168,130,134,159,137,126,104,78,66,33,19,936,854,523,550,586,406,434,406,205,180,141,153,192,134,114,76,0,0,2,2,2,5,5,5,2,5,5,5,4,5,5,5,22,26,22,20,19,16,13,18,28,22,19,16,6,7,5,2,0 +0,4246,7305,9959,12047,20064,29658,27611,51763,93742,106774,152193,150204,137124,104690,114838,12050,17634,18936,23594,41927,56255,60621,58888,102130,105180,125190,120067,48841,85912,118833,131236,6545,9090,12210,15828,13451,15503,14000,14618,12879,9580,8525,5656,5883,4944,3153,1835,0,2,5,9,11,13,18,22,10,695,1638,2547,4751,5764,6866,6291,41878,28860,29802,22963,27070,23055,22499,20210,22768,35780,37822,54002,67367,71216,58727,60683,31051,41937,65918,81627,39651,54258,65204,71338,44516,41235,52973,42959,33100,25887,24088,16038,7221,7467,5371,5373,4138,4333,4944,4938,3027,2542,2676,2636,1929,1434,1475,748,0,219,492,794,903,2061,3746,3654,6440,7851,6692,6296,5127,4739,5960,5667,19884,22624,26111,32688,16169,19523,26678,26824,45983,37161,27335,22503,20738,18794,22603,26265,14348,12645,10879,10352,10740,7780,5804,4333,2688,2493,3244,3575,2404,3164,3786,4138,0,161,318,424,816,1110,1188,1146,1443,1019,1064,908,587,617,482,384,407,436,458,402,561,352,316,293,156,189,182,203,145,127,88,51,0,34,70,91,199,167,154,155,186,196,168,135,98,82,42,25,1338,1092,876,740,837,816,553,455,270,191,202,204,233,175,139,83,0,1,2,2,3,5,4,5,3,5,4,5,3,5,4,5,31,34,28,20,16,17,16,18,23,22,20,17,6,7,5,2,0 +0,3892,7923,14791,20026,27733,31474,35220,49093,82692,105542,124866,147890,136105,119000,127862,9808,11058,16906,20826,29816,43468,58449,74944,115228,87190,109243,85569,42179,88013,114910,127221,3448,4702,7415,8086,7880,8482,8224,7146,7391,7567,6289,3948,3068,2638,2066,887,0,2,5,9,10,15,22,22,13,542,1540,2240,3559,4296,3544,4500,48580,39166,24557,18752,21862,23789,18622,18982,22184,29366,40941,59956,63314,64098,73003,76998,32308,54727,68078,86127,73804,66494,80558,58218,56846,54098,47595,45957,40240,39236,26810,24776,11208,9846,6886,5372,3140,2619,3678,3052,2613,2536,1936,2044,1537,1497,1214,560,0,265,514,784,1280,2166,4658,5297,7283,6918,7286,7566,8480,6816,7827,8944,20654,26234,29102,23120,19061,20424,23827,24397,33467,28966,21877,24128,25489,23831,23007,24758,16566,14646,10584,10236,9784,8902,7336,5563,2366,3170,3118,2704,2454,3256,4183,4194,0,184,383,630,752,910,1151,1532,1750,1410,1276,969,809,716,408,368,529,472,545,520,616,454,323,332,243,211,216,189,158,128,82,49,0,52,115,162,260,290,238,246,245,208,180,146,125,104,44,26,1474,1564,1306,1109,1058,890,569,455,440,346,270,284,218,215,170,118,0,0,2,2,2,5,5,5,2,5,5,5,2,5,5,5,61,44,40,28,19,20,18,22,22,26,21,17,7,8,7,4,0 +0,6599,12847,24273,28405,24992,29450,44150,48709,69116,99005,127390,150921,139983,123906,145958,5696,25710,47148,57550,77516,91537,98795,92134,95566,90744,107018,192682,235288,187040,180253,236093,0,111,228,378,551,1077,1440,2908,3790,3836,2811,1738,1155,864,465,222,0,5,8,12,12,14,18,22,19,81,134,265,375,1063,1476,1558,40378,32720,31558,32536,42368,33355,37400,37557,29558,40231,39353,46315,66499,58877,40333,61868,45535,58575,57223,69962,59862,39532,37952,55114,66224,51616,55786,41961,38965,37080,27199,29247,14158,11816,8738,9101,6434,4342,3829,3401,2202,1967,1380,1482,1350,926,605,316,0,1416,2445,3610,5065,5263,6404,5333,6288,6256,5268,6688,10838,11092,15036,13242,22970,23310,23445,29993,34226,30752,42120,40985,29668,36764,37888,33464,28946,36496,33299,25661,14407,10801,9025,6459,2188,2898,3311,3493,2676,2902,2249,2506,2147,2477,3011,3453,0,172,314,586,786,1103,1467,1518,1537,1759,1410,960,884,804,780,536,655,515,556,404,159,183,249,266,296,278,188,128,116,79,77,38,0,53,113,120,163,175,166,215,286,338,334,308,241,170,154,86,1963,1670,1801,1476,1135,1199,1117,731,490,404,400,413,409,342,206,143,0,0,1,2,2,2,3,2,2,2,3,2,2,2,3,2,80,55,42,36,33,30,22,29,27,24,16,22,21,13,8,5,0 +0,5751,11778,17358,19118,23861,26298,30418,38357,68540,74143,110148,112474,107927,93757,114269,8534,22302,31636,45643,68695,82063,97782,87802,73623,95428,115002,173614,147146,161812,197912,228001,11281,10290,13054,11433,13400,11442,9471,12074,14464,10930,7861,5722,3189,2734,1296,734,0,5,8,10,11,14,18,18,15,61,114,224,312,903,1162,1266,39920,39810,37104,30444,55196,38018,27132,25618,22110,30063,36182,53043,51327,51384,52481,76674,41771,47670,37286,45259,66059,47336,35998,44063,99578,82742,68330,61308,51504,40689,32289,29155,11277,11422,10265,6704,6136,4036,3938,2756,1891,2040,2222,1927,1697,2131,2082,1838,1115,2036,4124,4414,6883,8098,9808,10652,5848,6855,5534,8268,10734,12693,12434,13428,20678,24227,23828,34810,25918,31714,35088,35208,30729,34614,26524,25597,28908,29456,40646,31094,15250,13164,7463,6398,3732,4461,4783,3846,3451,2980,2856,2740,2217,3424,3963,3980,438,638,515,987,980,1226,1770,1826,1941,1534,1142,973,721,747,681,542,801,659,540,354,194,244,316,274,312,255,250,193,139,105,106,56,0,51,91,100,144,200,164,242,677,712,639,532,444,426,482,454,1237,1294,1680,1146,1185,1180,734,540,365,476,504,518,467,348,454,392,0,18,33,42,81,92,79,123,18,28,36,44,50,62,76,94,109,116,150,164,228,258,230,180,124,121,134,120,101,63,40,20,0 +0,3494,7796,11783,16296,24198,25945,33065,44829,60029,83244,106670,90798,82670,94682,74796,14624,22403,31568,28899,70611,69213,74301,71938,37667,72258,96632,148653,110408,140744,151873,221562,23653,26171,24096,18924,24013,21534,16551,19894,24406,18001,15576,11194,6494,4165,2418,1303,0,4,6,8,10,11,12,14,12,51,101,152,268,693,1090,1590,50016,53927,40402,32668,51698,44337,27924,19713,11763,23781,41504,45316,51432,49481,60716,57773,48158,41201,33053,41261,66430,66228,48414,38152,106433,90747,71829,76482,52670,44322,35010,39211,12284,10319,8574,5797,4730,5074,3894,2640,1590,1672,2394,3414,2037,3237,4012,3717,1928,3130,4895,4938,9447,10971,10795,14792,5207,7317,7402,7558,9979,12174,14398,14671,27306,31006,30258,22996,20658,23740,27025,25325,37305,29297,24627,22974,33691,29049,35380,33943,13983,12375,9446,7660,6242,6914,5662,4686,3335,2887,3092,2607,3262,3072,4218,4602,756,940,908,1150,1274,1807,1758,2033,1811,1378,1414,1354,484,422,562,476,992,749,660,388,320,276,294,289,384,352,232,234,135,138,100,50,0,47,78,103,102,166,217,344,1032,848,824,674,713,825,729,743,989,958,1065,1250,1256,1094,578,385,398,380,523,542,584,615,604,498,0,38,66,70,140,128,164,216,37,40,57,75,119,130,158,183,147,156,217,314,466,400,364,317,218,218,218,174,152,91,66,38,0 +0,3340,6541,10651,18371,19948,22907,26416,36888,58988,64794,84258,79494,70262,76908,56204,16484,22836,22508,27382,51907,52393,61981,78126,26114,45850,54112,109128,87995,112682,139888,195722,30790,34716,38055,29316,37031,31270,29243,33856,37547,29712,28933,16786,11746,6686,3440,2016,0,2,5,6,7,9,8,11,12,62,115,150,173,496,778,1310,34943,32991,36831,36756,45502,33354,22974,15106,8762,21502,30808,36584,41049,56877,75839,67636,42565,43423,44023,48150,63670,53922,36452,33336,115354,89944,81354,69342,53907,46306,39428,33033,9544,8636,7075,4862,3051,3682,2838,2336,2011,2032,2156,3454,2878,4186,5065,4606,4058,5154,7978,6556,8206,9626,9549,14822,5916,7451,8572,9368,10438,14316,16139,14166,21517,28089,31193,25086,24115,23667,19666,20562,28945,34470,36156,26204,28342,38128,39725,37336,8362,9360,7090,7653,8875,7625,8268,7486,5216,5268,3328,2974,3534,4220,6322,5897,1167,1533,1351,1819,1641,2561,2332,2446,1833,1842,1476,1198,463,572,816,822,1121,812,755,534,372,322,262,292,554,512,319,252,204,183,122,62,0,32,70,121,125,188,259,340,1348,1200,825,836,739,750,903,845,1267,1008,970,1046,879,936,504,314,346,571,551,682,713,694,743,706,0,52,79,118,140,188,212,360,48,72,84,122,175,230,262,290,153,180,208,424,604,625,584,436,289,300,242,197,163,137,80,42,0 +0,4269,8347,12746,14876,18028,16028,13636,39047,54113,53042,61651,58706,60754,55135,52297,19731,17320,17770,18472,24700,53126,73835,88819,21089,44006,56368,63381,65860,89008,102836,204068,42843,46346,37374,37094,38345,38610,43829,46983,41096,33966,25758,18202,14236,10302,5139,2614,0,0,1,2,2,4,4,5,12,58,87,129,145,552,900,1101,34322,33914,25948,35747,35585,26980,25731,15537,7452,12429,18166,25909,40981,43609,67472,57388,51293,55594,44468,42868,42726,42106,30468,27926,91592,68981,50836,54150,64328,56048,38635,25088,5990,5321,5442,4050,2418,2173,2273,1816,1858,3044,4066,3694,4873,4790,6913,5950,5471,4571,5578,6972,9438,9991,9324,10938,6928,7231,10804,10871,14398,14460,12385,8613,22161,14554,13965,17876,20414,14058,9740,11826,32548,35417,29360,29500,32484,28067,37498,30460,6896,7582,6149,8338,8606,7296,9378,7124,5441,4565,3870,4007,3179,4887,5153,5589,1533,1522,1786,2296,2468,2550,3133,2648,2121,2031,1428,954,568,787,863,992,1677,1172,1064,633,314,317,237,316,610,508,511,426,228,212,158,69,0,32,77,141,170,152,207,336,1234,1141,1399,1232,856,1015,1175,1011,1260,1479,1378,1069,813,811,596,337,323,383,464,709,1045,981,946,997,0,31,72,143,206,270,384,455,68,93,154,221,253,270,330,403,135,392,541,627,708,706,669,482,394,320,362,263,220,176,84,46,0 +0,3448,6193,6897,8546,10295,11175,12384,30067,40260,42405,51634,64646,54600,69966,67298,25470,29670,38527,31056,29540,41355,57070,64178,13073,25853,41480,52616,57781,75812,93713,167113,37712,43668,35616,39724,60845,61970,53734,59355,66471,38202,25798,23802,34318,20490,7324,4228,0,0,0,1,2,4,5,6,10,40,61,78,121,487,607,989,50060,45869,32520,37580,35490,30646,22010,14362,4905,10848,14826,23024,46980,53988,76360,69598,69882,57596,39978,54374,54724,54738,41390,49358,82783,64768,58586,64600,76813,69535,34896,26508,4571,3983,4286,3240,1725,1574,1907,1708,1346,4304,6391,7333,6794,7271,11106,8832,13072,11362,8138,9495,19203,16573,13579,15463,8930,10776,16446,16630,12685,13801,12819,12628,19882,18335,22144,21222,17664,14846,13529,13098,30583,28193,30620,28882,22599,28446,27936,26910,7999,8922,10440,8336,6074,9398,11514,9438,7250,6361,6185,4771,5072,4980,5048,7416,1756,2249,2444,3003,2110,2485,3120,2622,1743,1934,2332,1453,1927,1706,1434,1458,1866,1608,967,692,425,388,389,378,501,456,443,381,181,153,124,61,0,61,119,203,347,339,404,460,1593,1284,1242,1414,778,1013,1280,1456,1261,1417,1443,1118,655,512,524,273,264,588,750,1317,1006,1278,1610,1896,0,40,84,148,261,299,369,419,225,296,392,409,438,420,387,399,409,468,582,722,1316,1089,860,828,552,600,569,478,494,361,228,123,0 +0,1978,4181,4950,4859,6113,6054,7228,20662,25135,33886,59024,69269,75327,66042,71234,38786,39975,46852,48493,28183,35963,36715,42416,11580,17303,24489,29632,34291,73497,99536,165181,51217,53988,49847,47281,85528,66105,74314,84174,73637,61616,33302,27802,46110,26699,12598,6413,0,0,0,0,1,2,3,4,8,22,42,56,97,371,612,807,60334,52597,53937,46645,34652,34056,24628,11892,3166,9930,16880,24632,47918,64091,68471,48402,83526,62663,53792,48252,62110,61624,58849,71360,114316,99962,68554,60305,85990,52219,31928,19999,3679,3165,2092,1310,1071,1020,914,1046,1103,3980,8196,11036,9327,9751,13726,14241,17203,13499,14308,14678,26380,21162,13545,14988,13455,13053,18577,22486,14000,10830,11266,8451,24896,24711,26732,23910,18700,14765,14613,15481,35124,33804,25157,20898,22383,29339,26566,22198,12896,9982,11421,9122,5795,9493,10156,12119,11723,8314,8042,6864,5700,6433,6692,6719,2723,2102,2394,2859,2028,2358,2708,2508,1997,2708,2528,2176,3285,2824,2120,1585,2182,1896,1344,806,478,502,436,417,482,508,377,295,154,109,68,41,0,85,192,375,522,646,608,760,1804,1710,1360,1710,1054,1113,1375,1297,1407,1744,1594,1288,598,405,294,147,131,668,1086,1542,1391,1950,2209,2200,0,48,84,140,326,432,394,376,325,468,536,482,483,665,628,568,754,835,795,846,1528,1352,1077,1002,889,794,806,684,759,510,480,274,0 +0,814,1910,2234,2182,2402,2582,4132,8531,18014,32754,54500,63800,67944,66110,76140,51511,60388,66925,58910,39541,29882,25327,26961,6852,9876,19588,21558,26128,58759,75038,136707,60621,58445,50802,71223,101946,75746,80826,89110,88214,52044,35232,36384,42828,30828,15218,8164,0,0,0,0,0,1,2,2,5,16,21,27,40,194,367,342,76411,66463,41481,38525,38630,28715,21833,11374,1414,12314,22589,23628,51230,57242,53655,65682,85920,71111,62948,48476,47483,66145,65647,70374,99934,88807,59810,70747,81935,53198,40227,19556,2158,1418,925,671,485,563,444,435,512,4364,8123,10445,13667,16264,21322,21434,22714,19209,17765,18155,28153,26738,15773,20131,16310,19083,15680,20712,15602,14020,9422,9182,25970,22394,28974,19395,18653,16570,19577,21603,26404,23204,21888,19719,14586,16992,16372,18378,15357,14928,17023,11725,7662,7833,9379,12424,13142,11996,7271,6379,6273,6960,6648,7337,3217,2417,2624,3424,2566,2781,2673,2945,3388,3381,4195,3338,3642,3196,2084,1764,2547,2181,1558,1054,692,504,416,381,476,396,395,270,190,126,87,44,0,114,250,377,522,904,908,1412,1908,1814,2564,2164,1755,1734,1951,1686,2011,1866,1751,1274,567,474,256,126,67,876,1490,1933,2151,2482,2457,3040,0,59,122,186,308,377,436,373,389,476,665,606,459,525,722,820,835,1104,1155,1082,1332,1164,1208,1053,852,922,1336,1007,814,596,478,242,0 +0,5828,13870,34751,44772,58832,57087,55899,55225,75062,70678,70161,99794,74786,60669,77740,69956,76640,62461,78054,70259,73569,55653,66669,66458,91408,90903,82552,106518,87444,83821,93084,98252,76313,55119,46504,31965,30914,30818,26352,22942,19892,19392,16017,17126,10464,5728,2337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68617,59662,48013,31367,20265,43210,58695,71229,110212,102111,139315,131318,144765,115429,100482,71412,73755,80172,83586,106493,123316,136908,116210,81855,81403,74879,45815,42976,36162,24414,22539,12898,0,2453,4573,8668,11730,17539,18983,17716,17060,14868,12434,10197,5093,11769,17005,17960,21711,22316,26464,27048,36882,35446,31457,29919,28014,33652,29690,27585,28072,29282,22065,16227,27379,30862,47076,50840,64294,60838,64926,45802,49357,49690,41247,42125,36265,31564,26971,19335,18357,11511,9270,7596,4750,4753,4979,7394,11420,9190,5666,4966,3754,4073,4059,5663,3369,5172,5311,5258,6348,5370,3932,5414,5091,3875,4282,3404,3937,2518,2160,1990,2636,2284,2261,3437,3541,3624,3645,3009,2857,2304,1467,1216,1088,788,432,197,0,390,741,1086,1343,1047,1266,1790,2331,2348,2389,3278,3571,2819,2042,2554,2922,3090,4698,5172,5826,5479,7747,5634,5678,5548,4961,3648,2238,2492,1917,3388,0,154,325,335,502,508,759,600,682,677,500,433,552,688,1044,1165,1034,1144,1111,1083,801,628,533,453,354,366,272,219,117,82,63,28,0 +0,7272,19472,28156,36495,42168,55043,50803,50637,52822,57832,65300,100068,88425,62820,85479,76799,69096,54657,77619,71898,63413,60817,83910,79289,80705,77383,81872,110385,102007,89331,81200,110842,90270,59342,39976,35334,35258,42235,40760,30503,29236,26114,22826,11682,9394,4855,2221,0,136,283,536,655,664,556,760,948,750,712,484,308,239,135,95,68482,52414,32000,26344,22353,37301,60523,95266,174346,157763,135598,142770,127115,112043,66004,57248,51172,72968,89054,112917,103311,115202,114400,86486,52783,54120,51165,42344,31661,31240,26460,12850,0,3016,5830,12026,16963,17041,23970,23860,16081,15354,16044,11256,7616,13466,16931,17846,22948,26732,25696,29696,29376,32756,24856,23633,30812,30000,22551,22997,34370,26365,17035,11074,30908,32420,46338,45922,57920,46263,53082,53806,51316,56028,49565,41150,23817,22962,23656,15158,18967,15398,10762,13054,9630,11304,11677,11974,14038,11682,9028,6138,3368,4778,6230,8648,3954,5494,5638,6036,5417,4263,4409,5663,4518,4116,3011,3288,3450,2746,2307,1751,2923,2806,2064,2884,3389,3164,4015,3356,2369,2150,1241,961,909,748,312,181,0,307,807,953,1117,1012,1102,1488,1750,2320,2187,2448,3379,2756,1713,2210,3945,4042,4770,5588,5432,6201,5270,5242,4170,4196,4296,3461,1907,1879,2008,3180,79,216,485,584,526,564,717,632,494,616,740,737,890,1065,1201,1394,910,1122,1068,1030,725,646,702,780,656,576,449,360,305,279,309,191,52 +0,11085,21133,29679,25841,36400,41444,39533,41137,47792,45277,41392,82170,88684,90466,82777,71902,65774,69712,78802,59684,71901,62938,86468,85635,72762,46144,62952,115944,89726,93246,109896,115364,107546,68180,38042,36211,43686,41149,41126,31445,39943,36308,27394,11480,8808,5150,2358,0,335,568,854,1367,1130,1376,1719,1800,1604,1326,909,545,442,292,238,59528,39156,29091,28433,31606,42523,50687,102522,195225,221990,179200,178230,116417,95803,63674,72349,38639,47183,71650,83018,74966,68548,76271,56944,49028,53558,45318,57699,30960,30092,21566,10338,0,4515,7628,15486,19783,16810,21020,28494,18111,13386,15345,12933,10291,10405,14762,14512,23772,27260,26692,27642,32513,23579,19629,18736,28547,23787,24782,19367,29424,24878,13982,7426,33002,35768,42548,34863,39572,38320,46588,41322,58223,59635,43744,39296,19726,17575,15952,11962,14490,12672,15506,21771,18036,16862,18529,19681,16944,12353,13134,9465,4547,6389,7866,9278,3447,4218,5094,5135,4340,4320,3510,5049,2664,2437,2045,2348,4409,3442,2788,2219,2855,3038,2604,2593,3648,3112,3742,2800,2170,1808,1320,1050,840,576,325,176,0,275,608,893,985,1095,1164,1322,1505,2519,3053,2458,2378,2267,1670,1976,5636,4127,3552,3428,3838,5269,5354,4278,3356,3533,2575,2459,989,1541,1598,2442,152,321,486,734,598,716,732,745,455,770,870,735,1422,1480,1518,1744,790,823,932,834,950,923,902,868,1161,799,786,552,521,536,455,338,125 +0,9752,20137,30422,29408,26960,38122,34768,41092,41702,31950,40577,58697,64718,65316,79238,68088,79836,105286,82213,64234,63477,69916,69744,59149,59077,37570,58260,88729,97503,86739,91552,123752,109458,64631,62944,47475,43168,51247,45786,37371,39578,34620,23814,10814,9848,5946,2678,0,520,1008,1244,2344,2420,3134,2847,2470,1836,2088,1332,916,734,491,378,62893,41972,26512,25207,28063,51790,69267,96821,161003,199660,213265,149763,87900,81414,47741,60726,25513,36423,67488,79799,62887,71635,78590,82610,52190,47238,49645,53924,33314,30668,16782,8012,0,6028,12306,17332,18665,19894,22073,35105,19582,20020,15610,14494,11746,10016,12475,13890,25749,21308,18756,22808,22452,18988,13104,12590,23577,18471,18652,19098,22679,15928,11263,6601,29950,35698,43302,33740,31437,31811,53220,37872,57729,43709,45530,29948,21550,18458,19766,15230,20142,17530,24868,22350,28956,32762,29293,26993,23885,19002,19445,12992,5567,8100,9629,10444,2872,4370,4639,4964,5630,4620,3667,5541,2681,2178,2205,2322,3662,3956,3264,2463,2706,3180,3247,3422,3509,3433,3676,2990,1444,1382,926,712,640,528,351,208,0,297,460,650,803,840,1080,1097,1924,2330,2408,2252,1836,1613,1607,1693,6008,5352,3821,3610,2980,3841,4706,3991,2970,3078,1969,1682,1017,1204,1211,1950,314,674,986,1176,1152,943,1168,1215,594,996,1036,1350,1748,1853,2295,2076,680,798,892,884,843,1044,1287,1240,1438,1278,972,820,762,655,793,555,173 +0,6448,12601,17056,25723,30583,28404,25249,48339,45728,60827,44064,38557,42441,55232,69633,93497,83842,62786,75777,91592,116368,106542,95837,59812,61410,84622,75538,62828,46293,35759,30398,124495,116048,112380,85562,51777,58231,52911,48198,47322,39142,40081,30894,14280,8476,4854,2724,0,616,1159,2199,2630,2652,3927,3348,3379,2703,2813,2109,1258,1117,869,531,49094,44903,53119,41190,32436,38572,49624,81284,171004,134920,88599,96240,100718,92385,60130,62787,14449,36440,55576,68002,74883,95289,88128,89786,57586,66452,54375,46274,39319,30847,14248,8247,0,8214,14615,18300,23295,20998,28429,30309,15344,15858,14560,14578,14904,10179,9148,12132,21596,19228,12198,14094,11303,10333,9648,7351,16484,12266,11742,12424,16748,14627,10579,6220,39232,43860,38844,39414,31500,35054,31166,37063,41599,44892,45005,39143,23564,26203,21767,14454,24424,25293,22278,23945,31744,28414,29260,33686,27634,19572,10811,7705,7222,5997,7650,12948,2536,2368,3181,3950,5279,7786,7835,5852,2018,2573,2969,2456,3165,3383,2553,1939,2108,2062,2449,2828,3290,2551,2297,1982,871,721,878,727,620,459,218,103,0,186,356,596,887,796,816,839,2272,2344,2823,2778,1998,1490,1618,2435,6984,5364,3841,2789,2161,1734,2025,2354,3689,2364,1906,1340,800,1447,2078,2004,468,491,610,1045,1459,1751,1973,1922,582,746,981,1526,2054,2360,2292,1830,745,680,598,658,908,1144,1389,1502,1776,1758,1403,1142,1060,1001,691,507,282 +0,5406,10582,13662,20852,23985,26469,23822,39367,41948,52262,47227,36594,29914,42880,42174,88794,90128,50835,74907,75504,83028,80902,85866,59252,54604,56876,59291,48407,31718,33206,29860,119466,119600,120542,91660,50115,63396,57149,58284,51992,38279,39789,31442,18804,11535,7640,3964,0,596,1311,1879,2799,3553,4167,3596,3967,2992,3412,2054,1318,1002,820,525,44494,59163,61450,52960,35694,44927,57176,77258,138280,120558,77891,88708,73308,71334,57061,44239,18168,31390,40896,56815,74218,83627,71895,62070,66130,51324,48668,41767,31001,23382,12831,6399,0,6765,11284,16558,25581,28657,33294,37205,24989,24006,26588,21404,30137,26696,17982,23206,15988,14598,11573,10474,8112,8058,9298,8791,19598,13274,12324,12345,13709,10923,9178,5130,49123,44486,40942,35075,30652,24801,26681,25968,43788,38524,34280,30644,17469,20604,17953,14273,23499,27825,29330,26077,34157,27150,26829,26194,21384,18871,11066,8888,10159,8561,9914,13790,1715,2155,2994,3619,4769,4820,6706,6464,1944,2560,2042,2228,3241,2938,2427,1676,1920,2020,1989,2409,2412,2328,1805,1385,823,705,897,726,457,436,218,98,0,192,426,567,748,912,1284,1414,2780,3373,4378,3356,3367,2924,2520,3392,4699,4524,4234,3965,2864,3096,3521,3265,4308,3362,2684,2260,1320,1498,2222,1779,615,832,1044,1512,2161,2167,2356,2384,1522,1518,1184,1707,2377,2022,1808,1842,553,662,701,768,927,1181,1479,1320,2136,1896,1656,1390,1362,1070,687,558,342 +0,4135,7438,10925,18527,22289,26185,19601,41830,43154,40390,41156,32660,29591,24618,30210,85658,69688,60482,77122,39954,76496,89812,87673,70643,66125,45379,39268,35934,31336,21521,19791,121381,96817,105050,97371,51331,72437,73662,76952,40463,38619,31668,31441,21910,13139,9812,5369,0,676,1159,1844,3618,2966,3661,3906,4372,4219,3166,2095,1272,927,757,581,40450,48594,66591,53662,39843,48229,61130,50537,159010,114309,68808,49792,54227,54086,35988,35502,15974,28161,42379,59176,58914,61209,50499,38544,54797,45903,40031,31116,27413,23363,12865,5426,0,4452,9584,12456,24263,33833,36106,35868,27574,28321,32297,27662,40758,33056,29317,25711,16244,13486,9860,9343,4694,5658,8722,11385,18881,16978,11934,9200,11139,7828,7924,5329,50696,47741,47286,35809,20943,17936,17192,19272,31520,21933,22418,13866,15129,16714,12746,16992,18018,19612,29496,21944,33148,27588,18618,17130,21880,15608,16466,13655,10786,9642,9780,15675,1251,1643,2458,2843,5454,4671,6068,6942,2372,2201,1926,1613,2686,2346,1594,1052,2507,2678,1958,1503,2689,1640,1314,1066,562,577,730,655,498,376,178,85,0,232,401,650,637,1018,1378,2369,4209,4022,4834,5046,3944,3648,4002,5687,4594,4976,4123,4947,3440,4535,4407,3729,4645,3524,3471,2931,1601,1481,1732,1428,983,1146,1454,1833,2873,2898,2652,2942,2038,1605,1734,2273,2457,1994,1744,1640,447,631,791,1183,785,1415,1644,1944,2363,1688,1752,1627,1495,1075,1016,828,481 +0,4257,7816,11326,12360,19380,19030,17826,32036,28630,30720,31664,23514,16964,14738,17086,61095,64060,48788,47223,34944,40954,55881,65800,51697,54041,39781,28661,27245,21378,13860,12728,110800,119432,92885,110376,94604,83586,89274,82038,51034,43752,31094,30810,23119,16747,12231,6094,0,821,1412,1980,3093,3782,3743,3850,4382,3558,3398,2172,1137,864,578,526,26668,40146,64733,66578,61247,59514,76750,63360,144821,89411,52478,39747,29844,32353,22744,19410,13045,23350,34090,35518,55324,48392,39668,35200,48939,42571,42110,27900,26934,19765,11122,5691,0,4430,10174,14450,19839,29802,36146,31046,29422,34626,29698,42286,68592,44547,44310,42443,9171,7778,6541,6470,5082,8056,8395,14531,17261,15998,13506,10127,11198,8025,5434,3712,50755,35576,45656,35574,17260,17630,16382,16326,15146,14310,17337,12502,13736,13053,14199,16080,22434,26776,43185,42406,35657,33294,21064,24876,27292,22979,20328,13902,10960,10628,8246,12392,1106,1826,2214,2670,3390,3742,3828,4336,2472,2156,1800,1884,1917,1653,1213,786,2530,2446,1460,1360,2034,1324,972,963,733,606,758,572,357,249,144,68,0,192,378,762,840,1236,1456,2562,3738,4401,4607,3674,4722,3813,4014,5584,6260,6120,4662,5554,6807,6366,5712,4813,4071,3405,2673,2490,2617,1984,1672,1080,1401,1360,1552,1818,2931,3051,3415,2920,2484,2272,1724,2178,2163,2226,1504,1516,245,507,877,1064,1170,1481,2140,1744,2146,1894,1851,1862,1439,1184,1132,666,532 +0,5765,10527,15853,24815,29213,37027,31634,29727,26777,23125,18650,8970,8725,10161,8214,53771,58158,68074,68653,89298,58592,52559,55610,46006,39105,25982,28293,34105,18472,11575,4664,113095,104342,80080,45940,19237,29156,39738,37298,46296,37348,21307,16332,7894,5825,3848,2011,0,322,723,853,1215,1149,1616,2868,4134,4527,4334,3365,2678,2182,1012,602,15566,45006,62758,70202,81005,99951,106742,83608,83268,80648,63033,48795,44129,27772,21516,11608,15177,12241,11216,10353,7071,13117,22381,26715,42572,38355,25435,24119,31223,22793,11875,7044,0,5096,10214,12178,17460,30097,40229,47844,40736,46933,47792,48286,63964,74938,60957,58056,2824,6036,11991,15032,21799,24612,30195,30214,22126,13120,9824,7370,5373,3762,3170,2174,37596,37447,50796,47065,37571,33004,28384,19914,4890,3894,3307,3450,4933,9545,11260,16981,28948,33634,38732,37688,48343,49031,45515,30210,28659,19221,16748,15515,16690,13341,16058,14833,1409,1571,1563,1495,1906,2610,2714,2781,3014,3072,2772,2532,1725,1115,1023,478,1907,1572,1488,1358,1666,1746,1337,1358,929,916,870,836,585,391,303,176,0,626,1499,2072,2965,3161,3757,4217,3890,4081,3642,2937,1450,3557,5222,5683,7376,7840,6459,5054,5246,4693,3982,4594,3848,3060,3495,3519,3417,2982,1879,930,1475,1368,1066,1624,1831,2167,2640,2489,2978,2462,1605,1836,1905,2108,1671,1393,0,121,238,424,486,912,1384,1668,1701,1853,1701,1434,802,754,717,646,542 +0,4398,8375,14386,17532,26866,33559,27900,22818,21762,17354,11503,8613,10218,9702,7384,41084,51268,60540,75322,91061,83242,49778,55356,35210,33704,26098,26256,21527,15595,11956,5494,112198,90652,76122,53685,26860,31205,36907,51445,31144,29272,18934,14658,9914,7020,4471,2328,0,698,1403,1710,2412,2542,2400,3366,4250,5044,4940,4048,3441,3288,4026,3254,11864,37656,52549,57709,92620,89139,87455,96584,88222,87237,64058,69129,64184,60661,61882,38986,40475,33903,28965,23148,39278,45522,44156,44066,28437,31330,31346,29230,27880,18988,10032,8549,12520,15470,20663,20787,18036,33002,40610,40866,43135,57092,45862,59372,45394,55814,67908,71454,4975,7703,12344,12534,21973,25058,23848,23075,22926,13328,12057,8686,5320,5230,4469,3334,23940,31744,40004,38468,37390,34891,28160,17248,4797,3942,4027,4046,5512,6582,9833,11126,28910,33122,37344,39118,47906,40140,43301,32519,30195,25206,17082,16658,13320,13587,11421,10277,1894,1503,1907,1812,2227,2072,2185,2512,3828,3188,2968,2234,2005,1838,1334,1049,2823,2443,2449,2414,1837,1620,1121,980,753,742,541,609,458,334,306,156,0,590,1383,1716,1918,3020,3033,3338,2754,3349,3781,2634,1903,4449,6348,6038,8132,8005,6552,5726,4846,4591,4162,3483,4208,3719,3035,3766,2576,2390,1684,1210,1354,1162,1332,1566,1718,1934,1974,2626,3244,2306,1596,1555,1968,2017,1934,1676,98,162,248,372,495,731,1342,1410,2120,2136,1433,1135,1074,946,1055,894,515 +0,2676,6526,9648,14124,19208,21620,24526,19714,15109,15698,11545,10988,8160,8095,5342,42794,43254,52262,69501,69344,54538,57802,43974,25079,23830,19038,18871,16726,11709,9622,6142,84130,87298,72910,50323,33728,41761,50820,54722,26180,24910,18814,15945,11300,9444,5481,2748,0,966,1790,3051,3468,3165,3643,3614,5792,4732,5342,5686,4240,5795,6258,5916,12680,35352,53190,60037,91956,84252,68510,105235,72077,65542,86764,88223,88272,78594,81668,60901,59796,46547,40526,42045,66279,69810,83938,75645,22859,31644,31482,34879,23573,19761,12305,10761,20976,27474,27348,22964,25406,23962,29594,36413,64817,71508,57987,69420,37201,38450,57064,54006,8874,9850,9486,11659,21934,22636,17526,16699,19877,19942,15463,14816,6891,6271,5737,3483,21518,27026,30519,24724,28188,31169,23960,14246,4988,4276,5151,4679,6181,8770,8882,6919,19829,20862,31487,41280,34643,41510,35332,31280,21993,24790,19812,12907,10450,11708,9220,9338,1830,2136,2110,2228,2105,1984,1414,1905,3876,3320,2394,1848,2553,1618,1233,1507,4255,3843,3214,2947,2246,1639,1045,1036,598,452,468,456,320,272,237,110,0,504,1074,1409,1675,2431,2832,2824,2590,2470,2986,2702,1737,3771,6481,7028,6408,5834,5426,5109,6159,5007,3739,2971,4188,3472,3758,4544,2500,2096,1844,1388,1664,1273,1154,1106,1433,1352,1704,2280,2459,1560,1398,1107,1509,1257,1553,1673,196,298,305,382,392,537,876,939,2105,1553,1688,1180,1253,1050,1131,757,400 +0,2130,4338,8873,9691,12221,16742,16928,15182,12510,11488,9217,10799,8967,6635,5418,31957,40392,35828,53327,51715,46552,51983,35658,16752,17290,17907,15210,12232,12744,11720,6573,59807,63872,41913,36996,28843,42086,43105,46829,24859,26720,23732,17370,10737,9091,5294,3315,0,980,1841,2808,4147,6018,6113,5862,4768,5729,6302,6420,6402,8791,8534,10160,14193,28900,42099,41802,65645,78102,72202,98186,70896,63402,109222,101718,80036,80364,81140,80119,56042,54308,63036,55036,83948,87538,84980,84636,21642,21574,25628,29320,23464,23545,15267,20804,31344,32240,36380,37046,31460,34172,36994,39647,67600,59290,57361,66862,45430,60128,51007,51489,8816,9742,7082,9844,13270,15960,14893,12806,24994,18804,20733,15074,10888,8333,6504,3646,22074,26834,26933,20891,19440,20090,18472,10565,4695,4780,5003,6039,5776,5824,7884,6366,13670,17582,22161,28186,32480,33504,27189,25020,27623,25522,24688,18768,8916,8970,10392,8590,1497,1698,1648,1769,1440,1509,1335,1464,3673,3202,2336,2246,2414,1708,1478,1514,5138,4608,4418,3500,3055,2246,1305,926,606,414,375,432,292,266,159,98,0,455,750,1098,1786,2263,2708,3116,1553,1868,2211,2504,2086,4632,5523,6500,6645,5268,4988,5352,5240,4516,3569,2440,3285,3276,3216,3556,2807,2650,2586,1894,1696,1276,1200,1395,1562,1700,1858,2306,1787,1357,1066,1183,1573,1496,1786,1582,342,438,412,384,470,622,835,799,2257,1902,1655,1046,1269,1214,1168,740,523 +0,1499,2973,4847,8845,9502,7459,5980,7225,7764,9716,7480,7204,8450,7162,5866,18695,28036,39944,48521,47054,29514,22130,23916,11237,14645,16725,14173,13708,10798,9918,6292,26797,29693,34610,31970,31514,43157,51564,55577,32872,19292,14707,15946,13472,12713,8220,4114,0,1316,2945,3204,4945,7350,9285,9908,5838,4402,4608,5697,7861,10343,10357,10712,16748,21421,34759,49330,55575,56810,52829,68725,65382,75301,82811,78429,106962,88359,89609,83427,71403,64055,78588,100345,97764,93718,92516,85726,15851,15862,15755,20513,29873,37800,40832,39103,34639,36920,39326,47310,40874,36826,45165,45425,56822,70700,61523,53588,51000,49454,56343,61409,12350,12535,11899,12599,10872,9582,6404,6455,26718,18232,17037,14447,11732,7357,6536,4549,17652,16794,16922,19122,17702,13939,6980,5285,3983,3700,3652,4322,6284,5538,4371,3940,7614,9389,9788,15658,20792,15598,16148,17585,25359,22311,17713,13819,6976,7164,8194,9026,1872,1602,1602,1259,1476,1418,1360,1189,3986,4092,3549,2908,2871,3037,3176,2394,5570,5747,4378,4548,3342,2732,1597,1098,582,551,586,550,344,277,185,86,0,466,836,1040,1460,2154,2130,2300,641,953,1166,2000,2408,2714,4008,5469,6225,5173,5968,5053,4424,3375,3504,2214,3144,3427,3585,2866,2812,2456,1528,1618,1196,1071,1036,1397,1612,1594,1464,1642,1139,1059,1089,1397,1238,1576,1438,1297,607,456,483,618,623,805,825,796,2577,2247,2014,1395,1135,1135,996,892,778 +0,1084,2146,3507,6202,7042,5676,5380,4839,5336,6578,6368,5044,6157,5781,4706,10816,16306,31036,32832,31790,24124,16402,16856,7947,9952,10500,12746,11939,11113,9764,7610,27361,26692,29064,34038,31251,37684,35030,41870,29550,23538,15120,10872,11085,7732,6994,3252,0,1298,2516,3650,4857,7019,7046,7622,6124,6460,6149,6728,9981,11588,9765,10768,16032,23036,27782,42486,41025,47960,55710,78802,68070,73311,73566,84660,117667,94893,123500,103283,84575,76496,102641,104924,86592,93522,106912,108474,36912,29826,26667,26908,41434,42729,48959,51438,36362,29442,37552,37200,26511,31154,45939,41370,67318,64822,72151,59919,39199,53584,52041,44108,21370,16746,14664,12744,9076,8494,6600,7036,28151,19200,14479,10951,12163,8596,6522,4216,16525,16998,10978,15332,13439,10774,7022,5636,4508,4682,4982,6338,7136,6648,5783,4771,10930,8213,11251,13774,20062,19548,14764,19775,17273,15368,14326,11549,9526,7208,6151,6183,3948,3274,2667,1626,1779,1757,1846,1762,4154,4772,3441,2980,3133,3558,3431,2702,5478,4762,4134,3777,4631,2998,2159,1442,410,496,492,428,257,202,141,68,0,336,655,868,856,1232,1406,1878,501,795,1323,2228,2859,3778,4461,7126,6088,5860,6918,4418,4269,3622,2791,2098,2678,2456,3426,3034,3171,3206,2539,2218,2086,1664,1593,1806,1648,1448,1535,1894,1436,1308,1234,1008,1176,1106,1001,1202,886,858,967,1040,917,1049,996,1056,2631,2218,1802,1798,1566,1134,1080,850,738 +0,863,1502,2174,5139,4546,4161,3560,2483,3320,4143,4555,2955,2520,2650,2644,7901,12068,13319,16608,19780,19498,14250,13128,6305,5988,7761,9292,10879,8287,8828,8956,19914,26382,24530,27048,22368,26450,31231,25740,29274,19551,15828,9369,6120,4352,4054,1792,0,1400,2479,5142,4487,4946,6456,8293,4727,6849,7800,8122,16261,15042,13276,13712,19471,25843,29800,35071,46633,54713,66545,95509,56154,69883,67664,88519,149236,166047,136012,104214,77599,89201,97859,136121,118032,93768,103408,106448,50108,42350,33216,35827,45227,38161,44120,39148,28662,37336,34374,37296,22278,32144,42566,58439,60317,60184,58948,52106,38313,42120,37466,33381,24536,17601,18811,14123,7771,7924,7873,8292,23074,17165,16035,11376,12661,10174,7074,4714,14340,10252,10455,10610,15566,9982,8855,5714,4436,4980,7724,7632,6382,7313,6296,7524,11320,9474,9079,10985,14408,14036,19037,19531,15509,15183,14784,11457,9710,8055,6688,6726,4829,3196,3136,1744,1636,1676,2010,1659,3134,3134,3480,2767,3076,3777,3926,4733,4450,4251,3302,4024,4691,3610,2010,1114,404,389,254,194,108,104,68,41,0,236,426,446,590,864,1156,1252,390,737,1192,2222,3260,4530,5600,7590,4001,4568,5682,4459,2829,2115,1769,1657,2280,2535,2492,2756,2570,2970,3094,2322,2420,2043,1911,1851,1794,1583,1888,1675,1386,1129,1106,845,756,820,894,1185,883,919,1186,1413,1004,1227,1418,1736,3114,2838,2446,1950,1555,1102,988,675,521 +0,458,741,1050,2990,2882,2410,1848,1142,1630,2188,2446,1714,1650,1526,1350,3332,4664,7214,8071,9976,9650,6642,6836,2870,3730,4650,5370,7831,9167,9633,11212,16754,22152,21447,20297,24307,25625,26614,22112,25162,20196,12966,9540,5609,4776,3606,1978,0,1404,2079,4087,5941,6804,6434,7416,6068,8506,8844,9842,16074,15862,18244,13257,18601,25606,31917,38129,53504,57290,77616,93712,71480,69458,67328,104254,151868,160661,122411,105716,99764,115788,128727,110364,108608,97802,102881,104376,72876,78048,54450,45040,42990,40717,33578,39115,43874,38198,29358,34943,25824,31545,43252,52772,71081,63874,57353,49566,46579,38374,34783,30179,27675,21313,24422,18024,9088,11193,11107,8213,16582,14584,11934,11934,11668,9388,6106,4796,9726,8068,7884,7980,9076,5819,5564,4540,4408,6322,8476,7545,8119,9736,10357,9668,12536,8907,6865,8587,10756,12560,14129,20213,14452,15674,13450,10795,11018,8562,7367,7182,5302,4322,3312,2002,1531,1941,2453,2004,3158,3636,4018,2624,2798,3338,5036,4886,5488,5000,4802,4504,4493,3521,2028,1285,232,228,126,114,64,52,34,23,0,134,234,257,350,444,678,590,210,881,1403,1888,3293,3566,4142,4940,3735,4572,5874,4972,2960,2250,1432,1360,1743,2066,2167,2891,2278,3122,3498,2792,2148,2626,2366,2286,1891,1670,2096,1639,1456,1282,1040,850,1002,986,792,1020,895,1000,969,1421,1604,1480,1533,2159,2328,2538,2384,2114,2070,1748,1607,989,668 +0,757,1407,1784,2163,5502,10396,17121,19926,21214,17539,22191,29510,30643,33818,32444,20699,14903,7348,5517,2180,1586,1094,574,0,2526,5074,9491,15039,18454,22045,24888,23131,25330,37205,32558,30119,27725,20272,24294,24282,15585,12096,8214,3558,2611,1413,787,0,62,114,162,166,412,633,900,1177,1435,1461,1724,1858,3670,6761,9164,8578,9890,8728,7639,8801,9067,7701,5238,5375,3817,3734,3286,3896,2626,2299,1142,0,2150,4094,5809,8154,10489,11077,12569,13036,13082,14307,14507,13080,16163,14598,12870,10088,7501,5464,6784,6720,8783,8378,9888,9508,9843,10550,9399,9519,16215,20629,24735,21099,33733,40848,44352,40667,38951,32555,26698,27128,27054,20416,9757,3453,3976,3668,3151,3281,2642,1954,2462,2200,1558,1355,1558,1882,1505,847,709,660,555,318,167,0,16953,32838,35793,53209,60467,66699,59177,60754,81825,90284,106582,107215,105888,71866,74591,96912,69096,43014,30071,14357,8329,4331,1831,0,0,0,0,0,0,0,0,0,5659,9687,12188,17277,23002,22766,26924,36250,36591,41622,40238,27398,34066,34417,35451,28272,36962,37985,38316,28298,25563,23673,17572,5706,4978,3053,1975,1609,1074,756,354,0,3462,6419,7244,9678,9032,6872,8873,11975,16535,16012,18913,21196,25104,23764,24123,23284,27068,23140,20211,23348,20273,18364,12912,12811,10118,7705,7016,9585,5678,3239,1918,0,0,0,0,0,0,0,0,0,254,426,638,760,877,782,732,899 +0,588,1258,1694,1696,4169,7790,11195,12274,15664,18052,19282,27458,23558,34031,29196,47434,32530,17122,14568,7607,5830,5414,2240,242,2192,4928,8370,14346,15845,17697,17913,27319,34477,39950,39167,26971,30103,29774,22236,23635,18545,13664,9990,4817,3501,1600,974,1662,1746,2069,2280,2870,2286,1325,1091,1053,1459,1736,2016,2476,5142,7977,8205,7296,6534,7084,5940,6762,6515,8508,6258,4333,4406,4164,3535,3318,2215,2246,1035,0,1674,2963,4999,6928,8137,7156,8111,11842,12976,11966,12580,11191,13478,14108,10972,9456,7856,6036,6789,6953,7208,5727,6293,9960,9477,7862,8530,10868,11672,17056,16831,17689,30473,44120,46890,41234,42998,33046,29756,31728,22209,16462,10866,6354,4270,5365,3580,3696,2690,2849,3088,2117,2326,2404,2486,1984,2028,2384,1806,1487,992,566,350,10194,22887,27073,39734,48872,58874,57949,62300,64642,71568,81978,91474,98744,89670,74021,66756,131976,116514,85265,41112,16603,11484,10308,4406,0,0,0,0,0,0,0,0,0,4675,10660,13578,18679,19921,23534,22968,27353,30730,37349,37304,33899,32360,39370,33735,39986,41910,38637,29992,30840,34277,29714,18476,7595,5236,3969,2793,1504,1212,1250,658,0,2607,5218,6882,7716,7656,8505,11158,15352,16574,18433,19235,18000,20024,22467,23496,19389,17478,21968,21155,17906,15081,12584,11796,9553,6990,6258,7764,8657,5649,2611,1472,599,521,426,447,450,360,184,162,1383,1006,890,944,832,902,1030,1185,1295 +0,416,994,1671,1312,3704,5684,8355,10744,13827,15964,17952,21231,23439,25980,16220,60171,40168,34373,23980,12742,8801,8300,3854,521,2287,4792,6007,14958,11903,12744,12870,23798,23261,33900,36547,23912,22480,30554,24380,26607,16712,11910,6706,5373,3784,2310,1566,4039,4083,3688,4784,5198,4436,2658,1589,1234,1800,1880,2886,3825,5175,7106,6374,6106,4667,4002,5208,4523,5153,6609,5145,3287,3670,3529,3068,3128,2003,1720,924,0,943,1928,3182,6107,4798,5778,6632,11427,11408,10928,13191,10318,8368,9646,10597,7176,5939,6756,5847,5838,5517,4804,4196,8322,6861,7120,5259,8846,10570,8988,10764,14910,28850,37056,48371,39137,42008,36826,26011,26518,18248,17698,13376,9410,8724,6484,4452,4082,2898,2913,2646,2129,2648,3966,3922,2441,2958,3576,3371,2029,1840,1086,568,24225,25649,25784,28866,55308,70882,70032,72625,53330,70332,74036,86659,59506,59027,63342,74736,191202,172652,100953,63420,23275,17183,12892,6799,0,0,0,0,0,0,0,0,0,3758,8294,13170,15994,19044,18270,21283,17488,30437,38670,29988,36713,40780,34113,30401,41731,38046,29144,28626,43183,29075,28906,19426,9386,8121,5225,4035,1996,1514,1530,836,0,2804,4800,6785,4018,7458,8896,11063,17006,18475,17096,17167,20581,25388,23914,18282,17934,17742,13686,12413,8817,8371,11810,8643,4987,4476,5056,6708,8664,5994,2792,1524,1122,979,970,894,1037,688,444,338,2742,2402,1295,1796,1283,1149,1008,1274,1392 +0,620,1333,1566,1550,3132,3777,5932,11657,18515,24021,25523,24467,25300,22465,11546,69505,48651,36020,23614,17819,16726,18030,8952,809,2014,3288,5109,9719,9365,15006,15923,27036,25149,38109,33908,24934,23546,23394,20184,22780,18356,9910,7294,4238,3068,2548,2118,6500,6624,5588,7260,7360,5428,5317,2940,1144,1956,2279,3382,3700,4246,5981,6740,3921,4251,5074,4837,4842,5938,5630,5036,3983,3120,2984,3292,2749,1924,1938,950,0,876,1453,2870,3978,3911,3938,3417,8240,8082,7242,8637,7316,8524,7872,8228,8628,7590,8033,6298,5751,4884,4674,5601,6684,7124,6087,5920,6630,6539,6275,8411,20095,27820,28586,36934,40590,33520,38322,34314,34193,32920,24871,18052,15982,10456,9277,4733,3639,3314,3632,2812,2194,3708,4318,4342,3954,4380,4742,4500,2943,2219,1325,672,26754,24986,27001,31576,47353,54294,56814,79188,52692,62560,64482,76024,64593,70367,85939,87967,161049,166382,98218,72502,25380,25074,16676,7676,0,0,0,0,0,0,0,0,0,4409,11254,12520,13448,18606,17736,17314,17021,24712,38087,34633,34669,39833,39070,52310,40144,28860,34872,26322,34148,27222,22354,16706,10419,9036,7465,4989,3274,2319,1760,992,0,1638,2802,5088,3156,6402,9798,10570,21928,14740,13361,17046,15560,19832,19694,16191,16490,16645,12456,9954,6332,6490,8075,6000,3506,4125,5073,5760,6549,4664,2641,2311,1816,1846,1438,1253,1361,1172,777,588,3970,2560,1487,2038,1525,1578,1424,2054,2105 +0,514,1036,1382,1929,3132,5294,5343,15805,18622,21141,20280,21360,18090,10881,7242,67191,58048,54414,40042,30400,26124,14777,7163,850,2213,4122,6279,7249,7800,11534,10068,25183,22535,30239,34417,28393,22032,23691,19172,24288,18787,18834,10076,4986,4956,3333,2873,6857,8888,11338,10970,10202,7373,5546,2742,776,1752,2598,3344,4398,5221,7140,6229,3223,3531,4886,5175,6236,4284,4424,3602,5381,6042,5336,3690,2510,2064,1567,713,0,460,974,1210,1749,1674,1971,1844,4948,7432,7593,7266,6348,7543,9585,9024,9059,7500,6622,6410,4414,5620,7301,7844,4513,3790,4186,4300,4668,5018,6117,5665,28072,33621,39080,28013,30308,25390,23517,20689,37480,31455,19998,16908,18766,13781,8056,4995,3165,2713,3043,3785,3310,3412,3386,4016,6023,5250,5312,4946,4418,2995,2033,1149,34855,31610,39646,37763,32325,43750,56116,83597,51105,62643,70637,61345,62752,89849,100101,93170,187000,180676,134064,93338,33206,20558,12960,5340,0,0,0,0,0,0,0,0,0,4582,8043,14760,17362,13077,10210,14176,14779,22914,34100,41308,34920,36047,50232,66537,47643,42366,55558,49716,34518,30547,16740,14111,13405,9888,5731,4999,4180,3364,2830,1184,0,809,1782,2600,2881,3832,5074,7598,21339,17848,17458,14917,16294,14760,9287,11870,17222,14595,9189,6019,3282,3118,3083,3746,2454,3455,3333,3290,4864,4630,4026,3387,2681,2115,2247,1810,2256,1865,1832,1054,4214,4414,3289,3174,2130,2697,2499,2658,2820 +0,367,738,896,1757,2766,3679,4422,9396,14786,15807,15906,16446,14238,7653,6344,75651,54616,51543,41908,40762,33187,19755,12748,3204,4790,7325,8758,7372,11406,11831,15830,22064,24687,32613,30669,32971,23836,24900,20666,24324,15796,14594,12886,7799,6176,4501,3229,9159,10948,18314,15776,16233,10456,6623,4030,584,1578,2025,3535,3781,6200,6379,7836,4719,3522,3944,5466,7112,5828,4220,4371,6210,4520,4196,3512,2992,2174,1503,780,0,398,650,962,962,1080,1082,1202,4170,5283,4684,5730,3574,5264,6066,6784,6951,6064,5935,5000,3063,4564,5752,5451,3109,3366,3536,3306,2740,3890,3665,3980,27018,32121,35743,27054,44736,36705,33951,29448,32600,23898,21356,20624,21502,16108,10300,6825,3051,3588,2803,3692,3423,4528,7132,9346,8984,7306,8153,5465,4608,3494,2112,1164,28646,40977,39435,48288,36257,55250,59768,81174,58079,59228,55351,65166,53469,82648,90839,71420,394162,242357,180076,112724,49117,40637,24862,13132,0,0,0,0,0,0,0,0,0,3290,6250,9871,11244,11920,15352,16056,17158,24024,35845,29316,49039,52988,65952,74206,52566,45320,49495,42431,37107,26326,16119,16362,15109,10890,9249,6147,6235,4140,2897,1467,0,992,2281,2380,2900,5464,5568,8162,14912,19762,15802,16139,17704,13653,9585,11474,15442,13117,9513,5421,3326,3790,5047,5711,5144,5316,4602,5157,9390,8593,5690,6238,4888,4257,3980,3686,3345,3348,2963,2516,5146,3946,2760,2654,1824,2528,2633,2666,3032 +0,400,674,872,1318,2388,2918,3716,6149,10368,12006,15982,9884,6982,6366,4398,59477,48855,51655,34896,56979,38579,27614,17306,5116,8433,10446,10948,8930,9652,12854,17259,20661,25706,24874,18774,26918,22560,24952,23983,18011,16766,13645,13774,10445,7034,4985,3393,15874,14927,20697,16605,18656,11917,9982,4426,243,1301,2370,4021,4990,6984,7313,7676,5948,4046,3813,6660,5778,5144,3901,4146,5064,3585,3268,3611,2551,2094,1586,926,0,278,546,842,546,638,610,779,2732,3628,3648,4395,2372,4042,4894,5687,5388,4765,4310,3618,2864,3402,3593,4293,2978,3145,2914,2271,1522,2146,2612,2822,32862,39456,33838,22118,45056,34794,36645,27770,26646,23691,16223,22220,20624,20309,14429,10306,3233,3723,3625,3358,3328,6352,8508,10968,15232,11037,8786,7279,6016,4974,2368,1223,29070,40503,45572,41827,47813,74430,90750,105281,63447,70572,63094,55506,41637,47054,66726,55822,472640,404950,241540,162770,77422,57400,46403,25722,0,0,0,0,0,0,0,0,0,3105,7178,10081,10503,13925,15784,16516,26461,24702,31742,28096,57048,79878,77648,81402,42721,52722,45273,35525,30600,22853,16302,16271,15486,11284,10038,6826,7233,6567,3918,1983,0,878,2106,2310,2174,5150,8396,11839,13805,15832,18916,15952,14343,13423,11084,12660,15841,11824,7733,5312,3141,4786,5524,6378,7212,6150,6652,6437,12835,8546,8255,9454,6662,6564,4648,4469,5993,5778,3846,4032,4826,3863,3301,3221,1200,1518,2574,3854,4290 +0,154,356,413,785,1331,1705,1749,3411,4972,5448,6787,4726,3707,2568,2252,70782,57712,47793,44904,64338,39243,27466,17997,5884,7307,11151,13442,15113,15913,13988,18567,20942,23633,27429,23324,24331,20144,19289,16329,14879,14248,13031,9934,12488,7945,6006,5474,18988,24686,31598,22622,16918,15666,11224,5246,106,1038,2180,3092,3757,5540,6279,7978,5300,5002,5623,6396,7079,4874,4009,4110,4369,3992,2951,3104,3040,2001,1831,908,0,128,306,444,290,317,344,415,1543,1635,1637,1584,985,1720,2252,2916,2317,2676,2294,1792,1234,1774,1559,2068,1521,1636,1568,1192,675,1136,1193,1146,31613,31868,28010,24621,40258,33674,31949,27300,30910,32788,20705,27206,23391,23887,20478,14476,2653,3306,4656,3926,5138,7202,9884,16766,19616,15131,11694,8486,6593,4890,3558,1710,34786,49316,43580,51820,55292,81212,66910,94066,72443,66794,43860,39950,40463,40639,39754,32917,413263,361170,224652,170042,146742,86500,54960,23854,0,0,0,0,0,0,0,0,0,2754,6611,7920,12332,13930,18589,21936,28686,29910,34642,40696,47984,69908,71809,65412,31396,41247,37718,37624,26289,23895,16330,12970,10427,9596,8614,6921,6914,5432,3856,1879,0,1083,1882,2171,2253,5298,9737,9506,14984,16936,14380,16302,11596,13660,11670,11403,12338,10126,6404,4910,3596,4278,8145,8296,8988,11870,11304,11018,12136,13026,15925,12772,7265,7366,5038,5616,5544,4244,4944,4664,4204,3596,2898,2404,1360,1846,2543,3123,3883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62127,59684,71612,65214,60962,49630,39684,25867,7218,8868,13779,15786,19820,21973,23231,21388,20442,23625,30556,24799,23932,24890,18632,12403,10177,8295,7856,9863,9322,6141,4616,5083,27172,24488,28582,24913,20889,16098,9208,4963,0,2238,5576,8108,9081,12456,12589,13743,7011,5278,4373,3347,3579,3555,3589,3995,3918,4398,4881,4322,3124,1994,1571,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25176,22101,24452,21500,11445,14230,15240,23452,29354,35464,37803,38784,29011,21446,20334,16209,2345,10934,15990,20606,21015,25702,29281,24849,21008,18324,19752,21834,18253,11712,6052,3033,51974,44276,25965,20290,24691,38380,44188,51485,62460,48893,28538,19496,6552,5345,4430,2002,553573,476572,510933,508509,382949,272691,250182,108901,0,0,0,0,0,0,0,0,0,1396,2964,3476,5306,9866,11373,22082,29404,21300,21766,29371,31482,48761,53589,55824,29360,32700,35640,37296,30379,22968,12525,10211,9346,8256,5448,5133,5705,5044,2831,1275,0,2839,6427,9308,10430,10331,7308,8590,12438,13481,14495,9648,9239,7122,7206,7958,10315,11211,10336,9275,6877,6445,8612,10950,9774,8415,6798,9200,12432,14220,14048,15648,7867,7298,4529,5840,5336,5482,4544,4275,5218,4297,3769,2966,3306,3142,2928,3461,3601 +0,586,1128,1662,3534,3353,3092,3048,5376,9220,12518,17467,14583,16010,19538,17790,57998,63122,75816,57522,46494,47634,54624,48544,15318,19629,21772,21126,34232,28040,28520,28645,17142,21850,25204,23787,18250,18582,13715,14640,11123,9806,11642,10645,11556,9692,7305,5814,28095,22606,23333,23828,18880,18810,14807,9592,971,3511,5224,7014,7564,9697,12068,11118,5010,4306,3729,3148,3197,3446,3182,2977,4150,4520,4018,3404,3451,2180,1235,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,811,941,1121,1072,945,883,727,508,510,500,410,192,629,1077,801,24567,22480,23418,18862,10484,15162,12278,17822,21052,27957,31127,28584,32354,23244,18576,12379,3267,9146,11296,17250,22976,28868,29952,25830,18963,25043,26564,22244,23081,19646,14656,11281,45752,44446,32501,38340,27217,33538,41734,49554,49137,42308,28372,21259,7882,7237,5927,5228,497662,572082,476519,450248,395294,316563,197239,111378,0,0,0,0,0,0,0,0,0,2222,4172,5214,6346,10174,11609,20092,31124,30654,25602,38007,33487,39464,46153,68072,24791,29812,39014,39359,33984,24581,13533,10043,7213,6526,4730,4150,5228,4012,2658,1074,0,2384,4586,7653,10030,8390,7727,7802,8170,10462,9996,7577,8086,6236,6499,7213,8587,8222,9470,7724,6886,8143,7234,7968,8592,8098,7181,9647,11678,12298,13017,13738,7263,7732,7362,7061,6862,6350,5639,5070,5200,5586,5293,4924,4795,3817,4978,4111,3337 +0,844,1964,3176,6657,7933,7674,5697,9400,16442,21377,31066,35929,29402,36381,29915,53628,56922,56232,43898,47912,56463,68420,60148,28266,27128,23471,23776,39960,43126,37163,27609,20393,24543,21274,20098,12587,9977,10600,12662,13935,13132,13004,12269,13775,12860,8782,7396,20679,20613,22930,27271,25406,17746,18214,13914,2258,4144,5918,7964,6795,8588,8530,6454,3029,3123,2198,2312,2630,2015,2381,1727,3197,3467,2676,2502,3148,2266,1438,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1867,1616,1793,1838,2174,1804,1762,1255,1066,1128,864,775,403,1286,1822,1971,21311,17214,20208,16686,13071,12985,14660,15660,12605,13638,21170,20707,26308,24476,20146,12878,3946,7350,12034,13668,27850,27746,30234,28202,23290,28835,28838,25829,30615,26494,20242,17744,37267,43580,35688,44835,38117,43790,44926,54576,44331,37427,35718,25450,12385,10784,9718,7676,634404,597821,545778,506411,315741,271407,189370,80948,0,0,0,0,0,0,0,0,0,2110,5160,8372,7620,9517,14118,24083,38059,34964,39678,49353,38971,47137,59198,65220,23947,29073,35160,32988,33045,21151,15706,9187,7745,4923,4048,3195,4572,3247,1846,990,0,2138,4054,6056,8474,6707,7574,8094,7005,8739,8962,6100,7105,5734,5032,4754,9132,8471,5559,5049,5733,5820,8443,8681,8031,7913,9260,9919,11204,11206,12520,13460,9586,9041,8576,7141,7783,7280,6178,5864,7167,7900,6358,5862,6381,5628,5402,4520,3592 +0,3071,4777,6570,8190,8522,12240,13135,15565,27825,36550,43508,44515,55309,53871,57942,67947,74777,62737,49175,53135,75826,78666,91456,38165,33830,24490,34154,42963,47542,51327,44324,14845,17236,19086,21020,16666,13718,13940,12774,19321,15884,15276,14885,15126,11066,9194,8054,22390,21234,28070,25700,20719,19138,14510,16351,3792,4456,7095,8226,7722,7197,8453,5974,2086,2050,1708,1766,1493,1444,1824,1290,2649,2654,1899,2017,2356,1564,1165,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,2594,3213,3054,2789,2297,2360,1539,1583,1774,1418,1140,738,1698,2626,3212,28248,20614,23012,16544,9332,13056,14326,13738,10155,10684,14984,14268,19336,16779,12435,9792,4563,8732,10703,14466,19756,24102,33740,31393,31592,29136,21336,26725,26262,32474,36685,30039,27061,30223,37558,47100,55544,52916,48444,57345,48615,35290,23075,19006,16799,11910,11266,11280,674056,660707,613183,470296,342889,197719,122938,74626,0,0,0,0,0,0,0,0,0,2818,4737,8152,7529,13010,17154,20316,45936,38276,43994,56718,47873,55685,58868,66278,18323,24934,27613,24118,29514,16604,11936,8024,5440,4970,3314,2606,2960,1998,1566,740,0,1593,2872,3878,5622,5510,4596,8183,4388,7402,8359,6367,5203,4656,4694,3745,8399,8370,4700,4528,4734,6380,8888,7425,7620,8653,11490,10362,14128,14266,14722,18509,13764,12461,10290,10735,8423,8492,6225,4988,9296,7594,5950,7000,6949,7652,8692,6804,4948 +0,2395,4051,8061,11858,14074,13322,17361,22853,30470,40823,48510,59223,49152,53357,57283,116134,98918,63307,52510,45530,57195,57588,80124,43661,43915,34012,34428,46911,63030,60732,63737,13700,10428,9843,11032,15598,13659,16664,16794,24498,22192,19143,18792,14540,10906,8256,6726,19505,16007,16217,21363,22012,23564,19029,22068,5992,8000,8733,10352,9524,8868,7686,6935,1225,1244,1199,795,592,926,1051,1008,1412,1371,1910,1571,1448,1009,474,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,3964,3161,3005,4068,4240,3617,2196,2021,1600,1759,1420,882,2313,3620,4815,27939,21784,21446,17042,7990,8082,7775,10212,8862,12764,13354,13685,11058,10236,8242,6088,4086,7200,12034,18434,19586,29186,36728,43848,49613,37534,29863,28347,26924,39095,41484,33045,14601,21208,35300,40198,62726,48269,57666,54796,46357,31726,27182,22164,16324,14775,11354,11816,821635,779777,744653,541762,269288,202342,113318,51889,0,0,0,0,0,0,0,0,0,2436,5886,8802,9868,11075,10559,15349,43651,53721,51862,54133,50716,47300,64667,62285,17744,14247,13947,17621,18151,14411,12662,7324,2489,1917,1533,1322,1608,995,660,324,0,627,1331,2322,2903,4726,5842,5560,3912,5582,6465,5049,5844,4895,3189,2792,10236,9123,8791,6982,3086,3560,3789,4952,6510,7980,11349,13283,16660,20365,18587,23608,16860,16018,15474,13806,12946,10838,5644,5774,12167,9908,9173,7846,8557,6817,5445,4903,6128 +0,5750,12531,15339,13381,18929,26734,33032,30525,35040,56903,58956,69947,58902,61318,82234,160925,114665,78851,82580,160781,127926,124909,151113,88302,96768,91370,79715,54366,63093,68799,65140,12496,10840,10481,12735,15753,18439,20087,20662,17279,19406,20822,18856,18912,13903,9108,8349,19459,17866,14137,18699,20136,18055,16835,21482,8413,8535,8615,10514,13156,9514,7336,5764,1162,1083,1051,704,497,700,868,786,856,1032,1064,1111,967,755,336,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4846,4356,4974,4998,6706,4976,4006,3236,1600,1652,1848,1310,1186,2216,4000,5042,16982,19240,16700,14090,5690,6151,8801,9298,7703,11149,9777,9130,9827,8737,7454,5724,4340,7130,8564,11321,20953,27274,38650,47424,53771,51424,30627,33420,36697,40034,35586,28444,28283,41516,48399,43876,66174,67413,53236,64902,56856,39318,32129,28359,18969,18076,14037,14252,573968,543586,621958,388410,206306,177648,119191,54682,0,0,0,0,0,0,0,0,0,3416,5880,9728,15490,17628,19435,16223,44549,43034,44544,41391,41710,41157,58526,51260,14027,14445,14166,15022,12796,10561,10781,5750,1843,1650,1261,1183,1362,918,511,238,0,534,1015,1583,2426,3367,3254,3676,3309,3410,5501,4755,5212,3922,2671,2433,6930,7664,5657,4702,3630,4054,3292,4801,4270,5536,9447,13012,12630,16266,13693,17916,14351,18116,17696,17630,12744,9494,7479,7162,11935,8150,10166,8320,7807,7186,5676,5982,6427 +0,9711,19767,32158,19944,28512,39692,47953,50635,56008,79679,87956,91026,84948,81958,87746,156359,125586,98200,107402,242303,176744,174934,166805,152860,148354,140923,108477,82709,79310,71266,76301,8690,8998,10789,13934,13595,15587,19634,20834,15693,16462,17863,16356,18644,13383,13784,14334,24126,24183,18536,18568,16184,13567,14518,20262,9359,7097,7739,10256,13631,8455,5131,3780,795,767,614,505,246,384,414,377,584,645,714,699,514,346,249,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6338,5426,5558,6314,7707,6490,3609,3133,1642,1683,1447,871,1137,2781,3634,4328,12740,12907,11758,9070,6210,7842,8036,7221,7985,6936,7954,5920,6364,5982,4777,4861,5975,6140,8126,10754,21745,32815,33207,47820,40919,35814,43164,45474,40508,48400,43236,46853,38326,42497,66187,64779,92764,92358,62633,58082,62024,50935,31525,28194,17248,16634,19948,16790,454624,403110,301131,280720,160187,115204,95429,45917,0,0,0,0,0,0,0,0,0,3253,6238,10113,22593,26679,23719,23556,39336,32235,26432,28812,32728,34544,33092,45084,12165,12445,10803,9994,10844,9156,5786,2982,1424,1258,1036,737,1066,805,382,201,0,397,662,1226,1213,1632,1968,2196,2306,3023,3466,3716,4071,2502,2064,1956,6023,6344,5162,3970,3278,3851,3571,3337,3436,5382,7580,9342,12555,10486,12064,10225,14569,13364,17632,20342,10570,10895,8588,10283,10041,8905,9741,10806,8336,5966,5958,6566,7279 +0,10210,25977,36716,31934,39364,43570,50702,57752,84260,83398,97256,127998,105314,112959,130258,126812,130660,146034,182578,312369,277087,261908,278780,264301,201631,249438,204024,128763,111917,80969,102178,3488,5324,5748,8948,13680,13848,16908,21745,20975,17635,25017,26242,26032,26850,21880,25094,27685,22306,22550,18686,15771,17589,15934,21644,16784,14938,10211,13178,13997,8032,3828,2775,406,422,352,242,122,178,222,203,330,326,322,352,288,195,135,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7809,7160,6051,6569,7602,5432,4798,4046,2576,2342,1930,1231,1227,2740,4422,5768,8877,8168,7971,5830,4266,5920,7254,5991,6441,5374,5422,5732,4626,4948,4604,4128,4673,5102,6355,9856,15102,24765,30802,46063,33636,32022,39953,44101,45174,51578,45132,45688,40679,55286,68939,79083,73360,76650,43416,62122,54574,45296,27860,26252,22272,25930,26981,27927,399114,268866,221794,227980,118475,104275,58239,33403,0,0,0,0,0,0,0,0,0,3582,6997,11075,25332,24234,30572,29701,38224,29306,26518,29429,29546,32539,28194,31320,7142,6332,4938,4268,5160,3947,2894,1628,790,632,590,484,554,392,171,96,0,156,303,606,635,806,953,1004,1348,1656,1550,1726,2061,1286,1036,787,6762,5924,5634,3418,2384,2471,2530,2074,1647,2830,3898,4556,8427,8075,7855,9122,12288,12582,14364,16050,13597,9632,7588,9670,7817,8493,9518,9164,9091,7622,6786,6953,7766 +0,886,1681,3501,5010,16397,26928,27839,35561,55824,76718,77309,75060,124237,140267,117072,142456,165780,163990,135850,98950,123140,118650,176406,185769,225468,276276,302020,245783,168651,165885,131000,0,3764,7316,11136,16120,17592,26819,31654,31224,30193,25044,37890,38676,38276,45839,43914,32321,24035,17888,14952,9947,7206,7009,9108,12870,9368,7229,8514,8485,5538,3315,1840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11155,11246,13484,11489,9544,10582,15086,17488,20470,22178,19870,15811,11918,10015,5611,5758,6432,7152,5509,3844,2392,2932,3252,3510,3688,2542,1876,1706,1298,1408,1676,2473,5116,17106,23708,28650,34415,38704,35102,40890,40818,42434,53863,57893,43265,45696,52029,48096,46792,39612,37248,28915,32679,32363,23854,17418,6822,14791,26070,31900,42370,47365,44243,44275,381273,395941,365818,427042,414236,486181,479397,373732,287868,205188,116951,120326,87169,51819,37582,18959,0,1890,4635,8877,11178,12284,10347,11290,16059,14321,16432,11878,7902,16617,22531,31032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8160,8488,11255,8694,9624,9918,10726,14798,20475,26040,23980,17989,14693,14805,14636,14507,12756,8740,7024,5403,5064,6629,7825,7615,10806,9507,6543,4792,1738,3102,5558,6638,6516 +0,1192,2838,5075,9070,19128,28071,36545,33664,58272,72290,63378,101477,106749,115600,107455,156801,135568,161598,134875,121122,164946,186521,219494,153623,192120,243178,241238,188729,172024,127894,108167,2647,7768,12121,12916,17574,21712,25026,30436,35823,34164,29330,32910,46180,40226,51808,42548,29340,26201,26779,17332,11959,7935,8309,8622,13029,9042,8066,8036,8036,5974,5172,3275,7435,7548,10020,8666,11344,14848,11892,10892,5864,7291,8566,6330,7060,7032,5728,5003,9435,7424,4581,5552,5232,5310,5607,5462,2296,1951,2498,2632,3118,2649,1914,758,10880,10696,10336,8820,9000,11014,12948,17901,15106,15132,17641,15013,10236,8072,6368,5058,5987,5538,6126,5434,2826,3278,3854,3899,5056,4155,4129,3438,3478,3707,3329,3722,3823,11774,22199,28686,40703,45310,30806,36750,53495,50510,56540,63190,59493,80921,104199,83084,39868,35718,26564,28042,22140,21972,19149,15866,8116,18016,32885,39038,43717,49946,45164,37684,403410,357838,309987,321650,287445,326325,310639,259800,219146,201987,111990,91167,76257,47173,36629,16502,0,2335,4816,6893,8746,7940,8286,10690,17578,15592,13923,12141,12024,17695,28808,30576,6004,9300,9326,9768,17115,12772,8378,7360,8720,7070,6219,4870,4072,3696,3483,3940,4972,3816,2817,2437,3360,3662,3134,3147,4226,3282,3434,3517,2592,2094,1352,756,17667,14550,9866,9666,8181,10559,12686,13623,19218,19682,22665,16360,15118,14508,11229,13126,10397,8944,7899,5328,4537,6086,5579,6320,11680,10260,9824,6705,4658,6299,5320,6495,6790 +0,2272,4514,6283,11595,25916,41420,46489,47883,48980,50218,46060,96982,84090,104377,104463,128555,197035,200353,145831,166020,229473,221812,236164,112260,150122,162530,222861,167488,146366,120012,104624,6047,7933,13166,12437,17184,24942,30546,37441,32243,33646,30996,24154,44734,38030,45140,43296,32875,30427,30663,27601,13064,10382,7279,7002,10958,10167,8435,6019,8354,7150,5990,5815,14393,18613,16795,16189,20337,24832,24880,21020,13164,13587,14864,14812,17380,15460,13354,10256,17052,14598,10812,13365,9125,11135,12587,14046,4037,4075,5336,5407,7646,6587,3363,1730,9191,9014,6850,6078,8335,11932,11764,14312,13666,12453,10042,12895,8178,5756,5686,4878,5876,7076,6161,5779,3418,3902,4512,3502,6016,5535,5946,5888,5747,5061,5226,7481,2706,8242,16560,35566,33732,42850,39658,50807,79271,77502,71934,107317,97282,95406,131338,166114,27858,22084,24346,21147,17521,13146,12324,9824,10655,17596,32001,32435,54219,51834,33082,29149,321652,302688,293731,292438,181011,160822,201734,176744,204673,143700,82412,55337,61758,48284,34387,16675,0,2179,4768,7007,7972,8104,7734,8752,17640,17306,12440,13514,15543,18463,25990,29985,13094,16418,20346,21934,30429,25734,17976,14831,15050,12629,12652,9137,8003,6724,8432,8727,8606,7793,6312,5703,6610,7348,7276,6644,9306,8966,6794,7252,5099,4758,3356,1962,24008,17027,11259,11037,8885,13471,14124,14848,23426,15786,15678,14692,13002,9652,9935,7787,7591,6042,6228,3997,2984,3151,4283,6153,11438,12634,13062,12169,9079,6359,6268,9362,10207 +0,3568,5578,7333,9746,28716,52488,58903,44438,48418,59126,63812,83313,83676,92978,105328,143082,179233,207624,221304,194544,199258,190653,208169,89177,116268,129118,155750,119020,122995,87265,60981,9607,10364,9886,11329,16219,22098,24699,38494,35730,30646,26144,31758,36716,39049,43167,40162,35143,31152,28051,29274,18443,13422,12857,9192,10270,10865,9786,7324,9102,8000,5909,6772,29413,33114,32222,26934,27238,29042,30009,38539,22198,18743,26231,21792,22223,24768,18206,15525,23392,21632,17407,19264,12915,15556,21344,22128,7913,7925,7517,7360,9637,8106,5052,2528,9849,6876,7950,5462,6489,8759,10056,11396,14101,11068,9516,10540,7093,4826,3972,3594,8152,8718,8840,6902,5211,6382,4917,3999,6087,6051,6838,8236,7236,6192,5890,8241,2736,11304,18980,32948,32304,41582,31395,40146,68922,71614,84571,109161,100368,127241,154508,184895,15020,17238,18243,18928,16107,14406,11965,9984,17117,24820,27728,34440,52560,37131,22774,28804,268601,256158,188448,196708,169954,143582,194947,147418,129343,101190,61202,48038,49320,33515,27836,11734,0,2071,2774,4986,4770,5768,6910,9452,13139,16954,17979,19098,18732,22476,29000,21456,20900,25906,31477,34216,41257,37888,24694,21620,20672,16062,17870,14743,9054,10508,10827,14100,11639,11742,11141,9301,9128,9537,11992,11950,12999,13735,10587,10817,10166,8302,5944,2828,23892,24154,18230,14471,10222,10741,13195,13231,20388,18602,13584,11826,13499,10122,10087,8154,10416,8058,5653,3896,2501,4196,4741,6474,11910,13928,11409,14906,13130,11209,8315,7535,7774 +0,3844,7956,11802,12440,20669,25372,52636,45954,46799,57898,77072,73926,95321,89841,89309,187599,236720,249545,288535,262544,250253,312488,260590,75592,78318,92063,85711,107146,74184,43779,37470,12855,11197,7996,9358,12714,18192,30102,30630,32474,33262,31409,33901,44223,36211,26546,33522,31676,30980,22187,17184,18447,17554,13629,10623,10439,11251,11513,9887,7876,6678,5260,6281,35405,31062,19672,20056,30022,43088,51184,45289,31179,30212,39764,42375,31749,21495,17299,13632,32529,28557,38040,31457,22562,25908,33542,35423,11616,14901,15112,14686,12272,10025,5600,2366,10342,10345,7370,5425,4372,7832,9569,13336,11123,10488,8283,9169,8235,6217,3616,2676,12374,11510,13216,12337,7755,8319,7654,6471,6412,8964,10089,9370,8332,8274,10304,11260,3855,10101,14894,24067,30573,33276,31684,44732,90624,117755,129078,109340,131503,171959,174090,147345,6279,12750,15757,17192,19246,13961,10862,7636,18576,27550,35740,39806,38825,32752,20118,17245,134195,190788,188099,191463,153268,128390,158072,124153,50469,33566,23714,24244,22932,15975,9656,5582,0,628,1419,2508,3622,5771,9716,10620,13209,13043,12729,17682,20801,24860,24744,27035,35721,35038,40694,37789,44498,49338,46421,46190,21794,21284,20151,16344,11603,12286,9491,13217,13312,11651,8126,10032,11980,11886,10870,12914,18166,13064,10777,14346,14844,8380,4495,2038,26492,20294,20874,14547,10774,10273,12719,12332,16478,12853,11171,10434,11206,8557,4886,5172,11606,10280,8018,4464,2328,5161,6474,8646,17385,16530,15330,14188,16524,13645,11183,8910,8674 +0,3325,5859,8876,9768,19127,24158,40520,40282,56020,80100,85352,75473,82884,76380,90764,215204,213625,246576,254319,302756,296662,314417,214042,56579,68898,96790,109385,88773,73458,59940,45525,18388,13818,12649,10519,11615,20510,25859,27960,37318,38810,31878,32358,32477,29056,34170,48704,35876,32068,27988,25778,17660,14729,10657,8369,7510,8058,8515,7566,6734,5926,6807,6878,35913,36651,41476,31835,42800,52630,59388,51273,35945,37233,46394,44652,52727,39449,26558,24204,46514,41333,54190,39166,21979,27320,38718,37679,20342,19844,21258,19750,13247,10516,5938,3130,9269,8048,7274,5401,5459,7200,8508,13216,11689,10266,7458,8683,7780,6423,3934,2929,14661,12418,13533,10724,6730,6096,6135,5818,5035,8019,10835,10228,6730,8544,8826,10123,4946,11190,13876,27702,40438,54642,56315,76946,92296,108749,107742,104648,133070,144210,201402,165454,4983,11127,15460,15330,13805,13770,10333,9118,12928,21231,29989,34957,38434,32162,20791,20812,121620,142006,108647,107527,149214,122974,116689,109295,31901,24450,18863,18402,20750,12140,8568,4522,0,522,1134,2182,2070,5318,7126,10477,13300,11492,14387,15599,18248,19264,17992,22822,27401,30326,37692,37894,39762,47970,50003,40600,35265,32120,29460,22902,24514,22496,23830,21653,11800,13734,10638,12484,14505,15478,16133,19485,29858,24838,19336,16160,16690,11276,5516,2454,21746,23862,21542,18588,13349,12223,10380,8230,11360,9994,8186,7624,8185,6306,3946,3509,15649,11122,7140,5922,2427,6520,10135,11845,17458,18216,15574,11430,15220,12335,13947,11998,9336 +0,2541,5513,7172,10905,19962,25574,34366,45916,56653,76096,79203,61662,55472,68214,86176,190638,200667,176794,202588,328219,278948,215500,148158,46290,88457,112182,105572,80825,85421,69766,53749,26306,16537,14456,14597,7988,15321,26300,33408,44282,37269,34147,28606,23195,45359,53474,70818,44278,47507,44410,29789,23498,19476,9722,6042,5207,6904,6514,6895,7338,7624,6552,5890,48423,56959,53509,60658,58801,58202,68955,78624,46910,54534,47535,52568,58282,56459,45486,35103,55561,44728,52574,39641,31260,38696,42861,34228,26921,31250,27069,20592,18757,13698,6784,3332,7931,5634,5755,5813,6855,8251,9376,10798,11350,10229,8852,8813,9391,7613,5281,4952,12104,12154,10702,10007,4000,5613,5888,5614,5006,7932,9044,8264,5014,7728,9942,10239,5928,12052,19129,34736,53421,61018,70554,87388,73190,110505,119252,114389,149298,182003,187693,172439,2814,7172,11103,11246,8452,8281,10736,10828,12041,21934,27709,32412,28252,27961,20555,21620,79639,74115,73614,51964,102066,101287,98096,87858,28240,22667,14748,13611,13802,9367,7560,3622,0,505,898,1794,1444,3355,6774,8202,10052,9704,12109,15588,10229,13877,14259,14729,30328,28517,30080,35960,32688,33970,46871,55369,37235,32207,33432,38843,48652,50694,43674,34958,12954,15863,14944,15251,15552,15896,17822,29665,31690,26772,23604,19372,16672,9995,5579,2314,22504,25900,22212,23489,17035,14931,9447,5388,6525,6795,6973,7836,3392,2348,2254,2233,16126,14090,9039,5852,2785,7492,11118,16470,16810,13834,13407,11666,17661,16049,16946,14412,10440 +0,2864,4386,6727,11952,19880,21175,30734,48870,50860,72298,58548,50072,46784,48923,48196,219597,242497,222984,224010,251536,248516,185413,110152,52258,86216,127305,96114,82366,79468,63779,66293,26106,19718,13661,13277,8861,18760,26357,26557,42722,37110,35184,27640,22613,52112,55145,65328,50860,50668,44672,30898,21621,18382,7656,6657,6282,5786,7435,7560,6886,7652,10458,7647,66149,56790,64474,66944,71736,67400,61252,84356,47432,54778,54830,56002,81264,67865,71941,51337,58227,50222,47772,44104,41122,40284,46991,39082,31096,30424,37454,26403,20283,17668,10136,4589,4877,4526,5254,5940,6390,6572,7613,10572,10057,10918,8559,10667,8663,7913,5706,6131,12909,12412,10340,9791,3888,4542,4179,5875,6486,7799,11399,8891,5924,7328,9607,9098,4334,15822,21055,29955,46282,50488,75229,93827,104537,123112,129616,122179,120229,125415,167669,160488,1258,4163,7587,8579,6849,9406,13615,13028,13578,18160,25091,31331,29706,29820,23200,26748,32992,31381,29690,31886,49068,46836,46450,41633,13760,10444,8641,8158,7847,5261,3390,1736,0,374,714,1179,1108,1882,3172,4635,6571,7096,8813,11512,7498,11731,11642,14240,36708,32882,32877,41622,40821,43514,44992,52444,32877,38170,48338,60717,62603,60657,39923,38792,16687,14572,16596,19802,27414,25576,21047,34199,29644,23708,28603,22340,22857,15786,8439,3322,26132,27305,19498,25862,20592,16010,12006,7354,2652,2769,3659,3444,1519,1228,1202,1014,16915,13950,9148,6638,3141,6708,9936,14110,19043,15280,11105,14302,15601,18313,20796,16127,9466 +0,6084,11557,24773,31396,36914,48567,55355,44580,42875,52273,34340,30697,34338,33484,26707,217715,209056,175110,120672,61814,69130,58005,56510,61929,71112,70795,95125,91953,91981,118729,112671,31351,35070,33065,28331,28324,27154,23097,21773,31092,35645,53726,51548,74920,59613,61349,62307,66083,66637,49439,30299,16214,15181,11074,7573,5878,6696,9167,8752,11387,13090,14629,12536,68110,72516,71275,76382,59866,63406,61217,72351,64930,64501,59722,47705,27976,32406,26500,39031,57568,43474,38418,24976,23105,26460,34001,38486,36120,38212,39736,33786,23748,16753,15700,8316,3301,4339,3952,3356,3278,4336,4843,7672,10818,9493,8764,13428,15970,13870,15769,12022,11927,13070,14474,13090,10592,8619,7470,6335,8248,6637,6504,9830,10440,10542,12000,11838,4736,20915,31182,42423,54830,63356,85534,99192,106283,96928,88287,98567,105320,90856,88150,140140,0,1340,2545,5194,6196,11218,13127,18903,20602,34614,38004,35839,38058,44084,49782,45674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,289,426,725,1094,1905,2098,2210,5683,11581,13828,14465,11528,10434,14586,44008,48507,45501,51965,53310,61966,66250,54054,41496,51269,54446,62580,78550,55567,48448,44378,15177,15053,13375,10754,10108,22926,32758,30901,37940,44000,44574,42686,28560,21844,14084,6750,27276,19667,17862,11897,3070,2282,993,589,0,0,0,0,0,0,0,0,16487,17749,13711,14644,17563,16410,22611,19699,15981,19221,20447,19850,16874,12978,14366,14444,11139 +0,5778,11135,19137,28741,33262,47064,47310,33128,37346,38969,32064,30994,30038,35004,26073,204634,186582,131782,93779,57438,63641,75538,82236,54638,80494,98935,109878,78396,98427,79854,89448,25321,27056,31616,30486,30404,26138,29073,33908,54777,72560,97965,115014,128204,93198,80175,99464,62427,53907,42848,25695,14998,12291,7564,6430,6281,6846,8752,8844,8703,11843,19944,16334,54831,67612,83024,73634,79402,75314,72172,80544,53000,44188,42862,44088,36543,43051,38270,57073,75830,64946,53114,41442,39611,44608,39395,38950,42247,33586,34820,26370,24213,20395,12269,7218,2431,3270,4140,3094,4082,4998,4446,8096,10790,10599,10137,11014,13383,14532,18525,12432,8395,11409,13729,13658,7537,7505,7992,6999,9523,7398,8384,9799,8932,9846,9625,8076,5376,16707,35949,47781,53296,68298,53376,83138,79985,88602,81772,75922,88218,90134,97350,112262,11311,9342,12236,14470,13061,12354,18928,20584,18400,25524,40204,46908,56791,50746,53692,47090,17748,15007,7472,6772,5394,5120,3635,3662,5716,5920,5197,3824,2455,1824,1016,555,0,178,349,383,520,1016,1522,1622,2007,5188,10247,11770,12106,10824,8381,12233,35158,39054,47154,71284,54122,56356,46512,44906,48046,59854,63864,80182,69258,66214,57389,56496,27556,27360,19684,16822,15972,19320,27766,28168,32198,33968,41868,44118,52567,38695,20995,12228,26916,26846,27180,20327,9952,10142,8202,5628,354,440,556,504,604,480,286,136,14279,14660,12162,10834,11880,13632,13671,13848,16622,15318,21943,17303,12776,10259,10717,10876,11765 +0,5199,10791,14967,26533,25272,34813,37350,36330,36020,34409,22278,23782,23797,26036,32678,155930,122516,128514,80757,59056,80580,87798,94420,68251,77650,95312,83938,77348,68273,75281,102404,17698,20711,20815,23012,26180,30174,27154,33220,74626,86235,127602,125330,154001,123222,97778,98006,56785,46735,27682,20309,12730,9040,7430,6820,6091,6594,6312,8726,7706,11661,19396,17581,50148,73387,77824,67191,117869,102703,90798,103555,38544,35924,44781,45592,55251,57196,52379,83917,91617,81020,56947,65440,58953,53148,57437,45644,39722,41444,29708,20281,27421,16732,10758,5675,2448,2324,3229,3103,5108,5501,4061,8856,13168,12243,10604,11678,12328,16198,15638,16087,8945,8323,10533,12294,7720,6296,6580,7254,7704,8998,9130,10283,10226,7636,8389,5728,4607,16492,29476,45824,34790,41767,46243,48667,69679,60273,78892,83327,115217,116119,107416,102028,25849,26180,18050,23944,21976,18213,20272,22889,10674,26395,34117,54777,78994,59614,57312,53231,31146,23662,18660,12737,13395,12268,9009,6708,9725,8841,10353,6582,5002,3549,1936,896,0,159,349,490,499,990,1216,1224,1563,3766,5592,6866,10630,9119,7008,8666,40815,52953,50018,73875,48406,36405,41845,36484,61019,58178,74400,82189,68973,61512,59450,59754,32993,27557,29880,23396,19598,19418,20857,17486,40439,49925,48552,56110,61011,40876,31304,23436,34448,35117,36143,30834,18149,16202,12910,9400,643,738,1197,978,1094,729,524,252,10286,8708,9110,8895,11414,11379,7858,11708,11860,13469,16522,12826,7947,9511,9982,10553,13169 +0,4431,8660,13434,15497,19264,25175,32506,37011,46309,44121,33100,25040,22618,18306,21620,108027,84857,81050,60822,48740,74600,91617,105578,66170,69656,71257,88078,77308,88125,103684,86168,10918,18846,26700,30968,29945,33776,37006,48628,83109,105150,115182,145312,177323,149102,104965,99214,33106,35004,17742,13596,13232,11114,5997,4951,4086,5423,5367,7014,6620,13480,19518,18092,40320,65097,76477,88060,101355,81986,74905,95735,35941,38922,50378,62108,58978,59525,48468,70394,84211,76440,71012,80950,74454,68832,55920,43632,41678,40170,31842,25501,19512,14228,11577,5676,1226,1800,2252,3360,5678,5809,4811,7829,13216,14262,14941,16630,17759,20014,15905,12120,8544,10213,12149,11347,6620,6005,5408,6580,7984,7880,7265,9415,9330,7897,6028,5030,5140,12638,22514,34944,32154,42065,55657,54405,80824,76044,91372,85942,95158,99512,96841,75012,33089,35086,26754,25862,24625,19782,26158,21519,9036,23296,43184,44989,84578,65153,56658,69959,40329,32414,19907,18536,16155,12956,11705,9320,17050,18890,16885,11376,7843,4980,3236,1720,0,146,307,500,498,930,878,1052,2036,3282,5697,6536,8952,8568,8110,8008,27162,46872,67576,86736,69915,62464,51423,68075,80205,82112,90645,69917,70260,65986,72517,82607,63316,54758,46895,41434,31861,31146,36744,26806,51792,59694,64939,63997,58112,41794,31495,29171,62270,53566,34109,35436,24596,21574,17366,12360,1085,1594,2254,1899,2320,1362,1013,502,7217,6830,7655,7926,7001,6866,5788,6259,10950,12023,12065,11145,6954,10083,8997,10208,12402 +0,3103,5892,7534,11634,18332,27409,32467,51192,51564,38894,36189,28254,32754,28027,22221,57438,38827,37294,53229,55514,76276,80746,96217,73535,66402,71628,87926,109596,96220,110301,91970,6963,16216,28151,30953,35342,40462,43658,49092,113861,120746,161820,168648,183950,144988,128876,101566,21140,16658,15086,12208,10353,8923,9369,6850,3352,3621,3196,3386,4814,10922,14360,17612,41477,63458,99538,126027,114704,108903,138068,105035,24963,40608,51534,75919,75388,87444,110597,129423,92274,89595,83888,69626,72472,61481,42639,37671,37792,35031,33746,31658,21154,13425,10354,5396,452,1597,2380,3270,4576,3664,4149,5920,12562,12181,16440,20782,19939,14252,11216,11557,11618,9176,10392,8117,8136,7200,7429,5571,6893,5582,6502,5634,6739,5650,4211,3775,4789,9592,11454,17677,31224,35397,55765,53868,74220,89746,112099,100968,101878,81627,76751,63300,56402,53506,57044,42640,37332,25228,23823,18825,7752,21778,39542,51575,75796,74728,59400,83182,57352,58749,41620,31046,20697,20122,14858,14405,30456,22441,17913,15728,10006,6218,3288,1401,0,148,363,581,605,722,1052,1136,1953,3131,3620,6342,9486,8125,7983,7771,15962,37758,72253,80080,105262,131783,130246,100632,115979,85366,71638,62064,56532,62296,83031,113150,86746,58943,42907,45321,36764,38793,31029,27563,62237,51396,39064,56191,59543,52140,36042,29092,74171,61170,48253,33430,29432,23187,22570,14367,1995,1630,1962,2507,2871,2860,2004,1058,4121,3530,3342,4300,4338,5046,4302,3939,6446,6226,8184,6799,8228,10037,9345,7572,8936 +0,3574,7128,12496,14652,22962,22648,32775,48053,44805,30629,29580,24248,31166,28297,28770,52268,45609,51345,61584,50105,68255,67916,75073,67354,69720,86643,80714,76854,87375,102640,68028,13759,21106,28422,37132,35233,37231,43265,48898,90899,96008,148822,144176,139049,155221,148237,107161,26114,29107,26999,24078,26060,19210,11622,5993,2462,2709,2966,3709,6259,9437,12302,22804,35885,64899,85407,105060,80684,110545,158778,144224,60931,73796,62479,85271,97797,108795,121514,124137,91840,107322,114988,94452,106058,70526,51444,51177,38996,34016,37386,33786,34886,23971,16640,6980,342,1308,2275,2778,4118,4024,4703,6874,12134,11396,14127,17141,22384,17061,11721,14190,10101,8162,8262,8348,8311,6442,6851,5902,4771,4397,5858,4720,4406,5341,4790,4356,3231,8577,9581,22855,28028,31730,49579,45792,49271,61668,107858,95166,110489,91692,87096,66616,60594,67724,70322,55764,70548,55319,34648,26854,11062,29708,55902,68243,89484,91570,84788,84641,66590,57671,50774,37000,40064,38676,25948,20128,35644,26299,20670,16504,11657,8132,4480,2364,0,122,251,351,412,556,876,902,1313,2872,3284,5355,5833,5098,6750,5032,33630,64999,94450,85722,102358,123716,149938,126034,121493,97224,86598,123228,106968,107666,127838,109803,83062,63868,48900,45540,40824,38438,37251,43418,66987,59626,51457,69130,65317,64834,69820,57528,72152,70739,65499,40182,27977,24973,26406,14700,5405,4447,5396,4533,3621,3560,2401,1186,3308,3007,2362,2514,3620,3342,2808,2612,4003,5146,5707,4668,7085,7375,8530,5902,7194 +0,4501,8671,15503,13552,18236,29108,32538,40606,39970,30399,28334,21706,27060,41744,42882,63362,49250,54578,67148,51728,57171,83330,77134,59905,68402,88601,74888,76950,69758,75520,67605,22786,23556,25648,39418,36687,46982,50073,43354,85527,75723,97481,119014,131477,158595,140012,116756,36620,33163,42252,48662,33606,19380,14188,7194,1164,1901,3144,3850,6408,8657,14064,25399,46831,46618,69374,81150,79242,102764,143835,123962,89084,105569,103228,95724,160883,127850,136983,102910,123667,141665,127851,83892,108203,77656,81436,73101,28908,38276,35828,38028,40660,26938,18776,10100,272,1264,2002,3013,3689,4637,5233,9484,8353,8996,11748,16422,18342,14693,15611,18626,8275,7486,9308,6670,6386,4773,4343,3710,3856,3509,3475,4344,2786,3867,5266,4986,2898,7096,12308,23808,21579,24430,35946,36269,31949,59962,73655,92899,111675,88387,70714,98200,92561,92892,75302,56614,82784,52918,46336,28335,11368,39030,54378,70110,101354,95234,102926,86445,73088,49482,44466,32448,55048,36674,31216,27208,34738,27034,22962,19239,11043,10075,6526,2768,0,62,144,290,229,300,467,636,1076,1935,2956,2964,2972,3013,3320,3837,47648,85079,94884,76669,83052,98875,152070,106375,112329,95005,112178,142476,162894,129816,131806,130740,91010,84034,64274,56137,59041,63180,46409,48380,72916,78134,65169,90278,77715,90332,104041,77528,65953,72347,74616,42044,36999,27422,21700,17495,7432,8934,7672,5329,4378,2830,2443,1100,1916,1378,1334,1952,2399,2125,1514,1432,2576,3240,4214,4841,3734,4456,5296,5226,7261 +0,3954,8279,15175,15180,15726,18520,27608,36015,25956,27372,22874,17983,29809,56660,51487,75372,57832,63374,70560,54622,69722,89377,78125,68197,93458,103016,82008,72125,71686,83761,64240,23244,30198,37558,48984,58160,67828,63312,77976,118113,107950,106385,136141,140107,148098,156397,97500,55264,48504,39968,50019,43026,29992,14774,7900,564,1644,2417,4736,9386,14889,21970,24384,59017,67912,59022,77835,94686,117176,152966,151968,137958,137664,112468,118650,186125,137750,162280,132428,98382,125541,112247,103985,96904,80865,73882,56782,36064,48058,58513,45340,44074,28194,17537,10266,157,970,1372,2482,3478,4986,5048,9641,9024,9686,12980,15546,15739,15313,13272,16366,10761,8471,7764,6292,4081,3147,2743,2278,1994,1826,2549,3231,2488,3393,5688,5386,1450,6030,9716,16054,19459,19806,23856,25494,21729,41812,49646,64509,77599,76889,87515,112638,97640,93850,64269,61412,82548,64860,41948,28017,15917,40435,79918,96072,106148,112218,115435,92547,108698,79459,60204,56696,51317,42606,32318,36415,35834,33652,24208,20927,20655,17092,9146,4716,0,37,76,140,119,165,217,281,602,962,1224,1473,1629,1920,1512,1711,63430,70326,97522,112090,123818,152719,224271,167337,166540,134524,152234,179976,190192,182758,116466,123197,126142,85862,100653,85676,70798,86866,73829,61844,65450,64675,64353,85672,88851,97746,125855,112400,104575,96090,96557,57572,32215,27182,23275,17175,9556,8106,9500,7454,5898,4158,1979,1066,796,720,732,1074,1234,912,638,662,1430,1852,2192,3024,2418,3410,3779,3946,4806 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5437,10578,13274,15639,11976,11318,14528,19547,25192,26003,27621,22948,24224,36069,37920,35157,43679,65131,74353,59058,54981,48874,33312,33981,32256,21549,15450,8461,16222,27302,26738,36373,30416,33422,23244,22595,14192,11389,5465,0,2434,5264,10110,12571,13036,16049,28339,64821,64949,78211,98533,115621,90906,82198,73152,70352,57336,53513,38995,40365,35427,23307,15453,5880,5754,6740,6557,5209,5980,5221,4811,5186,4806,4973,4846,3377,1914,1397,606,0,340,566,888,1273,1553,2265,2512,2769,3093,3024,3545,5783,6442,5394,6851,8198,10570,9778,13793,15231,11100,10488,7836,8729,6487,5469,3821,1533,2538,4703,4991,698,885,813,732,544,522,586,459,345,278,285,188,72,63,46,20,0,3538,7601,8048,11378,11738,17808,18726,15975,24487,36478,52564,91898,116438,104322,130764,122502,78449,63980,60605,62758,43293,19491,11387,0,50799,86558,142826,163339,211528,228124,202968,186312,210818,199609,251726,331732,280922,274645,243864,217252,196348,148523,136502,119303,98594,81203,33928,71552,65076,56672,70125,69075,61859,50978,55700,74338,54904,46848,48780,38951,55930,73744,95733,155189,167426,141067,194380,191109,214209,168024,117499,60943,67270,66153,50677,54280,54830,59034,85099,110414,102235,135318,131912,97412,79428,100167,66103,56384,58736,62115,44459,37034,31796,23010,11144,0,0,0,0,0,0,0,0,0,196,456,723,1266,2405,2826,3615,3282 +0,37,81,114,224,188,212,264,408,406,329,209,117,144,262,302,1338,6039,8050,11070,12320,13510,10550,10966,24912,23708,21707,20134,21580,22284,34582,32940,36198,48264,72710,70293,56920,52590,53373,39292,34264,33096,35582,23942,11933,23146,31681,38129,38106,27173,34433,24133,23570,18622,13858,9482,3772,7182,8874,13487,16732,22073,25883,29090,76250,74297,83059,107409,79295,76852,68578,72285,69775,58278,50495,42062,48756,38802,22952,19838,5636,5278,4524,4270,4627,5044,4390,4667,5472,5151,5240,3960,2990,2273,1290,629,0,314,600,672,828,1290,1875,1836,2230,3404,3296,4070,5731,5506,5757,5954,8654,8758,10353,11468,13268,10903,7818,8346,6726,6612,4482,3426,1714,3202,5547,4802,792,882,858,746,368,394,523,400,468,399,322,281,139,96,73,38,0,5636,12107,12877,21591,23034,30567,32922,15842,24600,42312,66754,85407,101966,100701,129914,109752,69611,54728,48757,41402,33988,22206,10314,6608,38364,75218,99666,131636,169222,187251,172659,247259,245562,209674,223278,309587,307998,279193,280387,164256,156954,129258,154056,153452,97094,69240,37111,65298,62914,59595,58456,52762,59727,67457,64874,68074,54016,61410,49160,31266,63192,87427,134912,195750,180156,167949,240512,229278,219580,132896,81053,86818,90594,93622,69391,55129,50155,52398,69834,74636,99128,105228,115888,116847,102350,83505,57744,55285,47880,40614,31248,36067,24604,18916,10252,0,28,57,94,66,110,146,142,161,314,632,924,1371,2330,2832,3357,2996 +0,89,162,246,390,444,444,604,1004,790,672,486,278,418,461,694,2481,5433,8246,8725,12931,11589,13567,11668,24477,18932,18604,17544,15151,20598,21966,28421,54124,54701,67848,47756,61822,44614,41628,31290,31093,40004,38130,34478,17751,28938,39530,39161,32483,30259,24790,16913,31035,24467,19394,18829,7740,11198,15320,19773,23186,24606,32684,34107,73602,74806,76082,89630,73270,75748,61396,66329,66181,60200,46240,31474,47914,44756,32396,20632,3960,3288,2896,2311,2769,4695,5099,4936,6768,4891,4861,3240,2713,2154,1486,886,0,252,514,734,646,1094,1244,1238,2110,3529,4402,5640,5288,4290,4957,5056,6745,7223,8544,11714,8326,8111,8562,8139,7965,5890,5550,3287,2147,3654,5229,6230,978,801,724,730,373,413,345,360,492,531,460,341,160,109,82,39,0,6381,13452,18814,29633,32435,42374,50366,12081,26015,47826,90799,103133,109775,99269,89064,77759,66697,49634,36456,32519,23717,19594,10358,12501,30915,51488,63110,89035,117720,116708,100110,235066,205659,169867,132583,275917,222718,265813,261618,126373,116092,120532,148298,144397,102591,58816,32880,56608,49772,62117,83248,58188,69231,63710,52020,82467,61360,56218,41284,28344,91833,140214,170251,213470,246076,267046,317846,217081,206961,163737,108889,143447,139917,105542,97390,50187,45951,39682,43931,67523,73104,76436,99470,108600,94567,58442,43338,41267,34849,29880,20328,23928,14927,10664,4898,0,59,98,187,157,192,279,259,273,515,634,841,1103,1636,2538,2560,3643 +0,129,333,402,528,626,686,776,1310,1145,1100,787,388,534,640,899,3336,5126,7755,6878,9878,9723,10523,10269,19666,20966,18082,16332,18992,22328,23602,22091,60520,79124,78677,62319,68176,45514,40917,34831,42053,46946,42513,40107,28855,27862,39573,32865,29352,29974,23090,20362,23080,21472,21768,22746,10269,18575,20616,21388,32278,31428,27796,26506,79156,63171,77286,83550,114053,82918,86516,72148,48768,44715,42519,37406,34991,36138,32319,30478,2675,2108,1675,2159,2856,3740,3989,4418,6388,4646,4112,2558,1853,1472,926,450,0,164,354,430,406,723,1028,1279,1719,3210,4301,4719,4327,4328,4928,5628,4428,5451,6002,9418,8818,7957,8048,7518,8210,8396,6417,4176,2231,3318,4499,6048,1176,921,773,711,418,358,325,307,662,610,519,426,270,192,113,60,0,9796,21602,27922,33655,45566,49742,58556,13890,32830,62196,80817,85928,93214,80817,64896,51565,47787,38075,30187,27010,23228,14416,8731,15686,31380,46345,52310,63381,83932,91626,75230,221144,184838,140920,111566,213570,200803,168957,194519,165102,120204,132157,133780,115341,81934,70695,32350,61453,61400,85024,89512,71339,71070,94644,73685,122636,109664,75956,59104,33270,83051,120256,146307,316378,339384,298496,314372,271706,194840,137472,103978,144972,163733,144601,115426,64962,59853,36037,37284,106581,83392,74761,94455,102302,79699,59077,44288,31177,27595,23163,19396,18408,13726,9585,4952,0,78,114,248,358,398,308,342,501,754,895,829,1154,1326,1639,2366,2912 +0,207,428,684,913,1262,1248,1346,1611,1662,1415,1090,526,770,1129,1135,4865,5777,5624,5992,5866,5104,6814,10350,16628,17338,22013,19654,19130,19783,15163,16263,87415,73770,46340,43328,58074,51419,49968,45752,52636,43781,36555,44850,39221,44847,40501,34446,16542,17378,13252,20009,23650,24191,35799,33574,16252,23768,27587,28452,31218,26742,32405,27554,62338,78680,116638,103716,117488,98848,95168,84047,25223,27792,32307,36747,32455,29835,37132,27628,1312,992,1132,1583,2275,2706,2880,2752,4667,4313,2726,1898,700,505,392,167,0,46,96,160,200,320,354,738,1477,2910,3484,3780,4390,4008,5595,5591,1938,3092,4405,7913,9297,9828,14393,10416,10241,9196,7233,5184,2724,4542,5551,5264,1222,851,729,462,361,388,298,372,867,823,804,703,414,360,216,130,0,17836,31523,38592,47918,51119,60415,59295,21323,30025,34849,63980,81547,67327,78064,51107,39214,35576,29342,19191,15640,15267,10067,11059,23736,21772,24780,34464,58396,40803,34592,41511,282249,207985,210322,191376,111944,117969,145654,155693,150852,136671,113537,120187,117852,79922,55808,32715,75701,75698,78123,82418,102274,111658,96430,77226,137832,107428,89754,65791,39177,50046,80178,118916,376920,412501,323042,334284,254514,221969,154164,132042,167572,131340,136103,91109,76450,82873,84992,66834,113884,120190,144306,118817,93576,88645,82357,49598,12466,14860,16771,17530,13552,13436,9831,5159,0,68,157,288,457,418,524,568,615,773,914,823,858,1113,1873,1639,2220 +0,222,550,870,1070,1305,1577,1568,2786,2100,2228,2212,2294,1695,1961,1818,5542,4856,6530,6201,7816,7662,7735,12624,17175,18108,21297,19375,11838,11964,9944,10224,61914,55730,49386,41691,45032,50165,38718,42906,41041,43000,33240,33501,25360,33086,24467,25140,13807,14518,18485,23037,25945,32456,34153,56364,36150,33964,34968,42722,48553,43719,44633,47804,59159,73614,77200,87102,102895,82035,93125,63066,33511,34919,29956,29637,31848,27851,35059,26000,793,763,772,1000,1488,2116,2511,2191,3141,3136,2452,1315,453,412,329,134,0,36,90,134,141,202,308,470,1117,2216,2578,3096,2779,3464,4380,3316,1761,3233,4372,7372,10082,8972,9861,9568,7860,9932,8761,4822,1885,3806,5018,4558,1504,1072,626,530,460,405,446,360,730,722,660,556,485,393,191,112,0,15750,25936,33432,42557,48860,62000,56448,31497,34799,53228,54544,59579,63561,101521,90793,23540,29124,26587,16740,15994,18534,12845,15064,21316,28092,38430,47761,55527,42768,37025,45983,234726,178295,211246,148096,105352,119637,131334,151942,114170,100200,77358,93832,108687,86528,49479,22652,64652,81370,86542,72486,116314,98719,75796,65172,116885,89506,78458,62402,50295,73282,98842,98651,298723,362664,360551,239719,301850,225838,169280,148117,218807,143572,164496,122202,59763,69270,67812,67381,140029,133879,122831,113288,79616,63740,58276,36090,9482,13116,15800,15315,8740,9144,8112,4718,0,96,181,282,488,574,756,994,693,884,1014,1015,910,1308,1938,1510,2130 +0,293,552,998,1070,1694,1985,1747,3373,3004,2866,2618,3320,3229,2433,2683,4939,4765,5953,6671,11078,9666,10438,12129,13441,13468,15680,13107,8564,8598,8702,7123,58519,49177,46103,41852,36936,36660,37308,33040,34695,31886,33188,30781,16678,13545,16850,11488,10185,17226,18936,22325,24898,34668,44672,63094,49891,35028,35943,66954,55775,48098,61842,57687,66069,62298,56332,60924,81924,75033,64284,76990,40119,33157,30650,35559,21862,22511,26440,25541,626,692,548,784,1281,1193,1507,1601,2766,2326,1390,888,418,357,210,108,0,26,54,69,98,129,210,306,695,1142,1760,2024,2141,1928,2644,2293,1211,3092,4292,6517,7877,8012,5880,8952,8384,8165,7518,6544,1844,2126,3106,2837,1381,947,652,520,524,556,492,480,633,650,630,576,488,372,242,105,0,16679,28332,29358,46674,54204,71642,56983,46905,48246,60794,72027,58855,93746,100464,129196,12700,16609,18667,13117,15534,19281,17564,16934,25930,27610,41596,40479,40133,41580,41566,46005,208510,180825,144022,132662,106213,118002,131026,90533,95369,77116,58688,76890,116481,70753,37770,15532,85618,108364,104136,107922,99710,88020,73746,48588,72757,66230,66020,69801,77735,85375,100267,119952,336758,374346,341246,290471,321027,284851,245566,199415,241306,227392,145158,95845,44272,47750,67768,78749,159784,126794,122716,102272,67338,58892,40982,24014,7894,7854,9923,8293,7627,5484,4254,3338,0,84,176,453,667,1054,1196,1321,1032,888,945,1069,678,1157,1450,1704,1434 +0,369,852,1176,1432,1759,2102,2518,3056,3290,2833,3874,4841,4000,4092,4895,7661,7718,7714,7654,9553,8733,11684,13784,16205,15138,12668,10205,7947,7834,6266,6238,61515,54948,36990,29824,21610,24086,25450,32114,31122,27126,19820,18364,11982,9334,11140,7318,4901,11880,19640,26246,33660,43444,61270,70786,62690,69102,53466,89656,74054,77690,73417,65854,75867,56738,44062,57282,67114,58480,40814,50858,43719,34649,23067,26500,16670,20330,30390,26000,258,288,305,416,522,584,771,762,1496,1123,682,426,219,159,106,58,0,15,30,33,49,74,124,130,410,672,958,1014,1238,927,1350,1114,1044,2170,2736,4935,6198,5550,4804,6516,6170,6216,6214,5026,2000,2508,2410,2043,1284,980,642,632,539,656,564,658,663,653,662,494,511,349,243,121,0,18614,41669,46754,58926,73025,67398,81840,94927,58756,66290,55564,54628,76108,104204,166272,7460,11678,18425,15668,15460,16122,19144,21031,30940,40252,44297,41000,45298,51208,47346,48344,158523,152586,147138,131728,150246,162004,168812,109260,79814,77938,68832,75772,72292,51533,34233,17280,78304,87309,97326,107836,126473,105570,98509,62984,85392,75226,71468,65890,74050,78914,78838,86424,352232,324876,258075,309698,357156,289414,250207,238397,282083,187119,120540,90668,47337,55161,73026,74226,198754,149389,180530,128992,94795,73167,44424,22730,3736,4445,4914,4897,3709,3204,3194,2229,0,81,191,428,665,924,1383,1534,1284,984,738,854,670,1256,1547,2012,1842 +0,207,369,560,665,1358,1845,2714,3471,4069,6282,7166,7422,9930,9717,7689,9170,10877,11437,13132,12960,13940,16026,16670,14808,15616,14252,14540,11332,9929,6556,5196,73889,58940,65470,47389,44423,51789,53905,49730,34860,29327,14688,11096,10346,8578,4014,2222,188,17295,42461,63569,78157,98858,99279,95414,97425,105196,119469,80276,78750,78876,68326,85174,72699,75442,78426,58599,67727,57812,67398,49463,37234,28188,20882,20921,15840,19944,19421,25962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,2932,4115,5489,5236,4201,5013,5053,5379,6344,7116,5536,5168,4265,3600,2156,1242,1331,1625,1542,1375,1501,1307,1038,689,642,575,567,547,449,360,158,0,17696,34083,47891,83285,86118,128271,144464,112893,131712,127788,168400,229936,245879,244077,186832,0,1017,2473,4144,4522,9366,12243,24380,32056,33297,41962,45984,43252,45230,57752,66120,137402,137541,98420,121523,156151,147588,130089,121388,94632,86760,106542,66431,58849,47646,36806,18998,81398,110299,129829,118367,145558,133784,137306,89677,82223,56292,50923,54417,44219,51264,54411,80226,264046,249733,193422,216863,173960,158002,170863,209974,251676,213860,178294,155922,122523,116515,71706,100347,178070,134661,154548,173999,150561,115351,59670,26162,0,354,696,1096,1199,1533,1730,1530,0,231,471,594,923,1282,1571,1564,1492,1449,1079,1164,925,1256,1650,2361,2301 +19,224,360,580,686,1084,1426,2196,2534,4013,5131,5431,5557,6572,7232,7299,9716,15042,17633,25346,29786,31631,25556,30190,17104,20614,16450,16272,15150,12764,9520,12515,100434,70743,92529,83610,54504,57034,83627,59067,49427,44646,34870,27221,19953,16453,16238,12950,5433,23820,41836,50350,60294,79156,107358,108026,79282,89134,101081,68582,56577,66758,54588,78576,68002,75695,59372,59774,42041,43157,58911,39094,48550,33832,21073,20114,15565,18887,19658,24028,2099,1617,1124,826,342,1752,2732,2644,3191,2050,1469,866,320,256,113,56,0,0,0,0,0,0,0,0,0,5,8,15,24,24,29,33,1062,2548,3746,4358,3709,4222,4756,4364,4965,4974,4704,4179,4517,3766,3510,2162,820,872,1340,1312,876,1254,998,964,1138,838,643,590,438,462,346,172,0,15162,35087,50702,77137,79548,90128,100687,81293,92196,108183,156468,223801,252616,196850,228140,5021,5676,6232,7768,6770,10639,16968,23308,29476,31437,36075,37793,45454,52150,47611,63060,83988,113204,97525,116768,150138,140808,126398,91450,98209,92790,98054,70927,70857,48305,33132,16942,61646,72676,99600,112558,135510,136338,114967,72644,86268,71615,54819,41845,40765,51972,49828,67634,232972,181148,164282,187910,187787,159396,189569,197836,160915,172970,143913,120226,125979,120686,83660,122012,172099,141188,125965,163444,172674,103276,57678,30542,2387,2885,2988,2508,1628,1764,2358,1740,324,496,731,900,1096,1056,1248,1348,1294,1274,1626,1244,913,1404,1548,1914,2512 +42,230,452,634,695,954,1611,1976,2148,2818,3866,4077,4006,4394,3379,4175,8067,18028,24714,42429,44361,42958,40064,37463,21458,23312,21932,22517,14938,15557,16770,20695,95990,94507,112628,119942,89793,92782,92542,75840,69818,68512,52698,35004,26896,29578,28225,28650,9190,18974,35385,40371,63580,63488,87421,106504,80279,94858,81304,73774,53979,53894,67264,67428,69681,63798,56009,44726,37080,39964,44070,39230,44747,30860,19490,14776,16911,24485,27916,29964,3853,2880,2106,1666,770,3482,5485,5550,6732,5710,3598,2084,743,475,248,107,0,0,0,0,0,0,0,0,0,8,14,20,39,52,51,46,940,2013,3148,2700,3995,3245,3492,2944,3963,3411,3819,4017,3105,3292,2574,1782,658,626,625,730,725,798,1078,1263,1351,1153,816,542,478,436,256,130,0,13212,30064,41174,87082,65068,57439,69451,69359,87648,95760,131906,229826,246050,238480,241186,9773,10636,11483,14194,8043,14664,16614,20682,17940,25830,29120,33734,36223,47465,48126,44869,60252,64506,83518,92253,107952,102643,92675,87802,83415,83119,65598,64924,64164,42291,33874,17824,41645,50774,66630,98322,126005,87202,85012,71912,77583,72605,57424,47110,51452,50357,59855,64700,154494,170043,140984,141661,163007,172066,191148,221931,143946,130958,141313,111582,141379,141683,102119,98116,136437,147282,147123,169583,165419,119918,51224,38066,4927,4324,4910,3325,2021,1774,2200,2219,750,872,811,1146,1013,1160,993,1152,1368,1526,1657,1193,1067,1478,1493,1411,1914 +75,294,448,676,858,1124,1803,1844,1488,2020,2569,2908,3264,3060,2846,3525,7016,16548,29444,40212,46444,43162,55142,49308,26212,24858,18422,22344,22838,28386,40798,49565,96583,109414,131725,128087,127349,119724,156701,112552,110806,98376,79361,48194,33400,37308,39832,40896,11160,28914,44964,63814,85502,74372,72058,101443,58989,66698,58694,70676,63368,67534,55766,75400,48287,62169,57557,38926,34075,29204,39465,40512,35921,25637,14721,12928,12788,23530,36598,33556,7872,5299,3726,3062,1425,3692,8662,10442,14579,12666,7249,3354,1457,924,502,230,0,0,0,0,0,0,0,0,0,16,29,36,50,60,66,72,1157,1784,2897,2432,3521,3308,2901,2508,2345,2512,2095,1946,2132,1902,1672,1283,430,506,432,514,610,722,1076,1132,1566,1486,1300,702,338,292,254,122,0,15371,23198,37466,81557,61332,41338,64516,51694,72204,112892,156829,184508,212048,205882,229522,21453,17099,21190,16745,12818,14740,19606,22452,25792,23258,19108,20482,26531,31300,33346,32702,47970,58770,63472,76124,85687,87378,80002,70386,82377,56914,43192,50566,56266,36500,22830,12490,25645,37570,56459,67716,95903,84788,58905,45452,68414,65998,65566,50236,51169,69768,66089,70560,133741,120912,91432,105399,101428,121232,108646,138682,168349,149783,169090,132317,113636,109086,97177,97528,102193,100928,117196,128294,139752,84408,47446,40015,6929,6278,6073,3698,1960,1951,2561,2390,1061,1034,1059,1072,1110,979,979,706,1204,1764,1413,1240,996,1448,1525,1557,1620 +89,408,652,665,1000,1208,1559,1874,937,1520,2260,2142,2404,2626,3591,3133,9434,18930,23246,44928,55778,63540,67448,77026,26203,29340,28611,30286,25659,37104,44347,48924,111437,90902,112389,112915,138740,160615,131552,156899,142548,106601,54044,42400,35660,37651,37368,46631,16051,42363,55037,103026,122304,158729,155749,127151,45152,50536,55322,66299,57720,55785,49589,74408,46331,31263,24296,22447,21682,37774,44608,42024,32581,28201,23411,19106,13464,15831,20504,32157,10050,8008,7631,4126,2432,5798,8272,11901,20899,15066,15162,10116,2135,1614,1081,442,0,0,0,0,0,0,0,0,0,17,27,44,57,75,110,137,987,1539,2442,2124,2674,2708,3289,2573,1006,1062,850,688,754,684,680,848,246,324,318,430,641,768,779,926,1635,1471,1043,578,347,203,140,76,0,16428,32383,51944,55676,61238,62900,51996,23665,68811,117937,133901,149310,177568,245464,195949,28245,23354,21154,18851,14694,13450,16246,19773,26296,29685,26146,18524,11904,10970,9142,12687,34532,48560,63668,78343,75320,57596,65086,38026,62732,57084,48953,47242,48372,35032,28678,16101,14346,37586,54238,61236,70747,66281,43391,24692,45734,48608,38242,64123,75820,68104,60517,87251,90635,84617,110274,110899,79137,53812,51880,52906,139972,118850,94608,101567,119821,88150,99835,84022,52612,91510,110272,114810,109982,73874,56308,34882,8755,6181,4218,3556,2038,1910,2702,2612,1219,1371,1470,1609,1312,876,538,504,1462,1274,912,1078,1098,1498,1485,1276,1572 +120,358,532,624,822,1194,1480,1681,514,988,1601,1841,2952,3152,4048,4372,8006,14922,28659,40362,59448,51965,67963,71211,37580,39005,34684,36186,36333,47105,51821,50843,94136,93748,123196,118021,146574,167908,161223,186044,137884,125830,89958,62240,36800,30390,40220,51090,48280,49461,75453,97344,139989,116286,115674,119407,90714,87276,66416,70680,78784,65482,44109,58264,76436,45360,36328,28411,25210,37980,42104,41712,29655,27323,23456,22939,15790,21622,20604,26445,12355,10168,7076,5877,5035,9010,13279,17274,21392,14798,13890,9070,1954,1762,1224,695,0,0,0,0,0,0,0,0,0,16,33,61,72,110,126,156,702,1099,2007,1817,2561,2482,2151,1971,957,777,826,622,550,458,589,588,410,591,562,714,644,675,779,926,1653,1476,873,631,515,328,206,112,0,15630,31015,34700,47961,50394,48208,47163,38324,70250,110974,121950,136790,159896,173339,175622,43590,34822,33366,25462,20992,16789,18550,19610,17376,19232,17503,13249,13585,13364,13039,16012,30970,35436,50024,56732,65971,44867,44018,28542,44050,40878,41000,37328,38843,31956,20997,11618,11564,26009,30027,30369,63187,51516,33089,17935,32499,33332,33404,54830,58816,57596,58245,90987,69476,85202,74618,62818,73919,47460,47928,41403,97904,84208,64791,83648,117201,99050,92314,72164,43706,91052,128922,106688,113870,77887,44864,35688,21825,13510,8240,5344,3468,2844,3221,3040,1139,1573,1730,2054,1896,1482,816,657,1747,1692,1446,1172,1319,1528,1427,1138,1122 +136,336,429,468,536,685,962,1198,287,584,718,1005,2572,3986,5849,6224,6796,19404,25867,37823,66158,58728,67163,81982,44643,44140,47552,34316,41968,57384,65722,70615,123493,133264,109872,141872,209294,225213,212019,171964,169772,144343,123535,87002,38579,33714,38518,41730,64528,70895,82450,116424,114344,106315,80514,97107,142314,127128,98142,95566,87274,77692,45023,56546,84666,61034,44644,33902,32164,26980,34056,24921,31131,31682,23469,23663,20996,21823,27755,26292,12181,9067,9188,6130,6530,10400,17355,24324,20555,14222,12722,6757,2451,1896,1155,498,0,0,0,0,0,0,0,0,0,23,42,82,73,149,180,177,373,769,1216,1120,1748,1683,1683,1612,676,531,535,536,232,320,418,444,610,598,665,684,596,668,634,993,1298,965,1084,839,585,400,256,114,0,10097,20568,28042,47531,45210,35054,38852,52741,81958,105380,118793,115184,129941,119038,138333,73020,50112,39780,27074,26336,22162,15878,14144,16065,12587,11246,12398,12147,14191,14765,26356,33078,34516,26658,32638,42192,34538,27794,18915,28063,22361,22684,18636,22940,20158,12110,7026,6744,13038,17830,19319,43300,35071,26118,12434,29998,37982,40218,52840,47656,62605,64055,89122,81131,79122,69590,62346,45101,29430,28176,18535,86953,84653,55339,60120,80310,78706,59770,48978,55033,89956,105964,92799,112763,75120,47333,31744,27707,18753,10866,7732,4076,4092,3100,2615,1588,1802,2386,2436,2351,2130,1365,894,1909,2051,1613,1377,1391,1213,902,840,614 +144,200,241,314,365,352,421,488,163,414,590,986,2028,4090,6316,6237,7355,24378,33908,44526,64125,64753,69820,84368,75272,54120,49403,51893,54528,77606,81273,60672,102875,98340,141656,167169,202889,234554,222190,180222,187001,170093,114004,79367,34684,45253,45680,59780,66588,90180,98734,123619,125068,108921,97422,113020,178587,122364,98060,79462,89905,74548,57910,56818,96822,69908,46942,42365,35844,33584,34470,30839,18697,21210,24867,25391,20491,21804,25556,28898,18250,14532,10811,8012,7625,10797,15219,21768,21922,16434,10933,7674,4103,2596,1630,728,0,0,0,0,0,0,0,0,0,23,53,86,72,140,216,203,328,538,656,682,965,830,720,710,372,288,218,246,123,138,181,198,727,756,856,834,680,697,816,927,1304,1143,1022,812,729,446,301,140,0,11894,20794,26186,35748,40088,42394,40798,52351,78027,109448,108573,98886,104854,137253,129324,87900,59413,38314,39490,34094,22344,14536,10799,8468,8104,6620,7122,8765,11032,14964,25263,32524,26314,28272,30053,28463,24720,21778,11328,13760,12221,11987,11354,11701,10194,5309,2934,2860,6005,9930,9042,25912,21672,13273,6767,12003,18734,22743,32867,36061,53201,54802,93152,100715,69722,64232,56250,40500,24016,18318,13964,41365,46310,28504,31624,46090,39248,31492,21236,75007,98321,105821,92651,78080,58707,64556,43542,35936,26324,14429,8806,5027,3963,2894,1949,1478,1924,2031,2013,1982,1912,1929,1392,1744,1748,1654,1201,1423,1061,738,450,346 +150,689,1561,1703,2166,2131,2432,2606,2425,1861,1924,1757,1307,2368,4110,5650,7666,20376,32618,54985,86753,88016,62263,63632,90182,87521,84107,82623,121082,124822,120035,110420,65105,50480,46716,35411,37126,33890,24574,11886,0,11621,21807,47561,58124,47119,52885,75254,82918,56064,37425,26800,12885,10751,13706,15996,13555,15596,21502,20807,18286,32694,50938,64281,81335,76355,60772,67444,83584,83829,73744,78103,90187,66140,69792,60278,43127,36811,27686,27458,22020,20443,17512,14256,10427,9177,12382,12613,11366,8943,7885,4537,1697,970,703,290,0,2,3,4,3,5,6,8,8,12,17,23,36,108,183,241,228,199,194,133,133,92,53,32,24,28,31,25,20,19,12,7,1102,842,492,571,466,660,740,1062,1275,1646,1471,1291,1080,911,612,351,0,3055,6012,9404,10788,10522,8447,8509,12755,19440,28320,25848,30676,55268,64307,78339,85026,54936,44489,34604,18797,14440,12148,9165,10703,9752,10732,13611,19086,27450,31079,28340,31216,23630,19207,24736,23049,16686,16211,13230,13155,10240,5985,4464,4050,2274,1309,771,0,1833,4411,8503,10518,26266,38745,48770,57959,57913,79552,82408,122492,153846,143422,115992,88402,57413,43489,27933,20320,18600,13996,6144,0,0,0,0,0,0,0,0,120705,98291,76422,68858,85848,56675,43720,20246,0,154,336,701,973,1105,1600,1393,1393,1282,937,728,457,674,806,1020,1254,939,808,632,755,659,367,193,0 +174,734,1234,1207,1678,2267,2352,2354,2017,2150,1710,1614,1156,2044,3030,4107,7525,25492,48234,52752,74492,68488,65943,76971,74228,74876,85371,78510,117667,117648,144904,94412,70445,60519,46096,29902,36236,25976,20009,10187,436,10738,24460,32640,53985,51568,46553,58520,110575,73088,44793,36802,26408,19570,16547,17836,14304,17259,19064,19483,20602,35628,44592,63015,65200,67525,49836,65124,64369,69552,56573,61634,74184,70005,49466,48628,37840,39768,24754,20095,17989,19019,14432,15440,10796,9952,12148,10978,12357,9660,6613,4982,2594,2290,1052,532,0,5,7,9,7,12,14,18,12,19,18,26,40,107,147,201,181,386,630,1023,1656,1847,1702,2185,737,1099,1292,1338,1843,2325,2876,3752,869,780,697,544,531,630,538,750,943,1226,1109,959,703,668,365,242,0,2742,5676,9106,9976,10834,11910,11702,17634,20094,29687,29568,38662,50744,68850,77600,83262,62956,33735,29064,15863,13889,12266,10680,9744,13300,16310,18840,20212,21418,28666,28508,26859,23764,27121,22324,22439,16883,20388,17480,13949,9870,5004,4457,5449,3651,2176,1020,0,1480,2699,6263,10494,18361,25695,35888,50712,70538,61498,101258,72161,82589,127221,119368,76167,52286,47609,32152,26044,18122,13162,5906,0,0,0,0,0,0,0,0,112645,97407,82165,73684,73012,60406,43639,21062,1850,1423,876,1219,1480,1744,2325,1824,1471,1168,1019,726,543,786,811,958,727,706,780,652,531,467,395,197,0 +186,729,1122,1200,1779,1824,2222,2342,1884,2134,2170,1612,1298,2037,2364,3668,10582,32610,49968,66513,81841,65625,51568,44061,46315,73900,77202,64172,163746,135226,123659,116406,68253,54894,39050,24897,29890,21705,12919,7104,821,13721,22510,23019,40407,47577,45282,39100,107515,81240,53324,35774,35636,23185,17482,18076,19564,15858,19962,16184,20964,22901,34465,40144,63102,72260,61552,59200,64958,54531,54124,43325,76139,68006,48202,46580,49143,32691,30770,29482,19331,19464,16412,12090,8870,10080,9304,9814,14247,10424,8197,6041,4739,2983,1552,639,0,5,8,12,9,13,20,20,13,22,23,34,30,87,128,168,174,530,910,2202,3562,3353,3946,5748,1763,2202,2652,3020,3742,4113,6447,7328,985,952,680,637,582,560,564,871,794,1042,1036,1054,527,453,260,116,0,1838,4084,6356,10397,10347,12472,17858,18380,27993,28622,27799,41148,49694,50708,57687,61044,40637,25238,22454,16492,14879,10436,10081,10278,15145,20874,26170,15415,25119,28347,31978,22935,29988,29531,27164,30729,29000,21346,21306,10196,6848,4590,4569,5682,3410,2352,959,0,994,2180,4286,6981,14010,18882,23164,33960,43601,70368,91013,55606,80096,93891,93484,83189,66765,45224,41458,26110,15884,11344,6236,0,0,0,0,0,0,0,0,92666,67121,67276,85803,93972,71026,36912,16855,3246,2316,1648,1696,2702,2353,2407,1688,1256,1035,856,682,625,909,986,985,558,564,596,600,512,410,305,156,0 +263,432,776,1231,1508,2004,2118,1712,1874,1662,1644,1269,895,1400,2044,2476,10789,27048,43332,51332,72222,67870,46995,44084,42858,61396,74700,74682,127974,117487,125723,111250,73076,50383,37000,27074,24130,15903,13150,6532,1256,10975,14441,22670,34492,43776,38775,44604,88544,73509,38899,32980,30905,27318,23476,21240,15815,16640,12054,13610,18738,19464,22854,22200,62917,60634,48264,49074,50226,48027,57247,48256,62603,50736,29377,32628,44891,34218,25674,24622,16601,16138,15590,14944,12332,10399,10140,10268,14292,8270,7808,6322,3964,2762,1960,706,0,8,14,14,17,20,23,28,12,17,24,34,41,66,92,122,130,758,1114,3300,5028,6218,8466,9210,2569,3383,4960,4723,6002,8646,10571,11083,1322,962,604,684,460,592,621,878,846,984,944,836,449,404,202,94,0,2000,3832,5740,9329,11739,16571,19400,16380,24447,33134,28666,33647,41372,43274,52032,33140,21794,17489,14369,12062,10858,11744,9646,9894,15524,16152,22020,17571,20960,23741,28074,19444,28261,29619,28318,24827,27108,19957,21062,10717,7162,6088,5224,5567,3763,3009,1394,0,1314,2750,5405,5420,10379,15762,17027,44905,43974,52278,60728,43523,67975,78808,110856,69314,66311,33661,34315,29160,18746,10336,5624,0,0,0,0,0,0,0,0,59361,63127,64882,65586,79806,54928,34807,19608,5379,4058,2825,2820,3150,3140,2958,2439,864,825,863,600,514,622,974,724,606,514,584,468,301,276,188,84,0 +323,626,800,829,1138,1714,1752,1582,2206,1397,867,859,564,954,1137,1254,9647,17131,33126,51047,58785,57564,75421,72985,28301,42882,69862,105104,116158,125576,102477,118168,58437,42360,23009,19278,16326,12671,10825,5877,1282,10812,23002,36248,38692,50387,55399,64593,72785,74960,53010,39882,39736,33938,22281,22792,18614,14045,9594,9058,12706,10882,7209,10095,57211,57792,51934,43496,32422,29241,28007,32060,47689,57138,55785,52099,33308,27122,26009,18992,13438,14968,15039,11938,14546,10619,9787,12888,10716,7585,7077,5575,5121,3494,1820,788,0,7,11,19,22,21,20,29,10,19,28,30,37,52,59,52,65,2210,3718,5732,5908,8482,12929,11906,4519,6157,7788,8402,8028,11694,12918,15193,1520,1518,1139,798,562,819,867,1129,1045,649,564,500,455,347,287,141,0,3687,6313,9833,11576,17136,24607,29168,20974,24408,23547,37712,40870,34194,38030,44550,10302,8302,8252,7446,6704,9440,9801,11046,9708,12906,12348,18568,20592,18332,11534,14405,21502,22846,17139,21287,27673,24370,26804,22274,10812,9125,6640,6663,5489,5182,3808,2211,0,1007,2287,4811,6484,6296,7679,7824,46188,50049,59419,52846,44542,59856,55378,84262,56915,47768,36084,39808,33513,29801,20436,11560,0,0,0,0,0,0,0,0,53841,74775,71957,72418,60923,39959,38699,24745,6666,5204,4731,3988,4139,2985,2794,2940,519,462,380,448,440,320,336,500,538,444,328,318,236,132,85,48,0 +214,513,507,674,861,1028,1237,1206,1691,1290,864,762,459,734,734,766,8519,16587,29092,48440,53999,55176,62556,60418,23912,45921,48527,88388,82943,115172,97104,94751,34552,33443,17528,14384,11733,11136,6661,3832,1080,7991,16933,21510,34456,34626,36637,35830,88421,69330,49136,38012,44846,43024,26916,26292,20699,17208,17191,13852,12223,13408,9708,11920,68082,61708,53297,48970,32945,26021,25667,28899,32389,37708,38667,35134,25304,27427,23252,18387,19011,15812,14773,16733,11324,10095,11268,11778,10456,8874,9693,6670,3440,2828,2040,1117,0,6,9,17,20,28,37,40,20,28,30,30,31,60,56,74,107,1994,5257,5816,7348,10066,12059,14340,8559,9018,8870,9251,8127,11576,16124,15592,1198,1280,930,620,466,618,615,762,1010,629,543,471,443,308,220,104,0,3558,7891,10743,13112,17948,22804,27542,16172,23114,23415,31801,32871,34328,52192,47358,8314,7052,8045,6989,5792,7505,6426,6900,8363,10436,10318,16351,19472,20415,16895,19180,17485,24336,25108,26790,25758,23675,26165,21632,15275,9978,7783,6188,5067,4044,3564,1647,0,1753,2910,7066,6728,11255,11473,11760,35716,39692,54302,40149,41252,48214,52566,90057,46386,34836,34478,31293,22700,20732,14255,6510,0,0,0,0,0,0,0,0,44804,64680,80629,67695,44160,36590,32908,21108,9762,7579,8121,5944,6152,4235,4088,3407,312,344,318,290,311,258,313,454,413,352,298,257,175,124,79,42,0 +172,280,382,593,774,699,719,1052,1005,820,794,572,329,433,642,801,7460,18302,23097,41018,43883,42817,41525,36237,20723,38282,47756,73523,81051,93712,112686,109550,19966,14748,13674,11527,7606,7399,5047,3444,852,7474,11947,18042,19167,24150,28074,30427,82583,64724,55396,54372,38860,32411,35378,27190,19539,23286,21904,20871,14216,13702,12574,14716,57219,58273,60394,39579,39447,33871,28842,27153,28718,31374,33146,35072,22436,23793,17632,16450,20120,15606,17714,18526,11204,10963,12794,13907,9154,10546,9090,6568,2816,2426,1839,1034,0,5,7,12,13,30,42,49,24,32,37,30,30,45,78,90,157,2515,5354,6564,7129,7519,11609,12268,16348,13284,11882,12996,8223,9696,15327,15658,1041,798,818,456,364,417,564,582,771,593,458,314,333,310,187,87,0,4861,8258,11005,13520,18000,21439,25856,13946,18145,24145,28177,31123,36138,51074,42679,7783,5474,5781,5359,4062,4866,4938,5190,8594,8057,10718,9966,12634,21225,23795,23994,17420,20095,26127,28534,30928,27149,26744,22150,15496,14823,10732,7626,3109,2608,2226,982,0,2666,4836,9427,10231,10770,14503,12238,27649,34374,40796,43520,38875,37503,44336,68833,28289,30200,27631,29203,14057,11234,9866,4140,0,0,0,0,0,0,0,0,44129,64222,66336,62014,36662,33666,19802,13815,12053,13653,12556,8229,6121,5489,4170,2543,222,221,170,186,308,242,273,296,354,327,237,212,146,84,48,29,0 +222,214,288,413,566,514,508,819,820,654,466,478,252,313,365,388,6236,10336,18027,30935,29814,31912,29101,32931,21579,33286,47546,67401,59789,85220,89705,97088,13485,9321,10594,7482,5494,4640,3337,2748,1102,4974,7880,10474,10151,13621,13885,15542,90361,62296,75872,69026,48980,47326,46504,35380,20609,19108,19150,25566,24298,21704,23144,20754,57366,59752,46195,38024,33183,24014,22801,18056,16953,18128,19384,20232,15717,15498,13872,17138,19620,16746,18592,19336,14316,13180,14051,11934,7864,7562,7894,5842,3404,2992,1822,1169,0,5,7,12,13,32,47,58,46,58,42,40,34,56,80,92,180,1928,4908,5718,5637,8963,12170,13482,15832,16879,12583,12155,10807,15254,15418,18940,927,734,742,568,346,382,512,408,630,520,423,270,214,166,114,62,0,3533,7781,8987,12237,13052,13804,23856,20153,24976,25962,26302,39674,52817,50703,51848,4870,4548,4304,5014,4269,4000,3872,4020,7308,6650,10056,9434,12105,19224,20728,28854,19596,25622,27521,32395,36631,31334,29456,17606,16252,12914,10580,8109,2514,2356,1834,896,0,2594,4389,9303,12544,13011,19647,16711,22375,23624,23705,35196,32857,47520,51729,66136,30424,26280,16164,19069,11023,7720,6096,2928,0,0,0,0,0,0,0,0,53745,61078,53016,44565,38104,32003,22453,18130,13748,12733,12741,8904,6960,5166,3828,2700,127,122,83,108,162,145,136,140,192,170,134,94,67,48,31,15,0 +224,187,238,171,130,304,406,468,499,375,428,298,152,89,60,34,3184,4127,6848,8494,8329,7238,9248,13547,22304,26900,29331,26273,29500,35704,41850,83329,6502,5220,4083,2956,1500,1517,1253,1265,1458,999,1030,805,548,376,296,172,73450,54346,51305,46539,54768,59994,50149,35868,23308,24274,21282,18915,11651,11348,14586,20472,56871,37291,33737,27184,13773,9449,9336,5514,880,7080,11356,14906,21867,19741,15865,21103,24656,19425,21002,13107,8405,9709,11483,8184,8352,7817,6566,6080,6337,5172,2419,1312,0,5,9,15,24,38,40,40,56,68,58,56,58,81,94,101,180,2994,7164,8726,13479,14857,15772,17998,21168,24110,25047,29972,38229,46305,39060,25666,697,591,396,490,449,367,304,378,472,418,445,373,403,303,219,94,0,2534,4437,9603,12575,18196,18764,20768,22186,30837,41221,47669,42970,55335,54958,47662,2134,3264,4650,4779,5659,5635,3792,4889,4400,5437,7328,9810,11826,13150,19570,27672,22019,20218,18816,17861,18955,18719,19347,13464,12889,8404,6925,4230,3595,1964,1301,666,0,972,2074,2193,3394,10039,13819,17436,18122,28694,50459,51280,65280,63986,57905,75993,24787,21406,14703,12158,10571,9688,6652,2929,0,0,0,0,0,0,0,0,59163,51367,48155,43810,45979,38342,33261,20894,16524,10191,7385,7560,6258,4378,2772,1916,0,2,3,5,5,8,11,13,11,13,11,8,5,5,3,2,0 +298,270,250,196,162,344,388,486,419,456,399,381,436,348,330,372,2791,4194,6509,6508,6303,8265,6897,10734,19569,23428,24408,23964,27458,32578,34714,76284,6409,5078,4877,3670,1726,3336,4356,6364,3704,3537,3417,3314,2827,2856,2401,2496,69305,57560,47840,48260,50421,53233,40322,27784,30600,30248,23076,17754,11042,12409,16082,16279,54440,43594,30880,22243,18806,12529,9108,5808,2229,6741,12112,15269,20189,18612,17696,25696,25537,17054,17272,14586,6911,7903,10626,7430,7155,5304,4857,4688,7131,5268,1798,1150,0,6,12,16,19,30,37,44,49,60,70,58,56,71,86,82,144,3434,5729,9146,10996,14305,20304,22468,22486,22194,20313,25938,27097,31330,37953,24508,600,488,397,404,459,424,374,414,502,439,334,277,406,267,192,92,0,1852,5097,8414,10745,12553,11083,13718,17092,29126,30250,36296,33421,33182,45306,43746,1867,2572,3306,4540,6456,4780,3048,3708,4019,5075,6736,6808,7783,10546,11497,18502,18407,21718,21818,18884,15914,16328,16049,13863,13090,10678,7549,5502,3394,2430,1916,934,0,966,2631,3004,3690,9727,17303,16318,13638,23770,46034,43368,57527,52379,52600,63508,23508,19454,13504,11532,9912,7360,4962,2654,0,0,0,0,0,0,0,0,62792,44524,34102,40178,42450,37724,26763,20816,10220,7484,6313,5554,5687,3708,2482,1881,0,2,4,6,5,9,10,10,12,10,8,8,5,6,5,2,0 +296,313,286,186,194,278,429,484,369,430,530,598,593,570,601,604,3405,3678,4910,4523,4999,5852,7880,9409,16743,18779,24015,30571,19263,33573,39086,66546,7610,5958,4775,3022,2560,5426,8050,13321,6927,5442,5159,6813,5239,6335,5512,5478,42418,47179,47774,59522,52045,34931,35206,21876,33755,30050,24442,14267,7215,9675,12758,11994,52109,41473,27258,16697,19917,14909,7701,5028,3033,6045,9799,16705,15125,20348,21654,30402,23776,21360,13388,10585,7946,7951,8422,7354,4717,5394,4303,5103,6171,3953,2062,957,0,6,10,14,18,24,32,49,51,47,58,60,63,67,66,62,177,2360,4808,8160,12238,17568,19692,23610,17366,12900,13704,22409,19124,21525,28009,19138,462,509,406,418,364,316,360,460,392,447,380,247,320,198,120,72,0,2050,4836,6133,9212,8752,8485,7472,19940,17425,23398,24002,22778,27550,38422,53174,1244,1838,2293,3421,5737,4893,3714,2976,2391,3767,4138,5208,4466,6104,7597,9912,23223,24831,22764,20423,16668,13399,15480,15842,11265,8877,7508,6050,3688,2447,1979,952,0,1182,2524,2492,3016,7278,15030,15462,8472,24614,33798,47580,32382,36991,39305,50384,15739,14240,13342,7982,7364,5343,3904,1738,0,0,0,0,0,0,0,0,49347,40018,26199,26415,30605,32585,24317,16696,6932,6790,5333,4726,3255,2828,1488,1242,0,2,3,5,4,7,8,8,8,8,6,7,4,5,4,2,0 +241,258,244,204,161,254,324,373,231,382,635,625,818,722,646,856,3032,3666,4673,5351,6629,6318,8668,7943,18156,16488,21873,21232,16908,35741,41228,51306,9742,8099,7194,5038,2974,7446,14577,17638,7912,6052,4848,7310,6941,7283,7790,7610,26750,39346,37336,44031,42449,35616,42499,30313,38266,36738,31630,15482,9243,8668,8722,10290,49596,37010,30423,18346,18590,12158,6365,4123,3041,5289,7345,13575,16379,20928,19411,23792,13749,13388,12413,9705,6251,7502,8373,7970,5504,4152,4468,4720,5993,3685,2491,1194,0,6,8,12,15,22,32,39,37,38,44,43,65,50,46,46,150,2272,3631,7214,10246,17341,19124,24788,18452,15436,16185,18482,13193,16562,21412,16402,323,301,343,352,347,362,328,366,410,336,286,208,226,171,112,56,0,2098,3905,5736,9014,8346,7568,8150,14004,16486,25218,24020,19845,23164,26634,37380,1492,1601,2026,3526,4483,4382,3456,3430,1601,2810,2938,4445,4235,5915,5564,7565,18888,17121,16926,15700,12304,14696,11259,13584,10099,9084,6040,4420,2876,2080,1857,829,0,1387,2573,3806,4696,9177,15594,14158,8870,17430,28227,35594,24955,34966,34353,45722,12517,11370,7445,6189,6102,4296,3008,1246,0,0,0,0,0,0,0,0,35933,36331,34008,33098,33466,29118,19084,12857,4651,3957,2642,2622,2538,2248,1038,1048,0,1,2,4,4,6,7,7,7,8,7,7,5,6,5,2,0 +256,192,144,141,184,156,162,241,144,238,382,616,964,910,1116,945,2259,3743,5888,6868,7228,6460,8291,6850,18711,13530,14146,17948,18598,32475,37990,33525,12224,10940,8277,7426,4820,8841,11527,20744,9979,11412,12780,9766,10694,12517,11435,11760,15763,13994,16998,32298,40428,41441,50460,38980,47269,39439,34033,17602,8353,7265,8355,6700,48352,41480,39011,28664,14964,11994,7375,4932,4076,7952,9354,13686,14423,14973,15879,18425,10232,9042,6624,6841,7527,7980,5894,6120,4923,4941,6055,4268,4601,3430,2736,1396,0,2,5,10,10,17,23,30,22,32,38,37,44,43,58,45,82,2906,5092,7982,11732,16708,22628,27956,21544,18748,23576,15894,13703,10991,10726,9305,210,191,242,260,318,328,327,346,349,267,198,159,150,143,99,50,0,1513,2693,5099,5878,6434,8786,7744,10083,13412,12280,13783,21711,38168,44293,53446,1613,2876,3490,3244,3756,3117,2076,2206,578,843,1510,2201,2843,2630,3417,5435,12418,15555,15114,10670,11031,11773,13867,12040,7353,5665,6215,3553,2172,1523,1046,588,0,1455,2987,4480,5418,6503,6853,12290,8192,14881,16806,19738,17320,23656,23699,29821,6303,5839,4539,5118,4020,2994,2204,980,0,0,0,0,0,0,0,0,38622,32510,24212,27964,29745,18973,12582,8398,1856,1438,1087,1100,999,1074,1282,1171,0,0,1,2,2,2,3,4,3,5,4,5,4,5,3,2,0 +188,145,126,156,148,117,129,178,133,338,566,929,1216,1046,1147,1456,2776,3813,6158,5768,7550,5874,5749,5548,15013,13528,14034,14631,13481,26124,31138,28574,12772,12684,8865,7988,3949,8646,13712,20914,15582,17778,18540,14638,13971,14340,17067,18445,17574,18310,18127,31832,33853,36532,45956,36807,44128,32816,28634,18186,12714,12234,12814,8698,39354,30278,24606,22324,17062,13140,8383,7269,6896,9928,10122,12025,11521,10995,15086,16286,9232,6918,4783,5239,4939,4936,5451,5433,4300,4082,4020,3684,3402,2306,1755,1014,0,2,5,10,10,14,22,24,15,23,30,30,41,40,44,34,66,2584,5308,9485,12050,17454,19757,21432,17648,19851,24006,20297,15472,12232,10325,8801,150,164,235,258,249,244,252,214,217,170,150,118,130,108,74,41,0,1070,1640,3131,5088,6062,7229,6688,7064,10208,8797,13508,17375,25414,28120,29380,1191,1880,2867,2900,3071,2293,1764,1652,353,786,1010,1641,2194,2166,2364,3680,9863,9602,13574,9388,6812,8998,10185,9042,5964,5188,5127,2826,1845,1360,872,426,0,1083,1900,3145,4031,5882,4367,8098,6214,10814,11581,13118,16155,18932,17882,23374,4894,5049,2753,3355,2388,2323,1610,702,0,0,0,0,0,0,0,0,27649,25871,15367,18566,27083,16562,12630,7439,1195,1032,911,920,939,817,995,998,0,0,0,1,2,3,4,5,4,6,5,6,5,5,4,2,0 +194,186,160,144,102,91,86,99,85,357,802,1102,1235,1337,1392,1674,3861,3669,4886,4574,6362,5496,5682,4067,12756,10829,12237,13353,8370,11550,20254,24383,13040,14033,10372,6845,4538,10326,16392,21478,22180,23236,19156,15353,20344,18814,17697,22774,22513,22346,25590,32316,28465,34540,35955,37785,46228,27954,21788,24061,14007,14763,17204,15023,32002,19276,15432,13893,13859,14474,12078,9262,8063,10386,11482,11540,11708,14292,12702,12142,5708,5652,4368,4072,3700,3434,3374,4139,3357,3086,2986,2462,1536,1369,1292,663,0,2,4,7,5,9,13,14,11,17,22,18,29,32,26,21,41,4040,7994,11394,14332,11050,13223,14140,18973,14950,17830,16774,12856,12969,12936,10778,133,144,150,149,215,138,108,118,160,139,98,94,73,61,45,22,0,481,991,1520,3325,3361,4147,3770,4007,7095,8222,10618,7620,10239,15567,15173,554,1101,1468,1712,1377,1160,958,1267,193,536,747,1002,1961,2228,1884,2262,7629,9363,8322,7974,5864,6428,5980,5509,5046,3646,3618,1842,1300,770,417,190,0,687,1253,1807,2451,3298,3175,4772,3768,5257,8481,9234,11972,13897,17486,16742,4247,2566,1894,1815,1804,1150,822,437,0,0,0,0,0,0,0,0,16967,15719,12501,13378,18083,14486,8877,5511,753,661,660,703,650,650,571,619,0,0,0,0,1,2,3,4,3,5,4,5,3,4,3,2,0 +157,132,100,94,70,66,65,64,42,357,736,1594,1418,1754,2128,2288,3374,4301,3393,2919,4906,4504,3373,3158,8785,7414,8438,10688,9742,11229,13929,14317,11968,8848,8900,6442,4500,9622,13224,21372,23361,24642,23512,23206,19048,20926,22349,22556,26998,24660,25597,26626,34208,34600,34447,42532,43484,29273,20002,25838,24270,25189,21674,17111,21383,14760,9112,8883,11312,11530,11025,10864,8630,9526,10612,9052,9943,8964,8060,8290,2691,2284,2613,2088,1828,1549,1392,1944,1706,1549,1318,1062,734,738,567,318,0,1,2,5,2,5,7,8,7,10,11,10,15,19,16,12,18,3586,6048,9064,15324,12788,9180,15107,15882,16243,13438,15809,16486,15234,16638,13904,59,70,78,80,106,70,49,44,86,68,41,40,41,28,20,12,0,211,481,765,1586,1680,2481,1774,2255,3572,4187,6244,4322,5444,7609,9938,268,448,785,894,712,512,489,600,107,252,419,412,1174,1204,934,1308,3663,4436,4717,4139,2634,2768,2622,2860,2738,2338,1609,910,744,434,200,92,0,298,507,910,1257,1478,1332,2446,1651,3082,4932,4910,5717,6432,7652,9673,2111,1286,884,772,852,595,371,188,0,0,0,0,0,0,0,0,9911,8165,5550,6004,9042,7383,4340,2706,445,364,378,365,342,330,297,330,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,1,0 +78,80,61,47,17,28,42,51,51,47,56,65,76,75,66,74,64,60,70,64,56,37,33,17,0,0,0,0,0,0,0,0,0,3284,5670,6496,8689,10630,9647,13180,13187,14136,10654,11168,11660,12244,10445,17076,18555,18417,12152,8756,5492,20578,28848,25982,35967,39841,35015,27422,27515,19521,15367,12924,11727,8936,6453,5114,3748,5568,7591,8332,8294,5537,3968,3042,2333,2796,4110,4430,3574,3300,2761,3416,3764,4474,3957,3622,2806,4651,7286,11573,12826,12641,16436,16214,22994,20908,23287,26812,23056,17604,13920,15144,11950,12912,10885,8752,8815,7087,4953,2439,0,0,0,0,0,0,0,0,0,4030,8434,13132,16269,18498,17576,15471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +72,78,61,43,30,34,47,46,40,51,62,72,61,59,55,68,52,45,60,54,48,36,32,16,0,0,0,0,0,0,0,0,1196,3349,5734,7379,12237,11761,10528,12226,15869,12560,14903,14952,13955,15322,21072,21192,12056,13633,11062,9954,11342,21566,25465,36128,27141,33362,32215,32546,20866,19534,14067,12260,29128,18620,15188,10830,5709,8789,13705,19408,22245,20049,12526,10261,6760,6382,5454,5190,4362,5676,4289,6260,5663,6244,6936,5869,3672,6672,12674,13558,18836,22174,25246,27756,19265,16546,15988,17982,16021,13444,19137,16068,15374,14509,11291,11554,9742,8629,7318,7432,0,60,100,118,286,449,459,642,1160,4880,7762,11762,12068,16175,22673,22187,0,1,2,2,2,2,2,4,4,4,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,2,2,4,4,6,4,5,4,4,2,2,2,3,2,5,5,6,5,7,6,7,17,15,10,9,8,9,6,5,0,1,2,2,2,2,2,2,0,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,6,4,6,8,10,8,10,7,7,7,8,7,7,8,10,11,12,8,12,11,11,13,11,8,6,2,2,2,1,0 +46,59,66,50,47,49,46,39,34,56,60,58,46,57,62,65,40,46,36,37,48,36,26,12,0,0,0,0,0,0,0,0,2714,3227,5284,8000,14389,13324,12030,9798,21046,21656,16428,22872,20389,25568,25210,32110,10784,13774,13592,9910,13469,22457,34460,31764,30631,26737,29538,31719,24591,17227,14101,13038,37387,38644,27472,21265,8041,13846,19296,25960,30508,31940,24091,20292,13333,13029,8454,6766,6609,5762,7428,7923,5883,7324,8002,9386,4140,8255,15428,19068,20697,28410,30868,27586,16268,16639,13790,14050,15677,16047,18491,16534,16611,13606,13224,15251,11281,12597,11890,14510,0,116,226,303,541,728,1022,1109,2599,6126,8362,7840,11230,13844,20735,26648,0,2,3,4,3,5,5,7,6,6,4,5,4,5,5,5,0,2,3,4,3,5,4,5,3,5,4,5,3,5,5,5,1,2,4,5,4,6,6,10,6,7,6,6,4,5,5,6,4,7,8,8,9,12,10,12,29,21,20,19,17,13,10,7,0,2,3,4,3,5,4,5,1,2,3,4,3,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,8,10,6,12,15,17,14,12,12,13,12,12,13,10,14,16,22,26,16,18,18,21,22,18,14,10,4,5,4,2,0 +47,56,64,49,54,48,51,46,24,46,39,48,49,48,52,60,40,41,40,43,42,35,26,12,0,0,0,0,0,0,0,0,3820,5312,6150,9720,14264,10766,9790,9744,22936,16362,15757,19952,24353,31698,31355,32416,10775,13184,17646,14527,12118,20228,24058,28467,28010,28750,23856,24596,29052,18105,15008,11573,53391,50688,39594,27462,13590,20879,30112,37453,43109,45033,30074,32154,21708,20202,15962,9118,7214,8422,10055,10456,8162,10700,12113,11620,7849,12102,16324,21911,31871,29440,36312,37280,11227,12486,13732,11614,11386,14664,18392,19608,17677,15770,10855,12964,15486,14184,17826,19886,0,180,295,458,612,1190,1953,1672,4605,6608,7848,8926,14273,17821,18558,27310,0,2,4,5,5,7,7,8,7,7,6,7,6,7,7,7,0,2,4,5,4,6,5,6,4,6,6,7,5,7,7,8,2,5,6,8,7,10,10,14,8,9,8,8,7,10,9,10,6,9,11,15,17,14,16,18,39,38,31,28,22,19,12,10,0,2,4,5,4,6,6,7,2,4,5,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,14,12,18,18,24,24,27,20,22,19,20,22,16,25,26,30,32,23,22,18,26,26,19,13,13,7,8,6,4,0 +41,51,66,60,58,62,52,46,21,28,29,30,36,42,60,70,36,44,48,34,33,34,22,13,0,0,0,0,0,0,0,0,4346,6766,10440,11342,12646,9880,8810,7690,22553,19618,20067,19679,25504,29969,30603,27572,12405,12639,17337,18145,16051,16682,17569,31377,33903,25414,26118,26536,24368,23395,22105,20495,73031,55922,60923,39376,17894,20202,25221,33019,62245,52828,47652,43484,31763,23332,19674,11684,6248,7032,7373,11285,11974,14139,18798,20628,9747,10782,16523,26503,35410,37383,29328,38827,9914,11062,15351,16287,12122,15352,15312,23364,14367,12047,12095,15611,20863,19767,19669,18597,0,245,509,635,838,1538,1982,2788,5910,9884,12930,12839,14662,19198,27382,30784,0,2,3,5,4,6,6,7,7,10,8,8,6,8,8,8,0,2,3,4,3,5,4,5,3,5,6,6,4,7,8,8,2,6,8,8,9,12,10,13,9,9,9,8,8,10,11,12,6,10,14,16,22,17,16,20,43,47,46,34,24,20,20,12,0,2,3,4,3,5,6,6,2,4,4,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,19,18,19,14,13,14,24,31,27,31,26,26,26,17,17,34,31,24,26,32,24,23,24,32,36,28,20,9,7,4,2,0 +116,113,95,90,76,62,64,62,23,30,28,33,34,31,51,46,23,32,37,33,34,29,18,10,0,0,0,0,0,0,0,0,7669,11638,15176,16708,11728,14030,12505,12766,23312,23768,24952,22746,25526,30100,34946,34055,16582,19994,18108,20390,11793,15358,15434,27946,30709,26942,24766,25382,24798,21626,17927,12447,82775,78830,70788,42582,20894,28312,24620,43549,51318,55793,39630,34016,36297,27920,20225,9398,7095,6262,6144,10760,9539,14373,15572,25353,13657,16444,24770,35666,43326,34008,30421,38390,10678,13362,13060,14595,12159,13416,14916,19928,15721,15718,16115,23194,26450,27664,24482,30250,0,248,492,896,1162,2253,2571,3956,7031,10902,14131,11962,9938,15006,20060,22850,0,2,5,7,5,7,8,9,11,10,10,10,8,10,11,12,0,2,5,6,5,7,6,7,5,7,8,8,7,10,9,9,2,8,12,13,11,18,22,24,19,21,17,17,22,20,18,20,10,14,16,21,26,28,34,30,45,44,44,38,27,24,22,14,0,2,5,6,5,7,7,7,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,22,18,18,14,16,20,29,38,36,36,38,30,30,20,19,35,36,34,40,42,44,32,32,36,40,30,22,10,8,6,4,0 +185,175,142,105,81,81,68,51,21,26,25,31,20,23,28,30,17,20,20,25,22,18,12,7,0,0,0,0,0,0,0,0,11002,17712,20244,29453,15937,16430,21748,23347,25071,19882,22732,25808,29473,33982,28333,25834,22421,19956,22524,18377,9082,12401,19310,19733,31870,26299,31098,28584,21167,20242,13383,10763,86971,85913,80482,54924,33352,32671,32536,34961,50925,47915,41113,34450,55999,37529,19408,10379,5980,5385,6811,8035,9299,11891,16732,27084,15206,26288,38717,52718,41170,37878,31570,28511,9950,10776,16984,21903,18050,18207,12952,16196,15584,21185,22023,29491,30796,29232,30434,30956,0,256,555,1052,1383,2217,4106,5402,7918,10868,11692,14796,7093,13338,15168,20796,0,2,4,6,4,7,8,8,11,9,7,8,8,9,10,12,0,2,4,6,4,6,6,7,6,8,8,8,8,11,10,10,3,10,12,13,13,18,26,32,23,29,29,20,28,32,26,24,9,14,16,21,39,44,40,36,46,32,30,32,24,20,19,14,0,2,4,5,4,6,6,6,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,15,10,22,26,35,32,34,44,36,31,32,29,20,35,31,37,50,45,42,40,42,44,38,32,22,7,7,6,4,0 +212,174,184,142,111,90,73,57,20,24,26,24,15,23,26,34,8,11,12,14,13,10,7,5,0,0,0,0,0,0,0,0,10860,12462,20088,25948,27755,24414,33268,24478,32684,29182,25881,28115,23690,27310,33687,26074,32057,32544,24332,21340,9887,14088,19787,21098,29640,23981,23948,28264,15969,15478,9984,9054,97275,83714,71941,50812,46903,47354,50031,51778,54798,62736,45407,43120,57593,44417,15779,8592,6224,5146,5311,6264,6447,11950,18031,27092,28348,30507,46818,46593,34864,32254,35330,35685,8512,8288,13806,17762,19427,14856,13358,14606,18156,20524,25464,30086,29319,36940,43009,30210,0,356,893,1378,1836,3008,4479,7404,8730,9920,12364,10424,8564,13852,16665,23390,0,2,5,7,5,8,8,9,10,9,7,9,7,12,14,14,0,2,5,7,5,7,8,9,7,10,10,8,10,11,12,12,2,8,14,16,18,23,32,28,23,28,31,30,34,30,29,36,13,19,19,32,38,40,49,47,52,38,34,31,23,22,22,14,0,2,5,6,5,7,6,7,5,7,7,8,7,8,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,29,24,17,11,20,30,43,42,46,54,57,47,41,28,25,56,52,54,62,67,64,53,58,38,33,26,19,8,10,7,5,0 +275,190,159,110,55,46,24,18,16,20,29,42,61,65,61,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11941,11570,13595,13478,14344,16736,25390,26454,31884,35578,49632,45193,39996,29398,33190,21818,48972,59619,56899,52978,34726,38027,38466,31805,24546,21164,24358,22822,22548,23587,17323,9272,93787,88962,69679,54590,21817,40735,55981,66620,71120,54784,60741,42838,24744,15587,11763,5778,6681,12657,15906,22012,26420,25617,25962,27253,34460,31016,34705,39697,57837,60288,42799,42260,4447,6376,9276,12442,15741,11925,10947,15047,19582,24916,27954,27280,39369,38636,29254,38081,0,1622,3604,6478,7226,8611,10565,9790,9636,11499,10091,9967,12800,12711,14332,20336,0,2,3,4,3,7,8,10,8,8,9,12,15,15,18,18,0,2,3,5,5,7,6,7,6,8,8,8,7,8,7,8,2,6,8,12,11,15,21,23,26,30,39,53,70,83,72,67,19,24,25,34,31,46,50,50,50,53,41,42,35,26,26,16,0,2,3,5,4,6,6,6,4,6,6,8,9,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,30,31,32,46,44,51,48,44,42,30,12,13,10,12,61,69,86,76,68,65,59,48,36,42,34,31,24,24,15,8,0 +196,188,133,100,69,56,44,32,44,46,46,54,51,68,62,62,9,11,8,6,7,8,8,8,4,5,5,5,4,4,2,1,11695,14032,12886,9856,18977,23316,25238,26412,26211,29062,41536,39756,24499,23092,22154,18038,33194,35386,37198,34610,35017,32887,32752,30720,18423,19023,23550,23828,22775,19486,15546,8872,72297,82366,80849,52122,22314,36393,43444,68620,74176,63718,47922,41780,22988,15075,12036,8438,5913,10170,13560,19031,29882,27562,35075,36885,37817,38062,46242,60298,67490,59712,36453,27948,17836,13128,17411,13436,12520,11880,15202,15410,17742,21719,27017,37084,45306,43376,40797,39280,4160,5422,6228,7367,6044,7942,8755,7982,8103,8573,10583,11120,12476,12256,16216,15371,0,2,5,6,5,10,8,10,14,14,14,17,15,18,16,18,4,6,7,8,5,8,8,8,10,10,9,9,9,12,10,11,2,6,8,10,12,16,16,22,30,38,51,60,54,64,87,68,43,44,40,46,38,55,60,84,55,61,60,60,41,38,36,19,0,2,5,6,5,7,6,7,6,7,7,10,10,10,11,9,2,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,48,42,48,42,52,47,46,51,47,65,70,48,27,29,28,29,63,81,101,94,96,88,66,50,41,42,30,29,28,21,15,9,0 +141,142,139,115,77,69,50,48,65,61,68,58,61,74,63,53,18,17,14,10,13,13,14,14,6,8,8,8,6,7,5,2,11252,13588,13368,12042,17784,19257,25894,23098,25648,22502,20207,28354,15672,15991,17686,22678,28704,27238,30166,28243,29321,31541,28077,21310,19282,17226,19878,20779,17834,12039,11938,5993,62686,67900,71114,47056,16804,26363,40214,69035,83656,75800,46300,33858,14371,17193,15097,11273,7690,11379,12758,16761,26314,33058,39507,37892,43458,48719,55600,57546,62020,48348,34494,26652,27787,29240,21492,15972,12633,14074,14443,14582,12821,16197,23828,26872,39961,40454,48064,44141,10144,8394,8742,7619,4419,7313,9008,8413,6391,7465,8402,9101,10557,12396,12782,10192,0,2,4,5,6,8,8,10,16,18,14,17,16,20,18,17,6,8,8,8,4,7,8,8,10,10,10,10,11,12,12,10,3,5,6,8,8,12,16,18,24,39,48,59,34,50,76,94,72,59,50,47,43,56,74,77,57,72,82,88,54,49,33,22,0,2,4,5,4,5,4,5,6,7,6,8,8,8,9,10,3,5,4,5,3,5,4,5,1,2,4,5,4,5,4,5,51,52,50,51,65,60,55,64,61,60,75,65,39,38,36,39,91,127,122,119,92,84,82,64,55,40,30,25,22,20,12,7,0 +160,150,157,110,90,82,70,48,73,72,87,71,76,78,90,76,29,28,26,24,15,20,20,24,12,13,14,14,9,9,7,5,10358,12314,11135,13002,15021,18950,21843,23620,25956,22320,18161,19572,12136,12928,12149,17769,24553,21784,26306,30316,24632,30218,27611,24979,19766,20084,19470,20602,14882,11483,8826,6349,83318,75828,74994,52746,25644,33494,33357,64242,68581,60106,50767,38992,20378,16098,13186,9354,7330,10120,17101,18734,27910,33723,32002,34918,51016,50694,43253,48368,59263,38094,25826,20241,38705,29810,23294,17696,9808,9978,10151,13870,11176,15416,27313,28405,32954,38600,51604,39442,12712,13816,11320,7422,5391,6740,8753,6645,3535,4521,5285,5664,6262,9226,11354,12582,0,2,5,6,6,8,8,9,16,18,15,16,17,22,21,18,9,10,12,8,5,9,8,12,9,12,10,11,10,11,12,12,4,7,8,9,8,12,16,23,18,30,43,48,33,63,94,92,90,57,55,56,53,68,92,86,81,79,84,88,75,55,29,18,0,2,5,6,5,6,5,6,5,7,6,7,7,8,10,8,5,6,5,6,5,6,5,6,2,5,6,7,6,7,5,6,56,44,52,56,78,80,71,80,94,84,97,91,58,53,38,46,73,86,111,114,89,88,60,60,52,46,34,28,20,18,14,8,0 +149,120,131,106,88,70,46,36,82,72,57,67,74,72,52,55,33,31,34,25,18,18,21,24,13,11,9,10,12,11,6,4,9252,12448,13262,13408,14928,19780,22456,19266,22868,19053,18220,14522,11705,8578,8195,11788,14987,20875,25365,28436,30358,30548,29298,27867,23595,15912,14770,15872,16546,11073,7003,4133,79664,64507,37314,32209,31397,41091,46181,58733,67953,47436,35564,31052,23106,20806,16124,12777,6191,7418,12186,21272,25540,44141,53531,43144,62059,84791,80739,65274,54251,45521,38396,18466,39415,35207,32534,20569,9404,8760,7393,8716,6880,18770,25020,30040,40034,39012,45122,55442,20126,17086,13617,8868,5189,4956,4616,4232,2082,2372,2043,2486,3342,6846,10114,13796,0,2,3,5,4,5,4,5,18,15,14,16,16,20,18,18,12,10,9,7,4,7,9,12,8,10,9,10,8,8,6,7,3,5,6,8,9,12,12,17,13,26,30,37,38,54,83,108,88,67,60,54,44,68,97,109,115,114,104,103,78,65,33,18,0,2,3,5,4,6,6,5,3,5,6,6,4,5,4,5,5,7,6,6,4,6,6,6,2,4,4,6,6,6,4,5,64,56,61,61,72,67,55,68,109,98,128,130,98,102,77,72,77,83,65,104,120,107,73,66,42,36,23,20,22,20,13,7,0 +159,178,194,156,125,114,90,68,82,82,57,81,80,80,48,64,40,37,42,32,16,22,29,31,24,20,13,15,16,14,10,6,14884,16469,15024,17954,22228,18742,25848,18174,24266,19466,20920,18856,11159,9376,10026,10444,12484,17042,17047,16728,23596,22908,20945,21764,22446,15494,11558,10734,15910,9442,7149,4810,79569,64122,64934,62268,31273,42359,46052,52438,62098,42190,30139,27426,22442,20267,13840,10356,7994,13140,19054,25258,38272,49392,42476,48970,54440,70278,78986,45612,51986,37758,35266,21378,50971,41112,31623,29462,11264,11297,10321,14696,8590,18556,24895,25226,43016,43851,33950,47663,23952,16606,14198,9364,6020,7211,4761,4497,1567,1593,1932,1726,2816,4454,8418,10866,0,2,5,6,6,8,8,8,22,18,12,18,14,17,17,18,17,12,10,10,6,8,8,12,8,10,12,12,10,12,11,11,6,8,8,10,12,13,11,16,14,26,35,40,49,74,97,99,88,77,72,65,56,92,84,104,109,115,78,96,68,66,38,26,0,2,4,6,5,7,7,6,4,6,7,7,5,7,7,8,7,10,8,9,7,8,10,8,5,7,7,8,7,8,10,8,49,59,54,82,93,72,66,62,118,99,122,120,149,114,90,76,99,104,94,106,142,117,83,86,73,58,40,41,28,24,22,12,0 +178,214,192,146,123,128,111,74,98,64,56,64,100,87,53,61,47,39,45,36,16,26,28,27,27,27,20,21,14,12,10,6,17978,17250,20198,19987,25788,27352,22327,18596,20893,21884,22023,19940,12124,13554,11311,11679,14007,15197,12442,17978,12363,14618,14820,10614,14809,11090,7426,5844,12084,11402,7026,3337,66848,81425,73260,75047,40534,43563,35544,47611,41781,43823,35808,32254,16578,12254,11616,11524,12232,15662,23188,27990,47314,49654,52166,52957,38486,53464,54704,43206,38434,32415,29678,24392,50303,42017,44124,33531,11300,17290,17796,22419,10056,18437,22932,25561,39032,34836,32928,42468,23954,18270,12963,9608,7787,6735,6106,3579,1411,1288,1194,1261,2339,2938,4225,4174,0,2,4,5,6,10,11,10,19,19,12,15,9,15,20,18,16,13,12,11,6,8,8,12,7,10,12,12,9,10,12,14,7,8,8,9,12,11,10,13,10,29,42,50,70,80,95,98,68,73,64,74,59,77,108,100,136,98,80,86,83,68,52,36,0,2,3,5,4,6,6,5,3,5,6,7,4,7,7,8,8,10,8,10,8,10,9,8,6,8,8,10,7,11,11,10,47,49,62,92,86,90,64,66,86,106,93,103,151,154,113,117,90,98,120,142,126,130,94,81,80,77,67,60,32,30,23,12,0 +168,214,203,140,114,134,144,96,110,86,64,104,122,96,66,80,68,61,58,36,16,24,21,27,28,26,20,22,15,12,12,7,20402,21043,19031,19834,27908,24781,20934,16948,21377,18384,13464,12722,13489,11878,11366,13234,16896,18165,12324,15678,7105,9710,10728,8928,10395,7774,6082,4902,6880,6850,3444,2191,68244,98474,81352,77064,51470,51197,44769,44252,32134,29411,33892,36256,24586,18280,13778,13152,14839,22578,27891,34694,42586,46480,39135,51486,46256,48783,45675,33685,25701,24942,22833,18902,41000,40851,34592,29110,13267,17825,23496,20418,14458,23320,27477,40630,40039,41386,33370,39505,27624,20700,16568,14256,12081,9923,7494,3650,593,608,714,664,994,1586,2030,2015,0,2,5,6,7,10,11,13,15,15,12,15,9,16,22,17,22,18,19,15,10,12,11,14,8,12,11,14,12,12,10,13,8,10,10,12,11,10,10,13,11,34,66,58,78,94,118,118,105,107,72,85,91,88,122,102,97,102,90,84,90,66,56,32,0,1,2,4,4,5,5,5,2,5,6,7,5,8,10,10,8,9,8,10,8,11,10,8,7,9,10,11,8,12,14,13,63,62,71,90,84,72,66,72,93,103,86,104,163,126,99,112,116,122,145,126,105,132,110,98,108,109,73,65,42,36,22,12,0 +158,144,87,97,106,89,96,136,200,184,181,218,185,140,85,80,90,79,63,87,108,86,53,37,29,24,15,13,7,7,6,4,26422,29805,38686,31176,37517,54568,53984,52716,47930,38716,45935,30583,21353,21194,27910,28471,23358,22224,15043,17916,20780,12900,10360,5866,0,0,0,0,0,0,0,0,83008,72149,73683,51231,26549,28530,21748,21489,21819,29796,33431,36982,29043,29080,26198,20377,18770,15177,11743,10295,7006,11815,22042,33524,40034,31382,18691,15914,19988,16670,14746,14234,43361,60216,91282,90081,119990,106760,88836,93359,93496,95482,79380,79692,66990,56712,51729,35269,28740,30623,22353,24467,19458,16842,21042,18806,21602,18861,18146,15913,15812,13203,9320,5088,0,2,3,5,5,12,20,22,26,28,28,25,21,20,24,20,20,26,23,24,22,18,13,13,16,17,11,10,8,8,7,8,7,9,11,12,10,28,47,64,72,70,82,116,154,140,143,119,124,108,55,48,31,21,18,13,9,10,12,18,18,16,18,13,0,2,3,4,3,5,6,8,8,9,10,12,13,12,10,8,6,10,15,19,17,18,23,26,21,20,25,24,15,16,11,10,66,97,145,173,197,187,145,154,181,192,156,124,65,82,89,118,110,120,96,63,57,62,86,109,143,127,110,90,90,60,49,21,0 +170,142,106,90,130,122,121,148,146,180,182,196,142,146,118,108,98,115,171,270,267,397,576,1030,1162,1238,1312,1134,1576,1420,1570,1508,36998,40827,47017,42726,33227,43244,62803,52684,42363,43466,42907,33056,18048,23009,24283,23043,24150,25040,18844,21816,21208,14953,9889,7330,3980,4709,4286,3173,4390,3748,2626,2176,58776,63046,47416,43948,30980,27832,21690,23976,15466,29136,32602,30609,27253,20146,22091,16887,20221,18011,12356,13759,8608,13504,20665,31348,33795,33894,21065,22430,29244,20646,14076,11778,29036,43371,71662,83773,77408,95318,72703,71386,124326,94450,97969,84008,53275,52572,41257,39703,42543,28683,31681,32422,25210,19787,16410,15470,19000,17923,20299,17102,16827,12399,8127,5376,0,2,5,7,7,13,18,17,26,25,26,23,20,23,21,20,21,28,25,24,25,23,22,18,24,20,12,12,10,11,11,12,8,10,10,14,12,30,43,60,75,84,84,103,148,156,121,134,111,113,66,49,31,36,47,39,28,28,21,26,24,21,22,19,0,2,5,6,5,7,7,8,8,11,14,15,12,12,9,10,10,14,15,16,19,18,22,29,15,21,24,21,13,14,14,16,106,128,166,176,211,181,140,142,174,150,149,94,52,80,78,114,78,75,75,66,55,56,74,84,130,133,96,85,99,66,41,24,2 +176,148,123,99,115,124,142,140,105,114,134,137,152,135,139,121,95,160,290,419,424,840,982,2296,2615,2840,2564,2773,3828,3851,3504,3182,46961,52249,62272,48737,28736,33236,53378,55657,56918,45686,41217,33358,17232,18538,17343,23522,26785,31474,29574,31692,17365,16675,13353,10902,7180,9152,8164,8599,8239,7760,5377,4178,57547,53323,43822,42362,30121,31437,26371,28483,15327,19686,24768,24318,18068,16853,17420,15934,21921,21968,16002,19765,13258,15634,19736,25330,29239,27868,30851,32620,33437,23578,17524,11996,22875,30871,39453,46217,67547,66388,57357,51485,119634,109011,102168,73980,48899,46538,43618,26550,44712,37301,36016,29724,24357,21493,16134,11460,20839,21725,18032,16794,12540,9993,9262,7267,0,2,5,7,6,12,14,18,19,29,28,32,24,25,23,20,22,28,28,26,20,25,22,24,27,18,14,19,12,14,11,10,7,8,10,16,16,28,44,52,81,83,92,76,140,167,149,182,147,126,68,56,42,55,60,53,48,38,36,27,22,20,23,24,0,2,4,6,4,7,7,10,8,12,15,15,13,12,8,8,9,12,16,18,16,17,22,26,12,16,14,18,12,12,12,14,133,125,134,114,172,146,154,111,122,125,91,81,55,74,88,91,66,73,56,58,34,53,58,56,114,78,70,63,78,50,38,25,4 +135,123,153,126,129,124,104,106,86,115,147,152,135,136,155,158,86,238,568,601,742,1021,1486,2578,3401,3788,4408,4554,5714,4626,4025,4100,56068,56504,66900,55428,40385,46918,52577,65291,53280,47576,44986,33744,20030,25632,26957,27514,20784,27865,28105,32202,16847,19030,16878,13359,12376,14955,17596,13352,10648,9094,6528,5384,56857,57776,54694,38832,21306,28002,27293,32473,16808,16610,15254,18155,16142,13218,13852,12552,19536,20011,17566,19818,17428,20615,23971,21096,38227,31497,32914,33804,29195,29706,17360,11506,20636,22626,34965,30712,32718,41848,42261,36973,86096,96201,79432,68778,62610,49369,52365,36121,37689,37832,36212,35142,27146,25270,26023,19231,16156,18751,14337,16389,16166,12492,11268,8908,0,4,7,8,8,14,19,20,25,28,29,29,20,24,20,20,25,30,24,24,20,22,24,25,23,24,18,19,19,17,12,11,8,12,12,19,20,40,56,67,77,81,61,64,92,129,155,152,139,97,91,68,48,64,64,60,65,49,37,31,27,22,21,24,0,2,5,7,5,8,8,11,10,13,17,14,12,12,10,9,12,16,15,18,20,21,19,28,12,16,15,20,15,15,14,18,136,121,103,104,187,160,165,118,90,76,74,77,77,84,125,124,60,67,60,55,47,48,61,58,73,66,63,64,67,41,32,21,7 +151,137,136,123,137,110,129,87,65,98,98,134,156,144,121,154,48,289,544,902,1012,2550,3772,3596,4974,3963,4008,4544,5747,7806,7263,5467,67922,75399,61470,54891,50397,66220,61840,67338,66097,59853,44861,30777,29927,21926,23819,27839,22060,17942,18419,17490,21617,26559,24972,21182,18366,20746,17811,21201,17576,14724,10440,9414,72362,63270,54298,41717,20949,17978,19736,22494,15339,16272,18725,18433,12806,14648,11910,9908,24954,28798,25750,26498,22585,21187,22367,20570,34550,41235,39581,45904,38374,33842,24450,16611,27041,23516,16705,13964,10014,11932,19045,22750,91170,88766,69433,72207,56375,38942,35664,29777,48859,43302,46125,46213,39904,30524,28362,17209,10196,14416,17604,17672,16817,12441,10772,8022,0,4,6,8,8,13,21,24,30,28,35,28,20,19,18,17,29,27,20,16,17,18,23,20,26,29,26,20,20,17,12,14,10,17,18,16,18,41,54,79,92,99,79,60,46,102,137,179,101,95,77,72,42,46,48,67,60,52,37,33,36,36,34,34,0,2,3,5,5,8,9,10,12,10,9,12,12,10,7,7,10,16,16,18,24,31,28,36,8,10,13,17,16,17,15,16,131,111,98,106,156,182,160,133,48,68,73,84,77,100,107,136,37,50,46,38,44,61,58,62,58,73,74,66,50,38,31,21,7 +98,100,97,112,120,125,123,87,68,80,88,102,155,112,99,116,56,442,730,1370,2944,4018,4534,5133,7100,5740,4963,5664,6032,7482,7258,7735,67110,64528,69526,45657,32588,42414,62326,52177,57298,49019,45030,55500,49133,41366,44280,55006,19800,16203,18012,20930,28330,24942,24356,25290,19238,17435,21071,18604,21895,17274,10367,10262,70328,53998,51765,46385,21192,25348,27698,27751,12834,13481,14946,13793,10179,11675,8716,7806,25070,25590,30162,22872,15950,16036,24146,20168,46056,38390,36756,33085,29191,31278,16080,11946,25159,21685,16016,13712,10366,14484,14381,16112,78356,69862,51544,42781,40473,33578,24025,23022,34303,42920,36862,43051,36322,26459,23853,21116,11984,12713,16944,17232,16220,15139,13534,12086,0,5,7,8,10,16,20,26,28,32,39,28,28,20,18,18,25,22,18,22,21,20,20,21,22,26,24,22,24,20,14,14,12,16,21,19,22,41,68,73,81,75,73,51,54,82,118,153,172,138,96,84,77,57,53,82,77,80,78,60,47,40,44,44,0,2,5,6,5,10,9,13,16,15,12,14,11,12,8,7,12,15,16,19,24,30,30,32,15,18,18,19,24,26,18,22,134,100,99,122,147,142,141,114,46,82,72,97,128,148,116,146,33,44,41,38,37,48,42,44,45,50,65,48,44,36,36,22,8 +88,78,91,115,147,145,122,85,70,77,72,92,106,114,90,94,82,771,1216,1678,4405,6034,5758,7887,7911,6542,6150,5282,8363,11104,10743,9804,57108,62879,54625,45054,21113,26563,42476,34841,59363,41272,42016,49574,57662,55723,59240,50236,17464,16460,16351,19732,27740,25447,25802,23309,21538,21082,22101,20184,24152,14712,11968,10272,56004,62266,51500,50940,23306,24244,28364,30830,12275,12303,15138,12018,10626,7416,7220,5809,17106,25972,27215,24923,16192,15388,20792,18377,42320,39302,29003,31306,34419,28422,14420,9269,18848,13545,11940,10952,13067,11609,12224,10284,65534,55230,43606,27956,28476,21560,15118,18348,32934,30874,37780,47826,22392,22006,26569,21249,13188,14568,17502,13935,18363,18327,17208,16216,0,4,6,10,9,17,20,24,30,40,36,34,26,21,16,17,20,16,16,22,21,20,20,22,24,24,20,16,20,16,14,10,14,18,20,20,18,48,62,63,59,57,43,46,44,73,98,106,199,174,104,100,89,89,59,78,91,90,93,95,46,39,42,40,0,2,4,5,4,7,9,14,14,15,14,13,10,10,7,6,9,17,18,18,22,22,28,40,24,28,22,26,24,22,22,29,143,125,84,107,136,110,118,98,53,72,102,89,220,162,176,200,25,34,32,37,23,36,38,32,40,45,38,38,50,46,30,20,7 +84,78,64,87,93,106,123,86,72,62,65,76,84,92,107,116,83,1124,1924,2904,4206,6014,6536,7954,8490,6510,6951,6826,9049,10596,11924,11492,66138,56765,34389,27042,22139,27822,32017,34644,39819,39926,48154,58388,65892,57722,50518,59175,12088,11492,13123,21890,27502,23503,27185,21784,22950,27189,19876,24770,22764,20674,18548,14642,55798,55609,33552,42133,36662,31002,34954,33972,15190,14998,13820,11202,11263,7102,5980,4430,19758,28708,34257,27316,18269,19130,23578,28834,44410,33780,32585,29230,29495,22828,13075,8532,14785,13228,12408,13066,15809,12784,11584,11801,30369,32364,26472,20587,19799,14632,10328,11964,24009,26340,28620,37046,25167,31129,33801,31212,18460,20024,24841,17282,16948,16870,13740,16598,0,4,6,8,8,16,17,18,22,28,26,32,27,25,20,20,31,25,20,21,29,29,23,20,21,24,22,21,18,18,13,10,12,16,18,21,16,41,48,49,63,57,36,37,28,58,73,101,219,169,125,114,101,92,78,82,95,96,91,88,55,58,57,62,0,2,5,6,5,7,10,10,12,14,12,13,8,9,7,6,13,16,16,16,13,19,23,40,27,28,24,29,26,28,30,34,143,138,104,100,121,108,98,95,88,99,120,170,293,216,143,178,14,22,20,26,20,23,30,24,30,28,25,28,41,40,23,20,10 +75,78,84,64,46,70,74,76,86,117,152,153,155,138,99,96,71,814,1559,2882,4224,5814,7682,8488,7868,9751,10685,9294,7576,11065,14337,15598,56477,39510,35197,24800,16498,15278,21059,21931,31699,51379,76450,83248,79153,73962,76406,73878,6740,8513,11928,14068,20268,15823,13620,15200,24045,22656,14739,13584,10091,11081,10478,12582,48277,49203,49934,49524,40631,30929,22687,23939,23251,20601,17176,16780,19543,15794,11653,7600,31033,31098,27786,26081,28526,32844,33931,33148,32050,25092,17514,12035,9984,9514,6496,3604,16570,16781,11838,16332,20319,14588,14025,10167,8884,7070,4532,6117,5897,7252,6602,8392,25908,22547,19599,28753,31870,27464,21434,22248,26856,18194,13781,17730,16820,18177,18633,20146,0,5,8,12,12,12,12,17,16,14,9,8,6,14,20,24,32,31,41,45,46,42,30,30,25,26,31,22,19,19,14,8,11,14,13,18,26,32,33,50,50,71,72,67,56,64,78,91,243,240,162,130,138,107,124,110,96,107,112,102,83,70,74,84,0,2,3,4,3,6,7,8,7,7,5,5,3,4,3,2,13,14,12,10,7,18,23,34,38,32,27,40,39,30,24,27,106,76,55,56,39,56,62,76,102,90,115,130,182,198,217,248,0,2,3,5,4,7,8,12,16,18,23,22,20,18,10,12,9 +60,64,69,52,32,56,60,70,65,112,143,154,133,139,92,90,58,850,1270,2275,3560,4673,5850,5984,7424,7801,6996,8501,7188,12326,14191,13878,43820,33134,31557,23410,13943,22457,25360,36539,32642,47492,65976,77352,53735,55603,81350,79392,5839,8080,13545,18290,19644,20555,17515,21761,28356,20871,18573,15188,15372,12605,10822,12996,37360,39970,45840,41002,38149,29499,20681,24528,23817,21918,19157,19192,21518,15920,11224,10000,35446,40065,32815,31636,33872,39960,39435,42026,36664,28525,22950,16932,16079,10860,8105,4468,15543,13720,9196,11458,14848,13376,10872,8986,7047,6376,4192,4942,7399,7144,6812,9654,27261,24218,18567,29070,22300,19253,21305,17267,24592,21244,15990,17411,22244,24001,18514,16699,0,6,12,16,15,15,19,23,27,22,15,14,10,17,21,25,32,34,37,39,38,38,31,26,27,30,38,28,20,20,14,12,17,19,17,22,34,36,39,46,55,66,80,75,60,66,89,72,197,176,189,148,174,162,142,100,102,122,165,105,116,86,79,82,0,2,5,7,5,8,8,10,8,10,12,12,8,8,7,5,15,16,14,14,13,18,22,28,28,24,23,36,38,38,37,42,112,100,53,64,58,62,68,83,96,102,142,148,163,182,180,208,48,42,38,31,29,32,26,39,37,49,56,50,59,44,42,32,20 +44,41,48,41,24,32,41,50,63,88,136,152,143,139,106,98,52,674,1402,2618,2030,2174,3255,4015,6806,6350,6734,6144,8681,11942,15316,17654,40244,36844,25612,19158,14460,33455,41558,48988,41938,51507,48744,61670,42578,54644,64868,55094,5782,8923,13360,22646,27002,20188,23393,28029,24672,22359,18390,21655,16410,13015,13218,12281,30064,36270,36806,41945,30162,30025,20406,26356,16981,18681,16912,16047,20843,17392,15841,14442,48608,33910,31172,29025,41820,45568,50237,46746,29214,21498,21250,15763,16945,13503,10462,6467,14432,11871,9317,10402,15917,15549,10576,11116,5747,5151,4262,5007,6496,8956,9038,9793,29343,24782,19994,31002,18451,18044,14604,21297,28703,26496,18460,19754,25724,19720,20550,18703,0,7,11,14,20,24,20,19,31,27,22,17,11,15,18,23,31,28,28,41,37,30,28,23,27,26,34,31,26,20,11,10,18,17,20,24,34,31,38,52,41,48,64,76,68,79,70,72,155,178,186,142,196,151,122,84,150,167,177,130,123,117,104,84,0,2,5,7,5,8,9,10,10,14,14,13,11,12,8,7,15,17,14,12,15,20,21,24,18,26,25,30,27,38,38,47,137,117,72,60,62,82,81,76,121,129,146,129,91,98,143,133,80,94,76,57,58,60,48,53,53,80,83,66,91,85,60,54,36 +44,48,52,38,26,32,35,47,46,62,112,100,88,112,97,94,55,460,994,1612,1562,1518,2060,2786,6954,5474,5690,5956,7802,11816,18700,16331,25574,23930,24974,20354,16522,34708,48819,49386,50122,45820,60617,55816,48128,54235,55867,66225,7063,11661,18572,25933,34151,32246,32980,29868,28344,24677,20315,24662,18103,22370,22848,19936,22684,32134,29274,34766,31714,25046,25313,20064,15232,14191,12989,18734,18910,21045,18055,16029,63300,41090,32050,34014,34551,49908,47204,46615,34730,32776,24367,18568,18202,12115,12803,6855,8885,7954,8819,8780,13327,10440,7808,8763,6455,6083,4377,5264,5597,7731,8903,8952,28303,20952,15007,19312,19788,14986,15172,17038,23624,21284,13982,22570,27362,22444,19485,16982,0,8,12,16,21,26,21,30,28,30,21,17,10,19,26,26,25,24,23,32,36,30,34,24,32,27,35,32,22,20,12,11,20,19,18,24,26,35,39,41,26,42,65,74,54,70,78,74,156,176,183,162,223,148,137,105,148,174,191,157,140,136,128,138,0,2,5,8,7,8,8,10,14,17,23,23,19,15,11,10,22,16,17,16,19,18,19,24,13,22,24,31,31,42,46,57,98,100,68,74,56,60,75,70,110,112,108,101,90,105,83,94,117,121,110,82,88,82,70,74,99,114,108,108,105,110,82,66,44 +52,47,46,29,21,24,29,38,17,31,51,55,67,84,79,64,57,226,344,490,750,901,1412,1149,6931,5472,6610,6446,8429,9680,9461,14975,9890,11070,11234,17986,23321,21545,22701,31592,61992,49052,38804,51141,52708,49969,58303,74676,7011,11378,20635,30756,31326,32552,32749,32703,22767,24815,20525,20426,27218,22134,12959,16630,17057,22938,33146,33591,33803,29536,20896,19218,12665,14832,16910,22957,22462,17634,21443,16478,58418,54666,36258,33462,36148,40818,40052,51951,45656,51085,41756,25449,18271,15772,8490,4551,4657,6769,6856,8799,9436,6409,5616,7719,7991,6082,6388,5822,5302,6932,8698,6956,23535,24209,22214,25874,22166,20460,21589,13009,26460,22905,21178,19913,23691,22506,16145,13234,0,7,11,17,22,29,27,28,28,24,17,15,10,13,17,27,11,18,28,30,29,24,14,16,32,29,26,20,20,19,12,10,18,18,17,20,26,27,23,33,14,18,25,44,56,66,58,71,202,171,211,207,196,179,196,159,135,123,163,162,162,126,104,136,0,2,4,7,7,10,12,12,14,17,24,26,20,16,10,10,22,18,13,13,16,17,16,17,11,12,13,20,26,29,32,42,97,94,66,71,72,84,72,69,80,90,96,79,73,72,57,52,128,132,111,119,96,90,81,95,140,136,95,97,138,103,74,60,43 +49,42,35,28,19,25,25,26,12,24,46,46,61,62,74,56,38,148,327,390,482,589,1037,854,4420,4808,5552,5760,6521,9388,10793,13416,11204,12892,10061,14924,13668,18718,30896,39500,56934,45868,32520,32804,63442,67303,67476,69632,15426,16736,22812,26032,24048,26293,30950,30560,30620,30188,31670,22521,45909,34114,23887,25677,25493,26166,24731,28618,27499,24902,14354,15536,9938,17218,22004,31178,27007,27047,23230,25027,46120,40158,36827,34540,33954,35982,36714,52751,45981,47754,33347,25011,14475,12332,6828,3952,3558,4774,5960,7334,5423,4689,4292,4868,5355,5363,5718,5288,4602,5736,6978,6306,16949,17463,19303,25644,22559,21294,21298,15264,27124,26050,23488,22366,23858,21470,19048,17479,0,8,15,19,25,30,31,28,28,26,22,22,22,24,18,24,12,22,30,31,27,26,19,18,25,28,26,20,17,18,17,14,15,20,24,21,28,26,21,28,14,23,32,48,57,71,64,66,150,140,226,224,210,172,178,156,163,164,160,156,156,158,138,124,0,2,5,8,11,13,12,14,12,20,24,24,20,14,10,12,16,18,17,18,20,20,23,24,13,18,18,26,34,38,34,42,74,70,62,56,74,72,75,61,63,66,80,65,77,64,77,94,147,118,109,108,102,91,97,110,117,122,132,138,168,136,86,62,47 +36,34,25,18,12,17,19,23,7,17,25,26,44,45,44,53,19,99,209,217,291,500,606,510,2654,3532,5370,4570,4818,7995,11470,14387,9924,9295,12728,11524,10502,19072,30282,49765,41671,45696,41312,36398,57267,64504,68434,57043,30926,32159,25041,21958,27540,28692,21976,23642,32392,37713,35436,35336,54631,42740,36488,35250,28916,28823,26716,25542,22895,17040,14780,16057,9925,16142,29070,37041,33776,37514,31320,35504,33445,32404,30420,27534,26611,27528,36388,45607,42456,40481,32666,22451,15398,12349,5910,2846,2929,3672,3688,4798,3512,3143,3360,4064,4160,4805,4122,3673,3762,4244,4268,4648,14363,20531,19944,27699,17636,14535,16872,20303,21184,22628,18562,25639,17530,17652,21460,19114,0,8,16,22,25,23,26,34,28,25,20,26,30,23,23,24,14,23,28,26,24,19,18,16,20,19,18,20,11,14,15,17,10,17,22,26,20,28,26,23,10,20,29,45,82,96,82,81,155,151,183,196,161,165,168,177,236,255,212,193,175,158,181,143,0,2,5,8,11,11,11,13,12,18,22,20,17,17,11,12,12,16,18,22,28,34,32,29,18,20,26,30,29,33,29,42,46,42,37,47,69,72,56,41,48,60,58,69,60,74,74,111,179,130,97,105,80,99,108,114,88,93,140,180,172,160,112,78,65 +22,21,12,10,7,10,12,14,5,11,14,14,22,26,22,29,12,59,105,113,145,208,268,264,1508,3307,5128,5479,6081,7508,11476,13749,12162,12742,12326,9504,11011,22809,32863,45573,43638,42012,43065,39209,59317,63557,75436,67204,40460,34752,30491,27120,30634,26400,19980,21675,30922,32524,42878,33588,43918,46946,34100,36487,25167,26766,39266,36419,28031,26176,24759,16442,13366,19799,26768,34465,39818,42762,43348,45309,45134,42836,30944,26448,22577,22602,23882,32452,47848,36051,27116,14770,13330,9086,4658,2174,1733,1694,1999,1979,1847,1716,2173,2260,2177,2759,2544,2880,2820,2777,2712,3396,7768,15210,16201,18501,19286,17970,14918,17974,17133,20731,19222,19498,19331,24554,24501,27142,0,8,14,24,25,24,25,30,25,27,24,28,39,38,34,34,18,24,22,25,21,17,15,18,20,19,19,16,10,12,16,16,10,16,23,24,19,26,24,20,14,27,37,66,86,112,126,132,161,136,113,136,146,146,150,199,218,285,202,222,233,228,191,175,0,2,5,10,12,12,12,14,12,19,18,22,20,20,14,14,14,18,24,25,30,34,37,34,26,24,34,42,38,42,37,39,49,56,53,58,55,52,42,26,23,36,36,54,44,77,120,126,164,145,120,89,47,91,108,114,109,114,102,124,162,136,118,74,55 +0,4430,7954,12047,18674,18520,23746,22199,28745,36470,32272,31829,36166,42030,39609,28079,29518,23802,26665,22180,15992,10696,6308,3487,0,2301,5488,9770,15848,13525,16425,14155,18842,15932,12541,6966,4160,2642,1494,794,0,0,0,0,0,0,0,0,0,4968,10139,12260,15504,14100,17372,17462,21262,20246,14158,9404,8217,16680,33373,35758,29756,43014,57181,59020,67454,82882,95587,84888,99668,120119,103194,70857,62578,73028,78248,55223,52710,44564,53889,47594,40694,30537,17915,15318,16691,17756,19955,13244,12165,8112,6639,3050,0,2066,4166,6528,9539,16104,23578,36792,48932,40252,37793,40386,47686,61870,56228,46408,40588,42320,31512,28443,35179,35788,36015,35926,41179,44256,36817,33136,33084,33492,31032,27319,0,2,4,7,7,10,10,11,12,14,18,24,22,18,18,17,11,11,11,10,6,8,8,10,8,8,6,6,4,6,6,10,10,30,40,42,50,129,181,231,228,303,281,230,274,253,317,305,210,252,305,230,265,311,288,349,381,335,231,305,316,288,185,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,17,22,22,21,32,42,41,49,41,33,34,23,18,11,10,10,7,3,4,3,2,0,4,6,11,12,17,16,16,19,18,15,19,18,20,28,44,62 +4,4258,9126,11742,12968,16014,22104,24154,27146,30304,31482,35628,23040,32130,36657,28575,19367,17636,25607,21101,15274,11534,7050,4262,494,3450,7272,9708,18367,16691,15372,19014,11963,12348,10930,8368,7183,6437,5236,6128,3599,4213,4999,4902,4523,4174,3959,3416,3366,6186,9474,9599,16924,17100,20690,18524,20953,21110,19224,22422,14081,26978,28391,38626,23640,39354,38771,54901,56940,61610,68426,73776,72518,94362,76112,77193,80671,72394,80751,68121,53128,53944,55770,47518,51156,31462,20374,14264,19509,17022,22179,16802,13356,9606,7660,3193,0,4082,8526,10941,12214,23190,29314,38766,55150,52600,43285,42735,47752,54424,62919,55681,39069,34468,31092,35498,51089,41007,39412,40644,31615,40046,29462,32997,28827,31974,28886,27951,0,5,7,10,10,11,13,13,19,20,18,22,20,18,19,16,13,13,12,13,10,10,12,12,8,9,7,7,6,8,8,10,22,38,43,59,75,146,194,205,222,218,286,270,203,231,270,214,280,288,317,246,299,354,260,334,396,308,206,286,332,314,212,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,8,8,7,6,11,24,24,32,54,52,59,54,41,40,56,34,46,44,34,26,15,18,17,13,16,14,12,12,14,20,26,23,24,24,27,24,18,20,21,24,24,30,46,43,59 +6,3905,8036,11959,11689,18835,21198,25616,16579,20476,22144,31558,21424,29030,27122,25702,15074,20670,20807,17409,9572,9319,6696,7170,1226,6265,9276,11042,16281,21528,20394,20128,9647,8026,10134,7664,9912,9172,8269,10858,8212,9742,9078,10573,7713,7082,8408,7329,8020,9460,10400,8396,15599,13812,18364,15086,26849,24418,30192,31628,22612,27726,33858,41778,13987,27485,34206,59936,31266,29585,40076,52287,42632,55257,65460,64704,84170,62286,60924,62639,52185,53084,69094,68515,47151,38966,19846,14094,19262,18648,22792,18806,12845,9912,7401,3606,0,5833,10609,18834,20987,30256,35438,41170,65393,58921,47898,37788,42293,48269,65400,58255,38210,33859,43703,39056,50568,46114,33902,33983,36139,39184,29282,35687,27698,26504,23678,21425,0,5,7,9,9,10,12,12,21,26,23,22,18,15,14,10,11,12,12,14,9,10,11,14,7,7,6,7,6,8,8,10,36,48,58,82,99,164,180,242,182,206,223,227,178,154,148,123,290,323,288,260,382,386,337,339,355,338,239,225,344,252,180,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,20,22,14,13,13,12,18,29,44,46,88,72,88,72,40,48,46,44,64,64,42,42,16,20,21,22,23,22,22,24,26,36,38,36,29,32,36,35,21,24,23,34,26,35,47,52,70 +7,3324,8274,12576,12308,16004,21156,19838,11497,12154,14100,23462,28602,31166,23957,17797,15740,16084,14386,12406,8158,9152,10111,8270,2012,5340,9093,8846,14774,16374,16113,17041,7941,7680,6799,7646,9194,10016,10451,17102,11570,14614,12536,12832,11667,14174,13627,14070,11133,10792,11753,11436,14629,12914,12572,12500,35404,27170,39325,37696,34642,36854,39102,36586,10710,17897,23988,44230,35063,39102,38023,43063,30128,36942,44643,46182,63843,57770,81736,70392,71185,73692,73022,59516,53753,35264,17516,15702,30140,20593,21956,17426,14058,10290,6422,3328,0,6770,12482,25718,28410,30401,42214,59302,81441,53366,37380,48487,38586,57861,69482,54298,47672,43272,37562,40741,50609,42909,37032,35284,22192,23344,25243,30901,32103,30874,21242,18827,0,5,7,10,12,12,14,14,24,22,22,21,16,16,12,11,8,11,14,13,12,12,12,15,10,10,8,9,8,8,8,10,52,50,75,112,131,184,186,242,244,232,229,228,168,183,146,97,287,278,340,340,380,381,306,353,307,284,210,258,304,192,132,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,30,28,23,22,22,18,25,43,60,81,122,113,116,93,44,48,47,51,64,70,56,49,17,20,29,33,28,34,37,38,38,46,53,44,36,40,33,32,18,22,22,25,28,35,56,66,65 +7,3044,7053,11268,12948,17110,15715,17619,6433,10772,14270,23168,29926,24395,23143,17250,13251,14294,13424,10344,6562,6560,8764,7097,3599,5498,8600,8544,9674,10877,9573,12712,5722,6594,9862,11883,10049,14483,15180,17124,12407,12219,10101,13934,18316,20776,17794,15046,14412,16482,18845,16355,13533,12756,15553,13990,47808,42717,47405,39852,41694,43216,43541,43282,7994,15810,29826,36193,35852,40632,51774,38627,17085,25867,28748,43435,61583,46168,48733,53124,86847,75076,89074,67928,48802,41340,21563,14044,31895,29422,17490,13301,14678,8712,6661,3432,0,9942,18685,25934,30258,28088,35882,58485,71945,71550,66289,51978,48872,40221,42180,33524,44266,36911,42646,47315,41981,36478,30199,37881,13937,19162,21744,21972,27230,21212,18874,17176,0,2,5,8,10,13,12,13,18,13,11,12,12,10,7,7,6,10,11,10,10,13,12,15,8,10,7,8,8,10,7,8,50,47,61,93,132,119,117,161,241,243,186,200,238,219,130,114,217,286,353,410,368,474,496,536,383,391,284,264,210,139,103,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,47,41,36,34,31,28,28,40,68,75,95,117,123,101,74,37,29,31,49,60,64,63,71,17,23,30,32,34,46,47,45,54,48,41,39,51,44,45,32,16,19,22,27,30,44,45,50,52 +9,3540,5959,9335,10971,14552,14443,14735,13150,13531,16618,22468,33416,29882,27735,22911,13512,13545,14526,11745,10166,10474,9041,7177,5797,6655,9594,8530,8104,9610,7958,8899,7805,10106,10844,9165,8526,12912,12275,20254,21946,21682,20969,26908,26701,30930,25506,17968,18685,17103,18783,20944,17811,18007,15706,16512,55931,45064,39250,36460,30308,33986,41493,29014,6304,12642,23267,28220,31122,33360,32734,31179,16808,23807,32797,49263,44440,50747,50360,54288,81232,67675,70664,56260,49216,49101,25646,21227,24714,26206,20517,15227,16396,12888,5945,2912,0,9974,17284,23536,29459,31306,43072,53608,74515,61889,45973,45566,36773,32089,30245,34931,29884,31499,33910,32458,28742,26888,27639,33170,26442,20640,21227,25517,24961,21150,18209,20869,0,4,7,9,10,13,11,14,18,13,10,12,10,12,9,8,7,11,12,13,8,13,13,17,10,11,10,10,8,9,8,10,60,81,77,100,120,126,136,184,208,184,158,172,238,176,147,125,250,294,292,420,373,442,475,458,310,308,222,198,158,129,115,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,54,46,54,58,36,32,44,74,106,132,134,148,124,141,35,38,31,50,68,66,65,64,23,38,44,47,37,60,55,52,60,54,36,57,54,53,59,37,29,32,30,28,30,35,40,46,43 +11,2484,5979,9646,12464,9969,11034,10523,18246,17412,20109,32371,35110,28309,29488,26884,10324,9990,13256,17108,15542,14242,10208,8975,6408,7433,7739,6327,4302,5778,7597,8179,10686,9663,12702,11074,10890,11142,14687,17205,31309,28404,28372,39241,46396,38179,35846,23631,22020,26682,23766,22218,20976,19388,21468,22867,54590,43996,45815,43583,28629,34748,31431,29509,2940,7589,14332,17468,18308,25638,24542,19498,18290,25320,31244,38889,40281,34705,38087,56308,93289,91348,61996,46873,72004,61483,39534,26234,17622,19384,22302,16531,16207,13076,7668,3467,0,12920,22056,27837,40394,44624,44632,44134,58446,57434,41440,54802,40321,36263,27968,36552,30117,27526,26118,18816,18444,20640,26999,39012,30208,24457,21784,26646,25342,19790,18958,22704,0,4,6,8,6,10,10,10,12,12,9,12,9,10,11,12,7,8,10,12,7,13,15,17,11,14,12,10,6,7,7,8,55,81,97,121,103,87,109,185,129,115,118,130,188,144,132,118,266,268,368,472,374,452,382,372,272,207,177,137,147,107,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,70,83,67,91,77,57,49,57,118,148,150,148,159,154,165,32,35,40,52,86,84,90,79,36,47,46,58,48,46,62,56,49,43,40,55,74,81,64,39,33,35,34,27,30,35,38,30,26 +12,2146,4316,8697,8978,12108,15899,18434,19547,22300,21396,28470,34927,25016,28652,30314,16213,15979,16778,16332,16888,17018,15044,12069,8124,7544,6816,6374,4348,4636,4581,4824,13686,16928,14415,12292,8889,14097,21990,26141,26462,31843,31387,42063,56229,42100,24494,23156,31176,23942,20767,23389,30549,26232,26053,28938,53621,43806,30439,27766,24460,24460,22511,21991,1684,6166,11567,14479,14889,17282,23586,22132,24917,29726,34646,37836,45608,42591,36452,50888,89984,74712,73975,67847,68011,62754,41412,35035,20521,20318,19650,14218,16627,13670,9034,4482,0,10330,21824,25986,37790,37370,31699,28674,48919,34493,36088,44818,45024,40371,28543,31184,27248,23140,20867,16304,16694,17100,19286,28936,31055,24366,21321,20578,20196,19868,16344,24455,0,3,5,7,5,8,9,10,12,14,14,13,12,14,12,13,7,9,10,10,7,13,16,16,10,14,12,10,7,8,7,8,77,108,104,115,122,118,88,126,101,93,97,114,110,116,93,86,267,232,320,435,319,378,281,284,287,204,179,114,92,97,76,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,127,82,76,102,86,70,69,64,124,137,162,173,193,241,251,26,34,40,54,67,77,72,69,47,66,77,60,64,62,80,72,69,54,51,64,70,84,73,53,34,34,32,32,27,24,31,22,16 +9,1670,3051,6449,8361,11475,17481,21015,21621,19494,15113,21193,20654,17592,21046,23612,18868,18084,18653,13562,11008,14784,14857,10348,10668,8992,7046,6965,8092,6231,4850,3764,23297,24622,36102,38323,35496,37298,27965,24411,32928,33089,23799,23222,21167,19062,19399,23947,31795,41471,43936,49322,40865,47731,44427,48850,47138,40195,28600,27092,21436,20285,29216,29290,0,5955,12388,16590,17852,18768,19543,23136,29703,22956,18533,24218,25032,27658,30664,42954,68836,65740,67768,82674,70831,52135,42278,30036,26096,23750,23850,14703,12752,10258,5942,3555,0,991,1833,2393,3238,13051,20174,22398,31236,29161,27602,36586,37892,29073,21890,17239,15357,12940,14260,19212,20357,24102,25760,32928,29770,31134,35044,29140,29379,41398,41325,31130,0,4,6,7,7,9,11,10,9,12,12,12,12,13,15,17,4,5,4,5,5,7,7,8,10,11,8,8,9,10,8,7,87,116,132,147,141,106,103,82,82,78,81,82,73,88,90,72,203,190,156,149,97,141,171,152,206,168,199,181,132,109,120,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,154,203,193,179,140,135,113,57,83,116,163,176,227,217,268,29,34,27,33,46,47,32,53,55,61,52,48,33,36,44,49,82,72,82,70,52,48,52,48,42,37,27,34,36,24,19,12,0 +17,1698,3322,5474,9322,12668,15723,20796,20714,17722,15980,17350,15550,17234,21180,25849,16898,16264,16796,13770,9024,10980,13625,10433,6200,6216,6297,7240,7014,6572,7401,6000,29460,29346,35754,35928,36580,37028,25795,29087,27233,23604,18874,21562,22200,23263,18992,25957,33551,43537,42000,40383,51835,51176,46338,42090,47408,46410,37658,35985,33669,30849,31626,28396,4228,10062,12812,12662,15550,17154,22942,27240,29596,25764,21124,23311,23554,27214,38776,53348,58654,58916,73059,64556,48308,52614,40768,35936,26355,22892,18133,14190,11296,9382,6718,3692,0,731,1648,2312,2227,7949,16322,16563,29908,24682,27420,32602,46011,41868,20474,17498,12282,10620,8480,14577,15976,19226,21878,26266,21706,22450,24875,26054,33130,39694,31445,30967,0,4,7,9,10,10,12,12,8,10,13,13,12,16,17,18,6,8,8,10,8,11,10,15,12,14,10,12,12,11,11,9,90,104,92,108,128,101,78,80,81,72,64,70,46,68,80,74,180,176,149,120,86,122,162,196,177,162,188,162,154,154,104,96,2,2,2,1,0,0,0,0,0,6,10,15,20,28,36,39,148,152,179,136,130,116,122,91,42,87,105,136,142,203,240,286,30,38,37,51,43,51,52,72,39,56,68,58,32,45,68,67,72,82,96,84,50,58,72,52,42,44,44,42,36,30,21,14,0 +19,1802,4046,5807,7439,10047,12028,14598,16983,14588,14082,15565,8530,13073,22508,28018,13346,12196,16993,15174,9482,9680,11712,11473,4552,5028,4643,6519,6583,6081,8139,7530,34119,31818,24858,35910,41808,35502,36046,35943,18265,15172,17940,21923,29608,29964,22896,28003,42677,39839,47290,37490,54742,45262,50258,53738,43006,44464,43370,40478,38735,29652,27360,22938,7210,8539,13972,14038,15245,17810,21280,24734,23238,22958,20452,18272,23043,35183,45459,50325,44258,51653,56914,45788,37030,37131,41917,37238,32256,26790,18508,17764,10985,9643,6662,3587,0,611,1222,2533,1875,4830,7440,8821,20860,22452,22584,31980,41699,37717,27053,24202,8248,6311,6210,8516,8644,13297,17334,16412,23925,25075,22464,22379,25906,23030,30764,24717,0,2,5,7,8,8,8,12,7,10,10,12,9,17,18,20,6,8,10,14,11,12,12,14,14,15,13,12,10,12,10,10,88,84,89,104,78,68,81,62,65,55,53,65,32,53,66,54,112,115,146,113,77,115,172,210,146,109,116,100,138,127,114,117,3,4,3,2,1,0,0,0,0,8,16,26,44,54,76,98,138,146,108,102,75,90,102,68,38,54,92,142,130,185,302,337,32,37,55,75,41,54,62,98,33,46,62,56,37,65,76,80,88,85,81,92,58,54,68,55,55,58,50,47,45,31,28,15,0 +32,1759,3038,6577,7793,9489,9096,14220,12516,12059,10053,11958,7601,12370,13489,21980,11086,11652,14758,13833,13327,12428,8818,8701,4108,4715,4809,8260,7478,6590,7630,6862,25210,25635,31597,31011,37786,34110,40992,31320,19520,16150,19832,22276,25313,26485,22791,24520,36056,39574,49719,45890,43216,44981,46808,54265,53938,51303,62568,43683,42316,46390,35943,34448,10660,11556,11362,12000,10685,13188,13794,15024,20402,20514,24836,21834,24357,38014,49988,65973,39503,41954,40263,34866,23304,28131,26941,29020,29140,21408,13601,15490,10940,8931,5486,2454,0,614,1048,2096,2254,4050,6280,6674,23192,27590,28245,27868,31255,23142,17590,17734,5191,4823,4809,6340,5394,8713,11620,12270,18329,17974,17034,18758,20945,21697,20380,22582,0,2,5,7,7,9,10,12,8,10,10,12,10,16,16,21,8,12,11,16,17,16,16,16,16,16,13,13,10,12,10,10,99,106,110,78,82,72,76,58,66,56,54,41,20,40,48,46,67,82,99,102,79,106,153,168,99,93,90,84,100,80,90,85,5,6,5,4,2,1,0,0,0,15,20,38,61,75,107,106,103,85,76,80,75,78,86,60,42,72,119,144,136,193,245,262,28,48,58,54,53,72,84,102,32,47,50,46,45,64,92,71,76,92,78,105,83,84,101,77,40,48,50,46,46,30,29,12,0 +36,1912,4527,5634,9329,10623,14123,15695,14296,14807,12322,9838,6418,11930,15027,21538,9073,9745,12360,14856,15126,13482,8608,8938,3333,5049,7114,6971,8038,9878,11092,10586,28258,21798,19532,20371,26996,28934,31364,35473,16974,17101,22153,26128,25041,19700,16300,23867,42868,43555,39681,35463,47608,52926,51402,56336,67208,64551,69184,54344,38420,33258,30505,35156,13633,10664,10937,9928,9044,7159,6125,7830,11548,12512,18247,22668,21730,38881,43639,56866,28335,24316,18289,16331,18560,16169,18908,18886,23518,23393,17511,13010,8485,5825,5073,2733,0,710,1256,2055,2186,3342,4384,4004,22924,22816,22351,21318,23792,23922,18194,15401,3384,2826,2372,2805,2556,3187,4716,5538,15193,21086,20371,22594,18952,16945,22736,28441,0,2,3,5,4,6,6,7,7,8,7,9,11,13,11,14,9,14,16,17,17,15,16,19,16,15,12,11,10,11,8,7,144,128,77,64,58,57,70,72,56,36,23,16,14,24,30,46,50,72,71,78,85,108,136,124,65,86,92,74,68,59,50,45,4,5,4,4,2,2,1,0,0,23,52,58,74,99,104,130,55,46,46,61,56,60,58,39,63,107,128,151,124,243,314,364,23,28,31,56,72,94,122,106,42,50,42,55,71,74,75,60,89,80,71,82,109,129,122,98,42,42,39,44,40,33,18,9,0 +27,1833,3322,4772,6776,7748,8286,10431,12859,12583,11082,8312,7012,10121,12501,18116,6846,10004,11609,13722,12452,12658,11812,10849,7402,6704,7409,6302,9600,10293,10954,9655,22450,23430,24193,26230,19049,20276,24993,29380,15012,14140,15895,21671,24045,23216,18860,26341,31324,34507,37816,43768,42676,45253,47887,58338,67736,67368,85381,78855,69250,46608,37301,33322,22239,15251,17819,14701,17753,14542,14539,12084,12700,14854,17966,23274,25354,37224,45257,40800,34466,30374,24548,22118,17420,18127,19504,18674,22868,16078,14034,12970,7509,4660,3538,2073,0,584,1097,1669,1993,2833,3656,3244,14208,16364,16456,17669,17523,20014,14140,9819,2791,2278,1585,2065,1782,2762,3069,4304,14050,15032,14970,15234,12155,13264,18326,17942,0,2,4,5,5,7,7,8,7,10,10,12,12,13,13,16,8,16,19,16,20,19,18,20,13,13,10,11,8,10,8,7,169,119,92,77,54,60,53,54,53,35,20,20,12,21,27,40,35,49,54,50,75,78,81,92,50,53,58,62,45,42,48,40,6,7,6,6,4,4,2,1,0,32,66,92,97,106,126,142,98,78,90,108,80,66,54,45,53,88,118,135,142,206,262,283,17,24,34,54,78,82,110,104,60,63,58,74,86,86,70,76,64,63,62,82,92,104,110,90,37,50,48,48,40,33,18,8,0 +26,1596,2953,3941,5085,5300,6572,7469,9292,7426,8863,8117,6426,8932,12024,13080,6497,8496,12068,13845,13037,11930,11246,9959,10406,9682,8734,6533,8923,8370,7378,6659,25316,22372,23610,24028,19573,20785,21938,14818,18232,16362,16178,23671,21032,19675,18870,21508,29817,32160,39199,47423,51355,43708,56830,57990,68255,83983,109258,114456,95316,54497,33486,28860,28014,25220,20670,22373,28767,23248,23147,16976,13442,17400,17803,20728,21000,32762,35754,42402,40108,40347,28530,27819,15330,13426,14649,16554,15927,15816,15432,12157,4173,4016,2972,1477,0,412,857,991,1242,1506,2461,1932,8480,11455,12288,14905,16706,11979,9345,6751,3354,2786,1546,1947,1081,1845,2932,2515,10224,11565,12404,9114,6916,6518,8654,9129,0,2,3,4,3,5,5,7,4,7,8,8,9,12,11,16,8,12,17,22,17,15,14,13,13,12,8,8,6,7,6,5,147,104,79,58,59,60,42,34,31,25,20,22,9,19,22,20,19,24,26,23,47,50,56,62,21,28,34,29,34,32,30,23,6,7,6,6,4,5,3,2,0,28,63,86,98,130,141,174,126,144,120,143,90,75,58,62,50,86,111,106,119,147,212,222,9,18,32,55,69,86,108,88,78,72,58,75,95,90,80,75,55,53,54,51,71,66,74,80,45,55,46,45,35,29,16,10,0 +31,1370,2568,4938,4710,6326,7274,7714,7596,7876,6567,5808,5702,6572,9393,9739,7960,8692,10601,11472,11734,12078,15795,16626,9858,10636,8881,9216,7348,9112,10071,9900,17583,20364,22571,20098,14173,17520,20412,18670,15440,17445,13681,18976,19265,21274,21795,27942,33878,33898,34941,46778,56494,49965,62765,61508,87556,102636,107804,110368,91672,76214,35134,33892,33981,26218,20606,32204,35888,31858,26356,20512,14068,13908,16367,17726,21050,24803,24526,32120,37978,28704,25960,26245,17056,17383,16345,15114,11804,11849,10690,7204,3882,3147,2571,1233,0,190,446,591,681,997,1214,1240,4541,4920,7472,8180,9029,6876,6139,4420,2208,1690,1218,1148,662,1021,1728,1272,4526,5596,7818,5416,4430,5178,5397,5598,0,1,2,2,2,2,2,4,2,5,7,8,8,12,11,14,9,14,19,20,22,22,20,18,11,11,8,7,5,6,5,5,104,78,77,60,59,44,37,36,31,29,20,22,10,16,17,15,12,14,16,14,27,28,30,30,10,16,16,15,20,19,16,14,5,7,7,7,5,6,4,2,0,34,69,100,101,134,122,149,155,156,140,152,108,95,63,64,52,68,96,86,72,106,188,164,5,15,25,47,61,80,112,88,69,61,63,80,85,96,103,87,60,60,50,59,64,64,65,60,52,50,38,36,23,22,17,9,0 +36,814,1541,2850,3939,6095,6628,7094,8655,8181,9443,8638,6060,6508,6795,7876,8902,10038,12063,11830,8901,10351,10586,8133,6512,9171,13026,15190,12517,13485,11201,11096,14482,27683,47369,56430,59161,48273,52450,62612,54411,43558,36133,51357,51319,41031,32268,29016,33622,41536,40703,27796,26414,18821,13318,7855,0,1924,3956,9010,11888,15606,19858,26734,38534,38396,42325,40399,27362,31165,24746,22055,16287,16580,17576,15931,12306,19543,22845,28004,29356,31189,27991,18254,12108,18260,19442,16026,17203,17566,21100,17583,13408,11269,8280,3400,0,130,305,423,457,498,687,984,1193,1384,1903,1873,1624,1496,1202,1478,1482,1534,1238,849,464,297,183,78,0,526,976,1231,1433,1414,1861,2019,0,0,1,2,2,4,4,5,5,7,8,11,14,12,11,10,10,12,15,17,12,12,13,12,11,12,14,12,9,7,4,2,72,86,83,86,83,66,47,58,54,56,49,48,41,41,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,23,34,33,106,143,172,171,177,160,176,260,243,208,168,152,173,259,244,218,195,220,191,188,256,269,210,234,224,147,176,0,14,25,40,50,71,82,92,82,75,71,76,95,100,102,85,66,88,110,139,122,120,135,101,76,53,51,39,20,14,10,6,0 +50,864,1879,2652,3663,4920,6048,6860,9489,9136,8744,7746,4377,6046,5837,7767,6966,9379,11405,8353,6638,8902,7318,6612,5711,6824,8628,10975,11264,10560,8841,7990,17607,27683,47876,46531,44946,45765,46663,49396,49486,44772,44736,46731,36296,36166,43494,46608,34215,34634,33958,30504,23583,17315,11513,6505,112,1606,2949,7283,11572,13604,18657,23350,39540,40240,40314,31447,25390,20121,25463,19363,16207,13088,17821,13496,10902,13405,16470,20692,25536,23182,22221,15931,12020,14110,12782,15966,12966,18580,19810,14649,10105,8760,7002,3274,37,144,261,350,501,590,644,916,1164,1406,1828,2183,1680,1880,1319,1812,1604,1503,1909,1340,869,538,256,107,7,476,712,1033,1233,1544,1814,2004,0,1,2,3,2,5,5,7,7,9,8,11,16,16,10,12,9,13,17,16,10,14,12,12,14,14,14,12,8,8,6,6,48,56,65,74,74,63,52,53,36,45,56,52,61,43,40,27,14,10,10,8,7,8,7,8,14,14,8,8,8,9,7,5,7,16,26,30,26,76,91,134,153,222,223,272,306,292,249,211,121,150,214,244,207,187,138,141,140,172,249,200,262,230,180,234,17,34,51,55,40,50,76,83,78,62,67,76,86,98,96,97,52,70,105,117,136,134,155,130,108,80,70,54,23,20,14,8,0 +59,855,1670,2350,2468,4068,5098,4914,9467,8975,7540,7492,3708,5552,7076,7496,5595,6720,8590,7772,5236,5978,4968,5477,5659,7032,6718,6618,8460,8840,9861,10887,19871,33249,36716,35316,36456,38764,38938,39892,64394,58267,48084,46456,35936,41099,42046,48516,51176,54267,42277,27290,18978,13995,6255,3758,199,1300,2915,5624,9178,13289,17529,19342,37981,35385,31790,34792,17675,16253,21487,15670,12382,13130,12682,14044,8871,9591,9418,12845,33965,22694,18840,11932,16842,14920,11644,12466,13427,15255,14661,9278,8884,7854,5301,2280,89,212,266,348,401,587,648,834,851,1117,1578,1520,1670,1702,2056,1732,2348,2443,2054,1282,988,732,398,224,13,317,738,739,1439,1520,1880,1868,0,2,3,4,3,5,4,6,7,7,6,8,12,13,10,10,8,10,13,12,7,8,10,9,13,12,11,9,7,7,6,7,34,44,46,50,72,59,56,61,31,38,52,45,66,62,48,55,23,21,15,12,12,14,13,12,23,24,17,15,16,17,11,10,8,13,20,28,28,40,66,99,207,248,318,305,263,265,244,223,96,131,166,170,131,125,120,114,157,168,160,173,230,203,212,196,32,46,62,79,44,57,74,86,58,54,62,73,81,110,114,166,55,58,79,71,138,158,156,142,103,95,66,46,32,26,13,7,0 +69,867,1801,2204,2908,3202,3165,3969,6208,8488,6448,5524,3352,4522,5077,6168,4440,4462,5897,5912,5262,4745,5812,4822,6090,6660,7049,6834,7774,8722,9648,8042,15860,25840,40710,39956,36513,33642,36972,31705,61606,62748,51150,48520,46369,41404,35300,42074,44326,34336,37030,20987,16036,10507,7278,3694,300,1904,2512,5370,9973,11112,14293,14376,41796,37114,28358,29050,16826,16652,21370,15941,11039,9321,10135,11219,7889,8185,9210,9632,31598,23636,13550,12314,17742,14859,12556,10486,19190,16457,18382,12420,10698,8388,5847,2730,145,234,258,394,477,744,1073,1302,751,791,1300,1476,1748,1742,1528,1658,1954,2218,2422,1508,1098,754,565,264,18,286,703,749,1156,1631,1283,1418,0,2,4,5,4,6,5,6,7,8,7,9,9,11,9,10,10,12,14,12,7,9,10,12,10,12,10,10,7,8,7,10,35,44,40,46,59,66,46,48,39,47,61,58,76,68,52,63,37,36,26,28,15,18,20,17,34,32,32,28,21,21,15,14,8,14,20,26,31,46,75,84,208,278,308,342,346,296,236,168,107,132,124,156,142,125,111,110,127,112,144,136,179,158,171,182,63,59,82,79,63,64,74,70,84,74,72,88,67,82,128,172,57,73,77,92,133,133,112,161,98,84,70,52,39,32,22,10,0 +69,691,1120,1687,2382,2662,3452,3061,5269,5302,3687,4370,4328,4086,5377,5888,3022,3322,3239,3918,3860,3973,5258,6130,5771,4826,5245,6562,6494,5966,6043,6256,14243,25828,36796,33073,43526,30511,16187,10491,54743,58505,67549,62595,43533,43286,37902,25414,39884,31980,19331,16952,14152,10513,10119,6166,524,3306,5439,6828,7471,8570,7554,9810,32902,40431,35065,24795,19048,16095,7904,8378,6786,7433,10925,9609,10197,9534,7378,7516,23429,20288,18936,18328,14818,13275,9135,7138,20913,15676,10870,8288,9253,7309,4815,2594,218,270,365,535,566,672,709,981,402,766,892,1045,1710,2357,2317,1722,2432,2212,1622,1603,1296,786,627,281,24,404,702,774,984,1095,1024,738,0,2,3,4,3,5,4,5,5,7,6,7,6,8,8,8,11,13,11,10,6,8,9,9,7,7,6,7,6,10,11,11,34,45,53,60,50,47,32,42,42,39,49,60,68,69,60,71,45,49,43,29,19,22,20,19,38,48,43,29,26,29,23,19,8,19,23,24,34,53,59,81,172,248,251,307,318,297,220,258,136,143,152,140,144,135,83,106,74,70,72,88,98,201,271,288,81,90,102,96,78,68,46,45,105,110,120,101,68,93,105,183,58,71,104,106,150,151,217,193,87,60,56,57,46,36,18,11,0 +87,690,1356,1932,2818,3364,3225,2620,4415,4466,4282,4554,4629,4662,4755,4977,2280,2550,2526,3399,2828,3244,4385,4403,4139,3992,4532,4737,4386,4401,5094,6210,11071,17776,31326,35566,31050,28571,21142,16772,48199,51654,45992,41421,33762,33332,37902,25544,36156,25261,15412,14687,11438,8763,9721,5374,773,2442,4724,5168,4985,6836,6550,9192,46983,42396,34016,26090,28947,19610,15061,10506,7712,10167,12882,10458,12019,10211,8126,7566,23059,23632,14746,16758,13567,11861,9845,10068,17436,12112,13043,9046,7628,6283,3840,1991,276,306,356,412,393,525,614,784,468,574,840,1278,1472,1710,2056,1476,1780,1806,1706,1494,1169,973,635,320,73,413,702,908,992,1007,974,793,0,2,4,5,4,6,5,6,5,8,7,9,7,10,8,10,8,12,10,9,6,8,8,8,7,9,8,12,8,12,12,14,49,58,70,91,75,62,44,64,78,78,72,84,66,73,68,77,60,72,64,40,30,30,34,32,38,46,48,45,44,38,28,20,8,19,21,26,46,52,53,75,155,218,201,267,251,286,203,185,137,136,158,135,151,129,118,103,84,68,87,94,133,206,275,294,109,109,114,93,130,98,74,72,111,136,150,110,127,116,167,178,74,112,122,134,123,169,239,229,108,93,74,54,46,34,16,10,0 +84,634,1306,2275,3459,2928,2936,3325,4682,4879,4156,3884,6203,5520,5754,5038,1723,1449,1726,2038,2045,2771,2813,3696,2856,2577,2952,2807,4102,4050,4514,4569,10690,14710,22340,29596,33414,30579,31417,28868,47739,31567,30570,33226,28301,25224,25503,25498,22610,19628,11615,11296,10264,9648,6190,3507,789,1890,2597,3235,3801,4603,5872,5857,51811,51014,38532,39194,31220,29222,17985,14171,10350,12625,12178,14213,11996,10859,8216,7247,22853,16856,15868,13146,16460,12553,12067,11348,16981,11844,10978,9094,7981,5305,2610,1440,325,342,318,300,206,372,450,820,403,643,688,1156,851,1032,1243,1251,1564,1575,1508,1532,1492,1083,721,462,108,290,612,706,833,766,611,690,0,2,3,4,3,5,5,5,4,7,7,10,6,7,7,10,6,8,8,7,4,6,6,7,6,8,8,12,9,12,12,12,55,77,93,112,99,80,64,82,119,116,101,90,69,73,64,82,92,89,76,58,40,50,43,49,52,58,53,49,51,38,33,22,9,18,26,26,43,41,50,64,181,202,220,214,269,194,212,184,173,169,138,126,147,146,116,80,87,82,97,92,171,195,238,251,126,145,132,144,137,134,108,106,164,148,146,131,150,151,183,155,106,144,159,164,138,197,190,155,130,92,67,51,38,34,18,9,0 +76,774,1762,2620,2816,2806,3198,3198,4772,5080,4746,6018,8082,6212,4973,4210,996,884,907,1347,1469,2039,1911,2165,2007,2342,3188,3080,3361,3872,4526,3800,7072,12803,19044,25192,25688,28560,28617,25468,43306,37610,28953,27950,28067,28256,29100,27498,17672,17788,10638,7220,6075,6517,5170,2790,821,1114,1726,1906,1761,2761,2722,3468,49185,46877,43723,41580,33221,23708,21408,17045,11052,14334,16762,18576,17671,13608,10972,8811,17055,18110,16527,14168,17609,14868,17028,14876,11714,11555,7860,5332,4268,3208,1906,838,346,242,281,250,179,298,294,536,411,591,752,896,892,747,1073,1160,1620,1489,1539,1630,1651,1022,840,446,132,338,464,619,595,713,671,768,0,1,2,3,2,5,5,6,5,7,8,10,7,8,7,9,5,7,7,6,4,5,5,5,4,6,7,11,9,12,11,13,78,111,104,130,132,111,93,105,160,142,141,130,98,100,103,124,120,132,112,71,67,44,47,48,65,72,72,69,64,52,37,28,12,24,25,28,40,44,42,62,141,184,158,206,230,174,158,136,150,156,129,146,108,126,106,84,56,91,122,152,204,257,259,284,109,120,127,116,158,148,152,150,185,142,149,162,218,224,183,170,192,182,219,162,115,164,140,142,176,110,77,57,31,30,22,12,0 +50,419,883,1422,2333,2439,3240,3943,3758,5620,6807,7341,6864,5188,3695,4268,0,90,199,339,450,707,838,1172,1202,1186,1721,3346,3860,3529,4958,4714,6509,11333,14262,20582,20539,21294,21044,27672,33342,41632,48194,53366,41467,38277,23355,24244,15535,13144,11624,11534,14197,9305,7231,3591,798,757,694,496,436,370,185,98,41521,33975,35587,34831,22682,19724,21297,16501,10595,9026,8805,6288,2869,5832,11094,12669,14414,10792,8036,5755,5192,5901,8375,11419,11623,9283,5879,4871,2299,1538,921,526,300,401,567,617,615,520,455,424,548,678,733,673,876,908,800,828,1782,1732,2003,1954,1362,1070,721,354,156,253,275,470,660,595,407,531,0,2,3,5,4,6,6,5,3,5,4,5,5,7,7,7,3,4,3,2,2,2,1,0,0,2,4,7,9,10,10,13,129,133,93,95,95,154,179,166,182,182,132,158,249,177,120,123,129,96,71,66,48,45,43,56,56,43,33,37,34,27,19,24,16,38,65,62,80,69,58,64,86,130,150,216,226,204,274,215,128,123,99,142,136,99,96,62,50,89,102,202,239,196,220,248,106,153,163,175,169,181,179,179,148,114,98,120,123,135,150,151,291,252,199,216,224,235,183,160,173,135,116,124,121,92,64,28,0 +53,480,1000,1318,1844,2339,3687,4108,2900,4020,4674,4911,6303,5186,4291,4876,0,100,178,284,368,682,704,1059,968,1388,1718,2422,2948,2564,3578,3298,6289,9408,12016,12747,20181,20054,19928,19612,32790,38550,30088,35169,31332,28172,16756,19576,13498,13790,10312,10732,9500,7980,5180,2814,669,570,498,396,338,246,151,86,41639,34244,38190,31064,25599,20182,18088,13426,7124,7908,7716,4716,3068,4652,9626,12255,11742,11214,7131,6714,7204,8435,8348,8452,11071,7677,5442,3535,2366,1245,894,417,278,414,424,569,564,495,443,456,532,780,827,760,650,629,667,620,1406,1486,1470,1452,1028,836,762,432,197,203,253,396,390,464,465,472,0,2,5,6,6,7,7,7,5,6,5,7,7,9,8,8,5,6,5,6,6,7,5,6,5,7,7,8,13,15,16,14,95,114,82,94,101,108,136,129,219,178,179,188,230,164,120,138,141,106,66,62,55,60,72,60,77,66,39,46,46,44,30,28,15,32,46,74,68,74,57,67,84,115,176,212,233,268,220,180,115,102,80,114,113,75,64,44,40,88,92,150,199,198,193,230,102,144,115,155,166,143,171,144,176,134,118,106,118,163,198,178,282,236,173,170,247,226,146,139,157,140,149,138,135,98,54,28,4 +58,644,1017,1498,1822,2734,2953,3508,1559,2158,3756,3604,5464,5572,3952,4466,0,113,198,370,385,658,879,998,702,1172,1738,1940,1890,2683,2639,2288,4299,6217,6403,7870,13912,12637,12176,19427,32918,31748,25445,27144,24608,17119,17930,18668,13068,12760,11717,9763,9022,7616,5608,2808,631,529,327,359,205,147,128,109,44831,36320,32953,28373,23176,14138,11788,8933,5960,6020,6675,4436,3412,5662,8089,11109,14029,11904,9196,7438,6822,8053,6611,7255,7146,6954,4611,3108,2122,1291,736,345,300,433,428,522,460,500,443,308,606,548,669,567,543,669,628,512,1578,1857,1653,1454,714,779,599,388,176,189,157,240,303,375,406,477,0,2,4,5,6,7,7,7,4,5,4,6,6,7,7,7,6,7,6,8,8,8,8,10,8,8,9,10,13,17,16,15,62,70,72,88,76,86,84,73,220,200,180,214,168,146,126,122,109,78,70,67,70,67,77,87,92,89,60,77,61,55,46,30,17,27,30,44,61,50,60,92,90,102,153,166,203,168,196,163,70,100,96,142,93,82,47,43,47,76,118,119,109,164,168,188,111,124,104,88,117,135,110,108,146,145,102,105,156,171,186,182,199,181,130,128,227,149,140,162,145,134,135,129,126,111,61,41,6 +60,582,1028,1482,1352,2019,1963,3142,1076,1852,2666,2194,3951,4045,3036,3892,0,129,258,374,509,710,1057,1063,512,864,1086,1418,1531,1545,1868,1576,2726,4572,5050,5570,11028,10500,9404,13522,24504,23349,16749,17640,23816,17768,16815,12606,9510,9632,10311,8196,6206,5115,3862,2442,318,320,218,220,151,134,106,105,46220,38396,29985,28362,17037,11270,9980,7408,5127,5707,5224,4012,4740,4962,7605,10192,7915,8218,8186,6754,7547,7632,8450,9248,6282,5272,4998,2918,2036,1264,1014,498,360,516,624,514,650,575,441,346,508,522,496,501,762,786,790,544,1830,2041,1462,1370,754,692,644,414,158,172,124,210,283,292,333,353,0,2,5,6,5,7,7,7,5,6,5,7,6,7,7,7,6,7,7,10,9,12,12,14,12,10,12,14,17,16,15,17,44,64,61,85,58,84,84,84,189,188,135,150,125,128,100,118,106,76,59,76,98,80,68,83,104,103,76,88,61,70,58,38,14,22,22,36,51,42,48,66,106,120,123,147,139,123,124,130,64,94,107,112,84,70,62,47,43,64,78,101,97,132,156,247,149,128,111,94,101,78,71,94,104,98,82,121,172,148,177,205,261,274,229,182,246,180,170,150,139,124,104,106,120,88,47,29,7 +81,449,691,1114,1494,1519,1817,2536,520,902,1121,1126,1484,1688,2433,2787,0,206,354,422,586,644,840,1142,418,424,577,717,852,540,403,396,1961,3343,5192,6268,8167,8982,11958,14298,14579,13482,12916,11943,15212,15215,15019,13713,9526,8228,5640,4573,2842,2321,1227,1055,125,104,80,99,107,84,68,99,34774,33342,25382,18353,14566,12402,7139,7426,5372,6740,5922,5502,4562,6364,8215,8802,5689,6176,5136,5630,8220,9763,8347,9265,6230,5179,4259,3027,1472,1311,990,542,461,380,360,538,646,610,511,281,611,770,786,927,901,601,452,533,1852,1468,931,1000,832,726,649,379,104,109,128,167,210,271,422,484,0,2,3,4,3,5,4,5,4,6,6,6,4,6,6,6,4,6,6,10,10,12,11,12,12,11,10,12,14,17,17,13,42,62,64,65,58,66,85,74,158,107,100,126,123,119,130,98,66,86,90,104,100,89,92,96,103,102,122,86,88,89,60,36,9,17,24,32,30,36,31,39,94,120,107,96,110,100,124,133,85,101,126,122,108,110,92,60,35,49,72,92,104,181,268,335,156,168,127,86,54,69,78,74,71,114,128,144,168,271,339,349,293,212,213,240,192,193,177,126,123,138,140,131,78,58,39,22,7 +74,320,550,866,1201,1158,1468,1430,477,772,788,984,1174,1366,1636,2608,0,156,248,317,488,552,666,874,262,354,442,484,654,402,288,391,1401,3312,4773,6044,6070,8194,9602,9268,9341,9312,8354,8836,11144,12592,10554,8989,7076,4946,4274,3538,2062,1527,1111,883,180,148,96,117,128,138,128,135,27114,20765,22037,18278,11742,7497,6483,5940,3985,4851,5832,4649,3690,6063,7730,6968,4852,4769,4278,5256,6084,8079,6528,6776,4987,3875,3644,2468,1030,1050,862,568,422,486,395,452,445,576,493,327,576,670,664,816,824,498,347,458,1503,1204,622,742,642,592,416,312,101,91,116,171,188,230,332,363,0,2,4,5,4,6,5,6,5,7,6,7,5,7,6,7,5,7,8,12,10,14,12,14,16,16,14,16,12,16,16,20,37,59,67,56,71,74,69,92,171,136,98,134,143,124,112,96,74,84,108,122,82,111,98,100,122,119,82,88,86,60,56,36,17,22,32,36,29,38,37,52,79,78,72,80,78,86,82,111,86,74,101,87,92,86,66,55,33,54,67,86,98,146,199,244,113,96,116,74,36,46,61,67,50,78,94,124,160,264,346,328,239,233,216,232,200,178,187,138,102,106,98,99,85,74,45,30,16 +73,231,334,401,864,876,942,812,362,575,696,648,972,1080,1262,1470,0,64,126,195,271,392,614,666,221,233,317,405,453,422,292,346,1528,2265,3180,3693,5053,6527,7116,6207,5629,5081,5758,8339,7932,8737,7896,6727,3798,3274,2786,1970,1523,1292,822,582,214,152,156,202,193,199,158,142,14505,14146,11480,10120,5549,4701,4009,3910,3555,3879,3854,3378,3294,5054,5210,4148,2927,3694,3279,3420,5281,4062,3896,3547,2181,1872,1862,1360,878,918,707,396,359,440,422,567,412,326,358,291,624,682,740,647,640,486,370,425,946,684,529,486,545,436,385,317,94,115,98,106,147,225,282,286,0,2,3,4,3,5,4,5,3,5,4,5,3,5,4,5,3,7,8,10,9,12,12,12,18,17,14,16,12,14,18,20,36,44,47,53,60,55,62,87,164,140,106,128,184,150,120,87,77,88,120,124,101,132,133,130,112,101,75,83,72,57,46,32,22,31,36,38,32,42,42,57,48,46,56,45,74,76,72,60,59,65,63,73,52,54,48,33,34,46,70,77,97,113,154,159,116,87,76,63,27,40,50,44,24,44,62,94,162,173,236,350,194,175,208,198,213,174,150,92,92,105,86,74,74,64,63,43,28 +66,126,213,262,512,480,560,488,217,286,326,352,504,570,514,877,0,32,70,109,150,204,323,402,172,220,341,374,414,374,286,276,1011,1550,1813,2160,2130,2618,4111,3870,2476,2474,2772,4582,4733,4306,4143,3396,2181,1682,1178,1066,938,702,397,356,224,196,191,252,272,249,233,188,7907,6752,6402,5690,2836,2720,2329,2082,2090,1998,1791,1708,1605,2648,2994,2272,1734,1845,1874,1532,2607,2060,1708,1978,1138,1012,1131,698,538,550,416,284,337,340,373,428,453,317,345,356,541,614,517,662,736,530,408,386,778,502,316,375,382,324,286,242,88,94,85,105,105,144,128,114,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,8,10,10,15,16,16,18,20,22,22,17,20,21,24,37,34,34,42,52,70,80,90,161,120,99,132,190,156,102,102,101,114,136,116,101,127,108,104,159,105,68,67,49,49,53,41,29,34,30,34,25,38,40,48,38,41,51,46,39,46,40,32,28,38,33,39,27,29,30,26,25,40,50,76,99,104,103,112,87,76,47,46,21,25,28,24,12,26,53,74,124,156,201,258,249,186,198,189,176,140,126,74,63,70,65,56,59,56,50,47,40 +44,36,37,30,13,14,12,10,7,8,8,7,5,5,3,2,0,8,15,24,30,95,138,200,198,233,275,322,264,217,189,241,300,353,298,225,231,203,177,88,26,27,23,24,17,15,11,7,0,44,79,147,183,147,150,202,249,230,226,270,297,312,280,245,222,287,286,216,217,218,243,231,225,201,244,263,204,159,107,78,53,60,57,50,37,33,21,12,0,16,30,46,47,130,187,178,249,222,205,310,361,294,284,379,578,506,402,565,650,452,340,338,357,255,176,162,150,133,132,138,123,85,69,59,40,35,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,11,12,14,18,16,16,17,22,22,17,20,24,28,32,33,30,40,36,72,84,93,103,114,102,125,171,160,126,116,110,114,120,110,97,106,86,109,156,110,61,42,39,42,41,41,31,28,34,27,17,30,33,35,38,29,31,23,18,15,11,7,0,2,4,6,6,12,15,17,18,25,34,48,71,75,77,98,93,57,35,26,11,8,6,4,0,15,29,57,84,98,117,220,258,250,187,186,132,99,66,40,17,26,26,36,34,44,56,43,46 diff --git a/worlds/diamond_world2_iso.jpg b/worlds/diamond_world2_iso.jpg new file mode 100644 index 0000000..15ad13a --- /dev/null +++ b/worlds/diamond_world2_iso.jpg Binary files differ diff --git a/worlds/diamond_world2_topo.jpg b/worlds/diamond_world2_topo.jpg new file mode 100644 index 0000000..67fbe5b --- /dev/null +++ b/worlds/diamond_world2_topo.jpg Binary files differ diff --git a/worlds/diamond_world3.csv b/worlds/diamond_world3.csv new file mode 100644 index 0000000..f728357 --- /dev/null +++ b/worlds/diamond_world3.csv @@ -0,0 +1,129 @@ +54,45,48,33,25,19,13,7,0,30,56,85,111,186,266,326,308,342,398,404,478,526,482,386,235,547,794,981,938,973,930,1031,848,1321,1885,1868,2595,2808,3491,3086,2423,2261,2150,1866,2490,2400,2296,1731,1056,1121,977,968,908,719,350,156,0,40,66,106,139,230,302,350,552,1001,1941,2481,2391,2874,3772,3797,3441,3024,2415,1553,1437,1385,1355,2190,2405,1644,1345,1364,1672,1222,1304,660,235,164,166,130,117,364,544,616,737,1044,1266,1885,1976,1907,1535,2132,2040,1908,2521,2150,2796,1799,1566,1266,1324,1154,1471,1270,1186,926,828,373,0,5,9,15,22,36,42,46,44 +59,44,39,31,25,18,13,9,4,33,48,70,98,137,220,226,330,362,321,362,326,373,393,324,200,470,674,734,644,705,825,755,642,1283,1674,2145,1902,2134,2795,2202,1814,2135,2068,1703,2219,2266,2238,1334,1221,1068,927,1072,922,826,520,238,29,58,79,126,148,220,249,304,498,1108,2106,2191,1606,2254,2683,3624,4869,4892,3513,3584,2507,3754,4592,6927,3696,3422,2276,2096,1758,1512,1199,902,1302,1092,855,564,750,896,737,720,636,916,1187,1680,1584,1596,1815,1757,1464,1712,2266,1651,2106,1732,1531,1469,1474,1482,1226,1248,1090,1173,922,530,275,312,253,200,166,123,89,62,33 +54,47,34,30,22,22,14,8,6,32,54,81,92,128,138,136,248,203,180,245,277,281,356,232,222,350,552,831,507,585,522,415,611,1048,1510,2132,1548,2264,2502,1822,1482,1799,2396,1959,1643,1558,1660,1372,1216,1021,952,1089,909,702,556,356,53,82,103,137,215,269,247,312,352,816,1669,1790,1369,1806,2306,2589,6746,6526,4918,6895,4070,7047,8161,8731,6129,4300,3734,2387,1904,1773,1663,1561,2186,2043,1466,999,1240,1169,1287,930,524,644,882,1065,1368,1580,1572,1514,1526,1420,1400,1356,1528,1748,1726,1492,1660,1634,1350,1137,997,1076,968,779,613,501,529,419,292,202,145,83,28 +50,39,24,26,19,22,17,12,8,32,48,62,101,136,161,178,189,193,179,236,264,284,359,294,312,426,470,638,464,534,561,467,509,1028,1894,1884,1593,2331,2178,2190,1576,1810,2214,2059,1876,1574,1795,1704,1187,904,1034,784,782,658,426,278,122,98,112,154,248,240,230,232,415,858,1470,1360,1026,2134,2898,3745,6536,7304,6121,7452,5650,8898,9037,10044,11024,8813,6880,3442,1932,1739,1590,1334,3544,2875,2363,1857,1462,1524,1536,895,265,508,647,882,1203,1330,1448,1184,892,1088,1017,1062,1413,1237,1484,1186,1628,1463,1188,1214,1274,1010,1094,930,1114,688,687,575,340,274,212,110,26 +45,40,34,26,16,12,8,7,9,26,50,71,77,124,178,203,160,209,208,219,199,190,144,224,358,482,603,510,612,634,523,568,557,847,1012,1766,2144,2135,1505,1816,1768,1828,1535,1661,1634,1152,920,1070,953,1032,946,959,796,564,610,374,162,187,206,256,244,183,129,124,519,771,919,814,966,1558,2378,3365,6658,7550,9782,8815,9230,10485,13423,15564,13711,8821,7996,5990,2260,1993,1938,1443,4578,4356,4056,2526,1850,1319,1068,955,104,247,454,712,1070,1065,763,646,628,722,626,676,1004,783,863,634,2095,1269,1074,1101,1238,1164,1018,1021,1417,1124,1200,938,484,367,354,166,27 +36,29,23,22,15,15,13,13,12,26,39,48,48,90,106,144,234,201,176,204,156,140,142,196,393,486,443,513,643,582,463,432,483,702,708,994,1463,1476,1438,1644,1585,1233,1504,1358,1760,1488,1067,1174,861,1062,930,998,1339,1136,598,439,270,302,271,340,494,346,246,222,476,818,989,1014,1204,2096,2424,3972,6113,7783,11573,10580,9109,13048,17592,14989,14571,13236,11292,7032,3388,3810,2754,3110,5995,4750,4442,3367,2224,1842,1202,1036,76,196,383,588,744,594,476,500,459,556,768,684,1514,1108,1030,910,2403,1926,1576,1282,1083,1166,1125,1055,1637,1860,1548,1492,700,600,487,235,19 +25,23,17,17,17,15,14,14,10,25,37,37,39,47,72,100,236,205,226,204,87,94,92,120,353,421,409,371,477,382,299,256,371,504,564,697,727,800,930,1034,1261,1082,1040,1034,1366,1006,1068,1046,718,1155,1354,1587,1555,1125,816,636,321,307,372,415,581,378,354,225,355,759,1033,1302,1930,3154,3366,3742,3804,6151,10185,11202,9443,11786,18736,18116,18431,13811,12021,9441,5235,5634,4548,4414,6949,4792,3987,3418,2295,2380,1808,1360,35,115,193,356,371,349,327,309,354,515,708,692,1582,1535,1420,1145,3583,2384,1832,1624,1110,1110,1214,1251,2081,2180,2274,1625,1106,952,568,298,11 +12,14,12,13,12,14,14,16,11,20,28,29,20,30,38,55,291,249,182,147,62,70,90,164,248,345,338,300,228,204,198,130,215,268,322,386,480,530,761,784,802,846,744,710,863,918,891,1050,949,1096,1273,1353,1238,1308,1097,742,388,512,662,558,713,494,441,308,278,684,1204,1978,2782,2963,2318,2853,4506,6572,10167,11387,11813,15246,19093,19558,15894,13022,12641,9506,6516,4920,5160,5288,6719,5358,5891,4277,3833,3552,3348,2052,18,62,99,172,155,152,195,150,170,500,683,950,1563,1893,1887,1717,3615,2508,1875,1477,1107,1070,1074,1221,2383,2326,1914,1782,1237,1144,626,318,8 +0,2,4,7,7,10,8,12,12,10,9,8,5,5,3,2,292,241,199,201,270,271,268,233,184,150,180,150,104,96,57,30,0,84,163,282,318,302,396,503,542,580,462,664,652,828,783,888,1235,1163,934,1220,1506,1206,1168,923,600,616,730,788,591,623,537,417,139,266,467,902,1357,2620,3758,3489,4095,5723,6818,11223,16184,19013,16734,17158,14824,14493,15844,13046,11070,11676,9831,8869,7840,9358,8310,8808,6789,5621,3699,2794,0,0,0,0,0,0,0,0,0,122,239,534,685,1228,1574,2065,3970,2909,3052,2114,2124,2739,2548,2034,2048,1310,1138,956,699,606,395,197,3 +6,11,13,16,15,16,14,14,17,14,10,10,7,7,5,2,232,278,268,316,356,406,421,493,376,302,278,220,122,223,183,158,0,98,202,265,241,285,452,560,579,504,370,498,582,666,892,1054,1035,876,836,988,1271,1075,1287,884,598,636,696,599,797,754,615,390,246,482,813,1249,903,1768,2916,3236,3494,4704,6145,8302,10831,14066,14296,12928,11657,11734,14097,10754,12122,9655,12061,8773,8971,8542,8337,8280,8869,5428,4264,3023,81,64,56,53,60,65,72,68,28,172,279,423,666,1107,1931,2537,4330,3361,2080,1892,1919,1940,2344,1876,1516,1052,1160,958,549,496,304,180,4 +10,17,18,26,20,16,15,14,15,13,12,12,8,7,5,2,192,332,362,460,469,685,680,856,586,518,340,236,197,333,390,289,0,91,172,217,189,280,427,402,426,446,444,592,423,684,936,1016,923,1037,850,834,1101,962,994,763,844,856,730,557,800,610,696,513,398,789,1164,1337,871,1825,2718,3665,3608,5866,6235,7542,6885,8813,14482,14902,6848,7180,9049,11016,10371,11395,10356,10896,11872,12890,9652,6686,8689,7522,4166,2747,153,131,99,87,145,148,140,111,54,200,330,392,634,1273,1664,1999,3350,2919,1728,2013,1365,1522,1392,1219,1122,888,798,717,454,404,262,154,3 +16,24,30,31,26,28,29,21,20,21,20,18,13,9,7,4,131,218,362,443,555,778,840,806,973,822,469,374,327,411,470,487,0,66,154,185,239,320,360,424,419,370,421,462,293,490,662,965,651,663,502,727,797,942,1131,725,709,697,736,686,969,765,667,388,485,906,1441,1195,1243,1918,2188,2804,3564,4584,4960,5902,6440,11890,12513,12905,7528,6714,7297,7182,8176,7253,9608,9238,14455,12884,9046,8580,5909,6088,4683,3324,251,214,218,206,189,190,195,166,68,232,295,373,477,1295,1822,2448,3430,2465,1768,1573,1422,1210,1101,978,760,845,723,654,465,353,226,112,2 +26,31,36,42,40,38,30,19,24,22,13,15,14,11,8,5,55,120,201,298,480,587,722,973,1045,970,714,593,434,348,363,516,0,76,143,157,224,336,370,390,286,269,225,264,230,325,457,677,288,423,441,747,810,572,534,654,869,1114,1068,808,902,839,560,396,534,1021,1393,1736,1521,1726,1893,1722,4251,5122,5725,6832,6732,7670,11725,15972,6447,5632,4673,4032,4428,5252,6178,7915,14539,11468,9140,8413,5969,4751,3224,3233,435,383,252,304,264,189,194,216,86,188,333,456,524,981,1504,2432,2389,2184,1472,1500,1112,1094,728,1038,693,593,716,604,454,401,237,136,2 +32,34,31,36,54,50,31,23,26,24,15,15,14,13,8,6,40,139,178,259,304,544,610,994,1040,981,660,674,691,1052,889,1701,0,59,137,166,191,219,256,313,344,307,178,196,215,268,419,665,277,356,462,708,880,656,493,518,779,985,1016,854,628,747,629,511,610,1130,1266,1221,1519,2116,2066,2681,4139,5902,6058,6776,7355,9477,12114,17525,6594,7392,6277,7321,7834,8482,6356,8530,14393,13772,8548,7760,4520,4349,3177,2269,545,512,571,472,406,408,289,292,213,368,504,606,499,1062,1528,2207,2184,1936,1295,1246,1075,957,924,1111,718,634,544,492,463,369,268,136,2 +34,39,35,37,50,45,41,26,36,34,20,16,12,12,8,5,39,110,156,226,274,453,654,1045,1331,1095,836,854,744,1448,1715,2650,0,44,85,146,143,195,210,257,335,275,138,164,128,325,430,689,350,378,420,470,726,774,648,656,820,770,896,952,641,671,627,607,752,882,1292,1126,1691,2161,2442,2756,5836,5932,7378,6833,6356,12483,14456,17364,9019,7004,8156,9492,9271,9742,7668,8347,16230,14451,11121,7987,3951,2947,2558,2055,553,743,820,845,576,476,438,298,303,476,692,862,645,1180,1339,1229,1847,1639,1281,1099,846,705,847,957,653,489,494,423,413,310,213,124,1 +40,32,41,38,48,46,43,33,28,30,22,19,13,14,10,6,22,80,96,166,225,448,614,806,1064,848,654,859,708,1368,1767,2534,0,50,110,168,200,221,202,262,301,250,107,117,116,176,269,512,368,380,395,615,794,732,886,908,769,789,1046,965,832,788,894,730,670,734,1134,977,1128,2185,2604,3946,6092,6103,5849,5740,5313,9128,11342,13634,8527,7910,9878,11010,10941,8296,7856,7088,10646,12072,10010,5844,3438,3796,2770,2351,810,1055,1519,1404,988,948,569,463,378,687,766,786,867,1378,1520,1882,1876,1582,1230,1087,1083,1090,865,936,739,593,422,397,381,226,157,78,0 +41,39,48,42,48,43,30,28,20,22,17,15,16,12,7,5,0,278,605,1071,1182,1453,1326,1720,2097,2615,2536,2731,2112,2298,2282,2800,0,7,11,22,24,42,53,103,138,162,206,357,402,278,268,362,366,333,382,445,487,397,322,354,342,305,326,355,386,479,412,516,758,851,911,612,604,497,329,275,160,1252,1981,3248,5523,6379,5166,6304,9109,10836,12885,12417,9646,9241,7285,6066,6991,4897,3622,3996,3235,2721,1636,1751,1308,1792,2391,2595,3637,3594,2869,3284,3761,2573,1877,1491,1276,1962,2284,2384,2156,1466,929,855,729,1243,1399,1141,1353,1213,1129,906,417,309,141,66,0 +33,35,53,40,41,42,28,28,24,19,14,15,15,12,10,6,0,301,752,1051,1287,1913,1844,2566,1912,2544,2356,2645,2610,2740,2866,2838,158,324,438,420,303,424,414,536,573,634,682,886,749,654,616,618,454,496,503,620,792,633,524,644,474,402,485,517,603,638,591,559,1702,1414,1465,902,819,916,920,798,307,1421,2209,3542,4523,4982,3722,5007,7733,7864,9625,11268,8274,7102,6623,6031,5818,5564,4890,4498,3167,2347,1787,1503,1764,1528,2416,2582,3142,2572,2539,3158,3704,2692,1900,1665,1526,2180,2326,2380,1713,1594,1152,1023,701,884,1352,1109,1755,1296,1177,820,394,294,137,68,5 +28,31,41,48,44,34,36,28,19,17,13,14,15,14,8,5,0,373,698,1062,1525,2070,2490,2958,2364,2818,3170,2662,3888,3248,3268,3655,334,525,794,910,565,611,788,867,1269,1268,1155,1214,1167,998,1132,1042,493,799,840,756,938,762,762,947,493,532,562,786,862,933,806,727,2618,2419,1980,1159,1403,1125,1330,1483,529,1880,3410,4720,3246,3336,3399,3606,5004,6625,6264,8113,9493,6314,5244,6114,5970,6759,6818,5169,2903,2282,1412,1201,1671,1852,2086,2806,2393,2973,2820,4110,2994,2900,2022,1571,1667,2042,2616,2039,2086,2092,1654,1440,683,804,920,1003,1594,1486,909,767,324,204,137,64,9 +22,28,36,34,41,30,23,22,15,15,12,13,10,9,7,5,0,399,660,1270,2048,2624,4211,3708,3251,4160,4932,4128,3404,3240,3528,3682,400,706,1204,1248,1090,1217,1453,1562,1897,2208,1643,1672,1328,1890,1705,1978,770,851,863,1084,1222,1106,1238,1130,521,614,624,1030,900,984,727,594,2991,2848,2200,1829,1884,1922,1454,1662,883,2066,2988,4042,3315,2774,2742,2370,4814,6504,5816,7380,6910,6239,3930,4724,9805,8193,7666,5540,2945,2226,1597,1280,1170,1478,2223,2056,2269,2924,2931,3330,2058,1918,2099,1473,1715,1617,2900,2281,2291,1905,1502,1170,1076,1190,1244,1081,1089,1065,832,663,367,240,140,72,17 +12,22,23,23,24,21,18,17,10,10,11,10,6,6,4,2,0,594,1050,1522,2054,2863,4668,3868,5409,5532,4846,4735,3862,4505,4469,4123,601,1035,1468,1454,1618,2086,2519,2542,2044,2021,2548,2610,1856,2113,2651,3189,897,911,1191,1372,1219,1312,1031,1186,374,839,1024,1295,1314,1492,1216,1019,4494,3442,3562,2468,1894,2006,2629,2220,1363,2190,2702,3109,3145,3092,3156,2136,4877,5188,5058,6420,6372,5747,5599,3793,11523,10765,7906,5528,3029,2694,1648,799,1194,1842,2212,2013,2180,1838,2126,2814,940,839,1032,1597,1680,1260,1326,1341,2963,2664,2601,1816,1113,1188,953,1282,988,1111,1000,856,444,310,300,192,23 +9,14,20,24,24,18,17,16,8,10,9,8,6,7,5,2,0,596,1071,1452,2697,3182,4567,3824,4139,3958,4447,3474,2683,4140,4780,4352,503,954,1867,1946,2117,2571,2350,2849,2693,3016,3481,3091,3031,3281,3922,4379,1339,1678,1388,1432,1980,1745,1484,1490,689,1354,1339,1933,1110,1238,1065,860,3502,3133,4165,3290,2303,3808,4550,3844,3145,2848,4219,4108,5442,4168,3236,2703,3050,3731,4384,5666,5729,5622,4680,3952,10054,10092,9062,6744,4223,3539,2150,1614,746,1092,1910,1904,1695,1642,1791,2101,652,969,1301,1613,1140,927,1304,1100,2808,2461,3327,2428,1376,1391,1546,1498,1002,1005,744,696,432,322,269,145,30 +6,10,13,18,17,15,11,8,5,7,7,7,4,5,3,2,0,697,1168,1826,3208,3459,3020,3381,3399,3102,3116,3098,2646,3512,4211,3882,648,1355,1790,2082,2075,2135,3236,3505,3769,3258,3834,3442,4333,5467,6054,5722,2236,1846,1774,1699,2686,1950,2130,1748,1168,1535,2304,2638,1425,1356,1112,1046,3636,3160,3869,3356,3744,4985,6594,6552,4739,4962,4626,3747,6336,4852,3138,2490,2499,2838,3122,4971,4799,4368,4304,4617,5997,6986,7648,6645,6982,4708,3338,1999,546,908,1224,1250,1211,1442,1206,1533,575,766,1160,1500,696,836,854,660,1938,2416,3086,2608,2048,2004,1748,1591,1372,990,794,834,496,395,272,132,32 +4,6,7,10,8,9,7,5,2,5,5,5,2,2,2,1,0,623,852,2181,2534,3250,4396,3531,4080,3178,2299,2405,2137,3214,3431,4648,1102,1366,1481,2251,1759,2838,3372,3299,4849,4370,3879,3930,4862,5352,4671,6312,2960,2626,2659,2389,3020,2235,2959,3000,2230,2841,2454,2542,2451,2172,1911,1118,5578,4168,5079,4402,3169,5296,6027,6594,6609,6644,7122,6337,7014,4262,2779,1589,1040,1965,3372,3975,3730,4797,4676,4992,8560,9282,11225,6873,8810,4776,2988,1870,380,700,1044,1012,1062,1178,1094,1228,849,816,1194,1117,624,680,474,433,2460,2914,3690,3500,3134,2714,3066,2364,1456,1407,1231,906,583,348,270,133,35 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,707,934,1136,1384,2044,3728,4995,3934,4426,4102,4439,5422,6795,5362,1548,1988,2547,2784,3407,4210,5592,5653,4980,7057,10152,10058,10568,8668,9227,8728,4383,4847,3789,5211,5562,5214,5688,3842,3057,3194,2938,2488,2096,2120,1825,1204,5747,6870,6643,6222,4058,5836,6007,5984,8932,6996,5525,4163,4003,3431,2709,1109,0,790,1679,1862,2876,4560,6721,8854,8300,9835,9908,9716,8012,5217,3050,1950,394,460,402,610,757,654,709,869,858,775,635,352,180,114,74,34,2577,2426,3123,3717,3119,2754,2215,1674,1771,1382,1015,691,194,148,127,78,30 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,670,823,847,1445,2456,3607,5649,3612,3999,4070,3448,4884,6915,5512,1688,2012,2954,3296,3559,4055,3825,4496,3819,5462,11080,9304,9499,6587,6452,6906,6071,6139,4931,5836,4271,4620,4611,3282,2188,2650,2887,2436,1878,1480,1256,917,5772,5666,5428,4247,4010,5010,5529,7480,11793,10042,7539,6586,4226,3462,2842,1906,780,1590,2120,2802,4117,5384,7517,9616,12257,10588,8846,9824,8876,6271,4078,2259,370,374,392,542,462,526,531,684,602,614,649,378,232,180,106,56,2805,2547,2814,2687,3282,2740,2354,1926,1663,1214,866,624,230,186,124,88,38 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,558,676,856,1775,2516,4172,4974,3438,3462,3552,3807,4396,6052,6042,2442,3036,2899,2971,3160,3254,3210,3345,3653,6036,8392,5561,6014,5190,5336,5228,6046,5424,5340,5899,4560,4404,3843,2498,2087,1853,1980,1997,1894,1315,1058,792,4067,4724,4254,4174,4068,4441,4780,7946,11596,9583,9302,7872,3362,3911,4076,3177,1481,2263,3006,3242,4912,7615,8161,11915,14709,12727,11398,9968,10052,8298,5234,2832,323,377,388,492,363,422,560,504,636,702,603,411,304,276,166,115,2792,1928,1758,1875,2467,2763,2511,2218,1191,889,711,447,260,211,147,97,46 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,492,596,789,1182,1694,3042,3296,2640,3088,4190,4474,4743,4331,4526,2404,2778,2098,2860,2536,2252,2849,3272,3726,4871,7048,6906,6408,6526,6201,7534,5184,4566,3912,4416,4646,3552,3252,2150,1146,1266,1266,1537,1596,1192,840,580,3394,3421,3419,2749,3993,4702,6904,7876,11654,9536,9676,8772,5967,5138,5408,4182,2975,2822,2626,3992,5724,6734,6810,10507,13145,13416,11072,8962,8625,6360,5315,2832,196,264,320,377,289,440,466,558,628,580,460,354,284,204,168,95,2837,1732,1341,1718,2306,2285,2047,1960,816,636,500,336,256,178,104,80,51 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,509,568,735,860,1291,1785,2976,3858,4918,5236,5096,6520,5883,4373,2018,1655,1430,2174,2674,2896,2492,3390,3423,4893,5059,5090,7280,9558,8680,7958,4698,4520,3025,3957,4124,2964,2493,1587,358,506,678,814,976,880,498,316,1729,2406,2974,2864,3910,4665,5843,9834,15647,12326,10347,7602,6610,6505,5708,5420,3977,4273,5690,6861,6332,5485,6759,11743,13963,11303,12048,11376,7496,4690,3839,2634,121,180,304,355,325,371,437,510,488,503,414,358,271,213,122,84,2236,1816,1814,1657,1538,1905,1694,1370,245,182,171,205,220,193,147,95,42 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,455,498,908,1020,1560,1896,2316,3244,4024,5220,5362,4914,4708,3804,2066,2058,1390,1510,1715,1885,1794,2622,2522,3524,4500,4906,5520,7598,6605,6624,3680,3888,2690,2579,2985,2151,2338,1484,224,359,437,602,703,606,389,238,1886,2550,3360,3748,3464,5630,6111,11817,15528,12960,9365,7984,5878,5384,5778,5396,5757,6403,7439,6547,5782,6286,8165,10130,12970,12621,12238,9508,5357,4120,2826,2194,69,156,218,232,294,338,360,396,440,396,263,267,287,194,141,111,1317,1218,1141,1178,1274,1367,1508,996,298,188,194,222,171,156,129,89,64 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,360,418,811,1098,1450,2161,1990,2527,3492,3138,3849,3245,3442,2961,1558,1619,1624,1592,1064,1519,1634,2399,1611,2894,3384,4774,4756,6393,6573,5632,4103,3155,2729,2482,2284,2176,1732,998,143,228,293,448,557,450,264,186,2956,2662,3421,4034,3751,5206,9209,13900,12988,9329,9865,7186,3547,4300,5576,5251,8151,9019,8477,6791,4473,6080,7110,9642,13721,15022,11896,8303,5533,4253,2936,1527,48,96,152,154,215,276,308,373,318,295,214,192,218,188,156,122,837,940,764,789,692,728,862,663,250,191,188,200,131,112,124,95,68 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,272,430,739,797,990,1718,1836,2055,2323,2801,2842,2373,2872,2662,2445,2147,2003,1384,626,1054,1212,1699,1388,2125,2793,3392,5041,5129,4183,5261,4891,3756,2358,2343,2371,1870,1714,982,84,121,167,224,278,189,120,86,3434,3850,4238,3784,3010,4294,6622,11959,15693,12780,10788,6894,3544,4476,6064,6318,7774,8368,9412,8385,4047,5364,6613,7462,11867,11162,7765,6148,3630,2502,2121,1231,25,66,105,113,140,192,245,246,305,220,207,153,200,184,175,132,416,548,406,532,476,552,627,558,318,233,134,140,107,98,110,86,88 +0,116,261,317,450,682,895,998,875,1590,1899,2097,2948,3085,4420,4526,3685,3019,3606,2942,1988,1601,1320,788,0,638,1184,1410,2133,2067,2198,2263,2814,2702,1996,2609,2417,1790,1683,954,0,174,381,629,1157,1898,2180,3517,5869,4059,3380,3235,4578,4013,4291,4918,6032,3985,2957,1920,1043,748,727,329,4625,3083,2643,3428,3453,3827,5719,5676,8245,9591,14768,16092,13422,13757,10716,9717,7752,8614,11411,8998,9503,7742,8101,9508,9234,7012,7232,4601,1299,1109,888,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,48,68,73,69,80,106,126 +0,291,604,1195,1731,2548,2697,3309,2194,2538,2286,2866,3407,3900,5184,4964,3769,3510,2357,2459,1614,1176,1014,499,0,370,976,1106,1632,2361,1795,1894,3338,3134,2446,3336,2742,2810,2360,2013,980,992,1243,1476,1895,2178,2123,3166,4687,4394,5320,4803,4822,5117,4564,4372,4625,3735,2978,2138,1378,1098,814,400,5426,4224,3006,3950,3538,4758,5702,7204,7184,8782,13100,11630,10079,9230,8748,8044,9347,10594,12315,8796,11294,7967,8380,8876,10052,9298,7619,5606,1327,1040,867,498,0,7,13,18,20,26,26,32,7,62,106,153,209,208,186,118,511,450,407,332,288,237,218,121,33,55,54,83,58,76,62,73,106 +0,476,984,2211,3759,3823,4472,6302,3610,3512,3316,3140,4399,4920,5580,5763,3028,2333,2143,1569,1137,929,654,272,0,239,511,726,1843,1646,1860,1777,3721,3011,3230,4410,3219,3021,3852,3264,1645,2107,2086,2021,2090,2138,2547,4322,5033,6257,5634,5941,5527,5750,4410,3962,3781,3546,2660,2266,1461,1381,1147,515,6181,4736,4740,4981,4297,5516,4962,6494,7315,10978,13782,9591,6385,6860,8080,7406,12581,9282,9398,9321,10842,9752,7414,8037,11312,7357,6840,5403,1410,1590,1254,582,0,13,22,29,36,43,56,64,13,108,201,340,452,413,310,231,1213,876,748,671,710,450,386,277,73,90,82,82,67,58,50,68,90 +0,1074,2166,3530,4957,5726,7322,7554,5761,5456,3470,4102,3886,5232,6703,6458,2370,1640,2104,1743,1208,853,538,248,0,198,421,761,1403,1180,1491,1198,4664,4085,3992,5024,5277,5163,4249,4724,1905,2401,2527,2888,3630,3228,2143,3265,5341,6834,7645,7042,7987,7578,6156,6227,3064,2510,2429,2558,1673,1368,1176,646,5486,5836,6118,6610,4182,5138,4700,5628,8470,10718,12160,9638,5967,6642,6979,6996,10326,9272,11636,8682,9845,7033,7231,6968,8476,7952,5147,3934,2232,1802,1550,615,0,16,35,52,62,50,68,94,18,146,299,544,684,654,628,446,1480,930,969,896,975,810,505,326,126,122,105,94,89,75,68,62,67 +0,1286,2836,5394,7114,7048,6471,7346,9677,10258,8786,6289,4142,8004,9457,11575,1722,1847,1385,1481,1102,779,669,351,0,182,365,540,590,739,832,703,4416,3546,4294,5777,6113,6015,4869,4924,2423,3032,4262,5803,5510,3699,3288,2266,7714,8795,7818,7726,9646,7631,8276,8410,2203,1834,1631,2221,2527,1587,1122,493,7125,5888,7278,7550,5642,5985,6826,6539,6850,9764,9550,9081,7542,9473,9080,8781,12858,10539,13350,12578,9329,7239,3803,3691,9867,10387,7531,4928,2315,1922,1409,741,0,18,34,60,80,84,116,161,24,292,557,619,834,779,657,658,1937,1374,1113,976,1221,1069,677,370,183,196,182,142,124,104,90,77,43 +0,1806,3622,5903,10167,10500,6411,8952,7944,10178,7962,8665,7292,8407,11341,10960,1266,1330,1004,852,860,626,572,263,0,120,267,352,392,524,691,601,5168,5257,5658,7179,9671,7582,5668,4580,4146,4840,5327,6844,5610,4224,4208,5368,7251,8984,9740,11170,6906,8732,7783,5710,2976,2202,1965,2776,3310,1740,1188,651,5772,5940,7291,5786,5238,4532,5526,5999,5470,7692,7049,6736,6352,8283,9342,9356,13630,11344,13735,10938,7698,7314,6327,5880,9506,8542,7091,4696,1499,1462,945,542,0,29,46,103,101,162,187,174,61,334,492,750,1280,1258,1353,1026,2168,2191,1650,1333,1630,1124,631,453,362,332,302,192,182,157,120,94,68 +0,1516,3760,6014,10074,9941,9338,10699,8388,7166,9368,11918,8461,10152,9576,8185,999,976,720,480,693,528,391,233,0,73,148,214,291,352,406,451,6294,6570,6483,8990,11838,10236,7676,5418,5318,6702,7536,8022,5924,4784,5855,6393,9524,8862,11957,9648,7154,6964,8812,6085,2901,2690,3036,2707,3176,2094,1434,850,5214,5279,6214,4522,4763,4391,5439,6630,5210,5457,6239,3739,4374,5346,8380,10955,10986,11673,11992,11797,9107,9061,7144,7324,8239,8356,6138,3101,1332,930,802,343,0,33,72,106,158,214,226,200,108,264,442,755,1440,1388,1676,1746,3284,2845,2508,1920,2260,1407,852,717,580,497,392,323,213,184,204,151,114 +0,1640,3751,6105,9238,8798,8224,8734,11050,7820,11994,13434,12825,15172,15401,12548,478,456,386,230,331,250,161,100,0,40,65,105,163,200,164,207,8098,8338,9082,11791,15636,10902,8923,8370,7895,9890,12559,10056,9612,8825,9906,8224,8332,10552,10933,13266,8561,8424,8578,7122,4576,3878,3591,3870,3630,2682,1279,771,4718,5612,4834,4178,4402,4928,5058,5307,3933,4517,3877,3234,3316,4918,7565,8618,8696,9860,8810,10822,10480,7896,6423,6104,7054,6007,5920,3634,1588,1000,1022,489,0,54,83,150,187,201,256,235,192,437,514,958,1309,1490,1504,1722,4035,2942,2332,1901,1976,1844,1580,1111,670,615,532,416,260,289,257,196,149 +0,3256,6260,6599,9768,11021,12085,11466,11156,12083,18326,17080,23050,24425,19852,15576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10965,9155,10008,6641,4684,5036,4393,6660,9451,14505,17460,19095,18058,18133,14410,14301,9966,9531,5925,7204,8056,8206,6763,5508,6214,5270,4832,3567,1719,976,702,383,4547,4660,3919,6408,7118,5368,5005,5128,4518,4017,4071,3433,3680,6897,7938,9215,9968,7684,8111,6966,4868,6155,6783,5110,5337,3756,2380,2250,2436,1922,779,376,0,36,64,142,200,210,175,178,222,358,552,670,769,897,1453,1684,3489,3187,2020,2391,2038,2012,1539,1306,746,446,354,380,421,417,366,316,168 +0,2980,6315,6998,9333,10246,9369,7998,12656,12938,12847,15420,23418,19779,18350,15362,486,580,552,759,649,484,277,148,0,70,109,140,294,452,761,1162,9932,10312,9819,9657,7235,7337,11512,12516,9384,12921,15687,17920,19456,17202,14404,11940,7493,6966,5922,6952,7778,5398,6743,5464,6625,6066,5001,3324,1444,1207,985,742,3513,3496,3626,6107,5484,4204,3724,3993,2634,2798,2981,3006,2638,5271,6501,8218,10457,8451,6642,6796,5448,4864,6328,5448,3706,2776,1660,1834,1947,1198,689,270,327,360,389,529,498,372,242,223,516,491,627,758,1340,1112,1584,1632,3076,2657,2872,2815,3290,2886,2340,1370,582,584,452,542,373,408,449,362,209 +0,2961,5592,6580,9159,7674,6882,7908,15945,15972,10821,13732,17225,17969,19528,16569,1185,1265,1126,1268,1347,926,673,279,0,113,229,328,500,879,1562,2207,11694,12148,11721,14487,10614,15672,15912,15921,11066,12232,14869,20020,15632,16534,11984,9548,6581,5788,6756,5987,5474,4541,4868,6088,6624,4746,4916,2734,1685,1298,1210,968,2191,3048,3164,4557,3125,3126,2692,4023,1823,2208,3080,4025,2557,3727,6030,5933,8825,9952,8485,5687,4497,4928,5102,3699,2577,2115,1296,1371,895,579,474,284,669,637,818,772,801,692,380,318,699,788,817,908,1517,2016,1847,2012,2521,2960,3304,3257,3867,3623,2442,1601,619,565,663,561,450,579,522,404,321 +0,2260,4149,4772,7789,5676,5162,6372,16590,12238,12320,12356,11073,13326,13158,16564,1803,1502,1659,1598,1856,1198,918,466,0,206,485,562,778,1084,2138,2342,13384,12553,11887,16237,12170,15930,24225,21502,10758,11445,13383,16906,13464,12844,8448,6296,8574,6774,7272,8803,7318,6497,4898,5251,5721,5050,5278,3914,2439,2186,1319,1209,2396,3012,2914,3758,3750,2923,3085,2843,1677,1880,2524,3346,2247,3496,4446,7554,5553,6877,5604,5216,4270,5072,4818,3275,1836,1450,872,877,591,442,340,149,1405,1571,1603,1306,1146,820,423,334,990,1050,1069,1166,1809,1955,1662,2361,3154,3044,3496,3554,4815,3386,2573,1584,792,914,743,849,612,558,644,472,421 +0,866,1725,3156,4130,5317,7237,6160,12960,15431,13558,12978,10446,13550,18969,19057,2917,2148,2386,2454,2257,1733,941,520,0,218,484,782,986,1328,1933,2849,13966,17104,21791,22164,18629,28355,29378,24853,9748,9966,12257,12099,12954,9208,6909,4594,9464,11671,12298,11166,9883,7509,7035,6426,4738,5897,5209,3747,3124,2762,3019,2171,2023,2202,2976,3350,3158,2388,2805,2626,1246,1638,2391,2004,2510,3083,3383,5309,4087,5560,5256,4505,3642,2992,3254,2756,1040,1026,746,558,274,190,132,75,1884,1768,1612,1353,1196,804,725,518,1475,1878,1800,1882,1594,1677,1808,2652,4195,4462,3306,3720,4224,4004,2870,1305,736,768,760,947,911,810,686,532,488 +0,902,2290,3036,3584,4754,6292,5960,11695,13339,10225,11130,8832,13907,16922,15335,4338,3912,3316,3000,3290,2499,2057,933,0,634,1183,1666,1536,2178,2689,3916,14975,15613,13342,16126,14255,18536,19790,24112,15016,14108,8513,9428,7886,6833,6238,4052,8744,11433,9567,9970,9146,7553,6629,5751,4122,3862,3316,3138,3304,3042,3310,2876,1490,2078,2620,2798,1798,1641,2240,2132,911,1376,1937,2278,2079,2608,3228,4787,3782,4078,3758,3128,2535,2726,2067,1904,853,696,488,310,214,148,81,40,1910,1846,2080,1725,914,914,800,742,1901,1620,1418,1741,1406,1684,2036,2516,2842,3726,3674,4310,3252,3014,2392,1458,708,894,1161,914,1043,742,646,676,562 +0,1231,2358,3724,3176,4183,4802,4701,7278,8275,9609,10943,4389,9030,14441,15912,6478,6021,4324,4104,5348,3974,2792,1167,0,845,1648,2062,2328,2888,4455,3779,12607,12678,11079,8369,15340,15676,19166,17386,18171,11333,8736,8662,5670,5488,4034,4037,9113,8291,11040,9474,7513,5110,4933,4423,2199,2201,2432,2820,3716,3790,3218,2434,1253,1375,1840,2040,1183,1078,1240,1102,442,1015,1336,1679,1181,1356,2060,3381,2816,2432,1954,1862,2071,1602,1648,1827,452,402,284,233,186,144,57,24,1572,1610,1931,1863,905,866,1018,1037,1976,1380,1083,1366,1440,2085,2209,2745,2686,3998,4048,5139,3720,2770,1646,1558,880,955,1371,1106,856,790,584,540,556 +0,1037,1930,2996,2600,3436,4523,4440,5826,7030,7543,8123,2930,7059,10448,11078,8995,6360,6138,5025,6106,3489,2787,1408,0,1057,2081,2576,2835,5287,6630,6198,11028,10424,7012,7236,11094,11853,14148,19089,18138,14964,11085,8099,4824,5390,4898,7292,12051,10021,8167,6641,6496,5205,3786,3285,1736,1819,2226,2828,2758,3620,3913,2694,681,837,772,841,632,534,582,570,207,482,774,1000,648,737,1036,1640,1642,1264,970,973,1143,770,967,887,261,176,166,112,78,72,32,16,1959,1674,2111,1484,1294,1100,1092,1070,1628,1169,1234,1232,1606,1540,2288,2222,2942,3300,3625,4036,3174,3334,1886,1738,1280,1642,1244,978,1163,852,932,675,605 +0,512,963,1020,1542,1761,2660,5156,6537,5926,5827,7863,9725,8499,7827,8978,9690,5739,4123,3792,3340,3774,4400,3821,3267,2574,1794,1627,2199,3390,5357,6418,6516,9205,12142,18789,19231,16438,20768,15706,15838,18722,15901,20408,18604,14541,13965,11326,12938,10773,7851,7594,5244,3688,3961,3934,2978,3119,3564,4574,4813,4070,4610,4246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,2119,1502,2186,2217,2111,1994,2759,3434,3816,3970,3270,3065,2386,2809,3273,2838,2856,1982,1337,970,727,321,176,0,16,35,47,77,160,297,460,473 +0,524,794,1226,1249,2368,3706,5250,5076,4196,4870,6760,7166,7454,7115,7272,9492,5832,3498,3424,2457,3256,4409,3423,2912,2226,1527,1577,2328,3060,3744,4235,7068,6958,9970,12752,20963,20048,15946,19362,16740,15262,12845,13224,15553,16320,13476,13148,12246,11626,8372,7254,6811,5622,5118,3830,5043,4238,5199,5342,4269,4462,6226,5466,466,398,382,521,720,519,444,636,1107,924,707,789,820,703,1031,766,267,302,380,375,612,526,391,269,44,120,139,187,422,254,163,105,2828,2290,2056,1896,2380,2290,2592,3220,2904,3335,3176,3148,2746,2508,2943,2850,2373,2338,2313,1510,1262,1018,435,265,10,32,37,70,84,166,246,454,470 +0,419,902,1472,1186,3100,4490,5265,3064,3430,4492,5894,7418,5408,4242,4475,6845,5296,3674,3733,2272,2962,3062,2508,2174,1495,1453,1396,1766,2218,2500,3552,5443,7156,7162,9344,21858,23356,18557,17948,13372,12884,11911,15311,16054,14664,18376,20880,14206,13493,10626,8509,6569,7442,6845,6374,7111,7332,5554,5404,5675,5174,6684,5557,816,790,750,1155,1201,1066,904,1526,2031,1625,1702,1496,1716,1453,1812,1182,551,682,695,972,1056,1044,749,544,94,222,342,318,725,458,329,202,2225,2048,2018,1600,2823,2703,2666,2744,2063,2256,1780,2494,3015,3356,2660,2085,2650,2256,2490,2350,1470,1223,617,286,15,35,54,78,122,211,229,297,424 +0,339,857,1286,1386,2964,3465,4674,2205,2691,4820,5778,6035,5806,4151,4807,4393,3486,2295,2639,1530,2272,2865,2182,1852,1336,1380,1146,1348,1343,1323,2105,2746,5252,6718,9282,14474,18745,15886,13487,9411,9234,9728,11303,11658,12902,19729,18292,18077,15318,11379,7587,5982,6842,6726,5946,9573,8033,9156,7506,5340,5726,4808,5670,1187,1142,880,1596,1646,1794,2100,2331,2976,2782,2084,1846,2773,2308,2227,1521,921,903,1107,1268,1520,1337,832,583,141,282,520,644,747,635,482,326,2227,1962,1908,2070,2412,2751,2332,3537,1268,1160,1424,1813,1793,2126,2488,1760,3967,3650,3385,2159,1684,1130,746,371,26,50,70,98,141,202,202,260,421 +0,333,747,1344,1597,2083,2290,3782,904,1732,2430,5060,6264,7379,6183,6902,2806,3053,2626,2446,1508,1412,1168,1355,1141,909,606,594,868,813,640,729,1382,4305,6147,9514,12708,12980,11367,8688,4676,5536,5779,8552,11742,14784,15052,15153,21841,18004,18298,12442,4992,5270,6083,7175,11618,10092,9643,8109,7524,5300,4717,5098,1311,1659,2236,1834,2318,2060,2061,3238,3535,4111,3676,3743,3011,2678,1495,1316,1022,1287,1346,1774,1819,1262,1082,632,228,452,706,774,1104,734,670,487,1867,1589,1811,1861,1878,2755,2714,2856,711,996,1389,1398,1292,1334,1331,1794,4822,3138,1981,1478,1436,1230,881,426,35,59,73,114,130,230,285,353,347 +0,544,812,1580,1750,2152,2116,4778,989,2134,2396,4040,4508,5560,6216,5496,2026,2190,2516,3002,1356,1568,1190,1564,1564,1492,1108,815,763,709,432,512,1080,3308,4846,7068,11376,12447,8282,8628,7108,8035,7518,8874,10466,12264,15040,13260,22648,16333,19434,14186,7047,6586,7093,8110,11313,11011,11445,8525,7012,6539,5548,5508,1454,1814,1651,2126,2546,2927,2396,3362,3194,4521,3895,4841,4462,3516,2168,2192,1406,1260,1720,1988,2587,2498,1537,1483,887,1025,1361,1232,2215,1644,1348,1258,1752,1224,1479,1668,2143,2579,2109,2512,597,954,1132,1088,1235,970,991,1326,3730,2588,1618,1469,1261,1052,677,380,45,60,82,123,98,160,184,244,281 +0,596,1039,1541,1629,2327,2700,4560,1343,1598,2496,2404,4617,4132,5347,4688,2119,2098,2840,3347,1615,1872,1506,1485,1953,1903,1455,1195,765,480,374,402,497,2527,5052,6382,9432,9012,9008,9703,7309,8440,9646,9741,8621,8409,12228,9871,22275,15791,15616,12736,9095,9732,8309,8188,12754,11498,12170,9132,4332,5110,5538,4563,1152,1536,1632,1869,2139,2368,3075,3500,4028,4800,5142,5816,5963,4821,3506,3004,2194,2125,1888,1658,3614,2974,2466,2393,1484,1788,1902,1895,3144,2269,2069,1654,1773,1540,1187,1446,1949,1781,2304,2950,602,752,1014,1071,897,1083,1141,875,3992,2582,1514,1235,1057,997,612,351,52,62,64,109,87,118,149,151,220 +0,435,789,1253,1861,1890,1669,3014,2192,2112,2376,2280,3204,3410,4777,4246,2420,2750,2981,2630,2498,2026,1541,1552,1708,1494,1586,933,632,426,322,245,256,1708,4026,5157,7777,8959,8058,8877,10197,10486,9268,11212,9202,10173,8846,8670,15296,13267,12699,11152,11485,10810,10355,10960,10974,11659,12937,9974,5807,5652,4781,5257,1502,1670,1694,2236,2449,3348,3974,4195,3829,4963,5378,5794,4837,4848,4877,3733,2915,2895,3963,3226,3285,3432,2612,2006,2171,2534,2952,2683,2981,2442,1748,1886,1407,1124,1352,1526,1960,1678,1729,1664,690,832,948,840,706,690,649,540,3327,2919,2126,1478,1001,784,512,300,62,58,48,74,79,68,78,80,102 +0,507,1169,1865,1938,1968,2807,2193,2440,2343,3058,3017,3973,3606,2542,2614,3471,3200,3265,2984,3199,2898,2518,2094,2162,2089,1536,978,304,218,113,61,0,1226,2299,3747,5810,6007,8917,10266,9940,8616,8059,13685,15810,10955,11081,7902,14209,12292,15595,14018,10829,11277,15009,16268,13081,10678,10264,5546,3551,4581,5207,4119,1568,1961,1790,2378,3446,3720,4564,4815,4154,5168,5389,5284,4311,5040,4812,4073,4044,4054,5782,4795,4665,3187,2584,2763,2244,1921,994,798,527,1189,1611,1394,1035,1180,981,1338,1323,1010,742,600,738,952,862,630,708,821,744,667,4099,5123,5168,5070,3309,2760,2010,866,71,64,69,46,27,20,10,6,0 +0,404,1044,1146,1402,1822,2310,2048,2162,2160,3168,2731,3448,2988,2125,2484,3298,3030,3342,3200,2348,2988,2396,2017,2694,2320,1914,1185,503,394,424,374,56,1048,1814,2549,5650,5541,7260,8708,8776,7428,7242,12641,12336,11642,8954,6073,14570,10680,10064,9972,10679,13128,11398,13478,12354,9314,8261,6314,3215,4380,3721,3887,1073,1733,1830,2514,2952,2918,4015,3642,3758,4595,5249,5546,3885,4618,3993,3284,4127,4140,4627,4258,5964,4708,2994,2440,2798,2414,1568,1232,1581,1912,2516,2248,865,1023,918,996,1310,961,654,801,962,771,999,787,806,828,538,564,3933,4645,4668,4146,2869,2302,1741,818,65,64,63,38,32,28,24,16,10 +0,320,626,956,1252,1393,1276,1119,1975,1717,2247,2414,2070,1702,2069,2494,4030,3041,2699,2384,2527,1986,2048,1908,3617,3015,1914,1344,718,558,666,677,123,652,1127,2053,4976,6156,5304,5701,5920,6606,8566,9433,9689,9407,9743,6376,10227,9462,8899,6806,9843,11813,10530,8014,8860,8052,8304,6498,2318,2484,3202,3466,954,1240,1826,2505,2351,2003,2418,2388,3383,4758,4762,4472,2822,3565,4646,4373,2987,3303,4506,4196,5716,5611,3796,2731,3995,2730,1940,2044,2351,2284,3230,3886,956,1086,894,799,972,899,841,913,1067,892,810,616,737,577,450,511,4508,4340,2882,2746,3043,2078,1242,659,58,42,42,43,27,30,30,22,16 +0,191,324,540,801,940,874,726,1138,1352,1856,2302,1834,2208,2449,2218,2978,2154,2429,2001,1820,1637,1561,1384,3346,2868,1981,1882,1087,973,926,764,245,784,1051,1648,4182,4180,4283,4900,6645,6928,7720,7872,9544,7909,7433,5560,11291,9334,7370,6375,6768,6992,8024,6948,8289,7122,8486,5770,2492,2546,2172,2873,1248,1624,1954,2346,2819,2008,1577,1920,2835,4530,4090,4752,3483,3976,4615,3893,2935,4107,3757,3730,5163,4019,3674,2782,4597,3364,2513,2458,3504,3028,3310,3418,949,878,579,682,806,807,804,869,981,993,916,723,766,562,352,354,3758,3770,2815,2948,2431,1815,856,533,47,42,36,40,38,38,46,30,20 +0,79,171,240,255,292,389,345,850,1138,1114,1414,1936,2000,2554,2445,2436,2580,2754,2241,1937,2010,1567,1432,3783,3397,2448,2425,1884,2184,1817,1157,295,970,1384,2405,3124,3048,3170,4645,7868,7322,10098,9214,7192,6359,3846,2465,9735,6970,5984,4640,3256,3384,3163,4553,6998,7471,5750,4170,3056,3448,3719,3529,1151,1554,2453,2928,2711,2371,1511,1198,3070,3054,3714,4050,4370,3543,3548,4603,2720,2729,3149,3161,3562,2868,1835,2152,5038,4482,2896,3838,3528,2488,2392,3412,766,934,835,756,1004,1054,1259,1328,1040,831,872,856,768,482,427,344,3175,2838,2471,2716,2128,1572,933,510,20,24,25,36,38,41,34,27,28 +0,68,131,198,187,262,326,264,592,738,711,968,1258,1508,1431,1848,1971,1984,2488,2754,1952,1942,1601,1452,4326,3648,2732,2781,1828,1854,1397,1760,830,1316,1599,2119,2682,2275,2770,3768,7943,6152,6646,6424,6799,5507,3581,2486,6209,4990,5406,3410,2305,2433,3224,3618,5266,5693,4015,3483,3040,3074,3722,2794,1229,1798,2446,2293,2374,2370,1682,1178,2608,3478,4791,4382,4150,2930,3542,3700,2098,2936,3481,5108,4349,3185,2763,2556,3754,3658,3139,3538,4330,3544,2876,2844,1229,1082,896,1105,1488,1428,1605,1602,970,794,816,858,973,848,724,718,2776,2376,2180,2163,2034,1167,800,524,45,42,38,42,35,35,35,34,30 +0,47,78,118,178,220,288,298,525,582,534,627,1099,806,744,780,1706,2379,2282,2239,1409,1994,2006,1961,3693,3590,3428,2640,2212,1855,1556,1641,1255,1423,2134,2033,1793,2711,2996,5036,6479,7418,5998,4239,6079,4615,2852,1943,3992,3446,3332,2619,2322,2401,2407,3157,5465,3949,3228,3591,2938,3166,3285,3474,1141,1379,2092,2159,3204,2226,1690,1295,2540,3482,4284,5305,4110,3710,3309,3946,2164,3373,4278,5984,4151,3075,3276,3538,3478,3366,2917,2266,4022,4190,3242,3173,1512,1105,1186,1603,1670,1836,1614,1232,1096,970,924,642,901,792,869,899,2568,2068,1932,1738,1855,1158,706,366,78,70,52,56,40,47,38,40,42 +0,24,41,60,110,148,129,147,292,274,243,354,485,462,488,490,772,1336,1717,2370,1820,2035,2640,2438,3592,3674,3170,3462,2566,2520,2099,2161,1834,2115,2038,2075,1831,2486,2806,4394,5806,5894,4012,3297,5184,3413,2376,1206,2484,2120,1899,1618,1452,1797,1841,2751,3189,3464,2985,3370,2961,2935,2358,2138,1391,1631,1657,2004,2742,2050,1757,1648,2040,3159,4512,4696,3971,4106,2700,3274,2428,3340,4367,4279,4794,4334,3569,4248,4647,3394,2962,3526,5122,3845,2922,2560,1839,1476,1379,1840,1928,1635,2114,1650,855,862,1018,734,1107,970,1145,1112,1906,1482,1337,1226,1508,978,814,396,101,86,82,68,47,74,76,86,72 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,423,696,757,628,777,890,908,662,488,469,323,394,614,780,726,692,584,459,543,351,209,97,0,530,1106,1735,2412,2314,2807,3674,4523,5596,6067,5465,6175,6127,5072,4405,3146,2375,2546,1597,901,1383,1650,1694,1646,2044,2244,2249,1605,1317,1524,869,604,474,273,312,246,172,90,38,0,118,244,512,613,723,1099,1245,1190,1880,2050,1834,1904,2018,1911,1916,1412,1358,1411,1220,1225,744,371,163,0,6,10,20,27,33,46,63,86,98,133,128,131,112,134,109,108,153,150,140,131,121,156,138,103 +4,5,4,5,5,7,6,6,4,5,4,3,2,2,2,1,0,180,332,582,802,700,768,707,778,719,522,443,336,482,832,804,496,495,526,513,446,384,247,198,47,454,944,1186,1770,2097,2560,3896,4165,5373,5550,4736,5320,5614,4575,4094,2386,2550,2228,1380,976,1077,1082,1308,1612,1917,1798,1747,1585,1466,1307,774,800,592,381,294,213,153,81,40,0,187,436,623,772,889,1439,1458,919,1373,1640,1569,1579,1736,1996,1827,1511,1638,1664,1433,1517,972,568,274,10,28,41,52,61,108,124,138,86,110,130,118,120,96,120,98,136,161,156,170,120,137,141,114,86 +6,7,6,7,9,10,10,10,6,7,6,5,3,4,3,2,0,181,307,394,707,598,593,549,426,550,497,513,462,713,810,904,453,376,452,468,420,293,302,288,113,442,830,1122,1884,2031,2394,3083,3268,3570,3638,3802,3860,3604,4640,3776,2437,2282,1920,1077,758,835,944,1135,1113,1426,1572,991,1222,1116,884,606,921,780,559,343,182,134,62,31,0,316,620,985,726,1005,1332,2257,932,959,1356,1784,1454,1478,1650,1868,1801,1953,1510,1279,1486,1040,624,344,15,43,78,104,81,152,213,182,90,88,104,107,93,96,66,70,169,140,166,214,128,120,116,109,71 +8,8,10,11,14,12,13,12,10,12,8,7,5,5,4,2,0,146,269,340,454,458,496,475,444,651,688,812,711,814,759,848,489,476,370,470,516,443,325,308,156,416,734,1036,1130,1823,2036,2692,3353,4262,5370,4913,5088,4192,4068,3182,1730,1564,1368,803,484,528,645,856,778,1179,999,879,974,898,631,600,867,650,444,311,162,112,47,27,0,383,786,1008,987,1399,2037,2447,713,994,1249,1393,1296,1244,1666,1972,1972,1730,1342,1224,973,880,573,294,30,76,100,124,153,206,253,270,84,81,87,101,101,87,60,65,166,152,160,172,123,124,110,78,58 +8,12,11,17,16,13,13,10,9,10,10,10,5,5,3,2,0,104,230,369,408,328,402,310,478,495,530,748,810,917,1061,1102,629,707,803,733,526,621,602,513,162,360,563,736,900,1430,1490,2336,3885,5742,6301,6118,5339,3169,2449,1859,669,560,311,268,206,382,478,604,752,580,622,624,702,756,718,484,772,666,374,284,141,111,92,39,0,230,534,904,1386,1810,2239,2060,830,710,744,1017,1063,2101,2445,2985,2504,2191,1564,1453,943,607,348,245,45,72,109,142,190,193,238,304,73,97,100,104,74,69,59,53,174,165,194,172,160,123,89,62,55 +14,17,24,26,21,22,22,16,14,13,12,12,7,7,5,3,0,95,220,304,278,268,365,290,522,406,384,553,572,854,1146,978,861,756,812,622,523,501,409,380,353,492,700,716,1081,1288,1342,2082,3683,4201,4364,4333,4608,3270,1739,1302,510,430,358,406,232,364,578,626,739,850,888,954,983,894,891,560,569,427,323,256,111,91,84,42,0,251,592,840,1352,1618,2067,2332,1367,1207,902,1016,1084,1825,2474,2694,2302,2004,1685,1274,852,680,461,296,52,68,108,193,229,309,283,430,79,110,107,120,128,112,91,80,186,170,222,202,210,150,143,100,56 +17,24,28,31,26,28,24,17,14,14,10,12,7,7,6,4,0,83,151,226,187,212,256,216,442,421,396,414,465,590,905,1278,922,890,677,573,352,387,396,451,520,524,674,800,962,915,1230,1430,3237,3745,3415,4214,2807,2225,1584,919,346,460,454,411,350,488,505,494,957,1042,977,1041,1151,932,874,631,380,288,234,185,70,56,49,21,0,224,500,608,920,1263,1748,2387,1939,1704,1342,1141,1491,2104,2965,3273,3031,3004,1994,1418,1047,896,470,305,59,81,132,237,292,305,420,462,109,119,138,134,236,194,154,136,191,190,209,219,224,169,178,141,70 +29,29,23,33,34,25,23,20,16,17,15,14,9,10,8,5,0,55,104,134,122,213,245,270,452,388,385,382,298,584,716,1038,883,817,549,513,363,366,341,524,731,693,672,692,735,758,812,747,5831,4658,3550,3576,2451,1858,1009,651,156,357,433,596,542,535,547,678,1325,1450,1485,1245,1090,1084,989,696,354,282,191,152,64,61,58,24,0,237,475,614,1116,1400,2072,2272,1709,2012,2152,1671,1780,2228,2538,3410,2463,2758,2306,1804,1425,854,564,298,63,114,162,248,324,273,312,404,205,226,195,226,264,232,182,160,186,225,226,237,190,177,210,169,86 +35,28,19,15,9,10,12,14,12,10,7,6,3,4,3,2,0,23,51,72,103,162,272,344,368,472,571,772,849,909,1084,926,780,760,536,782,800,874,779,806,798,615,664,653,488,367,340,156,6510,6577,4899,4410,5365,5004,3515,1646,0,200,344,491,588,725,970,1116,1391,1198,1009,673,419,578,602,529,440,343,238,222,228,185,104,56,0,158,341,581,757,1176,1937,1770,2268,3110,4975,4221,5087,4398,5530,4239,2111,1528,1146,1168,1028,778,546,255,72,95,121,199,246,253,261,270,242,164,122,131,109,122,125,163,148,131,121,137,148,129,170,156,131 +53,42,34,28,20,16,20,20,13,13,12,11,8,10,7,5,0,26,48,74,100,188,269,322,299,447,484,510,880,753,1052,990,732,634,610,677,693,678,703,778,663,1016,1358,1194,1553,1416,1298,1174,4308,4644,3643,4780,5487,3584,3155,1523,380,396,360,418,560,642,816,771,1771,1397,1236,866,447,494,555,432,429,313,211,211,192,142,75,44,0,109,280,461,505,904,1310,1580,1766,3262,3918,4502,4221,4516,5358,4686,1760,1288,1438,1325,1146,864,628,332,152,160,112,170,328,344,350,462,289,233,208,177,206,170,186,154,117,104,136,130,91,128,139,123,91 +67,57,45,39,26,23,22,20,15,15,16,12,11,10,8,5,0,27,52,65,123,161,199,252,234,310,372,449,731,605,722,592,539,541,628,728,827,636,594,787,589,1100,1752,2253,2425,2022,2120,1920,3815,4025,3574,5548,4544,3982,2196,1118,636,558,441,462,606,556,735,753,1861,1361,1397,1125,608,495,530,313,349,237,204,159,117,86,63,30,0,124,224,381,356,615,1017,1356,1935,2374,3884,3822,5305,4266,4429,4187,1684,1283,1438,1094,1232,885,600,302,183,190,154,198,375,461,478,596,316,271,262,187,270,262,194,140,74,110,116,142,74,91,128,124,82 +78,72,44,47,39,34,31,23,25,29,24,22,15,14,12,7,0,24,48,69,118,177,176,211,218,245,284,308,524,454,436,466,427,390,509,553,734,586,498,682,762,1146,1684,2877,2961,2652,2728,2268,3524,4056,3379,5402,5390,3620,2490,1272,1134,1047,846,782,591,630,783,699,2221,1635,1320,1017,821,724,600,471,246,194,150,120,91,66,54,24,0,87,148,296,354,538,755,954,2673,2370,2918,3578,4276,3758,4897,3844,1432,1462,1257,1127,863,734,575,306,206,191,212,228,320,459,428,608,612,459,455,308,226,236,188,116,52,80,73,99,70,80,90,94,92 +63,57,35,40,42,31,26,18,32,33,26,27,22,18,15,8,0,27,62,61,87,95,145,176,151,133,167,198,234,266,326,398,190,271,278,325,470,652,786,933,925,1465,2622,3336,3482,3646,4263,3382,2240,2305,3447,4786,5276,4304,2921,1920,1740,1624,1263,1128,783,792,840,591,2067,1480,1132,932,1154,1035,893,670,90,108,110,88,70,57,43,20,0,83,147,198,243,367,405,632,2927,2553,1915,2547,2996,3149,2696,3609,1742,1652,1062,853,846,529,327,227,213,198,243,323,349,606,676,961,778,466,341,354,284,207,107,82,21,32,38,58,86,85,61,81,97 +80,66,60,64,66,48,48,31,38,28,21,23,26,21,17,9,0,22,39,48,58,64,108,100,118,134,180,245,253,285,446,440,153,234,221,348,457,720,655,1014,1907,2570,2779,3693,3254,3248,3515,3987,3344,3654,4607,5060,6642,5926,4224,2616,1963,1652,1367,1011,868,726,716,541,2173,1790,1340,1318,872,954,912,458,79,83,94,88,49,50,35,18,0,141,234,628,674,789,813,947,1996,2592,1970,3008,2779,3458,4010,4775,1869,1542,1039,946,757,606,320,187,239,193,253,232,356,607,518,717,562,437,336,313,359,248,171,94,20,27,28,48,54,65,43,64,61 +76,72,69,88,68,69,60,47,38,34,22,25,23,16,12,7,0,12,20,31,30,48,54,56,66,110,159,225,314,493,508,522,119,193,253,350,403,546,836,924,2484,3224,3780,4239,4579,5369,4389,4340,6074,4941,4955,6102,6025,7073,5813,3943,1887,1741,1035,1078,718,757,775,495,2085,2144,1854,1974,969,681,644,399,63,64,54,43,43,43,28,17,0,202,394,802,1158,1124,1086,1306,1998,2232,2766,3176,3432,4139,5101,4858,1376,1102,887,791,425,386,354,178,298,259,184,157,256,384,590,804,528,482,316,254,388,234,191,105,14,19,18,24,38,41,30,42,45 +89,95,88,96,76,74,67,59,47,46,34,32,26,23,12,8,0,7,10,17,16,26,24,30,32,98,142,234,373,482,600,473,58,154,239,410,584,670,882,1521,2768,4249,4857,6537,7579,7624,5072,6216,5885,5894,5558,7161,7586,6888,6060,4248,3117,1944,1406,1234,811,808,732,468,2187,1727,1449,1354,897,688,441,270,30,34,28,20,20,20,17,10,0,284,617,1038,1153,1558,1528,1398,1744,1995,2970,2910,3336,4361,4184,4898,870,732,555,572,486,454,300,242,210,192,182,184,221,333,451,666,652,593,557,439,499,316,181,86,8,9,9,14,21,21,16,23,22 +77,78,82,72,55,34,22,20,13,13,14,10,7,7,4,2,0,18,36,61,71,136,168,164,188,194,257,304,402,337,356,631,0,0,0,0,0,0,0,0,0,2181,3867,4230,6403,4861,5368,7448,8388,7221,7840,6484,3061,3944,3742,3945,5360,4307,4671,4720,4724,4654,3121,1868,1597,1425,1181,731,466,502,608,487,423,380,296,236,98,81,53,23,0,23,42,55,60,62,65,71,84,1380,2326,2578,3449,3705,3823,4197,350,389,319,380,367,294,328,427,519,544,636,873,1073,1195,1138,899,675,542,451,421,360,487,632,640,569,470,448,482,431,303,302,135,0 +54,60,64,62,47,32,22,17,14,15,17,17,8,8,6,4,0,15,37,56,82,100,118,146,186,191,260,326,334,346,430,707,0,29,71,94,186,158,101,83,296,1762,2541,3261,4490,5012,5522,7528,6888,7178,7350,5396,2055,3006,2760,3598,5568,3963,3819,4283,3643,3568,2417,1612,1642,1334,1131,828,503,658,832,731,590,564,365,322,200,143,91,43,0,19,35,50,65,76,99,114,162,954,1949,2179,3266,3424,3860,3559,340,381,450,466,394,424,305,328,396,480,723,744,782,814,884,672,555,552,454,465,352,466,537,526,500,558,612,522,498,400,326,171,0 +37,50,57,44,34,27,28,16,12,17,15,17,8,8,6,4,0,15,32,50,69,73,82,122,169,175,260,376,361,368,458,830,0,57,128,153,404,293,189,163,541,1264,2122,3476,3301,3313,4832,8886,8293,6663,7615,4844,1990,2526,2814,3013,4794,5292,4202,5633,4143,2717,2270,1420,1764,1215,1047,651,505,823,882,815,721,633,512,408,297,182,140,80,0,22,40,64,92,98,113,142,256,721,1342,1648,2788,2670,3282,3361,444,450,435,553,478,437,300,272,437,466,622,732,590,575,761,670,572,562,489,394,417,523,530,498,501,475,597,630,443,454,318,143,0 +36,40,49,41,36,26,22,16,12,14,15,14,12,10,8,5,0,15,34,40,65,68,49,60,124,220,282,348,367,324,474,668,0,130,281,314,456,348,274,223,694,1330,2006,2378,2780,3562,4129,7334,8351,7396,5984,4470,2198,2210,2205,2244,4074,3554,4074,4422,3444,2781,2496,1396,1795,1274,952,638,457,876,979,720,676,598,470,426,452,252,194,109,0,17,38,54,96,92,126,141,294,716,1042,1663,2010,2476,2304,1958,768,746,551,594,546,582,442,384,428,400,426,450,331,408,466,434,528,483,591,457,478,698,718,724,459,406,448,537,464,340,302,140,0 +28,27,34,28,32,30,29,22,8,12,12,14,12,12,8,5,0,10,21,36,44,36,32,39,96,245,315,288,368,495,501,633,0,111,238,412,646,636,540,468,825,1142,1240,2340,2975,4360,6139,7371,7496,4831,2875,2864,1926,2115,1622,1358,2751,2986,2450,2624,3440,3179,2748,1904,1283,1329,1144,841,404,588,736,726,653,496,371,500,464,343,287,165,0,23,48,60,72,113,139,155,388,759,1430,1392,1691,1426,1603,1027,957,825,496,575,552,423,456,388,397,296,277,248,188,172,131,158,334,401,513,596,662,771,907,801,326,274,284,385,414,341,278,159,0 +25,26,25,26,33,27,26,23,13,16,15,17,15,15,12,7,0,14,27,44,37,38,46,44,115,214,258,270,329,406,439,568,0,166,338,561,715,770,618,654,1094,1354,1165,1926,2480,3140,5023,4878,5506,3716,2709,2067,2126,1768,1420,1492,2761,2437,2048,3073,3000,2714,2125,1338,1227,1296,1296,766,582,852,697,687,769,496,552,508,424,278,270,124,0,36,60,88,145,186,202,256,390,748,1372,1170,1731,1468,1428,1188,1390,1069,739,949,853,772,632,548,450,334,240,202,214,202,180,158,496,586,724,750,1008,891,821,952,614,580,340,458,526,338,300,158,0 +14,19,18,30,30,24,26,24,19,22,17,17,20,15,12,7,0,14,26,43,38,45,54,75,112,171,210,260,260,285,292,341,0,194,419,676,1116,1096,839,988,1438,1288,1642,1974,2335,2165,2614,2608,4110,2424,1914,1417,1791,1569,1578,2316,2801,2776,2309,2805,2714,2157,1754,1009,1390,1256,1256,1189,770,856,866,777,700,597,573,456,417,250,167,79,0,39,88,115,221,263,326,386,337,704,880,836,1656,1599,1772,1250,1427,1166,1093,1221,1259,1186,838,710,468,356,266,172,168,171,210,216,552,582,728,883,1277,1186,1064,885,790,656,510,583,482,416,232,123,0 +8,11,15,22,23,25,22,23,25,27,23,18,20,16,14,8,0,17,36,47,54,48,52,72,113,132,136,152,163,197,239,244,0,268,517,756,1140,981,940,1101,1184,1016,1532,1474,1270,1198,1337,1428,2792,1821,1148,1334,1343,1572,2108,2610,3659,3258,1896,2526,2456,1855,1905,1344,1158,1509,1347,1000,836,922,871,848,773,652,596,506,362,254,188,94,0,62,135,140,294,302,427,442,361,620,842,944,1203,1207,1445,1296,1483,1323,1131,1300,1596,1292,936,700,380,320,177,152,187,192,244,238,640,690,754,1034,1125,1194,943,995,714,620,618,518,373,344,150,91,0 +0,4,6,10,13,23,25,24,30,24,24,22,21,15,10,6,0,14,23,44,56,45,46,55,76,86,70,48,35,46,60,73,0,147,291,378,463,959,1146,1497,1426,1454,1020,671,647,458,208,115,2030,2097,2188,2957,3044,2172,2080,2499,3467,3251,3322,3914,3812,3126,1767,1216,1191,1054,712,591,316,419,617,510,588,491,365,256,135,73,43,26,0,104,225,268,376,357,466,409,496,584,790,728,1005,969,1017,1126,1480,1284,1060,889,1089,878,474,424,312,324,438,441,474,410,512,440,747,710,452,360,352,431,557,578,853,734,567,573,471,356,252,147,0 +36,27,16,17,22,26,32,32,43,38,40,29,21,20,12,8,0,12,20,36,58,48,42,57,76,75,63,46,48,52,70,74,0,169,291,300,475,858,1190,1358,2374,2308,2304,1796,886,710,797,526,1538,1794,1710,1984,3076,2652,1697,2290,3972,3668,3720,3985,3958,2696,1744,1669,1064,878,542,542,364,484,528,564,508,388,420,272,140,95,42,24,0,83,223,252,255,360,458,409,418,490,874,808,900,1066,1283,1150,2123,1626,1298,1113,862,928,712,600,309,336,537,527,672,582,639,552,732,730,386,394,305,388,590,676,818,798,607,622,401,364,284,170,20 +64,52,30,23,31,26,29,34,62,47,46,43,26,25,16,8,0,9,18,37,59,57,53,50,65,70,52,39,44,50,70,78,0,157,262,315,330,811,1038,1279,3273,2842,2863,1929,1488,1441,1120,1097,1334,1470,1349,1493,2426,1836,2028,1649,4167,3298,4048,4092,4198,3410,2272,2060,1170,943,542,484,387,546,559,522,446,392,375,255,145,94,56,28,0,82,146,189,182,241,349,315,383,534,736,938,1150,1366,1270,1115,2548,2270,1446,1462,817,855,870,894,301,396,474,454,709,708,556,437,663,584,452,394,221,416,484,666,1028,737,805,970,480,369,289,163,44 +94,64,60,52,53,46,42,41,64,47,38,36,24,20,15,10,0,12,21,34,60,52,65,58,72,66,50,47,37,59,66,71,0,126,240,302,294,570,649,808,4103,3713,3663,2967,2258,2032,1819,1410,1544,1604,1290,1440,2084,1815,1843,1760,4286,4057,4607,4240,3016,2757,2305,2800,1121,789,623,493,514,514,553,429,343,345,334,258,168,112,83,43,0,44,74,150,129,245,348,290,342,565,784,1144,1488,1120,1256,1434,2102,1926,1859,1488,1234,1276,862,1091,246,330,371,564,820,770,584,558,473,452,316,268,262,320,415,570,824,829,1020,748,626,417,259,166,75 +91,86,54,61,57,59,50,31,77,53,50,46,30,23,19,12,0,14,24,28,40,44,44,42,54,38,31,46,44,52,52,70,0,53,107,144,250,284,344,536,3899,4150,3982,3366,2502,1990,1488,1421,1303,1353,1026,1164,1468,1517,2104,2277,3029,3616,3687,2955,3061,2477,2781,2800,1017,665,532,430,494,493,608,482,341,244,262,177,160,157,108,59,0,20,35,56,90,149,238,301,207,457,722,1158,1374,1249,1524,1704,2269,1424,1221,1200,1593,1140,1011,976,165,422,621,729,830,927,823,668,248,260,296,274,283,367,419,419,816,665,695,838,701,484,400,249,87 +110,88,72,62,60,61,48,44,100,70,41,36,44,30,22,14,0,11,22,27,36,34,36,30,44,36,21,36,35,36,32,49,0,104,220,324,398,770,1018,1750,3248,3802,5005,3764,2878,3288,3704,3357,2192,1918,1014,1208,1194,1650,1770,1750,2308,2556,3144,2834,2866,3032,3141,2498,792,651,393,468,448,393,512,436,337,251,233,151,146,120,67,42,0,18,31,52,70,143,178,278,131,390,555,856,1152,1426,1933,1944,1558,1304,1658,1550,1465,1248,1228,1026,306,492,688,718,795,748,926,754,337,301,243,264,286,383,421,348,827,752,541,683,489,514,552,394,204 +134,94,72,51,44,47,54,36,98,82,48,41,47,43,26,16,0,8,16,18,20,22,19,24,22,20,17,26,23,18,18,27,0,174,330,707,530,1289,2099,2836,3636,4813,4946,5738,3415,4493,4792,4380,2772,2013,1217,1039,1038,1168,1252,1124,1468,1775,2070,1821,3454,2868,2992,2624,687,396,299,264,286,323,282,210,228,148,126,96,104,90,50,30,0,19,33,54,56,118,158,188,115,319,416,932,1162,1370,1698,1603,1405,1585,1584,1648,1575,1185,1152,931,495,478,680,849,772,854,834,668,361,307,297,301,277,251,332,231,691,762,633,556,348,399,523,371,350 +108,88,81,70,40,44,53,56,92,66,56,47,56,40,29,20,0,5,10,12,10,12,10,14,13,12,10,12,12,12,11,12,0,190,371,715,906,1935,2466,3326,5192,5546,5771,5927,3761,4660,6226,6189,4066,3174,2101,1570,1216,1099,1113,789,669,1119,1386,1624,2406,2934,2506,3634,389,232,146,136,132,141,131,103,105,86,54,42,50,42,26,17,0,18,32,40,48,92,89,137,72,266,406,642,742,1174,1384,1464,1242,1410,1699,1700,1433,1439,1323,1132,924,821,870,1020,1042,1266,1070,726,475,360,291,264,202,212,255,234,477,488,485,522,322,440,578,532,446 +110,120,95,75,34,54,87,105,111,74,43,28,13,12,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,13,20,23,23,30,30,29,285,600,807,1311,1212,1090,1505,1861,2092,1656,1576,1028,1488,2651,3654,0,329,547,1029,1604,1248,1106,1661,1956,2238,2600,2216,2637,2524,3017,2430,1953,1695,1218,1303,1974,1618,1683,1347,769,756,994,1020,1410,1844,1930,2032,1509,3004,3945,5539,5728,4998,3955,5612,6135,5175,4287,4110,5323,4255,4750,4158,3536,3181,3732,3002,2563,2494,1993,1297,955,1242,1150,1254,1156,1076,801,663,486 +87,132,91,86,51,89,92,111,130,78,54,30,19,16,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,29,52,45,60,53,46,172,172,205,221,242,372,491,664,302,604,1040,1268,2090,1713,2035,2164,2645,3316,3018,2210,2704,2482,2681,3501,0,261,414,878,1541,1122,757,1438,1697,2124,2567,2067,2358,2170,2190,2206,1690,1390,1180,1170,1559,1674,1896,1014,613,880,1018,1096,1132,1260,1219,1378,1622,2548,3315,4514,3426,4384,3600,4844,5850,5344,5396,4449,5186,4583,5426,4123,3002,2440,2944,3266,2850,2347,1382,1228,960,1085,1104,1165,755,685,754,692,570 +103,98,127,122,74,101,114,117,126,101,63,42,18,17,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,52,92,91,84,108,119,290,368,465,550,574,643,857,1284,614,849,1164,1488,2695,2326,2601,3105,4721,3962,4038,3668,3817,4099,3531,3046,0,256,436,903,1105,1055,703,940,2282,2074,2102,1875,1688,1416,1518,1835,1244,880,946,865,1733,1418,1537,957,698,842,1103,1238,866,987,902,684,2151,2154,2886,3493,2671,2425,3160,4377,4148,6188,6372,5842,6476,4596,4990,3782,2300,2407,3167,2610,2562,1783,1386,1130,1291,1070,1014,1208,562,554,563,560,471 +145,128,146,135,84,106,82,110,86,74,63,42,17,15,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,67,112,149,168,198,166,361,461,700,878,733,1024,1288,1674,669,1094,1560,1879,2862,2703,2624,2578,6280,6223,3693,3598,3968,4050,3009,2882,0,137,263,524,744,847,824,898,2401,2220,1441,1495,1494,1172,1356,1105,669,706,1008,964,1153,1066,1268,816,803,662,786,958,764,665,850,814,2968,2524,1776,2171,1592,2729,2728,4372,6642,6955,7472,6076,6078,5542,4769,4254,1934,2273,2172,2012,1830,1625,1770,1324,1136,1051,673,763,449,452,574,465,407 +146,100,79,107,112,94,83,98,70,40,27,25,15,13,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,105,182,236,242,258,203,539,547,593,812,1084,1732,1941,2416,899,1213,1343,1749,2606,3236,3088,2740,7496,7607,7417,6872,4548,3791,2324,2366,0,98,176,243,392,400,558,875,1916,2197,1812,1565,1336,1279,1197,962,247,500,743,906,996,1198,1045,644,650,459,428,617,730,1002,1010,918,2908,2114,1997,1744,1268,3122,4815,4677,7336,9160,8269,6003,5169,3949,3982,4478,1010,1046,1253,1422,1708,1596,1116,1407,1235,878,770,534,396,275,256,243,277 +148,108,77,98,102,84,86,92,69,54,32,27,12,13,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,154,242,220,258,316,342,589,583,516,756,1025,1572,1748,2120,1878,1726,1322,2302,2491,3050,3680,4392,8579,8268,8440,10282,8577,8527,8519,6141,0,82,148,276,468,517,468,760,1768,1644,1295,1382,1584,1158,936,1050,140,345,580,549,600,790,733,524,830,656,749,951,850,869,812,728,3350,2519,1488,1234,1070,2651,3384,4672,4747,6428,5627,6376,5986,5212,4711,4832,926,983,1113,1251,1886,1686,1398,1118,1604,1080,751,561,493,363,285,240,166 +114,116,103,76,58,81,80,76,61,47,28,28,10,9,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,220,382,264,298,376,560,492,463,466,629,964,1411,2014,1726,2476,2111,1876,1981,2266,3529,3722,4246,7593,9956,10367,12556,14354,11065,11908,9494,0,89,168,213,442,400,361,582,1494,1648,1370,1413,1378,963,1000,850,92,219,277,437,347,353,424,416,807,1043,1064,958,875,696,730,723,2737,2004,1464,1098,826,1830,3200,3125,3902,5351,5229,5266,6037,6968,6129,4824,1164,1136,1195,1333,2395,1869,1474,1420,1550,1015,938,678,477,448,333,266,133 +121,110,94,58,44,50,60,60,49,43,26,22,12,11,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,271,397,468,588,654,642,870,757,456,618,894,1126,2226,2159,2126,2224,1748,1738,1504,3050,2952,4590,7433,9483,14023,16535,14573,13906,13172,11828,0,70,142,196,382,318,320,395,837,934,931,888,1124,1105,1008,864,41,116,182,266,228,348,376,352,788,1048,827,852,814,768,1100,959,3394,2118,1508,1112,867,1540,2274,3170,4026,4510,5513,5834,6025,5753,6665,4464,1017,1168,1498,1277,2175,1598,1242,1534,1439,1002,970,756,702,564,432,216,73 +95,100,86,91,76,84,63,53,26,28,24,22,13,10,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,140,243,411,647,716,920,1028,1299,1819,3006,3656,3351,2276,2597,2701,2611,2910,4277,5838,6428,5276,8274,8654,6366,6526,10329,13025,13194,10459,11532,0,22,45,82,136,165,242,270,304,508,815,834,880,807,822,694,0,30,70,96,151,228,326,484,528,531,390,399,398,466,519,594,3129,3108,2065,2604,3201,3951,4341,3986,3144,3242,3137,2406,2340,3129,3658,4819,1264,1531,1685,1622,1154,924,1032,1104,1138,967,854,992,922,604,361,180,0 +84,90,84,78,83,80,62,42,29,22,20,19,15,14,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,286,486,840,1034,1058,1212,899,1469,1438,2434,3619,3084,2481,2542,2328,3632,4053,5824,7561,7168,6066,8243,10032,8686,9560,10300,9564,9760,8535,7280,0,24,36,80,98,166,163,178,287,578,856,912,716,748,648,586,2,27,71,96,113,210,269,318,529,444,344,473,349,466,476,476,2127,2325,2205,2686,2920,3260,3284,2542,3590,3516,2562,2306,2247,2699,2698,3364,1148,1506,1692,1214,819,1062,1161,1260,875,802,806,938,895,735,464,296,78 +89,97,78,82,75,58,61,36,32,29,15,12,14,11,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,460,691,1049,862,1090,1684,534,1199,1557,2052,3466,3447,2286,3415,1776,3932,5478,7800,9950,8266,6414,7363,8171,8940,11368,10380,9289,9148,7550,7081,0,20,34,76,94,128,136,147,338,504,722,734,780,586,504,540,4,35,58,74,96,237,316,343,380,315,329,348,320,295,327,506,1743,1701,2006,1992,2695,2628,2180,1895,3377,3026,2480,2390,1571,2346,2979,2525,1333,1419,1140,945,864,962,1160,1136,500,716,776,663,887,722,689,416,155 +88,102,78,87,60,58,39,27,28,25,15,14,13,11,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,498,928,1004,1341,1882,2281,474,947,1260,1668,2579,2622,1991,2748,1750,5109,7185,8583,11678,11698,7894,8902,7134,9104,9728,11552,11280,10160,7426,6360,0,19,30,67,80,122,140,150,289,427,609,653,800,604,490,513,7,48,83,100,108,219,268,314,217,298,299,322,372,362,363,380,1809,1614,1868,1303,2135,1674,1327,1126,3339,2860,1880,1992,1762,2465,3322,2652,1185,1096,646,560,779,738,989,918,504,576,869,776,820,690,793,532,299 +70,94,86,73,62,49,40,20,23,26,20,13,8,7,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,622,820,1354,1790,2026,2698,640,1184,1621,1626,1723,1402,1611,2473,1747,3302,4088,6866,9793,10070,9308,10237,9130,11020,13364,13598,11537,10949,7474,5660,0,24,40,47,72,99,135,144,204,232,341,488,594,584,536,525,8,50,98,118,138,202,198,290,132,243,310,396,396,286,304,353,1966,1455,1523,1110,896,809,713,537,2792,3012,3073,3108,2384,2498,2316,2949,714,548,572,562,554,771,918,959,415,480,471,746,788,694,789,572,357 +48,66,58,55,42,41,27,19,23,21,15,13,8,7,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,521,719,1226,1506,1851,2812,1278,1863,1965,2494,3006,2256,2022,2852,2149,3198,3356,5947,8960,9390,8381,9379,10736,11946,11620,9660,9779,8684,9314,6876,0,18,36,40,47,75,79,132,156,223,312,451,424,434,331,374,12,44,84,106,114,165,241,306,143,214,325,304,380,318,255,279,2355,1738,1709,1194,855,843,684,488,2366,2243,2130,2322,1564,1410,1764,1916,565,504,480,501,623,731,937,826,478,494,503,672,756,785,741,614,363 +31,43,40,40,37,32,22,12,15,17,12,9,6,6,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,385,578,729,1245,1982,3536,1765,2203,2606,2402,3313,2774,1908,2692,2441,3559,3588,7488,8086,8564,6520,10605,10689,8532,8975,8216,10221,9097,9951,6620,0,12,25,28,40,53,58,70,71,117,182,229,225,281,286,210,12,48,68,89,63,147,209,269,120,143,232,225,279,241,249,223,2436,2414,1628,1177,776,604,668,432,1154,1248,1131,1181,992,888,854,807,439,496,464,430,514,694,800,952,502,570,481,750,831,802,644,454,456 +19,22,18,22,16,16,13,8,10,9,7,6,4,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,302,459,617,1032,1448,2037,1760,2340,3122,2907,3666,2414,1927,2490,2445,3587,4173,7500,7408,8270,6076,9249,11084,8802,8040,7138,8332,9146,7650,6960,0,8,14,15,22,30,35,46,43,78,76,122,137,140,156,104,15,44,48,65,42,96,162,210,108,170,191,181,249,282,351,294,2904,2336,1832,1156,586,632,522,314,616,786,719,634,672,608,722,688,358,404,438,424,523,681,745,872,662,545,638,758,679,672,635,614,573 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,716,1362,1589,1470,1427,2364,2708,2363,1794,1540,1283,1156,773,373,0,570,1110,1642,2014,4646,5769,5193,0,0,1,2,2,2,3,2,2,7,11,14,14,16,20,22,20,25,31,43,42,38,42,48,44,89,108,190,269,320,285,270,2927,3170,2829,2520,3151,2933,4021,4080,3079,2770,2285,1914,996,796,510,410,376,374,478,532,465,531,563,464,378,360,306,286,253,398,443,586,571 +4,5,5,6,7,8,8,7,7,8,7,7,7,6,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,808,1031,1280,1344,1283,1792,2922,2079,1530,1398,1113,1050,569,400,55,690,1196,1776,3098,3566,4572,5220,0,0,2,2,2,5,5,5,4,8,10,14,14,18,18,23,20,24,28,37,47,47,46,51,64,108,109,232,325,316,310,284,2539,2184,2496,2725,3410,2858,3065,3169,2174,2272,2241,1652,1092,976,742,512,322,356,464,365,406,411,438,327,432,428,476,432,302,429,562,664,566 +6,10,9,11,13,15,14,11,11,12,12,11,12,10,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,669,783,930,962,871,1434,2187,1944,1832,1685,1419,825,514,311,112,717,1406,2208,3172,3050,3454,3504,0,1,2,2,3,5,4,5,4,8,10,14,11,17,16,16,17,24,23,23,40,51,53,54,80,116,161,210,283,270,260,216,2095,1950,2048,2406,2969,3598,3350,2673,1935,1894,1748,1419,1224,982,760,380,381,431,428,330,305,281,282,225,441,460,498,460,291,512,592,718,768 +11,14,16,14,17,19,18,18,15,16,19,16,17,14,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,419,672,634,694,790,798,2334,1916,1742,1750,1198,840,666,554,136,1182,2056,2761,2831,3345,4020,3672,0,0,2,2,2,5,5,5,5,8,12,15,12,14,14,14,17,23,23,27,34,44,53,47,89,127,143,222,247,245,197,221,1402,1408,1441,1948,2003,2449,2440,2175,2321,2531,1747,1439,920,802,691,364,359,415,305,232,268,196,261,244,525,484,618,496,383,497,573,774,800 +12,14,11,15,18,20,28,23,17,19,25,26,20,15,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,133,286,430,432,494,458,2457,1792,1182,998,1102,1058,952,576,192,1219,2296,3137,3375,3283,2817,3873,0,0,1,2,2,2,3,2,4,6,6,8,10,12,9,10,16,22,25,30,39,31,32,36,102,98,137,212,228,227,150,194,1210,1486,1944,1630,1899,2001,1654,1740,2758,2428,1886,1698,1030,949,558,328,248,265,199,207,150,174,146,199,466,455,405,382,371,558,626,616,898 +26,27,18,20,22,25,34,30,20,24,29,26,28,23,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,102,212,334,419,442,367,1655,1246,1144,880,905,936,822,577,216,1266,1827,3294,3589,4102,4154,3252,0,0,0,1,2,3,4,4,5,7,7,9,10,12,10,10,17,24,27,35,39,39,35,62,109,123,154,269,210,221,209,226,1409,1712,1980,2021,2349,2086,1723,2268,2344,1600,1951,1575,872,832,590,361,325,266,201,209,202,164,199,240,409,356,378,369,454,528,485,528,598 +33,34,24,23,21,32,33,33,27,30,28,30,39,27,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,68,147,213,294,330,260,1416,944,863,836,1100,805,638,604,264,1312,2086,3205,4296,3816,4778,4337,0,0,0,0,1,2,3,4,3,5,5,7,10,11,8,8,11,19,22,33,33,36,50,91,165,161,168,254,175,215,232,218,1882,1991,2540,2204,2292,2464,1818,1800,1383,1212,1612,1419,1033,766,562,444,319,263,230,242,206,215,186,233,445,486,470,360,384,422,536,531,497 +35,32,21,30,27,38,36,36,42,34,37,34,41,27,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,39,79,117,143,192,137,987,722,621,630,734,664,542,548,306,1301,2072,2680,3433,4435,4324,3920,0,0,0,0,0,1,2,2,2,5,5,7,8,8,7,7,7,12,15,24,26,42,50,106,134,167,204,274,284,257,194,269,2298,2688,2862,2351,2616,2520,2101,1855,1351,1084,1510,1203,716,537,590,465,366,256,270,262,240,226,236,224,366,412,334,370,450,402,646,664,682 +38,29,31,29,37,50,53,42,48,46,42,34,23,18,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,617,676,766,818,786,638,578,442,1471,2960,2906,3904,4378,5080,5302,0,0,0,0,0,0,0,0,1,2,3,2,2,2,3,2,0,20,39,80,118,116,102,102,141,131,101,94,64,83,109,195,2238,2058,2476,2256,1694,1921,1654,1758,1505,1346,814,608,496,553,455,348,347,434,498,464,545,446,419,345,299,516,611,845,856,644,540,698,684 +26,28,30,34,33,46,60,48,36,35,43,36,31,26,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,556,607,785,613,548,536,398,340,1123,2940,2891,3477,4231,4646,4046,0,0,0,0,0,0,0,0,0,2,4,4,2,5,5,5,0,22,31,63,109,110,111,121,120,109,101,64,52,85,102,149,2199,1732,1770,1639,1353,1534,1350,1423,1660,1180,791,624,490,434,371,310,261,358,387,427,443,369,324,306,253,504,708,834,639,508,410,531,426 +16,25,32,39,35,48,48,58,31,39,36,34,39,26,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,630,596,523,614,526,356,341,294,984,2046,2440,4218,4122,3281,2482,0,0,0,0,0,0,0,0,0,2,3,4,3,5,4,5,0,19,32,73,84,106,120,112,74,62,66,52,51,80,88,116,1644,1690,1379,1633,1508,1535,1570,1057,1396,1072,788,630,323,290,276,229,211,264,264,324,264,344,326,341,292,548,629,901,456,357,356,397,376 +17,23,25,36,39,46,43,42,31,42,46,40,33,28,22,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,419,432,416,393,381,226,223,231,1034,1557,2741,3900,3391,3780,3170,0,0,0,0,0,0,0,0,0,1,2,3,2,5,5,5,0,14,32,58,60,95,97,102,61,56,53,39,34,54,56,80,1033,1017,788,1039,1102,1175,1006,812,1250,1078,809,620,287,352,220,232,115,183,245,282,288,262,223,231,275,432,596,675,461,374,418,376,288 +11,19,20,31,38,42,43,38,42,42,28,36,32,22,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,294,298,258,208,146,115,110,184,767,1534,2342,2582,2451,3516,3020,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3,2,0,16,30,40,51,47,47,79,48,42,35,21,14,20,32,58,674,527,504,689,758,768,676,504,1304,1134,811,634,359,324,235,205,51,116,179,190,246,276,258,160,181,199,270,438,593,522,511,400,283 +23,30,35,38,36,43,44,48,53,44,30,34,37,29,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,190,171,188,140,120,82,74,139,646,940,1528,2295,2246,3020,2758,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,12,21,34,48,39,48,54,37,34,29,19,12,18,35,49,583,452,412,565,512,512,420,318,991,910,658,530,253,201,154,145,42,96,173,170,244,192,172,135,164,166,247,407,465,432,396,288,214 +41,49,51,42,32,42,51,56,51,39,42,35,46,43,27,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,111,120,78,136,124,70,47,89,342,646,758,1509,1617,2020,1556,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,0,8,17,25,28,28,37,43,34,23,18,12,6,17,26,32,394,352,342,396,399,338,304,202,683,695,508,313,248,180,126,101,28,67,114,143,177,128,106,95,140,175,192,296,219,207,232,210,122 +47,56,60,54,36,42,49,62,44,46,55,47,40,40,23,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,47,72,49,72,58,38,28,39,180,276,352,755,836,1064,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,8,14,15,16,16,23,16,12,9,8,4,9,12,18,226,199,195,179,188,159,126,110,372,382,303,172,115,100,56,51,17,40,63,77,98,65,65,64,76,116,108,160,114,128,144,118,74 +52,58,54,50,42,47,47,58,48,41,50,37,39,38,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,7,9,17,22,31,30,43,52,46,44,51,54,55,48 diff --git a/worlds/diamond_world3_iso.jpg b/worlds/diamond_world3_iso.jpg new file mode 100644 index 0000000..b642cba --- /dev/null +++ b/worlds/diamond_world3_iso.jpg Binary files differ diff --git a/worlds/diamond_world3_topo.jpg b/worlds/diamond_world3_topo.jpg new file mode 100644 index 0000000..d816984 --- /dev/null +++ b/worlds/diamond_world3_topo.jpg Binary files differ diff --git a/diamond.lisp b/diamond.lisp index 872bf2f..2872cfa 100644 --- a/diamond.lisp +++ b/diamond.lisp @@ -3,8 +3,8 @@ ;;;; Daniel Vedder, 14/9/2018 ;;;; -(defconstant WORLD-SIZE 10) -(defvar *size* (1+ (expt 2 WORLD-SIZE))) +(defvar *world-size* 7) +(defvar *size* (1+ (expt 2 *world-size*))) (defvar *base-height* 50) (defvar *world* NIL) @@ -54,12 +54,17 @@ "Calculate the average" (/ (reduce #'+ values) (length values))) +(defun displace (n &optional (maxpercent 20)) + "Displace a number by a random percentage" + (let ((displacement (round (* n (/ maxpercent 100))))) + (+ n (if (zerop displacement) 0 + (- displacement (* 2 (random displacement))))))) + (defun midpoint (x1 y1 x2 y2) "Calculate the midpoint displacement" - (let ((displacement (round (/ (dist x1 y1 x2 y2) 2)))) - (round (+ (avg (getv x1 y1) (getv x2 y2) - (if (zerop displacement) 0 - (- displacement (* 2 (random displacement))))))))) + (let ((m (displace (round (avg (getv x1 y1) (getv x2 y2))) + (* 10 (dist x1 y1 x2 y2))))) + (if (minusp m) 0 m))) (defun diamond-step (&optional (world *world*) (minx 0) (miny 0) (maxx (1- (length world))) (maxy (1- (length world)))) @@ -69,8 +74,8 @@ (setv minx ym (midpoint minx miny minx maxy) world) (setv maxx ym (midpoint maxx miny maxx maxy) world) (setv xm maxy (midpoint minx maxy maxx maxy) world) - (setv xm ym (avg (midpoint xm miny xm maxy) - (midpoint minx ym maxx ym)) + (setv xm ym (round (avg (midpoint xm miny xm maxy) + (midpoint minx ym maxx ym))) world) (unless (= 1 (dist minx miny xm ym)) (diamond-step world minx miny xm ym) @@ -80,16 +85,18 @@ (defun diamond (&optional (world *world*) (base-height *base-height*)) "Initialise and begin the diamond algorithm" - (setv 0 0 base-height) - (setv 0 (1- (length world)) base-height) - (setv (1- (length world)) 0 base-height) - (setv (1- (length world)) (1- (length world)) base-height) + (setv 0 0 (displace base-height)) + (setv 0 (1- (length world)) (displace base-height)) + (setv (1- (length world)) 0 (displace base-height)) + (setv (1- (length world)) (1- (length world)) (displace base-height)) (diamond-step world)) -(defun create-world () +(defun create-world (worldname &optional (world-size *world-size*)) + (setf *size* (1+ (expt 2 world-size))) (setf *world* (init-matrix *size*)) - (diamond)) + (diamond) + (save-topography (concatenate 'string "worlds/" worldname ".csv"))) ;; Initialize the random state (which would otherwise not be very random...) (setf *random-state* (make-random-state t)) diff --git a/diamond_algorithm.txt b/diamond_algorithm.txt index 68aa347..9374ff7 100644 --- a/diamond_algorithm.txt +++ b/diamond_algorithm.txt @@ -22,3 +22,22 @@ 0 - 8 - 0 - - - - - X - 0 - X + + - - - + +INIT + +X - - - X +- - - - - +- - - - - +- - - - - +X - - - X + +DIAMOND STEP + +X - - - X +- - - - - +- - 8 - - +- - - - - +X - - - X + diff --git a/visualize.R b/visualize.R index 2fad993..f3869c5 100644 --- a/visualize.R +++ b/visualize.R @@ -2,7 +2,7 @@ ### Visualize the topographical csv files output by terranostra.lisp ### Daniel Vedder, 12/9/2018 -world = "world_large" +world = "worlds/diamond_world3" w = read.csv(paste0(world, ".csv"), header=F) jpeg(paste0(world, "_topo.jpg")) diff --git a/worlds/diamond_world.csv b/worlds/diamond_world.csv index c978edb..367aea9 100644 --- a/worlds/diamond_world.csv +++ b/worlds/diamond_world.csv @@ -1,1025 +1,1025 @@ -50,25,25,17,25,15,18,15,26,14,15,11,16,10,14,13,23,12,12,8,12,7,9,9,16,9,10,9,15,10,15,15,28,14,14,10,14,9,11,9,16,9,9,7,11,8,11,10,19,10,11,8,13,8,11,10,17,10,12,10,17,11,16,16,31,16,16,11,16,9,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,4,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-18,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-11,-17,-17,-36,-18,-18,-12,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-17,-12,-21,-12,-16,-15,-30,-16,-19,-16,-30,-20,-30,-29,-59,-29,-29,-19,-29,-16,-19,-16,-29,-15,-17,-12,-21,-13,-19,-18,-37,-18,-19,-13,-21,-12,-16,-14,-28,-15,-17,-13,-24,-16,-24,-23,-47,-23,-24,-16,-26,-14,-18,-15,-28,-15,-17,-13,-24,-15,-22,-22,-44,-22,-24,-17,-27,-16,-22,-20,-40,-22,-26,-21,-39,-26,-40,-40,-82,-40,-40,-26,-40,-22,-26,-21,-39,-20,-22,-16,-26,-15,-21,-19,-37,-18,-18,-12,-20,-11,-15,-13,-26,-14,-16,-13,-23,-14,-21,-21,-42,-21,-22,-15,-23,-13,-16,-14,-28,-14,-16,-12,-20,-12,-18,-17,-35,-18,-19,-13,-22,-13,-17,-15,-30,-16,-20,-16,-29,-19,-28,-27,-54,-27,-27,-18,-28,-16,-20,-17,-31,-16,-18,-13,-22,-13,-19,-17,-34,-17,-18,-13,-21,-12,-17,-16,-31,-16,-19,-15,-27,-17,-26,-26,-53,-26,-27,-19,-30,-17,-22,-19,-36,-19,-23,-18,-33,-21,-31,-31,-62,-32,-34,-25,-42,-25,-35,-33,-64,-35,-43,-35,-64,-42,-64,-64,-129,-64,-64,-42,-64,-36,-44,-37,-67,-34,-37,-27,-45,-27,-36,-33,-65,-32,-33,-22,-35,-20,-25,-22,-43,-22,-25,-20,-35,-22,-33,-32,-65,-32,-33,-22,-35,-20,-25,-21,-40,-20,-22,-17,-29,-18,-26,-24,-48,-24,-26,-18,-30,-17,-22,-20,-39,-21,-25,-21,-39,-26,-39,-38,-77,-38,-39,-26,-39,-21,-26,-22,-40,-20,-22,-16,-27,-16,-23,-22,-44,-22,-22,-15,-23,-13,-16,-14,-26,-14,-16,-12,-21,-14,-21,-20,-41,-20,-21,-14,-23,-13,-17,-14,-27,-14,-17,-13,-23,-14,-21,-20,-41,-21,-22,-15,-25,-15,-21,-19,-37,-20,-24,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-24,-20,-38,-19,-21,-15,-26,-15,-21,-19,-38,-19,-19,-13,-22,-13,-17,-16,-31,-16,-19,-15,-27,-17,-25,-24,-49,-24,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-17,-10,-15,-14,-27,-14,-15,-10,-17,-9,-12,-11,-22,-12,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-13,-16,-13,-24,-12,-14,-10,-17,-10,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-8,-9,-7,-13,-8,-13,-13,-27,-13,-13,-9,-15,-8,-10,-8,-15,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,9,8,13,9,14,15,29,15,14,10,14,8,8,7,11,6,7,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,5,4,7,4,4,3,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,5,5,8,5,7,7,12,7,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,13,25,13,14,10,16,10,14,13,24,14,17,15,26,18,26,26,50 -26,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,11/2,10,6,6,9/2,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-9,-15/2,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-41,-20,-20,-25/2,-19,-10,-13,-10,-19,-19/2,-10,-15/2,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-10,-6,-9,-8,-17,-8,-8,-6,-10,-11/2,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-15,-15,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-21,-17,-31,-41/2,-32,-32,-64,-32,-32,-21,-32,-18,-22,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-19/2,-12,-11,-21,-21/2,-12,-19/2,-17,-11,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-19,-19/2,-10,-8,-14,-17/2,-12,-12,-24,-12,-13,-9,-15,-8,-10,-19/2,-19,-10,-12,-10,-19,-12,-19,-37/2,-38,-37/2,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-13/2,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-17,-11,-16,-16,-34,-33/2,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-13,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-9/2,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,7/2,4,4,9,5,4,3,5,3,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25 -26,14,27/2,9,13,8,9,8,13,7,15/2,6,9,6,8,7,11,6,13/2,4,6,4,5,5,9,5,6,5,9,6,9,8,15,8,15/2,6,8,5,6,5,8,5,5,4,7,4,11/2,5,10,6,11/2,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,17/2,6,8,5,11/2,5,8,4,9/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,4,4,5,4,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,4,4,7,4,7/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,1,1,1/2,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-6,-4,-5,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-9,-19/2,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-12,-23/2,-8,-13,-7,-17/2,-7,-13,-7,-8,-6,-11,-7,-10,-10,-21,-10,-11,-7,-12,-7,-21/2,-10,-20,-10,-25/2,-10,-20,-13,-20,-20,-41,-20,-39/2,-12,-19,-10,-13,-10,-19,-10,-21/2,-8,-13,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-21/2,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-11,-9,-16,-10,-31/2,-15,-31,-16,-17,-12,-21,-12,-35/2,-16,-31,-17,-41/2,-17,-31,-20,-63/2,-32,-65,-32,-32,-21,-32,-18,-43/2,-18,-33,-17,-18,-13,-22,-13,-17,-16,-32,-16,-16,-11,-17,-10,-25/2,-11,-20,-10,-12,-10,-18,-11,-16,-16,-32,-16,-16,-11,-17,-9,-23/2,-10,-19,-10,-21/2,-8,-15,-9,-25/2,-12,-24,-12,-13,-9,-15,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-12,-37/2,-18,-38,-18,-37/2,-12,-19,-10,-12,-10,-20,-10,-11,-8,-13,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-7,-12,-7,-19/2,-9,-18,-9,-11,-9,-17,-11,-33/2,-16,-35,-17,-33/2,-10,-16,-9,-23/2,-10,-18,-9,-10,-7,-13,-8,-21/2,-10,-19,-9,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-13,-8,-25/2,-12,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,6,4,9/2,4,7,5,15/2,8,15,8,8,6,8,5,5,4,6,4,7/2,3,5,3,7/2,4,6,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,2,2,2,5/2,2,4,3,3,3,5,4,9/2,4,9,5,9/2,3,5,3,4,3,3,2,3,3,4,3,3,3,7,4,9/2,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,11/2,4,5,4,5,4,7,4,9/2,4,7,5,13/2,7,12,7,8,6,9,6,15/2,7,13,8,9,8,13,9,13,13,25 -18,10,10,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,7/2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-7/2,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-9/2,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-9,-9/2,-5,-4,-9,-5,-8,-8,-18,-17/2,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-11/2,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-12,-11,-20,-11,-13,-11,-20,-13,-21,-21,-43,-21,-21,-14,-21,-23/2,-14,-12,-22,-11,-12,-8,-14,-8,-11,-21/2,-21,-10,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-21,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-11/2,-10,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-11/2,-11,-7,-10,-10,-23,-11,-10,-6,-10,-6,-8,-6,-12,-6,-6,-4,-8,-9/2,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-9/2,-7,-7,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,5/2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,4,5/2,3,2,2,2,2,2,3,2,2,2,5,3,3,3,4,5/2,3,3,4,5/2,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,5,8,5,5,4,6,4,5,5,9,11/2,6,11/2,9,6,9,9,17 -26,13,13,9,25/2,7,8,7,13,7,8,6,17/2,5,6,6,11,6,6,5,7,5,6,5,10,6,6,6,19/2,6,9,9,14,8,8,6,17/2,6,7,6,8,5,5,4,7,5,6,5,11,6,6,4,13/2,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,15/2,4,5,4,7,4,4,3,9/2,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,11/2,4,6,5,9,5,5,4,11/2,4,4,3,5,3,4,4,11/2,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,3/2,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-6,-13,-7,-8,-6,-19/2,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-25/2,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-23/2,-7,-11,-11,-20,-10,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-39/2,-13,-20,-20,-41,-20,-20,-13,-39/2,-10,-12,-10,-20,-10,-10,-7,-12,-7,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-23/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-17,-8,-9,-6,-19/2,-6,-8,-7,-14,-7,-8,-7,-27/2,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-14,-14,-10,-31/2,-9,-12,-10,-19,-10,-12,-9,-33/2,-10,-16,-15,-31,-16,-17,-12,-43/2,-13,-18,-17,-31,-17,-20,-17,-63/2,-21,-32,-32,-65,-32,-32,-21,-65/2,-18,-22,-18,-33,-17,-18,-13,-43/2,-13,-18,-17,-32,-16,-16,-11,-17,-9,-12,-11,-20,-10,-12,-10,-18,-11,-17,-17,-32,-16,-16,-10,-33/2,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-12,-10,-39/2,-12,-19,-18,-39,-19,-19,-12,-19,-10,-13,-10,-20,-10,-11,-8,-27/2,-8,-12,-11,-22,-11,-11,-7,-11,-6,-8,-6,-13,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-16,-35,-17,-17,-11,-33/2,-9,-11,-10,-18,-9,-10,-7,-25/2,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-12,-12,-22,-10,-10,-7,-23/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-10,-5,-6,-6,-23/2,-8,-12,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,3,3,3,2,2,2,4,3,4,4,6,4,4,4,7,6,9,9,16,8,8,6,15/2,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,3,3,5,3,4,3,7/2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,5/2,2,2,2,4,3,4,3,5,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,7/2,2,3,3,7,4,5,4,5,3,4,4,5,3,3,3,9/2,3,4,5,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,24 -15,8,8,11/2,8,9/2,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,7/2,6,4,4,4,6,4,6,11/2,8,5,5,4,5,7/2,4,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22,-10,-10,-13/2,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-9,-11/2,-9,-8,-17,-8,-9,-13/2,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-35/2,-18,-23/2,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,7/2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,11/2,8,15/2,14 -18,10,19/2,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,9/2,4,6,4,4,4,7,4,4,4,6,4,13/2,6,10,5,5,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,3,2,3,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-5,-4,-9,-4,-5,-4,-10,-6,-19/2,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-13/2,-4,-6,-3,-9/2,-4,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-7,-6,-13,-6,-13/2,-4,-8,-4,-6,-5,-14,-6,-6,-4,-8,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-9,-9,-6,-10,-6,-15/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-10,-21,-10,-11,-8,-14,-8,-12,-11,-20,-11,-27/2,-11,-21,-14,-21,-21,-43,-21,-43/2,-14,-22,-12,-29/2,-12,-22,-11,-12,-8,-14,-8,-11,-11,-21,-10,-11,-7,-12,-6,-15/2,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-9,-5,-15/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-12,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-15/2,-5,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-3,-8,-4,-5,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-12,-6,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-13/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3,3,2,2,3/2,2,3,2,3,3,4,3,3,3,6,5,7,7,11,6,5,4,5,3,4,4,5,3,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,4,2,5/2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,10,6,17/2,8,16 -15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,11/2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-15/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-4,-4,-3,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-17,-17,-36,-18,-18,-12,-18,-10,-12,-10,-18,-9,-10,-7,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-6,-5,-10,-6,-9,-9,-18,-8,-8,-11/2,-10,-5,-6,-5,-10,-5,-6,-4,-8,-9/2,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-4,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-9/2,-9,-4,-5,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,7/2,5,4,5,5,8,5,6,5,8,5,7,7,13 -27,14,14,9,12,7,8,7,12,7,7,6,9,5,6,6,12,7,7,5,8,5,6,6,19/2,6,6,6,10,7,9,9,14,7,7,5,7,5,6,6,19/2,5,5,4,6,4,5,4,12,7,7,5,8,5,5,4,15/2,4,5,4,7,5,8,8,16,8,8,6,8,5,5,4,13/2,4,4,3,5,3,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,11/2,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-28,-14,-14,-9,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-20,-10,-11,-8,-14,-8,-11,-10,-21,-11,-14,-11,-20,-13,-20,-20,-38,-18,-18,-12,-18,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-10,-9,-21,-10,-11,-7,-11,-6,-8,-7,-27/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-18,-9,-9,-6,-10,-6,-8,-7,-29/2,-8,-9,-7,-12,-8,-12,-12,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-15,-8,-11,-10,-20,-10,-12,-9,-17,-11,-17,-17,-33,-16,-17,-12,-20,-12,-17,-16,-65/2,-18,-22,-18,-32,-21,-32,-32,-67,-33,-34,-22,-34,-18,-22,-18,-67/2,-16,-17,-12,-20,-12,-17,-16,-30,-15,-15,-10,-17,-10,-13,-11,-43/2,-12,-14,-11,-20,-13,-19,-18,-33,-16,-16,-10,-16,-9,-11,-10,-39/2,-10,-11,-8,-15,-9,-13,-12,-26,-13,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-19,-12,-19,-19,-40,-20,-20,-13,-20,-11,-13,-11,-21,-11,-12,-9,-16,-9,-13,-12,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-8,-15,-10,-15,-15,-34,-16,-16,-10,-16,-9,-11,-9,-17,-9,-10,-7,-13,-8,-12,-11,-20,-10,-10,-7,-11,-6,-9,-8,-15,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-22,-10,-10,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-9,-6,-9,-8,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,2,2,2,2,3,2,3,3,11/2,4,5,5,8,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,2,7/2,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,12,7,7,5,8,5,5,4,15/2,4,5,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 -15,8,8,5,7,4,5,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,6,4,4,5/2,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-5,-8,-9/2,-6,-5,-10,-11/2,-7,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-11/2,-11,-5,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,7,5,7,7,12 -16,9,9,6,7,4,5,5,8,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,3,3,6,4,4,3,6,4,11/2,6,8,4,9/2,3,5,3,7/2,3,5,3,3,3,4,3,7/2,3,7,4,4,3,5,3,3,3,4,3,3,3,5,4,5,5,9,5,6,4,5,3,4,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,6,4,7/2,2,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-15/2,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-5,-11,-6,-13/2,-4,-8,-5,-9,-9,-18,-9,-19/2,-6,-10,-6,-9,-9,-18,-10,-23/2,-9,-17,-11,-17,-17,-37,-18,-18,-12,-18,-10,-23/2,-10,-17,-8,-17/2,-6,-11,-6,-9,-8,-17,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-7,-6,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-12,-6,-6,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,1,1,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,9/2,5,9,5,11/2,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,7,4,5,4,6,4,7/2,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,7,5,7,7,13 -12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,5,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-13/2,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,10 -18,9,9,6,19/2,6,7,6,10,6,6,4,13/2,4,5,5,8,4,4,4,11/2,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,6,4,6,5,12,7,7,5,13/2,4,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-9,-9,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-13,-6,-7,-4,-15/2,-4,-4,-3,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-19/2,-5,-7,-7,-15,-8,-10,-8,-29/2,-9,-14,-13,-24,-12,-12,-8,-23/2,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-12,-5,-5,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-9,-9,-6,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-21,-10,-11,-8,-13,-8,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-45,-22,-22,-14,-43/2,-12,-14,-12,-20,-10,-11,-8,-25/2,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-13,-8,-12,-11,-20,-10,-10,-7,-12,-6,-8,-7,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-27/2,-8,-13,-13,-26,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-8,-6,-12,-6,-7,-5,-10,-6,-8,-8,-13,-6,-6,-4,-6,-3,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,4,11/2,4,6,6,11,6,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,8,5,5,4,13/2,4,4,4,5,3,4,4,11/2,4,6,5,9,5,6,4,13/2,4,5,5,8,5,5,5,8,6,8,8,15 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-7/2,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9 -15,8,17/2,6,8,5,6,5,8,4,9/2,4,6,4,4,4,7,4,9/2,4,4,3,7/2,3,6,4,9/2,4,5,4,5,6,10,6,11/2,4,5,3,4,4,5,3,7/2,3,4,3,3,3,6,4,7/2,2,3,2,5/2,3,4,3,7/2,3,5,4,9/2,4,10,5,5,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-4,-8,-4,-13/2,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-5,-11,-5,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-7,-11,-11,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-9/2,-2,-5,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-7,-7,-17,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-13/2,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-7,-10,-9,-18,-10,-23/2,-10,-18,-12,-18,-18,-36,-17,-17,-11,-18,-10,-23/2,-9,-17,-8,-9,-6,-11,-6,-19/2,-9,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-10,-10,-16,-8,-8,-5,-10,-5,-13/2,-6,-11,-5,-6,-4,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-10,-6,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-11/2,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-13/2,-6,-11,-5,-6,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,5,4,5,5,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,4,3,7/2,4,7,4,9/2,4,6,3,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,5,7,7,12 -15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,4,5,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-3,-4,-7/2,-7,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-33,-16,-16,-10,-16,-17/2,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-10,-9,-15,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-10,-13/2,-10,-10,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,9/2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11 -28,15,15,11,16,9,11,9,16,8,8,6,8,5,6,6,23/2,7,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,4,15/2,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,17,9,8,6,8,5,5,4,6,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-6,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-25/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-37/2,-9,-10,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-12,-12,-20,-10,-10,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-10,-41/2,-10,-11,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-20,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-10,-10,-41/2,-10,-10,-7,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-11,-9,-16,-10,-16,-16,-65/2,-16,-17,-12,-20,-12,-17,-16,-32,-17,-21,-18,-33,-22,-34,-34,-65,-32,-32,-21,-32,-17,-21,-18,-33,-17,-18,-13,-23,-13,-18,-17,-67/2,-16,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-19,-12,-18,-18,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-12,-26,-13,-14,-10,-17,-9,-12,-11,-22,-12,-15,-12,-22,-14,-22,-21,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-11,-8,-14,-8,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-10,-41/2,-10,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-9,-6,-9,-9,-9,-4,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,9,6,7,7,9,5,4,3,3,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,9,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,6,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,13,8,9,7,11,7,10,10,20 -15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,4,7,4,4,7/2,5,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,3,5/2,4,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-10,-17/2,-16,-11,-17,-17,-32,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-21/2,-18,-9,-9,-6,-9,-9/2,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-5,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-5,-5/2,-4,-5/2,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11 -15,8,17/2,6,8,5,13/2,6,8,5,5,4,5,3,4,4,6,4,9/2,4,6,4,5,4,7,4,9/2,4,5,4,11/2,6,10,5,5,4,6,4,4,3,4,3,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,7/2,4,9,5,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,4,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-6,-17/2,-8,-17,-9,-11,-9,-17,-11,-35/2,-18,-33,-16,-33/2,-10,-16,-8,-10,-8,-16,-8,-9,-7,-11,-6,-19/2,-9,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-15,-7,-7,-5,-7,-3,-4,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-13,-6,-7,-5,-9,-5,-13/2,-6,-10,-5,-13/2,-6,-11,-7,-11,-11,-18,-9,-9,-6,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-3,-5,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-5,-9,-5,-6,-5,-9,-4,-5,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,1,3,2,3,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,10,5,5,4,6,4,7/2,3,5,3,3,3,4,3,4,4,7,4,7/2,3,4,3,7/2,4,6,4,4,3,5,3,4,4,5,3,2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,6,6,11 -11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-15/2,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-4,-7/2,-7,-4,-7,-7,-12,-11/2,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8 -16,8,8,6,19/2,6,6,5,9,5,5,4,6,4,4,4,6,4,4,4,11/2,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,4,3,5,3,2,2,5/2,2,2,3,5,3,4,3,7/2,3,4,4,7,4,4,3,9/2,3,4,3,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,5/2,2,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,1,2,2,2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-23/2,-7,-11,-11,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-7,-7,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-5,-19/2,-6,-10,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-36,-18,-18,-12,-35/2,-10,-12,-10,-18,-9,-10,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-21/2,-6,-7,-6,-11,-5,-6,-5,-19/2,-6,-10,-10,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-12,-19,-9,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-3,-4,-4,-11,-5,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,3/2,1,0,0,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,1,1,6,4,4,2,5/2,2,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,5,4,13/2,5,7,7,12 -10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-4,-7/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,7 -13,7,7,5,7,4,5,4,7,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,3,2,3,2,5,3,5/2,2,3,2,2,2,4,3,3,3,3,2,7/2,4,4,3,3,2,3,2,2,2,1,1,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,3,2,5/2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-8,-5,-15/2,-7,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-15/2,-5,-9,-5,-7,-7,-15,-8,-19/2,-8,-14,-9,-15,-15,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,3,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,7/2,3,4,3,7/2,4,7,4,3,2,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5/2,3,5,3,5/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,3,3,2,2,2,3,2,3,3,4,3,7/2,3,5,4,5,5,8 -12,7,7,5,7,4,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,4,4,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,3/2,2,3/2,2,3/2,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -22,11,11,8,11,7,8,6,10,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,3,2,2,1,1,1,0,0,1/2,1,2,2,3,3,4,4,6,3,3,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,3,2,2,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-8,-6,-12,-8,-12,-12,-29,-14,-14,-9,-14,-8,-10,-8,-29/2,-7,-7,-5,-9,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-6,-11,-7,-12,-12,-23,-12,-13,-9,-16,-9,-13,-12,-51/2,-14,-16,-13,-25,-17,-26,-26,-43,-21,-22,-14,-22,-12,-15,-12,-47/2,-12,-12,-8,-14,-8,-12,-11,-25,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-11,-6,-9,-8,-15,-8,-10,-8,-16,-10,-15,-15,-24,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,1,1,1,2,3,2,3,2,3,2,3,2,3,2,3,2,-1,0,0,1,1,1,2,2,3/2,1,0,0,0,0,0,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,13/2,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,15/2,4,5,4,6,4,6,5,8,5,5,4,5,3,3,3,9/2,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,2,2,2,2,7/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,7,13 -13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-5/2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-12,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,4,5/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,11/2,4,6,4,4,3,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,7/2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,5/2,2,2,2,3/2,2,5,3,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,3/2,2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1/2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,1,1,1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-13/2,-7,-15,-7,-8,-6,-10,-6,-15/2,-7,-15,-8,-19/2,-8,-15,-10,-16,-16,-26,-13,-13,-9,-13,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-6,-9,-9,-13,-6,-6,-4,-7,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,3/2,2,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,3,4,3,7/2,3,5,3,7/2,3,5,4,5,5,10,6,11/2,4,6,4,7/2,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,5,3,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,7/2,3,4,3,4,4,8 -12,6,6,9/2,6,4,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-11/2,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-5/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,9/2,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6 -20,11,11,7,10,6,6,5,7,4,4,3,7/2,2,3,3,7,4,5,4,6,4,4,4,6,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,3,4,3,3,3,9/2,4,5,5,4,3,3,2,3,2,2,2,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-14,-11,-41/2,-13,-20,-21,-38,-19,-19,-12,-37/2,-10,-12,-10,-18,-9,-10,-7,-13,-7,-10,-10,-21,-10,-10,-6,-21/2,-6,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-18,-8,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,3,2,2,2,7/2,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,6,6,14,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,4,11/2,4,5,5,10 -13,7,7,5,6,4,4,4,5,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,2,3,2,2,2,3,3,4,7/2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-8,-9/2,-6,-6,-13,-7,-8,-7,-13,-8,-13,-13,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-4,-8,-5,-8,-8,-11,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-3,-4,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 -18,9,9,6,8,5,6,5,7,4,4,3,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,4,9/2,3,5,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,3,3,2,3,3,3,2,5/2,2,4,3,9/2,4,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,3/2,2,1,1,3/2,1,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-17/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-19,-10,-25/2,-10,-19,-13,-20,-20,-35,-17,-17,-11,-16,-8,-21/2,-9,-17,-8,-9,-7,-12,-7,-19/2,-9,-19,-9,-19/2,-6,-10,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-12,-12,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,4,3,5,3,4,4,7,4,9/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,4,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,3/2,2,2,1,1,1,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,4,3,4,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,2,2,2,2,5/2,3,4,3,7/2,3,5,4,5,5,9 -17,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-8,-5,-8,-17/2,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-35,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-11/2,-11,-6,-8,-6,-12,-8,-12,-12,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,5/2,4,3,3,3,5,4,5,5,8 -33,17,16,11,16,9,10,8,14,8,8,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,7,7,25/2,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,7,5,7,7,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,3,11/2,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-25,-12,-11,-7,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-27,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-13,-7,-9,-8,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-46,-23,-23,-15,-23,-13,-16,-13,-25,-13,-14,-10,-18,-11,-15,-14,-28,-14,-14,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-14,-13,-51/2,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-9,-11,-9,-17,-11,-17,-17,-31,-15,-15,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-9,-7,-13,-9,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-17,-34,-18,-20,-15,-25,-15,-21,-20,-40,-22,-26,-21,-39,-26,-40,-40,-70,-34,-34,-22,-34,-18,-22,-19,-35,-18,-19,-13,-22,-13,-18,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-13,-15,-12,-22,-14,-21,-20,-40,-20,-20,-13,-20,-11,-14,-12,-23,-12,-13,-10,-18,-11,-16,-15,-30,-15,-16,-11,-19,-11,-16,-14,-28,-15,-18,-15,-27,-17,-25,-25,-32,-15,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-10,-8,-16,-11,-17,-17,-36,-17,-17,-11,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,6,6,12,7,8,7,11,8,11,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,31/2,8,8,5,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,5,7,7,14 -17,9,8,6,9,5,6,9/2,8,4,4,7/2,5,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,3/2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-12,-11/2,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-10,-7,-12,-7,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-35,-17,-17,-11,-17,-9,-11,-9,-17,-17/2,-9,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-6,-10,-6,-10,-19/2,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-16,-7,-7,-9/2,-7,-7/2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,6,4,4,4,6,4,6,11/2,12,6,6,4,6,4,4,4,6,7/2,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,7 -16,8,8,6,9,5,11/2,4,8,4,9/2,4,5,4,5,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,5/2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,7/2,4,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3/2,2,1,1,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-5,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-3,-5,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-4,-8,-5,-8,-8,-16,-8,-19/2,-7,-12,-7,-10,-10,-19,-10,-13,-10,-20,-13,-39/2,-20,-36,-17,-17,-11,-17,-9,-23/2,-10,-18,-9,-9,-6,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-15/2,-6,-10,-6,-9,-9,-20,-10,-19/2,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-15/2,-5,-10,-5,-7,-6,-13,-7,-8,-7,-12,-8,-12,-12,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-2,0,1/2,0,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,3,2,3,4,6,4,9/2,4,6,4,11/2,5,12,6,13/2,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,9/2,4,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1,1,6,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,3,3,4,4,7 -11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,4,5/2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-2,-1/2,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,3,5/2,3,2,2,2,2,2,3,3,4,3,3,5/2,4,3,4,7/2,8,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,5/2,4,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -16,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,2,1,1,0,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-9/2,-2,-4,-5,-14,-7,-7,-4,-13/2,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-4,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-17/2,-5,-8,-7,-23,-11,-12,-8,-23/2,-6,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-11/2,-3,-4,-4,-6,-3,-3,-2,-11/2,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-7,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-8,-5,-8,-8,-17,-9,-10,-7,-12,-7,-11,-10,-19,-10,-12,-10,-20,-13,-20,-20,-37,-18,-18,-12,-37/2,-10,-12,-10,-18,-9,-9,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-10,-5,-6,-5,-12,-6,-7,-5,-10,-6,-10,-9,-21,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-7,-5,-10,-6,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-14,-7,-9,-7,-25/2,-8,-12,-12,-18,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,-1,-4,-1,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,5,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,3,4,3,4,4,11,6,6,4,11/2,4,4,4,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,2,5/2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,1,3/2,2,2,2,6,4,4,3,3,2,3,3,4,3,3,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,3,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,8 -9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5 -11,6,6,4,5,3,4,3,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-16,-8,-15/2,-4,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-8,-5,-7,-6,-13,-7,-17/2,-7,-13,-8,-13,-13,-24,-12,-12,-8,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-11/2,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-11/2,-6,-11,-5,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,1,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,5/2,3,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,5,3,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-20,-10,-10,-13/2,-11,-6,-7,-6,-10,-5,-5,-7/2,-7,-4,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4 -18,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,4,3,4,3,4,4,11/2,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,1,1,1,1,2,2,2,2,7/2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-7,-6,-26,-13,-13,-8,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-9,-6,-10,-10,-15,-7,-7,-4,-7,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-7,-7,-19,-10,-11,-8,-13,-8,-11,-10,-21,-11,-14,-12,-23,-15,-22,-22,-38,-19,-19,-12,-18,-10,-13,-11,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-9,-14,-8,-10,-8,-31/2,-8,-8,-6,-12,-7,-9,-9,-18,-9,-9,-6,-11,-6,-8,-6,-25/2,-6,-8,-7,-13,-8,-13,-13,-21,-10,-9,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,5 -10,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-9/2,-5,-7/2,-7,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1/2,0,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3 -11,6,11/2,4,6,4,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-13,-13,-21,-10,-21/2,-6,-10,-5,-7,-6,-12,-6,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-7,-5,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-7,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,0,0,1/2,0,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,2,3,2,3,2,2,2,5/2,3,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3 -9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-16,-15/2,-8,-9/2,-7,-7/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-5/2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2 -15,8,7,5,7,4,5,4,6,3,3,3,4,3,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-14,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-33/2,-10,-16,-16,-27,-13,-12,-8,-25/2,-7,-9,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-17/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-18,-8,-8,-5,-7,-3,-4,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,1,2,2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,7/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,5/2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -13,7,13/2,5,7,4,5,4,5,3,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-15,-7,-7,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-7,-5,-8,-5,-7,-7,-13,-7,-9,-8,-14,-9,-14,-15,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-15/2,-7,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,6,4,7/2,3,4,2,5/2,2,4,3,7/2,3,5,3,4,4,6,4,7/2,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,5/2,2,4,3,3,3,3,3,4,4,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4 -13,7,6,5,7,4,4,3,5,3,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-11/2,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-23,-11,-11,-7,-11,-6,-8,-13/2,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-7/2,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,3/2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,6,4,4,3,4,5/2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -24,12,12,8,12,7,8,7,11,6,6,4,5,3,4,4,11/2,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,9/2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,1,1,1,1,1,1,2,1,1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-29,-14,-14,-9,-15,-8,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-12,-7,-11,-11,-45/2,-12,-13,-9,-16,-9,-13,-13,-26,-14,-17,-15,-28,-19,-29,-29,-46,-22,-22,-15,-23,-12,-15,-13,-24,-12,-14,-10,-18,-11,-15,-14,-55/2,-13,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-10,-15,-15,-33,-16,-15,-10,-15,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-23,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-16,-30,-14,-14,-8,-12,-6,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,11,6,7,5,8,5,6,6,10,6,6,4,6,4,6,6,21/2,6,6,4,5,3,4,4,7,4,5,4,5,3,4,3,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,17/2,5,5,4,6,4,5,4,6,3,3,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,13,7,7,6,9,5,6,5,9,5,6,4,6,4,4,4,11/2,4,4,3,3,2,2,2,2,2,2,2,4,3,4,4,6 -13,7,7,5,7,4,5,4,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-13/2,-6,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-11/2,-11,-11/2,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -13,7,7,5,7,4,5,4,6,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-3/2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-13/2,-7,-12,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-13/2,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-26,-13,-13,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-6,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,1,1,3/2,1,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,7/2,4,6,3,3,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,2,2,5/2,2,4,3,4,3,6,4,4,3,4,3,7/2,3,3,2,2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,9/2,3,5,3,4,3,5,3,7/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3 -10,5,5,4,5,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1/2,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-5/2,-4,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-9/2,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -16,9,9,6,8,5,5,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,7/2,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-3,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-17,-8,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-8,-31/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-21/2,-6,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-10,-19,-9,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,2,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,1,2,1,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,4,3,4,3,9/2,3,4,4,6,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,9/2,3,4,3,3,2,3,2,7/2,2,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,4,3,9/2,3,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3 -10,11/2,6,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -12,6,13/2,4,6,4,4,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,2,2,3/2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-6,-15/2,-6,-12,-8,-12,-12,-25,-12,-25/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,1,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,7,4,7/2,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-11/2,-7,-6,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 -21,11,11,7,10,6,7,5,8,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,9/2,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,0,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,3,2,2,2,7/2,2,3,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-18,-9,-9,-5,-8,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-21,-14,-22,-22,-44,-22,-22,-14,-22,-12,-14,-12,-43/2,-11,-12,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-9,-13,-13,-22,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-21,-10,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,11/2,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,3 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-7,-4,-6,-13/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-5,-4,-8,-9/2,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-11,-5,-6,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2 -13,7,13/2,4,7,4,9/2,4,6,4,7/2,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-27/2,-14,-29,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-15/2,-8,-16,-8,-17/2,-6,-9,-4,-5,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-13/2,-5,-9,-5,-8,-8,-14,-6,-13/2,-4,-6,-3,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-14,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,-1/2,0,-1,0,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,0,0,1/2,0,4,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,6,4,7/2,2,4,3,3,3,4,3,3,2,4,3,7/2,4,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,5/2,3,6,4,7/2,3,3,2,2,2,3,2,2,2,2,2,5/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1 -11,6,6,4,6,7/2,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-21/2,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-11/2,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1 -18,9,9,6,17/2,5,6,5,7,4,4,3,9/2,3,3,3,6,4,4,2,5/2,2,2,2,4,2,2,1,1,1,1,0,1,1,1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,9/2,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-5,-8,-8,-10,-4,-4,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-5,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-7,-12,-7,-11,-10,-18,-10,-12,-10,-39/2,-13,-20,-20,-43,-21,-20,-13,-20,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-10,-21,-10,-11,-7,-23/2,-6,-9,-8,-13,-7,-8,-6,-25/2,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-12,-6,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-21/2,-5,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,5,3,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,3,2,3,2,7/2,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1 -12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-9/2,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-28,-27/2,-13,-17/2,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-14,-13/2,-7,-4,-7,-4,-5,-9/2,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-7/2,-5,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,5/2,4,5/2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1 -17,9,9,6,9,5,11/2,4,7,4,4,3,4,3,7/2,3,5,3,3,2,2,2,3/2,2,3,2,1,1,1,1,1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,3,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-5,-3,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-15/2,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-7,-4,-9/2,-4,-10,-5,-13/2,-5,-10,-6,-19/2,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-39/2,-20,-43,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-14,-8,-21/2,-10,-21,-10,-10,-6,-11,-6,-8,-7,-13,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,6,4,7/2,3,3,2,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,4,4,7,4,9/2,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,3,2,7/2,4,8,4,9/2,3,4,2,2,2,2,2,3/2,2,2,1,1,1,3,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1/2,0,0 -17,9,9,6,9,5,6,9/2,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,4,3,3,3,5,7/2,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-10,-5,-5,-3,-4,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-11/2,-16,-15/2,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-42,-21,-21,-14,-20,-11,-13,-10,-20,-10,-11,-8,-13,-15/2,-10,-10,-21,-10,-10,-6,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1/2,0 -32,17,17,12,17,10,12,10,18,10,10,8,12,7,9,8,15,8,9,7,10,6,8,7,12,6,6,5,7,5,6,6,12,6,6,4,5,3,3,3,4,2,2,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,3,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,4,4,6,3,3,2,2,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-6,-9,-9,-18,-9,-9,-7,-12,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-7,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-33,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-16,-16,-69/2,-17,-17,-11,-18,-9,-11,-9,-16,-8,-9,-7,-12,-7,-11,-10,-21,-10,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-11,-21,-11,-14,-11,-20,-13,-19,-19,-38,-19,-21,-16,-27,-16,-22,-21,-41,-22,-26,-21,-39,-26,-40,-40,-85,-42,-42,-28,-42,-23,-27,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-16,-14,-26,-14,-16,-13,-23,-15,-22,-22,-44,-21,-21,-14,-21,-11,-14,-12,-23,-12,-13,-10,-18,-11,-17,-17,-34,-17,-17,-12,-20,-11,-15,-13,-24,-13,-15,-13,-24,-15,-23,-22,-91/2,-22,-22,-14,-22,-12,-14,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-40,-20,-20,-13,-20,-11,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-41/2,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,4,6,4,5,5,8,5,7,7,25/2,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1 -16,9,9,6,9,6,7,6,10,6,6,9/2,7,4,5,9/2,8,9/2,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-15/2,-13,-7,-10,-10,-20,-11,-13,-10,-19,-25/2,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-10,-15/2,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-7,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-19,-9,-10,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,5/2,3,2,3,2,3,3,5,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,9,9,6,9,6,7,6,10,6,11/2,4,7,4,9/2,4,8,4,9/2,4,6,4,4,4,6,4,4,3,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,4,3,7/2,3,5,4,9/2,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-6,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-9,-19,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-39/2,-20,-42,-20,-41/2,-13,-21,-11,-27/2,-11,-21,-10,-21/2,-8,-13,-8,-11,-10,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-22,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-11,-6,-15/2,-6,-12,-7,-11,-11,-22,-10,-21/2,-7,-11,-6,-7,-6,-10,-5,-11/2,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-19,-9,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,7,4,7/2,2,4,3,3,3,4,2,5/2,2,4,3,7/2,3,4,2,5/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,5/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0 -11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-28,-27/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-8,-5,-7,-6,-14,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0 -16,8,8,6,9,6,7,6,9,5,5,4,6,4,4,4,10,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,3,7,4,4,3,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-6,-19/2,-5,-6,-5,-11,-6,-7,-6,-21/2,-6,-9,-9,-20,-10,-10,-7,-25/2,-8,-11,-10,-19,-10,-12,-10,-20,-13,-21,-21,-43,-21,-20,-13,-41/2,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-12,-6,-8,-6,-11,-7,-11,-11,-23,-11,-10,-6,-21/2,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-19/2,-5,-6,-6,-12,-6,-7,-6,-21/2,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-11/2,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,7,4,4,3,7/2,2,3,3,4,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,2,2,3,3,4,3,5,5,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,1,2,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1/2,1,1,1,0 -10,5,5,4,5,7/2,4,4,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0 -12,6,13/2,5,6,4,9/2,4,6,4,4,3,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-27/2,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-7/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,5,3,3,2,3,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,-1 -10,11/2,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-7/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1 -17,9,8,6,8,5,5,5,8,5,5,3,4,3,3,3,10,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,2,3,3,4,4,8,5,5,3,4,2,2,2,7/2,2,2,2,2,1,1,0,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-5,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-10,-11,-8,-14,-8,-12,-10,-41/2,-11,-13,-11,-21,-13,-20,-20,-45,-22,-22,-14,-22,-12,-14,-12,-22,-11,-12,-8,-14,-8,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-25,-12,-13,-8,-13,-7,-9,-8,-29/2,-7,-8,-6,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-8,-6,-11,-7,-11,-11,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3/2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,4,3,5,5,8,4,4,3,4,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-5/2,0,0,0,0,0,-1,-1,-3 -9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-13/2,-10,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -10,5,5,3,4,3,3,3,5,3,3,2,3,2,5/2,2,6,4,7/2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-3/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-7,-11,-11,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-3,-5,-3,-11/2,-6,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,0,1,1,1,1,1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,1,1,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,4,3,3,2,3,2,3/2,2,2,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1 -7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -11,6,5,4,5,3,4,3,5,3,2,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,1,1,0,0,1/2,0,0,1,3,2,2,2,5/2,2,3,3,4,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,0,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-13,-6,-6,-4,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-10,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-32,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-17/2,-4,-6,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-17/2,-4,-6,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,3/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,-1,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3/2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-2 -7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-5,-5,-10,-9/2,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -8,4,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,4,2,5/2,2,2,2,5/2,2,3,2,2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-23/2,-12,-27,-13,-13,-8,-13,-7,-17/2,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-7,-13/2,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-7,-4,-15/2,-7,-17,-8,-15/2,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,5,3,5/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,-1,0,1,1,1,1,3/2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2 -7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-10,-21/2,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-6,-6,-16,-7,-7,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,0,0,1/2,1,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,1/2,0,1/2,0,1/2,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -13,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,6,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-18,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-11,-8,-15,-9,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-51,-25,-26,-17,-26,-14,-17,-13,-24,-12,-13,-10,-18,-11,-15,-14,-28,-13,-13,-9,-14,-8,-11,-10,-19,-9,-10,-8,-14,-9,-13,-13,-31,-15,-15,-10,-15,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-10,-43/2,-10,-10,-7,-12,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-31,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-5,-8,-4,-6,-6,-27/2,-6,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-16,-8,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,11/2,4,4,3,4,3,3,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,1,1,1,1,1,1,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3 -7,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-11/2,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1 -6,3,3,3,4,3,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1/2,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-4,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-10,-5,-5,-3,-4,-2,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-13/2,-6,-11,-7,-21/2,-10,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-13/2,-6,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,2,2,2,2,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,5,3,5/2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,0,1,3/2,2,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1 -4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,3,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,3/2,2,3/2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1 -6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,1,4,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-18,-9,-9,-6,-17/2,-4,-6,-5,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,4,3,3,2,5/2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,5,3,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1/2,1,2,2,0,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,1,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-16,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1/2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1 -4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-17/2,-9,-21,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,1,0,0,1/2,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,2,1,1/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-19,-9,-8,-5,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,0,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-7/2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,-1,1,1,1,0,-1,0,-1,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,-7,-3,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-16,-7,-7,-4,-6,-3,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-2,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-6,-25/2,-6,-8,-7,-14,-9,-15,-15,-36,-18,-18,-11,-17,-9,-11,-10,-37/2,-9,-9,-6,-10,-6,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-2,-11,-5,-5,-4,-7,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,1,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4 -3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-19,-9,-9,-11/2,-9,-5,-6,-5,-10,-9/2,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-11/2,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,3,3,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-8,-5,-9,-9,-22,-10,-21/2,-6,-11,-6,-7,-6,-12,-6,-11/2,-4,-6,-3,-5,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-14,-6,-13/2,-4,-7,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,0,0,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,-3,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2 -3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-7/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-7,-12,-5,-5,-3,-11/2,-3,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-13,-6,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-3,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-10,-5,-6,-5,-21/2,-7,-12,-12,-31,-15,-15,-10,-31/2,-8,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-12,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,-1,0,0,0,-3/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,7,4,4,3,4,3,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,8,5,5,3,4,3,3,3,3,2,3,2,7/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,2,2,3/2,2,2,1,0,1,1,1,3/2,1,1,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-7/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-5/2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-20,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-4,-6,-5/2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 -4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-13/2,-7,-13,-6,-5,-3,-6,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-7,-4,-6,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-31,-15,-15,-10,-16,-8,-21/2,-9,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-6,-4,-11/2,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,6,4,7/2,3,4,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,8,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,5/2,2,3,2,7/2,3,5,3,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3 -4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-3,-6,-3,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-4,-3,-7,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-30,-15,-15,-10,-15,-8,-10,-17/2,-16,-8,-8,-6,-10,-6,-8,-15/2,-16,-8,-8,-5,-9,-5,-7,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-17,-8,-8,-11/2,-9,-9/2,-6,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-7/2,-5,-9/2,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3 -8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-7,-6,-11,-7,-11,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-2,-4,-4,-17/2,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-26,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-24,-11,-11,-7,-12,-6,-7,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-5,-10,-6,-10,-10,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-16,-13,-23,-15,-23,-23,-61,-30,-30,-20,-30,-16,-19,-15,-28,-14,-15,-11,-19,-11,-15,-14,-28,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-10,-11,-8,-13,-8,-11,-10,-19,-10,-12,-10,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-22,-10,-10,-6,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,1,0,0,12,7,7,5,8,5,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,4,13/2,4,4,3,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,5,3,3,3,4,3,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 -5,3,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-9/2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-13/2,-8,-6,-11,-7,-11,-11,-30,-15,-15,-10,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3 -5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-6,-3,-9/2,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-5,-6,-2,-5/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-15/2,-6,-12,-8,-23/2,-11,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-11/2,-4,-8,-5,-9,-9,-17,-8,-15/2,-5,-8,-4,-11/2,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-9,-6,-19/2,-10,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,3/2,1,1,1,1/2,0,7,4,4,3,5,3,4,3,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3/2,2,3/2,2,2,1,1,2,1,1,1,0,0,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,0,1,1,1,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -4,2,2,2,5/2,2,3,3,2,1,1,1,3/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,0,-1/2,0,-2,-2,-6,-3,-3,-2,-5/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-10,-5,-5,-3,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-13,-13,-34,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-17,-8,-8,-5,-17/2,-4,-5,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-4,-2,-9/2,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,8,4,4,3,5,3,3,3,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,0,1,1,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,9/2,3,3,2,4,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,3,6,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,0,0,0,0,1/2,1,2,2,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,5/2,2,2,2,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2 -2,1,1,1,2,2,2,2,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-4,-9,-6,-9,-9,-25,-12,-12,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-3,-6,-4,-13/2,-7,-12,-6,-6,-4,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,7,4,7/2,3,4,3,3,2,4,2,2,2,1,1,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,1,1,2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,2,4,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,0,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-9,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-4,-6,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-7,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-21/2,-5,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-41,-20,-20,-13,-20,-10,-12,-10,-39/2,-10,-10,-7,-12,-7,-9,-8,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-15,-7,-8,-6,-10,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-12,-11,-22,-11,-11,-7,-10,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,12,6,6,4,5,3,4,4,11/2,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,7/2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,9/2,3,3,3,4,3,4,4,5,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1/2,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,2,2,2,2,2,2,2,1,1,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-7 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,3/2,2,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,2,2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 -2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-6,-3,-3,-2,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3,-3,-5,-2,-3,-2,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-24,-12,-23/2,-8,-11,-6,-15/2,-6,-11,-5,-11/2,-4,-6,-3,-5,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-11,-5,-9/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,1,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 -2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1/2,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-17/2,-8,-11/2,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,6,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 -2,1,1,1,0,0,0,1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-19/2,-5,-7,-7,-16,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,5,3,3,2,7/2,2,3,2,5,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,2,2,3,3,5,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5 -1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-3,-2,-3,-1,-1,-1/2,-2,-1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-5/2,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 -1,1,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-13/2,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-4,-4,-9,-4,-11/2,-4,-8,-4,-6,-6,-11,-6,-7,-6,-10,-7,-11,-11,-28,-14,-14,-9,-14,-8,-19/2,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-13/2,-4,-8,-4,-6,-5,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-8,-5,-8,-7,-15,-7,-7,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,1,1,1,9,5,11/2,4,6,4,7/2,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1/2,1,2,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4 -1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-11/2,-11,-6,-7,-6,-10,-7,-11,-10,-27,-13,-13,-17/2,-13,-7,-9,-8,-15,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4 -0,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-17/2,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-13,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-19,-13,-20,-21,-55,-27,-28,-18,-28,-15,-18,-15,-28,-14,-14,-10,-17,-10,-14,-14,-55/2,-14,-14,-9,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-14,-28,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-39/2,-10,-10,-7,-12,-7,-9,-9,-18,-10,-12,-9,-17,-11,-16,-15,-30,-15,-15,-9,-14,-7,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,16,8,8,6,8,5,7,6,11,6,6,5,7,5,6,5,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,11/2,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,3,4,2,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-9/2,-2,-2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-9 -0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-21/2,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,5/2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4 -0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-23/2,-12,-30,-15,-15,-9,-15,-8,-9,-7,-15,-7,-7,-5,-9,-5,-15/2,-7,-14,-6,-13/2,-4,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-7,-3,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,5,3,4,4,5,3,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3 -0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-5,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2 --2,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-10,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-5,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-13,-6,-7,-4,-15/2,-4,-6,-5,-12,-6,-8,-7,-13,-9,-14,-14,-35,-17,-17,-11,-35/2,-9,-11,-9,-16,-8,-8,-6,-11,-7,-10,-9,-18,-9,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,11,6,6,4,6,4,5,4,6,4,4,4,11/2,4,4,4,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-1,-1,-3 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1 --2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-4,-3,-5,-5,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-7,-6,-12,-8,-12,-12,-29,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-8,-5,-8,-7,-15,-7,-15/2,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-9/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,9,5,11/2,4,6,4,4,4,6,4,7/2,3,5,4,9/2,4,7,4,4,3,3,2,3,3,4,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-9/2,-5,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-28,-27/2,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-7,-4,-5,-9/2,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,5/2,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-19,-9,-8,-5,-8,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-22,-15,-23,-23,-55,-27,-26,-17,-26,-14,-17,-14,-51/2,-12,-13,-9,-16,-10,-15,-14,-26,-13,-13,-9,-14,-8,-11,-10,-37/2,-9,-10,-8,-14,-9,-13,-13,-31,-15,-16,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-19,-9,-10,-7,-12,-7,-9,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,3,16,9,9,6,8,5,6,6,19/2,6,6,4,6,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-3/2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-5,-3,-6,-11/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-3,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-30,-29/2,-14,-9,-14,-7,-9,-7,-14,-13/2,-7,-5,-9,-5,-8,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-9/2,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 --4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-11/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-14,-7,-17/2,-7,-14,-9,-15,-15,-36,-18,-35/2,-11,-16,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-8,-17,-8,-17/2,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-8,-4,-11/2,-5,-10,-5,-13/2,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,2,2,3/2,2,0,1,3/2,2,2,2,2,2,11,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,5,4,5,3,4,3,4,3,4,4,5,4,11/2,5,7,4,9/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,3,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2 --4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-29,-14,-14,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,3/2,2,2,2,2,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,7/2,5,9/2,7,4,4,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 --8,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-7,-3,-4,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-19,-9,-9,-6,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-9,-6,-10,-10,-20,-9,-9,-6,-9,-5,-6,-4,-10,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-12,-6,-8,-6,-11,-7,-10,-10,-18,-9,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-14,-21,-22,-53,-26,-26,-17,-51/2,-14,-16,-13,-26,-13,-13,-9,-16,-9,-13,-12,-27,-13,-14,-9,-27/2,-8,-10,-9,-18,-9,-10,-8,-15,-9,-14,-14,-31,-15,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-8,-8,-17,-8,-9,-6,-21/2,-6,-8,-7,-16,-8,-10,-8,-27/2,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,3/2,1,1,1,0,1,1,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,12,6,6,4,6,4,5,5,6,4,5,4,15/2,6,8,7,12,7,7,5,6,4,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,3,7,4,4,4,13/2,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,9/2,3,4,3,5,3,3,2,7/2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1/2,1,1,1,3,2,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4 --5,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-13/2,-13,-7,-9,-7,-14,-9,-14,-14,-35,-17,-17,-11,-17,-9,-10,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-19/2,-10,-6,-10,-5,-7,-11/2,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-7/2,-5,-4,-10,-5,-6,-9/2,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-7,-4,-13/2,-7,-14,-7,-7,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-11/2,-4,-9,-6,-9,-9,-20,-9,-9,-6,-10,-5,-11/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-10,-5,-6,-5,-10,-6,-19/2,-9,-18,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-43/2,-22,-52,-25,-25,-16,-26,-14,-16,-13,-25,-12,-27/2,-10,-16,-10,-27/2,-13,-26,-13,-27/2,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-17,-8,-17/2,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,3,17,9,9,6,9,6,7,6,10,6,13/2,5,7,5,6,6,12,6,13/2,4,6,4,5,5,6,4,5,4,6,5,7,7,12,6,13/2,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,9/2,4,7,4,9/2,4,6,4,6,6,10,6,13/2,5,6,4,4,3,5,3,7/2,3,4,3,7/2,3,6,3,3,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-9/2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-11,-7,-10,-10,-19,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-11,-21,-14,-22,-22,-51,-25,-25,-16,-26,-14,-16,-13,-25,-12,-13,-19/2,-16,-10,-14,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-16,-8,-8,-6,-11,-6,-9,-17/2,-18,-17/2,-9,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-26,-12,-12,-8,-12,-6,-8,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-10,-9/2,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3 --17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-15,-10,-15,-15,-61/2,-15,-16,-10,-16,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-19,-12,-19,-20,-39,-19,-18,-12,-18,-10,-12,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-15,-15,-30,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-11,-18,-10,-14,-13,-25,-13,-15,-12,-21,-13,-20,-19,-39,-20,-22,-16,-28,-17,-23,-22,-44,-24,-30,-25,-45,-30,-45,-45,-103,-51,-50,-33,-50,-27,-33,-28,-51,-26,-29,-21,-35,-21,-29,-28,-55,-27,-28,-19,-29,-17,-22,-19,-37,-19,-22,-17,-30,-19,-27,-26,-52,-26,-26,-17,-27,-15,-18,-15,-29,-15,-16,-11,-19,-11,-16,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-11,-7,-12,-12,-24,-12,-12,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,4,5,33,17,18,12,18,11,13,11,19,10,10,8,12,8,11,10,19,10,10,7,11,7,8,8,14,8,9,7,11,7,10,10,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,3,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-5,-9/2,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-19/2,-10,-15/2,-13,-8,-11,-10,-22,-12,-14,-12,-22,-14,-22,-22,-51,-25,-25,-16,-25,-13,-16,-27/2,-25,-25/2,-14,-10,-17,-10,-14,-27/2,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-9,-13,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-13/2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,17,9,10,7,10,6,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4 --8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,0,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-4,-7,-4,-15/2,-7,-16,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-8,-4,-5,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-15/2,-5,-8,-4,-13/2,-6,-11,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-8,-13,-8,-21/2,-10,-22,-12,-29/2,-12,-22,-14,-43/2,-22,-51,-25,-25,-16,-25,-14,-33/2,-14,-25,-12,-27/2,-10,-18,-10,-29/2,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-10,-8,-15,-9,-27/2,-13,-25,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-15/2,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-3,-5,-5,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,18,10,19/2,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,5,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,7/2,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-5,-3,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,-1/2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-9/2,-8,-9/2,-6,-6,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-34,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-12,-13/2,-9,-9,-18,-17/2,-9,-6,-10,-5,-6,-11/2,-12,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,12,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3 --8,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-1,0,-3,-1,-1,0,0,0,0,0,2,1,1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-9,-5,-6,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-11,-10,-22,-12,-14,-12,-43/2,-14,-21,-21,-51,-25,-25,-16,-25,-13,-16,-13,-25,-13,-14,-10,-35/2,-10,-15,-14,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-15,-9,-14,-13,-25,-12,-13,-8,-13,-7,-8,-7,-14,-7,-7,-5,-19/2,-5,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,2,1,1,2,2,5/2,2,3,3,18,10,10,7,21/2,6,8,7,11,6,7,5,7,4,5,5,10,6,6,4,13/2,4,5,5,6,4,4,4,11/2,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,4,4,6,4,4,3,7/2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5 --4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-7/2,-6,-5,-12,-6,-7,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-8,-5,-8,-4,-5,-9/2,-9,-5,-6,-4,-8,-5,-7,-7,-14,-13/2,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,-1/2,-1,-1,-3,-3/2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,1,1,2,2,2,2,2,2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2 --5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-9,-7,-14,-9,-14,-14,-35,-17,-33/2,-11,-17,-9,-23/2,-10,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,3,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,7/2,4,4,3,3,3,4,3,3,3,8,4,9/2,3,4,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3 --4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-29,-14,-14,-9,-14,-8,-10,-8,-14,-7,-8,-11/2,-10,-6,-8,-7,-16,-15/2,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-9/2,-7,-7,-14,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,5/2,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3 --8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-2,-3,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-20,-13,-20,-21,-54,-27,-27,-17,-26,-14,-18,-15,-55/2,-14,-15,-11,-19,-11,-15,-14,-29,-14,-14,-9,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-13,-27,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,18,10,10,7,11,6,7,6,11,6,6,4,6,4,5,5,10,6,6,4,6,4,4,4,13/2,4,4,3,5,4,5,5,11,6,6,4,4,3,3,3,4,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,2,2,2,2,5/2,2,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-27,-13,-14,-17/2,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-13/2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,2,3,2,2,2,3,2,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 --4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-11,-29,-14,-29/2,-9,-14,-8,-19/2,-8,-14,-7,-7,-5,-10,-6,-15/2,-7,-15,-7,-7,-4,-7,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,2,2,2,2,3,2,5/2,2,10,6,6,4,7,4,9/2,4,7,4,4,3,4,3,4,3,6,4,7/2,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,7/2,2,3,2,2,2,3,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-3 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1/2,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-2 --6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-3,-4,-2,-3,-2,-11/2,-4,-7,-7,-9,-4,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-2,0,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,0,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-7,-5,-17/2,-5,-7,-6,-11,-6,-8,-6,-25/2,-8,-12,-13,-36,-17,-17,-11,-17,-9,-11,-9,-18,-9,-9,-7,-12,-7,-9,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-5,-19/2,-6,-9,-9,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,2,1,1,1,2,2,3,3,12,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,9,5,5,3,7/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-4 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,7,4,4,3,5,3,4,3,5,3,3,5/2,4,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2 --4,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-8,-3,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-10,-30,-14,-14,-9,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3 --4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-19/2,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,2,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 --8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-22,-10,-10,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-55,-27,-27,-18,-28,-15,-18,-15,-28,-14,-15,-11,-18,-11,-15,-14,-53/2,-13,-13,-9,-14,-8,-10,-9,-17,-9,-11,-8,-15,-9,-13,-13,-23,-11,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-9,-5,-8,-7,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,21/2,6,5,4,5,3,4,4,6,3,3,2,3,3,4,4,12,6,6,4,5,3,3,3,4,3,3,2,2,1,1,0,-3/2,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-28,-13,-13,-9,-14,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-13/2,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,7/2,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,2,2,2,1,2,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1,0,0,0,-1/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-3,-1,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-12,-6,-11/2,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-29,-14,-14,-9,-14,-7,-17/2,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-3,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,3,2,5/2,2,2,2,2,2,8,4,9/2,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,7,4,4,3,3,2,5/2,2,2,2,3/2,1,2,1,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2 --2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,3,2,2,2,2,2,2,2,7,4,4,4,11/2,4,4,3,5,3,3,3,4,3,4,4,8,4,4,3,7/2,2,3,2,4,2,2,2,5/2,2,2,2,8,5,5,4,9/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,-1,-3 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,5,3,3,5/2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 -0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,1,1,1/2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,0,0,-1/2,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,0,0,-1/2,-1,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,6,4,4,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,5,3,7/2,3,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,-1,-3 -0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3 --1,0,0,1,1,1,1,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-2,0,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-2,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-7,-9,-7,-14,-9,-14,-13,-41,-20,-21,-14,-21,-11,-13,-11,-21,-11,-12,-8,-14,-8,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-7,-11,-10,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,1,8,5,5,3,4,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,0,1,1,1,0,0,0,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 -0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,1/2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-22,-21/2,-11,-7,-11,-6,-7,-11/2,-11,-5,-6,-4,-7,-4,-6,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,3/2,2,3/2,2,1,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 -0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,1,1,0,0,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,-1,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-25,-12,-25/2,-8,-13,-7,-8,-6,-13,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,3/2,1,5,3,5/2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-2,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 -0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,2,2,2,1,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,4,3,3,2,2,1,1,0,1,1,0,0,1/2,0,0,1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-5,-11,-7,-11,-10,-37,-18,-17,-11,-17,-9,-11,-9,-18,-9,-10,-7,-13,-7,-10,-10,-18,-9,-9,-6,-9,-5,-7,-6,-11,-6,-7,-5,-10,-6,-9,-9,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,5,3,3,3,9/2,3,3,3,5,3,3,2,3,2,3,3,7,4,3,2,3,2,2,2,4,2,2,1,1,1,1,1,4,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,2,2,5/2,2,2,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-8 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-24,-11,-11,-7,-11,-11/2,-7,-11/2,-11,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5 -0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,1,2,2,3/2,2,4,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-6,-5,-10,-6,-9,-9,-35,-17,-17,-11,-16,-8,-21/2,-8,-16,-8,-9,-7,-12,-7,-19/2,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-9,-5,-8,-8,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-13,-6,-11/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-3,-5,-5,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1/2,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,1,1,1,1,3/2,2,3,2,3/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-7 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-34,-33/2,-16,-21/2,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,2,3/2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --2,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,9/2,2,2,2,2,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-7,-7,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-19,-12,-18,-18,-69,-34,-33,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-13,-18,-17,-34,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-9,-16,-10,-16,-16,-63/2,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-8,-26,-12,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-13,-13,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-35/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-8,-3,-3,-2,-3,-3/2,-2,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-7/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-9/2,-6,-9/2,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -0,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,-1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-2,-3,-2,-7/2,-4,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-34,-16,-16,-10,-16,-8,-19/2,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-8,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-6,-6,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,4,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1/2,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 -1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,-1,-2,-2,-6,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,2,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5 -1,1,2,2,3/2,2,2,1,2,2,2,2,3/2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,2,5/2,2,3,3,4,2,2,2,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,2,3,2,1,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,3,2,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-6,-3,-3,-2,-5/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-6,-5,-19/2,-6,-10,-10,-34,-16,-16,-10,-31/2,-8,-10,-8,-16,-8,-8,-6,-21/2,-6,-8,-8,-16,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-14,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,2,1,1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,5,3,3,2,7/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8 -1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,3/2,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 -1,1,3/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,0,1,3/2,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,3,2,3/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-5,-2,-7/2,-3,-7,-4,-6,-6,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,2,2,3,2,3,2,2,2,2,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-2,-1,-1,0,-2,-1,-2,-2,2,2,3/2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6 -1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-3/2,-4,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,3/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,3,4,4,4,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,1,1,3/2,2,2,1,1,0,-1,-1,2,1,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,-2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,3/2,1,1,1,0,0,0,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3/2,2,2,2,2,1,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-36,-17,-17,-11,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-4,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,1/2,0,0,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 -0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,1,2,1,1,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,2,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,4,2,5/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,1,1,3/2,2,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 --2,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,0,1,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,1,0,-1/2,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,2,2,-2,0,0,0,-1,0,0,1,2,1,1,1,3/2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,1,1,-5,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-4,-15/2,-4,-7,-7,-27,-13,-12,-8,-25/2,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-5,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,3/2,1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,1,1,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8 --1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-16,-15/2,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,1,1,0,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 --1,0,0,1,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-13/2,-5,-10,-5,-6,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-11,-5,-9/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,0,0,1/2,0,1,1,1/2,1,2,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,3/2,1,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-5/2,-2,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7 --1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,1/2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-22,-10,-10,-7,-11,-11/2,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-2,-4,-3,-5,-4,-11,-5,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,1,1,1,1,1/2,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7 --3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,5,3,4,4,6,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,1,3/2,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-19/2,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-44,-22,-22,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-11,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-22,-10,-10,-6,-9,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-21/2,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-8,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 --1,0,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-3/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-22,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 --2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,3,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-1,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,1,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-24,-12,-23/2,-7,-11,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,1,1,1,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,0,0,-2,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9 --1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-4,-3/2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,2,2,2,3/2,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,2,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,1,0,0,1,1,0,0,-1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-1,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-27,-13,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-4,-15/2,-5,-8,-7,0,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,-1,-1,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-8,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-16,-7,-7,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6 --2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,0,1,3/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,0,-1,0,0,0,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-3/2,-2,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-13/2,-6,-22,-10,-21/2,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,3/2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-20,-19/2,-10,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-3,-7 --4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,1,1,1,1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3/2,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-22,-11,-11,-7,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-5,-10,-7,-11,-11,-38,-19,-19,-13,-20,-10,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-7,-6,-21/2,-5,-6,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,7/2,2,3,3,4,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-1,-1,0,-3/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-12,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-20,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 --2,0,-1/2,0,-1,0,1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,5/2,3,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,-1,0,0,1/2,0,-1,0,-1,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-13/2,-7,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-13/2,-5,-9,-5,-13/2,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,2,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7 --5,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,1,1,1,1,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,3,2,2,1,1/2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-23,-11,-10,-6,-10,-5,-7,-5,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-5,-21/2,-6,-10,-10,-37,-18,-18,-12,-35/2,-9,-11,-9,-18,-9,-10,-7,-25/2,-7,-10,-9,-19,-9,-9,-6,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-10,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,7/2,3,4,3,5,3,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,2,1,1,1,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 --3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-13/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 --4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-3/2,0,-2,-1,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-35/2,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-19/2,-9,-18,-9,-19/2,-6,-10,-6,-8,-7,-13,-6,-15/2,-6,-11,-7,-10,-9,-20,-10,-19/2,-6,-10,-5,-13/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,7/2,2,3,2,7/2,4,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1/2,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1/2,-2,-1,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-36,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-6,-10,-5,-6,-11/2,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,4,5/2,3,2,3,3,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 --10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-7,-7,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-5,-10,-6,-9,-9,-37/2,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-45,-22,-22,-14,-21,-11,-13,-10,-19,-9,-10,-7,-11,-7,-10,-9,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-13,-7,-9,-8,-15,-8,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-16,-9,-12,-10,-20,-11,-14,-11,-21,-14,-21,-21,-74,-37,-37,-24,-37,-20,-25,-21,-38,-19,-20,-14,-24,-14,-20,-19,-37,-18,-19,-13,-20,-11,-14,-12,-24,-13,-15,-12,-22,-14,-21,-21,-42,-21,-21,-13,-20,-11,-13,-10,-19,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-33,-16,-15,-10,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-15,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-10,-8,-16,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-9,-15,-8,-11,-10,-19,-10,-13,-11,-21,-14,-21,-21,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-1,0,0,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-12,-25 --4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-37,-18,-18,-12,-18,-10,-12,-10,-19,-9,-10,-7,-12,-7,-10,-9,-18,-17/2,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-15/2,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-13/2,-10,-10,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-4,-22,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-7,-4,-11/2,-5,-9,-5,-6,-5,-10,-6,-10,-10,-38,-18,-18,-12,-18,-10,-12,-10,-19,-9,-19/2,-7,-12,-7,-10,-9,-18,-8,-17/2,-6,-10,-5,-7,-6,-12,-6,-15/2,-6,-11,-7,-21/2,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-7,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-4,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-10,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3,3,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,0,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,1,1,1,0,1,2,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-11/2,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-13/2,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 --3,-1,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-22,-10,-10,-7,-11,-5,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-4,-13/2,-4,-5,-5,-8,-4,-5,-5,-10,-6,-10,-10,-39,-19,-19,-12,-35/2,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-9,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-5,-4,-10,-5,-7,-6,-11,-7,-11,-11,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-5/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-4,-6,-6,0,0,0,1,3/2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6 --2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-16,-7,-7,-4,-7,-3,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-11/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,1,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8 --1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1/2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-13,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-22,-10,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,0,0,1/2,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,0,2,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-25,-12,-12,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-42,-20,-20,-13,-20,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-9,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-23/2,-6,-6,-4,-8,-5,-8,-7,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,-2,-1,-1,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,0,0,0,0,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-5,-3,-5,-5,-11 --1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-3/2,-2,-2,0,0,0,0,0,0,0,0,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,-3,-1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-14,-6,-13/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-7,-3,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6 --1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4 --2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,0,0,0,1,3/2,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-1,0,-1,0,-3/2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1/2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-3/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-13,-8,-25/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,-1,0,0,0,1/2,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,2,1,1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-16,-7,-7,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-11,-6,-7,-6,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,-1,0,0,1,0,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-7 --3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-4,-4,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-1,-1,-2,-2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,3/2,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-3,-1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,-1,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-30,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-48,-24,-24,-16,-24,-13,-15,-12,-23,-11,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-5,-9,-6,-9,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,7/2,2,2,1,0,1,1,1,0,1,1,1,2,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-1,0,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-16 --3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1/2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-24,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-3/2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8 --4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,0,3,2,1,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-5/2,-2,-1,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-5,-2,-3/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-25,-12,-25/2,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-11/2,-4,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-7,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,2,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-2,1,1,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-7/2,-4,-8 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-9/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-3,-1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-28,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-19/2,-6,-8,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-13/2,-3,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,-1,0,0,0,-1,0,1,1,0,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,1,1,1,1,3/2,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,1,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1/2,0,-1,-1,-1,-1,-2,-2,-7/2,-2,-4,-4,-9 --3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,1/2,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,-1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,2,2,2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-13,-6,-6,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-9/2,-4,-11,-5,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,-1,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,3/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-6 --4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5 --9,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,0,0,-1,3,2,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-6,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-21,-10,-10,-6,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-37,-18,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,0,0,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1/2,0,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --5,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,2,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-13,-6,-11/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-9/2,-4,-23,-11,-11,-7,-11,-6,-15/2,-6,-12,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-11/2,-5,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,0,1,0,-1/2,0,-3,-1,-1,-1,-3,-2,-3,-3,-6 --4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-4,-3,3,2,2,2,5/2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-6,-18,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-17,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-14,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-34,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-6,-23/2,-6,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-15/2,-5,-8,-8,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-8,-8,-11,-5,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,0,-1/2,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-3/2,-1,-2,-2,0,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7 --4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,-1/2,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-22,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-5,-5,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4 --7,-3,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,3,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-16,-8,-15/2,-5,-7,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-17,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-17/2,-8,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,0,0,1,2,2,3/2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,-3/2,-1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-5/2,-2,-6 --6,-5/2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-10,-9/2,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-15/2,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6 --13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-3,-3,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-36,-17,-17,-11,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-8,-17,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-17,-17,-11,-17,-9,-11,-8,-15,-7,-7,-5,-9,-5,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-26,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-66,-32,-32,-21,-33,-18,-21,-17,-31,-16,-17,-12,-20,-12,-17,-16,-32,-16,-16,-11,-17,-9,-12,-10,-20,-11,-13,-10,-18,-11,-17,-17,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-33,-16,-15,-10,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-45/2,-11,-11,-7,-11,-6,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-12,-19,-19,-27,-13,-14,-9,-15,-8,-10,-8,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-3,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 --6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,2,2,2,2,2,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-33,-16,-16,-10,-16,-8,-10,-8,-15,-15/2,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-15/2,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-13,-6,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-3/2,-2,-3,-7 --6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-34,-16,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-17/2,-9,-14,-7,-7,-5,-8,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-3,-4,-5/2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-23,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,3,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,2,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,0,0,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-1,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-3,-4,-3,-11/2,-4,-6,-5,-20,-9,-9,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-6,-36,-17,-17,-11,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-17,-8,-8,-5,-8,-4,-6,-5,-7,-3,-4,-3,-11/2,-3,-4,-3,-10,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-6,-4,-17/2,-6,-9,-9,-14,-7,-7,-4,-15/2,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-8 --3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4 --5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,4,2,2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-3,-9,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-5,-3,-4,-4,-26,-13,-13,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5 --4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-7/2,-6,-4,-6,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,0,0,-1,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,1,1,1/2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-25,-12,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-4,-17/2,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-5,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-5,-43,-21,-20,-13,-20,-11,-13,-11,-20,-10,-11,-7,-12,-7,-10,-10,-19,-9,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-17/2,-4,-5,-3,-6,-3,-5,-4,-11,-5,-5,-4,-7,-4,-6,-5,-19/2,-5,-6,-5,-9,-6,-10,-10,-20,-9,-9,-6,-9,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-5,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,1,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-5/2,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-23,-11,-10,-13/2,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-9/2,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-11,-5,-11/2,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3 --9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,1,1,1,1,0,0,5,3,3,2,7/2,2,3,3,5,3,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-17/2,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-11/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-37,-18,-18,-12,-18,-9,-11,-9,-17,-8,-8,-6,-21/2,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,1,1,-1,0,0,0,-1/2,0,0,1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,-3,-1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,1/2,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6 --6,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-9/2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-23,-11,-11,-7,-11,-6,-7,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-3/2,-4 --9,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-3,-5,-2,-7/2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-15/2,-7,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-4,-4,-34,-16,-16,-10,-17,-9,-11,-9,-16,-8,-17/2,-6,-9,-5,-7,-7,-15,-7,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-17/2,-8,-19,-9,-9,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6 --8,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-33,-16,-16,-10,-16,-17/2,-10,-8,-15,-15/2,-8,-11/2,-9,-5,-7,-7,-14,-13/2,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-13/2,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-3,-7 --17,-8,-8,-5,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,13/2,4,4,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-7,-5,-8,-5,-8,-8,-31/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-39/2,-10,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-15,-14,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-18,-12,-18,-18,-36,-18,-18,-12,-18,-10,-12,-9,-17,-9,-10,-7,-12,-7,-9,-8,-33/2,-8,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-67,-33,-32,-21,-32,-18,-22,-18,-33,-16,-17,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-19,-12,-17,-17,-36,-18,-18,-12,-19,-10,-12,-10,-18,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-11,-25,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-21/2,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-9,-7,-14,-9,-14,-13,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-7,-3,-2,-1,-1,0,1,1,1,1,1,1,1,1,2,2,5/2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-15 --8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-12,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-34,-33/2,-16,-21/2,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-7,-4,-7,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7 --9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,1,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,3,2,2,2,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-3,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-4,-8,-5,-15/2,-8,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-36,-18,-35/2,-12,-17,-9,-11,-9,-18,-9,-19/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-3,-3,-8 --7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-11/2,-6,-7/2,-6,-3,-3,-5/2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-26,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --13,-6,-5,-3,-9/2,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-23,-11,-12,-8,-23/2,-6,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-16,-7,-7,-4,-15/2,-4,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-42,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-12,-8,-27/2,-8,-11,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-21/2,-6,-10,-10,-24,-12,-12,-8,-12,-6,-8,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8 --8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-14,-13/2,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-9,-4,-4,-5/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-25,-12,-12,-8,-12,-6,-8,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --11,-5,-9/2,-2,-4,-2,-2,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-9/2,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-21/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-13/2,-4,-9,-6,-17/2,-8,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7 --10,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-19/2,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-18,-17/2,-8,-5,-8,-4,-5,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 --19,-9,-8,-5,-8,-4,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-7,-8,-6,-12,-8,-13,-13,-30,-15,-15,-10,-16,-8,-10,-8,-31/2,-8,-8,-6,-10,-6,-9,-8,-17,-8,-9,-6,-10,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-8,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-21,-10,-11,-8,-13,-7,-10,-9,-37/2,-10,-12,-10,-19,-12,-19,-19,-36,-18,-18,-11,-17,-9,-10,-8,-33/2,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-10,-6,-9,-9,-24,-11,-11,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-24,-11,-11,-7,-12,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-6,-10,-10,-64,-31,-31,-21,-32,-17,-20,-17,-63/2,-16,-16,-11,-19,-11,-16,-15,-29,-14,-15,-10,-17,-9,-12,-10,-39/2,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-11,-16,-9,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-27/2,-7,-9,-7,-13,-8,-13,-13,-29,-14,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-11,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-12 --10,-9/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-9/2,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-15/2,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-7/2,-5,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --12,-6,-11/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,2,1,1,1,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-20,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-10,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-8,-7,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-11,-6,-7,-6,-10,-5,-6,-4,-7,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-42,-20,-41/2,-13,-21,-11,-13,-11,-20,-10,-10,-7,-12,-7,-21/2,-10,-20,-9,-9,-6,-11,-6,-8,-6,-12,-6,-15/2,-6,-12,-7,-10,-10,-21,-10,-21/2,-6,-10,-5,-13/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,1/2,1,0,0,1/2,0,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8 --9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-5,-5,-34,-16,-16,-21/2,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-9/2,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-5,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-17/2,-5,-8,-9,-21,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-17/2,-5,-8,-8,-15,-7,-8,-6,-19/2,-6,-8,-8,-14,-7,-9,-7,-14,-9,-14,-14,-30,-14,-14,-9,-29/2,-8,-9,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-9,-5,-6,-5,-12,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-16,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-27/2,-8,-13,-13,-28,-13,-13,-9,-14,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-11,-8,-27/2,-8,-11,-10,-18,-9,-11,-9,-35/2,-12,-18,-18,-38,-19,-19,-12,-18,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-16,-8,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-21/2,-6,-10,-10,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-23/2,-8,-12,-12,-25,-12,-12,-8,-23/2,-6,-7,-6,-13,-6,-7,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-19/2,-6,-10,-10,-61,-30,-30,-20,-61/2,-16,-20,-17,-30,-15,-16,-12,-39/2,-12,-16,-15,-30,-15,-15,-10,-33/2,-9,-11,-10,-20,-10,-12,-9,-33/2,-10,-16,-16,-31,-15,-16,-10,-31/2,-8,-10,-8,-18,-9,-10,-7,-25/2,-7,-10,-9,-17,-8,-9,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-7,-6,-11,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-25/2,-8,-13,-13,-29,-14,-14,-9,-27/2,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,-1,-2,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,1,1,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-11 --11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-11,-5,-5,-3,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-11/2,-14,-6,-6,-4,-7,-7/2,-5,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-5,-8,-9,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-40,-20,-20,-13,-20,-21/2,-13,-11,-20,-10,-10,-15/2,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-5/2,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-12,-6,-11/2,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-19/2,-8,-15,-10,-15,-15,-31,-15,-29/2,-9,-14,-8,-19/2,-8,-15,-7,-15/2,-6,-9,-5,-15/2,-7,-15,-7,-8,-5,-9,-5,-13/2,-6,-11,-5,-6,-5,-9,-6,-17/2,-8,-18,-9,-9,-5,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-27/2,-14,-28,-13,-13,-9,-15,-8,-19/2,-8,-16,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-13/2,-5,-10,-6,-9,-9,-17,-8,-17/2,-6,-9,-5,-7,-6,-13,-6,-15/2,-6,-10,-6,-10,-10,-20,-10,-11,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-23/2,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-17/2,-6,-10,-5,-7,-7,-13,-6,-15/2,-6,-11,-7,-21/2,-10,-23,-11,-11,-7,-12,-6,-15/2,-6,-10,-5,-6,-4,-8,-4,-13/2,-6,-14,-6,-6,-4,-8,-5,-7,-6,-13,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-25/2,-8,-12,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-8,-8,-15,-7,-15/2,-5,-9,-5,-6,-5,-12,-6,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-59/2,-20,-30,-16,-20,-17,-31,-16,-33/2,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-23/2,-10,-20,-10,-23/2,-9,-16,-10,-31/2,-15,-31,-15,-16,-10,-16,-8,-21/2,-9,-18,-9,-19/2,-7,-12,-7,-10,-9,-18,-9,-19/2,-6,-10,-5,-13/2,-6,-13,-7,-8,-6,-10,-6,-19/2,-10,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-13/2,-6,-12,-6,-13/2,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-11/2,-6,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-15/2,-9,-8,-15,-7,-8,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-6,-11,-5,-6,-5,-9,-11/2,-8,-8,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-9,-5,-7,-6,-13,-13/2,-8,-6,-10,-6,-10,-10,-20,-10,-11,-8,-13,-15/2,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-18,-10,-12,-9,-17,-8,-9,-6,-12,-7,-9,-9,-17,-8,-9,-6,-10,-5,-7,-7,-13,-7,-8,-6,-11,-7,-11,-11,-23,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-9/2,-7,-6,-14,-13/2,-7,-9/2,-8,-5,-7,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-13/2,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-9/2,-6,-5,-11,-11/2,-6,-4,-8,-5,-7,-7,-16,-15/2,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-61,-30,-30,-20,-30,-16,-20,-17,-31,-31/2,-16,-12,-19,-11,-16,-15,-30,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-16,-10,-16,-15,-31,-15,-15,-10,-16,-8,-10,-9,-17,-17/2,-9,-7,-12,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 --36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-5,-7,-7,-15,-8,-9,-7,-13,-8,-13,-13,-27,-14,-15,-11,-19,-11,-16,-15,-29,-16,-20,-17,-32,-21,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-13,-22,-13,-18,-17,-33,-16,-17,-12,-19,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-37,-18,-18,-12,-20,-11,-13,-11,-20,-10,-12,-10,-18,-11,-16,-15,-31,-15,-16,-12,-20,-12,-16,-15,-29,-16,-20,-16,-30,-20,-30,-30,-61,-30,-30,-19,-29,-16,-19,-16,-29,-15,-16,-11,-18,-11,-15,-14,-28,-14,-14,-10,-17,-10,-13,-11,-22,-11,-13,-10,-19,-12,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-8,-15,-9,-14,-13,-27,-14,-15,-11,-19,-11,-15,-14,-29,-16,-20,-16,-30,-20,-30,-31,-127/2,-31,-30,-20,-30,-16,-18,-15,-27,-13,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,1,1,0,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-11,-7,-11,-11,-22,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-9,-9,-18,-9,-10,-7,-12,-7,-11,-11,-23,-12,-15,-12,-21,-14,-22,-22,-122,-60,-60,-40,-61,-33,-40,-34,-62,-32,-34,-24,-40,-24,-34,-32,-63,-32,-33,-22,-35,-20,-25,-22,-41,-22,-25,-20,-36,-23,-35,-34,-68,-34,-34,-22,-33,-18,-22,-19,-35,-18,-20,-15,-25,-16,-23,-22,-44,-22,-24,-17,-27,-16,-21,-18,-35,-19,-22,-18,-34,-22,-32,-32,-65,-32,-32,-21,-32,-17,-21,-17,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-17,-11,-18,-10,-14,-13,-26,-14,-16,-13,-23,-14,-21,-20,-41,-20,-20,-14,-22,-12,-15,-13,-24,-13,-15,-12,-21,-13,-18,-18,-36,-18,-19,-14,-23,-14,-20,-19,-38,-21,-25,-21,-39,-26,-40,-40,-81,-40,-41,-27,-41,-23,-28,-23,-42,-21,-22,-16,-26,-16,-22,-20,-39,-19,-20,-14,-24,-14,-18,-16,-31,-16,-19,-15,-26,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-24,-12,-14,-11,-19,-12,-17,-16,-33,-16,-17,-12,-21,-12,-15,-14,-27,-14,-16,-12,-22,-14,-22,-22,-44,-22,-22,-15,-23,-12,-15,-13,-24,-12,-13,-9,-16,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,1,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,4,7,4,3,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --17,-8,-8,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-8,-10,-8,-14,-9,-14,-14,-30,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-8,-15,-19/2,-14,-15,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-11/2,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-17,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-15/2,-11,-10,-22,-11,-12,-8,-13,-7,-10,-17/2,-17,-9,-10,-8,-16,-10,-16,-31/2,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-13/2,-10,-11/2,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-11,-13/2,-10,-9,-19,-10,-12,-10,-19,-25/2,-20,-20,-40,-20,-20,-13,-20,-11,-13,-11,-20,-10,-10,-15/2,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-8,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-12,-7,-12,-6,-8,-6,-11,-11/2,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-8,-19/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-15,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-17/2,-8,-16,-8,-15/2,-5,-8,-5,-7,-6,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-8,-4,-11/2,-4,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-15/2,-6,-10,-6,-15/2,-7,-14,-8,-19/2,-8,-14,-9,-29/2,-14,-30,-15,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-15/2,-7,-13,-6,-13/2,-4,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-9,-4,-5,-4,-9,-4,-11/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-9,-8,-15,-10,-29/2,-14,-31,-15,-15,-10,-15,-8,-9,-7,-13,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,3,2,3,2,3,3,4,4,7,4,7/2,3,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,2,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-60,-30,-30,-20,-30,-16,-20,-17,-30,-15,-16,-11,-20,-12,-33/2,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-23/2,-9,-17,-11,-33/2,-16,-33,-16,-16,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-8,-23/2,-10,-22,-11,-12,-8,-13,-7,-19/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-15,-32,-15,-15,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-19/2,-6,-10,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-19/2,-9,-19,-10,-13,-10,-19,-12,-39/2,-20,-41,-20,-20,-13,-20,-11,-13,-11,-20,-10,-21/2,-8,-13,-8,-11,-10,-19,-9,-9,-6,-12,-6,-17/2,-7,-15,-8,-9,-7,-13,-8,-11,-11,-23,-11,-23/2,-7,-12,-6,-15/2,-6,-11,-6,-13/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-21/2,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-12 --11,-5,-5,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-9/2,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-40,-19,-19,-13,-20,-21/2,-13,-11,-20,-10,-11,-15/2,-13,-15/2,-10,-19/2,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-11/2,-7,-6,-12,-11/2,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-12,-6,-6,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-5,-6,-5,-10,-9/2,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-7,-13,-13/2,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-7/2,-4,-4,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-7/2,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7 --17,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-10,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-10,-8,-31/2,-10,-15,-15,-32,-15,-15,-10,-16,-9,-11,-9,-16,-8,-9,-6,-21/2,-6,-9,-9,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-7,-8,-6,-23/2,-7,-10,-10,-16,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-9,-7,-14,-9,-15,-15,-32,-16,-16,-10,-29/2,-8,-10,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-13,-6,-6,-4,-15/2,-4,-5,-5,-11,-6,-7,-5,-19/2,-6,-8,-7,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-7,-7,-13,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-29/2,-9,-14,-14,-32,-16,-16,-10,-29/2,-8,-9,-7,-14,-7,-7,-5,-17/2,-5,-7,-6,-14,-7,-7,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,4,2,2,2,7/2,3,4,4,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-5,-21/2,-6,-10,-10,-60,-30,-30,-20,-59/2,-16,-20,-17,-31,-15,-16,-12,-20,-12,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-12,-9,-16,-10,-16,-16,-33,-16,-16,-10,-33/2,-9,-11,-10,-19,-9,-10,-7,-25/2,-8,-11,-11,-21,-11,-12,-8,-27/2,-7,-9,-8,-18,-9,-11,-8,-31/2,-10,-14,-14,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-16,-8,-8,-5,-17/2,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-23/2,-6,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-6,-21/2,-6,-10,-10,-19,-10,-13,-10,-19,-13,-20,-20,-41,-20,-20,-13,-41/2,-11,-14,-11,-21,-11,-12,-8,-14,-8,-11,-10,-20,-10,-10,-7,-23/2,-6,-8,-7,-14,-7,-9,-7,-25/2,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-6,-13,-6,-7,-6,-21/2,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,5/2,2,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,1,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,3/2,2,2,1,2,2,2,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3/2,1,0,0,2,2,2,2,3/2,2,2,2,3,2,1,1,1,1,0,0,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,3,3,4,2,2,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11 --9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,1/2,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-7/2,-6,-4,-6,-6,-11,-11/2,-6,-4,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-8,-15/2,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-11,-11/2,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 --11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,-1,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-6,-6,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-4,-13/2,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-6,-4,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,1,-2,0,0,0,1,1,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-7,-4,-7,-7,-40,-19,-19,-12,-19,-10,-13,-11,-20,-10,-11,-8,-14,-8,-21/2,-10,-20,-10,-10,-6,-11,-6,-15/2,-6,-12,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-21/2,-7,-11,-6,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-13/2,-5,-10,-6,-19/2,-9,-20,-9,-9,-6,-10,-5,-13/2,-5,-10,-5,-6,-4,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-8,-4,-5,-4,-6,-4,-6,-6,-14,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-13/2,-6,-12,-6,-17/2,-7,-13,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,4,3,3,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,2,2,2,2,1,1,1/2,1,1,1,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8 --9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-17/2,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-7/2,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-33,-16,-16,-10,-16,-17/2,-11,-9,-17,-8,-9,-6,-11,-6,-8,-15/2,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-15/2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-16,-33,-16,-16,-10,-16,-9,-11,-9,-18,-9,-10,-7,-11,-7,-10,-9,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-14,-13,-32,-16,-16,-10,-15,-8,-10,-8,-31/2,-8,-8,-6,-10,-5,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-21/2,-5,-6,-5,-10,-6,-9,-8,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-11,-5,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-34,-17,-17,-11,-16,-8,-10,-8,-29/2,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,3/2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,3,4,4,8,4,4,3,5,3,2,2,5/2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-6,-12,-7,-11,-11,-59,-29,-30,-20,-30,-17,-21,-17,-32,-16,-16,-11,-19,-11,-15,-14,-29,-14,-15,-10,-16,-9,-12,-10,-19,-10,-11,-8,-15,-10,-15,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-9,-10,-7,-13,-8,-11,-10,-22,-11,-11,-7,-12,-7,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-11,-9,-33/2,-8,-8,-6,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-12,-6,-8,-7,-29/2,-7,-8,-6,-11,-7,-10,-10,-17,-9,-10,-7,-12,-7,-10,-10,-39/2,-10,-12,-10,-18,-12,-19,-19,-41,-20,-20,-13,-20,-11,-14,-12,-45/2,-11,-12,-9,-15,-8,-11,-10,-18,-9,-10,-7,-12,-6,-8,-7,-29/2,-8,-9,-7,-14,-9,-13,-12,-24,-11,-11,-7,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-11,-7,-10,-10,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-3,-1,0,1,1,1,1,1,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,1/2,1,1,1,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-5/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-21,-10,-10,-6,-10,-5,-7,-6,-12,-11/2,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-5/2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,3/2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-6,-4,-11/2,-5,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-4,-2,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-13/2,-7,-19,-9,-19/2,-6,-9,-4,-11/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,3,5,3,7/2,3,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-33,-16,-33/2,-11,-17,-9,-23/2,-9,-17,-8,-8,-6,-10,-6,-8,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-5,-10,-6,-21/2,-10,-22,-10,-21/2,-6,-11,-6,-7,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,2,2,1,1,2,2,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,4,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-7 --6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-5/2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-14,-7,-7,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-24,-12,-12,-8,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-9/2,-8,-15/2,-16,-15/2,-8,-9/2,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --10,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-20,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-7,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-15,-7,-7,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-23/2,-6,-7,-5,-11,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1/2,0,-1,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-4,-5,-4,-15/2,-4,-7,-7,-41,-20,-20,-13,-41/2,-11,-14,-11,-22,-11,-11,-8,-25/2,-7,-10,-10,-20,-10,-10,-6,-21/2,-6,-7,-6,-14,-7,-8,-6,-11,-7,-11,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-7,-6,-12,-6,-7,-5,-17/2,-4,-6,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-12,-8,-25/2,-7,-9,-7,-16,-8,-8,-6,-10,-5,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,2,2,2,0,1,1,1,3/2,1,1,1,4,2,2,2,5/2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,1,1,1,3/2,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,1,2,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-6,-7/2,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-25,-12,-12,-15/2,-12,-6,-8,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-7/2,-7,-5,-8,-8,-16,-15/2,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 --8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-4,-11/2,-4,-9,-4,-7/2,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-21,-10,-9,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3,3,6,3,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3,3,0,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-35,-17,-16,-10,-17,-9,-11,-9,-17,-8,-17/2,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-13/2,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-7,-11,-11,-22,-11,-11,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,3/2,1,2,1,1/2,0,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,1,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 --7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-14,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-32,-31/2,-15,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-9/2,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-4,-3,-6,-4,-6,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 --15,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-16,-10,-15,-15,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-10,-7,-11,-11,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-9,-5,-7,-7,-15,-8,-9,-8,-15,-10,-15,-14,-30,-14,-14,-9,-15,-8,-10,-8,-14,-7,-7,-5,-10,-6,-8,-8,-31/2,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-24,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-38,-18,-18,-11,-17,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-9,-35/2,-8,-8,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1/2,1,2,2,2,2,3,3,4,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-63,-31,-30,-19,-29,-15,-18,-15,-28,-14,-16,-12,-20,-12,-16,-15,-59/2,-14,-14,-10,-16,-9,-12,-11,-22,-11,-13,-10,-18,-11,-17,-17,-32,-15,-15,-10,-15,-8,-10,-9,-17,-8,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-7,-12,-7,-10,-9,-18,-10,-12,-9,-17,-11,-16,-16,-33,-16,-16,-10,-15,-8,-10,-8,-16,-8,-8,-5,-9,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-10,-10,-43/2,-10,-11,-8,-14,-8,-11,-11,-22,-12,-15,-12,-22,-14,-20,-20,-41,-20,-20,-13,-20,-11,-13,-10,-18,-9,-10,-8,-14,-8,-12,-11,-45/2,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-6,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-5/2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,2,2,2,1,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-13/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,2,2,3,5/2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-31,-15,-15,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-16,-8,-8,-9/2,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-7,-4,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-5 --7,-3,-3,-2,-2,-1,-1,0,-2,-1,-1,0,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-15/2,-8,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,3/2,1,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,4,3,4,3,5,3,3,2,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-32,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-7,-5,-9,-5,-7,-7,-14,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-8,-4,-9/2,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-6,-4,-11/2,-5,-11,-6,-15/2,-6,-10,-6,-10,-10,-21,-10,-19/2,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-11/2,-6,-9,-4,-4,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,2,2,3/2,2,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1/2,0,1,1,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,1,3,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-2,-3,-3,-6 --5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-22,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,1,3,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 --8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-7,-3,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-4,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,2,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,1,2,2,2,2,7/2,3,4,4,6,3,3,2,3,2,2,1,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,7/2,3,4,3,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-5,-34,-16,-16,-10,-31/2,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-7,-3,-4,-3,-9,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-13/2,-4,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-11,-6,-8,-6,-23/2,-8,-12,-12,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3,2,3,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,4,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 --4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-19,-9,-9,-5,-9,-9/2,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 --5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,1/2,0,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3,3,5,3,5/2,2,3,2,3/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-3,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-5,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,1,1,3/2,2,0,0,1/2,1,0,0,1/2,1,0,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-7 --5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,2,1,1,0,1,0,0,0,1/2,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-6 --10,-5,-5,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-6,-5,-9,-6,-10,-10,-25,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-8,-8,-26,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,0,1,1,1,1,3/2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,7/2,2,3,2,3,2,3,4,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-40,-19,-19,-12,-18,-9,-11,-9,-17,-8,-9,-6,-9,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-22,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-3,-2,-11/2,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-13,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-25,-12,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,4,2,2,2,2,2,3,3,9/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-13 --5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-21,-10,-10,-6,-9,-5,-6,-9/2,-9,-4,-4,-5/2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7 --6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-6,-5,-15,-7,-15/2,-4,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-16,-8,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,2,2,3/2,2,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-23,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-5,-3,-4,-4,-13,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-6,-5,-7,-3,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,2,2,3/2,2,2,2,3/2,1,3,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-4,-4,-8 --5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3/2,1,1,2,3/2,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-6 --9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-23,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,-1,0,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,0,1,1,1,2,2,2,3,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-31,-15,-15,-10,-31/2,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-13/2,-4,-6,-5,-8,-4,-4,-4,-15/2,-5,-8,-7,-17,-8,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-13/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-5,-8,-7,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,7/2,3,4,3,5,3,3,2,7/2,2,3,3,3,2,2,2,7/2,3,4,4,2,2,2,2,5/2,2,1,1,3,2,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,0,1/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-7,-9/2,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-19,-9,-9,-6,-10,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-5,-3,-5,-4,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-3,-5,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,-1/2,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-3/2,-3,-3,-7 --8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-13/2,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-28,-14,-27/2,-9,-14,-7,-17/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-7,-4,-9/2,-4,-8,-5,-7,-7,-15,-7,-13/2,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-21/2,-11,-16,-8,-15/2,-4,-7,-4,-9/2,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-7/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,7/2,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,-2,-1,-1,0,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-4,-5/2,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-4,-2,-2,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-11/2,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-5/2,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-7/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-3/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,-1/2,-1,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-9,-8,-15,-10,-15,-15,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-33/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-40,-20,-20,-13,-20,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-11,-23,-11,-12,-8,-13,-7,-10,-9,-17,-8,-9,-7,-13,-8,-12,-11,-45/2,-11,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-44,-22,-22,-15,-23,-13,-16,-13,-25,-12,-13,-10,-17,-10,-13,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-9,-37/2,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-9,-4,-4,-2,-3,-1,0,1,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-54,-26,-26,-17,-26,-14,-17,-13,-24,-12,-13,-9,-16,-9,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-10,-41/2,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-27,-13,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-59/2,-14,-14,-10,-16,-9,-11,-10,-20,-10,-11,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-11,-23,-12,-15,-12,-21,-14,-22,-22,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-10,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-9,-9,-6,-11,-7,-10,-9,-18,-9,-11,-9,-16,-10,-14,-14,-21,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-6,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,1,1,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-11/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 --8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-19,-9,-10,-6,-10,-5,-6,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1/2,-4,-2,-2,-1/2,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-15,-7,-8,-5,-7,-7/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-5/2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 --8,-4,-4,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-10,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-19/2,-6,-10,-5,-6,-4,-9,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-22,-11,-11,-7,-12,-6,-7,-6,-12,-6,-13/2,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1/2,1,-4,-2,-3/2,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-27,-13,-13,-8,-13,-7,-8,-6,-11,-5,-6,-4,-8,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-6,-11,-6,-7,-5,-10,-6,-21/2,-10,-15,-7,-15/2,-5,-7,-4,-9/2,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-7,-7,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,4,3,3,3,5,3,7/2,3,4,3,9/2,4,1,1,1,1,2,2,2,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-5,-3,-5,-5,-11 --5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-15,-7,-7,-9/2,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,1,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-10,-9/2,-4,-3,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 --7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-5,-4,-17/2,-5,-8,-8,-9,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-19,-9,-9,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-5,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,3,3,4,2,2,1,1,1,2,2,1,1,1,1,3/2,2,2,1,2,2,2,1,1/2,0,0,1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,1,1,1,0,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-28,-13,-13,-8,-13,-7,-9,-7,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-11/2,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-7,-16,-7,-7,-4,-15/2,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-11,-6,-7,-6,-23/2,-7,-11,-11,-17,-8,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-3,-3,0,0,0,0,1/2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,5/2,2,3,3,4,3,4,3,5,4,5,5,1,1,1,1,1,1,1,0,0,0,0,0,0,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 --4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-11/2,-5,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,0,0,0,0,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,2,2,2,1,2,2,2,2,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-11/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,4,3,3,3,0,0,0,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 --3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,1/2,2,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,5/2,3,3,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-4,-8,-5,-7,-7,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-24,-11,-11,-7,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-16,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9/2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,-1,0,0,0,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-31,-15,-15,-10,-15,-8,-10,-8,-14,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-19/2,-5,-6,-6,-12,-7,-11,-11,-20,-10,-10,-6,-9,-4,-5,-4,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-6,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,1,1,0,-3/2,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,2,3,2,3,3,5,3,4,3,4,3,5,5,-1,0,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-6,-2,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,0,2,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-9,-6,-9,-8,-17 --2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9 --2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-11/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,2,2,3/2,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-10,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-7/2,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7 --3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-5,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,5/2,2,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-10,-5,-7,-6,-10,-5,-6,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-7,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-5/2,-1,-2,-3,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,1,0,0,0,0,1/2,1,2,2,3,2,2,2,7/2,2,3,3,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-14,-7,-7,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-17,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-19/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,2,2,2,3/2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 --4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-17/2,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-28,-14,-15,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,9/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-11,-5,-5,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-5,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-39,-19,-20,-13,-20,-11,-13,-11,-20,-10,-10,-7,-11,-6,-9,-8,-35/2,-8,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-29/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-22,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,3,5,3,3,3,5,4,5,4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-12,-7,-11,-11,-22 --2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-17,-8,-8,-5,-8,-4,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-5/2,-6,-3,-5,-5,-11 --2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-18,-8,-17/2,-6,-9,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,0,0,-4,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-11,-5,-9/2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-7,-3,-4,-3,-7,-4,-7,-7,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,-4,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 --1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,0,1/2,0,0,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-3,-3,-8 --2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-3,-6,-2,-2,-1,-5/2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-20,-9,-9,-6,-10,-5,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-5,-5,-3,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,-6,-2,-2,-2,-7/2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-13/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,0,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-1,0,0,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-3,-3/2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-6,-5/2,-2,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7 --3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-6,-11/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-3,-1,-1,0,0,0,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-7/2,-4,-18,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-6,-4,-7,-7,-8,-4,-7/2,-2,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-10 --3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-5/2,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,3,2,2,2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-16,-15/2,-8,-9/2,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 --6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-6,-29,-14,-13,-8,-13,-7,-8,-6,-25/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,0,0,1,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,1,1,2,2,3,2,3,2,7/2,2,2,2,3,3,4,4,-12,-6,-6,-3,-5,-2,-2,-1,-3/2,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-31,-15,-15,-10,-15,-8,-10,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-5,-4,-15/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-14,-9,-13,-13,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,0,0,0,1,1,1,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-1,0,0,0,-1/2,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20 --3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-9/2,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11 --3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-9/2,-5,-13,-6,-6,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,-7,-3,-7/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,0,-3,-1,-3/2,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-4,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-8,-4,-4,-3,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-2,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14 --2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1/2,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-12 --4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-2,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-9/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-28,-14,-14,-9,-27/2,-7,-8,-6,-12,-6,-6,-4,-17/2,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,5/2,2,2,2,4,3,4,3,9/2,3,4,5,-9,-4,-4,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-11/2,-3,-5,-4,-7,-3,-4,-4,-15/2,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-15/2,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-8,-7,-13,-7,-8,-6,-25/2,-8,-12,-12,-11,-5,-5,-4,-13/2,-3,-4,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,0,0,0,0,0,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-14,-6,-6,-4,-11/2,-3,-4,-3,-8,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-13/2,-4,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-7/2,-7,-4,-7,-7,-15 --4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-15/2,-8,-17,-8,-15/2,-5,-8,-4,-5,-4,-7,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-6,-6,-28,-14,-27/2,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-11/2,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,5/2,2,2,2,2,3,4,3,7/2,3,6,4,11/2,6,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-26,-12,-25/2,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-11,-7,-11,-11,-23 --5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-9/2,-9,-6,-9,-9,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-7/2,-7,-9/2,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-29,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,6,4,6,6,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-26,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-10,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-5,-11,-7,-11,-11,-23 --11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-6,-10,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-7,-15,-8,-10,-8,-15,-10,-16,-16,-33,-16,-16,-10,-16,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-12,-12,-59,-29,-29,-19,-28,-15,-19,-16,-30,-15,-17,-13,-22,-13,-18,-17,-34,-17,-17,-11,-18,-10,-14,-13,-25,-13,-15,-11,-19,-12,-18,-18,-36,-18,-18,-11,-17,-9,-12,-10,-20,-10,-10,-7,-12,-7,-11,-10,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,5,5,9,6,9,10,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-16,-16,-53,-26,-26,-17,-25,-14,-17,-14,-27,-13,-14,-10,-17,-10,-13,-12,-23,-11,-12,-8,-12,-7,-9,-9,-18,-9,-11,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-11,-9,-18,-9,-10,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-9,-12,-11,-21,-11,-12,-10,-18,-11,-17,-17,-36,-17,-17,-11,-18,-9,-11,-8,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-11,-14,-12,-22,-15,-23,-23,-21,-10,-11,-7,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-10,-10,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-10,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-10,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-13,-9,-16,-9,-12,-11,-23,-12,-15,-13,-24,-15,-23,-23,-46 --5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-9/2,-10,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-6,-8,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,3,5/2,3,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-10,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-26,-12,-12,-8,-12,-13/2,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-7/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-10,-9/2,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-9/2,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --5,-2,-2,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-7/2,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-15/2,-6,-11,-6,-17/2,-8,-16,-8,-15/2,-5,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,2,2,4,3,7/2,3,5,4,5,5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-5,-10,-4,-4,-2,-5,-2,-3,-2,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-26,-12,-12,-8,-13,-7,-17/2,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-11/2,-4,-9,-4,-5,-4,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-13/2,-5,-10,-7,-11,-11,-10,-4,-9/2,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-9/2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-3,-2,-3,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,-1/2,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 --5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-16,-8,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-5,-29,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-5,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,11/2,4,5,5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-26,-13,-13,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-16,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-11,-11,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-7/2,-2,-4,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,0,1,1,1,3,2,1,1,1,1,1,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,2,2,0,0,0,1,3/2,2,2,2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-21/2,-7,-11,-11,-22 --2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-4,-7/2,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,2,2,2,2,1,1,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,3/2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,5/2,2,4,3,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-9/2,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-4,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,1,1,1,0,0,0,0,0,0,2,2,3/2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 --2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-5,-5,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-7/2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-15/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,3/2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-6,-5,-10,-6,-9,-9,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-29,-14,-14,-9,-14,-7,-9,-8,-31/2,-8,-9,-7,-12,-7,-9,-9,-17,-8,-8,-6,-10,-5,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,4,3,4,4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-5,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-13,-6,-6,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-26,-12,-12,-8,-12,-6,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-17,-8,-8,-5,-9,-4,-5,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-5,-10,-6,-10,-11,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-7/2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3/2,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-6,-12,-6,-7,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-7,-11,-11,-23 --1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-1,-5,-2,-5/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-11,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-15,-7,-15/2,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,5/2,2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-13 --1,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-4,-3/2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --2,-1,-1,0,0,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-13,-6,-6,-4,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-1,-1,-1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-4,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-6,-3,-3,-3,-6,-5/2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-5/2,-4,-4,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,0,0,1/2,0,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,0,0,1/2,1,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1/2,0,1,1,1,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-13,-6,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,0,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-3/2,-1,-2,-1,-3,-3,-15,-7,-15/2,-5,-8,-4,-6,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-9/2,-4,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1/2,0,0,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-7/2,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 --2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-23,-11,-11,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-43/2,-10,-11,-7,-12,-7,-9,-9,-18,-9,-10,-7,-13,-8,-13,-12,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-19,-9,-10,-6,-10,-5,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-8,-33,-16,-16,-10,-15,-8,-10,-9,-17,-8,-8,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-7,-4,-7,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-9,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-35/2,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-16,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,-1/2,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 --1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-14,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-10,-4,-9/2,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-9/2,-3,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1/2,0,-1,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-3/2,-1,-4,-2,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12 -0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-3,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -0,1,1,1,1/2,0,0,0,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,1,1,1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-3,-4,-4,1,1,0,0,1/2,0,0,0,1,1,0,0,0,0,0,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,-5,-2,-3,-2,-4,-2,-3,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-10,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13 -0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-12,-11/2,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-3/2,-3,-2,-3,-3,-7 -0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,0,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,2,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-17,-8,-7,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,3,2,2,2,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-15,-7,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,3,2,2,2,2,2,2,1,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-19,-9,-9,-6,-10,-6,-8,-6,-25/2,-6,-6,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,3/2,1,1,1,1,1,1,0,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-4,-4,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-3,-2,-29,-14,-13,-8,-13,-7,-8,-6,-21/2,-4,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,1,1,1,4,3,3,2,3,2,1,1,1,1,1,1,1,1,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-5,-4,-7,-5,-8,-8,-18 -0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-3/2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-10 -0,1,1,1,1,1,1,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,3/2,2,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-12,-6,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-18,-8,-8,-5,-8,-4,-9/2,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-3/2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-11/2,-6,-12 -0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-5/2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,0,1,1,1,0,1/2,0,1/2,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10 --2,-1,-1,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-4,-1,-1,0,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,2,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-28,-13,-12,-7,-11,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-8,-8,-5,-7,-7/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-16,-8,-15/2,-5,-8,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-4,-8,-4,-4,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-26,-12,-25/2,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-11/2,-6,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-2,-3,-3,-7,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-5,-8,-8,-18 --3,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-5/2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-6,-4,-6,-6,-11,-5,-6,-4,-7,-7/2,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-7/2,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-26,-12,-12,-8,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 --8,-3,-3,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,7,4,4,3,4,2,2,2,2,1,1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-37,-18,-18,-12,-19,-10,-13,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-11,-8,-14,-8,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-53,-26,-26,-17,-26,-14,-17,-14,-26,-13,-15,-11,-18,-10,-14,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-8,-5,-7,-7,-29/2,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-12,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-19/2,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-29/2,-7,-7,-4,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-10,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-8,-8,-35/2,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-11,-23,-11,-12,-8,-13,-7,-9,-8,-17,-9,-11,-10,-19,-12,-18,-18,-37 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1/2,-1,0,0,-1/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,4,2,2,2,2,2,2,1,2,1,1,1/2,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-8,-18 --4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-1/2,-1,-1,0,-1,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,4,2,5/2,2,2,2,3/2,1,2,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-7/2,-3,-17,-8,-8,-5,-8,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-5,-5,-10,-5,-5,-4,-6,-3,-4,-4,-7,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,-1,-3,-1,-3/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-13/2,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,2,1,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18 --2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-3/2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1/2,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-9,-9,-11/2,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-6,-4,-6,-11/2,-12 --3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,3,2,2,2,2,1,1,1,1,1,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-16,-8,-8,-5,-17/2,-4,-4,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-5,-11,-5,-6,-4,-17/2,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,3,2,2,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-3,-1,-1,0,-1/2,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,-6,-2,-2,-1,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-6,-10,-10,-20 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1/2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-3,-1,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,-1/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,-21,-10,-10,-6,-10,-5,-13/2,-5,-9,-4,-9/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-5/2,-6,-3,-3,-5/2,-5,-3,-6,-6,-13 --2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-4,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-7,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-8,-4,-6,-6,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-19,-9,-9,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-4,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-33,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-6,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-4,-4,-15/2,-4,-5,-4,-8,-5,-7,-7,-2,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-7,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-12,-12,-25 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-3,-5,-3,-6,-6,-13 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-2,-7/2,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,-1/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-19,-9,-9,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-1,0,0,0,-1,0,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 -0,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-25,-12,-12,-8,-23/2,-6,-8,-7,-11,-5,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-4,-13/2,-4,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 -0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-15/2,-8,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-3/2,-2,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-23,-11,-21/2,-6,-11,-6,-7,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-3,-1,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-19/2,-9,-19 -1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-22,-21/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-7/2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-7,-3,-4,-2,-5,-2,-3,-3,-6,-2,-2,-2,-4,-2,-4,-4,-9,-9/2,-5,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-26,-13,-13,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-8,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-9,-9,-28,-13,-13,-8,-12,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-45,-22,-22,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-9,-18,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-5/2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-10,-7,-11,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-38 -1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1/2,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-20 -2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,-2,-1,-3/2,-2,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-11/2,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-6,-3,-3,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,1,1,1,1,2,2,3/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,1/2,1,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-16 -2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-15/2,-4,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-23/2,-7,-10,-10,-22,-10,-10,-6,-21/2,-6,-8,-6,-10,-5,-6,-4,-13/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-11/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-3,-3,-13/2,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1,-1,-2,-2,-30,-14,-14,-9,-29/2,-8,-10,-8,-14,-7,-7,-4,-15/2,-4,-6,-5,-10,-5,-5,-3,-9/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-4,-4,-4,-1,-1,0,-3/2,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,0,1,1,1,3/2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-12,-6,-6,-4,-15/2,-4,-7,-6,-11,-6,-7,-6,-13,-8,-13,-13,-27 -2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-18,-8,-8,-5,-8,-4,-6,-9/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 -2,2,3/2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1/2,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-8,-5,-8,-4,-6,-5,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-5,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-25,-12,-23/2,-8,-12,-6,-8,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-5,-2,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-21/2,-10,-22 -2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20 -3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-19/2,-5,-6,-4,-8,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-7,-8,-6,-11,-6,-8,-8,-33/2,-9,-11,-9,-18,-12,-18,-18,-34,-16,-16,-10,-16,-8,-10,-8,-33/2,-8,-9,-7,-12,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-9,-9,-26,-12,-12,-7,-11,-6,-8,-6,-23/2,-6,-6,-4,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1/2,0,0,0,-2,-1,-3,-3,-45,-22,-22,-14,-22,-12,-14,-12,-43/2,-10,-11,-8,-13,-7,-10,-9,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-15,-7,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,0,1,1,1,2,2,2,1,1/2,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-15,-7,-6,-4,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,-16,-8,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 -2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-14,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-24,-12,-12,-15/2,-12,-6,-7,-6,-11,-5,-5,-4,-7,-7/2,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-8,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1/2,0,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-15/2,-6,-12,-8,-23/2,-12,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-16,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-6,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1/2,0,-1,0,-3/2,-2,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-6,-4,-8,-4,-13/2,-6,-11,-5,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,1,0,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-5,-10,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-10,-4,-4,-3,-4,-2,-7/2,-3,-5,-2,-7/2,-2,-6,-4,-11/2,-6,-10,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-7/2,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-2,-3,-5/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-5/2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-24,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-22 -1,1,1,1,1/2,0,0,1,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,1,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-21/2,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-9,-4,-5,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-10,-12,-10,-37/2,-12,-18,-18,-35,-17,-17,-11,-35/2,-10,-12,-10,-18,-9,-10,-7,-13,-8,-11,-10,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-9,-4,-4,-3,-6,-4,-6,-5,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-22,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-43,-21,-20,-13,-41/2,-11,-13,-11,-19,-9,-10,-7,-12,-7,-9,-9,-16,-7,-7,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-11/2,-4,-6,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-9,-6,-9,-9,-17,-8,-9,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-7,-25/2,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-7/2,-5,-5,-12,-6,-8,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-9/2,-8,-5,-7,-13/2,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-7/2,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-28,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-3,-5/2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-21,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-15/2,-8,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-10,-21/2,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-12,-6,-7,-5,-10,-6,-19/2,-9,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-11,-6,-7,-6,-10,-6,-21/2,-10,-22,-10,-10,-6,-11,-6,-13/2,-5,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-42,-20,-20,-13,-20,-11,-13,-10,-18,-9,-19/2,-7,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-8,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-7,-4,-11/2,-5,-11,-6,-13/2,-5,-9,-6,-9,-9,-19,-9,-19/2,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-17/2,-8,-18,-9,-19/2,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-9,-9/2,-6,-4,-8,-5,-8,-15/2,-16,-8,-9,-6,-10,-6,-9,-9,-19,-10,-12,-10,-18,-12,-18,-18,-35,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-15/2,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-12,-6,-7,-6,-11,-13/2,-10,-19/2,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-11,-11/2,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-41,-20,-20,-13,-20,-10,-12,-10,-18,-9,-9,-13/2,-11,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-13/2,-14,-7,-7,-5,-7,-4,-6,-5,-11,-11/2,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-9,-9,-18,-10,-13,-11,-20,-13,-20,-20,-41 -0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-11,-14,-12,-23,-15,-23,-23,-46,-23,-23,-15,-23,-12,-15,-13,-25,-13,-15,-11,-20,-12,-18,-18,-36,-18,-19,-13,-21,-12,-16,-15,-29,-15,-17,-14,-25,-16,-25,-24,-49,-24,-25,-17,-26,-15,-19,-16,-30,-16,-18,-14,-24,-15,-22,-21,-42,-21,-23,-17,-28,-17,-23,-21,-41,-22,-26,-21,-39,-25,-37,-37,-71,-35,-34,-22,-34,-18,-22,-18,-32,-16,-17,-12,-21,-12,-17,-16,-32,-16,-16,-11,-19,-11,-14,-12,-24,-12,-14,-11,-20,-13,-19,-18,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,4,6,5,7,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-3,-2,-3,-4,-83,-41,-41,-27,-42,-23,-28,-23,-42,-21,-22,-16,-27,-16,-22,-21,-42,-21,-21,-14,-23,-13,-17,-15,-28,-15,-17,-14,-25,-16,-24,-23,-47,-23,-24,-16,-24,-13,-16,-13,-25,-13,-15,-12,-21,-13,-19,-18,-37,-18,-19,-14,-23,-13,-17,-15,-29,-15,-18,-15,-27,-18,-27,-27,-55,-27,-27,-18,-28,-15,-19,-15,-28,-14,-16,-12,-21,-13,-19,-18,-35,-17,-18,-12,-20,-11,-15,-13,-25,-13,-15,-11,-19,-12,-17,-17,-35,-17,-17,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-7,-11,-6,-7,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-8,-15,-10,-15,-14,-29,-14,-14,-9,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-9,-7,-14,-9,-13,-13,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-5,-11,-7,-11,-11,-24,-12,-12,-8,-12,-7,-10,-9,-17,-9,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-38,-19,-20,-14,-22,-12,-16,-14,-27,-14,-15,-11,-20,-13,-19,-18,-36,-18,-19,-14,-24,-15,-21,-20,-39,-21,-26,-22,-40,-27,-41,-41,-83 -1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-11/2,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-17/2,-18,-17/2,-8,-5,-9,-9/2,-6,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-3/2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-23,-11,-12,-7,-12,-6,-8,-6,-12,-6,-7,-11/2,-10,-6,-9,-9,-18,-9,-9,-13/2,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-12,-6,-7,-5,-9,-11/2,-8,-8,-17,-8,-8,-5,-9,-4,-5,-9/2,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-5/2,-4,-4,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-41 -1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-10,-6,-21/2,-11,-23,-11,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-15,-8,-17/2,-6,-12,-8,-23/2,-12,-25,-12,-12,-8,-12,-7,-9,-7,-15,-7,-8,-6,-11,-7,-21/2,-10,-20,-10,-11,-8,-13,-8,-21/2,-10,-20,-10,-25/2,-10,-19,-12,-37/2,-18,-35,-17,-16,-10,-16,-8,-10,-8,-16,-8,-17/2,-6,-10,-6,-8,-7,-15,-7,-8,-5,-8,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-9,-17/2,-5,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,1/2,1,1,1,1,2,3,2,2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-41,-20,-20,-13,-20,-11,-13,-11,-21,-10,-11,-8,-13,-8,-11,-10,-20,-10,-10,-7,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-24,-12,-23/2,-7,-12,-6,-15/2,-6,-13,-6,-15/2,-6,-10,-6,-19/2,-9,-18,-9,-10,-7,-11,-6,-8,-7,-14,-7,-17/2,-7,-13,-8,-13,-13,-26,-12,-25/2,-8,-13,-7,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-16,-8,-8,-5,-8,-4,-5,-5,-9,-4,-5,-3,-7,-4,-11/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-8,-7,-12,-6,-7,-5,-9,-6,-17/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-20,-20,-41 -1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-9/2,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-23,-11,-10,-6,-10,-5,-7,-5,-11,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-3,-6,-5/2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,3/2,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-6,-6,-4,-6,-7/2,-5,-4,-9,-9/2,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-11,-5,-5,-7/2,-6,-3,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27 -1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-10,-11,-24,-11,-11,-7,-23/2,-6,-8,-6,-12,-6,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-10,-5,-7,-7,-15,-7,-8,-6,-23/2,-7,-11,-11,-25,-12,-12,-8,-23/2,-6,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-25/2,-8,-11,-10,-20,-11,-13,-10,-19,-12,-18,-18,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-12,-6,-8,-6,-21/2,-6,-9,-8,-19,-9,-8,-5,-17/2,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,1,1,2,2,3/2,2,2,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-41,-20,-20,-13,-39/2,-11,-14,-11,-22,-11,-11,-8,-27/2,-8,-11,-11,-20,-10,-10,-6,-21/2,-6,-8,-7,-15,-8,-10,-8,-27/2,-8,-12,-11,-24,-11,-11,-7,-23/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-9,-6,-21/2,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-26,-13,-13,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-21/2,-6,-8,-8,-17,-8,-8,-6,-19/2,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-5,-11,-5,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-11/2,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-5,-13,-6,-6,-4,-11/2,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-1,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-41 -1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-11/2,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-10,-11/2,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,3/2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-4,-8,-5,-15/2,-8,-17,-8,-8,-5,-7,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-12,-12,-7,-11,-6,-13/2,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-11/2,-5,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-28,-14,-14,-9,-13,-7,-17/2,-7,-15,-7,-7,-5,-8,-5,-8,-7,-12,-6,-7,-5,-7,-4,-11/2,-5,-10,-5,-6,-4,-9,-5,-15/2,-7,-16,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,0,1,1,1,2,2,3/2,1,2,2,3/2,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-7,-4,-13/2,-6,-13,-7,-9,-7,-14,-9,-27/2,-13,-27 -1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-4,-9,-4,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-7/2,0,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-5,-11,-5,-5,-3,-6,-5/2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -2,2,2,2,2,1,1,1,1/2,1,1,1,1,1,1,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-25,-12,-12,-7,-11,-6,-8,-6,-25/2,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-11,-6,-8,-7,-27/2,-7,-8,-6,-12,-7,-11,-11,-25,-12,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-18,-10,-12,-9,-17,-11,-17,-16,-38,-18,-18,-12,-18,-10,-12,-9,-33/2,-8,-9,-6,-10,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-8,-19,-9,-10,-6,-10,-5,-5,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,11/2,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,9/2,3,3,3,4,3,3,2,0,0,0,0,0,1,1,2,5/2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-43,-21,-21,-14,-22,-12,-15,-12,-22,-11,-12,-8,-14,-8,-12,-11,-19,-9,-10,-7,-12,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-12,-24,-12,-13,-9,-14,-8,-10,-8,-33/2,-8,-10,-7,-12,-7,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-27/2,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-13,-7,-8,-7,-27/2,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-6,-6,-23/2,-6,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,0,1,1,1,1,1,2,2,3/2,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,0,0,0,1/2,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,0,0,-1/2,0,0,1,2,2,2,2,-1,0,0,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-6,-5,-10,-6,-8,-8,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-20,-41 -2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,1/2,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-22,-21/2,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-11/2,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-7/2,-5,-5,-10,-5,-7,-5,-10,-13/2,-10,-10,-21 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-6,-17/2,-8,-21,-10,-19/2,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1/2,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,-1,-24,-12,-23/2,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-11/2,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-8,-4,-9/2,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-7,-3,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-2,-1,-5/2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,0,1/2,0,0,0,1/2,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 -2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,0,1/2,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-11/2,-15,-7,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,1/2,0,0,1,0,1,1,1,0,0,0,1,2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-17/2,-4,-6,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-17/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,1,1,0,0,1/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-30,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-6,-10,-5,-5,-4,-15/2,-4,-7,-6,-12,-6,-6,-4,-15/2,-4,-4,-4,-10,-5,-6,-4,-17/2,-6,-9,-9,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,0,-1/2,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-11,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-13,-8,-13,-13,-27 -3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -4,3,3,2,3,2,3/2,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,2,2,5/2,2,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,3/2,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-5,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-8,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-26,-12,-25/2,-8,-12,-6,-8,-6,-13,-6,-13/2,-5,-8,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-10,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,0,0,0,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1/2,0,-1,0,1/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-9/2,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-11,-6,-7,-6,-11,-7,-11,-11,-23 -4,3,3,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,2,3/2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-9/2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-7,-7/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-2,-2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-9/2,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-22 -7,4,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,0,1,1,1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,1,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,0,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-7,-5,-9,-9,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-11,-6,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-9,-8,-16,-8,-10,-8,-14,-9,-14,-14,-36,-17,-17,-11,-18,-10,-12,-10,-19,-9,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-9,-16,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,3,11/2,3,2,2,2,2,3,3,4,3,3,2,3,2,1,1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-48,-23,-23,-15,-24,-13,-15,-12,-23,-12,-13,-9,-15,-9,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-8,-35/2,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-19,-9,-9,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-6,-27/2,-6,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-11,-7,-12,-7,-11,-10,-20,-11,-13,-11,-20,-14,-22,-22,-45 -4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,1/2,0,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-1,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,-23 -4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-4,-2,-9/2,-4,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-7,-7,-18,-8,-17/2,-6,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-5/2,-2,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-11,-5,-6,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-11/2,-6,-4,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-7/2,-5,-7/2,-7,-9/2,-7,-8,-17 -4,2,2,2,7/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,1/2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,4,2,2,2,2,2,2,2,1,1,2,2,3/2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,2,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,2,2,2,1,1/2,1,2,2,0,0,0,1,1,1,0,0,-2,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,3,4,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-27,-13,-13,-8,-13,-7,-8,-7,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-10,-5,-5,-3,-9/2,-2,-3,-2,-7,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-12,-5,-5,-3,-9/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-1,0,0,0,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5/2,-1,-2,-3,-5,-2,-2,-1,-3/2,0,-1,0,-2,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-9/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-11,-6,-7,-6,-23/2,-8,-13,-13,-27 -3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-3/2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-15,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -3,2,5/2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,2,2,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,5/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-9/2,-3,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-3,-1,-2,-2,-3,-1,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-6,-3,-3,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-5,-3,-5,-5,-9,-5,-6,-4,-8,-5,-9,-9,-20 -3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-2,-18,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -6,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-2,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-5,-5,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-23,-11,-10,-6,-10,-5,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-35,-17,-17,-11,-17,-9,-11,-9,-17,-9,-10,-7,-12,-7,-9,-8,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-6,-19,-9,-9,-6,-9,-5,-6,-4,-17/2,-4,-4,-3,-7,-4,-7,-7,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,-1,-7/2,-2,-2,-2,-4,-2,-4,-5,-5,-2,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5/2,-1,-2,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-35 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-3/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-18,-9,-9,-11/2,-9,-5,-6,-9/2,-9,-4,-5,-3,-6,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-11/2,-9,-9,-18 -4,3,3,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3,3,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,4,2,5/2,2,3,2,3/2,2,2,2,2,2,1,1,1/2,1,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,1,1,1,3/2,2,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,1,1,1,1,1,1,1/2,0,0,0,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-21,-10,-10,-6,-11,-6,-13/2,-5,-10,-5,-6,-4,-6,-3,-5,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-10,-21 -3,2,3,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,3/2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,7/2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,7/2,3,4,4,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,6,4,4,3,3,2,2,2,2,1,1,1,3/2,1,0,0,2,1,1,1,1,1,2,2,0,1,1,1,3/2,1,1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,2,2,3/2,1,0,0,2,2,2,1,1,1,0,0,0,1,1,1,3/2,2,2,2,0,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-1,0,0,0,1/2,0,0,1,-1,0,0,0,1/2,0,0,1,2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-28,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-5,-9,-5,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-9/2,-2,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,-1/2,0,0,0,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-2,-3,-3,-14,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -4,5/2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,-1,-3,-2,-3,-2,-18,-8,-8,-5,-9,-9/2,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19 -6,4,7/2,3,4,2,5/2,2,3,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,3,2,5/2,2,3,2,7/2,3,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3/2,1,2,1,1/2,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-9/2,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-2,-5,-3,-9/2,-4,-26,-12,-12,-8,-13,-7,-8,-7,-13,-6,-13/2,-4,-8,-4,-6,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-1,-4,-2,-3/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-8,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-5/2,-2,-14,-6,-6,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-13,-7,-19/2,-8,-14,-9,-14,-14,-29 -6,4,4,3,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-2,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-13,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-9,-15/2,-14,-9,-14,-14,-28 -12,7,7,5,6,4,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,2,1,1,0,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,2,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-22,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-15,-7,-8,-5,-8,-4,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-17/2,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,0,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-9,-6,-9,-9,-50,-24,-24,-15,-23,-12,-15,-12,-23,-12,-13,-9,-15,-9,-12,-12,-24,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-15,-9,-13,-13,-27,-13,-14,-9,-15,-8,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-23,-11,-11,-7,-11,-6,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-5,-9,-9,-13,-6,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-37/2,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-12,-13,-9,-16,-10,-14,-14,-28,-15,-18,-15,-28,-18,-28,-28,-57 -6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,6,4,4,5/2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-8,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-14,-14,-28 -6,4,7/2,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,3/2,2,2,2,2,2,3,2,7/2,4,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,1,1,1,6,4,7/2,2,4,3,7/2,3,5,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,1,1,1,1,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,0,-1/2,-2,0,0,0,-2,0,0,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1/2,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-9/2,-9,-6,-9,-9,-19 -6,4,4,3,5,3,4,4,4,3,3,3,4,3,4,3,5,3,3,2,5/2,2,1,1,1,1,1,1,3/2,2,2,2,0,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,5/2,2,4,4,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,7,4,3,2,3,2,3,3,6,4,4,3,9/2,3,3,2,3,2,3,2,3,2,2,2,3,2,1,1,1/2,1,1,1,3,2,2,2,3/2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-1,0,-3,-1,-2,-1,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-7/2,-2,-4,-4,-25,-12,-11,-7,-21/2,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-15/2,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,0,1,1,1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,-1,-11,-5,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-14,-6,-6,-4,-13/2,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-15/2,-4,-6,-6,-13,-7,-9,-8,-15,-10,-15,-15,-30 -4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,5/2,1,1,2,1,2,1,1,1,2,2,2,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -4,3,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,3,2,2,3/2,1,2,1,1,1,3,2,2,1,2,2,3/2,2,5,3,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,1,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,2,2,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-3/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-17,-8,-15/2,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-3/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,1/2,0,0,0,0,1,0,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21 -3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,3/2,1,1,1,1,1,3/2,4,5/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-15,-7,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-8,-5,-8,-8,-17 -5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,7,4,5,4,5,3,3,2,3,2,3,2,3,2,1,1,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,4,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,5/2,2,1,1,0,1,1,1,5,3,3,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,0,0,0,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-5,-5,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,6,4,4,3,4,2,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-2,-4,-4,-28,-13,-13,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-17/2,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-27/2,-7,-8,-7,-14,-9,-15,-15,-32 -3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,1/2,0,1/2,0,1/2,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3/2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,-5,-2,-3,-2,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-2,-1/2,-1,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-17 -4,3,3,2,2,2,5/2,2,4,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1,1,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,2,2,4,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,2,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,2,4,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-15,-7,-6,-4,-6,-3,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-6,-3,-3,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,-1,-1,0,-3,-1,-1,0,-2,0,-1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-10,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-19 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 -6,4,4,3,7/2,3,4,3,4,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,1,1,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,7/2,3,4,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,1,0,0,0,0,-1/2,0,0,-1,-8,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-16,-7,-7,-4,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-2,-2,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1/2,0,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-17,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-5,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,3/2,2,2,2,3,2,2,1,1,1,1,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1/2,0,0,0,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-9/2,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-3/2,-1,-2,-2,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-11/2,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-7,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,3,3,3,2,3,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,5,3,4,3,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,-1,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1/2,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-13/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3/2,0,-2,0,0,0,-1,0,1/2,0,0,0,0,0,-3,-1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-4,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,3,2,3/2,1,2,2,3/2,2,1,1,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,0,0,1,1,1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-7/2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 -8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,4,6,6,8,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,9/2,3,4,3,4,2,2,2,3,2,1,1,1,1,2,2,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-31,-15,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,5/2,2,2,1,1,1,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,-1,-7/2,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-23/2,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-9,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-6,-27/2,-6,-6,-4,-6,-3,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-11,-21,-13,-20,-20,-42 -4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,1,1,2,3/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,1/2,0,1/2,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 -4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,2,4,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,1,1,3/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-3,-8,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,5/2,2,4,2,5/2,2,1,1,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,1,2,2,3/2,2,2,2,3/2,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-3/2,-1,-4,-1,-1,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-5,-3,-4,-4,-11,-5,-11/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-10,-5,-6,-5,-11,-7,-11,-11,-23 -3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,2,1,0,0,0,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 -4,2,2,2,5/2,2,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,7/2,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,9/2,2,2,2,4,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,3,6,4,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3/2,1,1,1,5,3,4,3,7/2,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-18,-9,-9,-6,-17/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,3/2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-4,-2,-3,-2,-4,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,-7,-3,-2,-1,-5/2,-1,-1,0,-2,-1,-1,0,-3/2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-25/2,-8,-13,-13,-27 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1/2,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 -3,2,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,3,4,3,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,6,3,3,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,4,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-12,-6,-6,-4,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-2,-1,-5/2,-3,-7,-3,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,1,-1,0,1/2,0,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-5,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-13/2,-6,-11,-7,-11,-11,-22 -3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,3,2,2,3/2,2,2,2,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-13/2,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,3/2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-9/2,-6,-5,-10,-6,-10,-10,-20 -6,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,7/2,2,2,2,4,3,5,5,9,5,5,4,5,3,2,2,5/2,2,2,2,2,2,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,3,4,4,9,5,5,4,7,5,6,5,15/2,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,7,4,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-4,-7,-7,-27,-13,-13,-9,-14,-7,-9,-8,-29/2,-7,-7,-5,-8,-4,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-22,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-5,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1/2,1,2,2,2,2,2,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,2,2,3,2,3,2,3,2,3,2,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,1/2,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-2,-2,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-17,-8,-9,-6,-10,-6,-9,-8,-35/2,-10,-12,-10,-18,-12,-19,-19,-40 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,5/2,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-7/2,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1,-3,-3/2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-22 -5,3,3,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,7/2,3,6,4,7/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,3,2,5/2,3,6,4,4,3,4,3,7/2,3,5,3,3,2,3,2,5/2,3,5,3,3,2,3,2,3,2,3,2,3,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-2,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,1,1,1,0,0,0,0,0,1,0,1,3/2,2,2,2,2,2,3,2,2,2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-2,-3,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-15/2,-6,-11,-8,-25/2,-12,-26 -4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,3,3,5/2,3,3,4,3,3,2,3,2,2,5/2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21 -6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9/2,4,5,5,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,3,3,4,3,3,2,3,2,3,3,2,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-23,-11,-12,-8,-25/2,-6,-8,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3,2,2,2,3/2,2,2,2,0,0,0,1,3/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-1,0,0,0,1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-11,-5,-5,-3,-9/2,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-20,-10,-10,-6,-21/2,-5,-6,-5,-8,-4,-5,-4,-13/2,-4,-5,-4,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-4,-4,-2,-9/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,2,2,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-3,-3,-7,-3,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1/2,0,1,1,1,1,1,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-4,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-19,-10,-12,-10,-18,-12,-18,-18,-38 -4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,5/2,3,3,4,5/2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-5/2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-25 -4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-15/2,-8,-23,-11,-23/2,-8,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,-1,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-3,-9/2,-4,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,2,2,2,3/2,2,3,2,5/2,2,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-6,-11/2,-3,-5,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-17/2,-9,-16,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-13/2,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-19/2,-9,-18,-10,-12,-10,-18,-12,-37/2,-19,-39 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,5,5,7/2,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-8,-8,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-4,-10,-4,-4,-2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-8,-9,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-11,-13/2,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-39 -7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,6,6,10,7,9,9,33/2,9,10,7,10,6,7,6,10,5,5,4,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,3,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-11/2,-2,-2,-1,-2,0,0,1,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-10,-6,-9,-9,-18,-9,-11,-9,-16,-10,-16,-16,-46,-22,-22,-14,-22,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-7,-12,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-42,-20,-20,-13,-20,-11,-13,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-7,-6,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-8,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,0,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,4,-19,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-27,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-8,-10,-8,-16,-11,-18,-18,-34,-17,-17,-11,-16,-8,-10,-9,-17,-8,-9,-7,-12,-7,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-28,-14,-14,-10,-16,-8,-10,-9,-17,-9,-10,-7,-13,-8,-11,-10,-20,-10,-10,-7,-13,-7,-10,-9,-18,-10,-12,-10,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-14,-11,-20,-13,-19,-19,-38,-19,-21,-15,-24,-14,-20,-19,-39,-21,-25,-21,-38,-25,-38,-39,-79 -4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-3/2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-11/2,-7,-6,-11,-5,-5,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,1/2,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-9,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-5/2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-39 -5,3,5/2,2,2,2,3/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,5/2,2,5,3,7/2,4,5,4,9/2,5,9,5,5,4,5,3,3,3,5,3,7/2,3,3,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,3,7,4,4,3,4,3,4,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-10,-6,-15/2,-6,-10,-5,-5,-3,-7,-4,-11/2,-5,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-20,-10,-10,-6,-10,-5,-7,-5,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-3,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,2,2,3/2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1/2,0,0,0,0,1,0,0,0,1,0,0,1/2,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-4,-9/2,-4,-8,-5,-17/2,-9,-16,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-19/2,-9,-19,-10,-21/2,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 -4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,1/2,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-13,-13,-27 -5,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,5,3,2,2,5/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,1/2,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-6,-9,-9,-22,-10,-10,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,0,0,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-1/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,1/2,1,1,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,2,2,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-1/2,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-11/2,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-4,-4,-17/2,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-17/2,-4,-5,-4,-9,-4,-4,-3,-13/2,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-8,-18,-9,-10,-6,-21/2,-6,-8,-7,-13,-7,-8,-6,-21/2,-6,-10,-9,-20,-10,-10,-7,-25/2,-7,-10,-10,-19,-10,-13,-10,-39/2,-13,-20,-20,-42 -3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,3/2,0,1,1,1,1,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,1/2,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-7,-11/2,-10,-7,-11,-11,-23 -4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,2,2,3,2,3/2,2,2,2,5/2,3,4,3,3,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,1,1,1,1,2,1,1/2,0,1,1,2,2,1,1,3/2,1,1,1,3/2,1,2,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-7/2,-4,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,1,1,1,3/2,2,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-7/2,-4,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-2,0,0,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-4,-6,-6,-12,-6,-6,-4,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-8,-4,-4,-3,-6,-3,-3,-2,-6,-2,-5/2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-3,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-17/2,-7,-13,-8,-27/2,-14,-29 -3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-5,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-5/2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-3/2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24 -5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,2,3,2,3,3,9/2,3,4,3,5,4,5,5,5,3,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,2,5/2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-2,0,0,1,1,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-23,-11,-11,-7,-12,-6,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-4,-7,-7,-23,-11,-11,-7,-12,-6,-8,-6,-23/2,-5,-5,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-1,0,0,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,2,2,6,3,3,2,2,2,2,2,5/2,2,1,1,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-4,-5,-4,-9,-6,-9,-10,-20,-9,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-11,-24,-12,-13,-9,-15,-9,-12,-11,-45/2,-12,-14,-12,-22,-14,-22,-22,-44 -3,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-5/2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-5/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-11/2,-12,-6,-7,-6,-11,-7,-11,-11,-23 -3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,2,2,2,1,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-5,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,-1/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-12,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,3/2,2,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-5,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-13,-8,-25/2,-12,-26 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-9,-4,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19 -3,2,3,2,3,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,4,4,6,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-15/2,-4,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-3,-1,-1,-1,-5/2,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,5,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,0,0,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-8,-8,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-10,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-8,-16,-9,-11,-9,-33/2,-10,-16,-16,-33 -2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-6,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,3,2,5/2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-13/2,-7,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-3,-8,-4,-4,-3,-8,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-14,-8,-19/2,-8,-14,-9,-14,-14,-29 -2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,3,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1/2,0,1/2,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-13/2,-11,-5,-5,-3,-5,-5/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-28 -3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,17/2,4,4,3,5,3,3,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-33/2,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,11/2,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5/2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-4,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-2,-1,-2,0,0,0,0,1,2,2,3,2,2,2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-3,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-5,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-19,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-20,-10,-10,-7,-11,-6,-8,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-14,-15,-11,-18,-11,-15,-14,-27,-14,-17,-14,-27,-18,-27,-28,-57 -2,2,2,1,2,2,2,2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-13/2,-7,-5,-9,-5,-7,-13/2,-13,-7,-8,-7,-13,-9,-14,-14,-29 -2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,5/2,2,2,2,3/2,2,3,2,3,3,3,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-12,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,0,0,0,1,1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1/2,0,1,1,1/2,1,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-3/2,-2,-1,0,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-7/2,-3,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-7,-8,-5,-9,-5,-15/2,-7,-13,-7,-17/2,-7,-14,-9,-29/2,-14,-30 -2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1/2,0,1/2,0,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 -3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,7/2,2,3,3,2,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,5/2,2,2,3,1,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,1,2,1,1,1,2,2,2,2,-4,-2,-2,0,-1/2,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-15/2,-4,-6,-5,-8,-4,-5,-4,-13/2,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,0,-1/2,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-9/2,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,1,0,1,1,1,1/2,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,3,2,3,2,3,3,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-2,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-4,-7,-7,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-16,-8,-9,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-16,-11,-17,-17,-34 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-3/2,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-9/2,-9,-6,-10,-10,-20 -2,2,2,1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,3/2,1,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,1,1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,0,1,1,1,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-4,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,1,1,1,1,-5,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-5,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-12,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-13,-8,-13,-13,-27 -1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,3/2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-12,-15/2,-12,-12,-24 -1,1,1,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,-1,0,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,2,1,1,1,0,1,1,1,1/2,0,0,1,1,1,1,0,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,-7,-3,-3,-1,-2,-1,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-11,-7,-11,-11,-20,-9,-9,-6,-10,-5,-7,-6,-27/2,-6,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-19,-9,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-1,-5/2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,7/2,2,3,2,3,3,4,4,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-11,-5,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,2,2,3/2,1,1,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-21/2,-6,-7,-5,-10,-6,-9,-9,-11,-5,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-6,-7,-6,-11,-7,-11,-11,-22,-11,-12,-9,-15,-8,-11,-10,-20,-11,-13,-11,-22,-15,-23,-23,-46 -1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1/2,1,1,1,1,1,3/2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-8,-4,-5,-5,-11,-6,-7,-6,-12,-8,-12,-12,-25 -1,1,1/2,1,0,1,1,1,1,1,1/2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1/2,0,0,1,1,1,1,1,1/2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,5/2,2,4,2,3/2,1,2,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,1,1,1,2,2,3,2,2,1,1,1,3/2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-7/2,-2,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,0,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,2,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-14,-7,-7,-5,-9,-5,-6,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 -0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1/2,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,3/2,2,3/2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,1/2,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,7/2,2,3,3,5,3,3,2,5/2,2,2,1,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,-6,-3,-3,-2,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-12,-6,-8,-6,-11,-7,-10,-10,-21,-10,-10,-6,-19/2,-5,-6,-6,-12,-6,-7,-5,-17/2,-5,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-4,-11/2,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3,-13/2,-4,-6,-6,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-3/2,-1,-2,-1,-5,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-6,-17,-8,-7,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,1,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,2,2,5,3,3,2,3,2,3,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,1,3/2,2,2,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,2,1,0,0,-1/2,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,0,-1/2,0,0,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-7,-25/2,-7,-10,-9,-20,-11,-14,-11,-41/2,-13,-20,-20,-40 --1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1/2,0,0,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-10,-9/2,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-26 --3,-1,-1,0,-1,0,1/2,0,0,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,7/2,4,-2,0,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,4,2,5/2,2,4,3,3,3,5,3,2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,-5,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-11,-7,-21/2,-10,-20,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-11/2,-3,-5,-2,-7/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-3,-5/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-11/2,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-15,-7,-13/2,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,3,3,-6,-2,-2,-1,-1,0,-1,0,-2,0,-1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-9,-9,-9,-4,-9/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-5/2,-2,-3,-1,-3/2,0,-2,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-11/2,-5,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-19/2,-7,-12,-7,-10,-9,-20,-11,-13,-11,-20,-13,-19,-19,-39 --3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,-2,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,4,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-11,-11/2,-6,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-5/2,-4,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-8,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-3/2,-3,-1,-2,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-11,-13,-10,-19,-25/2,-19,-19,-38 --7,-3,-2,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,4,7,4,5,5,8,5,7,7,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,8,4,4,3,5,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-9,-9,-19,-10,-13,-11,-21,-14,-22,-22,-40,-20,-20,-13,-21,-11,-14,-11,-20,-10,-11,-7,-12,-7,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-13,-53/2,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-8,-6,-11,-7,-11,-11,-31,-15,-15,-10,-15,-8,-9,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,0,1,1,1,1,1,2,2,3,4,7,4,3,2,3,2,2,2,3,2,3,3,5,4,5,5,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-18,-9,-9,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,1,1,1,1,0,1,1,1,2,1,1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-9,-19,-10,-12,-10,-19,-12,-19,-19,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-9,-4,-5,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-10,-18,-11,-17,-17,-34,-17,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-38,-38,-77 --3,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,3,5/2,4,3,3,3,3,2,3,3,4,3,3,2,4,3,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,3,6,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1/2,0,0,-2,-1,-1,-1,-1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-2,-4,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-9/2,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-19,-19,-38 --3,-1,-1/2,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,-3,-1,-1,0,-1,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,5/2,2,4,2,2,2,4,3,3,3,3,2,2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-5,-6,-5,-11,-7,-11,-11,-20,-10,-10,-6,-11,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-4,-2,-2,-1,-2,-1,-1,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-14,-6,-13/2,-4,-7,-3,-3,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-1,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-14,-7,-7,-4,-8,-4,-11/2,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-12,-7,-9,-9,-19,-10,-25/2,-10,-18,-12,-19,-19,-39 --2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 --4,-1,-1,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,3,-5,-2,-2,-1,-3/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,5,3,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,7/2,2,3,3,2,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-8,-4,-4,-2,-9/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-6,-25/2,-8,-13,-13,-23,-11,-11,-7,-11,-6,-7,-5,-10,-4,-4,-3,-11/2,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,-2,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,7/2,2,3,3,4,3,3,2,5/2,2,3,3,7,4,4,3,7/2,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-5,-19/2,-6,-10,-10,-12,-6,-6,-4,-11/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-7,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-9,-6,-9,-8,-17,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-39/2,-13,-20,-20,-41 --2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-9/2,-9,-9/2,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,4,3,3,2,2,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,0,0,-1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,1/2,1,1,1,1,1,2,1,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,5,3,7/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,2,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,-1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-6,-6,-12,-6,-13/2,-5,-9,-5,-15/2,-7,-14,-7,-17/2,-7,-14,-9,-14,-14,-29 --3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1/2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-7/2,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-7/2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1/2,0,1/2,1,1,2,2,2,3/2,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,1,0,0,0,1,1,1,4,2,2,2,3,2,2,2,5/2,2,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,-6,-2,-1,0,0,1,1,1,3/2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,1,1,2,2,2,1,0,1,1,1,1,1,1,0,-1/2,0,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,1,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-3,-5,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-29,-14,-14,-9,-13,-7,-8,-7,-29/2,-7,-7,-5,-8,-5,-7,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-5,-10,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-6,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-2,-11/2,-3,-4,-4,-8,-5,-8,-8,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,3,3,4,4,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,0,1,2,2,3,3,4,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,-1/2,0,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-8,-6,-12,-8,-12,-13,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-5,-3,-4,-3,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-8,-7,-27/2,-7,-8,-6,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-45/2,-12,-15,-13,-24,-16,-24,-23,-47 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 --2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,-3,-1,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,3,2,3/2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-4,-2,-7/2,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-4,-3,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3,3,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,5,3,7/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,3,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,0,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-13,-7,-17/2,-7,-14,-9,-27/2,-14,-28 --1,0,0,0,0,1/2,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-4,-2,-2,-1,-2,0,0,-1/2,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-13/2,-10,-10,-21 --3,-1,-1,0,-1,0,0,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,2,2,5/2,2,2,1,0,0,0,1,3/2,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,1/2,1,1,1,-4,-1,-1,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-6,-10,-5,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-15/2,-4,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,3,2,3,3,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,2,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,3,-1,0,0,0,1/2,0,0,1,3,2,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-14,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-9/2,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-15/2,-4,-6,-6,-11,-5,-6,-5,-9,-6,-9,-8,-16,-8,-8,-6,-23/2,-6,-9,-9,-16,-9,-11,-9,-18,-12,-18,-18,-37 --1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-7/2,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23 --2,0,-1/2,0,-1,0,1/2,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1/2,1,-3,-1,-1,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,2,2,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,-1,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-21/2,-7,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-7,-14,-6,-13/2,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-2,-5,-2,-7/2,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,4,3,7/2,3,1,1,1/2,0,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,-2,-1,-3/2,-1,-6,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-11/2,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-11/2,-6,-13,-6,-7,-4,-7,-4,-11/2,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-14,-8,-19/2,-8,-15,-10,-16,-16,-33 --2,0,0,0,-1,0,0,1,1,1,0,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-13/2,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-13/2,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,-1/2,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,2,2,2,3,5/2,3,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-15,-15,-32 --6,-2,-2,-1,-2,0,1,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1/2,0,1,1,1,1,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-39/2,-10,-11,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-21,-21,-45,-22,-22,-14,-22,-12,-14,-11,-20,-10,-11,-8,-14,-8,-12,-11,-21,-11,-12,-8,-14,-8,-11,-9,-18,-9,-11,-9,-16,-10,-15,-14,-29,-14,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-27,-13,-12,-8,-12,-6,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-6,-29/2,-7,-7,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-17,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-6,-9,-9,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,2,1,1,1,1,1,1,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15/2,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,11/2,3,3,2,2,2,3,3,4,3,3,3,6,4,5,5,1,1,1,1,2,1,1,1,0,1,1,2,3,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-8,-15,-10,-17,-17,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-6,-4,-8,-5,-8,-8,-31/2,-8,-8,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-8,-17,-9,-11,-8,-15,-10,-15,-15,-31,-15,-16,-12,-20,-12,-17,-15,-30,-16,-20,-16,-30,-20,-30,-31,-63 --2,0,0,0,0,1/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-9/2,-7,-7/2,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,0,0,1/2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-32 --2,0,-1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,3/2,1,0,0,0,1,0,0,1/2,0,0,0,-1,-1,2,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-25,-12,-23/2,-7,-12,-6,-7,-6,-11,-5,-5,-4,-7,-4,-11/2,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-11/2,-4,-9,-5,-15/2,-8,-15,-7,-15/2,-5,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-15,-7,-13/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-2,0,0,0,-2,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,0,0,0,1,0,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-9/2,-2,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-9,-16,-10,-16,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-7/2,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1/2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-7,-9/2,-8,-4,-6,-6,-11,-6,-8,-6,-12,-15/2,-12,-12,-25 --3,-1,0,0,-1/2,0,0,1,0,0,0,0,1/2,1,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,-1/2,0,-2,-2,1,1,1,1,0,0,0,0,1,1,1,1,3/2,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-3,-5,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-7,-5,-9,-5,-7,-6,-14,-7,-8,-7,-27/2,-9,-14,-14,-30,-14,-14,-9,-13,-7,-9,-7,-12,-6,-6,-4,-8,-4,-6,-6,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-10,-6,-10,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-6,-4,-17/2,-5,-8,-8,-19,-9,-10,-6,-19/2,-4,-5,-4,-7,-3,-4,-2,-4,-3,-5,-5,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-13/2,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-5,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,2,3,2,1,1,1,1,1,1,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,2,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,1,1,1,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1/2,0,0,1,-2,0,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-11/2,-4,-6,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-10,-6,-10,-9,-21,-11,-12,-8,-27/2,-8,-10,-10,-19,-10,-12,-10,-41/2,-13,-20,-20,-41 --2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-11,-5,-6,-3,-5,-5/2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-7/2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-5,-12,-6,-7,-9/2,-8,-9/2,-6,-6,-11,-6,-7,-6,-12,-8,-12,-12,-24 --3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24,-11,-11,-7,-10,-5,-13/2,-6,-10,-5,-5,-4,-7,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-7/2,-4,-9,-4,-9/2,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-7,-4,-13/2,-6,-15,-7,-15/2,-5,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-3/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,3,5,3,5/2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,5/2,2,2,2,2,2,1,1,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-6,-12,-6,-11/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-6,-17/2,-8,-17,-8,-19/2,-6,-12,-7,-19/2,-8,-16,-8,-10,-9,-17,-11,-16,-16,-33 --2,-1/2,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1/2,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-21/2,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-16,-8,-8,-6,-11,-6,-8,-8,-15,-8,-10,-8,-15,-10,-15,-15,-30 --5,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-2,0,0,0,-1,0,0,0,-5/2,-1,-1,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,-1,-7,-3,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-5,-4,-8,-5,-9,-9,-16,-8,-8,-5,-9,-5,-6,-6,-25/2,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-8,-14,-8,-11,-10,-41/2,-11,-13,-11,-20,-13,-21,-21,-44,-22,-22,-14,-22,-12,-14,-11,-39/2,-10,-10,-7,-12,-7,-11,-11,-21,-10,-10,-7,-12,-7,-10,-8,-33/2,-8,-10,-8,-14,-9,-14,-14,-29,-14,-13,-8,-13,-7,-8,-7,-29/2,-7,-8,-6,-11,-6,-8,-8,-16,-8,-9,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-14,-9,-13,-13,-29,-14,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-15,-7,-8,-5,-9,-5,-6,-5,-19/2,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-6,-4,-15/2,-4,-4,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-11/2,-2,-2,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1/2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,4,4,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,3,3,2,2,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,7/2,2,2,2,4,3,4,4,8,4,4,2,2,1,1,1,3/2,1,1,1,2,2,3,3,6,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3,2,2,1,1/2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-17,-8,-9,-6,-9,-5,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-14,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-16,-9,-11,-10,-39/2,-10,-12,-9,-17,-10,-15,-15,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-17,-31,-20,-30,-29,-59 --2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,1/2,0,1/2,0,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24,-12,-12,-15/2,-12,-6,-7,-11/2,-10,-5,-5,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-7/2,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-7,-4,-7,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-4,-2,-3,-5/2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-16,-16,-32 --2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,1/2,1,1,1,1/2,1,-1,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,-1,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-6,-12,-8,-27/2,-14,-28,-14,-14,-9,-14,-7,-9,-7,-12,-6,-6,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-3,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-1,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-18,-8,-17/2,-5,-8,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-7/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-7,-17,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-13/2,-4,-8,-4,-5,-4,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-10,-10,-22,-11,-11,-8,-14,-8,-21/2,-10,-21,-11,-27/2,-11,-20,-13,-39/2,-19,-39 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-14,-7,-7,-4,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-3/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-5/2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-18,-9,-9,-13/2,-12,-6,-8,-8,-17,-9,-11,-9,-16,-21/2,-16,-16,-33 --2,0,0,0,-1/2,0,-1,-1,-1,0,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,-1,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-7,-13,-6,-7,-6,-11,-7,-10,-10,-20,-10,-10,-7,-25/2,-8,-11,-10,-21,-11,-14,-11,-39/2,-13,-20,-20,-42,-20,-20,-13,-41/2,-11,-14,-11,-20,-10,-10,-7,-12,-7,-10,-10,-22,-11,-11,-8,-25/2,-7,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-13,-13,-8,-12,-7,-9,-8,-16,-8,-8,-6,-23/2,-7,-10,-9,-18,-9,-9,-6,-21/2,-6,-9,-8,-14,-7,-8,-7,-27/2,-8,-12,-12,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-6,-6,-4,-15/2,-4,-5,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-10,-5,-6,-4,-15/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-21,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3/2,2,2,3,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,6,5,9,5,5,4,9/2,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,7/2,2,3,2,3,2,2,2,7/2,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,1,1,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-15/2,-4,-6,-5,-13,-7,-8,-6,-25/2,-8,-13,-13,-27,-13,-14,-9,-27/2,-7,-9,-7,-12,-6,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-15/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-26,-13,-13,-8,-13,-7,-9,-7,-15,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-23/2,-6,-8,-7,-15,-8,-10,-8,-15,-9,-14,-14,-29,-14,-14,-10,-16,-9,-11,-10,-21,-11,-12,-10,-35/2,-11,-16,-16,-32,-16,-18,-13,-43/2,-12,-17,-15,-31,-17,-20,-16,-61/2,-20,-30,-30,-60 --1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-13,-7,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-7,-13/2,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-11,-6,-7,-6,-14,-7,-8,-6,-12,-7,-10,-10,-21,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-21/2,-20,-13,-20,-20,-40 --2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,0,0,1/2,0,-1,0,-1,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-6,-11,-6,-19/2,-10,-19,-10,-21/2,-8,-14,-8,-21/2,-10,-20,-11,-27/2,-11,-20,-13,-20,-21,-42,-20,-41/2,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-10,-22,-11,-11,-7,-12,-6,-17/2,-8,-15,-8,-19/2,-8,-14,-8,-12,-12,-25,-12,-13,-8,-13,-7,-9,-8,-15,-8,-17/2,-6,-12,-7,-19/2,-9,-18,-9,-19/2,-7,-11,-6,-8,-8,-14,-7,-17/2,-7,-14,-8,-25/2,-12,-27,-13,-25/2,-8,-12,-6,-17/2,-7,-12,-6,-6,-5,-9,-5,-15/2,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-8,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-7,-4,-13/2,-6,-12,-6,-13/2,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-5,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,4,11/2,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,2,2,4,2,5/2,2,3,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,3,4,3,9/2,5,9,5,4,3,3,2,3,2,2,2,3/2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,3/2,1,2,1,1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,3/2,1,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,1,1,1,1,1,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-9,-14,-7,-17/2,-7,-12,-6,-7,-5,-9,-5,-15/2,-7,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-15/2,-8,-15,-7,-8,-5,-8,-5,-7,-7,-13,-7,-9,-7,-12,-8,-12,-12,-26,-12,-25/2,-8,-12,-7,-9,-8,-15,-8,-17/2,-6,-11,-6,-19/2,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-21/2,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-23/2,-10,-21,-11,-25/2,-10,-18,-11,-33/2,-16,-33,-16,-17,-12,-22,-13,-35/2,-16,-31,-17,-20,-16,-31,-20,-30,-30,-60 --2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-17/2,-18,-9,-9,-6,-9,-5,-7,-6,-13,-6,-7,-11/2,-10,-6,-10,-10,-19,-10,-11,-8,-14,-8,-10,-10,-20,-11,-14,-11,-20,-13,-21,-21,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-15/2,-15,-8,-10,-8,-14,-8,-12,-12,-25,-12,-12,-8,-13,-7,-9,-8,-15,-15/2,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-11,-6,-8,-15/2,-15,-15/2,-9,-7,-14,-17/2,-13,-25/2,-26,-25/2,-12,-8,-12,-6,-8,-7,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-17/2,-18,-8,-8,-11/2,-9,-9/2,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,7,4,4,3,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,5,5,9,5,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,2,2,2,2,2,3/2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-13/2,-7,-5,-8,-4,-6,-5,-12,-6,-7,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-13/2,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-15/2,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-9,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-17,-9,-12,-10,-20,-21/2,-12,-19/2,-18,-11,-16,-16,-33,-16,-17,-12,-21,-25/2,-17,-16,-31,-17,-20,-16,-31,-20,-30,-30,-61 --5,-2,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-4,-8,-5,-9,-10,-22,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-7,-5,-10,-7,-11,-11,-22,-11,-12,-8,-14,-8,-11,-9,-18,-10,-12,-10,-19,-12,-19,-18,-37,-18,-18,-12,-18,-10,-13,-11,-20,-10,-11,-8,-15,-9,-13,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-7,-8,-7,-13,-8,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34,-17,-17,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-7,-11,-11,-22,-11,-11,-8,-14,-8,-11,-9,-18,-9,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-15,-16,-12,-20,-11,-15,-14,-28,-15,-19,-15,-28,-18,-28,-29,-59,-29,-29,-19,-29,-15,-18,-15,-27,-14,-15,-11,-18,-11,-16,-15,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-16,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-16,-10,-14,-14,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-34,-17,-17,-12,-19,-10,-13,-11,-21,-11,-13,-10,-17,-10,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-28,-56,-28,-28,-18,-28,-15,-18,-15,-27,-13,-14,-10,-16,-10,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-11,-8,-15,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-15,-15,-32,-16,-16,-11,-17,-9,-10,-8,-16,-8,-9,-7,-12,-7,-10,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-8,-6,-11,-7,-11,-11,-45/2,-11,-11,-7,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-7,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-11,-16,-15,-29,-16,-19,-16,-29,-19,-30,-30,-60,-30,-30,-20,-31,-17,-21,-17,-32,-16,-16,-11,-19,-11,-16,-15,-30,-15,-15,-11,-18,-10,-12,-11,-21,-11,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-9,-7,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-16,-9,-13,-12,-25,-13,-16,-13,-23,-15,-24,-24,-49,-24,-25,-17,-26,-14,-17,-15,-28,-14,-16,-12,-20,-12,-17,-16,-31,-16,-17,-12,-21,-12,-17,-16,-31,-17,-20,-16,-29,-19,-28,-27,-55,-27,-28,-19,-31,-17,-22,-19,-37,-19,-22,-17,-29,-18,-27,-26,-53,-27,-28,-20,-32,-19,-26,-24,-48,-26,-31,-25,-46,-31,-47,-47,-94,-47,-47,-31,-48,-26,-31,-26,-47,-24,-26,-19,-31,-18,-25,-24,-47,-23,-24,-16,-25,-14,-19,-17,-32,-17,-19,-15,-28,-17,-25,-25,-50,-25,-25,-17,-27,-15,-18,-15,-28,-14,-16,-12,-21,-12,-17,-16,-33,-17,-18,-12,-20,-12,-17,-16,-31,-17,-20,-16,-30,-20,-30,-30,-62,-30,-30,-19,-29,-16,-20,-16,-30,-15,-16,-12,-20,-12,-16,-15,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-11,-20,-13,-19,-19,-40,-20,-20,-13,-19,-10,-13,-11,-21,-11,-12,-9,-16,-10,-14,-14,-28,-14,-14,-9,-15,-9,-12,-10,-20,-11,-13,-11,-20,-13,-20,-20,-41,-20,-21,-14,-22,-12,-14,-12,-22,-11,-13,-10,-17,-10,-15,-14,-29,-15,-16,-11,-19,-11,-14,-13,-25,-13,-16,-13,-23,-14,-21,-20,-41,-20,-21,-14,-23,-12,-15,-13,-25,-13,-14,-10,-18,-11,-17,-16,-32,-16,-18,-13,-21,-13,-19,-18,-35,-19,-23,-18,-33,-22,-33,-33,-67,-33,-34,-23,-35,-19,-23,-20,-37,-19,-21,-16,-27,-16,-22,-21,-41,-21,-22,-16,-26,-15,-20,-18,-35,-19,-22,-18,-33,-22,-33,-32,-65,-32,-33,-22,-35,-20,-26,-23,-43,-23,-26,-20,-35,-23,-34,-33,-67,-34,-36,-26,-42,-25,-35,-33,-64,-35,-41,-34,-62,-41,-61,-61,-123 --2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-5/2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-9,-7,-13,-17/2,-14,-14,-28,-14,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-7/2,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-14,-15/2,-9,-15/2,-14,-9,-14,-14,-30,-14,-14,-19/2,-15,-8,-10,-8,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-9/2,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-15/2,-15,-8,-10,-8,-14,-9,-13,-13,-27,-13,-14,-9,-15,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-26,-13,-14,-10,-16,-9,-12,-23/2,-24,-13,-15,-12,-22,-15,-23,-23,-46,-23,-23,-15,-24,-13,-15,-12,-23,-23/2,-12,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-14,-7,-7,-5,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-15/2,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-17/2,-16,-10,-16,-16,-33,-16,-16,-11,-17,-9,-11,-19/2,-18,-9,-10,-7,-13,-7,-10,-10,-20,-10,-10,-7,-13,-7,-10,-17/2,-17,-9,-10,-17/2,-16,-21/2,-16,-16,-32,-16,-16,-11,-17,-10,-13,-11,-21,-11,-12,-9,-17,-11,-16,-16,-33,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --2,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-11/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-11,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-9/2,-5,-11,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-17/2,-7,-13,-6,-13/2,-4,-9,-5,-15/2,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-15/2,-5,-8,-4,-6,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-9,-7,-13,-8,-27/2,-14,-28,-14,-27/2,-9,-13,-7,-8,-7,-12,-6,-13/2,-4,-8,-5,-7,-6,-13,-6,-6,-4,-8,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-14,-9,-29/2,-14,-30,-14,-29/2,-10,-15,-8,-10,-8,-15,-7,-15/2,-5,-9,-5,-8,-7,-14,-7,-7,-5,-9,-4,-11/2,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-13/2,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-11/2,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24,-12,-12,-8,-13,-7,-8,-7,-13,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-8,-15,-8,-19/2,-8,-14,-9,-13,-13,-27,-13,-27/2,-10,-15,-8,-21/2,-9,-18,-9,-11,-8,-15,-9,-27/2,-13,-26,-13,-27/2,-10,-16,-9,-25/2,-12,-24,-13,-15,-12,-22,-14,-22,-22,-46,-22,-45/2,-15,-24,-13,-31/2,-12,-23,-12,-25/2,-9,-15,-9,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-15,-8,-9,-7,-13,-8,-25/2,-12,-25,-12,-12,-8,-12,-6,-17/2,-7,-14,-7,-7,-5,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-10,-6,-8,-8,-15,-8,-9,-7,-14,-9,-15,-15,-31,-15,-29/2,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-12,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-9,-5,-6,-5,-11,-5,-11/2,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-13/2,-6,-10,-5,-11/2,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-15/2,-6,-11,-5,-6,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-21/2,-8,-16,-10,-16,-16,-33,-16,-33/2,-11,-18,-10,-23/2,-10,-17,-9,-10,-7,-12,-7,-21/2,-10,-21,-10,-10,-7,-13,-7,-19/2,-8,-17,-9,-21/2,-9,-17,-11,-16,-16,-32,-16,-16,-11,-18,-10,-13,-11,-21,-11,-12,-9,-17,-11,-33/2,-16,-34,-17,-18,-13,-21,-12,-17,-16,-31,-17,-20,-17,-30,-20,-30,-30,-61 --1,0,0,0,0,1,1,1,0,0,0,1/2,0,1/2,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-5/2,-3,-2,-4,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-5/2,-5,-2,-3,-5/2,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-19/2,-20,-19/2,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-9/2,-9,-4,-4,-3,-6,-5/2,-4,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-7/2,-6,-3,-5,-4,-10,-9/2,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-6,-8,-15/2,-15,-8,-9,-8,-14,-9,-14,-14,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-11/2,-10,-11/2,-8,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-9,-9/2,-6,-9/2,-10,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-7,-4,-5,-7/2,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-11,-11/2,-6,-5,-10,-6,-10,-10,-22,-21/2,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-13/2,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-12,-6,-8,-7,-13,-13/2,-7,-6,-11,-7,-10,-10,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-20,-20,-40 --2,0,0,0,-1/2,0,0,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-2,-2,-11/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-4,-8,-4,-6,-5,-19/2,-6,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-9/2,-3,-5,-5,-12,-6,-6,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-10,-5,-6,-4,-13/2,-4,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-7,-6,-15,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-15/2,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-27/2,-9,-14,-14,-29,-14,-14,-9,-27/2,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-13/2,-3,-4,-3,-9,-5,-6,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-17/2,-4,-5,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-27,-13,-14,-9,-27/2,-7,-8,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-6,-6,-4,-15/2,-4,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-1,-3/2,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-17/2,-5,-8,-8,-15,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-31/2,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-15,-7,-7,-5,-17/2,-4,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-9,-8,-15,-8,-9,-7,-27/2,-9,-14,-14,-28,-14,-15,-10,-16,-9,-11,-9,-18,-9,-10,-8,-15,-9,-13,-13,-26,-13,-14,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-22,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-29/2,-8,-12,-11,-22,-11,-11,-7,-12,-7,-9,-8,-15,-7,-8,-6,-25/2,-8,-12,-12,-24,-12,-12,-8,-25/2,-6,-8,-6,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-10,-6,-8,-8,-15,-8,-10,-8,-29/2,-10,-15,-15,-33,-16,-15,-9,-14,-7,-9,-7,-15,-7,-7,-5,-9,-5,-7,-6,-14,-7,-7,-4,-15/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-17/2,-4,-6,-5,-11,-5,-6,-4,-13/2,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-4,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-8,-6,-11,-5,-6,-5,-19/2,-6,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-15,-15,-33,-16,-16,-11,-35/2,-10,-12,-10,-17,-8,-9,-7,-25/2,-8,-11,-10,-21,-10,-11,-8,-25/2,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-31,-15,-16,-11,-35/2,-10,-13,-11,-19,-10,-11,-9,-17,-11,-16,-15,-34,-17,-18,-13,-22,-13,-18,-16,-31,-17,-20,-16,-30,-20,-30,-30,-61 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-4,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-26,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-11/2,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-5/2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-6,-9,-5,-6,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-11,-9,-17,-11,-16,-16,-34 --2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-2,-1,-5/2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-7/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-8,-4,-11/2,-4,-8,-4,-5,-3,-6,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17,-8,-17/2,-5,-8,-4,-5,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-5,-13/2,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-13/2,-6,-11,-5,-11/2,-4,-7,-4,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-3,-8,-5,-8,-7,-16,-8,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-7,-4,-5,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-11/2,-4,-8,-5,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-11,-6,-13/2,-5,-9,-6,-17/2,-8,-17,-8,-9,-6,-11,-6,-17/2,-8,-15,-8,-9,-7,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-19/2,-8,-14,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-11/2,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-5,-10,-6,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-3,-6,-3,-3,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-5,-4,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-4,-11/2,-5,-10,-5,-11/2,-4,-7,-4,-11/2,-5,-10,-5,-6,-5,-11,-7,-21/2,-10,-22,-11,-11,-7,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-5,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-11,-7,-11,-11,-21,-10,-21/2,-7,-11,-6,-15/2,-6,-13,-6,-7,-5,-10,-6,-19/2,-10,-23,-11,-12,-8,-14,-8,-12,-11,-21,-11,-27/2,-11,-21,-13,-20,-20,-41 --2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-7/2,-4,-5/2,-4,-2,-4,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-7/2,-8,-7/2,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-5,-9,-9/2,-5,-4,-7,-4,-6,-6,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-18,-8,-8,-5,-7,-3,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-9/2,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-12,-11/2,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-7/2,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-19/2,-12,-9,-17,-11,-17,-17,-35 --5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,-1,0,1,1,1,0,0,0,0,-3/2,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-19,-9,-9,-6,-9,-5,-6,-5,-19/2,-5,-6,-4,-7,-4,-5,-5,-12,-6,-7,-5,-8,-4,-6,-4,-17/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-8,-5,-7,-6,-27/2,-7,-8,-7,-14,-9,-13,-13,-29,-14,-14,-9,-14,-7,-9,-7,-13,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-4,-3,-6,-3,-5,-5,-14,-7,-8,-5,-9,-5,-6,-6,-25/2,-6,-8,-6,-12,-8,-13,-13,-25,-12,-12,-8,-12,-6,-7,-6,-23/2,-6,-7,-5,-9,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-19/2,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-8,-5,-8,-4,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-7,-5,-9,-5,-8,-8,-31/2,-8,-10,-8,-14,-9,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-33/2,-8,-9,-6,-11,-6,-8,-7,-13,-6,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-9,-8,-17,-8,-8,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-23,-11,-12,-8,-13,-7,-8,-7,-27/2,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-35/2,-9,-10,-8,-14,-8,-12,-12,-28,-14,-14,-9,-15,-9,-12,-11,-22,-12,-14,-12,-23,-15,-22,-22,-46,-22,-22,-15,-23,-12,-15,-12,-22,-11,-11,-8,-13,-8,-11,-10,-24,-11,-11,-7,-12,-7,-9,-8,-15,-8,-9,-7,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-25/2,-6,-7,-5,-10,-6,-9,-9,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-11,-8,-15,-10,-15,-16,-34,-16,-15,-9,-14,-7,-9,-7,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-18,-9,-9,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-23/2,-6,-6,-5,-9,-6,-9,-9,-23,-11,-10,-6,-10,-6,-8,-6,-25/2,-6,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-15,-15,-33,-16,-17,-11,-17,-9,-12,-10,-37/2,-9,-10,-8,-14,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-8,-35/2,-10,-12,-10,-18,-11,-17,-17,-31,-15,-16,-11,-17,-9,-12,-10,-19,-10,-11,-9,-16,-10,-15,-15,-34,-17,-18,-13,-22,-13,-18,-17,-33,-18,-21,-17,-31,-21,-32,-32,-64 --2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-5/2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-7/2,-7,-4,-5,-5,-12,-11/2,-6,-7/2,-6,-3,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-9/2,-9,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-9,-9/2,-5,-4,-8,-5,-7,-7,-17,-8,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-16,-10,-16,-16,-33 --2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-10,-4,-9/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-15/2,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-17/2,-8,-16,-8,-15/2,-4,-8,-4,-5,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-7,-7,-5,-7,-4,-5,-5,-10,-5,-11/2,-4,-8,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-25/2,-12,-26,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-8,-4,-5,-5,-13,-6,-13/2,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-5,-10,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-9,-4,-11/2,-4,-9,-6,-19/2,-9,-16,-8,-17/2,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-5,-15/2,-8,-18,-9,-9,-7,-12,-7,-9,-9,-18,-9,-11,-9,-17,-11,-17,-17,-35 --1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,3/2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-5/2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-9/2,-8,-4,-4,-3,-6,-3,-4,-3,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-13,-6,-6,-3,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-3/2,-3,-3/2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-13/2,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-12,-6,-6,-9/2,-8,-4,-6,-6,-13,-13/2,-8,-6,-12,-8,-12,-12,-26 --3,-1,-1,-1,-5/2,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-10,-9,-19,-9,-9,-6,-19/2,-5,-6,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,4,3,3,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-21/2,-6,-10,-10,-19,-9,-8,-5,-17/2,-4,-6,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-9/2,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-17/2,-4,-5,-4,-10,-5,-5,-3,-11/2,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-9,-9,-6,-19/2,-5,-6,-5,-13,-6,-7,-5,-9,-5,-7,-7,-17,-8,-9,-6,-9,-5,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-31,-15,-16,-10,-31/2,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-5,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-19/2,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-7,-3,-3,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-4,-6,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-12,-6,-6,-4,-11/2,-3,-5,-4,-9,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-19/2,-5,-7,-7,-12,-6,-7,-6,-23/2,-7,-11,-11,-20,-10,-10,-6,-21/2,-5,-6,-5,-11,-5,-6,-5,-19/2,-6,-10,-10,-20,-10,-10,-7,-25/2,-7,-10,-10,-21,-11,-13,-11,-21,-14,-21,-21,-43 --1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-7/2,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-3/2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-8,-7/2,-4,-3,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-9,-9/2,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-9,-9/2,-6,-5,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-26 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-5/2,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-5/2,-2,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-2,-7/2,-4,-8,-4,-7/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-7/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,1,1,1,1,1,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-1,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-15/2,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-2,-5,-3,-9/2,-4,-7,-3,-7/2,-3,-6,-3,-5,-4,-8,-4,-9/2,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-11/2,-5,-11,-5,-5,-4,-7,-4,-13/2,-6,-14,-6,-13/2,-4,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-25/2,-13,-26,-12,-25/2,-8,-12,-6,-8,-7,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-11,-5,-9/2,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19,-9,-17/2,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-12,-6,-6,-4,-5,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-11/2,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-9,-9,-16,-8,-8,-5,-8,-4,-11/2,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-11,-9,-17,-11,-35/2,-17,-35 --2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-3/2,-2,-5/2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-9/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-7/2,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-9/2,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-12,-24,-23/2,-12,-8,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --6,-3,-3,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-3,-6,-6,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-15/2,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-7,-13,-6,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-5,-8,-8,-33/2,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-16,-10,-16,-16,-27,-13,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-23/2,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-13,-8,-13,-13,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11,-5,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-8,-17,-9,-12,-10,-18,-11,-17,-17,-29,-14,-14,-9,-14,-7,-9,-7,-12,-6,-7,-5,-10,-6,-8,-7,-29/2,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19,-9,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-11,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-30,-14,-14,-9,-15,-8,-11,-9,-17,-9,-10,-8,-14,-9,-13,-12,-51/2,-13,-14,-10,-17,-10,-13,-12,-24,-13,-15,-13,-24,-16,-24,-24,-47,-23,-23,-15,-22,-12,-15,-13,-24,-12,-13,-9,-14,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-9,-8,-17,-9,-10,-7,-13,-8,-12,-12,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-11,-17,-17,-35,-17,-17,-10,-15,-8,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-27/2,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-23/2,-5,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-7,-22,-11,-11,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-29/2,-7,-8,-5,-8,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-8,-35/2,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-9,-16,-10,-16,-15,-32,-16,-16,-11,-17,-9,-11,-9,-16,-8,-9,-7,-13,-8,-11,-10,-43/2,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-29,-14,-15,-10,-16,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-59/2,-14,-15,-11,-18,-11,-15,-14,-28,-16,-20,-17,-31,-20,-31,-31,-64 --2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-5/2,-4,-3,-8,-4,-4,-7/2,-8,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,3/2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1/2,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,-14,-13/2,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-9/2,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-9/2,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,-32 --2,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,0,0,1,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-5,-2,-7/2,-3,-8,-4,-9/2,-4,-8,-5,-15/2,-8,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-3,-10,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-5,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,3,2,2,2,1,1,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,1,1,1,-2,0,-1/2,0,0,0,0,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-15,-7,-13/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-3,-1,-3/2,-2,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-13,-13,-23,-11,-23/2,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-4,-6,-5,-10,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-5,-6,-5,-9,-6,-17/2,-8,-17,-8,-15/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-11,-5,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-11/2,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-5,-5,-10,-5,-11/2,-4,-8,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-33 --1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-3/2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-5/2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-7,-11/2,-11,-7,-11,-11,-23 --3,-1,0,0,0,0,0,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-9,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-2,-6,-3,-3,-3,-6,-3,-5,-5,-7,-3,-3,-1,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-2,-7/2,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-7,-3,-3,-2,-5/2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-7/2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-19/2,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-4,-2,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-17,-8,-9,-6,-9,-5,-6,-4,-8,-4,-5,-4,-13/2,-4,-6,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-13,-7,-8,-7,-27/2,-9,-14,-14,-24,-12,-12,-8,-12,-6,-7,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-10,-9,-18,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-12,-6,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-11,-5,-6,-4,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-13/2,-4,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-15/2,-4,-6,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-9,-5,-7,-6,-11,-7,-11,-11,-18,-9,-9,-6,-19/2,-5,-7,-6,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-9,-12,-10,-18,-11,-17,-17,-36 --1,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1/2,-3,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,-4,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-7/2,-4,-4,-8,-5,-8,-8,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,1,0,0,1/2,1,1,1,0,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,1,1,1,0,0,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-9/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-9/2,-3,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-3/2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,0,0,-1,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-2,-3,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-9/2,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-3/2,-2,-9,-4,-7/2,-2,-4,-2,-2,-2,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-3,-7,-4,-13/2,-6,-15,-7,-13/2,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-4,-7,-5,-8,-8,-14,-7,-7,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-4,-6,-4,-6,-6,-13,-6,-13/2,-4,-8,-4,-6,-6,-13,-7,-17/2,-7,-13,-8,-25/2,-13,-27 --1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-9/2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-8,-7/2,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-9/2,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-5/2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-11/2,-13,-6,-6,-7/2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 --2,-1,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,1,1,2,2,-1,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-3,-6,-3,-4,-4,-17/2,-4,-6,-5,-10,-6,-10,-10,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-5,-3,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-19/2,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-4,-5,-8,-4,-4,-3,-5,-3,-6,-6,-23/2,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-20,-9,-9,-6,-10,-5,-7,-6,-23/2,-6,-6,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-11,-17,-17,-28,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-5,-4,-15/2,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-4,-19/2,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-6,-25/2,-6,-8,-6,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-25/2,-6,-6,-4,-7,-4,-6,-6,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-12,-23,-11,-12,-8,-14,-7,-9,-8,-31/2,-8,-8,-6,-12,-7,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-14,-11,-21,-14,-22,-22,-45 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1/2,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-7/2,-6,-11/2,-12,-6,-6,-4,-8,-4,-6,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-24 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,1,-2,0,0,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,-1,0,0,0,0,0,1/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-3,-3,-9,-4,-9/2,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-11/2,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-2,-7/2,-4,-6,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-7/2,-2,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-15/2,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-9/2,-4,-8,-4,-9/2,-4,-8,-5,-15/2,-7,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-14,-7,-15/2,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 --1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1/2,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-7,-3,-4,-3,-5,-5/2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-7/2,-6,-11/2,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 --2,0,0,0,1/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-12,-6,-6,-4,-11/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-11/2,-4,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-4,-2,-2,-2,-11/2,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-7/2,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1/2,0,0,0,1,1,2,2,3/2,1,0,0,-6,-2,-2,-2,-7/2,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,0,1,3/2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-17,-8,-8,-5,-9,-4,-5,-4,-11,-5,-5,-4,-13/2,-4,-6,-6,-11,-5,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-9,-14,-14,-23,-11,-12,-8,-23/2,-6,-7,-5,-10,-5,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-11/2,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-13/2,-4,-5,-5,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-4,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-12,-6,-7,-6,-11,-7,-11,-11,-21,-10,-10,-7,-11,-6,-7,-6,-12,-6,-6,-4,-13/2,-4,-5,-5,-13,-6,-7,-5,-17/2,-4,-6,-5,-11,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-14,-7,-8,-6,-21/2,-6,-9,-9,-19,-9,-10,-7,-13,-7,-9,-8,-17,-9,-12,-10,-35/2,-11,-17,-17,-36 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-11/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-4,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-11/2,-6,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-9/2,-3,-5,-3,-9/2,-4,-10,-4,-9/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-17,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-9/2,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-3,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-13,-8,-25/2,-13,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-10,-5,-11/2,-4,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-11,-7,-10,-10,-21,-10,-9,-6,-10,-5,-6,-5,-11,-5,-11/2,-4,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-5,-4,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-19/2,-6,-9,-5,-13/2,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-17/2,-8,-17,-9,-21/2,-8,-16,-10,-33/2,-16,-34 --1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-5,-3,-5,-9/2,-10,-9/2,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-5,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-4,-7/2,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-9/2,-9,-9/2,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-8,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-10,-4,-4,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-11/2,-11,-11/2,-6,-5,-9,-11/2,-8,-8,-17,-8,-9,-6,-10,-6,-8,-8,-16,-17/2,-10,-8,-16,-10,-16,-16,-33 --2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-37/2,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-8,-4,-4,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-6,-13,-8,-12,-12,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-9,-7,-12,-7,-9,-8,-16,-8,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-12,-7,-11,-10,-43/2,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-35,-17,-17,-11,-17,-9,-10,-8,-15,-7,-8,-6,-10,-6,-8,-8,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-9,-8,-33/2,-8,-8,-5,-8,-4,-5,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-10,-16,-16,-34,-17,-17,-11,-18,-9,-11,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-11,-6,-8,-7,-15,-7,-8,-6,-12,-7,-10,-9,-37/2,-9,-10,-6,-10,-5,-7,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-24,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-9,-7,-12,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-12,-7,-11,-11,-22,-11,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-25,-25,-42,-20,-20,-13,-19,-10,-13,-10,-19,-9,-10,-7,-13,-8,-11,-10,-21,-10,-10,-7,-11,-6,-8,-7,-13,-6,-7,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-16,-16,-32,-16,-16,-11,-17,-9,-12,-10,-18,-9,-10,-7,-12,-6,-8,-7,-15,-7,-7,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-5,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-20,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-9,-9,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-25,-12,-13,-9,-15,-9,-13,-12,-24,-12,-14,-11,-20,-13,-20,-20,-42,-21,-21,-14,-21,-11,-14,-11,-20,-10,-11,-9,-16,-10,-14,-13,-25,-12,-13,-9,-14,-8,-10,-9,-19,-10,-12,-9,-17,-11,-17,-18,-37,-19,-20,-14,-22,-12,-16,-14,-26,-13,-15,-12,-22,-14,-20,-19,-38,-19,-20,-15,-25,-15,-20,-18,-34,-18,-22,-18,-33,-22,-33,-33,-66 --1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-4,-3,-6,-4,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-21,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-7/2,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16,-8,-8,-5,-8,-4,-6,-9/2,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-8,-13/2,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-10,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 --1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-3/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-15,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-9/2,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-6,-2,-5/2,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-4,-3,-6,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-5,-3,-5,-5,-9,-4,-9/2,-3,-4,-2,-4,-3,-7,-3,-7/2,-3,-5,-3,-9/2,-4,-8,-4,-9/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-11,-5,-11/2,-4,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-22,-10,-10,-6,-10,-5,-6,-5,-10,-4,-9/2,-3,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-4,-15/2,-8,-16,-8,-15/2,-4,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-10,-4,-9/2,-3,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-6,-7,-5,-9,-6,-10,-10,-20,-10,-19/2,-6,-10,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-13/2,-6,-12,-6,-6,-4,-7,-4,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-11,-6,-15/2,-6,-13,-6,-7,-5,-11,-7,-10,-9,-19,-9,-19/2,-7,-12,-7,-10,-9,-17,-9,-10,-8,-16,-10,-16,-16,-33 -0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-5/2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1/2,-1,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-9/2,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-3/2,-4,-2,-4,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-11/2,-11,-7,-10,-10,-22 -0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-6,-3,-3,-2,-7/2,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-4,-11,-5,-6,-4,-11/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-6,-4,-11/2,-3,-4,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,1/2,0,0,0,3,2,2,2,3/2,2,2,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-15/2,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-6,-4,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-5,-5,-11,-6,-7,-6,-21/2,-7,-12,-12,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-6,-4,-8,-4,-6,-6,-11,-5,-5,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-4,-15/2,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-19,-9,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-7,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-6,-21/2,-6,-10,-10,-19,-9,-10,-7,-23/2,-7,-10,-9,-18,-10,-12,-10,-35/2,-11,-17,-17,-34 -1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-4,-2,-2,-5/2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-6,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-19 -1,1,1/2,0,1,1,1/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-1,0,-1/2,0,0,0,0,0,1,1,1/2,0,1,1,1,1,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,0,-3/2,-2,0,0,1/2,1,0,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-7,-7,-4,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-9/2,-3,-4,-2,-7/2,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-9,-4,-5,-3,-4,-2,-7/2,-3,-6,-3,-7/2,-3,-5,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 -1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-3/2,-1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-2,-2,0,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-6,-7/2,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-13/2,-10,-10,-21 -1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,4,3,3,2,2,2,2,2,3/2,1,1,1,2,2,2,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-3,-5,-5,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,1,4,3,3,2,3,2,2,1,1/2,1,1,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-8,-5,-8,-8,-21,-10,-10,-6,-10,-5,-6,-4,-15/2,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-13,-6,-6,-4,-6,-3,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25,-12,-12,-8,-14,-7,-8,-7,-27/2,-7,-8,-6,-10,-5,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-5,-5,-3,-5,-3,-4,-3,-11/2,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-4,-6,-6,-25/2,-6,-8,-6,-11,-7,-10,-10,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-15,-7,-8,-6,-10,-5,-6,-6,-23/2,-6,-6,-4,-8,-5,-9,-9,-17,-8,-8,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-8,-13,-8,-12,-11,-43/2,-12,-14,-11,-21,-13,-20,-20,-40 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-5/2,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-11,-6,-7,-11/2,-11,-7,-10,-10,-21 -2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-7/2,-4,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-5/2,-2,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-1,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1/2,0,1,1,0,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-2,-4,-4,-12,-6,-6,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-14,-6,-6,-4,-8,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-4,-3,-6,-3,-3,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-11/2,-4,-8,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-11,-23 -2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,-1/2,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-8,-17 -2,1,1,1,2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,-1,0,-4,-2,-2,-1,-3/2,-1,-2,-2,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-10,-5,-5,-3,-9/2,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,3/2,1,0,0,-1,0,0,1,3/2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-3,-4,-4,-15/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-15/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-15/2,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-8,-9,-8,-15,-9,-14,-14,-29 -2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-12,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-9/2,-5,-4,-9,-5,-8,-8,-18 -3,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-3/2,-1,-9,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,-1/2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-9/2,-5,-5,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-1,0,0,1,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1/2,0,1,1,0,0,-1,0,1/2,0,2,2,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-4,-2,-9/2,-4,-12,-6,-6,-4,-5,-2,-3,-2,-5,-2,-3/2,0,-1,0,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-6,-6,-17,-8,-15/2,-4,-8,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-5,-2,-7/2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-8,-4,-13/2,-6,-13,-7,-8,-6,-13,-8,-12,-12,-25 -3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-9/2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-5/2,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-9/2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 -4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-11/2,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-4,-7,-7,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-23/2,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-23/2,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-12,-8,-12,-6,-7,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-6,-7,-6,-11,-7,-12,-12,-33,-16,-15,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-25/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-17/2,-4,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-8,-5,-7,-6,-27/2,-6,-7,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-6,-8,-7,-13,-7,-9,-7,-13,-8,-11,-11,-23,-12,-13,-9,-16,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-6,-6,-16,-15/2,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-2,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23 -3,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-1,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-3,-6,-4,-11/2,-6,-17,-8,-8,-5,-7,-3,-4,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-5/2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-8,-6,-12,-8,-23/2,-12,-24 -3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-3/2,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,-1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-3,-1,-1,0,-1,0,0,-1/2,-3,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-2,-7/2,-2,-4,-3,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-4,-6,-6,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-15/2,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-6,-3,-3,-2,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-19,-9,-9,-5,-15/2,-4,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-9,-4,-5,-3,-11/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-4,-6,-6,-8,-4,-4,-2,-9/2,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-11/2,-4,-6,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-9/2,-2,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-8,-6,-19/2,-6,-8,-7,-15,-7,-8,-6,-12,-8,-13,-13,-26 -3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15 -3,2,2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,3,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-15,-7,-7,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1/2,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-11/2,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-19/2,-9,-19 -3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-3/2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-4,-4,-9,-4,-5,-3,-7,-4,-5,-5,-10,-5,-6,-9/2,-9,-5,-8,-8,-17 -5,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-10,-6,-10,-10,-4,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,7/2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-10,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-10,-5,-7,-6,-21/2,-5,-5,-4,-7,-4,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-15/2,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-7,-5,-9,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-10,-7,-13,-8,-11,-10,-20,-11,-13,-10,-18,-11,-17,-17,-34 -4,5/2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-5,-5,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-7/2,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-7/2,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-9,-9,-18 -5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,1/2,0,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-3/2,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-2,-5/2,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-5/2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-9,-4,-9/2,-3,-6,-3,-7/2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-8,-4,-13/2,-6,-12,-6,-15/2,-6,-12,-7,-11,-11,-22 -5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,-6,-3,-3,-3/2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,-13,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-11/2,-9,-9,-18 -8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,0,-1/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-9/2,-2,-3,-2,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-13/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-11/2,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-9/2,-2,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,0,-1/2,0,0,0,-1,0,1,2,5/2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,7/2,2,3,3,4,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,1,-1,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-8,-8,-6,-19/2,-5,-6,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-8,-4,-5,-4,-17/2,-6,-9,-9,-25,-12,-12,-7,-19/2,-5,-6,-5,-11,-5,-5,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-17/2,-5,-8,-8,-14,-7,-7,-4,-15/2,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-23/2,-6,-9,-8,-19,-10,-12,-9,-33/2,-10,-16,-16,-33 -6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-12,-5,-5,-7/2,-6,-3,-4,-5/2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-5,-2,-3,-5/2,-6,-4,-6,-11/2,-16,-8,-8,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-3,-4,-5/2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 -8,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,3,4,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-3/2,-1,-4,-1,-1,0,-2,0,-1/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-17/2,-8,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1/2,0,-1,0,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,4,2,2,2,2,2,5/2,3,5,3,3,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-4,-2,-3/2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,1,2,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-18,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-7/2,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-25,-12,-23/2,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-14,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-7,-4,-15/2,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-2,-7/2,-4,-8,-4,-11/2,-4,-7,-5,-8,-8,-15,-7,-15/2,-5,-8,-4,-11/2,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-6,-11,-6,-17/2,-8,-18,-9,-21/2,-8,-16,-10,-31/2,-16,-32 -8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,-1/2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,0,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-9,-6,-9,-9/2,-6,-9/2,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-5/2,-4,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-3/2,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-24,-23/2,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-3,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-8,-4,-6,-9/2,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-6,-10,-6,-8,-8,-17,-9,-10,-8,-15,-10,-15,-15,-31 -15,8,8,5,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-21/2,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-17,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-11,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,1,1,1,2,2,4,3,3,3,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-37,-18,-19,-13,-20,-11,-13,-11,-22,-11,-13,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-9,-6,-10,-6,-9,-9,-18,-8,-8,-5,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-31/2,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-15,-7,-8,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-19,-19,-49,-24,-23,-15,-23,-13,-16,-13,-24,-12,-13,-10,-17,-10,-13,-12,-24,-11,-11,-7,-11,-6,-7,-6,-13,-7,-8,-6,-10,-6,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-31/2,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-30,-15,-15,-10,-15,-8,-9,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-11,-7,-12,-7,-10,-9,-17,-9,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-16,-9,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-8,-13,-7,-10,-9,-19,-10,-11,-9,-17,-11,-17,-17,-35,-17,-17,-11,-17,-9,-12,-10,-20,-10,-12,-9,-17,-11,-16,-15,-30,-15,-17,-12,-20,-12,-16,-15,-31,-17,-20,-17,-32,-21,-31,-31,-62 -8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-8,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-9/2,-4,-5/2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-2,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-17/2,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-9,-9,-24,-23/2,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -7,4,9/2,3,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-3/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-7,-4,-9/2,-4,-7,-4,-7,-8,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-3,-2,-7/2,-4,-7,-3,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,-1,-2,0,0,0,0,0,1/2,1,1,1,3/2,2,2,2,5/2,2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-18,-8,-17/2,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-13/2,-6,-13,-6,-13/2,-4,-8,-4,-5,-5,-10,-5,-5,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-24,-12,-23/2,-8,-12,-6,-15/2,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-7/2,-2,-4,-2,-4,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-7,-4,-5,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-11/2,-5,-9,-5,-6,-4,-8,-5,-15/2,-7,-15,-7,-15/2,-5,-9,-5,-15/2,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31 -5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,-2,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-9/2,-5,-3,-4,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,2,2,7/2,2,3,3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,1/2,0,0,0,-2,0,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-18,-8,-8,-5,-17/2,-4,-6,-5,-10,-5,-5,-4,-13/2,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-13/2,-4,-6,-6,-14,-7,-7,-4,-13/2,-4,-5,-4,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-7/2,-2,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-11/2,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-13/2,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-26,-13,-13,-8,-12,-6,-8,-6,-12,-6,-6,-4,-15/2,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-14,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-2,-7/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-17/2,-4,-6,-5,-9,-4,-5,-4,-15/2,-4,-6,-6,-14,-7,-8,-5,-9,-5,-8,-7,-16,-8,-10,-8,-29/2,-10,-15,-15,-30 -4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1/2,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-3,-1,-1/2,0,0,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,0,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-5,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1/2,0,1,1,0,0,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1/2,1,1,1,1,0,0,0,-1/2,0,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-7/2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,3/2,2,3,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3,-3,-11,-5,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-3,-11/2,-6,-17,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,1,1,1,1,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-13/2,-5,-10,-6,-10,-10,-21 -4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-7,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-14,-13/2,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 -7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,0,1,1,1,2,2,2,2,5/2,2,2,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-7,-5,-8,-8,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,3/2,1,0,0,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,-5,-2,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-2,-3,-2,-2,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-5,-5,-16,-8,-8,-5,-8,-4,-6,-5,-19/2,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-4,-4,-4,-8,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-19/2,-5,-6,-5,-10,-6,-10,-10,-27,-13,-13,-9,-14,-7,-8,-6,-25/2,-6,-6,-4,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-7,-7,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-31/2,-8,-10,-8,-15,-10,-16,-16,-33 -4,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,-1/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-5/2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -3,2,2,2,2,2,2,2,3,2,2,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-1,0,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,1,1,1/2,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,1,2,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-2,-5,-3,-5,-5,-15,-7,-7,-4,-8,-4,-9/2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-5,-2,-7/2,-4,-8,-4,-5,-4,-8,-5,-17/2,-9,-19 -2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,1,2,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,2,3/2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,2,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 -3,2,2,2,5/2,2,2,2,4,2,2,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,-1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-3,-1,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-2,-11/2,-3,-5,-5,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,1,1/2,1,2,2,2,2,2,1,1/2,0,0,0,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,2,2,2,2,1,1,2,2,3/2,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,1,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7/2,3,4,4,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,2,2,2,1,1,1,0,0,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,1,3/2,2,2,2,2,1,0,0,-1/2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-7/2,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-3,-3,-8,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-15/2,-4,-6,-6,-19,-9,-9,-6,-9,-4,-5,-4,-8,-3,-3,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,-4,-1,-1,0,-1/2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-12,-5,-5,-3,-11/2,-2,-3,-2,-7,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-7,-6,-21/2,-7,-11,-11,-24 -2,1,1,1,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-3/2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-15 -2,1,1,1,2,2,3/2,1,3,2,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,-2,0,0,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-2,-3,-2,-4,-2,-4,-5,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,1,1,1,1,2,2,3/2,1,1,1,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1/2,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,-1,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,1,1,3/2,2,2,2,2,1,2,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-4,-7,-4,-9/2,-4,-7,-4,-6,-6,-15,-7,-15/2,-4,-8,-4,-4,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-1,0,-3/2,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-1,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-19/2,-10,-21 -2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,2,3,5/2,4,3,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,1/2,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-13/2,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20 -3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,1,1/2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-5/2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-23/2,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5/2,0,0,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,2,3,2,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,5,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-19/2,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-13,-27,-13,-13,-8,-12,-6,-8,-7,-14,-7,-8,-5,-9,-5,-6,-5,-21/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-25/2,-6,-6,-4,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-19,-19,-40 -2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1/2,-1,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-2,-1,-2,-1,-3,-3/2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-9/2,-6,-9/2,-9,-6,-9,-9,-20 -2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,-1,0,1/2,0,-1,0,1/2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,1,1,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-2,-5,-3,-9/2,-4,0,0,1/2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,7/2,3,4,3,4,4,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,-1,0,1/2,1,1,1,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-2,-4,-2,-4,-4,-6,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-3/2,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-3,-6,-4,-6,-6,-14,-6,-13/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,0,0,-1,0,1,1,0,0,1/2,1,2,2,2,1,1,1,1,1,0,0,1/2,0,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-2,-2,-1,-3/2,-2,-3,-2,-5/2,-2,-3,-2,-7/2,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-11/2,-4,-10,-6,-19/2,-10,-20 -2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-3/2,-3,-3,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1/2,-1,-1,-2,-3/2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1/2,-1,-1,-2,-1/2,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,1,2,2,1,1,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,0,1,1,1,1/2,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-7,-3,-3,-2,-7/2,-2,-2,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,9/2,4,5,5,0,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-16,-7,-7,-4,-6,-3,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5/2,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-3,-2,-3,-2,-11/2,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-21 -2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,-1/2,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-4,-3,-6,-3,-5,-5,-12 -2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,1,0,1,1,1,1,1,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,1,1,2,2,2,2,2,1,2,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,4,3,4,4,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-2,-2,-6,-2,-5/2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-2,-7,-3,-7/2,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-12,-5,-5,-3,-6,-3,-3,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,3/2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,3/2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 -1,1,1,1,2,2,2,2,3/2,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,2,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,3,2,2,1,1,1,0,0,1/2,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,2,3,7,4,3,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,3,5,3,4,3,5,3,3,3,7,4,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,2,2,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-19/2,-5,-6,-5,-10,-7,-11,-11,-21,-10,-10,-7,-11,-5,-6,-5,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-13/2,-3,-4,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-21/2,-6,-7,-6,-11,-7,-12,-12,-26 -1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,1/2,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1/2,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-11/2,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-5/2,-6,-4,-6,-6,-14 -1,1,1,1,2,2,3/2,2,0,0,1/2,1,2,2,2,2,0,1,1,1,0,1,3/2,2,0,0,1/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,1/2,1,1,1,1,1,2,1,1,1,0,1,3/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,2,2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,-1,0,1/2,0,-2,0,0,1,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-3/2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,3,2,5/2,2,5,3,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,9/2,4,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,1,0,0,1/2,1,1,1,1/2,0,1,1,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1/2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-5/2,-2,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-13/2,-6,-12,-6,-11/2,-3,-6,-3,-3,-3,-5,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-4,-3,-7,-5,-8,-8,-17 -1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,1,0,1,1,1,0,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-7/2,-6,-6,-13 -0,0,0,0,1/2,1,2,2,0,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,1,2,2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,1/2,1,2,2,1,1,0,0,1/2,1,1,1,-2,-1,-1,0,-1/2,0,0,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1/2,0,0,0,-3,-1,-1,0,-1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,2,3/2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3/2,1,0,0,0,0,0,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,0,0,0,0,1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,2,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,4,3,7/2,3,4,4,7,4,4,3,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,-2,-1,-1,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-4,-4,-10,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-9/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-4,-4,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-3,-8,-4,-4,-4,-15/2,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-10,-5,-7,-5,-10,-7,-11,-11,-24 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,2,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,3,3,2,4,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1/2,-2,-1,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-7,-7,-15 --2,0,-1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,0,1,1,1,1,2,2,3/2,2,2,2,5/2,2,-2,-1,-1,0,-1,0,-1,0,-2,0,-1/2,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,-1,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,-1/2,0,-3,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-3/2,-2,-5,-2,-3/2,0,-2,-1,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,0,1,1,1,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,6,4,9/2,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,5,5,7,4,9/2,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-7/2,-4,-6,-3,-3,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-1,0,1/2,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-3,-6,-4,-6,-5,-13,-6,-13/2,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-13/2,-6,-10,-6,-21/2,-11,-23 --2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-1,-1/2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1/2,-1,0,0,1,0,1,1,2,3,2,3,3,4,3,4,4,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,4,7,4,4,7/2,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,7/2,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-6,-6,-12,-6,-6,-4,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,-1,0,0,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-11/2,-10,-6,-10,-11,-23 --5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,1,1,2,2,2,1,1,1,2,2,5/2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,3,3,4,4,6,3,3,3,4,3,4,5,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-13/2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1/2,1,1,1,0,1,1,1,0,0,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,4,3,3,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-15/2,-4,-4,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,1,2,2,2,2,4,3,4,4,7,4,5,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,4,5,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,4,3,4,4,7,5,6,5,8,5,7,7,27/2,7,7,5,8,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,3,5,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-8,-33/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-6,-11,-6,-8,-7,-15,-8,-10,-9,-17,-11,-18,-18,-29,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-23/2,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-18,-9,-9,-6,-9,-5,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-14,-14,-59/2,-14,-15,-10,-16,-9,-12,-10,-20,-10,-12,-9,-16,-10,-14,-13,-25,-12,-13,-9,-15,-8,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-47 --2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1/2,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,5/2,3,5/2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,5,3,4,3,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1/2,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-7/2,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-7/2,-4,-7/2,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-23 --3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,3/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,-3,-1,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,-1,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-1,0,-1/2,0,0,0,1/2,0,1,1,3/2,1,1,1,1,1,0,1,1,1,0,1,3/2,2,2,1,1/2,0,2,2,3/2,1,1,1,3/2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,-1/2,-1,-2,-1,-3/2,0,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-7/2,-3,2,2,2,2,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1/2,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,7,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,7/2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,4,6,4,5,5,7,4,9/2,4,5,3,7/2,3,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-4,-7/2,-2,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-9/2,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-5,-3,-5,-5,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-7,-4,-5,-4,-10,-5,-11/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-3/2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-15/2,-16 --3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,0,0,0,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,3/2,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1/2,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3/2,0,-1,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,7/2,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,4,4,11/2,4,6,6,6,4,4,3,7/2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,5,4,13/2,4,6,6,8,5,5,3,4,3,3,3,4,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,1,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-10,-10,-17,-8,-8,-5,-15/2,-4,-5,-4,-6,-3,-4,-3,-5,-3,-5,-4,-8,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-9/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-3,-5,-2,-2,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-11,-5,-6,-4,-15/2,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-12,-12,-25 --1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,2,3/2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 --2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,3,0,0,0,1,1,1,1/2,0,2,1,1,1,2,2,3/2,2,1,1,1/2,0,0,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,1,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,2,2,0,0,0,1,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,3,2,3/2,1,1,1,3/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1/2,1,1,1,3/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-7,-7,-12,-6,-6,-3,-5,-2,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,1,1,1,1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-9/2,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-6,-3,-9/2,-4,-9,-4,-5,-4,-8,-5,-9,-9,-19 --1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-8,-16 --3,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,3/2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,4,3,3,2,3,2,2,2,3/2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,2,5/2,1,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,15/2,4,5,4,6,4,6,7,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13/2,4,4,4,7,5,8,8,11,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,5,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-20,-9,-9,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-13/2,-3,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-3,-14,-6,-6,-4,-7,-4,-5,-4,-17/2,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-31 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,5,5,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-11/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-9/2,-8,-15/2,-16 --2,0,-1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,2,2,3/2,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,1,1,1,0,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1/2,0,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,4,9/2,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,0,-1/2,0,-1,0,-1,0,-1,0,0,0,1,1,1/2,0,1,1,1,1,0,0,0,1,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-5/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-6,-4,-13/2,-6,-12,-5,-5,-3,-5,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1,-1,-6,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-17/2,-8,-18 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,3/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 --2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,-1/2,0,0,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,2,7/2,2,2,2,4,2,2,2,3/2,2,2,1,3,2,2,1,1/2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,0,0,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,5,3,3,2,7/2,2,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,7/2,3,4,4,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,5,5,6,4,4,3,9/2,3,3,3,5,3,4,3,4,3,4,4,4,2,2,2,7/2,2,3,3,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,5/2,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,2,2,2,3/2,1,1,1,0,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-5/2,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-3,-3,-2,-5/2,-1,-2,-1,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-2,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-11/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-17/2,-4,-6,-6,-12,-6,-8,-6,-25/2,-8,-13,-13,-26 --1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,3/2,2,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,2,2,2,2,2,2,2,4,5/2,3,2,3,5/2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,3,2,3,5/2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-1,0,-1,-1/2,0,0,0,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-3,-3/2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1/2,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-8,-4,-4,-5/2,-5,-5/2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-16 --2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,2,2,3/2,1,1,1,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,5/2,2,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,3,2,1,1,1,1,1,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,2,1,1/2,1,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,2,2,3/2,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,2,2,2,1,1,1,3/2,1,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,5/2,2,3,3,9/2,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,7/2,3,4,2,2,2,4,2,2,2,3,2,7/2,4,8,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,7/2,3,3,2,7/2,4,4,3,3,3,4,3,4,4,7,4,9/2,4,7,5,7,7,11,6,6,4,5,3,7/2,3,5,3,7/2,2,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,2,2,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,0,0,-1,0,-3/2,-2,-6,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1/2,0,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-13/2,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-3,-2,-3,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-13/2,-6,-11,-6,-15/2,-6,-12,-8,-23/2,-11,-23 --2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,2,3/2,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,-1/2,-2,-1/2,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-10,-9/2,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-11/2,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-12,-7,-11,-11,-23 --4,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,3/2,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,4,4,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,11/2,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,3,3,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9/2,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-15/2,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,5/2,2,2,3,5,3,4,4,8,5,5,4,7,5,8,8,6,4,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,16,9,9,6,8,5,7,6,10,6,7,5,8,5,6,5,17/2,4,4,3,5,4,5,5,9,6,7,6,10,7,9,9,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,17/2,5,6,4,6,4,5,5,10,6,7,6,10,7,10,11,19,10,10,7,9,5,5,4,7,4,5,4,5,3,4,4,15/2,4,4,3,4,3,4,3,5,3,3,2,3,2,2,1,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,7/2,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-9,-9,-11,-5,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-7,-14,-9,-14,-14,-28,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-8,-13,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-6,-21,-10,-10,-6,-10,-5,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-14,-9,-14,-13,-25,-12,-12,-8,-12,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-11,-45/2,-11,-12,-8,-14,-8,-12,-11,-22,-12,-14,-12,-22,-14,-22,-22,-46 --1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1/2,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-14,-13/2,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-7/2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-10,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-3/2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23 --1,0,0,0,-1,0,1/2,0,0,0,1/2,1,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,3/2,1,2,1,1/2,0,0,0,1/2,0,0,0,1/2,0,2,2,3/2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,10,5,5,4,6,3,3,3,5,3,7/2,2,4,3,3,3,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-6,-2,-5/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-7,-3,-3,-1,-3,-2,-5/2,-2,-5,-2,-2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-16,-8,-15/2,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1/2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-3,-11,-5,-5,-3,-4,-2,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-13/2,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-12,-12,-25 -0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,5/2,3,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-18 -0,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3/2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,2,3,3,3,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,-1,0,-1,0,-1,0,0,0,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,2,2,4,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,1,1,2,2,3/2,1,0,0,0,0,0,1,3/2,2,2,1,2,2,2,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,4,3,9/2,4,5,5,5,3,3,3,9/2,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,8,5,6,4,13/2,4,6,6,12,7,7,5,6,4,5,4,6,4,4,4,11/2,4,5,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,5,7,7,11,6,6,4,11/2,3,3,2,5,3,3,3,9/2,3,3,3,6,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,3/2,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,-7,-3,-3,-2,-5/2,-1,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-1,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-21,-10,-10,-6,-21/2,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-5,-12,-6,-6,-4,-11/2,-2,-3,-3,-5,-3,-4,-3,-11/2,-3,-5,-4,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-9/2,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-14,-6,-6,-4,-11/2,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-7,-15,-7,-8,-5,-15/2,-4,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-9,-8,-15,-10,-15,-15,-30 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-5/2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-18 -0,0,1/2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,1,2,1,1,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,3,2,5/2,3,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,2,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,5,3,4,3,4,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,-1,0,0,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-3,-1,-1/2,0,0,0,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,4,3,5,4,11/2,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,5,3,7/2,3,4,3,7/2,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,4,7,5,6,6,8,5,5,4,5,3,3,2,4,2,5/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-3/2,-2,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-6,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-5/2,-2,-4,-2,-3/2,-2,-3,-1,-1,-1,-2,-1,-5/2,-3,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-3,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-3,-5,-3,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-11/2,-5,-12,-6,-13/2,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-23/2,-12,-24 -1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,2,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,5,3,3,3,4,5/2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-5/2,-2,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 -1,1,1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,0,1,2,2,3,2,2,2,1,1,1,1,0,1,2,2,5/2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,9/2,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,9/2,3,4,3,4,3,3,3,7,4,4,3,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,1,3,2,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,1,2,2,2,2,3,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,3/2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,5,7,7,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,10,7,9,9,17,9,10,7,11,6,7,6,11,6,7,6,9,6,7,6,9,5,5,4,5,4,5,5,9,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,4,2,2,1,0,0,-1,-1,-5/2,-1,-2,-1,-2,-1,-3,-3,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-4,-3,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-11,-32,-15,-15,-9,-14,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-18,-9,-9,-6,-10,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-9,-9,-16,-8,-8,-5,-7,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-19,-9,-8,-5,-8,-4,-4,-4,-15/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-20,-10,-11,-7,-12,-6,-8,-6,-25/2,-6,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-43/2,-12,-14,-11,-21,-14,-21,-21,-42 -1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,11/2,10,11/2,6,4,6,4,4,4,6,4,4,7/2,5,7/2,4,4,6,3,3,5/2,4,3,3,3,6,4,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,9/2,5,4,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,3,5/2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-9/2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-2,-4,-2,-4,-7/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-3/2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-7/2,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,2,2,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,2,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,3,2,2,2,3/2,1,2,2,3/2,1,1,1,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-5/2,-2,-4,-2,-7/2,-4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1,1,1,1,3/2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,2,1,1,1,3,2,5/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,5,3,7/2,3,3,2,7/2,4,5,3,7/2,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,13/2,6,11,6,13/2,4,7,4,5,4,7,4,9/2,4,6,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,13/2,6,11,6,13/2,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,7,4,11/2,5,7,4,11/2,5,8,6,15/2,7,9,5,5,4,5,3,7/2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,3,3,3,2,3/2,2,1,1,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,-1,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-2,-1,-2,-1,-2,-1,-3/2,-1,-1,0,-3/2,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3/2,-2,-7,-3,-5/2,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-3,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-7/2,-4,-9,-4,-11/2,-4,-8,-5,-15/2,-7,-22,-10,-21/2,-6,-10,-5,-6,-5,-11,-5,-5,-4,-8,-4,-13/2,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-7/2,-3,-5,-3,-11/2,-6,-12,-6,-11/2,-3,-4,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-5,-2,-3/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-5/2,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-13/2,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-9/2,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-13/2,-6,-14,-7,-8,-7,-13,-8,-27/2,-14,-28 -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,6,11/2,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,11/2,9,5,6,4,6,4,4,4,6,4,4,7/2,5,4,5,9/2,8,9/2,5,4,6,7/2,4,4,6,4,4,4,6,9/2,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-3/2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-9/2,-10,-9/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-11/2,-7,-6,-11,-7,-11,-11,-23 -0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,2,2,2,2,0,0,0,1,3/2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,6,3,3,2,5/2,2,2,1,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-13/2,-4,-6,-6,10,6,6,4,11/2,4,4,3,5,3,3,2,7/2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1/2,0,0,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,5,3,4,3,9/2,3,4,4,6,4,4,3,9/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,4,6,6,12,7,7,5,13/2,4,6,6,11,6,6,5,17/2,6,9,9,16,9,9,6,8,5,6,5,10,6,6,5,15/2,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,17/2,6,7,7,13,7,7,6,9,6,7,6,10,6,6,6,19/2,7,10,10,13,7,7,5,7,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,7/2,3,4,3,3,2,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-7/2,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-25/2,-8,-12,-11,-33,-16,-16,-10,-33/2,-9,-11,-9,-17,-8,-9,-7,-25/2,-7,-10,-9,-20,-10,-10,-6,-10,-5,-7,-6,-11,-6,-7,-5,-9,-5,-8,-8,-19,-9,-9,-6,-17/2,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-20,-10,-10,-8,-27/2,-8,-11,-10,-19,-10,-13,-11,-20,-13,-20,-20,-41 -0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,3/2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,7/2,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-22,-10,-10,-6,-11,-6,-7,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-1,-1/2,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-3/2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-27 -0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,7/2,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,2,2,5,3,3,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,0,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,10,6,11/2,4,6,4,4,3,5,3,7/2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,1,1,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,5/2,2,3,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,9,5,5,4,6,4,5,5,7,4,9/2,4,6,4,13/2,6,11,6,7,5,6,4,5,5,9,6,13/2,5,8,6,17/2,8,16,8,17/2,6,9,6,13/2,6,9,5,11/2,4,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,10,7,19/2,9,16,9,9,7,10,6,13/2,6,10,6,13/2,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,13/2,6,10,7,21/2,10,13,7,15/2,5,7,4,5,4,7,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-7/2,-4,-7,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13,-6,-13/2,-4,-7,-4,-6,-6,-12,-6,-15/2,-6,-12,-8,-23/2,-11,-33,-16,-16,-10,-17,-9,-21/2,-8,-17,-8,-19/2,-7,-12,-7,-10,-9,-19,-9,-19/2,-6,-9,-5,-7,-6,-12,-6,-13/2,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-5,-6,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-15/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-9/2,-2,-5,-3,-4,-3,-8,-4,-9/2,-4,-6,-4,-13/2,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-9/2,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-10,-5,-13/2,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-6,-13,-6,-15/2,-6,-11,-7,-10,-10,-20,-10,-21/2,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,11,6,6,4,6,4,4,3,5,3,4,5/2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,3,5/2,3,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,5,4,5,11/2,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,11/2,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,9/2,7,5,6,5,10,6,6,5,6,4,6,6,10,6,7,6,9,13/2,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,8,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-9/2,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-33,-16,-16,-10,-17,-9,-10,-9,-17,-17/2,-10,-7,-12,-7,-10,-9,-19,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-7/2,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-3,-7,-7/2,-4,-3,-6,-3,-5,-9/2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-10,-20,-10,-10,-7,-11,-6,-8,-13/2,-13,-13/2,-8,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-18,-10,-13,-11,-19,-12,-19,-19,-40 --1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,1,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,11/2,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,3,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,3,4,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,10,8,13,8,11,11,20,12,14,12,20,14,20,20,26,13,13,9,12,7,7,6,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-15,-8,-9,-6,-11,-7,-11,-10,-21,-11,-14,-12,-23,-15,-23,-23,-68,-33,-33,-22,-34,-19,-23,-19,-34,-17,-19,-14,-24,-15,-21,-20,-39,-19,-20,-14,-22,-12,-16,-14,-26,-14,-16,-13,-23,-14,-21,-21,-42,-20,-20,-13,-21,-11,-13,-10,-19,-9,-10,-8,-14,-8,-11,-10,-20,-10,-10,-6,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-14,-9,-15,-8,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-9,-11,-8,-15,-9,-14,-14,-30,-15,-16,-11,-17,-9,-11,-9,-18,-9,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-10,-9,-18,-10,-12,-10,-18,-11,-17,-17,-34,-16,-16,-11,-17,-9,-11,-10,-19,-9,-10,-7,-13,-8,-12,-12,-24,-12,-12,-8,-13,-7,-10,-9,-18,-9,-11,-9,-16,-10,-16,-17,-35,-17,-18,-12,-20,-11,-15,-13,-24,-12,-14,-11,-19,-12,-17,-17,-34,-17,-18,-12,-20,-12,-16,-15,-29,-16,-19,-16,-29,-19,-28,-28,-58,-29,-29,-19,-29,-16,-20,-17,-32,-16,-18,-13,-23,-14,-19,-18,-35,-18,-19,-13,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-27,-27,-54,-27,-28,-19,-30,-17,-22,-19,-35,-18,-20,-15,-26,-16,-24,-23,-46,-23,-24,-17,-28,-17,-23,-21,-41,-22,-26,-22,-40,-26,-40,-40,-80 -0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,11,6,6,9/2,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,5/2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,7,9/2,6,6,10,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-9/2,-10,-5,-7,-6,-11,-7,-11,-11,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-6,-8,-13/2,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-7/2,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-9/2,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-14,-15/2,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-8,-15,-15/2,-8,-6,-11,-6,-9,-8,-17,-8,-9,-6,-10,-11/2,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-10,-9,-17,-17/2,-10,-7,-12,-8,-12,-11,-22,-11,-12,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-39 -0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,1,3/2,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,9/2,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,9/2,4,8,4,9/2,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,1,1,1,1/2,0,0,0,1/2,1,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,0,-2,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,4,4,6,4,5,5,9,5,11/2,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,11/2,6,10,6,7,6,10,7,21/2,10,14,8,8,5,7,4,9/2,4,5,3,3,2,4,2,5/2,2,4,2,2,2,3,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-2,-1,-5/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-10,-5,-7,-6,-12,-7,-11,-11,-33,-16,-16,-10,-16,-8,-21/2,-9,-16,-8,-9,-6,-11,-6,-19/2,-9,-20,-10,-10,-6,-10,-6,-15/2,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-9/2,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-17/2,-6,-9,-4,-11/2,-4,-9,-4,-9/2,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-3,-9/2,-4,-8,-4,-5,-4,-7,-4,-15/2,-8,-17,-8,-8,-6,-9,-5,-6,-6,-12,-6,-13/2,-5,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-8,-7,-15,-8,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-14,-8,-19/2,-8,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-17,-8,-9,-6,-9,-5,-15/2,-7,-14,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-8,-21/2,-9,-16,-8,-19/2,-7,-12,-8,-23/2,-11,-22,-11,-23/2,-8,-14,-8,-11,-10,-21,-11,-13,-11,-20,-13,-19,-19,-39 -0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,7/2,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,8,9/2,5,4,5,3,4,3,4,3,3,2,4,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,9/2,5,4,7,5,7,7,10,6,6,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-2,-2,-6,-3,-4,-7/2,-8,-9/2,-7,-7,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-7/2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12,-11/2,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-7/2,-6,-7/2,-5,-9/2,-10,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-11/2,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-14,-7,-9,-7,-13,-8,-13,-13,-26 -0,1,1,1,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,2,2,2,5,3,4,3,7/2,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,11,6,7,5,7,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3/2,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,3,2,2,2,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,13/2,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,11/2,4,6,5,8,5,5,4,13/2,4,6,6,11,6,7,6,19/2,7,10,10,15,8,8,6,8,5,5,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,1,1,1,1,3/2,2,2,1,0,0,0,0,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-5,-7,-6,-23/2,-8,-12,-12,-34,-17,-17,-11,-16,-8,-10,-8,-16,-8,-9,-6,-23/2,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-22,-10,-10,-6,-19/2,-5,-6,-5,-9,-4,-5,-3,-11/2,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-10,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-13/2,-4,-5,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-5,-9,-4,-5,-4,-17/2,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-6,-19/2,-6,-8,-7,-15,-8,-10,-8,-29/2,-9,-14,-14,-30,-15,-15,-10,-15,-8,-9,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-9,-5,-7,-6,-15,-8,-9,-7,-27/2,-8,-12,-12,-29,-14,-14,-10,-31/2,-8,-10,-9,-16,-8,-9,-7,-13,-8,-11,-11,-22,-11,-11,-8,-27/2,-8,-11,-10,-21,-11,-14,-11,-41/2,-13,-20,-20,-40 -0,1,1,1,0,1,1,1,0,0,0,1/2,0,1/2,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-5/2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-5/2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-22 -0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,6,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1/2,0,0,1,1,1,-1,0,1,1,0,0,1/2,1,0,0,1/2,0,1,1,3/2,1,2,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,7,4,4,3,5,3,4,3,4,3,7/2,3,4,3,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,3,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,4,3,3,3,4,3,9/2,5,8,4,9/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,4,4,6,4,4,4,7,4,9/2,4,7,5,7,7,10,5,5,4,6,4,4,3,3,2,3,2,3,2,3/2,1,4,2,2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-2,-3,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3,-3,-6,-3,-9/2,-4,-7,-4,-15/2,-8,-22,-10,-21/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-4,-8,-4,-6,-5,-13,-6,-7,-4,-7,-4,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-7,-14,-6,-6,-4,-7,-3,-7/2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-4,-2,-4,-4,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-5,-13,-6,-13/2,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-9,-4,-9/2,-3,-5,-3,-4,-3,-5,-2,-3,-2,-6,-3,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-4,-6,-3,-5,-5,-9,-5,-6,-5,-9,-6,-19/2,-10,-19,-9,-19/2,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-7,-4,-6,-5,-11,-5,-11/2,-4,-6,-3,-4,-4,-9,-4,-11/2,-4,-9,-6,-17/2,-8,-20,-10,-10,-6,-10,-5,-13/2,-5,-10,-5,-11/2,-4,-9,-5,-15/2,-7,-15,-7,-15/2,-6,-9,-5,-15/2,-6,-14,-7,-9,-7,-14,-9,-27/2,-13,-27 -0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,2,1,0,0,0,1,1,1,-1,0,1,1,0,0,0,1/2,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-5/2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,3,2,3,2,3,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1/2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-5/2,-4,-3,-6,-7/2,-6,-6,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-6,-5/2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-5/2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-5,-8,-8,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-9/2,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-9/2,-8,-4,-6,-5,-12,-6,-7,-6,-11,-7,-10,-10,-22 --1,0,0,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,9,5,5,4,5,3,4,4,13/2,4,4,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,9/2,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,7,7,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,6,6,8,5,5,5,8,5,6,6,21/2,6,8,7,12,8,11,11,15,8,8,5,7,4,4,4,11/2,3,3,2,3,2,2,2,6,3,3,2,2,2,2,1,1/2,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,5/2,2,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-1,-2,-2,-9/2,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-7,-11,-11,-34,-16,-16,-10,-16,-8,-10,-8,-31/2,-8,-9,-7,-12,-7,-9,-8,-20,-9,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-11/2,-3,-4,-4,-8,-5,-8,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-13,-6,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-5,-4,-8,-5,-8,-8,-22,-11,-11,-7,-11,-5,-6,-5,-19/2,-4,-5,-3,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-14,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-7,-6,-18,-9,-9,-6,-9,-5,-8,-7,-14,-7,-9,-7,-13,-8,-13,-14,-29,-14,-15,-10,-15,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-18,-9,-10,-7,-11,-6,-7,-6,-13,-7,-8,-7,-14,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-12,-24,-12,-12,-9,-15,-9,-12,-11,-22,-12,-14,-11,-21,-13,-20,-20,-40 -0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1/2,0,1,0,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1/2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-13/2,-15,-7,-7,-9/2,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-11/2,-10,-6,-10,-10,-21 -0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,1,1,1/2,1,0,1,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,3,6,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,3,2,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-2,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,0,0,1/2,1,2,1,1,1,2,1,1,1,1,1,1,1,4,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,0,0,-1,0,0,1,0,0,0,1,2,1,1,1,1,1,3/2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,7/2,4,7,4,5,4,8,5,7,7,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-6,-19,-9,-9,-5,-8,-4,-11/2,-4,-9,-4,-4,-3,-6,-3,-5,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-3,-2,-5/2,-2,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-3/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-7/2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-7/2,-4,-6,-3,-4,-3,-7,-4,-13/2,-6,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-4,-8,-4,-13/2,-6,-13,-6,-13/2,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-23 -0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,5/2,5,3,4,7/2,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-5/2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-5/2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -0,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,1,1,1,1,2,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,1,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5/2,-1,-2,-3,8,5,5,4,11/2,4,4,4,6,3,3,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,2,2,2,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,1,1,1,1,1/2,1,1,1,2,1,1,1,3/2,2,2,2,0,0,0,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,4,4,11/2,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,8,5,6,5,9,6,8,8,12,7,7,5,7,4,4,4,6,3,3,2,5/2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,-2,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-2,-5,-3,-6,-6,-24,-12,-12,-7,-21/2,-6,-7,-6,-11,-5,-6,-4,-15/2,-4,-6,-5,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-14,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-9/2,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-10,-5,-5,-3,-5,-3,-4,-3,-9,-4,-5,-4,-17/2,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-10,-5,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-8,-4,-5,-4,-8,-5,-8,-8,-21,-10,-10,-6,-19/2,-5,-6,-5,-11,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-7,-14,-9,-13,-13,-28 -0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-3/2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,4,5/2,2,2,3,2,2,2,5,3,4,7/2,6,4,5,5,8,9/2,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-3/2,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-13,-6,-6,-7/2,-6,-3,-4,-3,-6,-3,-3,-3/2,-3,-3/2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-12,-6,-6,-7/2,-6,-3,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-9/2,-9,-9/2,-5,-4,-8,-5,-8,-8,-17 --1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,5/2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,9/2,3,5,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,5/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,1/2,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,2,2,3,4,3,7/2,3,5,4,5,5,7,4,9/2,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,3,3,6,4,9/2,4,7,5,13/2,6,10,6,11/2,4,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,-1,0,0,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-1,0,1/2,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-11/2,-4,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-3,-4,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-3,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-18,-8,-17/2,-5,-8,-4,-11/2,-4,-8,-4,-9/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-13/2,-6,-17,-8,-17/2,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-14,-7,-15/2,-6,-10,-6,-15/2,-7,-13,-7,-8,-6,-12,-8,-23/2,-12,-24 --1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,5,3,4,3,5,3,3,2,3,5/2,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1/2,0,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,10,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-5/2,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-1,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-7,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-15/2,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 --2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,0,0,0,0,-1,0,0,0,0,1,2,2,4,3,4,4,15/2,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,8,4,4,3,5,3,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3/2,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1/2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-6,12,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,10,5,5,4,6,4,4,3,4,2,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,5,6,5,8,5,7,7,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,11/2,3,3,2,3,2,3,3,5,3,4,4,6,5,7,8,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,11,18,10,10,7,9,5,6,5,8,4,4,3,4,3,3,2,7/2,2,2,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,-1,0,0,1,1,1,2,2,3/2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-21/2,-5,-6,-4,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-39,-19,-19,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-7,-12,-6,-8,-7,-15,-8,-9,-7,-12,-7,-11,-11,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-21/2,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-15/2,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-25,-12,-13,-8,-13,-7,-9,-7,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-10,-10,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-32,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-10,-6,-8,-7,-29/2,-7,-8,-5,-9,-5,-8,-7,-15,-8,-9,-7,-12,-8,-12,-12,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-11,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-13,-12,-23,-12,-14,-12,-22,-15,-23,-23,-47 -0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,1,0,1,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1/2,-1,0,-2,-1,-2,-2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,5/2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,5/2,4,3,4,3,4,3,4,4,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,3/2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-5/2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-9/2,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-24 -0,0,1/2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,-1,0,-1,-1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,3,2,2,2,4,2,5/2,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,1,1,3/2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-5/2,-2,7,4,7/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,1,2,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,3,4,3,7/2,3,4,3,9/2,4,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,3,3,6,4,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,11/2,4,6,4,4,3,5,3,5/2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,2,2,2,2,2,0,0,0,0,0,0,1/2,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-5/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-19/2,-6,-10,-5,-6,-5,-9,-4,-5,-3,-6,-3,-4,-4,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-13/2,-4,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-7/2,-4,-7,-3,-7/2,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-13/2,-6,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-23/2,-12,-25 -0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,7/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,3/2,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-5/2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-5/2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-7/2,-7,-4,-5,-7/2,-7,-5,-8,-8,-17 --1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,-1,1,1,2,2,3/2,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,7,4,4,3,4,3,3,2,4,2,2,2,7/2,2,3,3,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,2,2,0,1,1,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,4,3,3,3,5,4,5,5,1,1,1,1,1,1,1,1,1,1,1,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,9/2,3,4,5,7,4,4,3,4,3,4,4,6,4,4,3,7/2,2,3,3,8,5,5,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,11,6,6,4,11/2,4,4,3,6,3,3,2,7/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,1,1,-1,0,0,0,-3/2,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,0,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-1,0,0,0,1/2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7/2,-2,-4,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-20,-10,-10,-6,-21/2,-6,-7,-5,-9,-4,-5,-4,-13/2,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-9/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-2,-3,-3,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-16,-7,-7,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-13/2,-4,-6,-6,-18,-8,-8,-5,-15/2,-4,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-7,-7,-16,-8,-8,-5,-15/2,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-12,-6,-7,-6,-23/2,-8,-13,-13,-27 -0,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,1,1,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-10,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1/2,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1/2,1,3,2,2,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,-1,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,3,3,3,2,2,2,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,0,0,0,0,-1,0,1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,2,3,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,3,3,3,2,5/2,2,4,3,4,4,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,8,4,9/2,3,4,2,5/2,2,4,2,2,2,2,2,3/2,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,1,1,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-13,-6,-11/2,-4,-5,-2,-3,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-7/2,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-20 -0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,1/2,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,5/2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,11/2,7,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-6,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 -0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,2,2,9/2,3,3,2,3,3,4,4,2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,1/2,0,0,0,-1,0,0,0,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,6,4,4,3,4,3,4,3,5,3,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,8,4,4,3,4,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3/2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3/2,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1/2,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,19/2,6,6,6,10,7,10,9,12,7,7,5,6,4,4,3,9/2,2,2,1,1,1,1,1,4,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,1/2,1,1,1,0,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-3,-2,-4,-2,-2,-2,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-25,-12,-12,-8,-12,-6,-8,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-15/2,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-11/2,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-8,-7,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-11,-9,-17,-11,-17,-17,-34 -0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-7/2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-11/2,-9,-9,-18 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,0,1,1,1,1,1,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,3,2,2,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,2,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,4,3,7/2,4,1,1,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,8,4,9/2,3,4,3,3,3,3,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-16,-8,-15/2,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-8,-4,-7/2,-2,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-3,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-3,-7,-3,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-9/2,-4,-11,-5,-11/2,-4,-5,-2,-7/2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-10,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-20 -0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,3/2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-6,-7/2,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-5/2,-6,-5/2,-2,-1,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-7/2,-8,-4,-4,-2,-4,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-15 -0,0,0,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,3/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3/2,2,2,2,1,1,2,2,5/2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,3,2,7/2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,4,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,5/2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,3,5,4,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,13/2,4,5,5,7,4,4,4,11/2,4,4,4,5,3,3,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,8,6,8,9,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-3/2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-22,-11,-11,-7,-11,-5,-6,-5,-9,-4,-4,-3,-11/2,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-5,-11,-5,-5,-3,-9/2,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-6,-3,-3,-2,-7/2,-2,-4,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-17,-8,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-8,-15,-7,-6,-4,-13/2,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-7,-4,-15/2,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-27 -1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,5/2,4,3,4,7/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-3/2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1/2,-1,0,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,-1,-1,3,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,2,2,2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,5,5,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,4,5,4,9/2,4,5,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,1,1,3/2,1,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-7,-3,-4,-3,-7,-4,-13/2,-6,-21,-10,-21/2,-6,-10,-5,-6,-5,-9,-4,-9/2,-3,-6,-3,-9/2,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-2,-4,-3,-5,-5,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-13/2,-4,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-9,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-11/2,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-5,-4,-6,-4,-11/2,-5,-12,-6,-11/2,-4,-7,-4,-11/2,-6,-11,-6,-8,-6,-12,-8,-25/2,-12,-26 -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,5/2,3,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,5,3,4,3,5,7/2,4,4,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,6,8,9,13,7,7,9/2,6,4,4,7/2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-25 -2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3/2,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,-3,-2,-4,-4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,0,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,9/2,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,-1,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,9/2,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,6,4,4,4,7,5,7,7,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,15/2,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,5,9,6,8,8,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,29/2,8,8,6,10,6,7,6,10,6,7,5,8,6,8,8,14,8,9,7,11,7,9,9,17,10,11,9,16,11,16,17,25,13,13,9,13,7,8,7,11,6,5,4,5,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-11/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-15/2,-4,-4,-2,-4,-2,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-12,-42,-20,-20,-13,-20,-11,-13,-11,-20,-10,-11,-8,-13,-7,-10,-9,-19,-9,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-39/2,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-31,-15,-16,-11,-17,-9,-11,-10,-19,-10,-11,-8,-13,-8,-11,-11,-22,-11,-11,-7,-12,-7,-9,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-25,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-24,-11,-11,-7,-12,-7,-9,-8,-17,-9,-10,-8,-15,-9,-14,-14,-28,-14,-15,-11,-18,-10,-14,-13,-27,-14,-17,-14,-26,-17,-25,-25,-50 -1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,1,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,7/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-7/2,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-13/2,-12,-6,-6,-3,-5,-5/2,-3,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-7/2,-8,-4,-4,-7/2,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-13/2,-8,-7,-13,-8,-12,-12,-25 -1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1/2,1,0,0,0,0,-1,0,0,1,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,3/2,1,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,1,1,2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,1,1,0,0,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,7/2,4,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,4,3,7/2,2,4,2,5/2,2,5,3,7/2,3,5,4,5,5,1,1,1/2,0,1,1,2,2,2,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,9/2,4,7,4,9/2,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,7,4,4,4,6,4,7/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-3,-1,-3/2,-1,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-21,-10,-19/2,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-9/2,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-7/2,-2,-5,-2,-3,-3,-6,-3,-7/2,-3,-6,-3,-5,-5,-10,-4,-9/2,-2,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-15,-7,-8,-5,-8,-4,-5,-4,-10,-4,-9/2,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-8,-4,-9/2,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-4,-8,-4,-13/2,-6,-12,-6,-6,-4,-6,-3,-7/2,-2,-6,-2,-5/2,-2,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-9/2,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-13/2,-6,-12,-6,-8,-7,-13,-8,-12,-12,-25 -1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,1/2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,1,1,0,0,1,1,1,3/2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,5/2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-8,-3,-3,-2,-4,-3/2,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -1,1,1,1,2,2,2,2,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,1,1,1,2,2,2,1,1/2,1,1,1,0,1,1,1,3/2,2,2,2,-3,-1,0,0,0,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,0,0,1,1,1,0,-1,0,-1,-1,3,2,1,1,1,1,2,2,4,2,2,2,5/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,5/2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,0,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,3/2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,1,1,1,2,2,4,3,3,2,7/2,3,4,3,2,2,2,2,5/2,2,2,1,2,2,2,2,5/2,2,2,3,4,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,5,3,3,3,9/2,4,5,5,0,1,1,1,1/2,1,1,2,2,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,6,3,3,3,4,3,4,4,8,4,4,3,9/2,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,13,7,8,6,8,5,5,4,6,4,4,3,3,2,2,2,1,1,1,1,3/2,2,2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,1,0,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,-2,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-4,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-2,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-9,-4,-4,-2,-9/2,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-5/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-15,-7,-8,-5,-15/2,-4,-5,-4,-10,-5,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-12,-6,-8,-7,-27/2,-8,-13,-13,-26 -1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,0,1,1,1,0,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1/2,0,0,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,9/2,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1/2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-3/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 -0,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,3/2,1,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,1,0,1,1,1,1,1,1,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,0,1,1,1/2,0,2,2,2,1,2,1,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1,1,2,1,1/2,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,7/2,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,3,3,2,3,2,3,2,5/2,2,4,3,7/2,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,-1/2,-1,1,1,1,1,0,1,1,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1/2,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-5,-3,-9/2,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-7/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-8,-17 -0,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-2,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,2,1,1,1,2,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,-1/2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-3,-13,-6,-6,-3,-5,-5/2,-3,-3,-6,-5/2,-3,-2,-3,-2,-3,-5/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-7/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-9/2,-7,-7,-14 --2,0,0,1,1,1,2,2,5/2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,-4,-1,-1,0,-1,0,-1,0,-3/2,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,1,1/2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,2,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,5/2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,7/2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,0,1,1,1,2,2,2,1,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-2,-2,-7/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1/2,0,0,0,0,1,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,7,4,4,3,4,2,2,2,7/2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,11/2,4,4,3,5,3,4,4,2,2,2,1,1,1,2,2,7/2,2,2,2,3,2,3,2,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,10,5,5,4,6,4,6,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,4,13/2,4,4,3,4,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-2,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-2,-3,-3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,1/2,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,-1,-2,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-24,-11,-11,-7,-10,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-5,-8,-3,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-7,-4,-7,-7,-10,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-13/2,-3,-4,-3,-6,-3,-5,-5,-15,-7,-6,-4,-6,-3,-4,-4,-17/2,-4,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-4,-2,-4,-4,-15/2,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-12,-6,-6,-4,-8,-4,-6,-6,-25/2,-6,-8,-6,-12,-8,-12,-12,-26 -0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,-1/2,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,1,1,2,2,1,1,2,2,2,2,5/2,2,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,3,2,3/2,1,2,1,1,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,2,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,0,0,1/2,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,5/2,2,0,0,1/2,0,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,5,3,4,3,3,2,5/2,2,2,2,3/2,2,2,2,3,3,5,3,7/2,3,3,2,3,3,5,3,4,4,6,4,11/2,6,7,4,9/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,1,1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1/2,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-13,-6,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-7/2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-9/2,-3,-7,-4,-7,-7,-15 -0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,9/2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-11 --1,0,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,3/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,3/2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,3/2,2,2,2,2,2,2,1,1/2,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,3,3,4,3,3,2,2,1,1,0,-1,0,0,0,0,0,0,0,1,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,0,0,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3/2,2,2,2,3,2,2,2,7/2,3,4,3,2,2,2,2,5/2,2,3,3,4,2,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,2,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,4,6,4,5,4,13/2,4,6,7,10,6,6,4,11/2,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1/2,1,2,2,2,2,2,2,5/2,2,2,2,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-16,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-11/2,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-5,-4,-13/2,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,9/2,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-3,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-12 --2,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,1,1,1,2,2,1,1,3/2,2,2,1,1/2,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,0,0,1/2,0,0,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,3/2,1,0,0,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,1,1,0,0,0,0,1/2,1,0,1,1,1,2,2,2,2,3,2,1,1,-1,0,1/2,1,0,1,3/2,1,1,1,3/2,2,1,1,1,1,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,3,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,2,1,2,2,5/2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,3,3,3,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,0,0,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1/2,0,0,0,-1,-1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,-1,0,0,0,1,1,1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-3/2,-2,-13,-6,-11/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-2,0,0,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-9/2,-4,-8,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-7,-5,-8,-8,-17 --2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1/2,0,0,0,0,-1,-1,-2,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,3/2,1,1,-1,0,0,1,1,1,2,1,1,1,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1/2,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-5,-8,-8,-16 --5,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-9/2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3,3,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-3/2,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,13/2,4,3,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,11,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,13/2,4,4,4,6,4,5,5,9,6,7,6,9,6,9,9,15,8,8,5,7,4,5,4,5,3,4,3,5,3,3,3,5,3,3,2,3,2,1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-4,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-11/2,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-4,-24,-12,-12,-8,-13,-7,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-5,-4,-9,-6,-9,-9,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-27/2,-6,-6,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-11/2,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-8,-33/2,-8,-9,-6,-10,-5,-7,-7,-14,-7,-9,-8,-16,-10,-16,-16,-33 --2,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,5,3,4,7/2,5,4,5,5,8,5,5,3,4,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-3/2,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1/2,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16 --3,-1,-1,0,-1,0,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,1,1,1,3/2,2,1,1,1,1,1,1,1,1,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1,0,-1,0,1,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,-1,0,-1/2,0,0,0,1/2,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,5,3,5/2,2,2,2,2,2,3,2,2,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,3,4,2,5/2,2,3,3,4,4,5,3,4,4,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,2,1,1,1,-1,0,0,0,0,0,-1/2,0,1,1,1/2,1,1,1,3/2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-7/2,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,0,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-9,-4,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17 --2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,2,2,2,2,2,2,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-3/2,-4,-2,-4,-4,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 --3,-1,-1,0,-1,0,1,1,0,0,0,1,1,1,1,1,3,2,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-4,-1,-1,0,-1/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-1,0,0,0,0,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,2,2,5/2,2,2,2,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,2,1,1,2,2,5/2,2,2,3,6,3,3,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,5/2,2,2,2,4,3,3,2,7/2,3,4,4,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,4,11/2,4,6,6,11,6,6,4,11/2,3,3,3,3,2,2,2,5/2,2,3,3,1,1,1,1,2,1,1,1,-1,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1/2,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,-4,-2,-2,-2,-7/2,-2,-2,-2,-15,-7,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-8,-4,-4,-2,-5/2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1/2,0,0,-1,-2,-1,-2,-2,-9/2,-2,-4,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6,-2,-2,-2,-7/2,-2,-3,-3,-6,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-13/2,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-4,-3,-8,-4,-5,-4,-17/2,-6,-9,-9,-19 --1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-5,-3,-5,-5,-11 --2,-1,-1,0,0,1,1,1,0,0,1/2,0,1,1,1,1,3,2,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,0,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,2,1,1/2,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,1,1,1,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,7/2,3,4,2,5/2,2,4,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,9,5,9/2,3,5,3,3,3,4,2,5/2,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,3/2,1,1,1,1/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,0,0,1/2,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-12,-6,-6,-4,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-4,-7/2,-2,-3,-2,-3,-2,-6,-3,-7/2,-3,-7,-4,-7,-7,-14 --1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,1/2,0,0,0,0,0,0,2,2,2,2,1,1,2,2,2,3/2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1/2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1/2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,9/2,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-5/2,-3,-3,-6,-4,-6,-6,-13 --2,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-3/2,0,0,0,0,1,1,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,5,3,3,2,3,2,1,1,1/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,2,2,2,2,5/2,2,2,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,15/2,5,6,6,10,7,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,1,1,2,2,2,1,1,0,-1/2,0,0,0,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,0,0,0,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-4,-2,-4,-4,-3,-1,0,0,0,1,1,1,1/2,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-22,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-9/2,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-7,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-12,-25 -0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,3/2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-5/2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-4,-3,-5,-3,-6,-6,-13 -0,1,1,1,-1,0,1/2,0,0,0,0,1,0,0,1/2,1,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,0,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,2,1,1,1,1,1,3/2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,1/2,1,0,0,1/2,0,-1,0,1/2,0,1,1,1/2,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,0,-2,0,0,0,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,3/2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,3,2,5/2,2,3,2,5/2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,7/2,4,6,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,4,5,4,9/2,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-2,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-3/2,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-7/2,-3,-7,-4,-9/2,-3,-6,-4,-7,-7,-15 -0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1/2,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-5/2,-5,-3,-5,-5,-12 --1,0,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,3,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,-1/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-1,-1,-1,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-3,-1,-1,0,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,7/2,2,3,3,3,2,2,2,3/2,2,2,2,3,2,2,2,9/2,3,4,4,9,5,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,2,3,4,3,3,2,5/2,2,3,3,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,5,8,5,6,5,17/2,6,8,9,15,8,7,5,13/2,4,5,4,8,4,4,3,7/2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-1,-3/2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-3,-1,-1,-1,-5/2,-1,-1,-1,-4,-2,-2,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-9/2,-3,-5,-5,-2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-19,-9,-9,-6,-9,-5,-6,-5,-10,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-1,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-13/2,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-11/2,-3,-4,-4,-10,-5,-6,-5,-19/2,-6,-8,-8,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-9,-4,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-4,-17/2,-5,-8,-8,-16,-8,-8,-5,-15/2,-4,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-3,-2,-9/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-4,-9,-4,-5,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-13/2,-4,-5,-5,-12,-6,-7,-5,-10,-6,-10,-10,-21 --1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1/2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,5/2,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,11/2,5,4,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-12,-6,-6,-4,-5,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,-1/2,-2,-1/2,0,0,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-3/2,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-5/2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14 --2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,-1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1/2,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,1/2,1,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,5,3,4,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,11/2,5,10,6,11/2,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,4,3,7/2,3,5,4,9/2,4,9,5,11/2,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,15/2,5,8,5,11/2,4,7,4,4,3,4,3,3,3,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,0,0,0,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-9,-6,-8,-4,-11/2,-4,-9,-4,-9/2,-3,-4,-2,-3,-3,-8,-4,-7/2,-2,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-11/2,-5,-12,-6,-11/2,-4,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-15,-7,-7,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-4,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-8,-5,-8,-4,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-12,-6,-6,-4,-6,-3,-9/2,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-11/2,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,1,1,0,0,0,1,1,1,0,1/2,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,7/2,5,4,6,5,10,6,6,4,6,4,5,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,4,5/2,3,2,4,5/2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,7/2,4,4,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-9,-9/2,-6,-9/2,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-7,-3,-4,-3,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-10,-6,-10,-10,-21 --5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,0,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,4,5,5,8,5,5,3,4,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,6,8,9,35/2,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,9,5,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,9,9,16,9,11,9,15,11,16,16,27,14,15,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,2,1,0,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-12,-8,-12,-11,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-6,-9,-9,-37,-18,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-11,-8,-13,-7,-10,-9,-17,-9,-10,-8,-14,-8,-12,-12,-47/2,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-10,-6,-9,-8,-17,-9,-11,-9,-16,-11,-17,-17,-32,-15,-15,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-26,-13,-13,-9,-16,-9,-12,-10,-19,-10,-13,-10,-19,-12,-18,-17,-35,-17,-18,-12,-20,-11,-13,-11,-22,-11,-13,-10,-17,-10,-14,-13,-26,-13,-13,-9,-15,-8,-11,-9,-18,-9,-11,-9,-16,-10,-16,-16,-33,-16,-17,-11,-17,-9,-12,-11,-21,-11,-12,-9,-16,-10,-15,-15,-30,-15,-16,-11,-17,-10,-13,-12,-24,-12,-14,-11,-21,-14,-21,-21,-43 --2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-4,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,5/2,3,3,5,3,4,3,4,3,3,3,4,5/2,3,3,4,3,3,3,6,4,4,3,4,5/2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,5/2,3,5/2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-3,-5/2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-18,-17/2,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-5/2,-5,-3,-5,-5,-10,-5,-5,-7/2,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-2,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-7/2,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-9/2,-9,-9/2,-6,-9/2,-9,-11/2,-8,-8,-17,-8,-8,-11/2,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-7/2,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 --1,0,-1/2,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,1,0,0,1/2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,0,0,-1,0,-3/2,-2,-1,0,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,1,1,1,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,3,7/2,3,4,3,7/2,3,3,2,3,3,4,3,3,3,6,4,4,3,4,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,4,5,4,5,5,9,6,13/2,6,8,6,17/2,8,14,8,15/2,6,8,5,5,4,8,5,5,4,5,4,9/2,4,6,4,4,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,6,4,7/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1/2,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1/2,1,2,2,3/2,1,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-3/2,-2,-5,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-3,-9/2,-4,-19,-9,-8,-5,-8,-4,-5,-4,-9,-4,-9/2,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-6,-3,-7/2,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-11/2,-4,-6,-3,-4,-3,-7,-4,-9/2,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-3,-7,-3,-7/2,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-11/2,-6,-13,-6,-13/2,-4,-8,-4,-11/2,-4,-9,-4,-11/2,-4,-10,-6,-17/2,-8,-16,-8,-17/2,-6,-9,-5,-13/2,-6,-11,-6,-13/2,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-4,-13/2,-6,-15,-7,-8,-5,-8,-4,-6,-6,-11,-5,-6,-5,-10,-6,-10,-10,-21 -0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-3,-1,-1,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,9/2,6,6,10,6,6,4,5,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1/2,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1/2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-11/2,-5,-3,-5,-2,-3,-2,-6,-2,-2,-3/2,-3,-2,-3,-5/2,-5,-2,-2,-3/2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-11/2,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-7,-14 --1,0,0,0,0,0,-1,-1,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1/2,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,1,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,5/2,2,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,-1,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,0,1,1,1,1/2,0,0,1,0,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,6,4,4,3,7/2,3,4,4,4,3,3,2,3,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,9/2,3,4,5,10,6,6,4,13/2,4,5,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,3,3,3,2,2,2,7/2,3,4,4,6,4,4,3,7/2,2,3,3,4,3,3,2,7/2,3,4,4,9,5,6,4,11/2,4,6,6,10,6,6,6,19/2,6,9,9,14,8,8,5,13/2,4,4,4,8,5,5,4,5,4,5,4,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,5,3,3,2,3/2,1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-5/2,-2,-3,-3,-3,-1,-1,-1,-5/2,-1,-2,-2,-6,-3,-4,-3,-13/2,-4,-6,-6,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,1,2,1,1,1,1/2,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-19,-9,-8,-5,-17/2,-4,-6,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-11/2,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-11/2,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-9/2,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-17/2,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-5,-19/2,-6,-9,-9,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-6,-4,-17/2,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-15,-7,-7,-5,-17/2,-4,-6,-6,-11,-6,-7,-5,-10,-7,-11,-11,-22 -0,1/2,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-9/2,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-5/2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-3/2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-3/2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-3,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-11/2,-12 -1,1,0,0,1,1,1/2,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-1,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,7/2,4,7,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,3,3,2,2,2,3,3,7,4,9/2,3,4,3,9/2,4,8,5,5,4,8,5,7,7,9,5,5,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,4,3,3,2,3,2,3/2,2,2,1,1,1,1,1,1,1,4,2,5/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-7/2,-3,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,1,1,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-3,-13,-6,-11/2,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-5/2,-3,-7,-3,-3,-1,-3,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-6,-4,-11/2,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-11/2,-4,-6,-3,-4,-3,-8,-4,-7/2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-10,-4,-9/2,-3,-5,-3,-4,-4,-7,-4,-9/2,-4,-6,-4,-13/2,-6,-14 -1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,3/2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-4,-5/2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-3,-2,-3,-5/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-5/2,-6,-5/2,-3,-2,-4,-2,-3,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 -1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-3,-1,-1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,1,1,1,1,2,3,2,3,3,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,-1,0,1,1,2,1,1,1,3/2,1,1,1,2,1,0,0,-2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,1,1,1,1/2,1,1,1,1,1,1,2,-1,0,0,0,0,1,1,1,3/2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3/2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,3/2,1,1,1,1,1,2,2,5,3,3,2,3,2,3,3,9/2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,4,2,2,2,2,2,2,2,9/2,3,4,3,5,4,5,4,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,10,6,6,5,8,5,6,6,23/2,7,8,7,11,7,10,10,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,7,4,4,3,3,2,2,2,7/2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,1,1/2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,1/2,1,1,1,2,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-2,-1,-1,0,-1,0,0,0,-1/2,0,1,1,2,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-6,-6,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-11/2,-2,-3,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-13/2,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-15/2,-4,-4,-2,-3,-1,-2,-2,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-4,-19/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-17,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-9,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-21 -1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,3/2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,0,1/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,-1,0,1/2,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,3/2,1,2,2,3/2,2,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,3/2,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,3/2,2,2,1,1/2,0,2,2,3/2,2,2,1,1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-2,0,0,0,0,0,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,3/2,1,0,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,3,2,7/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,4,3,3,3,3,2,7/2,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,7/2,4,6,4,4,4,6,4,13/2,6,8,4,9/2,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,5/2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-2,-2,-1,0,-1/2,0,0,0,1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-2,-1,-3,-2,-3,-3,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-1,-3,-1,-3/2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-6,-4,-11/2,-6,-10,-4,-4,-2,-5,-2,-7/2,-3,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-10,-4,-9/2,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-6,-4,-11/2,-6,-12 -2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,3/2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,5,3,3,3,5,4,5,5,6,7/2,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1/2,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1/2,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-3,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1/2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 -2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,-1,-1,1,1,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,1,3/2,1,1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1/2,0,1,1,0,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,3/2,1,1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,2,2,2,-1,0,0,1,2,1,1,1,2,2,2,1,1/2,1,2,2,2,1,1,1,1/2,1,1,1,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1/2,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,-1,-1,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-3/2,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,2,2,3/2,1,1,1,5,3,4,3,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,7/2,3,4,4,11,6,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,9/2,3,3,3,6,4,4,3,9/2,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3/2,2,2,2,5,3,3,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,4,2,2,2,3/2,2,2,1,0,0,0,0,-3/2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-2,-1,-5/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-4,-4,-8,-3,-3,-2,-7/2,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-11/2,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-3,-2,-11/2,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-13/2,-4,-8,-8,-12,-6,-6,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-4,-3,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14 -2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,3/2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,5/2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,6,7/2,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,0,0,0,0,0,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-3/2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1/2,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-3/2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-3,-3,-8,-7/2,-4,-2,-4,-3/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-3,-2,-4,-2,-4,-4,-8 -2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,-2,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,1,0,1,3/2,1,1,1,2,2,1,1,2,2,0,0,1/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,2,2,3/2,2,2,2,5/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,0,1,3/2,2,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,-1/2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,0,1,1,1,2,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,1/2,0,5,3,3,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,7/2,3,4,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,2,4,3,7/2,4,10,5,5,4,5,3,3,3,5,3,5/2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,7,4,4,3,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,9/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,2,2,3/2,2,3,2,3/2,1,2,2,3/2,1,0,0,0,0,-1,0,-3/2,-2,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-4,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-5/2,-2,-13,-6,-11/2,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-3/2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-3/2,-2,-6,-3,-3,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-9/2,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-11/2,-3,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-4,-3,-5,-3,-11/2,-6,-12 -2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,2,3/2,2,2,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,2,2,2,2,2,2,2,2,3,2,2,3/2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,-1/2,1,1,1,1,2,3/2,2,3/2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,5/2,4,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,9,5,5,7/2,4,3,3,3,4,5/2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,5/2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,4,4,7/2,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-12,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-5/2,-5,-3,-6,-6,-12 -3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,3,-1,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,10,5,5,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,7/2,2,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,2,4,2,2,2,3,2,3,3,6,4,5,5,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,11/2,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,17,9,9,6,9,6,7,6,11,6,6,4,6,4,4,4,15/2,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,23/2,6,7,5,8,5,6,6,11,7,8,7,13,9,13,13,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7/2,2,2,1,1,1,0,0,0,0,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-5/2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,1,1,1,1,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-23,-11,-11,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-4,-6,-6,-27/2,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-6,-5,-9,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-6,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-12,-20,-10,-10,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-9,-23,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-6,-23/2,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-24 -2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1/2,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,3/2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-5,-7/2,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-5/2,-5,-3,-5,-5,-12 -3,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,3/2,2,1,1,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1/2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,-1,-1,2,2,3/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,1,2,5/2,2,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1/2,1,1,1,1,0,0,0,1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-3/2,0,-2,0,-1/2,0,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,5,3,3,2,3,2,3/2,2,3,2,2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,5/2,2,9,5,11/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,5,5,8,6,8,8,8,4,9/2,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,-1,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,0,0,1/2,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-3/2,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,-1,-2,-2,-12,-6,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-3,-2,-7/2,-4,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-9/2,-4,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-4,-3,-6,-4,-13/2,-6,-10,-4,-9/2,-2,-5,-2,-7/2,-2,-5,-2,-2,-1,-4,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-11,-5,-9/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-3,-6,-4,-11/2,-6,-13 -3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,3/2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,6,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-2,-4,-2,-4,-4,-9 -6,4,4,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,5/2,2,2,3,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,5/2,2,3,3,7,4,3,2,3,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,1,1,1,1,0,0,-1,-1,2,2,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,1/2,1,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,1/2,0,0,0,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,3,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,-2,-1,-1,0,-3/2,0,-1,0,-3,-1,-1,0,-3/2,0,-1,-1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,-1/2,0,0,-1,-1,0,-1,0,-3/2,-1,-2,-1,0,1,1,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,-1,6,3,3,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,3,3,2,7/2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,3,9,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,4,4,5,3,4,3,9/2,3,4,4,6,4,4,3,5,4,5,5,6,4,4,4,11/2,4,4,4,6,4,6,5,17/2,6,8,8,8,5,5,4,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,-1/2,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,1/2,0,0,-1,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-7/2,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3/2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-2,-5,-2,-2,-2,-7/2,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-5,-2,-2,-2,-9/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-15/2,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-7/2,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-4,-13,-6,-5,-3,-9/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-7,-7,-14 -4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,1/2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,5,5,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1/2,-1,0,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 -6,4,4,3,2,2,2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,2,2,5/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,1,1,1,3,2,5/2,2,3,2,3/2,1,2,2,2,2,2,2,3,3,6,4,7/2,2,3,2,5/2,2,3,2,3/2,1,0,0,1/2,0,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,2,1,2,1,1,1,1,1,0,0,-5,-2,-3/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,0,0,1/2,1,0,0,1/2,0,-1,0,1,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,3/2,1,1,1,1,1,2,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,5/2,2,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,3,2,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,5,5,5,3,7/2,3,5,3,4,3,5,4,5,4,7,5,7,7,7,4,9/2,4,4,3,7/2,3,5,3,4,3,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,0,0,0,-3,-1,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-5,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-7/2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-6,-3,-9/2,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-5,-3,-5,-5,-11 -6,3,3,5/2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,3/2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,3/2,2,2,2,3/2,2,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1/2,0,1/2,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1/2,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-5/2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-5/2,-4,-4,-10 -10,6,6,4,5,3,4,3,7/2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,11/2,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,3,3,3,4,2,2,1,1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,1,1,1,0,0,-8,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1/2,0,0,0,0,0,-2,-2,-1,0,0,1,1,1,0,0,1/2,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,4,3,5,5,8,5,5,3,4,3,3,3,6,3,3,2,3,2,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,11/2,4,4,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,8,5,5,4,6,4,6,5,9,6,8,7,12,8,12,12,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,1/2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,1,2,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,4,3,3,3,4,3,3,2,5/2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-4,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-5,-5,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-19/2,-5,-6,-4,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-11/2,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-11/2,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-13,-6,-7,-5,-8,-4,-5,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-19 -6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,5,3,3,3,4,3,4,7/2,6,4,5,4,7,5,7,7,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,1,1,3/2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1/2,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-9/2,-10 -8,4,9/2,3,4,3,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,7/2,4,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,7/2,3,4,2,5/2,2,2,2,3/2,2,2,1,1/2,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,4,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,0,0,-5,-2,-2,-1,-1,0,0,0,-1,0,1/2,1,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,1,0,-1/2,0,-1,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,1,1,1/2,0,0,0,1/2,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,0,-1/2,0,5,3,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,11/2,4,7,5,7,7,9,5,11/2,4,6,4,4,4,5,3,7/2,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,1,3/2,2,1,1,1,1,1,1,3/2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-11 -7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,3/2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1/2,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,5/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1/2,-1,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-5/2,-4,-4,-8 -11,6,6,4,11/2,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,7/2,2,2,2,3,2,3,2,3,3,4,4,3,2,2,2,3/2,1,1,1,3,2,3,2,3,3,4,4,5,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,3/2,1,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,0,0,-2,-2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1/2,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3/2,1,0,0,-7,-3,-3,-1,-3/2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,2,2,2,2,3,3,4,4,-1,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,-1,-1,0,0,0,1/2,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,5,3,3,3,9/2,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,9/2,3,4,4,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,5,3,3,2,7/2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,3,3,4,3,3,3,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,12,7,7,5,15/2,5,6,5,8,4,4,3,9/2,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-5/2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,1,1,2,0,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,1,4,3,3,2,2,2,2,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-3,-2,-9/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-3,-4,-3,-5,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-5,-2,-2,-2,-9/2,-3,-5,-5,-9,-4,-4,-2,-7/2,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5/2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-11/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-5,-10,-4,-4,-3,-11/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-4,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-7,-15 -8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,0,-1/2,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-2,-4,-3/2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-9/2,-10 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,3,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,9,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3/2,2,2,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,3/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,0,-1,0,-1/2,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,3,2,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,7/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,5,4,5,4,10,5,5,4,5,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,13/2,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,5,7,4,9/2,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,4,2,2,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-3/2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-7/2,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-2,-7/2,-2,-6,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-7,-4,-9/2,-3,-6,-4,-11/2,-5,-10,-4,-9/2,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-4,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-7/2,-3,-6,-3,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-7/2,-3,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15 -11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,4,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,4,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,3,5,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,9,7,10,10,13,7,7,5,7,4,5,9/2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-5,-5/2,-4,-5/2,-6,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-7/2,-8,-4,-5,-4,-8,-5,-7,-7,-15 -21,11,12,9,13,8,9,8,13,7,7,5,7,5,6,5,9,5,5,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,6,6,10,6,6,4,6,3,3,2,3,2,2,2,2,2,3,3,6,3,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-3/2,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7/2,-1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,18,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,10,17,12,18,18,25,13,13,9,12,7,8,7,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,4,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-13/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-21/2,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,5,3,3,2,3,2,3,2,3,2,1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-23,-11,-11,-7,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-19/2,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-29,-14,-15,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-21,-10,-10,-7,-12,-6,-7,-6,-12,-6,-7,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-6,-11,-6,-7,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-7,-5,-9,-5,-7,-7,-14,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,9/2,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-1,-1/2,-2,-2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,13/2,10,10,13,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-3/2,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-5/2,-5,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-4,-7,-7/2,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-5/2,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-7/2,-4,-7/2,-7,-4,-7,-7,-15 -12,7,7,5,8,5,11/2,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,2,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,9/2,4,6,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,7/2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,2,2,3/2,2,2,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,3/2,1,2,2,2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,-6,-3,-3,-2,-4,-2,-3/2,-1,-3,-1,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,3,0,0,1/2,0,-1,0,1/2,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-3/2,-2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,7/2,3,4,3,7/2,3,4,3,9/2,4,10,5,5,4,6,4,7/2,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,5,4,5,4,11/2,5,8,5,6,5,8,6,10,10,14,8,15/2,5,6,4,5,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,0,1,1,1,0,0,1/2,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,1/2,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-9/2,-4,-12,-5,-5,-3,-4,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-5/2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-9/2,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-11/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-7,-4,-9/2,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-9/2,-4,-7,-4,-9/2,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-5,-3,-11/2,-6,-12,-6,-6,-3,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-15 -8,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,3,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,3,2,2,2,3,3,4,7/2,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,9/2,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-3/2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 -12,7,7,5,15/2,4,5,4,7,4,4,3,9/2,3,4,4,5,3,4,3,7/2,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,7/2,2,3,3,6,4,4,3,7/2,3,4,3,6,4,4,3,9/2,3,4,4,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,5,5,8,4,4,3,5,3,3,2,4,3,3,2,5/2,2,2,3,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,0,0,1,1,0,0,-1/2,0,0,-1,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,1,1,1,1,1,1,1,1,1,-7,-3,-4,-2,-7/2,-2,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,1/2,0,0,0,-1,0,1,1,2,2,2,2,4,3,3,2,5/2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,1,3/2,2,2,1,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,11/2,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,4,3,3,3,9/2,3,4,4,10,6,6,4,11/2,3,3,3,5,3,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,5/2,2,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,14,7,7,5,7,4,5,5,8,5,5,4,5,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1/2,0,0,-1,-4,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,2,2,2,2,3/2,1,0,0,1,1,1,1,1/2,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-9/2,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-4,-15/2,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-13/2,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-11,-5,-6,-4,-11/2,-2,-3,-2,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-9,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-6,-3,-3,-2,-11/2,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-4,-15/2,-5,-8,-8,-17 -7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-4,-3/2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1/2,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,3/2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,2,5/2,6,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,8,9/2,4,3,5,3,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3/2,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-2,-5/2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,-10 -8,5,5,4,6,4,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,2,2,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,6,4,9/2,4,5,3,4,4,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,1,1/2,1,2,1,1/2,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,-5,-2,-2,-1,-2,0,-1/2,0,-1,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1/2,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,4,2,5/2,2,3,2,2,2,3,2,3/2,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,3,7,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,4,3,3,3,3,2,5/2,2,3,2,2,2,4,3,7/2,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,10,6,11/2,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,-1/2,-1,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,0,0,1/2,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-5/2,-2,-5,-3,-4,-3,-6,-4,-11/2,-5,-11,-5,-6,-4,-7,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-9/2,-4,-9,-4,-4,-3,-4,-2,-5/2,-2,-6,-2,-5/2,-2,-3,-2,-5/2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-6,-6,-13 -7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,3,2,3,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,5/2,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,3/2,2,3/2,2,2,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-3/2,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-5/2,-3,-5/2,-5,-3,-5,-5,-11 -13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,11/2,3,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,9/2,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,2,2,2,3/2,1,1,1,0,0,-1,-1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,0,3,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,0,-1/2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,1,1,1,1,3,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-2,5,3,3,2,3,2,3,2,7/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,11/2,3,3,2,2,2,2,2,7,4,4,3,5,3,3,3,5,4,5,4,7,5,6,6,13,7,7,5,6,4,4,4,13/2,4,4,3,4,3,3,3,8,5,5,4,5,3,3,3,9/2,3,3,3,4,3,5,5,4,3,3,2,2,2,3,3,11/2,4,4,3,5,3,4,4,10,5,5,4,6,4,6,6,21/2,6,8,6,10,7,10,11,16,9,9,7,10,6,7,6,17/2,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,2,5/2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7/2,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1/2,1,1,1,1,1,0,0,4,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-11/2,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-4,-3,-13/2,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-21/2,-6,-7,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-6,-21/2,-5,-6,-4,-8,-4,-6,-5,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-10,-10,-7,-11,-5,-6,-5,-21/2,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-17/2,-4,-6,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-19/2,-4,-5,-3,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-5,-21/2,-6,-7,-6,-12,-7,-11,-11,-22 -8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,5/2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,2,2,2,3/2,2,2,2,2,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,1,0,1,1,1,1,1,1,1/2,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,-1/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-5/2,-5,-2,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-7/2,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-5,-5/2,-3,-3,-6,-7/2,-6,-11/2,-12 -9,5,5,4,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,3,3,4,2,5/2,3,4,3,3,3,4,3,4,4,5,3,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,4,5,4,9/2,4,7,4,4,3,5,3,3,2,2,2,3/2,2,2,2,2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,5/2,2,3,2,3/2,1,1,1,1/2,0,0,0,1/2,0,2,1,1,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,0,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,1,1,1,-1,0,0,1,1,1,1/2,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,1,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,3/2,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,-1/2,-1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,4,3,3,2,4,2,2,2,4,3,4,3,5,3,4,4,9,5,5,4,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,7/2,4,4,2,5/2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,7/2,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,7/2,3,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,1,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,3,2,3/2,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-7/2,-2,-5,-3,-6,-6,-12,-5,-5,-3,-7,-3,-4,-3,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-6,-3,-7/2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-11/2,-4,-6,-3,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-5/2,-2,-4,-2,-9/2,-4,-10,-4,-9/2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-7,-4,-13/2,-6,-14 -8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,5/2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,7/2,4,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,0,0,0,-1/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,4,6,4,6,6,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1/2,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-3/2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-5/2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11 -13,7,6,4,13/2,4,5,5,8,5,5,4,13/2,4,5,5,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,13/2,4,4,4,8,5,6,5,7,4,5,5,9,5,5,4,6,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,7/2,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,1,1,1,2,2,5,3,2,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,0,-2,0,0,0,-1/2,0,0,0,-2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3/2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1/2,0,0,1,1,1,1,0,-1/2,0,-1,-1,2,1,1,1,3/2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,3,4,4,5,3,3,3,9/2,4,5,5,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,10,6,7,6,10,7,10,9,13,7,7,5,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1/2,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,0,-1/2,0,1,1,0,0,0,0,1/2,1,2,2,0,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1/2,0,-1,-1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-12,-5,-5,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-9/2,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-15/2,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-9,-4,-5,-4,-13/2,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-9/2,-3,-5,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-9,-9,-6,-17/2,-4,-5,-4,-8,-4,-4,-3,-11/2,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-6,-5,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-7,-4,-5,-4,-9,-6,-9,-9,-19 -9,5,4,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,4,4,7,4,4,3,4,3,3,3,6,7/2,4,3,5,3,4,7/2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,1,1,1,0,0,0,0,0,-1/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,5/2,3,5/2,3,7/2,7,4,5,4,7,5,7,6,8,5,5,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,3/2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,1/2,1,1,0,0,0,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1/2,-2,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-5/2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12 -13,7,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,7/2,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,5,3,5/2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,3,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,1,1,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3/2,2,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1/2,1,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,0,0,1/2,0,0,0,-1/2,0,-1,0,-3/2,-2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,3,5,3,7/2,3,5,4,11/2,6,11,6,6,4,6,4,9/2,4,5,3,3,3,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,9/2,4,6,4,4,3,3,2,5/2,2,4,3,3,3,3,2,7/2,4,7,4,7/2,3,4,3,4,5,9,6,13/2,5,9,6,9,9,11,6,6,4,6,3,3,2,5,3,3,2,4,3,3,2,3,2,5/2,2,2,2,3/2,1,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,2,2,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-11,-5,-5,-3,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-7/2,-4,-7,-3,-3,-2,-3,-2,-3,-3,-8,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-9,-4,-4,-3,-5,-2,-7/2,-3,-8,-4,-5,-3,-6,-4,-11/2,-6,-10,-4,-9/2,-2,-4,-2,-5/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-7,-7,-16,-8,-15/2,-5,-7,-4,-9/2,-4,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-13/2,-4,-6,-3,-5,-4,-8,-4,-9/2,-3,-6,-3,-4,-4,-8,-4,-7/2,-2,-5,-2,-3,-3,-6,-3,-9/2,-4,-7,-5,-8,-8,-17 -13,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,5/2,4,3,5,4,5,5,10,5,5,4,6,4,4,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1/2,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,7/2,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,4,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,9/2,8,5,6,5,8,6,8,17/2,10,6,6,4,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,1,1,1,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-3/2,-2,-2,-6,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-3,-7,-4,-7,-7,-14,-7,-7,-4,-7,-7/2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-5/2,-4,-3,-7,-3,-4,-7/2,-7,-4,-7,-7,-15,-7,-7,-9/2,-7,-7/2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-5/2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-15/2,-16 -24,13,13,9,12,7,9,8,14,8,9,7,10,6,7,6,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,8,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,11/2,4,4,3,5,3,4,4,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,5,7,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,6,3,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,2,1,1,1,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,3,4,2,2,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9/2,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,20,10,10,7,9,5,6,5,8,4,4,3,5,4,5,5,19/2,6,6,4,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,7,6,9,6,9,9,17,10,11,9,15,11,16,16,18,9,9,6,8,5,5,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,0,0,0,0,0,1,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-27/2,-6,-7,-5,-8,-4,-6,-5,-10,-5,-7,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-13/2,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-22,-10,-10,-7,-11,-6,-8,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-5,-7,-6,-13,-7,-8,-7,-13,-9,-15,-15,-28,-14,-14,-10,-16,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-8,-17,-8,-8,-6,-10,-5,-7,-6,-13,-7,-9,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-9,-18,-9,-9,-6,-11,-7,-10,-9,-37/2,-9,-10,-6,-10,-6,-8,-7,-15,-8,-9,-7,-13,-8,-12,-12,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-8,-35/2,-8,-9,-6,-11,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-33 -13,7,7,5,7,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,3/2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,-1/2,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-2,-1/2,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-7/2,-7,-9/2,-7,-7,-15,-7,-7,-9/2,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-7/2,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 -14,8,15/2,6,8,5,11/2,5,8,5,5,4,5,4,9/2,4,7,4,4,3,4,3,7/2,4,6,4,4,4,6,4,5,5,8,4,9/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,1,2,1,1,1,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,-1,0,0,1,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,3/2,1,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,2,3,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4,3,7/2,3,6,4,7/2,3,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,4,4,5,4,11/2,6,11,6,11/2,4,6,4,4,3,5,3,3,2,4,3,7/2,4,6,4,7/2,3,3,2,3,3,3,2,3,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,5,9,5,6,5,8,6,9,9,10,6,11/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1/2,0,1,1,3/2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1/2,1,0,0,0,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-7/2,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,-1/2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,-1/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-2,-4,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-4,-4,-7,-4,-15/2,-8,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-7/2,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,-10,-4,-9/2,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-11/2,-5,-10,-5,-5,-3,-5,-3,-9/2,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-9/2,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-8,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-8,-8,-18 -10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1/2,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,1,2,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,7/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,6,5,7,7,8,9/2,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-5/2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-5/2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-7/2,-6,-6,-12,-6,-6,-7/2,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 -15,8,8,6,17/2,5,6,6,8,4,4,4,11/2,4,5,5,7,4,4,3,9/2,4,5,5,6,4,4,4,13/2,4,6,6,11,6,6,4,9/2,3,3,2,5,3,3,3,4,3,3,3,5,3,4,4,11/2,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,4,3,9/2,3,4,4,5,3,4,3,7/2,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,2,2,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,0,0,2,1,1,1,1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,7/2,2,2,2,4,3,3,2,2,2,2,2,0,0,0,1,1,1,1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3/2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,6,4,4,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,6,4,4,3,7/2,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,12,7,7,5,13/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,4,3,4,4,11/2,4,6,6,7,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,12,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,1,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-3/2,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,0,0,1,1,0,0,1/2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3/2,-1,-2,-2,-6,-2,-2,-1,-5/2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,3/2,1,1,1,2,1,1,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-11/2,-3,-5,-5,-11,-5,-5,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-3,-4,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-3,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-21/2,-6,-10,-10,-20,-9,-9,-6,-19/2,-5,-6,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-5,-5,-4,-13/2,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-4,-3,-13/2,-4,-5,-4,-13,-6,-6,-4,-13/2,-4,-5,-4,-8,-4,-5,-4,-19/2,-6,-10,-10,-20,-10,-10,-6,-21/2,-6,-8,-7,-13,-6,-6,-4,-13/2,-4,-6,-6,-13,-6,-6,-4,-15/2,-4,-5,-5,-10,-5,-6,-4,-17/2,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-22 -9,5,5,4,6,7/2,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,5/2,4,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,8,5,5,7/2,5,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,5,3,3,2,4,2,2,2,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,7/2,3,5,3,3,3,5,3,4,4,6,4,7/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-1,0,0,0,0,0,-1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,4,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,-1,0,0,0,-2,-1,-3/2,-1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,5/2,2,6,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,10,6,11/2,4,6,4,4,4,5,3,7/2,3,4,3,7/2,3,6,4,7/2,2,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,7/2,3,5,3,3,2,3,2,7/2,4,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,0,1,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1,0,0,0,-1/2,0,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-5,-3,-9/2,-5,-12,-6,-11/2,-4,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-17/2,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-11/2,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-7/2,-3,-5,-3,-4,-3,-10,-5,-11/2,-4,-6,-3,-9/2,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-17/2,-6,-10,-5,-7,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-13/2,-4,-7,-4,-9/2,-4,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-10,-5,-5,-3,-6,-3,-9/2,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17 -11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,5/2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,3/2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,5/2,4,4,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3/2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-5/2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-10,-5,-5,-3,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-9/2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,6,4,6,4,6,5,17/2,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,10,5,5,4,6,4,5,5,17/2,5,6,5,9,6,9,9,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,11/2,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-5/2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3/2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1/2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,5/2,2,2,2,2,2,3,3,8,5,5,3,4,3,3,3,11/2,3,3,2,3,2,3,3,5,3,2,2,2,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,2,7/2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,6,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,4,4,4,9,5,5,4,6,4,6,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,7,6,21/2,6,7,6,9,6,8,8,11,6,7,6,10,6,8,8,27/2,8,10,9,15,11,16,16,18,9,9,6,8,5,5,4,15/2,4,5,4,7,5,6,6,6,4,4,3,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,1,1/2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,1/2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,0,-1,0,-1,-1,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-7/2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-16,-10,-16,-16,-34,-16,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-9,-6,-9,-8,-16,-8,-8,-6,-10,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-20,-10,-10,-6,-10,-5,-7,-6,-27/2,-7,-8,-6,-10,-6,-8,-7,-20,-10,-10,-7,-11,-6,-8,-7,-29/2,-8,-10,-8,-16,-10,-16,-16,-32,-16,-16,-11,-18,-10,-12,-10,-37/2,-9,-10,-7,-12,-7,-10,-9,-20,-10,-10,-6,-10,-6,-8,-7,-27/2,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-10,-6,-8,-8,-19,-9,-10,-6,-10,-6,-9,-8,-33/2,-8,-10,-8,-16,-10,-15,-15,-30 -12,13/2,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,6,7/2,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-3/2,-2,-3/2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-9/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-5/2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-5/2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-11/2,-9,-5,-6,-5,-10,-9/2,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-9/2,-7,-3,-4,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 -14,8,15/2,6,7,4,11/2,5,7,4,5,4,6,4,5,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,10,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,1,1,1/2,0,0,0,1/2,0,2,2,2,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,3,2,3/2,2,1,1,1,1,-1,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,5,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,1,1,1,0,0,1/2,1,2,2,3/2,2,0,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,6,4,9/2,4,7,5,13/2,6,12,6,13/2,4,7,4,9/2,4,6,4,7/2,3,5,3,7/2,3,6,4,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,9/2,4,5,4,9/2,4,6,4,9/2,4,6,4,11/2,5,8,5,5,4,6,4,6,5,9,6,13/2,6,10,7,21/2,10,12,6,6,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3/2,2,0,0,1/2,1,1,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,1,1,1,1,1,1,3/2,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,0,1,1,1,0,0,1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-5,-2,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3/2,-1,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-9/2,-5,-11,-5,-9/2,-3,-5,-2,-3,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-14,-6,-13/2,-4,-7,-3,-4,-3,-7,-3,-7/2,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-10,-5,-5,-3,-6,-4,-11/2,-5,-11,-6,-13/2,-5,-10,-6,-10,-10,-23,-11,-21/2,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-7,-4,-11/2,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-19/2,-10,-22,-10,-21/2,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-11/2,-6,-12,-6,-6,-4,-7,-4,-9/2,-4,-8,-4,-11/2,-4,-8,-5,-17/2,-8,-17,-8,-17/2,-6,-9,-4,-5,-4,-9,-4,-9/2,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-6,-13/2,-5,-10,-6,-19/2,-10,-20 -12,13/2,6,5,6,4,4,4,6,4,4,7/2,5,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1/2,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,3,3,3,4,3,4,7/2,5,3,4,4,6,4,6,6,10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,9/2,7,4,4,3,5,7/2,5,4,7,5,6,5,8,6,9,9,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-5/2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-5/2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-11/2,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-7/2,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-7/2,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17 -22,12,12,8,23/2,6,7,6,11,6,7,6,17/2,6,8,7,11,6,6,5,7,4,5,5,8,5,6,5,17/2,6,9,9,17,9,9,6,19/2,6,7,6,7,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,8,5,6,5,17/2,6,8,8,14,7,7,5,15/2,4,5,5,7,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,9/2,3,3,3,4,3,3,2,7/2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,5/2,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,2,1,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,2,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-5/2,0,0,0,-2,0,0,0,1/2,0,0,0,-1,0,0,1,2,2,2,2,4,3,3,2,7/2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,7/2,2,3,3,7,4,5,4,6,4,5,5,9,5,6,6,19/2,6,9,9,18,9,9,6,9,5,5,4,7,4,4,4,11/2,4,5,4,8,4,4,4,11/2,4,4,4,7,4,4,4,6,5,7,7,10,6,6,4,13/2,4,5,5,8,5,6,5,15/2,6,8,7,12,7,7,5,15/2,5,6,6,12,7,9,8,14,10,15,15,17,9,9,6,8,5,5,4,8,5,6,5,7,5,6,6,7,4,4,3,7/2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,1,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,-3/2,0,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5/2,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,2,2,1,1,1,0,0,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-9/2,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-19/2,-6,-9,-9,-21,-10,-10,-6,-21/2,-5,-6,-5,-10,-5,-5,-4,-8,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-14,-7,-8,-5,-17/2,-5,-7,-7,-16,-8,-10,-8,-31/2,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-8,-6,-10,-6,-9,-8,-15,-7,-8,-6,-19/2,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-11,-23,-11,-11,-7,-23/2,-6,-8,-7,-12,-6,-7,-5,-10,-6,-9,-8,-18,-9,-9,-6,-10,-6,-8,-7,-15,-8,-10,-8,-31/2,-10,-15,-15,-33,-16,-16,-10,-16,-9,-11,-9,-16,-8,-8,-6,-21/2,-6,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-13,-7,-8,-7,-15,-7,-8,-6,-21/2,-6,-10,-9,-18,-9,-10,-7,-23/2,-6,-9,-8,-16,-8,-10,-8,-31/2,-10,-15,-15,-31 -15,8,8,6,8,9/2,5,4,8,9/2,5,4,6,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,5,3,3,3,4,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,7/2,4,4,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,5/2,4,5/2,3,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,3,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-3/2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1/2,-1,0,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1/2,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-5/2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-5/2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-7/2,-5,-9/2,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-6,-7/2,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-6,-7/2,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-9/2,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-10,-9/2,-5,-7/2,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -22,12,12,8,11,6,15/2,6,11,6,13/2,5,8,5,7,7,11,6,13/2,5,7,4,11/2,6,9,6,13/2,5,8,6,17/2,9,17,9,9,6,10,6,13/2,5,7,4,5,4,6,4,11/2,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,17/2,8,15,8,8,6,8,5,11/2,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,-1/2,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,2,1,1,1,3,2,2,1,1,1,3/2,1,1,1,3/2,2,1,1,1,1,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,1,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,4,7,4,9/2,4,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,4,9/2,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,27/2,14,16,8,17/2,6,8,5,11/2,4,8,5,5,4,6,4,6,5,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,3,2,2,2,1,1,3/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,-1,0,-1,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,1,1,1,0,0,0,1,1,1,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-13/2,-4,-6,-3,-5,-4,-6,-2,-2,-1,-4,-2,-2,-2,-6,-2,-5/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-5,-4,-10,-6,-19/2,-10,-21,-10,-21/2,-6,-10,-5,-7,-6,-11,-5,-11/2,-4,-7,-4,-11/2,-5,-12,-6,-11/2,-4,-6,-3,-9/2,-4,-9,-4,-9/2,-4,-8,-5,-7,-7,-13,-6,-13/2,-4,-7,-4,-5,-4,-7,-4,-9/2,-4,-7,-4,-13/2,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-19/2,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-15/2,-7,-13,-7,-17/2,-6,-12,-8,-12,-12,-24,-12,-23/2,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-17/2,-8,-16,-8,-21/2,-8,-15,-10,-15,-15,-32,-16,-31/2,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-17/2,-8,-17,-8,-17/2,-6,-10,-6,-15/2,-7,-14,-7,-17/2,-7,-13,-8,-25/2,-12,-26,-13,-13,-8,-14,-7,-17/2,-7,-15,-7,-8,-6,-11,-6,-19/2,-9,-19,-9,-9,-6,-12,-7,-19/2,-8,-16,-8,-21/2,-8,-16,-10,-31/2,-15,-31 -21,11,11,8,11,7,8,13/2,11,6,6,5,8,5,7,13/2,11,6,6,5,7,9/2,6,6,10,6,7,11/2,9,6,9,9,17,9,9,6,9,11/2,6,5,8,9/2,5,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,5/2,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1/2,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,3/2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,7/2,5,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,8,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-7/2,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-7/2,-7,-3,-3,-2,-4,-2,-3,-5/2,-6,-2,-2,-3/2,-3,-1,-2,-2,-3,-3/2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-5/2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-7,-7/2,-4,-7/2,-7,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-8,-16,-10,-16,-16,-34,-17,-17,-11,-17,-9,-11,-9,-16,-8,-9,-6,-11,-6,-9,-8,-16,-8,-9,-6,-10,-6,-8,-7,-14,-7,-8,-6,-12,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-10,-15,-15,-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-14,-7,-8,-7,-14,-7,-8,-6,-11,-13/2,-10,-9,-19,-9,-9,-6,-12,-7,-9,-8,-17,-9,-10,-8,-16,-10,-16,-15,-31 -41,21,21,14,21,13,16,14,24,13,13,10,16,10,14,13,23,12,12,9,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,13,8,10,9,15,11,16,16,31,16,16,11,16,9,10,8,13,7,8,6,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,7,12,8,11,10,18,9,9,7,10,6,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-18,-9,-9,-6,-9,-4,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,0,1,1,2,2,2,3,5,3,4,4,6,4,6,6,21/2,6,7,5,8,5,6,5,9,5,6,5,7,5,8,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,12,12,22,11,11,8,12,7,7,6,10,6,7,5,8,6,8,7,13,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,24,13,13,9,13,7,8,6,10,6,7,5,8,5,6,6,11,6,7,5,8,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,22,11,11,8,11,7,9,8,13,7,7,5,8,6,8,7,13,7,6,4,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,6,5,8,5,7,7,13,8,9,8,13,9,12,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,21,12,13,10,17,11,16,16,31,16,17,12,18,11,13,11,20,11,13,10,17,11,16,15,28,15,15,11,18,11,15,14,27,16,19,16,28,19,27,27,28,15,15,10,15,8,9,7,12,7,7,5,8,6,8,8,15,8,9,7,10,6,7,6,11,7,8,7,11,7,10,10,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,11,9,16,11,17,17,33,17,18,13,19,11,13,11,20,11,13,10,16,10,13,13,24,13,14,10,16,10,12,11,19,10,11,9,14,9,13,13,24,13,13,9,12,7,8,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-31,-15,-14,-9,-14,-8,-10,-8,-15,-7,-7,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-11,-6,-7,-6,-13,-7,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-8,-8,-6,-11,-6,-8,-8,-16,-9,-11,-9,-18,-12,-18,-18,-37,-18,-19,-13,-20,-11,-14,-13,-25,-13,-15,-11,-19,-12,-18,-17,-35,-18,-19,-14,-24,-14,-19,-18,-35,-19,-23,-19,-34,-22,-34,-34,-69,-34,-34,-23,-35,-19,-23,-19,-35,-17,-18,-13,-22,-13,-18,-16,-32,-16,-17,-12,-19,-11,-14,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-17,-17,-11,-16,-9,-11,-9,-17,-8,-9,-7,-12,-7,-11,-11,-24,-12,-13,-9,-15,-9,-12,-10,-20,-10,-12,-10,-18,-12,-18,-19,-39,-19,-20,-13,-21,-12,-15,-13,-25,-13,-14,-10,-18,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-23,-12,-14,-11,-19,-12,-18,-18,-38,-19,-19,-12,-19,-10,-13,-11,-21,-11,-12,-10,-18,-11,-16,-15,-31,-16,-17,-13,-22,-13,-18,-16,-32,-17,-21,-18,-33,-21,-32,-32,-64 -21,11,11,8,11,7,8,7,12,7,7,11/2,8,6,8,7,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,9/2,7,4,4,7/2,5,7/2,4,4,8,4,4,7/2,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,4,5/2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1/2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,9/2,5,4,6,4,5,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,4,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,17/2,14,10,14,14,15,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,17,9,10,7,10,6,7,6,10,6,7,6,8,5,7,7,13,7,7,5,9,11/2,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,5/2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-7/2,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-2,-3,-5/2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-5/2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-5/2,-5,-5/2,-4,-3,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-17,-8,-9,-13/2,-11,-6,-9,-8,-17,-9,-11,-9,-16,-10,-16,-33/2,-34,-33/2,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-11/2,-9,-5,-6,-11/2,-11,-6,-7,-5,-9,-11/2,-8,-8,-18,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-11/2,-9,-9,-18,-9,-9,-11/2,-9,-9/2,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-15/2,-8,-6,-11,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -21,11,23/2,8,11,7,8,7,12,7,15/2,6,8,6,8,7,12,6,6,5,8,5,11/2,5,9,5,5,4,7,4,11/2,6,9,5,11/2,4,5,4,9/2,4,6,4,4,3,4,3,9/2,4,6,4,9/2,4,5,3,4,4,7,5,6,5,8,6,17/2,8,16,9,9,6,9,5,11/2,4,6,4,9/2,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,5,5,9,5,5,4,5,3,7/2,3,3,2,3,2,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,-1,0,-3/2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-7/2,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,4,8,4,4,3,6,4,5,5,8,5,6,5,8,5,6,6,11,6,13/2,5,6,4,4,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,4,6,4,13/2,7,13,7,7,5,7,4,9/2,4,5,3,4,3,4,3,7/2,4,6,4,7/2,3,5,3,4,4,6,4,7/2,3,5,4,5,5,10,6,11/2,4,6,4,5,4,7,4,4,3,5,4,9/2,4,7,4,5,4,4,3,7/2,3,5,4,9/2,4,6,4,13/2,7,11,6,11/2,4,6,4,9/2,4,7,4,9/2,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,9/2,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,13/2,6,9,6,8,8,16,9,9,6,10,6,15/2,6,11,6,7,6,10,6,8,8,15,8,8,6,10,6,17/2,8,13,8,9,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,4,11/2,6,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,5,4,5,5,8,5,11/2,5,8,6,17/2,9,17,9,19/2,7,10,6,15/2,6,10,6,7,6,8,5,7,7,13,7,7,5,9,6,13/2,6,10,6,6,5,8,5,7,7,13,7,13/2,4,7,4,5,4,6,3,3,3,3,2,3,3,5,3,7/2,3,3,2,5/2,2,4,2,5/2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-4,-4,-9,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-9,-4,-5,-3,-7,-4,-13/2,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-7/2,-3,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-5,-3,-9/2,-5,-11,-5,-11/2,-4,-6,-3,-7/2,-3,-7,-3,-4,-3,-5,-3,-9/2,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-7/2,-2,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-7/2,-3,-7,-3,-4,-3,-6,-3,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-4,-3,-8,-4,-11/2,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-13/2,-5,-9,-5,-8,-8,-17,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-9,-16,-10,-33/2,-17,-33,-16,-17,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-17/2,-6,-10,-5,-13/2,-6,-11,-6,-7,-5,-9,-6,-17/2,-8,-18,-8,-8,-5,-7,-4,-9/2,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-11/2,-5,-10,-5,-11/2,-4,-9,-6,-9,-9,-19,-9,-10,-7,-10,-5,-7,-6,-12,-6,-13/2,-4,-9,-5,-7,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-7,-7,-15,-8,-17/2,-6,-11,-6,-17/2,-8,-16,-8,-10,-8,-16,-10,-15,-15,-31 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,4,3,4,4,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,5/2,3,3,5,3,3,5/2,4,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,5/2,3,2,3,3,4,3,3,2,4,5/2,3,3,4,5/2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,4,3,4,7/2,5,3,4,3,3,2,3,3,4,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,9/2,7,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,5/2,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,7,5,7,9/2,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-6,-5/2,-3,-2,-3,-3/2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-5/2,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-7,-11,-11,-21,-10,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-7/2,-6,-3,-4,-7/2,-7,-7/2,-4,-3,-6,-4,-6,-11/2,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-5,-5,-12,-6,-6,-4,-7,-7/2,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-9/2,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 -20,11,11,8,23/2,7,8,7,12,7,8,6,17/2,6,7,7,13,7,7,5,15/2,4,5,5,9,5,6,5,15/2,5,7,6,9,5,5,4,5,4,5,5,6,4,4,3,9/2,4,5,5,6,4,4,4,11/2,4,4,4,8,5,6,5,17/2,6,8,8,15,8,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,3,3,2,2,2,9/2,3,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,1,3,2,1,1,1,1,1,1,2,1,1,0,-1/2,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-9/2,-2,-3,-2,-2,0,0,0,-3/2,-1,-2,-1,-1,0,-1,0,-3/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,4,3,3,3,5,3,4,4,6,4,4,3,7/2,2,2,2,6,4,4,3,9/2,3,4,4,8,4,4,3,5,4,5,5,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,6,4,13/2,4,6,7,12,6,6,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,4,3,9/2,3,4,4,5,3,3,3,4,3,5,5,9,5,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,10,6,6,4,11/2,4,4,4,7,4,5,4,11/2,4,4,4,7,4,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,12,6,6,5,15/2,5,6,5,11,6,6,5,17/2,6,8,8,17,9,10,7,19/2,6,8,7,12,7,8,6,10,7,9,9,15,8,8,6,21/2,7,9,8,12,7,9,8,14,9,13,13,14,8,8,5,7,4,4,4,8,5,5,4,6,4,6,5,9,5,5,4,11/2,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,15/2,6,8,8,17,9,9,7,10,6,8,7,11,6,6,5,8,5,7,6,12,7,8,6,17/2,5,6,6,8,5,5,4,13/2,5,7,7,13,7,7,5,13/2,4,5,4,6,3,3,2,7/2,2,3,3,4,2,2,2,7/2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3/2,1,0,0,1,1,2,2,5/2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-2,-9/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-4,-4,-10,-5,-6,-4,-13/2,-4,-7,-7,-14,-7,-7,-4,-15/2,-4,-4,-3,-8,-4,-4,-2,-9/2,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-3,-3,-8,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-3,-5,-5,-10,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-2,-9/2,-2,-3,-3,-7,-4,-5,-4,-9,-6,-10,-10,-19,-9,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-9,-5,-8,-8,-16,-8,-8,-6,-21/2,-6,-9,-8,-15,-8,-10,-8,-33/2,-10,-16,-17,-32,-16,-16,-10,-33/2,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-8,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-19/2,-6,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-19/2,-6,-8,-8,-19,-9,-10,-7,-11,-6,-7,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-10,-5,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-16,-8,-8,-6,-10,-6,-9,-8,-15,-8,-10,-8,-15,-9,-14,-14,-30 -11,6,7,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,2,3,5/2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,0,0,1/2,0,0,0,0,0,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,7/2,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,9/2,6,5,8,6,8,8,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-4,-5/2,-5,-5/2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-11/2,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-7/2,-4,-3,-5,-5/2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-5/2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-3/2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 -13,7,8,6,8,5,11/2,5,9,5,11/2,4,6,4,9/2,4,8,5,5,3,5,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,4,3,7/2,4,6,4,4,4,6,4,6,6,11,6,13/2,5,7,4,9/2,4,4,3,3,3,5,3,4,4,6,4,7/2,3,5,3,7/2,3,5,3,5/2,2,3,2,7/2,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-3,-1,-3/2,-1,-2,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,-1/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,5/2,2,4,3,7/2,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,5,3,7/2,3,6,4,11/2,5,9,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,4,3,5,3,4,3,6,4,11/2,6,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,7/2,4,7,4,7/2,3,4,3,3,3,6,4,7/2,3,5,3,7/2,4,9,5,5,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,12,6,13/2,5,8,5,6,5,9,5,6,5,8,5,7,6,10,6,11/2,4,7,4,11/2,5,8,5,13/2,6,10,7,9,9,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,7/2,3,5,3,4,4,6,4,9/2,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,6,6,12,6,13/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,8,5,5,4,5,3,4,4,6,4,7/2,3,5,4,11/2,6,10,6,11/2,4,4,3,7/2,3,4,2,2,2,2,2,3/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1/2,1,0,1,1,1,2,2,3/2,1,3,2,2,2,1,1,3/2,1,2,2,3/2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-3,-2,-5/2,-2,-6,-2,-5/2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-3,-1,-2,-2,-6,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-4,-2,-5/2,-2,-5,-2,-5/2,-2,-4,-2,-2,-2,-5,-2,-5/2,-1,-2,-1,-3/2,-2,-5,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-9/2,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-9,-5,-13/2,-5,-11,-7,-11,-11,-20,-10,-19/2,-6,-10,-5,-13/2,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-4,-9/2,-3,-6,-3,-9/2,-4,-7,-3,-4,-3,-6,-3,-9/2,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-7/2,-2,-3,-2,-3,-3,-6,-3,-7/2,-3,-6,-4,-11/2,-6,-12,-6,-13/2,-4,-7,-4,-5,-4,-8,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-9/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-9/2,-4,-12,-6,-11/2,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-11/2,-4,-6,-4,-11/2,-5,-10,-5,-7,-6,-11,-7,-10,-10,-20 -11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,11/2,6,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,6,7/2,4,3,5,3,4,9/2,10,11/2,6,4,7,4,5,9/2,8,9/2,5,4,7,9/2,6,11/2,8,9/2,4,3,5,4,5,9/2,7,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8,9/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,1,1,2,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3/2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-5/2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-5/2,-5,-5/2,-4,-3,-8,-7/2,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-5/2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-5/2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-4,-7/2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17 -20,11,11,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,4,3,3,3,4,3,5,5,17/2,5,6,6,10,7,10,9,17,9,10,7,10,6,6,5,15/2,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,7/2,2,2,2,3,2,2,2,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,-1,0,-1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,5/2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,-5/2,-1,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,1,1,0,0,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,9/2,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,11/2,3,3,2,3,3,4,4,5,3,4,3,5,3,4,3,5,3,3,3,5,4,5,5,12,6,6,4,6,4,4,3,9/2,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,12,7,7,5,6,4,5,4,13/2,4,4,4,6,4,5,4,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,13/2,4,6,5,8,6,9,9,11,6,6,4,6,4,4,4,15/2,4,5,4,6,4,4,4,4,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,13,7,7,5,8,5,6,5,17/2,5,5,4,7,5,8,8,17,9,10,7,11,7,9,8,13,7,8,6,9,6,9,9,13,7,7,5,8,5,7,7,25/2,7,8,7,12,8,12,13,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,7,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,5,13,7,7,5,6,4,4,4,13/2,4,6,5,8,5,7,7,14,8,8,6,8,5,5,4,11/2,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,1/2,1,2,2,2,1,1,1,4,2,2,2,3,2,2,2,5/2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-7/2,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-11/2,-2,-3,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-5,-4,-17/2,-4,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-13/2,-3,-4,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-2,-2,-1,-3,-2,-3,-3,-11,-5,-4,-2,-4,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-15/2,-4,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-15/2,-4,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-21/2,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-15,-8,-10,-9,-18,-12,-18,-18,-30,-15,-15,-9,-14,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-16,-8,-8,-5,-9,-5,-7,-6,-23/2,-6,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-6,-5,-21/2,-5,-6,-4,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-21/2,-5,-6,-5,-9,-5,-8,-8,-20,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-10,-6,-8,-8,-12,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-35/2,-9,-11,-9,-16,-10,-16,-15,-31 -11,6,6,4,6,4,5,4,7,4,5,4,5,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,3/2,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,2,2,3/2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,6,4,4,5/2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-5/2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-9,-6,-9,-9,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-15/2,-16 -12,6,13/2,4,7,4,5,4,8,5,5,4,5,4,5,4,6,4,7/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,6,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,3,2,2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-5/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,1,1,0,0,0,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,6,4,7/2,3,3,2,2,2,2,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,4,3,3,3,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,7/2,3,4,3,3,3,6,4,11/2,6,6,4,7/2,2,3,2,5/2,2,5,3,3,3,3,2,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,3,6,4,4,3,5,3,7/2,4,5,3,4,3,5,3,4,4,9,5,6,4,7,4,5,4,8,5,5,4,5,4,11/2,6,9,5,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,8,8,9,5,11/2,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,7/2,3,6,4,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,9/2,3,5,3,3,3,4,2,2,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1/2,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-8,-4,-7/2,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-9/2,-5,-10,-5,-5,-3,-5,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-7/2,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-8,-15/2,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-7/2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-7/2,-3,-9,-4,-7/2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-7/2,-3,-6,-3,-9/2,-4,-7,-3,-3,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-9/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-4,-9,-4,-9/2,-3,-5,-3,-5,-5,-8,-4,-11/2,-4,-8,-5,-8,-8,-17 -9,5,5,4,6,7/2,4,7/2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,5/2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,9/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,5/2,3,3,3,2,3,2,4,3,3,3,7,4,5,7/2,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,7/2,5,3,4,3,4,3,3,2,3,2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,3,4,4,5,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,-1,-1/2,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-3/2,-4,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-5/2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-5/2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 -15,8,8,6,17/2,5,6,5,10,5,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,2,2,2,2,7/2,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,4,4,8,5,5,4,11/2,4,4,4,7,4,4,3,5,3,4,3,3,2,3,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,1,1,1,4,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,-1,-1,-5/2,-1,-2,-3,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-3/2,0,-1,-1,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,0,0,0,2,2,2,2,5/2,2,3,3,2,2,2,2,5/2,2,3,3,1,1,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,2,2,5/2,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,9/2,3,4,5,9,5,5,4,5,3,4,3,3,2,3,2,7/2,2,3,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,9/2,3,4,4,5,3,4,4,13/2,5,7,7,6,4,4,3,4,3,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,8,4,4,3,5,3,3,3,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,4,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,5,5,4,13/2,4,6,6,11,6,6,5,15/2,5,6,5,8,5,6,5,8,6,9,9,11,6,6,4,11/2,4,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,9/2,4,5,5,12,7,7,5,7,5,6,5,6,4,4,3,5,3,4,3,7,4,5,4,11/2,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,11/2,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,5/2,2,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-11/2,-3,-4,-4,-10,-5,-5,-3,-9/2,-2,-2,-1,-4,-1,-1,0,-3/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-11/2,-2,-3,-3,-8,-4,-4,-3,-11/2,-3,-5,-5,-10,-5,-5,-4,-13/2,-4,-5,-5,-11,-6,-8,-6,-23/2,-8,-12,-12,-18,-9,-9,-6,-19/2,-5,-6,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-8,-4,-4,-3,-11/2,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-13/2,-4,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-9/2,-2,-4,-4,-11,-5,-5,-4,-13/2,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-10,-5,-6,-5,-19/2,-6,-9,-9,-20 -10,11/2,6,4,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1/2,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,7/2,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,3,5/2,4,5/2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,7/2,8,4,4,3,5,3,4,3,4,3,3,5/2,4,5/2,3,5/2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-3/2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 -13,7,15/2,6,8,5,11/2,5,9,5,5,4,5,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,3,5,4,11/2,5,9,5,11/2,4,7,4,9/2,4,7,4,9/2,3,5,4,5,5,6,4,4,3,5,3,4,3,3,2,5/2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,1,1,1/2,1,0,1,1,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,5/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,3,2,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,3,3,8,5,5,4,5,3,7/2,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,4,3,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,5/2,2,4,3,4,4,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,9/2,3,5,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,11/2,4,6,4,5,5,7,4,5,4,7,5,15/2,8,10,6,11/2,4,6,4,7/2,3,5,3,4,3,4,3,4,3,5,3,7/2,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,7/2,3,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,3,3,4,3,9/2,4,10,5,5,4,6,4,5,4,6,4,7/2,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,3,8,5,5,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-3/2,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-7/2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-5/2,-1,-3,-1,-2,-2,-3,-1,-3/2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-11/2,-6,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-9/2,-3,-5,-3,-4,-4,-8,-4,-5,-5,-9,-6,-19/2,-10,-15,-7,-15/2,-4,-7,-4,-9/2,-4,-6,-3,-3,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-2,-1,-3,-2,-5/2,-2,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-9/2,-4,-7,-3,-7/2,-2,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-9/2,-4,-8,-4,-5,-4,-8,-5,-15/2,-8,-16 -13,7,7,5,7,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1/2,-1,0,0,0,-1,0,0,1/2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,5/2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,10,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,4,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,7/2,4,7/2,5,3,3,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-9,-6,-9,-9,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-5/2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-5/2,-3,-5/2,-5,-5/2,-3,-2,-4,-2,-4,-7/2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15 -24,13,13,9,14,8,10,8,13,7,7,6,9,6,7,6,19/2,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,5,8,6,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,25/2,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,5,4,6,6,0,1,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,4,6,6,13,7,8,6,8,5,6,5,7,4,4,3,5,3,3,3,9/2,3,4,3,4,3,4,4,7,4,5,4,5,4,6,6,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,19/2,6,6,5,7,5,6,6,12,7,8,6,10,7,10,11,7,4,3,2,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,7,4,5,4,5,4,5,5,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,14,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,10,11,8,12,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,13,8,11,10,17,10,11,9,15,10,13,13,20,11,11,8,11,6,7,5,8,5,5,4,6,4,5,4,15/2,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,15,8,9,6,9,5,6,5,7,4,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,9,5,4,3,4,3,3,3,6,3,3,2,2,2,2,2,7/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-15/2,-3,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-7,-7,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-19/2,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-8,-33/2,-8,-8,-6,-10,-6,-9,-8,-16,-9,-11,-9,-17,-11,-17,-18,-28,-14,-14,-9,-13,-7,-9,-8,-15,-7,-8,-5,-8,-4,-6,-5,-21/2,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-16,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-19/2,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-4,-5,-4,-7,-4,-7,-6,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-8,-15,-10,-15,-15,-30 -13,7,7,5,8,5,6,5,7,4,4,3,5,7/2,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,7/2,5,3,4,3,5,3,4,4,7,4,4,7/2,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,5/2,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,7,9/2,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,3/2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-4,-2,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-17/2,-13,-6,-7,-4,-6,-3,-4,-7/2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-5/2,-4,-2,-3,-3,-6,-3,-4,-7/2,-7,-4,-7,-7,-15 -13,7,15/2,6,8,5,6,5,7,4,4,3,6,4,4,3,5,3,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,9/2,4,5,3,7/2,3,5,3,4,4,7,4,9/2,4,5,4,9/2,4,6,4,4,4,6,4,5,5,5,3,3,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,0,-2,-1,-3/2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,1,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,3,0,1,3/2,2,2,2,2,2,3,2,3/2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,3,2,7/2,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,2,2,2,2,3,2,3,3,5,3,7/2,2,4,3,4,4,8,4,9/2,3,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,4,3,5,4,9/2,4,7,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,13/2,4,7,4,9/2,4,5,3,3,2,4,3,7/2,3,4,3,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,8,5,5,3,5,3,7/2,3,5,3,5/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,4,2,5/2,2,4,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,3,8,4,9/2,3,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,2,2,2,1,2,1,1,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1/2,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-6,-2,-5/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-5/2,-2,-4,-2,-9/2,-5,-9,-4,-9/2,-2,-5,-2,-7/2,-3,-6,-3,-7/2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-11/2,-4,-9,-6,-17/2,-9,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-7/2,-2,-4,-2,-3,-3,-6,-3,-9/2,-4,-7,-4,-7,-7,-15 -9,5,5,4,6,4,4,4,6,7/2,4,3,4,3,3,5/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1/2,-3,-1,-1,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1/2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,4,5/2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,5/2,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,4,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,7/2,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-3/2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1/2,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9 -14,7,7,5,8,5,6,5,9,5,5,4,11/2,4,4,3,4,3,4,3,5,3,4,4,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,13/2,4,6,5,6,4,4,3,4,3,3,2,3,2,3,2,7/2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,1,1,0,0,1/2,0,0,0,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,7/2,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,0,0,-1/2,0,0,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,0,0,-2,-1,-2,-2,-4,-2,-2,0,-1/2,0,0,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,-1,0,1,1,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,7,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,4,13/2,4,6,6,5,3,3,2,2,2,2,1,3,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,5/2,2,3,3,8,4,4,3,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,4,4,6,4,5,4,13/2,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,15/2,6,8,8,11,6,7,5,7,4,5,4,5,3,3,2,7/2,3,4,4,4,3,3,3,9/2,3,3,3,5,3,3,3,9/2,4,5,5,7,4,4,3,9/2,3,4,4,4,2,2,2,7/2,2,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,7/2,3,4,4,10,5,5,4,11/2,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,4,3,4,3,9/2,3,4,4,9,5,6,4,11/2,4,4,3,5,3,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,5/2,2,2,2,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-5/2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-5/2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-2,-1,-5/2,-1,-2,-2,-6,-2,-2,-2,-7/2,-2,-2,-2,-5,-2,-3,-2,-11/2,-3,-5,-5,-9,-4,-3,-2,-5/2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-9/2,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-21/2,-6,-10,-10,-13,-6,-6,-4,-7,-3,-4,-4,-6,-3,-4,-2,-9/2,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-2,-9/2,-2,-3,-3,-6,-2,-2,-1,-5/2,-1,-1,-1,-4,-2,-2,-1,-5/2,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14 -8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,5/2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1/2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1/2,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3/2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-5/2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-2,-4,-2,-3,-3,-8 -10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,7/2,3,4,2,5/2,2,3,2,7/2,3,4,3,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,3,2,2,2,5/2,2,2,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,-1,-1,-2,0,-1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,0,0,1/2,1,2,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,4,3,3,3,6,4,4,3,4,3,9/2,5,4,3,3,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,3,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,6,4,7/2,3,4,2,5/2,2,3,2,7/2,3,3,2,2,2,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,2,5/2,2,4,2,5/2,2,3,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1,1,2,1,1,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,2,1,1,2,2,2,2,3/2,1,2,1,1,1,-2,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,-4,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-4,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,-7,-3,-5/2,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-5,-3,-4,-3,-8,-4,-5,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-5/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-3/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 -9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,4,3,3,3,6,7/2,3,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,7/2,6,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,3/2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,3/2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-7/2,-6,-6,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,4,3,3,3,4,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,4,5,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,5/2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1/2,0,1,1,2,2,2,2,1,1,2,2,3,2,3,2,3,2,3,2,3,2,3,3,1,1,1,1,0,1,2,2,5/2,2,2,2,2,2,3,3,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,2,2,5/2,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,9/2,3,4,4,6,4,5,5,-2,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,7/2,2,2,2,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,4,5,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,4,3,3,3,4,3,3,3,11/2,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,6,4,5,5,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,6,9,9,14,7,7,5,6,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,11/2,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3/2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,0,-3,-1,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-7/2,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-19/2,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-6,-11,-7,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-2,-3,-2,-11/2,-2,-3,-2,-3,-1,-2,-1,-9,-4,-4,-2,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-11/2,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-3,-2,-11/2,-2,-2,-2,-4,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-13/2,-3,-4,-2,-4,-2,-4,-3,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 -9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,5/2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,3/2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-3,-3/2,-2,-5/2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-7/2,-6,-6,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-3/2,-3,-3/2,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-9 -10,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,7/2,4,3,2,2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,7/2,3,5,4,5,4,7,4,4,3,4,3,7/2,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,1,2,1,1/2,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3/2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,3,2,3,3,-2,0,0,0,0,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,2,4,3,3,3,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,7/2,4,4,2,2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,7/2,3,6,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,3,7/2,4,5,3,4,4,6,4,6,6,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,7,4,4,3,4,3,7/2,3,5,3,3,2,4,3,3,3,3,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,3,2,4,3,3,3,5,3,7/2,3,5,4,5,5,8,4,9/2,4,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,4,3,9/2,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,7/2,3,6,4,4,3,3,2,2,2,4,2,5/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1,1,2,2,3/2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,0,0,0,1,1,1,1,1,0,0,1/2,0,1,1,0,0,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,-3,-1,-3/2,-1,-1,0,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,-1,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-3,-9,-4,-7/2,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-4,-9/2,-4,-7,-4,-7,-7,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-1,0,-2,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-5,-2,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-3,-2,-3,-1,-3/2,-1,-4,-2,-3/2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-5/2,-2,-4,-3,-5,-5,-10 -9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,1,2,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,1,1,1,1/2,0,1/2,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-3/2,-2,-1,-3,-3/2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-3/2,-2,-1,-3,-2,-4,-4,-8 -15,8,8,6,15/2,4,5,5,8,4,4,4,11/2,4,5,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,2,2,4,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,3,7,4,4,4,11/2,4,6,5,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,3,7/2,2,2,2,4,2,2,2,7/2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,3,2,2,1,1,1,3/2,2,2,2,1,1,2,2,3/2,1,0,0,1,1,0,0,-1/2,0,0,1,1,1,1,1,3/2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,3/2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,2,2,2,1,1,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,3/2,2,2,1,0,1,1,2,5/2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,5,5,-3,-1,-1,0,1/2,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,2,5,3,4,3,7/2,2,2,2,2,2,2,1,1,1,1,2,4,3,3,3,4,3,5,5,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,8,4,4,3,9/2,3,3,3,6,4,4,3,9/2,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,17/2,6,8,8,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,5,3,3,2,3,2,3,2,1,1,1,1,1,1,2,2,10,6,6,4,13/2,4,4,4,7,4,5,4,5,3,4,4,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,6,4,5,4,7,5,7,7,10,5,5,4,6,4,5,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,2,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,5,3,3,2,5/2,2,1,1,0,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,0,0,0,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-3/2,0,-1,-1,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-13/2,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-3,-2,-7/2,-2,-2,-2,-5,-2,-3,-3,-13/2,-4,-5,-5,-10,-5,-5,-4,-13/2,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-11/2,-3,-4,-4,-11,-6,-7,-6,-11,-7,-10,-10,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-9/2,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-5/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-7,-3,-4,-3,-11/2,-4,-6,-7,-16 -10,6,6,4,6,7/2,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,5/2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1/2,1,1,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1/2,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-3/2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3/2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 -15,8,8,6,8,5,5,4,7,4,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,5,3,5/2,2,3,2,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,4,5,4,11/2,5,10,6,6,4,5,3,7/2,3,4,3,3,2,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,2,2,5/2,2,3,2,5/2,2,3,3,4,4,-2,0,0,0,0,1,3/2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,2,3,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,6,4,9/2,4,8,5,11/2,5,8,6,8,8,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,2,2,2,2,1,1,3/2,2,10,6,6,4,6,4,4,3,6,4,7/2,2,4,3,3,3,5,3,5/2,2,2,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,7/2,3,5,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,4,3,6,4,5,5,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,7,4,7/2,3,3,2,5/2,2,4,2,2,2,2,1,1,1,0,0,0,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,3/2,1,1,1,2,2,1,1,1,1,-1,0,0,0,-4,-1,-1,0,0,0,-1/2,0,0,0,-1/2,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-7/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,0,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-6,-6,-4,-6,-3,-7/2,-3,-6,-2,-5/2,-2,-3,-1,-2,-2,-6,-2,-5/2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-6,-3,-5,-5,-10,-4,-9/2,-3,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-9/2,-4,-8,-4,-9/2,-3,-6,-3,-9/2,-4,-10,-5,-7,-5,-10,-6,-10,-10,-8,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-8,-4,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-5/2,-2,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-3,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-4,-3,-6,-4,-13/2,-7,-15 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,5/2,4,3,6,4,4,3,4,5/2,3,5/2,4,5/2,3,2,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,10,11/2,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,3/2,2,3/2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,5/2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,10,6,6,4,6,4,4,3,5,3,3,2,3,5/2,3,3,5,3,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1/2,-2,-1/2,-1,-1/2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-3/2,-3,-1,-2,-2,-6,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-5/2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-9/2,-10,-5,-6,-5,-10,-6,-10,-10,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-13/2,-14 -28,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,5,7,6,10,5,5,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,4,4,6,4,6,6,21/2,6,6,4,6,4,4,3,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,5/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-3/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,3,3,4,4,6,4,6,7,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,2,2,2,2,2,2,2,2,4,3,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,8,5,7,7,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,3,3,6,4,5,4,7,5,6,6,25/2,7,8,6,8,5,6,5,8,5,6,5,9,6,8,8,14,8,8,7,11,7,9,8,14,8,9,8,14,10,15,15,6,3,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,7,4,3,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,20,10,10,7,10,6,6,5,7,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,6,4,4,3,5,4,5,4,7,4,5,5,8,6,8,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-4,-19/2,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-13,-6,-6,-4,-7,-3,-4,-3,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-2,-6,-4,-6,-6,-24,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-7,-14,-7,-8,-6,-11,-7,-10,-10,-41/2,-10,-10,-7,-12,-7,-9,-8,-15,-8,-9,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-8,-11,-11,-22,-12,-14,-12,-22,-14,-21,-21,-18,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-6,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-13,-14,-29 -15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,0,0,0,1/2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,3,5/2,4,3,6,4,4,3,3,2,3,5/2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,5/2,3,2,4,3,4,4,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,2,1,1,1,2,3/2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-3/2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-3,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-5/2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -15,8,8,6,8,5,6,5,8,5,11/2,4,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,7/2,3,6,4,9/2,4,6,4,11/2,6,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,4,8,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,6,4,7/2,3,4,2,5/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1/2,1,1,1,0,0,-1,0,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,3,3,4,4,5,3,4,3,4,3,9/2,4,4,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,9/2,3,5,3,7/2,3,5,3,7/2,3,5,4,5,4,8,4,9/2,4,6,4,11/2,5,7,4,5,5,8,6,8,8,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,3,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,2,2,11,6,11/2,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,4,9/2,4,6,4,6,6,9,5,5,4,5,3,7/2,4,5,3,7/2,3,3,2,7/2,3,6,4,7/2,3,3,2,2,2,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,6,4,7/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1/2,0,-3,-1,-3/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-3/2,-2,-5,-2,-5/2,-1,-2,-1,-2,-2,-3,-1,-3/2,-1,-3,-2,-7/2,-4,-6,-2,-5/2,-2,-3,-1,-2,-1,-2,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-5/2,-3,-12,-6,-11/2,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-9,-4,-4,-2,-5,-2,-7/2,-3,-7,-3,-7/2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-10,-8,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-3/2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-3,-2,-5/2,-2,-5,-2,-3,-2,-4,-2,-7/2,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14 -11,6,6,4,6,4,4,7/2,6,4,4,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,3/2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,5/2,3,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,3,4,4,5,3,4,4,6,4,6,6,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-5/2,-3,-3/2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-3/2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-5/2,-6,-2,-2,-2,-4,-2,-3,-3,-7,-7/2,-5,-4,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 -16,8,8,6,17/2,5,6,5,10,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,13/2,4,5,5,8,5,5,4,9/2,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,7/2,3,4,3,6,3,3,2,7/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,1,1/2,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,1,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,5/2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1/2,0,0,1,-1,0,1,1,1,1,1,2,4,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,4,3,3,3,6,4,4,3,9/2,3,4,4,4,3,3,2,3,2,2,2,1,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,17/2,6,9,9,4,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,7/2,2,3,3,2,2,2,2,7/2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,11,6,6,4,6,3,3,3,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,9/2,3,3,2,4,3,3,2,7/2,3,4,3,8,5,5,3,4,3,3,3,6,4,4,4,13/2,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,7,4,4,3,7/2,2,3,3,6,4,4,3,9/2,3,4,4,5,3,3,2,7/2,2,2,1,2,2,2,1,1,1,1,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,5,4,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,0,1,2,2,2,2,2,2,3/2,2,2,2,0,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-6,-2,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,0,2,1,1,1,3/2,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,-1,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-9/2,-2,-4,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-4,-8,-4,-4,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-5,-3,-11/2,-3,-5,-5,-11,-6,-7,-6,-23/2,-7,-10,-10,-9,-4,-4,-2,-7/2,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-2,-1,-1,0,-3/2,-1,-2,-2,-8,-3,-3,-2,-7/2,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-9/2,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-11/2,-4,-6,-6,-13 -10,5,5,4,5,3,4,3,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,11/2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-3/2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1/2,-1,-1,-2,-3/2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -12,7,7,5,6,4,5,4,7,4,9/2,4,5,3,4,4,6,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,2,2,1,1,3/2,2,2,2,5/2,2,1,1,2,2,2,2,5/2,2,4,3,3,3,3,2,3,3,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,5/2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,0,0,1,1,1/2,0,1,1,1/2,0,1,1,1,0,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,0,0,1/2,0,0,0,0,1,0,1,1,1,1,1,3/2,2,3,2,3/2,2,1,1,3/2,1,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,2,3/2,1,4,3,3,2,2,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,7/2,3,5,3,4,4,6,4,9/2,4,6,4,6,7,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,6,3,3,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,4,3,3,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,3,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,-1/2,-1,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-3,-2,-7/2,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,3/2,1,1,1,1/2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,0,1,0,0,0,0,-1,0,1/2,1,1,1,1/2,0,0,0,0,0,-1,0,-3/2,-2,-7,-3,-5/2,-2,-3,-1,-2,-2,-3,-1,-3/2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-5/2,-2,-3,-2,-3,-3,-6,-2,-5/2,-2,-2,-1,-2,-2,-5,-2,-5/2,-2,-4,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-9/2,-4,-7,-4,-13/2,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-5/2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3/2,1,1,2,3/2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1/2,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,5/2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-3/2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-11/2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 -21,11,11,7,10,6,8,7,11,6,6,4,6,4,6,6,8,5,5,4,6,4,5,4,15/2,5,6,5,7,4,5,5,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,2,3,3,5,3,4,3,4,3,5,5,8,5,5,3,4,3,4,4,15/2,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,3,2,7/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,2,1,1,1,4,3,3,2,2,1,0,0,-1/2,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7/2,2,2,2,2,2,3,3,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,9/2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,6,4,4,3,5,3,4,4,11/2,4,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,19/2,6,8,7,11,8,11,11,8,4,4,3,5,3,3,3,9/2,3,3,2,3,2,2,1,4,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,2,2,2,7/2,2,2,1,1,1,1,1,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,11/2,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,6,7,13,7,7,5,6,4,4,4,13/2,4,4,3,3,2,3,3,8,5,5,3,4,3,4,4,11/2,4,4,3,5,4,5,5,6,3,3,2,3,2,2,2,5/2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,3,4,4,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,1,1,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-3,-7,-4,-7,-6,-8,-3,-3,-2,-4,-2,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,1,1,2,2,2,1,1,1,1/2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-10,-5,-5,-3,-6,-3,-4,-3,-13/2,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-3,-4,-4,-15/2,-4,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-4,-7,-4,-6,-6,-23/2,-6,-7,-5,-10,-6,-10,-11,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-7/2,-2,-2,-2,-4,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-2,-11/2,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-2,-4,-2,-2,-2,-9/2,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-5,-2,-3,-3,-13/2,-3,-4,-3,-6,-4,-6,-6,-13 -12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,3,2,2,3/2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1/2,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,7/2,4,4,6,9/2,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1/2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-3/2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-3/2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 -13,7,7,5,6,4,9/2,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,3,4,2,5/2,2,1,1,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,7/2,3,5,3,3,2,2,2,5/2,2,4,3,3,2,2,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,1/2,1,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,0,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,0,1,1,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,4,9/2,4,7,5,7,7,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,3,2,5/2,2,4,3,4,4,7,4,9/2,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,1/2,0,0,0,1/2,1,0,0,1/2,1,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-5,-2,-5/2,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-5/2,-2,-3,-1,-3/2,-2,-3,-1,-2,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-3,-1,-3/2,-1,-3,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,0,0,0,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,-1,0,1/2,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,3,2,2,3/2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,1,1,0,0,0,1/2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,6,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,4,3,3,3,6,7/2,4,3,4,3,3,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,3/2,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1/2,0,1,1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1/2,0,0,-1,0,-1,-1/2,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1/2,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3/2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -16,9,9,6,17/2,5,6,5,8,5,5,4,11/2,4,5,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,6,4,4,3,7/2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,4,2,2,2,7/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,1,1,0,0,0,0,1/2,0,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,-3/2,0,0,0,-2,0,0,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-2,0,0,0,-1/2,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,-1,0,0,0,-1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,1,1,1,2,5/2,2,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,3,3,6,4,4,3,9/2,3,3,3,7,4,4,3,7/2,2,3,2,4,3,3,2,3,2,2,2,6,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,11/2,4,4,4,8,4,4,4,11/2,4,5,4,7,4,5,4,5,4,5,4,6,4,4,4,15/2,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,5/2,2,3,3,7,4,4,3,7/2,2,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,9,5,4,3,9/2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,2,2,2,2,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,4,3,4,4,11/2,4,5,5,9,5,6,4,11/2,4,4,3,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,3,3,3,2,2,2,7/2,3,4,4,5,3,3,2,5/2,2,2,1,1,1,1,0,-1/2,0,0,0,1,1,1,1,1/2,1,1,1,2,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,0,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-3,-1,-2,-1,-3/2,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,0,1,1,1,1/2,0,0,0,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3/2,0,-1,-1,-5,-2,-2,-2,-9/2,-3,-5,-5,-7,-3,-4,-2,-9/2,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,1,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-9/2,-2,-4,-4,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-3,-3,-7,-3,-4,-3,-11/2,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-7/2,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 -10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,5/2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,3,5/2,3,3,4,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,5/2,3,2,3,2,2,5/2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-5/2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1,-2,-1,-1,-1/2,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-3/2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5 -14,8,8,6,8,5,11/2,4,7,4,9/2,4,5,4,9/2,4,7,4,9/2,3,4,3,4,4,5,3,7/2,3,5,3,7/2,4,5,3,3,2,3,2,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,2,1,1,3/2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,1,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,5/2,2,4,3,3,3,8,4,4,3,4,3,4,4,7,4,9/2,4,5,4,9/2,4,8,4,9/2,3,4,3,4,4,6,4,4,4,7,5,6,6,6,4,7/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,2,5/2,2,3,2,3,3,3,2,3,2,2,2,5/2,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,3,3,2,3,2,2,2,3,3,7,4,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,2,2,2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,3,2,7/2,4,6,4,4,3,4,3,7/2,3,5,3,4,4,5,4,5,5,9,5,5,4,5,3,7/2,4,5,3,3,2,3,2,5/2,3,5,3,7/2,3,3,2,3,2,3,2,5/2,2,4,3,3,3,4,2,5/2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,1,1,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,-1,0,1/2,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-4,-2,-2,-1,-1,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-6,-2,-5/2,-2,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-7/2,-4,-8,-4,-7/2,-2,-4,-2,-3/2,-1,-2,-1,-1,0,-1,0,0,0,0,0,1/2,1,1,1,0,0,1,1,0,0,0,0,1/2,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-6,-2,-5/2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-7/2,-4,-3,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,-6,-3,-7/2,-2,-4,-2,-7/2,-3,-8,-4,-9/2,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-3,-1,-2,-1,-3,-2,-5/2,-2,-6,-3,-3,-2,-4,-2,-3/2,-1,-2,0,-1/2,0,-1,0,-3/2,-2,-4,-2,-2,-1,-1,0,-1/2,0,-2,-1,-3/2,-1,-3,-2,-3,-3,-7 -14,8,8,6,8,5,6,9/2,7,4,5,4,5,7/2,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,5/2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,8,4,4,3,4,3,4,4,7,4,4,4,5,7/2,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,9/2,6,6,6,4,4,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,3,5/2,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,1,1,1,0,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-3/2,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1/2,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-7/2,-4,-3,-7,-4,-6,-6,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-3/2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1/2,-2,-1,-1,-1,-3,-2,-3,-5/2,-6 -27,14,15,10,15,9,10,8,13,7,7,6,9,6,8,8,27/2,8,8,5,7,5,6,6,10,6,6,5,7,5,7,7,10,6,6,4,5,3,3,2,3,2,2,2,2,2,2,2,7/2,2,2,2,2,1,1,1,2,2,3,3,4,3,4,4,11,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,3,3,2,2,2,3,2,3,2,3,2,3,2,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,1,1,1,1,1,1,1,1,1,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,1,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,0,0,-1,0,-1,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,1,1,2,2,2,2,4,3,3,3,6,4,5,5,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,11/2,4,4,3,3,2,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,5,4,5,5,15,8,9,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,7,12,8,12,12,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,4,3,3,2,7/2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,21/2,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7/2,-1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-17/2,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-19/2,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-27/2,-6,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-13,-8,-12,-12,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1/2,0,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-21/2,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-17/2,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 -14,8,8,6,8,5,6,5,7,4,4,7/2,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,3,2,3,3,5,3,3,5/2,3,2,3,3,9,5,5,4,5,7/2,4,4,6,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1/2,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-5,-2,-2,-1/2,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-3,-5/2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,7/2,3,4,3,4,4,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,2,2,2,2,3,3,6,3,3,3,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,1/2,0,0,1,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,4,2,2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,7/2,3,5,3,7/2,3,4,3,4,3,6,4,4,3,3,2,5/2,2,5,3,3,3,3,2,7/2,4,10,6,11/2,4,6,4,9/2,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,7/2,4,6,4,5,4,7,5,7,7,6,4,7/2,3,4,3,3,2,3,2,5/2,2,2,2,5/2,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,7/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,3,2,3,3,5,4,9/2,4,6,4,5,5,9,5,9/2,4,5,3,4,4,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,-1,0,0,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,1,1,1,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,0,0,0,1,1,1,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-7/2,-2,-3,-1,-2,-1,-3,-1,-3/2,0,-1,0,-1/2,0,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-1,0,1/2,0,-5,-2,-3/2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-5/2,-2,-4,-2,-5/2,-2,-4,-2,-4,-4,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-4,-3,-7,-4,-9/2,-4,-6,-4,-6,-6,0,0,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,1,1,1,1,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-4,-2,-5/2,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-5/2,-2,-6,-2,-5/2,-1,-2,-1,-2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5 -11,6,6,9/2,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1/2,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1/2,-2,-1/2,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-3 -18,10,10,7,21/2,6,7,5,7,4,4,4,6,4,5,5,8,4,4,3,9/2,4,5,5,6,4,4,3,5,3,4,4,6,4,4,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,8,4,4,3,7/2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,2,2,2,2,1,3,2,1,1,1,1,1,2,4,2,2,2,3/2,1,0,0,2,1,1,1,2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-2,0,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,1,3/2,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,5,3,3,2,5/2,2,2,2,3,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,9/2,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,12,7,7,5,13/2,4,5,4,8,5,5,4,13/2,4,6,6,8,5,5,4,11/2,4,4,4,8,5,5,5,8,6,8,8,7,4,4,3,9/2,3,4,3,5,3,4,3,7/2,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,5,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,4,7,4,4,3,7/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,3,6,4,4,4,13/2,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,2,5/2,2,2,2,4,2,2,2,5/2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,0,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,1/2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,1,0,1,1,1,1/2,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,-3,-1,-2,-1,-3/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,-2,0,0,0,-3/2,0,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-4,-4,-9,-4,-4,-2,-7/2,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-5/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-2,-7/2,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-15/2,-5,-8,-7,-1,0,0,0,1/2,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-7/2,-2,-3,-2,-5 -11,6,6,5,7,4,5,4,5,3,3,3,4,3,3,3,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,5/2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,9/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,2,4,3,3,2,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1/2,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-5/2,-4,-4,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3 -15,8,8,6,9,5,6,5,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,7/2,3,4,3,3,2,2,2,2,1,2,2,3/2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,5/2,2,4,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,5,10,6,11/2,4,6,4,4,4,7,4,9/2,4,6,4,5,5,6,4,7/2,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,1,1,1,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,5,3,7/2,3,3,2,3,3,5,3,3,2,3,2,5/2,2,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,7/2,3,5,3,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1/2,0,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,0,0,0,0,1/2,0,0,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,0,0,1/2,0,1,1,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-4,-2,-3/2,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-5/2,-2,-6,-4,-11/2,-6,0,1,1,1,0,0,1/2,1,0,0,0,1,1,1,0,0,0,0,1/2,1,0,0,1/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,1/2,0,1,1,0,0,1,1,1,1,0,0,1/2,0,-3,-1,-3/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-2,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-2,-2,-4 -14,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,5/2,4,3,4,3,3,2,3,2,2,3/2,2,2,2,2,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1/2,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,3,3,2,3,5/2,3,7/2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1/2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-3/2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4 -26,14,14,10,14,8,8,6,21/2,6,6,4,6,4,6,6,12,6,6,5,7,4,5,5,17/2,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,11/2,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,9/2,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,6,4,5,5,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,2,1,1,1,1,1,1,1,3,2,3,2,3,2,3,3,9/2,3,3,2,2,2,3,3,1,1,1,1,1,1,2,2,5/2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,15/2,5,6,5,9,6,8,8,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,5,17/2,5,6,5,9,7,11,11,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,9/2,2,2,2,3,2,2,2,6,4,5,4,6,4,4,4,13/2,4,4,3,5,4,5,6,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,7/2,2,3,3,6,5,7,7,9,5,5,4,6,4,5,5,17/2,5,5,4,7,4,5,5,7,4,4,3,5,3,4,4,15/2,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,6,4,4,3,3,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,1/2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,3/2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5/2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-5/2,-1,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-3,-4,-2,-2,-2,-7/2,-2,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-8,-4,-5,-4,-9,-5,-7,-6,-11,-7,-10,-10,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-2,-1,-2,-1,-5/2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-9/2,-2,-3,-2,-5,-3,-4,-4,-8 -15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,6,4,6,13/2,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,4,3,3,3,4,3,3,2,3,2,3,7/2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,-1/2,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-5/2,-5,-3,-5,-5,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,-1,0,0,1/2,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4 -18,10,10,7,10,6,13/2,5,7,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,4,6,4,7/2,3,4,3,4,3,6,4,7/2,3,4,3,3,3,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,7/2,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,1/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,9/2,4,9,5,5,4,6,4,4,4,5,3,7/2,3,4,3,9/2,4,6,4,4,3,3,2,7/2,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,9/2,4,6,4,9/2,4,7,5,15/2,8,8,4,4,3,4,3,7/2,3,3,2,2,2,2,2,5/2,2,5,3,7/2,2,4,3,3,2,4,2,5/2,2,2,2,5/2,3,5,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,4,3,3,3,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,3,2,5/2,2,6,4,7/2,3,4,3,3,3,5,3,7/2,3,4,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,0,1/2,0,0,0,1/2,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,0,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-3/2,-2,-4,-2,-3,-3,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,-1/2,0,-4,-2,-3/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,-1,-1,0,-1/2,0,-3,-1,-1,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,0,0,1/2,1,1,1,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,-1,0,0,0,0,1,1,1,1,1,3/2,1,1,1,1/2,0,-1,0,1/2,1,0,0,1/2,1,0,0,0,0,-1,0,-1/2,0,-4,-2,-3/2,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,0,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-2,-2,-5 -15,8,8,6,8,5,6,5,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,5/2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,7/2,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1/2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3/2,-3,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,0,0,0,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,29/2,8,10,8,11,6,7,6,17/2,6,7,6,10,6,6,4,11/2,4,5,5,9,5,6,4,11/2,4,5,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,5,3,4,4,6,4,6,6,8,5,5,4,9/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1/2,1,1,1,-2,0,0,0,-1/2,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,5/2,2,3,3,2,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,3,3,4,3,3,2,7/2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,7,5,6,5,17/2,6,9,9,16,9,9,6,17/2,5,6,5,8,5,5,4,13/2,4,6,6,9,5,5,4,7,5,6,6,11,7,8,6,19/2,7,10,10,11,6,6,4,11/2,4,4,4,4,2,2,2,7/2,2,3,3,7,4,4,3,9/2,3,3,3,5,3,3,2,7/2,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,5,5,10,5,5,4,11/2,4,4,3,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,6,4,4,4,11/2,4,6,6,12,7,7,5,13/2,4,5,4,8,5,5,4,6,4,5,5,7,4,5,4,11/2,4,4,4,8,5,5,4,15/2,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,9/2,3,3,3,8,5,5,4,11/2,4,4,4,7,4,5,4,11/2,4,6,6,7,4,5,4,5,3,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-3/2,-1,-2,-1,0,1,1,1,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,7/2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7/2,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-2,-4,-1,-1,0,-3/2,-1,-2,-2,-7,-3,-2,-1,-5/2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3/2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-5/2,-2,-3,-3,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-17/2,-6,-9,-9,0,0,0,1,3/2,1,0,0,1,1,0,0,1/2,0,0,0,-1,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3/2,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,-5,-2,-2,-1,-3/2,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-2,-1,-3/2,0,-1,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-2,-2,-7/2,-2,-2,-2,-6 -18,10,10,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,3,2,3,3,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1/2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,9/2,7,5,7,7,8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,5/2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,5/2,3,2,4,5/2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1/2,-2,-1,-2,-2,-3,-3/2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,-1,-1,-4,-3/2,-1,0,-1,0,-1,-1/2,-1,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1/2,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1/2,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3 -26,14,14,10,14,8,19/2,8,12,7,7,6,9,6,7,6,10,6,11/2,4,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,8,4,4,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,3,2,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,5,3,4,4,6,4,11/2,6,9,5,5,4,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,-2,0,-1/2,0,0,0,0,1,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,0,1/2,0,-1,0,-1,-1,-2,0,0,0,-1,0,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-3,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,1/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,3,4,2,5/2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,11/2,4,7,5,13/2,6,11,6,6,4,6,4,9/2,4,7,4,11/2,5,8,6,9,9,16,8,17/2,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,6,15/2,6,10,7,19/2,10,11,6,6,4,5,3,7/2,3,4,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,5,4,11/2,5,10,6,11/2,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,9/2,4,6,4,9/2,4,7,4,9/2,4,5,3,4,4,8,5,11/2,4,8,5,7,7,11,6,6,4,7,4,5,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,9/2,4,6,4,11/2,5,7,4,9/2,4,5,3,4,3,5,3,4,3,3,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,0,0,0,0,0,0,1/2,0,0,1,1,2,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,3/2,1,1,1,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-2,-4,-4,-8,-4,-7/2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-5,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-3/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-4,-2,-3/2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-2,-7/2,-3,-7,-3,-5/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-9/2,-3,-5,-3,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-9,0,1,1,1,1,1,1/2,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-1,-1,-2,-2,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,-1,-1,-1,-1,0,-3/2,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-3/2,-2,-5 -26,14,14,10,14,8,10,8,12,7,7,6,9,6,7,6,10,6,6,4,6,4,5,4,8,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,9,5,5,4,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,5/2,4,2,2,2,3,2,2,2,3,5/2,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,6,7,6,10,7,10,10,11,6,6,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,5,4,6,11/2,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,4,7/2,5,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-5/2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-5/2,-4,-7/2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-17/2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1/2,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1/2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 -52,27,27,18,26,14,16,13,23,12,13,10,15,10,13,12,23,12,13,9,14,9,11,9,16,9,9,7,10,7,10,9,17,9,9,6,9,5,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,16,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,1/2,1,1,1,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,11,11,22,11,11,7,10,6,7,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,6,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,15,9,11,10,18,12,17,17,20,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,9,7,10,10,18,10,11,8,12,8,10,9,15,9,11,9,15,10,15,14,21,11,11,8,11,7,8,7,13,7,7,6,9,6,9,9,17,9,9,6,9,6,8,7,13,7,7,6,9,6,9,8,15,8,7,5,7,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-3,-3,0,0,0,0,0,0,0,0,0,1,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-6,-5,-11,-7,-12,-12,-30,-15,-15,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-10,-7,-12,-7,-9,-7,-14,-7,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-7,-31/2,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15/2,-3,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10 -27,14,14,9,13,15/2,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,3/2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,5/2,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,4,7/2,5,7/2,4,4,8,5,6,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,9/2,6,4,4,4,7,4,4,7/2,5,7/2,5,5,9,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,9/2,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1/2,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-2,-5,-3,-6,-6,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-6,-9/2,-8,-5,-8,-8,0,1/2,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1/2,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4 -27,14,27/2,9,13,8,17/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,9/2,3,5,3,7/2,3,4,2,2,2,3,2,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,4,3,7/2,4,6,4,6,6,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,7/2,2,4,2,5/2,2,5,3,3,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,3,2,5/2,3,5,3,7/2,3,4,2,5/2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,1/2,1,0,1,3/2,2,0,1,1,1,2,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,3,3,5,3,3,2,4,3,3,3,5,3,5/2,2,2,2,5/2,3,4,3,7/2,4,6,4,11/2,6,10,6,11/2,4,6,4,5,4,6,4,5,4,5,4,5,4,8,4,9/2,4,5,4,9/2,4,8,5,13/2,6,9,6,9,9,10,5,5,4,5,3,4,4,5,3,7/2,3,3,2,5/2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,7,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,9/2,4,5,4,6,6,10,5,5,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,8,5,5,4,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,5,4,5,3,3,3,6,4,4,3,5,4,11/2,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,15/2,8,12,6,6,5,7,4,9/2,4,7,4,9/2,4,4,3,9/2,5,9,5,11/2,4,5,4,9/2,4,6,4,4,3,6,4,5,5,9,5,9/2,4,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,3/2,1,2,1,1,1,0,1,1,1,0,0,1/2,1,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,1,1,2,2,2,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,1,1,0,0,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,1,1,1,0,0,0,0,1/2,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1/2,0,-1,0,-3/2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-5/2,-2,-5,-3,-6,-6,-14,-6,-6,-4,-8,-4,-11/2,-4,-8,-4,-9/2,-3,-6,-3,-5,-5,-9,-4,-4,-3,-5,-2,-7/2,-3,-6,-3,-3,-2,-4,-2,-7/2,-4,-8,-3,-3,-2,-3,-1,-3/2,-1,-3,-1,-1,-1,-2,-1,-3/2,-2,-5,-2,-3/2,0,-1,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,0,-1/2,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-11/2,-4,-8,-5,-8,-8,1,1,0,0,0,0,1/2,0,-1,0,-1/2,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-3/2,-2,-3,-1,-1/2,0,0,0,1/2,0,0,0,0,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-2,-4 -18,9,9,6,9,11/2,6,5,8,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,2,4,5/2,3,2,3,2,2,5/2,4,5/2,3,2,3,2,3,3,4,3,4,3,5,7/2,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,5/2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,5,7,7,6,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,7/2,3,3,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,3,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,7/2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-5/2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,-1,-2,-1/2,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 -26,13,13,9,27/2,8,9,8,12,7,7,6,17/2,6,7,6,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,9/2,3,4,3,3,2,2,2,3,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,3,3,9/2,3,3,3,4,3,3,3,6,5,7,7,9,5,5,4,5,3,4,3,4,2,2,2,7/2,2,3,3,6,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,7,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,2,0,1,2,2,5/2,2,2,2,5,3,3,3,9/2,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,9/2,2,2,2,5,3,3,2,3,2,2,2,5,3,2,2,5/2,2,3,3,4,3,4,3,5,4,6,6,10,6,6,4,13/2,4,6,5,6,4,4,4,11/2,4,4,4,7,4,5,4,11/2,4,5,5,9,6,7,6,19/2,7,10,10,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,5/2,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,9/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,11/2,4,5,4,7,4,4,4,11/2,4,5,4,9,5,5,4,9/2,3,3,3,6,4,4,3,9/2,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,9/2,4,5,5,9,5,6,4,13/2,4,6,5,6,4,5,4,6,4,5,5,10,5,5,4,11/2,3,3,3,4,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,5,3,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,1,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,3,4,2,2,1,1,1,1,1,0,1,1,1,1/2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1/2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-9/2,-3,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-13/2,-4,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-7/2,-2,-2,-2,-7,-3,-4,-2,-9/2,-2,-3,-2,-3,-1,-1,0,-3/2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-9/2,-2,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,1,1,1,1,1/2,0,0,0,-1,0,-1,0,-3/2,0,0,0,-3,-1,0,0,-1/2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,-1,-1,-2,0,0,0,-1/2,0,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-1,-3 -15,8,8,6,8,5,6,5,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,7/2,4,4,6,4,6,6,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,9/2,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-3/2,-2,-1,-3,-3/2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1/2,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -19,10,19/2,7,10,6,13/2,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,3,3,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,0,1,3/2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,2,2,4,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,6,4,7/2,3,4,2,5/2,2,3,2,3/2,2,2,2,2,2,4,2,2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3/2,2,2,2,2,2,6,4,7/2,3,4,2,5/2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,2,2,2,3,3,2,3,2,4,3,4,3,6,4,4,3,4,3,9/2,4,8,4,4,3,3,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3/2,2,2,2,2,2,3,2,7/2,3,4,3,5,5,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,6,3,3,2,3,2,5/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,5/2,2,4,2,2,2,3,2,5/2,3,4,3,3,3,3,2,7/2,4,3,2,5/2,2,3,2,7/2,4,5,3,3,3,4,3,9/2,4,6,4,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,7/2,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,9/2,3,5,3,4,4,6,4,4,3,6,4,11/2,5,10,6,11/2,4,5,3,4,4,5,3,4,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,2,2,3,2,5/2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,2,2,5/2,2,1,1,1,1,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,2,1,1,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,4,2,5/2,2,2,2,2,2,1,1,1,1,2,2,5/2,2,3,2,3/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,1,1,1,1,0,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3/2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,-1,-2,-1,-3/2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-5/2,-2,-4,-2,-3,-3,-7,-3,-5/2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-5/2,-2,-4,-1,-1,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-3/2,-1,-4,-2,-3/2,-1,-3,-1,-3/2,-1,-2,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,0,0,-2,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-5/2,-2,-6,-3,-7/2,-2,-6,-4,-11/2,-6,2,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-1,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1/2,0,-3,-1,-1/2,0,-1,0,0,0,-2,0,0,0,0,0,-1/2,0,-2,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1/2,0,-2 -16,17/2,8,6,9,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,3/2,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,-1/2,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-3/2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-5/2,-4,-9/2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 -29,15,15,10,14,8,10,8,27/2,8,8,6,10,6,8,7,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1/2,0,0,1,1,1,2,2,3,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5/2,2,1,1,1,1,1,1,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,9,5,5,4,5,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,1,0,1,1,1,5,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,7/2,2,3,3,4,3,3,3,5,3,2,2,2,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,7/2,2,2,2,4,3,3,3,4,3,3,3,4,3,5,5,17/2,5,6,4,6,5,7,7,11,6,6,4,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,11/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,15/2,4,4,4,6,4,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,9,6,9,9,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,4,3,3,2,3,3,4,4,15/2,5,6,5,7,5,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,3,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,9/2,3,3,3,4,3,5,6,10,5,5,4,6,4,5,5,19/2,6,6,5,7,5,7,7,16,9,9,6,9,5,6,5,17/2,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,2,2,5/2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3/2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3/2,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,5,3,3,2,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,1,1,1,2,2,0,0,0,1,1,1,1,1,3/2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-11/2,-2,-3,-3,-6,-3,-5,-4,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-1,-5/2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3/2,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-4,-4,-17/2,-4,-6,-4,-8,-5,-9,-9,4,2,2,1,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,-1,0,1,1,1,1,1,1,1/2,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,-1/2,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5/2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,-1,-2 -16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,6,7/2,4,5/2,4,2,2,2,3,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,3,2,3,2,2,2,3,2,3,7/2,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1/2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,3,2,2,1,0,0,0,1/2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1/2,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,0,0,0,-1 -17,9,9,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,3,3,4,3,5,5,4,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,2,0,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,5/2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,0,0,1/2,0,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,2,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,1,1/2,0,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,7/2,4,5,3,7/2,3,4,3,9/2,4,5,3,7/2,2,4,2,2,2,3,2,2,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,5,3,3,2,4,3,7/2,3,5,3,7/2,4,5,4,5,5,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,3,3,2,5/2,2,3,2,2,2,4,3,7/2,3,4,3,4,4,4,3,7/2,3,3,2,3,3,5,3,3,2,2,2,2,2,5,3,7/2,3,4,3,3,3,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,6,4,4,3,4,3,7/2,3,6,4,4,3,4,3,9/2,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,2,3,2,5/2,2,4,3,4,4,6,3,3,3,3,2,2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,0,0,1,1,1,1,1,3/2,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,3/2,2,1,1,1/2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,1,1,1,1,0,1,3/2,2,3,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-5/2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-3/2,-1,-2,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-3/2,-2,-4,-2,-2,-2,-4,-2,-9/2,-4,4,2,3/2,1,0,0,1/2,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,-1,-1,0,-1/2,0,-1,0,0,0,0,0,1/2,1,0,0,0,0,-1 -13,7,7,5,6,4,5,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,5/2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1/2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,3/2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1/2,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0 -20,11,11,8,21/2,6,8,7,12,7,8,6,9,6,7,6,10,6,6,4,11/2,4,4,3,5,3,3,3,9/2,4,5,5,6,4,4,3,9/2,3,3,3,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,7/2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,0,1,1,1,2,2,2,2,1,1,0,0,1/2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,5,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3/2,1,1,1,4,2,2,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1/2,1,2,2,0,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,6,3,3,2,3,2,2,2,2,2,2,2,7/2,2,3,3,4,2,2,2,3,2,2,1,2,1,1,1,3/2,1,1,0,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,5/2,2,3,3,2,2,2,2,7/2,3,4,4,7,4,5,4,11/2,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,7/2,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,11/2,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,7/2,2,3,3,4,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,5,3,3,3,9/2,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,7/2,3,4,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,2,7/2,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,13/2,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,11/2,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,7/2,2,2,2,2,2,2,1,1/2,1,1,1,1,1,1,1,3/2,2,2,1,2,2,2,2,3/2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,-1,-1,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,7/2,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,0,0,0,0,0,1,1,2,3,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-5,-3,-5,-2,-3,-2,-6,-2,-2,-1,-5/2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-1,-2,-1,-1,0,-3/2,0,-1,0,-1,0,0,0,-3/2,-1,-2,-2,-2,-1,-1,0,-3/2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-5/2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,5,3,2,2,3/2,2,2,1,0,0,0,0,1/2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,1,3/2,1,1,1,1,1,0,0,1/2,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-2,-2,-2,0,0,0,-3/2,0,0,0,2,1,1,1,2,1,1,1,0 -13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,5/2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,7/2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-5/2,-3,-3/2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,-1,-1,-2,-1,-2,-1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1 -18,9,9,7,9,6,7,6,11,6,7,5,8,5,7,6,10,6,11/2,4,5,3,4,4,5,3,4,4,6,4,11/2,5,6,4,4,3,3,2,3,2,3,2,2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,2,4,2,2,2,2,2,2,2,2,2,5/2,2,4,3,4,4,3,2,2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,0,1,3/2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,2,2,3/2,2,2,2,2,1,2,2,3/2,1,6,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,0,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,9/2,4,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,1,1,1,1,0,1,3/2,2,1,1,3/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,9/2,5,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,3,2,5/2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,11,6,13/2,4,6,4,9/2,4,7,4,5,4,5,4,11/2,5,8,5,5,3,4,3,3,2,4,2,5/2,2,3,2,3,3,7,4,7/2,2,4,2,3/2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,3,2,5/2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,-1/2,0,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,1,1,1,1,1/2,1,1,1,3/2,2,0,0,0,1,0,0,1/2,0,0,0,0,1,0,1,1,1,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3/2,-1,-9,-4,-4,-2,-4,-2,-5/2,-2,-5,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3/2,-1,-3,-1,-2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-1,0,-1/2,0,0,1,1,1,1,1,0,0,0,0,1/2,0,-1,0,0,1,0,0,-1/2,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-2,-2,-2,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-5/2,-2,-4,-3,-5,-5,4,2,5/2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1/2,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,1,1,-1,0,1/2,1,1,1,0,0,-1,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,1/2,1,1,1,1,1,2,2,2,2,2 -17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,10,6,6,4,5,3,4,4,5,3,4,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,3/2,2,3/2,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,2,4,3,3,3,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,5/2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,4,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,0,0,0,0,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,1,3/2,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1/2,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,4,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2 -32,17,17,12,18,11,13,11,18,10,10,8,12,8,11,10,39/2,10,11,8,11,7,8,7,11,6,7,5,8,6,9,9,10,6,6,4,5,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,3,3,5,4,5,5,2,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,9/2,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,3,4,4,11/2,4,4,4,6,4,5,5,8,5,5,5,8,6,8,7,5,3,4,3,4,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,2,3,3,5,3,3,2,3,2,3,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,7,4,4,3,4,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,11/2,4,4,3,3,3,4,4,6,4,4,3,4,3,4,4,8,5,6,5,7,4,5,5,8,4,4,3,5,3,4,4,17/2,5,6,5,8,5,6,6,11,6,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,8,6,9,6,8,8,29/2,8,8,6,8,5,6,5,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,15/2,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,0,1,1,1,0,1,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,6,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3/2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,3,2,3,2,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-18,-8,-8,-5,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-11/2,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-9,-10,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7/2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,4 -17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,6,3,3,5/2,3,5/2,3,3,5,3,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,7/2,4,5,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,5/2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -17,9,19/2,7,10,6,15/2,6,10,6,6,5,7,5,13/2,6,10,6,6,4,7,4,5,4,6,4,4,3,5,4,11/2,5,6,3,3,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,7/2,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,1,1,1,1,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,1,1,1/2,1,0,0,1/2,1,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,1,1,1,1,1,1,0,0,1,1,3/2,1,5,3,3,2,3,2,3/2,2,3,2,2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,1,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,3/2,2,1,1,2,2,4,3,3,2,3,2,3/2,1,1,1,1,1,1,1,2,2,4,3,3,2,4,3,7/2,3,4,3,3,3,4,3,9/2,4,2,2,3/2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,2,2,5/2,3,5,3,2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,3,3,5,4,9/2,5,4,3,3,2,3,2,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,4,2,3/2,1,1,1,1,1,6,3,3,3,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,5,3,7/2,2,3,2,3,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,3,3,3,4,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,5,7,4,11/2,5,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,7/2,3,3,2,3,3,6,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,1,1,1,1,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,5/2,2,1,1,3/2,2,1,1,3/2,1,1,1,3/2,2,2,1,1,1,0,1,3/2,1,1,1,1,1,0,1,1,1,2,2,3/2,1,1,1,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,5/2,2,3,2,1,1,1,1,1/2,0,0,1,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1/2,0,1,1,1,1,1,1,3/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3/2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1/2,1,1,1,1/2,1,0,1,1,1,0,1,3/2,2,2,1,1,1,1,1,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2 -12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,5/2,4,5/2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,2,2,3,2,1,1,1,1,1,1,1,1,2,3/2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1/2,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1/2,-1,-1,-3,-2,-3,-3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 -19,10,11,8,23/2,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,7,5,6,5,6,4,4,4,11/2,4,6,6,7,4,4,3,9/2,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,2,1,1,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,3/2,1,1,1,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,5/2,2,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,2,2,2,2,0,1,1,1,3/2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,2,3,5,3,3,2,5/2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,7/2,3,4,4,4,3,4,3,5,4,6,6,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3/2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,4,3,9/2,3,4,5,7,4,3,2,3,2,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,7/2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,9/2,4,5,5,8,5,6,4,13/2,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,13/2,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,7/2,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1/2,1,2,2,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,-2,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,2,2,2,1,1,2,2,3/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,1/2,0,0,0,0,1,1,1,1/2,0,0,0,1,1,2,2,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,-1,-2,-2,-9,-4,-4,-2,-7/2,-2,-2,-1,-3,-1,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1/2,0,-1,-1,-2,-1,-2,-2,-7/2,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1/2,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1/2,1,1,1,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,-2,0,0,1,1,1,0,0,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,2,1,1,0,0,-1/2,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,3 -12,13/2,7,5,7,4,5,4,7,4,4,4,5,7/2,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,4,10,5,5,4,5,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,2,4,5/2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-3,2,3/2,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2 -15,8,8,6,8,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,3,5,4,9/2,4,6,3,3,3,5,4,5,4,6,4,7/2,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,4,2,2,2,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3,2,3,2,3,3,3,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,3,2,3,3,2,2,3/2,1,2,2,3/2,1,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,1,1,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,3/2,2,1,1,1,1,0,0,1/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,2,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,1,1,1,2,2,2,2,3/2,1,0,0,0,0,1,1,1,1,2,2,5/2,2,3,2,3,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,7/2,4,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,3,9/2,4,6,3,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,7/2,2,3,2,5/2,2,4,3,7/2,3,4,3,7/2,3,5,3,7/2,3,4,3,4,4,6,4,4,3,5,4,11/2,5,13,7,7,5,6,4,9/2,4,6,4,9/2,4,5,3,4,4,6,4,7/2,3,5,3,7/2,3,4,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,0,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,2,2,5/2,3,6,4,7/2,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,2,2,3,2,3,3,2,1,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-7,-3,-3,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,1/2,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1/2,0,-1,0,1/2,0,-1,0,0,0,0,0,1/2,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,-1,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-4,-4,3,2,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1/2,1,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,3/2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,3/2,2,2,2,2,2,3 -13,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,3/2,2,2,2,1,0,0,0,0,1,1,1,1,1,3/2,2,2,3,2,3,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,7/2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,5/2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-3/2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-2,-1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,3,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,4 -24,13,13,9,12,8,10,8,29/2,8,9,7,10,6,8,7,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,7/2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,9/2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,1,1,1,1,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,5,3,4,3,5,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,6,8,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,2,7,4,4,3,3,2,3,3,4,3,4,4,7,5,6,6,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,3,4,4,15/2,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,13/2,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,11,6,7,6,9,6,8,8,22,11,11,7,10,6,8,6,21/2,6,7,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,5,4,5,5,6,4,4,3,4,2,2,2,5/2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,3,3,9/2,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,3,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,2,2,4,3,3,3,5,3,4,4,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,0,2,1,1,1,0,1,1,1,1/2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-14,-6,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3/2,0,0,0,0,0,0,0,4,3,3,3,4,2,2,2,7/2,2,3,2,3,2,3,2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,1,1,1,1,1,0,0,-1/2,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-4,-6,-6,4,3,3,2,2,2,2,1,1/2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3/2,0,0,0,0,1,2,2,1,1,1,1,2,1,1,1,3/2,1,1,1,2,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,1,1,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,3,4,3,5,3,4,4,7 -13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,3/2,2,1,1,1,2,3/2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,0,0,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,3/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,3/2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,13,7,7,9/2,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,4,3,3,2,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,5/2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 -15,8,17/2,6,8,5,13/2,6,10,5,5,4,6,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,5/2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,5/2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,3,2,3,3,2,1,1,1,2,2,2,2,3,2,3/2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,0,0,1/2,0,0,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,3/2,1,1,1,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,1,2,2,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,1,0,0,1/2,1,3,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,3/2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,4,2,2,2,4,3,7/2,3,1,1,2,2,2,2,3/2,1,2,2,3/2,1,2,1,1,1,1,1,1,1,2,2,5/2,2,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,5,3,3,3,5,4,5,4,6,3,5/2,2,3,2,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,5,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,11/2,6,15,8,8,5,7,4,5,4,6,4,9/2,4,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,3,5,3,3,3,4,3,3,3,4,2,5/2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,1,4,2,3/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,3,3,4,2,5/2,3,2,1,1,1,1,1,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-9,-4,-7/2,-2,-4,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,1/2,0,-1,0,1/2,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,2,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1/2,0,-2,-1,-2,-1,-3,-2,-3,-3,3,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,2,2,5/2,2,3,2,2,2,4 -12,7,7,5,7,4,5,9/2,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,3,2,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,12,7,7,9/2,6,7/2,4,7/2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,5/2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1/2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3 -20,11,11,8,12,7,9,7,12,7,7,5,15/2,5,6,6,12,6,6,4,13/2,4,5,5,7,4,5,4,11/2,4,5,5,7,4,4,3,9/2,3,3,3,5,3,4,3,4,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,9/2,3,4,4,4,3,3,2,5/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,7/2,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,6,4,4,2,5/2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,3,4,2,2,2,2,2,2,1,0,0,0,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,3,2,3,2,3,2,2,2,0,1,1,1,3/2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,1,1,1,1,1/2,0,0,1,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,5,3,3,3,4,3,3,2,5,3,3,2,7/2,2,2,2,2,2,2,2,7/2,2,2,2,5,3,3,2,7/2,2,3,3,5,3,4,3,5,3,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,3,2,2,2,3/2,2,2,2,4,3,3,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,2,5,3,3,2,7/2,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,3,9/2,3,4,5,10,6,6,4,11/2,4,5,4,7,4,4,3,5,4,5,5,9,5,4,3,9/2,4,5,5,10,6,6,5,17/2,6,8,8,21,11,11,7,9,6,7,6,9,5,6,5,8,5,6,6,10,6,6,5,7,4,4,4,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,4,3,5,4,5,5,5,3,3,2,5/2,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,3,2,7/2,3,4,4,7,4,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,1,1,3/2,2,2,2,0,0,0,0,-1/2,0,-1,-1,0,0,0,0,-1/2,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5/2,-2,-3,-3,-14,-6,-6,-4,-15/2,-4,-5,-4,-7,-3,-3,-2,-7/2,-2,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,5/2,2,2,2,-3,-1,-2,-1,-3/2,0,-1,0,-2,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-9/2,-2,-4,-4,3,2,2,2,3/2,1,0,0,0,0,0,0,1/2,0,0,0,0,0,0,1,3/2,2,2,2,1,1,1,1,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,1,1,1,1,0,1,1,1,3,2,2,2,3/2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,4,3,3,3,9/2,3,3,3,5 -14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,4,5/2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,5/2,3,2,3,7/2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,6,6,14,15/2,8,5,6,4,5,4,6,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,3,4,2,2,2,3,5/2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,4 -20,10,10,7,10,6,15/2,6,11,6,7,5,8,5,13/2,6,11,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,4,4,7,4,5,4,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,2,3,2,3,2,3,2,7/2,4,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,5/2,2,1,1,2,2,3,2,3,3,4,3,3,3,6,4,7/2,2,2,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,1,1,1,3/2,2,1,1,3/2,2,4,3,3,2,2,2,3/2,1,1,1,1,1,0,0,0,1,1,1,1/2,1,1,1,2,2,2,2,2,1,2,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,1,0,1,1,1,2,2,3/2,2,3,2,3/2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,7/2,3,1,1,1,1,1,1,1,1,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,5/2,2,3,2,3,2,4,3,3,2,3,2,5/2,2,2,1,1,1,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,6,4,7/2,3,5,4,5,5,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,11/2,4,5,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,4,4,3,5,5,9,5,6,5,8,6,8,8,20,10,21/2,7,9,5,6,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,7/2,4,4,2,5/2,2,3,2,5/2,2,5,3,3,3,4,3,5,5,4,2,5/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,7/2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,5,3,3,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,7,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,1,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-5/2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-5/2,-2,-4,-2,-5/2,-2,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,-1,-1,-3,-1,-1/2,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-2,-1,-3/2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,0,0,0,1/2,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,5,3,7/2,3,5,4,9/2,4,2,2,3/2,2,2,2,2,2,3,2,3/2,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,1,1,3/2,2,1,1,1,1,2,2,2,1,1,1,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -20,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,3,2,3,3,4,3,4,4,7,4,4,5/2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,0,0,0,0,0,0,0,1/2,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,5,4,7,4,4,7/2,5,7/2,5,5,8,5,6,5,8,6,8,8,20,10,10,7,9,5,6,6,10,11/2,6,5,7,5,6,6,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,5/2,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,5/2,3,2,2,2,3,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3/2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-3/2,-2,-3,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-3/2,-3,-3/2,-2,-3/2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,7/2,4,3,5,3,4,4,6,4,4,3,5,4,5,9/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,3,2,2,2,4,3,3,3,5 -39,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,21,11,11,8,11,6,7,6,10,6,7,5,8,6,8,8,27/2,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,3,2,2,2,2,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1/2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-8,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,0,-1,0,1,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,7,6,10,7,10,10,37/2,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,8,7,13,8,9,8,13,9,14,14,38,20,20,14,20,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,23/2,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,6,9,6,7,6,11,6,7,6,9,6,8,8,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,5,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,8,8,8,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-5/2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-26,-13,-13,-8,-13,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-8,-8,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,4,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,5,9 -20,11,11,8,11,13/2,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,3,2,4,3,4,3,5,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,5/2,4,5/2,3,3,4,3,4,7/2,6,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,0,0,1/2,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,1,1,1,1,1,1,0,1/2,0,1/2,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,4,3,4,4,6,7/2,4,5/2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,5,7/2,5,5,5,3,3,3,4,5/2,3,5/2,3,2,3,5/2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,4,5,4,7,9/2,5,9/2,7,5,8,8,20,11,11,8,10,6,7,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,6,4,4,7/2,5,7/2,4,4,4,2,2,2,3,2,2,5/2,4,5/2,3,5/2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,7/2,5,4,5,5,5,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1/2,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1/2,-1,-1/2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1/2,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1/2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1/2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,3/2,2,2,3,2,3,3,5 -21,11,11,8,11,6,15/2,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,5,5,8,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,5,3,3,3,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,3/2,2,3,2,3,2,4,3,7/2,3,5,3,7/2,2,3,2,2,2,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,3,2,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,3,3,5,3,4,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,8,4,4,3,4,2,5/2,2,3,2,3,3,4,3,4,3,6,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,1/2,1,0,1,1,1,2,2,3/2,1,0,1,1,1,1,1,3/2,1,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,-1,0,-1/2,0,-3,-1,-1,0,-1,0,1,1,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,1,0,1,1,1,1,1,2,2,2,2,3/2,2,2,2,5/2,3,1,1,1,1,1,1,1/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,0,0,0,0,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,2,2,5/2,2,4,3,4,4,5,3,7/2,2,3,2,3,3,5,3,7/2,3,5,3,7/2,4,7,4,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,5,3,3,3,4,2,5/2,2,3,2,3,2,3,2,3,3,7,4,9/2,4,5,3,4,3,5,3,4,3,6,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,11/2,5,11,6,6,4,5,4,5,5,8,5,11/2,5,7,5,8,8,21,11,11,8,10,6,8,7,10,6,6,5,8,5,13/2,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,4,3,3,2,3,2,5/2,3,4,2,5/2,2,3,2,7/2,4,6,4,7/2,2,4,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,6,3,3,2,3,2,2,2,3,2,3,2,3,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,5,3,3,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,0,-1/2,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3/2,-1,-4,-2,-3,-3,-13,-6,-11/2,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,2,2,2,2,2,2,2,2,3/2,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,3,2,3/2,1,1,1,3/2,2,1,1,1/2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,1,1,3/2,2,3,2,3,3,5 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,9/2,8,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,3,5/2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,7/2,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,2,2,4,5/2,3,2,3,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1/2,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,3/2,2,3/2,2,2,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3 -21,11,12,8,23/2,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,13/2,4,5,4,6,3,3,3,4,3,5,5,9,5,4,3,9/2,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5/2,2,4,4,4,3,4,3,9/2,4,5,5,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,7/2,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,7/2,3,4,4,8,4,4,3,7/2,2,3,2,2,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-1,0,0,0,1,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1/2,0,0,0,-4,-2,-2,-1,-3/2,0,0,0,0,1,1,1,1/2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,3,2,3,2,3,2,3,3,1,1,1,1,1/2,0,0,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,3,3,4,2,2,2,3/2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,2,5/2,2,4,4,7,4,4,3,3,2,3,3,5,3,3,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,13/2,4,5,5,12,7,7,5,6,4,5,5,9,5,6,5,9,6,8,8,24,12,12,8,23/2,7,8,7,11,6,7,5,15/2,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,5,3,3,3,4,3,4,5,6,4,4,3,5,3,4,4,7,4,5,4,11/2,4,5,5,4,3,3,2,7/2,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,7/2,2,3,2,3,2,2,2,4,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,9/2,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,7/2,3,4,3,6,4,4,4,11/2,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1/2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-5/2,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,2,2,2,3/2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,9/2,4,6,6,4,3,3,2,5/2,2,2,2,1,1,0,0,1/2,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1/2,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3/2,2,2,2,3 -12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,7/2,8,4,4,3,4,3,4,3,5,3,4,7/2,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,5/2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,5/2,4,3,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2 -15,8,8,6,8,5,11/2,5,9,5,11/2,4,6,4,5,5,9,5,6,4,5,3,4,3,6,3,3,3,4,3,3,3,6,4,7/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,2,2,3,3,6,3,3,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,3,2,1,1,1,1,1/2,0,0,0,1/2,1,0,0,0,0,-4,-2,-3/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1/2,0,1,1,1/2,1,0,0,1/2,1,1,1,1,1,-1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,5/2,2,3,2,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,3/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,10,5,5,4,5,4,9/2,4,6,4,9/2,4,7,5,13/2,7,18,9,9,6,9,5,6,5,8,5,11/2,4,6,4,5,5,8,5,5,4,5,3,7/2,4,6,4,7/2,3,4,3,7/2,4,7,4,4,3,5,3,5/2,2,4,2,5/2,2,3,2,7/2,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,2,2,3/2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,1,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,6,4,4,3,3,2,3,3,4,2,5/2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1/2,0,-1,0,1,1,0,1,3/2,2,0,0,1/2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,-8,-4,-7/2,-2,-4,-2,-2,-2,-4,-2,-3/2,0,-1,0,-1,-1,-2,0,0,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,0,0,0,0,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,4,3,4,4,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2 -14,7,7,5,7,4,5,4,8,9/2,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-3,-1,-2,-1/2,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,13/2,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,2,2,1,1,1,1/2,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1/2,-1,-1,-7,-3,-3,-3/2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,1,1,1,2 -25,13,13,9,13,7,8,7,25/2,7,8,6,10,7,9,8,15,8,7,5,7,4,5,5,9,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,3,8,5,5,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,4,8,5,5,4,5,3,4,4,11/2,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,8,4,4,3,4,3,3,2,5/2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,7/2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,3,2,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,1/2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,1,2,2,2,1,1,1,2,2,5,3,3,2,3,2,1,1,1,1,1,1,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,7/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7/2,2,2,1,1,1,1,1,6,3,3,2,2,2,2,2,5/2,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,4,3,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,8,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,17,9,10,7,10,6,7,6,19/2,6,6,4,6,4,6,6,15,8,8,6,9,5,6,6,21/2,6,8,7,12,8,12,12,29,15,14,10,14,8,10,8,29/2,8,8,6,8,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,4,3,3,3,9/2,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,3/2,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1/2,0,1,1,2,2,2,1,-2,-1,-1,0,0,0,-1,-1,-5/2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5/2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,5,3,3,2,3,2,1,1,1,1,2,2,3,2,3,3,5,3,3,2,2,1,1,1,3/2,2,2,2,3,3,4,4,2,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,13/2,4,4,4,6,4,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,2,2,3 -14,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,9/2,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,16,17/2,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -15,8,8,6,8,5,6,5,7,4,9/2,4,6,4,6,5,9,5,5,4,5,3,7/2,4,5,3,7/2,2,4,3,7/2,3,6,4,4,3,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,2,2,5,3,7/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,4,2,5/2,2,3,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,2,2,2,1,2,2,3/2,1,1,1,1/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,5/2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,1,1,1,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,5,3,7/2,2,4,3,3,3,5,3,4,3,5,4,9/2,4,11,6,6,4,6,4,4,4,8,4,9/2,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,13/2,6,10,5,5,4,5,4,5,5,8,5,5,3,5,3,7/2,3,6,4,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,5/2,2,4,3,3,3,3,2,3,2,3,2,7/2,3,5,3,7/2,3,4,2,5/2,2,4,2,5/2,2,3,2,3,2,6,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,5/2,2,3,2,3,3,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,5/2,2,5,3,7/2,3,3,2,3,3,4,3,3,2,2,2,3,3,3,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,2,2,2,2,2,2,1,1,1/2,0,1,1,0,0,0,1,1,1,1,1,1/2,0,0,0,1/2,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-7/2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,2,2,2,1,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3/2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,1/2,0,0,1,1,1,1,1,0,0,1,1,1/2,1,0,1,1,1,0,0,0,1,0,0,-1/2,0,0,0,1/2,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1/2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,2,2,3/2,2,2,1,1,1,2,2,5/2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,3,2,3,3,3,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,5/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2 -11,6,6,9/2,6,4,5,4,6,7/2,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,7/2,9,5,5,7/2,5,3,4,7/2,7,4,4,7/2,5,4,5,4,8,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,7/2,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,3,2,2,2,2,2,2,3/2,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2 -18,9,9,6,19/2,6,6,5,9,5,5,4,13/2,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,7/2,2,3,3,9,5,5,3,4,3,3,3,4,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,6,4,4,3,7/2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,0,0,1/2,0,0,0,2,2,2,2,5/2,2,4,4,7,4,4,3,7/2,2,3,2,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,7/2,3,4,4,7,4,4,3,5,3,4,4,5,3,2,2,5/2,2,3,3,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,5/2,2,2,2,0,0,0,0,-1/2,0,0,0,1,1,1,0,-1/2,0,-1,-1,-1,0,0,1,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,7/2,2,3,3,4,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3/2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,3/2,1,1,1,0,1,1,1,1/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,2,3,5,3,4,3,7/2,2,3,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,5/2,2,2,3,3,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,4,4,11/2,4,6,6,14,8,8,6,15/2,5,6,5,11,6,6,5,17/2,6,7,7,14,7,7,5,15/2,5,6,5,10,6,7,6,19/2,7,10,10,25,13,13,9,13,8,9,8,13,7,8,6,8,5,6,6,11,6,6,4,13/2,4,5,4,7,4,5,4,11/2,4,6,5,10,5,5,4,11/2,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,9/2,3,4,3,5,3,3,3,9/2,3,4,3,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,7/2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,3,6,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,5,7,4,4,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-3/2,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-7/2,-2,-2,-2,-4,-1,-1,0,-3/2,0,0,0,0,1,1,1,3/2,2,2,1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3/2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1/2,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,3,4,2,2,2,7/2,2,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,3/2,2,2,2,2,2,2,2,7/2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3,2,3,3,4 -12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,5/2,3,3,4,3,4,4,10,6,6,4,5,7/2,4,4,8,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,11/2,6,11/2,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,3,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1/2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -17,9,17/2,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,9/2,4,6,4,7/2,3,4,3,3,3,9,5,9/2,4,4,3,3,2,3,2,2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3,3,6,4,4,3,3,2,2,2,4,2,2,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,0,0,1,1,3/2,2,2,2,3/2,1,1,1,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,1,2,2,3/2,2,1,1,2,2,3,2,5/2,2,4,3,3,3,3,2,3/2,1,2,2,3/2,2,2,2,3/2,1,0,0,1/2,0,-3,-1,-1,-1,-1,0,-1/2,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,0,0,0,0,0,1,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,2,3/2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,5/2,3,3,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,4,3,7/2,4,6,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,5,3,7/2,3,3,2,3,3,4,2,2,2,3,2,5/2,2,2,2,2,2,4,3,7/2,3,6,4,4,3,4,3,4,4,5,3,7/2,3,5,4,11/2,6,14,8,8,5,7,5,6,6,11,6,13/2,5,8,5,7,7,13,7,13/2,5,7,5,6,6,10,6,7,6,10,7,10,9,25,13,25/2,8,13,8,9,8,13,7,15/2,5,8,5,13/2,6,10,6,11/2,4,6,4,9/2,4,8,5,5,4,6,4,6,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,7/2,3,5,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,7/2,3,6,3,3,2,2,2,2,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,7,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,-1/2,0,0,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,-1,-1,-8,-4,-7/2,-2,-4,-2,-3,-2,-5,-2,-5/2,-1,-3,-1,-2,-2,-4,-2,-3/2,0,-1,0,1/2,1,1,1,1/2,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,7/2,4,4,2,5/2,2,3,2,5/2,2,4,3,3,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,7/2,2,3,2,2,2,3,2,3/2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,2,2,4 -16,17/2,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,9,5,4,7/2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,14,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,12,13/2,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,25/2,12,8,12,7,9,8,13,7,7,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,1,1,1,0,1/2,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,35/2,10,10,7,9,5,6,5,8,5,5,4,5,4,5,5,16,8,8,6,8,5,5,4,6,4,4,3,4,3,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,4,5,4,5,3,3,2,3,2,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,2,2,3,3,4,4,8,5,6,5,9,6,9,9,11,6,6,4,4,3,3,2,3,2,3,2,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,6,5,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-3/2,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,7,4,4,3,3,2,3,2,3,2,2,1,0,0,0,0,-3/2,0,0,1,2,1,1,1,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,15/2,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,13/2,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,19/2,6,6,5,8,5,7,7,12,7,9,7,12,8,10,10,26,14,14,10,14,9,11,9,16,9,10,8,13,9,13,12,23,12,13,10,16,10,12,11,20,11,13,11,18,12,18,17,47,24,24,16,24,13,15,12,20,11,11,8,13,8,10,10,35/2,9,9,7,10,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,4,5,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,17/2,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,7/2,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,5,5,9,5,4,3,4,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,4,4,6,3,3,3,4,2,2,2,7/2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-3,-3,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-17/2,-4,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1/2,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,7,4,5,4,5,4,5,4,7,4,4,3,4,3,5,5,8,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,5,6,5,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7 -16,9,9,6,9,11/2,6,11/2,9,5,6,5,7,5,6,5,10,6,6,4,5,3,3,3,5,3,3,5/2,3,5/2,3,3,9,5,5,3,5,3,3,3,3,2,2,2,2,2,2,5/2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,5/2,4,3,6,3,3,5/2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,6,4,4,5/2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,-1/2,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,2,3,2,2,2,2,3/2,1,1,0,0,0,0,1,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1/2,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,5/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,5/2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,5/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,6,7,6,10,7,10,19/2,25,13,13,9,13,7,8,7,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,5/2,3,2,3,5/2,4,2,2,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1/2,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,1/2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,4,3,4,3,5,3,4,4,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4 -17,9,19/2,7,10,6,13/2,6,10,6,6,5,7,5,6,5,10,6,11/2,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,9,5,5,3,5,3,7/2,3,3,2,2,2,2,2,5/2,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,7/2,3,6,4,4,3,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,5,3,7/2,4,6,4,11/2,5,7,4,7/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,0,0,0,-1/2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,1,1,-3,-1,-1/2,0,-1,0,0,0,-1,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,0,0,0,1/2,0,1,1,1,1,0,0,1/2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,5/2,3,3,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3,3,3,2,7/2,4,5,3,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,7,5,13/2,6,15,8,8,6,8,5,6,6,9,5,6,5,8,6,15/2,7,12,7,15/2,6,9,6,15/2,7,12,7,8,7,11,8,21/2,10,27,14,14,10,13,8,17/2,7,11,6,7,5,8,5,13/2,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,9/2,4,6,4,7/2,3,4,3,4,3,6,3,3,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3/2,2,0,0,1/2,0,1,1,1,1,-1,0,1/2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,1,1,1/2,0,0,0,1/2,0,0,0,-3/2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,0,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1/2,0,0,1,1,1,0,0,1/2,0,-2,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1/2,1,1,1,0,0,1,1,1/2,0,0,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,1,1,1,1,1,2,2,3/2,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,4,4,3,7/2,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,4,5,3,4,4,5,4,5,5,7,4,4,3,4,3,7/2,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,3,2,5/2,2,3,2,2,2,3,2,3,3,5 -13,7,7,5,7,4,5,9/2,8,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,4,5/2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,7/2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,9/2,7,5,6,6,10,6,6,5,9,6,8,8,20,11,11,7,10,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,7,4,4,3,4,3,4,3,4,5/2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,1,1,0,1/2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1/2,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -20,11,11,8,21/2,6,7,6,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,4,3,5,4,5,5,10,6,6,4,11/2,4,4,3,4,2,2,2,3,2,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,6,4,4,3,7/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,3,2,3,3,6,4,4,4,13/2,5,7,7,8,4,4,3,9/2,3,4,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,1/2,1,1,1,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,-1/2,0,-1,-1,-1,0,0,0,1/2,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1/2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1/2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,5/2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,1,1,1,1,1,1,2,5/2,2,2,2,5,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,11/2,4,6,5,6,3,3,2,7/2,2,2,2,5,3,4,3,4,3,4,4,3,2,2,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,3,5,3,3,2,7/2,2,3,3,4,2,2,2,5/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,18,9,9,6,19/2,6,7,7,10,6,7,6,9,6,9,9,14,8,9,7,10,7,9,9,16,9,10,8,14,10,14,13,33,17,17,11,31/2,9,10,8,13,7,8,6,19/2,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,7/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,5,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3/2,2,2,2,-1,0,1,1,1,1,0,0,-1,0,0,1,1,1,2,2,4,3,3,2,2,2,2,2,4,3,3,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,11/2,4,6,6,9,5,5,4,9/2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-2,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-5/2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1/2,0,0,1,-2,-1,-1,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,1,0,0,0,0,1/2,1,1,1,-1,0,0,1,3/2,2,2,1,2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,7/2,2,3,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,6,6,5,3,3,3,5,3,4,4,5,3,4,3,9/2,3,4,4,7,4,5,4,11/2,4,4,4,6,4,4,4,11/2,4,6,6,7,4,5,4,11/2,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,5/2,2,4,4,5,3,4,3,7/2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,5/2,2,3,3,3,2,3,2,7/2,3,4,3,5 -13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,7/2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,5/2,3,3,5,3,4,3,4,5/2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,6,10,6,7,6,9,13/2,9,9,21,11,11,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,1/2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,3,4,3,4,4,6,3,3,5/2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,-1/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-6,-5/2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,5/2,3,5/2,3,2,3,3,3,2,3,2,4,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3 -18,10,19/2,7,9,6,7,6,10,6,6,5,7,4,11/2,5,10,6,6,4,6,4,9/2,4,6,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,5/2,2,5,3,3,2,3,2,3/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,2,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,0,1/2,0,0,1,1,1,0,1,1,1,2,2,3/2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3/2,2,2,2,3/2,1,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,1,1,1/2,0,1,1,3/2,2,2,2,3/2,2,3,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,3/2,2,3,2,2,2,3,2,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,5/2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,5/2,2,4,3,3,3,3,2,5/2,2,6,3,3,3,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,4,4,7,5,13/2,6,14,8,15/2,6,8,5,13/2,6,9,6,13/2,5,8,5,7,7,12,7,7,5,9,6,15/2,7,13,8,9,8,13,9,12,12,28,14,14,9,13,8,17/2,7,12,7,7,5,8,5,7,6,12,6,13/2,4,7,4,5,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,7/2,3,4,3,3,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,1,1,3/2,2,-1,0,0,1,1,1,1,1,0,0,1/2,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,2,2,2,2,5,3,3,3,3,2,5/2,2,3,2,3,3,3,2,7/2,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,3,5,3,7/2,3,5,4,5,5,8,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,3/2,1,2,1,1/2,0,1,1,0,0,0,0,-1/2,-1,1,1,1,1,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,-3/2,-2,-9,-4,-7/2,-2,-3,-1,-2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1/2,1,-2,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1/2,0,0,1,1,1,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,2,2,5/2,2,3,2,2,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,4,3,7/2,3,5,4,9/2,4,5,3,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,4,3,4,3,9/2,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,2,2,3,2,7/2,4,4,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4 -17,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,3/2,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,3/2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,9,11/2,6,5,8,5,7,7,11,6,7,5,8,5,7,7,12,7,9,7,12,8,11,11,26,13,13,17/2,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,5/2,4,3,4,3,4,3,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,-1/2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1/2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1/2,0,1/2,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,5/2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4 -33,17,18,12,18,10,12,10,33/2,9,10,7,10,7,9,8,18,10,10,7,9,6,7,6,21/2,6,8,6,10,6,8,8,14,7,7,5,8,5,6,4,13/2,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,7/2,2,2,2,2,2,3,3,8,4,4,3,4,3,3,2,2,1,1,1,2,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15/2,4,5,4,7,5,8,8,14,8,8,6,8,5,5,4,9/2,3,4,3,4,3,4,4,3,2,1,1,1,1,2,2,3/2,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,5/2,2,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1/2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,3,2,3,2,3,2,2,2,3/2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,5/2,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,2,7/2,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,13/2,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,8,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,13/2,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,23/2,7,8,6,10,7,11,11,23,12,12,9,13,8,11,10,17,10,11,8,13,9,13,13,21,11,12,9,14,9,13,12,45/2,13,15,12,20,14,21,21,48,24,24,16,24,13,15,12,41/2,11,12,9,14,9,11,11,21,11,12,9,13,8,9,8,27/2,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,19/2,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,9/2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,6,4,5,5,8,4,4,3,4,3,3,3,9/2,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,15/2,4,5,4,7,5,8,8,12,6,6,4,5,3,2,2,5/2,2,1,1,1,1,1,1,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-16,-8,-8,-5,-8,-4,-5,-4,-17/2,-4,-4,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,1/2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,5,4,6,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,17/2,5,6,5,7,5,6,5,7,4,3,2,3,2,3,3,5,3,3,3,5,4,5,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6 -18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,7/2,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,5/2,3,2,2,2,3,2,3,3,2,3/2,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,3/2,2,1,1,1,1,1/2,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1,2,3/2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,5/2,4,4,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,7/2,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,11/2,8,8,12,7,7,6,9,6,8,7,13,8,9,7,12,8,12,12,27,14,14,10,14,8,9,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,9/2,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3/2,-2,-1,-1,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4 -21,11,23/2,8,11,7,8,7,10,6,13/2,5,6,4,11/2,5,11,6,13/2,4,6,4,5,5,8,5,11/2,4,7,5,6,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,5/2,2,6,3,3,3,3,2,2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,7/2,3,5,4,11/2,6,9,5,5,4,6,4,7/2,3,3,2,5/2,2,3,2,3,3,3,2,2,1,2,2,3/2,1,2,1,1,1,2,2,2,2,1,1,3/2,2,2,2,3/2,1,2,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,0,0,-1/2,-1,-2,0,-1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1/2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,-1,0,0,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,3,2,7/2,4,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,7/2,4,3,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,4,3,3,3,4,3,7/2,3,5,3,7/2,3,5,3,4,4,7,4,9/2,3,5,3,4,4,7,4,9/2,4,6,4,5,5,8,4,9/2,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,17/2,6,9,6,15/2,7,12,7,15/2,6,9,6,9,9,15,8,9,7,11,7,10,9,16,9,21/2,8,14,10,14,14,32,16,33/2,12,16,9,21/2,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,8,5,11/2,5,7,5,6,6,10,6,11/2,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,7/2,2,4,3,3,3,5,3,7/2,3,4,3,4,4,7,4,9/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,1,2,2,3/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,7/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,7,4,4,3,4,2,5/2,2,3,2,3/2,1,2,2,3/2,1,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1/2,0,-1,0,0,0,-1,0,-1/2,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-5/2,-2,-9,-4,-9/2,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-3,-1,-1,0,-2,0,-1/2,0,-1,0,1,1,1,1,1/2,0,-1,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,1,1,1,1,1,3/2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,2,3,2,2,2,2,2,5/2,2,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,4,5,3,4,4,8,5,5,3,4,3,7/2,4,6,4,4,3,6,4,9/2,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,4,3,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,4,3,7/2,4,4,3,3,2,3,2,3,3,5,3,3,3,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,4 -18,19/2,10,7,9,11/2,6,6,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,6,4,5,5,8,9/2,5,7/2,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,5,5,7/2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1/2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3/2,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,7,11/2,8,5,7,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,9/2,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,5/2,4,3,3,3,4,3,3,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,3/2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-3/2,-2,-3/2,-4,-2,-2,-1,-2,-1,-2,-3/2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1/2,0,1/2,0,0,-1,0,0,0,0,1/2,0,1/2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,3/2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,31/2,9,10,9,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,8,13,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,5,8,4,4,3,3,2,2,2,5,3,4,3,7/2,3,4,4,8,4,4,3,9/2,3,3,3,4,2,2,2,5/2,2,2,2,6,4,4,3,7/2,2,2,2,3,2,3,2,7/2,2,3,3,5,3,2,2,5/2,2,2,2,2,2,2,2,5/2,2,3,3,3,2,3,3,4,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,15/2,4,4,3,5,3,3,3,9/2,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,2,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-3/2,-1,-2,-2,-4,-2,-2,-1,-5/2,0,0,0,-2,0,0,1,1,1,2,2,1,1,1,1,3/2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3/2,2,2,2,3,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,2,2,2,-1,0,0,0,1/2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,5/2,2,2,3,4,3,3,3,4,3,3,3,6,4,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,2,5/2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,9/2,4,5,5,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,6,3,3,2,7/2,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,13/2,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,25/2,8,12,12,23,12,13,9,13,8,10,9,18,10,12,9,29/2,10,13,12,22,12,13,10,16,10,13,13,24,14,16,13,21,14,21,21,47,24,24,16,24,14,16,14,22,12,13,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,8,7,11,7,10,9,14,7,7,5,15/2,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,11/2,4,5,5,7,4,5,4,6,4,6,5,10,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,8,4,4,3,9/2,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,13/2,4,6,6,10,5,5,4,5,3,3,3,4,2,2,2,5/2,2,2,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-14,-6,-6,-4,-13/2,-3,-4,-3,-8,-4,-4,-3,-11/2,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,0,-3,-1,-1,0,-1/2,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,-1,-2,0,0,0,1/2,0,0,0,1,1,1,1,0,0,0,0,-1,0,1,1,3/2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,7/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,3,3,5,3,3,3,9/2,3,4,4,9,5,5,4,11/2,4,4,3,3,2,3,2,7/2,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,5,7,7,10,6,6,4,13/2,4,4,4,8,5,5,5,8,5,7,7,11,6,6,4,11/2,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,13/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,4,3,7/2,2,3,3,4,3,3,3,11/2,4,5,5,7,4,4,3,9/2,3,4,3,6,4,4,3,9/2,3,3,3,5,3,3,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4 -21,11,11,8,10,6,7,6,10,6,6,4,7,9/2,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,5/2,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,7/2,5,3,3,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,5/2,3,2,3,2,2,5/2,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,7,4,4,7/2,5,4,5,9/2,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,9,6,9,6,7,13/2,12,7,8,6,10,7,9,9,16,9,9,7,11,7,9,9,16,19/2,11,9,15,10,14,14,32,16,16,11,16,19/2,11,9,15,8,9,13/2,10,6,8,15/2,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,6,10,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,5/2,3,2,3,5/2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1/2,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,5/2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,3,4,3,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,7/2,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,5/2,3,2,3,2,4,3,3,5/2,3,2,2,5/2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -31,16,16,11,15,9,21/2,9,15,8,17/2,6,10,6,8,8,15,8,17/2,6,9,5,6,6,10,6,13/2,6,9,6,17/2,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,7/2,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,2,2,5,3,5/2,2,3,2,5/2,2,3,2,5/2,2,2,2,3,3,4,2,5/2,2,3,3,4,4,7,4,5,4,7,5,13/2,7,13,7,13/2,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,-3/2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,3/2,1,1,1,3/2,2,2,2,3,3,4,2,2,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,7/2,2,4,3,3,3,5,3,4,3,4,3,7/2,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,13/2,6,12,6,13/2,5,7,5,6,6,10,6,6,5,7,5,13/2,6,13,7,7,5,7,5,13/2,6,12,7,8,7,12,8,12,12,22,12,25/2,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,27/2,10,17,11,14,13,24,14,31/2,13,22,15,21,21,47,24,24,16,24,14,16,13,23,12,25/2,9,14,9,12,11,20,11,11,8,11,7,17/2,7,12,7,8,6,10,7,9,9,15,8,7,5,7,5,6,5,9,5,11/2,4,7,4,11/2,6,10,6,6,4,6,4,11/2,5,8,5,11/2,4,6,4,13/2,6,10,6,13/2,4,7,4,4,4,7,4,4,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,3,5,3,7/2,3,4,2,5/2,2,4,3,7/2,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,4,3,7/2,3,4,3,4,4,6,4,7/2,2,3,2,3,3,5,3,7/2,4,6,4,11/2,6,10,6,11/2,4,5,3,7/2,3,4,2,2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,1,2,1,1/2,1,1,1,0,0,-1,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-6,-3,-7/2,-3,-7,-3,-5/2,-1,-3,-1,-3/2,-1,-3,-1,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1/2,0,0,0,0,0,0,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,5/2,3,4,3,7/2,3,4,3,5,5,8,4,4,3,4,3,7/2,3,4,3,3,3,4,3,3,3,6,3,3,2,4,3,7/2,3,5,3,7/2,4,6,4,13/2,6,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,13/2,6,11,6,6,4,6,4,9/2,4,7,4,9/2,4,7,5,7,7,12,6,13/2,4,6,4,4,3,5,3,3,3,4,3,7/2,4,6,4,4,3,4,3,3,3,4,3,7/2,3,5,4,5,5,8,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,3,2,2,2,3,2,5/2,2,3,2,3,3,4 -31,16,16,11,15,9,10,9,15,8,8,6,10,13/2,9,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,8,8,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,5/2,4,2,2,2,3,2,3,3,4,5/2,3,2,3,5/2,3,7/2,6,4,5,4,7,5,6,7,13,7,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,3/2,2,3/2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,3/2,2,3/2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,5,4,6,4,6,11/2,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,5/2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,7,6,12,7,8,7,12,8,12,12,22,12,12,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,21/2,17,11,14,13,24,14,16,13,22,15,22,22,47,24,24,16,24,14,16,13,23,12,13,9,14,9,12,11,19,10,11,8,11,7,8,7,13,7,8,6,10,7,9,8,15,8,8,5,7,5,6,5,9,5,6,9/2,7,9/2,6,6,10,6,6,4,6,4,6,5,8,5,6,9/2,7,5,6,6,11,6,6,4,7,4,4,4,7,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,3,5,3,4,3,4,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,5/2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,4,5,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4 -60,31,31,21,30,17,20,17,30,16,17,13,20,13,17,16,31,16,17,12,17,10,12,11,20,11,12,10,17,12,17,17,32,16,16,11,15,9,11,9,15,8,9,6,9,6,9,8,15,8,9,7,11,7,9,8,13,8,9,8,14,10,14,13,25,13,14,10,14,8,10,9,17,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,13,51/2,14,14,10,15,9,11,10,17,10,11,8,13,8,10,10,18,10,10,7,11,7,8,7,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,13,10,15,9,10,9,16,9,10,7,11,7,10,10,18,9,9,7,10,6,7,6,9,5,6,5,8,6,8,8,15,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,3,4,2,2,2,2,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,2,2,3,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,39/2,10,10,8,12,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,10,6,8,8,15,9,11,10,17,12,18,19,37,19,19,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,12,22,13,15,12,21,14,21,21,40,21,22,15,23,14,17,14,25,14,16,13,22,14,20,19,37,20,21,16,25,16,22,21,41,23,27,23,41,28,42,42,92,46,46,31,46,26,31,26,47,25,26,19,31,19,26,24,44,23,23,16,23,14,17,14,25,14,16,13,22,14,20,20,38,19,19,13,19,11,14,12,20,11,11,8,13,8,11,11,21,11,12,9,13,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,10,12,10,17,9,10,8,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,19,10,11,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,8,29/2,8,8,6,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,8,7,13,7,8,6,9,6,7,6,11,6,7,6,9,6,8,7,13,7,7,5,8,5,7,7,13,8,9,8,14,9,13,13,25,13,13,9,14,8,9,7,12,7,7,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,5,7,4,5,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,4,5,4,7 -31,16,16,11,16,9,10,9,16,9,9,7,11,7,9,9,16,17/2,9,6,9,11/2,6,6,11,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,5,4,5,9/2,8,5,5,4,6,4,5,4,7,4,5,5,7,5,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,7,9/2,6,6,9,5,5,4,6,4,5,4,7,9/2,5,5,8,6,8,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,2,2,2,2,2,1,1,2,2,2,3/2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,5/2,4,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,5,5,10,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,7/2,4,4,7,4,4,7/2,5,7/2,4,4,8,5,6,5,9,13/2,10,10,19,10,10,7,11,13/2,8,7,12,7,7,6,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,11,20,11,11,8,12,7,9,15/2,13,15/2,8,7,12,8,11,10,19,10,11,17/2,13,8,11,11,21,12,14,12,21,15,22,22,47,24,24,16,24,14,16,14,24,13,14,10,16,10,14,12,23,12,12,8,12,7,9,8,13,8,9,7,11,15/2,10,10,20,10,10,7,10,6,7,6,11,6,6,5,7,9/2,6,6,11,6,6,5,7,9/2,6,5,8,5,6,9/2,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,8,5,6,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,5/2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-5/2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,7/2,5,3,4,7/2,6,4,4,7/2,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,5/2,4 -31,16,16,11,16,9,21/2,9,16,9,9,7,11,7,19/2,9,16,8,17/2,6,9,6,13/2,6,11,6,7,6,9,6,9,9,17,9,17/2,6,8,5,6,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,4,4,6,4,5,5,7,5,8,8,14,8,8,6,8,5,11/2,5,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,9/2,4,6,4,13/2,6,11,6,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,4,4,7,4,9/2,3,5,4,9/2,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,11/2,5,9,5,11/2,4,7,4,11/2,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,15/2,7,13,7,15/2,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,5,4,6,5,7,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,8,4,7/2,3,4,3,3,3,5,3,5/2,2,4,2,5/2,2,5,3,5/2,2,2,2,3/2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-3/2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-3/2,-1,-3,-1,-1,0,-1,0,-1/2,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,7/2,3,5,3,7/2,3,4,3,7/2,4,5,3,7/2,3,6,4,5,5,10,6,6,5,6,4,9/2,4,7,4,7/2,3,4,3,7/2,3,4,3,3,2,4,3,3,3,5,3,7/2,3,5,3,4,4,8,4,4,3,4,3,7/2,4,6,4,4,3,5,4,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,6,5,9,6,19/2,10,19,10,10,7,11,6,15/2,6,12,7,7,6,8,5,7,7,13,7,15/2,6,8,5,7,7,11,7,8,7,11,8,11,11,20,10,21/2,8,12,7,17/2,7,13,8,17/2,7,12,8,11,10,19,10,23/2,9,13,8,11,11,22,13,15,13,22,15,22,22,47,24,24,16,24,14,33/2,14,24,13,27/2,10,16,10,27/2,12,23,12,12,8,12,7,9,8,13,8,9,7,11,8,21/2,10,20,10,10,7,10,6,7,6,11,6,6,5,6,4,6,6,11,6,13/2,4,7,4,11/2,5,9,5,11/2,4,8,6,8,8,15,8,9,6,8,5,6,5,9,5,11/2,4,8,5,6,6,11,6,13/2,5,6,4,11/2,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,7/2,2,3,2,7/2,4,7,4,9/2,4,5,4,9/2,4,6,3,3,3,5,3,4,4,7,4,4,3,5,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,2,5/2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,5,3,3,2,3,2,5/2,2,2,2,3/2,2,1,1,1,1,2,2,3/2,2,2,2,2,2,2,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,1,1,1,1/2,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-7/2,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-5/2,-2,-5,-3,-4,-4,-8,-4,-7/2,-2,-3,-1,-3/2,-1,-2,-1,-2,-1,-2,-1,-5/2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,3,3,6,4,7/2,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,4,3,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,9/2,4,7,5,13/2,6,13,7,7,5,7,4,5,4,7,4,9/2,3,4,3,4,4,8,4,9/2,4,5,3,4,4,6,4,7/2,3,5,4,5,5,8,4,9/2,3,4,2,5/2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,1,1,1,2,2,5/2,2,3,2,5/2,2,3 -21,11,11,8,11,13/2,8,6,11,6,6,5,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,7/2,5,5,8,9/2,4,7/2,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,5/2,4,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1/2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,5/2,3,5/2,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,7/2,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,32,17,17,23/2,17,10,12,10,16,9,10,7,11,7,9,8,16,8,8,6,8,5,7,6,9,11/2,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,5/2,5,3,3,3,4,3,4,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,4,5/2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1/2,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-3/2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1/2,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,5/2,3,5/2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,5/2,3,3,4,5/2,2,2,3,5/2,3,3,6,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2 -30,15,15,11,16,9,11,9,16,9,9,7,21/2,7,10,9,16,9,9,6,9,6,7,6,10,6,6,5,9,6,9,9,17,9,10,7,19/2,6,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,5,4,13/2,5,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,13/2,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,11/2,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,5,4,7,5,8,8,12,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,9,5,6,4,13/2,4,5,5,8,5,5,4,15/2,6,8,8,14,8,8,6,15/2,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,4,3,4,3,5,4,6,6,7,4,4,3,3,2,3,3,5,3,3,2,5/2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-5/2,-1,-2,-2,-5,-2,-3,-2,-7/2,-2,-2,-2,-4,-2,-2,-1,-5/2,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-3/2,-1,-2,-1,-2,0,0,0,-3/2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1/2,0,0,0,3,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,4,3,4,4,11/2,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,11/2,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,4,5,5,9,6,7,6,9,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,11,7,10,10,19,10,10,7,21/2,6,8,7,13,7,8,6,21/2,7,10,10,19,11,12,9,29/2,10,13,12,22,13,15,13,22,15,22,22,49,25,25,17,25,14,16,14,24,13,13,10,31/2,10,12,12,24,12,12,8,25/2,8,10,8,14,8,9,7,21/2,7,10,10,19,10,10,7,19/2,6,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,6,5,9,5,5,4,7,5,6,6,11,6,6,4,11/2,3,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,7/2,2,3,3,4,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,9/2,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-3,-1,-2,-2,-7/2,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-9/2,-2,-4,-4,-7,-3,-3,-2,-9/2,-2,-4,-3,-7,-3,-4,-3,-11/2,-3,-5,-4,-9,-4,-4,-3,-11/2,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5/2,-1,-1,-1,-3,-1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,4,4,8,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,9/2,3,4,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,2,5/2,2,2,2,1,1,2,2,5/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3 -17,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,6,11/2,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,8,5,5,7/2,5,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,5/2,4,4,4,5/2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,2,3,2,2,3/2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,4,3,3,3,5,7/2,4,7/2,5,4,6,6,12,13/2,6,9/2,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,7/2,5,7/2,4,4,6,4,4,4,7,9/2,6,6,11,6,6,4,6,4,5,4,8,9/2,5,4,6,9/2,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,9,6,7,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,3/2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1/2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 -21,11,11,8,12,7,15/2,6,11,6,13/2,5,7,5,7,7,12,6,13/2,5,7,4,11/2,5,8,5,5,4,6,4,13/2,6,13,7,7,5,6,4,9/2,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,7/2,3,4,4,11/2,5,10,6,6,4,6,4,9/2,4,7,4,9/2,4,5,4,5,5,7,4,9/2,4,5,3,4,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,3,3,4,2,2,2,2,2,2,3,5,3,7/2,2,3,2,3,3,5,3,4,3,5,4,11/2,6,9,5,5,4,6,4,9/2,4,6,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,3,3,6,4,4,4,5,4,6,6,10,6,11/2,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,5,3,4,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,1,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,1,1,1,1,1,2,2,3/2,2,1,1,1/2,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1/2,0,-1,0,-1,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,3,2,2,2,2,2,5/2,2,4,2,5/2,2,4,3,3,3,5,3,5/2,2,3,2,5/2,2,3,2,3,3,4,3,9/2,4,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,7/2,3,5,3,4,4,6,4,4,4,6,5,7,7,15,8,15/2,5,8,5,6,5,8,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,4,4,6,4,9/2,4,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,15/2,7,12,7,8,6,10,7,9,8,15,9,10,9,15,10,31/2,16,33,17,35/2,12,17,10,23/2,10,17,9,19/2,7,11,7,9,8,17,9,17/2,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,5,5,7,4,9/2,4,5,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,5,4,11/2,6,12,6,13/2,5,6,4,5,4,7,4,9/2,4,5,4,5,5,7,4,4,3,5,3,7/2,3,6,4,7/2,3,5,4,9/2,4,8,5,5,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,2,3,2,3,3,6,4,7/2,2,4,2,5/2,2,3,2,5/2,2,4,3,7/2,4,4,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,1/2,0,-2,-1,-3/2,-1,-3,-2,-5/2,-2,-8,-4,-7/2,-2,-3,-1,-1,-1,-3,-1,-3/2,-1,-3,-2,-5/2,-2,-4,-2,-3/2,-1,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,-4,-2,-3/2,0,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3/2,0,-2,-1,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,4,2,5/2,2,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,2,4,3,3,2,4,3,3,3,4,3,7/2,3,6,3,3,2,3,2,2,2,4,2,5/2,2,3,2,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,4,3,7/2,3,4,3,5,5,8,5,5,4,4,3,4,3,5,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,2,5/2,2,2,2,3,3,5,3,5/2,2,2,2,2,2,1,1,2,2,1,1,3/2,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,3,2,5/2,2,3 -18,9,9,7,10,6,7,6,9,5,5,4,6,4,6,6,11,6,6,9/2,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,7/2,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,5/2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,5/2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1/2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,11/2,9,6,8,7,13,8,9,8,13,9,13,27/2,28,15,15,10,14,8,10,8,14,8,8,6,9,6,8,7,14,7,7,5,8,5,6,5,9,5,6,4,7,9/2,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,3,5/2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-5/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3 -31,16,16,11,16,9,11,9,31/2,8,8,6,10,7,10,9,19,10,11,8,12,7,9,8,13,8,9,7,11,7,10,10,20,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,15/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,5,17/2,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,15/2,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,15/2,5,6,5,7,5,6,6,8,4,4,3,4,3,4,3,9/2,3,4,3,5,4,5,5,7,4,4,2,2,2,2,2,5/2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-3/2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-5/2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3/2,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,11/2,4,5,5,8,6,8,7,14,7,7,5,7,4,5,5,17/2,5,6,4,6,4,5,4,8,4,4,3,4,3,4,4,13/2,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,7,4,4,3,4,3,3,3,9,5,6,4,6,4,5,5,17/2,5,6,5,9,7,10,11,22,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,5,6,6,19/2,6,7,7,12,8,12,11,18,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,11,9,14,9,13,12,45/2,13,16,14,24,16,24,24,50,26,26,18,26,15,17,14,49/2,13,14,10,16,10,13,12,24,13,13,9,14,9,11,9,16,9,10,7,11,7,10,10,19,10,10,8,12,7,9,7,12,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,7,18,9,9,6,8,5,6,6,19/2,6,6,5,8,5,7,7,10,6,6,5,7,4,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,3,3,2,7/2,2,2,2,4,3,3,3,9,5,5,4,5,4,5,4,7,4,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,3,2,3,3,9/2,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,11/2,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,3,3,0,1,1,1,2,2,2,2,7/2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-9/2,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-3/2,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-7/2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,2,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,11/2,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,13/2,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,15/2,4,5,4,6,4,5,5,7,4,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,0,0,0,1,1,1,4,3,3,2,2,2,2,2,7/2,2,3,2,3,2,3,3,5 -17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,11/2,10,6,6,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,5/2,4,3,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,4,2,2,2,4,3,3,3,4,5/2,2,2,3,2,3,3,3,2,3,3,4,3,5,4,8,4,4,3,4,3,3,3,5,3,4,5/2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,13/2,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,6,10,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,9,8,13,9,13,13,27,14,14,10,14,8,9,8,14,15/2,8,6,9,6,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,5/2,4,3,3,3,4,3,3,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,5/2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,-1,-1,-1/2,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,4,5/2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,5/2,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -18,10,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,11,6,13/2,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,5,3,7/2,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,6,4,7/2,3,4,3,7/2,3,3,2,2,2,2,2,3,3,6,3,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,5,3,7/2,2,4,3,7/2,3,4,3,3,3,4,3,4,4,8,4,9/2,3,4,3,4,4,5,3,4,3,4,3,7/2,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,3,4,2,5/2,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3/2,1,1,1,1,1,0,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,0,0,0,0,1/2,0,-1,0,-1/2,0,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,-1,4,2,5/2,2,3,2,3,2,4,2,5/2,2,4,3,7/2,3,5,3,5/2,2,3,2,3,3,3,2,3,3,4,3,5,5,9,5,9/2,3,4,3,3,3,5,3,7/2,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,5/2,2,5,3,4,3,4,3,7/2,3,6,4,4,3,6,4,6,7,13,7,13/2,4,6,4,9/2,4,7,4,4,4,5,4,9/2,4,7,4,4,3,6,4,4,4,6,4,9/2,4,7,5,7,7,11,6,6,5,6,4,11/2,5,8,5,6,5,6,4,6,6,11,6,13/2,6,9,6,15/2,7,14,8,19/2,8,15,10,29/2,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,7,14,8,15/2,6,8,5,7,6,9,5,11/2,4,6,4,6,6,12,6,6,5,7,4,11/2,4,7,4,7/2,3,4,3,7/2,3,5,3,7/2,2,4,3,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,7/2,3,5,4,9/2,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,7/2,4,7,4,7/2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,6,4,7/2,3,3,2,7/2,3,4,3,3,3,3,2,3,3,6,4,7/2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,5,3,5/2,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,0,-1,-1,-5/2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1/2,0,-3,-1,-3/2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-1,0,-3/2,-2,-3,-1,-3/2,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,1/2,0,-1,0,0,0,0,0,1/2,1,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,7/2,4,4,2,2,2,2,2,3/2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,5,3,3,3,3,2,5/2,2,5,3,3,2,3,2,3,3,5,3,7/2,3,3,2,5/2,2,5,3,7/2,3,4,3,7/2,3,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,7/2,4,4,2,2,2,3,2,5/2,2,3,2,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3 -14,8,8,6,8,5,5,9/2,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,7/2,5,5,9,5,5,3,5,3,3,3,4,3,3,2,4,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,3/2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,7,4,4,3,5,7/2,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,5/2,2,2,3,2,3,5/2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1/2,-2,-3/2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,7/2,4,3,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -22,12,12,9,13,8,9,7,13,7,8,6,17/2,6,8,7,13,7,8,6,17/2,5,6,6,10,6,6,5,15/2,5,6,6,13,7,7,5,7,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,9/2,2,2,2,3,2,2,2,7/2,3,4,5,12,6,6,4,11/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,3,3,6,4,4,2,5/2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,13/2,4,5,5,6,4,4,3,5,3,4,4,8,4,4,4,11/2,4,4,4,6,4,5,4,6,4,6,6,8,5,5,4,11/2,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,7/2,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,9/2,3,4,4,5,3,2,2,2,2,2,2,5,3,3,3,4,3,4,4,3,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,5/2,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1/2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,-1/2,0,0,0,-2,-1,-1,0,-3/2,0,-1,-1,-2,-1,-1,0,-3/2,0,-1,-1,-3,-1,0,0,-1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,6,3,3,2,7/2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,10,5,5,4,6,3,3,3,6,3,3,2,3,3,4,4,5,3,3,2,3,3,4,4,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,7,4,5,4,13/2,5,7,8,15,8,8,6,8,5,5,5,8,5,6,5,7,5,6,6,9,5,6,4,11/2,4,4,4,6,4,5,4,15/2,6,8,8,12,7,7,5,7,4,5,5,9,5,6,5,17/2,6,7,7,14,8,8,6,21/2,7,10,9,16,10,12,10,18,12,17,17,35,18,18,12,18,11,13,11,18,10,10,8,12,8,10,9,17,9,10,7,19/2,6,7,7,12,6,6,5,15/2,6,8,7,15,8,8,6,15/2,5,6,5,7,4,5,4,11/2,4,4,4,6,4,4,3,7/2,3,4,4,5,3,3,3,4,3,4,4,13,7,6,4,13/2,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,5,3,4,3,4,3,4,5,9,5,4,3,4,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,3,4,2,2,2,7/2,2,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,3,4,4,3,2,2,2,2,2,3,3,4,2,2,2,7/2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,7/2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3/2,1,1,1,3,2,3,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-5/2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-5/2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,-1/2,0,0,0,3,2,2,2,3,2,3,3,3,2,2,2,7/2,3,4,4,4,3,3,2,7/2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,2,2,2,7/2,2,2,2,5,3,3,2,5/2,2,2,2,7,4,4,3,7/2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,4 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,5/2,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,5/2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,3/2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1/2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,7/2,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,9/2,7,5,6,6,10,6,8,7,12,8,11,11,22,12,12,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,6,9/2,6,4,5,5,8,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,8,9/2,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-3/2,-2,-1/2,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,5/2,4,5/2,3,3,6,7/2,3,3,4,5/2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3 -19,10,10,7,11,7,8,6,11,6,13/2,5,8,5,7,6,12,7,7,5,8,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,6,4,9/2,4,6,4,9/2,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,5/2,2,4,3,4,4,10,6,11/2,4,4,3,4,4,5,3,7/2,3,4,3,7/2,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,5/2,3,5,3,3,2,3,2,7/2,3,5,3,4,3,5,3,4,4,9,5,11/2,4,6,4,9/2,4,6,4,4,3,5,3,4,4,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,7/2,3,5,3,7/2,3,3,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,5,3,3,3,5,3,5/2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,7/2,4,3,2,3/2,2,2,2,2,1,1,1,2,2,2,2,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,5/2,2,-1,0,1/2,1,1,1,3/2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,-1,0,-1/2,0,5,3,7/2,3,4,2,5/2,3,5,3,3,3,4,3,7/2,4,6,4,4,3,5,3,7/2,3,4,3,7/2,3,5,4,5,5,9,5,9/2,3,5,3,3,2,5,3,5/2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,5/2,2,2,2,3,3,5,3,7/2,3,4,3,7/2,3,6,4,4,3,4,3,7/2,3,6,4,4,4,6,4,13/2,7,12,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,9/2,4,7,4,5,4,6,4,4,4,6,4,9/2,4,7,5,13/2,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,13/2,6,13,7,15/2,6,10,6,8,8,14,8,21/2,9,16,11,31/2,16,31,16,31/2,10,15,9,11,9,15,8,17/2,7,10,6,17/2,8,14,8,15/2,6,8,5,13/2,6,10,6,6,5,8,5,13/2,6,13,7,13/2,4,6,4,9/2,4,6,4,4,3,5,3,3,3,5,3,7/2,2,4,3,4,3,5,3,7/2,2,3,2,7/2,4,11,6,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,7/2,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,2,5/2,2,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,5/2,2,4,2,2,2,3,2,5/2,2,6,4,7/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-3/2,-1,-2,-1,-2,-2,-5,-2,-5/2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1/2,-1,-3,-1,-1/2,0,-1,0,-1,-1,-4,-2,-3/2,-1,-1,0,-1,0,-1,0,-1/2,0,-2,-1,-3/2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1/2,0,-4,-2,-3/2,-1,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,1/2,0,2,2,2,2,3,2,3,3,3,2,5/2,2,2,2,3,3,4,3,3,3,3,2,3,3,4,2,5/2,2,3,3,4,4,2,2,3/2,2,2,2,3/2,2,3,2,3,2,4,3,3,3,4,2,5/2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,7/2,3,5,3,4,3,9,5,5,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,2,3,2,5/2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,3 -18,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,5/2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,5,4,5,5,9,5,4,3,4,3,3,2,4,5/2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,8,6,10,6,8,8,14,8,10,17/2,15,10,15,15,30,15,15,10,15,9,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,5/2,3,5/2,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,5/2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,-1/2,-2,-1/2,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1/2,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,5/2,3,2,2,2,5,3,4,3,4,3,4,3,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3 -34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,5,8,5,6,5,15/2,4,5,4,6,4,4,3,5,3,4,4,7,5,7,7,19,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,19/2,6,6,4,6,4,4,4,6,4,5,4,6,4,5,4,9,5,4,3,4,3,4,3,5,3,4,4,6,4,4,4,15/2,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,16,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,25/2,7,7,5,6,4,5,5,8,5,6,5,8,6,9,9,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,4,15/2,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,5,4,5,3,3,3,4,2,2,2,2,2,2,2,7/2,2,2,2,4,3,3,3,5,3,4,4,6,4,5,5,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3/2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,21/2,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,16,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,11,22,11,11,8,11,7,8,8,14,7,7,5,8,6,8,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,11,11,19,10,10,7,10,6,8,7,12,7,8,7,12,8,12,12,45/2,12,13,10,16,10,14,13,24,14,17,15,26,18,27,27,57,29,29,19,28,16,19,16,28,15,16,12,19,12,15,13,24,13,13,10,15,9,11,10,18,10,11,9,14,9,12,11,21,11,10,7,10,6,8,7,11,6,7,5,8,5,5,5,8,5,5,3,4,3,3,3,6,4,4,4,7,5,7,6,18,9,9,6,8,5,6,5,8,5,5,4,5,4,6,6,19/2,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,13/2,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,7/2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-5/2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,5,7,7,3,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,16,8,8,6,9,5,6,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,10,6,6,5,7,4,5,4,6,4,4,4,6,4,5,4,13/2,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6 -18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,6,11,6,6,9/2,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,7,10,13/2,8,7,13,7,7,11/2,8,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1/2,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,3/2,2,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,5/2,3,5/2,3,2,2,2,3,2,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,7,6,11,6,13/2,5,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,4,9/2,4,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,3,6,4,7/2,2,2,2,5/2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,5,3,3,3,3,3,4,4,9,5,9/2,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,4,11/2,6,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,3,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,2,2,3,2,5/2,3,3,2,3/2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,5/2,2,-1,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,1,2,2,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,1/2,0,-2,0,1/2,0,0,0,0,1,2,2,3/2,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,3/2,2,2,2,2,2,1,1,2,2,2,2,3/2,1,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,4,3,5,4,9/2,5,9,5,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,6,4,7/2,2,3,2,5/2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,4,6,4,5,5,12,6,6,4,7,4,5,4,7,4,4,3,4,3,9/2,4,7,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,6,6,10,6,11/2,4,6,4,5,4,8,5,11/2,4,7,5,7,7,12,7,7,6,10,6,17/2,8,13,8,19/2,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,13/2,6,12,6,13/2,5,6,4,5,4,6,4,4,3,5,3,4,4,4,3,7/2,2,2,2,2,2,5,3,3,3,4,3,4,4,10,6,6,4,4,3,4,3,5,3,3,3,3,2,7/2,4,4,3,7/2,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,5/2,2,7,4,3,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,3/2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,0,0,0,0,-1/2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1,-1,-3,-1,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,1/2,0,-5,-2,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,2,2,3/2,1,3,2,2,2,2,2,2,2,4,2,5/2,2,2,2,5/2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,5/2,2,2,2,2,2,2,2,3/2,2,1,1,3/2,1,5,3,5/2,2,2,2,5/2,2,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3,2,2,2,5/2,2,2,2,3,3,9,5,9/2,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,4,2,5/2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,4,2,5/2,2,4 -14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,6,4,4,3,5,7/2,5,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,4,5/2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,2,3/2,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1/2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,6,4,4,3,4,3,4,9/2,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,8,13/2,11,8,11,11,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,3,2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,5/2,4,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3 -21,11,10,7,10,6,7,6,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,15/2,5,6,5,7,4,4,3,4,3,4,3,4,3,3,2,7/2,2,3,2,4,3,4,4,11/2,4,5,5,13,7,7,5,6,4,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,7/2,2,3,2,5,3,4,3,7/2,3,4,4,6,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,9/2,3,4,4,9,5,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,4,3,4,4,7,4,4,3,5,3,3,2,5,3,4,3,7/2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,5/2,2,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,3,2,3,2,7/2,2,3,3,0,0,0,0,0,0,0,0,1,1,2,2,3/2,2,2,1,3,2,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1/2,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,6,4,4,4,11/2,4,5,5,8,5,5,3,4,3,3,3,5,3,2,2,5/2,2,3,3,7,4,4,3,3,2,3,2,3,2,3,3,11/2,4,4,4,3,2,2,2,5/2,2,3,3,4,2,2,2,7/2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,11/2,4,5,5,13,7,7,5,15/2,4,5,5,7,4,4,3,5,4,5,5,9,5,6,4,11/2,4,4,4,9,5,6,4,13/2,5,7,7,12,7,7,5,15/2,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,21/2,7,9,9,16,9,11,10,17,12,17,17,34,17,17,12,17,10,11,9,17,9,10,8,23/2,8,10,9,15,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,11,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,4,3,9/2,4,5,5,8,5,5,4,9/2,3,3,2,3,2,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,7/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3,2,2,2,5/2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3/2,2,3,3,2,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,1/2,0,0,0,-1,0,-1,0,-3/2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,-1/2,0,0,0,-4,-1,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-1,0,0,0,1/2,1,1,1,-6,-2,-2,-1,-3/2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,1/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,7/2,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,6,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,4,10,5,5,4,9/2,3,3,2,5,3,2,2,2,2,3,3,4,3,3,2,5/2,2,2,2,3,2,3,2,7/2,3,4,3,4,3,3,2,7/2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,7/2,2,2,2,4,3,4,3,9/2,3,3,3,5 -13,7,6,9/2,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,5,7/2,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,9/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,5/2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,5/2,3,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,7/2,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,11/2,9,5,5,4,6,7/2,4,4,6,4,4,3,5,7/2,5,9/2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,3/2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,5/2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 -16,8,8,6,7,4,11/2,5,8,5,5,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,4,3,3,3,4,3,4,4,11,6,11/2,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,5/2,2,3,2,3,3,8,4,4,3,5,3,4,4,5,3,7/2,3,4,3,7/2,4,4,3,7/2,3,4,3,7/2,3,6,4,9/2,4,6,4,5,5,8,4,9/2,3,4,3,3,3,5,3,7/2,3,3,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,5,3,3,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,3/2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,7/2,3,0,1,1,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,3,2,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,9/2,4,6,4,7/2,3,4,3,9/2,4,7,4,5,4,5,3,7/2,4,6,4,4,3,6,4,11/2,5,10,6,13/2,4,7,4,5,5,8,5,11/2,4,7,5,13/2,6,10,6,13/2,5,8,5,7,7,12,7,9,8,13,9,27/2,13,26,14,14,9,13,8,9,7,12,7,7,6,9,6,15/2,7,11,6,6,4,7,4,11/2,5,8,5,5,4,6,4,6,5,10,6,11/2,4,6,4,4,3,5,3,7/2,3,5,4,9/2,4,5,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,8,4,9/2,4,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,2,3/2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,2,2,6,4,7/2,3,4,3,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3/2,1,1,1,3/2,2,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,1/2,0,1,1,0,0,-2,0,0,0,-2,-1,-3/2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,-1/2,0,-2,-1,-1,0,-1,0,-1/2,0,-1,0,-1/2,0,0,0,-1,-1,-4,-1,-1,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,-1/2,0,-1,0,1/2,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,4,2,5/2,2,2,2,2,2,4,2,5/2,2,4,3,3,3,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,3/2,2,4,2,5/2,2,2,2,5/2,2,2,2,3/2,1,1,1,1/2,0,3,2,2,1,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,2,2,2,2,5/2,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,5/2,2,2,2,5/2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,5/2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,5/2,2,4,3,7/2,3,5 -14,7,7,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,3/2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,5/2,3,7/2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,9/2,6,6,10,6,6,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,6,7/2,3,5/2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3/2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1/2,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,4,5/2,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,5/2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 -24,12,12,8,12,7,8,7,11,6,7,6,9,6,8,7,15,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,8,5,5,4,13/2,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,9/2,4,5,5,8,6,8,8,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,11/2,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,11/2,4,4,3,4,3,4,4,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,7,4,4,3,5,4,5,5,19/2,6,6,5,9,6,8,8,14,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,1,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,2,2,2,7/2,2,2,2,4,3,4,4,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,0,-1/2,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,4,3,3,2,2,2,2,2,5/2,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,11/2,4,4,4,6,4,6,5,6,3,3,3,4,3,4,4,11/2,4,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,6,16,9,9,7,10,6,7,6,9,5,6,5,7,5,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,6,8,8,19,10,10,7,10,6,8,7,25/2,8,9,7,12,8,11,11,18,10,10,8,12,8,10,10,39/2,12,14,12,21,14,21,21,42,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,17,9,10,8,12,7,9,8,27/2,8,8,6,10,7,9,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,12,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,3,3,4,4,11/2,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,6,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,11,6,6,4,6,4,5,4,13/2,4,4,3,4,3,4,3,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,6,3,3,3,4,2,2,2,5/2,2,2,1,1,1,1,2,-1,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1/2,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,-1,-1,0,0,0,0,-1,-1,-2,-2,-7/2,-2,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-5/2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,1,1,3/2,2,2,1,1,1,1,2,4,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,1,1,1/2,0,0,0,0,1,1,2,7,4,4,3,4,2,2,2,7/2,2,2,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,4,4,9,5,6,4,6,4,4,3,5,3,3,2,3,2,3,4,8,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,9/2,2,2,2,2,1,1,1,5,3,3,3,5,3,4,4,11/2,3,3,3,4,3,5,5,8 -13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,5/2,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,3/2,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,5/2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,4,7/2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,9/2,5,4,7,5,7,13/2,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,10,11/2,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,5/2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,1,1,1,1,1,1,2,3/2,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1/2,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,3/2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5 -15,8,8,6,8,5,6,5,8,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,6,4,9/2,4,6,4,11/2,6,10,6,6,4,5,3,7/2,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,4,6,6,11,6,6,4,6,4,4,4,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,5,3,3,3,4,3,7/2,3,9,5,11/2,4,6,4,9/2,4,5,3,4,3,5,3,3,3,4,3,3,3,3,3,4,4,6,4,5,4,6,4,11/2,6,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,3,2,5,3,4,3,4,2,2,2,3,2,3/2,2,2,2,5/2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,1,2,2,2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,1,1,1,3/2,2,2,2,5/2,2,5,3,3,2,3,2,2,2,3,2,5/2,2,3,2,3,3,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,1/2,0,0,0,0,1,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,5/2,2,3,2,5/2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,3,9/2,4,6,4,4,3,4,3,7/2,3,4,2,2,2,3,2,5/2,2,5,3,5/2,2,2,2,5/2,2,4,3,3,3,4,3,4,4,4,2,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,5,3,4,3,3,2,3,3,4,2,2,2,4,3,9/2,4,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,13/2,5,6,4,11/2,5,8,5,11/2,4,8,6,8,7,12,7,7,6,9,6,15/2,7,13,8,9,8,14,10,27/2,14,26,14,27/2,9,13,8,17/2,7,13,7,7,6,8,6,8,7,12,6,6,5,8,5,5,5,9,5,5,4,7,4,11/2,5,10,5,5,4,5,3,3,3,6,4,7/2,3,4,3,4,4,7,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,5/2,2,3,2,3,3,4,3,3,3,3,2,7/2,4,6,4,4,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,3,3,7,4,9/2,3,4,3,7/2,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,3/2,1,2,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,1,1,3/2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-5/2,-2,-2,-1,-1,0,-1,0,-1/2,0,-2,0,0,0,-1,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1,0,-2,-1,-3/2,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,-1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,7/2,4,0,0,1/2,1,1,1,1,1,0,1,1,1,2,2,3/2,2,4,2,2,2,2,1,1,1,3,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,5/2,2,2,2,2,2,6,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,4,2,3/2,2,2,2,3/2,2,3,2,3,2,3,2,5/2,2,4,2,5/2,2,3,3,4,4,6 -13,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,7/2,5,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,2,4,5/2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1/2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,11/2,6,4,5,7/2,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,21,11,11,15/2,11,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,7/2,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,2,2,3,3,4,5/2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,3/2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6 -22,11,11,8,21/2,6,8,6,11,6,7,5,15/2,5,6,5,10,6,6,4,13/2,4,6,5,8,5,6,5,9,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,6,4,5,4,7,5,7,8,15,8,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,6,4,11/2,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,3,3,5,3,3,2,3,3,4,4,7,4,4,4,11/2,4,4,4,12,7,8,6,17/2,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,11/2,4,4,3,7,4,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,7,4,5,4,5,3,4,3,4,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,5/2,2,2,2,3,2,2,2,3/2,2,2,1,2,2,2,2,5/2,2,2,3,6,4,4,3,9/2,3,4,3,5,3,3,3,4,3,5,5,0,0,0,1,3/2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,1,0,0,0,0,0,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1/2,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,5/2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,3,5,4,6,6,8,5,5,4,11/2,4,4,3,5,3,3,2,3,2,3,4,5,3,3,2,3,2,2,2,6,4,4,4,11/2,4,5,5,6,4,4,3,9/2,3,3,2,3,2,3,2,7/2,2,3,3,7,4,4,3,9/2,3,4,4,5,3,3,3,5,4,5,6,13,7,7,5,8,5,5,4,6,4,4,4,13/2,4,6,6,12,6,6,5,15/2,5,6,6,10,6,6,6,19/2,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,37/2,10,12,10,18,10,10,7,11,7,10,10,17,9,9,6,17/2,5,6,6,12,7,8,6,17/2,6,8,7,13,7,7,5,13/2,4,5,4,7,4,5,4,11/2,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,11/2,4,6,6,9,5,5,4,11/2,4,4,4,5,3,4,3,7/2,3,4,4,6,4,4,3,9/2,3,4,4,5,3,4,3,9/2,4,5,5,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,2,3,3,9,5,6,4,11/2,4,4,4,6,4,4,3,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1/2,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5/2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,3,9/2,3,4,4,-1,0,0,1,1,1,1,1,0,1,1,2,5/2,2,2,2,4,2,2,2,3/2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,7/2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,5,3,4,4,6,4,6,6,11 -15,8,8,5,8,9/2,6,9/2,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,5/2,4,3,3,3,6,7/2,4,3,4,2,2,2,3,2,3,5/2,3,3,4,7/2,5,3,4,3,4,5/2,3,3,4,3,3,5/2,3,2,2,5/2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,8,5,5,4,6,7/2,4,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,3,4,3,6,4,4,7/2,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,5/2,4,7/2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,7/2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,5,3,3,2,4,5/2,3,3,4,2,2,5/2,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,4,4,5,7/2,4,4,7,4,4,4,7,9/2,6,6,11,6,6,4,7,4,5,4,7,4,5,4,7,5,7,13/2,11,6,7,11/2,8,11/2,7,7,12,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5/2,6,7/2,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,7/2,6,7/2,4,3,4,5/2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,5/2,3,3,4,3,5,5,8 -22,11,21/2,7,11,6,15/2,6,10,6,11/2,4,6,4,11/2,5,10,6,11/2,4,6,4,5,5,8,5,11/2,5,8,5,7,7,12,6,13/2,5,7,4,9/2,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,9/2,4,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,3,3,4,3,3,3,4,3,9/2,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,7/2,4,6,3,3,3,4,3,7/2,4,7,4,4,3,5,3,4,4,12,7,7,5,8,4,9/2,4,7,4,4,3,5,3,4,4,5,3,7/2,3,5,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,6,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,7/2,3,3,2,3,3,4,3,3,2,2,2,2,3,7,4,9/2,4,4,3,3,3,5,3,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,1,1,1,3/2,2,2,2,3/2,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,9/2,4,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,-1/2,0,-1,0,1/2,0,0,0,0,1,1,1,1,1,2,2,5/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,7/2,3,3,2,5/2,2,3,2,5/2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,7/2,4,6,4,7/2,3,4,3,4,4,6,4,5,4,6,4,13/2,7,7,4,9/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,4,3,7/2,3,5,3,4,3,5,4,9/2,4,7,4,9/2,3,4,2,5/2,2,4,3,3,2,3,2,7/2,4,6,4,7/2,3,5,3,4,4,5,3,7/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,6,4,5,4,6,4,6,6,11,6,13/2,5,7,5,6,6,10,6,13/2,6,10,6,17/2,8,16,8,8,6,10,6,15/2,6,11,6,15/2,6,10,7,10,9,16,9,10,8,12,8,21/2,10,17,10,23/2,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,6,10,6,6,5,7,5,13/2,6,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,9,5,5,3,5,3,7/2,3,5,3,7/2,4,6,4,6,5,9,5,5,4,6,4,9/2,4,6,4,4,3,4,3,7/2,4,7,4,9/2,4,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,7/2,4,8,4,9/2,4,5,3,3,3,5,3,3,3,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,2,3/2,1,1,1,1,1,0,1,3/2,2,2,2,2,2,2,2,3/2,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,2,2,2,1,1,1,3/2,1,2,2,3/2,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1/2,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1/2,0,-3,-1,-3/2,-1,-3,-2,-4,-4,0,0,-1/2,0,-1,0,0,0,-2,0,0,0,-1,0,-1/2,-1,-2,0,0,0,-1,0,-1/2,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-3/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,-3,-1,-1,0,-1,0,-1/2,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,2,2,1,1,3/2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,4,4,-1,0,1,1,1,1,1,1,0,1,2,2,2,2,5/2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,3,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,2,3,2,5/2,2,4,2,2,2,3,2,2,2,4,2,5/2,2,2,2,3,3,4,2,5/2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,3,5,3,4,4,6,5,7,7,12 -21,11,10,7,11,6,7,6,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,9/2,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,9/2,8,4,4,7/2,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,5,4,5,4,8,5,5,4,7,5,7,7,12,6,6,5,6,4,4,4,7,4,4,7/2,5,3,4,4,6,3,3,5/2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,9/2,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,11/2,9,6,8,8,16,17/2,9,6,10,6,8,13/2,11,6,7,6,10,7,10,9,17,9,10,8,12,8,10,19/2,17,10,12,10,17,12,17,17,34,17,17,12,18,10,12,10,17,9,10,8,11,7,9,9,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-7/2,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1/2,-1,0,0,0,-2,0,0,0,0,1/2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,0,1/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,12 -41,21,22,15,23,14,17,14,25,13,14,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,12,8,12,12,45/2,12,12,9,13,8,10,9,16,9,9,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,14,10,14,13,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,9,6,7,6,9,5,5,4,7,5,7,8,29/2,8,8,6,9,5,6,6,10,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,7,6,9,6,7,7,13,7,8,7,11,8,12,12,22,12,12,8,12,7,8,6,10,6,6,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,5,13,7,7,5,8,5,6,5,8,5,5,3,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,6,5,8,6,8,8,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,11,8,12,12,12,7,7,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,7,7,27/2,8,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,10,21,11,11,7,10,6,7,7,12,7,8,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,9,15,10,15,16,31,16,16,11,17,10,13,12,22,12,14,12,20,13,18,18,35,18,19,14,23,14,18,17,32,18,21,18,32,22,33,33,67,34,34,22,32,18,21,18,32,17,18,13,20,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,12,22,12,12,9,13,8,9,8,14,8,8,6,10,7,10,10,19,10,10,7,11,7,9,8,15,9,10,8,12,8,11,10,17,9,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,6,5,7,7,25/2,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,3,2,2,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,2,3,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,3,3,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,2,2,2,1,1,1,2,2,4,3,3,3,5,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,9,9,14,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,11/2,4,4,3,4,3,4,4,7,5,6,5,8,5,7,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,24 -21,11,12,8,12,7,9,8,13,7,8,6,9,6,8,15/2,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,6,6,5,7,9/2,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,12,13/2,6,4,6,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,7/2,4,4,7,4,4,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1/2,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,5,7,7,7,4,4,3,5,7/2,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,17,10,11,10,17,12,17,17,34,18,18,12,17,10,11,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,6,11/2,9,11/2,6,5,7,5,7,6,12,6,6,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,8,4,4,3,5,3,3,3,4,5/2,3,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1/2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,5/2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,6,4,6,7,13 -22,12,23/2,8,12,7,17/2,8,13,7,15/2,6,9,6,8,8,13,7,15/2,6,9,5,11/2,5,9,5,5,4,7,5,13/2,6,12,6,6,4,7,4,11/2,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,3,5,3,7/2,3,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,5/2,2,4,3,4,4,13,7,6,4,6,4,5,4,6,4,9/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,6,4,9/2,4,6,4,6,6,12,7,7,5,6,4,4,3,5,3,4,3,3,2,5/2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,2,1,1,1,1,1,1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,1,1,1/2,0,0,0,1/2,1,0,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,1,2,2,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,4,3,3,3,4,3,3,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,7/2,4,5,3,4,4,7,5,7,7,7,4,4,3,6,4,4,4,6,4,7/2,3,4,3,4,4,7,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,3,4,4,6,4,9/2,4,6,4,11/2,6,12,6,13/2,4,6,4,5,4,7,4,9/2,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,16,9,9,7,9,6,15/2,7,12,7,8,7,11,7,10,10,19,10,21/2,8,12,8,21/2,10,17,10,11,10,17,12,35/2,18,34,18,18,12,17,10,11,10,17,9,9,7,10,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,7,5,7,6,12,6,13/2,5,7,5,6,5,8,5,5,4,6,4,11/2,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,3,6,4,7/2,3,3,2,5/2,2,5,3,3,2,2,2,2,2,3,2,5/2,2,4,3,4,4,6,4,4,3,5,3,4,3,4,2,5/2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,5/2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,5,3,3,2,2,2,5/2,2,3,2,2,2,2,1,1,1,0,0,1/2,1,0,1,1,1,2,2,3/2,1,0,0,1/2,0,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-3,-1,-2,-2,-4,-2,-7/2,-4,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1/2,0,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-3/2,-2,-4,-1,-1,-1,-1,0,-1/2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1/2,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-2,0,-1/2,0,0,0,1/2,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3/2,2,3,2,3,2,3,2,7/2,4,0,0,0,0,-1,0,1/2,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,1/2,1,1,1,1,1,0,1,3/2,2,3,2,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,7/2,3,5,4,5,5,7,4,9/2,4,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,13/2,7,13 -15,8,8,6,8,5,6,11/2,9,5,5,4,7,9/2,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,7/2,5,5,9,5,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,7/2,5,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,5/2,3,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,1,1,1,3/2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,5/2,4,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,5/2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,5/2,4,5/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,4,5/2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1/2,-1,-1,-3,-1,-2,-2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1/2,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,0,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9 -22,12,12,8,25/2,8,9,8,12,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,9/2,3,4,4,8,5,6,4,13/2,4,6,6,14,7,7,5,15/2,5,6,5,8,5,6,4,13/2,4,5,5,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,3,4,3,3,3,7,4,4,3,9/2,3,3,3,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,3,4,4,13,7,7,5,7,4,5,5,6,4,4,4,6,4,4,4,6,4,4,4,11/2,4,4,4,6,4,4,4,13/2,4,6,6,11,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,3,4,3,3,2,5/2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,9/2,3,4,3,5,3,4,3,7/2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,4,3,2,2,2,2,2,2,1,2,2,2,2,3/2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,0,1/2,0,0,0,1,1,0,0,-1/2,0,0,0,0,1,1,1,1/2,1,1,2,4,2,2,2,2,1,1,1,2,1,1,1,3/2,2,2,1,4,2,2,2,2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,2,2,2,2,5/2,2,3,3,8,5,5,3,4,3,3,3,6,4,5,5,8,6,8,8,7,4,5,4,11/2,4,4,4,5,3,4,3,9/2,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,9/2,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,4,6,4,4,4,13/2,4,6,6,14,7,7,5,13/2,4,6,5,6,4,4,4,6,4,6,5,9,5,6,4,13/2,4,6,6,9,5,6,6,19/2,6,9,9,17,9,9,7,11,7,9,8,13,7,8,6,21/2,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,35,18,18,12,18,11,13,11,18,10,10,8,23/2,8,10,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,12,6,6,4,13/2,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,3,3,2,7/2,3,4,3,6,3,3,2,3,2,3,2,4,2,2,2,3,3,4,4,6,4,4,3,9/2,3,4,4,4,2,2,2,5/2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,4,5,4,9,5,6,4,11/2,4,4,3,4,3,3,2,7/2,3,4,4,4,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,3/2,2,2,1,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,1/2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1/2,0,0,0,-1,0,0,0,-1/2,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-1,0,0,0,1/2,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,-1,0,-1,0,-3/2,-1,-2,-1,-3,-1,-1,0,-3/2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-3/2,0,-1,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1/2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3/2,2,2,2,2,2,3,3,4,3,3,3,0,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,-3,-1,0,0,-1/2,0,1,1,0,0,0,0,0,1,1,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,4,11/2,3,3,2,5,3,3,2,7/2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,5/2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,9/2,4,5,5,9,5,6,4,13/2,4,5,5,8,5,6,5,15/2,5,7,7,13 -13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,5,3,4,7/2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,9/2,5,7/2,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,5/2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,6,7/2,4,3,4,3,4,4,6,7/2,4,4,6,4,6,6,10,6,6,5,7,9/2,6,5,8,5,5,4,6,9/2,6,6,12,7,7,5,8,5,7,6,11,13/2,8,6,10,7,10,10,20,11,11,15/2,11,7,8,6,11,6,6,5,7,5,6,6,9,5,6,4,5,7/2,4,4,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,5/2,3,3,6,7/2,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,-1/2,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,3/2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8 -17,9,9,7,10,6,13/2,6,8,5,5,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,9/2,5,9,5,6,4,6,4,9/2,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,7/2,4,5,3,3,2,4,3,3,3,4,3,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,3,2,5/2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,7/2,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,7/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,5,3,3,3,4,3,7/2,3,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,7/2,4,6,3,3,2,3,2,5/2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,2,2,2,1,2,1,1,1,2,2,3/2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,5/2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,0,1/2,1,0,1,1,1,3,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,2,6,4,7/2,2,4,3,7/2,3,5,4,9/2,4,7,5,6,6,6,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,7,4,3,2,4,3,3,3,3,2,3,2,4,3,4,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,4,5,3,3,3,5,4,9/2,4,7,4,4,3,5,3,4,4,7,4,9/2,4,7,5,7,7,13,7,15/2,6,8,5,13/2,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,19/2,8,13,9,25/2,12,25,13,13,9,13,8,9,7,13,7,7,5,8,5,7,7,11,6,13/2,5,6,4,9/2,4,7,4,5,4,5,4,5,5,10,6,11/2,4,5,3,4,4,6,4,4,3,5,4,9/2,5,9,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,5,5,8,5,5,4,5,3,7/2,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,3,3,4,3,7/2,3,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,1,1,3/2,2,1,1,1,1,1,1,0,0,0,1,3/2,1,3,2,2,2,2,2,2,2,3,2,3/2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3/2,-1,-2,-1,-3,-3,-1,0,1/2,0,0,0,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,-1/2,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,1,1,1,1,1,1/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,3,3,4,4,6,4,4,3,4,3,3,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10 -15,8,8,6,8,5,6,5,8,5,5,4,7,9/2,6,11/2,9,5,5,4,5,3,4,7/2,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,3/2,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,6,4,4,4,6,9/2,6,6,12,13/2,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,13/2,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,3,2,2,2,3,5/2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8 -26,14,14,10,14,8,10,8,27/2,8,8,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,10,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,7,4,4,3,4,3,4,4,13/2,4,5,4,7,5,8,8,14,8,8,6,9,5,6,5,17/2,5,6,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,17/2,5,6,5,8,6,8,8,12,7,7,5,8,5,6,5,15/2,4,4,3,4,3,5,5,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,3,9/2,3,4,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,3/2,1,0,0,0,0,0,1,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,4,2,2,2,2,1,1,1,1/2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1/2,0,0,1,1,1,2,2,6,3,3,2,3,2,2,2,9/2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,5,4,5,4,9,5,5,4,6,4,5,5,17/2,5,6,5,9,6,8,8,8,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,10,6,6,4,6,4,4,3,9/2,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,13/2,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,21,11,12,8,12,8,10,9,16,9,10,8,12,8,12,11,20,11,12,9,13,9,12,12,22,12,14,11,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,13,9,12,11,16,9,9,7,10,6,8,6,21/2,6,7,5,8,6,8,8,15,8,9,6,9,5,6,6,19/2,6,6,5,9,6,7,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,6,4,4,4,13/2,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,3,3,3,4,3,4,4,13/2,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,9/2,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,11/2,4,4,4,6,4,4,4,5,3,3,2,3,2,2,2,5/2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-3/2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1/2,0,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,3/2,1,0,0,0,1,1,1,1,1,1,2,3,2,3,2,7/2,2,3,3,4,3,3,3,0,0,0,0,-1,0,0,0,-1/2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3/2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,3,9/2,3,4,4,6,4,5,5,10,5,5,3,4,3,3,2,7/2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,5,5,17/2,5,5,4,7,5,7,7,14 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,7,4,4,7/2,5,3,4,3,5,3,3,5/2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,3/2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,5,4,5,5,10,5,5,7/2,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,12,13/2,7,5,7,5,6,5,9,5,6,9/2,7,5,7,6,11,6,7,5,7,5,7,7,12,7,8,13/2,11,15/2,11,11,20,11,11,15/2,11,6,7,6,11,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,0,1/2,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1/2,0,1/2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1/2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8 -16,9,9,6,8,5,11/2,5,8,5,11/2,4,6,4,11/2,6,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,5,3,4,3,4,3,7/2,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,6,4,4,3,6,4,4,3,4,3,7/2,4,5,3,3,2,4,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,6,4,4,3,5,3,7/2,3,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,7/2,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,3,2,2,2,2,2,3/2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1/2,0,1,1,0,0,1,1,1,1,1,1,3/2,1,1,1,3/2,1,1,1,1/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1/2,0,1,1,3/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,9/2,4,6,4,6,6,6,3,3,3,4,3,7/2,3,5,3,4,3,4,3,7/2,3,7,4,4,3,4,3,3,3,4,2,5/2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,11/2,4,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,7/2,3,4,3,3,3,6,4,4,3,6,4,13/2,6,13,7,7,5,8,5,13/2,6,9,5,11/2,4,7,5,7,7,12,7,7,6,8,6,15/2,8,14,8,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,6,4,5,4,7,4,5,4,6,4,11/2,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,2,2,3,3,4,2,5/2,2,4,3,4,4,8,4,4,3,5,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,2,1,2,2,3/2,2,2,2,3/2,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1/2,0,3,2,3/2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,0,0,0,0,0,-1,0,-1/2,0,0,0,0,0,1,1,1/2,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-1,-1,-2,-1,-5/2,-2,1,1,1,1,0,0,1/2,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1/2,1,0,0,0,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,1/2,0,0,0,1/2,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,2,2,2,2,5/2,2,0,0,1/2,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,5/2,2,4,3,3,3,7,4,4,3,2,2,2,2,3,2,5/2,2,3,2,3/2,2,3,2,2,2,2,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,2,2,2,3,3,3,2,2,2,3,2,5/2,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,9/2,4,8 -12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,9/2,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,9/2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,2,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,5/2,3,5/2,3,3,5,3,4,3,5,7/2,5,5,5,3,3,5/2,3,5/2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,3,2,2,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,5,5,7,4,4,7/2,6,4,5,5,10,6,6,5,7,5,6,6,11,13/2,7,6,10,7,10,10,18,19/2,10,7,10,6,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,7/2,4,3,5,7/2,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,5/2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1/2,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 -20,10,10,7,11,7,8,6,10,6,7,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,7,7,6,4,4,4,11/2,4,4,4,7,4,5,4,6,4,5,5,6,4,4,3,9/2,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,10,6,6,4,13/2,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,7/2,2,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,4,2,5/2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,3,9/2,3,4,4,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,3/2,1,1,1,1,1,0,0,-1/2,0,0,0,4,3,3,2,7/2,2,3,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,5/2,2,2,2,2,1,1,1,1/2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,4,2,2,2,5/2,2,2,2,3,2,2,2,7/2,2,3,2,2,1,1,1,1/2,0,0,0,2,1,1,1,2,2,2,2,3,2,2,2,3/2,2,2,2,2,1,1,1,1/2,0,0,1,2,2,2,2,3/2,2,2,2,2,2,2,2,3/2,2,2,1,3,2,2,2,3,2,2,2,5,3,3,2,7/2,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,15/2,5,6,6,9,5,5,4,5,4,5,4,6,4,4,3,9/2,3,4,4,8,5,5,4,9/2,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,4,11/2,4,4,4,7,4,5,4,7,5,7,7,14,7,7,5,6,4,4,4,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,5,8,5,5,4,7,5,8,8,17,9,9,7,21/2,6,8,7,11,6,6,5,17/2,6,8,8,16,9,10,7,11,7,10,10,19,11,12,10,33/2,11,16,16,29,15,15,10,31/2,9,11,9,16,9,9,7,21/2,7,9,8,14,8,8,6,8,5,6,5,9,5,6,5,17/2,6,7,7,14,7,7,5,7,4,5,4,7,4,5,4,15/2,5,6,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,7,7,11,6,6,4,11/2,4,5,5,6,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,11/2,4,5,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,7/2,2,3,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,4,6,4,4,3,9/2,3,4,4,6,4,4,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3/2,1,1,1,0,0,0,1,1,1,1,1,3,2,2,1,1/2,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,1,1,1,0,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,-3/2,0,0,0,-2,-1,-2,-1,-5/2,-1,-2,-2,2,2,2,2,3/2,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,1/2,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1/2,0,0,0,2,1,1,1,3/2,2,2,1,2,2,2,1,1,1,1,1,-1,0,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,0,0,0,0,2,2,2,2,5/2,2,2,2,0,0,0,1,3/2,1,1,1,3,2,2,2,5/2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,3/2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,8,4,4,3,7/2,2,3,2,5,3,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,5,3,4,3,7/2,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,11/2,4,4,4,7,4,5,4,13/2,4,6,6,11 -13,7,7,5,7,9/2,5,4,7,4,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,5,3,3,3,5,7/2,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,5/2,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,5/2,4,3,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,5/2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,4,3,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,3,4,5/2,2,5/2,4,3,4,4,7,4,4,3,3,2,3,3,4,5/2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,9/2,6,5,8,9/2,5,4,6,4,6,6,11,6,7,5,8,5,7,7,12,7,8,13/2,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,7/2,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,3/2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1/2,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,1/2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,3/2,2,2,2,1,1,1,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,5,9/2,8 -18,10,19/2,7,10,6,13/2,6,9,5,11/2,4,6,4,13/2,6,12,6,13/2,4,6,4,4,4,7,4,4,4,6,4,6,6,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,3,5,4,9/2,4,10,6,6,4,5,3,7/2,3,6,4,4,3,5,4,5,4,8,4,9/2,4,5,3,7/2,3,6,4,4,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,4,4,7,4,9/2,4,5,3,4,4,7,4,7/2,3,4,3,4,4,6,4,9/2,4,5,4,5,5,6,4,7/2,3,4,3,7/2,3,4,3,3,2,2,2,5/2,3,5,3,7/2,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3/2,1,0,0,1/2,0,1,1,0,0,0,0,0,0,4,3,3,3,3,2,5/2,2,2,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,5/2,2,4,3,3,3,4,3,9/2,4,2,2,2,1,1,1,3/2,1,1,1,1,1,1,1,1,1,0,1,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,5/2,2,2,2,2,2,4,3,3,3,4,2,5/2,2,3,2,3/2,1,2,1,1,1,2,1,1,1,3,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,2,2,3/2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,7/2,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,13/2,6,8,5,5,4,5,3,4,4,6,4,7/2,3,4,3,4,4,7,4,4,3,4,3,7/2,4,6,4,7/2,4,6,4,5,5,9,5,5,4,4,3,4,3,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,6,6,13,7,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,9/2,3,4,3,4,4,6,4,9/2,4,7,5,7,7,15,8,17/2,6,10,6,15/2,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,19/2,9,16,9,11,9,15,10,14,14,25,13,27/2,9,13,8,10,8,14,8,8,6,10,6,17/2,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,13/2,4,6,4,9/2,4,7,4,9/2,4,6,4,11/2,5,9,5,9/2,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,13/2,4,6,4,5,4,7,4,9/2,4,5,3,4,4,7,4,5,4,6,4,9/2,4,7,4,5,4,6,4,11/2,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,6,4,4,3,3,2,3,3,5,3,7/2,3,4,3,9/2,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,2,2,3/2,2,2,1,1,1,0,0,1/2,1,1,1,1/2,1,3,2,1,1,1,1,1/2,1,1,1,1/2,1,0,0,-1/2,0,-2,0,0,0,-1,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,0,-1,0,-1,-1,-1,0,-1/2,0,0,0,-1/2,0,-2,-1,-1,-1,-2,-1,-3,-3,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1/2,1,1,1,2,2,0,0,1/2,0,0,0,1/2,0,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,3/2,2,3,2,2,1,1,1,1,1,1,1,1/2,1,1,1,1,1,2,2,3/2,1,1,1,1,1,-1,0,0,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,1/2,0,0,1,1,1,0,0,0,0,-1,0,1/2,1,1,1,1,1,2,2,3/2,2,3,2,5/2,2,0,0,1/2,1,1,1,1/2,1,1,1,1/2,0,0,0,1/2,1,1,1,3/2,1,2,2,3/2,1,1,1,2,2,3,2,5/2,3,7,4,7/2,3,4,2,2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,6,4,7/2,3,4,3,7/2,3,5,3,3,2,3,2,7/2,4,6,4,4,3,4,3,4,4,6,4,9/2,4,7,5,7,6,11 -18,10,10,7,10,6,6,11/2,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,7/2,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,7/2,5,3,4,3,6,4,4,3,5,7/2,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,5,7,4,4,4,7,4,4,7/2,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,3,4,3,4,4,3,2,2,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,1/2,0,0,0,0,0,0,5,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,3/2,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,3/2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,2,2,2,2,2,3/2,1,1,1,1,2,1,2,2,2,1,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,13/2,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,15,8,8,6,9,6,7,6,11,6,7,6,8,6,8,8,15,8,9,7,11,7,10,9,16,9,11,9,14,10,14,14,24,13,13,9,13,8,9,8,13,15/2,8,6,9,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,9/2,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,7/2,5,7/2,5,9/2,8,9/2,5,4,6,4,4,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1/2,0,1/2,0,1,3,2,1,1,1,1,1,1,1,1,0,1/2,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-3/2,-3,-3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,3,6,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,5/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11 -34,18,18,12,17,10,13,11,20,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,8,9,7,11,7,10,10,11,6,7,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,5,9,6,7,7,13,7,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,5,3,4,3,3,3,4,3,3,2,3,2,2,2,5/2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,7,25/2,7,8,6,8,5,7,7,12,7,8,6,9,7,10,10,11,6,6,4,6,4,6,5,9,5,6,5,8,5,6,6,19/2,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,5,7,7,4,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3/2,1,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,8,4,4,3,5,3,3,2,3,2,3,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,15,8,9,6,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,15,8,9,6,9,6,8,7,13,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,7,8,6,10,7,11,11,23,12,12,8,11,6,7,6,11,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,11,7,8,7,12,8,12,13,29,15,16,12,18,11,13,11,20,11,12,10,17,11,16,15,57/2,15,16,12,18,12,16,15,29,16,18,15,26,18,27,27,47,24,24,16,23,13,16,13,23,13,14,11,18,11,15,14,53/2,14,14,10,14,9,11,10,18,10,11,9,15,10,13,13,22,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,9,7,10,6,8,8,15,8,9,7,12,9,13,13,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,7,10,10,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,6,10,7,9,9,19,10,11,8,11,7,8,7,12,7,7,5,8,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,-1,-7/2,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,3,2,2,2,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,2,2,2,2,2,1,1,1,1/2,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,4,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5/2,-1,-1,0,-1,0,1,1,2,2,2,2,2,2,4,4,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,21/2,6,6,4,6,4,6,6,11,7,8,7,11,8,11,11,21 -18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,7/2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1/2,0,1,1,1,1,1,0,1,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,15,8,9,7,10,6,7,6,11,6,7,6,9,6,9,17/2,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,15/2,9,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,9/2,5,9/2,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,7/2,5,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,1/2,2,2,2,2,1,1,1,1/2,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,3/2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,5/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 -19,10,10,7,10,6,15/2,6,11,6,6,5,8,5,13/2,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,11/2,5,6,4,7/2,3,4,2,5/2,2,4,3,3,3,3,2,7/2,4,6,4,7/2,3,5,3,3,3,5,3,7/2,3,4,3,9/2,4,10,6,11/2,4,6,4,7/2,3,4,3,7/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,12,6,6,4,6,4,9/2,4,7,4,7/2,3,4,3,5,5,7,4,9/2,3,5,3,4,4,6,4,9/2,4,6,4,6,6,7,4,4,3,4,3,3,3,4,3,3,3,4,3,7/2,4,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,1,1,1,1/2,0,6,3,3,2,2,2,3/2,2,3,2,2,2,3,2,5/2,2,2,1,1,1,2,2,5/2,2,3,2,3,3,3,2,7/2,4,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1/2,1,5,3,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,5/2,2,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,7/2,3,3,2,3,3,6,4,4,3,5,4,9/2,4,7,4,4,4,7,5,7,7,9,5,5,4,6,4,4,3,6,3,3,3,4,3,7/2,4,7,4,7/2,3,5,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,4,9/2,4,7,4,9/2,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,9/2,4,6,4,6,6,14,8,15/2,5,7,4,5,5,7,4,5,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,5,4,8,6,8,8,15,8,9,7,10,6,7,6,11,6,7,6,10,7,19/2,9,16,9,9,7,10,7,9,9,16,9,11,9,15,10,29/2,15,26,14,14,10,14,8,19/2,8,13,8,17/2,7,11,7,9,9,16,8,8,6,8,5,6,6,11,6,13/2,6,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,9/2,4,8,5,11/2,4,6,4,11/2,5,8,5,5,4,7,5,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,11/2,5,8,5,5,4,5,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,4,9/2,3,4,3,3,3,4,3,7/2,3,4,3,3,3,7,4,4,3,4,3,7/2,4,5,3,7/2,4,6,4,6,6,10,6,11/2,4,7,4,9/2,4,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3/2,1,1,1,1,1,3,2,3/2,1,1,1,3/2,2,2,2,3/2,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,1/2,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-3/2,-1,-3,-2,-3,-3,3,2,2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1/2,0,-1,0,1/2,1,2,2,3/2,1,2,2,3/2,2,1,1,1/2,0,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,1/2,0,3,2,2,2,2,2,3/2,1,1,1,1/2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,1,0,1,3/2,2,2,2,2,1,2,2,3/2,2,2,2,5/2,2,-1,0,1/2,1,0,0,0,0,0,0,1/2,0,1,1,1/2,0,-2,0,-1/2,0,0,1,1,1,2,2,3/2,1,1,2,5/2,2,1,1,1,1,0,0,1/2,0,0,0,0,1,1,1,3/2,2,2,1,1,1,1,1,3/2,2,3,2,3,2,3,2,5/2,3,6,3,3,3,4,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,2,3,2,5/2,2,7,4,9/2,4,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,7/2,3,4,3,4,4,6,4,9/2,4,6,4,13/2,6,12 -13,7,7,5,7,9/2,6,5,8,9/2,5,4,6,4,5,5,8,4,4,3,5,3,4,7/2,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,3,2,3,3,4,7/2,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,7/2,5,3,3,5/2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,7/2,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,4,5/2,3,3,4,3,3,3,4,3,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,3,3,5/2,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,5/2,4,5/2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,7/2,5,3,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,7/2,4,7/2,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,7/2,4,3,3,2,3,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,7/2,5,5,8,9/2,4,3,5,3,4,3,5,3,3,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,3/2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,3/2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,5/2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,5,5,9 -20,10,10,7,21/2,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,15/2,5,6,5,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,4,4,11/2,4,4,3,6,4,4,3,9/2,4,5,5,12,6,6,4,11/2,3,3,3,4,3,4,4,11/2,4,5,5,8,4,4,3,5,3,4,4,4,3,3,3,9/2,3,4,4,6,3,3,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,5/2,2,2,2,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,9/2,3,4,4,6,4,5,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,3,9/2,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,9/2,4,5,5,4,2,2,2,5/2,2,2,2,3,2,3,2,3,2,2,1,4,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,7,4,4,3,7/2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,3,2,3,3,4,3,4,4,3,2,2,2,5/2,2,2,1,2,1,1,1,3/2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,5/2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,1,1,2,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,3,4,4,5,3,4,3,5,4,5,5,6,4,4,4,13/2,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,11/2,4,5,4,8,5,5,4,9/2,3,4,4,8,5,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,5,4,15/2,5,7,7,10,6,6,4,13/2,4,6,5,8,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,5,10,6,6,4,13/2,4,5,5,9,5,6,5,17/2,6,9,9,17,9,10,7,21/2,6,8,7,12,7,8,7,23/2,8,10,10,18,10,10,8,13,8,10,10,18,10,12,10,33/2,12,17,17,30,16,16,11,16,9,11,9,16,9,9,7,12,8,11,10,18,9,9,6,19/2,6,8,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,15/2,5,6,6,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,13/2,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,13/2,4,6,6,10,5,5,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,8,5,5,4,6,4,5,5,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,11/2,4,4,3,6,4,4,3,3,2,3,2,4,3,3,2,5/2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,2,5/2,2,3,3,1,1,1,1,3/2,2,2,2,3,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,1,0,1,1,1,1/2,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3/2,1,0,0,0,1,1,1,3/2,1,0,0,-1,0,0,0,-1/2,0,-2,-2,-4,-2,-2,-2,-9/2,-2,-4,-4,3,2,2,1,1/2,0,0,0,2,2,2,1,1/2,0,0,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,3/2,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,1,1/2,0,0,1,0,0,0,0,1/2,0,0,0,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-2,-1,-1,0,-3/2,0,0,0,-1,0,0,0,1/2,1,2,2,1,1,2,2,3/2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,3,2,2,2,5/2,2,3,3,7,4,4,3,9/2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,4,11/2,4,4,4,5,3,4,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,6,4,13/2,5,7,7,13 -12,6,6,5,7,4,5,9/2,7,4,4,4,6,4,4,9/2,8,4,4,3,5,3,4,7/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,3,2,3,3,4,3,3,2,4,3,3,2,3,5/2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,5,5,7/2,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,3,2,3,5/2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,7/2,5,5,11,6,6,4,6,4,4,4,6,7/2,4,3,4,3,4,7/2,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,5,8,5,5,9/2,8,5,6,6,11,6,6,5,8,5,6,6,11,13/2,8,6,10,15/2,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,7/2,4,3,4,3,4,4,6,7/2,4,3,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,5/2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1/2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1/2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,9 -16,8,8,6,10,6,7,6,10,6,11/2,4,7,4,11/2,6,10,6,11/2,4,6,4,9/2,4,6,4,4,3,5,4,9/2,4,7,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,4,3,7/2,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,9/2,3,4,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,7/2,3,4,3,7/2,3,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,11,6,6,4,6,4,9/2,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,7/2,3,5,3,7/2,3,4,3,9/2,4,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,7/2,2,4,2,5/2,2,5,3,3,3,3,2,7/2,4,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,1,6,3,3,2,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,3,4,3,2,2,2,2,2,3/2,1,2,1,1,1,0,1,3/2,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,5/2,2,5,3,3,2,3,2,3/2,2,2,2,3/2,2,2,2,2,2,1,1,3/2,2,1,2,5/2,2,3,2,2,2,3,2,3,3,2,2,3/2,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,3/2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,2,5/2,2,4,2,5/2,2,2,2,7/2,4,4,3,3,3,4,3,4,4,5,3,7/2,4,6,4,6,6,12,7,7,5,7,4,9/2,4,6,4,4,4,5,4,9/2,4,7,4,9/2,3,4,3,7/2,3,6,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,11/2,5,9,5,11/2,4,6,4,4,4,7,4,5,4,6,4,13/2,7,15,8,15/2,5,7,4,11/2,5,8,4,9/2,4,5,4,9/2,4,7,4,5,4,6,4,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,7,6,10,6,17/2,8,15,8,17/2,6,11,7,17/2,8,14,8,10,8,14,10,14,14,24,12,12,9,13,8,9,7,14,8,8,6,9,6,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,14,8,15/2,5,7,4,5,5,8,4,9/2,4,5,3,4,4,8,4,9/2,4,5,4,5,5,7,4,5,4,8,6,8,8,12,6,13/2,5,7,4,5,4,7,4,9/2,4,6,4,5,5,8,5,5,4,6,4,9/2,4,6,4,4,3,6,4,5,5,9,5,5,3,5,3,4,3,5,3,7/2,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,9/2,4,7,5,7,6,10,6,6,4,6,4,9/2,4,6,4,4,3,4,3,7/2,3,5,3,7/2,2,2,2,5/2,2,4,2,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,3/2,2,2,1,1,1,3,2,2,1,1,1,3/2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1/2,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3/2,1,0,1,1,1,1,1,1/2,1,1,1,1/2,0,4,2,5/2,2,2,2,3/2,2,2,2,2,1,2,2,3/2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,1,3/2,1,1,1,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1,2,-1,0,0,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,0,-2,0,0,0,-1,0,0,1,0,1,3/2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,1,1,1,1,3/2,2,3,2,2,2,2,2,5/2,2,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,5/2,2,7,4,4,3,4,3,3,3,4,3,7/2,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12 -15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,4,2,2,2,4,3,3,5/2,3,5/2,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,7/2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,9,5,5,4,5,7/2,4,4,6,4,5,4,6,4,6,13/2,14,8,8,5,7,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,6,4,5,9/2,7,5,7,7,12,7,7,11/2,8,5,6,6,10,6,7,6,9,6,8,8,14,15/2,8,6,10,6,8,15/2,13,8,9,8,13,9,13,13,22,11,11,8,12,7,9,7,12,7,8,6,9,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,9/2,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,8,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,7,5,7,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1/2,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,1,1,2,3/2,2,2,2,1,1,1,1,1,1,1/2,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,3/2,-1,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 -27,14,14,10,14,8,10,9,31/2,8,8,6,10,7,9,8,16,8,8,6,9,6,7,6,19/2,6,6,5,8,5,7,7,10,6,6,4,6,4,5,4,15/2,5,6,5,8,5,7,6,8,4,4,3,4,3,4,4,11/2,4,4,4,6,5,7,7,14,7,7,5,6,4,4,4,11/2,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,13/2,4,5,4,6,4,4,4,8,5,5,4,5,3,3,2,3,2,2,1,1,1,2,2,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,15/2,4,5,5,8,6,8,7,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,9,5,4,3,4,3,3,3,9/2,2,2,2,3,2,3,3,3,2,2,2,4,2,2,2,7/2,2,3,3,6,4,6,6,6,3,3,2,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,2,2,5/2,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5/2,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3/2,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,11/2,4,4,3,4,3,5,5,6,4,5,4,6,4,6,5,17/2,5,6,5,9,6,9,9,22,12,12,8,12,7,8,6,21/2,6,7,5,8,5,7,7,13,7,6,4,6,4,5,5,8,5,6,5,7,5,8,8,16,9,9,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,10,6,7,6,21/2,6,8,7,12,8,12,12,26,13,13,9,14,8,10,8,27/2,8,8,6,10,6,7,7,12,7,7,5,8,5,6,6,23/2,7,8,7,12,8,12,13,23,12,12,9,14,8,10,10,35/2,10,10,8,14,10,14,14,25,13,14,11,17,11,15,14,25,14,17,14,24,16,24,24,42,22,22,15,21,12,14,12,45/2,12,14,11,18,11,15,14,25,13,13,9,12,7,9,8,27/2,8,9,7,12,8,11,11,23,12,12,8,12,7,9,8,25/2,6,6,5,7,5,6,6,14,8,9,7,10,6,8,7,13,8,9,7,12,9,13,13,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,9,7,10,6,7,6,21/2,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,17/2,5,6,4,6,4,6,6,15,8,9,7,10,6,8,7,25/2,8,9,7,12,8,11,11,16,9,9,7,10,6,7,6,21/2,6,6,5,7,4,5,5,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-13/2,-3,-4,-3,-6,-4,-6,-6,6,3,3,2,3,2,2,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-3/2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,5,3,3,2,2,2,2,2,5/2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-1/2,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,3/2,1,1,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,0,0,0,0,0,0,1/2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,9/2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,7/2,2,2,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,8,6,9,6,7,6,23/2,7,8,6,10,7,11,11,20 -15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,5,7/2,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,5/2,3,2,3,3,4,3,3,3,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,10,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,9/2,5,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,2,2,3/2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,13/2,8,8,14,8,10,8,14,19/2,14,14,24,13,13,9,12,7,8,7,13,7,8,13/2,10,7,9,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,13/2,13,7,7,5,7,4,5,9/2,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,9/2,8,5,5,4,7,5,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,7/2,6,7/2,4,3,4,3,4,4,8,5,5,4,6,4,5,9/2,8,5,6,9/2,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3/2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,4,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,3/2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,7/2,4,4,7,4,5,4,6,4,6,6,11 -18,10,10,7,10,6,7,6,10,6,6,5,7,5,13/2,6,11,6,11/2,4,6,4,4,4,6,4,9/2,4,6,4,11/2,5,8,4,9/2,4,5,3,7/2,3,4,3,3,3,5,4,9/2,4,6,4,7/2,3,3,2,5/2,2,4,3,7/2,3,5,4,9/2,4,9,5,9/2,3,4,3,3,3,3,2,3,3,4,3,7/2,4,5,3,3,3,4,3,3,3,4,3,3,3,3,2,5/2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3/2,2,4,2,5/2,2,3,2,2,2,2,1,1,1,2,2,2,2,11,6,6,4,6,4,4,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,4,3,7/2,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,2,2,2,5/2,2,6,4,7/2,3,4,3,7/2,3,5,3,4,3,5,4,9/2,4,5,3,7/2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,3,5,3,4,4,4,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,2,2,1,1,1,1,1,1,3/2,2,2,2,3/2,2,3,2,5/2,2,5,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,3/2,2,3,2,5/2,2,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,2,2,5/2,2,4,2,5/2,2,2,2,5/2,3,3,2,3,3,4,3,7/2,4,6,4,9/2,4,6,5,7,7,14,8,15/2,6,8,5,11/2,5,8,5,11/2,4,6,4,5,5,8,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,11,6,6,4,7,4,11/2,5,8,5,11/2,5,8,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,11/2,5,9,5,5,4,5,4,9/2,4,8,5,5,5,8,6,17/2,8,16,8,8,6,10,6,15/2,6,12,7,15/2,6,10,7,9,9,16,9,9,7,12,8,19/2,9,16,10,23/2,10,16,11,16,16,29,15,15,10,15,9,21/2,9,15,8,19/2,8,12,8,10,9,17,9,17/2,6,9,6,13/2,6,10,6,6,5,8,6,15/2,8,15,8,9,6,8,5,11/2,5,8,4,9/2,4,6,4,11/2,5,9,5,11/2,4,7,4,11/2,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,5,4,6,4,11/2,5,10,6,6,5,6,4,5,5,7,4,5,4,6,4,11/2,6,11,6,6,4,6,4,5,4,7,4,9/2,4,5,4,9/2,4,9,5,6,5,6,4,11/2,5,9,6,13/2,5,8,6,8,8,10,6,11/2,4,6,4,9/2,4,7,4,9/2,4,4,3,3,3,5,3,3,2,3,2,3,2,3,2,5/2,2,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,3/2,2,1,1,1,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,4,2,5/2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,0,0,1,1,1,1,3,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-5/2,-2,-3,-2,-3,-3,5,3,5/2,2,3,2,3/2,1,2,1,1/2,0,1,1,2,2,2,2,3/2,1,1,1,1/2,0,0,0,0,0,0,0,-1/2,-1,-2,0,0,0,0,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,2,1,0,0,0,0,-2,0,0,0,-1,0,1/2,0,-1,0,1/2,1,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,1,0,1,1,1,-1,0,-1/2,0,0,0,1/2,1,0,1,1,1,0,0,0,0,-1,0,-1/2,0,0,0,0,1,0,1,1,1,2,2,3/2,2,2,1,1/2,1,1,1,1/2,0,2,2,3/2,1,2,2,3/2,2,2,1,1,1,2,2,3/2,2,2,2,3/2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,5/2,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,9/2,4,8,5,5,4,6,4,5,5,8,5,11/2,4,7,5,7,7,12 -15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,5/2,3,2,3,3,3,2,3,2,2,2,2,2,5,3,3,5/2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,5/2,4,3,4,4,3,2,2,3/2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,4,3,5,4,6,6,12,13/2,6,5,7,4,5,4,7,4,5,4,5,7/2,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,6,10,6,6,9/2,6,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,8,11/2,7,7,13,7,8,6,10,6,8,8,13,8,10,8,13,9,13,13,24,13,13,9,12,7,9,8,13,7,8,6,10,6,8,8,14,15/2,8,5,8,5,6,5,8,5,5,4,7,5,6,13/2,12,7,7,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,5,4,6,4,4,4,8,9/2,5,9/2,8,11/2,8,8,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,4,4,8,9/2,5,4,5,4,5,9/2,8,5,6,9/2,7,5,7,7,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,5/2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,5/2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,6,10 -25,13,13,9,27/2,8,10,8,14,8,9,7,10,7,9,8,15,8,9,6,19/2,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,15/2,4,5,5,6,4,4,3,5,4,6,6,9,5,4,3,9/2,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,4,3,4,3,5,4,5,4,8,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,7/2,2,2,2,4,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,3,3,17,9,8,6,17/2,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,13/2,4,6,6,10,5,5,4,5,3,4,4,5,3,3,2,7/2,3,4,4,8,5,5,4,5,3,4,4,8,5,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,6,4,4,3,7/2,2,3,3,4,2,2,2,7/2,2,3,3,5,3,3,3,5,3,4,4,4,3,4,4,7,5,8,8,5,3,3,2,2,2,2,1,2,2,2,2,5/2,2,2,2,1,1,2,2,3/2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,5,3,3,2,2,2,2,2,5/2,2,2,2,1,1,1,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,5/2,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,3/2,2,2,2,4,3,3,2,7/2,2,3,3,4,3,4,3,9/2,3,4,4,8,5,6,5,8,6,8,9,21,11,12,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,8,23/2,7,8,7,12,7,7,6,17/2,6,8,8,16,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,12,22,12,12,8,25/2,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,33/2,10,14,13,22,13,15,13,45/2,16,23,23,42,22,22,15,43/2,12,15,13,22,12,14,10,33/2,10,14,13,23,12,13,9,13,8,10,8,14,8,9,7,11,8,11,11,21,11,12,8,12,7,8,6,10,6,7,5,8,5,7,7,12,7,7,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,12,8,12,7,8,7,12,7,8,6,19/2,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,8,8,16,8,8,6,8,5,6,6,10,6,7,6,17/2,6,8,7,13,7,8,6,9,6,7,7,14,8,9,7,12,8,11,11,14,8,8,6,9,5,6,5,10,6,6,4,13/2,4,4,4,7,4,5,4,11/2,4,4,3,5,3,4,3,7/2,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,3,2,1,1,1,1,1,1,1/2,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,1,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-4,-2,-9/2,-2,-4,-4,6,3,3,2,3,2,2,1,2,2,2,2,3/2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1/2,0,-1,-1,-3,-1,-1,0,-1/2,0,1,1,0,1,1,1,1/2,1,1,1,3,2,2,2,3/2,1,1,1,1,1,2,2,3/2,1,1,1,4,2,2,2,3/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,3,2,2,1,1/2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,-4,-1,-1,0,-1/2,0,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1/2,0,0,0,1,1,2,2,5/2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,7/2,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,5,4,5,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,17/2,6,8,9,17 -17,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,7/2,4,3,4,3,3,3,4,3,4,4,6,3,3,2,4,5/2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,5/2,3,2,3,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,4,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,4,3,5,7/2,5,9/2,6,4,4,3,4,5/2,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,5,4,6,5,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,7/2,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,11/2,6,11/2,9,5,6,4,7,9/2,6,6,10,11/2,6,4,6,4,5,5,8,9/2,5,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,11/2,9,6,8,8,15,8,9,7,11,7,9,9,15,9,10,9,15,11,16,31/2,28,15,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,17/2,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,15/2,8,6,8,5,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,9/2,6,5,9,5,6,11/2,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,9/2,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,4,7,4,5,5,9,11/2,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,5/2,4,5/2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,5/2,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1/2,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,2,2,2,3/2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1/2,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-2,0,0,0,0,1/2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,5/2,4,3,4,4,7,4,4,7/2,6,4,5,4,7,4,4,4,6,4,6,6,12 -24,12,12,9,14,8,19/2,8,14,8,17/2,6,10,7,9,8,14,8,15/2,6,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,7,5,8,5,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,11/2,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,7/2,3,5,3,3,2,3,2,2,2,3,2,5/2,2,2,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,17,9,9,6,8,5,6,5,10,6,11/2,4,7,4,11/2,5,9,5,11/2,4,6,4,5,4,8,4,9/2,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,4,4,7,4,5,4,6,4,6,6,9,5,11/2,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,5/2,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,4,7,5,15/2,7,4,2,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,2,5/2,2,4,3,4,4,7,4,9/2,4,5,3,3,2,3,2,2,2,2,2,3/2,2,1,1,3/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,3,2,5/2,2,2,2,2,2,3,2,2,2,1,1,3/2,2,3,2,2,1,1,1,3/2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,9/2,4,7,5,6,5,7,6,17/2,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,13/2,5,7,4,11/2,5,10,6,7,6,9,6,19/2,10,19,10,10,7,12,7,8,7,11,6,7,5,8,6,8,8,15,8,17/2,6,9,6,7,7,13,7,8,7,12,8,25/2,12,25,13,13,9,14,8,9,8,13,7,8,6,10,6,17/2,8,15,8,8,6,9,6,15/2,7,11,6,15/2,7,12,8,23/2,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,12,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,45/2,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,27/2,13,23,12,25/2,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,21/2,8,11,6,7,6,10,6,13/2,5,8,5,7,7,12,7,15/2,6,10,6,15/2,7,12,7,17/2,8,12,8,25/2,12,24,12,12,9,13,8,17/2,8,13,7,8,6,9,6,8,8,13,7,15/2,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,13/2,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,15/2,7,13,8,9,7,11,8,21/2,11,14,8,17/2,6,8,5,5,5,9,5,5,4,6,4,4,4,8,4,9/2,4,5,3,7/2,3,5,3,7/2,3,4,3,3,3,4,2,2,2,3,2,3/2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,7/2,4,7,4,7/2,2,4,2,3/2,2,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,3/2,2,1,1,3/2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-5/2,-2,-4,-2,-4,-4,5,3,5/2,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1/2,0,-2,0,-1/2,0,0,0,-1/2,0,-3,-1,0,0,-1,0,1/2,1,0,0,0,1,1,1,2,2,3,2,3/2,1,2,2,3/2,2,1,1,2,2,2,2,3/2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,0,0,1/2,0,-3,-1,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,-1/2,0,-2,-1,-1,0,0,0,1/2,1,1,1,3/2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,7/2,3,6,3,3,3,3,2,3,3,5,3,7/2,2,3,2,3,3,4,3,3,3,4,3,9/2,5,10,6,11/2,4,5,4,9/2,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,13/2,6,10,6,13/2,5,8,6,9,9,17 -24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,8,14,8,8,6,8,5,6,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,5,7/2,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,3,16,9,9,6,9,5,6,5,9,5,6,4,7,9/2,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,7/2,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,11/2,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,4,7,5,7,7,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,9/2,5,5,7,11/2,8,9,21,11,12,8,12,7,8,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,11/2,9,6,8,8,15,8,8,6,9,6,7,7,13,15/2,9,15/2,13,9,13,25/2,24,13,13,9,14,8,9,8,14,15/2,8,6,10,13/2,9,8,15,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,23/2,12,9,15,10,13,12,22,13,15,13,22,15,22,22,41,21,21,14,22,13,15,13,22,12,13,10,15,10,13,25/2,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,20,10,10,15/2,11,6,7,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,9,8,13,9,13,25/2,24,12,12,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,7,13,15/2,8,7,11,15/2,10,11,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,9/2,8,4,4,7/2,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,5/2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,5,3,2,2,3,2,3,2,3,2,2,2,2,3/2,1,1,1,1,1,1,0,1/2,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,1/2,0,0,0,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,3,2,3,3,5,3,4,5/2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17 -46,24,24,16,24,14,17,14,24,13,14,11,19,12,17,16,30,16,17,12,18,11,14,13,23,13,14,11,17,11,16,16,30,16,16,11,16,9,11,9,15,8,9,7,10,7,9,8,15,8,8,6,9,6,7,7,13,7,8,7,11,8,11,11,21,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,31,16,16,11,17,10,12,10,17,10,11,9,14,9,12,12,23,12,12,9,14,9,11,10,17,10,11,9,15,10,14,13,25,13,13,9,14,8,9,7,12,7,8,6,10,6,8,7,13,7,7,5,7,4,5,5,9,5,6,5,9,6,9,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,9,13,8,10,9,15,8,9,7,10,6,8,8,14,8,8,7,11,7,10,9,16,9,11,9,15,10,14,14,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,8,8,14,8,9,7,10,6,8,8,15,9,10,9,16,11,16,16,42,22,22,15,23,13,16,13,22,12,13,9,14,9,12,11,21,11,12,9,13,8,11,10,19,11,13,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,11,9,14,9,13,13,24,13,14,11,17,11,15,14,26,15,18,15,26,17,25,24,95/2,24,24,17,26,15,17,15,26,14,15,11,18,12,16,16,30,16,17,12,19,12,16,15,28,16,19,16,27,18,26,26,52,27,27,19,28,16,20,18,33,18,20,16,26,17,23,23,44,23,25,19,30,19,25,24,45,25,30,25,44,30,44,44,82,42,42,28,42,24,28,23,41,22,23,18,29,18,25,24,45,23,24,16,24,14,17,15,28,15,17,14,23,15,21,21,40,21,21,14,21,12,14,12,21,11,12,10,16,10,14,14,26,14,14,11,17,11,14,12,22,13,16,14,24,16,24,24,95/2,24,24,17,26,15,17,14,25,14,15,11,18,11,15,14,26,13,13,9,14,9,11,10,18,11,13,11,18,12,18,18,35,18,19,13,19,11,13,12,21,11,12,9,14,9,13,12,22,12,13,10,16,10,13,12,23,13,15,13,22,15,21,21,29,15,16,11,16,9,11,9,16,9,10,8,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,12,23,12,12,8,12,7,9,8,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,3,2,1,1,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-10,-10,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,2,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,9,9,16,11,17,17,32 -23,12,13,9,12,7,9,7,12,7,8,6,10,7,9,9,16,9,9,7,9,6,8,7,12,7,7,6,9,6,9,8,15,8,8,6,8,5,6,5,8,9/2,5,4,5,4,5,9/2,8,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,9/2,6,4,4,7/2,5,3,3,3,3,5/2,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,16,9,9,6,9,11/2,6,11/2,9,11/2,6,5,7,5,6,6,12,6,6,5,7,5,6,11/2,9,11/2,6,5,8,11/2,7,7,13,7,7,5,8,5,5,4,7,4,4,7/2,6,4,4,4,7,4,4,3,4,5/2,3,3,5,3,4,3,5,7/2,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,8,9/2,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,7/2,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,9,22,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,11/2,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,9,11,10,17,9,10,8,14,9,12,12,22,12,13,10,16,10,13,25/2,23,13,16,13,23,16,23,23,42,22,22,15,22,12,14,12,21,23/2,12,19/2,15,10,13,25/2,23,12,12,9,13,8,9,8,15,8,9,7,12,8,11,11,21,11,11,8,11,13/2,8,7,11,6,6,11/2,8,6,8,8,14,8,8,6,9,6,8,13/2,11,7,8,7,13,9,12,12,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,13/2,11,6,6,5,8,5,7,7,12,7,7,11/2,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,6,5,6,4,6,6,12,6,6,4,7,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,7,4,5,9/2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,5/2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,3/2,1,1,0,0,-1,0,0,0,-1,-1/2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3/2,-4,-2,-2,-3/2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1/2,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1/2,-1,0,-1,0,-2,0,0,0,0,0,0,1/2,0,0,0,1,1,1,1,2,3,2,2,2,3,2,3,7/2,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,5,8,6,9,9,17 -23,12,13,9,12,7,17/2,7,12,7,15/2,6,11,7,9,9,16,9,9,7,9,6,8,7,11,6,7,5,9,6,9,8,15,8,17/2,6,8,5,11/2,5,7,4,5,4,5,4,9/2,4,8,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,11/2,6,11,6,13/2,5,7,4,9/2,4,5,3,3,3,3,2,7/2,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,5/2,2,3,2,3,2,3,2,5/2,2,4,2,2,2,3,2,3/2,1,1,1,3/2,2,2,2,2,2,17,9,9,6,9,6,13/2,6,9,6,13/2,5,7,5,13/2,6,12,6,13/2,5,7,5,6,6,9,6,13/2,5,9,6,7,7,13,7,15/2,5,8,5,5,4,7,4,9/2,4,6,4,9/2,4,6,4,7/2,3,3,2,3,3,5,3,4,3,4,3,5,5,11,6,11/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,4,4,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,4,3,3,3,4,2,5/2,2,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,3,4,3,4,4,8,4,9/2,4,4,3,3,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,3,4,3,9/2,4,8,5,11/2,4,6,4,5,5,8,5,5,5,8,6,17/2,9,22,12,12,8,13,8,17/2,7,12,7,7,5,7,5,6,6,12,6,6,5,8,5,13/2,6,10,6,13/2,6,9,6,17/2,8,15,8,8,6,9,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,8,6,9,6,15/2,7,13,8,19/2,8,14,9,13,13,24,13,13,9,13,8,19/2,8,14,8,17/2,6,10,6,17/2,8,15,8,9,7,10,6,17/2,8,14,8,19/2,8,14,10,14,14,27,14,14,10,14,9,11,10,16,9,21/2,8,14,9,25/2,12,22,12,25/2,10,16,10,27/2,13,23,13,16,13,23,16,23,23,42,22,22,15,22,12,29/2,12,22,12,25/2,10,16,10,27/2,13,24,12,25/2,9,13,8,9,8,15,8,9,7,12,8,23/2,11,21,11,21/2,8,10,6,15/2,7,11,6,13/2,6,8,6,15/2,8,15,8,8,6,10,6,15/2,6,11,7,8,7,13,9,25/2,12,24,12,25/2,9,13,8,19/2,8,13,7,8,6,10,6,17/2,8,13,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,19/2,7,10,6,8,7,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,6,13/2,6,9,5,6,5,6,4,6,6,12,6,6,4,7,4,11/2,5,7,4,5,4,7,5,7,7,12,6,13/2,4,7,4,11/2,5,7,4,9/2,4,5,3,7/2,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,3,5,3,5/2,2,3,2,5/2,2,4,2,5/2,2,1,1,1/2,0,-1,0,-1/2,0,-1,0,-3/2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-5/2,-2,-3,-2,-5/2,-2,-7,-3,-7/2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-9/2,-4,5,3,3,2,2,2,3/2,2,1,1,1,1,2,2,2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,1,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,3,2,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,-1,0,-1/2,0,0,0,-1/2,0,0,0,1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,0,0,1/2,0,1,1,0,0,0,0,1/2,0,-3,-1,-1/2,0,0,0,1/2,0,-1,0,1/2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,0,0,0,-1,-2,-1,-3/2,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,1/2,0,1,1,1,2,3,2,5/2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,1,2,1,1,1,2,2,2,1,1,1,3/2,2,2,2,2,2,2,2,3,3,5,3,7/2,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,4,7/2,3,5,3,4,4,7,5,6,5,8,6,19/2,9,17 -16,17/2,9,6,9,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,6,4,5,5,8,9/2,5,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,5/2,3,3,5,3,3,3,4,3,4,4,8,4,4,7/2,5,3,4,3,4,5/2,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,12,7,7,5,6,4,5,4,7,4,5,4,5,7/2,4,4,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,3,4,5/2,2,2,2,2,2,2,3,2,3,5/2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,15,8,9,6,9,11/2,6,5,8,5,5,4,5,4,5,5,8,4,4,7/2,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,9,6,7,6,10,13/2,9,9,17,9,9,6,9,6,7,6,10,6,6,5,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,13/2,9,8,15,8,9,7,11,7,10,9,16,9,11,9,16,11,16,16,29,15,15,10,15,9,10,9,15,8,8,13/2,11,7,10,9,16,9,9,6,9,11/2,6,6,10,6,6,5,8,6,8,8,14,15/2,7,5,7,9/2,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,6,4,7,9/2,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,8,4,4,4,6,4,6,5,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,7/2,5,7/2,5,5,9,5,5,7/2,5,3,4,4,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,5/2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1/2,0,0,0,0,0,0,0,0,-3,-1,-1,-1/2,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-3/2,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,3/2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,3,5/2,4,3,3,5/2,4,5/2,3,3,5,7/2,4,4,6,5,7,13/2,12 -23,12,13,9,13,8,9,8,12,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,9/2,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,13/2,4,6,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,2,1,1,1,3/2,1,1,1,2,2,2,2,5/2,2,2,2,4,2,2,2,5/2,2,1,1,1,1,2,2,3/2,2,2,2,18,10,10,7,19/2,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,7,14,7,7,5,7,4,5,4,8,5,5,4,11/2,4,5,5,5,3,3,2,3,2,3,3,4,3,3,3,9/2,4,5,6,11,6,6,4,5,3,4,4,6,4,4,3,9/2,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,5,4,9,5,6,5,17/2,6,7,7,5,3,3,2,7/2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,5/2,2,3,3,4,3,4,3,9/2,3,4,4,9,5,5,4,9/2,3,3,3,5,3,2,2,5/2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,2,2,3,3,3,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,3,4,4,4,3,4,3,9/2,4,5,5,9,5,6,5,15/2,5,6,6,10,6,7,6,19/2,7,10,10,23,12,13,9,27/2,8,10,8,12,7,7,5,8,5,7,7,12,7,7,5,15/2,5,6,6,9,5,6,5,17/2,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,12,7,7,6,9,6,8,7,13,8,9,8,14,9,13,13,26,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,21/2,7,9,8,14,8,10,8,29/2,10,15,15,27,14,14,10,29/2,9,12,10,16,9,10,8,14,9,12,12,22,12,13,10,16,10,14,13,23,13,16,14,47/2,16,24,24,43,22,22,15,45/2,13,15,13,22,12,13,10,31/2,10,13,13,24,12,12,9,13,8,10,9,14,8,10,8,25/2,8,11,11,21,11,11,8,21/2,6,8,7,12,7,7,6,17/2,6,8,8,16,9,9,7,11,7,8,7,12,7,9,8,25/2,9,13,13,24,13,13,9,14,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,7,6,10,6,7,6,21/2,8,11,11,19,10,10,7,19/2,6,8,7,11,6,7,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,11,8,12,12,16,9,9,6,19/2,6,7,6,9,5,6,5,15/2,5,7,7,13,7,7,5,7,4,5,5,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,3,3,2,7/2,2,3,2,3,2,2,2,5/2,2,2,2,5,3,2,2,3/2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-5,-2,-2,-1,-5/2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,4,2,2,2,5/2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,3/2,2,2,1,2,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1/2,0,0,0,0,1,1,1,0,0,0,0,1,1,1,0,-1/2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3/2,1,1,1,-3,-1,-1,0,1/2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1/2,0,0,0,-2,-1,-1,0,-1/2,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,3,2,1,1,1/2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,7/2,3,4,4,5,3,3,2,7/2,2,2,2,4,2,2,2,7/2,3,4,3,6,4,4,3,5,3,4,4,8,5,6,6,19/2,7,10,9,17 -13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,6,10,11/2,6,4,5,7/2,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,5/2,3,3,4,3,3,3,4,3,4,7/2,7,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,9/2,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,5/2,3,7/2,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,5/2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,7/2,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,15/2,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,7/2,4,3,5,4,5,5,9,5,5,4,5,7/2,4,4,6,4,4,4,6,4,6,5,7,4,4,7/2,5,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,11/2,8,5,6,5,8,5,6,5,8,5,7,7,12,6,6,9/2,6,4,5,5,7,4,4,7/2,6,4,5,5,9,5,6,9/2,7,4,5,5,8,5,6,5,8,11/2,8,8,13,7,8,11/2,8,5,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,13/2,12,6,6,4,6,4,5,9/2,7,4,4,7/2,5,4,5,9/2,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,9,5,6,4,6,4,5,4,6,7/2,4,3,5,3,4,9/2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1/2,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1/2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1/2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,3/2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,2,3/2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,11/2,10 -16,9,9,7,9,6,13/2,6,8,5,11/2,5,7,5,7,7,12,6,13/2,4,6,4,4,4,7,4,5,4,6,4,11/2,5,11,6,6,4,5,3,7/2,3,5,3,3,2,4,3,7/2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,9/2,4,9,5,11/2,4,5,3,7/2,3,5,3,3,2,3,2,3,3,4,2,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,2,1,1/2,0,0,1,1,1,2,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,12,6,13/2,4,7,4,5,4,7,4,9/2,4,5,4,9/2,4,10,6,11/2,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,11/2,4,6,4,7/2,3,6,4,4,3,4,3,4,4,4,2,5/2,2,2,2,5/2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,7/2,3,4,3,3,3,6,4,9/2,4,6,4,11/2,5,4,2,5/2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,3,3,7,4,7/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,3/2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,5/2,2,3,2,5/2,2,4,3,7/2,3,6,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,8,5,5,4,6,4,5,5,8,5,11/2,5,7,5,15/2,8,17,9,19/2,7,10,6,7,6,8,5,11/2,4,6,4,11/2,5,8,5,5,4,6,4,4,4,7,4,9/2,4,6,4,11/2,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,13/2,6,9,5,11/2,4,6,4,11/2,5,9,6,13/2,6,10,7,9,9,18,10,19/2,7,10,6,8,7,11,6,6,5,7,5,13/2,6,11,6,7,5,8,5,13/2,6,10,6,15/2,6,10,7,21/2,10,20,10,21/2,7,11,7,17/2,7,12,7,8,6,10,6,17/2,8,16,9,10,8,12,8,21/2,10,16,9,11,9,17,12,33/2,16,30,16,31/2,11,15,9,10,9,15,8,17/2,6,11,7,9,9,16,9,9,7,9,6,15/2,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,6,8,5,5,4,7,5,6,6,11,6,13/2,5,8,5,6,6,10,6,7,6,9,6,19/2,9,15,8,17/2,6,9,5,6,5,10,5,5,4,6,4,11/2,5,10,5,5,4,5,4,5,5,7,4,11/2,5,8,6,15/2,8,15,8,7,5,8,5,6,5,9,5,5,4,6,4,11/2,5,9,5,5,4,6,4,11/2,5,8,5,11/2,5,8,6,8,8,11,6,13/2,5,7,5,6,5,7,4,5,4,6,4,11/2,6,9,5,11/2,4,6,4,4,3,5,3,7/2,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,0,0,1/2,0,-1,0,-1/2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1/2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,1,1,2,2,1,1,3/2,2,2,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,1,1,1,1,1,1,1,3/2,1,2,1,1/2,0,0,0,0,0,-1,0,0,0,0,0,1/2,0,1,1,0,0,0,0,1/2,1,0,0,0,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,2,2,3/2,2,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1/2,1,0,0,1/2,0,0,1,1,1,1,1,0,0,-2,0,-1/2,0,0,0,0,0,0,0,-1/2,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,3/2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,5/2,2,2,2,3/2,1,0,1,1,1,0,0,1/2,1,1,1,3/2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,11/2,6,4,5,3,4,7/2,6,7/2,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,7/2,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,3,3,5/2,3,2,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,3,6,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,6,13/2,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,9/2,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,11/2,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,11/2,7,6,10,5,5,4,6,4,6,5,10,11/2,6,9/2,7,9/2,6,5,9,5,6,5,9,6,9,9,17,9,9,6,10,6,7,6,10,6,7,5,8,11/2,8,7,14,8,8,13/2,10,7,9,8,14,8,10,8,15,10,14,14,25,13,13,9,13,8,9,8,13,7,7,11/2,9,6,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,9/2,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,9/2,8,4,4,7/2,5,4,5,5,8,4,4,7/2,5,7/2,4,4,7,4,5,4,7,5,7,7,10,6,6,9/2,6,4,5,4,6,4,4,4,6,4,5,5,8,9/2,5,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,5/2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,-1/2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,11/2,10 -24,13,13,9,12,7,8,8,27/2,8,8,7,11,7,10,9,18,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,1,1,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,0,1,1,1,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,14,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,5,3,3,3,4,3,3,3,4,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,9,5,5,3,4,3,4,4,11/2,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,15/2,5,6,5,8,6,8,8,4,2,2,2,2,2,2,2,7/2,2,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,6,4,4,3,3,2,2,2,9/2,3,4,3,4,3,5,5,9,5,5,4,7,4,5,4,15/2,4,5,4,7,5,6,5,12,7,7,5,8,6,8,7,25/2,7,8,7,11,8,11,11,27,14,14,10,14,8,10,8,27/2,8,8,6,9,6,7,7,12,6,6,5,7,5,6,6,19/2,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,9,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,29,15,16,11,16,9,11,10,33/2,9,9,7,10,7,9,9,17,9,10,8,12,7,9,8,31/2,9,11,9,16,11,16,16,30,16,16,11,16,10,12,10,37/2,10,11,8,13,9,12,12,25,13,14,11,18,11,14,14,51/2,14,17,14,24,16,24,24,44,22,22,15,22,13,15,13,22,12,13,10,15,9,12,12,25,13,14,10,14,8,10,9,15,9,10,8,14,9,13,13,20,11,11,8,12,7,8,8,27/2,8,8,6,10,6,8,8,18,10,10,7,11,7,9,8,29/2,8,10,8,14,10,14,14,22,11,11,8,11,7,8,8,14,8,8,6,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,8,13,7,8,6,8,5,7,6,23/2,7,8,7,11,8,12,12,18,10,10,7,10,6,8,7,23/2,6,6,5,8,5,7,7,13,7,7,5,7,4,5,4,15/2,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,15/2,4,4,3,3,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,7,4,5,4,5,3,3,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-4,-3,-13/2,-3,-4,-3,-6,-3,-5,-4,7,4,3,2,2,2,2,2,5/2,2,2,1,1,1,2,2,1,1,1,1,0,1,1,1,3/2,2,2,2,2,2,3,3,0,0,0,1,1,1,1,1,3/2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,3/2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1/2,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5/2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,9/2,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,13/2,4,5,5,9,6,9,9,18 -13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,3,3,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,3/2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,7,4,5,4,6,9/2,6,6,15,8,8,6,8,5,6,5,8,4,4,7/2,5,7/2,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,14,15/2,8,6,10,6,8,8,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,12,7,7,11/2,8,5,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,5/2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,4,5/2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,-1,0,1,1,1,1,0,1,1,1,1,1,0,1/2,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,10 -13,7,15/2,5,7,4,5,4,8,5,5,4,6,4,11/2,6,9,5,6,4,6,4,9/2,4,5,3,7/2,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,7/2,3,6,4,7/2,3,4,3,4,3,5,3,7/2,3,4,3,7/2,4,9,5,4,3,5,3,3,3,4,2,5/2,2,4,3,7/2,3,3,2,5/2,2,2,2,3/2,1,2,2,3/2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,11,6,6,4,6,4,9/2,4,7,4,4,3,4,3,7/2,4,8,4,4,3,5,3,7/2,3,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,3,5,3,7/2,3,4,3,3,3,4,3,3,2,3,2,5/2,2,3,2,5/2,2,4,3,7/2,4,6,4,4,3,4,3,7/2,3,5,3,3,2,4,3,7/2,4,6,4,4,3,3,2,3,3,4,3,7/2,3,5,4,9/2,4,6,4,7/2,2,3,2,5/2,2,4,3,3,2,2,2,7/2,3,5,3,3,3,4,3,3,3,4,3,7/2,3,5,4,5,5,3,2,2,2,2,2,3/2,2,2,2,5/2,2,3,2,3,3,2,2,2,2,2,2,5/2,2,3,2,2,2,3,2,2,2,6,4,7/2,2,3,2,2,2,3,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,2,3/2,2,1,1,3/2,2,1,1,3/2,2,3,2,2,2,2,2,3/2,2,4,2,5/2,2,3,2,7/2,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,8,17/2,6,8,5,11/2,5,8,4,9/2,4,6,4,9/2,4,7,4,4,3,4,3,4,4,5,3,7/2,3,5,4,5,5,10,6,6,4,7,4,5,4,7,4,9/2,4,6,4,6,6,9,5,11/2,4,6,4,5,5,8,5,13/2,6,9,6,17/2,8,17,9,19/2,7,10,6,13/2,6,10,6,6,4,7,5,6,6,10,6,6,5,7,4,11/2,6,10,6,7,6,10,7,19/2,9,17,9,19/2,7,9,6,15/2,6,11,6,7,5,8,6,15/2,7,15,8,17/2,6,10,6,17/2,8,15,9,10,9,14,10,14,14,25,13,13,9,13,8,9,7,13,7,8,6,9,6,8,7,14,8,8,6,8,5,13/2,6,9,5,6,5,8,6,8,8,12,6,13/2,5,7,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,11/2,5,9,6,13/2,5,9,6,17/2,8,13,7,7,5,7,4,11/2,5,8,5,5,4,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,5,4,6,5,7,7,13,7,15/2,6,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,15/2,8,11,6,13/2,5,6,4,9/2,4,7,4,9/2,4,6,4,5,5,8,5,5,3,5,3,4,4,5,3,4,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,4,2,5/2,2,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,5,3,7/2,3,4,2,2,2,2,2,3/2,2,2,2,2,2,4,2,5/2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-2,0,-1/2,0,-1,0,0,0,-2,0,-1/2,0,-2,-1,-1,-1,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-3,-2,-3,-2,5,3,2,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,1/2,1,0,0,1/2,1,2,2,3/2,1,1,1,2,2,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,1,3/2,2,2,2,3/2,1,1,1,3/2,1,2,2,3/2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1/2,1,1,1,1/2,1,0,0,0,0,1,1,0,0,0,0,1/2,0,1,1,3/2,2,1,1,1,1,2,2,3/2,2,1,1,1,1,2,2,3/2,1,-1,0,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,0,0,0,1/2,0,1,1,1/2,0,0,1,1,1,0,0,0,0,0,0,1/2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,2,2,2,2,2,2,2,2,6,3,3,2,2,2,5/2,2,3,2,2,1,1,1,3/2,1,1,1,3/2,2,2,2,3/2,2,2,2,2,2,2,2,5/2,2,5,3,3,2,2,2,2,2,4,2,5/2,2,3,2,2,2,4,2,5/2,2,4,3,3,3,5,3,4,4,6,4,5,5,10 -10,11/2,6,4,5,3,4,3,6,4,4,3,4,3,4,9/2,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,3,5/2,4,5/2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,8,5,5,7/2,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,3,2,3,5/2,4,5/2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,3,2,3,2,4,3,3,3,4,3,4,7/2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,6,7/2,4,3,4,3,4,4,6,4,4,3,5,4,5,5,13,7,7,5,6,4,4,4,6,7/2,4,3,4,3,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,7/2,4,3,5,7/2,5,5,7,4,4,3,5,3,4,4,7,4,5,9/2,7,5,7,7,13,7,8,11/2,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,9/2,8,5,6,5,8,6,8,7,13,7,8,11/2,7,5,6,5,9,5,6,4,6,9/2,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,7/2,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,9/2,5,4,7,5,6,6,10,11/2,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10,11/2,6,4,6,7/2,4,7/2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1/2,-1,0,-1,0,-2,-1,-2,-1,4,2,2,1,2,2,2,1,2,2,2,2,2,3/2,2,1,1,1,0,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,1,0,0,0,0,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,1,1,1,1,0,1,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,3/2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,9/2,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,11/2,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,1,1,2,2,2,2,5/2,2,3,3,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,12,6,6,5,7,4,5,4,9,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,4,11/2,4,6,6,12,6,6,4,11/2,4,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,9/2,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,7/2,3,4,3,3,2,3,2,7/2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,4,3,3,2,2,1,1,1,4,3,3,2,7/2,3,4,3,3,2,2,2,4,3,4,3,5,3,3,2,7/2,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,5/2,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,8,4,4,3,9/2,4,5,5,9,5,5,4,13/2,4,5,5,8,5,6,5,15/2,6,8,8,21,11,10,7,21/2,6,7,6,8,5,6,4,13/2,4,6,6,8,4,4,3,9/2,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,7,6,9,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,22,12,12,8,25/2,7,8,7,12,7,7,6,9,6,7,7,12,7,7,6,9,6,8,7,14,8,9,8,13,9,12,12,21,11,11,8,12,7,9,7,14,8,8,6,10,7,9,9,18,10,10,8,13,8,11,10,18,11,13,11,18,12,18,18,30,16,16,11,15,9,10,9,17,9,10,7,11,7,10,9,16,9,9,7,11,7,9,8,13,7,8,7,11,7,10,10,15,8,8,6,17/2,5,6,5,10,6,6,5,7,5,6,6,14,8,8,6,17/2,5,6,6,11,6,7,6,21/2,7,10,10,15,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,10,6,6,4,13/2,4,6,6,10,6,6,4,13/2,4,5,5,8,5,6,5,8,6,9,9,16,8,8,6,17/2,5,6,6,8,5,6,5,15/2,6,8,7,11,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,7,9,5,6,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,2,2,2,5/2,2,2,2,8,4,4,3,9/2,2,2,2,2,2,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3/2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,5,3,3,2,3/2,2,2,1,2,2,2,2,5/2,2,2,2,0,1,1,1,1/2,1,1,1,2,2,2,1,1/2,1,2,2,1,1,0,0,1/2,1,1,1,0,0,0,1,3/2,2,2,1,-1,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,5/2,2,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,1/2,1,2,2,2,2,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,1,-1,0,0,0,1/2,0,0,0,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1/2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1/2,1,2,2,0,1,1,2,3,2,3,3,7,4,4,3,7/2,3,4,3,3,2,2,2,2,2,2,1,1,1,1,2,5/2,2,2,2,3,2,2,2,7/2,3,4,3,7,4,3,2,3,2,2,2,4,3,3,2,5/2,2,2,3,6,4,4,3,9/2,3,4,4,7,4,5,4,13/2,4,6,6,11 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,5/2,3,5/2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,3/2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,8,4,4,7/2,5,3,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,2,2,4,5/2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,3,2,3,2,3,2,4,5/2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,2,2,5/2,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,7/2,4,3,3,2,3,3,5,3,3,2,4,3,4,3,6,4,4,3,4,3,4,7/2,6,4,4,7/2,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,5,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,5,9/2,7,5,7,7,14,8,8,11/2,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,19,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,11/2,6,4,6,4,4,4,7,4,4,7/2,5,7/2,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,10,11/2,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,7/2,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,7/2,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3/2,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,3,2,4,5/2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7 -12,7,7,5,6,4,9/2,4,6,4,9/2,4,5,4,11/2,6,8,5,11/2,4,5,3,7/2,3,4,3,3,3,4,3,7/2,4,6,4,4,3,5,3,3,3,6,4,7/2,3,4,3,4,4,6,3,3,3,5,3,4,4,6,3,3,3,4,3,7/2,4,8,4,9/2,3,4,3,7/2,3,4,3,3,2,3,2,5/2,2,4,2,5/2,2,3,2,2,2,2,2,2,2,3,2,5/2,2,1,1,1,1,2,2,2,2,3,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,11,6,13/2,5,7,4,4,4,8,4,4,3,4,3,7/2,4,6,4,7/2,3,3,2,3,3,5,3,7/2,3,6,4,11/2,6,11,6,5,4,5,3,4,4,7,4,7/2,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,9/2,3,4,3,7/2,3,5,3,7/2,2,3,3,4,4,7,4,4,3,5,3,7/2,4,7,4,5,4,6,4,11/2,5,7,4,4,3,4,2,5/2,2,3,2,3,2,2,2,5/2,3,5,3,3,3,4,3,7/2,4,5,3,4,4,6,4,13/2,7,5,3,5/2,2,2,2,2,2,3,2,3,3,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,5/2,2,7,4,4,3,4,2,5/2,2,3,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,3,3,4,4,8,4,9/2,3,4,3,4,4,7,4,4,3,5,4,9/2,4,8,5,5,4,6,4,9/2,4,8,5,6,5,7,5,15/2,8,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,9/2,4,5,3,4,4,6,4,9/2,4,6,4,6,6,13,7,15/2,6,8,5,6,5,8,5,11/2,5,7,5,13/2,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,13/2,6,9,6,15/2,7,11,6,13/2,5,8,5,13/2,6,12,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,17/2,7,11,7,9,8,14,8,21/2,9,15,10,31/2,16,26,14,27/2,9,13,8,10,8,14,8,9,7,10,6,17/2,8,14,8,8,6,9,6,7,6,11,6,15/2,6,9,6,17/2,8,13,7,15/2,6,8,5,11/2,5,9,5,6,5,7,5,6,6,11,6,13/2,5,6,4,6,6,10,6,7,6,9,6,17/2,8,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,6,4,7,4,11/2,5,8,5,5,5,7,5,7,7,14,8,15/2,5,7,5,6,5,8,4,9/2,4,6,4,11/2,5,9,5,6,4,6,4,9/2,4,8,5,6,5,8,6,17/2,9,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,11/2,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,5/2,2,3,2,5/2,2,5,3,2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,7,4,7/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,1,1,1,2,2,3/2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1/2,0,0,0,0,0,-3,-1,-3/2,-1,-3,-2,-5/2,-2,5,3,2,2,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,0,1/2,1,1,1,1/2,0,0,0,1/2,1,0,0,1/2,0,0,1,3/2,2,1,1,1/2,1,2,2,3/2,1,0,1,1,1,1,1,1,1,1,1,3/2,1,2,1,1,1,1,1,3/2,2,2,1,1,1,1,1,3/2,1,1,1,1,2,3,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,2,2,3/2,2,3,2,3/2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,2,1,1/2,0,0,0,-1/2,0,-2,0,-1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,1/2,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,5/2,2,3,2,5/2,2,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,4,3,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,11/2,6,10 -12,6,6,9/2,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,10,6,6,9/2,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,10,11/2,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,13/2,6,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,10,6,8,15/2,13,8,10,8,14,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,7,13,7,7,11/2,8,5,7,6,11,6,7,6,9,6,8,8,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,9/2,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,7/2,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,8,6,9,9,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,3,2,3,5/2,3,2,3,5/2,4,5/2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,4,5/2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,3/2,2,3/2,2,3/2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9 -22,12,12,8,11,7,9,8,14,8,8,6,9,6,8,8,15,8,9,6,9,6,7,6,9,5,6,5,7,5,6,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,19/2,6,6,4,6,4,5,5,8,5,5,5,8,5,7,6,14,7,7,5,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,19,10,9,6,9,6,7,6,10,6,6,4,6,4,6,6,19/2,6,6,5,7,5,7,7,12,7,9,7,12,8,11,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,3,4,3,4,4,13/2,4,4,3,5,3,4,4,8,5,7,6,11,8,12,12,11,6,7,5,8,5,5,5,8,5,5,4,6,4,4,4,15/2,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,12,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,11/2,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,14,10,14,14,31,16,16,11,17,10,11,9,16,8,8,6,9,6,8,7,25/2,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,41/2,11,11,8,12,8,10,9,16,10,12,10,17,12,17,17,33,17,17,12,18,11,13,11,20,11,12,9,15,9,12,12,22,12,13,9,14,9,12,11,21,12,14,12,20,13,18,18,34,18,18,13,19,11,14,12,20,11,12,9,15,10,14,14,26,14,15,12,20,13,17,16,30,17,19,16,28,19,29,29,49,25,26,18,26,15,17,14,24,13,14,11,18,11,14,13,25,13,13,9,14,9,11,11,20,11,12,10,17,11,16,16,24,12,12,8,11,7,8,7,12,7,8,6,10,7,10,10,37/2,10,10,7,11,7,10,9,16,9,10,8,14,10,15,15,25,13,14,10,14,8,10,9,15,8,9,7,10,7,9,9,33/2,9,10,8,12,7,9,9,16,9,10,8,13,9,13,13,25,13,14,10,14,8,10,9,16,9,9,7,12,8,10,9,16,9,10,7,11,8,11,10,19,11,12,10,17,12,17,17,25,13,13,9,14,8,9,8,14,8,8,7,11,8,11,11,41/2,10,10,7,11,7,9,8,15,8,9,7,11,7,10,10,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,15/2,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,9/2,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-11/2,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3/2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,2,2,2,2,1,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,2,9/2,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1/2,0,1,1,2,2,3,3,4,2,2,2,2,2,3,3,9,5,5,4,6,4,5,4,6,4,4,3,3,2,2,2,7/2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17 -11,6,6,9/2,6,4,5,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,7/2,4,7/2,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,10,5,5,4,5,7/2,4,7/2,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,5,5,7/2,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,7/2,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,13/2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,7/2,4,4,7,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,16,17/2,8,6,9,11/2,6,5,9,5,5,4,5,7/2,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,8,8,13/2,10,7,9,9,16,9,10,9,15,10,15,15,26,27/2,14,10,14,8,9,8,13,7,8,6,10,6,8,7,14,15/2,8,11/2,8,5,6,6,11,6,7,6,9,6,9,9,13,7,6,9/2,6,4,5,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,7,6,9,13/2,9,9,14,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,7/2,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,3/2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,5/2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,9 -11,6,6,5,6,4,5,4,7,4,9/2,4,6,4,5,5,8,5,11/2,4,6,4,5,4,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,4,2,5/2,2,4,3,3,3,6,4,7/2,3,4,3,7/2,3,5,3,3,3,5,3,4,4,8,4,9/2,4,5,3,3,3,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,3/2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,1/2,1,10,5,5,4,6,4,9/2,4,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,9/2,4,6,4,6,6,10,6,11/2,4,5,3,3,3,4,2,5/2,2,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,8,4,9/2,4,5,3,7/2,4,6,4,4,3,4,3,7/2,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,4,5,5,7,4,5,4,5,3,7/2,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,13/2,7,7,4,9/2,4,4,3,3,3,5,3,7/2,3,4,3,3,3,5,3,3,2,2,2,5/2,2,2,2,5/2,2,4,3,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,2,2,5/2,2,4,2,5/2,2,2,2,3/2,2,2,1,1,1,2,2,7/2,4,5,3,7/2,2,4,2,5/2,2,3,2,2,2,2,2,5/2,2,3,2,3,2,4,2,5/2,2,3,2,5/2,2,4,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,9/2,4,7,4,5,4,5,4,5,5,8,5,11/2,5,8,6,15/2,8,17,9,17/2,6,9,6,13/2,6,9,5,11/2,4,5,4,9/2,4,7,4,7/2,3,4,3,3,3,6,4,9/2,4,5,4,5,6,13,7,15/2,6,8,5,6,5,7,4,5,4,8,5,13/2,6,12,6,13/2,5,7,5,6,5,9,6,13/2,6,9,6,9,9,17,9,19/2,6,9,6,15/2,6,11,6,13/2,5,8,5,13/2,6,12,7,15/2,6,8,5,7,6,11,7,8,7,10,7,9,9,19,10,10,7,11,7,8,7,12,7,15/2,6,8,6,8,8,15,8,9,7,10,7,9,9,16,9,21/2,9,16,11,31/2,16,27,14,14,10,14,8,9,8,14,8,17/2,6,10,6,8,7,15,8,17/2,6,8,5,7,7,11,6,15/2,6,10,7,9,9,13,7,13/2,5,6,4,5,4,6,4,9/2,4,5,4,11/2,6,10,6,6,4,6,4,11/2,5,9,5,11/2,5,8,6,17/2,8,14,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,9,5,6,4,7,4,11/2,5,8,5,11/2,4,8,5,7,7,14,7,7,5,8,5,6,5,9,5,11/2,4,6,4,11/2,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,19/2,10,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,6,4,5,5,9,5,11/2,4,6,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,7,4,7/2,2,3,2,5/2,2,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,3/2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1/2,0,0,0,-1/2,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-3/2,-1,-2,-1,-5/2,-2,4,2,5/2,2,3,2,2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,2,1,1,1,0,0,1/2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1,1,1,1,1/2,1,2,1,1,1,0,1,1,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,1,1,1,3/2,2,2,1,1,1,2,2,2,1,-1,0,-1/2,0,0,0,1/2,0,0,1,3/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,-1,0,0,0,0,1,1,1,0,0,1/2,0,0,0,0,0,-2,0,-1/2,0,0,0,0,0,-1,0,1/2,0,0,0,-1/2,0,-1,0,1/2,1,1,1,1,1,1,1,1/2,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,1,1,3/2,2,2,2,5/2,2,2,2,5/2,2,6,4,7/2,3,4,3,4,4,6,4,7/2,3,4,3,7/2,3,5,3,7/2,3,5,3,7/2,4,6,4,9/2,4,5,4,11/2,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,4,3,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,5/2,3,3,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,5/2,3,2,2,5/2,4,3,3,2,3,2,2,5/2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,5/2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,5,7/2,5,5,6,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,7/2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,9/2,10,11/2,6,4,6,4,5,4,5,3,4,3,6,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,5,7,7,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,9/2,6,9/2,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,23/2,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,9/2,6,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,6,4,6,11/2,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,7/2,5,4,7,9/2,5,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,7/2,5,5,6,4,4,3,4,3,3,5/2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,3/2,2,3/2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,5/2,3,3,4,3,4,3,4,3,4,4,7 -12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,11/2,4,4,4,7,4,4,4,11/2,4,4,4,4,3,3,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,7,4,4,3,9/2,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,9/2,3,3,3,3,2,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3/2,2,2,2,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,1,2,2,3,2,2,2,3/2,1,1,1,2,1,1,1,1,1,2,2,11,6,6,4,6,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,13/2,5,7,7,10,6,6,4,5,3,4,4,4,3,3,2,7/2,2,3,3,5,3,3,2,7/2,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,7,5,7,6,7,4,5,4,11/2,4,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,7,8,9,5,5,4,9/2,3,3,3,5,3,4,3,9/2,3,4,3,6,4,4,3,9/2,3,4,3,2,2,2,2,4,3,3,3,8,4,4,3,9/2,3,4,3,4,2,2,2,7/2,3,4,3,5,3,3,2,5/2,2,2,2,2,2,2,2,5/2,2,4,4,8,5,5,4,9/2,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,7/2,2,3,3,3,2,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,13/2,4,6,5,9,5,6,6,19/2,6,9,9,18,9,9,7,10,6,6,5,10,6,6,4,13/2,4,6,5,8,4,4,3,9/2,3,4,4,7,4,5,4,13/2,5,7,7,15,8,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,6,6,9,6,7,6,9,6,9,10,19,10,10,7,10,6,8,7,13,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,21/2,8,11,11,20,10,10,7,11,7,8,7,13,7,8,6,21/2,7,9,8,18,10,10,8,23/2,8,10,9,16,10,12,10,17,12,18,18,30,16,16,10,29/2,8,10,8,15,9,10,8,23/2,8,10,9,17,9,9,7,11,7,9,8,12,7,8,7,23/2,8,10,10,14,7,7,5,15/2,5,6,5,7,4,4,4,6,4,6,6,10,6,6,4,13/2,4,6,6,9,5,6,5,17/2,6,9,10,16,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,10,6,6,5,15/2,5,6,6,9,6,7,6,9,6,8,8,16,8,8,6,17/2,5,6,5,9,5,6,5,7,5,6,6,10,6,7,5,8,5,7,6,11,7,8,7,23/2,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,15/2,5,6,5,10,6,6,5,15/2,6,8,7,9,5,6,4,11/2,4,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,7/2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1/2,0,0,0,-2,0,0,0,-3/2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,6,4,4,3,3,2,3,3,2,1,1,1,3/2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,1/2,0,0,0,1,1,1,1,3/2,2,2,2,2,1,1,1,1/2,0,0,1,3,2,2,2,3/2,2,2,2,3,2,2,2,3/2,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,5/2,2,2,2,-1,0,0,0,1/2,1,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,1/2,1,1,1,0,1,1,1,1/2,1,1,1,0,1,1,1,3/2,1,1,1,3,2,2,2,3/2,2,2,2,5,3,4,3,7/2,2,2,2,4,3,3,2,5/2,2,2,3,4,3,3,2,2,2,2,2,4,2,2,2,7/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,6,6,11 -7,4,5,7/2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,7/2,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,5/2,3,2,2,2,2,2,3,5/2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,5/2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,9/2,8,9/2,5,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,6,10,6,8,13/2,10,7,11,11,18,10,10,13/2,9,5,6,5,9,11/2,6,5,7,5,6,11/2,10,6,6,9/2,7,9/2,6,5,8,5,5,4,7,5,6,6,9,5,5,7/2,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,7/2,6,4,6,6,10,6,6,4,5,7/2,4,4,6,4,4,3,4,3,4,7/2,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,6,7/2,4,3,5,3,4,4,6,4,5,4,5,3,4,4,7,9/2,5,9/2,8,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,7/2,5,4,8,5,5,7/2,5,3,4,7/2,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,1,0,1,1,1,0,0,0,1/2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,4,4,7 -9,5,6,4,5,3,4,4,6,4,9/2,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,5/2,2,2,2,3/2,2,2,2,5/2,2,4,3,7/2,4,6,4,7/2,2,3,2,5/2,2,3,2,3,3,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,1,2,2,3/2,2,1,1,1,1,2,1,1,1,2,1,1,1,8,4,4,3,5,3,4,3,5,3,7/2,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,9/2,5,7,4,9/2,3,4,3,7/2,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,3,2,5/2,2,3,2,3,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,7/2,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,3,5,3,5/2,2,4,3,3,3,5,3,4,4,5,4,6,6,7,4,9/2,3,4,3,3,3,4,2,5/2,2,4,2,2,2,4,2,5/2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,7/2,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,3,5,3,7/2,3,3,2,2,2,3,2,5/2,2,3,2,3,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,2,5/2,2,3,2,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,5,4,5,4,5,4,8,5,11/2,4,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,7/2,3,5,3,4,4,6,4,6,6,11,6,13/2,5,8,5,11/2,5,7,4,5,4,6,4,11/2,5,10,5,5,4,6,4,5,5,7,4,11/2,4,7,5,15/2,8,14,8,15/2,5,7,5,6,5,10,5,5,4,6,4,11/2,5,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,9,9,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,13,8,19/2,8,13,9,27/2,14,23,12,25/2,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,12,6,6,4,6,4,9/2,4,6,4,7/2,3,5,4,9/2,4,8,5,5,4,6,4,5,5,8,5,5,4,8,6,15/2,8,12,7,7,5,6,4,9/2,4,7,4,9/2,4,5,4,9/2,4,9,5,11/2,4,6,4,5,5,7,4,5,4,8,5,6,6,12,6,13/2,4,6,4,9/2,4,8,4,9/2,4,6,4,5,5,8,5,6,5,6,4,11/2,5,9,6,13/2,6,10,7,9,9,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,9/2,4,6,4,11/2,6,6,4,4,3,4,3,3,3,3,2,3,2,3,2,5/2,2,6,3,3,2,3,2,5/2,2,2,2,2,2,2,2,2,2,7,4,7/2,2,3,2,3,3,4,2,2,2,2,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,3/2,1,1,1,2,2,0,0,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,6,4,4,3,3,2,2,2,3,2,3/2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3/2,1,1,1,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,1,1,1,1/2,0,1,1,0,0,0,0,0,0,2,2,3/2,2,2,1,1,1,1,1,3/2,1,2,1,1,1,3,2,3/2,2,2,2,3/2,2,2,2,3/2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,5/2,2,2,1,1,1,2,2,3/2,2,2,2,2,2,-2,0,-1/2,0,0,1,3/2,1,0,1,1,1,0,0,1/2,1,1,1,1,1,0,0,1/2,0,0,1,1,1,1,1,1,1,0,0,1/2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,3/2,2,4,2,5/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,2,5/2,2,3,2,7/2,4,5,3,7/2,2,4,3,4,3,5,3,3,3,4,3,3,3,6,4,7/2,3,5,3,4,4,5,3,7/2,3,5,4,5,5,10 -8,5,5,4,5,3,4,4,6,4,4,7/2,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,5/2,3,3,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,7/2,6,7/2,3,5/2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,7/2,5,7/2,4,4,7,9/2,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,7,4,5,4,5,7/2,4,4,5,3,3,5/2,3,5/2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,9/2,5,9/2,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,8,6,8,11/2,7,7,12,7,8,7,12,17/2,12,13,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,12,7,7,5,8,5,6,5,9,11/2,6,5,8,5,7,7,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,5,7/2,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,7/2,5,4,5,5,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,5/2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,0,0,0,1/2,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1/2,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,5/2,3,5/2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9 -14,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,5,3,3,3,4,3,3,2,3,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,11/2,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,9/2,2,2,2,3,2,1,1,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,11,6,7,5,8,5,6,5,15/2,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,5,8,6,8,7,11,6,5,4,5,3,4,4,13/2,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,6,5,8,5,6,6,19/2,6,6,5,8,5,7,7,11,6,5,4,5,3,4,4,13/2,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,17/2,6,7,6,10,7,10,10,13,7,7,5,8,5,5,4,15/2,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,9/2,3,4,3,4,3,4,4,12,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,11/2,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,14,8,9,7,10,6,8,6,21/2,6,6,4,6,4,6,6,10,6,7,6,9,6,7,7,13,7,8,6,10,7,11,11,20,11,11,7,10,6,8,7,13,7,7,5,8,6,8,7,9,5,6,4,6,4,5,4,15/2,4,5,5,8,6,8,9,19,10,10,7,10,6,8,8,27/2,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,25/2,7,8,7,12,9,13,13,24,12,12,9,13,8,10,8,14,8,8,7,11,7,8,8,16,9,9,7,10,6,8,7,25/2,7,8,7,12,9,13,13,28,14,14,10,15,9,11,9,16,9,10,8,12,8,11,11,24,13,13,10,15,10,13,12,43/2,13,16,13,23,16,23,23,39,20,20,14,20,11,13,11,20,11,12,9,15,9,12,11,22,12,12,9,13,8,10,9,33/2,9,10,8,13,9,12,12,19,10,11,8,11,7,8,6,21/2,6,7,5,8,6,8,7,12,7,7,5,8,6,8,7,25/2,7,8,7,13,9,13,13,19,10,10,7,11,7,8,6,10,6,7,6,9,6,7,7,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,23/2,6,6,5,8,6,8,8,15,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,23,12,12,8,12,7,8,8,27/2,8,8,6,9,6,9,8,16,9,9,7,10,6,8,7,23/2,6,7,6,9,6,8,8,10,5,5,3,4,3,3,3,11/2,4,4,3,4,3,3,3,10,5,5,4,6,4,4,4,11/2,3,3,3,4,3,4,3,13,7,6,4,6,4,5,4,13/2,4,4,4,6,4,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1/2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,10,5,5,4,6,4,4,3,5,3,4,3,5,3,3,3,1,1,1,1,1,1,1,1,3/2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,5/2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1/2,1,1,2,3,2,3,3,5,3,3,2,2,2,2,2,7/2,2,2,2,2,2,3,3,-6,-3,-3,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1/2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,5/2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,7,4,4,3,4,3,4,4,11/2,4,4,4,6,4,5,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,8,5,6,5,17/2,5,6,5,9,6,9,9,17 -8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3/2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,7/2,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,7/2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,5/2,3,3,5,7/2,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,5/2,3,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,7/2,5,7/2,4,4,8,9/2,5,4,6,5,7,7,11,6,6,9/2,6,4,5,9/2,8,4,4,3,5,7/2,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,8,9/2,5,4,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,15/2,16,8,8,6,9,5,6,5,9,5,6,5,7,5,6,13/2,13,7,8,6,9,6,8,7,12,15/2,9,8,13,9,13,13,22,12,12,8,12,7,8,7,11,6,7,11/2,9,11/2,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,3,5,4,5,4,7,4,5,9/2,7,5,8,15/2,11,6,6,4,7,4,5,4,6,4,4,7/2,5,7/2,4,4,9,5,5,4,6,4,5,4,8,9/2,5,4,6,4,6,6,10,6,6,9/2,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,7/2,5,4,5,5,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3/2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,5/2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10 -9,5,6,4,5,4,9/2,4,7,4,5,4,5,4,5,4,7,4,7/2,2,4,3,7/2,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,5/2,2,4,3,7/2,4,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,2,5/2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,2,3/2,2,2,2,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,7/2,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,7/2,3,5,4,9/2,4,8,4,9/2,3,3,2,5/2,2,4,3,3,3,4,3,7/2,3,5,3,3,2,3,2,3,3,5,3,7/2,3,4,3,7/2,3,5,3,3,3,3,2,5/2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,7/2,3,6,4,11/2,5,7,4,7/2,2,3,2,5/2,2,5,3,3,3,4,3,7/2,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,11/2,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,7/2,3,7,4,4,3,6,4,9/2,4,5,3,4,3,4,3,7/2,4,5,3,3,2,3,2,3,3,4,3,7/2,3,4,3,9/2,4,8,4,9/2,3,5,3,7/2,3,5,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,5,3,7/2,3,4,3,9/2,5,9,5,11/2,4,7,4,11/2,5,6,4,9/2,4,5,4,9/2,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,15/2,6,7,5,6,5,9,5,9/2,4,5,4,9/2,4,7,4,4,3,4,3,3,3,6,4,9/2,4,6,4,13/2,6,13,7,13/2,4,7,4,11/2,5,9,5,5,4,6,4,11/2,6,10,6,6,5,6,4,11/2,5,9,5,6,5,8,6,9,9,16,8,17/2,6,8,5,13/2,6,9,5,6,4,7,5,6,5,10,6,6,5,6,4,11/2,5,8,5,5,5,8,6,17/2,8,18,10,19/2,6,10,6,7,6,11,6,7,6,9,6,15/2,8,15,8,17/2,6,10,6,17/2,8,14,9,11,9,15,10,15,15,26,14,14,10,14,8,19/2,8,13,7,8,6,10,6,8,8,14,8,15/2,6,8,5,7,6,10,6,13/2,6,9,6,8,8,13,7,7,5,8,5,11/2,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,11/2,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,8,5,5,4,6,4,11/2,5,10,6,6,5,7,5,6,5,9,5,11/2,4,6,4,6,6,12,6,13/2,5,8,5,11/2,5,8,5,5,4,6,4,6,6,11,6,13/2,5,7,4,5,5,10,6,7,6,10,7,10,10,15,8,17/2,6,8,5,13/2,6,9,5,5,4,6,4,11/2,6,11,6,11/2,4,6,4,5,5,8,4,9/2,4,6,4,6,6,8,4,4,3,4,2,5/2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,4,2,5/2,2,4,2,2,2,2,2,2,2,8,5,5,4,4,3,7/2,3,4,3,3,2,4,3,7/2,3,3,2,2,2,2,2,5/2,2,3,2,3/2,2,2,2,3/2,2,1,1,1/2,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,0,0,-2,-1,-2,-2,7,4,4,3,4,3,3,3,3,2,3,2,4,3,3,3,1,1,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,1,1,1,1,2,1,1/2,0,1,1,1,0,0,0,0,0,2,2,3/2,1,2,2,3/2,2,2,2,3/2,2,2,2,3/2,1,2,2,2,1,2,2,3/2,2,2,2,2,2,2,1,1,1,1,1,3/2,2,1,1,3/2,2,1,1,2,2,2,2,5/2,2,4,2,5/2,2,2,2,2,2,3,2,2,2,2,2,5/2,2,-3,-1,-1,0,-1,0,0,0,1,1,1,1,2,2,3/2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,1,1,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,3/2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,2,5,3,5/2,2,2,2,2,2,4,3,3,3,4,3,7/2,3,5,3,4,3,4,2,5/2,2,3,2,2,2,4,3,7/2,4,6,3,3,3,5,3,4,4,5,3,4,3,4,3,3,3,8,4,4,3,5,3,4,4,6,4,9/2,4,6,4,6,6,11 -8,9/2,5,4,4,3,4,3,5,3,4,3,4,3,4,7/2,6,3,3,2,3,2,3,5/2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,5/2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,7/2,5,4,5,6,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,6,4,5,9/2,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,7/2,5,4,5,5,8,5,5,4,5,4,5,4,8,5,6,5,7,5,8,8,13,7,7,5,7,4,5,9/2,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,11/2,8,5,6,5,9,5,6,5,8,5,6,13/2,13,7,7,5,8,5,7,7,12,7,9,15/2,12,8,12,12,22,11,11,8,11,13/2,8,13/2,11,6,7,5,8,5,7,6,11,6,6,9/2,6,4,5,5,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,9/2,7,4,4,7/2,5,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,11/2,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,9/2,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,7/2,5,5,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,0,0,1,1,1,1/2,0,0,0,0,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,2,3/2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3/2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,3/2,2,3/2,2,2,2,2,2,3/2,2,3/2,2,2,4,5/2,2,2,2,2,2,2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9 -13,7,8,6,15/2,4,5,5,8,5,5,4,6,4,6,6,9,5,4,3,9/2,3,3,3,7,4,4,3,9/2,4,5,5,7,4,4,3,9/2,3,4,3,3,2,2,2,9/2,4,5,5,8,4,4,3,9/2,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,9/2,2,2,2,4,3,3,2,5/2,2,2,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3/2,2,2,1,2,1,1,1,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,9/2,3,4,3,6,4,4,4,11/2,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,9/2,3,4,4,6,3,3,2,7/2,2,2,2,7,4,4,4,11/2,4,4,4,6,4,5,4,7,5,6,6,11,6,5,4,5,3,4,3,7,4,4,4,11/2,4,6,5,7,4,5,4,6,4,5,5,8,5,6,5,17/2,6,9,10,13,7,7,5,7,5,6,5,8,5,6,4,13/2,4,5,4,7,4,4,3,4,3,3,3,8,5,6,4,13/2,4,6,5,10,6,6,5,15/2,4,5,5,6,4,4,4,11/2,4,5,5,8,5,5,4,11/2,4,4,4,6,4,5,4,6,5,7,7,10,6,6,4,11/2,4,4,4,7,4,5,4,6,4,6,6,9,5,6,4,11/2,4,4,4,7,4,4,4,6,5,7,7,11,6,7,5,8,5,6,6,9,5,6,4,13/2,4,6,6,12,7,7,5,8,5,7,7,11,7,8,6,21/2,8,11,11,18,10,10,7,11,7,9,8,11,6,6,5,15/2,5,6,6,9,5,6,4,11/2,4,6,5,9,5,6,5,17/2,6,8,9,18,9,9,6,9,6,7,6,12,7,7,6,17/2,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,25/2,9,14,14,21,11,11,8,25/2,7,8,7,14,8,8,6,17/2,6,8,7,12,7,7,6,19/2,6,8,7,12,7,8,7,12,8,12,12,25,13,13,9,25/2,8,9,8,16,9,10,8,13,8,11,11,22,12,13,9,14,9,11,11,20,12,14,12,43/2,15,22,22,38,20,20,13,37/2,11,13,11,18,10,11,8,27/2,8,11,10,18,10,10,7,21/2,6,8,7,15,9,10,8,25/2,8,12,11,19,10,10,8,23/2,7,8,7,10,6,7,5,8,5,7,7,12,7,8,6,17/2,6,7,7,12,7,8,7,11,8,12,12,18,10,10,7,19/2,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,17/2,6,7,6,12,7,7,6,9,6,9,9,16,9,9,7,10,6,7,7,12,7,8,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,21,11,11,8,12,7,9,8,12,7,7,6,9,6,7,7,14,8,8,6,15/2,5,6,6,10,6,6,5,15/2,5,7,7,12,6,6,4,9/2,3,4,3,6,4,4,3,9/2,3,4,4,9,5,5,4,9/2,3,4,3,5,3,3,2,3,2,3,3,10,6,6,4,13/2,4,4,3,7,4,4,3,7/2,3,4,3,4,3,3,3,4,3,3,3,5,3,2,2,5/2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-3/2,-1,-2,-2,10,6,6,4,11/2,4,4,4,4,3,3,2,7/2,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,5/2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,2,3/2,2,2,2,1,1,1,1,3/2,1,0,0,1,1,1,0,-1/2,0,0,0,4,3,3,2,5/2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3/2,2,2,2,1,1,1,1,1/2,0,0,0,1,1,1,2,5/2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,5/2,2,3,3,4,3,3,2,5/2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,1/2,0,0,1,2,1,1,1,3/2,2,2,2,2,1,1,1,3/2,1,1,1,2,2,2,2,3/2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,5/2,2,2,2,2,2,2,2,5/2,2,2,2,7,4,3,2,3,2,2,2,6,4,4,3,5,4,5,5,8,5,5,4,11/2,4,4,3,5,3,4,3,9/2,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,11/2,4,4,4,10,5,5,4,11/2,4,4,4,9,5,6,5,15/2,6,8,8,15 -9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,3/2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,4,5/2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,5/2,4,5/2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,5/2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,5/2,3,5/2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,7/2,5,5,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,9/2,7,5,7,7,13,7,7,5,7,5,6,5,8,4,4,7/2,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,13/2,6,5,6,4,5,9/2,8,5,5,4,6,4,6,6,9,5,6,4,7,9/2,6,5,9,11/2,6,5,8,6,9,9,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,11/2,6,6,11,6,7,6,9,6,8,8,15,8,9,13/2,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,12,7,9,7,12,7,7,6,9,6,7,7,12,7,7,5,7,9/2,6,5,10,6,7,5,8,6,8,8,13,7,7,11/2,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,9/2,8,9/2,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,9/2,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,7/2,4,4,7,4,4,3,5,7/2,5,5,8,4,4,3,4,5/2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,5/2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,5/2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,5/2,4,3,4,7/2,6,3,3,3,4,3,3,5/2,4,3,3,5/2,4,3,4,7/2,6,7/2,4,3,4,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,10 -13,7,7,5,7,4,5,4,6,4,9/2,4,5,4,9/2,4,8,4,4,3,4,3,7/2,3,6,4,4,3,5,3,4,4,6,4,7/2,3,4,3,3,3,4,3,3,3,4,3,9/2,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,8,4,9/2,3,4,2,5/2,2,2,2,3/2,2,1,1,3/2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1/2,0,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3/2,2,1,1,2,2,3,2,2,2,8,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,9/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,5,9,5,9/2,3,4,3,7/2,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,5,3,7/2,3,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,3,3,3,5,4,5,5,7,4,5,4,6,4,11/2,5,8,5,6,5,8,6,9,9,12,7,7,5,7,4,11/2,5,8,5,5,4,6,4,5,5,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,7,5,6,6,10,6,11/2,4,7,4,9/2,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,9/2,4,6,4,9/2,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,5,7,7,10,6,6,5,8,5,11/2,5,8,5,6,5,6,4,6,6,12,6,13/2,5,7,5,13/2,6,12,7,15/2,6,10,7,10,10,19,10,10,7,10,6,15/2,6,11,6,13/2,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,18,10,19/2,7,9,6,7,6,12,7,7,5,9,6,15/2,8,13,7,8,6,10,6,17/2,8,13,8,9,7,12,9,13,13,21,11,23/2,8,12,7,17/2,7,12,7,7,5,9,6,15/2,7,12,7,7,5,9,6,8,7,11,7,8,7,11,8,11,11,22,12,25/2,8,12,8,19/2,9,16,9,10,8,13,8,23/2,11,21,11,12,9,13,8,23/2,11,20,12,27/2,12,20,14,20,20,36,19,19,13,18,10,25/2,10,18,10,10,8,13,8,10,10,18,10,19/2,7,10,6,8,7,14,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,9,6,13/2,5,8,5,13/2,7,12,7,7,5,8,5,13/2,6,12,7,8,7,11,8,23/2,11,19,10,10,7,10,6,15/2,6,11,6,7,6,8,6,8,7,13,7,7,5,8,5,6,6,11,6,13/2,6,9,6,9,9,16,9,9,7,10,6,15/2,6,11,7,8,6,9,6,8,8,15,8,8,6,9,6,15/2,7,14,8,19/2,8,14,9,13,13,21,11,11,8,11,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,15/2,5,7,5,6,6,10,6,11/2,4,6,4,6,6,12,6,13/2,4,5,3,4,4,6,4,7/2,3,5,4,9/2,4,8,5,5,3,5,3,4,3,4,2,5/2,2,3,2,3,3,11,6,6,4,6,4,9/2,4,6,4,4,3,4,3,4,3,5,3,3,3,5,3,7/2,3,4,2,5/2,2,2,1,1,1,2,2,3/2,1,0,0,1/2,0,1,1,1/2,0,1,1,1/2,0,-2,0,-1/2,0,-1,0,-1/2,0,-1,0,-1/2,0,-2,-1,-2,-2,9,5,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,1,1,1,1,1,1/2,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3/2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,5/2,2,3,2,5/2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,0,0,0,1,2,2,3/2,2,1,1,2,2,2,1,1,1,2,2,3/2,2,3,2,5/2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,2,2,2,2,2,2,3/2,2,2,2,2,2,7,4,3,2,3,2,3,3,5,3,7/2,3,5,4,9/2,4,8,4,4,3,5,3,7/2,3,6,4,4,3,6,4,9/2,4,8,4,9/2,4,6,4,9/2,4,7,4,9/2,4,6,4,5,5,9,5,5,4,6,4,9/2,4,8,5,5,4,8,5,7,7,14 -12,7,7,5,6,4,4,4,6,4,4,7/2,5,7/2,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3/2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,9/2,4,7/2,5,3,4,4,6,4,4,3,5,7/2,4,5,9,5,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,9/2,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,9/2,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,9/2,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,7,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,13/2,11,6,6,5,7,5,6,6,10,11/2,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,10,7,9,6,7,6,11,13/2,7,5,9,6,7,7,13,7,8,6,10,6,8,8,13,8,9,15/2,13,9,13,13,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,9,6,7,7,11,7,8,7,11,8,11,11,22,12,12,8,12,8,10,9,16,9,10,8,13,17/2,12,11,21,11,12,9,13,17/2,12,11,20,12,14,12,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,13/2,8,7,13,8,9,7,12,8,11,11,19,10,10,7,11,6,7,6,9,11/2,6,5,7,5,6,13/2,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,6,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,6,11/2,9,6,9,9,16,9,9,7,10,6,8,13/2,11,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,14,8,9,8,13,9,13,13,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,5,7,5,6,6,10,6,6,4,6,4,6,6,11,6,6,4,6,7/2,4,4,6,4,4,3,5,7/2,4,4,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,7/2,6,3,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3/2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,1/2,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,7/2,3,2,3,2,3,3,4,3,3,3,5,7/2,4,4,7,4,4,3,4,3,4,7/2,6,4,4,3,6,4,4,4,8,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,9/2,8,5,5,4,7,5,7,7,13 -23,12,12,8,12,7,8,7,11,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,5,4,6,4,6,6,23/2,6,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,6,5,7,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,4,3,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,14,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,7,6,10,7,11,11,43/2,11,10,7,10,6,7,6,10,6,7,5,8,6,9,9,16,9,9,7,12,8,11,10,19,11,12,10,18,12,18,18,23,12,13,9,13,8,9,7,12,7,8,6,10,6,8,8,15,8,9,7,11,7,8,7,13,7,8,7,12,8,11,10,19,10,10,8,12,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,9,8,13,8,9,7,12,9,13,13,20,11,11,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,11,7,10,10,41/2,11,11,7,10,6,8,7,13,7,8,7,12,8,10,10,18,10,10,7,11,7,10,10,18,11,13,11,18,12,18,19,36,19,19,13,19,11,12,10,18,10,11,9,15,10,14,13,24,13,13,10,15,9,12,11,20,11,13,11,18,12,18,17,65/2,17,17,12,17,10,13,12,21,12,14,11,18,12,16,15,29,15,16,12,19,12,16,15,28,16,18,15,25,17,25,25,40,20,20,14,21,13,16,14,24,13,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,23,15,22,22,85/2,22,22,16,24,14,17,15,26,14,16,13,22,14,20,19,36,19,21,16,25,16,22,21,40,23,27,23,40,27,40,40,70,36,36,25,37,21,25,21,37,20,21,15,24,15,19,18,34,18,18,13,20,12,14,12,22,12,14,12,21,14,20,20,75/2,19,19,13,20,12,14,12,20,11,13,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,13,21,14,21,21,36,19,19,13,19,11,14,12,21,11,12,9,14,9,11,11,20,11,11,8,13,8,11,11,20,11,12,10,17,11,16,16,63/2,16,17,12,17,10,13,12,21,11,12,10,16,10,13,13,24,13,14,10,16,10,14,14,27,15,18,15,25,17,25,25,41,21,21,14,21,12,14,12,21,11,12,9,14,9,12,11,19,10,10,7,11,7,8,7,11,7,8,7,11,8,11,11,21,11,11,7,9,5,6,5,8,5,6,5,7,5,6,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,20,10,10,7,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,16,8,8,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,4,13/2,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,0,0,0,0,7,4,5,4,5,3,3,2,3,2,2,2,2,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,2,3,2,3,2,3,3,4,5,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,7,5,8,5,6,6,10,6,6,5,7,5,8,8,14,8,8,6,8,5,5,5,8,5,6,5,9,6,9,8,31/2,8,8,6,8,5,7,6,11,6,7,5,8,6,9,9,16,9,10,7,11,7,8,8,14,8,9,7,12,9,13,13,25 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,5/2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,7/2,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,10,6,7,6,10,7,10,10,19,10,10,7,10,6,6,11/2,10,6,6,5,8,6,8,7,12,7,7,11/2,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,13/2,9,6,7,6,11,13/2,8,6,10,6,8,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,20,10,10,7,11,7,8,7,13,7,7,11/2,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,12,7,9,8,14,8,8,7,12,8,10,10,18,10,11,8,13,9,12,11,21,12,14,12,21,14,21,21,36,19,19,13,19,11,13,11,19,21/2,11,8,13,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,11,15/2,10,10,20,10,10,7,11,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,7,13,8,9,7,11,8,11,11,19,10,10,7,10,6,8,13/2,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,6,10,6,6,11/2,9,6,9,9,17,9,9,13/2,9,6,7,13/2,11,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,13/2,8,13/2,11,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,9,5,4,7/2,5,7/2,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,5/2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,4,5/2,3,2,3,2,2,2,2,3/2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13 -12,7,7,5,7,4,5,4,6,3,3,3,4,3,9/2,4,8,4,4,3,4,3,3,2,4,3,3,2,4,3,7/2,4,7,4,9/2,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,5/2,2,5,3,3,3,4,3,9/2,4,8,5,5,3,4,3,7/2,3,5,3,3,3,4,3,3,3,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3/2,2,2,2,3/2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,5/2,2,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,7/2,3,5,3,4,3,4,3,9/2,4,9,5,5,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,9/2,4,7,4,7/2,2,3,2,5/2,2,4,2,5/2,2,3,2,3,3,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,13/2,6,11,6,11/2,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,11/2,4,6,4,6,6,10,6,7,6,10,7,10,10,12,7,7,5,7,4,5,4,7,4,9/2,4,6,4,11/2,5,8,5,11/2,4,6,4,5,5,6,4,4,4,6,4,6,6,11,6,6,5,7,4,11/2,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,6,4,9/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,9/2,4,6,4,13/2,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,11/2,4,7,4,5,5,10,6,7,6,10,7,10,10,19,10,21/2,7,10,6,13/2,6,10,6,13/2,5,8,6,15/2,8,12,7,15/2,6,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,15/2,6,10,6,17/2,8,16,9,9,7,10,7,9,8,14,8,19/2,8,14,9,13,13,20,10,21/2,7,10,6,17/2,7,13,7,15/2,6,9,6,15/2,8,13,7,8,6,9,6,8,7,13,8,9,8,13,9,25/2,12,23,12,12,8,12,7,9,8,14,8,17/2,7,12,8,10,10,18,10,11,8,14,9,12,11,22,12,29/2,12,21,14,21,21,36,19,19,13,19,11,13,11,20,11,11,8,13,8,11,10,18,10,19/2,7,10,6,8,7,11,6,7,6,11,8,21/2,10,20,11,11,8,12,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,10,6,7,7,13,8,9,7,12,8,11,11,19,10,21/2,8,11,6,15/2,6,11,6,7,5,8,5,7,7,11,6,13/2,5,7,5,6,6,10,6,13/2,6,9,6,19/2,10,18,10,10,7,10,6,15/2,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,15,8,19/2,8,13,9,27/2,14,21,11,23/2,8,11,6,15/2,6,11,6,13/2,5,8,5,13/2,6,10,6,11/2,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,7/2,3,5,3,4,3,4,3,3,3,5,3,5/2,2,2,2,2,2,2,2,3/2,2,3,2,5/2,2,10,6,11/2,4,5,3,4,4,6,4,7/2,3,4,3,7/2,4,6,4,4,3,3,2,3,3,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,3/2,2,2,2,3/2,1,1,1,1/2,0,0,0,-1/2,0,-1,0,-1/2,-1,9,5,9/2,4,5,4,9/2,4,6,4,7/2,3,4,3,3,3,5,3,3,2,3,2,5/2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,3/2,1,0,0,0,0,4,2,5/2,2,3,2,2,2,1,1,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1/2,0,1,1,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3/2,2,1,1,2,2,-5,-2,-3/2,0,-2,0,-1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,0,1,1,3/2,2,2,2,2,2,2,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,3,2,5/2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,7/2,3,5,4,9/2,4,8,5,5,4,5,3,7/2,3,5,3,4,3,5,4,11/2,5,8,4,4,3,5,3,4,4,7,4,4,3,5,4,11/2,5,9,5,5,4,7,4,5,5,8,5,5,4,7,5,8,8,14 -9,5,5,4,5,3,3,3,4,3,3,2,3,3,4,7/2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,5/2,3,3,4,3,3,2,3,2,3,5/2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,4,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,5/2,4,3,3,3,5,7/2,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,5/2,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,4,3,5,7/2,5,5,9,5,5,7/2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,11/2,8,5,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,9/2,8,5,6,4,7,9/2,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,13/2,9,9,14,15/2,8,5,7,9/2,6,5,9,5,6,4,6,4,6,6,10,11/2,6,5,7,5,6,5,9,11/2,6,11/2,9,6,9,9,16,8,8,6,8,5,6,11/2,10,6,6,5,9,6,7,7,13,7,8,6,10,6,8,8,15,9,10,9,15,10,15,15,25,13,13,9,13,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,9/2,8,6,8,15/2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,9/2,7,4,5,5,9,6,7,5,9,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,9/2,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,5/2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,4,5/2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,3/2,1,1,0,0,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,7/2,3,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,5/2,4,5/2,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,10 -13,7,7,5,15/2,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,9/2,3,4,3,3,2,2,2,7/2,3,4,4,7,4,4,3,9/2,3,4,4,7,4,4,3,9/2,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,11/2,4,6,5,10,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1/2,0,0,0,0,1,1,1,3/2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,3,8,4,4,3,5,4,5,4,7,4,4,3,9/2,3,4,4,5,3,3,2,7/2,3,4,4,5,3,3,3,9/2,4,5,5,10,5,5,4,11/2,4,4,4,4,3,3,3,4,3,4,4,5,3,4,3,9/2,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,5,4,7,5,6,6,11,6,6,4,11/2,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,15/2,5,6,6,12,7,8,7,23/2,8,12,11,13,7,7,5,7,4,5,5,8,5,6,4,13/2,4,6,6,9,5,6,4,13/2,4,5,5,6,4,4,3,5,4,5,6,11,6,7,5,15/2,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,13/2,4,4,3,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,13,7,7,5,13/2,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,15/2,5,6,6,10,6,7,6,21/2,7,10,11,22,12,12,8,23/2,7,8,6,11,6,7,6,19/2,6,8,8,13,7,8,6,17/2,6,7,6,11,7,8,6,10,7,10,10,17,9,9,7,11,6,7,6,12,7,7,6,19/2,7,10,10,16,9,10,7,11,7,9,9,14,8,10,8,27/2,10,14,14,20,10,10,7,21/2,6,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,8,13,9,12,12,24,13,13,9,25/2,8,9,8,15,9,10,8,13,8,11,10,19,11,12,9,14,9,13,12,23,13,15,13,22,15,22,22,38,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,19,10,11,8,23/2,7,8,8,12,7,8,6,21/2,7,10,10,22,12,12,8,25/2,7,8,7,13,7,8,6,19/2,6,9,9,15,8,8,6,10,6,8,7,14,8,10,8,13,9,12,12,20,11,11,8,25/2,7,8,7,13,7,8,6,17/2,6,7,7,13,7,7,6,17/2,5,6,6,11,6,7,6,21/2,8,11,11,19,10,10,7,21/2,6,8,7,13,7,8,6,9,6,9,8,15,9,10,8,23/2,8,10,9,15,9,10,8,29/2,10,14,14,23,12,12,8,12,7,8,7,11,6,6,5,17/2,6,7,7,11,6,6,4,13/2,4,5,4,7,4,5,4,13/2,4,6,6,12,6,6,5,7,4,4,3,6,3,3,2,7/2,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,10,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-1/2,0,-1,-1,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,3,3,2,3,2,3,2,3,2,2,2,2,2,5/2,2,2,2,1,1,0,0,0,1,1,1,3,2,1,1,1/2,0,0,0,4,3,3,2,2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,0,1/2,1,1,1,0,0,0,1,3/2,1,1,1,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,3/2,1,1,1,2,2,2,1,1,1,2,2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1/2,1,1,1,2,2,2,2,3/2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,7/2,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,9/2,3,3,3,6,4,4,4,11/2,4,4,4,9,5,5,4,9/2,3,4,3,6,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,15/2,6,8,8,14 -8,4,4,3,4,3,3,3,4,3,3,5/2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,7/2,6,3,3,3,4,5/2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,3/2,2,2,2,2,2,2,2,2,2,2,3,2,3,5/2,5,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,5/2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,5/2,3,2,3,2,3,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,7/2,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,7/2,5,3,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,5/2,4,3,3,2,3,5/2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,9/2,6,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,9/2,5,4,5,7/2,4,4,7,4,5,4,6,9/2,6,6,10,6,6,9/2,7,4,4,4,7,4,5,4,6,4,6,6,9,5,6,9/2,7,9/2,6,5,8,5,6,5,8,6,8,8,12,6,6,9/2,6,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,8,8,11/2,8,5,6,5,9,5,6,5,8,5,7,6,11,13/2,7,11/2,8,6,8,7,14,8,9,8,13,9,13,13,23,12,12,8,12,7,8,7,13,7,7,11/2,8,5,7,13/2,11,6,7,5,7,9/2,5,5,8,5,5,4,6,9/2,6,6,13,7,7,5,8,5,5,9/2,8,9/2,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,5,9/2,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,6,9,11/2,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,9/2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,5/2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1/2,0,1/2,0,0,5,3,3,5/2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,2,3/2,1,1,1,1,1,0,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1/2,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,5/2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,5/2,3,5/2,3,3,4,3,3,5/2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8 -9,5,11/2,4,5,3,7/2,3,5,3,7/2,3,5,3,4,4,6,4,4,3,4,3,7/2,3,4,2,5/2,2,2,2,7/2,3,5,3,3,3,4,3,7/2,3,5,3,3,2,4,2,5/2,2,4,3,3,2,3,2,3,3,5,3,7/2,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3/2,1,1,1,1,1,0,0,1/2,0,1,1,0,0,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,3,3,5,3,3,3,3,2,5/2,2,5,3,5/2,2,4,3,7/2,4,7,4,4,3,4,3,7/2,3,4,2,5/2,2,3,2,7/2,4,4,2,5/2,2,2,2,3,3,4,2,2,2,3,2,3,3,7,4,3,2,3,2,5/2,2,3,2,3,2,3,2,5/2,2,5,3,3,2,4,3,3,3,4,3,7/2,4,6,4,5,5,9,5,5,3,5,3,4,4,5,3,7/2,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,11/2,5,8,6,8,8,11,6,6,4,6,4,9/2,4,7,4,9/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,4,3,7/2,3,4,3,9/2,5,8,5,5,4,6,4,9/2,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,7/2,3,6,4,5,4,7,5,7,7,8,5,5,4,6,4,7/2,3,5,3,3,2,3,3,4,4,5,3,7/2,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,4,3,7/2,3,6,4,4,3,5,4,5,5,7,4,4,3,6,4,5,5,8,5,11/2,5,8,6,17/2,8,16,9,9,6,8,5,13/2,6,10,6,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,11/2,4,8,6,15/2,8,13,7,7,5,8,5,11/2,5,9,5,6,5,7,5,7,7,11,6,7,5,8,5,13/2,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,11/2,6,8,5,11/2,4,7,5,13/2,6,12,7,7,5,7,5,13/2,6,10,6,7,6,10,7,10,9,18,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,14,8,9,7,10,7,9,9,17,10,11,9,16,11,16,16,29,15,29/2,10,15,9,21/2,9,16,9,9,7,10,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,15/2,8,17,9,9,7,10,6,13/2,6,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,15/2,6,10,7,10,9,16,9,9,7,10,6,7,6,10,6,11/2,4,6,4,6,6,10,6,6,5,6,4,5,4,8,5,11/2,5,8,6,8,8,13,7,7,5,7,4,11/2,5,10,6,13/2,5,8,5,7,7,11,6,13/2,5,9,6,15/2,7,12,7,15/2,6,11,8,11,11,16,9,9,6,8,5,6,5,9,5,11/2,4,7,4,11/2,6,8,5,5,3,5,3,7/2,4,5,3,7/2,3,5,4,9/2,5,10,6,11/2,4,5,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,1,1,3/2,2,2,2,2,2,8,5,5,4,5,3,7/2,4,5,3,7/2,2,3,2,5/2,2,5,3,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1/2,0,2,1,1,1,1,1,1/2,0,2,2,2,1,1,1,1/2,0,2,1,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,2,2,2,2,2,5/2,2,6,3,5/2,2,2,2,2,2,3,2,3/2,2,1,1,3/2,2,2,2,5/2,2,3,2,5/2,2,2,2,3/2,2,3,2,5/2,2,2,1,1/2,0,1,1,3/2,2,2,2,3/2,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1/2,1,1,1,1/2,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,3/2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,3/2,1,1,1,2,2,-2,-1,-1,0,0,0,1/2,0,-1,0,0,0,1,1,1,0,0,0,1/2,1,0,1,3/2,2,2,2,3/2,2,1,1,2,2,2,2,3/2,2,2,2,3/2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,5/2,2,3,2,3,3,6,4,4,3,3,2,5/2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,7/2,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,4,9/2,4,5,3,7/2,4,6,4,9/2,4,6,4,6,6,10 -8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,5/2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,3/2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,5/2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,5,8,5,5,9/2,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,9/2,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,7/2,4,4,6,9/2,6,6,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,15/2,14,8,8,11/2,8,5,6,5,9,5,5,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,11/2,11,6,6,5,6,4,6,5,9,5,6,5,9,6,9,8,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,9/2,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,10,14,7,7,5,7,4,5,5,8,9/2,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,5/2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1/2,0,0,2,2,2,3/2,2,1,1,1,2,1,1,1,1,1,0,0,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,3/2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,7/2,4,4,6,4,6,5,9 -15,8,8,6,8,5,6,6,19/2,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,11/2,4,4,3,5,4,6,6,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,5,3,4,3,4,3,4,4,13/2,4,4,4,6,4,6,5,11,6,5,4,5,3,4,4,11/2,4,4,3,3,3,4,4,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,1,1,2,2,3,2,3,2,7/2,2,3,3,5,4,5,5,9,5,5,4,5,3,4,4,15/2,4,4,3,4,3,3,3,7,4,5,4,6,4,4,4,15/2,4,5,4,5,4,5,5,11,6,6,4,5,3,4,4,11/2,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,9/2,3,3,3,4,3,4,4,12,6,6,4,5,3,4,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,8,5,6,6,15,8,8,6,10,6,8,8,27/2,8,9,7,12,9,13,13,19,10,10,7,11,7,8,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,15/2,4,5,5,8,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,6,7,6,11,8,11,10,13,7,8,6,8,5,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,17/2,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,15/2,5,6,5,7,5,7,7,10,6,6,4,6,4,6,6,23/2,7,8,8,14,10,14,13,25,13,13,9,13,8,10,9,31/2,9,10,8,12,7,9,9,14,8,8,6,9,6,8,7,12,7,9,7,12,8,11,11,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,11,18,10,10,7,11,7,10,10,35/2,10,11,9,15,10,15,15,22,12,12,9,13,8,10,8,27/2,8,8,6,10,7,9,9,19,10,11,8,13,8,10,9,31/2,9,11,9,16,11,15,14,28,15,15,11,16,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,15,10,13,13,25,14,16,14,24,16,24,25,46,24,24,17,25,14,17,14,25,13,14,11,17,11,14,13,24,13,13,9,14,9,11,10,35/2,10,11,9,15,10,13,12,26,14,14,10,15,9,10,8,14,8,9,7,12,8,11,11,22,12,13,9,14,8,10,9,31/2,9,11,9,16,11,15,14,27,14,15,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,6,8,5,6,6,11,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,12,8,11,10,18,10,11,8,12,8,10,10,37/2,10,12,10,18,12,18,17,24,12,12,8,12,7,9,8,13,8,9,7,11,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,4,4,3,5,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,4,13,7,8,6,8,5,6,5,17/2,5,5,3,4,3,3,3,6,4,4,3,4,3,3,2,7/2,2,3,2,3,2,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,4,2,2,1,1,1,1,1,3/2,1,0,0,0,0,0,0,9,5,6,4,6,4,4,4,13/2,4,4,3,4,3,4,3,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,3/2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-2,0,0,1,1,1,1,1,1,1,2,2,3,2,3,2,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,1,1,1,1,2,2,3/2,2,2,2,4,3,4,4,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,11/2,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,13/2,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,13/2,4,4,3,5,4,6,6,9,5,5,4,7,4,5,5,17/2,5,6,5,8,5,6,6,12,6,6,5,7,5,6,5,17/2,5,6,6,10,7,10,9,17 -9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,7/2,6,7/2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,3,2,3,5/2,3,3,6,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,5/2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,15/2,11,6,6,9/2,7,4,5,4,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,7/2,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,7/2,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,15/2,8,5,7,5,6,5,8,5,6,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,6,10,6,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,9,6,8,15/2,14,8,9,8,13,9,13,27/2,25,13,13,9,14,8,10,8,14,15/2,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,11/2,7,7,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,11/2,10,11/2,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,8,5,6,9/2,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,3/2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,5/2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9 -10,6,11/2,4,5,3,4,4,7,4,4,4,6,4,9/2,4,8,4,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,2,5/2,2,4,3,3,3,4,2,5/2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,7/2,2,4,2,5/2,2,4,3,3,2,3,2,2,2,2,2,3/2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,3/2,1,1,1,3/2,1,1,1,1,1,1,1,2,2,0,1,3/2,2,2,2,2,2,3,2,5/2,2,4,3,3,3,5,3,3,2,2,2,5/2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,7/2,4,7,4,4,3,4,2,5/2,2,3,2,5/2,2,4,3,7/2,3,4,2,5/2,2,4,3,3,3,5,3,7/2,3,6,4,11/2,6,8,5,11/2,4,6,4,9/2,4,7,4,5,4,5,4,9/2,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,17/2,8,13,7,7,5,8,5,11/2,4,7,4,5,4,7,4,5,5,10,6,6,4,5,4,9/2,4,6,4,4,4,5,4,5,5,8,5,11/2,4,6,4,9/2,4,6,4,9/2,3,4,3,9/2,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,13/2,6,9,5,9/2,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,6,4,4,3,3,2,3,3,6,4,4,4,5,4,5,5,9,5,9/2,3,4,3,4,3,5,3,3,3,5,4,9/2,4,7,4,5,4,5,4,9/2,4,8,5,6,5,10,7,19/2,9,15,8,17/2,6,8,5,6,5,9,5,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,11/2,5,8,5,7,7,11,6,13/2,5,8,5,11/2,5,8,5,11/2,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,11/2,5,9,5,11/2,4,7,5,6,6,12,7,7,5,8,5,13/2,6,10,6,7,6,10,7,19/2,9,16,9,9,7,9,6,7,6,10,6,7,6,10,6,17/2,8,13,7,15/2,6,10,6,17/2,8,15,9,10,9,15,10,29/2,15,28,14,29/2,10,16,9,21/2,9,15,8,9,7,11,7,9,8,16,9,9,7,9,6,15/2,6,12,7,15/2,6,9,6,8,8,16,9,19/2,6,9,6,13/2,6,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,13/2,6,10,7,19/2,10,17,9,9,6,9,6,13/2,6,11,6,7,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,11/2,5,7,5,15/2,8,14,8,15/2,6,8,5,6,5,9,5,11/2,4,7,5,13/2,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,23/2,11,15,8,8,6,7,5,6,5,8,5,5,4,7,4,11/2,5,8,4,4,3,5,4,9/2,4,6,4,4,4,6,4,9/2,4,8,5,5,4,6,4,4,3,5,3,3,3,3,2,3,3,4,2,2,1,1,1,1,1,1,1,3/2,2,2,2,5/2,2,7,4,9/2,3,5,3,7/2,4,6,4,7/2,3,4,2,5/2,2,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,0,1,1,1,1,1,1/2,1,2,2,3/2,1,1,1,3/2,2,0,0,1/2,1,1,1,0,0,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,5/2,2,2,2,3/2,2,2,2,2,2,4,2,2,2,2,2,3/2,2,3,2,3/2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1/2,0,2,1,1,1,0,1,1,1,0,0,1/2,0,0,1,1,1,2,2,3/2,1,1,1,1/2,0,1,1,1/2,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,0,0,1/2,1,1,1,1/2,0,2,2,3/2,2,2,2,2,2,-1,0,1/2,0,0,0,0,0,0,0,1/2,0,0,0,0,0,0,0,1/2,1,2,2,3/2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,5/2,2,4,3,3,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,7/2,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,7/2,4,6,4,9/2,4,5,3,4,4,8,4,4,3,4,3,7/2,3,6,4,4,4,6,4,11/2,6,10 -9,5,5,4,5,3,4,4,6,7/2,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,3,2,3,5/2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,5/2,3,3,5,3,3,5/2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,9/2,7,4,4,3,5,3,4,3,6,7/2,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,8,9/2,5,4,6,9/2,6,7,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,4,8,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,5/2,4,2,2,2,3,2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,7/2,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,10,6,6,9/2,6,4,4,4,7,4,4,7/2,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,11/2,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,23,12,12,8,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,11/2,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,11/2,8,5,6,5,7,4,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,9/2,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,9/2,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,11/2,9,6,9,9,12,6,6,9/2,6,4,4,4,7,4,4,4,6,7/2,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,3/2,2,1,1,1,1,1,1,3/2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,9/2,8 -15,8,8,6,8,5,7,6,9,5,5,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,11/2,4,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,0,0,0,0,-1/2,0,0,0,1,1,1,1,3/2,1,1,1,1,1,1,1,1,1,2,2,0,1,2,2,5/2,2,2,2,4,3,3,3,9/2,3,4,4,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,9/2,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,9/2,3,4,4,5,3,3,3,9/2,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,15/2,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,17/2,6,7,6,13,7,8,6,21/2,8,11,11,21,11,11,8,12,7,8,6,12,7,8,6,9,6,8,7,13,7,8,6,15/2,4,5,5,8,5,6,4,13/2,4,6,6,13,7,8,6,8,5,5,5,8,5,6,4,13/2,4,6,5,8,5,6,4,13/2,4,5,5,7,4,5,5,17/2,6,8,8,12,6,6,4,11/2,4,4,3,6,4,4,3,4,3,3,3,8,5,5,4,5,4,5,4,8,5,6,5,15/2,5,6,6,11,6,6,4,6,4,5,5,7,4,4,3,5,4,6,6,10,6,6,5,15/2,5,6,6,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,10,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,17/2,6,9,9,14,8,8,6,9,6,7,6,9,5,6,5,17/2,6,8,8,14,8,8,6,19/2,6,8,7,12,7,9,8,25/2,8,12,12,17,9,9,7,10,6,7,6,11,6,6,5,17/2,6,8,8,16,8,8,6,19/2,6,8,7,13,8,9,7,12,8,11,11,21,11,11,8,23/2,7,9,8,13,7,8,7,23/2,8,10,10,18,10,10,8,12,8,10,10,19,11,13,11,39/2,14,20,20,39,20,20,14,21,12,14,11,21,11,12,9,29/2,9,12,11,21,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,23,12,13,9,13,7,8,7,12,7,8,6,21/2,7,10,10,18,10,10,8,23/2,7,8,7,12,7,8,8,27/2,9,13,13,23,12,12,8,23/2,7,8,7,14,8,8,6,9,6,7,7,14,8,8,6,8,5,7,6,10,6,8,6,21/2,7,10,10,20,11,11,8,11,7,9,8,12,7,7,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,15,10,14,14,20,10,10,7,19/2,6,7,6,11,6,6,5,17/2,6,7,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,6,6,10,6,6,4,13/2,4,5,4,6,4,4,3,9/2,3,4,4,5,3,3,2,3,2,2,1,1,1,2,2,5/2,2,3,3,9,5,5,4,11/2,4,4,4,7,4,4,3,9/2,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,5/2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1/2,0,0,0,6,4,4,3,9/2,3,3,3,3,2,3,3,4,3,3,3,6,4,4,3,9/2,3,4,3,3,2,2,2,5/2,2,2,2,5,3,3,2,5/2,2,2,2,3,2,2,2,5/2,2,2,2,2,1,1,1,3/2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1/2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,1,1/2,0,0,0,0,0,0,0,-1/2,0,0,0,1,1,2,2,3/2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5/2,2,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,0,0,0,1,3/2,2,2,1,1,1,2,2,2,2,3,3,2,2,2,1,1,1,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,9/2,4,5,5,8,4,4,3,7/2,3,4,4,4,3,3,3,11/2,4,4,4,6,4,4,3,9/2,3,4,4,6,4,4,4,11/2,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,11/2,4,4,4,6,4,4,4,13/2,5,7,7,12 -10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1/2,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,7/2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,6,3,3,3,4,5/2,3,5/2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,4,6,7/2,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,9/2,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,7/2,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,5/2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,6,5,9,6,8,8,14,15/2,8,5,7,4,5,9/2,8,5,5,4,7,9/2,6,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,15/2,14,15/2,8,11/2,8,5,6,11/2,9,5,6,5,8,5,7,7,12,7,7,11/2,8,11/2,7,7,13,8,9,8,13,9,13,13,25,13,13,9,13,8,9,15/2,14,15/2,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,11/2,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,5,7,5,6,5,8,5,5,4,6,4,5,5,10,6,6,9/2,7,4,5,5,9,5,6,6,10,7,9,9,14,7,7,5,7,4,5,4,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,6,7/2,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,5/2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1/2,0,0,0,0,0,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,5/2,3,5/2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,7/2,4,3,5,3,4,4,6,7/2,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8 -14,8,15/2,6,8,5,6,5,9,5,11/2,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,7/2,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,7/2,3,5,3,3,2,2,2,5/2,2,3,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1/2,0,1,1,1,1,2,2,3/2,1,1,1,1,1,1,1,3/2,2,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,5/2,2,3,2,5/2,2,3,2,2,2,3,2,7/2,3,6,4,4,3,4,3,7/2,4,5,3,3,3,4,3,9/2,4,5,3,7/2,3,4,2,5/2,2,4,3,3,2,3,2,5/2,2,4,2,2,2,3,2,5/2,2,4,3,7/2,3,5,3,4,4,8,4,9/2,4,5,3,4,3,6,4,7/2,3,4,3,7/2,4,4,3,3,3,4,3,4,4,6,4,4,4,7,5,13/2,6,12,6,13/2,5,8,5,6,5,8,5,11/2,4,7,5,7,7,13,7,15/2,6,8,5,7,6,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,15/2,6,9,6,15/2,7,12,7,7,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,12,7,7,5,7,4,11/2,4,7,4,9/2,4,6,4,9/2,4,8,5,5,4,6,4,9/2,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,5,4,5,3,4,4,7,4,11/2,4,6,4,13/2,6,10,6,6,4,6,4,5,4,8,4,9/2,4,6,4,5,5,10,6,11/2,4,7,5,6,6,11,7,8,7,12,8,12,12,20,10,21/2,7,10,6,7,6,11,6,13/2,5,9,6,15/2,7,12,7,7,5,8,5,6,5,9,5,11/2,5,8,6,8,8,14,8,15/2,5,7,4,11/2,5,9,5,6,5,7,5,7,7,12,7,15/2,6,8,6,15/2,7,12,7,17/2,7,12,8,11,11,16,8,8,6,9,6,13/2,6,10,6,6,5,8,6,8,8,14,8,15/2,6,8,5,7,6,11,6,15/2,6,11,8,21/2,10,19,10,21/2,7,11,7,17/2,8,12,7,8,7,10,7,9,9,18,10,21/2,8,12,8,10,10,18,11,13,11,18,13,19,19,35,18,37/2,13,18,10,25/2,10,19,10,11,8,14,9,23/2,11,20,11,11,8,12,8,19/2,8,15,9,10,8,12,8,11,11,21,11,11,8,11,6,15/2,6,11,6,7,6,10,7,19/2,10,17,9,10,7,10,6,15/2,7,12,7,8,7,12,9,13,13,20,10,21/2,8,10,6,15/2,7,12,7,15/2,6,8,5,7,7,13,7,15/2,6,8,5,6,5,9,6,7,6,9,6,9,9,19,10,21/2,7,10,6,8,7,12,6,13/2,5,8,5,7,7,14,8,15/2,6,9,6,7,7,12,7,17/2,8,13,9,13,13,20,10,21/2,7,10,6,7,6,11,6,6,5,8,5,13/2,6,10,6,11/2,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,9/2,4,6,4,4,3,4,3,7/2,4,5,3,7/2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,9/2,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1/2,0,0,0,1/2,1,1,1,1,1,2,2,3/2,2,2,2,3/2,2,1,1,1,1,0,0,1/2,0,6,4,7/2,3,4,3,3,3,3,2,5/2,2,3,2,7/2,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,2,5/2,2,3,2,3/2,2,2,1,1,1,2,2,2,2,3,2,3/2,2,2,1,1,1,1,1,1/2,0,0,1,1,1,2,2,2,2,1,1,1/2,0,1,1,1,1,1,1,1,1,1,1,3/2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,1/2,1,0,0,0,0,1,1,1,1,1,1,1/2,1,2,2,2,1,1,1,3/2,2,3,2,3,3,2,2,3/2,1,2,2,5/2,2,3,2,5/2,2,3,2,5/2,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,9/2,3,4,3,4,3,5,3,7/2,3,5,3,4,4,6,4,7/2,3,4,3,7/2,4,5,3,4,3,5,3,4,4,9,5,11/2,4,7,4,11/2,5,8,4,9/2,4,6,4,5,5,8,4,9/2,3,5,3,7/2,3,5,3,4,4,6,4,13/2,6,12 -14,8,8,6,8,5,6,5,9,5,6,9/2,6,4,5,5,8,5,5,4,5,7/2,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,3/2,2,3/2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,5/2,4,3,5,3,3,5/2,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,2,3,2,3,5/2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,7/2,5,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,4,6,9/2,6,6,11,6,6,5,7,5,6,5,8,5,6,9/2,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,4,5,9/2,7,9/2,5,4,6,4,6,6,12,7,7,5,7,9/2,6,9/2,7,4,4,7/2,5,7/2,4,4,7,4,5,4,5,7/2,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,4,4,4,6,4,5,5,10,6,6,9/2,7,5,6,6,11,7,8,7,12,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,9/2,6,5,8,5,6,5,7,5,7,7,12,7,7,11/2,8,11/2,7,7,12,7,8,7,11,8,11,11,16,8,8,6,9,11/2,6,6,10,6,6,5,8,6,8,7,13,7,7,5,8,5,6,6,10,6,8,13/2,11,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,9,9,17,19/2,10,8,12,8,10,19/2,17,10,12,21/2,18,25/2,18,18,34,35/2,18,12,18,10,12,10,18,10,11,8,13,8,11,11,20,11,11,8,12,15/2,9,8,14,8,9,7,11,8,11,11,20,11,11,8,11,13/2,8,7,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,17/2,12,12,20,10,10,15/2,10,6,8,7,12,7,7,11/2,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,17/2,12,12,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,9/2,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,5/2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,6,4,4,3,4,3,3,2,3,2,2,2,3,5/2,4,4,6,3,3,3,4,3,3,3,4,5/2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,3/2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,8,4,4,7/2,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11 -26,14,14,10,15,9,11,9,16,9,9,7,10,6,8,8,31/2,8,8,6,8,5,6,6,10,6,7,5,8,6,9,9,11,6,5,4,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,11,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,4,6,3,3,2,2,2,2,2,3,2,1,1,1,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,5/2,2,2,2,2,2,3,3,4,3,4,4,7,5,7,7,8,5,5,3,4,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,8,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,15/2,4,5,4,5,4,5,5,8,5,5,4,7,5,8,8,15,8,8,6,9,5,6,5,8,5,6,5,7,4,5,5,17/2,5,6,5,8,6,8,7,13,8,9,7,12,8,12,12,21,11,12,9,13,8,10,8,14,8,9,8,14,9,13,13,24,13,14,10,15,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,11,13,11,18,10,11,9,14,9,12,12,43/2,11,11,8,12,7,9,8,15,8,9,7,12,8,12,12,22,12,12,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,6,9,6,8,8,16,9,11,9,16,11,15,15,20,11,11,8,12,7,8,7,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,18,10,10,7,11,7,8,7,13,8,9,7,11,7,10,10,35/2,10,10,8,12,8,11,11,20,12,14,12,21,14,21,21,37,19,19,13,20,12,14,12,20,11,13,10,16,10,14,13,49/2,13,14,10,15,9,11,10,18,10,12,10,16,11,15,15,25,13,14,10,16,10,12,10,18,10,11,9,15,10,13,12,45/2,12,13,9,14,9,11,11,20,12,14,12,21,14,21,21,31,16,16,11,16,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,16,10,12,11,19,11,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,13,11,18,12,18,17,33,18,20,15,24,15,20,19,36,20,23,19,34,23,34,34,66,34,34,23,35,20,24,20,35,19,21,16,25,16,22,20,38,19,19,13,20,12,14,13,23,13,14,12,20,14,20,20,38,20,20,14,21,12,15,13,23,13,14,11,18,12,16,16,63/2,16,16,12,18,11,14,13,25,14,17,14,25,16,23,23,38,20,20,14,20,11,13,11,20,11,12,9,15,10,14,13,47/2,13,14,10,15,9,12,11,21,12,13,11,18,12,17,17,38,19,19,13,20,11,13,11,20,11,13,10,16,10,14,14,26,14,14,10,15,10,13,12,22,13,15,13,22,15,22,23,37,19,19,14,21,12,15,12,21,11,12,9,14,9,11,10,37/2,10,11,8,12,7,9,8,15,9,10,8,12,8,11,10,16,9,9,6,9,5,6,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,16,9,9,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,7/2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,9/2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,3/2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,1/2,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,6,4,4,3,5,4,5,5,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,6,6,10,5,5,4,6,4,6,6,23/2,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,29/2,8,9,7,10,6,8,7,12,7,8,7,12,8,12,11,21 -14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,5,5,6,7/2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,5/2,4,2,2,2,2,2,2,2,2,3/2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,9/2,6,4,4,3,4,3,3,3,4,3,3,2,3,5/2,3,3,4,5/2,3,2,3,2,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,9/2,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,13/2,12,13/2,6,5,7,9/2,5,9/2,8,5,5,4,5,7/2,4,4,8,4,4,7/2,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,7/2,5,7/2,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,6,11/2,9,6,8,8,14,15/2,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,11/2,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,13/2,8,7,11,6,7,6,10,7,10,10,17,10,11,8,13,8,11,10,19,11,12,10,18,12,18,18,34,18,18,25/2,18,11,13,11,18,10,11,17/2,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,8,7,14,8,9,8,13,9,13,13,20,11,11,8,11,6,7,6,11,6,7,11/2,8,6,8,7,12,7,8,6,8,5,7,6,11,6,7,6,10,7,9,9,20,21/2,10,7,11,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,11/2,7,7,12,7,8,7,12,8,12,12,20,10,10,8,11,7,8,7,12,13/2,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,5/2,3,3,5,3,4,3,4,3,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,5/2,3,2,3,3,4,3,3,3,4,3,3,3,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,5,7/2,4,4,7,4,5,4,7,5,7,6,11 -15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,5,5,3,4,3,7/2,3,7,4,5,4,5,4,5,5,6,4,7/2,2,4,3,3,3,4,3,7/2,3,5,4,9/2,4,7,4,9/2,4,5,3,4,4,7,4,4,4,6,4,11/2,6,8,5,5,4,4,3,3,3,4,3,3,3,3,2,5/2,2,4,2,5/2,2,2,2,3/2,2,3,2,3/2,1,1,1,3/2,2,2,2,3/2,2,2,1,1,1,1,1,1,1,1,1,3/2,2,2,2,3/2,2,1,1,3/2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,3,4,3,4,3,6,4,7/2,2,3,2,7/2,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,5/2,2,3,2,3,3,5,3,4,3,4,3,9/2,5,9,5,5,4,5,3,7/2,3,4,3,3,3,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,7,5,13/2,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,15/2,6,9,6,7,6,12,7,8,7,12,8,12,12,22,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,4,11/2,5,9,5,11/2,4,6,4,6,7,13,7,13/2,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,11/2,4,6,4,5,5,10,6,6,5,9,6,9,8,11,6,7,5,7,4,5,5,8,5,5,4,5,4,9/2,4,7,4,9/2,4,5,3,4,4,6,4,5,4,6,5,7,7,11,6,13/2,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,13/2,6,12,7,17/2,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,13/2,6,9,6,17/2,8,15,8,17/2,6,10,6,7,6,10,6,7,6,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,19/2,6,10,6,7,6,11,6,6,5,8,6,15/2,8,13,7,8,6,8,5,13/2,6,11,6,15/2,6,10,7,21/2,11,19,10,21/2,8,12,7,17/2,8,12,7,15/2,6,10,7,11,11,18,10,11,9,13,8,23/2,11,20,11,13,11,19,13,39/2,20,36,19,19,13,19,11,13,11,19,10,23/2,9,14,9,12,11,21,11,11,8,12,7,17/2,8,13,8,17/2,7,11,8,11,11,22,12,23/2,8,12,7,9,7,14,8,9,7,10,7,10,10,18,10,10,7,11,7,17/2,8,15,9,10,8,14,10,14,14,22,12,12,8,12,7,8,7,13,7,8,6,9,6,8,8,13,7,8,6,8,5,7,7,11,6,15/2,6,10,7,10,10,22,12,23/2,8,11,7,8,7,12,7,7,6,10,6,17/2,8,14,8,17/2,6,8,6,15/2,7,12,7,9,8,12,8,25/2,13,21,11,11,8,12,7,17/2,7,13,7,7,5,9,6,7,6,11,6,6,5,7,5,6,5,9,5,5,4,7,5,13/2,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,7/2,3,3,2,3,3,5,3,3,2,4,3,3,3,9,5,5,3,5,3,7/2,4,6,3,3,2,3,2,3,3,3,2,5/2,2,2,2,2,2,3,2,5/2,2,2,2,5/2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1/2,0,7,4,4,3,4,3,3,3,3,2,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,5/2,2,2,2,2,1,1,1,1,1,0,0,1/2,1,0,0,1/2,0,0,1,1,1,1,1,1/2,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,0,-1/2,0,0,0,-1/2,0,1,1,1,1,1,1,3/2,2,2,2,3/2,1,1,1,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1/2,1,1,1,1/2,1,1,1,3/2,2,1,1,2,2,2,2,5/2,2,3,2,5/2,2,3,2,7/2,4,4,3,3,3,4,3,3,3,4,2,5/2,2,3,3,4,4,5,3,7/2,3,4,3,7/2,4,7,4,4,4,6,4,11/2,6,9,5,11/2,4,5,3,7/2,3,6,4,7/2,3,4,3,7/2,4,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,11/2,4,6,4,5,4,6,4,7/2,3,4,3,9/2,4,8,5,5,4,5,4,9/2,4,7,4,5,4,7,5,15/2,7,12 -11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,7/2,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,5/2,4,5/2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,5,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,5/2,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,9/2,7,5,6,5,9,11/2,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,7/2,5,5,9,5,5,4,6,4,4,7/2,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,9/2,5,4,6,5,7,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,4,5,5,9,11/2,6,5,9,13/2,10,10,16,17/2,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,14,8,8,5,7,9/2,5,5,8,5,5,4,6,4,6,6,10,11/2,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,6,8,8,14,8,8,13/2,10,13/2,9,8,14,8,10,8,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,10,7,9,17/2,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,17/2,8,6,9,11/2,7,11/2,10,6,7,5,8,6,8,7,13,7,8,11/2,8,5,6,6,11,7,8,6,10,15/2,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,9/2,6,4,5,5,8,5,6,5,8,11/2,8,8,16,17/2,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,6,4,6,5,9,6,7,6,10,7,10,10,16,9,9,13/2,10,6,6,5,10,11/2,6,4,7,5,6,5,8,5,5,4,5,7/2,4,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,5/2,3,5/2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,5/2,3,3,5,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1/2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1/2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,9/2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,7/2,5,3,4,7/2,6,4,6,6,10 -18,10,10,7,19/2,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,11/2,4,4,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,5,5,9,5,6,4,11/2,4,5,5,8,5,5,4,13/2,4,6,6,11,6,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,5/2,2,2,2,3,2,2,2,3/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7/2,3,4,5,7,4,4,3,9/2,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,7/2,2,3,3,5,3,4,3,9/2,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,7/2,3,4,4,5,3,4,3,4,3,3,3,7,4,5,4,13/2,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,11/2,4,4,4,6,4,4,3,9/2,4,5,5,8,5,5,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,9,6,8,8,16,9,9,7,21/2,7,9,8,15,9,10,8,27/2,10,14,14,26,13,13,9,13,8,9,8,13,7,8,6,19/2,6,8,8,15,8,8,6,15/2,5,6,6,9,5,6,5,15/2,5,7,7,14,8,8,6,15/2,5,6,5,9,5,6,5,15/2,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,19/2,6,9,9,13,7,7,5,8,5,7,6,10,6,6,4,13/2,4,6,6,9,5,5,4,13/2,4,4,4,7,5,6,5,15/2,5,7,7,13,7,7,5,15/2,5,6,6,11,6,7,6,9,6,8,7,11,6,7,5,8,5,7,7,15,9,10,8,29/2,10,15,15,25,13,14,10,29/2,8,9,8,14,8,9,7,21/2,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,19/2,7,10,10,17,9,10,7,21/2,6,8,7,13,7,8,6,10,6,8,8,16,8,8,6,9,6,8,7,13,8,10,8,27/2,10,14,14,22,12,12,8,11,7,9,8,13,7,8,6,9,6,9,9,15,8,9,6,19/2,6,8,7,14,8,9,7,12,8,12,12,22,12,12,9,14,8,10,9,14,8,9,8,13,9,12,12,22,12,12,10,31/2,10,13,12,22,13,15,13,22,15,23,23,43,22,22,15,45/2,13,16,14,23,12,13,10,33/2,10,14,13,24,12,12,8,25/2,8,10,9,15,8,9,8,25/2,8,12,12,25,13,14,10,27/2,8,10,8,16,9,10,8,13,9,12,11,21,11,11,8,12,8,10,9,17,10,11,10,33/2,11,16,16,27,14,14,10,29/2,9,11,9,16,9,9,7,23/2,8,10,10,16,9,9,7,21/2,6,8,7,13,8,9,8,25/2,8,12,12,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,8,15,9,10,9,31/2,11,16,16,26,14,14,10,31/2,9,10,8,15,8,9,7,10,7,9,8,13,7,8,6,8,5,7,6,10,6,6,5,15/2,6,8,7,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,5,3,4,3,4,3,4,3,9,5,5,4,9/2,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,5/2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,3/2,1,1,1,0,0,0,0,0,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,5/2,2,2,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,5/2,2,3,3,3,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,3/2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1/2,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1/2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1/2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,5/2,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,4,3,4,3,3,3,9/2,3,4,4,6,4,4,3,9/2,3,4,4,7,4,4,4,13/2,4,6,6,13,7,7,5,7,4,4,3,5,3,3,3,9/2,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,9/2,3,4,4,11,6,7,5,15/2,5,6,5,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,8,5,6,5,9,6,9,9,16 -11,6,6,9/2,6,4,4,4,6,4,4,3,5,7/2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,5/2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,5/2,3,2,3,5/2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,5/2,4,3,3,3,4,3,3,3,4,3,3,2,3,5/2,3,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,7/2,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,9,11/2,6,5,9,13/2,10,19/2,16,9,9,6,9,5,6,5,9,5,6,5,6,9/2,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,9/2,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,11/2,8,8,14,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,17/2,10,9,15,8,9,7,10,7,9,17/2,15,8,8,6,8,5,7,6,10,11/2,6,5,8,6,8,8,16,17/2,9,6,9,11/2,7,11/2,10,6,6,5,8,11/2,7,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,9/2,7,5,6,6,11,6,6,5,7,9/2,6,5,9,11/2,6,6,10,7,10,10,17,9,9,7,10,6,6,5,10,11/2,6,5,6,9/2,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,5/2,2,2,2,2,2,2,4,5/2,3,2,3,2,3,5/2,6,3,3,5/2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,7/2,4,3,3,5/2,4,5/2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,5/2,3,3,6,7/2,4,3,4,3,4,7/2,6,4,4,7/2,6,4,6,6,11 -15,8,17/2,6,8,5,11/2,5,8,5,11/2,4,7,5,6,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,9/2,3,4,3,7/2,3,4,2,5/2,2,3,2,3,3,4,2,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3/2,1,2,2,3/2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,7/2,4,7,4,4,3,4,2,5/2,2,3,2,2,2,3,2,5/2,2,5,3,3,2,4,2,5/2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,7/2,2,4,3,3,3,6,4,7/2,2,4,3,3,3,5,4,9/2,4,6,4,6,5,10,6,11/2,4,5,3,3,3,6,4,4,3,4,3,4,3,5,3,7/2,3,4,3,4,4,6,4,4,4,6,4,13/2,7,14,8,15/2,5,7,4,11/2,5,8,5,6,5,7,5,13/2,7,14,8,8,6,9,6,7,7,13,8,9,7,11,8,12,12,21,11,23/2,8,12,7,17/2,7,12,7,7,5,8,6,15/2,7,13,7,7,5,6,4,6,5,8,5,5,5,7,5,13/2,6,12,6,6,4,6,4,5,4,7,4,9/2,4,5,4,5,5,9,5,11/2,4,6,4,11/2,5,9,5,11/2,5,8,5,7,7,11,6,13/2,5,7,5,6,5,7,4,4,3,6,4,9/2,4,9,5,5,4,6,4,9/2,4,7,4,5,4,7,5,13/2,6,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,8,5,7,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,25/2,12,22,12,23/2,8,12,7,15/2,7,12,7,15/2,6,8,6,15/2,7,14,8,8,6,9,5,6,6,10,6,13/2,6,8,6,17/2,8,15,8,9,6,10,6,7,6,10,6,13/2,5,8,5,7,6,13,7,13/2,5,8,5,6,6,11,7,8,7,12,8,23/2,12,20,11,11,7,10,6,7,6,11,6,13/2,5,8,6,15/2,7,12,7,15/2,6,8,5,13/2,6,11,7,8,6,10,7,21/2,10,19,10,10,8,12,7,8,7,12,7,15/2,6,11,7,10,10,19,10,11,8,12,8,21/2,10,18,10,25/2,11,19,13,19,19,36,19,19,13,20,12,27/2,12,20,11,12,9,14,9,12,11,19,10,21/2,8,10,7,9,8,13,7,8,7,11,8,11,11,21,11,11,8,12,7,9,7,14,8,17/2,6,10,7,9,9,16,9,19/2,7,10,6,8,7,14,8,9,8,14,10,27/2,14,24,12,25/2,9,14,8,10,8,13,7,15/2,6,10,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,12,8,21/2,10,20,10,21/2,8,11,7,8,7,11,6,13/2,5,9,6,8,7,14,8,17/2,6,9,6,8,7,12,7,8,7,13,9,13,13,24,12,25/2,9,13,7,8,7,13,7,8,6,8,6,15/2,7,10,6,6,5,7,4,5,5,8,5,11/2,4,6,4,13/2,6,11,6,6,4,6,4,4,3,5,3,7/2,3,4,3,4,3,5,3,5/2,2,3,2,2,2,5,3,7/2,3,4,3,7/2,3,7,4,4,3,4,3,7/2,3,6,4,7/2,2,3,2,5/2,2,4,3,3,2,3,2,5/2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3/2,2,1,1,3/2,1,2,2,3/2,2,2,2,2,1,1,1,3/2,2,1,1,1,1,2,2,3/2,1,4,2,5/2,2,2,2,5/2,2,2,1,1,1,2,2,3/2,2,5,3,5/2,2,2,2,2,2,3,2,3/2,1,2,2,3/2,2,3,2,2,2,2,2,5/2,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1/2,0,0,0,0,0,1,1,1/2,0,-1,0,1/2,1,1,1,3/2,2,2,1,1,1,0,0,0,0,0,0,-1/2,0,-1,0,-1,-1,1,1,1,1,0,1,3/2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1/2,0,2,2,3/2,1,1,1,1,1,1,1,1,1,0,0,1/2,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,5/2,2,3,2,3,2,3,3,4,4,3,2,2,2,3,2,5/2,2,4,3,3,3,4,3,7/2,4,5,3,4,3,4,3,7/2,4,5,3,4,4,5,4,6,6,11,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,4,7/2,2,3,2,3,3,4,3,3,3,4,3,7/2,4,9,5,5,4,6,4,4,4,6,4,7/2,3,4,3,7/2,4,8,4,9/2,4,5,4,9/2,4,8,5,11/2,4,8,6,8,8,15 -14,8,8,6,8,5,6,5,8,5,6,4,6,4,5,5,9,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,5/2,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,6,4,5,5,8,5,5,9/2,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,9/2,6,4,6,5,8,5,5,9/2,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,9/2,6,4,6,5,9,5,6,9/2,7,5,6,6,10,6,6,5,7,5,7,7,12,7,8,7,11,8,12,12,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,13/2,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,7,10,19/2,18,10,10,15/2,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,11,18,10,10,7,10,13/2,8,7,12,7,8,7,11,8,11,10,19,10,10,7,11,13/2,8,7,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,13,15/2,9,8,13,9,12,13,23,12,12,9,13,8,9,8,12,7,8,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,3,4,5/2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,3/2,2,1,1,1,1,3/2,2,2,2,1,1,1,2,2,2,3/2,2,3/2,2,3/2,1,1,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1/2,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,3/2,2,2,2,2,3,2,3,2,3,5/2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,7/2,5,4,5,5,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,7/2,5,3,4,4,7,4,5,4,7,5,7,7,14 -27,14,14,10,16,9,11,9,31/2,8,9,7,10,6,8,8,17,9,9,7,10,6,7,6,10,6,7,5,8,6,9,9,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,13,7,8,6,8,5,6,6,21/2,6,7,5,8,5,7,7,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,9/2,3,3,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,3,3,5,3,3,3,6,4,4,3,4,3,4,4,15/2,4,5,5,8,5,7,7,11,6,6,5,7,5,6,5,17/2,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,9,16,9,9,6,8,5,6,6,19/2,6,6,4,6,4,6,6,10,6,6,5,7,5,6,6,19/2,6,7,6,11,8,11,11,23,12,12,8,12,8,10,8,29/2,8,10,8,12,8,12,11,25,13,14,11,17,10,13,12,43/2,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,8,11,6,7,6,11,6,7,5,8,6,9,9,16,9,9,7,10,6,8,8,29/2,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,7,11,8,11,11,19,10,11,8,11,7,9,9,16,9,9,7,11,7,10,10,18,10,11,9,14,9,13,12,22,13,15,13,23,16,23,22,39,20,20,13,19,11,14,12,20,11,11,8,13,9,12,11,24,13,13,9,14,8,10,10,35/2,10,11,9,15,10,14,14,27,14,14,10,15,9,12,10,18,10,10,7,11,7,10,10,20,11,12,9,14,9,11,10,18,11,13,11,18,13,19,19,35,18,17,12,17,10,12,10,18,10,10,8,13,9,12,12,22,12,13,10,15,9,11,10,18,10,12,10,17,12,17,17,35,18,18,13,20,12,15,13,23,13,14,11,18,12,17,17,34,18,19,15,24,15,19,18,67/2,19,23,19,34,23,33,33,64,33,33,23,34,19,23,20,35,19,21,16,25,16,22,20,34,17,17,12,18,11,14,13,47/2,13,15,12,20,13,19,19,36,19,19,13,20,12,14,12,45/2,12,14,10,16,11,15,14,28,15,16,11,17,10,13,12,23,13,15,13,22,15,23,23,44,23,23,16,24,14,16,14,47/2,12,13,10,16,10,14,14,25,13,14,10,15,9,12,11,41/2,12,14,11,18,12,18,18,36,19,19,13,18,10,12,11,19,10,11,8,13,9,12,12,26,14,15,11,17,11,14,12,22,13,15,13,23,16,23,22,43,22,22,15,21,12,15,12,43/2,12,12,9,13,9,12,11,18,10,10,7,11,7,8,8,14,8,8,7,11,7,10,10,19,10,9,6,9,6,7,6,9,5,5,4,5,4,5,5,7,4,5,4,6,4,4,4,15/2,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,5/2,2,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,6,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,8,4,4,3,3,2,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,3,2,2,2,2,1,1,0,-1/2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1/2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1/2,0,0,0,0,1,1,1,1,1,2,2,4,3,3,3,11/2,4,4,3,5,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,5,8,5,5,4,5,4,5,5,10,5,5,3,4,3,4,4,11/2,3,3,3,4,3,5,5,14,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,26 -15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,10,11/2,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,9/2,5,4,5,3,4,4,6,4,4,3,5,3,4,9/2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,5/2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,5/2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,7,13/2,12,13/2,7,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,10,11/2,6,4,6,4,5,9/2,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,5,9,5,6,4,7,5,6,6,11,6,6,5,8,5,7,7,13,8,9,8,13,9,13,13,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,8,11/2,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,11/2,7,6,10,6,6,9/2,7,9/2,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,11/2,7,6,10,6,7,6,10,7,10,10,20,10,10,15/2,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,9,14,9,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,13,11,20,11,12,9,14,9,12,11,19,10,10,7,10,13/2,8,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,9,6,9,8,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,25,13,13,9,14,8,9,8,14,15/2,8,6,10,6,8,8,14,8,8,6,9,11/2,7,7,12,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,11/2,7,7,15,8,9,7,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,7,9,15/2,12,7,7,5,8,5,7,7,10,6,6,9/2,6,4,5,5,8,5,5,4,7,9/2,6,6,11,6,5,4,5,7/2,4,4,6,3,3,5/2,3,5/2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,5/2,3,2,3,3,5,3,3,2,3,2,3,3,4,5/2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,3/2,1,1,1,1,1,3/2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1/2,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,5/2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,7/2,4,4,5,4,6,11/2,11,6,6,4,6,4,4,3,5,3,3,5/2,3,5/2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,7/2,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,9/2,8,5,5,5,8,11/2,8,8,15 -18,10,19/2,7,10,6,7,6,11,6,13/2,5,7,5,13/2,6,12,6,13/2,5,6,4,9/2,4,7,4,5,4,6,4,6,6,9,5,5,4,4,3,4,4,6,4,4,3,4,3,9/2,5,9,5,5,4,5,3,4,4,6,4,9/2,4,5,4,11/2,6,11,6,6,4,5,4,9/2,4,5,3,7/2,3,4,3,7/2,4,5,3,5/2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,5/2,2,3,2,2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,5/2,2,4,3,4,4,7,4,4,3,5,3,7/2,2,5,3,3,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,6,4,7/2,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,7/2,3,4,3,4,4,8,5,5,4,6,4,9/2,4,7,4,9/2,4,6,4,13/2,6,10,6,6,4,6,4,9/2,4,7,4,4,3,4,3,9/2,4,7,4,9/2,3,4,3,4,4,7,4,11/2,5,8,6,15/2,8,15,8,8,6,8,5,7,6,10,6,13/2,6,8,6,8,8,16,9,10,7,11,7,10,9,14,8,19/2,8,14,10,29/2,14,26,14,27/2,10,14,8,19/2,8,14,8,9,7,11,7,17/2,8,15,8,17/2,6,8,5,6,6,9,6,13/2,5,8,5,7,7,13,7,8,6,8,5,11/2,5,8,4,9/2,4,6,4,6,6,10,6,6,5,6,4,11/2,5,9,6,13/2,6,8,6,17/2,8,15,8,17/2,6,8,5,6,5,8,5,5,4,6,4,5,5,11,6,13/2,5,7,4,11/2,5,9,5,11/2,4,7,5,8,8,14,8,15/2,6,8,5,6,6,11,6,13/2,5,8,6,15/2,8,13,7,15/2,6,10,6,8,8,15,9,21/2,9,16,11,15,15,26,14,27/2,9,14,8,19/2,8,14,8,8,6,9,6,17/2,8,15,8,17/2,6,9,6,15/2,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,15/2,7,12,7,7,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,24,12,12,8,12,7,17/2,8,12,7,15/2,6,9,6,17/2,8,15,8,17/2,6,10,6,8,7,12,7,17/2,7,11,8,23/2,12,23,12,25/2,9,13,8,19/2,8,16,9,10,8,13,8,23/2,12,23,12,27/2,10,16,10,13,12,22,13,31/2,13,22,15,22,22,43,22,22,15,22,13,15,13,23,13,14,11,17,11,14,13,23,12,12,8,12,8,10,9,16,9,21/2,8,14,9,13,13,24,13,27/2,10,14,8,10,9,16,9,19/2,7,11,7,10,10,18,10,10,8,12,8,19/2,9,16,9,21/2,9,15,10,31/2,16,31,16,16,11,16,9,11,10,16,9,19/2,8,12,8,10,10,17,9,19/2,7,10,6,17/2,8,14,8,9,7,12,8,25/2,12,24,12,25/2,8,12,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,21/2,9,16,11,31/2,15,29,15,29/2,10,15,9,21/2,9,15,8,8,6,9,6,17/2,8,12,7,7,5,7,4,11/2,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,7/2,4,5,3,7/2,3,4,3,4,4,5,3,7/2,3,4,3,4,3,7,4,4,3,4,3,7/2,3,5,3,7/2,3,3,2,3,3,4,2,5/2,2,3,2,3,3,4,3,3,2,3,2,7/2,4,5,3,5/2,2,3,2,5/2,2,4,2,2,2,2,2,3/2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,4,2,5/2,2,2,2,3/2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,2,2,2,2,3,2,5/2,2,3,2,5/2,2,3,2,2,2,2,1,1,1,1,1,1/2,0,0,0,0,0,0,1,1,1,1,1,1/2,0,-1,0,0,0,0,0,1/2,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-3/2,-1,-1,0,0,0,0,0,0,0,0,0,1/2,0,0,0,1/2,0,0,0,1/2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1/2,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,13/2,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,7/2,4,7,4,7/2,3,3,2,5/2,2,4,2,5/2,2,4,3,7/2,4,9,5,5,4,6,4,9/2,4,7,4,4,3,5,4,9/2,4,8,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,17 -15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,11/2,10,11/2,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,9/2,5,7/2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,9/2,9,5,5,4,4,3,4,3,5,3,3,5/2,3,5/2,3,3,4,5/2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,5/2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,7/2,5,4,6,11/2,8,5,5,4,5,7/2,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,9/2,6,7,13,7,7,5,7,9/2,6,5,8,5,5,5,7,5,7,7,14,8,8,6,9,6,8,15/2,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,13,7,7,5,7,4,5,5,8,5,6,9/2,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,7/2,5,5,9,5,5,4,6,4,5,9/2,8,5,5,5,7,5,7,7,13,7,8,11/2,7,9/2,5,5,7,4,4,7/2,5,4,5,5,9,5,6,4,6,4,5,9/2,8,9/2,5,4,6,5,7,7,12,13/2,6,5,7,5,6,5,9,5,6,4,7,5,6,13/2,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,22,12,12,8,12,7,8,7,11,13/2,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,6,10,6,8,7,11,15/2,11,11,20,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,11/2,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,13,15/2,8,7,11,7,10,10,19,10,11,17/2,14,17/2,11,10,18,21/2,12,11,18,12,18,18,35,18,18,25/2,18,11,13,11,19,11,12,9,14,9,12,11,19,10,10,7,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,15,8,9,7,10,13/2,8,8,14,8,9,8,13,9,13,13,26,14,14,19/2,14,8,9,8,14,8,8,13/2,10,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,10,10,20,10,10,7,10,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,24,25/2,12,17/2,12,15/2,9,8,12,7,7,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,9/2,7,5,7,13/2,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,5/2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3/2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,11/2,12,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,7/2,6,7/2,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,4,5,9/2,8,11/2,8,8,15 -25,13,14,10,29/2,8,10,8,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,10,6,6,5,8,6,9,9,13,7,8,6,15/2,5,6,6,8,5,6,5,7,5,7,6,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,15/2,5,6,5,9,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,3,2,3,2,2,2,5/2,2,2,2,5,3,3,3,5,3,4,4,4,3,3,3,11/2,4,6,6,10,5,5,4,5,3,3,3,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,15/2,5,7,7,12,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,6,5,17/2,6,9,9,14,8,8,6,17/2,5,6,6,10,6,6,5,7,5,7,6,10,6,6,4,13/2,4,6,6,10,6,7,6,21/2,8,12,12,23,12,12,8,12,7,9,8,13,8,9,8,25/2,8,12,12,24,13,13,10,31/2,10,13,12,22,12,14,12,21,14,21,21,39,20,20,14,41/2,12,15,13,21,11,12,10,31/2,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,23/2,8,10,10,19,10,10,8,23/2,7,8,7,12,7,7,5,8,6,8,8,15,8,8,6,19/2,6,8,7,13,8,9,8,25/2,8,12,12,23,12,13,9,13,8,9,8,12,7,7,6,9,6,8,8,16,8,8,6,19/2,6,8,7,13,7,8,6,21/2,7,10,11,21,11,11,8,23/2,7,9,8,16,9,9,7,11,8,11,11,20,11,12,9,14,9,12,11,20,12,14,12,43/2,14,21,21,40,20,20,14,39/2,12,14,12,19,10,11,8,27/2,9,12,12,21,11,12,8,25/2,8,10,9,16,9,11,9,29/2,10,14,14,24,13,14,10,29/2,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,27/2,8,10,9,18,10,12,10,37/2,12,18,18,35,18,18,12,37/2,10,12,10,19,10,11,9,14,9,12,12,22,12,13,9,14,9,11,10,17,10,11,10,33/2,11,16,16,33,17,18,12,18,11,14,12,23,13,14,11,37/2,12,17,17,34,18,19,14,47/2,15,20,18,32,18,21,18,32,22,32,32,62,32,32,22,65/2,19,23,20,33,18,19,15,24,15,20,19,34,18,18,13,39/2,12,16,14,24,14,16,13,43/2,14,19,19,36,19,19,14,41/2,12,14,12,22,12,13,10,15,10,14,14,27,14,15,11,35/2,11,14,13,24,14,17,14,24,16,23,23,46,24,24,16,49/2,14,17,14,24,13,14,11,17,11,15,14,26,14,14,10,29/2,9,12,11,20,11,13,10,17,12,17,17,35,18,18,12,35/2,10,12,10,20,11,11,8,27/2,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,23,15,22,22,43,22,22,15,43/2,12,15,13,21,11,12,9,27/2,9,12,11,18,10,10,7,21/2,6,8,7,13,8,9,8,25/2,8,12,11,19,10,10,7,21/2,6,8,6,10,6,6,4,13/2,4,5,5,7,4,4,4,13/2,4,4,4,8,5,5,4,6,4,5,5,10,6,6,4,13/2,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,9/2,3,4,4,4,3,3,3,9/2,3,4,5,8,5,5,3,4,3,3,3,6,4,4,3,3,2,2,2,5,3,3,3,9/2,3,4,3,4,2,2,2,5/2,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,7/2,2,3,3,7,4,4,3,9/2,2,2,2,5,3,2,2,2,2,2,2,5,3,2,2,5/2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1/2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-3/2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,2,7/2,3,4,3,6,4,4,4,11/2,4,5,5,7,4,5,4,11/2,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,9,20,10,10,7,9,6,7,6,10,6,6,4,13/2,4,6,5,8,4,4,3,5,3,4,4,5,3,4,4,11/2,4,6,6,12,7,7,5,15/2,5,6,5,9,5,5,4,13/2,4,6,6,12,7,8,6,10,7,9,8,12,7,8,7,25/2,9,14,14,26 -17,9,10,7,10,6,7,6,11,6,7,11/2,8,5,7,13/2,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,9/2,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,5/2,3,3,5,3,3,5/2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,7/2,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,6,6,9,11/2,6,11/2,8,6,8,8,16,9,9,7,10,7,9,8,15,9,10,9,14,10,14,29/2,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,8,5,6,6,9,11/2,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,16,17/2,9,6,9,5,6,11/2,9,5,5,4,7,5,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,7,15/2,15,8,8,6,8,5,6,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,10,6,8,7,11,6,7,5,8,11/2,7,7,12,7,7,6,9,6,7,6,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,16,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,22,12,12,17/2,13,8,10,8,15,9,10,8,12,8,12,12,23,12,13,10,16,10,13,12,21,12,14,12,22,15,22,22,42,22,22,15,22,13,15,13,22,12,13,10,16,10,14,13,23,12,13,9,14,17/2,11,10,16,19/2,11,9,14,19/2,13,13,24,13,13,9,14,8,9,8,15,8,9,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,12,10,16,11,16,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,10,13/2,9,9,17,9,10,7,11,7,10,9,16,9,11,9,16,21/2,15,15,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,11/2,6,5,8,6,8,8,13,7,7,5,7,9/2,6,9/2,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,5/2,3,2,3,3,5,3,3,3,4,5/2,3,3,3,2,2,2,4,3,3,7/2,6,7/2,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,5/2,4,3,3,3,4,3,4,4,6,7/2,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,5/2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,9,5,6,5,9,7,10,10,18 -25,13,14,10,15,9,10,9,16,9,10,8,11,7,10,9,16,8,17/2,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,11/2,4,7,5,7,6,12,7,7,5,7,4,11/2,5,8,5,6,5,8,6,15/2,8,15,8,15/2,6,8,5,11/2,5,8,5,5,4,6,4,11/2,5,8,5,5,4,6,4,9/2,4,6,4,9/2,3,4,3,4,4,9,5,9/2,3,4,3,3,3,4,2,5/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,5,4,5,3,4,4,7,4,4,3,4,3,7/2,4,7,4,4,3,5,4,9/2,4,8,5,11/2,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,13/2,5,8,5,6,5,10,6,6,5,9,6,17/2,8,14,8,8,6,9,6,13/2,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,11/2,5,9,6,13/2,6,10,7,11,11,21,11,11,8,11,7,9,8,13,8,9,8,12,8,12,12,23,12,27/2,10,15,10,25/2,12,23,13,15,13,21,14,43/2,22,40,21,21,14,21,12,29/2,12,21,12,13,10,16,10,27/2,12,22,12,12,9,12,7,17/2,8,13,8,17/2,7,11,7,10,10,18,10,10,7,10,6,7,6,12,7,8,6,9,6,8,8,14,8,8,6,9,6,15/2,7,12,7,9,7,12,8,12,12,23,12,25/2,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,17/2,7,12,8,11,11,22,12,12,8,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,27/2,12,21,14,41/2,20,40,20,41/2,14,20,12,27/2,12,20,11,11,9,14,9,12,11,21,11,12,9,14,8,21/2,9,17,10,21/2,8,14,10,27/2,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,18,10,11,8,12,8,19/2,9,17,10,12,10,18,12,35/2,18,34,17,17,12,18,10,12,10,19,10,23/2,9,14,9,13,13,24,13,27/2,10,15,9,11,10,18,10,23/2,10,17,12,17,17,32,17,35/2,12,19,11,27/2,12,22,12,27/2,11,18,12,17,17,33,18,19,14,23,14,37/2,17,31,18,43/2,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,39/2,15,24,15,20,19,34,18,19,13,20,12,31/2,14,24,14,31/2,12,21,14,39/2,19,36,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,29/2,14,24,14,17,14,23,16,23,23,46,24,47/2,16,24,14,17,14,25,14,15,11,17,11,15,14,26,14,14,10,15,9,12,11,20,11,25/2,10,18,12,35/2,18,35,18,18,12,18,10,12,11,19,10,23/2,9,14,9,13,13,25,13,27/2,10,16,10,14,13,23,13,31/2,13,23,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,23/2,11,19,10,21/2,8,12,7,17/2,8,14,8,9,7,12,8,23/2,11,20,10,10,7,10,6,15/2,6,10,6,11/2,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,9/2,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,9/2,4,5,3,7/2,4,5,3,7/2,3,5,4,5,5,8,4,9/2,4,5,3,7/2,3,6,4,7/2,2,3,2,5/2,2,5,3,7/2,3,4,3,3,3,4,3,3,2,4,3,7/2,3,5,3,3,2,3,2,5/2,2,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,3,3,4,2,5/2,2,3,2,2,2,4,2,5/2,2,2,2,2,2,3,2,3,2,3,2,5/2,2,3,2,2,2,2,2,2,1,1,1,1/2,0,0,0,-1/2,-1,-2,0,0,0,-1,0,0,0,-2,0,-1/2,0,-1,0,-1,-1,-2,0,-1/2,0,-1,0,0,0,-1,0,-1/2,0,-2,-1,-2,-2,-3,-1,-3/2,-1,-2,-1,-3/2,-1,-2,-1,-1,-1,-1,0,-1/2,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1/2,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,5/2,2,3,2,3,3,6,4,7/2,3,4,3,5,5,9,5,11/2,4,6,4,9/2,4,7,4,4,4,6,4,5,5,9,5,11/2,4,6,4,11/2,5,9,6,7,6,11,8,21/2,10,19,10,10,7,10,6,7,6,10,6,11/2,4,6,4,11/2,5,8,5,5,4,5,3,7/2,3,6,4,4,3,6,4,11/2,6,12,7,7,5,7,4,11/2,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,17/2,8,14,10,27/2,14,26 -25,13,14,10,15,9,10,9,16,9,10,7,11,7,10,9,16,8,8,6,8,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,9/2,7,5,7,13/2,12,7,7,5,7,9/2,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,7/2,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,9,11/2,6,11/2,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,11,7,9,8,14,8,9,8,12,8,12,12,23,12,13,10,15,10,13,12,23,13,15,13,21,29/2,22,22,41,21,21,14,21,12,14,12,21,12,13,10,16,10,13,12,22,12,12,9,12,7,8,15/2,13,15/2,8,7,11,7,10,10,18,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,15/2,8,7,12,8,11,11,22,12,12,17/2,13,8,9,8,15,8,9,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,40,21,21,14,20,12,14,12,20,11,12,9,14,9,12,11,21,11,12,9,14,8,10,9,17,10,11,9,14,10,14,13,24,13,13,9,14,9,11,9,16,9,9,7,12,8,10,10,19,10,11,8,12,8,10,9,17,10,12,10,18,12,18,17,33,17,17,12,17,10,12,11,19,21/2,12,9,15,10,13,13,24,13,14,10,15,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,19,11,14,12,21,12,13,11,18,12,17,17,33,18,19,14,22,14,18,17,31,18,22,18,32,22,32,32,62,32,32,22,32,18,22,19,33,18,19,29/2,23,29/2,19,18,34,18,19,13,20,12,15,14,24,14,16,25/2,21,14,20,19,37,19,19,13,20,11,13,11,21,12,13,10,16,10,14,14,26,14,15,11,17,11,14,27/2,24,14,16,14,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,11,18,11,15,14,26,14,14,10,15,9,12,11,20,11,12,10,18,12,18,18,34,18,18,12,18,10,12,11,19,21/2,12,9,14,9,13,13,25,13,14,10,16,10,14,13,23,13,16,13,22,15,22,22,43,22,22,15,22,13,15,13,22,12,12,9,14,9,12,11,20,21/2,11,8,12,7,9,8,14,8,9,7,12,8,12,11,21,11,11,15/2,11,13/2,8,6,10,6,6,9/2,7,4,5,5,8,9/2,5,4,6,4,4,4,6,4,4,7/2,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,4,4,7/2,5,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-3/2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,9/2,6,5,9,5,6,5,8,5,6,6,11,6,7,6,9,6,8,8,13,8,9,8,14,10,14,14,26 -50,26,27,19,28,16,20,17,30,16,18,13,21,13,18,17,31,16,16,11,16,10,12,10,18,10,11,9,16,10,14,14,27,14,15,10,15,9,11,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,10,9,16,9,11,9,16,10,14,14,27,14,14,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,5,7,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,20,11,11,8,11,7,8,7,13,7,7,5,8,5,7,7,12,7,7,5,8,6,8,8,14,8,9,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,12,8,11,11,21,11,12,9,14,9,11,10,18,10,12,10,16,11,15,15,28,15,15,11,17,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,8,10,10,18,11,13,11,20,14,21,21,41,21,21,15,22,13,17,15,27,15,17,14,24,16,23,23,44,23,25,19,30,19,25,23,44,25,29,24,42,28,42,42,82,41,41,27,40,23,28,23,41,22,24,18,30,19,25,23,44,23,23,16,24,14,16,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,17,11,16,15,28,15,15,11,18,11,14,13,23,13,15,13,23,16,23,23,45,23,24,16,24,14,17,14,25,14,15,12,20,13,18,17,32,17,17,12,18,11,15,14,25,14,16,13,22,15,21,21,42,22,23,16,25,15,18,16,28,15,17,13,22,15,22,21,41,22,23,17,27,17,22,21,39,22,26,22,39,27,40,40,80,41,41,27,40,22,26,22,39,21,23,17,28,17,23,22,42,22,23,17,26,16,20,18,32,18,21,17,28,18,26,25,48,25,26,18,27,16,20,17,31,17,18,14,24,15,20,19,37,20,21,15,24,15,19,17,32,19,23,19,34,23,34,33,65,33,33,22,33,19,24,21,37,20,22,17,29,19,26,25,47,25,26,18,28,17,21,19,34,19,22,19,33,22,32,32,62,32,33,23,36,21,26,23,41,22,25,20,34,23,33,33,64,34,36,27,43,26,35,33,62,35,42,35,62,42,62,62,123,62,62,42,62,35,43,36,65,34,37,28,45,28,37,35,67,35,36,26,40,23,29,26,48,26,30,24,41,27,38,37,73,37,38,26,38,22,26,22,40,22,24,19,31,20,28,27,52,27,29,21,34,21,28,26,48,27,31,26,46,31,45,45,89,45,46,31,47,27,33,28,49,26,28,21,35,22,30,28,52,27,27,19,29,18,23,21,38,21,24,20,34,23,34,34,67,34,35,24,36,20,24,20,36,20,22,17,27,18,26,25,48,25,26,19,31,19,26,24,46,26,30,25,43,29,43,43,85,43,43,29,43,24,29,24,43,23,24,18,28,17,22,21,39,20,21,15,23,14,17,15,26,15,17,14,24,16,22,21,41,21,21,14,21,12,14,11,19,10,11,8,13,8,9,8,15,8,9,7,10,6,8,7,11,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,10,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,8,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,10,10,18,11,13,11,20,13,19,19,37,19,20,14,20,12,14,12,20,11,11,8,12,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,13,8,11,10,17,10,11,9,14,9,12,12,22,12,14,11,17,11,15,14,26,15,17,15,26,18,26,26,50 +50,26,26,18,26,15,18,16,29,16,17,13,20,13,17,16,30,16,16,11,15,9,12,10,18,10,11,8,13,9,12,12,24,12,12,8,11,7,8,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,7,12,7,9,8,14,9,13,13,26,14,15,11,18,12,16,15,29,17,20,17,29,19,28,28,55,28,29,20,29,16,19,16,27,15,16,12,18,12,16,15,29,15,14,10,14,9,11,9,16,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,7,7,12,7,7,5,8,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,11,10,18,10,10,8,12,8,12,11,21,11,12,9,13,8,10,9,17,10,12,10,18,12,17,17,33,17,17,12,18,11,13,11,20,11,13,10,16,11,15,15,29,16,17,13,20,13,18,17,32,18,21,18,32,22,33,33,66,33,33,23,34,19,23,19,34,18,20,16,27,17,23,22,43,23,24,17,26,15,19,17,31,17,20,16,28,19,27,27,52,27,27,19,28,16,19,16,28,15,17,13,21,14,19,18,33,18,19,14,23,14,18,17,32,18,21,17,30,20,30,30,59,30,31,21,31,18,21,18,31,17,18,13,21,13,17,16,29,15,15,10,15,9,11,10,17,10,11,9,16,11,15,15,28,15,15,10,14,9,11,9,16,9,10,8,14,9,13,12,23,12,13,10,16,10,14,14,26,15,19,16,29,20,29,29,56,29,29,20,30,17,21,17,30,17,19,15,24,15,21,20,39,20,21,14,21,13,16,14,26,15,17,14,24,16,23,23,44,23,23,16,24,14,18,16,30,17,19,16,28,19,27,26,51,27,28,21,33,21,28,27,51,29,34,28,50,34,50,50,98,50,50,34,51,29,36,31,56,30,33,25,40,26,36,34,66,35,37,27,42,25,33,30,57,32,37,31,55,37,54,54,107,54,55,38,59,34,42,37,68,37,42,33,57,37,53,52,102,53,57,42,69,42,57,53,102,57,68,56,100,67,100,100,199,100,100,67,101,57,68,57,102,53,57,43,70,43,58,54,104,53,55,39,60,35,44,39,73,40,46,36,62,40,58,56,110,56,56,39,59,34,42,36,64,34,38,29,47,30,42,40,76,39,41,29,46,27,35,32,59,33,38,31,54,36,54,54,106,54,54,36,54,30,36,30,52,28,30,23,37,23,31,29,55,28,29,21,32,19,25,23,42,23,26,21,37,25,36,35,68,35,35,24,36,21,26,23,41,22,24,19,32,20,28,26,50,26,27,19,30,18,24,23,43,24,28,23,40,26,38,37,72,37,37,25,38,22,26,22,39,21,23,17,28,17,23,21,40,21,21,15,22,13,17,15,27,15,17,14,23,15,21,20,39,20,21,14,21,13,16,15,27,15,17,14,23,15,21,20,39,20,21,16,25,16,21,20,37,21,25,21,38,26,39,39,76,39,39,26,39,23,28,24,42,23,25,19,32,21,30,29,55,29,30,22,34,20,26,24,44,24,28,23,39,26,37,37,72,37,37,26,40,23,28,25,45,24,27,21,36,23,33,32,62,32,34,25,41,25,34,32,60,34,41,34,61,41,61,62,123,62,62,42,63,35,42,35,63,33,35,26,43,27,37,34,65,33,34,24,37,22,27,24,43,24,27,21,36,24,34,33,65,33,34,24,36,21,25,21,38,21,23,18,29,18,25,24,46,24,26,19,29,18,23,21,38,22,26,21,37,25,37,37,73,37,36,24,36,21,25,21,38,20,22,17,29,18,25,24,46,24,24,17,27,16,21,19,34,19,21,17,28,19,27,26,51,26,27,18,27,16,19,16,29,16,17,13,21,14,19,18,35,19,20,14,22,14,18,17,31,18,21,18,31,22,33,33,65,33,32,22,32,18,21,18,32,17,19,15,24,15,21,19,36,19,19,13,19,11,14,13,23,13,15,12,19,13,19,19,37,19,19,13,19,11,13,11,19,10,11,8,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,19,10,11,8,12,7,9,9,16,9,10,9,15,10,15,15,28,15,16,12,20,13,17,15,28,16,19,16,27,18,26,26,50 +25,13,14,10,13,8,9,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,14,14,28,14,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,5,8,5,6,5,8,5,5,4,7,4,6,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,10,9,16,10,11,10,16,11,17,17,34,17,17,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,15,11,16,9,11,9,16,9,10,8,13,8,11,11,20,11,11,8,11,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,26,14,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,16,17,13,21,13,18,17,34,18,19,14,21,13,17,16,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,29,19,27,26,51,27,29,22,35,22,29,27,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,27,29,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,30,17,21,18,32,17,19,15,24,15,21,20,38,20,21,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,19,13,18,18,34,18,18,13,18,11,13,12,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,19,13,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,11,7,8,8,14,8,9,8,12,8,11,11,20,11,11,8,13,8,11,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,28,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,19,14,21,12,15,13,23,13,14,11,18,12,17,16,32,17,18,13,21,13,18,17,30,17,21,18,31,21,31,31,62,32,32,22,32,18,21,18,32,17,18,14,22,14,19,18,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,17,33,17,18,12,19,11,13,11,19,11,12,9,15,10,13,13,24,13,14,10,15,9,12,11,19,11,14,11,19,13,19,19,37,19,19,13,19,11,13,11,20,11,12,9,15,10,13,13,23,12,12,9,14,8,11,10,17,10,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,11,8,10,10,18,10,10,7,12,8,10,9,16,10,11,10,16,11,17,17,33,17,17,12,17,10,11,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +25,13,14,10,13,8,9,8,15,8,8,6,10,7,9,9,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,28,14,14,10,16,9,11,9,14,8,8,6,10,7,9,9,15,8,8,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,17,9,9,6,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,17,10,12,10,17,9,10,8,14,9,12,12,22,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,14,8,10,8,14,8,8,6,11,7,10,9,17,9,10,8,12,7,9,9,16,9,11,9,15,11,16,16,31,16,16,11,16,10,12,10,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,9,15,10,15,15,29,15,16,11,16,10,12,10,16,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,14,8,9,7,13,9,12,12,23,12,12,9,12,8,10,9,16,9,10,8,14,10,14,14,25,13,14,11,17,11,14,14,26,15,18,15,26,18,26,25,49,25,26,18,26,15,18,16,29,15,16,12,21,13,18,17,34,18,19,14,21,13,17,15,29,16,19,16,28,19,28,28,54,28,28,20,30,18,22,19,35,19,22,17,28,19,27,26,51,27,28,21,35,22,30,28,51,29,34,29,51,34,50,50,100,51,51,34,51,29,34,29,52,28,30,22,36,22,30,28,53,27,28,20,30,18,22,20,37,21,24,19,32,21,30,29,56,29,29,20,29,17,21,18,32,17,18,14,24,15,21,20,38,20,20,15,24,14,18,16,30,17,20,16,27,19,28,27,54,28,28,19,27,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,10,13,12,22,12,14,11,18,12,18,18,34,18,18,13,18,11,13,11,21,11,12,10,16,10,14,13,26,14,14,10,16,10,12,12,22,12,14,12,21,14,20,19,37,19,20,14,20,12,14,12,20,11,12,9,15,9,12,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,11,7,8,8,15,9,10,8,12,8,11,11,20,11,12,9,13,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,17,11,15,15,29,15,16,12,17,11,14,12,22,12,14,12,20,13,19,19,37,19,20,14,21,12,15,13,24,13,14,11,18,12,17,16,32,17,18,14,21,13,18,17,30,17,20,17,31,21,31,31,61,31,32,22,32,18,21,18,31,17,18,14,22,14,18,17,33,17,18,13,19,11,14,12,22,12,14,11,18,12,18,18,33,17,18,12,19,11,13,11,19,11,12,9,15,10,14,13,24,13,14,10,15,9,12,11,19,11,14,12,19,13,19,19,38,20,20,13,19,11,14,12,20,11,12,9,15,10,14,13,23,12,12,9,14,8,10,9,17,10,12,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,12,8,10,9,17,10,12,10,16,11,17,17,33,17,17,12,17,10,12,10,17,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,9,13,13,25 +17,9,10,7,9,6,7,6,10,6,6,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,6,9,6,6,5,7,5,7,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,11,6,8,6,11,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,20,10,11,8,11,7,8,7,11,6,7,6,9,6,8,7,14,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,17,33,17,17,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,10,14,9,12,10,19,11,13,11,19,13,19,19,36,19,19,14,20,12,15,13,24,13,15,12,19,13,18,18,34,18,19,14,24,15,20,19,34,20,23,20,35,23,34,34,67,34,34,23,34,20,23,20,35,19,20,15,24,15,20,19,36,18,19,14,20,12,15,14,25,14,16,13,22,14,20,20,37,19,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,14,10,16,10,12,11,20,12,13,11,19,13,19,18,36,19,19,13,18,11,13,11,17,10,11,8,13,8,11,10,19,10,10,8,11,7,9,8,15,8,10,8,12,8,12,12,23,12,12,9,12,8,9,8,14,8,9,7,11,7,9,9,18,10,10,7,11,7,8,8,15,8,10,8,14,10,14,13,25,13,13,9,14,8,10,8,13,8,8,6,10,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,7,13,8,9,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,10,20,10,11,8,12,8,10,8,15,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,16,9,10,8,12,8,12,11,21,12,12,10,15,9,12,11,20,12,14,12,21,14,21,21,41,21,22,15,22,12,14,12,21,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,8,9,8,12,8,12,12,22,12,12,8,13,8,9,8,13,8,8,6,10,7,9,9,17,9,9,7,10,6,8,8,13,8,9,8,13,9,13,13,26,14,14,9,13,8,10,8,14,8,9,7,10,7,10,9,16,9,9,6,9,6,7,6,12,7,8,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,7,5,8,5,7,6,12,7,8,7,11,8,12,12,22,12,12,8,12,7,9,7,12,7,8,6,8,6,7,7,13,7,7,5,7,4,6,5,8,5,6,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,4,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,6,6,10,6,6,6,10,7,9,9,17 +26,13,13,9,14,8,10,9,15,8,8,6,9,6,9,8,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,7,5,7,7,13,7,7,5,8,6,8,8,14,8,10,9,15,10,14,14,28,15,15,11,16,9,10,8,13,8,9,7,11,7,9,9,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,12,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,16,11,17,17,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,12,21,11,11,8,12,7,9,8,17,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,17,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,13,7,6,4,6,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,8,6,8,7,14,8,10,9,15,10,15,15,29,15,16,11,16,9,11,10,15,8,9,7,12,8,10,10,20,11,11,8,12,7,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,25,13,14,10,16,10,14,13,25,14,17,15,26,17,25,25,49,25,25,17,26,15,18,15,29,16,17,13,21,13,18,17,34,18,18,13,21,13,17,15,28,16,19,16,28,19,29,29,53,27,28,20,30,18,22,19,35,19,21,17,28,19,27,26,50,27,29,22,35,22,29,27,51,29,34,29,52,35,51,50,100,51,51,34,51,29,35,29,53,28,30,22,36,23,31,29,53,27,28,20,30,18,22,20,38,21,23,19,32,21,30,29,55,28,28,19,29,17,20,17,32,17,18,14,22,14,19,19,38,20,20,15,23,14,17,16,30,17,20,16,28,19,28,27,54,28,28,19,27,15,18,15,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,11,18,13,19,19,33,17,17,12,18,11,13,11,21,11,12,9,15,10,14,13,26,14,14,10,16,10,13,12,22,12,14,12,20,13,19,19,36,19,19,13,20,11,13,11,19,10,11,9,14,9,11,10,22,11,11,8,12,7,8,7,14,8,9,7,12,8,11,11,21,11,11,8,12,7,9,8,16,9,9,7,12,8,12,11,20,11,11,8,12,8,11,10,18,11,13,11,20,13,19,19,37,19,19,13,20,12,14,12,23,13,14,11,17,11,15,14,29,15,15,11,17,11,14,12,21,12,14,12,20,14,20,19,36,19,19,13,20,12,15,13,24,13,14,11,18,12,17,16,31,17,18,14,22,13,17,16,29,17,20,17,31,21,31,31,61,31,31,21,32,18,22,18,30,16,18,14,22,14,19,18,33,17,18,13,19,12,15,13,22,12,14,11,18,12,18,18,33,17,18,12,18,11,13,11,20,11,12,9,14,9,12,12,25,13,13,10,15,9,12,11,20,12,14,12,20,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,13,24,13,13,9,13,8,10,9,18,10,12,9,15,10,13,13,27,14,14,10,14,8,9,8,16,9,10,8,12,8,10,10,17,9,9,7,11,7,9,8,17,10,12,10,16,11,16,17,31,16,17,12,18,10,12,10,18,10,10,8,12,8,10,10,18,10,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,8,4,4,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,9,13,13,25 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,8,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,7,4,5,5,10,6,6,5,8,6,8,8,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,6,9,6,9,9,17,9,10,7,10,6,7,6,9,5,6,4,7,5,6,6,11,6,7,5,7,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,9,9,14,8,8,6,9,6,8,8,15,8,10,9,15,10,14,14,28,15,15,10,15,9,10,9,16,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,12,10,16,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,29,20,29,28,56,29,29,20,29,17,20,17,30,16,17,13,21,13,18,17,30,16,16,12,17,10,13,12,21,12,13,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,10,8,13,8,11,11,21,11,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,15,9,10,9,15,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,12,7,8,7,11,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,13,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,8,7,11,7,10,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,8,11,7,9,8,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15 +18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,5,4,5,5,9,5,6,4,6,4,5,5,9,6,7,6,10,7,11,11,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,6,4,6,6,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,7,8,7,12,7,7,5,8,5,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,8,7,10,7,11,11,20,11,12,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,6,5,8,6,9,9,14,8,8,6,9,6,7,6,10,6,7,6,10,7,11,11,17,9,10,8,11,7,10,10,18,10,12,10,18,12,17,17,34,18,18,12,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,15,9,11,10,19,11,14,12,19,13,19,19,36,19,19,13,20,12,14,13,24,13,15,12,20,13,18,18,33,18,20,15,23,15,20,18,35,20,24,20,35,24,35,34,67,34,34,23,35,20,24,20,35,19,20,15,25,16,21,20,36,19,20,14,21,12,15,14,25,14,16,13,22,14,20,19,37,19,19,13,19,11,13,12,21,11,12,9,15,10,13,12,24,13,14,10,15,9,12,11,21,12,14,11,19,13,18,18,35,18,18,12,18,10,12,10,18,10,10,8,12,8,10,10,20,10,10,8,12,8,10,9,14,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,13,9,14,14,24,13,14,9,14,8,10,8,13,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,13,8,9,8,14,10,14,13,26,14,14,9,13,8,9,8,15,9,10,8,11,8,11,10,19,10,10,8,12,7,9,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,10,9,17,9,10,8,13,8,11,11,21,11,12,9,15,9,12,11,20,12,14,12,21,14,21,21,42,21,21,15,21,12,14,12,20,11,12,9,15,10,13,12,22,12,12,9,13,8,10,9,15,9,10,8,14,9,12,12,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,17,9,9,7,11,7,8,7,13,8,9,8,13,9,12,13,25,13,14,10,14,8,10,8,15,8,8,6,11,7,9,9,17,9,10,7,9,6,8,7,12,7,8,6,10,7,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,11,20,11,11,8,11,7,8,7,12,7,7,5,8,5,6,6,13,7,8,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,5,3,3,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,3,3,4,4,4,2,2,2,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,10,7,10,10,18 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,8,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,4,7,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,15,8,9,7,10,6,9,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,8,12,8,11,10,18,10,10,8,12,8,9,9,16,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,20,11,13,10,17,11,15,15,27,15,16,12,20,13,17,16,29,17,20,17,29,20,29,29,56,28,28,19,29,17,20,17,29,16,17,13,21,13,18,17,31,16,17,12,18,11,13,12,21,12,14,11,18,12,17,16,31,16,16,11,16,10,11,10,18,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,17,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,6,7,7,12,7,8,7,11,8,12,12,21,11,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,11,7,8,7,12,8,12,11,22,12,12,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,14,8,9,7,11,7,9,9,18,10,10,8,13,8,10,9,17,10,12,10,18,12,18,17,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,11,7,8,8,13,8,9,7,12,8,11,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,7,10,11,21,11,11,8,12,7,9,7,13,7,7,6,9,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,7,7,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,11,6,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,15 +27,14,13,9,13,8,9,8,15,8,9,6,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,5,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,5,4,7,7,11,6,6,5,8,6,8,8,14,8,9,8,14,10,15,15,25,13,14,10,14,8,10,8,14,8,9,7,11,7,9,9,15,8,8,5,6,4,5,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,15,8,9,6,9,6,7,6,10,6,6,5,9,6,7,7,11,6,7,6,9,6,7,6,11,6,7,6,9,6,9,10,19,10,10,8,12,7,8,7,12,7,7,6,10,7,10,10,16,9,9,7,12,8,10,9,16,9,11,10,17,12,17,17,31,16,16,11,16,9,11,10,17,9,10,8,13,9,12,11,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,14,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,9,17,9,10,8,12,7,9,9,16,9,11,9,16,11,15,15,32,16,16,11,17,10,12,10,18,10,11,8,13,8,11,10,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,7,11,6,7,6,9,6,8,8,14,8,10,9,15,10,15,15,32,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,17,9,9,7,11,7,9,8,13,8,9,8,13,9,13,13,21,11,11,8,13,8,10,9,15,9,11,9,16,11,16,15,26,14,15,11,18,11,15,14,27,15,18,15,25,17,24,24,50,25,25,17,26,15,18,16,28,15,17,13,22,14,19,18,32,17,18,13,21,13,16,15,28,16,20,17,29,20,29,29,53,27,28,20,30,17,21,19,34,19,22,18,30,20,28,27,48,25,27,21,34,21,29,27,52,29,34,29,51,34,51,51,100,50,50,34,51,29,34,29,52,28,30,23,37,23,32,30,55,28,29,21,32,19,23,21,38,21,24,19,32,21,29,29,55,28,29,20,30,17,21,18,32,17,19,14,23,14,19,18,34,18,20,15,23,14,18,16,30,17,20,17,29,19,28,27,51,26,26,18,26,15,17,15,26,14,15,11,18,12,16,15,30,16,17,12,18,11,14,12,22,13,15,12,21,14,20,19,33,17,18,13,19,11,14,12,21,11,12,9,14,9,12,12,25,13,14,10,16,10,12,11,20,12,14,12,20,14,20,20,37,19,18,12,18,10,12,10,18,10,10,8,12,8,11,10,22,12,12,9,13,8,10,8,14,8,9,7,12,8,12,11,23,12,12,9,14,9,11,9,16,9,10,8,13,9,12,11,23,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,38,19,19,13,20,12,14,12,22,12,13,11,18,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,13,18,18,37,19,20,14,22,13,15,13,24,13,15,12,19,12,17,16,31,16,17,13,21,13,18,16,30,17,20,17,30,20,30,30,62,31,31,21,30,17,21,17,30,16,17,12,19,12,16,16,33,17,18,13,19,11,14,13,24,13,14,11,19,13,18,18,34,18,18,12,18,10,12,11,19,10,11,9,14,9,12,11,24,13,13,9,14,9,11,10,18,10,12,10,17,12,18,18,36,19,19,13,19,11,14,12,22,12,13,10,16,10,14,13,25,13,13,9,14,9,11,10,17,9,10,8,13,9,12,12,27,14,14,10,15,9,11,9,16,9,9,7,12,8,10,9,18,10,10,7,11,7,9,9,16,9,11,9,15,11,16,16,29,15,15,10,15,9,11,10,17,9,10,8,12,7,9,9,19,10,10,7,10,6,8,8,14,8,9,7,10,7,10,10,18,9,9,6,9,6,7,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,15,9,10,8,13,9,13,13,26 +14,8,7,5,7,4,5,5,8,5,5,4,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,4,5,4,5,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,12,8,10,10,17,9,10,7,11,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,12,10,16,11,15,14,25,14,15,11,18,11,15,15,27,16,18,15,27,18,27,27,52,26,26,18,27,15,18,16,27,15,16,12,19,12,17,16,29,15,16,11,17,10,12,11,20,11,13,10,17,11,16,15,29,15,15,11,16,9,11,10,17,9,10,8,12,8,10,10,18,10,10,8,12,8,10,9,16,9,11,9,15,10,15,14,27,14,14,10,14,8,9,8,14,8,9,6,10,7,9,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,10,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,16,9,11,9,16,11,16,16,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,9,17,9,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,9,5,6,5,7,4,5,5,10,6,6,4,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14 +15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,6,8,9,15,8,8,6,8,5,6,5,8,5,6,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,3,4,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,4,6,4,6,5,9,5,5,4,7,5,6,6,8,5,6,5,9,6,8,8,18,10,10,7,10,6,8,6,11,6,7,5,8,5,7,6,10,6,6,5,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,9,19,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,8,8,12,7,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,28,14,14,10,15,9,10,9,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,16,16,30,16,16,11,17,10,12,11,19,11,12,10,17,11,16,15,27,15,16,12,19,12,16,16,29,17,20,16,29,19,28,29,55,28,28,19,28,16,20,17,29,15,16,13,20,13,18,17,31,16,17,12,18,11,13,12,22,12,14,11,17,12,17,16,31,16,16,11,17,10,12,10,18,10,10,8,12,8,10,10,18,10,10,8,13,8,10,9,16,10,12,10,16,11,15,15,29,15,15,10,15,9,10,9,16,9,10,7,11,7,10,9,17,9,10,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,22,12,12,8,10,6,8,7,11,6,6,5,8,5,7,6,13,7,8,6,8,5,5,5,9,5,6,5,7,5,8,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,8,7,13,7,8,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,17,11,16,17,35,18,17,12,17,10,11,10,16,9,10,7,10,7,9,9,18,10,10,7,11,7,9,8,13,7,8,7,12,8,10,10,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,7,13,7,7,6,9,6,7,6,10,6,7,6,10,7,10,11,20,11,11,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,7,4,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,14 +12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,7,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,5,8,6,8,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,6,3,3,3,3,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,22,12,12,8,13,8,9,8,15,8,9,8,13,8,12,11,20,11,12,9,14,9,12,12,21,12,15,12,21,14,21,21,41,21,21,14,21,12,15,12,21,11,12,10,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,12,12,8,12,7,9,8,13,7,7,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,5,9,5,6,5,9,6,9,8,14,7,7,5,8,5,5,5,9,5,6,4,7,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,26,13,13,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,7,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,8,5,8,5,5,5,8,5,5,4,5,4,5,4,8,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10 +19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,5,4,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,4,4,3,3,3,4,3,4,4,8,5,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,7,12,8,11,11,22,11,11,8,11,7,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,9,9,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,7,5,7,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,8,14,8,8,6,9,6,8,8,12,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,8,5,5,4,5,3,4,3,7,4,4,4,6,4,6,5,9,5,6,5,8,5,7,6,12,7,9,7,12,8,12,11,22,12,12,8,12,7,8,7,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,5,11,6,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,17,17,32,17,17,12,18,11,13,11,18,10,11,8,13,9,13,13,21,11,12,9,14,9,11,11,20,11,13,11,18,12,18,19,36,19,19,13,20,12,15,13,24,13,15,12,20,13,19,18,32,17,19,14,23,15,20,19,34,19,23,19,33,23,34,34,66,33,33,23,34,19,23,19,34,18,20,15,24,15,20,19,36,19,19,14,21,13,16,14,25,14,16,12,20,14,20,19,35,18,18,12,18,11,13,11,20,11,12,9,14,9,12,11,21,11,12,9,14,9,12,11,18,10,12,10,18,12,17,17,34,18,18,12,18,11,13,11,19,10,11,8,12,8,11,10,19,10,10,8,12,7,8,7,14,8,10,8,14,9,13,13,22,12,12,8,12,7,9,7,14,8,8,6,10,7,9,8,16,9,9,7,11,7,8,7,14,8,10,8,14,10,14,13,26,14,14,9,13,8,9,8,12,7,8,6,9,6,9,8,16,8,8,6,8,5,6,5,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,16,9,9,7,10,6,7,7,13,7,8,7,12,8,12,12,26,14,14,10,14,9,11,9,16,9,10,7,11,8,11,11,18,10,11,8,12,7,9,9,16,9,9,7,12,8,11,11,24,13,13,9,14,9,11,10,17,10,11,8,13,9,12,11,20,11,12,9,14,9,12,11,19,11,13,11,18,13,19,19,42,21,21,14,20,12,14,12,19,10,10,8,12,8,11,11,22,12,12,9,13,8,11,10,16,9,10,8,14,10,14,13,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,9,8,15,8,9,7,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,6,10,7,10,9,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,14,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,4,3,2,2,2,2,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16 +12,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,5,3,4,3,4,2,3,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,23,12,12,8,13,8,10,8,15,8,9,8,12,8,12,11,20,11,12,9,15,10,13,12,21,12,15,12,20,14,21,21,41,21,21,14,21,12,15,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,16,9,10,8,13,9,13,12,22,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,12,6,7,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,8,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,11,8,12,12,26,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,4,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,4,6,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,7,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10 +17,9,8,6,9,5,6,5,9,5,5,4,6,4,4,4,9,5,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,9,7,10,10,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,4,4,2,2,2,4,3,4,4,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,7,11,6,6,4,6,4,6,5,8,5,5,4,8,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,9,6,8,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,7,4,5,4,5,3,4,3,6,4,4,4,5,4,5,5,8,5,5,4,6,4,6,5,10,6,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,31,16,16,11,17,10,13,11,19,11,12,10,16,11,15,15,27,15,16,12,20,13,17,16,29,17,20,16,27,19,28,28,55,28,28,19,28,16,20,17,29,15,16,12,21,13,18,17,31,16,16,12,18,11,14,13,22,12,14,11,19,13,18,17,29,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,10,9,15,10,14,14,29,15,14,10,15,9,10,9,15,8,8,6,11,7,10,9,15,8,8,6,10,6,7,6,12,7,8,7,12,8,11,11,20,11,11,7,10,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,8,5,7,6,11,7,8,7,12,8,12,11,21,11,11,8,11,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,9,5,6,6,12,7,8,7,10,7,10,10,22,12,12,8,12,7,9,8,14,8,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,11,7,9,8,13,7,8,7,10,7,10,9,17,9,10,8,12,8,10,9,16,9,11,9,15,11,16,16,36,18,18,12,18,10,12,10,17,9,10,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,11,8,12,12,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,10,7,10,10,21,11,10,7,10,6,8,7,12,7,7,6,10,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,6,12,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,11,6,6,5,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +16,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,5,6,5,8,6,9,9,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,3,3,3,3,2,3,3,4,3,4,3,4,3,5,5,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,9,6,10,6,8,7,14,8,9,8,13,9,13,13,23,12,13,9,13,8,9,8,14,8,8,6,10,7,10,10,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,29,15,15,11,16,10,12,10,18,10,11,9,15,10,14,14,26,14,15,11,18,12,16,15,27,16,18,15,26,18,26,26,51,26,26,18,27,16,19,16,27,15,16,12,19,12,16,16,29,15,16,11,17,10,13,12,21,12,13,11,18,12,17,16,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,16,9,9,7,10,6,9,8,15,8,10,8,14,9,13,13,27,14,14,9,14,8,9,8,14,8,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,19,10,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,21,11,11,8,11,7,8,7,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,8,10,8,14,10,15,15,34,17,17,12,17,10,11,9,16,9,9,7,11,7,10,9,17,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,9,9,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,13 +29,15,14,10,14,8,9,8,14,8,9,7,10,6,8,7,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,17,9,9,7,10,6,7,5,8,5,5,5,8,5,7,7,12,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,11,6,6,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,4,7,4,4,4,6,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,16,16,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,9,16,9,9,6,8,5,6,5,7,4,4,4,6,4,5,4,13,7,7,5,7,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,6,9,9,10,6,6,4,5,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,12,19,10,10,7,10,6,8,7,13,8,9,7,11,8,11,11,21,11,12,9,14,9,11,10,17,10,11,9,16,11,16,16,34,18,18,13,19,11,12,10,18,10,10,8,12,8,11,10,19,10,10,7,11,7,8,7,13,8,9,8,13,9,12,12,25,13,13,9,12,7,8,7,11,7,8,6,10,6,8,8,15,9,10,8,12,8,10,10,18,10,12,10,17,11,16,16,34,18,18,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,11,8,12,8,10,9,15,9,10,8,13,9,12,11,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,18,18,33,17,17,12,17,10,11,9,15,8,9,7,11,7,10,9,17,9,9,7,11,7,9,8,14,8,10,8,13,9,12,11,20,11,11,8,13,8,10,9,15,9,10,8,14,10,14,14,28,15,16,12,19,12,16,15,28,16,19,16,27,18,25,25,44,22,22,15,23,13,16,14,24,13,14,11,19,13,18,18,34,18,20,15,23,14,18,17,32,18,21,17,29,20,29,29,56,29,30,21,33,19,24,21,38,21,23,18,30,19,26,25,49,26,28,20,32,20,27,25,47,27,32,27,47,32,48,49,98,49,49,33,50,28,33,28,49,26,28,21,34,22,30,29,55,28,29,21,32,19,24,22,40,22,25,20,33,21,30,30,50,26,26,18,26,15,18,15,27,15,16,12,20,13,17,16,30,16,17,13,20,12,15,14,26,15,17,15,26,17,25,25,52,26,26,18,27,15,17,14,24,13,15,11,18,12,16,15,27,14,15,11,16,10,12,11,19,11,13,11,19,13,19,18,36,19,19,13,20,12,14,12,21,11,12,9,14,9,12,12,22,12,13,10,15,9,12,12,22,13,15,12,20,14,20,20,38,20,20,14,21,12,14,12,20,11,11,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,10,8,14,9,13,13,24,13,13,10,15,9,11,10,17,9,10,8,12,8,11,11,22,12,12,9,14,9,11,10,18,11,13,11,18,12,17,17,39,20,20,14,21,12,15,13,23,12,13,10,16,10,14,14,27,14,15,11,16,10,12,11,19,11,13,10,17,12,18,18,34,18,18,13,20,12,14,12,21,12,14,11,18,12,16,16,30,16,17,13,20,13,17,16,29,16,19,16,27,18,27,27,65,33,33,22,33,19,22,18,32,17,18,13,21,13,18,17,32,17,17,12,18,11,13,12,21,12,14,12,20,13,19,19,32,17,17,12,18,10,12,11,19,10,11,9,14,9,12,11,20,11,11,8,12,8,10,9,16,9,11,9,16,11,16,16,36,19,19,13,19,11,14,12,21,12,13,10,17,11,15,14,26,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,28,15,15,10,15,9,11,9,15,8,9,7,11,8,11,10,19,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,29,15,15,10,14,8,10,9,15,9,10,8,12,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,14,7,7,5,8,5,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,23 +15,8,8,6,7,4,5,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,6,4,4,3,3,2,3,3,4,3,3,2,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,16,11,17,10,12,11,20,11,12,10,16,10,14,14,25,14,14,11,17,11,14,13,24,14,17,14,24,17,25,25,50,25,25,17,26,15,17,14,25,13,14,11,18,12,16,15,28,15,15,11,17,10,13,12,21,12,13,10,17,11,16,16,26,14,14,9,14,8,10,8,14,8,8,7,11,7,9,9,16,9,9,7,11,7,8,8,13,8,9,8,14,9,13,13,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,6,5,8,5,6,6,12,7,7,6,8,5,6,6,12,7,8,6,10,7,10,10,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,5,6,5,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,12,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,20,10,10,7,11,6,8,7,12,7,7,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,9,8,15,9,10,8,14,10,14,14,34,17,17,12,17,10,12,10,16,9,10,7,11,7,10,9,16,9,9,6,9,6,7,6,11,7,8,7,11,7,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,15,8,8,5,7,5,6,5,8,5,6,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,12 +15,8,8,6,7,5,6,5,7,4,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,9,14,8,8,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,8,5,6,6,9,5,6,5,9,6,9,9,17,9,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,10,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,6,4,6,5,10,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,24,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,9,15,10,15,15,30,16,16,11,18,10,12,11,20,11,12,10,17,11,14,14,26,14,14,11,17,11,15,14,25,15,18,15,25,17,26,26,50,26,26,18,27,15,18,15,25,13,14,11,18,12,16,15,29,15,16,11,17,10,13,12,22,12,14,11,18,12,16,16,26,14,14,9,14,8,10,9,14,8,8,7,11,7,9,9,16,9,10,7,11,7,9,8,13,8,10,8,14,10,14,13,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,18,10,10,7,11,7,8,7,12,6,6,5,8,5,6,6,12,7,8,6,8,5,6,6,12,7,8,6,10,7,10,11,21,11,12,8,11,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,7,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,6,4,7,5,7,7,12,6,6,5,7,5,6,6,9,5,6,6,9,6,9,9,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,7,10,10,19,10,10,7,11,6,7,6,11,7,8,6,10,6,8,8,16,9,9,7,10,7,10,9,15,9,10,8,15,10,14,15,35,18,17,12,18,10,12,10,16,9,10,7,12,8,10,9,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,16,9,9,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,11,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,7,16,8,8,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,4,6,4,5,5,6,4,4,4,7,5,6,6,7,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,6,6,11 +11,6,6,4,5,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,11,13,11,18,12,18,18,35,18,18,12,19,11,12,10,17,9,10,8,13,9,12,11,20,11,11,8,12,7,9,8,15,9,10,8,13,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,9,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,5,6,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,9,5,6,5,7,5,7,8,15,8,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,6,4,7,5,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,24,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,4,3,3,3,5,4,5,5,5,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,8 +16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,7,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,5,3,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,3,5,4,5,5,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,7,10,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,6,6,10,7,10,10,18,10,10,8,12,7,8,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,5,9,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,6,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,20,11,11,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,5,7,4,5,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,5,8,6,8,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,15,14,26,13,13,9,12,7,8,7,14,8,9,7,11,7,10,10,19,11,12,9,14,9,12,11,19,11,12,10,16,11,15,15,32,17,17,12,18,11,13,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,15,15,27,15,18,15,27,18,27,28,53,27,27,19,28,16,19,15,26,14,16,12,20,13,17,16,31,16,16,12,18,11,14,13,23,13,15,12,20,13,18,17,29,15,14,10,14,9,11,9,16,9,9,7,12,8,10,10,17,9,10,8,12,7,9,8,13,8,10,8,14,10,14,14,29,15,15,10,15,9,10,8,15,8,9,7,10,7,9,9,15,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,7,6,13,8,9,7,11,8,11,11,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,6,7,6,10,7,10,9,20,11,11,7,10,6,7,6,12,7,8,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,10,7,10,10,20,10,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,8,6,10,7,9,9,16,9,10,9,15,10,15,15,37,19,18,12,18,10,12,11,17,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,14,8,9,8,13,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,12,7,7,5,6,4,6,6,11,6,7,6,10,7,10,10,20,10,10,7,11,7,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,2,2,2,1,1,1,4,3,3,2,2,2,3,3,5,3,4,3,4,3,5,5,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,8,4,4,3,4,3,5,5,6,4,4,3,4,3,4,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,11 +9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,5,5,8,5,6,4,7,5,6,6,11,6,7,5,8,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,17,9,9,7,11,7,9,9,16,9,11,9,16,11,16,16,31,16,16,11,16,10,11,9,15,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,13,8,9,7,12,8,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,4,4,4,6,4,6,6,12,7,7,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,6,9,6,9,9,22,11,11,8,11,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7 +11,6,6,4,7,4,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,8,6,8,8,11,6,6,4,7,4,4,4,8,4,4,3,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,6,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,6,11,6,6,5,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,12,11,20,10,10,7,10,6,6,6,10,6,7,5,8,6,8,8,14,8,8,6,10,7,9,8,14,8,9,8,12,8,12,12,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,15,9,12,11,21,12,14,12,21,14,21,21,38,20,20,14,20,12,14,12,19,11,12,9,14,9,12,12,23,12,13,9,14,8,10,9,16,9,10,8,14,9,12,12,22,12,12,8,11,7,8,7,12,7,8,6,8,5,7,7,14,8,8,6,9,5,6,6,10,6,8,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,6,5,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,10,7,10,6,6,5,8,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,8,7,14,8,8,5,7,4,5,5,8,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,27,14,14,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,7,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,6,6,9,5,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,8,11,11,20,11,11,8,13,8,11,10,18,11,13,11,18,13,19,19,34,17,17,12,18,10,12,10,17,10,11,8,13,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,10,20,11,11,7,10,6,7,6,10,6,7,5,7,5,6,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,7,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,7 +18,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,2,1,1,1,1,1,1,1,2,2,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,7,5,8,5,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,8,5,6,5,8,6,9,9,12,7,7,5,7,5,6,6,10,6,7,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,11,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,16,9,9,6,8,5,6,5,8,5,6,5,8,5,6,6,7,4,5,4,7,5,7,7,12,7,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,10,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,10,6,8,7,12,9,13,13,23,12,12,8,12,7,9,8,13,7,8,6,10,6,8,7,14,8,8,6,9,5,6,5,9,5,6,5,8,6,9,9,18,9,9,6,9,6,7,6,10,6,7,6,9,7,10,10,16,9,10,7,11,7,10,10,18,10,12,10,17,12,18,18,31,16,16,11,16,9,11,10,17,9,10,8,14,9,12,11,23,12,13,10,16,10,12,11,20,11,13,11,20,13,19,19,37,19,20,14,20,12,16,14,26,14,16,13,21,14,20,19,36,19,20,15,24,15,20,18,33,19,22,19,34,23,34,34,62,32,32,22,32,18,21,18,32,17,18,14,23,15,20,19,39,20,20,14,20,12,15,13,24,13,15,12,20,13,18,18,36,19,19,13,18,11,13,11,18,10,11,9,14,9,11,11,22,12,12,9,13,8,10,9,16,9,11,9,16,11,15,15,34,17,17,12,17,10,12,10,18,10,11,8,12,8,11,11,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,23,12,11,8,11,7,8,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,30,15,15,10,15,9,10,8,14,8,8,7,11,7,9,8,12,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,15,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,9,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,9,17,9,10,8,12,7,9,8,14,8,9,8,14,9,13,13,24,13,13,9,12,8,10,9,15,8,9,7,11,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,18,18,43,22,22,15,21,12,14,12,22,12,13,10,16,10,13,12,20,11,11,8,13,8,10,9,16,9,11,9,15,10,14,13,22,12,12,9,13,8,9,8,14,7,7,5,8,5,7,7,15,8,8,6,8,5,7,7,12,7,9,8,13,9,12,12,23,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,18,9,9,7,10,6,6,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,6,8,5,6,5,8,5,5,4,6,4,5,5,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,7,7,4,5,4,5,3,3,3,4,2,2,2,2,2,2,2,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,7,5,6,6,10,6,7,5,8,5,7,7,12 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,7,4,5,4,7,4,4,3,5,4,5,4,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,7,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,13,7,7,6,9,6,7,6,11,6,7,6,11,8,11,11,20,11,11,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,13,8,11,10,18,10,12,11,19,13,19,19,34,18,18,12,18,10,12,10,18,10,10,8,13,8,11,11,21,11,11,8,11,7,9,8,13,8,9,7,11,7,10,10,20,11,11,7,10,6,7,6,10,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,10,6,7,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,7,12,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7 +11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,4,6,4,4,4,7,4,5,5,8,6,8,8,11,6,7,5,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,5,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,9,6,8,7,15,8,8,6,10,6,8,7,13,7,8,7,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,8,14,9,13,12,23,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,20,12,14,12,20,11,12,9,14,9,12,12,24,12,12,8,13,8,10,8,15,9,10,8,12,8,11,11,22,12,12,8,11,7,8,7,11,7,8,6,9,6,8,7,14,8,8,6,8,5,6,6,10,6,8,7,11,7,10,10,21,11,10,7,11,7,8,7,12,7,8,6,9,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,6,6,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,7,5,6,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,11,6,7,6,11,8,11,11,26,13,13,9,13,8,10,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,6,5,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,4,2,2,2,4,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,10,11,10,17,12,17,17,31,16,16,11,16,9,11,10,16,9,10,8,12,8,10,10,19,10,10,7,10,6,8,6,12,7,8,6,10,7,9,9,17,9,9,6,9,6,6,5,9,6,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,5,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,7,4,6,5,9,5,6,5,9,6,9,9,20,10,11,8,11,7,8,7,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,8,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,5,6,5,8,5,6,6,9,6,7,6,10,7,11,11,16,9,9,6,8,5,7,6,10,6,6,4,6,4,4,4,9,5,6,4,6,4,4,3,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,8,6,8,7,14,7,7,5,8,5,7,6,12,7,8,7,11,8,12,12,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,6,8,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,10,6,7,5,8,6,8,7,13,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,14,8,10,9,16,11,15,15,24,13,13,9,13,8,9,8,16,9,9,7,12,8,11,10,20,11,11,8,12,7,9,9,17,10,11,9,16,11,16,16,30,16,17,12,18,11,14,12,21,12,14,11,18,12,17,17,31,17,18,13,20,12,16,15,27,15,18,16,28,19,28,28,53,27,27,18,27,15,18,16,28,15,16,12,20,13,18,17,31,16,16,11,16,10,12,10,19,11,12,10,16,11,15,15,29,15,15,10,15,9,10,8,15,8,9,7,12,8,11,10,20,11,11,8,12,7,9,8,13,8,10,8,14,9,13,13,26,14,14,10,15,9,11,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,24,13,13,9,13,8,9,8,12,7,7,5,8,6,8,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,6,13,7,8,6,8,5,6,5,9,5,6,5,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,9,8,14,10,15,15,33,17,17,12,18,10,12,11,17,9,10,8,14,9,11,11,19,10,10,7,10,6,8,7,13,8,9,7,12,8,12,11,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,14,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,7,8,6,10,6,8,7,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,4,6,4,5,4,8,5,6,5,7,5,7,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,7,4,5,4,5,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,11 +9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,6,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,5,4,6,5,9,5,5,4,6,4,5,4,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,4,7,5,6,6,9,6,7,6,11,7,10,10,16,9,9,6,9,6,6,6,11,6,6,5,8,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,11,7,10,10,20,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,18,10,12,11,18,12,18,18,34,18,18,12,18,10,12,11,18,10,11,8,13,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,17,9,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,4,7,5,7,7,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,12,6,7,6,9,6,8,7,13,7,7,5,7,4,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,3,4,3,3,2,4,2,3,2,2,2,2,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,5,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,15,8,8,6,8,5,6,5,7,4,4,4,6,4,6,5,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,7,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,8,8,13,8,10,8,15,10,14,14,23,12,12,9,13,8,9,8,15,8,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,15,29,15,16,11,17,10,12,11,20,11,12,10,17,11,16,15,29,15,16,12,19,12,16,15,27,15,18,15,26,18,26,26,49,25,26,18,26,15,18,15,26,14,16,12,19,12,16,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,27,14,14,10,14,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,12,7,8,7,14,8,9,7,13,9,12,12,25,13,14,10,13,8,10,9,15,8,9,7,11,7,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,9,9,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,9,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,7,5,6,6,9,5,6,5,10,7,10,10,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,10,6,7,6,11,6,6,5,9,6,9,9,16,9,9,7,10,6,8,8,14,8,10,8,14,10,14,14,31,16,16,11,17,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,8,6,8,9,19,10,10,7,9,5,6,6,10,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,6,4,6,6,10 +11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,8,7,13,7,8,6,9,5,6,6,11,7,8,6,10,7,10,11,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,8,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,8,8,13,8,9,8,14,10,14,14,22,12,12,8,12,8,9,8,14,8,8,7,11,7,10,10,18,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,11,16,10,12,11,20,11,12,10,17,11,15,15,28,15,16,12,19,12,16,14,26,15,18,15,26,17,25,25,48,25,25,17,26,15,18,15,26,14,16,12,19,12,16,15,27,14,15,10,15,9,11,10,17,10,11,9,15,10,14,14,26,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,7,11,7,8,7,14,8,9,7,12,8,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,30,16,16,11,16,10,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,19,10,10,7,9,5,6,6,10,6,6,5,8,6,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,10 +20,10,10,7,10,6,8,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,6,5,9,6,8,8,8,5,5,4,6,4,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,7,7,12,7,7,6,10,7,9,9,17,9,10,8,12,8,10,10,18,10,12,11,19,13,19,19,25,13,13,9,13,8,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,5,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,7,5,6,6,10,7,11,11,20,11,11,8,12,8,10,9,16,9,11,9,14,9,12,12,22,12,12,9,15,10,13,12,23,13,16,13,22,15,21,21,27,14,15,11,16,9,11,10,17,9,10,8,12,8,11,10,19,10,11,8,12,7,9,9,16,9,10,8,13,9,12,12,24,13,13,9,13,8,9,8,13,7,8,6,9,6,9,9,17,9,10,7,10,7,9,8,14,8,10,8,14,10,15,15,32,16,16,11,17,10,13,12,21,12,13,10,16,10,13,12,23,12,12,8,11,7,8,7,13,7,8,7,11,8,11,11,21,11,11,8,11,7,9,8,15,8,9,7,12,8,11,11,20,11,12,9,13,9,12,11,21,12,14,12,20,13,19,19,35,18,18,12,18,11,13,11,20,11,12,10,17,11,15,14,26,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,26,14,14,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,17,12,18,11,15,14,26,15,18,15,27,18,26,26,42,22,22,15,23,13,16,14,24,13,15,12,19,12,17,16,31,16,16,12,18,11,15,14,26,15,18,16,28,19,27,27,54,28,28,19,29,17,22,19,34,18,20,16,27,18,26,25,49,26,28,21,34,21,28,26,50,28,33,28,50,33,49,49,94,48,48,32,48,27,31,26,46,24,26,19,31,20,27,25,47,24,25,18,27,16,19,17,31,17,20,16,26,17,25,25,49,25,26,18,26,15,18,16,28,15,16,12,18,12,16,15,28,15,16,12,18,11,15,14,25,14,16,13,22,15,22,22,47,24,23,16,23,13,16,14,25,14,15,12,19,12,16,15,28,15,15,10,15,9,12,11,20,11,12,10,17,11,16,16,30,16,16,11,15,9,10,9,16,9,10,8,13,9,12,11,21,11,12,9,13,8,11,10,19,11,13,11,19,13,19,19,43,22,22,15,22,13,16,14,25,13,14,11,18,11,15,13,24,13,13,9,14,8,10,9,15,8,9,7,12,8,11,11,20,10,10,7,10,6,7,7,12,7,8,7,11,8,11,10,19,10,11,8,12,8,11,10,19,11,12,10,18,12,17,17,24,13,13,10,15,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,10,7,9,9,16,9,11,10,17,11,16,16,30,16,16,11,17,10,13,11,20,11,11,9,14,9,13,12,23,12,13,10,17,10,13,12,23,13,16,14,26,18,26,26,59,30,30,21,32,18,22,19,33,18,19,14,23,14,19,18,34,18,19,13,20,12,14,13,23,13,15,12,19,13,19,19,36,19,19,13,19,11,13,11,18,10,11,9,14,9,12,12,23,12,13,10,15,9,11,10,19,11,13,10,17,12,17,16,37,19,19,13,19,11,13,11,19,10,10,7,11,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,8,11,11,20,11,11,7,10,6,7,7,12,7,8,6,9,6,7,6,11,6,7,5,8,5,7,6,11,7,9,8,14,10,15,15,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,9,9,18 +10,6,6,4,6,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,7,4,5,5,8,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,3,3,4,3,4,3,5,4,5,5,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,14,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,9,6,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,13,25,14,15,11,17,11,14,13,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,14,10,16,10,14,13,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,8,8,7,12,8,11,11,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,8,14,10,14,14,30,16,16,11,16,10,12,10,17,9,10,8,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,8,6,8,8,11,6,6,5,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,10 +10,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,13,7,7,5,6,4,4,4,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,2,4,2,2,2,4,3,4,3,4,3,5,5,2,2,2,2,1,1,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,8,5,7,7,13,7,8,7,12,8,12,11,14,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,10,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,8,6,8,8,17,9,9,6,10,6,8,7,11,6,7,5,9,6,8,7,12,7,7,5,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,17,9,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,8,8,13,7,8,6,8,5,7,6,10,6,6,5,10,7,9,8,16,9,9,7,10,6,8,8,13,8,10,8,14,10,14,14,22,12,12,8,12,7,8,7,12,7,8,6,10,7,9,9,16,8,8,6,10,6,8,8,14,8,10,9,14,10,15,15,27,14,14,10,15,9,11,10,17,10,11,9,15,10,14,13,25,14,15,11,17,11,14,13,26,15,18,15,26,18,26,26,48,25,25,17,25,14,16,14,24,13,14,10,17,11,15,14,24,13,13,9,14,8,10,9,16,9,10,8,13,9,12,12,26,14,14,10,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,14,8,8,7,12,8,11,11,25,13,12,8,13,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,6,10,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,13,7,7,5,8,5,6,5,8,5,6,4,6,4,5,5,8,4,4,3,6,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,7,12,7,8,6,9,6,8,7,12,8,10,9,14,10,14,14,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,11,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,3,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,6,6,10 +7,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,4,3,3,3,6,3,3,3,4,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,4,4,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,7,7,5,7,4,6,5,8,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,6,8,7,12,7,8,7,11,7,10,10,17,10,10,8,12,8,10,9,18,10,13,11,18,12,18,18,33,17,17,12,17,10,11,9,17,9,10,7,12,8,10,10,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,9,18,10,10,7,9,6,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,7,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,5,5,4,7,4,6,5,8,5,6,4,7,4,6,5,8,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,12,6,7,6,8,6,8,7,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,5,5,4,6,4,4,4,8,4,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,13,7,7,5,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,3,3,4,3,5,5,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,6,8,7,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,10,5,5,4,5,4,5,5,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,11,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,13,7,7,6,9,6,7,7,10,6,7,6,10,7,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,15,21,11,11,8,12,7,9,8,13,8,9,7,11,7,9,9,18,10,10,7,10,7,9,8,15,9,11,9,15,10,15,15,28,15,15,11,16,9,11,10,18,10,11,9,16,10,14,14,25,13,14,11,18,11,15,14,26,15,18,16,28,19,27,27,49,25,25,17,26,14,16,13,25,13,14,11,17,11,15,14,25,13,14,10,14,8,10,9,16,9,10,8,14,9,13,13,28,15,15,10,14,8,9,8,15,8,9,7,11,7,8,8,15,8,8,6,9,6,8,7,14,8,9,7,12,8,12,12,26,13,13,9,14,8,9,8,14,8,8,6,10,7,9,9,17,9,9,7,10,6,7,7,11,6,7,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,7,6,10,5,5,4,6,4,4,4,5,3,4,4,6,4,5,5,11,6,6,5,8,5,7,6,9,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,10,6,6,4,6,4,6,5,10,6,7,6,9,6,9,8,17,9,9,7,10,6,7,6,12,7,7,6,10,6,8,8,12,7,7,6,10,6,7,7,12,7,9,9,16,11,16,15,31,16,16,11,16,10,12,10,17,9,10,8,12,8,11,10,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,21,11,11,7,10,6,8,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,8,21,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,6,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,2,3,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,11 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,5,8,5,6,5,8,6,8,9,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,7,10,7,9,8,15,9,11,9,16,11,16,16,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,4,3,5,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,4,7,5,6,5,9,6,9,9,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,4,6,4,5,5,8,4,5,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7 +7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,7,4,5,4,7,5,8,8,9,5,4,3,3,2,2,2,5,3,4,3,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,6,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,5,6,5,8,5,7,7,10,6,6,5,9,5,6,6,10,6,7,6,10,7,10,10,15,8,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,8,12,8,11,10,18,11,13,11,19,13,19,19,34,18,18,12,19,11,12,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,7,10,9,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,8,7,10,6,7,5,8,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,9,5,6,5,7,5,6,6,9,5,6,4,7,4,5,4,7,4,5,4,5,4,6,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,3,3,3,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,6,6,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,15,8,7,5,7,5,6,5,7,4,5,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,4,6,4,7,7,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,5,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,7,4,5,5,9,5,6,5,9,6,9,9,13,7,8,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,9,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,30,15,15,11,16,9,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,7,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,5,4,4,4,5,3,3,3,4,3,5,5,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,5,4,5,5,7,4,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6 +10,6,6,5,7,4,5,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,11,6,5,4,5,3,4,3,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,3,4,2,2,2,3,2,3,3,5,4,5,5,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,16,9,9,6,8,5,6,6,10,6,6,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,11,8,12,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,11,7,8,7,11,8,12,12,18,10,10,7,11,7,8,7,12,7,8,6,10,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,10,6,8,8,14,8,9,7,10,6,7,7,12,7,7,6,10,7,10,10,15,8,8,6,10,7,9,9,16,9,10,9,15,11,16,16,24,13,13,9,14,8,10,8,14,8,9,7,12,8,11,10,18,10,11,8,12,7,9,9,16,9,11,10,17,11,16,16,29,15,15,11,17,10,12,10,18,10,12,9,15,10,14,14,27,15,16,12,20,12,16,15,28,16,20,17,29,19,28,28,54,27,27,18,26,15,17,15,26,14,15,11,17,11,15,14,27,14,14,10,15,9,11,10,17,10,11,9,14,10,14,14,30,16,16,11,17,10,11,9,16,9,9,7,11,7,9,9,14,8,8,6,9,6,8,8,14,8,10,8,13,9,13,13,28,15,15,11,16,9,11,10,17,9,10,8,12,8,11,10,18,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,11,8,11,11,28,15,15,10,15,9,10,8,14,8,9,7,11,7,9,9,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,13,7,8,6,8,5,5,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,9,7,10,6,7,6,10,6,6,4,6,4,5,4,11,6,7,5,8,5,6,6,11,6,7,6,10,6,8,8,21,11,11,8,13,8,10,8,14,8,9,7,10,7,9,9,16,9,9,7,11,7,8,8,14,9,11,9,16,11,16,16,31,16,16,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,11,7,9,8,15,9,10,8,13,9,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,7,14,8,8,6,9,6,7,6,10,6,7,6,10,6,8,8,21,11,11,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,3,2,3,3,4,3,3,3,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,4,3,5,5,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10 +5,3,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,11,7,9,8,15,9,11,9,16,11,15,15,29,15,15,10,14,8,10,8,14,8,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,6,6,5,8,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,3,2,2,2,1,1,2,2,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,8,4,4,4,6,4,5,5,7,5,6,5,8,6,8,8,8,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,2,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,5,8,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,9,10,8,13,8,10,9,17,10,12,10,18,12,17,17,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,5,6,6,10,6,7,6,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,9,5,5,4,6,4,6,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,6,4,5,3,4,4,6,4,4,3,3,2,2,2,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,13,7,6,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,10,7,10,10,18,9,9,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,5,12,6,6,5,8,5,6,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,4,6 +4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,7,4,5,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,13,8,9,8,14,9,13,13,24,12,12,9,13,8,9,8,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,14,7,7,5,8,5,6,5,7,4,4,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,6,5,8,5,7,7,9,5,5,4,6,4,4,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,0,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,4,5,5,11,6,6,5,8,5,6,6,9,5,6,6,10,7,10,10,9,5,6,4,6,4,4,4,5,3,3,2,3,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,7,5,6,6,9,5,5,4,7,4,5,5,8,5,5,4,5,4,5,4,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,9,9,12,7,7,5,7,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,6,8,7,11,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,7,11,8,11,11,22,12,13,10,16,10,13,12,22,13,15,13,22,15,22,22,40,21,21,14,21,12,14,12,20,11,11,8,12,8,11,10,20,11,11,7,10,6,8,7,12,7,8,7,11,7,10,10,22,11,11,8,12,7,8,7,11,6,6,5,8,5,7,7,12,7,7,6,9,6,7,7,10,6,7,6,10,7,10,10,21,11,11,7,10,6,7,6,12,7,7,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,13,7,8,6,8,5,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,5,8,6,8,8,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,5,4,5,4,5,5,6,4,5,4,6,4,6,7,10,5,5,4,6,4,4,3,7,4,4,3,4,3,3,3,8,4,4,3,4,3,5,5,7,4,5,4,6,4,6,5,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,7,6,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,6,8,7,13,7,8,6,8,5,7,6,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,4,5,4,9,5,5,4,6,4,6,6,16,9,9,6,9,6,7,6,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,6,4,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,7,4,6,5,8,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,13,8,9,8,13,7,7,6,8,6,7,7,12,7,7,5,7,4,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,7,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,7,4,5,5,8,5,6,5,8,6,9,9,7,4,5,4,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,6,5,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,7,10,10,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,12,7,8,7,10,7,10,10,19,10,11,9,14,9,12,11,20,12,14,11,20,14,20,20,36,19,19,13,18,10,12,10,18,10,10,8,12,8,10,9,16,9,9,6,9,6,8,7,11,7,8,6,9,6,9,9,20,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,6,9,6,7,6,9,6,9,9,18,9,9,6,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,4,6,4,4,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,6,5,8,5,7,7,20,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,13,7,7,5,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,9,5,6,6,10,6,7,6,11,8,11,11,17,9,9,7,9,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,6,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,7,4,4,3,3,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,4,2,2,2,3,3,4,4,6 +4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,10,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,7,12,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,19,13,19,19,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,15,8,9,6,9,6,7,6,11,6,7,6,9,6,9,9,19,10,10,7,11,7,8,7,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,5,9,6,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,6,5,9,5,6,5,7,5,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,5,6,3,3,3,3,2,3,2,4,2,2,2,3,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,13,7,7,5,8,5,6,5,9,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,4,3,3,2,3,3,4,4,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5 +7,4,3,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,5,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,3,2,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,9,6,8,8,14,8,10,9,16,11,16,16,13,7,7,5,6,4,5,5,8,5,5,4,5,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,10,7,9,9,11,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,10,6,7,5,8,5,7,6,11,7,8,7,12,9,14,14,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,18,10,10,7,10,6,8,7,11,7,8,6,10,7,9,8,14,8,9,7,10,6,8,7,12,7,9,8,14,10,14,15,20,11,11,8,12,7,8,7,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,7,12,7,8,7,12,8,11,11,17,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,11,13,11,18,12,18,19,32,17,17,12,17,10,12,10,18,10,11,9,14,9,13,12,23,12,12,9,14,9,11,11,20,11,13,11,18,13,19,19,33,17,17,12,19,11,14,12,22,12,14,11,19,13,18,18,34,18,19,14,23,15,20,19,36,21,25,21,37,25,37,37,69,35,35,23,33,19,22,18,31,16,17,12,19,12,16,15,29,15,16,12,18,11,13,12,22,12,14,11,19,12,17,16,36,18,18,13,19,11,13,11,18,10,10,8,12,8,11,11,21,12,13,10,15,9,12,11,19,11,12,10,16,11,16,16,32,17,17,12,17,10,11,9,15,8,9,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,10,9,15,10,14,14,24,13,13,9,13,8,10,9,15,8,9,7,10,6,8,7,12,7,8,6,10,6,8,7,13,8,9,8,13,9,13,13,36,19,19,13,20,11,13,11,19,10,11,8,12,8,11,10,18,10,10,7,9,6,7,7,12,7,7,6,10,6,8,8,10,6,6,5,7,5,6,6,10,6,7,6,9,6,8,7,12,7,8,6,10,6,8,7,13,8,9,7,11,7,10,10,16,9,9,7,10,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,6,4,5,4,7,5,8,8,24,13,13,9,14,9,11,10,17,9,10,8,12,8,11,11,20,11,11,8,13,9,12,12,22,13,15,12,21,14,20,20,30,15,15,11,16,10,12,10,17,9,10,8,12,8,11,11,20,11,11,8,13,8,10,9,15,9,10,8,12,8,12,12,23,12,12,8,12,7,9,8,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,7,6,9,6,9,9,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,7,12,7,8,6,10,6,8,7,13,7,8,7,12,8,10,10,11,6,7,5,7,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,7,5,8,5,6,6,10,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,2,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,10,6,7,5,8,5,7,6,10,6,6,5,8,5,7,7,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,4,4,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,5,9 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,5,4,5,5,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,16,8,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,8,7,12,7,8,6,10,7,10,10,18,10,10,8,12,8,11,10,19,11,13,11,19,13,20,20,36,19,19,12,18,10,12,10,16,9,9,7,10,7,9,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,7,6,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,5,12,7,7,5,7,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,5,3,3,3,3,3,4,3,5 +4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,4,4,6,4,6,6,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,8,4,4,4,5,3,4,4,7,5,6,5,9,6,9,9,8,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,5,3,4,4,5,3,4,4,5,4,6,5,6,3,3,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,17,9,9,6,9,5,6,5,9,5,6,4,7,4,5,5,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,8,8,12,6,6,5,7,4,4,4,6,4,4,3,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,5,7,4,5,4,7,4,4,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,7,6,10,7,11,11,17,9,9,6,10,6,7,6,11,6,7,6,9,6,7,7,13,7,6,5,7,5,6,6,11,7,8,7,10,7,10,11,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,19,10,10,8,13,8,11,10,20,12,14,12,20,14,21,21,38,20,20,13,19,11,13,11,17,9,9,7,10,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,10,7,10,9,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,11,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,6,5,9,5,6,4,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,7,20,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,4,3,5,3,3,3,6,3,2,2,3,2,2,2,4,3,4,3,4,3,5,5,13,7,8,6,8,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,8,12,11,16,8,8,6,9,6,7,6,9,5,6,5,6,4,6,6,10,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,5,4,5,5,6,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,4,4,7,4,4,4,7,5,6,6,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,5,3,3,3,3,3,4,4,6 +3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,4,5,3,3,3,4,3,3,3,5,4,4,4,6,5,7,7,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,3,5,3,3,3,5,4,4,4,7,4,5,4,6,4,4,4,7,4,5,5,8,6,8,8,12,6,6,5,7,4,5,4,8,5,5,4,7,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,8,15,9,10,9,15,10,15,15,28,14,14,10,14,8,9,8,13,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,5,8,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,14,8,8,6,8,5,5,4,8,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4 +3,2,2,2,2,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,5,3,4,4,7,5,7,7,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,10,6,6,4,5,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,5,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,13,7,8,6,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,5,4,7,4,5,4,7,5,7,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,18,10,10,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,8,5,7,7,12,7,8,7,12,9,13,13,22,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,23,12,13,9,14,9,12,11,23,13,16,13,23,16,23,23,44,22,22,15,21,12,14,12,20,11,11,8,12,8,10,10,18,9,9,7,10,7,9,8,13,8,9,7,12,8,11,10,21,11,10,7,10,6,7,6,10,5,5,4,6,4,6,7,13,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,10,6,6,5,8,5,6,5,9,6,7,6,9,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,5,6,5,9,5,5,4,6,4,4,4,9,5,5,4,7,5,8,8,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,6,4,5,4,6,4,4,3,5,3,3,3,5,4,5,5,7,4,4,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,12,8,12,12,17,9,9,7,10,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,8,5,6,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,5,14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,6 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,14,8,10,8,14,10,14,14,26,14,14,9,13,8,9,8,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,4,5,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4 +2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,3,5,3,4,3,6,4,6,6,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,6,4,4,4,8,5,5,4,7,5,7,8,11,6,6,4,6,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,6,6,10,7,10,10,14,8,8,6,9,5,6,6,10,6,6,5,9,6,7,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,11,8,12,8,10,10,18,10,12,10,18,12,18,18,34,18,18,12,17,10,12,10,16,9,9,7,11,7,9,8,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,17,9,8,6,8,5,6,5,8,4,4,3,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,6,8,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,6,6,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,13,7,8,6,8,5,6,5,7,4,5,4,6,4,4,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,3,6,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,5,4,5,4,5,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,5,4,4,4,8,5,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,6,6,9,7,10,10,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,8,17,9,10,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,8,6,7,7,15,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4 +2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,2,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,4,3,4,3,5,4,5,5,8,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,6,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,8,5,5,4,6,4,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,8,5,5,4,7,4,5,5,8,5,6,5,8,5,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,13,7,8,6,10,6,8,8,14,8,10,8,14,9,13,13,23,12,12,9,13,8,9,8,13,7,7,6,9,6,7,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,13,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,15,8,9,6,9,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,15,16,25,13,14,10,14,9,11,10,18,10,11,8,12,8,11,10,20,11,11,8,11,7,10,9,16,9,11,10,17,12,18,18,31,16,16,12,18,11,13,11,20,11,13,10,16,11,15,15,31,17,18,13,21,13,17,16,30,17,20,17,31,21,31,31,59,30,30,20,30,17,19,16,28,15,15,11,17,11,15,14,27,14,14,10,16,9,11,10,18,10,12,9,15,10,13,13,27,14,14,10,14,8,10,8,14,8,8,7,11,7,9,8,16,9,9,7,11,7,8,8,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,16,9,9,7,12,8,10,9,15,8,8,6,10,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,13,8,9,8,13,7,7,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,31,16,16,11,16,9,11,9,15,8,9,7,11,7,9,8,12,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,11,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,17,9,9,7,11,7,9,8,14,8,9,7,10,7,9,9,19,10,11,8,12,7,9,9,16,9,11,9,16,11,16,16,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,14,8,8,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,5,6,6,10,6,6,5,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,3,4,4,6,4,5,4,6,4,6,5,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,3,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,4,5,4,5,4,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,8,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,14,8,8,6,8,5,7,6,10,6,7,5,7,5,7,6,11,6,7,5,7,4,6,5,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,17,12,17,17,33,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,5,5,8,4,5,4,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,5,4,7,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,7,5,6,6,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,6,4,6,5,6,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,9,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,13,7,8,6,8,5,6,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,9,8,14,8,8,7,12,8,10,10,21,11,12,9,13,9,12,11,20,12,14,12,20,14,20,20,39,20,20,13,20,11,13,11,19,10,11,8,12,8,11,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,6,5,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,5,9,5,6,4,5,3,4,4,8,4,4,4,6,4,5,4,7,4,5,4,7,5,8,8,20,10,10,7,11,7,8,6,10,6,6,5,8,5,6,5,9,5,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,4,2,2,2,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,11,6,7,6,11,7,10,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,11,6,7,5,7,5,6,6,9,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,17,9,10,7,11,7,10,9,16,10,11,10,16,11,17,17,32,16,16,11,16,9,11,9,16,9,9,7,10,7,9,8,16,8,8,6,9,6,7,6,10,6,7,5,8,6,8,7,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,6,11,6,7,5,7,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,4,3,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4 +-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,4,3,4,4,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,9,5,6,6,10,7,9,9,10,5,5,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,4,6,4,5,5,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,9,5,6,4,6,4,4,4,7,4,5,5,8,6,8,7,12,7,8,6,9,6,8,7,14,8,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,7,4,5,4,8,5,5,5,8,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,6,5,7,7,12,7,7,5,8,6,8,7,12,7,8,7,11,8,11,12,18,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,8,14,8,9,8,14,10,15,15,26,13,13,9,14,8,10,9,17,9,10,8,12,8,11,11,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,15,29,15,16,12,19,12,17,16,28,16,19,16,28,19,28,29,55,28,28,19,28,16,18,15,27,15,16,12,18,11,15,14,27,14,14,10,15,9,11,10,17,9,10,8,14,9,13,12,23,12,12,8,12,7,8,7,14,8,9,7,12,8,10,9,15,8,9,7,10,7,9,8,16,9,10,8,13,9,13,13,25,13,13,9,14,8,9,8,16,9,9,7,10,6,8,8,14,8,9,7,10,6,7,7,13,7,8,7,12,8,11,11,19,10,11,8,11,7,8,7,13,7,8,6,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,10,10,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,13,7,7,5,6,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,9,9,18,9,9,7,10,6,7,6,12,7,7,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,9,8,14,10,15,15,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,4,4,5,3,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,18,9,9,7,10,6,7,6,12,6,7,6,8,5,7,7,13,7,7,6,8,6,7,6,11,6,8,6,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,11,8,11,10,20,11,11,8,13,8,11,10,19,11,13,11,19,13,19,19,36,19,19,13,19,11,12,10,18,10,11,8,12,8,10,10,18,10,10,7,10,6,8,7,11,6,7,6,10,6,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,10,6,6,5,7,4,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,7,6,9,5,5,4,7,4,6,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,6,5,8,6,9,9,9,5,4,3,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,4,4,7,4,5,5,8,6,8,7,13,7,8,6,8,6,8,7,13,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,12,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,7,7,12,6,6,5,6,4,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,9,11,9,17,9,10,8,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,11,21,11,12,10,16,11,16,15,30,16,17,13,19,12,16,15,29,17,20,16,28,19,28,28,53,27,27,18,27,15,18,15,27,14,15,11,18,11,15,14,27,14,14,10,15,9,11,10,16,9,10,8,14,9,12,12,22,12,12,8,13,7,8,8,13,7,8,7,11,7,10,9,16,9,10,7,10,7,9,8,16,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,8,11,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,9,8,16,9,10,7,10,6,8,8,14,8,10,9,15,11,16,16,19,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,8,6,8,8,13,7,6,5,7,4,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7 +-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,8,5,6,5,8,6,9,9,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,11,14,8,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,6,7,6,11,6,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,9,6,7,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,25,13,13,10,14,9,11,9,16,9,10,8,11,7,10,10,19,10,11,8,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,17,10,13,12,21,11,12,10,16,11,16,15,30,16,17,13,20,12,16,15,29,16,19,16,28,19,28,28,52,26,26,18,26,15,18,15,27,14,15,11,18,11,15,14,26,14,14,10,15,9,11,10,16,9,10,8,13,9,12,12,22,12,12,8,13,8,9,8,13,7,8,7,11,7,10,9,16,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,26,14,14,10,14,8,9,8,13,7,7,6,10,6,8,7,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,6,5,9,6,8,8,16,9,9,7,10,6,8,8,14,8,10,9,15,11,16,16,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,7 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,4,3,3,3,4,3,5,5,8,5,5,4,6,5,7,7,12,7,7,6,9,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,9,17,9,10,8,12,8,11,11,20,11,13,11,19,13,18,18,15,8,8,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,8,7,11,8,12,12,22,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,13,10,16,10,13,12,23,13,15,12,21,14,21,21,27,14,14,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,11,8,12,8,10,9,17,10,11,9,15,10,14,14,26,14,14,10,15,9,11,10,17,10,11,9,14,9,13,12,23,13,14,11,17,11,14,13,24,14,16,13,23,15,22,22,44,22,22,15,21,12,14,12,22,12,13,10,16,10,14,14,27,14,15,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,12,9,13,8,9,8,14,8,9,8,13,9,13,12,23,12,13,9,14,9,12,11,21,12,13,11,19,13,19,20,35,18,18,12,18,11,14,12,22,12,13,10,16,11,15,14,27,14,14,10,15,9,12,11,19,11,13,10,17,11,16,16,31,16,16,12,18,11,13,11,20,11,13,11,18,12,17,17,32,17,18,13,20,13,17,16,30,17,19,15,26,18,26,25,49,25,25,17,26,15,19,17,30,16,18,13,21,13,18,17,32,17,17,12,19,12,16,15,27,15,17,14,24,16,23,23,44,23,23,16,25,15,19,17,30,17,19,16,28,19,27,26,51,27,29,22,35,22,30,28,54,30,36,31,55,37,54,54,103,52,52,35,51,28,33,28,49,26,28,20,32,20,27,25,48,25,26,18,28,16,20,18,33,18,21,17,28,18,26,26,50,26,26,18,26,15,17,14,25,14,15,12,19,12,17,16,30,16,17,13,20,12,16,14,25,14,17,14,24,16,24,24,48,24,24,16,24,14,17,15,26,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,13,7,8,7,11,7,10,10,20,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,17,18,51,26,26,17,25,14,17,14,25,13,14,11,18,12,16,15,28,15,15,11,16,10,13,11,20,11,12,9,15,10,13,13,25,13,13,9,14,8,10,9,16,9,9,7,12,8,11,10,19,10,11,8,11,7,9,8,15,8,9,8,13,9,13,13,25,13,13,9,13,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,38,19,19,13,20,12,15,13,23,13,14,11,18,12,17,16,30,16,17,12,19,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,12,10,17,10,11,8,13,9,12,12,23,12,13,9,13,8,11,10,19,10,11,9,15,10,15,15,28,15,15,10,15,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,20,10,10,7,9,5,6,6,10,6,6,5,7,5,7,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,7,10,6,7,6,11,6,7,5,7,5,6,6,10,5,5,4,5,4,5,4,7,5,6,5,8,6,9,9,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,5,4,5,3,4,4,6,4,5,4,7,5,8,8,14,7,7,5,7,4,5,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,6,7,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,13,25,13,13,9,13,8,10,9,15,9,10,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,8,13,9,12,12,23,12,12,9,13,8,10,9,16,9,10,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,52,26,26,18,26,15,17,14,25,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,10,11,9,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,10,6,9,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,10,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,9,6,10,7,9,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,6,5,9,6,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,2,4,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,2,4,3,4,3,4,3,4,4,7 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,5,4,6,6,11,6,7,5,8,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,7,11,7,8,7,11,8,11,11,14,8,8,5,7,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,7,14,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,12,7,8,6,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,6,6,12,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,6,8,8,14,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,10,6,7,6,11,6,7,6,9,6,9,9,16,9,9,7,11,7,8,8,15,9,10,8,14,10,14,14,25,13,14,10,13,8,10,9,15,9,10,7,12,8,10,9,17,9,10,7,10,6,8,8,14,8,10,8,13,9,12,12,23,12,12,9,14,8,10,9,16,9,11,9,15,10,14,14,26,14,15,11,18,12,16,15,28,16,19,16,28,19,28,28,53,27,26,18,26,15,18,15,26,14,14,10,17,11,14,13,25,13,14,10,14,8,10,9,17,9,10,8,15,10,14,13,26,14,14,9,13,8,9,8,13,7,8,6,9,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,12,9,13,13,24,12,12,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,5,9,5,6,5,9,7,10,10,27,14,14,9,13,8,10,8,12,7,8,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,7,4,5,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,6,6,9,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,12,7,8,6,9,6,9,9,15,8,8,6,10,7,9,8,15,9,10,9,16,11,15,15,18,9,9,7,10,6,6,5,10,6,6,5,8,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,4,3,4,4,7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,6,3,3,3,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,4,7,5,7,7,14,7,7,5,8,5,6,5,8,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,7,5,7,6,11,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,17,9,10,7,9,6,7,6,10,6,7,5,8,6,7,7,12,6,7,5,7,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,7,8,6,11,7,10,10,17,9,10,8,12,8,11,10,19,11,13,11,19,13,19,19,36,18,18,12,18,10,12,10,18,10,10,7,12,8,10,9,17,9,10,7,10,6,7,6,12,6,7,6,10,7,9,9,17,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,5,3,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,7,5,6,6,10,6,7,6,11,8,10,10,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,3,2,2,1,3,2,3,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,11,8,12,12,14,7,7,5,6,4,4,4,8,5,5,4,6,4,6,5,10,5,5,4,6,4,5,5,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,7,6,13,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,10,9,16,9,9,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,14,8,10,9,14,8,9,7,12,8,11,10,17,9,10,7,10,7,9,8,15,9,10,8,12,8,12,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,15,25,13,14,11,18,11,15,14,27,15,18,16,28,19,27,27,54,27,27,18,26,15,17,14,26,14,15,11,17,11,14,13,25,13,13,9,14,9,11,9,17,9,10,8,14,9,13,13,25,13,13,9,12,7,8,7,13,7,7,5,8,5,7,7,17,9,10,7,10,6,8,7,13,8,9,8,13,9,13,13,24,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,13,7,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,12,6,6,4,6,4,5,5,10,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,12,7,7,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,11,11,18,10,10,7,10,6,8,7,12,7,7,6,10,7,9,9,14,8,8,6,10,6,8,8,14,8,10,9,16,11,15,15,19,10,10,7,10,6,6,5,11,6,7,5,8,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,8,6,9,9,13,7,8,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,3,3,3,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,14,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,3,3,5,3,4,3,4,3,4,4,8 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,8,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,8,7,11,7,9,8,16,9,10,9,16,11,15,15,31,16,15,10,15,9,10,8,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,8,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,6,6,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,5,6,5,9,5,6,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,9,7,9,6,7,7,12,7,8,7,11,7,10,10,18,10,10,8,13,8,10,10,19,11,12,10,19,13,18,18,37,19,18,12,18,10,12,10,19,10,11,8,12,8,10,9,17,9,10,7,10,6,7,6,12,7,7,6,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,4,4,6,4,6,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,3,3,4,4,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,3,4,4,6 +0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,8,4,5,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,5,9,5,5,5,7,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,31,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,10,5,5,4,6,4,5,5,10,6,7,6,10,7,10,9,8,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,3,4,4,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,11,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,7,10,6,6,5,9,6,7,6,9,6,8,8,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,26,14,14,10,14,8,9,7,12,7,7,5,8,6,8,8,13,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,5,7,7,13,8,9,7,12,8,11,11,23,12,12,9,14,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,8,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,8,8,14,8,9,8,14,10,14,14,25,13,13,9,13,8,10,9,15,9,10,8,12,8,11,10,17,9,10,7,11,7,8,8,14,8,9,7,12,8,11,11,24,13,13,10,15,9,12,10,18,10,12,10,16,11,15,15,27,15,16,12,18,11,15,15,28,16,18,15,27,18,27,27,56,29,29,19,28,16,19,16,28,15,15,11,17,11,14,14,26,14,14,10,15,9,10,9,16,9,11,9,14,9,13,12,24,13,13,9,14,8,9,8,13,8,9,7,11,7,9,8,17,9,10,7,10,6,8,7,12,7,9,8,13,9,14,14,23,12,13,9,13,7,8,7,12,7,8,6,9,6,9,9,16,9,9,7,11,7,8,7,12,7,7,6,10,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,7,6,10,6,7,5,8,5,6,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,5,6,6,10,6,6,5,9,6,9,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,19,10,11,8,11,7,8,7,11,6,7,6,10,7,9,8,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,10,5,5,4,5,3,4,4,6,4,5,4,6,5,7,7,15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,5,3,2,2,2,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,3,5,3,4,3,4,3,5,5,10 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,5,3,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,15,10,15,15,30,16,16,10,15,9,11,9,15,8,8,6,9,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,0,0,3,2,2,1,1,1,2,1,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,5,5,3,5,3,4,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,4,5,4,5,5,7,4,4,3,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,5,4,5,5,8,5,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,17,17,11,17,10,12,10,16,9,9,7,10,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,9,6,7,6,9,7,10,10,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,2,2,2,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,24,13,13,9,13,8,9,8,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,8,8,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,1,1,1,1,1,1,0,0,3,2,1,1,0,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,4,7,5,6,5,8,6,8,8,6,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,1,1,1,1,0,0,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,9,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,10,6,6,4,6,4,6,6,12,7,7,5,7,5,6,6,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,9,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,11,6,7,5,8,5,7,7,16,9,9,7,10,6,7,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,19,11,13,11,20,14,20,20,38,20,20,14,20,11,13,11,19,10,11,8,13,9,12,11,20,11,11,8,11,7,9,8,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,8,5,5,4,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,5,4,6,6,11,6,5,3,4,3,3,3,6,4,4,4,6,4,4,4,9,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,15,8,8,6,8,5,5,5,7,4,5,4,7,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,3,7,4,5,4,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,12,12,24,12,12,8,13,8,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,7,4,4,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5 +1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,4,7,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,5,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,7,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,7,9,9,16,9,11,9,17,11,16,16,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,8,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,9,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,2,2,3,5,3,4,3,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,5,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,8,8,13,7,7,6,8,5,6,6,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,10,7,9,9,16,9,11,9,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,6,9,6,7,6,11,6,6,5,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,5,5,10,6,6,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,3,4,4,7 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,10,5,5,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,7,6,11,8,11,12,8,4,4,3,5,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,11,6,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,5,6,5,9,7,10,10,14,8,8,5,7,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,8,12,13,29,15,16,11,16,9,10,8,14,8,8,7,11,7,9,8,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,11,7,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,23,12,13,9,14,8,10,8,14,8,10,8,13,9,12,11,20,11,12,9,13,8,10,10,18,10,12,10,17,11,15,15,31,16,16,11,15,9,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,9,16,9,11,9,14,9,13,12,25,13,13,10,15,9,12,10,18,10,11,9,16,10,14,14,26,14,15,12,19,12,16,16,30,17,20,17,29,20,29,29,59,30,31,21,31,18,21,18,31,17,18,13,20,13,17,16,31,16,16,11,17,10,12,11,19,11,12,9,14,9,13,12,22,12,12,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,10,7,9,9,16,9,11,9,14,10,14,14,25,13,14,10,15,9,10,9,16,9,9,7,12,8,10,9,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,11,8,12,7,9,8,14,8,9,7,11,7,9,8,15,8,9,7,11,7,9,8,15,9,11,9,15,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,9,6,7,6,11,6,7,5,7,4,5,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,7,12,8,11,11,20,11,11,8,13,8,10,10,18,11,13,11,18,12,18,18,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,9,6,9,9,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,10,5,5,4,5,3,4,3,4,3,3,3,5,4,5,5,11,6,6,5,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,6,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,6,4,4,4,7,5,7,7,12 +1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,6,4,6,6,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,6,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,8,6,10,7,9,9,16,9,11,9,15,10,15,15,30,16,16,11,16,10,11,10,16,9,10,7,11,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,12,6,6,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,7 +0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,4,7,5,7,7,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,2,2,2,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,4,3,5,4,6,6,8,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,8,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,6,5,6,4,6,6,10,6,6,4,7,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,6,5,9,6,7,7,14,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,31,16,17,12,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,5,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,4,4,8,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,7,5,6,5,9,6,7,6,10,7,10,10,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,5,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,9,5,4,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,6,4,6,6,10,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,4,5,4,4,4,8,5,5,4,6,4,5,4,6,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,5,8,5,7,7,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,3,3,6,4,4,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,2,3,2,3,2,3,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,4,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,6 +0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,3,7,4,5,4,7,5,7,7,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,5,5,8,5,7,7,16,9,9,7,10,6,6,5,9,5,5,4,6,4,6,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,15,8,9,7,10,6,7,7,10,6,6,5,8,5,7,7,14,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,8,5,7,6,9,5,6,6,10,7,9,9,17,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,14,8,9,7,12,8,10,9,17,10,11,10,17,12,17,17,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,10,19,10,10,8,12,7,9,7,11,6,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,5,5,11,6,6,5,8,5,6,5,9,5,6,6,10,7,9,9,14,8,8,6,9,5,6,6,10,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,10,7,9,9,16,8,8,5,7,5,6,5,6,4,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,7,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,4,3,4,3,5,5,9 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,4,5,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,11,8,11,11,20,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,6 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,5,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,5,3,4,4,7,4,4,4,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,4,4,4,6,4,6,5,7,4,4,4,6,5,7,7,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,10,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,5,6,4,5,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,10,6,6,5,8,6,7,7,12,7,9,8,13,9,13,13,22,12,11,8,11,7,8,7,12,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8 +0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,-1,0,0,1,2,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,4,3,4,3,4,4,6,4,5,5,8,6,8,7,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,1,1,-2,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,9,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,7,7,12,7,8,7,12,8,11,11,23,12,12,9,13,8,10,8,14,8,9,7,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,8,5,6,5,13,7,7,5,7,5,6,6,10,6,7,7,12,8,11,11,19,10,10,8,12,7,9,7,12,7,8,7,11,7,10,9,12,7,7,5,7,5,7,7,12,7,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,12,9,15,9,12,12,22,13,15,13,23,16,23,23,41,21,21,14,21,12,14,12,21,11,11,8,13,9,12,11,22,12,12,9,13,8,9,8,14,8,9,7,10,7,10,10,18,10,10,7,9,6,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,7,7,12,7,8,7,13,9,13,13,16,8,8,6,9,6,7,6,9,5,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,6,6,10,6,7,7,12,8,11,11,24,12,12,9,13,8,9,8,13,7,7,5,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,7,12,7,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,6,11,8,11,11,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,4,5,6,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,4,2,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14 +1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,5,5,10,6,7,6,9,6,7,7,12,7,9,8,13,9,13,13,22,12,12,8,12,7,8,7,12,6,6,5,7,5,7,6,12,7,7,5,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,9,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,5,3,3,3,5,3,4,3,5,3,3,2,3,2,3,4,8,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,8,5,6,5,7,5,6,6,11,7,8,6,10,6,8,8,14,8,10,9,14,10,14,15,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,13,7,7,6,9,5,6,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,5,5,8,4,4,3,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,5,9,6,8,8,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,3,2,2,2,3,2,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,5,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,6,3,3,3,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,3,2,2,2,2,3,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,9 +2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7 +3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,1,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,0,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,4,4,3,5,4,6,6,11,6,6,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,5,5,4,6,4,5,5,11,6,7,6,10,7,9,9,22,11,11,8,12,7,9,8,13,7,8,6,10,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,6,6,10,7,10,9,15,8,8,6,10,6,7,7,10,6,6,5,8,6,8,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,9,7,12,8,11,10,19,11,13,11,20,14,20,20,35,18,18,12,17,10,11,10,17,9,9,7,11,7,9,9,18,10,10,7,11,6,7,6,12,7,7,5,8,6,9,9,17,9,9,6,8,5,7,6,11,6,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,5,7,7,10,5,5,4,6,4,5,5,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,12,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,11,6,6,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,3,3,4,3,3,3,6,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,5,3,3,2,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,3,2,3,2,2,2,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,2,2,2,2,5,3,3,2,2,2,2,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,3,3,2,2,2,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12 +2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,6,9,5,6,4,7,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,4,6,4,4,4,8,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,8,4,5,4,7,5,6,6,11,6,7,5,8,6,8,7,13,8,9,8,13,9,14,14,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,3,3,4,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,7,7,5,7,4,5,5,7,4,5,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,0,1,1,1,0,1,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,6,6,1,1,2,1,2,1,1,1,3,2,2,1,2,2,2,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,2,1,2,2,2,2,2,2,2,2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,14,8,8,6,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,4,4,4,5,3,4,4,8,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,11,10,18,11,13,11,19,13,20,20,33,17,16,11,16,9,11,9,15,8,9,7,11,7,10,9,17,9,9,7,9,5,6,6,11,6,7,6,8,6,8,8,16,9,9,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,9,5,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,8,5,5,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,1,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,5,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,6,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,5,6,5,10,6,6,5,9,6,8,8,22,12,12,8,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,7,5,8,5,6,6,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,7,9,9,16,9,10,8,12,8,10,10,18,11,13,11,19,13,20,20,32,16,16,11,16,9,11,9,15,8,9,7,11,7,9,9,16,9,9,6,9,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,8,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,12,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +4,3,3,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,5,8,6,8,8,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,7,14,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,7,6,10,7,10,10,3,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,1,1,1,2,2,-11,-5,-5,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,0,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,26,14,14,10,14,8,10,8,13,7,8,6,9,6,8,7,12,6,6,5,7,5,7,7,12,7,8,7,12,8,11,10,19,10,10,7,11,7,9,8,14,8,9,7,10,7,10,10,18,9,9,7,10,7,9,8,15,9,10,8,14,9,13,13,27,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,14,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,7,10,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,9,11,9,15,10,15,15,43,22,22,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,10,15,9,12,11,19,11,12,9,15,10,14,14,26,14,14,10,15,9,11,10,19,10,11,9,14,9,13,12,22,12,12,9,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,16,10,12,11,19,10,11,8,13,9,12,11,21,11,12,9,14,9,11,10,18,10,12,10,17,12,17,17,32,17,17,12,18,11,14,13,23,13,15,13,23,15,22,21,41,22,23,17,27,17,23,21,39,22,26,22,39,26,38,38,61,31,32,22,33,19,23,20,35,19,20,15,24,15,20,19,35,18,18,12,18,11,13,11,20,11,13,11,18,12,16,15,29,15,15,10,15,9,11,10,17,10,11,8,13,9,13,13,24,13,13,9,14,9,12,11,19,11,14,12,20,13,19,19,20,11,11,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,8,7,11,8,11,11,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,16,10,13,11,20,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,21,11,11,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,5,7,7,12,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,26,14,14,10,15,9,12,10,18,10,11,9,15,10,13,12,23,12,12,9,13,8,11,10,17,10,12,10,18,12,17,17,31,16,15,10,15,9,11,10,17,9,10,7,11,8,11,10,19,10,10,7,11,6,7,6,11,6,7,6,10,7,11,11,20,10,10,7,9,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,4,3,5,4,5,4,22,12,12,8,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,11,8,11,10,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,6,3,3,2,2,1,1,1,2,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,9,6,8,7,12,8,11,11,22 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,5,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,1,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,6,5,10,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,10,7,10,10,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,16,8,8,6,8,5,6,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,5,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,7,5,6,6,12 +2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,3,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,6,5,10,6,6,4,5,4,5,5,9,5,6,5,7,5,8,8,15,8,8,5,7,4,5,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,6,8,7,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,9,17,9,10,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,31,16,16,11,17,10,12,10,18,10,10,8,12,8,11,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,9,8,16,9,9,6,8,5,6,6,9,5,6,5,7,5,8,7,13,7,8,5,7,5,6,6,11,7,8,7,10,7,11,11,11,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,12,7,7,6,8,5,7,6,11,7,8,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,6,6,5,8,5,6,5,10,6,7,6,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,4,6,6,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,4,7,5,6,6,12 +2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,3,2,2,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,5,7,7,12,6,7,5,7,5,6,5,9,6,6,5,8,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,14,22,11,11,8,12,7,8,7,13,7,7,6,8,6,8,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,6,4,5,4,5,4,8,5,6,5,7,5,8,8,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,3,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-3,-1,0,1,1,1,2,2,1,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,14,7,7,5,7,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,5,10,6,7,5,8,6,9,9,15,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,8,4,4,3,5,4,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,6,5,8,5,6,5,8,6,8,8,24,13,13,9,14,8,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,9,9,6,9,5,6,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,15,8,9,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,6,5,9,7,10,10,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,23,13,14,10,16,10,13,12,21,12,14,12,20,14,21,21,33,17,17,12,17,10,12,10,19,10,11,8,12,8,10,10,19,10,10,7,10,6,8,7,10,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,7,6,11,7,8,6,10,7,11,11,12,7,7,5,6,4,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,6,9,5,6,5,8,5,7,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,7,6,10,6,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,4,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,5,8,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,4,3,4,3,3,2,5,3,3,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,4,5,4,7,5,7,7,14 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,1,1,1,1,1,2,1,1,1,1,2,2,2,2,8,5,5,4,5,3,3,3,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,5,4,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,12,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8 +1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,1,-1,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,2,2,2,2,10,6,6,4,6,4,4,3,6,3,3,2,4,2,2,2,5,3,3,3,3,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,6,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,17,9,10,7,10,6,6,5,9,5,6,4,6,4,6,6,12,6,6,5,8,5,5,4,7,5,6,4,6,4,6,6,13,7,6,5,6,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,7,12,6,6,5,8,5,6,6,10,6,6,5,10,7,9,9,18,10,10,8,11,7,10,9,15,9,10,8,15,11,16,16,23,12,12,8,12,7,8,7,13,7,7,5,9,6,7,7,14,7,7,5,7,5,6,5,7,4,4,3,5,4,6,6,12,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,5,6,5,8,6,8,8,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,4,4,3,5,4,6,5,8,4,4,3,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,4,3,6,4,6,6,10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,3,2,1,1,2,2,2,2,1,1,1,1,1,1,2,2,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,11,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,16,9,9,7,10,6,8,8,13,8,9,8,13,9,14,14,20,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,7,5,6,4,5,4,6,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,3,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,9,5,4,3,4,3,3,2,2,2,2,2,2,2,2,3,1,1,2,2,3,2,3,3,4,3,3,3,4,3,5,6,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,3,4,4,8,5,5,5,8,5,7,7,6,3,3,2,3,2,3,2,3,2,1,1,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,15,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,5,8,5,6,6,10,6,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,5,5,4,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,11,6,6,5,7,5,6,6,12,7,9,8,13,9,12,12,28,15,15,10,14,8,10,8,14,8,9,7,11,7,9,8,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,20,10,10,7,9,5,6,6,10,6,7,6,9,6,7,7,16,8,8,6,8,5,6,6,10,6,7,6,10,7,9,8,19,10,10,7,11,7,8,6,10,6,6,5,9,6,7,7,12,7,7,5,7,5,6,6,11,7,8,6,10,7,10,11,20,11,11,8,13,8,10,9,16,9,10,9,15,10,14,14,29,15,15,11,17,11,14,13,23,13,16,14,24,16,24,24,35,18,18,12,17,10,12,10,18,10,11,9,14,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,9,8,19,10,10,7,11,7,8,7,11,6,7,6,10,7,9,9,13,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,12,6,6,5,7,5,6,6,12,7,9,8,14,10,14,13,26,14,14,9,13,8,9,7,12,7,8,6,10,6,8,7,11,6,6,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,4,7,5,6,6,10,6,6,4,6,4,6,6,11,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,7,7,5,8,6,8,7,13,8,9,8,13,9,12,12,21,11,10,7,10,6,7,6,10,6,6,5,7,4,5,5,12,7,7,5,6,4,4,4,6,4,4,3,5,4,6,6,8,5,5,4,6,4,4,3,5,3,3,3,5,4,5,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,7,4,5,4,6,4,4,4,7,4,5,4,6,5,7,7,7,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,8,5,6,6,10,7,10,9,17 +1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,10,6,8,7,13,8,9,8,13,9,13,13,19,10,10,7,9,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,3,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10 +2,1,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,9,5,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,9,5,6,4,7,5,6,5,11,6,6,5,6,4,5,5,7,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,13,7,8,6,9,6,7,6,10,6,6,5,9,6,9,9,18,10,10,7,11,7,9,8,14,8,10,8,15,10,15,15,22,12,12,8,10,6,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,7,4,5,4,7,4,5,5,12,6,6,4,7,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,5,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,6,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,4,3,4,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,2,2,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,3,9,5,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,7,7,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,7,11,7,8,7,12,8,12,12,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,9 +2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,5,4,6,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,11,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,6,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,13,7,8,6,9,6,7,6,9,5,6,4,6,4,6,6,10,5,5,4,6,4,6,6,11,6,7,6,10,7,11,11,18,10,11,8,12,7,8,7,13,7,8,7,12,8,12,12,23,12,12,9,14,9,12,11,18,10,12,11,19,13,19,19,29,15,15,10,14,8,10,8,13,7,8,6,10,7,9,8,14,7,7,5,8,5,7,6,10,6,7,5,8,5,7,6,16,9,9,6,8,5,5,4,9,5,6,5,7,5,8,8,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,3,3,2,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,7,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,12,7,7,5,8,5,5,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,5,6,5,9,6,9,9,17,9,9,6,8,5,6,5,7,4,5,4,6,4,4,4,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,16 +2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,3,4,4,8,5,5,5,8,5,7,7,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,8,7,12,7,8,7,13,9,13,13,19,10,10,7,9,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,5,4,5,4,10,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,7,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,4,5,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,3,5,3,4,3,5,4,6,6,11 +3,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,3,4,3,6,3,3,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,3,4,2,2,2,4,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,17,9,8,6,9,5,6,5,8,5,5,4,5,4,6,5,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,6,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,7,10,10,16,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,18,12,18,18,26,14,14,9,13,7,8,7,12,7,8,6,8,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,8,5,5,4,8,5,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,5,4,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,3,2,3,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,4,3,6,4,6,5,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,6,4,6,5,10,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,3,4,2,2,2,3,3,4,4,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,2,3,2,4,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,2,3,3,4,3,3,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,7,6,10,7,10,10,22,12,12,8,11,7,8,6,10,6,6,5,8,5,7,6,12,6,6,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,5,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,20,11,12,9,13,8,11,10,18,10,12,10,17,12,18,18,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,3,4,3,3,2,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,4,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,8,8,15 +4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,3,2,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,4,5,5,9,5,6,5,9,6,8,8,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,9,5,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,8,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,13,7,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,10,9,15,10,15,15,31,16,15,10,14,8,9,8,14,8,8,6,10,7,10,9,17,9,9,7,11,7,8,7,12,7,8,7,11,7,10,9,20,11,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,11,8,13,9,12,11,20,11,13,11,20,13,19,19,42,21,21,14,20,12,14,12,21,11,12,9,14,9,13,12,22,12,12,9,14,9,11,9,16,9,10,8,14,9,13,12,27,14,14,10,14,9,11,9,16,9,10,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,7,11,8,11,11,21,11,12,9,13,8,9,8,14,8,8,6,10,7,9,9,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,29,16,17,12,19,11,14,13,24,14,16,13,21,14,20,20,38,20,21,16,25,15,20,18,34,19,22,19,33,23,34,34,49,25,26,18,26,15,17,15,26,14,14,10,16,10,13,12,22,11,11,8,12,7,9,8,14,8,9,7,10,7,10,9,25,13,14,10,14,8,10,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,11,10,18,10,12,9,15,10,14,13,20,10,10,7,9,5,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,14,8,8,5,7,5,6,5,8,5,5,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,16,11,15,15,31,16,16,11,16,10,12,11,19,10,10,7,11,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,8,8,14,8,10,8,13,9,12,11,15,8,9,7,10,6,7,6,10,6,7,6,10,7,10,10,18,10,10,8,13,8,10,9,17,10,11,9,15,10,15,15,27,14,14,10,15,9,10,8,14,8,8,6,9,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,13,7,7,5,7,4,5,4,5,3,4,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,5,4,7,5,7,6,11,6,5,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,7,5,7,8,14,8,8,5,7,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,7,5,7,8,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,13,7,7,6,9,6,8,7,12,7,9,8,13,9,14,14,28 +2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,17,9,8,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,6,7,6,11,7,10,10,22,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,11,10,18,10,12,10,17,12,18,18,26,14,14,10,14,8,9,8,14,8,8,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,5,13,7,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,7,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,7,5,7,6,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,15 +2,2,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,6,5,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,3,5,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,3,2,3,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,9,9,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,9,5,6,5,6,4,4,4,7,4,5,4,7,5,6,5,12,6,6,4,7,5,6,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,7,6,12,7,8,7,11,8,11,11,24,13,13,9,13,8,9,8,12,7,7,6,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,7,6,10,6,6,5,7,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,17,9,10,7,10,6,8,7,13,7,8,7,11,8,11,11,21,11,12,9,14,9,12,11,19,11,12,11,18,12,18,19,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,13,7,6,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,6,5,8,6,8,7,12,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,4,3,4,4,9,5,4,3,5,3,4,4,4,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,6,9,6,9,9,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,5,4,6,4,4,3,6,3,3,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,5,6,5,7,5,7,6,9,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,5,3,3,3,6,4,4,3,3,2,2,2,3,2,3,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,5,8,5,5,3,4,3,3,2,4,3,3,2,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,2,4,3,4,4,6,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,16 +1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,5,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,13,9,14,14,20,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,10,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,4,5,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,5,4,6,6,11 +1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,12,7,7,5,7,4,4,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,6,4,5,5,8,5,7,6,10,7,10,10,21,11,11,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,5,4,7,5,6,6,14,7,7,5,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,6,8,7,14,8,10,8,14,9,13,13,28,15,15,11,16,9,11,9,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,12,8,11,11,19,10,10,8,12,8,10,9,14,8,9,7,12,8,12,12,24,13,14,10,16,10,14,13,23,13,15,12,21,14,21,21,31,16,16,11,16,9,11,9,17,9,10,7,10,7,9,8,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,13,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,5,11,7,8,7,11,8,11,10,20,11,11,8,12,7,9,8,12,7,8,6,9,6,7,7,10,5,5,4,6,4,4,4,8,5,5,4,5,4,5,5,11,6,5,4,5,4,5,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,7,12,6,6,5,7,4,5,4,8,4,4,3,5,4,5,5,10,6,7,5,8,5,6,5,8,5,6,5,8,5,7,7,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,3,2,2,2,2,2,3,2,3,3,5,4,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,4,3,6,3,3,3,4,3,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,8,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,17 +0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,7,4,4,3,5,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,4,5,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,5,3,4,4,9,5,5,4,5,4,5,4,5,4,4,4,5,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,9,8,14,8,9,8,13,9,13,13,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,8,5,5,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,11 +-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,2,2,2,2,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,7,4,5,4,4,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,9,6,8,5,6,5,9,5,6,5,6,4,6,5,8,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,12,6,6,5,7,5,6,5,7,5,6,5,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,23,12,12,9,13,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,8,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,11,10,19,11,12,10,18,12,18,18,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,9,5,4,4,5,3,4,3,4,3,4,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,9,5,6,4,7,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,6,5,6,4,6,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,3,4,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,5,5,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,5,5,7,4,5,4,5,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,5,6,6,9,5,6,5,7,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,8,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,4,8,5,5,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,13 +-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,10,5,5,4,6,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,5,8,5,5,4,5,3,4,4,4,3,3,3,5,4,5,5,8,5,5,5,8,6,8,8,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,1,1,0,-1,-1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,2,1,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,9,13,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,13,7,8,6,9,6,7,7,13,8,9,8,13,9,13,13,29,15,16,11,16,9,11,9,16,9,9,7,10,6,8,8,14,8,9,7,10,6,8,7,12,7,8,7,11,7,9,9,19,10,10,7,11,7,9,8,14,8,9,7,10,6,8,8,18,10,10,8,13,8,10,10,18,10,12,10,18,12,18,18,41,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,24,13,14,10,15,9,11,9,16,9,11,9,15,10,13,13,22,12,12,9,13,8,10,9,16,9,10,8,12,8,10,10,20,11,12,9,13,8,10,9,16,9,10,8,12,8,11,11,24,13,13,9,14,9,11,9,16,9,10,8,13,8,11,11,18,10,10,8,12,8,11,10,18,10,12,10,16,11,16,16,30,16,16,12,18,11,14,12,21,12,14,11,19,13,18,17,31,17,18,14,22,14,19,17,32,18,22,18,32,22,32,32,43,22,22,15,22,13,15,13,22,12,12,9,13,9,12,11,22,12,12,8,11,7,8,7,12,7,7,6,10,7,10,9,21,11,11,8,12,7,9,8,13,7,7,6,9,6,9,9,15,8,9,7,10,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,4,3,4,4,7,5,6,6,14,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,8,6,10,6,8,8,14,8,9,8,14,10,14,15,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,15,8,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,8,6,8,5,5,5,8,5,6,5,7,5,6,6,13,7,8,6,9,6,7,6,11,7,8,6,10,7,10,10,18,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,14,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,16,9,9,7,12,8,10,9,16,9,11,9,16,11,16,16,19,10,10,7,10,6,7,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,3,2,3,2,3,2,2,2,3,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,7,7,10,6,6,4,5,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,7,5,8,5,5,5,8,5,5,4,7,5,6,5,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,14,7,7,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,8,7,11,8,12,12,24 +-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,9,5,6,4,5,4,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,2,3,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,7,10,11,23,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,14,8,8,6,9,6,7,6,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,7,6,9,5,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,18,12,18,18,24,12,13,9,12,7,9,7,12,7,7,5,8,5,7,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,5,8,6,8,9,16,9,9,6,9,6,7,6,9,5,6,4,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,7,5,6,5,10,6,7,6,9,6,9,9,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,5,4,6,5,9,5,4,3,5,3,3,3,5,3,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,6,9,6,7,7,13,7,8,7,13,9,12,13,27,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,7,10,6,8,7,11,6,7,6,10,7,9,9,15,8,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,8,6,9,6,7,6,11,6,6,5,9,6,8,8,17,9,9,6,9,6,8,7,10,6,6,5,8,6,8,8,12,7,8,6,8,5,7,7,12,7,8,6,11,8,11,11,20,11,11,8,12,8,10,8,15,9,10,8,12,8,12,12,21,12,13,10,15,9,12,11,22,13,15,13,22,15,22,22,27,14,15,10,14,8,10,8,14,8,8,6,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,10,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,6,4,5,4,8,5,5,4,6,5,7,7,11,6,7,5,8,5,6,6,12,7,8,7,11,7,10,11,13,7,7,5,7,4,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,4,5,4,5,5,9,5,5,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,4,2,2,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,8,6,8,8,16 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,11,6,7,5,8,6,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,5,4,8,5,7,7,14,8,8,5,7,5,6,6,8,5,5,4,7,5,7,7,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,10,11,8,12,8,10,9,18,10,12,10,18,12,18,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13 +-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,6,5,9,5,5,4,6,4,4,3,4,3,3,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,4,6,4,4,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,2,2,2,1,1,1,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,17,9,10,7,10,6,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,6,6,11,6,6,5,8,6,9,9,15,8,8,6,9,5,5,4,7,4,4,4,6,4,6,6,13,7,7,6,9,6,8,7,13,8,9,8,13,9,14,14,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,11,7,10,10,19,10,10,8,12,7,9,7,12,7,8,6,10,7,10,9,17,10,11,8,13,8,11,11,19,11,13,11,18,13,19,19,39,20,20,14,20,12,14,12,20,11,11,9,14,9,12,12,24,13,13,9,14,8,10,9,17,10,11,9,14,9,13,13,23,12,12,9,13,8,10,9,16,9,10,8,12,8,11,10,20,11,12,9,13,8,10,9,14,8,10,8,13,9,13,12,24,12,12,8,12,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,18,10,12,9,15,10,15,15,30,16,16,12,18,11,13,12,21,12,14,11,18,12,17,17,30,16,18,13,21,13,18,16,32,18,22,18,32,22,32,32,39,20,20,14,20,11,13,11,19,10,11,9,14,9,12,11,22,12,12,8,12,7,9,8,13,7,8,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,9,9,14,8,9,7,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,8,8,16,9,9,7,10,6,7,6,11,6,7,5,8,6,8,8,17,9,9,6,9,5,6,6,10,6,7,5,8,5,7,7,14,8,9,7,10,6,8,7,11,7,8,7,11,8,11,11,18,9,9,7,10,6,8,7,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,10,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,14,8,9,7,10,7,9,8,17,10,12,10,16,11,15,15,17,9,9,6,9,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,6,4,5,5,8,6,8,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,4,4,6,4,5,5,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,15,8,8,6,8,5,7,6,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23 +-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,4,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,12,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,9,5,5,4,6,4,6,5,9,6,6,6,9,6,10,10,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,7,9,8,16,9,9,6,9,6,7,6,12,7,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,6,10,6,7,6,9,6,9,8,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,13,7,7,6,8,6,7,7,12,7,8,6,11,8,11,11,21,11,11,8,12,8,9,8,14,8,9,7,12,8,12,11,21,11,12,9,15,9,12,11,22,12,15,12,22,15,22,22,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,6,4,4,4,7,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,16 +-3,-1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,6,4,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,6,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,12,7,8,7,12,7,8,7,11,7,9,9,17,9,10,8,13,9,12,11,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,21,11,12,9,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,9,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,38,20,20,14,20,12,14,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,9,8,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,12,6,6,4,7,5,6,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,13,9,14,14,27,14,14,10,14,8,10,9,14,8,8,7,11,7,8,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,17,9,9,7,10,6,6,6,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,7,11,7,8,7,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,8,6,8,9,16,9,9,7,10,6,8,7,11,6,7,5,9,6,9,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,6,4,4,4,6,4,4,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,2,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,18,10,10,7,10,6,7,6,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,13,9,14,14,27,14,14,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,7,9,9,17,9,10,8,13,8,11,10,19,11,13,11,19,13,19,19,38,20,20,14,20,12,14,12,22,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,17,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,10,10,19,10,10,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,13,8,10,8,14,8,9,7,11,8,11,11,19,10,11,8,13,8,11,10,18,10,11,9,16,11,16,16,31,16,16,12,18,11,13,11,20,12,13,10,18,12,17,16,31,17,18,13,22,14,18,17,31,18,21,18,32,22,32,32,37,19,19,13,20,11,13,11,18,10,11,9,13,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,4,7,5,6,6,11,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,10,7,9,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,9,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,7,6,8,6,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,9,16,9,9,7,10,6,7,6,11,6,7,5,9,6,8,8,15,8,9,7,11,7,9,9,16,9,11,9,16,11,16,16,18,10,10,7,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,4,4,3,5,4,4,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,6,11,7,8,7,13,9,13,12,23 +-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,7,6,9,6,8,7,12,7,9,7,12,8,12,12,23,12,13,9,13,8,9,7,12,7,8,7,11,7,10,9,16,9,10,8,12,8,10,9,15,9,10,8,14,9,13,13,24,12,12,9,13,7,8,7,12,7,7,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,4,3,5,4,5,4,7,4,5,4,7,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,34,18,18,12,18,11,13,11,20,11,11,9,14,9,12,12,23,12,12,9,13,8,10,9,16,9,9,7,12,8,11,11,20,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,27,15,18,15,26,18,26,26,52,27,27,18,26,15,19,16,29,16,17,14,23,15,22,21,40,21,21,15,24,15,19,17,31,17,20,16,28,19,27,27,53,27,27,19,28,16,20,17,30,17,19,15,24,15,21,21,40,21,23,17,26,16,22,21,39,22,26,22,40,27,39,39,76,39,39,27,40,23,28,23,41,22,23,18,29,19,26,24,46,24,24,17,26,16,20,17,31,17,19,15,25,17,24,24,47,24,24,17,25,15,18,15,27,15,17,13,22,15,21,21,40,21,22,16,26,16,22,21,41,23,28,23,40,27,39,39,76,38,38,26,39,23,28,24,44,23,25,19,31,20,27,26,50,26,28,20,31,18,23,21,38,21,24,19,32,21,30,30,59,30,31,22,33,20,26,23,43,23,26,21,35,23,33,32,62,33,35,26,42,26,35,33,63,35,42,35,63,42,62,62,73,37,37,25,37,21,26,22,38,20,22,17,27,17,24,23,45,23,24,17,26,16,20,18,32,18,20,16,28,19,27,27,53,27,27,19,29,17,21,18,31,17,18,14,22,14,18,17,33,17,18,13,21,13,16,15,28,16,19,16,28,19,28,28,55,28,28,19,28,16,20,17,31,17,18,14,22,14,20,19,36,19,19,14,22,14,18,16,29,16,18,14,24,16,23,23,44,23,23,16,25,15,19,16,29,16,18,14,23,15,20,20,38,20,21,15,23,14,19,18,33,18,21,17,30,20,29,28,54,28,28,19,28,16,19,15,26,14,15,11,18,12,16,15,29,15,15,11,17,10,13,12,21,12,13,10,15,10,14,14,27,14,14,10,14,9,11,9,16,9,10,8,12,8,11,11,20,11,11,8,13,8,11,11,21,12,15,13,23,16,23,23,44,22,22,15,22,13,16,14,25,14,15,12,19,12,17,17,32,17,18,13,20,12,15,14,25,14,17,14,23,16,23,23,45,23,23,16,23,14,17,15,26,14,15,12,19,13,18,17,32,17,18,13,20,12,16,15,28,16,19,16,29,20,29,29,35,18,18,13,19,11,13,12,21,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,8,10,9,17,9,9,6,7,4,5,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,9,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,14,8,10,8,14,8,9,7,11,8,11,11,20,11,11,8,12,7,9,8,14,8,9,8,13,9,12,11,21,11,12,9,14,9,11,10,17,10,11,8,13,9,13,12,23,12,13,10,17,11,14,13,24,13,15,13,22,15,21,21,41,21,22,15,23,13,16,13,23,12,13,10,16,10,14,13,25,13,14,10,16,10,14,13,24,14,16,13,22,14,20,20,38,19,19,13,20,11,13,11,20,11,11,9,14,10,14,13,25,13,14,11,17,10,13,12,23,13,16,14,24,16,24,24,46 +-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,12,6,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,8,9,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,10,9,15,9,10,8,13,8,11,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,16,9,10,8,13,9,13,13,24,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,11,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,30,16,16,12,17,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,19,13,19,11,13,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,9,16,9,10,8,12,8,10,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,19,10,11,8,12,8,10,9,17,10,11,9,15,10,15,15,28,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,12,8,12,8,9,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,5,9,6,6,5,7,5,7,6,12,6,7,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,5,3,3,2,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,6,4,5,5,8,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,14,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,13,9,12,11,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,20,14,20,12,14,12,21,11,12,9,15,10,14,13,23,12,13,9,13,8,10,9,15,9,10,8,12,9,13,13,23,12,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,13,9,12,12,21,12,14,12,20,14,20,20,38,20,20,14,20,12,14,12,22,12,13,10,16,10,14,13,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,16,31,16,16,12,18,11,14,12,22,12,14,11,18,12,17,17,31,17,18,13,22,14,18,17,32,18,22,18,32,22,32,32,37,19,18,12,18,10,12,11,20,11,11,9,14,9,12,12,23,12,13,9,13,8,10,9,16,9,10,9,15,10,14,14,28,14,14,10,15,9,10,9,16,9,10,8,12,8,10,9,18,10,10,7,11,7,8,8,15,9,10,9,15,10,14,14,28,15,15,10,14,8,10,9,15,9,10,7,11,7,10,10,18,10,10,7,11,7,10,9,15,9,10,8,13,9,12,12,23,12,12,9,13,8,10,9,14,8,9,7,12,8,11,11,19,10,10,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,9,7,10,6,8,8,15,8,9,7,9,6,8,7,11,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,10,6,8,7,13,8,9,7,13,9,12,12,24,12,12,9,13,8,10,8,14,8,8,6,10,7,9,9,17,9,10,7,11,7,8,8,15,9,10,9,15,10,15,15,18,9,9,7,10,6,7,6,12,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,8,5,5,4,7,5,6,5,9,5,4,3,4,3,4,3,4,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,13,7,8,6,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,9,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,12,7,8,6,9,6,8,7,14,8,8,6,8,5,7,7,12,7,8,7,11,7,10,10,20,10,10,7,11,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,13,9,12,12,23 +-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,12,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,18,10,10,7,9,6,7,6,10,6,7,5,8,6,7,7,14,8,8,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,26,14,14,10,14,8,10,8,15,8,8,6,10,7,9,9,16,8,9,6,9,6,7,6,10,6,7,6,8,6,9,9,16,8,9,6,9,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,9,6,9,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,18,10,10,8,11,7,9,8,13,8,9,7,12,8,11,11,21,11,11,8,12,8,9,8,15,8,10,8,12,8,12,12,21,11,12,9,15,9,12,12,21,12,15,12,22,15,21,21,25,13,12,8,12,7,8,8,13,7,8,6,10,6,8,8,16,8,9,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,7,6,8,6,7,6,12,7,8,6,10,7,10,10,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,6,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,7,4,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,11,7,10,10,13,7,7,5,7,4,5,4,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,5,5,9,5,6,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,9,5,6,5,9,6,8,8,16 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,6,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,18,9,9,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,26,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,21,11,12,9,13,8,11,10,17,10,11,9,15,10,14,14,28,15,15,11,16,9,11,10,15,9,10,8,12,8,12,12,22,12,13,9,14,9,12,11,20,11,13,11,20,14,20,20,39,20,20,14,20,12,14,12,22,12,12,9,15,10,13,12,23,12,13,9,14,9,11,9,15,8,9,7,12,8,12,12,23,12,13,9,13,8,9,8,15,9,10,8,12,8,12,11,21,11,12,9,14,9,12,12,21,12,14,12,20,14,20,20,37,19,20,14,20,12,15,13,21,11,12,10,16,11,15,14,27,14,14,10,16,10,12,11,20,11,12,10,17,11,16,16,32,17,17,12,18,11,14,12,22,12,14,11,18,12,18,17,30,16,18,13,21,13,18,17,31,18,21,18,32,21,31,31,37,19,18,12,18,11,13,11,19,11,12,9,14,9,12,11,23,12,12,9,14,8,10,9,16,9,11,9,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,11,7,10,9,18,10,10,7,11,7,8,8,15,9,10,9,16,11,15,15,27,14,14,10,14,9,11,9,15,8,9,7,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,22,12,12,9,13,8,9,8,13,7,8,6,10,7,10,10,19,10,11,8,12,8,10,9,17,9,10,8,14,10,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,9,8,15,8,9,7,10,6,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,5,7,7,10,6,7,5,8,5,7,7,10,6,7,7,12,9,13,13,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,9,17,9,9,7,10,6,8,7,13,8,9,8,13,9,12,12,24,13,13,9,13,8,10,9,15,8,9,7,10,7,10,10,16,9,10,7,11,7,9,8,15,9,10,9,16,11,15,15,19,10,10,7,10,6,7,6,12,7,7,5,7,5,6,5,10,5,5,4,6,4,5,5,7,5,6,5,8,5,7,6,9,5,5,4,5,3,4,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,5,5,4,6,4,5,4,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,14,7,7,5,8,6,8,7,11,6,7,6,10,7,10,10,21,11,12,8,12,7,8,7,12,7,8,6,10,6,8,8,14,7,7,5,8,5,6,6,13,8,9,7,12,8,12,12,24 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,11,6,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,7,6,9,6,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,7,12,8,12,12,21,11,12,8,12,7,9,8,12,7,7,6,10,7,9,8,16,8,8,6,9,6,7,6,12,7,7,6,10,6,9,9,18,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,21,11,10,7,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,9,9,7,9,5,6,5,9,5,5,4,7,4,6,5,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,7,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,9,9,17,9,9,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,9,6,6,6,10,7,9,9,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,-2,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,2,2,4,2,2,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,13,7,6,4,7,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,7,4,5,5,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,7,11,6,6,5,8,5,7,7,14,8,8,6,8,5,7,6,11,6,7,6,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,6,8,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,8,16,9,9,7,9,5,6,6,11,6,6,5,9,6,8,9,16,9,9,7,10,6,7,6,10,6,6,5,8,6,8,7,15,8,8,6,10,7,9,9,15,9,10,9,14,10,14,14,26,14,14,10,14,8,10,9,15,8,9,7,12,8,10,10,19,10,10,7,11,7,9,8,14,8,8,7,11,7,10,10,21,11,12,8,12,8,10,9,14,8,9,7,12,8,12,12,20,11,12,9,14,9,12,12,21,12,14,12,22,15,21,21,25,13,12,8,13,8,10,8,13,7,8,6,9,6,8,8,16,8,8,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,8,11,6,7,6,11,6,6,5,8,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,9,7,10,10,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,12,7,8,6,8,5,6,6,11,7,8,7,12,8,11,11,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,5,9,5,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,4,4,5,3,4,4,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,16 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,7,4,6,6,11,6,7,5,7,4,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,13,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,8,6,8,5,5,5,9,5,6,5,8,5,7,8,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,13,7,7,6,9,6,8,7,13,8,9,8,12,8,12,12,22,12,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,6,9,6,8,7,12,7,7,6,9,6,8,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,10,10,17,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,6,6,6,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,7,5,7,7,12,6,6,5,7,5,6,5,8,4,4,4,5,4,5,5,10,6,6,4,7,4,5,5,9,6,6,5,8,6,8,8,18,9,9,7,10,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,-2,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,6,5,7,5,6,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,3,5,3,4,4,8,5,7,7,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,7,4,5,4,6,4,4,4,6,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,18,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,8,6,10,6,8,8,14,8,9,7,12,8,12,12,25,13,13,10,15,9,11,10,17,9,10,7,11,7,9,9,19,10,11,8,13,8,10,9,16,9,11,9,16,11,15,15,28,14,14,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,12,9,15,9,12,11,20,11,13,11,19,13,20,20,38,19,19,13,20,12,14,12,20,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,9,10,8,14,9,13,13,24,12,12,8,12,7,9,8,15,8,9,7,11,7,10,10,24,13,14,11,17,11,14,13,23,13,15,12,21,14,21,20,38,19,19,13,20,12,15,13,22,12,14,11,17,11,15,14,29,15,16,11,16,10,13,11,20,11,12,9,15,10,14,14,32,17,18,13,19,11,13,11,20,11,13,11,18,12,17,17,29,16,17,13,20,13,18,17,32,18,21,18,31,21,30,30,35,18,18,12,18,11,13,11,20,11,12,9,15,9,12,11,24,13,13,9,13,8,10,8,14,8,9,8,13,9,12,12,30,16,16,11,16,9,11,9,16,9,10,8,12,8,10,9,17,9,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,10,14,8,9,8,14,8,9,7,10,7,10,10,16,9,9,7,11,7,9,8,13,8,9,7,12,8,11,11,20,10,10,7,10,6,8,7,13,7,7,6,9,6,8,8,16,9,9,7,12,7,9,8,15,9,10,8,14,10,15,15,31,16,16,11,17,10,12,10,17,9,10,8,12,7,9,9,16,9,9,7,11,7,8,7,12,7,8,6,10,7,9,8,13,7,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,9,8,14,8,9,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,8,11,11,24,13,14,10,15,9,10,9,16,9,10,8,12,8,10,9,19,10,11,8,12,8,11,10,18,10,12,10,17,11,16,16,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,3,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,8,5,6,5,8,5,7,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,5,5,9,5,4,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,7,7,12,7,8,7,11,8,11,12,24,13,13,9,14,8,10,8,14,8,8,6,9,6,9,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,11,11,22,12,12,8,11,7,8,8,14,8,9,7,11,7,9,9,14,8,8,6,9,6,7,6,11,7,9,8,13,9,13,13,25 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,9,5,6,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,20,10,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,13,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,20,10,11,8,11,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,17,9,10,7,10,6,7,6,11,6,7,6,10,7,9,9,15,8,9,7,11,7,10,9,17,10,11,10,17,11,16,16,18,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,7,6,9,5,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,10,6,9,9,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,7,5,7,7,13 +-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,5,6,6,10,6,6,5,6,4,6,5,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,7,5,6,6,9,5,6,4,7,5,6,6,14,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,21,11,12,8,11,7,8,7,12,7,7,6,9,6,8,8,16,9,9,6,9,6,7,6,11,6,7,5,9,6,9,9,19,10,10,7,11,7,8,7,11,7,8,6,10,7,10,10,16,9,10,8,12,8,10,10,18,10,12,10,18,12,18,18,19,10,10,7,10,6,7,7,12,6,6,5,8,5,6,6,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,17,9,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,6,9,5,6,5,8,6,9,9,15,8,8,6,9,5,6,5,9,5,6,4,5,4,6,6,9,5,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,4,5,5,9,5,6,5,9,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,5,7,5,8,8,13,7,8,6,7,4,5,5,8,4,4,3,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,3,5,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,4,6,4,6,7,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,6,4,4,4,7,4,4,4,7,5,6,6,13,7,7,5,6,4,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,14 +-2,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,8,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,4,5,5,7,4,5,4,5,4,5,5,11,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,15,8,9,6,9,5,6,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,9,6,7,7,14,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,4,3,5,5,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,11,6,6,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,4,3,3,3,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,17,9,9,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,7,5,8,5,7,7,11,6,7,6,10,7,10,10,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,14,8,9,7,10,6,8,8,15,9,10,8,14,10,14,14,26,13,13,9,14,8,10,8,13,7,8,6,10,7,9,8,16,9,9,6,8,5,6,6,9,5,6,5,8,6,8,9,16,8,8,6,8,5,7,7,11,6,7,5,8,5,7,7,17,9,9,7,11,7,9,9,15,9,10,9,16,11,15,15,24,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,19,10,10,7,10,6,7,7,13,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,13,7,8,7,11,7,10,10,20,11,12,9,13,9,12,11,22,13,15,13,22,15,21,21,23,12,12,9,13,8,9,8,13,7,8,6,8,6,8,7,15,8,8,6,8,5,6,6,9,5,6,5,8,6,9,9,22,12,12,8,12,7,9,7,10,6,7,5,8,5,7,7,13,7,8,6,8,5,7,7,11,7,8,6,10,7,10,10,17,9,9,7,10,6,7,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,7,8,7,11,6,7,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,5,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,16,8,8,6,9,6,7,6,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,7,7,14,8,10,8,14,9,12,12,13,7,8,6,8,5,5,5,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,5,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,4,3,5,4,5,5,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,5,5,5,8,5,6,6,8,5,5,5,8,6,8,8,18,9,9,7,10,6,6,5,11,6,6,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,5,4,7,5,7,6,10,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,17 +-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,5,5,9,6,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,9,6,6,6,10,7,10,10,15,8,8,6,9,6,7,6,10,6,6,4,7,5,6,6,12,7,7,5,7,4,5,5,8,5,6,4,7,5,7,7,13,7,7,5,8,5,5,5,9,5,5,4,7,5,7,7,13,7,8,6,8,6,8,7,13,8,9,8,14,9,13,13,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,14,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,11 +-2,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,10,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,5,3,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,13,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,7,14,9,13,13,20,11,11,8,12,7,9,8,13,7,8,6,9,6,9,9,16,9,9,6,9,5,6,6,11,7,8,6,9,6,9,9,17,9,9,7,10,6,7,6,12,7,7,6,9,6,9,9,17,9,10,7,11,7,10,9,17,10,12,10,18,12,18,18,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,5,7,7,18,10,10,7,10,6,8,6,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,10,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,5,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,5,6,5,8,6,8,8,15 +-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,13,9,12,12,19,10,10,7,11,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,7,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,9,16,9,11,9,16,11,17,17,18,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,9,5,5,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,6,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,10,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,7,6,14,8,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,14 +-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,7,5,7,7,14,8,8,6,8,5,5,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,17,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,15,8,7,5,7,4,4,4,6,3,3,3,4,3,5,5,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,7,6,11,7,10,10,26,13,13,9,14,8,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,23,12,13,9,14,8,10,9,15,9,10,8,14,9,13,12,22,12,12,9,15,9,12,11,20,12,14,12,21,14,21,21,39,20,20,14,22,13,15,13,22,12,13,10,15,9,12,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,12,12,21,11,11,8,13,8,9,8,14,8,9,8,14,9,13,13,24,13,14,11,17,11,14,13,24,14,16,13,23,16,23,22,36,19,19,13,20,12,14,12,21,12,13,10,16,11,15,15,28,15,15,11,16,10,12,11,21,12,13,10,17,11,16,16,29,15,15,11,16,10,13,11,20,11,13,10,17,11,15,15,28,15,17,13,20,13,17,17,32,18,22,18,32,22,32,32,35,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,11,8,12,7,9,8,15,9,10,8,12,8,12,12,31,16,17,12,18,10,12,11,19,10,11,8,13,9,12,11,20,11,11,8,12,8,10,9,17,10,12,10,16,10,14,14,23,12,12,9,14,8,9,8,14,8,9,7,10,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,31,16,16,11,16,9,10,8,13,7,8,6,9,6,7,7,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,17,9,9,7,11,7,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,6,11,7,8,7,13,9,13,13,28,15,15,11,16,10,12,10,17,9,10,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,6,10,7,10,10,28,14,14,10,14,8,10,8,14,8,10,8,13,8,11,11,20,11,12,9,13,8,10,10,18,11,13,11,18,12,18,18,19,10,10,7,10,6,7,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,4,7,7,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,8,5,6,5,7,5,8,8,9,5,5,4,5,3,4,4,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,9,7,12,7,7,6,10,7,9,8,14,8,9,7,11,7,9,8,14,8,9,8,14,10,14,14,27 +-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,12,17,17,18,9,9,7,10,6,6,6,10,6,6,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,6,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,12,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,7,4,6,6,11,6,7,5,7,5,6,6,9,6,7,6,9,7,10,10,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,10,6,6,4,5,3,4,3,4,3,4,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,12,7,8,6,9,6,7,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,7,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,9,6,9,6,7,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,16,9,10,8,12,8,10,10,16,10,12,10,17,12,18,18,18,9,9,7,10,6,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,16,9,9,7,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,17,9,9,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,5,7,5,6,5,7,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,9,5,6,5,9,7,10,10,10,6,6,4,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,6,4,6,6,14,8,8,5,7,5,6,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,5,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,12,7,7,5,6,4,4,4,5,3,3,2,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,3,5,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,8,8,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,5,10,5,5,4,5,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11 +-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,10,5,5,4,5,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,8,5,7,7,13,8,9,7,12,8,12,12,26,13,13,9,13,8,9,8,12,7,8,6,9,6,7,7,13,7,7,5,6,4,5,5,8,5,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,6,8,7,13,8,9,7,12,8,12,12,21,11,10,7,10,6,7,6,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,12,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,18,10,10,8,13,8,11,10,17,10,12,10,18,13,19,19,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,7,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,12,7,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,5,5,9,5,6,5,8,5,7,7,18,9,9,6,9,5,6,5,7,4,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,6,5,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,14,8,8,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,10,6,7,6,10,8,12,12,12,6,6,4,5,3,3,3,6,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,2,2,2,2,3,3,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,7,14,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,7,12,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,17 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,4,8,5,5,4,5,4,5,4,8,5,6,5,7,5,7,7,16,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,11,6,6,5,8,5,7,6,10,6,7,6,11,8,11,11,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,5,4,6,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11 +-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,5,9,5,6,5,7,4,5,4,7,4,4,4,6,4,6,5,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,21,11,11,8,10,6,8,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,7,6,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,5,6,4,6,6,13,7,8,6,10,6,8,8,13,8,9,8,13,9,14,14,15,8,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,3,3,2,3,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,7,4,5,4,8,4,4,3,5,3,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,5,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,5,8,5,5,4,7,5,6,5,8,5,6,5,8,6,9,9,9,5,4,3,5,3,3,3,5,3,2,2,3,2,2,2,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,4,3,3,3,4,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,7,5,8,8,14 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,7,4,3,2,3,2,2,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,9,6,7,6,9,5,6,4,6,4,6,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,7,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,5,3,3,2,2,2,3,3,4,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,3,4,3,3,3,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,2,2,3,3,4,3,4,3,5,4,6,6,8,5,5,4,6,4,5,4,6,4,4,4,7,5,8,8,17,9,9,6,9,6,7,6,9,5,5,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,16,9,9,6,9,6,8,8,14,8,10,9,15,10,15,15,34,18,18,12,17,10,11,9,16,9,9,7,10,7,9,9,15,8,9,7,10,6,8,8,14,8,9,7,11,8,11,11,18,9,9,6,9,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,28,14,14,10,15,9,10,8,14,8,10,8,13,8,11,11,18,10,10,8,13,8,10,9,16,9,11,9,15,10,13,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,10,21,11,12,10,16,10,13,12,22,12,14,12,21,15,22,22,25,13,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,8,5,5,5,8,5,6,6,10,7,9,9,18,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,15,8,9,7,10,6,8,7,12,7,7,6,10,7,10,9,12,7,7,5,7,5,6,5,8,5,5,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,7,4,4,3,4,3,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,6,7,6,10,6,6,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,5,5,11,6,7,5,8,5,6,5,8,5,6,5,9,6,9,9,17,9,9,7,11,7,8,7,12,7,8,6,9,5,6,6,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,5,6,6,10,6,7,5,8,6,8,8,13,7,8,7,11,7,9,8,15,9,10,8,14,10,15,15,16,8,8,6,8,5,6,5,7,4,4,4,6,4,5,4,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,5,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,3,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,5,5,9,6,8,8,17,9,9,6,8,5,7,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,22 +-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,7,4,4,3,4,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,5,4,4,4,5,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,9,6,9,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,6,4,7,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,12,6,7,6,9,6,7,7,12,7,8,7,12,8,12,12,14,8,7,5,7,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,8,5,5,3,4,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,3,4,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,4,5,5,8,5,6,6,10,7,10,9,22,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,14,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,7,4,3,2,3,2,3,3,4,3,4,3,4,3,4,4,7,4,5,4,6,4,4,3,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,5,10,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,2,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,7,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,4,10,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11 +-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,2,4,3,4,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,11,6,5,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,8,5,6,5,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,14,8,9,7,10,6,8,7,14,7,7,5,8,5,7,6,10,6,7,6,10,7,9,9,17,9,8,6,8,5,6,6,12,7,7,6,10,7,9,9,16,9,9,7,10,6,7,6,13,8,10,8,14,10,14,13,24,13,13,9,14,8,10,8,12,7,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,21,11,12,8,12,7,8,7,13,8,9,7,11,7,9,9,17,9,10,8,12,8,11,10,19,11,13,11,18,12,18,18,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,6,4,6,4,6,5,12,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,9,6,7,6,9,6,9,9,15,8,8,6,10,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,9,5,6,5,8,5,7,7,11,6,6,5,8,6,8,7,13,8,10,8,14,10,14,14,17,9,9,6,9,5,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,8,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,8,6,9,5,6,5,8,4,4,3,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,10,7,10,10,18 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,7,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,20,10,11,8,10,6,7,6,9,5,6,5,7,4,6,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,12,6,7,5,8,5,7,7,13,8,9,7,12,8,12,12,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,11,6,6,5,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,4,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,3,3,4,4,5,3,3,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,8,4,4,3,4,3,5,5,8,5,6,5,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,29,15,15,10,14,8,10,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,10,6,6,6,10,6,8,8,16,8,8,6,8,5,7,6,11,6,7,5,9,6,9,8,16,9,9,6,10,6,7,7,12,7,8,7,12,8,12,12,22,12,12,8,13,7,8,7,11,6,7,5,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,10,19,10,11,8,12,7,8,7,13,7,8,6,11,7,10,9,17,9,10,7,11,7,10,9,18,10,12,10,17,12,17,17,24,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,12,6,6,5,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,6,4,6,5,10,6,6,4,5,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,14,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,5,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,4,6,6,9,5,6,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,4,3,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,10,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,7,5,6,6,10,6,7,6,10,7,11,11,28,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,7,5,6,5,9,6,6,6,9,6,8,8,16,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,15,8,9,6,10,6,7,7,12,7,8,7,12,8,12,12,21,11,11,8,12,7,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,10,9,17,10,11,10,17,12,17,17,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,13,7,7,6,8,5,6,5,8,5,5,4,5,4,4,4,8,5,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,8,5,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,14,10,14,14,16,8,9,6,9,5,6,5,8,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,7,5,6,7,13,7,7,5,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,6,6,9,6,9,9,17 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,2,2,3,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,9,5,6,5,7,5,8,8,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,-3,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,18,9,9,7,10,6,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,8,6,9,6,7,7,12,7,8,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,20,11,13,11,20,13,19,19,55,28,28,19,28,16,19,16,28,15,16,12,20,13,18,17,33,17,18,12,18,11,14,12,22,12,14,11,17,11,16,16,30,16,16,11,17,10,12,11,20,11,12,9,15,10,13,12,23,12,13,10,15,9,12,11,21,12,14,12,22,15,22,22,41,21,22,15,22,13,15,13,23,12,13,10,16,10,12,11,21,12,13,10,15,9,11,10,19,11,13,11,19,13,19,19,37,19,19,13,19,12,15,13,23,13,15,12,21,14,20,20,38,20,21,15,24,15,19,18,34,19,23,19,33,22,33,32,45,23,23,16,25,14,17,14,25,14,15,11,17,10,13,12,23,12,12,8,12,7,9,8,15,9,10,9,15,10,14,14,27,14,13,9,13,8,9,8,13,7,7,6,9,6,9,8,15,8,9,6,9,5,6,5,9,5,6,5,9,6,8,8,16,8,8,5,7,4,5,4,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,8,5,6,6,10,7,10,10,30,15,15,11,16,10,12,10,17,9,9,7,11,7,9,9,17,9,9,6,8,5,6,5,8,5,6,5,7,5,7,7,14,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,8,5,7,7,14,8,10,9,15,10,14,14,25,13,14,10,14,8,9,8,14,8,9,8,13,8,11,11,20,11,12,9,14,8,10,9,17,9,10,8,14,10,14,14,26,14,14,10,14,9,12,11,19,11,12,10,16,11,15,15,28,15,16,12,19,12,16,16,30,17,20,16,28,19,28,27,31,16,16,11,15,9,11,10,17,10,11,8,13,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,7,9,8,15,8,7,5,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,6,6,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,15,8,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,5,5,8,5,7,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,7,11,7,9,8,15,8,9,8,13,9,12,12,25,13,13,9,12,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,16,9,9,6,9,6,8,8,14,8,9,7,12,8,11,10,18,10,11,8,13,8,10,9,16,10,12,10,18,12,18,17,33 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,5,4,5,4,5,5,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,9,17,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,6,6,11,7,8,7,11,8,11,12,21,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,12,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,23,12,12,9,13,8,9,8,13,7,8,6,9,6,7,6,12,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,7,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,9,17 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,5,3,3,3,5,3,4,4,-1,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,4,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,5,9,5,6,4,5,4,5,5,7,4,5,4,7,5,6,6,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,28,14,14,10,15,9,10,9,15,8,8,6,11,7,10,10,18,9,9,7,9,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,12,20,11,11,8,11,7,8,7,12,7,7,6,8,5,6,6,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,10,10,18,10,12,10,17,12,17,17,24,12,12,9,14,8,10,8,13,7,8,6,9,6,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,5,7,7,14,8,8,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,4,4,5,4,5,6,15,8,8,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,10,6,8,8,16,9,10,9,15,10,14,14,16,8,8,6,8,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,5,4,8,5,5,4,6,5,7,7,12,6,6,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,7,4,4,3,4,3,3,2,4,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,13,8,9,7,12,8,12,12,16,9,9,6,10,6,7,6,9,5,6,4,6,4,5,4,8,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,5,5,8,4,4,3,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,13 +-2,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,4,4,-1,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,5,3,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,1,1,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,7,4,5,4,5,4,5,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,7,4,5,5,11,6,7,6,10,7,10,10,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,11,6,7,6,11,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,19,10,10,8,12,7,9,8,13,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,11,18,12,18,18,24,13,13,9,14,8,10,8,14,8,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,5,5,8,5,7,7,15,8,8,5,6,4,4,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,5,5,8,6,9,9,13,7,7,5,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,5,5,10,6,6,5,8,6,8,8,13,7,7,6,9,6,7,6,10,6,7,5,8,6,8,8,15,8,9,7,10,7,9,9,15,9,11,9,16,11,16,16,16,9,9,6,8,5,6,6,10,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,7,6,10,7,10,10,19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,4,3,5,4,5,6,8,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,4,6,6,11 +-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,2,2,2,2,2,3,4,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,4,3,3,3,0,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,3,3,4,3,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,5,3,4,5,6,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,22,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,7,5,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,8,6,8,8,14,8,8,7,11,7,8,8,14,8,9,8,13,9,13,13,17,9,9,7,9,5,6,6,9,5,5,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,3,6,4,6,5,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,4,10,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,7,10,5,5,4,5,3,4,3,5,3,4,3,6,4,5,5,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,4,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14 +-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,10,6,6,4,7,4,5,5,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,7,7,12,7,7,5,6,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,5,4,4,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,1,1,2,1,1,1,2,1,1,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,3,6,4,6,5,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,5,3,4,3,5,4,5,4,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,6,8,7,8,4,4,3,5,4,5,5,10,6,7,7,12,8,12,11,34,18,18,12,17,10,12,10,18,10,11,8,13,8,10,9,22,12,12,8,11,7,8,7,12,7,8,6,10,7,9,9,14,8,8,6,10,6,7,6,11,6,7,6,9,6,8,7,11,6,7,6,9,6,7,6,11,7,8,7,12,8,12,11,22,11,11,8,12,7,9,7,12,7,8,6,9,6,7,6,13,7,8,6,10,6,8,7,12,7,8,7,11,8,12,12,21,11,11,8,12,8,10,9,15,9,10,8,14,9,13,13,23,13,14,10,16,10,13,12,22,13,15,12,20,14,20,20,26,14,14,10,15,9,10,8,14,8,9,7,10,6,8,7,11,6,6,4,6,4,4,4,7,4,5,5,8,5,7,7,15,8,8,6,9,5,6,5,7,4,5,4,5,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,14,8,8,5,7,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,7,4,5,5,9,6,7,6,11,8,11,10,16,8,8,6,9,5,6,5,8,5,6,5,8,6,8,7,9,5,6,5,8,5,7,6,10,6,6,5,9,7,10,10,15,8,8,6,8,5,7,6,10,6,6,5,9,6,9,8,19,10,11,8,13,8,10,9,16,10,12,10,17,12,18,18,17,9,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,2,8,5,5,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,5,10,6,7,5,8,5,6,6,11,7,8,7,12,8,11,11,21 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,7,5,7,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,4,4,6,4,4,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,12,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,7,7,12,7,8,7,11,8,11,11,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,11,6,6,5,7,5,6,5,9,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12 +-1,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,1,5,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,4,5,4,8,5,7,7,20,11,11,7,10,6,7,6,10,6,7,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,6,4,4,4,7,4,4,4,7,5,7,7,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,4,5,5,8,5,5,4,8,6,8,8,13,7,8,6,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,9,6,8,8,13,8,9,8,12,8,12,12,16,8,8,6,9,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,8,5,5,3,4,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,7,5,6,5,12,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,5,3,4,4,5,3,3,3,5,3,4,3,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,1,1,1,1,2,2,2,2,2,2,3,3,3,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,13 +0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,12,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,6,4,5,4,9,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,6,10 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,4,6,5,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,1,2,1,1,1,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,5,3,3,2,3,2,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,6,4,5,5,11,6,5,4,5,3,3,3,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,10,6,7,6,10,7,10,9,24,12,12,9,13,8,9,8,13,7,8,6,10,7,9,8,17,9,9,6,9,5,6,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,15,8,9,6,9,6,7,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,7,8,6,10,7,9,9,15,8,9,7,10,6,7,6,12,7,9,7,12,8,10,10,19,10,10,8,12,8,10,9,17,10,11,9,16,11,16,16,20,10,10,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,14,8,8,6,8,5,5,4,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,5,4,5,3,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,6,4,4,3,5,4,5,5,8,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,5,10,6,7,6,9,6,7,7,14,8,8,6,9,6,8,7,11,7,8,7,12,9,13,13,14,7,7,5,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,9,9,17 +0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,6,7,6,11,6,7,6,11,8,11,11,13,7,7,5,7,4,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11 +-1,0,0,1,0,0,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,0,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,1,1,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,4,5,9,6,7,6,9,6,8,8,21,11,12,8,12,7,9,7,12,7,8,6,8,5,7,7,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,9,13,7,8,6,9,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,12,8,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,4,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,8,5,8,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,9,6,7,6,10,6,7,6,11,8,12,12,12,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,0,0,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,16 +-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,5,5,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,3,2,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,4,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,6,5,8,6,8,8,20,11,11,8,12,7,8,7,12,7,7,6,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,16,9,10,7,11,7,10,9,16,9,10,9,15,10,15,15,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,6,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,11,8,11,11,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,16 +-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,7,5,8,8,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,6,4,6,6,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,3,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,1,1,1,0,0,0,1,1,1,2,2,2,1,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,16,9,9,6,8,5,7,6,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,5,9,5,6,4,6,4,6,6,12,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,39,20,21,14,21,12,15,12,21,11,12,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,15,10,14,14,16,8,8,6,8,5,6,6,10,6,6,5,7,5,7,7,13,7,7,5,7,5,6,6,10,6,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,23,12,13,10,15,9,11,10,19,11,12,10,17,11,16,16,31,16,17,13,21,13,17,15,27,15,18,15,27,18,27,28,32,17,17,12,17,10,12,10,18,10,10,7,11,7,9,8,15,8,8,6,8,5,6,6,11,7,8,6,10,7,9,9,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,7,7,4,4,3,3,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,5,5,11,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,13,7,8,6,9,6,7,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,6,4,4,4,7,5,6,6,13,7,7,5,7,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,8,5,7,7,13,8,9,8,13,9,13,13,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,7,14,8,10,8,13,8,11,11,24,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,22,12,13,10,16,10,14,13,23,13,15,12,21,14,21,21,21,11,11,8,12,7,8,7,13,7,7,6,9,6,7,6,11,6,6,4,5,3,3,3,5,3,4,3,5,4,5,5,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,6,7,7,4,4,3,4,2,2,2,2,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,2,1,6,4,4,3,3,2,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,2,2,3,3,5,3,3,2,3,3,4,4,7,5,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,15,15,30 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,4,5,4,8,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,13,7,7,6,8,5,6,6,10,6,6,5,8,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,4,4,8,5,6,6,9,6,9,9,13,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,16,9,9,7,11,7,9,8,14,8,10,8,14,10,14,15,17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,4,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,6,9,6,8,7,12,7,8,7,11,8,11,11,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,4,5,4,8,5,5,4,6,4,5,5,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,5,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,9,5,6,4,5,4,5,4,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,8,8,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,7,14,8,8,6,9,5,6,6,11,6,6,5,8,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,4,3,4,4,6,4,5,4,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,4,5,4,5,5,9,5,6,4,6,4,4,4,9,5,6,6,10,7,10,9,14,7,7,5,9,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,15,9,10,8,15,10,15,16,19,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,5,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,8,5,7,7,8,4,4,3,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,5,4,8,5,6,7,12,7,7,6,9,6,8,7,12,7,8,7,12,8,12,12,12,6,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,16 +0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,7,5,6,6,15,8,9,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,7,4,5,5,8,5,7,7,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,7,6,11,7,8,6,11,8,11,12,14,7,7,5,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,6,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,8,5,5,4,5,3,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,11 +-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,6,5,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,7,4,4,3,4,3,3,2,4,3,3,2,2,2,3,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,4,10,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,5,9,5,6,6,10,7,10,9,24,13,13,9,14,8,9,8,12,7,8,6,10,6,8,8,15,8,8,6,9,6,7,6,12,7,7,5,8,6,8,8,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,5,9,6,8,8,14,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,11,7,8,7,12,8,11,11,16,8,8,6,9,6,8,7,12,7,8,7,12,8,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,17,18,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,4,3,7,4,4,3,5,4,5,4,7,4,4,4,6,4,5,4,9,5,6,5,9,6,9,8,14,7,7,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,7,10,6,8,8,14,8,9,7,12,9,13,14,12,7,7,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,5,5,6,3,3,2,3,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,8,5,5,4,7,5,6,6,8,5,6,5,9,6,9,9,17 +0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,3,2,3,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,15,8,8,6,9,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,7,6,11,7,8,6,10,7,11,11,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,9,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,4,4,6,4,6,6,10 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,4,3,4,3,5,4,5,4,6,3,3,2,4,3,4,4,7,4,4,4,7,5,8,7,19,10,11,8,11,7,8,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,13,9,14,14,18,10,10,7,10,6,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,7,6,11,7,8,7,10,7,11,11,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,5,3,3,2,3,2,3,3,6,4,4,4,6,5,7,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,14,8,9,7,10,6,8,8,14,8,9,8,12,9,13,13,17,9,9,6,9,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12 +-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,2,3,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,3,2,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,0,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,10,5,5,4,5,3,4,4,6,4,5,4,6,4,4,4,7,4,3,2,3,2,3,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,5,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,9,5,6,5,7,5,6,5,9,6,7,6,9,7,10,10,33,17,16,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,8,14,8,9,7,12,8,12,11,18,9,9,6,9,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,16,9,9,7,10,7,9,8,15,9,11,9,15,10,13,13,26,14,14,10,16,10,12,10,18,10,12,9,15,10,13,13,26,14,16,12,19,12,16,14,26,14,16,13,23,16,24,24,32,16,16,11,16,9,11,9,16,9,10,8,12,7,9,9,16,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,5,12,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,6,4,4,4,6,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,5,10,5,5,4,6,4,6,6,10,6,8,7,12,8,11,11,20,11,11,8,12,7,9,7,12,7,8,7,11,7,10,10,22,12,13,10,15,9,12,10,18,10,12,10,18,13,19,19,17,9,9,6,8,5,7,6,10,6,6,5,7,4,5,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,2,1,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,23 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,19,10,9,6,9,6,7,6,9,5,6,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,8,10,8,13,9,14,14,18,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,7,5,7,7,11,6,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,6,9,6,7,6,10,6,7,6,11,8,11,11,10,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,7,5,7,7,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,10,6,6,5,7,5,8,8,13,7,7,5,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,7,13,7,8,5,7,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,6,9,5,6,5,10,7,10,9,17,9,10,7,10,6,8,7,12,7,8,6,10,7,10,9,17,9,10,8,12,8,10,9,17,10,12,10,16,11,16,16,21,11,11,8,11,7,8,7,11,6,6,5,9,6,8,7,12,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,3,2,2,3,5,3,4,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,8,6,8,8,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,7,6,12,7,8,7,13,9,12,13,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,16 +-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,7,5,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,14,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,9,13,13,18,10,10,7,9,6,7,6,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,10,6,7,6,11,8,10,11,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13 +-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,2,2,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,8,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,6,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,4,6,4,6,6,9,6,7,6,10,7,10,10,31,16,16,11,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,9,6,7,6,13,7,8,6,10,7,10,10,18,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,6,9,6,8,7,11,7,8,6,10,7,10,10,19,10,10,7,11,7,9,8,12,7,8,6,9,6,8,8,15,8,9,7,10,7,9,8,12,7,9,8,13,9,13,13,24,13,13,9,14,9,11,10,17,10,11,9,14,9,13,13,24,13,14,10,16,10,13,13,25,14,17,14,24,16,24,23,32,16,16,11,16,9,11,10,16,9,9,7,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,6,10,7,10,10,18,9,9,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,4,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,10,7,10,10,18,10,11,8,12,7,9,9,18,11,13,11,19,13,19,19,16,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,5,5,9,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22 +-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,9,5,6,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,16,9,9,6,10,6,7,7,11,6,7,6,10,6,9,9,17,9,10,7,11,7,9,9,17,10,11,9,16,11,16,16,22,11,11,8,11,7,8,7,11,6,7,5,8,6,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,12,7,7,6,8,5,7,6,12,7,9,8,13,9,13,13,11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,1,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,6,9,7,10,10,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,11,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,13,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,5,9,5,6,5,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,2,2,1,2,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,11,7,8,7,11,8,12,12,23 +-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,6,9,6,9,10,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,8,15,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,14,9,13,13,25,13,14,11,16,10,14,13,24,14,16,13,23,16,23,23,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,6,10,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,18,12,18,18,14,8,8,5,7,4,5,4,8,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,8,7,11,8,12,12,23 +-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,5,4,6,7,14,8,8,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,3,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,14,8,8,6,9,6,7,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,7,8,7,12,8,11,11,22,12,12,8,11,7,8,7,12,7,7,6,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,6,9,6,8,8,16,9,9,7,12,7,9,9,16,9,10,8,14,9,13,12,23,12,13,10,15,9,12,12,22,12,14,11,19,13,18,18,62,31,31,21,31,18,22,19,33,17,18,14,22,14,18,17,32,17,18,13,20,12,16,14,26,15,17,13,22,15,22,22,43,22,23,16,24,14,17,15,26,14,16,12,19,12,16,16,30,16,16,12,18,11,14,13,23,13,15,13,22,14,20,20,38,20,20,14,20,12,14,13,23,12,13,10,17,11,14,13,24,13,13,10,16,10,12,11,20,11,13,11,19,13,19,18,35,18,19,13,19,12,15,13,24,14,16,13,21,14,20,20,40,22,24,18,30,19,25,24,45,26,31,26,45,30,45,45,65,33,32,22,32,18,21,18,32,17,18,13,21,13,17,16,31,16,17,12,17,10,13,12,21,11,12,9,15,10,13,13,25,13,12,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,8,5,7,4,5,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,17,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,7,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,8,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,11,13,11,19,12,17,17,32,16,16,11,15,9,10,9,15,8,9,7,11,7,9,8,15,8,8,6,10,6,7,6,11,7,8,7,12,9,13,13,24,13,13,9,14,9,12,11,19,11,12,9,15,10,14,14,27,15,17,13,21,13,18,17,32,19,23,19,34,23,35,35,26,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,7,12,7,7,6,9,6,7,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,6,6,11,7,8,6,10,7,10,10,18,9,9,6,9,5,5,4,5,3,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-3,-1,-1,0,0,1,1,1,0,1,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,8,5,5,4,5,4,5,4,7,4,5,5,8,5,7,7,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,11,21,11,12,8,12,7,9,8,13,7,8,7,11,8,11,10,19,11,12,9,14,9,11,10,19,11,13,12,21,15,22,22,44 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,2,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,32,16,16,11,16,10,12,10,17,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,11,13,10,16,10,13,12,23,13,16,13,23,16,23,23,33,17,17,11,16,9,11,9,17,9,10,7,11,7,9,9,16,8,9,6,9,6,7,6,11,6,7,5,8,6,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,2,3,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,7,13,7,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,11,7,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,2,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,11,8,12,12,23 +-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,2,2,3,3,4,4,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,4,3,4,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,5,8,5,5,4,6,4,4,4,6,4,4,4,5,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,7,12,7,8,7,11,7,10,10,32,17,17,11,16,10,12,10,16,9,9,7,11,7,10,9,16,9,10,7,11,7,9,8,14,8,10,8,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,10,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,7,10,7,10,10,20,11,13,10,16,10,14,13,22,13,16,13,23,15,22,23,33,17,17,11,16,9,11,9,17,9,10,8,12,8,10,9,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,2,2,3,5,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,1,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,5,3,4,4,5,4,5,5,10,6,6,4,7,4,5,4,7,4,5,4,6,4,6,7,13,7,8,6,7,5,6,5,7,4,5,4,6,4,6,6,9,5,6,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,6,8,8,14,8,9,7,12,8,10,9,16,10,12,10,17,12,18,18,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,6,4,5,5,9,5,5,4,5,3,3,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,0,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,4,6,4,5,5,10,6,6,5,7,5,6,6,9,6,7,6,11,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,3,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,22,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,9,7,11,7,9,9,15,9,11,9,15,10,15,15,23,12,12,8,11,6,8,6,12,6,7,6,8,6,7,7,10,6,6,4,6,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,6,4,4,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,8,6,7,6,11,7,8,7,11,8,12,12,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,2,4,2,3,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,1,1,1,2,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,6,4,5,4,8,6,8,8,16 +-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,1,1,2,2,4,3,5,5,7,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,9,5,5,3,4,3,4,4,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,13,7,6,4,6,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,32,16,16,11,16,10,12,10,16,9,10,8,12,8,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,9,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,12,8,11,11,20,11,11,8,12,7,9,7,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,19,10,11,8,11,7,8,7,14,8,9,7,10,7,10,11,20,11,13,10,16,10,14,13,22,13,15,13,22,15,23,23,35,18,18,12,16,9,11,9,17,9,10,8,12,8,11,10,15,8,8,6,9,6,7,7,11,6,6,5,7,5,7,7,12,7,7,5,6,4,5,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,7,5,7,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,10,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,5,8,5,7,7,15,8,9,6,9,6,7,6,11,6,7,5,8,6,8,8,15,9,10,8,12,8,10,9,16,9,11,9,16,11,17,17,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,7,5,7,5,7,6,9,6,7,6,11,8,12,12,24 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,5,4,5,5,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,4,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,8,13,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,4,5,4,7,5,7,7,14 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,2,2,4,3,3,2,3,2,2,2,2,2,2,3,7,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,22,12,12,8,11,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,16,8,8,6,9,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,14,8,8,7,10,7,10,9,16,9,10,9,15,11,16,16,24,12,12,8,11,6,7,6,12,7,8,6,9,6,8,7,11,6,6,4,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,2,1,0,0,1,1,1,1,2,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,7,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,12,7,8,6,8,5,7,7,12,7,8,7,11,8,12,12,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,5,5,6,4,6,5,8,6,8,9,17 +-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,19,10,10,7,9,6,7,6,10,6,7,5,8,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,8,5,7,7,14,7,7,5,8,5,5,5,8,4,5,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,6,8,6,8,8,14,8,9,8,13,9,13,13,20,10,10,7,9,5,6,5,10,6,6,5,7,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,8,14 +-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,4,5,4,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,33,17,17,12,17,10,12,10,18,10,11,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,10,8,13,9,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,6,12,7,7,6,9,6,7,6,10,6,7,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,8,7,11,8,11,11,19,11,12,9,14,9,13,13,24,14,16,13,23,16,23,23,35,18,17,12,17,10,12,10,16,9,10,8,13,8,11,11,16,9,9,6,9,6,7,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,6,4,5,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,6,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,9,6,7,6,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,7,5,8,8,18,10,11,8,12,8,11,10,18,10,12,10,17,12,17,17,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,4,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,2,3,2,3,3,6,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,8,5,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,8,7,11,8,12,13,25 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,13,8,9,8,13,9,12,12,19,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,8,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,4,5,4,6,5,7,7,13 +-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,3,4,2,2,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,3,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,4,3,4,3,6,3,3,2,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,20,10,10,7,11,6,7,6,11,6,7,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,7,4,5,4,8,4,4,3,5,4,6,5,10,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,13,7,8,5,7,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,6,9,6,8,8,14,8,9,8,14,9,13,13,21,11,11,8,10,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,4,5,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,11,6,6,5,8,5,6,6,11,6,7,6,11,7,10,10,9,5,5,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,4,5,4,6,5,7,7,14 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,6,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,5,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,3,4,3,5,4,6,6,10 +-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,3,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,3,2,3,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,4,4,6,4,6,6,7,4,4,3,5,3,4,4,5,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,6,4,4,3,5,3,4,4,6,4,6,6,9,5,6,5,8,5,6,6,9,6,7,6,9,7,10,10,27,14,14,10,14,8,10,8,14,8,8,6,10,7,9,9,13,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,5,5,10,5,5,4,6,4,6,6,12,6,6,5,7,4,5,5,7,4,5,4,7,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,13,7,8,6,8,5,7,6,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,8,16,9,11,9,16,11,16,16,27,14,14,10,14,8,8,7,13,7,8,6,10,6,8,8,12,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,11,6,6,4,4,3,4,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,6,7,6,8,5,5,4,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,6,6,14,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,5,3,4,4,6,4,5,5,8,6,9,9,16 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,11,6,6,4,5,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,10,6,6,5,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,3,3,5,3,4,4,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,0,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,5,3,3,3,4,2,3,3,4,3,3,3,5,4,6,6,10 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,3,2,2,2,3,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,3,4,4,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,4,3,3,2,3,2,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,24,12,12,9,13,8,9,8,12,7,8,6,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,15,8,8,5,7,5,6,5,8,4,4,4,6,4,6,6,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,13,9,14,14,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,13,7,7,6,8,5,7,7,12,7,8,7,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,4,7,5,7,7,13 +-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,2,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,14,8,8,5,7,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,12,7,8,7,12,8,13,13,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,5,7,4,5,5,8,4,4,4,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,10,7,10,10,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,5,3,4,4,7,5,7,7,12 +-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,1,1,2,2,3,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,6,4,5,5,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,16,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,9,6,9,8,9,5,5,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,4,5,4,7,4,5,5,8,6,8,8,10,6,7,5,8,5,6,6,11,6,7,5,8,6,8,8,15,8,8,6,10,6,8,8,15,9,11,9,15,10,15,16,44,23,23,16,24,14,17,14,24,13,14,11,17,11,14,13,24,13,13,9,12,7,9,8,13,7,8,7,12,8,11,11,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,27,14,13,9,13,8,9,8,13,7,7,6,9,6,8,8,15,8,8,6,8,5,7,7,12,7,9,7,12,8,12,12,22,11,11,8,12,7,8,7,13,7,8,7,12,8,10,10,18,10,10,8,12,8,11,11,20,12,14,12,21,15,22,23,41,21,21,14,21,13,16,14,24,13,14,10,15,10,13,12,22,12,12,8,11,7,8,7,13,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,11,6,5,4,5,3,3,3,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,7,6,11,6,7,6,11,7,10,10,14,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,22,11,11,8,12,7,9,8,13,7,7,5,8,5,7,7,14,8,8,6,8,5,7,7,13,8,9,7,11,7,10,10,17,9,10,8,12,7,9,9,16,9,10,8,14,9,12,12,22,12,12,9,14,9,12,11,21,12,13,11,18,12,18,18,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,7,7,5,6,4,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,4,3,4,3,-2,0,0,1,1,1,2,2,4,3,4,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,16,8,8,6,9,6,7,6,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,23 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,12,7,7,5,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,13,7,8,6,8,6,7,7,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,10,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,4,3,5,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,5,7,7,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,4,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,24,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,12,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,6,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,7,8,7,11,8,13,13,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,11,11,9,5,5,4,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,4,3,3,3,6,4,4,3,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,5,7,7,12 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,7,17,9,9,6,9,6,7,6,10,6,6,5,7,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,4,4,4,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,4,5,4,7,5,8,8,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8 +-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,3,2,2,2,2,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,8,5,5,3,4,3,3,2,3,2,3,3,4,3,4,3,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,3,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,26,13,13,9,14,8,9,8,15,8,8,6,10,7,9,8,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,13,7,7,5,8,5,7,7,11,7,9,8,13,9,14,14,27,14,14,10,14,8,10,8,14,8,9,7,11,7,10,9,14,7,7,5,8,5,7,6,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,8,5,6,5,7,5,7,6,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,8,5,5,3,4,3,4,3,5,3,3,3,5,4,5,5,12,7,7,5,8,5,5,4,8,5,5,4,6,4,6,6,8,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,12,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,7,5,8,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,5,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,1,0,1,1,1,2,2,2,2,2,1,1,1,3,2,3,2,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,1,1,1,1,2,2,1,1,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,12 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,7,5,6,5,8,6,9,9,16,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,5,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,3,4,3,4,4,7 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,1,1,1,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,21,11,10,7,10,6,7,6,12,6,6,5,8,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,13,7,8,6,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,4,6,4,6,6,10,6,7,6,11,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,6,6,5,7,5,6,5,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,3,3,8,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,4,7,4,4,3,6,4,6,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,7,10,10,9,5,5,4,5,3,4,3,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,9 +-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,2,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,5,7,7,19,10,10,7,9,6,7,6,10,6,6,4,7,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,19,10,11,7,11,6,8,7,11,6,7,6,8,6,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,8,5,5,4,5,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,8 +-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-14,-6,-6,-4,-7,-3,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,0,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,3,3,2,3,2,1,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,4,6,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,10,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,10,9,15,10,14,14,36,18,18,12,18,10,12,10,18,10,11,8,12,8,10,9,17,9,9,6,9,6,7,7,12,7,9,7,12,8,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,8,21,11,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,7,5,7,5,6,5,8,5,6,5,8,6,8,9,13,7,8,6,9,6,7,6,10,6,7,5,8,6,8,8,16,9,10,7,11,7,10,9,16,9,11,10,17,12,19,19,35,18,18,13,20,12,14,12,21,12,13,10,15,9,12,11,21,11,11,8,11,7,9,8,14,8,9,7,10,6,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,8,4,4,3,5,4,5,5,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,7,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,11,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,16,9,9,6,9,5,6,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,16,9,10,7,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,8,14,10,15,15,15,8,8,5,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,5,3,4,3,4,2,2,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,1,1,1,1,1,1,1,2,3,2,3,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,-2,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,7,6,9,6,8,8,15 +-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,6,5,8,6,8,8,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,4,4,4,5,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,6,5,9,5,6,6,10,7,11,11,20,10,10,8,11,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,7,4,5,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,6,9,9,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9 +-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,9,5,6,4,5,3,4,3,5,3,3,3,4,3,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,9,5,6,6,9,6,9,9,23,12,12,8,11,7,8,7,11,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,8,5,6,6,11,6,7,6,11,8,12,12,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,3,3,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,6,4,7,5,6,5,10,6,6,5,9,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,3,2,3,2,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,-1,0,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,6,10 +-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,5,7,5,8,8,19,10,10,7,9,6,7,6,9,5,6,5,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,4,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8 +-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,12,7,7,5,8,5,6,5,7,4,4,4,6,5,7,7,9,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,8,5,7,7,14,8,9,7,12,9,13,13,32,16,16,11,16,9,10,9,16,9,10,8,12,8,10,9,17,9,9,7,10,6,8,7,12,7,7,6,10,7,9,9,20,10,10,7,11,7,8,7,10,6,6,5,8,5,6,6,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,7,17,9,10,7,10,6,8,7,9,5,6,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,5,7,7,13,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,9,15,9,11,9,16,11,16,16,33,17,17,12,18,10,12,11,19,10,11,9,14,9,11,10,19,10,10,7,10,6,7,7,10,6,7,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,4,5,5,6,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,5,7,7,11,6,7,6,9,6,8,8,13,8,10,8,14,10,14,14,17,9,9,6,9,5,6,5,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,13 +-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,3,4,3,4,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,4,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,5,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,9,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,6,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,13,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,5,4,6,4,6,5,9,6,7,6,10,7,10,10,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,5,8,5,5,5,7,5,8,8,10,5,5,4,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,13,7,8,7,13,9,12,12,30,16,16,11,15,9,11,9,15,9,10,7,11,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,19,10,10,7,10,6,8,7,10,6,6,5,7,5,6,6,8,5,5,4,6,4,4,4,8,5,6,5,7,5,8,7,15,8,8,6,8,5,6,6,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,7,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,15,9,10,9,15,10,15,15,32,17,17,12,18,10,12,10,17,9,10,8,13,8,10,10,18,10,10,7,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,8,7,13,8,9,8,14,10,14,14,17,9,9,6,9,5,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,8,8,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,13,9,12,12,29,15,16,11,15,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,6,9,6,9,8,15,9,10,9,15,10,15,15,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,18,9,9,6,9,5,6,6,9,5,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,14,7,7,5,8,5,6,6,9,5,6,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,11,6,7,6,8,6,8,7,13,8,9,8,13,9,14,14,17,9,9,6,9,5,6,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,8,5,7,7,14 +-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,1,1,1,1,1,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-24,-11,-11,-7,-11,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,9,6,7,6,11,8,11,12,30,16,16,11,17,10,12,10,18,10,10,7,10,7,9,8,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,9,13,8,10,9,16,9,11,9,14,9,12,12,23,12,12,9,14,9,11,10,18,10,12,10,17,11,16,16,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,11,12,9,14,9,13,13,24,13,15,13,22,15,23,23,57,29,29,20,29,17,20,16,28,15,17,13,20,13,18,17,32,17,17,12,18,11,14,13,23,13,14,12,20,13,19,18,34,17,17,12,18,11,13,11,19,10,11,8,13,9,12,12,22,12,12,8,12,8,10,9,15,8,9,7,12,9,13,13,28,14,14,10,14,9,11,10,17,9,9,7,11,7,10,9,17,9,10,7,10,7,9,8,15,8,9,7,12,8,11,11,22,12,12,9,13,8,10,8,14,8,10,8,14,9,13,13,24,13,15,11,18,12,17,16,30,17,20,17,29,20,29,29,63,32,31,21,31,18,21,17,29,15,16,11,17,11,15,14,25,13,14,10,15,9,10,9,16,9,10,8,14,10,14,14,26,13,13,9,13,8,9,8,13,8,9,7,11,7,9,9,17,9,9,6,9,6,7,6,9,6,7,6,9,6,9,9,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,2,2,2,2,2,2,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,4,5,5,9,5,6,5,9,7,10,10,25,13,13,9,14,8,10,9,15,8,9,7,10,7,9,8,15,8,8,6,8,5,7,6,11,6,7,6,11,8,11,11,21,11,10,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,9,6,9,6,9,8,15,8,9,7,12,8,12,12,27,14,13,9,13,8,10,8,14,8,8,6,9,6,9,9,16,9,9,6,9,6,8,8,14,8,9,8,14,10,14,14,28,15,16,11,17,10,13,12,21,12,14,11,19,13,18,17,32,17,18,13,20,13,17,15,28,16,19,16,27,18,27,27,33,17,17,12,17,10,11,10,17,9,9,7,10,6,8,8,15,8,8,6,9,5,6,5,8,5,6,5,8,6,8,8,16,9,9,6,8,5,6,6,11,6,6,5,8,5,5,5,8,5,5,4,7,4,5,5,8,5,6,5,7,4,5,5,7,4,4,3,4,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,4,6,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,4,6,6,10,6,7,5,8,5,6,6,11,7,8,8,14,10,14,14,27 +-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,10,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,9,17,9,9,6,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,5,7,7,15,8,8,5,8,5,6,5,9,5,5,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,8,6,10,7,9,9,16,9,10,9,15,10,15,15,32,16,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,4,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,5,3,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,3,3,4,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,16,8,8,6,9,6,7,6,9,5,6,4,5,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,5,8,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,10,6,6,5,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,4,4,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,13,7,8,7,11,8,12,12,30,16,16,11,15,9,10,9,15,8,9,7,11,7,9,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,15,8,8,5,8,5,6,5,9,5,6,4,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,6,4,6,6,13,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,8,6,11,7,10,9,16,9,10,9,15,10,15,15,33,17,16,11,16,9,11,9,15,8,8,6,9,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,4,4,5,4,6,6,14,8,8,6,7,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,5,4,6,5,9,5,5,4,5,3,4,4,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,7,8,6,10,7,10,9,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,18,9,9,6,10,6,6,6,10,6,6,4,6,4,6,5,8,4,4,4,5,3,4,3,4,3,3,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,5,5,7,5,8,8,14 +-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,7,4,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,12,6,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,8,5,7,6,11,6,7,6,10,7,11,11,23,12,11,8,11,6,8,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,4,2,3,3,5,3,4,4,5,4,6,6,10 +-13,-6,-6,-4,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,3,2,3,2,3,2,3,4,8,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,5,8,5,7,7,13,7,8,6,8,5,6,6,12,7,7,6,10,7,10,10,11,6,7,5,8,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,7,6,11,6,7,5,8,6,8,7,13,7,8,7,12,9,13,13,31,16,16,11,16,10,12,10,16,9,10,8,12,8,10,9,17,9,10,7,10,6,7,7,14,8,9,7,12,8,11,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,16,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,13,7,8,7,12,8,10,9,17,10,11,9,15,11,16,16,35,18,18,12,16,9,11,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,5,5,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,3,2,3,2,3,2,3,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,4,4,5,3,4,4,6,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,5,8,6,8,7,11,6,6,4,6,4,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,6,5,9,5,5,4,6,5,8,8,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,12,7,9,9,16,9,11,9,14,10,15,15,20,10,10,7,11,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,5,3,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,4,4,4,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,5,4,6,3,3,3,3,2,3,2,3,2,3,4,6,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,15 +-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,7,4,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,4,5,5,8,5,5,5,7,5,8,8,18,9,9,6,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,8,5,5,4,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,6,4,7,4,5,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,12,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9 +-10,-4,-4,-3,-6,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,4,4,6,4,4,3,4,2,2,2,5,3,3,3,5,4,5,5,12,7,7,5,7,5,6,5,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,5,4,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,9,6,7,6,9,6,9,9,21,11,11,8,12,7,8,7,12,7,7,5,9,6,7,7,13,7,7,5,7,5,6,6,11,6,7,6,8,6,8,8,13,7,8,6,7,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,13,7,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,12,7,9,7,11,6,7,5,8,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,4,3,4,5,10,6,6,4,7,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,5,3,4,4,5,4,6,6,9,5,6,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,6,4,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,8,6,9,6,7,6,12,7,8,7,11,8,11,11,15,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,3,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,11 +-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,4,5,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,7,5,6,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,5,3,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,12,12,8,11,7,8,6,10,6,6,4,7,4,6,5,10,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,4,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,12,6,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,10 +-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,9,5,5,3,4,3,3,3,6,4,4,4,7,5,8,8,19,10,10,7,11,7,8,7,12,7,8,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,5,8,6,8,8,15,8,9,6,9,6,8,8,14,8,9,7,12,8,11,11,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,5,8,6,8,8,13,7,8,6,10,7,9,8,14,8,10,8,13,9,13,13,33,17,17,12,17,10,12,10,18,10,11,9,14,9,11,10,21,11,12,8,12,7,9,9,16,9,10,8,14,9,12,11,19,10,10,7,11,7,8,6,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,9,5,6,5,7,5,8,8,20,10,10,7,9,5,6,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,7,7,16,9,9,6,8,5,7,6,10,6,7,6,9,6,9,9,18,10,11,8,13,8,11,10,18,10,12,11,19,13,19,19,40,20,20,14,20,11,13,11,18,10,11,8,13,8,10,9,19,10,10,7,10,6,7,7,12,7,7,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,7,4,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,7,4,4,4,6,4,5,4,6,4,4,3,5,4,6,6,16,9,9,6,8,5,6,5,9,5,5,4,7,4,5,4,8,5,5,3,4,3,4,4,7,4,5,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,8,5,5,4,7,5,6,5,9,5,6,5,8,6,9,9,17,9,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,8,6,9,6,8,7,12,7,9,8,13,9,12,12,21,11,11,8,11,7,9,8,14,8,9,7,12,8,12,11,19,10,11,8,13,8,11,10,18,10,12,10,18,12,18,17,24,12,12,8,11,7,8,7,12,7,8,6,9,6,8,8,10,6,6,5,7,4,5,4,6,4,5,4,7,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,6,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,3,4,3,4,5,9,5,5,4,6,4,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,5,5,8,6,8,9,17 +-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,18,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,7,5,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,9 +-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,3,2,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,12,8,11,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,4,5,4,6,4,5,4,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,6,4,6,6,13,7,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,4,4,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,12,8,12,12,25,13,13,9,13,7,8,7,11,6,6,5,9,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,9,5,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,6,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,3,3,2,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,3,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,4,5,5,10 +-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,5,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,10,6,7,6,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,0,0,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,7,4,5,4,7,5,7,7,11,6,7,6,9,6,7,6,11,6,7,6,11,8,11,12,27,14,14,10,16,9,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,12,7,8,6,10,7,10,9,15,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,7,18,10,10,7,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,13,8,9,8,14,10,15,15,34,17,17,11,16,9,11,9,15,8,9,7,11,7,8,7,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,5,5,12,7,7,5,8,5,6,5,8,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,7,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,17,9,10,7,10,6,8,7,10,6,6,5,7,5,7,6,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,10,7,10,7,9,8,14,8,9,8,14,10,15,15,22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,3,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,11 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,6,4,5,4,8,4,5,4,8,5,7,8,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,6,5,9,6,6,6,9,7,10,10,22,11,11,8,11,6,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,5,5,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,11,6,7,5,7,4,5,5,7,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,14,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,5,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,13,7,7,5,7,4,5,4,6,4,5,4,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,9,5,6,6,11,6,7,6,11,7,10,10,26,14,14,10,15,8,9,8,14,8,8,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,5,8,5,6,6,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,5,6,4,5,5,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,4,12,6,6,5,8,5,5,4,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,4,4,4,8,5,5,5,8,5,6,6,16,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,9,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,2,2,2,2,1,2,1,1,1,1,1,2,1,0,1,1,1,2,2,2,1,2,2,2,2,3,2,3,4,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9 +-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,6,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,5,4,5,4,6,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,8,5,6,5,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,14,8,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,6,4,6,4,5,4,7,4,5,4,6,4,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,5,6,6,15,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,11,6,6,5,9,6,8,8,15,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,20,10,10,7,10,6,8,7,10,6,6,5,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-34,-17,-17,-11,-16,-8,-10,-8,-15,-7,-7,-5,-9,-5,-7,-6,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-8,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,3,4,7,4,5,5,8,5,7,7,5,3,3,3,5,3,4,4,6,4,4,4,7,5,7,7,14,8,8,6,9,6,9,8,15,9,10,8,13,9,12,12,23,12,13,9,14,8,10,8,14,8,8,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,18,10,10,7,11,6,7,6,11,6,7,6,9,6,9,9,17,9,9,7,11,7,8,7,13,7,8,7,12,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,11,20,11,11,8,11,7,8,7,12,7,8,7,11,8,11,11,20,11,12,9,15,9,12,11,21,12,14,12,20,14,20,20,49,25,25,17,24,13,15,13,22,12,13,10,16,10,14,13,24,13,13,9,14,9,11,10,19,11,13,10,17,11,15,15,27,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,18,10,10,7,11,7,8,7,13,7,8,7,12,8,12,12,29,15,16,11,16,9,11,9,16,9,9,7,12,7,9,9,16,8,8,6,9,6,8,8,14,8,8,6,10,7,9,9,27,14,15,11,17,10,12,11,20,11,12,10,17,11,15,14,27,14,15,11,17,11,14,14,26,15,17,14,25,17,26,26,61,31,31,21,31,17,20,16,27,14,15,11,17,11,14,13,25,13,13,9,13,8,9,8,14,8,9,7,11,7,10,9,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,7,12,8,12,12,10,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,29,15,16,11,16,9,11,9,15,8,9,8,13,8,11,11,21,11,11,8,12,8,10,9,17,10,11,9,15,10,15,15,29,15,15,11,17,10,12,10,18,10,12,10,17,11,15,15,28,15,15,11,18,12,16,15,29,16,18,15,26,18,26,26,39,20,19,13,19,11,13,11,19,10,11,8,12,8,10,10,18,10,10,7,11,7,8,6,10,6,6,5,9,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,9,6,8,7,12,7,7,5,7,4,5,4,6,4,5,4,6,4,6,5,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,3,3,5,4,6,6,8,5,5,3,4,3,3,3,6,4,4,4,6,4,6,6,11,6,7,5,7,5,7,6,11,6,7,5,8,6,8,8,15 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,8,7,11,8,11,11,26,13,13,9,13,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,9,5,5,4,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,32,16,16,11,16,9,11,9,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,16,8,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,21,11,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8 +-18,-9,-9,-5,-9,-4,-5,-4,-8,-4,-4,-3,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,3,4,3,4,3,4,4,3,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,13,7,8,5,8,5,6,5,8,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,7,4,5,4,8,5,5,4,7,5,7,6,12,7,8,6,9,6,8,7,13,7,8,7,12,8,11,11,27,14,14,9,14,8,9,7,13,7,8,6,9,6,8,8,13,7,7,5,8,5,7,6,10,6,6,5,10,7,9,9,16,8,8,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,6,6,16,9,9,6,9,6,7,7,12,7,7,6,9,6,8,8,15,8,8,6,10,6,8,8,14,8,9,8,14,10,14,14,34,17,17,11,17,10,11,9,15,8,8,6,10,7,9,8,14,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,5,7,4,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,4,7,4,5,4,7,5,7,7,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,6,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,7,17,9,9,6,9,5,6,5,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,7,11,7,10,9,16,9,10,9,15,10,15,15,22,11,11,8,11,7,8,7,11,6,6,5,8,5,6,6,11,6,7,5,6,4,4,4,6,4,4,4,5,4,6,6,12,6,6,5,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,10,25,13,12,8,12,7,8,7,11,6,6,5,8,5,7,6,10,6,6,4,5,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,17,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,4,3,4,4,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,11,6,6,4,6,4,5,5,10,6,6,5,8,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,11,6,7,5,8,5,6,6,11,7,8,6,10,7,9,9,17,9,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,6,15,8,8,6,8,5,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,8,14,10,14,14,30,16,16,11,16,9,10,8,15,8,9,7,11,7,9,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,6,9,9,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,19,10,11,8,11,7,9,8,13,7,8,6,10,7,10,10,18,10,10,7,10,7,9,8,16,9,11,9,16,11,16,16,40,20,19,13,18,10,12,10,17,9,10,8,12,8,10,9,15,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,5,11,7,8,6,10,7,10,9,21,11,10,7,10,6,7,6,12,7,8,6,9,6,8,8,12,7,7,5,8,5,7,6,10,6,7,6,10,7,10,11,19,10,10,7,10,6,8,7,12,7,8,6,10,7,10,10,20,11,11,8,12,8,11,10,18,11,13,11,18,12,18,18,28,14,14,10,14,8,10,9,14,8,9,7,10,6,8,7,14,7,7,5,7,4,5,5,7,4,5,4,7,5,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,6,5,8,4,4,3,5,4,5,5,8,4,4,3,5,3,3,2,5,3,3,3,4,3,4,4,3,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,5,9 +-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,5,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,12,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,10,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,7,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,18,9,9,6,9,5,6,6,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6 +-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,5,7,7,13,7,8,5,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,7,4,4,3,6,4,5,5,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,5,9,6,8,7,12,7,9,7,13,9,12,12,25,13,13,9,13,8,9,7,12,7,8,6,9,6,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,10,6,6,5,6,4,6,5,9,5,6,4,6,4,6,5,8,5,6,5,6,4,6,6,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,8,7,13,8,10,8,14,10,14,14,32,16,16,11,16,9,11,9,14,8,9,7,10,7,9,8,12,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,7,5,6,6,9,5,5,4,4,3,4,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,4,3,3,3,4,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,8,6,8,9,16,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,10,7,10,6,8,8,15,9,11,9,16,11,16,16,25,13,13,9,13,7,8,7,13,7,7,5,8,6,8,7,12,6,6,4,7,4,5,5,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,11,6,6,4,5,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8 +-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,6,7,7,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,8,12,7,7,6,9,6,7,7,12,7,9,7,13,9,12,12,30,15,15,10,15,9,10,8,13,7,8,6,9,6,8,7,11,6,6,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,2,3,2,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,5,7,4,5,4,6,4,4,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,8,7,15,8,9,7,10,6,8,8,14,8,10,8,15,10,14,14,25,13,13,9,13,7,8,7,12,7,7,5,8,6,7,7,11,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,4,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8 +-32,-16,-16,-10,-15,-8,-10,-8,-16,-8,-9,-6,-10,-6,-8,-7,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,7,14,8,8,6,10,6,8,7,12,7,9,7,12,8,12,11,23,12,12,8,12,7,9,8,13,7,8,6,10,6,7,7,14,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,16,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,17,9,10,8,12,8,10,9,16,9,10,8,13,9,14,14,24,13,13,9,13,8,10,8,14,8,9,7,10,7,9,8,16,9,9,7,11,7,8,8,14,8,9,7,10,7,10,9,20,10,10,7,11,7,8,8,14,8,9,7,12,8,11,10,19,11,12,9,14,9,12,12,22,13,15,13,22,15,21,21,42,21,21,14,21,12,14,12,20,11,12,9,13,9,12,11,19,10,11,8,12,7,9,9,16,9,11,9,14,10,14,14,26,14,14,10,14,8,10,9,15,9,10,8,13,9,12,11,20,11,11,8,12,7,8,7,13,8,9,8,14,9,13,13,25,13,14,10,15,9,11,10,17,9,10,8,12,8,10,9,17,9,9,7,11,7,8,8,14,8,9,8,13,9,12,11,27,14,14,10,15,9,11,10,18,10,11,9,15,10,14,14,22,12,12,9,15,10,13,12,22,13,15,13,23,15,22,22,57,29,28,19,27,15,18,15,25,13,14,11,18,11,14,13,21,11,11,8,12,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,6,5,8,6,9,9,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,5,5,6,3,3,2,3,2,2,2,4,3,3,3,6,4,6,6,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,21,11,11,8,11,7,8,7,11,6,7,6,9,6,9,8,14,8,8,6,9,5,6,6,10,6,7,5,8,6,9,9,15,8,9,6,9,6,7,7,12,7,8,6,10,7,9,8,14,8,9,7,11,7,9,9,16,9,10,9,15,10,14,14,31,16,17,12,17,10,12,10,16,9,10,8,13,9,12,11,17,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,27,14,14,10,15,9,11,10,18,10,11,9,15,10,13,13,27,14,15,11,18,11,15,14,26,15,18,15,27,18,26,26,48,24,24,16,23,13,15,13,22,12,12,9,14,9,12,12,21,11,11,8,11,7,9,8,13,8,9,8,13,9,12,12,24,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,3,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,8,5,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14 +-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,6,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,7,7,12,7,9,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,15,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,32,16,16,11,15,9,10,8,14,8,8,6,10,6,8,8,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,5,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,4,5,5,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,5,5,4,7,4,5,5,8,5,6,5,9,6,9,9,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,9,15,10,15,15,27,14,14,9,13,8,9,8,13,7,7,5,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8 +-21,-10,-10,-6,-10,-5,-7,-5,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,5,6,4,5,5,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,7,12,7,8,6,8,5,6,6,10,6,7,6,9,6,9,9,18,9,9,7,9,5,6,5,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,10,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,18,9,9,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,11,7,10,9,15,9,11,9,16,11,16,16,38,19,19,13,18,10,12,10,17,9,10,8,12,8,10,9,14,8,8,6,8,5,7,6,11,6,6,5,8,6,8,7,12,6,6,5,6,4,4,4,6,4,4,3,5,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,12,7,8,7,10,7,10,10,21,11,11,8,11,7,8,7,10,6,6,5,8,6,8,7,12,6,6,5,8,5,6,6,9,5,6,6,11,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,17,9,10,8,13,8,11,10,18,10,12,10,18,12,18,18,33,17,17,11,16,9,10,9,16,8,8,6,11,7,8,8,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,4,5,5,7,4,4,4,7,5,6,6,12,6,6,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,5,9 +-18,-8,-8,-5,-8,-4,-6,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,5,4,7,4,6,5,10,6,6,5,8,5,7,6,11,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,7,5,6,5,10,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,12,7,7,6,9,6,8,7,13,8,9,8,13,9,13,13,31,16,16,11,16,9,11,9,15,8,9,7,10,6,8,8,12,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,5,4,4,4,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,6,9,6,7,6,9,5,6,5,7,5,7,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,9,8,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,11,7,9,8,15,9,10,9,15,10,15,15,28,15,15,10,14,8,9,8,13,7,7,6,9,6,7,7,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-2,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8 +-33,-16,-16,-10,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-5,-7,-6,-14,-7,-9,-7,-12,-7,-11,-11,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,8,5,6,5,10,6,6,4,6,4,6,6,15,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,16,9,9,6,9,6,7,7,13,8,9,8,13,9,14,14,26,13,13,9,14,8,10,9,13,7,8,6,10,6,8,8,17,9,10,8,12,7,9,8,14,8,8,7,11,7,10,9,20,11,11,8,12,7,8,7,12,7,8,7,11,7,9,9,17,10,11,8,13,8,11,10,19,11,14,12,20,14,21,21,39,20,20,14,20,12,14,12,21,11,12,9,14,9,11,10,18,10,10,7,10,7,9,8,14,8,9,8,14,10,14,13,25,13,14,10,14,8,9,8,15,8,9,7,12,8,10,10,18,10,10,7,10,6,8,7,14,8,10,8,14,10,14,13,25,13,14,10,14,9,11,9,15,9,10,8,12,7,9,9,17,9,9,7,10,6,8,8,12,7,9,8,13,9,12,12,26,14,14,10,14,9,11,10,17,9,10,8,13,9,13,12,21,11,12,9,15,10,13,12,22,13,15,13,22,15,22,22,55,28,28,19,28,16,19,16,27,14,15,11,18,11,14,13,21,11,12,8,12,8,10,9,16,9,9,7,10,7,9,9,19,10,9,6,9,6,7,6,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,7,6,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,7,6,13,7,8,6,10,7,9,9,15,8,9,7,10,6,8,8,17,10,12,10,16,11,16,15,31,16,16,11,16,9,11,9,15,9,10,8,12,8,10,10,18,10,10,8,12,7,9,9,14,8,10,9,15,10,14,14,28,15,15,11,16,10,12,11,19,10,11,9,14,9,13,13,25,13,14,11,18,11,15,14,26,15,18,15,26,18,26,26,50,26,26,18,26,14,16,13,23,12,13,10,16,10,13,12,23,12,12,8,12,7,8,7,15,9,10,8,12,8,11,11,21,11,11,8,12,7,9,8,13,7,8,6,10,7,9,8,13,7,7,5,8,5,7,7,11,6,7,6,9,6,8,8,17,9,9,7,10,6,6,5,10,5,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,2,2,3,3,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,3,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,14 +-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,5,4,7,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,6,6,9,6,10,10,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,12,6,7,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,8,7,13,8,10,8,13,9,14,14,26,14,14,10,14,8,10,8,14,8,8,6,10,6,8,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,17,9,10,7,9,6,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,6,11,6,6,5,7,4,6,5,8,5,6,5,9,6,8,8,17,9,9,6,10,6,7,6,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,36,19,19,13,19,11,13,11,18,10,10,8,12,8,10,9,15,8,8,6,9,6,7,6,11,6,6,5,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,8,11,10,21,11,11,8,11,6,8,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,8,13,7,8,6,10,7,9,9,17,9,10,8,12,8,11,10,18,10,12,10,17,12,18,18,33,17,17,12,18,10,11,9,16,9,9,7,11,7,9,8,16,8,8,6,8,5,6,6,10,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,5,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,9 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-15,-7,-8,-5,-8,-4,-6,-6,-14,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,12,7,8,6,8,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,12,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,13,7,8,7,10,7,9,9,17,9,10,8,12,7,8,7,14,8,9,7,11,7,10,10,18,10,10,7,10,6,8,7,11,7,8,6,11,7,10,9,17,9,10,8,13,8,11,10,20,12,14,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,14,9,12,11,18,10,10,7,11,7,8,8,14,8,10,8,14,9,13,13,25,13,14,10,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,14,8,10,9,16,9,10,8,13,9,13,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,28,19,28,16,18,15,26,14,14,11,17,11,14,13,22,12,12,9,13,8,10,9,15,8,8,6,10,7,10,10,19,10,10,7,10,6,6,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,12,9,16,11,16,15,31,16,16,11,16,9,11,9,15,8,9,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,10,9,14,10,14,14,27,14,14,10,16,10,12,11,18,10,12,9,15,10,14,13,25,14,15,11,18,12,16,15,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,16,9,9,6,10,6,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,6,3,3,3,3,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,4,5,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13 +-34,-16,-16,-10,-16,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-13,-8,-12,-12,-24,-12,-12,-7,-11,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,24,13,13,9,13,8,9,8,13,7,7,6,9,6,8,7,13,7,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,9,6,8,8,15,8,8,6,9,6,8,7,13,8,9,8,13,9,14,14,26,14,14,10,14,8,9,8,14,8,9,7,11,7,9,9,17,9,10,8,11,7,8,7,13,8,9,7,11,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,17,9,10,8,13,8,11,10,20,11,13,11,19,13,20,20,39,20,20,14,20,12,14,12,21,11,12,9,13,8,11,10,19,10,10,7,11,7,9,8,14,8,10,8,14,9,13,13,25,13,13,9,13,8,9,8,14,8,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,10,8,13,9,13,13,25,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,8,8,6,10,6,8,7,12,7,8,7,12,8,12,12,24,13,13,9,13,8,10,9,16,9,10,8,13,9,12,12,22,12,13,10,15,10,13,12,22,13,15,12,21,15,22,22,53,27,27,18,27,16,18,15,26,14,15,11,17,11,14,13,23,12,12,9,13,8,10,9,15,8,9,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,7,6,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,7,5,6,5,9,5,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,6,8,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,8,7,12,7,8,6,10,7,9,8,15,8,9,7,11,7,10,9,17,10,11,9,16,11,16,16,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,10,17,9,9,7,11,7,9,8,15,8,10,9,14,10,14,14,27,14,14,10,15,9,12,11,18,10,12,9,15,10,14,13,25,14,15,11,17,11,15,14,26,15,18,15,25,17,26,26,49,25,25,17,26,15,17,14,24,13,14,10,16,10,13,12,23,12,12,9,12,8,10,9,15,8,9,8,12,8,12,11,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,16,9,9,6,9,6,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,5,7,5,7,7,13 +-70,-35,-35,-23,-34,-19,-23,-19,-35,-17,-18,-12,-20,-11,-15,-14,-28,-14,-14,-9,-13,-7,-10,-8,-16,-8,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-12,-24,-12,-12,-8,-13,-7,-9,-7,-13,-6,-7,-5,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-10,-7,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-19,-19,-40,-20,-20,-13,-20,-11,-13,-10,-19,-9,-9,-6,-11,-6,-9,-9,-18,-9,-9,-6,-11,-6,-8,-7,-14,-7,-9,-8,-15,-9,-14,-14,-28,-13,-13,-9,-14,-8,-10,-8,-15,-7,-8,-6,-10,-6,-8,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-9,-5,-7,-7,-15,-7,-6,-3,-4,-2,-2,-1,-1,0,0,0,0,1,1,2,3,2,2,1,1,1,1,2,3,2,2,2,3,3,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,8,8,15,8,9,8,13,9,12,11,20,12,15,13,23,16,23,24,47,24,25,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,13,9,14,8,10,8,14,8,8,7,11,7,9,9,16,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,14,8,8,6,9,6,8,8,15,9,11,10,17,11,16,16,31,16,17,12,18,11,14,12,22,12,13,11,18,12,16,15,28,15,15,11,18,11,14,12,22,13,15,13,22,15,21,21,41,21,21,15,22,13,17,15,27,15,16,12,19,12,17,17,32,17,19,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,34,19,23,19,34,18,20,15,25,16,22,20,38,20,20,14,22,13,16,14,24,14,16,13,21,14,19,19,37,19,20,14,22,13,16,14,24,13,15,12,19,12,16,16,30,16,17,13,21,13,17,16,31,18,21,17,30,20,30,30,58,30,30,21,31,18,21,18,32,17,19,15,24,15,20,19,36,19,19,13,20,12,15,14,25,14,16,13,22,14,20,20,38,20,21,15,22,13,17,15,27,15,17,14,24,16,22,21,40,21,23,17,28,17,23,21,40,23,27,23,40,27,41,42,104,53,54,37,55,31,38,32,56,29,31,23,38,23,31,29,56,29,29,21,32,19,24,21,37,21,24,20,34,22,32,31,61,31,31,21,31,18,22,19,33,17,18,14,22,14,19,18,34,18,18,13,21,13,18,17,32,18,21,17,30,20,28,28,54,28,28,19,29,17,20,17,30,16,18,14,24,15,21,20,37,19,20,15,24,15,19,17,31,18,21,17,29,19,27,27,53,27,27,19,29,17,22,19,35,19,22,17,28,18,26,26,51,27,29,21,34,21,27,25,48,27,31,26,45,30,45,45,88,45,45,30,45,26,31,26,46,24,26,20,32,20,26,24,45,23,24,17,27,16,20,17,31,17,20,16,26,17,23,23,44,23,23,16,24,14,17,14,25,14,16,12,20,13,17,17,32,17,18,14,22,14,18,17,32,18,22,19,33,23,34,34,67,34,34,23,35,20,23,20,35,19,21,17,28,18,24,23,45,23,24,17,26,16,20,18,34,19,23,19,33,22,32,32,64,33,33,23,34,20,24,21,37,20,23,18,31,20,28,27,51,27,30,22,36,22,29,27,52,29,34,28,49,33,49,49,98,49,49,33,49,28,33,28,50,27,29,21,34,21,28,26,49,25,26,18,28,16,20,18,33,18,20,16,27,18,26,25,49,25,26,18,26,15,18,15,27,15,16,13,22,14,20,19,36,19,19,13,20,12,15,13,24,13,15,12,21,14,21,21,42,22,22,15,23,14,17,15,27,15,16,12,20,13,18,17,31,16,17,12,19,12,17,16,29,16,18,15,26,18,26,25,49,25,25,17,25,14,17,15,27,15,17,14,23,15,21,20,39,21,22,17,27,17,23,22,41,23,28,23,41,28,41,40,79,40,41,28,41,24,29,24,43,23,25,18,29,18,24,22,41,21,21,14,21,13,16,14,24,13,14,11,19,13,18,18,34,17,17,12,18,11,13,11,20,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,19,11,12,10,18,12,16,16,30,16,16,11,15,9,11,9,15,8,9,7,12,7,9,9,16,9,9,7,11,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,10,9,16,9,9,7,10,6,8,7,13,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,26 +-35,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,6,10,6,8,7,12,8,12,12,24,12,13,9,13,8,9,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,16,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,9,8,14,8,8,6,10,7,9,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,11,7,9,9,16,9,11,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,20,10,11,8,11,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,15,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,17,9,10,8,12,8,10,9,18,10,10,7,11,7,10,9,16,9,11,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,15,11,18,11,14,13,25,14,16,14,23,16,23,23,45,23,23,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,17,12,17,17,34,18,18,12,18,10,12,10,18,10,11,9,15,10,13,12,23,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,26,14,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,25,17,25,14,17,15,25,14,15,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,14,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,8,14,8,8,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,8,13,9,14,13,25,13,13,9,13,8,9,8,14,8,9,7,12,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,21,14,21,20,40,21,21,14,21,12,15,12,22,12,13,10,15,10,13,12,21,11,11,8,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,7,6,11,6,6,5,8,6,7,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,13 +-35,-17,-16,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,5,7,5,6,6,10,6,7,7,11,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,17,9,10,7,10,6,8,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,11,11,21,11,11,8,11,7,8,8,14,8,8,7,11,7,10,9,16,9,10,7,11,7,10,9,16,10,12,10,17,12,18,18,34,18,18,12,17,10,12,10,17,10,11,8,13,9,12,11,19,10,11,8,11,7,8,7,12,7,8,7,11,7,10,10,19,10,11,8,11,7,8,7,12,7,8,6,10,7,9,9,15,8,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,16,11,16,9,11,9,17,9,10,8,13,8,11,10,18,10,10,7,10,6,8,7,12,7,8,7,11,7,10,10,20,10,10,7,11,7,8,7,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,21,12,14,12,20,14,21,21,52,27,27,19,28,16,19,16,29,15,16,12,20,12,16,15,29,15,16,11,17,10,12,11,19,11,12,10,18,12,17,16,31,16,16,11,16,10,12,10,18,10,10,8,12,8,10,9,18,10,10,8,11,7,10,9,16,9,10,9,15,10,14,14,28,15,15,10,15,9,10,9,15,9,10,8,12,8,11,10,19,10,10,8,12,8,10,9,16,9,10,9,15,10,14,14,27,14,14,10,15,9,11,10,18,10,12,9,15,10,14,14,26,14,14,11,18,11,14,13,25,14,17,14,24,16,23,23,45,23,24,16,23,13,16,13,23,13,14,11,16,10,14,13,23,12,13,9,14,9,11,9,16,9,10,8,13,9,12,12,23,12,12,9,13,8,9,8,13,7,8,7,11,7,9,9,16,9,9,7,11,7,10,9,16,10,12,10,16,11,17,17,34,18,18,12,18,10,12,10,19,11,12,9,15,10,13,12,22,12,13,9,13,8,10,9,17,10,12,10,17,11,16,17,33,17,17,12,18,10,12,11,19,11,12,10,16,10,14,14,27,15,16,12,19,12,15,14,27,15,18,15,25,17,25,25,49,25,24,17,25,14,17,15,25,13,14,11,18,11,14,13,25,13,13,10,15,9,10,10,17,9,10,8,14,9,13,13,25,13,13,9,13,8,10,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,13,7,8,7,11,7,9,9,16,9,9,7,10,7,9,9,16,9,10,8,13,9,14,13,24,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,19,10,11,9,13,9,12,11,20,12,14,12,21,14,20,20,41,21,21,14,20,12,14,12,22,12,12,9,16,10,13,12,21,11,11,7,11,7,8,7,12,7,8,6,10,7,10,9,17,9,9,6,10,6,8,7,11,6,6,5,8,6,8,7,12,6,6,5,8,5,7,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,9,5,6,4,5,3,4,4,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,7,13 +-23,-11,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,5,6,5,10,6,6,5,8,5,7,6,11,6,7,5,7,5,7,6,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,13,7,8,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,20,10,11,7,11,6,8,7,12,6,7,6,9,6,7,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,14,10,14,14,35,18,18,13,19,11,13,11,20,10,11,8,14,8,11,10,20,11,11,8,12,7,9,8,13,8,8,7,12,8,12,11,21,11,11,8,11,7,8,7,12,7,7,6,8,6,7,6,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,6,8,6,7,6,11,6,7,6,10,7,9,9,18,9,9,7,10,6,7,7,12,7,8,6,11,7,10,10,18,10,10,8,12,8,10,9,17,10,12,10,16,11,15,15,30,16,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,6,12,7,7,6,9,6,8,8,16,8,8,6,9,5,6,6,9,5,6,5,8,5,6,6,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,12,24,12,12,8,12,7,9,8,13,8,8,6,10,7,9,8,15,8,9,6,9,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,8,8,13,8,8,7,11,7,10,10,18,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,33,17,16,11,17,10,12,10,17,9,10,8,12,8,10,9,17,9,9,7,11,6,7,7,12,6,7,6,10,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,11,6,7,6,9,7,10,9,16,8,8,6,8,5,6,6,10,6,6,5,8,6,8,8,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,14,14,10,14,8,9,8,15,8,8,7,11,7,9,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,6,12,6,6,5,7,4,6,5,8,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,2,3,3,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,5,9 +-35,-17,-17,-11,-16,-8,-10,-8,-17,-8,-8,-6,-10,-5,-7,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-8,-4,-5,-4,-9,-6,-9,-9,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-3,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,7,5,7,6,10,6,8,7,11,8,11,12,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,7,13,7,7,5,8,5,6,5,6,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,7,5,6,6,8,5,5,5,8,6,8,8,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,6,11,7,8,7,11,7,10,10,20,11,11,7,10,6,8,7,14,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,15,9,11,10,17,12,17,17,33,17,17,12,17,10,12,10,17,9,10,8,13,8,11,11,20,11,11,7,10,6,8,7,13,7,8,7,11,7,9,9,20,11,11,7,10,6,7,7,11,7,8,6,10,7,9,9,16,9,9,7,10,7,9,9,16,9,10,9,15,10,15,15,29,15,15,10,15,9,11,10,17,9,10,8,12,8,10,9,18,10,10,7,11,6,7,6,11,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,9,7,12,8,11,11,21,11,12,9,14,9,12,11,21,12,14,12,20,14,21,21,53,27,27,19,28,16,20,17,29,16,17,13,20,13,17,15,30,16,16,12,18,11,14,12,19,11,13,11,18,12,17,17,30,15,15,11,16,10,12,10,18,10,10,8,12,8,10,9,17,9,10,8,12,8,10,9,15,9,10,8,14,10,14,14,28,15,15,11,16,9,11,9,16,9,9,7,12,8,11,11,19,10,11,8,12,8,10,9,16,9,11,9,14,9,13,13,25,13,14,10,14,8,10,9,18,10,12,10,16,11,15,14,26,14,15,11,17,11,14,13,24,14,16,14,24,16,23,22,45,23,24,16,24,14,16,13,23,12,13,10,17,11,14,13,25,13,14,10,14,9,11,9,18,10,11,9,14,9,12,12,24,13,13,9,12,7,8,7,13,8,9,7,11,7,10,9,16,9,9,7,10,7,9,9,17,10,11,9,16,11,17,17,36,19,19,13,18,11,13,11,19,10,11,9,14,9,13,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,16,16,32,17,17,12,17,10,13,11,19,11,12,10,16,11,15,14,27,15,16,12,18,11,15,14,27,15,17,14,25,17,25,25,48,24,24,16,24,14,17,15,24,13,14,11,17,11,15,14,25,13,14,10,16,9,11,10,17,10,11,9,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,12,8,10,9,18,10,10,7,11,7,8,7,12,7,9,7,12,8,11,11,21,11,11,8,12,7,9,8,13,8,9,7,12,8,10,10,16,9,9,7,10,7,9,9,16,9,11,9,14,10,14,14,23,12,12,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,20,41,21,20,14,20,12,14,12,21,12,13,10,16,10,13,12,20,11,11,7,10,6,8,7,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,8,5,5,5,9,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,13,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,6,4,4,4,6,4,4,4,6,4,5,4,6,4,6,6,12 +-19,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,11,6,6,4,7,4,5,4,8,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,9,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,6,6,6,9,6,9,9,16,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,31,16,16,11,16,10,12,10,16,9,10,7,11,7,10,9,17,9,9,7,11,7,8,7,11,7,8,7,11,7,10,10,17,9,9,7,9,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,9,9,6,9,6,7,5,9,5,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,9,6,9,8,15,8,9,6,10,6,8,8,14,8,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,11,6,7,5,8,6,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,5,8,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,14,8,10,9,14,8,8,6,10,6,9,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,7,5,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,9,5,5,4,7,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,6,4,4,4,7,4,5,4,7,5,6,6,13,7,7,5,8,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,7,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,12,7,8,7,11,6,7,6,9,6,7,7,13,7,7,5,6,4,4,4,8,5,6,5,7,5,6,6,14,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,10,7,10,10,19,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,5,6,5,8,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,14,10,15,15,38,19,19,13,19,11,14,12,19,10,11,8,12,8,11,10,20,11,11,8,13,8,9,8,14,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,6,11,6,6,5,9,6,8,7,14,8,8,6,8,5,7,6,11,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,12,7,8,7,10,7,10,9,17,9,10,7,12,8,10,10,17,10,12,10,16,11,15,15,31,16,16,11,16,9,11,9,16,9,10,7,12,7,9,9,17,9,10,7,9,6,7,6,13,7,8,6,10,7,9,9,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,25,13,13,9,13,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,10,6,8,7,13,7,8,7,11,8,12,12,21,11,12,8,12,7,9,8,13,7,8,7,11,7,10,9,18,10,10,8,12,8,10,10,18,10,12,10,17,12,17,17,32,16,16,11,16,10,12,10,17,9,10,8,11,7,10,9,16,9,10,7,11,7,8,7,11,7,8,6,10,7,10,9,17,9,9,6,9,5,6,6,11,6,7,5,9,6,8,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,10,6,6,5,6,4,6,6,10,6,7,6,10,7,10,9,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,8,13,7,8,6,9,6,8,7,13,8,10,8,13,9,13,13,27,14,14,10,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,4,4,8 +-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,6,5,7,7,12,7,7,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,4,9,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,4,5,5,9,6,6,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,5,4,7,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,12,9,13,13,32,16,16,11,16,9,11,10,16,9,9,7,10,7,9,8,17,9,9,7,11,7,8,7,12,7,8,7,11,8,10,10,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,9,6,6,5,9,5,5,4,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,7,6,8,5,7,6,10,6,6,6,9,6,8,8,15,8,9,6,10,7,9,8,15,9,10,8,14,9,13,13,26,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,6,11,6,7,6,10,7,10,10,18,10,10,7,10,6,8,7,12,7,7,6,10,6,9,8,16,9,9,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,9,6,7,6,9,6,6,5,8,6,8,8,14,8,8,6,8,5,5,5,9,5,6,5,7,5,7,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,23,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,6,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7 +-32,-15,-15,-10,-16,-8,-9,-7,-14,-7,-7,-5,-10,-6,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,11,11,21,11,11,8,11,6,6,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,7,12,7,8,6,9,6,7,7,15,8,8,6,8,5,7,6,10,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,12,7,7,6,10,7,9,9,16,9,9,7,10,6,8,8,14,8,10,9,16,11,16,16,33,17,16,11,16,10,12,10,17,9,10,7,11,7,9,9,17,9,9,6,9,6,7,6,10,6,7,5,8,6,9,9,21,11,11,8,12,7,8,7,12,7,8,7,11,7,10,10,17,9,9,7,11,7,10,9,16,9,11,9,16,11,15,15,26,14,14,10,15,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,11,7,8,6,10,6,7,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,7,6,9,7,10,10,22,12,13,10,15,9,12,11,20,12,14,12,22,15,21,21,58,29,29,20,30,17,20,17,29,15,16,12,18,11,15,14,29,15,16,12,18,11,14,12,22,12,14,12,20,13,18,18,32,17,17,11,16,9,11,10,18,10,10,7,11,7,10,9,16,8,8,6,9,6,8,8,14,8,10,9,15,10,15,15,27,14,13,9,13,8,9,8,14,8,9,7,12,8,10,10,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,12,23,12,12,9,14,8,10,9,16,9,10,9,15,10,14,14,26,14,14,11,17,11,14,14,26,15,17,14,25,17,24,23,46,23,23,16,23,13,16,14,24,13,14,10,16,10,13,13,25,13,13,9,14,9,11,10,18,10,11,9,14,10,14,14,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,8,15,8,9,7,11,7,10,9,17,10,12,10,18,12,18,18,38,19,19,13,20,12,14,11,19,11,12,9,14,9,13,13,22,12,13,10,15,9,12,11,20,11,13,11,18,12,17,17,32,17,17,12,18,11,13,12,21,12,13,10,15,10,14,14,28,15,16,12,19,12,16,14,26,15,17,15,26,17,25,25,48,25,25,17,25,14,16,14,24,13,13,10,15,10,14,13,24,13,13,9,13,8,10,9,16,9,10,9,15,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,11,7,10,10,17,9,9,6,9,6,7,7,13,8,9,7,12,8,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,7,10,10,14,8,8,6,10,6,8,8,14,8,10,8,13,9,13,13,21,11,11,8,11,7,9,8,14,8,9,8,13,9,12,12,19,10,10,8,12,8,10,10,18,11,13,11,19,13,19,19,41,21,21,14,20,11,13,11,18,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,10,6,8,7,12,7,8,6,10,6,8,8,15,8,8,6,8,5,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,5,7,7,12 +-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,3,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,6,8,5,7,6,11,7,8,7,12,8,11,11,31,16,15,11,16,9,11,9,16,8,9,7,10,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,8,13,9,13,12,24,12,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,20,11,11,8,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,6,8,5,7,6,11,6,7,6,10,7,10,10,17,9,9,7,10,6,7,7,12,7,7,6,9,6,8,8,15,8,9,7,10,7,9,8,14,8,9,8,14,9,13,13,25,13,13,9,13,8,9,8,13,7,7,6,8,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,3,4,4,7 +-18,-9,-9,-6,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,6,5,7,7,11,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,5,3,4,4,7,4,5,4,5,4,6,6,12,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,6,10,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,6,9,6,7,7,11,7,8,7,12,8,12,12,33,17,16,11,17,10,11,10,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,11,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,13,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,9,13,13,25,13,14,10,14,8,9,8,15,8,8,6,9,6,8,8,14,8,8,6,8,5,7,6,11,6,7,6,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,5,8,6,8,8,13,7,8,6,8,5,7,6,12,7,8,7,11,8,11,10,19,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,11,7,10,9,15,9,10,9,15,10,14,14,27,14,14,10,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,8,5,6,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,7,5,6,6,9,5,5,4,7,5,6,5,9,5,6,5,8,5,7,7,11,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,6,10,6,8,6,10,7,10,11,23,12,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,6,6,8,4,4,3,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,3,4,3,4,3,6,4,4,3,5,4,6,6,9,5,6,4,5,3,4,4,4,3,3,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,7 +-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,25,13,12,9,13,8,9,7,13,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,6,4,5,5,9,6,6,5,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,5,8,6,7,7,12,7,7,6,8,5,7,7,11,7,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,18,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,3,4,3,3,3,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6 +-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,5,5,8,6,8,8,13,7,6,4,6,4,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,4,3,6,4,5,4,6,4,5,5,6,4,5,4,6,4,5,5,7,4,5,4,6,4,6,6,14,7,7,5,6,4,5,4,8,5,6,5,7,5,6,6,12,7,7,5,6,4,4,4,7,4,5,5,8,6,8,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,11,11,8,12,7,8,6,12,7,7,5,8,5,7,7,11,6,7,5,7,4,5,4,9,5,6,5,8,5,6,6,15,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,12,7,8,7,11,8,11,11,17,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,13,13,41,21,20,14,20,12,14,11,20,11,11,8,12,8,10,9,18,10,10,7,11,7,8,7,15,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,9,6,8,7,11,6,7,5,8,5,7,6,9,6,7,6,10,7,10,10,19,10,9,6,9,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,7,6,9,6,8,8,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,30,15,15,11,16,9,11,9,18,10,11,8,12,8,10,9,16,9,9,7,10,6,7,6,13,7,8,7,11,7,10,10,17,9,9,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,14,8,8,7,11,7,10,10,17,9,10,7,10,6,8,8,15,9,10,8,14,9,13,13,23,12,13,9,14,8,10,9,17,9,10,8,14,9,12,11,20,11,12,9,13,8,11,10,18,10,12,10,17,11,16,16,32,17,17,11,16,9,11,10,16,9,9,7,10,6,8,8,17,9,9,6,9,6,8,7,10,6,7,6,10,7,10,10,16,9,9,6,8,5,5,5,10,6,6,5,8,6,8,7,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,5,10,6,7,5,8,6,8,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,9,13,7,7,5,8,5,7,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,7,7,11,7,8,7,12,9,13,13,29,15,15,10,14,8,9,7,12,7,8,6,10,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,5,7,7,10,6,6,4,6,4,5,5,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,5,3,3,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,5,5,10 +-13,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,4,4,3,4,3,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,5,4,5,5,7,4,5,4,5,3,4,3,6,4,4,4,5,4,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,25,13,13,9,13,8,9,7,13,7,7,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,13,7,8,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,6,11,6,6,4,6,4,5,5,10,6,6,5,9,6,8,8,15,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,13,7,8,6,9,6,7,7,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,4,5,5,10,6,6,4,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,7,4,4,4,5,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,6,9,5,6,5,8,5,5,4,7,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,6 +-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,6,5,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,6,4,6,5,9,5,6,5,10,7,10,10,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,4,4,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,9,6,8,6,11,8,11,11,34,18,18,12,18,10,12,10,17,9,10,7,11,7,8,8,15,8,8,6,9,5,6,6,11,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,4,6,4,6,6,10,6,6,4,7,4,4,4,7,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,7,5,6,6,12,7,7,6,9,6,8,7,13,7,8,7,12,8,12,12,26,14,14,10,14,8,9,8,15,8,8,6,10,7,9,8,15,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,6,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,8,5,7,7,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,10,9,15,9,10,8,15,10,14,14,26,14,14,9,13,8,10,8,13,7,8,6,9,6,7,7,13,7,8,6,7,5,6,5,8,5,6,5,9,6,8,8,12,6,6,5,6,4,5,4,8,5,6,5,7,5,6,6,13,7,7,5,7,5,6,5,9,5,6,5,6,4,6,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,4,4,3,4,3,3,3,7,4,4,3,5,4,6,6,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8 +-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,4,5,3,4,4,5,3,4,4,6,4,4,4,5,4,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,8,6,9,9,19,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,32,17,17,11,17,10,11,10,16,9,9,7,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,6,7,7,12,7,8,7,11,8,11,11,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,6,7,6,11,6,7,5,8,6,8,7,13,7,7,5,8,5,7,6,12,7,7,6,10,7,10,10,19,10,10,8,12,7,9,8,14,8,8,7,11,7,10,10,17,9,10,8,12,7,9,8,15,9,10,8,14,10,14,14,24,13,13,9,12,7,9,7,12,7,7,5,8,6,7,7,12,6,7,5,7,5,6,5,8,5,6,5,9,6,8,8,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,11,6,7,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,23,12,12,8,11,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +-33,-16,-15,-10,-15,-8,-9,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-18,-8,-8,-5,-9,-4,-4,-3,-6,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,2,3,3,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,11,8,12,12,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,13,7,7,5,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,6,10,6,8,7,13,8,9,7,11,7,10,10,19,10,10,7,11,7,8,8,14,8,8,6,9,6,8,8,16,8,8,6,9,6,8,8,14,8,9,7,12,8,10,10,18,10,10,7,9,5,6,6,10,6,6,5,9,6,9,9,16,9,9,7,11,7,10,10,19,11,12,10,16,11,16,16,36,18,18,12,18,10,12,10,18,10,10,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,9,7,12,8,10,9,25,13,12,8,12,7,8,7,12,7,7,6,10,7,10,10,18,10,10,7,11,7,9,9,17,10,11,9,16,11,17,17,22,11,11,8,11,7,8,7,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,10,6,8,8,12,7,7,5,8,5,6,5,9,6,7,6,9,6,9,9,18,10,11,9,14,9,11,10,19,11,13,11,18,12,18,19,62,31,31,21,32,18,20,17,29,15,16,12,19,12,16,14,26,14,14,10,15,9,12,11,20,12,14,11,19,13,18,18,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,19,10,11,8,13,8,10,9,16,9,11,9,15,10,14,14,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,17,9,9,6,9,6,7,7,13,8,9,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,8,7,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,14,20,21,47,24,24,17,25,14,17,15,27,14,15,11,17,11,14,14,26,14,14,10,16,10,12,10,18,10,12,10,17,11,15,15,26,13,13,9,14,8,10,9,15,8,8,6,10,7,9,9,16,9,9,7,11,7,10,10,19,11,12,10,17,12,17,17,40,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,24,13,14,10,15,9,11,10,18,11,13,11,20,13,19,19,36,19,19,14,22,13,16,14,25,14,15,12,19,12,17,17,33,18,19,14,21,12,15,14,25,14,17,14,24,16,24,25,45,23,23,15,22,13,16,14,24,13,14,11,17,11,14,12,22,12,12,9,13,8,9,8,15,9,10,9,15,10,15,15,20,11,11,8,11,7,9,8,14,8,9,7,11,8,11,11,22,12,13,9,14,9,11,9,16,9,11,9,14,9,12,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,18,10,12,10,16,11,15,15,21,11,12,9,13,8,9,8,15,8,9,7,11,8,11,11,20,11,11,9,14,9,12,11,21,12,14,12,20,13,19,18,43,22,22,15,21,12,14,12,22,12,12,9,15,10,13,12,22,11,11,8,12,7,9,8,13,8,9,7,12,8,11,11,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,14,8,8,6,10,6,8,7,13,8,9,7,11,7,10,9,19,10,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,6,10,7,10,10,17,9,9,6,9,5,6,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,13 +-16,-8,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,5,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,5,13,7,6,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,9,6,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,4,5,4,5,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,32,16,16,11,17,10,11,9,15,8,8,6,10,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,10,6,7,6,11,7,10,10,19,10,10,8,12,7,9,8,13,8,8,6,10,7,9,9,17,10,10,8,11,7,8,8,13,8,9,8,13,9,13,13,23,12,12,8,12,7,9,8,12,7,8,6,9,6,7,7,12,6,6,5,7,4,5,4,8,5,6,5,8,6,8,8,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,7,10,10,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,6,4,4,4,6,5,7,7,8,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,3,2,2,2,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,7,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,5,9,5,6,4,7,4,5,5,9,5,6,5,9,6,8,9,19,10,10,7,10,6,6,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,13,7,6,5,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,4,5,5,10,6,6,5,9,6,9,9,12,6,6,5,6,4,4,4,5,3,4,3,6,4,4,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,10,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,33,17,17,12,17,10,12,10,16,8,8,6,10,6,8,8,14,8,8,6,9,5,6,6,12,7,8,6,10,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,5,4,5,4,7,5,6,5,8,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,25,13,13,9,14,8,9,8,15,8,8,6,10,6,8,8,13,7,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,9,9,21,11,11,8,11,7,8,7,11,6,7,5,9,6,7,7,12,7,8,6,8,5,6,6,11,7,8,7,11,7,10,10,20,10,10,8,12,7,9,8,14,8,8,7,10,7,10,9,18,10,11,8,12,7,9,8,14,8,10,8,13,9,14,14,23,12,12,8,12,7,9,8,12,7,8,6,8,5,7,7,12,6,6,5,7,4,5,4,8,5,6,5,9,6,8,8,12,6,6,5,6,4,4,4,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,5,4,6,5,10,5,5,4,7,5,6,5,9,5,6,5,9,6,8,8,11,6,6,5,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,12,7,8,7,11,7,10,10,23,12,12,8,11,7,8,7,12,7,7,6,8,5,7,6,12,6,6,5,7,5,6,5,7,4,5,4,7,5,6,6,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,5,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,9,5,5,4,5,3,3,3,4,2,3,2,4,3,3,3,5,3,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,5,4,7,5,6,5,8,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,8,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,5,4,7,5,6,6,9,5,5,4,5,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,4,4,4,5,3,4,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-16,-8,-8,-5,-8,-4,-5,-3,-8,-4,-5,-3,-6,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,7,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,6,4,4,3,5,3,3,3,6,4,4,4,6,5,7,7,9,5,5,4,6,4,5,4,6,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,7,6,9,6,9,9,19,10,10,7,11,6,7,6,10,6,7,5,8,5,7,7,9,5,6,4,6,4,5,5,9,5,5,4,7,5,7,7,13,7,7,5,8,5,6,5,7,4,4,4,6,4,5,5,11,6,7,5,8,5,7,6,12,7,8,6,10,7,10,10,13,7,7,5,7,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,6,10,7,11,11,36,18,18,12,18,10,12,10,17,9,10,7,10,7,9,9,15,8,9,6,9,6,8,7,13,8,9,7,12,8,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,10,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,7,8,7,12,8,12,12,26,14,14,10,15,9,10,8,16,9,10,7,11,7,9,9,14,8,8,6,8,5,6,5,10,6,6,5,9,6,9,9,15,8,8,6,9,6,7,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,6,12,7,8,6,10,7,9,9,22,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,7,6,12,7,8,7,11,8,11,10,21,11,12,9,14,8,10,9,16,9,10,8,12,8,11,10,20,11,11,8,12,7,9,8,16,9,10,8,14,10,15,15,24,13,13,9,14,8,10,9,13,7,7,5,8,6,8,7,13,7,7,5,7,4,5,4,8,5,7,6,10,7,9,9,14,8,8,6,8,5,5,5,9,5,6,5,8,6,8,7,11,6,6,5,8,5,6,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,5,4,7,5,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,11,11,25,13,13,9,12,7,9,8,13,7,8,6,10,6,8,7,13,7,8,6,8,5,6,5,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,3,4,3,3,3,4,3,5,5,9,5,5,4,5,4,5,4,9,5,6,5,7,4,5,5,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,3,3,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,4,4,4,5,4,5,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,6,4,6,6,8,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,7,7,22,11,11,8,11,6,7,6,10,6,6,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,15,8,9,6,9,6,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,4,6,4,5,4,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,12,7,7,6,8,5,6,6,9,5,6,5,7,5,7,6,12,7,7,5,8,5,6,5,10,6,6,5,9,6,9,9,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,7,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,6,4,4,3,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,4,3,5,4,6,5,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,10,6,6,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,28,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,5,8,5,6,5,9,5,6,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,14,8,8,5,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,3,5,3,4,3,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,19,10,11,8,11,7,8,7,11,6,7,5,8,6,8,7,11,6,6,4,7,4,4,4,7,4,5,4,6,5,7,7,13,7,8,6,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,7,7,16,8,8,6,9,5,6,5,9,5,6,4,7,4,5,5,10,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,11,6,7,6,8,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,5,3,4,4,5,3,4,4,8,5,6,6,10,6,6,4,7,4,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,9,5,6,5,6,4,6,5,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,6,10,6,6,5,7,5,6,5,11,6,6,4,6,4,4,4,7,4,4,3,6,4,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,3,3,5,3,4,4,5,4,5,6,12,7,7,5,7,4,5,4,6,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,7,5,7,7,25,13,12,8,12,7,8,6,11,6,7,5,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,8,5,7,6,12,7,7,5,7,4,5,4,8,4,5,4,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,5,5,7,5,7,7,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,16,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,3,4,3,4,3,5,3,4,4,7,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,5,5,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,4,4,4,6,4,5,5,8,6,8,8,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,10,6,7,5,8,5,6,5,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,11,6,7,5,7,5,6,5,8,5,6,5,9,7,10,10,22,11,11,7,10,6,7,6,11,6,7,6,9,6,8,8,12,7,7,5,7,5,6,6,11,7,8,6,10,7,9,8,17,9,9,7,10,6,7,6,10,6,6,5,8,6,8,8,16,9,9,7,10,7,9,8,14,8,9,7,12,8,12,12,15,8,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,4,5,5,8,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,10,6,7,7,12,8,12,12,45,23,23,16,23,13,14,11,19,10,11,8,13,8,11,11,20,11,11,8,12,7,9,9,16,9,9,7,12,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,7,6,13,7,8,6,8,5,7,6,10,6,7,6,11,7,10,10,23,12,12,8,11,7,8,7,12,7,8,6,10,6,8,8,15,8,8,5,7,4,5,5,8,5,6,5,9,6,8,8,12,7,7,5,8,5,7,6,10,6,6,5,8,5,7,7,10,6,7,6,9,6,8,8,14,8,9,8,13,9,13,13,30,16,16,11,15,9,11,10,18,10,11,8,13,8,11,11,18,10,10,7,9,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,12,7,9,7,12,7,7,5,8,5,6,6,12,7,7,5,8,5,7,7,12,7,8,6,10,7,11,11,25,13,13,9,13,8,9,8,14,8,8,6,9,6,7,7,16,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,25,13,14,10,16,9,11,10,18,10,12,9,15,9,12,12,26,14,14,10,15,9,12,11,20,11,13,11,19,13,18,18,30,16,16,11,17,10,12,10,16,9,9,7,11,7,10,9,14,8,8,6,9,5,6,5,8,5,6,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,7,7,14,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,19,10,10,7,9,6,7,6,10,6,6,5,7,5,8,8,12,7,7,5,7,5,6,6,10,6,6,5,9,7,10,10,16,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,15,8,9,6,9,6,8,8,14,8,10,8,14,10,14,14,27,14,15,11,16,9,11,9,16,9,9,7,10,7,9,8,17,9,9,6,9,6,7,6,11,6,6,5,8,6,8,8,12,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,10,6,6,5,8,5,7,7,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,2,8,5,5,3,4,3,4,3,5,4,5,4,7,5,6,6,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,4,3,4,3,3,3,4,3,3,3,6,4,5,5,10 +-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,4,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,9,5,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,25,13,13,9,13,7,8,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,9,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,4,4,4,8,4,5,4,5,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,5,8,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,7,6,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,4,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,14,8,8,6,9,6,7,6,10,6,7,6,9,6,7,7,14,8,8,6,9,6,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,6,7,6,9,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,4,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,2,3,3,4,3,7,4,5,4,4,3,4,3,5,3,4,4,6,4,6,6,14,7,7,5,7,4,5,4,8,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,10,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,8,8,28,15,15,10,14,8,8,7,13,7,7,6,9,6,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,4,4,3,6,4,4,4,9,5,5,4,5,3,4,4,5,3,4,4,7,5,6,6,14,8,8,5,7,5,6,5,7,5,6,5,7,5,6,5,9,5,6,4,5,3,4,4,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,6,5,9,6,8,8,19,10,10,7,10,6,8,7,12,7,7,5,9,6,8,7,11,6,7,5,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,7,5,6,5,8,5,6,5,8,6,8,7,15,8,9,7,10,6,8,7,11,7,8,6,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,7,12,8,12,12,19,10,10,7,10,6,7,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,4,3,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,6,5,10,6,6,5,6,4,6,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7 +-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,6,6,22,12,12,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,13,7,7,5,7,4,5,4,8,4,5,4,6,4,5,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,12,6,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,10,6,7,6,10,7,10,10,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,4,9,5,5,4,6,4,5,4,4,3,3,3,6,4,6,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,5,5,12,7,7,5,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,11,6,7,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,6,9,7,10,10,12,6,6,4,6,4,4,3,6,4,5,4,6,4,5,5,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,7,5,6,5,8,6,9,10,37,19,18,12,18,10,11,9,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,9,9,16,9,9,7,10,6,8,7,10,6,6,5,7,5,6,5,11,6,7,5,7,4,4,4,6,4,4,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,5,6,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,12,7,8,7,11,8,11,11,26,14,14,9,13,8,9,8,15,8,9,7,11,7,10,9,15,8,8,6,10,6,7,6,11,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,9,9,22,11,11,8,11,7,8,7,13,7,8,6,10,6,8,7,12,7,7,6,9,6,7,6,10,6,7,6,10,7,9,9,19,10,11,8,12,7,9,9,14,8,9,7,12,8,11,11,21,11,12,9,15,9,12,11,17,10,12,10,16,11,16,16,27,14,13,9,13,8,9,8,14,7,7,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,5,8,6,8,8,13,7,8,6,8,5,6,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,7,4,5,5,9,6,8,8,15,8,8,5,7,4,5,5,9,5,5,4,7,5,7,6,9,5,6,4,6,4,5,4,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,5,5,4,6,4,6,6,11,6,7,5,8,5,7,7,13,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,14,7,7,5,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,2,2,2,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9 +-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,6,4,6,6,24,12,12,8,12,7,8,6,12,6,7,5,8,5,6,6,11,6,6,5,7,4,5,5,8,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,4,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,5,12,7,7,5,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,4,4,8,5,5,5,7,5,7,7,17,9,9,6,9,5,6,5,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,14,8,8,6,10,6,8,7,12,7,8,7,11,8,11,11,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,6,4,4,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,4,5,6,4,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,6 +-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,4,3,4,3,5,4,6,6,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,7,5,7,7,15,8,8,6,8,5,6,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,11,6,6,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,12,7,7,6,9,6,9,9,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,8,6,8,9,35,18,17,12,17,10,11,9,17,9,9,7,10,6,8,8,16,8,8,6,9,6,7,6,11,6,7,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,5,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,6,4,7,5,6,6,11,6,7,6,10,7,10,10,25,13,13,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,8,6,9,9,22,12,12,8,11,7,8,7,12,7,7,5,9,6,8,7,11,6,7,5,7,5,6,6,10,6,7,6,9,7,10,10,18,10,10,7,11,7,9,8,14,8,9,7,11,8,11,10,20,11,12,9,13,8,10,10,18,10,12,9,16,11,16,16,26,13,13,9,13,7,8,7,13,7,8,6,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,7,5,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,5,7,4,5,4,8,5,7,7,14,7,7,5,7,4,5,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,13,7,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,6,7,9,5,4,3,5,3,4,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,13,7,6,4,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,14,8,8,6,8,5,6,6,10,6,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,7,7,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,9,9,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,4,5,3,4,4,7,4,5,4,8,6,8,8,34,18,17,12,17,10,11,9,16,9,9,7,10,6,8,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,24,12,12,9,12,7,8,7,13,7,8,6,10,7,9,8,14,7,7,5,8,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,11,6,6,4,7,5,6,6,10,6,6,5,9,6,9,9,22,11,11,8,11,7,8,7,12,7,7,5,8,6,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,8,8,13,8,9,7,11,7,10,10,19,10,11,8,13,8,10,10,18,10,11,9,16,11,16,16,26,13,13,9,13,7,8,7,12,7,7,6,8,5,6,6,11,6,7,5,7,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,18,10,10,7,10,6,7,6,11,6,7,5,8,6,7,7,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,9,5,6,5,7,5,7,7,9,5,5,3,5,3,4,3,5,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8 +-20,-9,-9,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,7,6,9,7,10,10,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,24,13,13,9,13,8,9,7,12,7,7,6,9,6,7,6,11,6,7,5,7,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,7,6,11,6,6,5,7,5,7,7,13,7,8,6,10,6,7,7,12,7,8,7,11,8,12,12,27,14,15,11,17,10,13,11,19,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,10,8,14,9,13,13,25,13,14,10,15,9,10,9,15,8,9,7,10,7,10,9,17,9,10,8,14,9,11,11,20,11,12,10,17,12,17,17,20,11,11,7,10,6,8,7,13,7,8,6,10,7,9,9,16,9,9,6,8,5,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,18,10,11,8,12,7,9,8,15,9,11,9,15,11,16,16,67,34,33,22,33,19,22,19,33,17,18,13,20,12,16,15,29,15,15,11,17,10,12,11,20,11,12,9,15,10,14,14,26,13,13,9,14,8,9,7,12,7,7,6,10,7,9,8,15,8,9,7,10,6,8,8,15,8,9,7,11,8,11,11,33,17,18,12,18,11,13,11,18,10,10,8,12,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,11,6,6,5,8,6,9,9,16,9,10,8,13,8,11,11,20,11,13,11,18,12,18,18,46,24,24,17,25,14,17,14,24,13,14,11,17,11,14,13,25,13,14,10,16,10,13,11,20,11,13,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,10,8,13,9,14,14,26,14,14,11,17,10,12,11,20,11,12,10,17,12,17,17,42,21,21,14,20,12,14,12,21,11,12,10,16,10,14,14,27,14,15,11,16,10,12,11,21,12,14,12,20,13,19,18,34,18,18,13,19,11,14,12,21,12,13,10,17,11,16,16,32,17,19,14,23,14,18,17,32,18,21,17,30,20,30,30,50,26,26,17,25,14,16,14,24,13,14,10,16,10,14,13,25,13,13,9,14,9,11,10,18,10,11,9,14,9,13,13,24,13,13,10,15,9,12,10,18,10,11,9,14,9,12,11,21,11,12,9,13,8,10,9,15,9,11,9,15,10,14,13,27,14,14,10,16,10,12,10,18,10,10,7,11,7,10,10,18,9,9,7,10,6,8,7,13,8,9,7,12,8,11,11,22,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,20,11,11,9,14,9,12,11,20,12,14,12,21,14,20,20,35,18,18,13,20,12,14,12,20,11,11,8,11,7,10,9,16,9,9,6,9,6,7,7,13,7,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,10,7,9,8,14,8,8,6,9,6,8,8,14,8,9,8,14,9,13,13,16,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,9,9,16 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,5,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,6,7,6,10,6,6,5,8,5,7,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,34,18,17,12,17,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,17,9,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,5,7,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,9,6,8,7,13,7,8,6,8,5,7,6,10,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,5,5,4,7,5,8,8,14,8,8,6,9,5,6,6,11,6,7,6,9,6,9,9,22,11,11,8,11,7,8,7,11,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,11,9,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,7,6,8,5,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,6,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,6,4,6,5,7,4,4,3,4,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,3,3,4,4,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,14,8,8,6,9,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,4,5,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,17,9,10,7,11,7,9,8,16,9,9,7,10,6,7,6,11,6,6,5,8,5,7,7,14,8,8,6,8,5,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,6,5,6,4,6,6,18,10,10,7,10,6,7,6,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,7,6,9,6,9,10,23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,14,8,8,6,8,5,6,6,10,6,7,6,10,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,7,5,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,9,9,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,9,9,7,10,6,8,7,11,6,7,6,9,6,9,9,17,9,10,8,12,8,10,9,17,10,12,10,15,10,15,16,26,14,14,9,13,7,8,7,12,7,8,6,8,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,7,13,7,8,6,8,5,7,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,5,4,7,5,6,6,10,6,7,5,8,5,7,6,10,6,8,6,11,8,11,11,18,10,10,7,10,6,8,7,11,6,6,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9 +-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,4,2,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,24,12,12,8,12,7,8,7,12,6,7,5,8,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,4,5,4,5,4,12,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,6,9,5,6,5,7,4,6,5,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,6,5,8,5,5,4,7,5,6,6,12,6,7,6,8,6,7,6,12,7,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,6 +-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,5,4,6,4,6,6,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,4,3,3,3,4,3,4,5,8,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,8,5,7,6,10,6,7,6,9,6,7,7,13,7,8,6,8,5,6,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,6,7,6,10,7,10,9,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,8,4,4,3,5,3,3,3,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,10,6,7,6,10,7,9,9,35,18,18,12,18,11,13,11,17,9,10,8,12,8,10,9,18,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,15,8,9,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,18,9,9,7,10,6,7,6,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,23,12,12,8,12,7,9,8,14,8,9,7,10,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,16,8,8,6,8,5,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,7,7,13,7,8,6,10,7,10,10,23,12,12,8,12,7,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,6,7,7,10,6,7,6,10,7,9,9,19,10,10,7,10,6,8,7,11,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,18,10,12,10,16,11,16,16,27,14,14,10,14,8,9,8,13,7,7,6,9,6,8,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,10,6,7,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,14,8,9,7,10,6,7,6,10,5,5,4,6,4,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,9,5,5,4,7,5,6,6,11,6,7,6,9,6,7,7,11,6,7,6,10,7,10,10,19,10,10,7,10,6,7,7,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,5,5,8,5,7,7,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,3,3,3,8,5,5,3,4,3,4,3,4,3,4,3,5,4,5,5,8 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,6,4,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,20,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5 +-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-5,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,5,3,3,3,3,2,3,3,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,5,3,3,2,4,3,4,3,6,3,3,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,5,4,7,4,5,4,7,4,5,5,9,5,6,4,5,3,4,4,5,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,25,13,13,9,13,8,9,8,12,7,7,6,9,6,8,7,13,7,8,5,7,5,6,5,8,5,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,13,7,7,5,8,5,5,4,6,3,3,2,4,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,5,4,6,5,7,7,17,9,9,6,9,6,7,6,10,6,6,5,8,5,6,5,10,6,6,4,6,4,5,5,8,5,6,5,8,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,16,9,9,7,9,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,18,10,10,7,10,6,7,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,6,4,6,5,11,6,6,4,7,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,5,3,4,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,22,11,11,8,11,7,8,7,10,6,6,5,7,5,6,6,12,6,7,5,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,5,7,4,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,14,8,8,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,7,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,7,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5 +-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,3,3,0,0,0,1,1,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,3,3,5,3,4,4,13,7,8,6,8,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,3,3,4,3,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,16,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,7,6,10,7,9,9,18,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,7,10,10,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,9,39,20,20,13,19,11,13,11,18,10,10,7,11,7,9,9,21,11,12,9,13,8,9,8,13,7,8,7,11,7,10,10,18,9,9,7,10,6,8,7,11,6,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,20,11,11,8,11,6,7,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,5,5,8,5,6,5,8,5,7,7,14,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,25,13,14,10,15,9,10,9,16,9,9,7,10,6,8,8,13,7,8,6,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,10,6,8,8,14,8,8,7,11,8,11,11,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,9,18,10,10,7,10,6,8,7,12,7,7,6,10,7,10,9,20,11,11,8,13,8,10,8,14,8,8,6,10,7,10,10,18,10,11,8,12,8,11,10,18,11,13,11,18,12,18,17,27,14,14,10,15,9,11,9,16,8,8,6,9,6,8,7,12,7,7,5,8,5,7,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,10,6,7,6,9,6,7,7,13,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,19,10,11,8,12,7,9,7,12,7,7,5,8,5,7,7,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,5,5,8,6,8,8,9,5,5,4,5,3,3,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,4,5,9 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,21,11,11,7,11,6,7,6,10,6,6,4,6,4,5,5,12,6,7,5,7,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,7,7,5,7,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,9,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,4,2,2,2,4,2,2,2,3,3,4,3,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,2,8,4,4,3,5,3,4,3,4,3,4,3,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,2,4,3,3,3,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,23,12,12,8,12,7,8,7,11,6,7,5,7,5,6,6,13,7,8,6,8,5,6,5,7,4,5,4,6,4,6,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,12,6,6,4,6,4,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,3,4,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,4,2,2,2,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,16,9,9,6,9,5,6,6,10,6,6,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,5,4,7,5,6,6,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,10,7,10,10,16,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,5,4,7,5,7,7,11,6,6,5,7,4,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,7 +-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,18,9,9,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,4,2,3,3,4,3,3,2,3,2,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6 +-6,-3,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,1,1,1,1,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,8,8,9,5,5,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,29,15,14,10,14,8,10,9,15,8,8,6,10,6,8,8,17,9,9,7,10,6,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,6,4,5,4,6,5,7,7,13,7,7,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,5,3,4,4,6,4,5,5,11,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,8,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,20,10,10,7,11,7,8,7,13,7,7,5,8,5,7,6,10,6,6,5,7,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,11,6,7,6,10,7,9,8,14,8,9,8,13,9,13,13,21,11,12,8,12,7,9,7,13,7,8,6,8,5,6,6,9,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,5,8,5,7,7,11,6,6,5,8,5,5,5,8,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,5,5,11,6,7,5,8,5,6,6,10,6,7,5,8,6,8,9,15,8,9,6,9,6,7,6,9,5,6,5,8,5,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,9,5,5,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,6,4,4,4,5,4,6,6,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,19,10,10,7,9,6,7,6,10,6,6,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,4,5,5,8,5,5,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,5,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,12,6,6,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,3,2,3,3,3,2,2,2,3,2,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,6,4,4,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,4,2,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,4,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,5,3,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,9,5,6,4,5,3,4,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,27,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,11,6,6,4,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,11,6,7,5,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,9,5,5,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,10,6,6,5,8,6,8,7,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,5,10,6,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,10,6,6,5,7,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,4,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,5,9 +-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,8,6,8,8,8,4,4,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,8,5,7,7,26,14,14,9,13,8,9,8,13,7,8,6,10,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,5,4,6,6,18,10,10,7,10,6,7,6,11,6,7,5,7,5,6,6,9,5,6,4,6,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,3,5,4,4,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,5,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,9,5,5,4,7,5,6,5,9,6,6,5,8,6,8,8,13,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,5,5,4,5,3,4,4,7,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8 +-11,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,1,1,1,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,5,4,6,6,7,4,4,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,3,3,4,3,3,2,3,3,4,4,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,5,4,5,6,16,9,9,6,8,5,6,5,9,6,7,6,9,6,9,8,15,8,8,6,8,5,7,7,12,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,8,15,9,10,8,13,9,14,14,14,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,10,9,17,10,11,9,15,10,14,14,51,26,26,17,25,15,18,15,27,15,16,12,19,12,15,14,25,13,13,9,14,8,10,9,16,9,11,9,14,10,14,13,21,11,10,7,10,6,7,6,10,6,7,6,10,7,9,9,16,9,9,7,11,7,8,8,14,8,9,7,11,8,12,12,20,11,11,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,5,7,7,15,8,9,6,9,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,10,6,8,7,13,7,8,6,10,7,10,10,34,18,18,12,18,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,11,7,10,9,17,9,10,8,13,9,12,12,24,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,12,9,13,13,29,15,15,11,16,10,12,10,18,10,10,8,13,8,10,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,11,7,9,8,15,8,9,7,12,8,10,10,18,10,10,8,12,8,11,10,18,10,12,11,19,13,19,19,36,18,18,12,18,10,12,11,19,10,10,8,12,8,10,10,18,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,11,7,10,10,18,10,10,7,9,6,7,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,10,6,7,5,8,5,7,6,11,7,8,6,10,7,9,9,16,9,9,6,9,6,8,8,14,8,10,8,14,10,15,15,25,13,13,9,13,8,10,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,8,5,5,5,8,5,6,5,7,4,5,5,8,4,4,3,5,4,6,6,10,6,7,6,10,7,9,9,6,3,3,3,4,3,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,8,15 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,5,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,6,5,7,5,7,7,8,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,8,7,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,5,7,7,11,6,6,4,6,4,4,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,2,4,3,3,3,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,6,4,5,4,7,4,5,4,4,3,4,4,8,5,5,4,5,3,4,5,8,5,6,5,8,5,7,7,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,7,14,7,7,5,8,5,6,6,9,5,6,5,7,5,8,8,12,6,6,4,7,4,4,3,6,4,4,3,5,4,5,5,9,5,6,4,7,5,6,5,8,5,5,4,6,5,7,7,11,6,6,4,7,4,4,3,5,3,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,3,3,2,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,9,5,6,5,6,4,6,5,9,5,6,4,5,3,4,4,8,5,6,5,7,5,7,7,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,9,5,5,4,7,5,6,6,10,6,8,6,11,7,10,10,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,5,4,5,4,6,5,10,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,4,3,4,3,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8 +-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,5,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,4,3,3,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,3,4,4,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6 +-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,1,1,1,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,3,3,4,3,4,4,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,2,2,2,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,5,5,4,6,4,4,3,7,4,5,4,5,4,5,5,9,5,5,4,5,4,5,5,7,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,4,9,5,6,4,6,4,6,6,10,6,6,5,8,6,8,8,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,2,2,2,3,3,4,4,9,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,11,7,8,6,10,7,9,9,29,15,16,11,16,10,12,10,17,9,10,7,11,7,9,8,15,8,8,6,9,6,8,7,10,6,7,5,8,6,8,8,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,5,4,6,5,7,7,12,7,7,5,8,5,5,4,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,7,4,4,3,4,3,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,4,6,4,5,4,6,4,6,5,7,4,5,4,7,5,7,7,24,12,12,8,12,7,8,7,14,8,8,6,8,5,6,6,12,7,7,5,8,5,7,7,10,6,7,6,10,7,10,9,16,9,9,6,9,6,7,6,11,6,7,5,7,5,6,5,10,6,6,4,6,4,6,6,10,6,6,5,8,5,7,7,17,9,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,4,5,5,7,4,4,3,5,4,5,5,11,6,6,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,5,8,5,6,6,13,8,9,7,12,8,11,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,4,3,4,3,3,3,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,8,5,7,6,10,6,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,10 +-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,8,5,5,4,5,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,5,4,4,4,8,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,6,5,7,5,7,7,14,8,8,6,7,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,6 +-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,4,4,7,5,6,6,9,5,6,4,6,4,4,3,4,2,2,2,3,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,23,12,12,8,12,7,8,7,13,7,8,6,9,6,8,7,13,7,8,6,7,5,6,5,9,5,6,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,7,4,4,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,6,6,20,11,11,7,11,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,8,5,6,5,7,4,4,4,6,4,6,5,6,4,4,3,3,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,9,6,9,9,19,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,5,7,4,5,4,8,4,4,4,6,4,4,4,8,5,5,3,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,6,4,4,3,6,4,5,5,9,5,6,4,6,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,2,2,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,4,2,2,3,6,4,4,4,5,3,4,4,8 +-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,4,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,6,7,7,12,6,7,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,11,6,7,5,7,4,5,4,7,4,4,4,5,4,5,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,9,6,9,8,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,3,5,3,4,3,5,3,4,4,8 +-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,3,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,2,2,3,3,4,3,4,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,8,4,4,3,3,2,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,4,9,5,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,6,4,4,4,6,4,5,4,6,4,5,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,11,6,6,5,7,4,5,4,7,5,6,5,8,6,8,8,11,6,6,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,14,8,8,5,7,5,6,6,10,6,8,7,11,8,11,11,17,9,9,6,9,5,6,5,7,4,5,4,5,4,5,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,13,9,13,13,39,20,20,14,21,12,14,12,21,12,13,10,15,10,13,12,23,12,12,9,13,8,10,9,15,8,8,6,10,7,9,9,21,11,10,7,10,6,7,6,10,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,6,5,9,6,7,6,10,7,9,9,35,18,18,13,20,11,13,11,20,11,12,9,13,8,11,10,19,10,10,7,10,6,8,8,14,8,9,7,12,9,13,13,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,19,10,10,8,12,7,9,7,12,7,7,5,8,5,7,7,8,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,15,8,9,7,11,7,10,10,18,10,11,9,16,11,16,15,31,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,14,8,9,7,10,6,8,7,12,7,8,7,11,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,5,5,4,6,4,6,6,8,5,5,4,5,4,5,5,10,6,6,5,9,6,8,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,7,8,7,12,7,7,6,9,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,8,5,5,4,7,4,5,4,7,5,7,6,12,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,16,9,9,6,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,5,8,5,5,4,7,4,5,5,8,5,6,5,8,6,8,8,14 +-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,4,4,4,6,4,5,5,20,10,10,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,4,7,4,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,8 +-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,3,4,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,3,2,3,3,4,2,2,2,4,3,3,3,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,11,6,6,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,4,3,4,4,7,5,6,5,7,5,7,7,12,6,6,4,6,4,4,3,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,26,14,14,10,14,8,10,8,13,7,8,6,10,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,14,7,7,5,7,5,6,5,7,4,5,4,6,4,5,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,24,12,12,9,13,8,9,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,5,6,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,5,10,6,6,5,8,5,6,6,11,7,8,6,11,7,10,10,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,4,5,3,4,4,5,3,3,3,4,2,2,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,5,4,5,5,9 +-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,6,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,20,10,10,7,11,6,7,6,12,7,7,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,4,4,7 +-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-4,-6,-5,-9,-4,-5,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,12,7,7,5,7,4,4,4,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,6,4,6,4,6,6,11,6,6,4,6,4,6,5,10,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,38,19,19,13,20,11,13,11,19,10,11,9,14,9,12,11,20,11,11,8,12,7,8,7,13,7,8,7,11,7,9,9,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,35,18,18,12,18,10,12,10,20,11,12,9,13,8,11,10,18,10,10,8,12,7,9,8,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,6,4,5,5,10,6,7,6,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,4,9,5,6,4,6,4,6,6,13,7,8,6,10,7,9,9,14,8,10,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,10,6,8,7,14,8,8,6,8,5,7,6,9,6,7,6,9,6,9,8,14,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,12,7,8,6,9,6,7,6,10,6,6,5,8,6,8,8,16,9,9,6,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,20,10,10,7,10,6,8,7,9,5,6,5,8,5,7,7,10,5,5,4,6,4,5,4,9,5,6,5,8,5,7,7,16,8,8,6,8,5,6,5,8,5,5,5,8,6,8,7,13,7,7,5,7,5,6,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,5,8,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,6,4,4,4,5,3,3,3,5,4,5,6,11 +-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,2,8,5,5,4,5,3,3,3,6,4,4,4,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,6,7,5,7,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,23,12,12,8,12,7,8,7,14,8,8,6,9,6,8,7,13,7,7,6,8,5,6,6,9,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,6,4,7,5,6,6,10,6,7,6,9,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,4,6,5,10,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,4,7,4,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,4,6,5,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-6,-5,-12,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,6,5,7,5,7,7,11,6,6,5,6,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,7,11,6,6,5,6,4,5,5,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,19,10,11,8,13,9,12,11,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,10,9,17,9,10,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,7,5,6,5,8,6,8,8,34,17,17,12,18,10,12,11,20,11,12,9,13,8,11,10,19,10,10,8,11,7,8,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,12,7,8,6,9,6,8,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,14,8,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,10,6,8,7,14,8,9,7,12,8,12,12,19,10,10,7,10,6,8,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,6,6,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,4,6,6,10 +-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,4,8,4,5,4,5,3,4,4,7,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,12,6,6,5,7,4,5,4,8,5,5,5,7,5,7,7,12,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,6,4,7,5,7,6,11,6,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,37,19,19,13,19,11,12,10,18,10,11,8,13,8,11,10,19,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,18,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,17,9,9,7,10,6,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,6,8,8,34,17,17,12,18,10,12,11,19,10,11,9,13,8,11,10,19,10,10,8,11,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,10,6,8,7,11,6,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,8,6,9,6,8,8,14,8,10,8,13,9,14,14,29,15,15,10,15,9,10,9,14,8,8,6,10,6,8,7,13,7,8,5,8,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,5,4,7,5,6,6,10,6,6,4,7,4,6,5,9,5,6,5,7,5,7,7,13,7,8,6,9,6,8,7,13,8,9,7,12,8,12,12,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,11,6,6,4,6,4,5,4,8,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,10 +-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-24,-12,-12,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-18,-9,-11,-9,-18,-12,-18,-18,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,1,1,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,19,10,10,8,12,7,8,7,12,7,7,6,10,6,8,7,13,7,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,10,6,7,6,10,6,6,5,8,6,9,9,17,9,10,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,10,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,24,12,12,9,13,8,9,8,13,7,7,5,8,5,7,7,12,7,7,5,7,5,7,7,12,7,9,8,14,10,14,14,27,14,15,10,15,9,11,10,17,10,11,9,14,9,12,11,21,11,12,9,14,8,10,9,16,9,11,9,16,11,16,16,31,16,16,11,16,9,10,9,15,8,8,6,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,8,6,8,8,15,8,9,7,11,7,10,10,19,11,13,11,18,13,19,19,72,36,36,25,37,21,24,20,34,18,19,15,24,15,20,19,35,18,19,13,20,12,15,13,24,13,15,12,20,13,18,18,34,18,18,13,20,12,15,13,22,12,12,9,15,10,14,13,25,14,15,11,17,10,13,12,22,12,13,11,18,12,17,17,34,18,18,12,18,10,12,10,17,9,9,7,10,6,8,8,14,8,8,6,8,5,7,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,16,9,9,7,11,7,8,8,14,8,10,9,16,11,16,16,68,34,34,23,35,20,24,20,34,18,19,15,24,15,21,20,39,20,21,15,22,13,17,15,28,16,18,14,23,15,21,20,39,20,20,13,19,11,13,11,18,10,12,9,15,9,12,12,22,12,12,9,15,9,11,10,19,11,12,10,16,11,15,15,30,16,16,11,15,9,10,8,14,8,8,7,11,7,10,10,18,10,10,8,13,8,11,11,21,12,13,11,19,13,20,20,38,20,20,14,21,12,15,13,22,12,13,10,16,10,14,13,25,13,14,10,16,10,13,13,24,14,17,14,24,17,26,26,56,29,29,20,29,17,20,17,31,17,18,13,21,13,17,16,29,15,15,11,17,10,12,11,19,10,11,9,14,9,12,12,23,12,12,8,12,7,9,9,16,9,9,7,11,7,10,9,16,9,10,7,11,7,10,9,16,9,11,9,15,11,16,16,30,16,16,11,17,11,14,12,22,12,13,10,16,11,15,14,27,14,15,11,16,10,13,12,22,13,15,12,20,13,18,18,35,18,18,13,19,11,14,12,22,12,13,11,18,12,17,17,32,17,17,12,18,11,14,13,23,13,16,14,24,16,23,23,38,19,19,13,20,12,15,13,23,12,13,10,15,10,14,13,24,13,14,10,15,9,10,9,16,9,11,9,16,11,15,14,27,14,14,10,16,10,13,11,20,11,12,9,15,10,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,28,15,15,10,15,9,10,8,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,11,7,8,6,10,7,9,9,18,9,9,6,8,5,6,5,7,4,4,3,4,3,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,7,10,10,18 +-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,19,11,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,20,10,11,8,12,7,9,8,15,9,10,8,12,8,11,11,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,7,7,12,7,9,8,13,9,14,14,28,15,15,10,15,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,7,4,5,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,16,9,9,6,9,6,8,7,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,9,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,3,3,3,4,4,6,4,4,4,6,4,6,5,9 +-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-6,-9,-9,-6,-3,-3,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,4,6,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,6,4,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,2,2,2,4,3,4,3,13,7,8,6,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,8,8,14,8,8,6,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,5,7,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,36,19,19,13,18,10,12,10,18,10,10,8,13,8,11,10,18,10,10,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,10,6,8,7,12,7,7,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,35,18,18,12,18,10,12,10,17,9,10,8,12,8,11,11,19,10,11,8,12,8,10,9,15,9,10,8,12,8,12,11,20,10,10,7,10,6,6,5,10,6,6,5,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,11,7,8,7,11,6,7,6,8,6,8,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,14,14,10,16,9,10,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,12,6,6,4,7,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,16,9,9,6,9,6,8,7,11,6,6,5,8,6,8,7,14,8,8,6,9,6,7,6,12,7,8,7,10,7,10,10,18,10,10,7,10,6,7,6,12,7,7,6,10,7,10,9,17,9,9,6,9,6,8,7,12,7,8,7,12,8,12,12,20,11,11,7,11,7,8,7,12,7,7,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,3,6,4,6,5,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,3,3,4,3,5,3,4,4,6,4,6,5,9 +-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,9,5,6,4,5,4,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,3,3,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,24,13,13,9,12,7,9,8,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,6,4,7,4,6,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,4,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,24,12,12,8,12,7,8,7,12,7,7,6,8,6,7,7,13,7,8,6,8,6,7,6,10,6,7,6,8,6,8,8,13,7,7,5,7,4,4,4,7,4,5,4,6,4,5,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,5,9,5,6,6,9,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,12,6,7,5,7,4,6,5,8,5,6,5,8,6,9,9,14,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,4,4,4,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,5,5,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,4,2,3,3,4,3,4,4,6 +-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-3,-6,-6,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-4,-8,-5,-8,-9,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-3,-1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,2,2,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,6,3,3,2,2,2,3,3,4,3,3,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,14,7,7,5,8,5,6,5,8,5,5,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,8,8,12,6,6,4,6,4,4,4,9,5,6,5,8,5,7,6,12,7,7,5,6,4,5,5,8,5,5,4,7,5,8,8,17,9,8,6,8,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,10,6,7,6,10,7,10,10,35,18,18,12,18,11,13,11,17,9,10,8,12,8,11,10,20,10,10,7,11,7,8,7,14,8,8,7,11,7,9,9,19,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,13,7,8,6,10,6,8,7,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,9,5,6,5,9,6,9,9,35,18,18,12,18,10,12,10,18,10,11,8,12,8,10,10,19,10,11,8,12,8,10,9,15,9,10,8,12,8,11,11,19,10,10,7,10,6,6,5,11,6,7,6,9,6,7,6,12,7,7,5,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,6,10,7,10,11,19,10,10,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,13,8,10,8,14,10,15,15,29,15,16,11,16,9,11,9,15,8,8,6,10,7,9,9,15,8,8,6,8,5,6,6,9,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,8,5,5,4,6,4,6,5,9,6,7,6,9,6,8,8,17,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,14,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,17,9,9,7,10,6,7,7,11,6,7,6,9,6,9,9,17,9,9,7,10,6,8,7,12,7,8,7,12,8,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,5,4,8,5,6,5,8,6,8,8,14,7,7,5,7,5,6,6,10,6,6,5,8,6,8,7,12,7,7,5,6,4,5,5,9,5,6,5,8,5,7,7,16,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,6,4,5,5,8 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,20,10,10,7,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,11,6,7,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,8,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,8,4,5,4,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,10,6,6,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,4,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,4,2,2,2,4,3,3,3,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,10,6,6,4,6,4,4,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,4,3,4,4,7,4,4,3,5,4,5,5,12,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,24,12,12,8,13,7,8,7,12,7,8,6,9,6,8,7,15,8,7,5,8,5,6,5,10,6,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,23,12,12,8,13,8,9,7,13,7,8,6,8,6,8,7,13,7,8,6,9,6,7,6,11,6,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,11,6,6,5,6,4,6,5,10,6,8,7,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,4,6,4,4,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,7,7,12,6,6,5,7,5,6,5,9,5,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,7,4,4,4,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,12,7,7,5,7,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,3,8,4,4,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,6 +-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-5,-5,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,3,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,20,10,10,7,11,6,7,6,10,6,7,5,8,5,7,6,13,7,6,4,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,4,8,5,5,4,7,5,7,7,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,7,6,11,6,7,5,8,5,6,5,9,5,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,7,4,4,3,4,3,3,3,6,4,4,3,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-6,-9,-9,-7,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,8,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,3,11,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,8,4,4,3,5,4,5,5,8,5,5,4,5,4,6,6,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,15,8,8,6,9,5,6,5,9,5,6,5,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,5,9,6,8,8,12,6,6,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,7,5,6,6,10,6,6,5,9,6,7,7,18,9,9,7,10,6,7,6,10,6,6,4,6,4,6,5,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,10,6,7,6,10,7,10,9,34,18,18,13,19,11,13,11,18,10,11,8,12,8,11,11,22,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,18,9,9,6,9,6,7,6,10,6,6,5,7,5,7,7,16,9,10,7,11,7,8,7,13,8,9,8,13,9,12,12,17,9,10,7,10,6,6,5,8,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,5,3,3,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,10,6,7,6,11,7,10,10,34,18,18,13,19,11,12,10,18,10,11,9,14,9,12,11,20,11,11,8,12,7,9,9,16,9,10,8,13,8,11,11,21,11,11,8,12,7,9,7,12,7,7,5,8,5,7,6,9,5,6,4,6,4,6,6,10,6,7,6,10,7,9,9,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,5,11,6,6,5,7,5,6,5,9,5,6,5,9,7,10,10,19,10,10,8,12,7,9,7,12,7,7,6,10,7,10,9,16,9,10,7,11,7,9,8,14,9,11,9,16,11,16,16,29,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,13,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,13,7,8,6,8,5,5,5,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,6,5,9,6,9,9,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,11,7,9,9,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,7,12,7,8,7,13,9,13,13,20,11,11,7,10,6,7,6,10,6,6,5,9,6,7,7,13,7,7,5,6,4,5,5,8,5,6,5,7,5,6,6,15,8,8,6,9,5,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,13,7,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,3,3,4,3,4,5,9 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,7,4,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,7,4,4,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,4,3,3,3,6,4,4,4,6,4,5,5,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,10,10,7,11,6,7,6,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,5 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,4,3,5,3,4,3,8,5,5,4,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,3,3,4,3,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,4,3,3,3,6,4,4,4,6,4,5,5,19,10,11,8,10,6,8,7,11,6,6,5,7,5,6,6,12,7,8,6,8,5,6,5,9,5,6,5,8,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,11,6,6,4,7,4,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,4,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,19,10,10,8,12,7,7,6,11,6,7,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,3,2,3,3,4,4,6,4,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,7,4,5,5,9,5,6,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,12,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,3,6 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,3,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,14,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,5,3,4,4,6,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,5,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,6,4,5,4,6,4,5,4,7,4,5,4,5,3,4,4,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,6,4,5,4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,23,12,12,8,12,7,9,8,13,7,7,5,8,6,8,8,15,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,4,4,3,6,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,5,10,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,23,12,13,9,14,8,9,7,12,7,7,5,8,6,8,7,13,7,8,6,9,5,6,6,12,7,7,6,10,7,9,9,14,8,8,6,8,5,5,5,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,6,6,12,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,10,6,7,5,8,5,7,7,11,6,7,5,8,5,7,7,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,11,6,7,5,7,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,7,14,8,8,5,7,5,6,6,8,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,6,9,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,8,5,7,6,10,7,11,11,14,8,8,5,7,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,14,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,8,4,4,3,4,3,3,3,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,6 +0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,4,7,5,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,15,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,5,4,5,5,8,4,5,4,5,4,5,5,8,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,4,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,3,3,4,3,4,4,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,4,3,4,4,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3 +0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,6,3,3,3,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,4,3,3,3,3,3,4,4,6,4,4,3,5,3,3,3,4,3,4,3,5,4,6,6,8,4,4,3,3,2,3,3,3,2,2,2,4,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,6,5,19,10,10,7,11,7,8,7,12,7,7,5,7,5,7,7,13,7,8,6,8,5,7,6,11,7,8,6,9,6,8,8,15,8,8,6,7,4,5,4,8,5,5,4,5,4,6,6,10,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,14,7,7,5,7,4,4,3,6,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,6,4,6,4,5,4,7,5,6,5,6,4,6,6,20,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,6,4,4,3,5,4,6,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,10,10,18,10,10,7,9,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,5,6,5,7,4,4,3,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,9,6,9,9,11,6,6,4,6,4,5,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,4,3,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,5,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,8,4,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3 +0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,4,3,3,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,7,5,7,7,12,7,7,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,7,4,5,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,13,7,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,19,10,10,7,11,6,7,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,5,4,4,3,5,4,5,6,10,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,9,9,6,9,5,6,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,8,8,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3 +-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,6,4,6,6,10,6,6,4,6,4,4,3,5,3,4,4,6,4,6,5,9,5,5,4,5,3,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,5,5,4,5,4,5,5,16,9,9,6,9,6,7,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,2,2,2,1,1,1,1,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,3,3,4,3,4,5,14,8,8,5,7,5,6,5,8,5,5,4,5,4,6,6,10,6,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,22,12,12,9,13,8,9,8,13,7,7,5,8,5,5,5,8,5,6,5,7,5,6,6,10,6,7,6,9,6,7,7,10,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,7,6,11,6,7,6,10,7,9,9,35,18,19,13,19,11,14,12,20,11,12,9,15,10,13,12,22,12,13,9,14,8,10,9,17,10,11,9,16,11,15,14,27,14,13,9,13,8,10,8,14,8,9,7,11,7,10,10,18,10,10,8,12,7,9,8,14,8,10,8,13,9,14,14,24,13,13,9,12,7,8,7,11,6,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,4,4,3,3,2,3,3,5,4,5,4,7,5,7,7,14,8,8,6,10,6,7,7,12,7,9,7,12,8,11,11,36,19,19,13,19,11,14,12,21,11,12,8,12,8,11,10,18,10,10,7,11,7,9,8,13,7,8,7,12,8,12,12,19,10,9,6,8,5,5,5,8,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,11,11,18,9,9,7,10,6,8,8,14,8,8,7,11,7,10,10,20,11,11,8,13,8,11,10,18,10,12,10,18,12,17,17,34,17,17,11,16,9,11,10,17,9,9,7,11,6,7,6,11,6,6,4,6,4,4,4,7,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,5,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,7,6,10,7,10,10,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,19,10,11,8,12,7,9,7,12,7,8,6,9,6,9,9,16,9,9,7,10,6,8,8,15,9,11,9,15,11,16,16,17,9,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,7,7,5,8,5,7,6,10,6,6,5,7,5,7,6,13,7,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,22,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,5,4,7,4,5,4,13,7,6,4,5,3,4,3,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,4 +0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,2,3,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,5,7,4,5,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,14,8,7,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,4,7,4,4,4,7,5,6,6,10,6,5,4,5,3,3,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,7,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,4,4,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,13,7,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,4,5,4,5,4,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,4,6,6,18,10,10,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,5,7,8,13,7,8,5,7,4,5,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,19,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,7,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,9,7,10,10,18,10,10,7,9,6,7,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,5,8,5,6,5,8,6,8,8,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,2,2,3,3,5,3,4,3,4,3,4,5,13,7,7,5,7,4,4,4,6,4,4,3,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2 +1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,4,2,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,5,5,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,6,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,3,3,5,4,4,4,5,4,5,5,13,7,7,5,8,5,6,5,8,4,5,4,5,4,4,4,7,4,5,4,5,3,4,4,5,3,3,3,5,4,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,4,10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,6,3,3,2,2,2,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2 +1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,3,3,3,4,3,3,3,4,2,2,2,2,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,1,2,1,1,1,2,2,2,3,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,4,6,4,5,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,14,7,7,5,6,4,5,5,6,3,3,3,4,3,4,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,7,4,5,4,6,4,6,6,20,11,11,8,11,7,9,8,13,7,8,6,8,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,9,5,5,4,7,4,5,5,9,5,6,5,8,6,9,9,14,7,7,5,8,5,6,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,3,2,2,2,2,2,3,3,3,2,3,3,5,4,5,5,10,6,6,5,7,4,5,4,8,5,5,5,8,5,7,7,20,10,10,7,11,7,8,7,11,6,6,5,8,5,6,5,11,6,6,5,8,5,6,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,4,4,3,5,3,4,3,4,3,3,3,6,4,5,5,11,6,6,4,6,4,5,5,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,11,6,6,5,7,5,6,6,11,7,8,6,10,7,10,10,19,10,10,7,10,6,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,5,4,6,4,6,6,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,5,7,6,9,5,6,5,8,6,9,9,12,7,7,5,8,5,5,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,5,4,8,5,5,4,5,3,4,4,8,4,4,3,4,3,3,2,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,5,3,4,3,4,3,4,5,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,8,4,4,3,3,2,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,12,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,5,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2 +1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,6,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,4,3,4,3,4,3,4,3,4,3,4,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,16,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,4,6,4,6,6,12,6,6,4,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,9,5,5,4,7,4,4,4,8,4,4,4,6,4,5,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,4,3,4,4,9,5,5,4,5,4,5,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,7,5,6,5,7,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,3,2,2,3,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,8,5,6,5,9,5,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,3,3,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,5,7,4,3,2,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,4,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,3,2,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,6,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,2,3,3,5,3,3,2,3,3,4,4,17,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,5,8,6,8,8,25,13,13,9,14,8,10,9,16,9,10,7,11,7,10,10,17,9,9,7,11,7,9,8,14,8,9,7,11,7,10,10,20,10,10,7,10,6,7,7,12,7,7,5,7,5,6,6,11,6,6,5,8,5,7,7,12,7,8,7,12,8,11,11,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,4,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,5,6,3,3,2,3,2,3,3,6,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,11,11,23,12,12,9,14,8,9,8,14,8,8,6,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,5,8,6,8,8,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,6,9,5,5,3,4,3,4,4,6,4,4,3,5,4,6,6,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,4,8,5,5,4,6,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,9,9,13,7,8,6,10,6,8,7,13,8,9,8,13,9,13,12,24,13,13,9,12,7,8,7,11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,9,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,9,6,7,7,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,6,9,6,7,7,12,7,8,7,11,7,10,10,16,8,8,6,8,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,5,8,6,8,7,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,6,6,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,8,4,4,3,5,4,5,5,10,5,5,4,5,3,3,2,2,1,1,1,0,0,0,1,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4 +1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,9,5,5,4,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,8,4,5,4,6,4,5,4,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,2,3,3,4,4,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,6,3,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,3,5,3,4,3,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,4,3,3,2,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,5,3,4,3,4,3,4,3,6,4,4,3,3,3,4,3,5,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,16,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,5,6,5,10,6,6,5,8,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,3,4,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,9,6,7,6,9,5,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,7,4,5,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,5,3,3,3,4,3,4,4,8,4,4,4,5,3,4,4,8,5,6,5,8,6,8,7,11,6,6,4,5,4,5,4,7,4,4,4,6,4,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,3,4,3,6,4,4,3,4,2,2,2,2,2,2,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3 +1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,8,4,5,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2 +1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,2,2,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,12,7,8,7,13,7,7,6,9,6,9,9,14,8,8,6,10,6,7,7,13,7,8,6,10,7,9,9,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,6,10,5,5,4,6,5,7,7,11,6,7,6,11,7,10,10,19,10,10,7,10,6,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,6,6,9,6,7,6,10,7,10,9,21,11,11,8,12,7,8,7,13,7,7,5,7,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,14,7,7,5,8,5,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,5,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,4,4,7,4,4,4,6,4,6,6,11,6,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,7,6,9,6,7,6,12,7,9,7,12,8,12,11,18,9,9,6,8,5,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,5,5,12,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,7,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,11,6,7,6,10,7,9,9,14,7,7,5,8,5,7,6,9,5,6,5,8,5,6,5,11,6,6,5,8,5,6,5,8,5,6,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,3,4,4,6,4,4,4,14,7,7,5,6,4,4,4,7,4,4,4,6,4,5,5,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2 +1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,4,3,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,7,4,5,5,9,5,6,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,5,4,5,4,6,4,4,4,5,4,4,4,8,4,4,4,5,4,4,4,6,4,4,4,6,4,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,9,5,5,4,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-3,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,6,4,6,4,5,4,6,4,4,3,6,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,8,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,6,4,6,6,11,6,7,6,10,7,10,9,17,9,9,7,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,4,5,5,9,5,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,10,7,10,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,6,10,6,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,6,11,7,8,7,11,7,10,10,17,9,8,6,8,5,6,5,10,6,6,4,5,4,5,4,6,3,3,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,12,7,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,3,4,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,13,7,7,5,6,4,5,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,4,7,5,7,7,21,11,11,8,11,7,8,7,12,7,7,5,9,6,8,8,14,8,8,6,9,6,7,6,12,7,8,6,10,7,9,9,17,9,9,6,9,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,7,4,6,6,10,6,7,6,10,7,10,9,16,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,6,4,6,5,9,5,6,6,9,6,9,9,20,10,10,7,11,7,8,7,11,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,5,6,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,13,7,6,4,6,4,5,5,8,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,6,4,5,5,9,5,6,5,7,5,7,7,12,7,7,6,8,5,7,6,10,6,7,6,11,7,10,10,16,8,8,6,8,5,6,5,9,5,5,4,5,4,5,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,7,5,7,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,14,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,9,5,6,5,8,5,6,6,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,3,3,5,3,4,4,12,6,6,5,6,4,5,5,8,4,4,4,6,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,3,4,4,8,5,6,5,9,6,8,8,10,5,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,6,10,7,10,10,18,10,10,7,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,4,6,4,6,6,26,13,13,9,14,8,10,8,13,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,6,4,6,5,9,5,6,4,6,4,5,5,8,5,6,5,8,5,7,7,12,7,9,8,14,9,13,13,41,21,20,14,20,12,15,13,22,12,14,11,18,12,16,15,29,15,16,11,16,9,11,10,18,10,12,10,18,12,17,17,32,17,17,12,19,11,14,12,21,11,12,9,14,9,12,12,23,12,13,10,16,10,13,12,21,12,13,10,17,12,17,17,31,16,16,10,14,8,10,8,13,8,9,7,11,7,9,8,15,8,8,6,9,5,6,5,9,5,6,5,8,6,8,9,17,9,9,6,9,6,8,7,12,7,8,6,9,6,8,7,13,7,8,6,10,7,9,8,14,8,10,9,16,11,17,17,39,20,19,13,19,11,14,12,20,11,12,9,15,9,12,11,20,11,12,9,13,8,11,10,18,10,11,9,14,10,14,14,26,14,14,10,15,9,10,8,14,8,8,6,9,6,7,6,11,6,7,5,7,5,6,5,8,5,5,4,7,5,6,6,25,13,12,8,12,7,8,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,11,7,10,10,20,11,11,8,11,7,9,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,12,11,19,11,14,12,20,13,19,19,31,16,16,11,16,9,10,8,13,7,7,6,9,6,7,6,11,6,6,5,7,4,5,5,9,5,6,5,7,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,21,11,11,8,11,7,8,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,10,8,12,7,9,9,16,9,11,10,18,12,18,18,26,14,14,10,14,8,10,9,16,9,9,6,9,6,8,8,14,8,8,6,9,6,7,7,12,7,9,7,12,8,11,11,21,11,12,8,12,7,9,7,12,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,4,7,5,7,7,23,12,12,8,12,7,8,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,4,5,3,4,4,6,3,3,2,2,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,7,4,5,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,9,7,10,6,8,7,11,6,7,5,7,5,6,6,12,7,7,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,4,7,4,4,4,6,4,5,4,8,5,6,5,9,6,9,9,20,10,10,7,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,7,4,4,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,5,4,5,6,10,6,6,5,7,4,5,5,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,5,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,0,0,0,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,2,1,1,1,1,2,2,2,2,2,2,2,2,3,4,3,3,3,5,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,14,7,7,5,8,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,5,3,3,3,5,3,4,4,7,5,6,5,8,5,7,7,21,11,11,8,11,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,9,5,6,6,10,6,6,5,9,6,9,9,17,9,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,8,6,9,6,7,6,11,6,7,6,9,6,9,9,16,9,9,6,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,4,6,4,4,4,8,5,6,5,9,7,10,10,21,11,11,8,10,6,8,7,10,6,6,5,8,5,6,6,11,6,6,4,7,5,6,6,9,5,6,5,8,6,8,7,13,7,8,6,8,5,5,4,8,4,4,3,6,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,13,7,6,4,7,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,7,6,10,6,8,7,11,7,10,10,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,12,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,9,7,10,10,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,2,2,2,2,2,2,2,2,4,3,4,4,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,1,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,7,5,7,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,5,4,8,4,5,4,7,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,5,5,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,4,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,4,3,3,3,4,3,3,2,4,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,4,3,4,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,5,6,5,8,6,8,8,23,12,12,8,12,7,9,7,13,7,8,6,10,6,8,8,16,9,9,6,9,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,5,4,6,4,6,6,8,5,5,3,4,3,4,4,6,4,5,4,6,4,6,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,6,10,7,10,10,21,11,12,8,12,7,9,7,11,6,7,5,8,6,8,7,11,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,15,8,7,5,6,4,5,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,4,5,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,8,7,12,8,12,12,16,8,8,6,8,5,5,4,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,3,3,2,3,3,4,3,4,4,13,7,8,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,3,7,4,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,6,7,6,10,7,10,10,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,13,7,6,4,6,4,5,5,7,4,4,3,4,3,4,3,6,3,3,2,2,2,3,3,2,2,2,2,4,3,4,4,13,7,7,5,6,4,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,5,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,6,7,5,6,5,8,4,5,4,6,4,5,5,9,5,6,4,5,4,4,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0 +1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-3,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,11,6,6,4,5,3,4,3,6,3,3,3,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,4,6,4,6,6,18,10,10,7,9,6,7,6,9,5,6,5,8,5,6,6,11,6,7,5,6,4,5,5,8,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,5,7,5,7,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,11,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,8,5,6,5,9,6,9,9,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,4,3,4,3,4,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0 +1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,9,5,5,3,4,3,4,3,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,7,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,2,3,2,3,2,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,9,5,4,3,4,3,4,4,6,3,3,2,3,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,7,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,2,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,15,8,8,6,9,5,6,5,9,5,5,4,5,3,4,3,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,6,5,7,4,5,4,5,4,6,6,10,6,6,5,8,6,9,9,30,15,15,10,14,8,10,9,15,8,9,7,10,7,9,8,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,12,7,7,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,7,12,8,11,11,17,9,9,6,8,5,7,6,10,6,6,5,7,5,6,6,10,6,6,5,7,4,4,4,6,4,4,4,6,4,6,6,14,8,8,5,7,4,5,5,8,4,4,3,5,4,5,5,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,12,24,13,13,9,14,8,10,9,15,8,8,6,10,6,8,8,11,6,7,5,7,4,5,4,7,4,5,4,7,5,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,5,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,9,5,6,5,8,5,7,6,10,6,7,6,9,6,8,8,14,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,14,14,18,9,9,7,10,6,7,6,10,6,6,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,2,2,1,1,1,2,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,6,6,13,7,8,6,10,6,7,7,12,7,9,7,12,8,11,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,5,4,6,5,7,7,15,8,7,5,7,5,6,5,8,5,5,4,5,3,4,3,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,12,7,7,5,6,4,4,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3 +0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,5,5,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,6,4,4,3,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,18,10,10,7,9,5,6,5,9,5,6,4,7,5,6,5,10,6,6,5,7,4,5,4,8,5,6,5,8,6,8,7,13,7,6,5,7,5,6,5,7,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,8,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,9,5,4,3,5,3,4,4,7,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,4,3,4,4,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,5,5,8,6,8,9,11,6,6,4,7,4,4,4,7,4,4,3,4,3,3,3,6,3,3,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,9,5,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,4,3,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,14,8,8,5,7,4,5,4,7,4,5,4,5,4,5,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,10,6,5,4,6,4,5,4,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,6,6,5,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2 +1,1,1,1,0,0,0,0,-2,0,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-5,-3,-4,-4,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,8,5,5,4,6,4,4,3,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,7,5,8,8,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,8,5,6,5,7,5,7,6,11,6,6,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,5,7,7,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,5,6,6,12,7,8,7,12,8,11,11,20,10,10,7,10,6,7,6,10,6,7,5,8,5,7,7,10,5,5,4,6,4,4,4,6,4,5,4,6,4,6,6,9,5,4,3,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,7,4,5,4,7,5,8,8,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,7,6,11,6,7,6,11,8,12,12,15,8,8,6,8,5,5,4,8,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,9,5,6,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,7,4,5,5,8,5,6,5,9,6,8,8,14,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,4,6,4,5,4,8,5,5,3,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,3,4,3,4,4,11,6,6,4,5,3,4,3,3,2,3,3,4,3,3,3,4,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6 +1,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,5,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,5,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,7,4,5,4,5,3,4,3,4,3,5,4,7,4,4,4,5,4,5,4,6,4,4,4,7,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,4,4,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,8,8,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-3,-1,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,6,4,4,3,5,3,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,6,5,7,7,22,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,8,5,6,5,10,6,7,5,8,6,8,8,13,7,8,6,9,5,6,5,7,4,5,4,5,4,6,5,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,10,14,8,8,6,9,5,6,5,9,5,6,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,12,7,8,7,11,7,10,10,19,10,10,7,10,6,6,6,10,6,6,5,8,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,8,4,4,4,6,4,6,6,10,6,6,4,7,5,6,6,10,6,6,6,10,7,11,11,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,3,4,3,4,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,4,6,4,4,4,9,5,6,4,6,4,4,4,7,5,6,5,8,5,7,7,12,6,6,5,8,5,5,5,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,4,3,4,3,3,2,3,3,9,5,6,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,5,3,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,10,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,5,7,7,21,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,6,6,5,8,6,8,8,12,7,7,5,8,5,5,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,9,5,6,5,9,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,7,10,10,18,9,9,6,9,6,6,6,10,6,6,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,5,3,3,3,5,3,4,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,4,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,6,6,10,6,6,6,10,7,10,10,14,7,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,4,5,4,4,4,8,5,5,4,6,4,4,4,7,4,5,5,8,5,7,7,12,6,7,5,7,4,5,5,8,4,5,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-4,-8,-5,-8,-9,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-7,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,10,5,5,3,4,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,2,1,1,1,1,1,1,2,3,2,3,2,6,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,6,4,4,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,7,12,9,13,13,40,21,21,14,21,12,15,13,23,12,13,10,15,9,12,11,21,11,12,9,13,8,9,8,15,9,11,9,15,10,15,15,23,12,12,8,12,7,9,8,14,8,9,7,11,7,9,9,16,9,9,7,11,7,10,10,18,10,12,11,19,13,19,18,27,14,14,10,15,9,11,10,17,9,10,7,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,8,7,13,8,9,7,12,8,11,11,20,11,11,8,12,8,10,9,17,10,12,11,19,13,19,19,34,17,17,11,16,9,11,10,17,9,9,7,11,7,10,10,18,10,10,7,11,7,8,7,13,7,8,6,8,5,7,7,11,6,6,4,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,8,5,6,6,10,7,10,9,17,9,10,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,12,8,12,12,21,11,11,8,11,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,13,8,11,11,20,11,13,11,20,14,20,19,26,13,13,9,13,7,8,6,10,6,6,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,5,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,6,5,9,6,7,6,10,7,10,10,22,11,11,8,11,7,8,7,13,7,8,6,8,5,7,7,12,7,7,5,6,4,5,4,6,4,5,4,6,4,6,6,15,8,9,6,9,6,8,7,13,7,8,6,9,6,9,8,15,8,9,7,10,7,9,8,14,8,10,8,13,9,13,13,23,12,12,9,14,8,9,8,14,8,8,7,11,7,10,9,16,9,9,6,9,6,7,7,12,7,7,6,10,7,9,9,20,10,10,7,9,5,6,5,9,5,4,3,4,3,4,4,6,4,4,3,3,3,4,4,6,4,4,3,5,4,6,6,16,8,8,5,7,4,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-6,-13 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,9,5,6,4,5,3,4,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,21,11,11,8,11,7,8,7,13,7,7,6,8,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,8,6,8,8,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,9,5,6,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,5,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,18,9,9,6,9,5,6,6,9,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,6,11,6,7,6,11,8,11,10,14,7,7,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,11,6,6,4,5,3,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,3,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,4,2,2,2,1,1,2,2,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,9,5,6,4,6,4,4,3,5,3,2,2,4,2,2,2,5,3,2,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,22,12,12,8,12,7,8,7,14,8,8,6,8,6,8,7,12,7,7,5,7,5,6,5,9,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,7,5,6,6,10,6,8,6,10,7,10,10,16,8,8,6,9,5,6,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,7,5,6,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,8,7,11,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,5,7,4,4,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,6,4,5,5,8,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,3,4,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,5,4,5,5,8,5,6,5,7,5,8,8,13,7,8,6,7,4,5,4,8,5,5,4,7,5,6,5,9,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,11,6,6,4,6,4,4,3,5,3,2,2,3,2,3,3,3,2,3,2,2,2,2,2,4,3,3,2,3,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-7 +0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,16,9,9,6,9,5,6,6,10,6,6,5,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,4,8,5,6,5,8,6,8,8,12,6,6,4,7,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,2,2,3,3,3,2,1,1,1,1,1,2,4,3,3,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,25,13,13,9,14,8,10,9,16,9,9,7,10,7,9,8,14,8,8,6,9,6,7,6,12,7,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,11,6,7,5,7,5,6,6,12,7,9,7,12,8,12,12,19,10,10,7,10,6,8,7,11,6,6,5,7,5,7,7,11,6,7,5,8,5,6,5,7,4,5,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,6,9,6,8,7,10,6,8,7,12,8,11,11,24,12,12,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,9,5,5,4,7,5,6,6,9,5,5,3,4,3,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,5,3,4,4,6,4,6,5,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,4,6,4,6,6,12,7,8,6,10,7,9,8,15,9,10,8,14,9,13,13,16,8,8,6,8,5,5,4,8,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,7,13,7,8,6,8,5,6,5,6,4,4,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,4,4,8,5,5,4,7,5,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +0,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,15,8,8,6,9,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,8,6,8,8,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,15,8,8,5,7,4,5,5,7,4,4,4,5,4,5,5,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,9,6,9,8,10,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,3,3,4,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,3,5,3,3,3,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,3,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,5,4,7,5,6,6,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,11,6,7,5,7,5,6,6,9,5,6,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,6,4,7,5,6,6,9,5,6,5,6,4,6,5,10,6,6,5,10,7,10,10,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,7,5,6,6,10,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,20,10,10,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,6,4,6,4,4,3,7,4,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,4,5,3,4,4,7,4,5,4,5,4,5,5,8,5,6,5,7,5,7,7,12,6,6,4,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,5,8,5,6,6,12,7,8,7,12,8,12,11,12,6,6,4,6,4,4,3,6,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,6,5,8,8,12,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,6,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,4,3,3,2,3,2,2,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,6,5,9,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,5,4,7,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,18,9,9,6,9,6,6,6,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,5,5,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,6,11,7,8,6,11,8,11,10,11,6,6,4,5,4,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-3,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-6,-4,-8,-3,-3,-2,-4,-2,-2,-2,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,1,1,1,2,2,2,2,4,3,4,4,3,2,2,1,1,1,2,2,3,2,3,2,3,2,3,3,6,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,5,6,11,6,6,4,6,4,5,4,7,4,3,2,3,2,3,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,9,5,5,4,7,4,5,4,7,4,4,3,5,4,5,5,12,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,36,19,19,13,20,12,14,12,21,11,11,8,13,8,10,9,20,11,11,8,13,8,10,9,16,9,11,9,14,9,13,13,24,12,12,9,13,8,10,8,14,8,8,6,9,6,9,9,14,8,8,6,10,7,10,9,17,10,12,10,18,12,18,18,29,15,16,11,16,9,11,9,15,9,10,8,12,8,10,9,18,9,9,6,9,6,7,7,12,7,8,7,11,8,11,10,17,9,9,7,11,7,8,7,13,7,8,7,11,8,11,11,22,12,12,8,12,7,9,9,16,9,10,9,15,10,15,16,33,17,17,12,18,10,12,10,17,10,11,8,13,8,11,10,16,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,7,15,8,8,6,8,5,6,5,8,5,5,5,8,6,8,8,12,7,7,5,8,5,7,7,14,8,9,7,12,8,12,12,20,11,11,8,12,7,8,7,11,6,6,5,8,6,8,8,18,10,10,8,12,8,11,11,20,11,13,11,19,13,19,19,21,11,11,8,11,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,4,7,5,7,8,16,8,8,6,9,6,7,6,10,5,5,4,5,3,4,4,8,5,5,4,7,5,6,5,8,5,6,5,9,6,9,8,18,9,9,6,8,5,5,4,7,4,5,4,5,4,5,5,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,9,8,12,7,8,6,9,6,7,7,12,7,9,8,13,9,13,13,20,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,8,6,9,6,7,6,11,7,8,6,10,6,8,8,16,9,9,6,9,5,6,5,8,5,6,5,7,4,5,5,4,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,9,5,4,3,4,3,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,20,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,10,7,10,10,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,13,7,7,5,7,5,6,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,7,7,11,7,8,7,11,8,11,11,12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,6,4,5,5,11,6,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,5,3,4,4,6,4,5,5,5,3,4,3,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,8,8,24,12,12,9,13,8,10,8,13,7,7,5,8,5,7,6,13,7,8,6,8,5,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,19,10,10,7,11,7,8,6,10,6,6,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,5,6,5,10,6,6,5,8,6,8,7,15,8,8,6,9,6,7,6,12,7,8,6,10,7,10,10,22,12,12,8,12,7,8,7,11,6,6,5,8,5,7,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,5,9,6,9,8,14,8,8,6,9,5,6,5,8,5,6,5,6,4,6,6,12,7,7,5,9,6,8,8,13,8,10,8,14,10,14,14,14,7,7,5,6,4,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,13,7,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,5,8,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,3,2,2,2,3,2,2,1,2,2,2,2,1,1,2,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,4,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,7,7,20,10,10,7,11,7,8,7,11,6,6,5,7,4,6,5,11,6,6,5,7,4,6,5,8,5,6,5,8,6,8,7,13,7,7,5,7,4,5,4,8,4,5,4,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,9,9,16,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,11,6,6,5,6,4,5,5,8,5,5,4,7,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,4,8,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,12,8,12,11,11,6,6,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,2,2,2,2,3,3,4,4,7,4,4,3,4,3,5,5,8,5,5,5,8,5,6,6,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,5,3,3,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,3,2,3,3,4,4,6,6,10,6,6,4,6,4,4,3,7,4,4,3,4,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,4,7,4,5,4,5,3,4,3,4,3,3,3,6,4,6,6,10,6,6,5,7,4,5,5,8,5,7,6,10,7,10,10,34,17,17,12,18,11,13,11,18,10,10,8,12,7,9,9,18,10,10,7,11,7,9,8,13,8,9,8,13,9,12,12,22,11,11,8,12,7,9,7,13,7,8,6,8,6,8,8,15,8,9,7,11,7,9,9,17,10,12,10,16,11,16,16,29,15,15,11,16,9,11,9,16,9,10,8,12,8,10,10,17,9,10,7,10,6,8,7,11,7,8,7,12,8,12,11,19,10,11,8,11,7,8,8,14,8,9,7,11,7,10,10,20,11,12,9,14,9,11,10,18,10,12,10,16,11,16,16,32,16,16,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,5,4,6,5,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,7,7,13,8,9,7,12,8,12,12,21,11,12,8,12,7,9,7,12,7,8,7,11,7,10,10,19,10,11,8,13,8,11,10,18,11,13,11,20,13,19,19,18,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,5,7,5,6,5,10,6,6,5,9,6,9,9,18,9,9,6,8,5,5,5,7,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,6,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,7,6,13,7,8,7,12,8,12,12,21,11,11,8,11,7,9,8,13,7,8,6,10,7,9,9,14,8,9,7,10,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,6,4,4,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,4,6,4,4,4,10,5,5,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,4,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,4,2,3,2,3,2,3,2,4,3,4,4,7,4,4,4,5,3,4,4,6,4,5,4,7,5,7,7,23,12,12,8,12,7,9,7,12,7,7,6,8,5,7,6,12,7,7,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,6,7,6,11,6,7,5,8,5,7,7,12,6,7,5,7,4,6,5,8,5,6,5,8,6,8,8,13,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,13,8,8,6,10,6,8,7,13,7,8,7,11,8,11,11,22,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,13,13,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,4,5,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,4,8,5,6,4,7,4,6,6,10,6,6,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,7,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-5,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,9,5,5,3,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,4,3,4,3,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,4,3,5,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,33,17,18,12,18,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,11,12,9,14,9,11,10,19,11,12,10,16,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,15,8,8,6,10,6,6,5,9,5,6,5,8,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,13,7,8,6,11,7,10,10,18,10,11,8,14,9,12,11,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,5,7,4,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,7,5,6,6,12,7,7,6,8,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,8,6,9,6,9,8,14,8,8,6,10,6,8,7,12,7,8,6,9,6,9,8,15,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-6,-4,-6,-6,-14 +1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-4,-9,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,3,4,4,6,4,4,4,7,5,7,6,10,5,5,3,5,3,4,3,4,3,3,3,4,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,3,3,2,4,3,3,3,5,3,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,6,7,6,11,8,11,11,33,17,18,12,17,10,12,10,17,9,10,8,12,8,10,9,17,9,10,7,10,6,8,8,13,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,12,7,7,6,9,6,9,9,16,9,10,7,12,8,10,9,16,9,11,9,16,11,16,16,30,16,16,11,15,9,11,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,20,10,10,7,11,7,9,8,13,7,8,7,11,7,10,10,19,10,11,8,14,9,11,10,19,11,12,10,17,11,16,16,32,16,16,11,16,9,10,9,15,8,9,7,11,7,9,9,15,8,8,6,9,6,6,5,9,5,6,5,7,5,7,7,12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,8,7,11,8,11,11,21,11,12,8,13,8,10,8,14,8,8,6,11,7,10,10,18,10,11,8,14,9,11,10,19,11,13,11,19,13,19,19,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,7,5,8,8,15,8,8,6,9,5,6,5,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,17,9,9,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,7,5,7,6,12,7,7,6,8,5,7,6,12,7,8,7,12,8,12,12,22,12,12,8,12,7,8,7,12,7,7,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-10,-5,-7,-6,-11,-7,-12,-12,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-9,-14,-8,-10,-8,-16,-8,-9,-7,-14,-8,-12,-11,-23,-12,-13,-9,-15,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-38,-18,-18,-11,-17,-9,-11,-9,-17,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-3,-1,-1,0,0,0,0,1,1,1,2,2,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,5,4,6,3,3,3,4,3,4,4,7,4,3,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,7,5,6,6,11,7,8,7,11,8,11,11,19,10,10,7,10,6,6,5,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,6,9,5,6,6,10,6,7,5,8,6,9,9,17,9,9,6,9,5,5,4,7,4,5,4,5,4,5,5,9,5,6,4,6,4,4,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,8,4,4,3,5,3,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,3,3,5,3,4,4,7,6,9,9,17,9,10,7,10,6,7,7,12,7,7,6,9,6,8,8,16,8,8,6,8,5,7,6,11,6,7,6,10,7,11,11,22,12,12,8,12,7,8,7,12,7,8,7,11,8,11,10,19,10,11,8,13,8,11,11,21,12,14,12,22,15,22,21,66,33,33,23,34,19,22,19,33,18,19,15,25,16,21,20,38,20,20,14,21,12,15,14,25,14,16,13,21,14,19,19,36,19,19,13,20,12,14,13,23,13,14,11,19,12,16,16,30,16,17,13,20,12,16,15,28,16,18,15,25,17,25,25,49,25,25,17,26,15,17,15,26,14,15,11,17,11,15,14,26,14,15,11,17,10,13,12,22,12,14,11,19,13,18,18,34,18,18,12,18,11,13,11,19,11,13,10,17,11,15,15,28,15,17,13,20,13,17,16,29,17,20,17,30,21,31,31,62,31,31,21,32,18,21,18,32,17,19,14,23,15,21,20,39,20,21,15,24,14,18,16,30,16,18,15,25,17,24,24,46,24,24,16,23,13,16,14,24,13,15,12,20,13,18,17,33,18,19,14,21,13,17,15,27,15,17,14,24,16,23,23,44,23,23,15,22,13,15,13,22,12,13,10,17,11,15,15,28,15,15,11,17,11,14,13,24,13,15,12,20,14,20,20,39,20,21,15,22,13,16,14,25,14,16,12,20,13,18,17,33,18,19,14,22,14,19,18,34,20,24,21,37,25,38,38,34,18,18,12,18,11,14,12,21,11,12,9,15,9,12,11,20,11,11,8,12,7,9,8,14,8,9,7,10,7,10,10,19,10,11,8,13,8,9,8,15,8,9,7,11,7,10,9,17,9,9,7,10,6,8,8,14,8,9,7,12,8,12,12,24,12,12,9,13,8,10,9,16,9,9,7,10,7,9,8,15,8,9,7,11,7,8,7,13,8,9,8,13,9,12,12,22,12,12,9,13,8,10,9,16,9,10,8,14,10,14,14,27,14,15,11,18,11,14,12,22,13,16,13,23,15,22,22,44,22,22,15,21,12,15,12,21,11,11,8,11,7,9,8,13,7,7,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,0,-1,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-13,-27 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,13,8,11,10,19,10,10,7,11,6,8,7,13,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,13,9,13,8,9,8,13,7,8,6,9,6,8,8,13,7,8,6,9,6,7,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,7,6,9,6,8,8,14,8,9,7,10,7,9,8,15,9,10,9,15,11,16,16,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,11,20,10,11,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,10,7,11,7,9,8,14,8,9,7,12,8,12,12,22,12,12,8,11,7,8,7,11,6,7,6,9,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,11,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13 +0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-7,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,3,3,3,2,2,2,2,2,2,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,33,17,17,12,18,10,12,10,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,14,8,8,7,11,7,10,10,19,10,10,7,10,6,8,7,12,7,8,6,10,6,8,8,15,8,9,7,10,6,8,8,15,9,10,8,13,9,13,13,25,13,14,10,13,8,9,8,13,7,7,6,9,6,8,8,13,7,8,6,9,6,8,7,12,7,8,6,10,7,10,10,18,10,10,7,9,6,7,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,8,16,9,10,9,15,11,16,16,32,17,17,12,17,10,12,10,17,9,10,8,12,8,11,11,19,10,10,8,13,8,10,9,16,9,10,8,13,9,12,12,24,12,12,8,12,7,9,8,12,7,8,7,11,7,10,9,17,9,9,7,10,6,8,8,15,8,9,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,6,8,8,15,8,8,6,9,6,7,7,12,7,8,7,10,7,10,10,20,11,11,8,12,7,9,8,13,7,8,6,10,7,10,9,17,9,10,7,12,8,10,10,18,10,12,11,19,13,19,19,17,9,9,6,10,6,8,7,11,6,7,5,8,5,6,6,11,6,6,5,6,4,5,4,7,4,5,4,5,4,6,6,10,6,6,5,7,4,5,5,8,4,4,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,11,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-2,-3,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,8,6,8,7,13,7,7,5,7,4,6,5,10,6,6,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,4,7,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,6,6,9,5,5,4,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,7,4,4,4,6,4,6,6,10,6,6,4,7,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,8,7,12,6,7,6,8,6,8,7,13,7,7,6,9,6,7,6,11,6,7,5,9,6,8,8,16,8,8,6,8,5,6,6,9,5,6,5,7,5,7,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,5,7,5,6,5,8,4,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,8,5,6,6,9,5,6,4,7,5,7,6,12,7,7,5,8,6,7,7,12,7,8,8,13,9,13,13,12,6,6,5,7,4,6,5,8,4,5,4,6,4,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,8,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,1,1,2,1,1,0,1,1,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-9,-4,-5,-4,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,4,3,5,4,5,5,6,4,4,3,3,2,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,3,3,5,3,4,3,4,3,5,5,11,6,6,4,6,4,5,5,8,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,5,7,7,11,6,7,5,7,5,6,5,6,4,5,4,6,4,5,5,10,6,6,5,7,5,7,7,10,6,8,7,11,8,11,11,33,17,17,12,17,10,11,10,18,10,10,8,12,8,11,10,20,10,10,7,10,6,7,7,14,8,8,7,11,7,10,10,20,11,11,8,11,7,8,7,13,7,8,6,10,7,9,8,14,8,9,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,9,13,7,8,6,9,6,7,7,14,8,8,6,9,6,7,7,13,8,9,7,11,7,10,10,18,9,9,7,10,6,7,7,10,6,6,5,8,6,8,8,14,8,9,7,10,7,9,8,16,9,11,9,16,11,16,16,32,17,17,12,18,10,12,10,17,9,10,8,12,8,10,10,18,10,11,8,12,7,9,8,15,8,9,7,12,8,12,12,24,12,12,8,12,7,9,8,13,7,8,6,10,7,9,8,18,10,10,7,10,7,9,8,15,9,10,8,12,8,12,12,23,12,11,7,10,6,7,7,11,6,6,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,10,11,18,10,10,7,11,7,9,8,12,7,8,6,10,7,9,9,18,10,10,8,12,8,11,10,17,10,13,11,19,13,19,19,17,9,9,7,10,6,7,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,11,6,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,8,5,5,5,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,11,7,8,7,12,8,12,12,22,11,11,8,12,7,8,7,11,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,2,2,2,2,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,4,8,4,5,4,6,4,6,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,4,4,4,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,6,7,6,9,6,9,9,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,7,5,7,4,5,5,9,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,10,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,5,3,4,4,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,2,2,2,2,4,3,3,3,3,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,3,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,23,12,12,8,12,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,5,6,5,9,5,6,5,7,5,8,8,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,6,5,7,5,6,6,9,5,6,6,10,7,10,9,16,9,9,6,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,5,5,9,5,6,5,7,5,8,8,12,6,6,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,12,8,12,7,8,7,12,6,6,5,8,6,8,7,12,7,8,6,8,5,6,6,10,6,6,5,8,6,8,8,16,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,6,4,6,6,11,6,6,5,8,5,6,5,8,5,6,5,7,5,7,7,11,6,6,5,7,5,6,5,8,5,6,5,8,5,6,6,13,7,8,6,8,5,7,7,12,7,9,8,14,10,14,14,12,6,6,5,6,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,7,4,4,3,4,3,4,3,5,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,6,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,4,6,6,8,4,5,4,6,4,5,5,7,4,5,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,9,6,7,6,10,7,9,9,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,7,6,13,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,4,5,5,10,5,5,4,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,7,4,5,4,7,4,6,6,11,6,7,5,7,5,6,6,10,6,8,7,12,8,12,12,10,6,6,4,5,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,4,2,3,3,4,3,3,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-3,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,0,0,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,4,5,4,6,4,6,5,9,5,5,4,7,4,5,4,7,4,4,4,6,4,4,4,7,4,5,4,6,4,5,4,6,4,4,3,5,4,5,4,11,6,6,4,5,3,3,3,5,3,3,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,5,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,3,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,2,3,3,6,4,4,4,6,4,5,5,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,6,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,10,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,34,17,17,12,18,10,11,9,16,9,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,10,6,8,8,14,8,8,6,10,7,10,10,13,7,8,6,9,6,8,7,12,7,9,8,14,10,14,14,24,12,12,9,13,8,9,8,14,8,8,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,9,7,12,8,11,11,17,9,9,7,11,7,8,7,12,7,7,6,10,7,10,9,15,8,9,7,10,7,9,9,16,9,11,9,16,11,16,16,32,16,16,11,17,10,11,9,16,9,9,7,12,8,11,10,16,9,9,7,10,6,8,8,14,8,9,7,12,8,11,10,21,11,12,8,12,7,9,7,12,7,7,5,8,6,8,8,17,9,10,7,10,7,9,8,14,8,9,8,13,9,12,12,23,12,12,8,11,6,7,6,10,6,6,5,7,5,7,7,17,9,9,7,10,6,8,7,12,7,8,7,12,8,11,11,16,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,11,11,9,14,9,11,10,18,11,13,11,20,14,20,20,18,10,10,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,7,5,7,8,16,9,10,7,11,7,9,8,14,8,10,8,13,9,12,12,18,9,9,6,8,5,6,5,9,5,6,5,7,4,5,4,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,2,2,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,18,9,9,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,17,9,9,6,9,6,6,5,9,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,7,6,11,8,11,11,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,8,5,6,5,7,5,7,7,10,5,5,4,4,3,4,3,5,3,4,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,3,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,19,10,10,7,10,6,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,8,5,5,4,6,4,4,4,7,5,6,5,8,6,8,8,14,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,4,4,3,5,4,5,4,7,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,6,5,9,5,6,6,10,7,10,10,18,9,9,7,9,6,7,6,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,5,6,4,6,4,6,6,12,6,6,4,7,4,5,4,7,4,4,3,4,3,5,5,10,6,6,4,7,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,6,10,6,7,7,11,8,12,12,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,5,9,5,6,5,6,4,5,5,9,5,6,5,8,6,8,8,10,6,6,4,4,3,4,3,6,4,4,3,4,3,4,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,4,5,6,14,8,8,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,7,4,4,3,4,3,3,3,5,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,5,5,10,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,7,5,6,5,9,6,9,9,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,6,8,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,2,3,2,2,2,2,2,2,2,4,3,4,4,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,3,2,2,2,4,3,4,4,8,5,5,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,3,3,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,5,6,5,8,6,8,9,22,11,11,8,11,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,6,6,9,5,6,5,8,5,7,7,15,8,8,6,9,6,7,6,9,5,5,4,7,5,7,7,11,6,7,5,7,5,6,5,10,6,7,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,10,5,5,4,6,4,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,5,7,6,10,6,8,7,11,8,11,11,20,11,11,7,10,6,7,6,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,5,4,5,5,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,11,7,9,8,14,9,13,13,14,7,7,5,6,4,5,5,7,4,4,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,4,3,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,2,2,3,3,7,4,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,5,5,12,7,7,5,8,5,7,6,11,6,7,6,9,6,9,9,12,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,1,1,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,3,5,5,7,4,5,4,5,3,4,4,6,4,5,4,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,5,3,4,4,7,4,4,3,5,4,6,6,11,6,5,4,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,5,5,8,5,5,4,5,4,5,4,7,5,6,5,9,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,1,2,2,2,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,7,5,6,5,8,5,5,5,7,5,7,7,12,7,7,5,7,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,5,7,7,8,5,5,4,6,4,5,5,7,4,5,4,5,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,8,8,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,10,6,8,7,11,8,11,11,12,6,6,4,5,3,4,3,5,3,3,2,4,3,4,4,6,3,3,3,3,3,4,3,5,3,3,2,4,3,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,5,5,4,7,4,5,5,9,5,6,5,8,6,8,8,9,5,5,3,4,3,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,6,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,6,4,6,6,8,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,6,7,6,10,7,10,10,11,6,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9 +-3,-1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,2,2,4,3,3,3,4,3,5,5,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,-1,0,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,4,5,6,13,7,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,3,3,3,4,2,2,2,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,16,9,9,7,10,6,8,7,11,6,7,5,8,5,7,7,12,7,8,6,9,6,7,7,12,7,7,6,10,7,9,9,11,6,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,7,6,9,6,8,8,14,8,10,8,14,9,13,13,35,18,18,12,18,11,13,11,18,10,11,8,13,8,10,10,18,10,10,7,11,7,8,8,14,8,9,8,14,9,12,12,21,11,11,8,12,7,8,7,11,6,7,6,9,6,9,8,15,8,9,7,10,6,7,6,10,6,7,6,10,7,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,7,8,6,10,7,10,11,15,8,7,5,7,4,5,5,9,6,7,6,9,6,8,8,16,9,9,7,11,7,9,9,16,9,11,9,16,11,17,17,31,16,16,11,16,9,11,10,17,9,10,8,12,7,9,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,9,9,20,10,10,7,11,6,7,6,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,15,8,9,8,13,9,13,13,26,13,13,9,14,8,10,8,13,7,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,7,12,7,7,6,9,7,10,10,18,10,11,8,13,8,11,10,18,11,13,11,19,13,18,18,19,10,10,7,9,6,7,6,11,6,6,5,7,5,6,5,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,15,8,9,7,10,6,8,7,12,7,7,5,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,5,8,6,8,8,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,8,13,9,13,13,15,8,8,5,7,4,5,4,6,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-9,-19 +-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,7,5,7,7,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,7,5,6,6,9,6,7,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,8,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,5,3,3,2,4,3,3,3,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,5,5,7,5,6,5,7,5,7,7,18,9,9,7,10,6,7,6,10,6,6,4,7,5,6,6,11,6,6,5,6,4,5,4,8,5,6,5,7,5,7,7,10,6,6,5,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,7,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,3,5,3,4,3,5,3,4,3,6,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,10,7,10,6,6,5,10,6,6,4,6,4,5,5,8,4,4,3,6,4,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,8,5,6,5,7,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,4,3,4,3,4,4,6,4,4,3,5,4,5,6,9,5,6,5,8,5,6,6,9,5,6,6,10,7,10,10,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,4,4,4,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,6,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-6 +-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,1,1,2,2,2,2,2,2,2,2,2,2,2,3,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,0,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,4,2,2,2,4,3,3,3,4,2,2,2,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,9,5,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,6,4,4,3,3,2,2,2,5,3,4,3,4,3,4,4,5,3,4,4,6,4,6,6,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,5,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,5,5,4,5,3,3,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,5,5,9,5,6,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,4,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,5,5,11,6,6,4,6,3,3,3,6,4,4,4,6,4,6,5,6,4,5,4,6,4,4,4,9,5,5,4,7,5,7,7,15,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,9,5,5,3,4,3,3,3,7,4,5,4,6,5,7,7,9,5,6,5,8,5,7,6,9,5,6,6,10,7,11,11,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,7,5,6,5,8,6,8,8,8,5,5,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10 +0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,3,3,4,3,4,4,5,3,3,3,5,4,5,5,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,1,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,7,5,6,6,16,8,8,6,9,5,6,5,8,4,4,3,6,4,5,5,9,5,6,4,5,3,4,4,6,4,5,4,6,4,6,6,7,4,4,3,4,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,14,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,5,8,4,4,3,4,2,2,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,8,6,8,8,8,4,4,3,4,3,3,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,3,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,3,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,5,3,4,4,6,4,6,7,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,0,0,-1,-1,-2,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,3,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6 +-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,-2,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,7,4,5,4,5,3,3,3,4,3,3,3,5,4,5,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,4,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,9,5,5,4,5,3,4,4,7,4,4,3,4,3,5,5,6,4,4,3,5,3,4,4,8,5,5,5,8,5,7,6,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,6,11,7,10,10,27,14,13,9,12,7,8,7,12,7,7,5,8,5,7,7,15,8,8,6,8,5,6,6,10,6,7,6,9,6,9,9,12,7,7,5,8,5,5,5,8,5,5,4,7,5,6,5,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,12,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,10,6,6,4,5,3,4,4,8,5,5,4,7,5,7,6,13,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,24,12,12,9,13,8,9,7,11,6,6,4,6,4,5,5,12,6,6,5,7,4,5,5,8,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,4,4,6,5,7,7,18,10,10,7,9,5,6,6,10,6,6,4,5,4,5,4,10,6,6,5,7,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,6,4,4,4,6,4,4,4,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,12,7,7,5,6,4,4,3,5,3,4,3,5,3,4,3,8,5,5,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,8,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,6,3,3,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,7,7,11,6,6,5,7,5,6,5,9,6,7,6,11,8,12,12,6,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-12,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12 +-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,6,5,7,7,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-1,0,0,0,-1,0,0,0,-2,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-3,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,4,3,4,3,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,1,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,2,3,4,3,3,3,3,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,8,4,4,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,12,6,6,5,7,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,5,8,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,4,6,4,4,4,7,4,5,4,8,6,8,8,8,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,5,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,7,5,7,8,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,1,3,2,2,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,1,0,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,4,6,4,6,6,6,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,4,6,4,6,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,2,2,3,2,2,2,4,3,3,3,-5,-2,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,5,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,1,1,1,2,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,7,4,4,4,6,4,6,5,8,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,7,6,9,6,8,8,24,13,13,9,12,7,8,7,11,6,7,5,8,5,7,7,13,7,7,5,8,5,6,5,7,5,6,5,8,5,7,7,11,6,7,5,7,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,5,4,6,6,9,5,5,3,4,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,6,10,7,10,10,21,11,10,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,16,9,9,6,9,5,6,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,11,6,6,4,6,4,4,3,5,3,4,4,6,4,6,6,10,6,6,5,7,4,5,5,11,6,7,6,10,7,10,10,9,5,6,4,6,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,8,4,4,3,5,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,6,6,9,5,6,5,7,5,6,5,9,6,7,6,10,7,10,10,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,-1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,4,3,3,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,16,9,9,6,8,5,6,5,8,4,5,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,14,8,7,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,7,5,7,7,6,4,4,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,3,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,3,4,5,8,5,5,4,6,4,5,5,10,6,7,6,8,6,8,8,22,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,7,5,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,5,6,4,5,4,6,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,6,4,6,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,20,11,11,7,10,6,7,6,11,6,6,4,7,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,10,7,10,10,5,3,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,1,1,1,1,2,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,2,2,3,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,6,6,5,8,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,6,9,9,20,11,11,7,10,6,7,6,10,6,6,4,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,5,3,4,3,6,4,4,4,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,9,7,10,10,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,10,5,3,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-12 +-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-17,-8,-8,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,4,4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,12,7,7,5,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,2,2,2,3,2,2,2,2,2,3,3,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,1,1,1,1,2,16,8,8,6,9,6,7,6,10,6,6,5,8,6,8,8,15,8,9,6,9,6,7,6,11,7,8,7,11,7,10,9,17,9,9,6,9,6,7,6,11,6,7,5,7,5,7,6,11,6,7,6,9,6,8,8,15,9,11,9,16,11,15,15,40,20,20,13,19,11,12,10,18,10,10,8,12,8,10,10,19,10,10,7,10,6,8,7,11,6,7,6,11,8,11,11,20,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,14,8,9,7,10,6,8,7,13,8,9,7,11,8,11,11,17,9,9,6,9,6,7,6,11,6,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,7,5,8,8,14,8,8,6,10,6,7,7,12,7,8,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,10,17,12,17,17,40,20,20,13,19,11,13,11,19,10,11,8,13,8,10,9,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,7,6,10,6,7,5,8,5,7,7,26,14,14,10,15,9,11,10,17,9,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,8,7,11,8,11,11,20,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,23,12,13,10,15,9,11,10,19,11,14,12,20,13,19,19,17,9,9,6,9,5,6,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,8,5,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,14,8,8,6,8,5,6,6,10,6,6,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,9,6,9,10,19,10,11,8,12,8,10,9,16,9,11,10,18,12,18,18,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,5,3,2,1,1,1,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-25 +-3,-1,-2,-1,-2,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,7,10,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,10,6,6,5,7,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,5,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,3,2,2,1,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-3,-1,-2,-1,-2,0,0,0,-1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,2,1,1,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-7,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,21,11,11,8,11,6,6,5,9,5,6,5,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,6,4,6,6,10,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,21,11,10,7,10,6,7,6,9,5,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,5,3,4,4,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,6,5,7,5,6,7,11,6,7,5,8,5,6,6,10,6,8,7,10,7,10,10,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,10,7,10,10,5,3,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,0,-1,0,-1,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,5,4,5,5,8,4,5,4,5,4,5,5,8,5,6,5,7,5,8,8,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8 +-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,-8,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,2,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,4,3,3,3,4,3,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,10,5,5,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,9,5,5,3,4,3,3,3,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,22,11,11,8,11,6,7,6,10,6,7,5,8,5,7,6,10,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,11,6,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,20,10,10,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,8,5,6,5,8,6,8,7,11,6,6,5,7,5,6,6,12,7,8,7,11,8,11,11,9,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,3,4,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,4,6,4,5,6,12,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,3,4,3,3,2,1,1,2,2,3,2,2,2,1,1,2,2,4,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,5,4,6,6,15,8,8,6,7,5,6,5,7,4,4,4,6,4,5,5,7,4,4,3,3,2,2,2,5,3,3,3,5,3,4,5,7,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,7,14,8,8,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,3,3,4,4,7,4,3,2,4,3,3,3,4,2,2,2,3,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,4,3,4,3,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6,4,4,3,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,3,3,2,2,2,2,2,5,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,5,7,7,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,1,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,6,4,5,4,7,4,4,4,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,4,3,3,3,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,6,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7 +0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,8,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,3,3,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,4,8,5,5,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,4,5,5,8,5,5,4,7,5,8,8,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,6,4,4,3,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,5,5,8,6,8,7,8,5,5,4,6,4,6,5,9,6,7,6,10,7,11,11,21,11,11,8,12,7,8,7,11,6,7,5,7,5,6,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,6,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,8,5,6,5,9,5,5,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,5,7,5,8,8,14,8,9,7,12,9,13,13,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,11,6,6,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,6,5,8,5,7,7,12,7,9,7,12,8,11,11,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,1,1,1,0,-1,0,1,1,1,1,1,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-2,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,5,3,3,2,4,3,4,3,5,4,4,4,6,4,6,6,11,6,6,5,7,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,7,5,6,6,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,0,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,5,3,3,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,2,1,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,3,3,3,4,3,4,3,4,3,5,4,5,5,14,8,8,5,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,4,3,4,3,5,3,4,4,5,3,3,2,4,3,4,4,6,4,5,4,7,5,7,7,12,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,3,2,3,2,4,3,3,2,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,9,5,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,5,3,4,3,4,3,4,4,8,5,6,5,7,5,8,8,8,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,7,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,-1,0,4,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,4,5,4,6,6,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,4,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,8,5,5,3,4,3,4,3,7,4,5,4,6,4,4,4,6,4,4,3,5,4,5,5,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,17,9,9,7,10,6,7,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,6,5,7,5,6,6,7,4,5,4,5,3,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,8,5,5,4,6,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,8,4,4,3,4,3,5,5,9,6,7,6,10,6,8,8,14,7,7,5,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,11,6,6,4,6,4,4,3,7,4,5,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,7,4,4,3,4,3,3,3,6,4,5,4,6,4,5,4,6,4,5,4,6,4,6,6,9,5,6,5,8,6,9,10,11,6,6,4,6,4,4,3,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,4,3,3,3,7,4,4,4,6,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,9,9,3,2,1,1,1,1,2,2,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,2,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12 +2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,6,4,4,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,3,3,4,2,2,2,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,3,4,4,5,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,5,4,6,6,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,4,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,0,1,0,0,0,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,8,5,5,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,5,6,5,8,5,6,5,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,4,6,4,5,5,8,5,5,4,8,6,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,7,5,6,5,7,5,7,7,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-5,-11 +2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,7,4,5,5,8,5,5,4,7,5,6,6,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,8,4,5,4,6,4,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,7,5,8,8,11,6,6,4,7,4,5,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,7,7,2,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-6,-6,-8,-3,-3,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-6,-6,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,2,2,3,3,5,3,3,3,4,2,2,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,9,5,6,4,6,4,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,5,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,12,7,7,5,6,4,5,5,8,5,5,4,5,4,6,6,10,5,5,4,6,4,4,4,7,5,6,5,8,6,9,9,25,13,13,9,14,9,11,10,17,9,10,8,12,8,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,11,6,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,7,4,5,5,8,5,7,7,18,10,10,7,10,6,8,7,13,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,9,7,10,7,10,10,15,8,9,6,9,5,6,5,9,5,6,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,20,10,10,7,9,6,7,6,10,6,6,5,9,6,7,7,12,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,8,8,18,10,10,7,9,6,7,6,11,6,6,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,5,5,8,6,8,8,11,6,6,4,5,3,4,3,5,3,4,3,4,3,5,5,10,6,6,5,8,5,7,7,13,8,10,8,14,10,14,14,21,11,11,8,11,6,6,5,8,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,8,5,6,5,8,5,7,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,6,6,10,6,6,5,7,4,5,4,7,4,5,5,8,6,8,8,8,5,5,4,6,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,8,5,5,4,7,5,6,6,14,8,8,6,10,6,7,6,11,6,7,6,9,6,7,7,12,7,7,5,7,5,7,7,12,7,8,7,12,9,13,13,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-1,0,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,1,1,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,13,7,7,5,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,4,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,3,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,0,0,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,6,4,6,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,14,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,6,4,5,5,7,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,12,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,3,5,3,3,2,3,2,2,2,5,3,4,4,5,4,5,5,10,5,5,4,6,4,5,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,8,8,12,6,6,4,7,4,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,5,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,4,3,4,4,8,5,6,5,7,5,8,8,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-5,-11 +1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,2,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,11,6,6,4,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,3,2,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,5,4,6,6,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-5,-3,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,3,2,5,3,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,6,3,3,3,4,3,4,3,6,4,4,3,4,3,5,5,7,4,4,3,5,3,3,3,6,4,5,4,6,4,6,6,17,9,10,7,10,6,8,7,11,6,7,5,8,5,7,7,11,6,6,4,6,4,4,4,8,5,5,5,8,5,7,7,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,4,4,6,4,6,5,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,5,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,7,4,4,3,4,3,3,2,4,3,3,3,4,3,5,5,7,4,4,4,6,4,5,5,10,6,7,5,8,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,3,4,3,5,5,6,4,4,4,6,4,4,3,4,3,3,3,4,3,5,6,6,4,4,3,4,3,3,2,5,3,4,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,9,5,6,5,8,6,9,9,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12 +1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,6,6,8,4,4,3,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,5,4,6,6,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +1,1,0,1,0,0,0,1,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,8,5,6,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,5,3,4,3,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,9,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,5,3,4,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,7,11,6,7,5,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,5,4,5,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,2,2,2,1,1,1,1,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,5,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,3,2,3,2,3,2,3,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,7,4,4,3,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,2,2,2,1,1,1,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,8,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,4,4,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,6,5,8,5,7,6,10,6,6,5,7,5,6,5,8,5,5,5,8,6,9,9,22,12,12,9,13,8,10,8,14,8,8,6,9,6,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,7,10,6,6,4,5,3,4,4,8,5,6,5,8,6,8,8,15,8,9,6,9,5,6,6,10,6,6,5,7,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,15,8,8,6,10,6,7,7,12,7,7,6,9,6,7,6,13,7,8,6,8,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,6,16,9,9,6,8,5,5,5,8,5,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,7,5,7,7,12,7,7,6,9,6,8,7,12,7,8,7,11,8,12,12,18,10,10,7,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,13,7,6,4,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,6,4,4,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,7,7,12,7,9,7,12,8,10,10,0,0,0,0,-1,0,0,0,-1,0,0,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,4,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,6,4,5,5,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,7,5,6,6,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,1,2,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,4,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,2,2,2,3,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,5,4,6,4,5,4,6,4,4,4,6,5,7,7,16,8,8,6,8,5,6,5,10,6,6,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,7,5,6,6,9,5,5,4,5,3,4,4,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,6,10,6,6,4,6,4,4,4,8,5,5,3,5,3,4,4,9,5,5,4,6,4,4,4,7,5,6,5,7,5,7,7,10,6,6,4,7,4,4,4,8,5,5,4,6,4,5,4,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,5,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,13,7,7,5,6,4,5,5,7,4,4,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,4,4,6,4,4,4,7,5,6,6,9,5,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,5,3,4,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,-1,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,2,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,3,3,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-9,-9,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,6,3,3,2,2,1,1,1,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,8,4,4,3,4,3,3,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,4,3,4,4,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,6,7,6,9,6,9,9,23,12,12,8,12,7,8,7,13,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,9,6,8,8,13,7,8,6,8,5,6,5,7,4,4,3,4,3,4,4,10,5,5,4,6,4,4,4,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,6,9,5,6,5,8,5,7,7,10,5,5,4,6,4,6,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,4,6,4,6,6,12,7,7,5,8,5,7,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,11,6,6,4,6,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,6,7,14,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,8,5,5,4,6,5,7,7,10,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,11,6,7,5,8,5,5,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,13,7,7,5,6,4,5,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,6,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,7,4,4,4,6,4,6,6,11,6,7,5,8,5,6,6,12,7,7,6,10,7,9,9,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-7,-4,-6,-6,-14 +2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,7,4,5,4,7,5,7,7,16,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,4,4,5,3,3,2,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,7,4,4,3,4,2,3,2,3,2,3,2,3,2,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,5,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,3,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,4,5,4,6,4,4,4,8,5,5,4,7,5,6,6,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8 +2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,2,2,2,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,4,3,4,3,4,4,8,5,6,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,13,7,8,6,8,5,6,5,8,4,4,3,6,4,5,5,10,6,6,4,5,4,5,4,7,4,5,4,7,5,8,8,13,7,8,6,8,5,6,5,10,6,6,5,7,5,7,7,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,5,6,5,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,6,5,7,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,9,5,6,4,5,3,4,4,6,4,4,4,7,5,7,7,12,6,6,5,7,5,6,5,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,11,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-9,-9,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,10,6,6,4,7,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,10,24,12,13,9,13,7,8,7,13,7,8,6,10,6,9,8,15,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,11,6,6,5,7,4,6,5,9,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,4,7,5,6,6,11,6,6,5,7,5,6,6,9,6,7,6,10,7,10,10,15,8,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,7,5,7,7,12,6,6,5,7,4,5,5,7,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,6,4,4,4,8,5,6,5,8,5,7,7,13,7,6,4,7,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12 +1,1,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-12,-25,-12,-13,-8,-13,-7,-10,-9,-17,-9,-10,-7,-12,-7,-11,-11,-22,-11,-12,-8,-13,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-5,-7,-7,-14,-8,-10,-8,-15,-10,-15,-15,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,2,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,3,5,3,4,3,5,3,4,4,6,3,3,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-4,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,16,8,7,5,6,3,3,3,4,2,2,2,2,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,3,3,6,4,4,4,6,4,5,5,9,5,6,4,6,4,6,6,12,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,5,4,5,5,9,6,7,6,11,8,11,10,19,10,10,8,12,8,11,11,20,12,14,12,20,13,19,19,47,24,24,16,24,14,16,13,23,12,13,10,17,11,15,15,29,15,15,10,15,9,12,11,19,11,12,10,16,11,15,15,30,16,16,11,15,8,9,8,13,7,8,6,10,6,8,8,14,8,8,6,8,5,7,7,12,7,9,8,14,10,14,14,26,13,13,9,12,7,8,7,13,7,8,6,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,13,7,8,7,11,8,11,10,19,11,13,10,17,12,17,18,29,15,15,10,15,9,11,10,18,10,10,8,13,9,12,12,22,12,13,9,14,9,11,10,17,10,12,10,16,11,15,15,28,14,14,10,14,8,9,8,13,7,8,6,10,7,9,9,16,9,9,7,10,6,8,7,13,8,9,7,11,8,11,12,23,12,11,8,11,7,8,7,12,7,7,6,9,6,8,8,14,8,9,7,10,6,8,8,15,9,10,8,14,10,15,15,28,14,14,10,14,8,10,9,15,9,10,8,14,9,13,12,22,11,11,8,12,8,10,9,17,10,12,10,18,12,17,17,40,21,21,15,22,13,15,13,22,12,13,9,14,9,13,12,23,12,12,9,13,8,9,8,14,8,9,7,12,8,11,11,21,11,11,7,10,6,7,6,10,6,6,5,7,5,8,8,14,8,8,6,9,6,8,7,12,7,9,8,14,10,14,13,25,13,14,10,14,8,9,7,12,7,7,5,8,6,8,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,27,14,15,11,16,10,12,10,18,10,10,8,13,8,11,10,19,10,11,8,12,7,9,8,14,8,10,9,15,10,15,15,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,1,1,0,-2,-1,-3,-3,-7,-3,-3,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-8,-6,-11,-7,-11,-11,-24 +1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,7,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,7,5,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,10,6,7,6,9,6,9,10,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,9,6,6,5,10,7,9,9,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12 +0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-7,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,8,4,4,3,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,4,3,5,3,3,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,6,11,7,10,10,24,12,12,9,13,7,8,7,12,7,8,6,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,9,6,8,8,16,8,8,6,8,5,6,5,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,5,6,5,7,5,8,8,13,7,7,5,7,4,5,5,8,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,5,8,5,6,5,9,6,7,6,8,6,8,8,14,8,8,5,8,5,5,5,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,5,8,6,8,7,14,8,8,6,7,5,6,5,8,5,6,5,8,5,7,7,12,6,6,5,7,5,6,5,10,6,6,5,10,7,10,10,21,11,11,8,12,7,8,7,11,6,7,5,8,5,7,7,12,6,6,4,6,4,4,4,8,5,5,4,7,5,6,6,12,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,5,5,8,6,8,8,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,5,10,6,6,5,7,5,6,6,10,6,6,4,7,4,5,5,7,5,6,5,8,6,8,8,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12 +0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,7,5,7,7,17,9,9,6,9,5,6,5,8,5,6,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,6,5,7,7,10,6,6,4,6,4,5,4,7,4,4,3,4,3,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,9,5,5,4,4,3,3,3,5,3,3,2,4,2,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,7,4,4,3,5,3,4,4,5,4,4,4,6,4,6,6,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7 +0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-4,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-5,-4,-7,-4,-5,-4,-8,-5,-9,-9,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,1,1,1,1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,2,2,3,2,2,2,2,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,9,5,4,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,4,3,5,4,6,6,10,6,6,5,8,5,7,7,11,7,8,6,10,7,10,10,25,13,13,9,14,8,9,8,12,7,8,6,10,7,9,8,15,8,8,6,8,5,7,6,10,6,6,5,8,6,8,8,17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,5,7,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,5,10,6,6,5,9,6,9,10,15,8,8,6,8,5,7,6,9,5,6,4,6,4,6,6,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,15,8,8,6,8,5,6,5,6,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,22,12,12,8,11,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,6,4,5,4,8,5,6,5,8,5,7,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,4,7,5,8,8,13,7,8,6,8,5,5,4,6,4,5,4,6,4,5,5,7,4,4,4,6,4,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,5,8,6,8,8,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11 +1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,7,4,5,4,5,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-8,-4,-4,-3,-4,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,1,1,2,2,2,2,2,2,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,0,1,2,2,2,1,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,9,5,6,5,8,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,6,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,2,2,4,3,3,3,7,4,4,4,7,5,7,7,11,6,6,4,6,4,5,5,7,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,5,8,5,5,4,7,4,4,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,1,1,1,1,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,4,4,7,4,5,4,6,4,7,7,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6 +2,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-9,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,1,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,2,2,2,2,1,4,3,3,3,4,2,2,2,3,2,3,3,4,3,4,3,5,3,3,3,4,3,3,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,2,2,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,9,5,5,4,5,3,3,2,3,2,2,2,2,1,1,1,4,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,5,3,3,2,3,2,3,3,6,4,4,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,29,15,15,10,15,9,10,8,14,8,9,7,10,7,10,9,17,9,9,6,9,6,7,6,10,6,7,6,10,7,9,8,19,10,10,7,10,6,7,5,8,5,6,5,7,5,6,6,8,5,6,5,7,4,5,5,9,6,7,6,10,7,9,9,14,8,8,6,9,6,7,6,10,6,7,5,8,5,6,6,11,6,6,4,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,6,6,11,8,11,11,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,14,7,7,5,7,4,5,4,6,4,5,4,7,5,7,6,9,5,5,4,5,3,4,4,8,5,5,5,8,6,8,7,11,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,12,8,11,10,21,11,11,8,11,7,8,6,10,6,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,15,8,8,6,8,5,7,6,10,6,6,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,16,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6 +1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,5,4,5,5,7,5,6,5,7,5,7,7,17,9,9,7,9,5,6,5,8,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,11,6,6,5,7,4,5,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,4,6,4,6,6,10,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,2,2,2,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,6,13,7,7,5,7,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,3,2,2,2,3,2,2,3,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,8,5,5,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,3,4,5,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6 +1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,5,4,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,5,4,5,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,4,4,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-4 +0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-3,-11,-5,-6,-4,-6,-3,-4,-3,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,5,3,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,3,2,2,1,0,0,0,0,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,0,1,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,3,4,3,4,3,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,8,5,5,4,6,4,6,5,8,5,6,5,9,6,8,8,21,11,11,8,12,7,8,7,11,6,6,5,8,5,6,6,13,7,7,5,6,4,5,4,8,5,5,4,5,4,5,5,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,3,3,7,4,5,4,6,4,6,7,13,7,8,6,8,5,6,5,7,4,4,3,5,4,5,4,8,5,5,3,4,3,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,8,5,7,7,17,9,8,6,8,5,5,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,4,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,6,4,4,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,4,6,4,6,6,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-3,-6,-3,-4,-4,-8 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,4,2,3,2,3,2,3,2,3,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,4,4,5,4,4,4,6,4,6,6,14,7,7,5,8,5,5,4,8,4,4,4,5,4,4,4,8,5,5,3,4,3,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,4,3,4,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,3,4,5,9,5,6,4,5,4,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,11,6,5,4,5,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,1,1,0,1,1,1,0,0,1,1,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,2,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,1,1,1,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,3,2,2,1,1,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,4,3,4,3,3,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,3,4,4,7,4,5,4,5,4,5,5,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,2,2,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,6,4,5,4,6,4,6,6,13,7,8,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,4,5,4,5,5,7,4,5,4,6,4,6,6,15,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,3,2,3,3,4,3,3,2,3,3,4,3,6,4,4,3,3,3,4,4,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,3,6,4,4,3,5,4,5,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,3,2,2,2,4,2,3,2,4,3,4,4,7,4,5,4,5,4,5,5,7,4,5,5,8,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,5,7,7,11,6,6,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,3,2,4,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,6,4,6,6,14,8,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,3,5,3,4,3,5,3,4,4,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7 +-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,-15,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-7,-5,-10,-6,-9,-9,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,7,4,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,6,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,3,3,4,3,5,6,14,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,11,9,15,10,15,15,35,18,18,13,19,11,13,11,18,10,11,8,12,8,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,6,8,8,22,11,11,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,12,21,11,11,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,8,6,9,5,6,6,10,6,6,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,6,6,10,6,7,6,10,7,10,11,25,13,13,8,11,7,8,6,10,6,6,5,7,5,6,6,10,6,7,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,7,5,6,6,12,6,6,4,6,4,6,5,9,5,6,4,6,4,5,5,14,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,5,5,11,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,10,6,7,6,10,7,10,11,27,14,14,10,16,9,11,9,16,9,9,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,7,4,5,4,12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,3,3,3,4,3,5,5,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,11,6,6,4,6,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,6,5,9,5,5,4,6,5,7,7,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-7,-7,-15 +-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,4,7,4,4,4,5,4,5,5,12,6,6,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,7,5,7,7,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,6,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7 +-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,4,4,4,6,4,5,5,9,5,6,5,8,6,8,9,20,10,10,7,11,7,8,6,10,6,6,5,7,5,6,6,9,5,6,4,6,4,5,5,7,4,4,4,5,4,5,5,13,7,6,5,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,4,6,4,5,4,8,5,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,5,3,3,2,4,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,3,3,2,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,4,3,6,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,6,4,6,6,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,7,4,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,4,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,0,0,0,0,0,1,2,2,5,3,2,2,2,1,1,1,3,2,2,2,2,1,1,1,3,2,1,1,0,1,1,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,3,3,4,4,10,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,10,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,14,8,8,6,8,5,5,4,6,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,5,5,9,6,9,9,12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,8,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,5,5,6,4,4,4,6,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,2,3,4,5,3,4,3,4,3,3,3,5,3,3,2,3,3,4,4,9,5,4,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,4,2,2,2,3,2,3,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,5,7,7,16,9,9,7,10,6,7,6,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,4,5,3,3,3,4,3,3,3,8,5,5,3,4,2,2,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,3,3,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,4,5,4,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10 +0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,6,4,5,4,5,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,6,4,6,6,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,9,5,5,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,7,5,6,5,7,5,8,8,19,10,10,7,10,6,8,6,10,6,6,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,4,3,5,4,6,5,11,6,6,4,7,4,5,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,4,7,5,8,8,10,6,6,4,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,3,2,2,2,7,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,3,4,3,4,3,4,4,6,4,4,3,5,4,5,6,11,6,6,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,13,7,7,5,7,5,6,5,7,4,4,4,5,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,4,3,4,4,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-9 +-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,17,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,6,5,10,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,2,2,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,12,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,3,2,3,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-8 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,8,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,1,2,2,3,2,2,2,2,1,1,1,5,3,3,3,5,3,4,3,5,3,4,3,5,4,6,6,15,8,9,6,9,5,6,5,8,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,4,5,4,6,4,4,4,6,5,7,7,11,6,7,5,8,5,7,7,12,7,8,7,12,9,13,13,32,17,17,11,16,10,12,10,17,9,10,7,10,7,9,8,15,8,9,7,10,6,7,7,12,7,8,7,11,7,9,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,12,8,12,12,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,4,9,5,6,4,6,4,5,5,8,5,5,4,6,4,4,4,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,9,6,9,9,18,9,9,6,9,5,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,11,6,7,5,7,4,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,22,12,12,8,11,7,8,7,11,7,8,6,10,6,8,8,10,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,6,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,6,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-3,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,5,3,4,3,4,3,4,4,6,3,3,3,5,3,4,3,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,9,6,8,8,20,11,11,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,3,4,4,7,4,5,4,5,3,4,4,8,4,4,3,6,4,4,4,8,5,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,4,3,3,3,3,2,2,2,3,2,3,3,7,4,4,3,5,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-1,-1,-2,-1,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,3,4,3,3,3,8,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-3,-3,-6,-3,-5,-5,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,6,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,13,7,7,5,8,5,5,5,7,4,5,4,6,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,5,4,5,3,4,4,6,4,6,6,12,6,6,5,7,5,7,6,12,7,8,7,12,9,13,13,29,15,16,11,16,9,10,8,16,9,9,7,10,6,8,8,13,7,8,6,8,5,6,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,6,6,10,6,7,6,10,7,11,11,18,9,9,7,10,6,7,6,10,6,7,5,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,9,5,6,6,10,7,9,9,16,8,8,6,9,5,6,5,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,6,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,5,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,10,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,9,5,5,4,6,4,4,4,5,3,4,3,4,3,4,4,8,4,4,3,5,4,5,5,9,5,6,5,8,6,9,9,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,4,3,3,2,2,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-17 +-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,5,4,5,4,8,5,6,5,8,6,9,9,19,10,10,7,11,6,7,6,11,6,6,5,7,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,4,4,4,6,3,3,2,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,2,3,2,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,4,4,6,4,6,5,9,5,6,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,7,5,7,4,4,4,6,4,5,4,6,4,6,6,12,6,6,5,8,5,6,6,12,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,10,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,6,9,5,6,5,7,5,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,4,3,6,4,4,4,8,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,8,6,9,5,6,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,8,6,9,6,7,7,11,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-5,-3,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,6,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,5,4,5,5,13,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,7,4,5,4,6,4,5,4,7,5,6,6,12,6,6,5,8,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,15,9,10,9,15,8,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,15,8,8,6,8,5,6,5,8,5,6,5,6,4,6,6,9,5,6,4,6,4,6,5,10,6,6,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,22,12,12,8,12,7,8,7,12,7,7,6,9,6,7,7,12,6,6,5,6,4,5,5,8,4,4,3,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-16 +-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-6,-5,-10,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-7,-4,-5,-4,-8,-5,-7,-7,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-21,-10,-9,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-10,-7,-11,-11,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-4,-7,-7,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,11,6,6,4,5,3,4,4,6,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,4,4,7,5,8,8,25,13,13,9,13,7,8,6,10,6,6,5,7,5,6,6,11,6,7,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,10,7,9,9,18,10,10,8,12,8,11,11,21,12,15,13,23,16,23,23,53,27,26,18,26,15,17,14,24,13,14,11,17,11,14,14,26,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,28,14,14,10,15,9,11,10,19,10,11,8,13,9,12,11,21,11,12,9,15,9,12,11,19,11,14,12,21,14,20,20,35,18,18,12,16,9,11,9,16,9,10,7,11,7,9,8,15,8,8,6,8,5,7,7,12,7,7,6,10,7,9,9,18,9,9,6,9,5,6,5,8,5,5,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,9,16,11,17,17,32,17,17,11,16,9,11,10,17,9,10,8,12,7,9,9,16,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,4,4,6,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,20,11,11,8,12,7,8,7,12,7,7,6,9,6,8,8,15,8,9,6,9,5,6,5,8,5,6,5,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,10,10,18,10,12,10,17,11,16,15,44,22,22,15,23,13,16,13,22,12,12,9,14,9,12,11,21,11,12,8,12,7,8,7,12,7,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,6,5,8,5,7,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,7,4,3,2,3,2,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,6,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-7,-16,-8,-10,-8,-16,-11,-17,-17,-34 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,7,4,5,5,7,4,5,4,6,4,5,5,10,6,6,5,7,5,6,6,11,7,8,7,12,8,12,12,27,14,14,10,14,8,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,11,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,5,4,7,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,6,5,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,6,5,9,6,7,6,9,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-6,-6,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,6,4,4,3,4,2,2,2,4,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,4,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,5,6,5,7,4,4,4,6,4,6,6,10,6,6,5,7,5,7,6,11,7,8,7,13,9,12,12,28,14,14,10,14,8,10,8,13,7,8,6,8,6,8,7,14,8,8,6,9,5,6,6,10,6,6,5,8,6,8,8,16,8,8,6,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,5,8,5,7,6,10,6,8,7,12,8,11,11,18,10,10,7,9,5,6,5,9,5,6,4,6,4,6,5,9,5,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,5,3,4,3,6,4,4,3,3,2,3,3,5,3,2,2,2,2,2,2,3,2,3,2,3,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,10,6,8,8,23,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17 +-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,4,10,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,4,4,4,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,9,5,6,4,6,4,6,5,10,6,6,4,7,4,5,5,7,4,4,4,6,4,6,6,12,6,6,5,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,5,7,4,6,5,8,6,8,8,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-5,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-3,-3,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,15,8,7,5,7,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,8,9,8,14,9,13,13,28,14,14,10,14,8,10,8,14,8,8,6,8,6,8,7,15,8,9,7,10,6,7,7,11,6,6,5,8,6,9,9,18,10,10,7,10,6,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,10,6,8,7,12,8,12,12,18,9,9,6,9,5,6,6,8,5,5,4,6,4,6,6,10,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,6,6,4,6,4,4,3,3,2,2,2,4,3,4,4,7,4,4,4,6,4,5,4,9,5,6,5,8,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,8,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,9,5,6,6,10,7,9,9,24,13,13,9,12,7,9,8,12,7,7,5,8,5,7,7,14,8,8,6,8,5,5,4,7,4,4,3,4,3,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,9,5,5,4,5,4,5,4,9,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,14,8,8,5,7,4,5,5,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,4,4,5,3,4,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,4,5,4,5,6,9,5,6,4,6,4,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,10,6,8,6,10,7,10,10,21,11,10,7,10,6,8,6,11,6,6,4,6,4,6,5,12,6,6,5,8,5,6,5,9,5,5,4,6,4,6,6,14,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,7,5,6,5,9,6,9,9,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,7,4,4,4,6,4,6,7,13,7,7,5,7,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,5,4,7,5,8,7,17,9,9,6,8,5,6,6,9,5,5,4,7,4,5,5,11,6,6,4,6,4,4,3,5,3,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,19,10,10,7,9,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,4,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-13,-6,-6,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,17,9,9,6,8,5,6,5,9,5,5,4,6,4,5,4,10,5,5,4,6,4,5,5,9,5,6,5,8,6,8,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,7,13,7,7,6,9,6,9,9,17,10,12,10,17,11,16,16,34,17,17,12,17,10,11,9,16,9,9,7,10,7,9,8,19,10,11,8,12,7,9,8,14,8,8,7,11,7,10,10,21,11,11,7,10,6,7,6,10,6,7,6,10,6,8,8,16,9,9,6,9,6,8,7,12,7,8,7,12,9,13,13,22,11,11,8,12,7,8,7,11,6,7,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,6,5,7,5,8,8,15,8,8,5,7,4,4,3,4,3,4,3,5,3,4,4,9,5,6,5,7,5,6,6,11,7,8,6,10,7,11,11,19,10,11,8,11,6,7,6,11,6,6,5,8,5,7,6,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,8,5,5,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,5,5,9,5,5,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,10,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,8,7,12,8,12,11,27,14,14,10,14,8,10,8,14,8,8,6,9,6,8,8,16,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,4,5,5,10,6,7,6,9,6,9,9,19,10,9,7,10,6,7,6,9,5,5,4,6,4,5,5,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,6,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,4,3,5,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,4,5,3,4,3,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,5,9,5,6,4,6,4,6,6,11,6,7,6,10,7,10,10,21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,6,12,6,6,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,7,5,7,4,5,4,6,4,4,4,7,5,6,5,10,6,6,4,6,4,6,5,7,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,5,4,5,3,3,2,3,2,2,2,4,3,3,3,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,5,3,3,2,3,3,4,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,8,7,16,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,17,9,8,6,9,6,6,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,4,5,4,5,4,6,4,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,5,3,3,3,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-5,-5,-12 +-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-6,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,1,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,5,8,5,7,7,13,7,7,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,10,6,8,8,15,9,10,8,14,10,14,14,28,15,15,10,15,9,10,8,14,8,8,6,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,16,9,9,6,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,7,7,10,6,7,6,11,8,12,12,17,9,9,7,10,6,7,6,10,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,5,7,7,12,6,6,5,7,4,5,4,4,3,3,3,4,3,3,3,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,5,3,3,3,5,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,6,4,4,3,6,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,21,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,11,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,7,4,6,6,10,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,6,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,8,6,8,8,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,3,4,3,3,3,5,3,4,3,4,3,5,5,8,4,4,4,5,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,3,5,4,4,4,6,4,6,6,14,7,7,5,8,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-8,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,3,3,4,2,2,2,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,9,6,8,7,13,8,10,8,13,9,14,14,25,13,14,10,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,8,7,11,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,13,7,7,5,8,5,7,7,11,6,7,6,11,8,11,11,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,8,6,8,7,13,7,6,4,6,4,5,4,6,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,20,10,10,7,11,6,7,6,9,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-5,-3,-4,-3,-5,-3,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,6,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,8,7,13,8,10,8,13,9,13,13,24,13,13,9,14,8,10,8,14,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,12,7,7,5,8,5,7,6,11,6,7,6,11,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,5,5,8,5,7,7,13,7,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,4,5,4,7,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,9,5,5,4,6,4,6,6,10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21 +-10,-5,-5,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-17,-8,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-24,-11,-11,-7,-12,-6,-7,-6,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,0,0,0,0,0,0,0,0,0,1,-5,-2,-2,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,2,3,3,5,3,3,3,5,4,5,5,3,2,2,2,4,3,4,4,6,3,3,3,4,3,5,5,8,5,5,5,8,5,7,7,12,7,8,7,12,8,11,11,22,11,11,8,12,7,8,7,11,6,6,4,6,4,6,6,10,6,7,6,9,6,8,7,12,7,8,7,11,8,12,12,24,13,13,9,14,8,10,9,15,9,10,8,14,9,13,13,24,13,14,11,18,11,15,14,26,15,18,15,27,18,26,26,46,24,24,16,23,14,17,15,26,14,15,11,17,11,14,14,26,14,14,10,16,10,13,11,20,11,13,11,18,12,17,16,28,14,14,10,15,9,12,10,18,10,11,9,14,9,12,12,23,12,13,10,15,9,12,11,21,12,14,11,19,13,19,19,32,16,16,11,17,10,12,10,17,9,10,8,12,8,11,11,22,11,11,8,11,7,9,8,13,7,8,7,11,7,10,10,24,12,12,9,13,8,9,7,12,7,7,5,8,6,8,8,14,8,8,7,11,7,9,8,15,9,10,8,14,9,13,13,24,12,12,9,13,8,10,8,14,8,9,7,11,7,8,8,14,7,7,5,7,5,6,5,8,5,5,4,7,5,7,7,16,9,9,7,10,6,7,6,9,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,5,9,5,5,4,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,5,4,6,6,13,7,8,6,8,5,6,6,10,6,6,5,9,6,8,8,14,8,8,6,10,6,8,7,13,8,10,9,16,11,16,16,37,19,19,13,19,11,13,11,19,10,11,8,13,8,11,10,18,10,10,7,10,6,6,5,9,5,6,4,6,5,7,7,10,6,6,4,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,8,5,5,4,5,3,4,4,6,3,3,3,4,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-11,-5,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-13,-6,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-10,-6,-10,-10,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-8,-6,-10,-6,-10,-9,-19,-10,-13,-10,-19,-13,-20,-20,-42 +-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,3,2,2,2,3,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,13,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,24,13,13,9,13,8,9,8,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,6,5,8,5,7,7,13,7,7,5,8,5,7,6,11,7,8,6,10,7,10,10,17,9,9,6,9,6,7,6,9,5,6,5,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,4,4,8,5,5,4,6,4,5,4,7,5,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21 +-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,0,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,6,5,7,7,13,7,8,6,9,5,6,5,9,5,6,5,9,6,7,7,14,8,8,7,10,6,8,8,15,9,10,9,15,10,15,15,26,14,14,9,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,7,7,11,7,8,6,11,7,10,10,17,9,9,6,9,6,7,6,11,6,7,5,8,5,7,7,14,7,7,5,9,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,9,5,6,5,7,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,3,4,3,4,3,4,3,4,4,9,5,6,4,5,3,4,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,6,4,4,4,9,5,5,4,6,4,5,5,8,5,6,5,9,7,10,9,20,10,10,7,10,6,8,7,11,6,6,5,8,5,6,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,1,1,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-6,-4,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,3,4,4,5,5,10,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,20,10,10,7,11,6,7,6,12,6,6,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,5,5,7,4,4,4,5,4,5,5,9,5,5,4,5,4,5,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,3,2,3,2,3,3,3,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-6,-3,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,4,3,4,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,5,5,7,4,5,5,8,5,7,7,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,4,3,4,3,4,4,9,5,5,4,6,5,8,8,16,9,9,7,10,6,7,6,10,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,19,10,11,8,12,8,10,10,18,9,9,7,10,7,9,8,12,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,7,9,8,14,8,10,8,13,9,12,12,22,12,12,9,13,8,9,7,11,6,7,5,8,5,7,7,14,7,7,5,8,5,6,6,10,6,7,6,10,7,9,9,16,9,9,7,10,6,6,5,9,5,6,4,6,4,6,6,10,6,7,5,8,5,7,6,10,6,6,5,9,6,9,9,18,10,10,7,9,6,7,6,11,6,7,5,7,4,5,5,10,5,5,3,4,3,4,4,5,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,4,4,6,4,5,5,11,6,7,5,8,5,6,5,9,6,7,6,10,7,10,10,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,7,5,8,5,5,4,7,4,4,3,4,3,5,5,6,3,3,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-9,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-13,-26 +-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,20,10,10,7,11,6,7,6,12,6,7,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,3,3,7,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,5,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-3,-2,-3,-2,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16 +-5,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,4,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,5,8,5,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,5,4,6,6,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,14,8,9,7,10,6,8,7,14,8,10,9,14,10,14,15,26,13,13,9,14,8,10,8,15,8,9,7,10,7,9,9,14,8,8,6,8,5,6,6,10,6,6,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,7,6,8,6,8,8,13,7,8,6,8,5,6,6,11,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,7,10,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,10,5,5,4,6,4,6,5,7,4,5,4,7,5,8,8,15,8,8,6,7,5,6,5,10,5,5,4,6,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,5,3,4,3,4,2,2,2,4,3,3,3,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,5,10,6,6,5,7,5,6,5,9,5,6,6,9,7,10,10,19,10,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,5,3,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,8,14,8,8,6,10,6,8,8,13,7,8,6,8,5,6,6,9,6,6,5,9,6,9,9,15,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,12,7,7,6,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,7,9,6,6,6,9,6,6,5,7,5,6,6,9,5,6,5,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,7,5,6,5,9,5,5,4,5,4,4,4,9,5,5,4,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,6,5,9,5,5,4,7,5,6,5,9,5,6,6,9,6,9,9,18,9,9,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-20 +-8,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-21,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16,-7,-7,-5,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-5,-2,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,1,1,2,3,2,3,3,5,4,6,6,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,5,9,5,5,4,6,4,5,5,10,6,7,6,10,7,10,10,21,11,10,7,10,6,7,6,10,6,6,5,8,5,6,6,13,7,8,6,10,6,8,7,13,7,8,6,10,7,11,11,19,10,11,8,13,8,11,10,17,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,47,24,24,16,24,14,17,15,26,14,15,11,18,12,16,15,24,12,12,9,13,8,11,10,17,10,11,9,15,11,16,16,29,15,15,11,17,10,12,10,18,10,11,9,14,10,14,14,22,12,12,9,15,9,12,11,20,11,12,10,17,12,17,17,31,16,17,12,17,10,11,10,17,9,10,8,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,13,12,23,12,11,8,11,7,9,8,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,8,7,12,8,12,12,25,13,13,9,14,8,10,9,16,8,8,6,9,6,8,8,16,9,9,6,8,5,6,6,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,4,3,4,3,4,4,6,4,4,4,6,4,4,4,4,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,5,8,5,6,5,8,5,5,5,8,6,8,9,16,9,10,8,12,8,10,9,17,10,12,10,17,11,16,16,33,17,17,12,17,10,12,10,18,10,11,8,12,7,9,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-8,-5,-7,-6,-12,-6,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,5,4,6,4,5,4,7,4,5,4,6,5,7,7,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,14,10,14,8,10,9,15,8,9,7,10,7,9,9,14,7,7,5,8,5,7,6,10,6,7,6,9,6,9,9,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-3,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-3,-1,-1,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,7,5,7,7,14,7,7,5,7,5,6,5,8,4,4,4,5,3,4,4,9,5,5,4,6,4,5,5,8,5,5,4,8,6,8,8,13,7,7,6,8,5,7,6,11,7,8,6,10,7,9,9,17,9,10,8,11,7,10,9,17,10,12,10,17,12,18,18,32,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,9,6,9,6,8,7,11,7,8,6,10,7,11,11,20,10,10,7,12,7,8,7,13,7,8,6,9,7,10,9,15,8,8,6,11,7,9,8,14,8,8,7,11,8,12,12,21,11,12,8,11,7,8,7,11,6,7,6,8,6,8,7,12,6,6,5,8,5,6,6,9,6,7,6,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,12,7,7,5,7,5,6,5,8,5,6,5,9,6,8,9,17,9,9,6,9,6,7,6,10,6,6,5,6,4,6,6,11,6,6,4,6,4,4,4,8,5,5,4,5,3,4,4,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,0,-1,0,0,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-9,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-13,-27 +-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,4,5,4,4,4,6,4,5,4,7,5,7,7,11,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,15,10,15,15,27,14,15,10,15,9,10,8,14,8,9,7,10,7,9,8,15,8,8,6,8,5,6,6,10,6,7,6,9,6,10,10,17,9,9,6,10,6,7,6,11,6,7,5,8,6,8,8,13,7,7,6,9,6,7,7,12,7,7,6,10,7,10,10,18,10,10,7,10,6,7,6,9,5,6,5,7,5,7,6,10,6,6,4,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,4,7,4,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-8,-4,-6,-5,-9,-6,-9,-9,-19,-9,-9,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-5,-4,-10,-5,-7,-5,-10,-6,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-27,-13,-12,-8,-12,-6,-8,-6,-12,-5,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,1,1,1,3,2,2,2,3,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,8,5,7,6,10,7,9,9,18,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,7,6,9,6,7,6,10,6,8,7,11,8,11,11,20,11,11,8,12,8,10,9,17,9,10,8,14,9,13,13,25,13,14,11,17,11,14,13,24,14,17,15,26,18,26,26,49,25,26,18,26,15,17,14,24,13,15,11,18,11,15,14,26,13,13,9,14,9,11,10,17,10,11,9,16,11,17,17,30,16,16,11,17,10,11,10,18,10,11,9,14,10,14,13,22,12,13,10,16,10,12,11,20,11,13,10,17,12,17,17,32,17,17,12,17,10,11,10,16,9,10,8,12,8,10,10,18,10,10,7,11,7,8,8,14,8,9,7,12,8,12,12,21,11,12,8,12,7,8,7,13,7,8,6,10,7,9,8,16,9,9,7,10,6,7,7,13,8,9,7,12,8,12,13,26,14,14,10,14,8,10,9,15,8,9,7,10,7,9,8,14,7,7,5,8,5,6,6,11,6,6,5,7,5,7,7,13,7,7,5,6,4,4,3,7,4,5,4,6,4,5,4,5,3,4,3,4,3,4,3,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,6,4,5,4,8,5,5,5,8,6,8,9,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,15,8,8,6,8,5,6,5,9,5,6,5,7,4,5,5,9,5,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-11,-7,-12,-6,-8,-6,-14,-7,-7,-5,-10,-6,-9,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-10,-12,-10,-18,-12,-19,-19,-40 +-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-4,-3,-6,-3,-5,-5,-12,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,7,4,6,5,8,5,7,7,14,8,8,6,8,6,7,6,12,6,7,6,10,7,9,9,17,9,10,8,12,8,10,9,16,10,12,10,18,12,18,18,33,17,17,12,18,10,12,10,16,9,10,8,12,8,10,10,18,9,9,7,10,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,10,9,15,8,9,7,11,7,8,8,14,8,9,7,12,8,12,12,22,12,12,8,12,7,8,7,11,6,7,6,8,6,7,7,12,7,7,5,8,5,6,6,10,6,6,5,9,6,8,8,15,8,8,6,9,5,6,5,9,5,6,4,7,5,6,6,11,6,6,5,7,4,5,5,9,6,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,4,5,4,5,5,9,5,5,4,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,8,5,7,6,11,7,8,7,12,8,11,11,22,11,11,8,11,6,8,6,11,6,6,5,7,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-16,-8,-8,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-4,-3,-7,-4,-7,-6,-14,-7,-7,-4,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-13,-13,-26 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-2,-6,-3,-4,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-19,-9,-8,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-6,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,2,2,3,2,2,2,4,3,4,4,8,5,5,4,4,3,3,3,5,3,4,3,6,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,17,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,49,25,25,17,26,15,18,14,24,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,17,10,12,10,17,11,16,16,31,16,16,11,17,10,12,10,18,10,12,9,15,10,14,13,23,12,13,10,15,9,12,11,20,11,12,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,7,13,9,12,12,22,12,12,8,13,7,8,7,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,7,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,10,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,8,6,8,5,5,5,8,5,6,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-11,-7,-11,-10,-22,-11,-11,-7,-12,-6,-8,-7,-14,-7,-8,-6,-10,-6,-10,-9,-17,-9,-10,-7,-12,-7,-10,-10,-20,-10,-12,-10,-19,-13,-20,-20,-40 +-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-18,-8,-8,-5,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-13,-8,-13,-13,-27,-13,-13,-8,-12,-6,-7,-6,-12,-6,-6,-4,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,4,3,4,4,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,8,5,5,4,5,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,9,6,7,6,10,6,6,5,7,5,7,6,12,7,7,6,8,5,6,6,10,6,8,7,11,7,10,10,20,11,11,8,12,8,10,9,16,9,10,8,15,10,14,13,25,13,14,11,18,11,14,13,24,14,17,14,26,18,26,26,50,25,25,17,26,15,18,14,25,13,14,11,17,11,14,14,26,14,14,10,15,9,12,10,18,10,12,10,17,11,16,16,31,16,16,11,16,10,12,10,18,10,12,9,15,10,13,13,23,12,13,10,15,9,12,11,20,11,13,10,18,12,18,17,33,17,17,12,17,10,12,10,17,9,10,8,12,8,10,10,17,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,22,12,12,8,13,8,9,8,14,8,8,6,10,6,8,8,16,9,9,7,11,7,8,7,13,8,9,8,13,9,13,13,25,13,14,10,14,8,10,9,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,15,8,9,7,11,7,9,9,16,10,12,10,17,11,16,16,32,16,16,11,16,9,11,9,16,8,8,6,9,6,7,7,13,7,7,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-8,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-10,-22,-11,-11,-7,-11,-6,-8,-7,-14,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-12,-7,-10,-10,-20,-10,-13,-10,-19,-13,-20,-20,-40 +-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,2,2,3,2,3,3,4,3,3,3,4,3,5,5,10,6,7,6,10,7,11,11,22,12,12,9,13,8,10,9,17,10,12,10,16,11,16,16,30,16,17,12,19,12,16,15,28,16,19,15,26,18,27,27,53,27,27,19,29,17,20,17,31,17,18,13,20,13,17,17,32,17,17,12,18,11,14,13,25,14,16,13,23,16,24,24,46,24,25,17,26,15,19,17,31,17,20,16,28,19,28,27,53,28,30,22,36,22,30,28,52,30,36,30,53,36,53,53,106,54,54,36,54,30,36,30,53,28,30,22,36,22,30,28,53,27,28,20,32,19,24,21,38,21,24,19,33,21,30,30,58,29,29,20,29,17,21,18,31,17,18,14,23,15,21,21,40,21,21,15,23,14,18,16,30,17,19,16,28,18,26,26,51,26,27,19,28,16,20,17,30,16,17,13,22,14,19,17,32,17,18,13,21,13,16,14,26,15,18,15,26,17,25,25,49,25,25,18,27,16,21,19,34,19,21,16,26,17,24,24,46,24,26,19,30,18,24,23,43,24,29,24,43,29,44,44,86,43,43,29,42,24,28,23,41,22,23,17,28,17,23,21,40,21,21,15,23,14,17,14,25,14,16,13,22,15,21,21,40,21,21,15,24,14,18,16,28,16,18,14,23,15,20,20,38,20,21,16,25,15,20,19,35,20,23,19,33,22,33,33,64,33,33,23,34,19,23,20,35,19,20,16,26,16,22,21,40,21,22,16,25,15,20,18,34,19,23,19,32,21,31,31,61,32,33,23,35,21,26,23,41,22,25,20,34,22,31,30,58,31,33,24,38,23,30,28,52,29,34,28,50,34,50,50,99,50,51,34,51,29,35,29,51,27,28,21,33,20,26,24,46,24,24,17,27,16,20,17,30,17,19,16,28,18,26,26,50,25,25,17,26,15,19,16,29,15,16,12,20,13,17,17,32,17,17,12,19,12,15,14,27,15,17,14,24,16,22,22,42,22,22,15,22,13,15,12,21,11,12,10,16,10,14,13,23,12,13,10,16,10,13,12,22,13,15,13,22,14,20,20,39,20,20,14,21,13,16,14,25,14,16,12,20,13,19,19,36,19,21,16,25,16,21,20,38,21,25,21,37,25,38,38,74,38,38,26,38,22,26,22,39,21,22,17,27,17,22,20,37,19,20,15,24,15,19,17,30,17,20,16,27,18,26,26,50,26,26,18,27,16,19,16,27,15,17,13,22,14,19,18,34,18,18,13,21,13,16,15,27,15,18,15,26,18,26,26,50,25,25,17,25,14,16,14,24,13,14,11,19,12,16,15,28,15,16,11,17,10,13,12,23,13,16,14,24,16,23,23,46,24,24,17,25,15,18,16,28,16,18,15,25,16,23,22,43,23,25,19,30,18,24,22,42,23,27,22,39,26,38,38,76,38,38,26,38,22,26,23,41,22,24,18,29,18,24,23,44,23,24,17,25,15,18,16,29,16,17,14,23,15,22,21,41,21,22,15,22,13,15,13,23,13,14,11,19,13,18,17,32,17,18,13,20,12,16,15,27,15,18,15,27,19,28,28,56,29,29,20,29,17,20,17,30,16,17,12,19,12,15,14,25,13,13,10,15,10,13,12,22,12,13,11,18,12,17,17,32,16,16,11,16,9,11,9,16,9,10,8,13,9,12,12,22,12,12,9,14,9,12,11,19,11,13,11,18,12,17,16,30,16,16,11,15,9,11,9,15,8,8,6,8,5,5,4,6,3,2,1,1,1,1,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-9,-6,-10,-5,-7,-6,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-10,-7,-11,-6,-8,-8,-16,-8,-10,-9,-17,-11,-17,-17,-34,-17,-18,-12,-19,-10,-13,-11,-21,-11,-13,-10,-19,-12,-18,-18,-38,-20,-22,-16,-27,-16,-23,-21,-42,-23,-27,-23,-42,-27,-40,-40,-81 +-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,27,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,8,7,13,8,9,7,12,8,12,12,23,12,13,9,13,8,10,9,16,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,27,18,27,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,11,9,16,9,10,8,12,8,11,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,14,26,14,14,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,11,7,8,8,13,8,10,8,14,9,13,13,25,13,13,10,14,9,11,10,17,10,11,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,21,11,12,9,14,9,12,11,20,11,11,8,12,7,9,8,13,7,8,7,11,8,11,11,20,11,11,8,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,13,8,10,10,18,10,12,10,17,12,17,17,32,17,17,12,18,10,12,10,18,10,11,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,17,12,18,11,13,12,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,18,15,26,14,14,11,17,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,8,11,11,20,11,13,11,19,13,20,20,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,14,8,9,7,12,8,10,10,17,9,9,7,11,7,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,6,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,13,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,8,8,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,9,6,9,8,16,8,8,6,8,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-13,-8,-11,-10,-21,-11,-13,-11,-20,-13,-20,-20,-40 +-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-3,-1,-1,0,0,1,1,1,0,1,2,2,1,1,2,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,6,6,11,6,6,5,7,5,6,5,8,5,6,5,9,6,8,8,15,8,9,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,10,15,9,10,9,16,9,9,7,11,7,9,9,17,9,10,7,10,6,8,7,14,8,9,7,12,8,12,12,23,12,12,9,13,8,10,9,17,9,10,8,14,10,14,14,27,15,16,12,18,12,16,14,26,15,18,15,26,18,26,27,53,27,27,18,27,15,18,15,27,14,15,12,19,12,16,15,27,14,15,11,16,10,12,11,19,11,12,10,17,11,16,15,29,15,15,10,15,9,10,9,16,9,10,8,12,8,12,11,21,11,11,8,12,8,10,9,16,9,10,9,15,10,14,13,27,14,15,10,15,9,10,9,15,8,9,7,11,7,10,9,16,9,9,7,10,6,8,8,13,8,10,8,14,9,13,13,25,13,14,10,14,9,11,10,17,9,10,8,14,9,12,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,22,22,43,22,22,15,21,12,14,12,20,11,12,9,14,9,12,11,20,11,11,8,11,7,8,7,13,7,8,7,11,8,11,11,20,11,12,9,13,8,9,8,14,8,9,7,12,8,11,11,19,10,11,8,12,8,10,10,18,10,12,10,16,11,17,17,32,16,16,11,18,10,12,10,19,11,12,9,14,9,12,11,20,11,12,9,13,8,10,9,17,10,12,10,17,11,16,16,31,16,16,12,18,11,13,11,21,12,13,10,17,11,16,16,30,16,17,12,20,12,16,15,27,15,18,15,25,17,26,26,50,26,26,18,26,15,17,15,26,14,14,11,18,11,14,13,24,13,13,9,14,8,10,9,15,9,10,9,15,10,14,13,25,13,13,9,13,8,10,9,16,9,9,7,11,7,10,9,16,9,9,7,10,6,8,8,14,8,9,8,13,9,12,11,22,12,12,8,11,7,8,6,11,6,7,5,8,5,7,7,12,7,7,5,8,5,7,7,11,7,8,7,12,8,11,11,20,11,11,8,11,7,8,7,13,7,8,7,11,7,10,10,18,10,11,8,13,9,12,11,20,12,14,11,20,14,20,20,38,20,20,13,19,11,14,11,20,11,12,9,14,9,12,11,19,10,11,8,12,8,10,9,16,9,10,8,14,10,14,13,25,13,14,10,14,8,10,8,13,7,8,7,12,8,10,10,17,9,9,7,10,6,8,8,14,8,10,8,13,9,14,14,25,13,13,9,13,8,9,8,13,7,8,6,10,7,9,8,14,8,9,7,9,6,7,7,12,7,8,7,13,9,12,12,23,12,12,9,13,8,10,8,15,9,10,8,13,9,12,12,22,12,13,10,16,10,12,12,22,12,14,12,19,13,20,20,38,19,19,13,20,12,14,12,21,11,12,9,15,9,12,12,23,12,12,9,14,8,10,9,15,8,9,7,12,8,11,11,21,11,11,8,11,7,8,7,13,7,8,6,10,7,9,9,16,9,10,7,11,7,8,7,14,8,10,8,14,10,14,14,29,15,15,10,15,9,10,9,15,8,8,6,10,6,8,8,13,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,7,5,6,5,8,4,4,3,5,3,3,3,4,2,2,1,1,1,0,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-10,-7,-12,-7,-10,-10,-21,-11,-14,-11,-20,-13,-20,-20,-41 +-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,7,4,6,6,10,6,7,6,9,7,10,10,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,12,6,7,5,7,4,6,5,10,6,7,6,9,6,9,9,16,9,9,6,9,6,7,6,12,7,7,6,10,7,10,10,18,10,11,8,12,8,11,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,11,8,13,8,11,10,19,10,10,8,11,7,8,8,13,7,8,7,12,8,11,10,19,10,10,7,11,6,7,6,11,6,7,5,8,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,7,9,9,18,10,10,7,11,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,4,6,5,9,6,7,6,10,6,9,9,17,9,9,6,9,6,7,7,12,6,7,6,10,6,9,8,15,8,9,7,10,6,8,8,14,8,10,9,15,10,15,15,29,15,15,10,15,9,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,7,7,14,8,8,6,9,5,6,6,9,5,6,5,8,6,7,7,13,7,8,6,8,6,7,7,12,7,8,7,11,8,11,11,22,11,11,8,12,7,9,8,13,7,8,6,9,6,8,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,12,9,14,8,11,10,18,10,12,10,17,12,17,18,34,17,17,12,18,10,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,7,6,10,6,7,6,10,7,10,9,17,9,9,6,9,6,7,6,11,6,6,5,8,5,7,6,11,6,6,5,7,5,6,6,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,26,14,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,8,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,10,6,7,6,9,5,6,5,8,6,7,7,12,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,7,5,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,8,8,15,8,9,7,11,7,8,8,15,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,8,6,10,6,9,8,16,8,8,6,10,6,7,6,10,6,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,4,7,5,6,6,11,6,7,5,8,5,6,5,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,4,2,2,2,3,2,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-27 +-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,1,1,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,-4,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,4,4,6,5,7,7,10,6,6,4,6,4,5,5,8,5,7,6,10,7,9,9,16,8,8,6,9,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,10,9,15,8,9,7,10,7,9,8,17,9,9,7,10,6,8,8,14,8,9,8,13,9,13,13,24,12,12,9,13,8,10,9,17,10,11,9,15,10,14,14,27,14,15,11,18,12,16,15,26,15,18,15,26,18,26,26,52,26,26,18,27,16,19,16,27,15,16,12,20,13,17,15,28,15,15,11,16,10,13,11,18,10,12,10,17,11,15,15,28,15,15,11,16,9,11,9,16,9,9,7,12,8,12,11,20,11,12,9,14,8,10,9,15,9,10,8,14,9,13,13,27,14,15,11,16,9,11,9,16,9,9,7,11,7,9,9,16,9,9,7,10,6,8,7,13,8,10,8,14,9,13,13,24,13,13,9,13,8,10,9,17,10,11,9,14,9,13,12,22,12,13,9,14,9,12,11,20,12,14,12,22,15,22,21,42,22,22,15,22,13,15,12,20,11,11,9,14,9,12,11,21,11,11,8,11,7,8,7,14,8,9,7,12,8,10,10,21,11,12,8,12,7,8,7,13,8,9,7,12,8,11,10,20,11,11,8,12,8,10,9,18,10,11,9,16,11,16,16,33,17,17,12,17,10,13,11,19,10,11,8,13,8,11,10,20,11,11,8,13,8,10,9,16,9,11,9,16,11,16,16,31,16,17,12,17,10,13,11,19,11,13,11,18,12,16,15,31,17,18,13,20,12,16,15,27,15,17,14,25,17,25,26,50,25,25,17,26,15,18,15,26,14,15,11,18,11,14,13,25,13,13,9,14,9,11,10,15,9,11,9,15,10,14,14,24,13,13,9,14,9,11,9,16,9,9,7,11,7,10,9,15,8,9,7,11,7,8,8,12,7,8,7,12,8,11,11,23,12,12,8,12,7,8,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,7,6,11,7,8,7,11,7,10,10,19,10,10,7,10,6,8,7,13,8,9,7,12,8,11,10,19,10,11,8,13,8,11,11,19,11,13,11,20,14,20,19,38,20,20,14,20,12,14,11,20,11,11,9,14,9,11,11,21,11,12,8,12,8,10,9,17,9,10,8,14,9,13,13,26,14,14,10,14,8,9,8,13,8,9,7,12,8,10,9,17,9,10,7,10,6,8,8,15,9,10,8,14,10,14,13,26,14,14,9,13,8,10,8,13,7,8,6,10,7,9,8,14,8,8,6,10,6,7,7,12,7,8,7,12,8,11,11,22,12,12,8,12,7,9,8,14,8,10,8,13,9,12,11,22,12,13,10,15,9,12,12,21,12,13,11,19,13,19,20,38,19,19,13,20,12,14,12,20,11,12,9,14,9,13,12,23,12,12,9,14,8,10,9,15,9,10,8,12,8,12,12,21,11,11,8,12,7,8,7,13,7,8,6,10,6,8,8,15,8,9,7,11,7,9,8,14,8,10,8,14,10,14,15,29,15,15,10,15,9,10,9,15,8,9,7,11,7,9,8,13,7,8,6,8,5,7,7,12,7,8,6,10,7,10,9,15,8,8,6,8,5,5,5,10,6,6,5,8,5,6,6,11,6,6,4,6,4,6,6,9,5,6,5,8,6,8,8,16,8,7,5,6,4,5,4,7,4,5,4,5,3,3,3,3,2,2,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-17,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-5,-9,-6,-9,-8,-20,-10,-11,-7,-12,-7,-10,-9,-21,-11,-13,-11,-20,-13,-20,-20,-41 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,7,7,5,8,5,6,5,10,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,11,9,15,8,9,7,11,7,10,9,16,9,9,6,9,6,7,6,10,6,7,6,10,7,9,9,16,9,9,6,9,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,6,9,6,6,5,8,6,8,8,16,8,9,6,9,6,7,5,9,5,5,4,7,4,5,5,10,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,24,12,12,9,13,8,9,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,5,4,8,5,5,4,7,5,6,6,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,7,5,6,6,10,6,7,6,9,6,9,9,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,8,5,6,5,9,6,7,6,9,7,10,10,18,10,10,7,10,6,7,6,11,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,8,15,10,15,15,29,15,15,10,15,9,10,9,15,8,9,7,10,6,8,8,14,8,8,6,8,5,7,6,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,6,5,9,5,5,4,7,4,5,5,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,7,5,7,6,11,6,7,5,8,5,7,7,11,7,8,7,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,6,5,8,5,7,6,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,12,22,11,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,8,5,6,6,9,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,8,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-6,-10,-6,-10,-10,-22 +-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,6,4,6,6,11,6,6,5,6,4,6,6,10,6,6,5,9,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,5,8,5,6,6,10,6,7,6,9,7,10,10,17,9,9,6,9,6,7,6,11,7,8,6,11,7,10,10,18,10,10,8,12,8,10,10,17,10,12,10,18,12,18,18,36,18,18,12,18,11,13,11,17,9,10,8,12,8,12,11,18,10,10,7,11,7,8,7,12,7,8,7,12,8,11,11,18,10,10,7,10,6,7,6,11,6,6,5,9,6,8,8,14,8,8,6,10,6,7,6,11,7,8,6,10,7,9,9,19,10,10,7,11,7,8,6,11,6,6,5,8,5,6,6,12,6,6,5,7,5,6,5,9,5,6,6,10,7,10,9,17,9,9,7,10,6,8,7,12,7,7,6,9,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,10,14,14,28,14,14,10,15,9,10,8,13,7,8,6,10,6,8,7,14,8,8,6,7,4,5,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,8,5,5,5,7,5,8,7,13,7,8,6,9,6,7,7,12,7,8,7,10,7,10,10,22,12,12,8,12,7,8,7,14,8,8,6,9,6,8,8,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,21,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,21,11,12,9,13,8,10,10,18,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,11,7,10,10,16,9,9,7,9,5,6,6,11,6,6,5,8,5,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,9,14,9,13,13,26,14,14,10,14,8,10,8,13,7,8,6,10,6,8,7,15,8,8,6,8,5,6,6,12,7,8,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,6,11,7,8,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,9,6,8,7,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,26,14,14,9,13,8,10,9,14,8,8,6,10,7,9,9,15,8,8,6,10,6,8,7,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,10,6,6,5,7,5,6,5,9,5,6,5,10,7,10,10,20,10,10,7,10,6,8,6,10,6,6,5,7,5,6,6,8,5,6,4,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-8,-7,-12,-8,-12,-13,-27 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,5,4,7,4,5,5,10,6,6,5,7,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,10,6,8,8,15,9,10,8,15,10,15,15,30,15,15,10,15,9,10,9,14,8,8,6,10,7,10,9,15,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,6,6,5,9,6,8,8,16,8,8,6,9,6,7,6,9,5,5,4,7,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,11,6,7,5,8,5,7,6,12,7,7,5,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,8,8,18,10,10,7,10,6,7,6,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,7,6,10,7,9,9,18,10,10,8,11,7,9,8,15,9,10,9,15,10,15,15,30,15,15,10,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,6,7,6,10,6,6,5,9,6,9,9,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,8,5,7,7,13,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,4,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,9,8,12,8,11,11,22,12,12,8,12,7,8,7,11,6,7,6,9,6,7,6,12,7,7,5,7,4,5,5,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,7,4,5,5,9,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,4,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,5,9,5,5,5,8,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,5,4,7,5,7,7,13,7,7,5,7,4,5,4,8,5,5,4,7,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,6,7,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22 +-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,2,1,1,1,2,2,2,3,5,3,4,3,5,4,6,6,8,4,4,3,5,4,5,5,8,5,6,5,9,6,8,8,16,9,10,7,11,7,10,9,16,9,10,8,13,9,13,13,25,13,14,10,14,9,11,9,16,9,9,7,12,8,10,9,17,9,10,7,11,7,8,8,14,8,9,8,14,10,14,14,25,13,14,10,15,9,11,9,16,9,11,9,15,10,14,14,26,14,15,11,18,11,15,14,26,15,18,15,25,17,25,26,53,27,27,18,27,15,17,14,25,13,14,11,18,12,16,15,27,14,15,11,16,10,12,10,18,10,12,10,17,11,16,16,27,14,14,9,13,8,9,8,14,8,9,7,11,8,11,11,20,10,10,7,11,7,9,9,16,9,10,9,15,10,14,13,27,14,13,9,13,8,9,8,15,8,9,7,11,7,9,8,17,9,9,7,10,7,9,8,14,8,10,8,14,10,14,14,26,14,14,10,15,9,10,9,16,9,10,8,13,8,11,11,21,11,12,9,14,9,11,11,20,12,14,12,21,14,21,21,40,20,20,13,19,11,14,12,20,11,12,9,13,8,11,10,20,10,10,7,11,7,8,7,12,7,8,6,10,7,10,10,20,10,10,7,11,7,8,7,12,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,16,9,11,9,16,11,15,15,32,17,17,12,19,11,14,12,20,11,12,9,13,8,11,11,21,11,12,9,14,9,11,9,16,9,11,10,17,12,17,17,32,17,17,12,17,10,12,10,18,10,12,9,15,11,16,16,32,17,18,13,20,12,16,14,26,15,18,16,28,19,27,27,53,27,27,19,28,16,18,15,26,14,14,10,16,10,13,12,25,13,14,10,16,10,12,10,18,10,12,10,17,11,15,15,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,14,7,7,5,8,5,7,7,12,7,8,7,13,9,12,12,22,11,11,7,10,6,7,6,10,6,7,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,8,6,10,7,10,10,19,10,10,7,11,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,15,9,12,12,22,13,15,13,22,15,21,20,39,20,19,13,19,11,14,12,20,11,12,9,13,8,11,11,21,11,11,8,12,8,10,9,16,9,10,8,13,9,13,13,26,13,13,9,14,8,10,9,15,8,9,7,11,7,9,9,16,9,9,7,10,7,9,8,15,9,10,9,15,10,14,14,27,14,14,10,15,9,10,8,13,7,8,6,10,7,10,10,15,8,9,7,11,7,9,8,14,8,9,8,13,9,12,12,21,11,12,8,12,7,9,8,15,8,9,7,11,8,11,10,21,11,12,9,14,9,12,11,20,12,14,12,21,14,20,20,39,20,21,14,21,12,14,12,20,11,11,9,14,9,13,12,23,12,12,8,12,7,9,8,14,8,9,8,13,8,11,11,23,12,12,8,12,7,9,8,13,7,8,6,9,6,9,8,14,8,8,6,9,6,8,8,14,8,10,9,15,10,14,14,30,16,16,11,15,9,10,8,14,8,8,7,11,7,9,8,11,6,6,5,8,5,6,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,7,6,10,6,6,5,9,6,8,8,11,6,6,4,6,4,5,5,8,5,6,5,8,6,8,7,13,7,7,5,6,4,4,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-7,-6,-11,-5,-6,-5,-10,-6,-9,-8,-19,-10,-11,-8,-14,-8,-11,-10,-20,-11,-13,-11,-20,-13,-19,-19,-40 +-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,6,4,6,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,8,14,8,10,8,13,9,14,14,28,14,14,10,14,8,9,8,14,8,8,6,10,7,9,8,15,8,8,6,9,6,7,6,10,6,7,6,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,9,6,8,8,17,9,9,7,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,9,5,6,6,9,6,9,9,17,9,9,6,9,6,7,6,10,6,7,6,9,6,9,9,17,9,10,7,11,7,9,8,14,8,10,9,15,10,15,14,28,14,14,10,15,9,10,8,14,8,8,6,9,6,7,7,13,7,8,6,9,5,6,6,10,6,7,6,9,6,8,8,13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,7,5,7,6,12,7,7,5,8,5,7,7,12,7,8,7,12,8,11,11,20,10,10,7,10,6,8,7,11,6,7,5,7,5,6,6,11,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,5,8,5,5,4,5,4,5,5,8,5,6,5,8,6,8,8,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-20 +-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,3,6,4,4,3,5,4,6,6,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,6,6,9,5,6,5,6,4,5,5,8,5,6,5,9,6,8,8,15,8,8,6,9,5,6,5,10,6,6,5,8,6,8,8,15,8,8,6,10,7,9,8,15,9,10,8,14,10,15,15,30,15,15,11,15,9,10,9,15,8,8,7,10,7,10,9,16,8,8,6,10,6,7,6,12,7,8,6,10,7,9,9,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,5,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,6,4,6,5,11,6,6,4,7,5,6,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,9,5,6,5,8,5,6,6,12,7,8,6,9,5,6,6,12,7,8,7,12,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,4,5,4,8,5,6,5,6,4,6,6,11,6,6,4,6,4,4,4,7,5,6,4,7,5,6,6,10,6,6,5,7,5,6,5,10,6,6,5,9,6,8,8,19,10,10,7,10,6,7,7,11,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,6,7,6,10,7,10,10,18,10,10,7,10,6,7,6,11,7,8,6,10,7,10,10,17,9,10,8,12,7,9,8,14,8,10,9,16,11,16,15,29,15,15,11,15,9,10,9,15,8,8,6,9,6,8,7,14,8,8,6,9,5,6,6,11,6,7,6,9,6,8,8,14,8,8,6,7,5,6,5,8,5,6,4,7,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,6,5,7,4,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,7,5,6,5,8,6,8,7,13,7,8,6,9,6,7,7,13,8,9,8,13,9,12,12,21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,12,6,6,5,7,5,6,5,10,6,6,5,8,6,8,8,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,5,9,5,6,5,6,4,5,5,10,6,6,5,8,6,8,8,16,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,6,5,8,6,8,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,11,23,12,12,8,12,7,9,7,11,6,6,5,8,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,8,5,6,6,14,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,5,7,5,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-21 +-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,7,4,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,5,7,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,6,6,5,8,5,5,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,6,5,7,4,5,5,9,5,6,5,9,6,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,5,4,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,6,5,9,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,9,6,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,6,5,7,5,6,5,10,6,6,5,7,4,5,4,8,5,5,4,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,16,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,5,8,4,5,4,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,8,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,6,4,5,5,10,5,5,4,5,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,13,7,6,4,7,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,4,3,4,5,5,3,3,3,4,3,3,3,7,4,4,3,5,4,5,6,10,6,6,5,8,5,7,7,11,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,11,6,6,5,8,5,7,7,11,6,6,5,8,5,7,6,10,6,7,6,10,7,10,10,17,9,10,7,10,6,7,7,12,7,7,6,10,7,10,10,18,10,10,8,13,8,11,10,18,10,12,10,18,12,17,17,36,18,18,12,18,10,12,10,18,10,11,8,12,8,11,11,19,10,11,8,12,7,8,7,15,8,9,7,12,8,11,11,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,12,7,7,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,6,6,9,5,6,6,10,7,10,10,18,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,7,13,8,10,8,14,10,14,14,25,13,13,9,13,8,9,7,14,8,9,7,10,7,9,8,14,8,8,6,9,5,6,5,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,11,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,23,12,12,8,12,7,8,7,14,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,13,8,11,10,17,10,12,10,18,12,18,18,35,18,18,12,18,10,12,10,18,10,10,7,11,7,9,8,16,9,9,7,10,6,7,6,12,7,7,6,10,7,10,10,16,9,9,6,9,6,7,6,10,6,7,5,8,5,7,6,9,5,6,4,6,4,5,5,7,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,5,5,8,6,8,8,14,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,16,9,9,7,10,6,8,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,9,7,10,7,9,8,13,7,8,6,9,5,6,5,11,6,7,6,10,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,5,7,7,10,6,6,5,8,5,6,6,12,7,7,6,10,7,10,9,18,9,9,7,10,6,6,5,10,6,6,5,9,6,8,8,13,7,8,6,8,5,6,6,11,6,7,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,6,10,6,8,8,13,7,8,6,9,6,8,8,13,8,10,8,14,9,13,13,27,14,14,10,14,8,10,9,14,8,8,6,9,6,8,8,17,9,9,6,9,6,7,6,9,5,6,5,8,6,8,8,16,9,9,6,8,5,5,4,9,5,6,5,8,5,7,6,11,6,6,4,6,4,6,5,11,7,8,6,10,7,10,10,20,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-6,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,4,3,4,4,7,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,11,6,6,5,6,4,5,4,7,4,4,4,5,4,5,5,7,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,22,12,12,8,12,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,5,4,6,4,6,6,9,5,5,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,8,5,5,5,7,5,7,7,13,7,7,5,8,5,6,5,9,5,6,5,8,5,7,7,13,7,8,6,8,5,7,6,11,6,8,7,12,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,5,4,5,4,5,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,6,6,10,6,6,5,9,6,9,9,16,8,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,7,13,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-14 +-1,0,0,0,0,1,1,1,1,1,0,1,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,4,2,2,3,6,3,3,3,5,4,5,5,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,16,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,5,6,4,6,5,9,5,6,5,9,6,8,8,13,7,7,5,8,5,6,6,10,6,6,5,8,6,8,8,14,8,8,6,10,7,9,8,15,9,10,9,15,10,14,15,30,16,16,11,16,9,11,9,15,9,10,7,11,7,10,9,17,9,10,7,11,7,8,7,12,7,8,6,10,7,10,10,17,9,8,6,8,5,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,8,6,8,8,13,7,6,4,7,4,5,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,21,11,12,8,12,7,7,6,11,6,6,5,8,6,8,7,13,7,7,5,8,5,6,5,10,6,6,5,7,5,6,6,11,6,6,4,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,19,10,10,7,10,6,7,6,11,6,7,5,8,5,7,7,12,7,7,5,6,4,6,5,10,6,6,6,9,7,10,10,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,14,8,10,9,16,11,16,15,29,15,15,10,15,9,10,9,15,8,9,6,10,6,8,8,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,7,5,6,5,6,4,6,5,8,5,5,4,6,4,5,4,7,4,4,4,6,4,6,6,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,6,7,12,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,14,8,8,6,9,6,8,7,13,7,8,7,12,8,12,12,21,11,12,8,12,7,8,7,12,7,8,6,8,6,8,7,12,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,6,6,4,7,4,5,4,7,4,4,4,7,5,6,6,9,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,11,6,6,5,8,5,7,7,11,7,8,7,12,8,12,12,22,12,12,8,11,7,9,8,12,7,8,6,9,6,8,8,14,8,8,6,7,5,6,5,7,4,5,4,7,5,6,6,13,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,6,6,4,6,4,6,5,10,6,6,5,8,6,8,9,17,9,9,6,9,5,6,6,9,5,6,5,7,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-10,-10,-20 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,3,5,3,3,3,4,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,8,8,12,7,7,5,7,5,6,5,9,6,6,5,8,6,7,7,13,7,7,6,9,6,8,8,14,8,10,8,14,10,14,14,28,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,17,9,10,7,10,6,8,7,12,7,7,6,10,7,9,9,16,8,8,6,8,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,6,10,6,7,6,10,7,11,11,20,11,11,8,11,6,7,6,10,6,6,5,8,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,8,8,18,10,10,7,9,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,16,8,9,7,10,6,8,8,13,8,10,8,15,10,15,14,27,14,14,10,14,8,10,9,15,8,9,6,9,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,7,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,7,7,11,6,6,4,6,4,5,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,7,11,8,11,11,20,11,11,8,11,7,8,7,11,6,7,5,8,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,16,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,8,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-9,-9,-18 +-3,-1,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,-2,0,0,0,0,1,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-2,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,0,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,6,4,6,6,5,3,3,3,4,3,4,3,5,3,4,4,6,5,7,7,14,8,8,6,8,5,7,7,12,7,9,8,14,10,15,15,28,15,15,10,14,8,10,8,13,7,8,6,10,7,10,10,18,10,10,7,11,7,9,8,14,8,10,8,14,10,15,15,23,12,12,9,13,8,10,9,15,9,10,8,14,9,13,13,24,13,14,10,16,10,14,13,23,13,16,14,25,17,26,26,54,28,28,20,30,17,20,17,31,17,18,14,22,14,19,17,32,17,17,12,18,11,14,13,24,13,15,12,19,12,17,16,29,15,15,10,14,8,9,8,14,8,9,7,12,8,11,10,18,10,10,8,13,8,11,10,18,10,12,10,16,11,15,15,21,11,11,8,12,7,9,9,16,9,10,7,11,7,10,10,18,10,10,7,11,7,10,10,18,10,11,9,16,10,14,14,26,14,14,9,13,8,9,8,13,7,8,6,10,7,10,10,18,10,10,8,13,9,12,12,22,13,15,12,20,14,20,20,38,19,19,13,19,11,13,11,20,11,12,9,14,9,12,12,23,12,13,10,15,9,11,10,17,10,11,9,14,9,12,11,19,10,10,7,10,6,7,6,10,6,6,5,9,6,9,9,16,8,8,6,9,6,8,8,14,8,9,8,13,9,14,14,34,17,17,12,17,10,12,10,16,9,10,8,12,8,11,10,19,10,11,8,13,8,10,10,18,10,12,10,18,12,17,17,30,16,16,12,18,11,13,11,19,11,12,10,16,11,15,15,29,16,17,13,20,12,16,15,28,16,19,15,26,18,26,27,51,26,26,18,27,15,17,14,25,13,14,11,18,11,15,14,26,14,14,10,14,8,10,9,17,10,11,9,15,10,14,13,23,12,12,8,12,7,9,8,14,8,9,7,11,7,10,9,16,9,9,7,11,7,8,7,12,7,8,7,11,8,11,11,24,12,12,8,12,7,8,7,12,7,7,5,7,5,6,6,12,6,6,5,7,5,6,6,11,7,8,7,12,8,11,11,21,11,12,8,12,7,9,9,16,9,10,8,13,9,13,12,23,12,12,9,14,9,12,11,21,12,14,12,20,14,20,20,38,19,19,13,20,12,14,12,22,12,13,9,14,9,12,11,21,11,11,8,13,8,10,8,14,8,10,8,13,9,12,12,19,10,10,7,11,7,8,7,13,7,8,6,10,7,10,9,17,9,9,7,11,7,9,9,17,9,10,8,14,10,14,14,24,12,12,9,13,8,10,9,15,9,10,8,12,8,11,11,20,11,11,8,11,7,8,7,12,7,8,7,12,8,11,11,20,11,11,8,13,8,10,9,15,8,9,7,11,7,10,10,19,11,12,9,14,9,11,10,18,11,13,11,19,13,20,20,38,20,20,14,20,12,15,13,23,12,13,10,17,11,14,13,24,13,13,9,13,8,9,8,13,7,8,7,12,8,11,11,22,12,12,8,11,7,9,8,13,7,8,6,9,6,8,8,16,9,10,8,12,8,10,9,17,10,12,10,17,11,15,15,29,15,15,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,9,6,8,7,12,7,8,6,9,6,8,8,18,10,10,7,10,6,7,6,11,6,6,5,7,5,7,7,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,7,10,5,5,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,1,1,1,1,1,0,-1,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-21,-10,-10,-6,-10,-5,-7,-7,-14,-7,-8,-6,-10,-6,-8,-8,-16,-8,-8,-6,-11,-6,-9,-9,-18,-10,-12,-10,-19,-12,-18,-18,-36 +-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,7,5,8,8,14,8,8,5,8,5,6,5,7,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,6,5,7,5,8,8,12,7,7,5,7,5,6,5,8,5,6,5,8,5,7,7,13,7,8,6,9,6,8,7,12,7,9,8,13,9,14,14,28,15,15,11,16,9,11,9,16,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,15,8,8,6,7,4,5,5,8,5,5,4,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,11,6,6,5,7,4,5,5,8,5,6,4,6,4,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,5,7,4,5,4,7,4,4,3,5,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,8,5,5,4,7,5,7,8,18,9,9,6,9,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,15,8,9,7,11,7,9,8,15,9,10,8,14,10,14,14,26,14,14,10,14,8,9,8,13,7,8,6,9,6,8,8,14,7,7,5,8,5,6,5,9,6,6,5,8,6,8,7,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,11,6,6,5,7,4,5,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,20,10,10,7,11,7,8,7,12,7,7,5,8,5,7,6,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,7,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,10,6,7,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,6,9,6,8,7,13,7,7,5,7,4,5,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,6,9,6,8,8,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18 +-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,8,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,14,8,8,5,8,5,6,5,8,4,4,3,5,4,5,5,11,6,6,5,7,4,5,5,8,5,6,5,7,5,8,8,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,13,8,9,8,13,9,14,14,28,15,15,11,16,10,12,10,17,9,10,8,11,7,10,9,17,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,16,8,8,6,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,12,6,6,5,7,5,6,5,8,5,6,5,7,5,6,6,9,5,6,4,6,4,6,6,10,6,6,5,9,6,8,8,14,8,8,6,8,5,6,5,7,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,20,10,10,7,11,6,7,6,11,6,6,5,8,5,7,7,11,6,7,5,8,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,4,9,5,6,5,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,7,5,6,6,10,6,7,5,7,5,6,6,10,6,7,6,10,7,9,9,16,8,8,6,9,6,7,6,10,6,6,5,9,6,8,8,16,9,10,7,11,7,9,8,15,9,10,8,14,10,14,14,27,14,14,10,15,9,10,8,14,8,8,6,9,6,8,8,14,7,7,5,8,5,6,5,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,4,5,5,8,5,6,4,6,4,4,4,6,4,4,4,7,5,6,6,14,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,13,7,7,5,8,5,6,6,11,7,8,7,11,7,10,11,21,11,10,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,6,5,7,5,6,5,7,5,6,5,7,5,6,6,10,6,6,4,7,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,6,5,7,5,7,7,12,6,6,5,7,4,5,5,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,11,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,7,5,8,5,6,6,10,6,8,6,10,7,10,11,19,10,11,8,11,7,8,7,12,7,7,5,8,6,8,7,13,7,7,5,7,4,4,4,7,4,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,5,6,4,6,4,6,6,9,5,6,6,10,7,9,8,16,8,8,5,8,5,6,5,9,5,5,4,5,4,5,5,9,5,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-9,-19 +0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,4,4,5,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,5,4,6,6,10,5,5,4,5,4,5,4,6,4,4,4,6,4,6,5,9,5,6,5,7,4,6,5,9,6,6,6,9,7,10,10,20,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,6,5,9,5,6,5,8,5,7,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,5,5,6,4,4,4,5,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,14,8,8,6,8,5,5,4,8,4,4,4,6,4,5,5,8,4,5,4,6,4,4,4,7,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,7,4,5,4,5,4,5,6,13,7,7,5,7,4,5,4,6,4,4,3,5,4,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,10,6,6,4,7,5,6,6,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,10,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,8,5,6,5,8,5,7,8,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,4,5,4,5,4,4,3,5,4,4,3,5,4,5,5,7,4,4,3,5,4,4,4,5,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,5,4,5,4,5,4,8,4,5,4,5,4,4,4,7,5,6,4,7,5,7,8,13,7,7,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,4,3,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,4,4,7,5,6,5,8,6,9,9,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,14,8,8,6,10,6,8,7,14,8,9,8,14,10,15,15,30,15,15,11,16,10,12,10,18,10,10,7,11,7,10,10,18,10,10,7,10,6,8,7,14,8,9,7,12,8,10,9,17,9,8,6,8,5,6,5,9,5,6,5,8,5,7,7,9,5,6,5,8,5,6,6,10,6,7,6,10,7,10,9,14,8,8,6,8,5,6,5,8,5,6,5,8,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,10,7,9,8,15,8,8,6,8,5,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,12,8,12,12,21,11,11,8,12,7,8,6,11,6,7,5,8,5,7,7,11,6,7,5,8,5,6,5,10,6,6,5,8,6,8,7,10,5,5,4,6,4,5,4,5,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,10,6,7,5,8,6,8,8,20,10,10,7,10,6,7,6,9,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,11,7,8,6,10,7,10,9,17,9,10,7,10,6,7,7,12,7,8,6,10,7,10,9,16,9,9,7,10,6,8,8,16,9,10,9,15,10,15,15,30,15,15,11,16,9,11,9,15,8,9,7,10,7,9,9,16,9,9,6,9,6,7,6,12,7,8,6,10,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,7,5,6,6,9,5,5,4,6,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,6,6,10,6,6,5,8,6,8,7,13,7,8,6,9,6,7,6,12,7,9,7,12,8,11,11,22,12,12,9,13,8,9,7,13,7,8,6,9,6,8,8,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,11,6,6,5,7,5,6,5,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,5,8,5,7,7,13,7,7,5,8,5,5,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,5,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,10,6,7,5,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,19,10,11,8,12,7,9,8,12,7,7,5,8,6,8,8,14,7,7,5,7,4,5,4,7,5,6,5,8,5,7,7,14,7,7,5,6,4,4,4,9,5,6,4,6,4,6,5,8,5,5,4,6,4,5,5,10,6,7,6,10,7,9,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,7,4,4,4,6,4,5,5,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,3,2,3,2,2,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,-1,-2,-2,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-11,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,4,3,5,4,5,6,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,18,9,9,7,10,6,7,6,11,6,6,5,7,4,6,6,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,9,6,6,6,9,6,9,9,18,9,9,7,10,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,5,7,7,11,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,4,3,3,3,4,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,7,11,6,6,5,7,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,5,6,6,10,6,8,7,11,8,12,11,22,11,11,8,12,7,8,7,13,7,8,6,8,5,7,7,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,13,7,6,4,6,4,4,4,7,4,4,4,5,4,5,5,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,7,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,9,5,6,5,7,4,5,5,8,5,6,5,8,6,8,9,16,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,7,4,4,3,6,4,4,4,8,5,5,4,5,4,6,6,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,15,8,8,5,8,5,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,8,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,12,12,23,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,12,7,7,5,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,7,4,5,4,8,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,6,4,5,5,8,4,4,4,6,4,6,6,9,5,6,5,7,5,6,5,9,5,6,5,8,6,8,8,17,9,10,7,10,6,7,6,10,6,6,5,7,5,6,6,8,4,4,3,6,4,4,3,6,4,4,3,4,3,5,5,9,5,6,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,5,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,5,3,4,4,9,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,14,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,4,7,5,6,6,10,5,5,4,6,4,4,3,7,4,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,12,6,6,5,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,6,5,9,6,7,6,10,7,11,10,19,10,10,7,11,6,7,6,11,6,7,5,7,5,7,6,12,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,7,5,7,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,8,14,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,5,7,4,5,5,8,5,5,4,6,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,7,4,4,3,5,3,4,4,7,4,4,4,5,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,15,8,9,6,9,5,6,5,9,5,6,5,7,5,6,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,4,4,6,4,5,5,9,5,5,4,5,4,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,9,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,9,6,8,8,14,7,7,5,8,5,7,6,10,6,6,5,8,6,8,9,18,10,10,7,11,7,8,7,12,7,8,6,10,7,10,9,19,10,11,8,13,8,10,9,16,10,12,10,18,12,18,18,34,18,18,13,19,11,13,11,20,11,12,9,14,9,12,11,21,11,11,8,12,7,9,8,14,8,8,7,11,7,10,10,20,10,10,7,11,7,8,6,10,6,7,6,9,6,8,8,12,7,7,5,8,5,7,7,12,7,8,7,12,8,12,11,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,9,6,8,7,16,8,8,6,9,5,6,5,8,5,5,4,7,5,7,7,15,8,9,7,10,6,8,7,12,7,8,7,13,9,14,14,24,12,12,8,11,7,8,7,12,7,8,6,9,6,7,7,11,6,7,5,7,5,6,6,11,7,8,6,10,7,9,8,12,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,7,6,11,6,7,6,9,7,10,10,24,12,12,8,12,7,8,7,12,7,8,6,9,6,8,8,13,7,7,5,8,5,7,7,12,7,8,7,11,8,11,11,19,10,11,8,12,7,9,8,14,8,10,8,13,8,11,11,19,10,10,8,12,8,11,10,18,10,12,10,18,12,18,18,38,19,19,13,20,11,12,10,17,10,11,8,13,8,11,11,21,11,11,8,12,7,9,8,15,8,9,7,11,7,10,10,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,9,6,8,5,6,5,8,5,6,5,7,5,6,6,10,6,6,4,5,3,4,4,6,4,5,5,8,6,8,8,12,7,7,5,8,5,7,6,11,6,7,6,9,6,8,8,13,7,8,6,10,7,9,8,14,8,9,7,12,8,12,12,28,15,15,10,14,8,10,9,16,9,10,7,11,7,9,9,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,6,15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,6,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,13,7,7,5,7,4,5,5,9,5,6,5,7,5,6,6,15,8,9,7,10,6,7,6,11,6,7,6,9,6,7,7,15,8,8,6,9,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,14,8,8,6,10,7,10,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,5,10,6,7,6,11,7,10,10,20,10,10,7,9,5,6,5,8,4,4,3,5,4,6,6,8,5,5,3,4,3,4,4,7,4,4,4,6,5,7,7,12,6,6,5,7,4,5,4,7,4,4,3,5,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,5,3,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-11,-5,-5,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-12,-12,-25 +-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,5,9,6,7,6,10,7,10,10,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,7,4,6,6,11,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,4,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,5,4,7,4,5,4,8,6,8,8,13,7,7,5,6,4,5,4,7,4,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,6,6,5,7,4,5,5,8,5,6,5,7,5,7,6,11,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,21,11,11,8,11,6,7,6,10,6,6,5,8,5,7,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,5,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,7,4,5,5,8,5,5,4,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,7,5,6,5,8,5,5,4,6,4,6,5,8,5,5,4,5,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,6,4,4,3,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,7,12,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,11,6,7,5,7,4,5,5,8,5,5,4,7,5,6,6,13,7,7,5,9,6,7,6,10,6,8,7,11,8,11,12,21,11,12,8,12,7,8,7,13,7,7,6,9,6,8,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,7,5,6,5,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,10,6,6,5,6,4,5,5,8,5,6,5,9,6,9,9,15,8,7,5,7,5,6,5,8,5,5,4,6,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,3,4,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,6,6,15,8,8,5,7,4,5,4,8,5,5,4,7,5,6,6,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,7,11,6,7,5,7,5,6,5,9,5,6,5,8,6,8,7,12,7,7,5,8,5,7,6,11,6,7,6,11,8,11,11,24,12,12,9,13,7,8,6,12,7,7,6,9,6,8,7,14,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,11,6,6,5,6,4,5,5,7,4,4,3,5,3,4,3,8,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,10,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,9,5,4,3,5,4,5,4,6,4,4,3,5,4,5,5,8,5,6,5,6,4,5,5,9,5,6,5,8,6,8,7,19,10,10,7,10,6,7,6,11,6,6,5,8,5,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,6,4,6,5,8,5,5,5,8,6,8,8,13,7,8,5,7,5,6,5,8,5,6,5,6,4,6,6,9,5,5,4,6,4,4,3,6,4,4,3,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,6,6,11,6,6,4,6,4,4,3,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,6,5,8,5,6,6,9,6,9,10,17,9,9,7,10,6,7,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,8,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,9,6,9,9,19,10,10,7,10,6,6,5,10,6,6,5,7,5,6,6,11,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,7,4,5,4,6,4,6,6,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,3,2,3,2,3,3,8,5,5,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,8,5,5,3,4,3,3,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12 +-2,-1,-1,0,0,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,1,1,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,2,2,2,5,3,3,3,5,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,10,7,9,9,16,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,6,5,8,6,9,9,14,8,8,6,9,5,6,6,11,6,7,6,10,7,9,8,17,9,10,8,12,8,10,9,13,8,10,9,16,11,16,16,28,15,15,11,16,9,11,9,17,9,10,8,12,8,11,10,19,10,10,7,10,6,8,7,10,6,7,6,10,7,10,9,17,9,9,7,10,6,7,6,9,5,6,5,8,5,7,6,12,7,7,5,8,5,6,6,10,6,7,6,11,8,11,11,14,7,7,5,6,4,5,4,7,4,5,4,6,4,6,5,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,14,8,8,6,8,5,6,6,12,7,9,7,12,8,12,12,18,10,10,7,9,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,7,5,6,5,10,6,6,4,6,4,6,6,10,5,5,4,6,4,4,4,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,20,10,10,7,10,6,7,6,11,7,8,6,10,6,8,8,13,7,7,5,8,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,10,6,7,6,9,6,9,9,16,9,9,7,12,8,10,9,13,8,10,8,14,10,14,14,31,16,16,11,16,9,10,8,16,9,9,7,12,8,11,10,18,10,10,7,10,6,8,7,11,6,7,6,9,6,9,9,15,8,8,6,8,5,7,6,9,5,6,4,6,4,5,4,10,6,6,5,7,4,5,4,7,4,5,5,8,6,9,9,12,7,7,5,6,4,5,4,6,4,4,3,5,4,5,4,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,6,12,6,6,4,6,4,6,5,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,12,7,8,6,10,7,10,10,26,14,14,9,13,8,9,7,14,8,9,7,10,6,8,7,11,6,6,5,8,5,6,5,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,13,7,7,5,7,4,5,4,9,5,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,6,9,6,8,7,10,6,7,6,10,7,10,11,18,9,9,6,9,6,7,7,11,6,6,5,8,5,7,7,11,6,7,5,8,5,5,4,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,5,8,5,7,7,13,7,7,5,6,4,4,3,7,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,5,3,3,3,6,3,3,3,4,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-22 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,4,5,4,7,5,6,6,11,6,7,5,8,5,7,6,9,6,7,6,11,8,11,11,19,10,10,7,11,6,7,6,11,6,7,5,8,5,7,7,13,7,7,5,7,4,6,5,7,4,5,4,7,5,6,6,11,6,6,4,7,4,5,4,6,4,4,4,6,4,5,4,8,5,5,4,6,4,5,4,7,4,5,5,8,5,7,7,10,5,5,4,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,4,4,4,9,5,6,4,6,4,4,4,8,5,6,5,8,6,8,8,12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,4,6,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,5,4,6,6,13,7,7,5,7,4,5,4,7,4,5,4,7,4,6,6,9,5,5,4,5,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,6,6,11,6,6,5,8,5,6,6,9,6,7,6,9,6,9,9,21,11,11,7,11,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,7,4,6,5,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,4,2,3,2,4,3,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,7,5,7,7,18,10,10,6,9,5,6,5,9,5,6,5,7,4,6,5,7,4,4,3,5,3,4,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,4,4,9,5,5,4,5,3,4,3,6,4,4,3,5,4,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,7,4,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,4,4,5,4,5,5,8,4,5,4,5,3,4,3,5,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,2,4,3,3,2,4,3,4,4,7,4,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,4,4,5,4,6,6,8,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,15,8,9,7,10,7,9,8,13,8,10,8,15,10,15,15,27,14,14,10,15,9,10,9,16,9,9,7,11,7,10,9,18,9,9,7,10,6,8,7,10,6,7,6,9,6,8,8,16,9,9,6,9,5,6,5,9,5,6,5,8,5,6,6,12,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,7,4,4,4,6,4,6,5,10,6,6,4,6,4,6,5,8,5,6,5,7,5,6,6,13,7,8,6,8,5,6,6,11,7,8,7,11,8,11,11,16,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,4,4,3,5,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,8,8,19,10,10,7,10,6,7,6,10,6,7,5,9,6,8,7,13,7,8,6,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,7,6,10,6,7,5,9,6,8,8,15,8,9,7,10,6,8,8,13,8,9,7,13,9,12,12,30,15,15,10,15,9,10,8,15,8,8,6,10,7,10,9,17,9,9,7,10,6,8,7,11,6,7,6,9,6,8,8,15,8,8,5,8,5,6,5,9,5,6,4,6,4,4,4,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,3,3,5,4,6,6,11,6,6,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,9,6,9,9,26,14,14,9,13,7,8,7,12,7,8,6,9,6,8,7,10,5,5,4,6,4,5,4,8,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,3,5,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,10,6,6,5,7,5,6,6,11,6,7,5,7,4,5,4,7,4,4,4,6,4,6,6,12,6,6,4,7,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,6,4,6,6,12,6,6,4,5,3,4,4,6,4,4,3,3,3,4,4,5,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,4,3,4,4,5,4,6,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,7,6,10,6,7,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,6,9,6,8,8,14,8,9,7,10,6,8,8,13,8,10,8,14,10,14,14,26,14,14,10,14,8,10,9,16,9,9,7,11,7,9,9,17,9,9,7,10,6,7,6,10,6,7,6,9,6,8,8,16,9,9,6,8,5,6,5,9,5,6,5,7,5,6,6,11,6,6,5,8,5,7,6,11,7,8,7,11,7,10,10,14,7,7,5,6,4,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,4,4,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,4,5,4,5,5,8,5,6,5,7,5,8,8,18,10,10,7,10,6,7,6,10,6,7,5,8,6,8,7,13,7,7,5,7,5,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,7,5,8,6,8,8,14,8,9,7,10,6,8,7,13,8,9,7,12,8,12,12,29,15,15,10,14,8,10,8,15,8,8,6,10,7,9,9,16,9,9,6,9,6,7,6,11,6,7,5,8,6,8,8,14,8,8,5,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,6,9,6,7,6,10,5,5,4,6,4,5,4,7,4,4,4,6,4,5,5,10,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,5,5,13,7,7,5,7,4,5,4,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,6,11,6,7,6,10,7,10,10,17,9,9,6,9,5,6,6,9,6,6,5,7,5,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,4,5,3,4,4,5,3,4,4,5,4,5,6,12,6,6,4,5,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-5,-10,-6,-10,-10,-21 +-1,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,6,6,10,6,6,5,9,6,9,8,15,9,11,9,16,11,17,17,28,14,14,10,14,8,10,9,17,9,10,8,12,8,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,14,26,14,14,10,14,9,11,10,18,10,11,8,13,9,12,12,22,12,13,10,15,10,14,14,26,15,18,15,27,19,28,28,51,26,25,17,25,14,16,13,23,12,13,9,14,9,12,12,22,12,12,9,14,8,10,9,17,10,11,9,16,11,15,15,30,16,16,11,17,10,12,10,17,9,10,8,13,8,11,10,19,10,11,8,13,8,11,10,19,11,12,10,18,12,18,19,27,14,15,10,15,9,11,9,15,8,9,7,12,8,10,10,18,10,10,7,11,7,8,7,12,7,8,6,10,7,9,9,17,9,10,8,12,7,9,8,15,8,9,7,12,9,13,13,24,13,13,10,16,10,12,11,21,12,14,12,20,14,20,20,29,15,15,11,17,10,12,10,17,9,9,7,11,7,8,8,14,8,8,6,9,6,7,6,10,6,7,6,10,7,9,9,18,10,11,8,12,7,8,7,13,7,8,6,10,7,10,10,18,10,10,8,13,8,10,10,18,10,11,9,14,10,14,14,35,18,18,12,17,10,12,11,19,10,11,8,13,8,11,11,20,11,11,8,11,7,8,8,14,8,10,9,15,10,15,15,28,15,15,11,16,10,12,11,19,10,11,8,13,9,12,12,23,13,14,10,16,10,13,12,22,13,15,13,22,15,23,23,56,28,28,19,29,17,20,17,30,16,17,13,20,13,17,16,31,16,16,12,18,11,13,12,21,11,12,10,16,10,14,14,27,14,14,10,15,9,11,9,15,9,10,8,14,9,13,13,24,13,14,10,15,9,12,11,21,11,12,10,16,11,15,15,20,11,12,9,13,8,10,8,14,8,8,7,11,7,8,8,14,8,9,7,10,7,9,8,14,8,9,7,12,8,11,11,20,11,11,8,12,7,8,7,12,7,7,6,10,7,11,11,20,11,12,9,15,9,12,11,20,11,12,10,17,11,16,16,49,25,25,17,25,14,16,13,22,12,12,9,14,9,11,10,18,10,10,7,11,7,9,8,14,8,9,7,11,7,10,10,18,10,10,7,10,6,6,5,8,5,5,4,6,5,7,7,12,7,7,6,9,5,6,6,10,6,6,5,8,6,8,9,25,13,13,8,11,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,6,11,6,7,6,11,8,11,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,14,8,9,7,12,8,10,10,18,11,13,11,18,13,19,19,33,17,18,12,18,10,12,10,18,10,11,9,14,9,13,13,24,13,13,9,14,8,10,9,17,9,10,8,13,9,12,12,22,12,12,9,13,8,10,8,14,8,8,6,10,6,8,7,13,7,8,6,8,5,7,6,10,6,8,7,11,8,11,10,22,12,12,9,13,8,9,8,13,7,7,5,6,4,5,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,5,8,5,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,4,4,2,2,2,2,4,3,4,3,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-5,-5,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-16,-8,-9,-7,-12,-7,-11,-10,-21,-11,-13,-11,-21,-13,-20,-20,-42 +0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,5,6,5,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,5,8,6,8,8,14,8,10,8,14,10,15,15,26,14,13,9,13,8,9,7,12,7,7,5,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,14,8,8,6,8,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,7,6,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,7,4,4,4,5,4,6,5,10,6,6,4,7,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,7,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,12,7,7,6,8,5,7,6,12,7,8,7,11,8,12,12,29,15,15,10,15,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,11,6,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,11,6,7,6,8,6,8,8,11,6,6,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,5,4,5,4,5,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,8,5,6,6,10,6,6,6,9,6,9,9,25,13,13,9,13,7,8,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,17,9,10,7,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,2,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,5,7,5,6,6,9,5,6,5,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,6,11,6,7,5,7,5,6,6,12,7,7,5,9,6,8,8,14,8,10,8,15,10,15,15,26,14,14,9,14,8,9,8,12,7,8,6,7,5,7,6,11,6,6,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,6,8,5,6,5,7,5,6,5,10,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,15,8,8,6,8,5,6,5,8,5,6,4,6,4,6,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,8,5,7,7,11,6,7,6,10,7,10,11,15,8,8,6,9,5,6,6,10,5,5,4,7,5,6,5,8,5,5,4,5,3,4,4,5,3,4,4,6,4,5,5,10,6,6,5,7,4,4,4,6,4,4,4,5,4,6,5,10,6,6,4,6,4,6,6,9,5,6,5,7,5,7,7,18,10,10,7,9,6,7,6,10,6,6,5,6,4,6,6,10,6,6,4,6,4,5,4,7,5,6,5,8,6,8,8,15,8,8,6,8,5,6,6,10,6,6,5,6,4,6,6,12,7,7,6,8,5,6,6,12,7,8,7,11,8,12,12,29,15,15,10,16,9,10,9,15,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,12,7,7,6,8,5,7,7,14,8,8,6,8,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,6,10,6,7,6,8,6,8,8,11,6,6,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,4,5,3,4,4,8,5,5,4,7,5,6,6,10,6,6,5,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,6,9,6,9,9,24,12,12,9,13,7,8,7,12,7,7,5,8,5,7,6,10,6,6,5,6,4,5,5,7,4,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,5,13,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,7,10,10,18,10,10,7,9,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,12,7,7,5,7,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,3,6,4,5,4,6,4,6,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,2,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-10,-6,-10,-10,-21 +0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,7,6,11,7,10,10,18,10,10,7,10,6,6,6,9,5,6,4,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,4,5,4,7,5,7,8,10,6,6,4,6,4,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,3,3,4,2,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,8,5,6,5,8,6,8,8,19,10,10,7,11,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,4,6,4,4,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,8,5,5,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,3,2,3,4,9,5,5,4,5,3,3,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,4,3,3,2,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-14 +0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,-2,0,0,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,5,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,9,9,17,9,9,6,8,5,6,6,9,5,5,4,7,5,7,7,12,7,7,5,6,4,5,5,9,5,6,5,9,6,9,8,15,8,8,6,9,6,7,6,12,7,8,6,9,6,8,7,12,7,8,6,9,6,9,9,15,9,11,9,16,11,16,15,26,14,14,10,14,8,10,8,13,7,7,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,7,6,8,5,5,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,10,15,8,8,6,8,5,6,5,8,5,6,5,7,5,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,5,7,7,15,8,8,6,8,5,7,7,11,6,7,6,11,8,11,11,15,8,8,6,8,5,7,6,10,6,7,5,8,5,5,5,9,5,6,4,6,4,5,4,5,3,4,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,6,8,7,18,9,9,6,9,5,6,5,10,6,6,4,6,4,6,5,10,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,6,6,11,6,7,5,8,5,7,6,12,7,9,7,12,8,12,12,28,15,15,11,16,10,12,10,15,8,8,6,10,7,9,9,18,10,10,7,10,6,8,7,12,7,7,5,8,5,7,7,14,8,8,6,9,5,6,6,8,5,6,5,7,5,6,6,13,7,7,5,8,5,6,6,10,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,6,6,10,6,6,4,6,4,4,3,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,6,10,6,7,6,10,7,9,9,24,12,12,8,12,7,9,8,13,7,8,6,9,5,6,6,11,6,7,5,7,5,6,5,8,5,5,4,6,4,5,5,10,5,5,3,4,3,3,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,7,4,4,3,5,4,5,5,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,11,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,11,7,8,6,10,7,10,10,18,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,12,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,5,4,6,4,5,5,12,7,7,5,8,5,5,5,8,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-11,-23 +0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,5,4,6,6,10,5,5,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,5,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,9,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,10,5,5,4,5,3,4,3,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,7,9,6,7,6,9,5,5,4,6,4,6,5,10,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,4,5,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12 +0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,0,0,0,1,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,5,4,5,3,4,4,7,4,4,4,7,5,6,6,12,6,6,5,7,4,5,5,9,5,6,5,7,5,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,7,10,10,18,10,10,7,10,6,8,7,10,6,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,11,6,6,5,7,4,4,4,7,4,4,3,5,4,5,5,9,5,4,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,6,5,7,5,8,8,12,6,6,4,6,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,3,2,3,2,3,2,3,3,5,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,12,6,6,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,5,4,6,6,11,6,6,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,8,6,8,8,20,11,11,8,11,7,8,7,10,6,6,5,8,5,7,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,4,4,7,4,4,4,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,4,6,4,6,6,9,5,5,4,6,4,4,3,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,4,6,4,5,5,7,5,6,5,7,5,7,7,17,9,9,6,9,5,6,5,9,5,6,5,7,4,4,4,8,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,7,5,7,4,5,5,8,5,5,4,5,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,6,4,4,4,6,3,3,2,3,2,2,2,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-7,-15 +-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,16,9,9,6,9,6,7,6,9,5,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,7,7,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,17,9,10,7,10,6,7,6,9,5,6,4,7,4,6,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,6,5,9,5,5,4,6,4,4,4,6,4,4,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,7,4,4,4,5,4,4,4,6,4,5,4,6,4,6,6,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,6,4,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-6,-13 +-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,5,8,5,7,6,11,7,8,6,10,7,11,11,18,9,9,6,8,5,6,5,9,5,6,5,8,6,8,8,9,5,5,4,6,4,5,5,9,5,6,5,8,6,9,9,18,10,10,7,11,7,9,8,14,8,8,7,11,7,9,9,17,10,11,8,13,8,11,10,17,10,12,10,16,11,15,15,28,15,15,10,15,9,11,9,16,9,9,6,9,6,7,7,11,6,7,5,8,5,6,5,9,5,6,5,8,6,8,8,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,12,7,7,5,7,5,6,6,10,6,7,6,11,7,10,10,17,9,10,7,11,7,8,7,11,6,7,5,8,5,7,7,14,7,7,5,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,8,8,16,9,9,7,10,6,7,7,12,7,8,7,11,8,11,11,19,10,11,8,11,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,3,3,3,4,3,4,4,7,5,6,6,13,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,7,5,7,7,15,8,8,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,8,11,11,31,16,16,11,16,9,11,9,16,9,9,7,10,7,9,9,19,10,11,8,12,7,8,7,12,7,7,6,10,7,9,9,15,8,8,6,8,5,7,6,10,6,7,5,8,6,8,7,11,6,7,5,7,4,5,5,9,5,6,5,9,6,7,7,15,8,9,6,9,5,6,5,8,5,5,4,5,3,4,4,9,5,6,4,6,4,6,6,10,6,7,6,10,6,8,8,11,6,6,4,6,4,4,4,6,4,4,3,5,4,6,6,11,6,6,5,8,5,6,6,11,6,7,6,11,8,11,11,26,14,14,10,15,9,10,9,15,8,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,6,5,7,4,5,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,3,5,4,6,6,9,5,6,4,6,4,6,6,10,6,8,7,11,7,10,10,16,9,9,7,10,6,8,7,11,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,5,4,5,5,14,8,8,6,9,5,6,5,8,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,1,1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,5,3,4,3,5,4,4,4,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,6,6,5,7,5,6,6,9,6,7,6,9,6,9,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,17,9,9,6,9,5,6,5,9,5,5,4,6,4,5,5,11,6,6,5,7,4,4,4,6,4,4,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,8,5,6,5,8,5,5,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +-1,0,0,1,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,11,6,6,4,6,4,4,4,6,4,4,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,4,6,6,11,6,6,4,6,4,5,5,8,5,6,5,7,5,6,6,10,6,6,5,8,5,7,6,10,6,7,6,9,7,10,9,16,8,8,6,9,5,6,6,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,5,5,8,4,4,3,4,3,4,4,5,3,4,3,3,2,3,3,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,5,3,4,4,9,5,5,3,5,3,3,3,4,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,5,7,4,4,4,8,5,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,3,5,3,2,2,4,3,4,4,11,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,9,5,6,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,18,10,10,7,10,6,6,6,9,5,6,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,3,4,4,9,5,6,4,5,3,4,3,4,3,4,3,3,3,4,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,5,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,16,9,9,6,9,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,3,5,3,2,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,3,4,2,2,2,3,2,3,3,4,3,4,3,3,2,3,3,8,5,5,4,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,7,5,8,8,12,6,6,4,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,4,5,5,14,7,7,5,7,4,5,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,5,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,5,4,5,3,4,4,5,3,3,2,4,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,2,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,2,2,2,2,2,2,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,2,2,2,2,3,3,4,3,3,2,2,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,8,5,6,5,7,4,5,5,6,4,4,4,6,4,5,5,9,5,6,4,6,5,7,7,14,7,7,5,8,5,7,7,11,6,7,6,9,6,8,7,12,7,7,6,10,7,9,8,14,8,9,7,12,8,12,12,18,9,9,7,10,6,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,9,5,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,5,4,6,4,6,5,7,5,6,5,8,6,8,8,13,7,7,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,6,4,6,4,4,3,6,4,4,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,9,5,6,5,8,6,8,8,15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,3,2,3,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,5,5,13,7,7,5,6,4,4,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,7,4,5,5,8,6,8,8,22,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,14,7,7,5,8,5,5,4,7,4,5,4,5,4,5,6,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,6,4,5,4,6,4,6,6,10,6,6,5,7,4,4,4,5,3,3,3,5,4,5,4,8,5,5,3,4,3,3,3,7,4,5,4,7,5,6,6,8,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,10,6,6,4,6,4,5,5,8,5,6,5,9,6,9,9,20,10,10,7,11,7,8,7,13,7,7,5,8,5,6,5,9,5,5,4,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,10,6,6,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,3,2,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16 +-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,6,4,4,3,4,3,5,5,10,5,5,4,6,4,5,5,8,4,5,4,6,4,5,5,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,4,6,3,3,3,5,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,9,5,5,3,4,3,3,2,4,2,3,2,4,2,3,3,5,3,3,3,4,3,3,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,3,3,4,3,3,3,5,4,5,5,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,6,4,6,6,13,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,4,2,3,2,4,2,3,2,4,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,3,4,3,3,3,5,3,3,3,5,4,5,4,8,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,0,0,-1,-1,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,8,5,5,4,6,4,6,6,14,7,7,5,8,5,6,6,11,6,7,5,8,5,7,7,12,7,8,6,9,6,8,7,13,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,3,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,5,5,9,5,6,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,4,4,7,5,7,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,11,6,6,4,6,4,4,4,5,3,4,3,5,3,4,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,6,5,5,3,4,3,3,2,2,3,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,10,7,9,6,8,7,11,6,7,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,8,4,4,3,5,3,4,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,5,5,5,3,4,3,3,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,3,4,4,6,4,4,3,6,4,6,5,11,6,6,4,7,4,5,4,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,3,4,3,3,3,3,2,3,3,8,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,3,4,3,3,3,3,2,3,3,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14 +-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,4,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,14,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,11,8,11,11,15,8,8,6,9,5,6,5,8,5,5,4,6,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,8,5,6,5,8,4,4,4,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,4,6,4,6,6,20,10,10,7,10,6,7,6,10,6,6,5,8,5,7,6,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,5,3,3,2,3,2,2,2,4,2,2,2,3,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,3,4,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +-5,-2,-2,-1,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,13,9,13,13,24,13,13,9,14,8,9,8,14,8,9,7,10,6,7,7,12,7,7,5,8,5,6,6,11,7,8,6,10,7,10,10,27,14,14,10,16,9,11,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,11,20,11,13,11,19,13,20,20,28,14,14,9,13,8,9,7,12,7,8,6,9,6,8,7,12,7,7,6,9,6,7,7,12,7,8,6,10,7,10,9,13,7,6,4,6,4,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,5,9,6,7,6,10,7,11,11,24,13,13,9,14,8,10,9,15,8,9,7,11,7,10,9,16,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,12,7,7,5,7,4,5,5,8,5,6,5,9,6,9,9,17,9,10,8,12,7,9,8,14,8,10,8,13,9,13,13,23,12,12,8,11,7,8,6,10,6,7,5,8,5,7,7,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,21,11,11,8,11,7,8,7,11,6,6,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,7,5,7,7,16,8,8,5,7,4,5,5,8,5,5,4,7,4,5,5,8,5,5,4,7,5,7,7,12,7,8,7,11,7,10,10,38,20,20,13,19,11,14,12,20,11,12,9,14,9,12,11,19,10,10,7,11,6,7,6,11,6,7,6,9,6,9,8,11,6,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,5,8,6,9,9,17,9,9,6,9,5,6,5,8,5,5,4,7,5,7,7,12,7,7,5,8,5,7,7,12,7,7,6,9,6,9,9,8,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,9,7,12,8,10,9,17,10,11,9,15,10,15,15,32,17,17,11,16,10,12,10,17,9,10,8,12,8,10,9,16,8,8,6,8,5,7,6,11,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,13,7,7,5,7,5,6,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,9,5,6,5,8,6,8,8,9,5,5,4,5,4,5,5,9,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,20,10,10,7,10,6,7,6,11,6,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,5,14,8,8,5,7,5,6,5,8,5,5,4,6,4,6,5,9,5,5,3,4,3,3,3,4,3,3,3,5,3,4,4,17,9,9,6,8,5,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,5,5,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,4,3,4,3,5,4,6,6,-3,-1,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,5,3,3,2,3,2,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-4,-7,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-13,-27 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,4,3,3,3,6,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,12,6,6,5,7,5,6,6,11,6,7,6,10,7,11,11,15,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,4,4,3,6,4,6,6,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,9,5,6,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,6,4,6,6,20,10,10,7,10,6,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,4,5,4,5,4,6,4,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,4,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13 +-3,-1,0,0,-1,0,1,1,1,1,0,1,0,1,1,1,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,3,4,3,6,4,4,3,3,2,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,7,5,6,5,7,5,7,7,14,7,7,5,7,4,5,5,8,5,6,4,7,4,4,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,9,5,6,6,9,5,6,5,8,5,7,7,12,6,6,5,8,5,6,6,12,7,8,7,11,8,12,12,15,8,8,5,8,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,5,4,6,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,6,5,7,7,13,7,8,6,9,5,6,5,8,5,5,4,6,4,6,5,10,6,6,4,5,3,4,4,6,3,3,2,4,3,3,3,8,4,4,3,4,3,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,8,12,7,7,5,6,4,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,5,4,4,3,4,4,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,10,5,5,3,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,7,5,6,6,21,11,10,7,11,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,6,4,5,4,5,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,6,4,5,5,5,3,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,9,5,6,5,9,6,8,8,17,9,10,7,9,5,6,5,10,6,6,4,6,4,6,5,9,5,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,7,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,6,3,3,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,3,3,4,3,5,3,4,3,5,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,8,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,9,5,5,4,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14 +-2,0,0,0,0,0,1,1,1,1,0,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,6,4,4,4,5,4,5,6,11,6,5,4,5,3,4,4,6,4,5,4,5,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,9,6,9,9,10,6,6,4,6,4,4,4,5,3,3,2,4,2,3,3,5,3,3,2,4,3,3,3,4,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,4,5,5,9,5,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,4,4,15,8,7,5,8,5,6,5,9,5,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,6,4,4,4,5,4,5,5,7,4,5,4,7,5,6,6,13,7,7,5,7,4,5,4,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,2,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +-4,-2,-2,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,5,6,4,4,3,5,4,5,5,9,5,6,5,8,6,8,9,17,9,9,6,8,5,6,6,10,6,6,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,7,5,6,6,16,9,9,7,10,6,7,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,7,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,5,7,7,14,8,8,6,10,6,7,5,8,5,5,4,6,4,5,5,11,6,5,4,5,4,5,4,7,4,4,3,4,3,5,5,10,5,5,3,4,3,4,3,6,4,5,4,6,4,6,6,10,6,7,5,8,5,7,6,9,5,6,6,10,7,10,10,14,7,7,5,7,4,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,3,4,3,3,3,6,4,4,3,4,3,4,3,8,5,5,4,5,4,5,4,7,4,4,4,6,4,5,5,13,7,7,5,6,4,4,4,6,4,4,4,6,4,5,5,9,5,4,3,4,3,4,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,8,5,6,5,7,5,6,6,22,12,12,8,12,7,9,8,13,7,8,6,8,5,7,6,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,7,4,4,3,4,3,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,3,3,9,5,5,4,5,4,5,5,8,5,5,4,6,4,6,6,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,5,7,7,10,6,7,6,10,7,10,10,20,10,10,7,10,6,7,6,12,7,7,5,6,4,5,5,9,5,5,4,5,4,5,5,6,4,4,3,5,4,5,5,7,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,8,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,2,2,2,2,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,7,4,5,4,6,4,5,5,14,7,7,5,6,4,5,4,8,5,5,4,6,4,6,5,7,4,5,4,6,4,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,9,5,5,4,6,4,5,4,5,3,4,3,4,3,3,3,6,4,4,3,5,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-14 +-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,5,4,6,6,11,6,6,4,5,4,4,4,6,4,4,4,5,4,4,4,5,3,4,3,3,2,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,10,6,6,4,6,4,5,5,9,5,6,5,9,6,9,9,9,5,5,4,5,3,4,3,5,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,7,4,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,4,4,6,5,7,7,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,4,3,4,3,4,4,14,8,8,5,7,4,5,5,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,2,3,2,3,2,2,2,6,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,4,2,3,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,4,3,5,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8 +-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,4,3,5,5,7,4,5,4,7,5,8,8,15,8,7,5,7,5,6,5,8,5,6,5,7,5,6,5,7,4,5,4,4,3,4,4,7,4,4,4,6,4,6,6,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,14,8,8,6,8,5,6,6,11,7,8,7,12,8,11,11,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,3,3,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,7,5,8,5,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,7,5,6,5,8,5,5,5,8,6,9,9,10,6,6,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,2,2,2,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,5,3,4,4,10,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,3,3,4,3,4,2,2,2,3,2,3,3,5,3,4,4,5,4,5,5,18,10,10,7,9,5,6,6,10,6,6,5,7,5,6,5,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,4,7,4,4,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,5,3,3,2,3,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,12,6,6,4,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,7,6,8,5,6,6,10,6,7,6,11,8,11,11,10,6,5,4,5,3,4,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,6,10,6,6,4,7,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,3,4,3,3,3,4,3,3,2,3,3,4,4,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,4,4,3,4,2,3,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,3,3,5,3,4,4,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,17,9,9,6,8,5,6,5,9,5,5,4,7,5,6,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,7,7,14,7,7,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,5,3,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,11,6,6,4,5,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9 +-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,4,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,9,5,5,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,7,7,4,5,4,6,5,7,7,12,7,9,8,14,10,14,13,25,13,13,9,13,8,10,8,14,8,8,6,9,6,8,8,13,7,8,6,8,5,7,7,12,7,7,6,10,7,10,10,24,13,13,9,12,7,9,8,14,8,9,7,12,8,12,12,24,13,13,10,15,9,11,10,19,11,13,11,19,13,20,20,19,10,10,7,11,6,7,6,9,5,6,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,4,5,6,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,12,7,7,6,9,5,6,6,10,6,7,6,10,7,10,10,19,10,10,7,9,5,6,6,10,6,7,6,9,6,8,8,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,7,13,7,7,5,8,5,5,5,8,5,6,5,9,6,8,8,15,8,9,7,10,7,9,8,14,8,10,9,15,10,15,15,15,8,8,6,9,5,5,4,7,4,5,4,7,5,7,6,7,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,10,6,6,4,5,4,5,4,7,5,6,5,8,6,8,8,16,8,8,6,9,5,6,5,7,4,5,4,5,4,5,5,10,6,6,5,7,5,6,5,8,5,5,4,6,4,5,5,14,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,5,8,6,8,8,31,16,16,11,17,10,11,9,16,9,10,7,11,7,9,9,17,9,9,7,10,6,7,6,10,5,5,4,6,4,5,5,13,7,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,7,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,7,4,5,4,7,5,6,6,10,6,7,6,9,6,7,7,13,7,8,6,9,6,8,8,14,8,10,8,14,10,14,13,25,13,13,9,14,8,9,8,14,8,8,6,9,6,7,6,12,6,6,4,6,4,5,5,8,5,5,4,6,5,7,7,12,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,8,5,5,4,5,4,5,5,4,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,10,6,6,5,7,5,6,6,10,6,6,5,8,5,7,7,21,11,12,8,12,7,9,7,12,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,9,5,6,5,8,5,6,6,12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,5,3,3,3,5,3,4,4,6,3,3,3,4,3,4,4,10,6,6,5,7,4,5,5,8,4,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,5,8,6,8,8,14,8,8,6,7,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,4,5,4,7,4,5,4,6,4,6,6,14,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,14,8,8,6,9,6,7,6,11,7,8,7,11,8,12,12,11,6,6,4,7,4,4,4,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,4,5,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,3,3,5,3,4,3,5,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,9,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,18,10,10,7,10,6,7,6,9,5,6,4,7,4,5,5,10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,5,4,4,4,8,4,5,4,5,4,5,5,8,5,6,5,8,6,8,8,14,8,7,5,8,5,5,5,8,5,5,4,5,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,7,4,4,3,3,3,4,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,3,2,4,2,2,2,4,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,4,5,5,6,4,4,3,4,3,4,4,7,5,6,5,9,6,9,9,17,9,9,6,8,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,8,6,8,7,16,8,8,6,9,5,6,6,9,5,6,5,8,6,8,8,16,9,10,7,11,7,8,7,13,8,10,8,13,9,14,14,12,7,7,5,8,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,6,4,5,3,4,3,6,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,11,6,6,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,3,2,3,3,4,3,4,4,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,5,4,5,5,9,5,5,4,4,3,4,3,4,2,2,2,3,2,2,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,4,4,21,11,12,8,12,7,8,6,10,6,6,5,8,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,3,6,4,4,4,6,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,4,6,4,5,5,10,5,5,4,6,4,6,6,9,5,6,5,9,6,9,9,17,9,8,6,9,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,8,5,5,4,4,3,4,4,6,4,4,3,4,3,4,4,5,3,3,2,2,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,14,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,3,6,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10 +-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,7,4,5,5,8,4,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,7,13,7,8,6,9,6,7,6,11,7,8,7,11,8,12,12,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,6,8,8,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,18,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,14,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,4,3,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +-2,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,4,3,5,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,5,10,6,8,7,12,8,12,12,23,12,12,8,12,7,9,8,13,7,7,6,9,6,8,8,15,8,9,7,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,9,8,14,8,9,7,12,8,12,11,23,12,13,10,15,9,12,11,20,11,13,11,20,13,19,19,17,9,9,7,10,6,6,5,9,5,5,4,6,4,5,4,7,4,4,4,6,4,4,3,6,4,4,4,6,4,5,5,9,5,4,3,4,3,3,3,6,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,7,6,10,6,8,8,16,9,9,6,8,5,5,5,8,5,6,5,8,6,8,7,12,6,6,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,8,5,5,5,9,5,6,5,8,5,7,7,13,7,8,6,10,7,9,8,13,8,10,8,14,10,14,14,15,8,8,6,8,5,5,4,7,4,5,4,6,4,6,6,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,3,3,6,4,5,4,7,5,7,7,13,7,7,5,8,5,5,4,8,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,13,7,7,5,6,4,4,3,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,4,6,6,32,16,16,11,16,9,10,8,15,8,8,6,10,6,8,7,13,7,7,5,8,5,5,5,8,5,5,4,7,5,6,6,13,7,6,4,6,4,4,4,7,4,5,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,5,5,8,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,9,5,5,4,5,3,4,4,7,4,5,4,5,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,14,8,8,6,9,6,8,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,6,9,5,5,4,6,4,5,5,7,4,5,4,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,4,8,5,5,4,6,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,21,11,11,8,12,7,9,8,11,6,6,5,8,5,6,6,12,7,7,5,6,4,5,5,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,3,3,5,3,3,3,4,3,4,4,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,0,1,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,7,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,6,6,10,6,6,5,7,4,6,5,8,5,6,5,8,6,8,8,14,8,8,6,8,5,6,5,9,5,6,5,8,6,8,8,15,8,9,7,10,6,8,8,14,8,9,8,14,9,13,13,11,6,6,5,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,4,4,4,7,4,5,4,7,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,9,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,9,5,6,4,7,5,6,6,9,6,7,6,10,7,10,10,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,4,3,4,4,21,11,11,8,11,6,7,6,10,6,6,4,7,4,6,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,4,4,9,5,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,3,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,7,4,6,5,8,5,6,5,8,6,9,9,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,6,4,4,3,4,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,15,8,8,6,8,5,6,5,8,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-10 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,15,8,8,6,10,6,8,7,12,7,8,7,12,8,11,11,21,11,12,8,12,7,8,7,13,7,8,7,12,8,11,11,22,12,12,9,14,9,12,11,21,12,14,11,20,14,20,19,16,8,8,6,8,5,6,5,9,5,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,7,9,8,13,8,10,9,14,10,14,14,14,7,7,5,8,5,5,4,7,4,5,4,6,4,6,5,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,12,6,6,4,7,4,4,4,7,4,4,3,5,3,4,4,8,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,13,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,12,8,12,13,22,11,11,8,11,7,8,7,12,7,7,5,7,5,6,5,9,5,6,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,6,5,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,6,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,7,5,6,5,10,6,6,5,6,4,6,5,8,5,5,4,6,4,6,6,22,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,12,6,6,4,6,4,4,4,6,4,4,3,6,4,4,4,8,5,5,3,5,3,4,3,4,3,3,3,3,2,2,2,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,1,0,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,10,6,6,4,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,6,6,11,6,7,6,11,8,11,11,22,12,12,8,12,7,9,7,12,7,8,6,9,6,8,8,14,8,8,6,9,6,8,7,13,7,8,7,12,8,11,11,21,11,11,8,12,7,8,7,13,7,8,7,12,8,11,11,21,12,12,9,14,9,12,11,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,4,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,7,5,7,6,11,6,6,5,6,4,5,5,9,5,6,5,6,5,7,7,12,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,10,7,9,8,14,8,10,9,14,10,14,14,14,7,7,5,7,4,5,4,7,4,5,4,6,4,6,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,3,5,3,3,3,3,2,3,3,5,3,4,4,5,4,6,6,11,6,6,4,6,4,4,4,7,4,4,3,5,4,5,5,9,5,6,5,6,4,5,5,9,5,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,31,16,16,11,15,9,10,8,14,8,8,6,9,6,8,7,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,5,5,4,6,4,4,4,6,4,5,4,7,5,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,5,5,9,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,7,13,9,12,13,22,11,11,8,11,7,8,7,11,6,7,5,7,5,6,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,7,4,5,4,6,4,5,5,8,4,4,3,4,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,5,10,6,6,5,7,4,6,5,8,5,5,4,7,5,6,6,22,12,12,8,12,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,4,4,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-6,-4,-9,-5,-8,-8,-16 +-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,4,4,7,4,4,3,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,2,2,2,2,1,1,1,1,0,-1,0,-1,-1,20,11,11,7,10,6,8,7,12,7,7,5,7,5,6,6,10,6,6,5,7,5,6,5,8,5,7,6,10,7,10,9,17,9,9,6,9,6,7,7,12,7,8,7,11,7,10,10,20,11,11,8,13,9,12,11,21,12,15,12,21,15,22,22,42,21,21,14,20,12,14,12,21,12,13,10,15,10,13,12,23,12,13,10,15,9,12,12,22,13,15,13,22,15,21,21,40,21,22,15,23,14,18,16,28,15,17,13,22,14,20,19,37,20,21,16,25,16,22,21,39,22,27,22,39,26,38,37,28,14,14,10,15,9,10,8,14,8,8,6,10,6,7,6,11,6,7,5,7,4,5,4,7,4,5,5,8,6,8,8,15,8,8,6,9,6,7,6,9,5,5,4,7,5,8,8,14,8,9,7,11,7,8,8,14,8,9,8,13,9,14,14,28,15,15,10,14,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,9,9,17,9,9,7,10,6,8,8,14,8,8,7,11,8,12,12,22,12,13,10,17,11,14,14,26,15,18,15,27,18,27,27,27,14,14,10,15,9,11,9,15,8,8,6,10,7,9,9,16,9,9,6,8,5,7,6,11,7,8,7,11,8,11,10,19,10,10,7,10,6,7,6,10,6,7,5,8,5,6,5,9,5,5,4,7,4,5,5,8,5,6,5,9,7,10,10,20,11,11,8,12,7,8,7,13,7,8,6,10,7,9,9,17,9,9,7,10,6,7,7,12,7,7,6,10,7,11,11,21,11,11,8,11,7,8,6,10,6,7,6,9,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,10,10,60,30,30,21,31,17,20,17,29,16,17,13,22,14,18,17,32,17,17,12,17,10,12,10,18,10,11,9,14,9,12,11,21,11,11,8,13,8,9,8,13,7,7,5,8,5,7,7,12,7,8,6,10,6,8,8,15,8,9,7,12,8,12,12,24,13,14,10,15,9,11,10,17,9,10,8,13,9,12,12,22,12,13,9,14,9,12,11,21,12,14,11,19,12,17,17,33,17,17,12,17,10,11,10,17,9,10,8,13,9,13,12,23,12,13,10,16,10,13,12,22,13,15,13,24,16,24,24,42,21,21,14,21,12,14,11,18,10,10,7,11,7,10,10,18,10,10,7,10,7,9,8,14,8,9,7,12,8,11,10,19,10,10,7,9,6,7,6,9,6,7,6,9,6,8,8,15,8,8,6,10,6,7,6,11,6,6,5,8,5,7,7,13,7,7,5,7,4,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,11,6,7,6,9,6,9,9,17,9,10,7,10,6,8,7,11,6,7,6,9,6,8,8,14,8,8,6,8,5,6,6,11,7,8,6,10,7,11,11,42,22,22,15,22,13,15,13,24,13,14,10,16,10,13,12,21,11,12,9,14,9,11,10,18,10,11,9,16,11,15,15,30,15,15,11,16,10,12,11,19,10,11,8,13,8,11,10,19,10,11,8,11,7,8,7,12,7,8,6,9,6,9,9,16,8,8,6,9,6,7,6,11,6,6,4,6,4,6,6,10,6,6,4,6,4,6,5,9,6,7,6,9,6,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,3,3,4,3,3,3,6,4,5,5,3,2,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-16,-33 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,4,4,5,4,6,5,9,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,10,6,6,5,7,5,6,6,11,7,8,7,11,8,12,12,22,11,11,8,11,7,8,7,11,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,8,11,11,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,13,8,11,11,20,12,14,12,20,14,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,7,7,14,8,8,5,7,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,6,9,6,8,7,14,8,10,8,14,10,14,14,14,8,8,6,8,5,6,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,8,5,6,5,9,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,9,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,7,7,12,7,7,6,9,6,7,7,12,7,8,7,13,9,12,13,22,11,11,8,11,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,11,6,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,5,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-16 +-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,11,6,6,4,6,4,5,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,5,4,6,5,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,6,10,6,6,5,6,4,6,6,11,7,8,7,11,8,12,12,22,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,8,5,6,6,11,7,8,7,11,7,10,10,21,11,11,8,12,8,10,9,14,8,9,7,11,7,10,10,19,10,11,8,12,8,10,10,20,12,14,11,19,13,20,19,14,8,8,6,8,5,5,4,7,4,5,4,5,3,4,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,5,8,5,7,7,14,7,7,5,7,4,4,3,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,5,10,6,6,4,5,3,4,4,8,4,4,4,6,4,6,6,12,7,7,5,9,6,8,7,14,8,10,8,14,10,14,14,15,8,8,6,8,5,6,5,8,4,4,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,4,6,6,11,6,6,4,7,4,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,10,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,4,4,6,4,6,6,30,16,16,11,16,9,10,9,15,8,9,7,11,7,10,9,17,9,9,6,9,5,6,5,10,6,6,5,8,5,6,6,11,6,6,5,7,4,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,6,7,12,7,7,5,7,4,5,5,8,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,6,7,6,10,7,10,9,17,9,9,6,9,5,6,5,9,5,6,5,8,6,8,7,13,7,8,6,9,6,8,7,12,7,8,7,13,9,12,13,22,12,12,8,10,6,7,6,9,5,5,4,6,4,6,6,9,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,10,6,6,4,5,3,4,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,6,6,9,5,6,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,4,6,4,6,6,21,11,11,8,12,7,8,7,12,7,8,6,9,6,7,6,12,7,7,5,7,5,6,5,9,5,6,5,9,6,8,8,16,8,8,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,6,4,5,5,8,5,5,4,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-16 +0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,0,0,0,0,8,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,4,4,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,7,6,10,6,7,5,8,5,7,7,13,7,8,6,8,6,7,7,14,8,10,8,13,9,13,13,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,2,4,2,3,3,6,4,4,3,4,2,3,2,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,5,5,9,6,7,6,10,7,9,9,10,6,6,4,6,4,4,4,6,3,3,3,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,3,4,4,8,4,4,3,5,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,2,4,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,20,11,11,8,11,6,7,6,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,5,3,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,5,9,5,5,4,6,4,5,5,8,5,6,5,9,6,9,9,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,5,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,3,2,3,2,3,3,4,2,2,2,3,2,3,2,4,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,2,2,3,2,3,3,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11 +0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,5,3,2,2,2,2,3,3,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,3,2,2,1,0,0,0,-1,12,6,6,5,7,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,3,3,3,3,4,4,6,4,6,6,8,5,5,4,6,4,4,4,8,5,5,5,8,5,7,7,10,6,6,4,6,4,6,6,12,7,9,7,12,8,12,11,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,11,6,7,5,8,5,6,6,10,6,7,6,10,7,11,11,22,12,12,8,12,7,9,8,15,9,10,8,12,8,11,11,20,11,11,8,12,8,11,10,21,12,14,11,19,13,19,19,15,8,8,6,8,5,6,5,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,5,5,8,6,8,8,14,7,7,5,6,4,4,3,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,10,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,7,13,8,9,8,14,10,14,13,15,8,8,6,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,6,9,5,5,4,6,4,4,3,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,6,4,6,4,5,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,4,4,5,3,4,4,6,4,6,6,9,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,3,4,3,4,4,7,4,5,4,6,4,6,6,30,16,16,11,16,9,11,9,14,8,8,6,10,7,9,9,18,9,9,6,9,5,6,5,11,6,6,5,8,5,6,6,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,7,4,5,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,8,5,7,7,12,7,8,6,10,7,9,9,16,8,8,6,9,5,6,5,9,5,6,5,8,5,7,7,13,7,7,5,8,5,6,6,12,7,8,7,13,9,13,13,21,11,10,7,10,6,7,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,7,4,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,3,4,3,3,3,6,4,5,4,6,5,7,7,21,11,12,8,12,7,8,7,11,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,17,9,9,6,9,6,7,6,10,6,6,5,7,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-7,-8,-17 +0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,7,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,9,5,6,5,7,5,7,6,11,6,7,5,7,5,7,6,12,7,8,6,11,8,11,11,9,5,5,4,5,3,4,3,4,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,4,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,3,2,3,2,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,11,6,5,4,6,4,4,3,7,4,4,3,5,3,4,4,6,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,5,4,6,4,6,5,9,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,7,4,5,5,8,6,8,8,12,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,7,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9 +0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,8,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,6,4,5,5,8,4,4,3,5,3,4,5,9,6,7,6,8,6,8,8,16,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,5,4,7,5,6,5,7,5,7,7,15,8,8,6,8,5,6,5,10,6,6,5,9,6,8,7,13,7,8,6,9,6,8,7,13,8,9,7,12,9,13,13,11,6,6,4,6,4,4,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,6,4,6,6,9,5,5,4,4,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,9,9,10,6,6,4,6,4,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,21,11,11,8,11,6,7,6,11,6,6,5,8,5,7,7,13,7,6,4,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,7,4,4,3,4,3,3,3,5,3,4,4,5,4,5,5,9,5,5,4,6,4,4,4,8,5,6,5,7,5,7,6,11,6,6,4,7,4,4,4,7,4,4,4,5,4,6,6,10,6,6,5,6,4,5,5,9,5,6,6,10,7,9,9,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,4,3,4,3,4,3,4,4,14,7,7,5,7,4,5,5,7,4,4,3,6,4,6,5,9,5,4,3,5,3,4,4,6,4,4,4,6,4,6,5,11,6,7,5,6,4,5,5,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,2,2,1,0,1,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-3,-5,-5,-10 +1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,7,4,5,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,8,5,5,4,7,5,7,6,11,6,7,5,7,5,7,6,11,7,8,6,10,7,11,11,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,7,4,5,5,8,6,7,7,8,5,5,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,11,6,5,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,6,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,11,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,5,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,3,2,2,1,2,1,1,1,0,1,2,2,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,0,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,3,3,4,2,2,1,0,0,0,0,13,7,7,5,6,4,4,4,7,4,4,3,4,3,4,3,7,4,3,2,3,2,3,3,4,3,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,5,4,7,5,7,7,11,6,6,5,8,6,8,8,14,8,9,7,12,9,13,13,24,12,12,8,11,7,8,7,12,6,6,5,7,5,7,7,12,7,7,6,9,6,7,6,10,6,6,5,9,7,10,10,22,12,12,8,11,7,9,8,14,8,9,7,12,8,11,11,20,11,12,9,14,9,12,11,19,11,13,10,17,12,17,18,16,8,8,6,9,5,6,5,7,4,4,3,3,2,2,2,5,3,4,4,6,4,5,5,8,5,5,4,7,5,6,6,9,5,5,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,5,5,8,5,7,7,14,8,8,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,10,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,12,14,8,8,6,9,5,6,5,9,5,6,5,7,4,5,5,7,4,4,3,4,3,3,3,4,3,4,4,6,4,6,6,11,6,6,5,7,4,5,4,6,4,4,3,5,4,6,6,8,5,5,4,5,4,5,5,8,5,5,4,7,5,6,6,10,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,31,16,16,11,17,10,12,10,16,9,9,7,10,7,9,9,19,10,11,8,11,6,7,6,10,6,6,5,8,5,6,6,9,5,4,3,4,3,3,3,4,3,3,2,2,2,3,3,7,4,5,4,6,4,5,5,8,5,6,5,9,6,8,8,9,5,6,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,9,5,6,6,10,6,8,7,11,7,10,10,14,8,8,6,9,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,10,6,8,7,13,8,9,8,14,10,14,14,18,9,9,7,10,6,6,5,9,5,6,5,8,5,6,6,9,5,6,4,6,4,5,5,8,5,6,5,7,4,5,5,13,7,7,5,8,5,6,5,8,4,4,3,5,4,5,5,7,4,5,4,5,4,5,4,7,4,5,4,7,4,5,5,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,5,4,5,5,7,4,5,4,5,3,4,3,4,3,4,4,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,8,6,8,7,12,6,6,5,7,5,6,6,10,6,6,5,8,6,8,7,16,9,9,6,9,5,6,6,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,10,6,6,4,5,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-16 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,7,4,4,4,5,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,6,4,5,5,8,5,5,4,7,5,6,6,11,6,7,5,8,5,6,6,11,6,7,6,10,7,9,10,9,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,7,4,4,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,3,5,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,7,4,5,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,0,0,0,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,1,1,0,0,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,8,4,4,3,5,3,3,3,4,3,3,2,2,2,2,2,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,4,3,3,2,3,3,5,3,4,3,4,3,5,5,7,4,4,3,6,4,5,5,9,5,5,4,7,5,8,8,14,7,7,5,6,4,5,5,7,4,4,3,4,3,4,4,7,4,5,4,6,4,4,4,6,4,4,3,5,4,6,6,12,6,6,4,7,5,6,5,8,5,5,4,7,5,6,6,12,7,8,6,9,5,6,6,12,7,8,6,11,7,10,10,9,5,6,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,2,4,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,5,5,7,5,7,7,7,4,4,4,6,3,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,3,2,3,3,4,4,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,18,10,10,7,10,6,7,6,10,5,5,4,7,5,6,6,11,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,5,3,4,4,6,4,4,4,5,3,4,3,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,4,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,4,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,11,6,6,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8 +1,1,1,1,1,1,1,1,0,1,1,1,2,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,5,3,4,4,7,4,4,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,9,5,6,4,7,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,4,5,4,5,5,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,4,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,6,7,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,4,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6 +1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,0,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,10,6,6,4,6,4,5,4,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,4,3,7,4,5,4,6,4,6,5,9,5,5,4,7,5,6,6,10,6,7,6,10,7,10,10,16,9,9,6,8,5,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,5,4,6,5,7,7,14,7,7,5,8,5,7,6,8,5,6,5,8,6,8,8,15,8,9,7,10,6,8,7,14,8,9,8,13,9,12,12,11,6,6,4,6,4,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,3,3,3,5,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,8,6,8,8,8,5,5,4,6,4,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,8,5,5,4,6,4,5,5,7,4,3,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,23,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,9,5,5,3,4,3,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,5,8,5,6,6,9,5,6,4,6,4,4,4,7,4,4,3,5,4,5,5,10,5,5,4,6,4,5,5,10,6,7,6,9,6,9,9,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,10,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,10,6,6,4,5,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,4,6,4,5,5,7,4,5,4,6,4,6,6,10,5,5,4,6,4,5,4,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,0,1,1,1,2,2,3,3,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,2,4,2,3,2,3,2,3,3,4,3,4,4,3,2,3,2,3,2,3,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,5,4,4,4,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,3,5,3,4,3,5,4,5,5,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,3,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,6,6,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,8,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6 +1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,4,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,4,2,2,2,1,1,2,2,9,5,4,3,5,3,4,3,4,2,2,2,3,2,3,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,6,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,4,5,4,6,6,11,6,6,5,7,4,5,4,7,5,6,5,7,5,6,6,12,7,7,5,8,5,6,6,11,7,8,6,11,8,11,11,9,5,6,4,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,7,5,6,6,6,4,4,3,5,3,3,3,3,2,2,2,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,12,7,7,5,7,5,6,6,11,6,6,4,6,4,5,5,8,5,5,4,5,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,8,6,8,8,8,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,4,3,4,3,4,4,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,4,3,4,4,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,1,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10 +0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,2,2,1,1,2,2,8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,4,3,4,3,4,3,5,3,4,3,5,4,5,5,9,5,6,5,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,9,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,3,2,3,3,6,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,7,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,4,4,4,7,5,6,6,5,3,4,3,4,3,3,3,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,20,11,11,8,11,7,8,7,11,6,7,5,7,5,6,6,10,6,6,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,7,4,4,3,5,3,4,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,11,6,6,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,8,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,7,4,4,3,5,3,4,3,4,2,2,2,3,3,4,4,8,5,5,4,6,4,5,4,7,4,4,3,5,3,4,4,4,3,3,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,14,7,7,5,8,5,5,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,4,5,4,6,4,6,7,8,5,5,4,6,4,6,6,11,6,7,6,10,7,9,9,16,9,10,7,11,7,10,10,18,10,11,9,16,11,16,16,27,14,14,10,14,8,8,7,11,6,6,5,8,5,7,7,12,7,7,5,8,5,5,5,8,5,6,5,9,6,9,9,20,11,11,8,12,8,10,9,16,9,10,8,14,9,13,12,22,12,12,9,13,8,11,10,18,10,12,11,19,13,19,19,16,9,9,6,8,5,5,4,6,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,6,4,6,6,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,11,6,7,5,7,5,6,5,9,5,5,4,5,4,5,5,9,5,5,4,6,4,5,4,7,4,3,2,3,2,3,3,10,6,6,4,5,3,4,4,8,5,6,5,7,5,6,6,10,6,6,5,8,5,6,5,9,6,7,6,11,8,11,11,9,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,7,5,6,5,9,5,5,4,6,4,5,5,15,8,8,6,8,5,6,6,10,6,7,5,8,5,7,7,12,7,7,5,8,5,6,6,10,6,7,6,9,6,9,8,8,5,5,4,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,5,3,3,3,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,38,20,20,14,20,12,14,12,20,11,12,9,14,9,11,10,18,10,10,7,10,6,7,6,11,6,7,6,9,6,8,7,13,7,6,4,6,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,5,3,4,3,5,4,7,7,9,5,6,4,6,4,5,4,7,4,5,4,6,5,7,7,13,7,7,5,8,5,7,6,10,6,6,5,9,7,10,10,14,8,8,5,7,4,5,5,8,5,6,5,8,5,7,7,14,8,8,7,11,7,8,8,14,8,10,8,14,10,14,14,13,7,8,6,8,5,7,6,10,6,6,4,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,14,7,7,5,6,4,4,4,7,4,5,4,6,4,5,5,10,5,5,4,6,4,4,3,5,3,4,4,6,5,7,7,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,14,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,20,10,10,7,10,6,8,7,13,7,8,6,10,6,8,8,14,7,7,5,7,4,5,5,8,5,6,5,9,6,8,8,14,8,8,6,8,5,5,4,5,3,3,3,4,3,5,5,8,5,5,4,6,4,6,5,9,5,5,4,6,4,5,5,7,4,4,3,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-6,-9,-9,-19 +0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,4,3,5,4,5,5,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,5,4,4,4,6,4,6,6,5,3,3,2,3,2,3,3,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,5,4,7,4,4,4,5,4,5,5,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,3,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,9,5,4,3,5,3,4,3,5,3,2,2,2,2,2,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,4,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,7,5,6,6,10,6,6,5,9,6,9,9,14,8,8,6,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,7,5,6,5,9,5,6,5,8,5,7,6,11,6,6,5,7,5,6,6,10,6,6,6,10,7,10,10,8,5,5,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,3,4,4,5,3,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,4,6,4,6,6,6,4,4,3,4,3,3,3,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,20,11,11,8,11,7,8,7,11,6,7,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,3,3,4,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,7,5,8,8,7,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,4,3,4,3,5,3,4,4,5,3,3,3,4,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,3,3,3,2,3,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,11,6,6,5,6,4,5,5,8,4,4,4,5,4,5,5,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,7,4,3,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,10,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,4,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,4,4,5,4,4,4,7,4,5,4,7,5,7,7,6,4,4,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,2,6,3,3,3,4,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,4,2,3,3,4,3,3,2,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,14,8,8,6,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,3,3,5,3,3,2,4,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,3,6,4,4,4,5,4,6,6,5,3,3,2,4,3,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7 +1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,2,1,1,1,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,2,2,2,2,3,2,3,3,10,5,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,4,8,5,5,5,8,5,7,7,10,6,6,5,7,5,7,6,11,7,8,6,10,7,10,10,15,8,8,6,8,5,5,4,8,4,4,3,5,4,5,5,7,4,5,4,5,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,10,6,6,5,7,5,6,6,11,7,8,6,10,7,11,11,8,5,5,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,4,4,5,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,6,6,6,3,3,3,4,3,3,3,3,2,2,2,4,3,4,3,7,4,4,4,6,4,5,4,4,3,3,3,4,3,4,3,8,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,22,12,12,8,12,7,9,7,12,7,7,5,8,5,7,6,11,6,6,5,7,4,5,4,8,5,5,4,5,4,5,4,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,3,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,3,4,4,7,4,4,3,5,4,5,4,6,4,5,4,6,4,6,5,5,3,3,3,4,3,3,3,3,2,3,3,4,3,5,5,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,7,4,4,3,5,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,2,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,6,4,5,4,6,4,5,4,6,4,4,3,4,3,3,2,3,2,3,3,5,3,4,4,4,3,3,2,2,2,2,3,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,2,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,5,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-2,-4,-3,-5,-5,-11 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,3,5,4,5,5,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,13,7,8,5,8,5,6,5,8,5,5,4,5,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,7,4,5,4,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,2,2,2,4,3,4,4,4,3,3,3,3,3,4,3,6,4,4,4,6,4,6,6,8,5,6,4,6,4,5,5,8,5,6,5,8,6,8,8,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,7,4,4,3,5,4,5,5,8,5,6,5,8,6,8,8,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,1,1,2,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,5,5,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,3,3,2,3,2,3,2,2,2,5,3,4,3,3,2,2,2,4,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,17,9,10,7,10,6,7,6,10,6,6,4,6,4,5,5,9,5,4,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,4,2,2,2,4,3,4,3,5,3,4,3,4,3,4,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,6,4,4,3,4,3,3,3,5,3,4,4,5,4,6,6,5,3,3,2,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,3,3,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,2,2,4,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-9 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,3,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,5,4,7,5,7,7,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,15,8,9,6,9,5,6,5,9,5,5,4,5,4,5,5,8,4,4,3,5,3,4,4,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,4,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,8,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8 +1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,3,3,4,3,4,3,5,4,5,4,2,2,2,1,1,1,2,2,2,2,2,2,4,3,5,5,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,14,8,8,5,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,4,6,6,6,4,4,3,5,4,5,5,8,5,5,5,8,6,8,8,14,8,8,6,9,6,7,7,12,7,9,8,13,9,13,12,18,10,10,7,9,6,7,6,10,6,6,5,8,5,7,7,9,5,6,4,6,4,5,4,6,4,4,4,6,5,7,7,15,8,8,6,8,5,7,6,10,5,5,4,6,4,6,6,11,6,6,5,8,5,7,7,12,7,8,7,13,9,13,13,8,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,5,3,2,2,2,2,2,2,4,3,4,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,8,8,6,4,4,3,5,3,4,4,6,4,4,3,4,3,5,5,9,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,8,5,5,3,4,3,3,3,5,3,3,3,5,4,5,4,5,3,3,2,3,3,4,4,7,4,5,4,5,4,6,6,7,4,4,3,3,2,3,2,3,2,2,1,1,1,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,28,14,14,10,14,8,10,9,15,8,9,7,10,6,8,8,13,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,11,6,6,4,6,4,5,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,4,5,3,4,4,7,4,5,4,5,4,5,4,9,5,5,4,6,4,4,4,7,4,5,4,5,4,5,5,4,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,5,6,5,8,6,9,9,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,11,6,6,4,6,4,5,5,8,5,5,4,7,5,6,5,7,4,4,3,4,3,4,4,6,4,5,4,6,5,7,7,6,4,4,3,4,3,4,4,7,4,4,3,3,2,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,16,9,9,6,9,6,7,6,10,6,6,5,8,5,6,6,10,6,6,4,5,3,4,4,6,4,4,4,7,5,6,6,14,8,8,6,9,5,6,5,8,5,6,5,7,5,6,6,8,5,5,4,6,4,4,3,5,3,4,4,6,4,5,5,2,1,1,1,1,1,2,2,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,2,2,2,2,4,3,5,5,6,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-7,-15 +1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,8,5,5,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,3,3,5,4,5,5,8,5,5,4,5,4,4,4,7,4,5,4,8,5,7,7,10,6,6,4,5,4,4,4,6,4,4,3,5,4,5,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,8,5,7,7,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,5,5,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,3,2,1,1,1,1,1,1,1,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,8,5,5,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,3,3,2,3,3,5,3,4,3,5,4,5,5,9,5,6,4,6,4,5,5,9,5,6,5,9,6,8,8,11,6,6,4,6,4,4,4,7,4,5,4,6,4,6,5,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,5,4,5,5,9,5,6,5,9,6,8,8,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,4,3,4,3,4,3,3,3,4,3,5,5,3,2,2,2,3,2,3,3,4,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,3,4,4,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,2,1,2,2,2,1,2,1,1,1,1,1,0,0,18,9,9,6,9,5,6,5,9,5,5,4,7,5,6,6,8,4,4,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,5,3,4,3,4,3,4,3,5,3,2,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,4,2,2,2,3,2,3,3,6,3,3,3,5,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,5,4,6,6,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,5,3,4,3,5,4,5,5,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,10,6,6,4,6,4,4,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,9,5,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,0,0,0,0,0,0,-3,-1,0,0,-2,-1,-2,-2,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,14,7,7,5,7,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,5,3,4,3,6,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,4,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,3,3,3,2,3,3,4,3,4,4,3,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,11,6,6,4,6,4,5,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,3,4,3,4,4,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,6,12,7,9,7,12,8,12,12,13,7,7,5,8,5,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,7,7,12,7,8,7,12,8,11,11,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,6,6,4,3,3,3,4,3,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,3,2,2,2,2,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,24,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,10,6,6,5,7,4,5,5,9,5,6,4,6,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,3,5,3,2,2,2,2,3,3,5,3,4,4,6,4,6,6,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,3,3,3,4,3,3,3,7,4,4,3,4,3,4,4,8,5,5,4,7,5,7,7,7,4,4,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,3,4,3,4,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,11,6,6,4,6,4,5,5,9,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,5,4,6,4,6,6,12,7,7,5,8,5,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,5,4,6,4,5,5,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,6,3,3,2,3,2,2,2,6,3,3,3,4,3,4,4,6,4,4,3,3,2,3,2,5,3,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-15 +1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,5,5,8,5,5,4,6,4,4,4,8,5,6,5,8,6,8,8,9,5,5,4,6,4,5,4,7,4,4,3,5,4,4,4,6,4,4,3,4,2,3,3,6,4,4,3,4,3,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,0,16,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,6,3,3,2,4,2,3,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,4,5,5,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,4,3,4,3,5,4,5,5,11,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,12,12,12,7,7,5,8,5,6,5,10,6,6,4,7,5,6,6,9,5,5,4,5,3,4,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,8,5,7,7,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,4,5,4,6,5,5,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,4,6,4,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,7,4,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,3,4,2,2,2,2,2,2,2,5,3,4,3,5,4,6,6,5,3,4,3,3,3,4,4,5,3,4,3,4,3,3,3,5,3,4,3,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,5,9,5,6,4,6,4,6,6,9,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15 +3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,5,4,5,3,4,4,6,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,5,4,5,3,4,4,7,4,4,4,5,4,6,6,11,6,6,5,8,5,6,6,11,7,8,7,11,8,11,11,12,7,7,5,7,5,6,5,9,5,6,4,7,5,6,6,9,5,5,4,5,4,5,4,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,5,4,7,5,6,5,10,6,6,5,7,5,7,6,11,7,8,7,11,8,11,11,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,6,5,7,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,4,3,5,4,4,3,5,4,5,4,8,4,5,4,5,3,4,4,7,4,4,4,6,4,6,5,8,5,5,4,5,3,4,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,5,4,5,5,5,3,4,3,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,8,4,4,3,4,3,4,4,6,4,4,3,5,4,5,4,8,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,12,6,6,5,7,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,6,4,5,5,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +5,3,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,4,3,5,5,4,3,3,2,2,2,2,2,3,2,2,2,2,1,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,3,3,4,4,8,4,4,3,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,8,5,6,5,8,6,9,9,19,10,11,8,11,7,8,7,13,7,8,6,10,6,8,8,14,8,8,6,9,6,7,6,11,6,7,5,8,5,7,7,14,8,8,6,8,5,6,6,11,6,7,6,10,7,10,10,18,10,11,8,12,8,11,11,20,12,14,12,21,15,22,22,24,12,12,8,12,7,8,7,13,7,7,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,11,8,11,11,21,11,11,8,12,7,9,8,15,9,10,9,15,10,13,13,25,13,14,10,16,10,13,13,24,14,16,13,23,15,21,21,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,6,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,2,4,3,4,4,6,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,11,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,1,1,1,2,2,2,2,3,3,4,3,3,3,4,3,5,5,10,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,5,5,8,6,9,9,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,3,2,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,1,1,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,47,24,23,15,22,13,15,12,21,12,13,10,15,10,13,12,21,11,11,8,11,6,7,6,11,6,7,6,11,8,11,10,19,10,10,8,12,7,9,7,12,7,7,5,6,4,5,5,8,5,5,4,7,5,6,6,10,6,7,5,8,6,8,8,14,7,7,5,6,4,5,4,6,4,5,4,7,5,6,6,10,5,5,4,5,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,3,4,4,6,4,5,4,6,4,6,5,9,5,6,5,7,5,6,5,8,5,6,5,9,7,10,10,10,5,5,4,5,4,5,4,7,4,5,4,7,5,7,6,11,6,7,5,8,5,7,6,11,6,6,5,8,6,8,8,14,8,8,6,10,6,8,7,12,7,8,6,10,7,9,9,16,9,10,7,11,7,9,8,14,8,9,8,13,9,12,12,16,8,8,6,8,5,6,5,7,4,5,4,7,5,7,6,11,6,6,4,6,4,5,4,6,4,4,4,7,5,6,6,12,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,2,3,2,3,3,5,3,4,4,19,10,11,8,11,6,7,6,11,6,7,6,10,7,9,9,17,9,9,7,11,7,9,8,15,9,10,8,14,9,12,12,23,12,13,9,13,8,9,8,14,8,8,6,10,7,9,9,16,8,8,6,9,6,7,6,11,6,7,6,9,6,8,8,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,7,6,9,6,9,8,15,8,8,6,8,5,5,4,6,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,-4,-1,-1,0,-1,0,0,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-10,-6,-8,-7,-13,-7,-9,-8,-15,-10,-16,-16,-33 +3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,13,7,8,6,8,6,7,7,12,7,8,7,12,8,11,11,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,1,1,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,5,5,5,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,6,7,6,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,4,4,3,3,2,3,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,3,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,6,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,12,6,7,5,7,4,5,5,7,4,5,4,5,4,5,5,8,5,5,4,5,4,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,6,4,4,3,5,4,5,4,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,1,2,2,2,2,1,1,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,4,8,4,4,3,6,4,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,6,4,6,6,10,6,6,5,7,5,6,6,11,6,7,6,11,8,12,12,13,7,6,5,7,4,5,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,12,6,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,6,8,7,12,7,8,7,12,8,11,11,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,4,3,3,2,1,1,2,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,4,5,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,24,12,12,8,12,7,8,7,11,7,8,6,8,5,6,6,11,6,6,4,7,4,4,4,6,4,4,4,6,4,6,6,10,6,6,5,7,4,5,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,5,8,5,5,3,3,2,2,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,4,3,5,3,3,3,4,3,3,3,5,3,4,3,4,4,6,6,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,5,9,5,5,4,6,4,4,4,7,4,5,4,7,5,6,6,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,9,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,9,5,6,5,6,4,5,5,8,5,5,4,7,5,7,7,12,6,6,4,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,4,5,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-3,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-16 +2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,4,4,4,8,5,5,5,8,6,8,8,9,5,5,4,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,5,5,8,5,5,4,6,4,6,5,8,5,6,5,8,6,8,8,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,17,9,9,6,9,5,6,5,8,5,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,3,3,3,4,3,3,4,6,4,4,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,2,2,2,4,2,3,2,3,3,4,4,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,3,4,3,4,4,5,3,4,3,4,2,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,4,3,3,2,2,2,2,1,1,1,1,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,3,7,4,4,3,4,3,4,4,8,5,5,3,4,3,4,4,8,5,5,4,6,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,11,8,12,12,13,7,7,5,8,5,5,5,9,5,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,6,6,12,7,7,5,8,5,6,5,8,5,6,5,8,5,7,7,12,7,7,6,9,6,7,7,12,7,9,7,12,8,11,11,1,1,2,2,2,2,2,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,2,2,2,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,4,4,5,3,4,3,4,3,4,4,8,5,5,4,6,5,7,7,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,6,3,3,3,4,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,25,13,13,9,13,8,9,7,12,7,8,6,9,5,6,6,13,7,7,5,7,4,5,5,7,4,4,4,6,4,5,5,10,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,3,5,3,4,3,4,3,3,2,5,3,3,3,4,3,5,5,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,5,3,3,3,7,4,4,4,6,4,6,5,9,5,5,4,6,4,5,4,8,5,5,5,8,5,7,7,12,6,6,4,6,4,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,4,3,3,3,5,3,2,2,2,1,1,1,2,2,3,3,4,3,4,4,9,5,5,4,5,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,6,4,5,5,7,4,5,4,5,3,4,4,8,5,5,4,5,3,4,4,5,3,4,3,4,3,4,4,4,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,2,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-16 +2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,3,2,3,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,7,4,5,4,7,5,7,7,8,5,5,4,5,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,4,5,4,5,4,7,4,5,4,7,5,7,7,1,1,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,6,8,5,6,5,7,4,5,4,6,4,4,4,8,4,5,4,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9 +2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,4,3,3,2,2,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,3,4,3,3,3,4,3,4,4,9,5,5,4,5,3,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,6,4,4,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,7,5,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,6,4,4,3,5,3,4,3,5,4,6,5,8,5,5,4,6,4,6,5,9,5,6,5,9,6,8,8,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,4,2,2,2,3,3,4,3,5,3,4,3,4,3,4,5,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,4,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,18,10,10,7,9,6,7,6,9,5,6,5,7,4,5,4,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,5,3,3,3,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,4,4,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,2,3,2,3,3,3,2,2,2,3,3,4,4,6,4,4,3,3,2,2,2,5,3,4,3,5,3,4,4,8,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,10,5,5,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,1,1,1,3,2,2,2,3,3,4,4,7,4,4,3,3,2,3,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,4,3,6,4,4,3,6,4,6,5,8,4,4,3,5,3,4,3,4,3,3,2,3,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-11 +2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,8,10,5,5,4,5,4,4,4,6,4,4,3,4,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,5,4,5,5,7,4,4,3,5,4,5,4,8,5,6,5,8,5,7,7,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,2,3,3,2,2,2,1,1,1,2,2,3,2,2,2,2,2,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,4,3,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-10 +2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,8,5,5,4,6,4,4,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,6,6,8,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,6,5,7,5,6,6,13,7,8,6,10,6,8,8,14,8,9,8,13,9,14,14,18,9,9,6,9,5,6,6,10,6,6,5,7,5,6,5,7,4,4,3,5,4,6,6,10,6,7,6,9,6,9,9,14,7,7,5,8,5,6,5,8,5,6,5,7,5,8,8,12,7,8,6,9,6,8,8,14,8,9,8,13,9,12,12,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,3,5,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,4,3,3,3,4,3,5,5,8,5,6,5,8,5,7,7,5,3,4,3,4,3,3,2,2,1,1,1,1,1,1,1,3,2,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,4,3,4,3,5,4,6,6,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,1,5,3,3,2,3,2,2,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,29,15,14,10,14,8,10,8,14,8,8,6,9,6,8,7,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,14,7,7,5,7,5,6,5,8,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,4,6,4,5,5,9,5,5,3,4,3,4,4,6,3,3,3,4,3,4,4,5,3,3,2,3,2,1,1,0,0,0,0,0,0,0,1,6,4,4,3,3,2,2,2,4,2,2,2,2,2,2,2,7,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,5,4,6,4,5,5,5,3,4,3,4,3,3,3,4,3,3,3,5,4,6,6,9,5,5,4,5,3,4,4,6,4,4,4,7,5,6,6,12,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,7,4,5,4,6,4,5,4,6,4,4,3,5,3,4,4,7,4,5,4,5,3,4,4,6,4,4,3,5,3,4,3,7,4,4,3,3,2,3,3,4,3,3,3,4,3,5,5,10,6,6,5,7,4,5,5,8,5,5,4,6,5,7,7,13,7,7,5,7,5,6,5,8,5,5,4,6,4,6,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,6,4,4,3,5,3,3,3,4,3,4,3,5,3,4,4,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-9,-9,-19 +2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,7,5,8,8,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,2,3,3,4,4,6,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,5,5,7,4,5,4,5,4,5,5,8,5,5,4,7,5,7,7,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,3,3,5,3,4,3,5,3,4,4,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,16,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,8,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,8,4,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,4,2,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,5,3,4,3,3,2,3,3,5,3,4,4,5,4,5,5,8,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,3,2,3,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,4,3,5,4,5,5,8,5,6,4,6,4,6,5,9,5,6,5,8,6,8,9,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,5,3,3,3,4,3,4,4,6,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,7,7,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,3,5,3,4,3,5,4,5,5,3,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,17,9,9,6,9,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,5,3,3,2,3,2,3,3,7,4,4,3,5,3,4,3,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,4,3,4,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,3,6,3,3,3,4,3,4,4,5,3,3,2,4,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,9,5,5,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,5,4,5,4,7,4,5,4,6,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,4,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,6,4,4,4,6,4,6,6,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,4,2,3,2,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +3,2,2,1,0,0,0,0,-1,0,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,7,5,6,5,8,5,7,7,10,5,5,4,6,4,4,4,9,5,5,4,6,4,6,5,7,4,4,4,6,4,4,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,4,3,6,4,4,4,6,4,6,6,12,7,7,5,8,5,6,6,10,6,7,6,10,7,10,11,14,8,8,6,8,5,6,5,9,5,5,4,6,4,6,5,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,13,7,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,9,6,7,6,9,7,10,10,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,6,4,4,4,6,4,5,5,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,19,10,10,7,10,6,7,6,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,4,4,12,7,7,5,8,5,5,5,6,4,4,3,5,4,5,5,8,5,5,4,6,4,5,4,5,3,4,4,6,4,6,5,8,4,4,3,5,3,4,4,6,3,3,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,6,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,4,5,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,9,5,4,3,4,3,3,3,4,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,6,4,5,4,6,4,5,5,12,7,7,5,6,4,5,4,8,5,5,4,6,4,5,4,5,3,3,2,3,2,2,2,3,2,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,5,5,8,5,5,4,5,3,4,3,7,4,4,4,6,4,5,5,9,5,6,4,6,4,5,4,5,3,3,3,4,3,5,5,11,6,6,4,6,4,4,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-4,-2,-4,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-17 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,6,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,5,3,4,3,6,3,3,3,4,3,3,4,6,3,3,3,4,3,4,4,6,4,5,4,6,5,7,7,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,8,5,5,4,5,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,2,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,4,2,3,3,6,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,4,6,3,3,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,3,4,3,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,4,4,6,3,3,3,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,8,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,3,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,6,4,6,6,11,6,6,5,7,5,6,5,10,6,7,6,9,6,9,9,13,7,7,5,7,4,5,5,7,4,4,4,5,4,5,5,8,4,4,3,6,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,6,4,4,5,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,3,2,2,1,2,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,17,9,9,7,10,6,7,6,9,5,6,5,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,10,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,6,4,4,4,5,3,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,5,3,3,3,5,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,3,2,3,3,5,3,3,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,5,5,12,6,6,4,6,4,4,4,7,4,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,5,3,4,3,4,3,4,3,5,3,4,4,11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,4,3,3,3,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-15 +2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,6,6,6,9,6,9,9,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,8,4,4,3,5,4,4,4,8,4,4,3,5,4,5,5,8,5,6,5,8,6,9,9,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,16,9,9,6,9,6,7,6,9,5,6,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,4,4,6,4,4,3,5,4,5,5,9,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,5,4,5,5,11,6,6,4,6,4,4,4,7,4,4,4,5,4,4,4,6,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,8,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,3,3,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14 +4,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,3,5,3,3,3,5,4,5,4,7,4,4,4,6,4,6,6,12,7,7,5,8,5,7,6,11,7,8,7,11,8,12,13,18,9,9,7,10,6,7,6,11,6,7,6,9,6,8,7,12,6,6,5,7,5,7,6,11,6,7,6,9,6,8,8,14,7,7,5,8,5,6,5,9,5,6,5,8,6,9,9,18,10,11,8,12,8,10,9,16,9,11,9,16,11,16,17,25,13,14,10,14,8,10,8,14,8,8,6,10,6,8,8,15,8,9,7,10,6,7,7,12,7,7,6,10,7,9,9,22,11,11,8,11,7,8,6,10,6,6,5,7,5,7,7,14,8,8,7,11,7,10,9,17,10,12,10,16,11,16,16,4,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,6,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,0,-1,0,0,0,-3,-1,-1,0,-1,0,1,2,3,2,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,5,5,8,6,8,7,3,2,2,2,2,2,2,3,5,3,3,2,3,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,5,4,6,4,5,5,8,4,4,3,3,2,2,2,3,2,3,3,5,4,5,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,31,16,17,12,17,10,13,11,20,11,11,9,14,9,11,11,20,11,11,8,11,6,7,6,10,6,7,5,8,6,8,7,17,9,9,6,9,6,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,10,6,7,6,10,7,9,8,18,9,9,7,10,6,7,6,11,6,6,4,5,3,4,4,6,3,3,2,3,2,2,1,0,0,0,0,-1,0,0,0,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,8,5,5,3,4,3,3,3,4,3,3,3,6,4,6,6,14,7,7,5,6,4,4,4,7,4,4,3,5,4,6,6,10,6,6,5,8,5,6,6,11,6,7,5,8,6,8,8,13,7,7,5,6,4,5,5,8,5,6,5,8,5,7,7,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,9,21,11,11,8,11,7,9,8,13,7,7,5,8,5,6,6,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,7,4,3,2,3,2,2,2,3,2,2,2,3,2,3,4,7,4,4,4,6,4,5,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,5,8,5,6,5,9,6,8,8,14,8,8,6,9,6,8,7,12,7,7,6,10,7,9,8,19,10,10,7,10,6,6,5,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,10,6,6,4,5,4,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-6,-6,-13,-7,-8,-7,-13,-8,-13,-14,-29 +2,1,1,1,2,2,1,1,1,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,10,5,5,4,6,4,4,4,6,4,4,3,5,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,9,6,9,9,13,7,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,5,5,4,6,4,4,4,7,4,5,4,6,4,5,5,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,5,9,5,6,5,9,6,9,9,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,3,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,11,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,4,6,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,5,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,3,3,3,5,3,4,3,5,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14 +2,1,1,1,2,2,2,1,0,1,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,7,5,8,8,11,6,6,5,6,4,4,4,6,4,4,3,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,6,5,11,6,7,5,7,5,6,6,10,6,6,5,9,7,10,10,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,9,5,6,4,6,4,5,4,8,5,6,5,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,8,4,4,4,6,4,6,6,9,5,6,5,9,7,10,10,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,2,2,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,17,9,10,7,10,6,8,7,12,6,6,5,8,5,7,6,12,6,6,5,6,4,4,4,6,4,4,3,5,4,5,4,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,5,4,6,5,11,6,6,4,6,4,4,4,7,4,3,2,3,2,3,3,4,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,5,3,3,2,3,2,3,3,4,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,9,5,5,3,4,3,3,3,4,2,2,2,3,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,5,4,5,5,8,4,4,3,4,3,4,3,4,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,5,11,6,6,5,7,5,6,5,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,4,3,4,4,6,4,4,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,6,4,4,4,7,4,5,4,5,3,4,4,7,4,4,4,5,4,5,5,10,5,5,4,5,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-4,-7,-4,-7,-7,-15 +2,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,4,7,5,7,7,11,6,6,4,5,4,5,4,6,4,4,3,5,3,3,3,7,4,4,3,5,3,4,3,6,4,4,4,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,3,3,3,5,4,5,5,7,4,5,4,7,5,7,7,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,7,4,4,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,3,4,4,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-3,-5,-3,-5,-5,-11 +2,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,6,4,4,4,6,4,5,4,8,5,5,4,6,4,4,4,7,4,5,5,8,6,9,9,12,7,7,5,8,5,6,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,5,5,6,4,5,4,6,4,6,6,9,5,6,4,6,4,4,4,6,4,5,4,6,4,6,6,13,7,7,5,8,5,7,6,11,6,7,6,10,7,11,11,17,9,8,6,8,5,6,6,10,6,6,5,7,4,5,5,11,6,6,5,7,4,5,5,9,5,6,5,8,6,8,8,15,8,8,6,8,5,6,5,7,4,5,4,5,4,5,5,9,5,6,5,7,5,6,6,11,6,7,6,10,7,11,11,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,3,3,4,4,6,4,4,4,4,3,3,2,2,2,3,3,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-2,-4,-4,19,10,10,8,12,7,9,8,14,8,8,6,9,6,8,7,13,7,7,5,7,4,5,4,8,5,5,4,6,4,5,5,10,5,5,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,7,7,5,7,4,5,4,7,4,3,2,3,2,3,3,4,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,3,3,4,3,3,3,10,5,5,3,4,3,4,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,4,3,7,4,4,4,6,4,6,6,10,5,5,3,4,3,4,4,5,3,3,3,4,3,3,3,8,4,4,3,4,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,5,7,4,5,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,5,11,6,6,4,6,4,4,3,7,4,5,4,6,4,6,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,5,11,6,6,4,6,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-9,-9,-19 +2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,6,3,3,3,4,3,3,3,5,3,3,3,5,4,6,6,8,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,6,5,7,7,11,6,5,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,5,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,12,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,8,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,2,4,3,3,3,4,3,4,4,7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,8,5,5,3,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,4,7,4,4,3,4,3,3,2,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,3,3,4,3,4,3,3,2,2,2,4,3,3,3,3,3,4,3,8,4,4,3,6,4,4,4,6,4,4,4,7,5,8,8,11,6,6,5,6,4,4,4,7,4,4,4,5,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,10,6,6,4,7,5,6,6,9,5,6,5,8,6,9,9,14,7,7,5,7,5,6,5,8,5,5,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,5,4,7,5,6,6,12,6,6,4,6,4,5,5,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,10,6,6,5,9,6,9,9,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,16,9,9,6,9,6,7,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,6,4,5,5,11,6,6,4,6,4,4,4,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,8,4,4,3,3,2,3,3,3,2,3,2,3,2,2,3,4,3,3,3,3,2,3,3,5,3,4,3,4,3,5,5,9,5,4,3,4,3,4,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,5,3,4,3,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,5,3,4,3,4,3,4,4,6,4,4,3,5,3,4,5,9,5,4,3,5,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16 +2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,7,4,4,3,5,4,4,4,6,4,4,4,7,5,7,7,10,6,6,4,6,4,4,4,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,5,3,4,4,9,5,5,4,6,4,5,5,9,5,6,5,8,6,8,8,13,7,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,6,4,4,4,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,9,5,6,5,9,6,9,8,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,9,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,5,4,5,5,10,5,5,4,6,4,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,5,4,5,5,10,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,3,4,3,5,3,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15 +3,2,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-4,-1,-1,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,3,2,2,2,3,2,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,2,2,2,4,3,3,3,7,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,13,7,8,6,8,5,6,6,10,6,7,6,10,7,11,11,19,10,10,7,10,6,7,7,12,7,8,6,9,6,8,8,12,7,7,5,8,5,5,5,8,5,5,5,8,5,7,7,13,7,8,6,8,5,5,5,8,5,5,4,7,5,7,7,16,9,10,7,11,7,9,9,16,9,11,9,16,11,15,15,24,12,12,8,12,7,8,7,13,7,7,6,9,6,8,8,15,8,9,6,9,6,8,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,7,8,6,9,6,7,7,13,7,8,6,10,7,9,9,16,9,11,9,15,10,15,15,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,5,3,3,3,4,3,5,5,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,1,5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,0,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,2,1,0,0,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,28,15,15,11,16,10,12,10,17,9,9,7,11,7,9,8,17,9,9,7,10,6,7,6,10,6,7,5,8,5,7,7,16,8,8,6,9,6,7,6,10,6,6,5,7,5,7,7,10,6,6,5,7,5,6,6,10,6,7,6,10,7,10,10,18,10,10,7,10,6,7,5,8,5,5,4,6,4,5,4,7,4,3,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,4,11,6,6,5,7,4,5,4,6,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,5,5,8,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,5,9,5,5,4,5,3,4,4,8,5,5,4,7,5,7,8,18,10,10,7,9,5,6,5,8,5,5,4,6,4,6,6,8,4,4,3,5,4,5,5,9,5,5,4,7,5,7,7,9,5,5,4,6,3,3,3,4,2,2,2,3,2,3,4,9,5,5,4,6,4,6,6,10,6,6,5,8,6,8,8,15,8,8,6,8,5,5,5,8,5,5,4,7,5,6,6,10,6,6,5,7,4,5,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,6,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,8,5,5,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,3,4,4,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-5,-7,-7,-13,-6,-7,-5,-10,-6,-8,-8,-16,-8,-10,-8,-16,-10,-15,-15,-30 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,7,4,4,3,5,3,4,4,6,4,4,4,6,4,7,7,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,5,7,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,9,5,6,4,6,4,6,5,9,5,6,5,9,6,9,9,14,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,12,7,7,4,6,4,5,4,7,4,5,4,5,4,4,4,8,4,5,4,6,4,5,5,9,6,7,6,9,6,9,9,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,16,9,9,6,9,6,7,6,10,5,5,4,6,4,5,5,10,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,9,5,5,4,5,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,3,6,3,3,3,4,2,3,3,5,3,3,3,4,3,5,5,10,6,6,4,5,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16 +2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,5,4,5,4,7,4,5,4,7,5,8,8,14,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,6,4,4,4,5,3,4,4,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,5,7,5,7,6,11,6,7,6,10,7,10,10,17,9,8,6,8,5,6,6,10,6,6,4,7,5,6,6,10,6,6,4,6,4,6,5,8,5,6,5,8,6,8,8,14,8,8,5,7,4,5,5,7,4,5,4,6,4,5,5,9,5,6,4,6,4,6,6,10,6,8,6,10,7,10,10,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,19,10,10,7,10,6,8,7,11,6,6,5,7,5,6,5,11,6,6,4,6,4,5,4,6,4,4,3,6,4,6,5,10,5,5,4,6,4,4,4,6,4,4,3,4,3,5,5,7,4,5,4,6,4,4,4,7,4,5,4,7,5,6,7,11,6,6,5,7,4,4,3,5,3,3,3,4,3,4,3,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,3,7,4,4,3,5,3,4,3,3,2,2,2,3,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,4,5,5,10,5,5,4,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,5,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,4,5,5,7,4,4,3,5,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,4,3,5,4,5,4,8,5,5,3,5,3,4,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,-1,0,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-20 +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,12,7,7,5,7,4,5,4,7,4,5,4,5,3,4,4,8,4,5,4,5,3,3,3,5,3,3,3,5,3,4,4,8,4,5,4,5,3,4,3,6,4,4,3,5,4,5,4,8,5,5,4,6,4,6,5,9,5,6,5,8,6,8,8,14,8,7,5,7,5,6,5,9,5,5,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,5,4,6,4,6,6,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,8,4,5,4,5,4,5,5,9,5,6,5,8,6,8,8,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,5,6,6,9,5,5,4,6,4,5,4,9,5,5,4,5,3,4,4,5,3,4,3,5,4,5,4,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,6,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-7,-7,-16 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,3,2,3,3,5,4,5,5,7,4,4,3,4,3,4,4,7,4,4,4,6,4,5,5,12,7,7,5,8,5,6,6,10,6,7,6,11,8,12,12,22,12,12,8,12,7,8,7,12,7,7,5,8,5,7,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,8,7,13,7,8,6,9,5,6,5,10,6,6,5,8,5,7,7,14,8,8,7,11,7,9,8,15,9,10,8,14,10,14,14,25,13,13,9,13,8,9,8,15,8,8,6,10,7,10,9,16,9,9,7,10,6,7,7,12,7,8,6,10,7,9,9,20,10,10,7,10,6,8,7,9,5,6,5,8,6,8,7,13,7,7,6,9,6,9,8,15,9,10,8,14,9,13,13,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,2,3,2,2,2,2,2,2,1,3,2,3,2,3,2,3,2,2,1,1,1,2,1,1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,26,13,13,9,14,8,10,9,15,8,8,6,9,6,7,7,15,8,8,6,8,5,7,6,8,5,6,5,8,5,7,7,13,7,7,5,8,5,6,5,8,5,5,4,6,4,6,6,10,6,7,5,8,5,6,6,11,7,8,6,10,7,10,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,2,2,2,2,3,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,3,5,3,4,3,4,3,3,3,5,3,4,3,4,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,6,4,4,3,5,4,5,4,6,4,5,5,8,6,8,8,14,8,8,6,8,5,5,5,8,5,5,4,6,4,5,5,9,5,6,5,8,5,6,6,8,5,6,5,8,6,9,9,16,9,9,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,6,7,11,6,7,5,7,4,5,4,6,4,4,4,6,4,6,5,10,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,15,8,8,5,7,4,5,5,8,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,5,4,6,4,5,5,11,6,5,4,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,3,2,2,2,4,3,5,5,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,6,3,3,3,4,3,3,3,5,3,4,3,4,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,0,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-8,-15,-7,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-30 +1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,4,5,4,4,4,7,4,5,5,8,6,8,8,15,8,8,6,8,5,6,5,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,6,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,5,7,5,7,6,11,6,7,5,7,4,5,5,8,5,6,5,7,5,7,7,13,7,7,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,6,6,10,6,7,6,10,7,9,9,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,10,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,5,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,5,4,6,4,4,4,7,4,5,4,7,5,7,6,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,2,4,3,3,3,4,3,4,3,5,4,5,5,9,5,6,4,5,4,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,4,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,5,8,4,5,4,5,3,4,3,5,3,3,3,4,3,4,4,7,4,4,4,5,3,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-6,-4,-5,-4,-9,-4,-6,-4,-9,-6,-9,-9,-19 +1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,13,7,6,5,7,5,6,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,14,8,10,8,14,10,14,14,25,13,13,9,14,8,10,8,15,8,9,7,11,7,10,9,16,9,10,7,10,6,8,7,12,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,13,7,8,6,8,6,8,8,13,8,9,8,14,10,14,13,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,14,9,14,8,10,9,14,8,8,6,9,6,8,8,14,8,8,6,7,5,6,6,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,9,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,8,6,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,8,5,6,6,10,6,6,5,9,6,8,8,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,11,6,7,5,7,5,6,5,7,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,8,5,5,4,5,4,5,5,9,5,6,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,4,3,5,3,4,3,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,4,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,5,5,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,3,2,2,1,1,1,2,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,8,5,5,4,5,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,8,7,11,8,11,11,23,12,12,8,11,7,8,7,12,7,7,5,8,5,7,7,12,6,6,5,7,4,5,5,8,5,6,5,8,5,7,7,12,7,8,6,8,5,6,5,10,6,6,5,8,5,7,7,13,7,8,6,10,6,8,8,13,8,9,8,13,9,13,14,26,13,13,9,14,8,10,8,14,8,9,7,11,7,10,9,17,9,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,7,10,6,7,6,10,6,6,5,7,5,7,7,12,7,7,6,8,6,8,7,13,8,9,8,13,9,13,13,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,25,13,14,9,13,8,10,8,14,8,8,6,10,6,8,8,14,8,8,6,7,5,6,6,9,5,5,4,7,5,7,6,12,6,6,5,7,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,6,10,6,7,6,10,7,10,9,17,9,9,6,8,5,5,5,8,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,4,3,3,3,4,3,3,3,4,3,4,4,5,3,4,3,5,3,4,4,6,4,5,4,7,5,7,7,13,7,7,5,7,5,6,5,8,5,6,4,7,5,6,6,10,6,6,5,7,5,6,6,10,6,7,6,9,6,9,9,17,9,8,6,8,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,7,4,5,4,6,4,6,6,12,6,7,5,7,5,6,5,8,4,5,4,6,4,6,6,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,7,15,8,8,5,8,5,6,5,7,4,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,4,5,4,5,5,9,5,5,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,4,3,3,3,5,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-14,-14,-29 +1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,2,2,3,3,5,3,4,4,6,4,6,6,10,6,7,7,12,8,12,11,21,11,12,9,14,9,11,10,18,10,11,9,14,10,14,14,27,14,14,10,16,10,14,13,24,14,16,13,23,16,23,23,44,23,23,16,24,14,17,14,24,13,14,10,16,10,14,13,25,13,13,9,14,8,10,9,15,9,10,9,15,10,14,14,26,14,14,10,15,9,11,9,16,9,10,8,13,9,13,13,24,13,14,11,17,11,14,13,23,13,15,13,23,16,23,23,45,23,23,16,23,13,15,12,21,11,12,9,15,10,13,12,23,12,12,9,14,9,12,11,20,12,14,12,20,13,19,19,37,19,19,14,21,12,15,14,25,14,15,12,19,13,18,17,33,17,18,14,22,13,17,16,29,16,19,15,26,17,25,25,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,3,3,5,5,9,5,4,3,4,2,2,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,3,4,3,4,4,6,4,5,5,9,5,6,4,6,4,5,5,8,5,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,5,4,6,6,10,5,5,3,4,3,4,3,5,3,4,3,4,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-7,-8,50,25,25,17,25,14,16,13,22,12,13,10,16,10,12,11,21,11,11,8,11,7,8,7,13,8,9,7,11,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,6,7,5,8,5,7,7,13,8,9,7,11,8,12,12,22,11,11,8,12,7,8,7,12,7,7,5,7,5,7,7,12,7,7,5,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,2,2,3,3,5,3,4,4,8,5,5,4,5,3,4,4,6,4,4,4,7,5,7,8,15,8,7,5,7,4,4,3,5,3,3,2,3,3,4,4,7,4,5,4,7,4,5,5,9,5,5,4,7,5,7,7,13,7,7,4,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,6,4,6,6,11,6,7,5,7,5,6,6,11,7,8,8,14,10,14,14,29,15,15,10,15,9,11,9,15,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,4,2,2,2,3,3,4,4,6,4,4,3,3,2,3,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,3,5,3,3,2,3,3,4,4,6,4,4,3,4,3,5,5,8,5,5,4,6,4,4,3,5,3,4,4,7,5,7,7,12,7,7,5,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-2,-4,-5,-11,-5,-5,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-9,-12,-11,-22,-11,-13,-10,-19,-11,-16,-16,-32,-16,-17,-12,-21,-12,-16,-15,-29,-16,-19,-15,-28,-18,-28,-28,-58 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,8,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,7,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,6,11,6,7,5,8,5,7,6,12,7,7,5,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,11,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,9,8,15,9,10,8,14,9,13,13,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,3,3,5,3,3,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,5,3,4,3,3,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,3,2,4,3,3,3,5,3,3,3,4,3,4,4,7,4,4,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,15,8,8,6,8,5,6,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-6,-10,-6,-8,-7,-14,-7,-9,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,9,5,6,5,8,6,8,8,14,8,8,6,9,6,8,7,12,7,8,7,13,9,12,12,23,12,12,9,12,7,9,8,13,7,8,6,9,6,8,7,13,7,7,5,8,5,6,5,8,5,6,5,9,6,8,7,13,7,8,6,8,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,9,6,8,7,12,7,8,7,12,8,12,12,22,11,11,8,12,7,8,6,11,6,7,5,8,5,7,6,13,7,8,6,7,5,6,6,10,6,8,7,11,7,10,10,19,10,10,8,12,7,8,7,13,7,8,6,10,7,10,9,17,9,10,7,11,7,8,8,15,9,10,8,14,9,13,13,1,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,1,1,1,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,2,3,3,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,25,13,13,9,13,7,8,7,11,6,7,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,6,5,9,5,6,4,5,3,4,3,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,7,4,5,4,6,4,6,6,12,6,6,5,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,14,7,7,5,8,5,6,5,8,5,5,3,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-16,-8,-8,-5,-10,-6,-8,-7,-14,-7,-8,-7,-13,-8,-13,-13,-28 +1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,5,5,8,4,5,4,5,4,4,4,6,4,4,4,6,4,6,6,10,6,6,4,7,4,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,4,6,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,8,5,6,5,8,6,8,8,15,8,8,6,8,5,6,4,7,4,5,4,6,4,5,4,9,5,5,4,5,4,5,5,7,4,5,4,7,5,7,7,13,7,7,6,8,5,6,5,9,5,6,4,7,5,7,6,11,6,7,5,7,5,6,6,11,6,7,6,10,6,9,9,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,4,2,3,2,3,2,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,17,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,5,3,4,3,4,3,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,6,4,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,3,2,3,3,4,3,4,3,5,3,4,4,6,5,7,7,11,6,6,5,8,5,6,5,8,5,5,5,8,5,7,7,14,8,8,6,10,6,8,7,13,8,9,8,13,9,13,13,22,12,12,9,13,8,10,8,12,7,7,5,8,5,7,7,13,7,8,6,8,5,6,5,10,6,7,6,9,6,8,7,12,7,7,5,8,5,5,5,10,6,6,5,8,5,7,7,13,7,7,6,9,6,7,7,12,7,9,7,12,8,12,12,22,12,12,8,11,6,7,6,10,6,6,5,8,5,7,6,14,7,7,5,8,5,7,7,10,6,7,6,10,7,10,10,19,10,11,8,12,7,8,7,12,7,8,6,10,7,9,9,16,9,9,7,10,6,8,8,16,9,11,9,14,9,13,13,0,1,1,1,1,1,1,1,3,2,1,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,3,2,5,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,3,2,2,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,25,13,13,9,13,7,8,7,12,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,9,5,6,4,6,4,4,3,6,4,4,3,4,3,4,3,4,3,4,3,5,4,5,4,7,4,4,4,6,4,6,6,11,6,6,4,6,4,5,5,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,6,4,5,5,9,5,6,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,4,3,4,4,8,4,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,4,5,4,7,5,7,7,14,7,7,5,8,5,5,5,8,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-7,-5,-8,-5,-7,-7,-13,-7,-8,-6,-12,-8,-12,-13,-27 +2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,8,5,5,4,6,4,5,4,8,5,5,5,8,6,8,8,13,7,7,5,8,5,6,5,7,4,5,4,5,3,4,4,8,4,5,4,5,3,4,4,6,4,4,4,6,4,5,5,7,4,5,4,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,5,5,9,5,6,5,8,5,7,7,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,3,4,3,3,2,4,3,3,2,3,2,3,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-4,-6,-7,-15 +2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,2,2,2,4,3,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,5,4,5,5,9,5,6,5,7,5,6,5,9,5,6,5,9,6,9,9,15,8,8,6,9,5,6,6,9,5,6,4,6,4,5,5,9,5,6,4,6,4,4,4,8,5,5,4,7,5,6,6,9,5,6,4,6,4,4,4,7,4,4,4,5,4,5,5,10,6,6,5,7,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,7,4,5,4,7,4,4,3,5,3,4,4,9,5,5,4,6,4,5,5,7,4,5,4,8,5,7,7,12,7,7,5,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,5,6,4,6,5,10,6,6,5,9,6,8,8,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,1,1,0,1,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-3,18,10,10,7,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,3,3,4,4,5,3,3,3,4,3,3,3,4,3,3,2,4,3,4,3,2,2,2,2,3,2,3,3,4,3,4,3,5,3,4,4,8,5,5,4,5,3,4,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,5,3,3,2,4,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,3,2,2,2,5,3,4,4,6,4,6,6,10,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-6,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18 +2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,4,3,3,3,5,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,4,6,4,5,4,7,4,5,5,8,6,8,8,13,7,7,5,8,5,6,5,8,5,5,4,6,4,5,4,7,4,5,4,5,3,4,4,7,4,4,4,6,4,5,5,8,4,5,4,5,3,4,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,7,5,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,8,5,5,4,5,4,5,4,7,4,5,4,7,4,6,6,10,6,6,4,6,4,5,4,6,4,4,4,6,4,5,5,8,5,5,4,5,4,5,4,8,5,5,4,7,5,7,7,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,1,1,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,15,8,8,6,8,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,1,1,2,2,2,2,2,2,2,2,2,1,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,5,3,3,2,3,2,2,2,2,2,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,8,5,5,4,4,3,4,3,5,3,3,2,4,3,3,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14 +3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,4,3,3,3,4,3,3,2,3,2,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,5,3,3,2,3,2,3,3,6,4,5,5,8,6,8,8,11,6,6,5,7,4,5,4,7,4,5,4,7,5,7,7,10,6,6,5,9,6,7,7,12,7,9,7,12,9,13,13,23,12,12,8,12,7,9,8,14,8,8,6,8,5,7,6,11,6,6,5,7,5,6,6,11,6,7,6,10,7,9,9,13,7,7,5,7,5,6,5,9,5,6,5,7,5,7,7,14,8,8,7,11,7,8,8,14,8,9,7,11,8,11,11,22,12,12,8,12,7,8,6,10,6,6,4,6,4,6,6,14,8,8,6,9,6,8,7,12,7,7,6,9,6,9,9,17,9,9,6,8,5,6,6,10,6,7,6,9,6,8,8,13,7,8,6,10,6,8,8,14,8,10,8,13,9,12,11,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,4,3,3,2,2,1,1,1,2,2,2,2,2,2,2,1,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,26,13,13,9,13,7,8,6,10,6,6,5,8,5,6,6,10,6,6,5,7,4,5,4,6,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,4,3,4,3,5,5,3,2,3,2,3,2,3,3,4,3,4,4,7,5,7,7,13,7,7,5,8,5,5,5,8,5,5,4,6,4,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,10,5,5,4,5,3,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,7,4,4,3,4,3,3,2,2,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,8,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,3,4,4,8,5,5,4,6,4,4,4,6,4,5,5,8,6,8,8,14,8,8,5,7,5,6,5,8,5,5,3,4,3,3,3,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,2,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,4,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,3,2,3,2,3,2,3,3,4,3,3,2,3,2,3,3,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,1,1,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-8,-13,-13,-26 +2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,7,7,12,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,4,5,4,6,3,3,3,3,3,4,4,7,4,4,4,5,4,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,8,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,2,2,1,1,2,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,4,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,4,8,5,5,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,5,6,4,4,3,4,3,3,2,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,7,5,6,5,7,5,8,8,13,7,8,5,8,5,6,5,9,5,5,4,5,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,8,4,4,3,4,3,4,3,5,3,4,3,4,3,4,4,8,5,5,4,6,4,6,5,8,5,6,4,6,4,6,6,13,7,8,5,8,5,5,4,6,3,3,3,3,3,4,4,7,4,4,4,6,4,4,4,7,4,4,3,6,4,6,6,10,6,6,4,5,3,4,4,6,4,4,3,5,4,5,5,7,4,5,4,6,4,5,5,9,5,6,5,7,5,6,6,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,1,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,15,8,8,6,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,3,3,5,3,3,2,4,3,3,2,3,2,3,3,5,3,4,5,8,5,5,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,5,4,4,4,6,4,6,6,10,6,6,4,6,4,5,4,7,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,4,5,4,5,5,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,11,6,6,4,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,4,6,4,4,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,3,3,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,1,1,0,0,3,2,1,1,1,1,2,1,0,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +5,3,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,1,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,3,2,3,3,5,4,6,6,6,3,3,3,4,3,3,2,3,2,3,2,3,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,9,6,9,9,17,9,10,7,10,6,8,7,11,6,6,4,6,4,5,5,9,5,5,4,6,4,6,5,8,5,6,5,7,5,7,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,9,5,6,5,8,5,6,6,8,5,5,5,8,6,8,7,17,9,9,6,9,5,5,4,8,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,7,7,12,7,7,5,6,4,5,5,6,4,4,3,5,4,6,6,9,5,6,4,6,4,5,5,10,6,6,5,8,5,7,7,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,2,5,3,3,2,3,2,2,2,4,3,3,3,4,2,2,2,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,16,8,8,6,8,5,5,4,7,4,4,4,6,4,5,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,3,3,4,4,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,10,6,6,4,6,4,4,3,6,4,4,3,4,3,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,3,3,4,3,4,4,6,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,4,3,3,3,4,2,2,2,4,3,3,2,2,2,2,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,1,1,0,0,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,3,4,3,3,3,4,3,3,3,3,3,4,4,6,4,5,5,10,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,1,1,0,0,0,0,0,1,1,1,0,0,0,0,4,3,3,2,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,3,2,3,2,5,3,3,2,3,3,4,4,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,3,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,-1,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-5,-8,-8,-16 +4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,5,3,4,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,4,3,3,4,6,3,3,3,4,3,4,4,5,3,4,3,5,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,5,3,3,3,5,4,5,5,11,6,6,4,6,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,8,5,5,3,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,7,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,7,4,5,5,7,5,8,8,16,9,9,6,9,5,6,6,9,5,6,4,6,4,4,5,8,4,4,4,5,3,4,4,7,4,5,4,6,4,6,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,7,4,4,4,6,4,6,6,14,8,8,5,7,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,11,6,6,4,6,4,4,4,6,3,3,3,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,5,8,5,6,6,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,3,4,4,2,2,2,1,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,14,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,9,5,5,4,6,4,4,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,2,3,2,3,2,3,3,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,3,2,3,2,2,2,5,3,4,4,8,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,3,4,4,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +6,3,3,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,4,4,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,7,5,7,7,15,8,8,6,9,5,6,6,9,5,6,4,6,4,4,4,8,4,4,4,5,3,4,4,7,4,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,6,4,6,6,13,7,7,5,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,5,4,7,4,5,4,7,5,6,6,0,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,1,2,2,2,2,2,2,2,2,1,1,2,2,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,3,4,4,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-3,-3,-6,-3,-5,-5,-12 +11,6,6,4,6,4,4,3,4,2,2,1,1,1,1,1,0,1,1,1,1,1,2,3,5,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,2,2,2,1,1,1,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,2,2,2,2,3,2,3,3,5,4,5,4,7,4,5,4,6,5,7,7,6,4,4,3,3,2,3,3,5,3,4,4,6,4,6,6,10,6,6,5,7,5,7,7,13,8,9,8,13,9,13,13,29,15,15,10,15,8,9,8,13,7,8,6,10,7,9,8,14,8,8,6,9,5,6,5,8,5,6,5,7,5,8,8,19,10,10,7,10,6,8,8,14,8,8,6,10,6,8,8,14,7,7,5,8,5,7,7,12,7,8,6,10,7,10,10,25,13,12,8,12,7,8,6,10,5,5,4,6,4,6,6,10,6,6,5,9,6,7,7,13,7,8,7,11,8,11,11,19,10,10,7,10,6,8,7,12,7,7,6,9,6,8,7,12,7,7,5,8,5,6,5,9,6,7,6,11,8,11,11,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,4,3,3,2,3,2,3,3,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,3,3,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,7,5,6,6,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,25,13,12,8,12,7,9,7,12,7,7,5,8,5,6,6,10,6,6,4,6,4,4,3,5,3,3,3,5,3,4,4,4,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,3,4,5,16,9,9,6,8,5,5,4,7,4,5,4,6,4,4,4,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,6,3,3,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,6,6,10,5,5,4,6,4,5,5,8,5,6,5,7,4,5,5,8,5,5,4,5,3,3,3,4,3,4,3,5,3,4,4,10,5,5,4,6,3,3,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,3,3,6,4,4,3,3,2,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,2,3,3,5,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,3,2,3,2,2,2,4,3,5,5,6,4,4,3,4,3,4,3,5,3,3,2,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,6,4,4,3,4,2,2,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,1,2,3,2,2,2,4,3,5,5,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-7,-6,-13,-7,-8,-6,-11,-7,-11,-11,-23 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,7,4,5,4,7,5,7,7,15,8,8,6,8,5,5,4,7,4,5,4,5,4,5,5,8,4,4,3,5,3,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,4,8,4,4,3,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,5,4,6,4,6,6,10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,13,7,6,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,3,9,5,5,4,5,3,3,3,4,2,3,2,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,3,3,3,4,3,3,3,5,3,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,6,4,4,3,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,3,3,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,3,2,3,3,3,2,3,2,3,3,4,4,4,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,3,4,3,4,4,8,5,6,5,8,6,8,7,16,9,9,6,8,5,6,5,8,5,5,4,5,4,5,5,8,4,4,3,6,4,4,3,5,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,4,4,3,6,4,4,5,8,5,5,4,5,3,4,4,6,4,4,3,6,4,6,6,13,7,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,4,6,4,6,6,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,4,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,8,4,4,3,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-1,0,-1,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,4,6,4,6,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,4,5,3,4,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,4,3,3,3,4,3,4,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,5,3,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,8,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,3,3,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +8,4,4,3,3,2,2,2,4,2,2,2,2,1,1,1,0,1,1,2,3,2,3,3,4,3,3,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-2,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,2,2,2,2,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,5,5,8,5,6,5,8,5,7,7,16,9,9,6,8,5,6,5,9,5,6,4,6,4,6,5,10,6,6,4,6,4,4,3,6,3,3,3,4,3,4,4,10,5,5,4,6,4,6,5,8,5,5,4,6,4,6,6,7,4,5,4,6,4,5,4,7,4,5,4,5,4,5,5,14,8,8,5,7,5,6,5,8,5,5,4,5,3,4,4,7,4,5,4,6,4,4,4,8,5,5,4,6,4,5,5,9,5,4,3,4,3,4,4,6,4,4,3,4,3,4,4,9,5,5,4,6,4,4,3,6,4,5,4,6,5,7,7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,12,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,3,2,3,2,2,2,2,2,3,3,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,1,1,2,2,2,1,1,1,4,2,2,2,2,2,2,2,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,0,5,3,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,4,3,4,4,-1,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,3,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11 +5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,10,5,5,4,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,9,5,5,3,5,3,4,3,5,3,3,3,4,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,3,3,3,4,3,3,2,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,2,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,3,3,3,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,4,11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,6,6,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,2,2,2,2,2,1,1,1,2,2,1,1,0,0,5,3,4,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-3,9,5,4,3,5,3,4,3,4,3,3,2,4,3,3,3,5,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,3,2,2,1,2,2,2,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,1,1,2,2,1,1,2,1,1,1,2,1,3,2,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,0,1,2,2,2,2,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7 +6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,10,6,6,4,5,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,5,5,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,4,3,3,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-2,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,8,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,3,3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6 +11,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,0,0,0,1,1,1,2,2,4,2,2,2,3,2,3,3,7,4,5,4,5,3,3,2,3,2,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,-3,-1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,4,5,5,5,3,2,2,2,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,8,5,6,5,9,6,8,8,20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,7,5,6,5,8,5,5,4,7,5,6,6,12,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,9,5,6,4,6,4,5,5,8,5,5,5,8,5,6,6,18,10,10,7,9,6,7,6,10,6,6,5,7,5,7,6,10,6,6,5,7,5,6,5,8,5,5,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,8,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,1,1,1,1,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,8,4,4,3,5,3,3,3,4,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,4,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,7,4,4,4,6,4,5,4,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,13,7,6,4,6,4,4,4,6,3,3,3,4,3,4,4,9,5,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,8,4,4,3,5,3,3,3,4,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,3,2,1,1,1,1,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,2,3,2,1,1,1,1,1,2,7,4,4,3,4,3,3,3,4,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,2,1,1,1,1,1,1,2,3,2,2,2,2,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,1,1,1,0,0,0,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,10,6,6,4,5,3,3,3,4,3,3,3,4,3,3,2,6,4,4,3,3,3,4,4,6,4,5,4,7,5,6,6,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,3,2,2,2,3,3,4,3,3,3,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,4,3,3,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,4,3,5,5,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12 +6,4,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,4,3,4,3,3,3,5,3,3,3,5,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,3,4,3,4,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,6,4,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,4,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,13,7,7,5,7,4,5,4,7,4,4,3,4,3,4,4,8,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,5,3,4,4,5,3,4,4,11,6,6,4,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,4,3,4,4,7,4,4,3,4,3,4,3,4,3,4,3,4,3,5,5,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,5,3,4,3,3,2,3,3,4,3,3,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,7,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,5,3,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,7,4,3,2,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-7 +6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,3,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,5,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,8,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +11,6,5,4,5,3,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,2,1,1,1,1,2,2,3,3,6,4,4,3,4,3,3,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,3,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,2,2,2,2,5,3,4,4,6,4,6,6,17,9,8,6,8,5,6,6,10,5,5,4,6,4,6,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,9,5,4,3,4,3,3,3,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,5,8,5,6,6,13,7,8,6,9,5,6,5,7,4,4,4,6,4,6,6,8,5,5,4,6,4,5,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,6,4,6,5,10,6,6,4,6,4,5,5,6,4,5,4,6,5,7,7,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,9,5,5,4,5,3,4,3,2,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,7,4,4,3,4,3,4,3,5,3,3,2,2,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-2,-3,-2,-5,-3,-6,-6,8,5,5,4,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,8,4,4,3,4,3,3,3,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,-1,0,0,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,8,5,5,4,5,3,3,2,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,1,1,2,2,1,1,2,2,2,2,2,1,3,2,3,3,4,3,4,4,-8,-4,-4,-2,-4,-1,-1,0,-2,-1,-1,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +7,4,4,3,4,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,11,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,3,3,6,4,4,3,4,3,3,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,5,4,4,4,9,5,5,4,6,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,5,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,1,1,1,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,5,3,3,2,4,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,6,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,1,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-2,-2,-6 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,6,4,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,3,3,6,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,4,3,4,3,4,5,16,8,8,6,8,5,6,6,10,6,6,5,7,5,6,6,10,5,5,4,7,4,4,4,8,5,5,4,6,4,4,4,8,4,4,3,5,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,8,5,6,5,7,4,4,4,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,6,4,4,4,7,5,7,7,2,2,2,1,2,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,5,5,4,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,2,2,2,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,4,3,5,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,6,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,4,3,4,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,4,3,4,3,4,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,4,3,4,3,3,3,3,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10 +9,5,5,4,5,3,3,2,3,2,2,1,1,1,1,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,6,9,5,6,5,7,5,6,6,10,5,5,4,7,4,4,4,7,4,5,4,5,4,4,4,8,4,4,3,5,3,3,3,5,3,4,3,5,4,5,4,8,5,5,4,6,4,5,4,7,4,5,4,7,5,6,6,12,6,6,5,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,4,5,4,6,5,10,6,6,4,5,3,4,4,7,4,5,4,7,5,7,7,2,2,2,1,2,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,8,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,5,3,3,3,4,3,4,3,4,3,3,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,9,5,5,4,5,3,4,3,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,3,2,3,3,5,3,3,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10 +17,9,9,6,7,4,4,4,6,4,5,4,6,4,5,4,7,4,4,3,5,3,3,3,5,3,4,4,6,4,6,5,9,5,5,4,5,4,5,4,7,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,1,1,1,1,1,1,2,2,-6,-3,-3,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,4,5,10,6,6,5,7,4,5,5,8,4,4,3,5,4,5,4,7,4,4,3,4,3,4,4,7,4,5,4,7,5,7,8,32,16,16,11,16,9,11,9,16,9,9,7,10,6,8,7,13,7,8,6,8,5,6,6,10,6,7,6,9,6,8,8,14,8,8,6,9,5,6,5,8,5,5,4,6,4,6,6,10,6,6,5,8,5,6,5,9,5,6,6,10,7,10,10,22,12,12,8,11,7,8,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,14,8,8,5,7,5,6,5,9,5,6,5,8,5,7,7,12,7,8,6,10,6,8,8,14,8,10,8,14,10,14,13,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,14,7,7,5,6,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,14,7,7,5,7,4,5,5,8,5,5,4,5,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,4,3,5,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-10,-7,-11,-11,8,4,4,3,3,2,2,2,4,3,3,3,4,3,4,5,9,5,4,3,4,3,3,2,3,2,2,2,4,3,4,4,6,4,4,3,3,2,2,2,2,1,1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,11,6,6,4,6,4,5,5,9,5,6,5,7,5,6,5,8,5,5,4,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,6,3,3,2,3,2,2,2,4,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,4,3,4,4,-2,-1,-1,0,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,17,9,10,7,10,6,7,6,9,5,6,5,8,6,8,7,13,7,7,5,7,5,6,6,11,6,7,6,9,6,8,8,15,8,8,6,8,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,3,3,6,5,7,7,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,5,3,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21 +9,5,5,3,4,3,3,3,4,3,3,3,3,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,3,4,2,3,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,7,4,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,3,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,7,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,0,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,9,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +10,5,5,3,4,3,3,3,4,3,3,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,3,4,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,5,5,4,4,3,4,4,5,3,4,3,5,4,5,4,7,4,5,4,5,3,4,3,5,3,4,3,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,5,4,6,6,10,6,6,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,5,3,3,3,4,3,4,4,8,5,5,3,4,3,4,3,5,3,4,3,5,3,4,4,6,4,5,4,6,4,5,4,8,5,6,5,8,6,8,8,3,2,2,2,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,8,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,1,1,2,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,0,0,0,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,8,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,8,4,4,3,5,3,4,3,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,4,3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,3,2,2,2,4,3,4,4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,3,2,3,2,3,2,4,2,3,2,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,2,3,2,3,2,4,3,3,3,4,3,3,3,5,3,4,3,4,3,4,3,5,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,4,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +10,6,6,4,5,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,1,1,1,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,0,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,4,15,8,8,6,8,5,5,5,9,5,5,4,6,4,4,4,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,8,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,9,5,6,4,6,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,5,4,6,4,5,5,7,4,5,4,6,4,5,5,7,5,6,5,8,6,8,8,4,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,9,5,4,3,4,3,3,2,4,3,3,2,2,2,2,1,0,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,5,3,3,2,3,2,2,1,2,2,2,2,3,2,3,3,4,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,6,3,3,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,0,1,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,7,4,4,3,4,3,3,3,6,4,4,4,6,4,5,4,6,4,4,3,4,3,4,4,7,4,5,4,6,4,5,5,8,5,5,3,4,3,4,3,4,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,2,2,3,3,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,5,3,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,4,5,5,3,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,5,4,5,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,4,3,3,2,3,2,2,2,6,3,3,2,4,3,3,3,4,2,2,2,4,3,3,3,3,2,3,2,3,2,3,2,4,3,3,2,3,3,4,4,6,4,4,3,3,2,2,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,5,4,6,5,7,7,4,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,3,2,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,2,2,2,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,3,6,4,4,3,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,1,1,2,2,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,0,0,1,1,2,2,1,1,2,2,2,1,1,1,3,2,2,2,4,3,3,3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-3,-7 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,4,4,6,4,4,3,5,4,6,6,4,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,3,2,3,3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6 +12,6,6,4,5,3,4,4,6,4,4,3,5,4,5,4,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,16,9,9,6,8,5,6,5,8,5,5,4,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,3,4,4,9,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,2,4,3,3,3,5,3,4,4,6,4,5,4,7,5,6,6,12,7,7,5,6,4,4,4,6,4,4,3,4,3,4,5,10,6,6,5,7,5,6,6,10,6,7,6,11,7,10,10,6,3,2,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,9,5,5,4,6,4,4,3,4,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,8,5,5,4,6,4,4,3,5,3,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,4,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,-1,-1,7,4,4,3,4,3,3,3,4,3,3,3,5,4,5,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,9,5,6,4,6,3,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,4,3,3,2,2,2,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,4,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11 +7,4,4,3,3,2,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,4,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,5,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,3,2,2,2,5,3,2,2,3,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,6,4,6,6,5,3,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,0,0,0,0,1,1,0,1,0,0,0,0,5,3,4,3,4,2,2,2,3,2,2,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,6,4,4,3,4,2,2,2,4,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,2,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,2,2,2,1,0,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,2,2,2,1,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6 +6,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5 +10,5,5,3,4,3,4,4,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,8,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,7,4,3,2,3,2,3,3,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,4,3,3,3,4,3,3,3,12,7,7,5,6,4,4,4,7,4,4,4,6,4,6,5,7,4,4,3,5,3,3,3,4,2,2,2,2,2,3,3,6,3,3,2,3,2,3,3,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,4,3,4,3,3,2,3,3,5,4,5,5,9,5,4,3,4,3,4,3,6,3,3,3,4,3,4,4,9,5,6,4,6,4,5,5,7,4,4,4,6,5,7,7,6,3,3,2,3,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,4,3,3,3,4,3,3,2,4,3,3,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-5,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-2,-1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,-1,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,-1,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,4,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,0,0,5,3,3,2,2,1,1,1,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,8,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,3,2,3,2,2,2,2,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,5,5,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,0,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +9,5,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,3,3,2,3,3,11,6,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,5,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-5,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,2,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,0,0,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,3,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8 +8,4,4,3,5,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,9,5,4,3,5,3,4,3,4,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,7,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,4,2,3,2,3,3,4,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,4,5,5,8,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,5,4,5,4,5,5,8,4,4,4,6,4,6,6,4,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,7,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +14,7,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,4,6,6,16,9,9,6,9,5,6,5,7,4,4,4,6,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,3,3,12,7,7,5,6,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,3,2,2,2,2,2,3,3,4,3,4,4,22,12,12,8,12,7,8,7,12,7,8,6,9,6,8,7,12,7,7,5,8,5,6,5,8,5,5,4,6,4,6,5,6,4,4,3,3,2,2,2,2,2,2,2,2,2,3,3,6,3,3,2,2,1,1,1,1,1,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,5,4,7,5,8,8,16,8,8,6,9,6,8,7,12,7,8,6,10,6,8,7,13,7,7,5,8,5,7,7,12,7,7,6,10,7,11,11,7,4,3,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,6,3,3,2,2,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,13,7,7,5,6,4,5,5,8,5,5,4,6,4,4,3,5,3,3,2,2,1,1,1,1,1,0,0,-1,0,-1,0,4,3,3,2,3,2,2,2,2,1,1,1,0,0,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,-1,-3,-3,-12,-6,-6,-4,-8,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,1,1,1,1,2,1,1,1,1,1,2,2,3,3,4,4,6,3,3,2,3,3,4,4,6,4,4,3,5,3,4,4,6,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,3,4,4,-15,-7,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,3,2,3,2,2,2,3,2,1,1,1,1,0,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15 +8,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,9,5,5,4,5,3,4,3,4,2,2,2,4,2,3,2,4,2,3,2,3,2,3,2,4,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,12,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,7,4,4,3,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8 +8,4,4,3,4,3,3,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,9,5,5,4,6,4,4,3,4,2,2,2,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,2,7,4,5,4,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,2,1,1,1,2,2,2,2,3,2,2,2,13,7,7,5,7,4,5,5,7,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,4,3,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,4,3,3,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,-1,4,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,8,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,-1,-1,-3,-1,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,2,2,3,2,2,2,3,2,2,2,-7,-3,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9 +6,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,7,4,4,3,4,3,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,6,4,4,3,4,3,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,-2,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +8,5,5,3,4,3,4,3,3,2,2,2,4,3,4,3,4,3,3,3,4,2,2,2,5,3,4,4,6,4,5,5,10,5,5,4,6,4,4,4,4,2,2,2,3,2,2,2,5,3,2,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,9,5,6,4,6,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,2,2,4,3,3,3,14,8,8,6,9,5,6,5,9,5,5,4,6,4,4,4,8,5,5,4,6,4,4,3,4,3,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,1,1,1,1,2,2,2,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,5,3,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,7,4,4,4,6,4,5,5,7,4,5,4,7,5,6,6,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,3,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,9,5,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-4,-4,-8,-5,-8,-8,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,1,1,0,0,0,0,0,0,-1,-1,0,0,0,-1,-3,-2,-3,-3,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,1,1,1,1,2,2,2,2,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-11 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,9,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,2,2,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6 +7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,3,2,3,2,3,2,2,2,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,5,3,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,12,6,6,5,7,4,5,4,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,2,2,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,6,4,5,5,7,4,4,3,4,3,3,3,4,3,3,2,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,4,5,4,6,6,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,1,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-3,-3,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,3,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,3,4,3,4,3,5,4,5,5,6,4,3,2,3,2,3,3,4,3,3,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,1,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-8 +12,6,6,4,5,3,4,4,6,4,4,4,6,4,5,5,4,3,3,2,3,3,4,4,6,4,4,4,6,4,6,6,13,7,8,6,8,5,6,5,8,5,5,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,4,4,6,4,5,5,6,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,10,6,6,4,6,4,4,4,6,4,4,3,5,4,5,5,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,21,11,10,7,10,6,7,7,12,7,7,5,8,5,6,6,11,6,7,5,7,4,4,4,6,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,5,3,3,3,4,3,5,5,8,5,6,5,9,6,9,8,11,6,6,5,7,4,5,4,7,4,4,4,6,4,5,5,9,5,5,4,6,4,5,5,10,6,7,5,8,6,9,9,5,3,4,3,4,3,3,3,4,3,3,2,2,2,3,3,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,9,5,4,3,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-8,-7,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-6,-13,-6,-7,-4,-7,-4,-6,-6,-13,-7,-9,-7,-13,-8,-12,-12,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,5,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,2,2,3,2,3,3,5,3,4,3,4,3,3,3,6,4,5,4,6,4,5,5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-17 +7,4,4,3,3,2,3,3,4,3,3,3,4,3,3,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,6,6,4,6,4,4,4,7,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,6,4,4,3,5,4,5,5,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-4,-4,-9 +9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,8,4,4,3,6,4,4,3,4,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,7,4,4,3,4,2,2,2,4,2,2,2,3,3,4,3,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,14,8,8,5,7,4,5,4,8,4,4,3,5,3,4,4,6,4,4,3,4,2,2,2,4,3,3,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,5,8,5,5,4,5,3,4,4,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,4,4,6,4,6,6,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,2,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,5,3,2,2,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-8,-4,-6,-4,-8,-5,-7,-7,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-3,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,2,2,3,3,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,4,3,3,3,4,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5,3,4,4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,12,7,7,4,6,4,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,5,4,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,4,5,5,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,1,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,3,-6,-2,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8 +14,7,7,5,8,5,5,4,7,4,4,4,6,4,5,5,5,3,4,3,4,3,4,3,6,4,5,4,6,5,7,7,12,7,7,5,8,5,6,5,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,4,3,3,3,4,3,3,3,20,10,10,7,10,6,7,6,11,6,6,4,6,4,5,4,8,4,4,3,4,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,2,2,2,4,2,2,2,3,2,3,3,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,7,5,7,7,11,6,6,5,7,5,6,5,6,4,5,4,6,4,6,6,11,6,6,4,6,4,6,6,10,6,6,5,9,6,8,8,4,3,3,2,2,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,-1,0,-1,0,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,6,3,3,2,2,2,2,1,3,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-3,-1,0,0,0,1,1,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,4,3,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,5,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,5,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,4,3,3,3,4,3,3,3,6,4,4,4,6,4,5,5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,3,5,4,5,5,8,5,5,4,5,3,4,3,4,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,2,2,4,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,13,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,3,2,4,2,3,3,4,3,5,5,8,4,4,4,5,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,6,4,6,6,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,4,2,2,2,2,2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-10 +14,8,8,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,7,4,4,4,5,3,3,3,4,3,4,4,6,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,7,4,4,3,3,2,3,3,4,3,3,3,3,2,3,3,5,3,3,2,4,3,4,3,4,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,10,6,6,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,4,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,3,3,4,3,4,3,5,3,4,4,5,4,6,6,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,4,3,6,4,4,3,5,3,4,4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +14,8,8,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,3,5,3,4,4,7,5,6,6,12,7,7,5,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,2,3,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,19,10,10,7,9,6,7,6,10,6,6,4,5,4,4,4,7,4,4,3,5,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,5,3,4,3,5,4,6,6,11,6,6,4,6,4,5,5,7,4,4,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,6,5,8,6,8,8,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,3,4,3,4,3,6,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,5,3,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,4,2,2,2,4,3,3,3,5,3,4,3,5,3,4,4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-7,-7,-14 +26,14,14,10,15,9,10,8,14,8,8,6,9,6,8,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,3,3,5,4,6,6,10,6,6,5,8,5,6,5,9,5,6,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,6,5,8,6,8,8,15,8,8,6,9,5,6,5,8,5,5,5,8,5,7,7,12,7,7,5,8,5,6,5,9,5,5,4,6,4,5,5,36,19,19,13,20,12,14,12,20,11,12,9,14,9,12,11,19,10,11,8,11,7,8,8,14,8,9,7,10,7,9,9,16,9,9,7,10,6,7,6,10,6,6,5,8,5,7,6,10,5,5,4,5,3,4,4,6,3,3,2,2,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,3,4,3,5,6,11,6,7,5,8,5,7,7,12,7,8,7,11,7,10,10,18,10,11,8,13,8,10,9,16,9,10,9,15,10,15,15,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-4,-5,-12,-6,-6,-3,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,9,5,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,3,5,3,4,3,4,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-6,-12,-8,-12,-12,-24,-12,-12,-7,-11,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-6,-5,-10,-6,-8,-8,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-22,-22,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,0,1,1,1,0,1,1,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,2,3,2,2,1,0,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,2,3,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,8,5,5,4,6,4,4,3,5,3,4,3,4,3,5,5,8,4,4,3,5,4,5,4,7,4,5,4,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,5,8,8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-6,-10,-10,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-8,-9,-7,-13,-8,-13,-14,-29 +14,7,7,5,8,5,6,5,8,5,5,4,5,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,8,4,4,3,5,3,3,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,7,4,6,5,8,5,6,5,8,6,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-4,-3,-6,-4,-6,-6,-14 +14,7,7,5,8,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,3,3,6,4,4,3,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,3,3,4,3,19,10,10,7,11,7,8,6,10,6,6,5,8,5,6,6,10,6,6,4,6,4,5,5,8,5,6,4,5,3,4,4,9,5,6,4,5,3,4,4,6,4,4,3,5,3,4,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,3,4,4,6,4,4,3,4,3,4,4,6,4,4,4,6,4,5,5,9,5,6,5,6,4,6,5,8,5,6,5,7,5,8,8,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-1,5,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-11,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,3,4,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-7,-4,-6,-6,-14 +10,5,5,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,3,4,3,3,2,4,3,3,3,4,3,4,4,4,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,3,3,4,3,3,3,4,3,3,2,3,2,3,2,4,3,3,2,3,2,3,2,13,7,7,5,7,4,5,4,7,4,4,4,6,4,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,5,3,4,3,5,4,6,6,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-4,-4,-9 +15,8,8,6,8,5,5,5,9,5,5,4,6,4,5,4,6,3,3,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,4,8,5,5,4,6,4,4,3,6,4,4,4,6,4,5,5,5,3,4,3,4,3,4,4,5,3,4,3,4,3,4,4,8,4,4,3,4,3,3,3,5,3,4,4,6,4,5,4,5,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,19,10,10,7,10,6,7,6,9,5,6,5,8,5,6,6,10,6,6,4,6,4,5,5,9,5,6,4,6,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,3,7,4,4,3,4,3,4,3,5,3,4,4,6,4,5,5,10,6,6,4,6,4,6,5,7,4,5,4,7,5,8,8,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,5,3,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-9,-4,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,1,1,1,2,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-5,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,3,3,4,4,4,3,3,3,4,2,2,1,2,2,2,2,3,2,3,3,3,2,2,2,2,2,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-9,-4,-4,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-8,-4,-6,-6,-13 +9,5,5,4,5,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,11,6,6,4,6,4,4,4,5,3,4,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,3,4,3,3,3,6,4,4,3,4,3,4,3,4,3,3,3,4,3,5,5,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7 +12,6,6,5,6,4,4,4,6,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,7,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,3,3,2,2,2,2,2,4,3,3,3,4,3,4,3,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,14,7,7,5,7,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,3,3,3,5,3,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,3,2,3,3,4,3,4,4,6,4,4,3,4,3,4,4,5,3,4,3,5,4,5,5,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,-1,4,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9 +11,6,6,4,6,4,4,4,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,3,2,3,3,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8 +20,10,10,7,9,6,7,6,9,5,5,4,5,4,5,5,6,3,3,3,4,3,3,3,4,2,2,2,3,3,4,4,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,4,2,2,2,3,2,2,2,4,3,3,2,3,3,4,4,11,6,7,5,7,4,5,4,5,3,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,4,3,4,3,5,3,4,4,5,3,3,2,3,2,3,3,6,3,3,3,4,3,4,4,21,11,11,8,11,6,7,5,8,5,5,4,6,4,5,5,10,6,6,5,7,4,5,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,6,4,4,3,5,3,3,3,7,4,3,2,3,2,3,3,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,8,5,5,4,5,3,3,3,4,3,3,3,4,3,4,5,9,5,6,4,6,4,5,4,7,4,5,4,6,4,6,6,1,1,1,1,2,2,2,2,4,2,2,1,1,1,1,1,1,1,1,1,2,2,3,3,4,3,3,3,5,4,5,4,2,2,2,2,3,2,3,2,3,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-2,7,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,5,3,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,-2,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-7,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-13,-14,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-10,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,2,4,2,2,2,3,2,3,3,4,3,3,3,4,3,4,4,5,3,3,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,4,3,5,3,4,4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15 +11,6,6,4,5,3,4,4,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,7,4,4,3,4,3,3,2,3,2,3,3,4,3,3,3,4,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,12,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,3,5,3,3,3,4,3,3,3,4,2,3,3,3,3,4,4,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,3,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7 +13,7,7,4,5,3,4,4,5,3,3,3,3,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,8,4,4,3,5,3,3,2,4,3,3,3,4,3,3,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,3,4,4,13,7,7,5,7,4,4,3,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,4,3,3,2,3,2,3,2,2,2,2,2,2,3,4,3,3,3,4,3,3,3,3,2,3,3,3,3,4,4,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,1,2,2,2,2,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,-1,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,2,2,1,2,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-2,-4,-4,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,2,2,2,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,3,3,3,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,3,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6 +16,8,8,5,7,4,5,4,7,4,5,4,5,3,4,4,7,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,3,4,3,4,3,3,3,5,4,5,5,11,6,6,4,6,4,4,3,6,4,4,3,5,4,5,4,6,3,3,3,4,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,5,3,3,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,16,9,9,6,8,5,6,5,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,4,2,2,2,2,1,1,1,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,7,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,-2,-1,-2,-2,3,2,3,3,4,3,3,3,2,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,-4,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,3,2,2,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,3,0,1,1,1,2,2,2,1,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,5,3,3,3,4,3,5,5,-3,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-5,-5,-11 +10,6,6,4,5,3,4,3,5,3,3,3,4,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,3,2,3,2,3,2,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,4,2,3,3,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,3,2,2,2,3,2,3,3,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7 +14,8,8,5,7,4,5,4,7,4,4,3,5,3,4,4,6,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,4,3,3,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,3,6,3,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,7,4,4,3,5,3,4,4,6,3,3,3,5,3,4,4,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,1,1,2,2,6,3,3,3,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,1,2,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-5,-3,-5,-5,-11 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,4,5,5,10,6,6,4,5,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,4,3,4,3,6,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,4,15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,4,7,4,4,3,4,3,4,4,6,3,3,3,5,3,4,4,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,6,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,-2,0,0,0,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10 +27,14,14,10,14,8,9,8,13,7,7,5,8,5,6,6,11,6,6,5,8,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,3,4,3,4,3,4,4,6,4,6,5,9,5,6,6,10,7,9,9,18,9,9,6,8,5,5,5,8,5,6,5,8,5,7,6,11,6,6,5,7,4,5,4,5,3,3,3,4,3,5,5,12,7,7,5,6,4,4,3,5,3,4,3,4,3,4,4,6,4,4,3,5,3,3,3,5,4,5,5,8,6,8,8,28,14,14,9,13,7,8,7,12,7,7,6,9,6,7,7,13,7,7,6,9,6,7,6,9,5,6,5,9,6,8,7,4,3,3,2,3,2,2,2,4,3,3,2,3,2,3,2,3,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,5,3,2,2,2,1,1,1,2,2,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,2,2,2,3,2,3,3,10,5,5,4,6,4,5,4,7,4,4,3,4,3,3,2,2,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,0,1,1,2,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,3,3,4,3,4,4,3,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-11,-5,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,3,2,1,1,0,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-7,-5,-8,-5,-8,-7,-15,-8,-10,-8,-16,-11,-17,-17,-17,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-1,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,3,3,4,3,4,4,7,4,4,3,5,4,6,6,-4,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,5,3,3,2,3,2,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-2,2,1,1,1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-10,-10,-21 +14,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,5,5,10,5,5,4,5,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,4,4,15,8,8,5,7,4,5,4,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,3,3,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10 +15,8,8,6,8,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,4,6,4,6,6,11,6,6,4,5,3,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,4,3,3,3,7,4,4,3,4,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,3,3,5,3,4,4,15,8,8,6,7,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,0,0,1,1,1,0,1,3,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,3,3,0,0,0,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,3,3,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,-1,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,3,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-2,-4,-2,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,1,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,3,4,3,4,4,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,11,6,6,4,5,4,4,4,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +19,10,10,7,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,3,3,3,5,3,2,2,2,2,2,3,3,2,2,2,4,3,3,3,6,4,5,4,6,5,7,7,14,7,7,5,6,4,4,3,6,4,5,4,6,4,5,5,9,5,5,3,4,3,3,3,6,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,3,2,2,2,2,2,2,2,5,3,4,3,4,3,3,3,5,3,4,4,6,4,6,5,17,9,8,6,8,5,6,5,8,5,5,4,6,4,5,5,7,4,4,3,4,3,3,3,5,3,4,3,4,3,4,4,4,3,3,3,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,7,4,5,4,5,3,3,3,5,3,3,2,3,2,3,3,1,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,2,2,3,3,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,4,2,2,2,2,2,2,2,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-5,-5,-10,-6,-10,-10,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-3,-1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4,3,4,4,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,-1,-1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12 +12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,4,3,5,5,9,5,5,3,4,3,3,2,4,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,4,2,3,2,3,2,2,2,3,2,3,3,4,3,4,4,10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7 +15,8,8,6,8,5,6,5,8,5,5,4,5,4,5,5,6,4,4,3,3,2,2,2,4,2,2,2,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,6,6,11,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,3,3,4,4,6,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,13,7,6,4,7,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,4,3,4,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-4,-2,-3,-3,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,2,2,2,2,2,2,1,1,1,3,2,3,3,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +14,8,8,6,8,5,6,5,8,5,5,4,5,4,5,4,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6,4,4,3,6,4,5,5,10,6,6,4,6,4,4,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,12,6,6,4,6,4,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,2,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +25,13,13,9,12,7,9,8,14,8,8,6,9,6,7,7,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,4,3,3,3,5,4,5,5,10,6,6,5,9,6,9,9,19,10,10,7,10,6,7,6,10,6,6,5,7,5,6,6,12,7,7,5,8,5,5,5,8,4,4,3,5,4,5,5,11,6,6,4,6,4,4,3,5,3,3,3,5,3,4,3,7,4,4,3,4,3,3,3,6,4,5,5,8,5,7,7,22,11,11,8,11,6,7,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,5,4,6,4,4,3,4,3,5,5,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,1,1,3,2,3,2,3,2,3,2,3,2,3,2,3,2,3,3,2,2,2,2,3,2,2,2,4,3,3,3,5,4,5,4,8,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,0,0,1,1,1,1,1,2,2,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,2,3,2,3,3,2,2,2,1,1,1,2,2,2,1,1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-3,-6,-4,-6,-6,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-7,-9,-7,-14,-9,-13,-13,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,-2,-2,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,2,3,3,4,3,4,4,-2,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,-2,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-16 +14,8,7,5,7,4,5,5,8,5,5,4,5,4,4,4,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,4,5,5,11,6,6,4,6,4,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,3,3,5,3,3,2,3,2,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,13,7,7,5,6,4,4,4,6,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8 +17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,7,4,4,3,3,3,4,3,5,3,3,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,13,7,6,4,6,4,4,4,7,4,4,3,5,3,4,4,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,4,3,3,2,5,3,3,2,3,2,3,3,4,3,4,4,6,4,6,6,15,8,8,5,7,4,5,4,7,4,4,3,4,3,4,4,6,4,4,3,5,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,2,2,2,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10 +14,8,7,5,8,5,5,5,7,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,3,5,3,3,3,5,4,5,5,10,6,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,6,4,4,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,3,3,3,2,3,3,5,4,5,5,12,6,6,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,2,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,2,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8 +24,13,13,9,13,8,9,8,11,6,6,5,8,5,7,7,10,6,6,4,6,4,4,4,6,4,5,4,6,4,6,6,10,6,6,4,5,4,5,4,7,4,4,3,4,3,4,4,5,3,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,8,6,8,5,6,5,10,6,6,5,7,5,7,6,12,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,9,5,5,4,6,4,4,3,4,3,3,3,4,3,4,3,7,4,4,3,4,3,4,4,5,3,4,4,8,5,7,7,20,10,10,7,10,6,7,6,8,4,4,3,5,4,5,5,8,5,5,4,6,4,4,3,6,4,4,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,3,2,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,0,1,1,1,0,0,-1,-1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,1,1,1,1,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-10,-5,-7,-6,-12,-7,-11,-11,-11,-5,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-2,-2,-3,-1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-7,-4,-6,-6,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16 +16,9,9,6,9,5,6,5,8,4,4,4,6,4,5,5,7,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,6,6,12,6,6,4,6,4,4,4,7,4,4,4,5,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,2,3,2,2,2,3,2,3,2,5,3,3,2,3,2,3,3,4,3,3,3,5,4,5,5,13,7,7,5,7,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,2,4,2,3,2,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10 +23,12,12,8,13,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,4,4,7,4,4,4,5,4,5,5,9,5,6,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,6,8,8,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,4,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,6,4,4,3,4,3,4,4,6,4,5,5,7,5,7,7,19,10,10,7,10,6,6,5,9,5,6,4,5,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,4,3,5,3,4,3,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-5,-3,-4,-4,-8,-4,-5,-4,-6,-4,-6,-6,-10,-5,-6,-5,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-6,-7,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +23,12,12,8,12,7,8,7,12,6,6,5,8,5,7,6,10,5,5,4,7,4,5,4,7,4,4,4,5,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,8,6,8,9,17,9,9,6,9,5,6,5,9,5,6,5,7,5,6,6,10,6,6,4,6,4,5,4,8,4,4,3,5,3,4,4,8,5,5,4,5,3,4,3,4,3,3,3,4,3,3,3,6,4,4,3,5,3,4,4,6,4,5,4,7,5,7,7,18,10,10,7,10,6,6,5,9,5,5,4,6,4,6,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,4,4,7,4,4,3,5,3,3,3,4,3,3,2,3,2,3,2,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-11,-6,-7,-6,-11,-7,-10,-11,-12,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,1,0,1,1,1,2,2,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-15 +44,22,22,15,21,12,13,11,18,10,10,7,11,7,9,9,17,9,9,7,11,7,8,7,12,7,8,6,10,7,9,9,18,10,10,7,9,6,7,6,11,6,7,6,10,6,8,8,14,8,8,7,11,7,9,8,15,9,11,10,17,12,17,17,32,17,17,12,18,10,12,11,19,11,12,9,15,9,12,11,21,11,11,8,13,8,9,8,13,7,8,6,8,6,8,8,14,7,7,5,7,4,5,4,7,4,5,5,8,5,7,7,14,8,8,6,9,6,8,8,14,8,9,7,12,8,12,12,35,18,19,13,19,11,12,10,17,9,10,7,10,6,8,7,12,6,6,5,7,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,3,4,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,0,-1,0,1,1,1,1,2,2,3,3,4,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,6,6,11,6,7,5,7,4,5,4,7,4,4,3,5,3,3,3,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,1,2,3,2,3,3,5,3,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-6,-11,-7,-12,-12,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-21,-11,-12,-9,-15,-9,-13,-12,-23,-12,-14,-12,-22,-14,-22,-23,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,-1,-2,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,2,1,1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,0,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-15,-15,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,-1,-3,-1,0,1,1,1,2,2,2,2,2,2,3,2,2,2,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,2,4,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-9,-5,-8,-8,-16,-8,-10,-8,-15,-10,-15,-15,-30 +23,12,12,8,11,6,7,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,5,3,4,4,8,5,5,4,6,4,5,5,8,5,6,6,9,6,9,9,17,9,9,7,9,5,6,6,10,6,6,5,8,5,6,6,11,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,4,5,4,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +23,12,12,8,12,7,8,6,10,6,6,5,7,5,6,5,9,5,6,5,6,4,4,4,6,4,4,3,5,4,5,5,10,6,6,4,5,3,4,4,5,3,4,4,5,3,4,4,8,5,5,4,6,4,5,5,9,5,6,6,10,7,10,9,17,9,10,7,9,5,6,6,10,6,6,5,8,5,6,6,10,6,6,4,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,5,3,3,3,4,3,3,3,5,3,4,4,8,5,5,4,5,3,4,4,7,5,6,5,7,5,7,7,18,10,10,7,10,6,6,6,9,5,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,4,5,3,4,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6,4,4,3,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,3,2,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-12,-6,-7,-6,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-14 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,4,5,3,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,2,3,3,4,2,3,3,6,4,4,3,4,3,4,4,6,4,5,4,7,5,7,6,12,6,7,5,7,4,5,4,7,4,5,4,6,4,4,4,7,4,4,3,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,3,4,2,3,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,4,4,4,5,4,5,5,12,7,7,5,7,4,5,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,1,0,-1,0,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,3,2,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +26,13,13,9,14,8,8,7,11,6,6,5,7,4,5,5,11,6,6,5,7,5,6,5,7,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,5,3,4,3,5,3,4,4,9,5,6,4,6,4,5,5,9,6,7,6,10,7,9,9,17,9,10,7,10,6,7,6,10,6,6,5,8,5,6,6,10,5,5,4,6,4,5,4,6,4,5,4,6,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,9,5,6,4,6,4,5,4,7,4,5,5,8,5,7,7,18,10,10,7,11,6,7,6,10,5,5,4,6,4,4,4,7,4,3,2,3,2,3,2,5,3,4,3,4,3,3,3,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,3,3,4,3,4,3,5,3,4,3,5,3,3,3,5,3,3,2,3,2,3,4,4,3,3,3,4,2,2,2,4,2,2,2,2,1,1,1,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,1,1,1,-4,-2,-2,-1,-1,0,0,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-12,-6,-8,-6,-12,-8,-12,-12,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,1,1,1,2,1,1,1,2,1,1,1,3,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,2,1,1,1,1,1,2,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15 +16,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,7,4,4,3,4,3,4,3,5,3,3,3,4,3,3,3,6,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,10,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,5,3,4,4,11,6,6,5,7,4,5,4,6,3,3,3,4,3,3,3,4,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +20,10,10,7,10,6,6,5,8,5,5,4,5,3,4,4,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,3,3,4,4,7,4,5,4,5,3,4,4,7,4,5,4,7,5,7,7,13,7,8,6,8,5,5,4,7,4,5,4,6,4,5,5,7,4,4,3,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,4,3,4,3,6,4,4,3,5,3,4,4,5,3,4,3,5,4,5,5,13,7,8,6,8,5,6,5,7,4,4,3,5,3,4,4,5,3,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-2,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11 +18,9,9,6,9,5,6,5,8,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,3,3,3,4,3,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,6,7,5,7,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,11,6,6,5,7,4,5,4,6,4,4,3,4,3,4,3,4,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-8,-8,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +32,16,16,11,15,9,10,8,14,8,8,6,9,6,7,6,13,7,7,6,9,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,11,6,7,5,7,4,5,5,9,6,7,6,11,7,10,10,22,12,12,8,12,7,8,6,10,6,6,5,8,5,7,7,11,6,6,4,6,4,5,5,8,5,5,4,6,4,6,5,10,6,6,5,7,4,4,4,6,3,3,3,4,3,4,4,10,5,5,4,6,4,5,5,8,5,6,5,7,5,7,7,19,10,10,7,10,6,7,6,10,6,6,5,7,4,5,5,7,4,4,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,3,3,4,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,4,3,3,2,2,1,0,0,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,2,3,3,4,4,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-7,-14,-7,-8,-6,-10,-6,-8,-7,-13,-7,-8,-7,-14,-9,-15,-15,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,1,1,1,1,2,2,2,1,1,1,5,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-18 +18,9,9,6,9,5,6,5,8,5,5,4,5,4,4,4,8,4,4,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,4,6,4,6,6,12,7,7,5,7,4,5,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,3,4,3,4,3,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,6,3,3,3,4,3,3,3,5,3,4,3,4,3,4,4,10,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-4,-7,-4,-7,-8,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,2,2,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +20,10,10,7,10,6,6,5,9,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,4,3,4,4,8,4,4,3,5,3,4,4,7,4,4,4,7,5,6,7,14,8,8,6,7,4,5,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,11,6,6,5,6,4,4,4,7,4,4,3,4,3,3,3,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-6,-5,-9,-5,-8,-9,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10 +16,8,8,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,6,11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,4,9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-7,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7 +27,14,14,9,13,8,9,7,11,6,6,5,7,5,6,6,11,6,6,4,6,4,5,4,8,5,5,4,6,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,10,6,6,4,6,4,5,5,9,5,6,6,10,7,10,10,19,10,9,6,9,5,6,5,8,5,6,5,7,5,6,6,10,5,5,4,6,4,5,4,8,4,4,3,5,4,5,5,9,5,6,4,6,4,5,4,6,4,4,3,4,3,4,4,8,5,5,4,6,4,5,5,9,5,6,5,7,5,6,6,14,8,8,6,9,5,6,5,8,5,5,4,5,3,4,4,8,4,4,3,4,2,2,2,3,2,2,2,4,3,3,3,6,3,3,3,4,3,3,3,3,2,2,2,2,1,1,0,1,1,0,0,0,1,1,1,0,1,1,1,2,1,1,1,3,2,3,2,3,2,2,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,2,1,1,1,2,1,0,0,2,2,2,2,2,2,2,1,1,1,1,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,-4,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,4,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,5,6,5,7,4,4,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,7,4,4,3,4,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,7,5,7,7,12,6,6,4,6,4,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,4,3,5,4,4,4,9,5,5,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8 +24,12,12,8,12,7,8,7,10,6,6,5,6,4,6,5,9,5,6,4,6,4,4,4,7,4,4,4,6,4,4,4,10,6,6,4,5,3,4,3,5,3,4,4,5,4,6,6,9,5,6,4,6,4,6,5,8,5,6,5,9,7,10,10,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,8,5,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,8,5,6,4,7,5,6,6,13,7,7,5,8,5,5,4,7,4,4,3,5,4,5,4,7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-11,-7,-11,-11,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-6,-4,-6,-6,-13 +23,12,12,8,12,7,8,6,10,6,6,4,6,4,5,5,9,5,5,4,6,4,5,4,7,4,4,4,5,4,4,4,10,5,5,4,5,3,4,3,5,3,4,4,5,4,5,5,9,5,6,4,6,4,6,5,8,5,6,5,9,6,9,9,17,9,9,6,9,5,6,5,9,5,5,4,6,4,6,6,10,6,6,4,6,4,4,4,7,4,5,4,5,4,5,5,10,5,5,4,6,4,4,3,5,3,4,3,4,3,4,4,7,4,4,4,5,3,4,4,8,5,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,4,5,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-6,-5,-10,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,0,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +44,22,22,15,22,13,16,13,23,12,13,9,13,8,10,9,17,9,10,7,11,7,8,7,11,6,7,6,9,6,9,8,18,10,10,7,11,7,9,8,15,8,8,6,10,7,10,10,18,10,10,7,11,7,10,9,16,9,11,9,16,11,16,17,32,16,16,11,17,10,11,10,17,9,10,8,12,8,11,10,18,10,11,8,12,7,9,8,13,8,9,7,11,7,10,9,20,11,11,8,11,7,8,7,12,7,8,6,9,6,8,7,13,7,8,6,9,6,7,6,10,6,8,7,11,7,10,10,25,13,12,8,12,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,4,4,6,4,4,4,6,4,5,5,10,6,6,4,5,3,2,2,2,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,2,4,3,3,3,4,3,3,3,4,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-3,-5,-5,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,1,1,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-7,-6,-13,-6,-7,-5,-9,-6,-9,-9,-18,-9,-10,-7,-11,-6,-9,-9,-19,-10,-13,-11,-20,-13,-21,-21,-26,-12,-12,-8,-13,-6,-7,-5,-10,-5,-5,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-3,-3,6,3,3,3,4,3,3,3,4,2,2,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-6,-7,-5,-9,-6,-9,-9,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-8,-8,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,3,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-6,-11,-7,-11,-12,-25 +23,12,12,8,12,7,9,8,12,7,7,5,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,4,5,4,5,5,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,10,6,6,4,6,4,6,5,9,5,6,5,9,6,9,9,17,9,9,6,9,5,6,6,9,5,6,5,6,4,6,6,10,6,6,5,7,4,5,4,7,4,5,4,6,4,6,5,11,6,6,4,6,4,5,4,7,4,5,4,5,4,5,4,7,4,5,4,5,3,4,4,6,4,5,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,4,3,3,2,4,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-12 +24,12,12,9,12,7,9,8,13,7,8,5,8,5,6,5,10,6,6,5,6,4,4,4,7,4,5,4,5,4,5,5,10,6,6,5,6,4,5,5,9,5,5,4,6,4,6,6,11,6,6,4,6,4,6,5,9,5,6,5,9,7,10,10,18,10,10,7,9,5,6,6,10,6,6,5,6,4,6,6,10,6,6,5,7,5,6,5,8,5,6,5,6,4,6,6,11,6,6,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,6,14,8,8,6,7,4,5,4,7,4,4,3,5,4,5,5,7,4,4,3,4,3,3,2,4,2,2,2,3,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,2,2,3,2,1,1,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-4,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,1,2,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +17,9,9,6,9,6,7,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,8,5,5,4,5,3,4,4,7,4,4,3,5,4,5,5,9,5,5,4,5,4,5,4,7,4,5,4,7,5,7,7,13,7,7,5,7,4,5,5,8,5,5,4,5,3,4,4,8,5,5,4,5,4,4,4,6,4,4,4,5,4,5,4,8,5,5,4,5,3,4,4,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,1,1,1,1,2,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9 +27,14,14,10,14,8,10,9,15,8,9,6,9,6,7,6,13,7,7,5,7,4,5,5,8,5,6,5,7,5,7,7,12,7,7,5,8,5,6,6,10,6,7,5,8,5,7,7,14,8,8,6,8,5,7,7,12,7,8,7,12,8,11,11,21,11,11,7,10,6,8,7,12,6,6,5,7,5,7,6,13,7,7,5,8,5,5,5,10,6,6,5,7,5,7,6,13,7,7,5,7,4,5,5,8,5,5,4,7,4,5,5,9,5,5,4,6,4,5,5,6,4,5,5,8,6,8,8,16,9,9,6,9,6,7,6,8,5,5,4,6,4,6,5,8,5,5,3,4,2,2,2,4,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,2,2,2,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-3,-2,-3,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-17,-8,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,4,3,3,3,4,3,3,2,2,1,1,1,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,1,0,0,0,1,1,1,1,1,0,0,-1,0,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,5,6,6,10,6,6,4,6,4,5,4,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,5,5,9,5,5,4,5,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,4,4,3,5,4,5,4,8,5,5,4,5,3,3,3,6,3,3,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,3,5,4,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +22,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,11,6,6,4,7,4,5,5,8,5,5,4,7,5,6,6,11,6,6,5,7,4,5,5,8,5,5,4,6,4,6,6,12,7,7,5,7,5,6,6,10,6,7,6,10,7,10,10,17,9,9,6,9,6,7,6,10,6,6,4,6,4,6,5,11,6,6,5,7,4,4,4,7,4,4,4,7,5,6,5,11,6,6,5,6,4,4,4,8,4,4,4,6,4,5,5,7,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,14,8,8,6,7,5,6,5,8,5,5,4,6,4,4,4,8,4,4,3,4,2,2,2,3,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,2,2,2,1,0,1,2,2,2,1,1,1,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-6,-4,-6,-5,-11,-5,-6,-5,-11,-7,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,1,1,1,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-12,-6,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,2,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,6,10,6,6,4,6,4,5,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,5,5,7,4,5,4,6,4,6,6,11,6,6,4,6,4,5,5,9,6,7,6,10,7,9,9,15,8,8,6,9,5,6,6,9,5,5,4,6,4,5,5,10,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,11,6,6,5,6,4,5,4,7,4,4,4,6,4,5,5,6,4,4,3,5,3,4,4,6,4,4,4,6,4,6,6,13,7,7,5,7,4,5,4,7,4,4,4,5,4,4,4,7,4,4,3,4,2,2,2,3,2,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12 +40,21,21,14,20,12,14,12,22,12,12,9,13,8,11,10,19,10,10,7,11,7,9,8,15,8,9,8,13,8,11,10,20,10,10,7,10,6,8,7,13,7,8,7,11,7,10,10,19,10,10,8,12,8,10,9,17,10,12,10,16,11,17,17,28,15,15,11,16,9,11,10,17,9,10,7,11,7,8,8,17,9,10,7,10,6,8,7,12,7,8,6,10,7,9,9,20,11,11,7,10,6,8,7,13,7,8,6,9,6,9,8,11,6,7,5,7,5,6,6,10,6,7,6,10,7,11,11,25,13,13,9,13,8,9,8,13,7,8,6,9,6,7,7,13,7,7,5,6,4,4,4,6,4,4,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,2,1,1,1,3,2,2,1,1,1,1,2,3,2,3,2,3,2,3,3,6,4,4,3,5,3,4,3,4,3,3,2,2,1,1,1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,0,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-7,-10,-10,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-3,-4,-4,-12,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,1,1,2,2,3,2,2,2,3,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-7,-11,-11,-24 +23,12,12,8,12,7,8,7,13,7,7,5,8,5,7,6,12,6,6,5,7,4,5,5,9,5,5,5,8,5,7,6,11,6,6,4,6,4,5,4,8,4,5,4,6,4,6,6,11,6,6,5,7,5,6,6,10,6,7,6,9,7,10,10,16,9,9,6,9,6,7,6,10,6,6,4,7,4,5,5,10,6,6,4,6,4,5,4,7,4,5,4,6,4,5,5,12,7,7,4,6,4,5,4,7,4,5,4,6,4,5,5,7,4,5,4,4,3,4,4,6,4,4,4,6,4,6,6,14,8,7,5,8,5,5,5,8,4,5,4,5,4,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13 +27,14,14,10,14,8,10,9,15,8,8,6,10,6,8,8,15,8,8,6,8,5,6,6,11,6,6,5,9,6,8,7,13,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,7,7,5,7,5,7,7,11,6,7,6,11,8,11,11,19,10,10,7,11,7,8,7,12,7,7,5,8,5,6,6,12,7,7,5,7,5,6,5,9,5,6,5,7,5,6,6,14,8,8,5,7,5,6,5,8,5,5,4,7,5,6,6,9,5,6,4,5,3,4,4,7,4,5,4,7,5,7,8,17,9,8,6,9,5,6,5,9,5,6,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,2,2,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-16 +23,12,12,8,12,7,9,8,13,7,7,5,9,6,7,7,13,7,7,5,7,4,5,5,9,5,5,4,7,5,7,6,11,6,6,4,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,6,6,9,5,6,5,9,6,9,9,16,9,9,6,9,6,7,6,10,6,6,4,6,4,5,5,10,6,6,4,6,4,5,4,8,4,5,4,6,4,5,5,11,6,6,4,6,4,5,4,7,4,4,4,6,4,5,5,8,5,5,4,5,3,4,4,6,4,5,4,6,4,6,7,14,7,7,5,7,4,5,5,8,4,5,4,5,3,4,4,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,1,1,1,1,1,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-13 +40,21,21,15,22,13,15,13,22,12,12,9,15,10,13,12,23,12,12,8,12,7,8,7,15,8,9,7,11,7,10,10,20,10,10,7,11,7,9,8,13,8,9,7,11,7,10,10,17,9,9,7,10,7,10,9,15,9,10,9,15,10,15,15,28,15,15,11,16,9,11,9,17,9,9,7,10,7,9,8,16,9,9,7,10,6,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,7,6,11,6,7,6,9,6,8,8,14,8,8,6,8,5,7,7,11,6,7,6,11,8,12,12,24,12,12,8,12,7,9,8,13,7,7,5,8,5,7,6,11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,8,4,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,3,4,3,3,3,4,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-5,-8,-8,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-1,-2,-2,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-12,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-12,-6,-8,-7,-13,-6,-6,-4,-6,-4,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-4,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-12,-6,-8,-6,-12,-7,-11,-11,-24 +27,14,14,10,15,9,10,9,15,8,9,7,10,7,9,8,16,8,8,6,8,5,6,5,10,6,6,5,8,5,7,7,14,7,7,5,8,5,6,5,9,5,6,5,7,5,7,7,12,6,7,5,7,5,6,6,10,6,7,6,10,7,10,10,19,10,11,8,11,6,7,6,12,6,7,5,7,5,6,6,11,6,6,5,7,4,6,5,9,5,6,4,7,5,7,7,13,7,7,5,7,4,5,4,8,4,5,4,6,4,6,6,10,6,6,4,6,4,5,5,8,5,5,5,8,6,8,8,16,8,8,6,8,5,6,5,9,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,6,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-6,-13,-6,-8,-6,-12,-8,-12,-12,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-16 +39,20,20,14,22,13,15,13,22,12,13,10,15,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,11,8,11,11,20,10,10,7,12,7,8,7,13,7,8,6,10,7,9,9,17,9,10,7,10,6,8,8,15,9,10,9,14,10,14,15,28,15,16,11,16,9,10,9,17,9,10,7,10,6,8,8,16,9,9,7,10,6,8,7,13,7,8,6,11,7,10,10,19,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,11,7,8,7,12,8,12,12,24,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,3,4,3,3,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-9,-10,-7,-11,-7,-10,-9,-20,-10,-12,-10,-18,-12,-18,-18,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-2,0,0,0,1,1,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,0,1,1,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +39,20,20,14,21,12,15,13,22,12,13,10,16,10,13,12,23,12,12,8,12,7,9,8,14,8,9,7,12,8,11,11,21,11,11,8,12,7,8,7,12,7,8,6,10,7,9,9,17,9,10,7,11,7,9,8,15,9,10,9,14,10,14,15,29,15,16,11,16,9,10,9,16,9,9,7,10,6,8,8,15,8,9,7,10,6,8,7,13,7,8,6,11,7,10,10,18,10,10,7,10,6,7,6,11,6,6,5,8,6,8,8,14,8,8,6,8,5,7,7,12,7,8,7,12,8,12,12,23,12,12,8,12,7,8,7,13,7,8,6,9,6,7,6,11,6,6,4,6,4,5,4,7,4,4,3,5,4,5,5,8,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-9,-6,-11,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-27,-13,-13,-8,-13,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,2,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25 +77,39,38,25,37,21,24,20,35,19,20,15,23,14,19,18,33,17,18,12,18,10,12,11,19,11,12,10,16,11,16,15,29,15,16,11,16,9,11,9,16,9,9,7,11,7,10,9,16,9,9,6,8,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,3,4,4,6,4,4,4,6,5,7,7,13,7,7,5,7,4,5,5,9,5,6,5,8,5,7,7,12,6,6,5,7,4,5,4,7,5,6,5,8,5,7,7,12,7,7,5,6,4,4,3,5,3,3,2,3,2,3,2,3,2,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-8,-8,-17,-8,-9,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-17,-8,-9,-7,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-7,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-13,-14,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-8,-14,-9,-14,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-13,-10,-19,-12,-19,-19,-39,-19,-19,-13,-21,-12,-15,-12,-23,-12,-14,-11,-20,-12,-18,-18,-36,-18,-19,-14,-24,-14,-20,-19,-37,-20,-25,-21,-38,-25,-37,-37,-55,-27,-28,-18,-28,-15,-18,-14,-26,-13,-15,-11,-19,-11,-16,-15,-30,-14,-14,-9,-15,-9,-12,-10,-20,-10,-11,-9,-16,-10,-14,-13,-27,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-3,-2,-3,-1,0,0,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-15,-10,-17,-9,-12,-10,-19,-10,-11,-8,-15,-9,-13,-12,-25,-12,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-14,-21,-21,-44,-21,-21,-14,-21,-11,-14,-12,-24,-12,-14,-10,-18,-11,-16,-15,-31,-15,-16,-11,-18,-10,-13,-11,-22,-11,-13,-10,-18,-12,-18,-17,-35,-17,-18,-12,-18,-10,-13,-11,-20,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-10,-16,-9,-13,-12,-24,-12,-14,-11,-21,-13,-20,-20,-40,-20,-20,-13,-19,-10,-12,-10,-19,-9,-10,-7,-13,-8,-11,-11,-22,-11,-11,-8,-14,-8,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-37,-18,-19,-12,-19,-11,-14,-12,-24,-12,-14,-10,-17,-11,-16,-15,-30,-15,-16,-11,-18,-10,-13,-12,-24,-13,-16,-13,-25,-16,-25,-24,-49,-24,-23,-15,-23,-12,-15,-12,-23,-11,-12,-8,-14,-8,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-8,-6,-11,-7,-10,-10,-20,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-16,-9,-11,-9,-18,-11,-17,-17,-35,-17,-18,-12,-19,-10,-12,-10,-20,-10,-11,-9,-16,-10,-14,-14,-28,-14,-15,-11,-18,-10,-13,-12,-24,-13,-15,-12,-21,-13,-19,-19,-38,-19,-19,-12,-19,-10,-12,-10,-19,-9,-10,-8,-14,-8,-12,-12,-24,-12,-13,-9,-16,-9,-13,-12,-25,-14,-17,-14,-26,-17,-25,-25,-50 +39,20,19,13,19,11,12,10,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-18,-18,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-7,-4,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-7,-6,-14,-6,-7,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-24 +38,19,19,13,19,11,12,11,18,10,10,8,12,8,10,9,17,9,9,6,10,6,6,6,10,6,6,5,9,6,8,8,15,8,8,6,8,5,6,5,9,5,6,4,6,4,5,5,9,5,5,3,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,4,3,3,3,3,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,4,3,4,3,3,3,5,3,4,4,7,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-8,-4,-6,-5,-9,-5,-6,-5,-10,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-19,-9,-10,-7,-11,-7,-10,-9,-18,-10,-12,-10,-19,-12,-19,-19,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-9,-5,-8,-7,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-10,-5,-7,-6,-12,-6,-6,-5,-9,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-5,-6,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-10,-6,-10,-9,-19,-9,-9,-6,-9,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-8,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-24,-11,-11,-7,-11,-6,-8,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-3,-5,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-6,-5,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-24 +25,13,13,9,13,7,8,8,12,7,7,6,8,6,7,7,12,6,6,5,7,4,5,4,7,4,4,4,6,4,6,6,10,6,6,4,6,4,4,3,6,4,4,3,4,3,4,4,6,4,4,3,4,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,3,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-2,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-7,-13,-8,-12,-12,-18,-8,-9,-6,-8,-4,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-2,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16 +37,19,18,12,18,10,12,11,17,9,10,8,12,8,11,10,17,9,9,7,10,6,7,6,10,6,7,5,8,6,8,8,15,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,2,2,2,3,3,4,3,3,3,4,3,5,5,7,4,4,3,4,3,3,3,6,3,3,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,8,4,4,3,4,3,3,2,4,3,3,3,4,3,3,3,3,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-14,-7,-7,-5,-8,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-19,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-5,-10,-6,-8,-8,-20,-10,-11,-7,-12,-7,-10,-9,-18,-10,-12,-10,-20,-13,-20,-20,-27,-13,-13,-8,-13,-7,-9,-7,-12,-6,-7,-5,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-5,-4,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-13,-6,-6,-4,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-5,-9,-5,-6,-5,-10,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-11,-6,-7,-5,-10,-6,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-10,-19,-9,-9,-6,-10,-5,-6,-5,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-8,-5,-8,-9,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-11,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-19,-9,-10,-6,-10,-5,-7,-5,-10,-5,-6,-4,-7,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-14,-7,-9,-7,-13,-8,-12,-12,-24 +21,11,10,7,10,6,7,6,10,6,6,5,7,5,7,6,10,5,5,4,6,4,5,4,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +25,13,12,8,12,7,8,7,13,7,8,6,9,6,8,7,11,6,6,5,7,5,6,5,7,4,4,4,6,4,6,5,10,6,6,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,-1,-2,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-13,-17,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,2,1,1,0,1,0,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-4,-8,-5,-8,-7,-15,-7,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16 +21,11,11,7,10,6,7,6,11,6,7,5,8,5,7,6,9,5,5,4,6,4,5,4,6,4,4,3,5,4,5,4,9,5,5,3,4,3,3,3,5,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-11,-11,-14,-7,-7,-4,-7,-3,-4,-3,-5,-2,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-2,-4,-3,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13 +37,19,20,14,20,11,13,11,19,10,10,8,12,8,11,11,15,8,8,6,8,5,6,6,10,6,6,5,9,6,7,7,15,8,8,5,7,4,5,4,7,4,5,4,6,4,6,6,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,3,3,4,4,9,5,4,3,4,3,4,3,5,3,3,3,5,3,3,3,7,4,4,3,4,3,3,3,6,4,4,3,5,4,5,5,9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,3,2,1,1,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-20,-9,-9,-6,-10,-5,-7,-6,-11,-5,-6,-4,-8,-5,-8,-8,-21,-11,-12,-8,-14,-8,-11,-10,-20,-11,-14,-11,-21,-13,-20,-20,-27,-13,-13,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,1,1,1,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-25,-12,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-5,-8,-8,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-15,-7,-8,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-9,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-15,-7,-8,-6,-10,-5,-7,-6,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-7,-11,-11,-22,-11,-11,-7,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-4,-7,-4,-6,-5,-11,-6,-7,-5,-9,-5,-8,-8,-20,-9,-9,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-11,-23 +20,11,11,8,11,6,7,6,10,6,6,5,7,5,6,6,8,5,5,4,5,3,4,4,6,4,4,3,5,4,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-11,-6,-10,-10,-13,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +22,12,12,8,11,7,8,7,11,6,6,5,7,5,6,6,9,5,6,4,6,4,4,4,6,4,4,3,6,4,4,4,10,5,5,4,5,3,4,3,5,3,3,3,4,3,3,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,3,5,3,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-7,-4,-6,-6,-11,-6,-8,-6,-12,-7,-11,-11,-14,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-14,-6,-6,-4,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-8,-4,-4,-2,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-12,-6,-6,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-11,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12 +17,9,9,6,9,5,6,6,9,5,5,4,5,4,5,5,7,4,5,4,5,3,4,4,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-5,-2,-3,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9 +27,14,14,10,14,8,10,9,14,7,7,5,8,5,7,7,12,6,6,5,7,5,6,5,8,5,6,5,7,5,7,6,13,7,7,5,6,4,4,3,6,4,4,3,5,3,4,4,7,4,4,2,2,2,2,1,2,1,1,1,0,1,1,2,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,3,2,2,2,2,2,3,3,6,4,4,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,1,1,1,1,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-5,-10,-6,-8,-7,-14,-7,-9,-7,-14,-9,-14,-14,-16,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,3,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-18,-8,-8,-5,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-12,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-6,-3,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-4,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-5,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-7,-15 +17,9,9,6,9,6,7,6,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,4,5,3,4,3,5,4,5,4,8,5,5,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,2,2,2,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-11,-5,-5,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8 +23,12,12,8,12,7,9,8,12,6,6,5,8,5,6,6,10,6,6,4,6,4,4,4,7,4,4,4,6,4,6,6,11,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,3,3,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,3,5,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-12,-6,-6,-4,-9,-5,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,1,0,0,0,1,0,0,0,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-11 +21,11,11,8,11,7,8,7,12,6,6,5,7,5,6,6,10,5,5,4,6,4,4,4,7,4,4,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-11,-6,-7,-6,-11,-7,-11,-11,-12,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-10 +40,20,20,13,19,11,13,11,19,10,11,9,14,9,11,10,18,10,10,7,11,7,8,7,13,7,8,6,10,7,9,9,19,10,10,7,10,6,8,7,12,7,7,5,6,4,5,5,9,5,5,4,5,3,3,2,2,2,2,2,2,1,0,0,-1,0,0,0,0,1,1,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,3,2,3,3,4,3,5,5,12,7,7,5,6,3,3,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,5,4,5,4,6,4,4,3,3,2,3,3,6,3,3,3,4,3,4,3,5,3,3,2,3,2,3,2,3,2,2,1,1,1,0,-1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-6,-3,-3,-2,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-3,-5,-5,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,1,1,1,1,2,1,1,1,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-13,-6,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-8,-4,-6,-5,-11,-6,-8,-6,-12,-8,-12,-12,-20,-10,-10,-6,-10,-5,-6,-5,-11,-6,-7,-5,-10,-6,-10,-10,-22,-11,-12,-9,-15,-8,-11,-10,-21,-11,-14,-12,-22,-14,-22,-22,-24,-12,-12,-7,-11,-6,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,1,1,2,3,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-12,-6,-6,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-7,-11,-10,-28,-13,-13,-9,-14,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-9,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-5,-11,-5,-6,-5,-10,-6,-10,-10,-19,-9,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-8,-6,-10,-6,-10,-10,-24,-11,-10,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-9,-6,-9,-8,-21,-10,-10,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-5,-11,-7,-10,-10,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-6,-5,-9,-6,-9,-9,-19 +20,11,11,7,10,6,7,6,10,6,6,5,7,5,6,6,10,6,6,4,6,4,4,4,7,4,5,4,6,4,5,5,10,6,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,3,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9 +20,11,11,7,10,6,8,6,10,6,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,4,6,4,6,5,11,6,6,4,5,3,4,4,7,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,1,1,2,2,2,1,1,0,0,0,0,0,1,1,2,2,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-11,-7,-11,-11,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-9,-4,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-4,-2,-4,-2,-4,-4,-12,-5,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-10 +14,8,8,6,8,5,6,5,7,4,5,4,5,4,4,4,8,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,3,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-4,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-7,-4,-7,-7,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6 +21,11,12,8,12,7,8,7,11,6,6,5,8,5,7,6,12,6,6,4,6,4,5,4,8,5,6,5,7,5,6,6,11,6,6,4,6,4,4,4,8,5,5,3,4,3,4,4,5,3,3,2,3,2,2,2,2,1,1,1,2,1,1,0,0,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,2,2,2,2,3,2,3,3,6,3,3,3,4,3,3,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,4,3,3,2,2,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-4,-6,-6,-10,-5,-7,-6,-12,-8,-12,-12,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,2,3,2,2,2,2,2,3,3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-4,-3,-9,-4,-4,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-13,-6,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10 +12,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-4,-6,-6,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +15,8,8,6,9,5,6,5,9,5,5,4,6,4,5,5,10,6,6,4,5,3,4,4,6,4,4,4,6,4,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,1,1,1,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-4,-7,-4,-6,-4,-8,-5,-8,-8,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6 +13,7,7,5,8,5,5,5,8,4,4,4,5,4,4,4,9,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-5,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-8,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5 +24,13,13,9,14,8,10,8,13,7,7,5,8,5,7,7,15,8,8,6,10,6,7,6,10,6,6,5,8,5,6,6,11,6,6,4,6,4,4,4,7,4,4,3,4,3,4,4,8,4,4,3,3,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,1,1,2,2,4,2,2,1,1,1,1,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,3,3,5,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,3,2,3,2,3,2,2,2,2,2,3,3,1,1,1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-13,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-5,-9,-5,-8,-7,-14,-8,-10,-8,-15,-10,-15,-14,-17,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,1,2,3,2,3,2,3,2,2,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-7,-20,-10,-10,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10 +13,7,7,5,8,5,6,5,7,4,4,3,5,3,4,4,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-9,-4,-4,-2,-3,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5 +14,8,8,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,4,7,4,5,4,7,4,5,4,5,4,5,4,6,4,4,3,4,3,3,3,5,3,2,2,3,2,3,3,6,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,3,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-6,-5,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-6 +11,6,6,4,6,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,5,3,4,3,6,4,4,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-2,-5 +18,9,9,7,10,6,7,7,11,6,6,5,8,5,6,6,11,6,7,5,8,5,5,5,9,5,5,4,6,4,6,5,8,5,5,4,6,4,5,4,5,3,4,3,4,3,4,4,7,4,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,1,-1,0,1,1,2,2,2,2,4,2,2,2,3,3,4,4,6,3,3,2,3,2,2,2,3,2,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,-1,0,1,1,2,1,1,0,1,1,0,0,-2,-1,-1,-1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-5,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-3,-6,-4,-6,-6,-11,-5,-6,-4,-6,-3,-5,-5,-11,-6,-8,-6,-12,-7,-11,-11,-15,-7,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,2,3,3,-4,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-4,-9 +12,6,6,5,7,4,5,5,8,4,4,4,5,4,4,4,8,4,5,4,6,4,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-5 +16,8,8,6,10,6,7,6,11,6,6,5,7,5,6,6,11,6,7,5,8,5,6,5,8,4,4,3,5,4,6,5,9,5,5,4,6,4,4,4,5,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,3,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-4,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-5,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8 +16,8,9,6,9,6,7,6,10,6,6,5,7,5,6,6,11,6,7,5,7,5,6,5,8,4,4,3,5,4,5,5,9,5,5,4,5,4,4,4,6,3,3,3,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,3,2,2,2,4,2,2,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-8,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7 +31,16,17,12,17,10,11,10,17,9,10,7,10,6,8,7,13,7,7,5,7,4,5,5,8,5,5,5,8,6,9,9,16,8,8,6,9,5,6,5,8,5,5,4,6,4,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,3,3,6,4,4,3,5,3,4,4,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,5,3,3,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-7,-4,-7,-7,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-13,-6,-7,-5,-10,-5,-7,-7,-14,-7,-8,-7,-13,-8,-12,-12,-26,-13,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-11,-7,-10,-10,-22,-11,-12,-9,-15,-9,-12,-11,-21,-11,-13,-11,-21,-14,-21,-20,-28,-13,-13,-8,-12,-6,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,2,2,2,2,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,3,4,3,4,4,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-14,-9,-15,-15,-27,-13,-13,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-6,-10,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-6,-5,-11,-5,-6,-4,-8,-5,-7,-7,-19,-9,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-6,-4,-7,-7,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-7,-6,-12,-7,-11,-11,-29,-14,-13,-8,-13,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-10,-5,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-17,-8,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-6,-6,-14 +16,9,9,6,9,5,6,5,9,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-2,-3,-7 +17,9,9,6,9,5,6,5,8,5,6,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,4,3,5,5,9,5,5,4,5,3,4,3,5,3,3,2,4,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,2,1,1,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,4,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,1,2,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,0,0,0,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-14,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,3,-3,-1,-1,0,-1,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-2,-2,-1,0,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-7,-3,-4,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-9,-4,-4,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-5,-3,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-7 +12,6,7,5,7,4,5,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,2,4,2,3,2,3,2,3,3,7,4,4,3,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,1,1,2,1,1,1,2,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,2,2,2,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-2,-4 +17,9,10,7,10,6,6,5,8,5,5,4,6,4,5,4,8,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,10,6,6,4,6,4,5,4,6,4,4,3,4,3,3,3,4,2,2,2,3,2,2,1,2,2,2,2,2,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-4,-1,-1,0,0,1,1,1,-2,0,0,0,0,1,1,1,1,1,2,2,2,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-5,-10,-7,-11,-11,-16,-8,-8,-5,-7,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,2,3,3,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,0,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-8,-8,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-3,-7 +10,6,6,4,6,4,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,2,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +11,6,7,5,7,4,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,3,3,4,4,8,4,4,3,4,3,4,3,4,3,3,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,3,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-2,0,0,0,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,3,3,4,2,2,2,3,3,4,3,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-6,-4,-6,-6,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4 +17,9,9,6,9,5,6,5,8,4,4,3,5,4,6,6,9,5,5,4,6,4,5,4,6,4,4,4,6,4,6,5,11,6,6,4,5,3,4,3,5,3,3,2,2,2,2,2,7,4,4,2,2,1,1,1,0,1,1,1,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,1,-2,-1,-1,0,-1,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,3,2,3,2,3,2,2,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,1,1,2,2,2,2,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-11,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,2,2,3,2,3,2,3,2,3,3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-3,-3,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,3,4,4,5,3,3,3,3,2,3,3,4,3,3,2,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-1,-1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +10,5,5,4,6,4,4,3,5,3,3,3,4,3,4,4,6,4,4,3,3,3,4,3,4,3,3,2,4,3,4,3,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,4,2,2,1,2,2,2,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,3,3,4,2,2,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +12,7,7,5,6,4,5,4,6,4,4,3,5,3,4,4,6,3,3,3,4,3,4,4,6,4,4,3,4,3,4,3,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,2,2,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,4,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,0,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-8,-8,-15,-7,-7,-4,-7,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-4,-2,-3,-2,-4,-3,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4 +8,4,4,3,4,3,3,3,4,3,3,2,4,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,3,2,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,1,2,1,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-8,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,7,4,4,3,4,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,3,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-12,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,4,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +18,9,9,6,8,5,5,5,8,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,5,3,4,3,5,3,4,3,11,6,6,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,2,1,1,1,1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-2,-3,-3,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,7,4,4,3,4,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-6,-5,-11,-7,-12,-12,-25,-12,-12,-7,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,1,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,5,3,3,2,2,1,1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-3,-5,-5,-10,-5,-6,-5,-9,-6,-10,-10,-22,-11,-11,-7,-10,-5,-6,-4,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-5,-11,-6,-7,-5,-10,-6,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-26,-12,-12,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-3,0,1,1,1,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8 +10,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,6,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,1,0,0,0,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +11,6,5,4,5,3,4,3,5,3,3,3,5,3,4,4,6,4,4,3,4,3,3,2,2,2,2,2,2,2,2,2,6,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-2,0,0,0,-2,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,-1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,-6,-3,-3,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,0,1,1,1,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,4,2,2,2,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-12,-6,-6,-3,-5,-2,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +13,7,7,5,6,4,4,3,6,4,4,3,5,4,5,5,7,4,4,3,4,3,3,3,2,1,1,1,2,2,2,2,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,4,3,3,2,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,5,3,2,2,2,1,1,1,2,1,1,1,2,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,0,1,1,1,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3 +8,4,4,3,4,3,3,2,4,3,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1 +11,6,5,4,5,3,4,3,6,4,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,2,2,2,2,2,2,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,3,2,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-13,-6,-6,-3,-5,-3,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,2,2,3,2,2,1,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +10,5,5,4,5,3,4,3,5,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,3,2,2,2,1,1,2,2,3,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +18,10,10,7,10,6,7,6,9,5,5,4,7,5,6,6,12,7,7,5,7,4,4,3,4,3,3,3,4,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,0,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,6,4,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-8,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,0,0,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-22,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,3,4,3,3,3,4,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-7,-8,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-4,-7,-3,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-10,-5,-6,-5,-10,-6,-10,-9,-21,-10,-9,-5,-8,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,8,4,4,3,5,3,3,3,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,1,2,2,2,2,2,1,0,0,2,2,2,1,2,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,3,2,2,2,1,1,2,1,1,1,2,2,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,7,4,4,3,4,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,-1,0,0,0,1,1,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +9,5,5,4,5,3,4,3,4,3,3,3,4,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2 +15,8,8,6,8,5,6,5,7,4,4,4,6,4,5,5,11,6,6,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,2,3,3,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,5,3,4,3,4,2,2,2,4,3,3,2,2,2,2,2,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-10,-10,-6,-10,-5,-7,-5,-9,-4,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,10,5,5,4,5,3,4,3,4,2,2,2,2,2,2,2,3,2,1,1,0,1,1,1,3,2,2,1,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,-1,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4 +10,6,6,4,6,4,4,4,5,3,3,3,4,3,4,4,7,4,4,3,4,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,3,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,7,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,1,1,1,1,1,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +15,8,8,6,8,5,6,5,7,4,4,3,6,4,5,5,10,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,2,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,5,3,4,3,3,2,2,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4 +15,8,8,6,8,5,5,4,7,4,4,3,6,4,5,5,9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,6,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,1,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,3,2,3,2,4,2,2,2,3,2,3,4,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-8,-17,-8,-8,-5,-7,-4,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +28,14,14,9,13,7,8,7,12,7,7,5,8,5,6,5,9,5,5,4,5,3,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,7,4,4,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-19,-9,-9,-5,-8,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-9,-9,-19,-9,-10,-7,-12,-7,-10,-9,-19,-10,-12,-10,-19,-12,-19,-18,-48,-23,-23,-15,-24,-13,-16,-13,-23,-12,-13,-9,-15,-9,-14,-13,-26,-13,-13,-9,-14,-8,-10,-9,-18,-9,-10,-7,-12,-7,-11,-10,-21,-10,-10,-7,-11,-6,-7,-5,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,16,8,8,6,8,5,5,4,6,3,3,3,4,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-4,-9,-4,-5,-4,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-13,-9,-14,-14,-26,-13,-13,-9,-14,-7,-9,-8,-16,-8,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-8,-16,-8,-10,-8,-14,-8,-12,-11,-23,-11,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-6,-13,-7,-10,-8,-16,-10,-16,-16,-35,-17,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-1,0,-1,0,-1,-1,-3,-1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-3,-5,-5,-11 +15,8,7,5,7,4,5,4,7,4,4,3,5,3,4,3,5,3,3,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-8,-24,-11,-11,-7,-12,-6,-8,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5 +15,8,7,5,8,5,5,4,7,4,4,3,5,3,4,3,6,3,3,2,2,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,6,4,4,3,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-9,-5,-6,-5,-9,-5,-8,-8,-24,-12,-12,-7,-12,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,8,4,4,3,4,3,3,3,4,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,1,2,1,1,1,2,2,2,1,1,1,0,0,-1,0,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-4,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-4,-3,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +11,6,5,4,6,4,4,3,5,3,3,2,3,2,3,3,5,3,2,2,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,1,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-5,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,6,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +16,9,9,6,8,5,5,5,7,4,4,3,4,3,4,4,7,4,3,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,6,4,4,3,3,2,3,3,4,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,2,2,2,1,1,0,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-23,-11,-11,-7,-11,-6,-8,-6,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-5,-12,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,1,1,1,1,2,2,2,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,8,4,4,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-6 +10,5,5,4,5,3,3,3,4,3,3,2,3,2,2,2,5,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,0,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +12,6,6,4,5,3,4,4,5,3,4,3,3,2,2,2,6,3,3,2,2,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,0,0,0,0,1,1,0,0,4,2,2,2,2,2,2,2,3,2,2,2,1,1,0,0,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,2,1,1,1,0,0,1,1,2,2,2,2,2,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,1,0,0,0,1,1,1,1,1,-1,0,0,1,2,1,1,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,5,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-4 +10,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3 +17,9,9,6,9,5,6,5,8,4,4,3,5,3,4,3,9,5,4,3,4,3,3,3,4,2,2,2,2,2,2,1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,3,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,4,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,4,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,2,2,2,3,2,2,1,0,0,0,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,2,2,2,2,2,1,1,1,1,2,3,2,3,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-7,-5,-10,-6,-9,-9,-23,-11,-12,-8,-13,-7,-9,-7,-13,-6,-6,-4,-8,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,2,1,1,1,2,1,1,0,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,-1,6,3,3,2,3,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-5,-4,-9,-6,-9,-8,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,4,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-7 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,1,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +10,6,6,4,5,3,4,4,5,3,3,3,3,2,3,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,0,1,3,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,2,2,3,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,0,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,4,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-2,-2,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,1,1,2,2,2,1,2,2,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2 +11,6,6,5,7,4,5,4,7,4,4,3,4,3,3,3,6,3,3,3,4,3,4,3,4,3,3,2,3,2,2,2,0,0,0,1,1,1,1,0,-2,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,1,1,0,0,0,0,0,1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,3,3,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,2,2,2,1,3,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-2,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,1,1,1,1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,0,1,1,1,1,2,2,2,1,0,1,1,1,0,0,-1,-1,5,3,3,2,3,2,2,2,2,1,1,1,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,0,0,0,0,-1,0,-1,-2,-5 +7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,2,2,2,2,2,1,1,1,2,2,2,2,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3 +10,6,6,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,2,1,1,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,2,2,2,1,2,2,2,1,1,1,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-1,-1,-2,0,0,0,-3,-1,-1,0,-1,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-3,-1,-2,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5 +10,6,5,4,5,3,4,3,5,3,3,2,4,3,3,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,1,1,1,1,1,1,2,1,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,0,0,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,1,2,1,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,4,2,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4 +19,10,9,6,9,5,6,5,9,5,6,5,8,5,6,6,10,5,5,4,5,3,3,3,5,3,4,3,4,3,3,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,-1,0,0,0,-1,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,3,2,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,2,2,4,3,3,3,4,2,2,2,3,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,1,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-3,-3,-18,-9,-9,-6,-10,-5,-7,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-7,-13,-9,-14,-14,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-17,-8,-8,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,8,5,5,4,5,3,4,4,6,4,4,3,5,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-2,-4,-4,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,7,4,5,4,6,4,4,4,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,3,2,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9 +10,6,5,4,5,3,4,3,5,3,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,2,2,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4 +10,6,6,4,5,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-9,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-8,-7,-11,-5,-6,-4,-5,-3,-4,-3,-6,-2,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,5,3,4,3,4,3,3,2,4,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,4,3,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,6,4,5,4,6,4,4,3,4,3,4,4,6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,0,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,2,2,0,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-3,-3,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,1,1,2,2,2,2,2,2,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,1,0,0,0,0,0,0,0,1,3,2,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-4,-2,-2,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-3,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-12,-5,-5,-3,-6,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,6,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,5,3,3,3,4,3,3,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,0,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,4,3,4,3,3,3,3,3,4,3,5,3,4,3,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,0,-2,0,0,0,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-6,-4,-6,-6,-9,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,4,2,2,2,3,2,2,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4 +7,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,4,2,2,2,2,2,2,2,3,2,2,1,1,1,1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3 +13,7,7,5,7,4,5,4,6,4,4,4,6,4,4,4,8,5,5,3,4,3,3,3,4,3,3,3,4,3,3,3,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,6,3,3,3,4,2,2,2,2,1,1,1,2,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,0,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,3,2,2,2,2,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,-2,-1,-2,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-11,-17,-8,-7,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-3,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,0,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,2,2,1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,0,0,0,1,1,1,0,0,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,8,5,5,4,5,3,3,3,4,2,2,2,2,1,1,0,-1,0,0,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-3,-3,-7 +8,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,4,2,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,-1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3 +9,5,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,2,2,2,2,1,1,0,0,0,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-7,-11,-5,-4,-2,-4,-2,-3,-2,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,2,1,1,1,3,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-2,-1,-1,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,5,3,3,2,3,2,2,2,2,2,2,1,2,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,2,2,2,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3 +7,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,-1,-1,-2 +11,6,6,4,5,3,4,3,6,3,3,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,3,2,6,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,0,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-11,-5,-6,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-10,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,8,4,4,3,4,3,3,2,4,3,3,3,4,3,4,4,4,2,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,7,4,3,2,3,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-2,-5 +8,4,4,3,4,2,3,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,6,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,5,3,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3 +11,6,6,4,5,3,4,3,6,4,4,3,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,2,1,0,0,1,1,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-9,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,8,4,4,3,4,3,3,3,4,2,2,2,3,3,4,3,5,3,2,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,1,1,0,0,6,3,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +11,6,6,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,-4,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-1,0,-1,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,5,3,3,2,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,1,0,0,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4 +21,11,12,9,13,8,9,8,14,8,8,6,10,6,8,8,15,8,7,5,7,4,5,4,7,4,5,4,6,4,5,5,8,5,5,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-8,-8,-7,-3,-3,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-15,-7,-8,-5,-8,-4,-4,-3,-7,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-7,-8,-7,-14,-9,-13,-13,-34,-16,-16,-10,-15,-8,-10,-8,-14,-7,-8,-6,-11,-6,-9,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-23,-11,-11,-7,-11,-6,-7,-5,-10,-5,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-5,-9,-6,-9,-9,-18,-9,-10,-7,-12,-7,-11,-10,-20,-10,-12,-10,-19,-12,-18,-18,-33,-16,-16,-10,-16,-8,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,15,8,8,5,7,4,4,3,5,3,3,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-14,-7,-9,-7,-14,-9,-14,-13,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-8,-7,-14,-7,-8,-6,-11,-7,-11,-11,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-5,-10,-6,-10,-9,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,8,4,4,3,4,3,3,3,5,3,3,2,3,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,4,2,2,2,2,1,0,0,-2,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9 +11,6,6,5,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,3,2,3,2,3,3,5,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +11,6,6,4,7,4,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,2,2,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-4,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-3,-3,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,8,4,4,3,4,2,2,2,3,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-3,-6,-2,-2,-1,-4,-2,-2,-3,-7,-3,-4,-3,-7,-4,-6,-6,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4 +8,4,4,3,5,3,3,3,6,4,4,3,4,3,4,4,6,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-2,-2,-4,-2,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +12,6,6,4,6,4,4,4,9,5,5,4,6,4,5,5,8,4,4,3,5,3,4,3,6,4,4,3,3,2,3,3,5,3,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-4,-2,-4,-3,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,1,1,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-4,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-6,-4,-6,-7,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-10,-5,-5,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,0,0,0,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,6,3,3,2,3,2,2,2,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,0,1,1,1,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,-1,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-5,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,6,3,3,3,4,2,2,2,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,2,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5 +8,4,4,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,2,2,2,2,2,2,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,6,6,4,4,3,4,4,6,4,4,3,4,3,4,3,6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,0,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,2,1,2,2,2,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,1,1,0,0,0,0,0,1,0,0,0,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3 +9,5,5,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,4,3,3,2,3,2,2,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-4,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +16,8,8,6,9,5,6,5,8,5,5,4,5,4,5,5,9,5,5,4,5,3,4,4,6,4,4,3,3,2,3,3,6,4,4,3,3,2,2,2,4,3,3,2,3,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,2,-5,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,1,1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,3,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,0,0,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-5,-2,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-9,-18,-8,-8,-5,-8,-4,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-24,-11,-11,-7,-10,-5,-6,-5,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-5,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,6,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-8,-3,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-4,-2,-2,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-5,-8,-3,-3,-2,-3,-1,-1,0,-1,0,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,0,-2,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2 +10,5,5,4,6,4,4,4,6,3,3,3,4,3,3,3,6,4,4,3,3,2,3,3,4,3,3,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,2,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-3,-3,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-3,-3,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,3,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,1,1,1,2,1,1,1,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2 +8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,1,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,3,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,1,1,1,1,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,4,9,5,5,4,6,4,4,4,7,4,4,3,4,3,4,4,5,3,3,3,4,3,4,4,4,3,3,3,4,3,3,2,4,2,2,2,2,1,1,1,0,1,1,1,2,2,2,2,1,1,0,0,0,1,1,1,-4,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,1,1,0,0,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-4,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-6,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-9,-6,-9,-8,-20,-9,-9,-6,-10,-5,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,0,0,0,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,3,2,2,2,3,2,2,1,1,1,1,1,0,0,-1,-1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-8,-4,-4,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,5,3,3,2,3,2,2,2,1,1,0,0,0,0,0,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3 +9,5,5,4,5,3,4,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,4,2,3,2,3,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,1,1,1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-2,0,0,0,-1,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-4,-5,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,5,3,3,2,3,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2 +12,6,6,5,6,4,6,5,8,5,5,4,5,3,4,4,7,4,4,3,4,3,3,3,5,3,4,3,5,3,4,4,3,2,2,2,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-4,-2,-4,-4,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-6,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-4,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,5,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1 +23,12,12,9,13,8,9,8,13,7,8,6,10,6,8,7,13,7,7,5,7,5,6,5,8,5,5,5,8,6,8,7,5,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,1,1,1,0,0,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,2,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-2,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-9,-5,-8,-8,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-4,-5,-4,-9,-5,-8,-8,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-4,-8,-6,-10,-10,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-5,-6,-4,-8,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-26,-13,-13,-8,-13,-6,-7,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-21,-10,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-9,-6,-11,-6,-8,-8,-16,-9,-11,-9,-16,-10,-16,-16,-37,-18,-17,-11,-17,-9,-10,-8,-15,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-8,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,6,3,3,2,2,2,2,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-9,-7,-13,-8,-13,-12,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-5,-4,-8,-5,-8,-8,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-4,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,1,1,1,1,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,8,5,5,4,5,3,3,3,4,3,3,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3 +12,7,7,5,7,4,5,4,7,4,5,4,6,4,5,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-8,-19,-9,-9,-6,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,3,3,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +13,7,7,5,7,4,5,5,8,5,5,4,6,4,5,5,7,4,5,4,4,3,3,3,5,3,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-6,-4,-7,-4,-7,-8,-20,-10,-10,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,2,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-2,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,1,1,1,2,1,4,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +10,5,5,4,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,3,3,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +15,8,8,6,8,5,5,5,10,6,6,5,7,5,6,6,9,5,5,4,6,4,4,4,6,4,4,3,5,4,5,4,4,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-7,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-24,-12,-12,-8,-12,-6,-7,-5,-10,-4,-4,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-1,0,0,0,-2,-1,-2,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,2,2,2,2,2,2,2,2,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-8,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1 +9,5,5,4,5,3,3,3,6,4,4,3,5,3,4,4,6,3,3,3,4,3,3,3,4,3,3,2,4,3,3,3,3,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,0,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +12,6,6,4,7,4,4,4,8,4,4,4,6,4,6,5,8,4,4,3,5,3,4,4,5,3,4,3,5,3,4,3,3,2,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,1,1,1,2,1,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-3,-7,-4,-7,-7,-20,-10,-10,-6,-9,-5,-6,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-4,-6,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0,1,-1,0,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,0,-1 +11,6,6,4,6,4,4,4,7,4,4,4,6,4,5,5,8,4,4,3,5,3,3,3,5,3,3,3,4,3,3,3,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-3,-5,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-5,-8,-4,-5,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +20,11,11,8,11,7,8,7,12,7,7,6,10,6,8,8,14,8,8,6,9,5,6,5,8,4,4,3,5,3,4,4,6,3,3,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-7,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-4,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-11,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-8,-4,-6,-6,-12,-6,-8,-6,-11,-7,-10,-10,-19,-9,-9,-6,-10,-5,-7,-5,-10,-5,-5,-3,-4,-2,-4,-3,-9,-4,-5,-3,-5,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-7,-5,-9,-5,-7,-6,-12,-6,-8,-6,-11,-7,-12,-12,-26,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-16,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-17,-8,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-35,-17,-16,-10,-15,-8,-9,-8,-15,-7,-8,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-3,-6,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-17,-8,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-8,-4,-6,-5,-11,-6,-7,-6,-12,-8,-12,-11,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,0,0,0,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,1,1,1,2,1,1,1,3,2,2,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,4,3,3,2,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,0,-1 +12,7,7,5,6,4,5,4,7,4,5,4,6,4,5,5,8,5,5,4,5,3,4,3,5,3,3,2,3,2,3,3,4,2,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-19,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0 +14,8,8,5,7,5,6,5,9,5,6,4,7,4,5,5,9,5,6,4,6,4,4,4,6,4,4,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-5,-2,-2,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-5,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-24,-11,-11,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1 +12,7,7,5,6,4,5,4,8,4,5,4,6,4,4,4,7,4,5,4,5,3,3,3,5,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-20,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,13,7,7,6,9,6,7,7,12,7,7,5,8,5,5,5,8,5,5,4,6,4,5,5,8,4,4,3,4,3,3,2,3,2,2,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-3,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-5,-5,-9,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-7,-7,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-7,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-13,-6,-7,-6,-11,-7,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-12,-8,-13,-13,-28,-13,-13,-8,-12,-7,-9,-7,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-4,-10,-5,-6,-4,-8,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-11,-6,-8,-7,-14,-9,-14,-13,-36,-17,-17,-11,-17,-9,-11,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-8,-7,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-11,-6,-7,-5,-9,-5,-8,-7,-14,-7,-8,-5,-9,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,1,1,2,2,2,2,0,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,0,0,1,1,1,1,1,1,2,2,3,2,2,2,3,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +14,8,8,6,8,5,6,5,9,5,5,4,6,4,5,5,8,5,5,4,5,4,4,4,6,3,3,3,4,3,4,4,6,3,3,2,3,2,3,2,3,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-2,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-5,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-8,-24,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-4,-5,-3,-5,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-8,-8,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,5,6,5,8,4,4,4,5,4,5,5,8,4,4,3,5,3,4,3,4,2,2,2,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-10,-10,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-3,-4,-3,-5,-3,-5,-5,-10,-5,-6,-4,-6,-3,-5,-4,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-12,-28,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-9,-5,-6,-4,-7,-4,-6,-6,-14,-7,-8,-5,-8,-4,-6,-6,-12,-6,-8,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-9,-11,-9,-18,-9,-10,-7,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-6,-3,-4,-3,-6,-3,-4,-5,-10,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0 +21,11,11,8,11,7,8,7,12,7,7,5,8,5,7,7,12,7,7,5,7,4,5,5,8,4,4,4,5,4,5,5,8,5,5,3,5,3,4,3,4,2,2,2,2,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-4,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-5,-4,-7,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-11,-7,-11,-11,-22,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-5,-3,-5,-4,-10,-5,-6,-4,-7,-4,-6,-6,-13,-7,-8,-7,-12,-8,-12,-13,-27,-13,-13,-8,-13,-7,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-18,-9,-9,-6,-11,-6,-9,-8,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-7,-5,-8,-8,-15,-7,-8,-5,-8,-4,-5,-4,-9,-5,-6,-5,-8,-5,-8,-8,-15,-7,-8,-6,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0 +42,22,22,15,21,12,14,12,20,11,11,9,14,8,10,9,17,9,9,6,9,5,6,5,8,5,5,4,6,4,6,6,11,6,6,5,7,4,4,3,5,3,3,3,4,3,3,3,4,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-11,-7,-12,-12,-25,-12,-12,-8,-14,-7,-9,-7,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-13,-9,-14,-14,-30,-15,-15,-10,-16,-8,-10,-9,-17,-8,-9,-7,-13,-8,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-19,-10,-12,-10,-18,-12,-18,-18,-38,-19,-19,-12,-19,-10,-12,-10,-20,-10,-10,-7,-13,-8,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-15,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-7,-13,-8,-11,-10,-21,-10,-11,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-15,-15,-22,-11,-11,-7,-10,-6,-8,-7,-13,-6,-7,-4,-7,-4,-7,-6,-13,-6,-7,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-14,-29,-14,-14,-9,-14,-8,-10,-9,-17,-8,-9,-6,-11,-6,-9,-9,-19,-9,-10,-7,-12,-7,-9,-9,-18,-10,-12,-10,-18,-12,-18,-17,-35,-17,-17,-11,-18,-10,-12,-10,-19,-10,-11,-8,-13,-8,-11,-10,-21,-10,-11,-7,-12,-7,-9,-7,-14,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-14,-14,-29,-15,-16,-11,-18,-11,-16,-15,-30,-16,-19,-15,-28,-18,-28,-27,-55,-27,-27,-18,-27,-15,-18,-15,-27,-14,-15,-11,-19,-12,-17,-16,-31,-15,-16,-11,-18,-10,-13,-11,-21,-11,-12,-10,-18,-11,-17,-16,-33,-16,-16,-11,-17,-9,-12,-10,-20,-10,-11,-8,-14,-9,-13,-13,-26,-13,-13,-9,-15,-9,-13,-12,-24,-13,-15,-13,-24,-16,-24,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-15,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-27,-13,-14,-9,-15,-8,-11,-10,-19,-10,-12,-9,-17,-10,-15,-14,-29,-14,-15,-11,-18,-11,-15,-14,-27,-15,-18,-15,-27,-17,-25,-25,-76,-37,-37,-24,-36,-20,-24,-19,-35,-18,-19,-13,-22,-13,-19,-17,-34,-17,-17,-11,-17,-9,-11,-9,-18,-9,-10,-8,-15,-10,-15,-14,-29,-14,-14,-9,-14,-8,-10,-8,-16,-8,-9,-7,-12,-7,-11,-11,-23,-11,-11,-8,-13,-7,-9,-8,-17,-9,-12,-10,-18,-12,-18,-18,-37,-18,-18,-12,-18,-10,-12,-9,-17,-8,-9,-6,-11,-7,-10,-9,-19,-9,-10,-6,-10,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-8,-8,-6,-10,-6,-9,-8,-17,-9,-10,-8,-16,-10,-15,-15,-30,-15,-15,-10,-16,-9,-12,-10,-19,-9,-10,-7,-13,-8,-12,-11,-23,-11,-12,-8,-12,-7,-9,-8,-16,-8,-9,-7,-13,-8,-12,-12,-24,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-12,-7,-11,-10,-20,-10,-10,-7,-13,-8,-11,-10,-21,-12,-15,-13,-24,-16,-24,-24,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,0,1,1,1,2,2,4,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,4,3,3,2,2,1,1,0,-1,0,0,1,1,1,2,2,2,1,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,3,2,2,1,1,1,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-11,-11,-23,-11,-12,-8,-12,-6,-7,-5,-10,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-12,-6,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-7,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-4,-8,-5,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0 +21,11,11,8,11,7,8,6,10,6,6,5,7,5,6,5,9,5,5,4,5,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-8,-4,-4,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-5,-10,-5,-5,-3,-6,-4,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-4,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-6,-4,-5,-5,-10,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-14,-13,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-5,-5,-10,-6,-7,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +21,11,10,7,11,7,8,6,10,6,6,5,7,5,6,5,10,6,6,4,4,3,3,3,4,3,3,3,3,3,4,4,6,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-8,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-10,-5,-5,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-7,-4,-5,-5,-9,-5,-6,-4,-7,-4,-7,-7,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-6,-4,-6,-6,-14,-7,-8,-5,-8,-5,-7,-6,-14,-7,-8,-7,-14,-9,-14,-13,-27,-13,-14,-9,-14,-7,-9,-7,-13,-6,-7,-5,-10,-6,-8,-7,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-23,-11,-11,-7,-10,-5,-7,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-5,-9,-5,-8,-7,-13,-7,-8,-7,-12,-8,-12,-12,-38,-18,-18,-11,-18,-10,-12,-9,-17,-8,-9,-6,-11,-6,-9,-8,-16,-8,-8,-5,-8,-4,-6,-4,-9,-4,-5,-4,-8,-5,-8,-7,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-9,-17,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-5,-7,-4,-6,-5,-9,-4,-5,-3,-6,-4,-6,-5,-10,-5,-6,-3,-6,-3,-4,-3,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-5,-5,-10,-4,-4,-3,-6,-4,-6,-5,-10,-6,-8,-6,-11,-7,-12,-12,-2,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,1,1,1,1,2,2,3,2,2,2,2,2,2,2,5,3,2,2,3,2,2,2,2,2,2,1,1,1,1,1,-1,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0 +14,7,7,5,7,4,5,4,7,4,4,3,5,3,4,4,7,4,4,3,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-9,-4,-6,-5,-8,-4,-4,-3,-6,-4,-5,-4,-10,-5,-5,-3,-5,-2,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-7,-4,-4,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-10,-4,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-25,-12,-12,-7,-12,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-2,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-6,-3,-5,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0 +20,10,10,7,10,6,7,6,9,5,5,4,6,4,6,5,10,5,5,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-4,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-12,-5,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-5,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-29,-14,-14,-9,-14,-8,-10,-8,-13,-7,-8,-6,-10,-6,-8,-7,-17,-8,-8,-5,-8,-4,-5,-5,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-5,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-11,-6,-7,-6,-11,-7,-11,-11,-23,-11,-10,-6,-10,-5,-7,-5,-12,-6,-6,-4,-7,-4,-6,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-37,-18,-18,-12,-18,-10,-12,-10,-17,-8,-9,-6,-10,-6,-8,-8,-15,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-9,-6,-10,-10,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-7,-4,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-6,-8,-6,-12,-8,-12,-12,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,4,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,3,2,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-3,-5,-6,-11,-5,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,0,0,-1 +11,6,6,4,6,4,4,4,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0 +13,7,6,5,6,4,4,4,6,4,4,3,5,3,4,4,6,3,3,2,4,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-3,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-5,-9,-4,-4,-3,-5,-3,-5,-4,-11,-5,-5,-3,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-6,-6,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-5,-8,-7,-24,-11,-11,-7,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-4,-7,-5,-8,-8,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,0,0,0,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-3,-1,0,0,0,0,0,1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,1,1,1,1,0,0,0,0,0,0,-1 +10,6,5,4,5,3,4,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-6,-3,-3,-3,-6,-4,-6,-6,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1 +17,9,9,6,8,5,6,5,8,5,5,4,5,3,4,4,9,5,5,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,3,3,0,0,0,0,0,1,1,1,2,2,2,2,2,2,3,3,3,2,1,1,0,1,1,1,0,0,0,1,1,1,0,0,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-4,-6,-5,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-5,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-15,-7,-7,-5,-8,-4,-5,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-8,-5,-8,-7,-15,-7,-8,-5,-9,-5,-6,-5,-10,-5,-5,-4,-7,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-12,-6,-7,-5,-8,-4,-6,-5,-9,-4,-5,-4,-8,-5,-7,-7,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-7,-6,-12,-8,-12,-12,-31,-15,-16,-10,-16,-8,-10,-8,-15,-7,-8,-6,-10,-5,-7,-6,-17,-8,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-10,-10,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-7,-4,-6,-5,-15,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-8,-12,-12,-22,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-6,-7,-6,-12,-8,-12,-12,-36,-17,-17,-11,-17,-9,-12,-10,-19,-9,-10,-7,-11,-6,-9,-8,-14,-7,-7,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-3,-5,-5,-10,-5,-6,-4,-7,-4,-6,-5,-10,-5,-7,-6,-11,-7,-10,-10,-18,-9,-9,-6,-9,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-5,-3,-5,-3,-5,-5,-11,-6,-7,-6,-12,-8,-13,-13,-3,-1,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-1,0,0,0,0,1,2,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,2,1,1,1,2,1,1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,1,1,1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-4,-2,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,1,1,0,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-2,-1,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-18,-9,-9,-5,-8,-4,-6,-5,-10,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +10,6,6,4,5,3,3,3,5,3,3,2,4,3,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,2,2,1,1,2,1,1,1,2,2,2,2,2,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,-2,0,0,0,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-3,-6,-2,-2,-1,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-16,-8,-8,-5,-9,-5,-6,-4,-8,-4,-4,-3,-5,-3,-4,-3,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-3,-5,-3,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-2,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,2,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +8,5,5,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-12,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1 +12,6,6,4,6,4,4,4,6,3,3,3,4,3,4,4,6,3,3,3,4,3,4,3,3,2,2,2,4,3,4,4,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,-1,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-10,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-11,-5,-6,-4,-6,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-3,-4,-4,-7,-3,-4,-3,-6,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2 +8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-1,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,0,0,0,0,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1 +10,6,6,4,5,3,3,3,6,3,3,2,4,3,4,4,6,3,3,3,3,2,2,2,4,2,2,2,4,3,4,3,4,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-8,-4,-4,-2,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-13,-6,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,3,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2 +9,5,5,4,5,3,3,3,5,3,3,2,4,3,3,3,6,3,3,2,3,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-2,-2,-2,-3,-2,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-16,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-5,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,-2,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1 +16,8,8,5,7,4,5,4,7,4,4,4,6,4,6,6,10,5,5,4,6,4,5,5,8,5,5,4,6,4,6,5,7,4,4,3,4,3,3,2,3,2,2,1,1,1,1,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-4,-6,-6,-20,-9,-9,-6,-10,-5,-6,-5,-9,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-8,-5,-8,-8,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-12,-6,-6,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-8,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-5,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-4,-6,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-31,-15,-16,-10,-16,-8,-10,-9,-17,-8,-8,-5,-9,-5,-8,-7,-15,-7,-8,-6,-10,-5,-7,-7,-14,-7,-9,-7,-12,-7,-11,-11,-15,-7,-7,-4,-7,-4,-5,-4,-9,-5,-6,-4,-8,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-8,-8,-27,-13,-13,-8,-13,-6,-7,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-5,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-12,-40,-20,-20,-13,-21,-11,-14,-11,-21,-10,-10,-7,-11,-6,-8,-8,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-8,-8,-12,-6,-6,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-7,-4,-5,-5,-10,-5,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,2,2,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,0,0,0,1,1,1,2,2,-2,0,0,1,1,1,1,1,1,1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-9,-4,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-3,-6,-4,-6,-5,-14,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-15,-7,-7,-5,-9,-5,-6,-5,-11,-6,-7,-6,-11,-7,-12,-12,-6,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-3,-7,-4,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-8,-4,-4,-3,-5,-2,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-7,-3,-3,-1,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3 +8,4,4,3,4,3,3,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,3,3,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-20,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,1,1,2,2,2,2,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +8,4,4,3,4,3,4,3,4,2,2,2,4,3,4,3,5,3,3,2,3,2,2,2,5,3,3,2,3,3,4,3,4,3,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-5,-2,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-15,-7,-8,-5,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-3,-6,-5,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-21,-10,-10,-6,-10,-5,-6,-5,-10,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-3,-6,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,2,2,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1 +6,3,3,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,3,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0 +8,5,5,4,5,3,4,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-8,-5,-8,-4,-5,-5,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-8,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-8,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-22,-11,-11,-7,-12,-6,-7,-6,-10,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-3,-5,-5,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,0,0,0,1,2,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,0,1,1,1,0,0,0,-1,-3,-1,0,0,0,0,0,0,0,1,1,1,2,2,2,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,1,-3,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-1,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,0,0,0,0,0,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,0,1,1,1,0,0,-1 +5,3,3,2,3,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,1,1,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,0,0,0 +7,4,4,3,3,2,3,2,4,2,2,2,3,2,3,3,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,-1,-3,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-4,-4,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,0,1,1,1,0,1,1,1,2,2,2,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,-1,-2,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0 +6,4,4,3,3,2,3,2,4,2,2,2,3,2,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0 +11,6,6,4,6,4,4,4,6,4,4,3,5,3,4,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-2,-12,-6,-6,-3,-5,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-9,-4,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-3,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-3,-3,-6,-4,-6,-6,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-3,-1,-2,-1,-2,0,0,1,1,1,1,1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-13,-6,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-5,-17,-8,-8,-5,-8,-5,-7,-6,-12,-6,-7,-5,-8,-5,-7,-6,-9,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-7,-16,-8,-8,-5,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-9,-9,-28,-13,-13,-8,-13,-7,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-1,0,1,1,2,2,2,2,3,2,3,3,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-10,-5,-5,-3,-5,-2,-3,-2,-4,-1,-1,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,1,2,1,1,1,2,1,1,1,-5,-2,-1,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-6,-3,-3,-2,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,2,2,2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0 +6,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-6,-6,-15,-7,-7,-4,-8,-4,-5,-4,-7,-3,-4,-2,-5,-3,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,1,1,2,2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,0,0,0,0,-1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,1,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,0,0,0,0,0,0,0,0,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,4,4,3,4,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,0,0,0,0,0,1,1,1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-1,-12,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-3,-3,-4,-2,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-3,-5,-2,-3,-2,-7,-3,-4,-3,-6,-3,-5,-4,-10,-4,-4,-3,-5,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-20,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,1,1,1,1,0,0,0,1,1,1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,0,0,0,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,1,1,1,1,2,2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1 +4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-6,-3,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-2,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-2,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0 +6,3,3,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-4,-2,-4,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-6,-6,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-8,-5,-7,-7,-19,-9,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0 +5,3,3,3,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,3,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-1,-3,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-9,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,0,0,0,1,2,1,1,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-4,-2,-4,-4,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,0 +9,5,6,5,7,5,6,5,8,5,5,4,7,5,6,6,10,5,5,3,4,3,3,3,4,3,3,2,3,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,4,3,3,2,2,1,1,1,2,2,2,2,4,3,5,5,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-4,-5,-4,-9,-6,-9,-9,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-11,-5,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-3,-4,-4,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-6,-11,-5,-6,-4,-6,-3,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-11,-5,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-6,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-6,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-24,-11,-11,-7,-12,-7,-9,-8,-16,-8,-9,-7,-12,-7,-10,-10,-21,-10,-10,-7,-11,-6,-8,-7,-14,-7,-8,-7,-13,-8,-12,-12,-29,-14,-14,-9,-14,-7,-8,-6,-11,-5,-5,-3,-5,-3,-4,-4,-9,-4,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-11,-5,-6,-5,-9,-5,-7,-7,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-37,-18,-19,-12,-19,-10,-12,-10,-18,-9,-9,-7,-12,-7,-11,-10,-21,-10,-10,-6,-10,-6,-8,-7,-14,-7,-8,-6,-11,-6,-9,-9,-18,-9,-9,-6,-9,-5,-6,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-3,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,0,0,0,0,1,1,1,0,1,1,2,-20,-9,-9,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,2,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,-1,-3,-1,-2,-2,-4,-2,-4,-3,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-12,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-9,-9,-11,-5,-6,-4,-6,-3,-3,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,1,-10,-5,-5,-3,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-6,-13,-6,-7,-5,-8,-4,-5,-5,-10,-5,-6,-4,-8,-5,-9,-9,-21,-10,-10,-6,-10,-6,-8,-7,-13,-6,-7,-5,-9,-5,-7,-6,-13,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-6,-5,-10,-5,-6,-4,-7,-4,-7,-7,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0 +5,3,3,3,4,3,3,3,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-9,-6,-9,-5,-6,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0 +4,3,3,3,3,2,2,2,5,3,3,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-10,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-6,-3,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-3,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-18,-8,-8,-5,-10,-5,-6,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-4,-4,-2,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-3,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,4,2,2,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,-6,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-10,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-1,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0 +3,2,2,2,2,2,2,2,5,3,3,3,4,3,4,3,6,4,4,3,3,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,-2,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,0,0,1,1,1,0,0,0,0,0,0,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-9,-4,-5,-3,-6,-3,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,-1,-1,-2,-1,-2,-2,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-3,-3,-15,-7,-7,-4,-7,-3,-4,-3,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-4,-8,-5,-7,-7,-16,-7,-7,-4,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-7,-18,-9,-9,-6,-10,-5,-6,-5,-11,-5,-6,-4,-6,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,1,1,2,1,1,1,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-3,-1,-2,-2,-4,-2,-4,-4,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-2,0,0,0,0,0,0,0,-1,0,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,0,-1 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-4,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,0,0,0,0,1,1,0,0,1,1,2,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-13,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,2,2,2,2,2,2,1,1,2,2,3,2,1,1,1,1,0,0,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,0,0,0,0,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0 +3,2,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,4,4,3,3,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,0,0,-1,0,1,1,1,1,1,0,-4,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,-1,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-5,-5,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-6,-5,-9,-6,-9,-9,-16,-8,-8,-5,-7,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-5,-5,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-20,-10,-10,-6,-9,-5,-6,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-4,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,1,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,3,2,3,2,3,2,2,1,0,1,1,1,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-3,-6,-3,-5,-5,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,2,2,2,1,1,1,1,1,0,1,1,1,0,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-3,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,2,2,3,3,5,3,3,2,2,1,1,1,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,3,2,2,2,2,2,2,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-3,-1,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,-3,-1,0,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,1,0,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,-4,-1,-1,-1,-2,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-2,0,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,1,1,1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,5,3,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,0,0,2,2,2,1,1,1,0,0,2,2,2,2,3,2,3,3,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,1,1,1,1,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,-8,-4,-4,-2,-4,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-2,-2,-10,-5,-5,-3,-5,-2,-3,-3,-4,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,0,1,1,1,1,1,1,1,0,-2,-1,-1,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-6,-3,-4,-3,-7,-4,-5,-4,-8,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-3,-7,-3,-2,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-2,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-3,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,-1,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-2,0,0,0,0,0,-1,-1,0,0,0,0,-2,0,0,0,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,3,2,2,2,2,2,2,1,1 +3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,0,0,0,0,0,0,1,1,0,1,1,1,-4,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-6,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,-1,0,1,1,0,0,0,0,-6,-3,-3,-2,-3,-1,-1,0,-3,-1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,1,1,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,0,0,0,0,0,-2,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-5,-13,-6,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,0,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,0,0,0,1,0,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3 +4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,0,0,-1,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,1,1,2,1,1,1,1,0,0,0,1,1,1,1,0,0,-6,-3,-3,-2,-3,-1,-1,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-2,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-2,0,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,0,-1,0,0,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,4,4,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,3 +7,4,4,4,6,4,4,4,6,4,4,3,5,4,5,4,7,4,3,2,2,2,2,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,1,2,2,2,2,3,2,2,2,3,2,3,3,2,1,1,1,2,1,1,1,1,1,1,2,3,2,3,3,4,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,2,2,2,1,1,1,2,2,3,2,1,1,0,1,1,1,-13,-6,-5,-3,-5,-2,-3,-3,-7,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-15,-7,-7,-4,-7,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-11,-5,-6,-4,-6,-3,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-3,-2,-4,-4,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-2,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-5,-3,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-6,-6,-12,-6,-7,-6,-12,-8,-12,-11,-24,-11,-11,-7,-11,-6,-7,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-9,-6,-9,-9,-20,-10,-10,-6,-9,-5,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-16,-8,-8,-6,-10,-6,-8,-7,-15,-8,-10,-8,-14,-9,-13,-13,-28,-14,-14,-9,-13,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-8,-16,-8,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-6,-3,-5,-4,-9,-4,-4,-3,-6,-4,-7,-7,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-2,-4,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,1,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,4,3,3,2,3,2,2,2,-7,-3,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-7,-7,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,1,1,1,1,1,0,-1,0,-1,-1,-9,-4,-4,-2,-2,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,2,2,3,3,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-4,-5,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,1,2,3,3,5,3,3,3,5,4,6,6,5,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,4,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-5,-2,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-5,-12,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-4,-4,-3,-7,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-4,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,1,1,1,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,2,1,1,1,2,1,1,1,1,1,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,4,2,2,2,4,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,2,2,2,2,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,1,1,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-6,-3,-3,-3,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-6,-15,-7,-8,-5,-6,-3,-4,-3,-8,-4,-4,-2,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,2,2,2,2,2,2,2,2,2,2,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-4,-3,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,3,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,1,1,2,2,3 +4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,-4,-1,-1,0,-2,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,-2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2 +6,4,4,3,3,2,3,2,4,3,3,2,3,2,3,3,3,2,2,2,2,1,1,1,0,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,-2,0,0,1,2,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-3,-3,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-8,-4,-4,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-7,-3,-3,-2,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,1,1,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-7,-3,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-15,-7,-8,-5,-8,-4,-5,-4,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-4,-8,-5,-7,-7,-18,-9,-9,-5,-8,-4,-4,-3,-9,-4,-5,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-5,-2,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,2,2,2,2,2,1,1,1,-3,-1,-1,0,-1,0,0,0,1,1,1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,2,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,1,1,1,2,1,1,1,0,0,0,1,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,0,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-3,-3,-9,-4,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,2,2,1,1,1,4,2,2,2,3,2,3,4,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3 +4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-4,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,0,1,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,2,2,2,2,1,1,1,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,3 +5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,1,0,0,0,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,1,1,1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-6,-4,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-4,-2,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,-2,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,-1,0,0,1,0,0,0,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,1,2,2,2,1,2,2,2,2,-1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,2,1,1,1,2,1,1,1,0,0,2,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,3,2,2,2,4 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-2,-1,-2,-2,-7,-3,-3,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,4 +8,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,1,1,1,1,1,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,2,2,3,2,2,2,2,2,2,3,5,3,3,2,3,2,2,2,2,2,2,2,3,2,2,2,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,-1,-1,-11,-5,-5,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-2,-9,-4,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-3,-4,-4,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,-12,-6,-6,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-4,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-9,-6,-10,-10,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-10,-5,-7,-5,-10,-5,-6,-5,-9,-6,-9,-8,-14,-7,-7,-5,-10,-5,-7,-7,-14,-7,-9,-7,-12,-8,-12,-12,-26,-12,-12,-7,-11,-6,-8,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-3,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-15,-7,-8,-5,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,-1,0,1,1,1,1,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,-5,-2,-3,-2,-3,-1,-1,-1,-2,0,0,1,1,1,2,2,0,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-2,-4,-4,-14,-7,-7,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,-1,-1,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,3,2,3,2,3,2,2,2,4,3,3,3,5,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,4,3,4,3,2,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-5,-3,-5,-5,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-8,-4,-4,-2,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,0,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,0,0,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-3,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-3,-1,-1,-1,-1,0,0,0,-2,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-4,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-6,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,-1,0,0,0,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-2,-2,-8,-4,-4,-2,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,2,1,1,1,2,2,2,2,1,1,1,1,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,1,1,1,0,0,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,6 +5,3,3,2,2,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,2,2,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-4,-4,-7,-4,-5,-4,-7,-4,-7,-7,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-8,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,2,2,2,2,2,1,1,2,2,1,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-6,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5 +7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,0,1,2,2,2,1,1,1,2,2,2,3,3,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-5,-2,-3,-2,-4,-3,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-3,-1,-1,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-1,0,1,1,1,1,1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-11,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-8,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-5,-8,-8,-13,-6,-7,-5,-8,-5,-8,-7,-13,-7,-8,-7,-14,-9,-14,-13,-24,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-14,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-14,-7,-7,-5,-8,-4,-6,-5,-7,-3,-3,-2,-3,-1,-2,-2,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,2,2,2,1,0,1,1,2,3,2,3,3,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-3,-1,-2,-2,-5,-3,-5,-5,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,1,1,1,3,2,1,1,0,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-2,-12,-5,-5,-3,-6,-3,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,4,3,3,3,4,3,3,3,4,3,3,3,4,3,5,5,8,4,4,3,4,3,3,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,3,3,4,3,4,5,9 +5,3,3,2,3,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-3,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-2,0,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-5,-9,-4,-4,-3,-5,-3,-5,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-6,-3,-4,-2,-5,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,0,-1,-1,-4,-2,-1,0,-1,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,0,-1,0,-1,-1,-2,0,-1,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,-8,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,4,6 +8,4,4,3,4,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,2,2,2,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-7,-7,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-3,-6,-3,-3,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,1,1,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-6,-4,-6,-4,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-16,-8,-8,-5,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,3,2,2,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-12,-5,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,3,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,1,1,3,2,2,2,3,2,3,3,4,3,3,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,2,2,2,2,4,3,4,3,4,3,5,5,8 +8,4,4,3,3,2,2,2,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-3,-6,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-2,-2,-2,-4,-2,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-9,-9,-19,-9,-9,-6,-9,-5,-6,-5,-10,-5,-5,-4,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-14,-7,-7,-5,-9,-5,-7,-7,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-11,-5,-4,-3,-5,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,0,1,1,1,1,1,2,2,2,2,3,2,2,2,1,1,2,2,3,2,2,2,3,2,3,3,5,3,4,3,5,3,4,4,8,4,4,3,4,3,3,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,4,3,4,3,5,4,5,5,8 +14,8,8,5,7,4,4,3,4,3,3,2,2,2,3,3,5,3,3,3,4,3,3,3,4,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,1,1,1,1,1,1,2,1,1,1,0,1,2,2,3,2,2,2,4,3,3,2,3,3,4,4,6,3,3,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,3,2,3,2,2,1,1,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-15,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-10,-10,-20,-10,-10,-6,-10,-5,-6,-5,-11,-5,-5,-4,-7,-4,-6,-5,-11,-5,-5,-4,-7,-4,-5,-4,-7,-4,-5,-4,-7,-5,-8,-8,-18,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-6,-3,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-34,-16,-16,-11,-17,-9,-11,-9,-17,-8,-9,-6,-11,-7,-10,-10,-20,-9,-9,-6,-9,-5,-7,-6,-11,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-4,-6,-5,-11,-6,-8,-6,-12,-7,-11,-11,-22,-10,-10,-7,-11,-6,-8,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-5,-11,-5,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-7,-4,-5,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-8,-10,-9,-17,-11,-18,-18,-38,-18,-18,-12,-18,-9,-11,-9,-17,-8,-9,-6,-11,-6,-9,-8,-17,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-14,-10,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-27,-51,-25,-25,-16,-25,-13,-16,-13,-25,-12,-12,-8,-14,-8,-12,-11,-21,-10,-10,-6,-10,-5,-7,-6,-12,-6,-7,-6,-11,-7,-11,-11,-24,-12,-12,-8,-13,-7,-9,-8,-15,-8,-9,-7,-12,-7,-9,-9,-18,-9,-9,-6,-10,-6,-8,-7,-13,-7,-9,-7,-14,-9,-13,-13,-28,-13,-13,-9,-14,-7,-9,-7,-13,-6,-7,-5,-9,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-12,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-3,-6,-6,-30,-14,-14,-9,-15,-8,-9,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,1,1,1,0,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-6,-11,-7,-10,-9,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-4,-4,-23,-11,-12,-8,-12,-6,-8,-7,-13,-6,-6,-4,-8,-4,-6,-5,-11,-5,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,0,1,1,1,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,2,3,3,4,4,7,4,5,5,9,6,9,9,16,8,8,6,8,5,7,6,11,6,7,6,9,6,7,7,13,7,7,5,8,5,6,6,11,7,8,6,10,7,9,9,16 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-3,-5,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-7,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,4,3,3,3,5,4,5,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,7,4,4,3,4,3,4,4,6,4,4,4,5,4,5,5,8 +8,4,4,3,4,2,2,2,3,2,2,1,2,2,2,2,3,2,2,2,2,1,1,1,3,2,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-7,-3,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-4,-8,-5,-9,-9,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-5,-7,-6,-13,-7,-8,-7,-13,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-7,-4,-6,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,0,-3,-1,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-14,-7,-7,-5,-7,-4,-5,-4,-6,-3,-4,-2,-3,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,1,1,1,3,2,1,1,1,1,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-4,-4,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,2,2,2,2,2,2,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-11,-5,-6,-3,-5,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,1,1,1,1,1,1,2,2,2,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,6,4,6,5,8,4,4,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,4,3,4,3,6,4,4,4,5,3,4,4,8 +6,3,3,2,3,2,2,2,3,2,2,1,2,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,-5,-2,-2,-1,-2,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-2,-2,-5,-3,-6,-6,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-6,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-2,-4,-3,-6,-3,-3,-2,-3,-2,-2,-2,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,1,1,1,2,2,2,2,2,1,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,0,0,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,3,3,5,3,3,2,4,2,3,3,4,3,3,2,3,2,3,2,4,3,3,3,4,3,3,3,6 +9,5,5,3,4,3,3,3,5,3,2,2,2,2,2,2,3,2,2,2,2,2,2,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-1,0,-1,-1,-2,-1,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-9,-4,-4,-2,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,-1,0,0,0,-1,-1,-4,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-4,-5,-10,-5,-5,-3,-4,-2,-3,-3,-4,-2,-3,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-16,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-3,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-8,-5,-9,-9,-20,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-4,-3,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-7,-5,-9,-5,-6,-6,-14,-7,-9,-7,-13,-8,-13,-13,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-8,-5,-7,-6,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-3,-6,-3,-5,-5,-12,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-3,-2,-3,-3,-14,-7,-7,-5,-8,-4,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,1,1,1,0,1,1,2,2,2,2,2,2,1,1,1,-2,0,0,1,1,1,0,0,2,1,1,1,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-11,-5,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,0,0,0,-3,-1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,6,4,5,4,6,4,5,5,8,5,5,4,6,4,5,4,7,4,4,3,5,4,5,5,6,4,4,3,4,3,3,3,6,4,4,4,6,4,5,5,8 +6,3,3,2,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,4,3,3,3,5 +7,4,4,3,3,2,2,2,4,2,2,2,1,1,2,2,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-2,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-2,-2,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,0,0,0,0,-3,-1,-2,-2,-4,-3,-5,-5,-14,-6,-6,-4,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-2,-5,-2,-3,-3,-9,-4,-4,-3,-5,-3,-5,-4,-9,-5,-6,-5,-9,-6,-9,-9,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-6,-3,-3,-2,-4,-2,-2,-1,-4,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-2,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,1,1,2,2,1,1,1,1,2,2,2,1,2,1,1,1,0,0,0,1,2,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,3,3,4,3,3,3,5,3,4,4,6,4,4,3,5,3,4,4,6,4,4,3,3,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,2,1,1,2,1,3,2,2,1,2,1,1,1,2,1,1,1,1,1,2,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,0,0,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-2,-4,-4,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,1,1,1,1,1,2,2,2,1,1,1,1,1,-1,0,0,1,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +9,5,6,4,6,4,5,4,6,3,3,2,2,2,2,1,5,3,4,3,4,2,2,2,2,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,0,1,1,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,2,2,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,1,1,2,2,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-10,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-6,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-3,-4,-4,-19,-9,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-3,-2,-4,-2,-3,-3,-5,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-3,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-4,-7,-7,-22,-11,-11,-7,-11,-5,-6,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-4,-6,-6,-13,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-5,-3,-6,-6,-15,-7,-8,-5,-9,-5,-7,-7,-15,-8,-10,-8,-16,-10,-16,-15,-28,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-8,-5,-7,-7,-9,-4,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-5,-15,-7,-7,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-5,-4,-9,-5,-6,-4,-8,-5,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,3,2,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,0,0,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-5,-3,-4,-4,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,-2,-1,-1,0,0,1,1,1,2,1,1,1,0,0,-1,-2,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-3,-12,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,3,3,4,3,3,3,2,2,2,1,1,1,2,2,4,3,3,3,4,3,3,3,2,2,2,2,4,3,4,4,6,4,4,3,5,4,6,6,11,6,7,5,7,4,5,5,8,5,5,3,4,3,4,4,5,3,2,2,2,2,2,2,4,3,3,3,4,3,5,5,9 +5,3,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,-1,-2,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-7,-4,-5,-4,-8,-5,-8,-8,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,6,4,4,3,4,3,3,3,5,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,3,3,5 +6,4,4,3,4,3,3,3,4,2,2,2,2,2,2,1,3,2,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,1,1,2,1,2,2,2,2,1,1,1,1,1,1,0,1,0,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-2,-1,-3,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,-1,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-1,-2,-1,-3,-4,-13,-6,-6,-4,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-3,-3,-9,-4,-4,-2,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-1,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,1,1,2,1,1,1,2,2,0,0,0,1,1,1,1,1,2,1,1,1,2,2,2,1,2,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-2,-1,-2,-1,-2,-1,-3,-1,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,7,4,4,3,4,3,4,3,6,3,3,2,3,2,3,3,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,3,5 +5,3,3,2,3,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,-1,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,1,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,3,3,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,4 +8,4,4,3,4,3,3,3,5,3,3,2,2,1,1,1,3,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,0,0,1,1,1,2,2,2,2,0,1,1,1,2,2,2,1,0,0,0,1,1,1,0,0,1,1,1,1,2,2,2,1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,0,0,0,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-8,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-3,-1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-2,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,-2,-2,-1,0,0,0,0,1,1,1,-1,0,0,0,-2,-1,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-2,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-7,-7,-4,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-5,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-6,-3,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-5,-5,-9,-5,-6,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-7,-3,-3,-2,-5,-3,-5,-5,-12,-5,-5,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-6,-3,-3,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,0,0,-1,-1,-3,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,0,0,0,-1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-2,-2,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,3,3,3,4,3,4,4,7,4,5,4,6,4,4,4,7,4,4,3,4,3,4,4,3,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,6 +5,3,3,2,3,2,2,2,3,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,-1,0,0,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,2,3,3,4,2,3,2,3,2,3,3,5,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,4 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,0,1,1,1,0,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-10,-5,-5,-3,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,-1,-1,-2,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-13,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-18,-9,-9,-6,-8,-4,-6,-4,-8,-4,-4,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-7,-3,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,1,2,2,2,2,3,2,2,2,3,3,4,3,5,3,4,3,3,3,4,4,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,6 +6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,1,1,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,-1,0,-1,0,-1,0,0,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,-1,-2,-1,0,0,0,0,0,0,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,1,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-18,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,5,3,3,2,3,2,2,2,3,2,2,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,3,3,5,3,3,3,3,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,4,3,3,3,6 +10,5,5,4,6,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,4,3,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-3,-2,-4,-2,-2,-2,2,1,1,1,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,2,2,3,2,2,2,-3,-1,-1,0,0,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-1,0,-1,-1,-8,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-10,-5,-5,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-3,-2,-5,-3,-4,-4,-19,-9,-9,-6,-9,-4,-5,-4,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,0,0,0,1,1,1,1,1,1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-4,-4,-1,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,-1,-3,-3,-2,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-8,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-3,-3,-7,-3,-4,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-7,-8,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-6,-12,-6,-7,-5,-8,-4,-5,-5,-10,-5,-5,-3,-6,-4,-6,-6,-21,-10,-10,-6,-9,-5,-6,-5,-11,-5,-5,-4,-7,-4,-7,-7,-15,-7,-7,-5,-9,-5,-8,-8,-16,-9,-11,-9,-17,-11,-16,-16,-36,-18,-18,-12,-18,-10,-12,-9,-17,-8,-8,-6,-10,-6,-8,-7,-15,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-7,-7,-16,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-5,-9,-9,-20,-10,-10,-7,-11,-6,-7,-6,-11,-5,-5,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-4,-7,-3,-3,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,1,1,2,2,2,2,3,2,3,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,3,2,3,3,4,3,3,3,8,4,4,3,4,2,2,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-4,-4,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,0,0,1,1,1,0,0,0,0,0,1,1,1,0,0,2,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-4,-5,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,-2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,3,5,3,4,4,7,4,4,4,6,5,7,7,11,6,5,4,5,3,4,3,5,3,3,2,3,2,3,4,7,4,4,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,0,0,1,1,1,1,1,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-4,-12,-6,-6,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-10,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-18,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,3,2,3,2,3,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,4,3,3,3,5 +6,3,3,3,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,1,1,1,2,2,2,2,2,1,-1,0,0,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-6,-2,-2,-1,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-10,-4,-4,-3,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-1,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-11,-5,-5,-3,-4,-2,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-19,-9,-9,-6,-9,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-2,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,2,2,2,2,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,1,1,1,2,2,2,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,3,3,3,2,2,2,3,3,4,4,7,4,4,3,4,3,3,3,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,4,3,4,3,5 +5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,5,3,3,2,3,2,3,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,5,4,5,3,4,3,3,2,2,2,2,2,2,2,4,3,3,3,4,3,3,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,2,1,1,0,1,1,1,1,2,1,1,0,-1,0,0,0,0,0,-1,-1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-7,-3,-4,-2,-4,-2,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-6,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-2,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-3,-12,-6,-6,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,1,0,0,0,0,0,0,0,0,2,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-2,-2,0,1,1,1,0,0,0,0,-1,0,-1,0,-1,0,0,0,-4,-1,-1,0,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-3,-5,-5,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-4,-9,-5,-6,-5,-10,-6,-9,-9,-22,-11,-11,-7,-10,-5,-6,-5,-9,-4,-5,-4,-7,-4,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-3,-4,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-1,-2,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,1,1,1,1,2,1,1,1,0,1,1,1,2,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,0,0,1,1,1,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,1,1,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-2,-1,-1,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,1,0,0,0,0,0,0,0,0,2,2,2,2,2,1,1,1,3,2,2,1,1,1,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,1,1,1,6,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,4,7,4,4,3,4,3,3,3,3,2,3,3,4,3,4,3,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5 +5,3,3,3,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-1,0,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-5,-2,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,1,1,1,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,1,1,4,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,2,2,2,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,4 +7,4,4,3,5,3,4,3,4,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,0,0,0,0,2,1,1,1,0,0,0,0,2,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,1,1,2,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,1,1,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-4,-3,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,3,2,2,2,1,1,2,2,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,1,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,1,1,1,1,1,1,1,0,0,5,3,2,2,3,2,2,1,2,2,2,2,2,2,2,2,1,1,2,1,2,2,2,2,3,2,2,2,2,2,2,3,6,4,4,3,3,2,3,3,3,2,3,2,3,2,3,2,4,2,2,2,3,2,3,3,3,2,2,2,3,2,3,3,5 +7,4,4,3,4,3,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-2,-2,0,0,0,-1,0,-1,0,-1,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-4,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-7,-3,-3,-2,-5,-3,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,0,1,1,1,1,1,1,1,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,5,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-2,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,2,2,2,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,5,3,2,2,2,2,2,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,5,3,3,2,3,2,3,2,3,2,3,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +14,8,8,5,7,5,6,5,8,5,5,4,6,4,4,3,6,3,3,2,3,2,2,2,4,3,3,2,3,2,3,3,-1,0,0,1,1,1,1,1,1,1,0,0,-1,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-3,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-17,-8,-8,-5,-8,-4,-5,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,0,0,1,1,2,2,2,1,1,1,0,1,1,1,0,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-2,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,0,-1,-1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,3,2,1,1,1,1,1,1,1,1,1,0,-1,0,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,-1,-2,-2,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-18,-9,-9,-6,-10,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-6,-6,-16,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-8,-6,-11,-7,-11,-12,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-7,-5,-9,-5,-8,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-10,-4,-4,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-10,-5,-6,-5,-9,-4,-4,-3,-6,-3,-5,-4,-8,-4,-4,-3,-5,-2,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-10,-5,-5,-3,-5,-3,-5,-5,-10,-5,-5,-4,-8,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-3,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,1,1,1,1,0,0,0,1,1,1,0,0,-1,-1,-1,0,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,3,4,3,3,3,9,5,5,3,3,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-5,-2,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,-1,0,0,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,2,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,1,1,1,0,-1,0,1,1,1,1,2,2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-8,-4,-4,-2,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-3,-1,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,3,2,2,2,3,2,2,2,2,2,2,2,3,2,3,3,0,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,8,4,4,3,3,2,2,2,2,1,1,1,2,2,3,3,2,2,2,1,1,1,1,2,3,2,2,2,3,2,3,3,8,5,5,4,6,4,4,3,5,3,4,3,4,3,4,3,6,4,4,3,5,3,3,3,5,3,3,3,4,3,5,5,8 +8,5,5,4,5,3,4,3,5,3,3,3,4,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,1,1,0,0,0,0,0,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,1,1,0,0,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,1,1,1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-5,-6,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,3,2,2,2,2,1,1,1,2,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,2,2,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,-2,0,0,0,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,5,3,3,3,3,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5 +10,6,6,4,6,4,5,4,6,4,4,3,4,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,0,0,0,1,2,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,0,0,0,0,1,1,0,0,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,0,0,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-1,-5,-2,-2,-1,-1,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,0,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-3,-3,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,1,1,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0,-1,0,0,0,-1,0,0,0,3,2,2,2,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,1,0,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-6,-4,-6,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-4,-4,-10,-4,-4,-2,-5,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-2,-3,-3,-7,-4,-5,-4,-6,-4,-6,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-3,-8,-4,-4,-3,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,2,2,1,2,2,2,2,3,2,3,2,3,2,2,2,6,4,4,3,2,2,2,1,2,2,2,1,1,1,0,0,2,2,2,2,2,2,2,1,2,1,1,1,2,2,2,2,-3,-1,0,0,1,1,1,1,1,1,2,2,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,2,2,1,1,1,1,1,1,0,0,1,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,2,2,2,2,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,1,2,1,1,1,-1,0,0,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,3,2,2,2,5,3,4,3,3,2,2,2,2,2,2,2,3,2,3,2,4,2,2,2,3,2,2,2,4,2,2,2,4,3,4,4,6 +9,5,5,4,5,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,2,2,2,2,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-2,-3,-2,-3,-3,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-5,-3,-5,-5,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,4,2,2,2,2,1,1,1,3,2,1,1,2,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,5,3,3,2,2,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,-2,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5 +16,9,9,6,8,5,5,5,9,5,5,4,5,3,3,3,6,4,4,3,4,3,3,3,4,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,2,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-2,-1,-2,-1,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-7,-4,-5,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-2,-1,-1,0,0,1,1,1,1,1,0,0,0,0,0,1,-1,0,0,0,0,0,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,3,2,2,2,2,2,2,2,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-3,-3,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-7,-4,-6,-6,-17,-8,-9,-6,-9,-5,-6,-5,-9,-4,-5,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-6,-3,-5,-4,-7,-3,-4,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-4,-6,-6,-10,-5,-6,-5,-10,-7,-11,-11,-29,-14,-14,-9,-14,-7,-9,-7,-14,-7,-8,-5,-9,-5,-7,-7,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-4,-5,-3,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-6,-3,-3,-2,-7,-3,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,0,-2,0,0,0,0,0,-1,-1,-2,-1,-1,0,0,1,1,1,-1,0,0,0,0,0,-1,-1,-2,0,0,1,1,1,1,0,1,1,0,0,0,1,1,1,6,3,3,2,3,2,2,2,5,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,7,4,4,3,4,2,2,1,2,1,1,1,1,1,0,0,3,2,2,2,2,1,1,1,3,2,2,2,2,1,1,1,-4,-1,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,0,0,-1,-1,1,1,2,2,2,1,1,1,2,1,1,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,0,0,0,0,2,2,2,2,2,2,2,1,-1,0,1,1,1,1,2,2,0,0,0,0,0,1,1,1,-1,0,-1,-1,-2,-1,-2,-3,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,2,1,1,1,2,2,3,3,0,0,0,0,0,0,0,1,1,1,1,1,1,0,-1,-1,5,3,2,2,2,2,2,2,4,2,2,2,3,2,3,2,2,1,1,1,2,2,2,2,1,1,2,2,3,2,3,3,6,3,3,2,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,5,3,4,3,5,4,5,5,9 +11,6,6,4,6,4,4,4,6,4,4,3,4,3,3,3,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-1,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-2,-2,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-19,-9,-9,-6,-9,-4,-5,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,4,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,1,1,1,1,1,0,0,0,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,1,1,1,1,2,2,2,2,4,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,4,3,3,3,6 +15,8,9,6,8,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,1,1,2,1,2,1,1,1,0,0,0,1,1,1,0,0,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-3,-2,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-2,0,0,0,0,0,0,-1,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,2,2,-2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-10,-4,-4,-3,-6,-3,-4,-3,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-5,-14,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-3,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,2,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,2,1,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,1,1,2,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,2,1,2,2,2,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,2,2,1,1,1,2,2,2,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +15,8,8,6,8,5,6,5,9,5,5,4,6,4,4,4,6,4,4,3,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,-1,-2,-2,-7,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,-1,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,1,1,2,2,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-17,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-3,-6,-3,-5,-5,-10,-4,-4,-3,-6,-3,-4,-3,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-5,-5,-4,-7,-4,-5,-5,-10,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-10,-5,-5,-3,-5,-2,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,1,1,1,1,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,6,4,4,3,4,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,3,3,3,5,3,4,4,7,4,4,3,4,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,2,2,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,0,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,5,3,3,2,3,2,3,2,4,2,3,2,3,2,2,2,3,2,2,2,1,1,1,1,2,1,1,1,2,2,3,3,5,3,2,2,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,5,3,4,4,8 +29,15,15,10,15,8,9,7,11,6,6,5,7,5,6,6,10,6,6,4,5,3,3,2,3,2,2,2,2,2,3,3,4,3,3,2,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,2,3,2,1,1,0,0,0,0,1,1,1,1,2,2,2,2,2,1,1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-3,-2,-3,-2,-5,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-5,-2,-3,-2,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-3,-4,-3,-5,-2,-3,-3,-7,-3,-4,-2,-4,-2,-4,-3,-7,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-9,-6,-10,-10,-30,-14,-14,-9,-15,-8,-9,-7,-13,-6,-7,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-2,-2,-1,-3,-1,0,0,0,0,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,2,2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-3,-2,-5,-3,-4,-4,4,3,3,2,2,1,1,1,2,1,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-3,-4,-4,-10,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-4,-2,-4,-5,-11,-5,-6,-4,-8,-5,-7,-7,-14,-7,-9,-7,-14,-9,-13,-13,-35,-17,-16,-10,-16,-9,-11,-9,-17,-8,-8,-6,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-9,-8,-17,-9,-10,-8,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-8,-16,-8,-10,-7,-13,-8,-11,-11,-22,-11,-12,-9,-15,-9,-12,-11,-22,-11,-13,-11,-20,-13,-21,-21,-56,-27,-27,-18,-28,-15,-18,-15,-27,-13,-14,-9,-14,-8,-11,-10,-20,-10,-10,-7,-12,-6,-8,-7,-14,-7,-7,-5,-10,-6,-10,-10,-21,-10,-10,-6,-10,-5,-7,-6,-13,-6,-7,-5,-10,-6,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-11,-6,-7,-6,-11,-7,-10,-10,-27,-13,-13,-8,-13,-7,-8,-6,-12,-6,-7,-6,-11,-7,-10,-9,-18,-9,-9,-6,-10,-5,-7,-6,-12,-6,-7,-5,-10,-6,-9,-9,-18,-9,-9,-6,-11,-6,-7,-6,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-10,-7,-11,-6,-9,-8,-17,-9,-11,-8,-15,-9,-14,-14,-21,-10,-10,-7,-11,-6,-7,-6,-11,-5,-6,-4,-8,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,11,6,6,4,6,3,3,3,4,3,4,3,5,4,5,5,8,5,5,4,6,4,5,5,8,5,5,5,8,5,7,7,13,7,7,5,7,4,5,5,8,4,4,3,4,3,3,3,4,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,-7,-3,-4,-3,-5,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-1,-3,-1,0,1,1,1,1,1,2,1,1,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,3,2,2,2,3,2,3,3,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-20,-10,-10,-6,-9,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-2,-5,-2,-1,0,-1,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,-1,-2,-2,9,5,5,3,4,3,4,3,5,3,4,3,5,4,5,5,10,6,6,4,6,4,4,4,7,4,4,3,4,3,5,5,8,4,4,3,3,2,3,2,3,2,2,2,4,3,3,3,5,3,3,3,5,4,5,4,7,5,6,5,8,6,9,9,16 +15,8,8,6,8,5,5,4,6,4,4,3,4,3,4,3,6,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-6,-4,-5,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-13,-13,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-3,-2,-5,-3,-5,-5,-10,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,0,-1,0,0,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,4,3,4,3,4,3,5,5,9 +15,8,8,6,8,5,6,5,6,4,4,3,4,3,4,3,6,3,3,3,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,0,0,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-15,-7,-7,-5,-8,-4,-4,-3,-6,-3,-4,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,2,2,2,1,1,1,1,1,2,1,1,1,0,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,-1,-1,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-6,-5,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-5,-11,-5,-6,-5,-10,-6,-10,-10,-28,-14,-14,-9,-14,-7,-8,-7,-13,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-4,-2,-4,-4,-9,-4,-4,-2,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-14,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-6,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-4,-3,-5,-3,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-7,-7,-10,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6,4,4,3,3,2,2,2,2,2,2,2,2,2,2,3,5,3,4,3,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,0,0,0,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,-1,-1,5,3,3,2,3,2,2,2,3,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,3,3,2,3,2,3,3,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,5,5,9 +11,6,6,4,6,4,4,4,4,3,3,2,3,2,3,2,5,3,3,2,3,2,2,2,2,2,2,1,2,2,2,2,2,2,2,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-4,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-3,-2,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-5,-2,-4,-3,-8,-4,-4,-3,-7,-4,-7,-7,-18,-9,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-10,-4,-4,-3,-4,-2,-2,-2,-4,-2,-2,-1,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-2,-3,-2,-6,-3,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,4,3,3,2,3,2,2,2,1,1,1,1,2,2,2,2,4,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,-2,0,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,1,1,1,0,0,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,3,2,3,3,4,4,7 +17,9,9,6,8,5,6,5,6,3,3,3,4,3,4,3,7,4,4,3,4,2,2,2,3,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-1,0,-1,-1,-3,-2,-3,-2,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-4,-16,-8,-8,-5,-8,-4,-5,-3,-8,-3,-3,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,-1,0,0,0,-1,0,1,1,1,1,1,1,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-4,-2,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,1,1,1,1,0,1,1,1,1,1,1,1,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,0,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-6,-17,-8,-7,-4,-7,-4,-5,-4,-10,-5,-5,-3,-6,-4,-6,-5,-8,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-8,-4,-6,-5,-13,-7,-8,-6,-11,-7,-11,-11,-28,-14,-14,-9,-14,-7,-9,-7,-15,-7,-7,-5,-8,-5,-7,-6,-12,-6,-6,-4,-6,-3,-4,-3,-9,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-6,-3,-3,-3,-6,-3,-3,-2,-5,-3,-5,-4,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-5,-5,-16,-7,-7,-5,-8,-4,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-4,-10,-5,-5,-3,-6,-3,-5,-4,-10,-5,-5,-4,-8,-5,-8,-7,-11,-5,-5,-3,-6,-3,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,6,4,4,3,4,2,2,2,1,1,1,1,2,2,2,2,5,3,4,3,4,3,3,3,3,2,3,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,1,1,1,0,1,1,1,-1,0,-1,0,-1,0,-1,-1,2,1,1,1,2,2,2,2,3,2,2,1,0,1,1,1,2,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,-1,0,0,1,1,1,0,0,-1,-1,-3,-1,-1,0,0,0,-1,-1,-1,0,0,0,-2,-1,-2,-3,-10,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,1,2,2,2,2,2,2,0,1,1,1,0,0,0,1,0,1,1,1,0,0,0,-1,4,3,3,2,3,2,3,3,2,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,4,3,3,3,4,3,4,3,5,3,3,3,5,4,6,6,11 +10,6,5,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-2,0,-1,-1,-3,-1,-1,-1,-1,0,-1,-2,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,2,2,2,2,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-3,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-16,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-2,-4,-2,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,4,2,2,2,3,3,4,4,7 +13,7,6,4,6,4,4,4,5,3,3,3,4,2,2,2,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,1,1,1,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-12,-6,-6,-3,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,1,2,2,2,2,2,2,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,0,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-12,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-6,-4,-8,-5,-8,-8,-20,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-11,-5,-5,-3,-6,-3,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-8,-4,-4,-2,-4,-2,-2,-1,-3,-1,-1,-1,-1,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,2,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,3,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,-1,0,0,0,1,1,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,0,0,1,1,1,1,0,0,0,0,3,2,2,2,3,2,2,2,1,1,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,2,3,3,4,3,5,3,3,3,4,3,5,5,8 +12,6,6,4,5,3,4,3,5,3,3,2,3,2,2,2,4,3,3,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,2,2,2,1,1,1,1,1,2,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,0,-2,-1,-1,0,0,0,0,0,-4,-2,-2,-1,-2,0,-1,0,-1,0,0,0,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-5,-2,-3,-2,-6,-2,-3,-2,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-4,-3,-7,-4,-5,-4,-7,-4,-7,-7,-17,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-2,-3,-2,-2,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,-1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,2,1,1,1,0,0,0,1,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,2,2,1,1,2,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,3,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,4,4,7 +21,11,10,7,10,6,7,5,8,5,5,3,4,3,3,3,6,3,3,3,4,3,3,3,4,2,2,2,3,2,2,2,4,2,2,1,1,1,2,2,2,1,1,1,2,2,2,3,0,0,0,0,-1,0,0,0,0,1,1,1,1,1,0,0,3,2,2,2,3,2,2,2,2,1,1,1,0,0,-1,-1,0,0,0,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-3,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-7,-3,-4,-2,-4,-2,-2,-2,-4,-1,-1,0,-1,-1,-2,-2,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-3,-3,-12,-5,-5,-3,-4,-2,-2,-1,-3,-1,-1,0,-1,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-5,-3,-4,-4,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-3,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,0,-1,-2,-7,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-5,-2,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-7,-6,-11,-5,-6,-5,-9,-5,-7,-7,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-7,-7,-16,-7,-7,-5,-8,-4,-6,-5,-11,-5,-6,-4,-8,-5,-8,-7,-12,-6,-7,-5,-9,-5,-7,-7,-14,-7,-8,-7,-13,-9,-14,-14,-33,-16,-16,-10,-16,-8,-10,-9,-17,-9,-10,-7,-12,-7,-9,-8,-15,-7,-7,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-8,-8,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-18,-8,-8,-5,-9,-5,-6,-5,-10,-5,-5,-3,-6,-3,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-3,-6,-4,-6,-5,-9,-4,-4,-3,-6,-3,-5,-5,-11,-6,-7,-6,-11,-7,-10,-9,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,1,1,1,2,2,-2,0,0,0,0,1,1,1,0,0,0,0,-1,0,-1,-1,3,2,2,2,2,1,1,1,2,2,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,4,3,5,3,4,4,5,3,4,3,4,3,3,3,4,3,3,3,4,3,4,4,4,2,2,2,3,3,4,4,6,4,4,3,5,3,4,4,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,1,3,2,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,0,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,4,3,3,2,3,2,1,1,0,0,0,1,1,1,1,1,-2,-1,-1,0,0,1,1,1,0,0,0,0,-1,0,0,0,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-5,-2,-1,0,-1,0,-1,0,-1,0,0,0,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,4,2,2,1,1,1,2,2,2,1,1,1,2,2,3,3,5,3,4,3,4,3,3,3,4,2,2,2,3,2,3,3,8,5,5,4,6,4,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,7,5,6,6,12 +11,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,0,0,-1,-1,-4,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-6,-2,-2,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-10,-5,-5,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-10,-4,-4,-3,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-3,-4,-4,-8,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-2,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-4,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,1,1,2,2,0,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,2,2,2,1,2,1,1,1,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,-1,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,5,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,4,3,5,3,4,4,7 +12,6,6,4,7,4,4,3,5,3,4,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,0,0,0,-3,-1,0,0,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-1,-6,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,-2,-1,-2,-2,-3,-1,-2,-1,-2,0,0,-1,-2,-1,-1,0,-1,-1,-2,-2,-2,-1,-2,-1,-1,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-11,-5,-6,-4,-5,-2,-3,-2,-5,-2,-3,-2,-3,-1,-2,-2,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-3,-1,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-4,-8,-5,-8,-8,-19,-9,-9,-6,-9,-5,-6,-5,-9,-4,-5,-3,-7,-4,-5,-5,-9,-4,-4,-2,-4,-2,-3,-2,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-4,-2,-3,-1,-2,-2,-3,-1,-2,-2,-4,-2,-4,-3,-8,-4,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-3,-6,-3,-5,-5,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-3,-1,0,0,-1,0,0,0,0,1,1,1,0,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,1,1,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,4,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,3,2,2,2,0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,1,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,-1,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,5,3,4,3,5,3,3,3,4,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,5,3,4,4,6,4,5,5,8 +9,5,5,4,5,3,4,3,4,3,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-3,-6,-4,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-2,-4,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,2,2,1,1,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,0,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,3,2,2,1,1,1,2,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,1,0,0,0,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,1,1,-1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,3,5,3,3,3,5,3,4,4,7 +15,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,4,3,3,3,4,3,4,3,4,3,3,2,3,2,3,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,3,1,1,1,1,1,1,0,0,2,2,2,2,2,1,0,0,3,2,2,2,2,2,2,2,2,1,1,1,0,0,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-6,-3,-3,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-3,-1,0,0,0,0,-1,-1,-1,0,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-1,0,0,0,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-2,0,0,0,-1,0,-1,0,1,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,2,2,2,1,1,1,2,2,3,2,2,2,2,1,1,1,0,1,1,1,0,1,1,1,-1,0,0,0,0,0,-1,-1,0,0,0,0,-1,0,-1,0,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-3,-1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-1,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-15,-7,-8,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-3,-4,-4,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-6,-4,-7,-4,-5,-5,-10,-5,-7,-5,-10,-7,-11,-11,-25,-12,-12,-8,-12,-6,-7,-6,-11,-5,-6,-4,-8,-5,-7,-7,-13,-6,-6,-4,-6,-3,-4,-4,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-11,-5,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-4,-8,-5,-7,-7,-12,-5,-5,-3,-4,-2,-2,-2,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,3,3,2,2,2,2,2,2,2,3,5,3,4,3,4,3,3,3,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,4,5,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,1,1,1,4,3,3,2,2,1,1,1,2,1,1,1,2,1,1,1,4,2,2,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,2,2,2,1,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-1,0,0,0,0,1,1,1,0,0,-2,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,0,0,0,0,0,0,1,1,1,1,1,0,0,-1,-1,1,1,1,1,2,2,2,2,3,2,3,3,4,3,3,2,4,3,3,2,3,2,3,2,3,2,2,2,4,3,3,3,8,5,5,4,6,4,5,4,5,3,4,4,6,4,4,4,6,4,5,4,6,4,5,5,8,5,6,5,8,6,8,7,13 +10,6,6,4,6,4,4,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,2,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-9,-4,-4,-2,-4,-2,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,2,1,1,1,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-4,-2,-2,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-2,0,-1,0,0,0,0,0,0,0,0,0,-1,0,0,0,-2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-3,-1,-2,-2,-9,-4,-4,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-2,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-7,-16,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-2,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-4,-2,-4,-3,-9,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-7,-3,-3,-2,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-4,-2,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,4,4,4,6,4,5,5,9 +14,8,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-2,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-4,-4,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-3,-1,-2,-1,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,1,1,2,2,2,2,2,1,1,1,0,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-6,-3,-3,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-6,-3,-4,-3,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-6,-6,-14,-7,-7,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-10,-5,-6,-5,-10,-7,-11,-11,-23,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-9,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-2,-2,-6,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,3,3,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,0,0,0,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,-1,-1,-2,0,0,0,-2,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-2,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,-1,-1,-1,0,0,1,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,2,2,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,4,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,4,4,6,4,4,3,5,3,4,4,6,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +13,7,8,6,8,5,5,4,7,4,4,3,4,3,3,3,5,3,3,3,3,2,3,3,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,3,2,2,1,1,1,1,1,1,1,1,1,0,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-3,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-2,-3,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,0,-2,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-2,0,-1,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-3,-2,-3,-2,-6,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-5,-3,-4,-4,-8,-4,-4,-3,-5,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-5,-4,-9,-5,-6,-5,-10,-6,-10,-10,-22,-11,-11,-7,-11,-5,-6,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-5,-4,-8,-4,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-3,-3,-6,-3,-4,-2,-4,-2,-4,-3,-8,-4,-5,-4,-7,-4,-6,-6,-11,-5,-5,-3,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,0,0,0,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,0,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,3,3,4,3,3,3,4,3,4,4,3,2,2,2,2,2,2,2,3,2,3,2,3,2,3,3,4,3,3,2,4,2,2,2,3,2,2,2,3,2,2,2,1,1,2,1,1,1,1,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,5,3,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,1,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,1,1,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,-1,-2,-1,-2,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,3,4,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,5,3,4,4,7,4,4,4,6,4,5,5,8,5,6,5,8,5,7,7,12 +25,13,13,8,11,6,7,6,9,5,5,4,7,5,6,5,9,5,6,4,6,4,4,4,6,4,4,3,3,2,3,3,3,2,3,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,3,2,3,2,2,2,3,2,2,2,2,2,2,1,5,3,3,2,2,1,1,1,0,0,0,0,0,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-3,-5,-5,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-3,-7,-5,-8,-8,-12,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-13,-6,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-14,-7,-7,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-3,-10,-4,-4,-3,-5,-3,-4,-4,-8,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-7,-8,-27,-13,-12,-8,-12,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-4,-4,-3,-5,-2,-2,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,0,1,1,1,1,1,2,2,2,1,1,1,2,2,2,3,2,1,1,1,2,1,1,0,-1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-11,-5,-5,-3,-5,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,-2,0,0,0,-1,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-3,-5,-5,-9,-4,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-5,-3,-5,-6,-13,-6,-7,-5,-8,-4,-6,-5,-11,-6,-7,-5,-9,-6,-9,-9,-27,-13,-13,-8,-13,-7,-9,-7,-13,-6,-7,-5,-9,-5,-8,-8,-17,-8,-8,-5,-9,-5,-7,-6,-13,-7,-8,-6,-12,-7,-11,-11,-28,-14,-14,-9,-14,-8,-10,-9,-17,-9,-10,-8,-14,-8,-12,-11,-22,-11,-12,-8,-14,-8,-12,-12,-24,-13,-15,-12,-22,-14,-22,-21,-45,-22,-21,-14,-21,-11,-14,-12,-22,-11,-12,-9,-15,-9,-14,-13,-26,-13,-13,-9,-15,-8,-10,-9,-17,-9,-10,-8,-14,-9,-13,-13,-26,-12,-12,-8,-12,-6,-8,-7,-13,-7,-8,-6,-11,-6,-9,-9,-19,-9,-9,-6,-10,-5,-7,-6,-12,-6,-8,-7,-13,-8,-13,-12,-28,-14,-14,-9,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-9,-8,-17,-8,-8,-5,-8,-4,-5,-4,-8,-4,-4,-3,-7,-4,-7,-7,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-14,-7,-7,-5,-9,-5,-7,-7,-15,-8,-9,-7,-14,-9,-14,-14,-22,-10,-10,-6,-10,-5,-7,-6,-13,-6,-6,-4,-8,-5,-7,-6,-12,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-6,-6,-11,-5,-5,-3,-5,-2,-2,-2,-4,-1,-1,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,0,0,-1,0,1,1,1,1,1,1,1,1,2,2,4,3,4,4,6,4,5,4,6,4,5,5,8,5,5,4,6,4,6,6,5,3,3,3,5,3,4,4,7,4,4,3,4,3,4,4,8,5,5,4,6,4,5,4,6,3,3,3,4,3,4,4,2,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,1,1,1,2,2,2,2,3,2,2,2,2,2,2,2,9,5,5,3,3,2,2,2,3,2,2,2,2,2,2,2,4,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,0,0,0,1,1,1,0,1,1,1,2,2,2,2,4,2,2,2,3,2,2,2,2,1,1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-2,-3,-2,-5,-2,-3,-2,-5,-3,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,1,1,1,1,1,0,1,1,1,0,0,0,0,-1,0,0,0,-2,-1,-1,-1,2,2,2,2,3,2,2,2,3,2,2,2,4,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,6,11,6,6,5,7,5,6,6,10,6,6,5,7,5,7,7,13,7,8,6,9,6,8,8,14,8,9,7,12,8,12,12,23 +13,7,7,5,6,4,4,4,5,3,3,3,4,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-1,-3,-1,-2,-1,-3,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,0,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-13,-6,-6,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-3,-5,-5,-14,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-5,-11,-5,-6,-4,-7,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-10,-23,-11,-11,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-7,-6,-13,-6,-6,-4,-7,-4,-5,-4,-8,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-5,-3,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-4,-3,-7,-4,-7,-7,-11,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,2,3,2,4,3,3,3,4,3,3,2,3,3,4,4,3,2,2,2,3,2,2,2,4,3,3,2,3,2,3,3,4,3,3,2,4,3,3,3,4,2,2,2,3,2,3,3,2,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,1,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,3,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,5,4,7,5,7,7,12 +14,7,7,5,6,4,4,4,6,4,4,3,5,3,4,3,5,3,4,3,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,1,1,1,1,4,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,-1,-2,-2,-1,0,0,0,-1,0,0,0,-2,0,0,0,-2,-1,-1,-1,-4,-1,-1,-1,-1,-1,-2,-2,-4,-2,-2,-2,-4,-2,-4,-4,-6,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-1,0,-1,-1,-3,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-1,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,0,-2,-1,-1,-1,-4,-2,-2,-1,-1,0,-1,0,-2,-1,-1,0,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-2,-1,-3,-2,-3,-4,-14,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-3,-7,-3,-3,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-14,-7,-7,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-4,-2,-3,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-8,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-7,-4,-6,-6,-13,-7,-8,-6,-12,-7,-11,-11,-25,-12,-12,-7,-12,-6,-7,-6,-12,-6,-6,-4,-8,-5,-7,-7,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-8,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-5,-10,-4,-4,-3,-5,-3,-4,-3,-7,-3,-4,-3,-7,-4,-6,-6,-16,-7,-7,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-3,-3,-8,-4,-4,-2,-5,-3,-4,-4,-8,-4,-4,-3,-7,-5,-8,-7,-12,-5,-5,-3,-5,-2,-3,-3,-7,-3,-4,-2,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-2,-1,-3,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,2,2,3,2,2,2,3,2,2,2,4,3,3,3,4,2,2,2,3,3,4,4,3,2,2,2,3,2,2,2,5,3,3,2,3,2,3,3,4,3,3,2,4,3,4,3,4,2,2,2,3,2,3,3,2,2,2,2,2,1,0,0,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,5,3,3,2,2,2,2,2,2,2,2,1,2,2,2,2,3,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,2,1,2,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,3,4,4,6,4,4,3,4,3,3,3,6,4,4,3,4,3,4,4,7,4,4,3,5,4,5,5,8,5,6,5,7,5,7,7,13 +11,6,6,4,5,3,3,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,3,2,2,1,2,1,1,1,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,0,-2,0,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-5,-2,-2,-1,-1,0,-1,-1,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-2,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-10,-4,-4,-2,-5,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-10,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-1,-3,-2,-3,-2,-6,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-4,-3,-5,-3,-4,-4,-9,-4,-5,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-2,-3,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-2,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,3,2,2,2,3,2,2,2,4,2,3,2,3,2,3,3,3,2,3,2,3,2,3,2,3,2,2,2,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,5,3,3,3,3,2,3,3,6,3,3,3,4,3,4,4,6,4,5,4,6,4,5,5,10 +18,9,9,6,8,5,5,4,8,4,4,3,5,3,4,4,5,3,4,3,4,3,3,3,5,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,3,2,2,2,2,2,2,2,4,2,2,2,2,1,1,1,-1,0,0,0,0,0,-1,-1,0,1,1,1,0,0,0,-1,-2,-1,-1,-1,-2,-1,-3,-3,-2,-1,-1,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-4,-2,-4,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-2,-3,-1,-2,-1,-2,-1,-3,-3,-10,-5,-5,-3,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-2,-1,-1,0,-3,-1,-1,-1,-2,-1,-2,-2,-8,-3,-3,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-3,-2,-3,-1,-1,0,-3,-1,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-3,-5,-5,-16,-8,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,-2,-1,-2,-2,-1,0,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,0,1,1,1,2,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-6,-3,-3,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,0,-1,0,0,0,0,0,0,-1,-3,-1,0,0,0,0,0,0,-2,-1,-1,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-3,-6,-4,-6,-6,-16,-8,-8,-5,-7,-4,-5,-4,-8,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-3,-9,-4,-5,-4,-8,-5,-7,-7,-19,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-4,-8,-4,-6,-6,-16,-8,-9,-6,-10,-6,-8,-7,-16,-8,-10,-8,-14,-9,-14,-14,-29,-14,-14,-9,-14,-7,-9,-8,-15,-7,-8,-6,-10,-6,-9,-8,-18,-9,-9,-6,-9,-5,-6,-5,-11,-5,-6,-5,-9,-5,-8,-8,-16,-7,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-7,-4,-6,-5,-12,-5,-5,-3,-6,-3,-4,-4,-10,-5,-6,-5,-9,-5,-8,-8,-19,-9,-9,-5,-8,-4,-5,-5,-9,-4,-5,-4,-7,-4,-5,-4,-10,-4,-4,-3,-5,-2,-3,-2,-7,-3,-3,-2,-4,-2,-3,-3,-9,-4,-4,-2,-4,-2,-3,-3,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-5,-4,-8,-5,-8,-8,-15,-7,-6,-4,-6,-3,-4,-4,-9,-4,-4,-2,-4,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,3,3,4,3,3,2,3,2,3,3,3,2,3,3,4,3,5,5,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,5,3,3,3,4,3,4,3,4,3,3,3,4,3,4,4,3,2,2,2,2,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,7,4,4,3,3,2,2,2,1,1,2,2,2,1,1,1,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,1,1,1,-1,0,0,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-1,0,0,0,0,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-6,-3,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,0,0,-1,-1,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,3,2,3,3,4,3,4,3,4,3,3,3,4,3,4,3,5,3,3,3,4,3,4,4,6,4,4,4,6,4,5,4,7,4,4,3,5,3,4,4,9,5,6,4,6,4,5,5,10,6,7,6,10,7,9,8,15 +11,6,6,4,6,4,4,3,5,3,3,2,4,2,3,3,4,2,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-5,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-5,-2,-2,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,0,0,-1,0,-1,0,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,0,-1,-1,-2,-1,-3,-3,-9,-4,-4,-2,-4,-2,-3,-2,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-4,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-9,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-11,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-4,-8,-5,-8,-8,-18,-8,-8,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-3,-5,-5,-10,-5,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-4,-4,-10,-4,-4,-3,-5,-2,-3,-2,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-2,-2,-2,-6,-3,-3,-2,-5,-3,-4,-4,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-2,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-9,-4,-3,-2,-3,-2,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,2,3,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,2,3,2,2,2,3,2,3,3,3,2,2,2,2,1,1,1,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,3,4,3,3,3,4,3,3,2,3,2,3,3,6,4,4,3,4,3,3,3,6,4,5,4,6,4,6,5,9 +15,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,5,3,3,2,4,2,2,2,4,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,-1,-1,-2,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-4,-4,-7,-3,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-4,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-4,-2,-2,-1,-3,-1,0,0,-2,-1,-1,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-5,-13,-6,-6,-4,-6,-3,-4,-3,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-2,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,2,1,1,1,2,2,2,1,0,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-15,-7,-7,-4,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-9,-5,-6,-6,-13,-7,-8,-6,-11,-7,-12,-12,-25,-12,-12,-8,-11,-6,-8,-7,-12,-6,-7,-5,-8,-5,-8,-7,-14,-7,-8,-5,-8,-4,-6,-5,-9,-4,-5,-4,-7,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-3,-8,-4,-4,-3,-5,-3,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-15,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-4,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-13,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-4,-6,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,5,3,4,3,3,2,2,2,4,2,2,2,3,2,2,2,4,3,3,3,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,0,0,0,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-5,-2,-1,0,-2,-1,-1,0,-2,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,4,3,4,3,3,3,4,3,4,3,4,3,4,4,8,4,4,3,5,3,4,4,8,5,6,5,7,5,7,7,12 +14,8,8,5,8,5,5,4,7,4,4,3,5,3,4,4,4,3,3,2,3,2,2,2,3,2,2,2,2,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,3,2,2,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-2,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-4,-2,-4,-4,-12,-6,-6,-3,-5,-2,-3,-2,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,1,1,0,0,1,1,0,0,1,1,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,1,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-3,-1,-2,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-3,-2,-4,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-5,-12,-6,-6,-4,-8,-4,-6,-6,-12,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-7,-6,-12,-6,-7,-5,-8,-5,-7,-7,-13,-6,-7,-5,-8,-4,-5,-4,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-14,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-5,-3,-5,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-2,-1,-2,-1,-1,-1,-2,0,0,0,-1,0,0,0,-2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,3,3,2,2,2,4,2,2,2,2,2,2,2,4,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,4,2,2,2,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,1,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-4,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,0,0,-1,0,0,1,1,1,0,0,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,3,3,4,3,3,3,4,3,4,4,7,4,4,3,4,3,4,4,7,4,5,4,6,5,7,7,12 +27,14,14,9,13,8,9,7,12,7,8,6,9,6,7,6,7,4,4,3,5,3,4,3,4,3,3,3,4,3,4,4,7,4,5,4,5,3,4,3,5,3,2,2,2,2,3,3,4,3,3,2,2,2,2,2,3,2,2,2,2,2,3,3,6,4,4,3,3,2,1,1,0,0,0,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-2,-4,-4,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-3,-8,-4,-4,-3,-5,-3,-4,-4,-8,-4,-5,-4,-7,-4,-6,-6,-15,-7,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-3,-5,-5,-14,-6,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-5,-3,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-2,-9,-4,-5,-3,-5,-2,-2,-2,-4,-2,-2,-2,-5,-3,-6,-6,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-9,-4,-5,-3,-5,-3,-4,-4,-8,-4,-6,-5,-10,-6,-10,-10,-24,-12,-12,-7,-11,-6,-7,-6,-11,-5,-6,-4,-7,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-4,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,0,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,1,1,1,2,2,2,1,1,1,1,1,2,2,-2,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-2,-3,-3,-8,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-2,-4,-2,-4,-3,-6,-3,-3,-1,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-2,-2,-4,-2,-4,-4,-11,-5,-5,-3,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-4,-11,-5,-6,-4,-7,-3,-4,-4,-8,-4,-5,-5,-10,-6,-10,-10,-22,-10,-10,-6,-10,-5,-7,-6,-11,-5,-6,-4,-7,-4,-7,-7,-13,-6,-7,-5,-9,-5,-6,-6,-12,-6,-8,-7,-13,-8,-13,-13,-28,-14,-14,-10,-16,-9,-11,-9,-18,-9,-10,-7,-13,-8,-11,-11,-24,-12,-12,-9,-15,-9,-12,-12,-24,-13,-16,-13,-23,-15,-23,-23,-45,-22,-22,-14,-22,-12,-15,-13,-24,-12,-14,-10,-17,-10,-15,-14,-27,-13,-13,-9,-15,-8,-11,-9,-18,-9,-10,-8,-14,-8,-12,-12,-27,-13,-14,-9,-14,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-9,-20,-10,-10,-7,-13,-7,-9,-8,-16,-8,-10,-8,-15,-9,-13,-13,-28,-14,-14,-9,-14,-7,-9,-8,-16,-8,-9,-6,-11,-6,-8,-7,-14,-6,-6,-4,-7,-4,-6,-5,-10,-5,-6,-5,-9,-5,-7,-7,-16,-8,-8,-5,-7,-4,-5,-5,-10,-5,-6,-5,-9,-5,-7,-7,-10,-5,-5,-4,-7,-4,-6,-6,-12,-6,-8,-7,-14,-9,-14,-14,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-7,-5,-9,-5,-7,-6,-14,-6,-6,-4,-6,-3,-5,-4,-8,-4,-4,-3,-6,-4,-6,-7,-11,-5,-5,-3,-4,-2,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-6,-3,-3,-2,-3,-1,-1,-1,-2,0,0,0,-1,0,0,1,3,2,2,2,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,1,1,1,2,2,3,2,3,3,4,3,5,5,8,5,5,3,4,3,4,4,6,4,4,3,4,3,4,3,8,5,5,4,6,4,5,4,6,4,4,4,6,4,6,6,8,5,5,3,4,3,3,2,3,2,3,2,3,2,2,2,1,1,1,1,2,2,2,2,3,2,2,2,4,3,4,4,8,5,5,3,4,2,2,2,2,1,1,1,2,2,2,2,6,4,4,3,3,2,1,1,0,0,0,1,1,1,1,0,2,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-1,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-8,-4,-4,-2,-4,-2,-2,-1,-2,-1,-1,0,-1,0,-1,-1,-6,-3,-3,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-1,-2,-2,-1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,-1,0,0,0,0,0,0,0,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,1,1,1,1,2,2,2,2,2,2,2,2,4,3,3,3,4,3,3,3,4,3,3,3,6,4,6,5,8,5,5,4,6,4,4,4,6,4,4,3,5,4,6,6,13,7,8,6,9,6,7,6,11,6,7,6,10,7,11,11,22 +15,8,8,6,8,5,5,4,7,4,5,4,5,4,4,4,4,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-1,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-2,-7,-3,-3,-2,-3,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-7,-3,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-13,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-4,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-2,-6,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-3,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-6,-3,-4,-3,-7,-4,-7,-7,-15,-7,-7,-5,-8,-4,-5,-5,-10,-5,-5,-4,-7,-4,-6,-6,-13,-6,-6,-4,-8,-4,-6,-6,-13,-7,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-7,-13,-6,-7,-5,-9,-5,-8,-7,-14,-7,-7,-5,-8,-4,-5,-4,-10,-5,-5,-4,-7,-4,-6,-6,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-5,-3,-5,-3,-4,-4,-7,-3,-3,-2,-3,-2,-3,-2,-5,-2,-3,-2,-4,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-5,-2,-2,-2,-4,-2,-3,-3,-5,-2,-3,-2,-3,-2,-3,-3,-6,-3,-4,-4,-7,-4,-7,-7,-14,-7,-7,-4,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-6,-2,-3,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,3,2,3,2,2,2,4,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,5,3,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,1,1,1,0,0,-1,0,-1,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,0,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,1,1,1,1,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,3,4,2,2,2,4,2,2,2,3,3,4,4,8,4,5,4,6,4,5,4,7,4,4,4,6,5,7,7,13 +18,10,10,7,9,5,6,5,8,5,5,4,6,4,4,4,5,3,4,3,4,2,2,2,3,2,2,2,4,3,4,4,5,3,3,2,4,3,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,0,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,-1,-2,-2,-2,0,0,0,-1,0,0,0,-1,0,0,0,-2,-1,-1,-1,-5,-2,-2,-1,-2,-1,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-4,-3,-8,-3,-3,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-4,-4,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-3,-4,-3,-6,-3,-4,-2,-5,-2,-2,-2,-4,-2,-2,-1,-3,-1,-2,-1,-2,-1,-2,-1,-2,-1,-2,-2,-3,-1,-1,0,-1,0,0,0,-2,0,0,0,-1,0,-1,-1,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,1,0,1,1,1,1,1,-1,0,0,0,1,1,0,0,0,0,0,0,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-1,-4,-2,-2,-1,-1,0,0,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-2,-1,-2,-1,-4,-1,-1,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-3,-7,-3,-3,-1,-3,-1,-2,-1,-3,-1,-1,-1,-2,-1,-2,-2,-7,-3,-4,-3,-4,-2,-3,-3,-5,-2,-3,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-6,-3,-4,-2,-4,-3,-5,-5,-8,-4,-4,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-5,-8,-8,-17,-8,-9,-6,-10,-5,-6,-6,-12,-6,-7,-5,-9,-5,-8,-7,-15,-7,-8,-6,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-30,-14,-14,-9,-15,-8,-10,-8,-15,-7,-8,-6,-11,-6,-9,-8,-17,-8,-8,-6,-10,-5,-6,-5,-12,-6,-7,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-6,-5,-9,-5,-6,-4,-7,-4,-6,-6,-13,-6,-7,-5,-8,-4,-6,-5,-10,-5,-6,-5,-10,-6,-8,-8,-18,-9,-9,-6,-9,-5,-6,-5,-9,-5,-6,-4,-6,-3,-5,-4,-9,-4,-4,-3,-4,-2,-4,-3,-5,-2,-3,-2,-4,-2,-4,-4,-10,-5,-5,-3,-5,-3,-4,-3,-5,-2,-2,-2,-4,-2,-4,-4,-6,-3,-4,-3,-4,-2,-4,-4,-8,-4,-6,-5,-9,-5,-8,-8,-18,-9,-9,-5,-8,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-9,-4,-4,-2,-4,-2,-2,-2,-5,-2,-2,-2,-3,-2,-4,-4,-7,-3,-4,-2,-3,-1,-2,-2,-4,-1,-1,0,-1,0,0,0,-4,-2,-2,-1,-1,0,0,0,0,1,1,1,0,0,0,1,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,2,2,2,1,1,1,1,1,3,2,2,2,2,2,4,4,6,4,4,3,3,2,2,2,4,2,2,2,3,2,2,2,6,4,4,3,5,3,4,3,5,3,4,3,4,3,4,4,7,4,4,3,3,2,3,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,2,1,1,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-5,-2,-2,-1,-1,0,0,0,-1,0,0,0,0,0,0,0,-4,-2,-2,-1,-1,0,0,0,-1,0,-1,0,-1,0,-1,0,-1,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,2,2,2,1,2,1,1,1,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,6,4,4,3,4,2,2,2,4,2,2,2,4,3,4,4,9,5,5,4,7,5,6,5,8,5,5,4,8,6,8,8,16 +15,8,8,6,8,4,5,4,7,4,4,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,3,2,3,3,4,3,3,2,3,2,3,2,3,2,2,2,2,2,2,2,3,2,2,1,1,1,2,2,2,2,2,1,1,1,2,2,4,2,2,2,2,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-2,-2,-3,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-3,-1,-1,-1,-3,-2,-3,-2,-7,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-2,-1,-2,-1,-2,-2,-4,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-2,-4,-2,-5,-5,-12,-6,-6,-4,-6,-3,-3,-3,-5,-2,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-2,-1,-1,0,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,0,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,-1,0,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-1,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-6,-2,-3,-2,-3,-2,-2,-2,-4,-2,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-3,-2,-5,-2,-3,-2,-3,-2,-4,-4,-7,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-3,-7,-4,-7,-7,-14,-7,-7,-4,-8,-4,-5,-5,-10,-5,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-4,-6,-6,-12,-6,-8,-6,-12,-8,-12,-12,-25,-12,-12,-8,-12,-6,-8,-6,-12,-6,-6,-4,-9,-5,-7,-6,-14,-6,-7,-5,-8,-4,-5,-4,-10,-5,-6,-4,-8,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-7,-4,-5,-3,-6,-3,-5,-5,-11,-5,-6,-4,-6,-3,-5,-4,-8,-4,-5,-4,-8,-5,-7,-7,-15,-7,-7,-4,-7,-4,-5,-4,-7,-4,-4,-3,-5,-2,-4,-3,-7,-3,-3,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-8,-4,-4,-2,-4,-2,-3,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-6,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-1,0,-1,0,-3,-1,-1,0,-1,0,0,0,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,2,2,1,1,1,1,1,2,2,2,2,2,2,3,3,5,3,4,3,3,2,2,2,3,2,2,2,3,2,2,2,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,6,3,3,2,3,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,3,2,2,2,3,2,2,2,3,2,3,3,4,2,2,2,3,2,2,2,2,1,1,1,1,1,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,2,1,1,1,0,0,0,0,1,1,1,1,0,0,0,1,1,1,0,0,-2,0,0,0,-1,0,-1,-1,-2,-1,-1,0,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,1,0,0,0,1,1,1,2,1,2,1,1,1,2,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,3,2,3,2,2,2,3,2,2,2,3,2,3,3,7,4,4,4,6,4,5,4,7,4,5,4,7,5,7,7,14 +26,13,13,9,13,8,9,7,11,6,6,4,6,4,5,5,9,5,6,4,6,4,4,3,5,3,4,3,5,3,4,4,7,4,4,3,4,3,3,3,5,3,3,2,3,2,2,2,5,3,2,2,2,2,2,2,4,2,2,2,2,2,3,3,6,3,3,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-3,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-3,-7,-4,-5,-4,-7,-4,-7,-7,-15,-7,-7,-4,-6,-3,-4,-3,-7,-3,-4,-3,-6,-3,-5,-5,-10,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-3,-6,-3,-5,-5,-13,-6,-6,-4,-6,-3,-4,-3,-5,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-2,-2,-5,-2,-3,-2,-5,-3,-5,-5,-12,-6,-6,-3,-5,-2,-3,-3,-4,-2,-2,-1,-3,-2,-3,-3,-8,-3,-3,-2,-4,-2,-3,-2,-7,-3,-3,-2,-5,-3,-5,-6,-12,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-3,-3,-8,-4,-5,-4,-8,-5,-9,-9,-23,-11,-11,-7,-11,-6,-7,-6,-10,-5,-5,-4,-7,-4,-5,-4,-7,-3,-3,-2,-4,-2,-2,-1,-5,-2,-3,-2,-4,-2,-4,-4,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-2,-1,-1,0,-1,0,-1,-1,-2,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,0,0,0,1,1,1,-1,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-3,-3,-6,-3,-3,-2,-4,-2,-2,-2,-3,-1,-2,-1,-3,-2,-3,-2,-6,-2,-2,-1,-2,-1,-2,-1,-3,-1,-1,-1,-2,-1,-3,-3,-6,-2,-2,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-3,-3,-6,-3,-3,-2,-5,-2,-3,-3,-7,-3,-4,-2,-4,-3,-5,-5,-11,-5,-4,-2,-4,-2,-3,-3,-6,-3,-3,-2,-4,-2,-4,-4,-11,-5,-5,-4,-7,-4,-5,-4,-8,-4,-6,-5,-10,-6,-10,-10,-20,-10,-10,-7,-11,-5,-6,-5,-10,-5,-5,-3,-6,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-9,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-11,-9,-18,-9,-11,-8,-14,-8,-11,-11,-22,-11,-11,-8,-14,-8,-12,-11,-23,-12,-15,-12,-23,-15,-23,-23,-47,-23,-23,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-12,-8,-14,-8,-10,-9,-19,-10,-12,-9,-16,-10,-14,-13,-26,-13,-13,-8,-13,-7,-8,-7,-14,-7,-9,-7,-12,-7,-11,-10,-20,-10,-11,-7,-12,-7,-10,-9,-16,-8,-9,-7,-14,-9,-14,-14,-27,-13,-13,-9,-14,-7,-9,-7,-14,-7,-8,-6,-10,-5,-7,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-5,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-7,-3,-4,-3,-6,-4,-6,-6,-11,-5,-6,-4,-8,-5,-7,-6,-14,-7,-9,-7,-14,-9,-14,-14,-28,-13,-13,-8,-13,-7,-8,-6,-14,-7,-7,-5,-8,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-9,-4,-5,-3,-6,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-7,-3,-2,-1,-2,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,2,2,2,1,1,1,2,1,1,1,2,1,1,1,3,2,2,2,3,3,4,4,9,5,6,4,6,4,4,3,5,3,3,3,4,3,4,4,8,5,5,4,6,4,4,4,6,4,4,4,6,4,6,6,10,5,5,3,4,3,3,3,5,3,4,3,4,2,2,2,3,2,2,2,4,3,3,3,5,3,4,3,4,3,4,4,6,3,3,3,4,2,2,2,3,2,2,2,2,2,2,2,5,3,2,2,2,2,2,1,2,2,2,1,1,1,1,0,0,1,1,1,2,1,1,1,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,-4,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-2,-1,-2,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,0,-2,0,0,0,-1,0,0,0,-2,-1,-1,0,-1,0,0,1,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,-2,-4,-1,-1,0,0,0,0,1,1,1,2,2,2,2,2,2,2,1,1,1,2,2,2,2,5,3,4,3,4,3,4,4,7,4,4,3,4,3,3,3,5,3,3,3,4,3,5,5,11,6,7,6,9,6,8,7,11,7,8,7,12,9,13,13,25 +18,9,9,6,9,5,6,5,8,4,4,3,4,3,4,4,6,4,4,3,4,3,3,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,4,2,2,2,2,2,2,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,-1,-2,0,-1,-1,-2,0,0,0,-2,0,-1,-1,-4,-1,-1,-1,-2,-1,-1,-1,-4,-2,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-2,-3,-2,-3,-3,-6,-3,-3,-2,-3,-2,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-8,-3,-3,-2,-3,-1,-2,-1,-3,-1,-1,0,-2,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-2,-3,-1,-2,-2,-3,-1,-1,-1,-2,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-5,-2,-3,-2,-3,-1,-2,-2,-5,-2,-3,-2,-5,-3,-6,-6,-15,-7,-7,-4,-7,-4,-4,-3,-6,-3,-3,-2,-4,-2,-3,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-1,-1,-2,-1,-2,-2,-4,-1,-1,0,-1,0,-1,-1,-2,0,-1,0,-1,0,-1,-1,-1,0,0,0,0,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,-1,0,0,0,-1,0,-1,-2,-4,-2,-2,-1,-2,-1,-1,-1,-2,-1,-1,0,-2,-1,-1,-1,-4,-1,-1,0,-1,0,-1,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,0,-2,-1,-1,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-2,-1,-2,-2,-7,-3,-3,-2,-4,-2,-3,-2,-5,-3,-4,-3,-6,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-4,-2,-4,-4,-9,-4,-5,-3,-6,-3,-4,-4,-8,-4,-5,-4,-9,-6,-8,-8,-17,-8,-8,-6,-9,-5,-7,-6,-11,-6,-7,-5,-9,-5,-7,-7,-14,-7,-7,-5,-9,-5,-8,-7,-15,-8,-10,-8,-15,-10,-15,-15,-31,-15,-15,-10,-15,-8,-10,-8,-15,-7,-8,-6,-10,-6,-9,-8,-16,-8,-8,-5,-9,-5,-6,-6,-12,-6,-7,-5,-10,-6,-9,-8,-17,-8,-8,-5,-9,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-6,-13,-6,-7,-4,-8,-4,-6,-5,-10,-5,-6,-5,-9,-6,-9,-9,-18,-8,-9,-6,-9,-4,-5,-4,-9,-4,-4,-3,-6,-3,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-3,-2,-4,-2,-4,-4,-9,-4,-4,-3,-5,-2,-3,-2,-5,-2,-2,-2,-4,-2,-4,-4,-7,-3,-4,-2,-5,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-18,-9,-9,-6,-8,-4,-5,-4,-9,-4,-4,-3,-5,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-5,-2,-3,-2,-4,-2,-4,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-2,-1,-1,-1,-4,-1,-1,0,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,2,1,1,1,2,2,2,2,2,2,3,3,6,4,4,3,4,3,3,2,4,3,3,2,3,2,3,3,5,3,3,3,4,3,3,3,4,3,3,3,4,3,4,4,7,4,4,3,3,2,2,2,4,2,3,2,3,2,2,2,2,2,2,2,3,2,2,2,3,2,3,2,3,2,3,3,4,2,2,2,3,2,2,2,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,1,2,2,2,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-2,0,0,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,-1,0,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-1,-2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,4,2,3,2,3,2,3,3,5,3,3,2,3,2,3,2,4,3,3,2,3,3,4,4,7,4,5,4,6,4,5,5,8,5,6,5,9,6,9,9,17 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,4,3,4,3,4,4,7,4,4,3,5,3,4,3,5,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,6,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,-1,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-4,-2,-2,-2,-5,-3,-4,-3,-7,-4,-6,-7,-15,-7,-6,-4,-6,-3,-4,-4,-7,-3,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-3,-4,-3,-6,-4,-6,-5,-11,-5,-6,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-22,-10,-10,-7,-11,-6,-7,-5,-10,-5,-6,-4,-7,-4,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,-1,-1,-1,0,0,0,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-2,-1,-2,-1,-2,-1,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-4,-4,-11,-5,-4,-3,-5,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-11,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-10,-6,-10,-9,-19,-9,-10,-7,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-8,-5,-9,-5,-7,-6,-13,-7,-8,-7,-14,-9,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-7,-12,-7,-9,-8,-15,-8,-10,-8,-13,-8,-13,-13,-27,-13,-14,-9,-13,-7,-8,-7,-13,-6,-6,-4,-8,-5,-7,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-6,-4,-6,-6,-14,-7,-7,-5,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-4,-8,-5,-7,-6,-14,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-13,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-6,-3,-4,-3,-7,-3,-3,-2,-3,-1,-2,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,3,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,5,3,4,3,3,2,2,2,3,2,2,2,4,3,3,3,4,3,3,2,4,3,4,4,6,3,3,3,4,3,4,3,5,3,3,2,3,2,2,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,-1,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,0,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,4,3,4,3,4,5,8,4,4,3,5,3,4,3,6,4,4,3,5,4,6,6,10,6,6,5,9,6,7,6,12,7,8,7,13,9,14,14,26 +26,13,13,9,13,7,8,7,11,6,6,5,6,4,5,5,9,5,5,4,5,3,3,3,5,3,3,3,4,3,4,4,7,4,4,3,5,3,4,3,4,3,3,2,2,2,2,2,4,2,2,2,2,2,2,2,3,2,2,2,3,2,3,3,5,3,2,2,2,2,2,1,1,1,1,1,0,0,0,0,-1,0,0,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-1,-2,-2,-6,-3,-3,-2,-3,-1,-2,-2,-4,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-2,-2,-2,-5,-3,-4,-3,-6,-4,-6,-7,-15,-7,-7,-4,-7,-4,-5,-4,-8,-4,-4,-3,-5,-3,-4,-4,-10,-4,-4,-3,-5,-3,-4,-3,-6,-3,-3,-2,-5,-3,-5,-5,-11,-5,-5,-3,-5,-2,-3,-2,-6,-3,-3,-1,-3,-1,-2,-2,-4,-2,-2,-1,-3,-2,-3,-2,-6,-3,-4,-3,-6,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-6,-3,-3,-2,-4,-2,-3,-3,-7,-3,-3,-2,-5,-3,-4,-3,-6,-3,-4,-3,-6,-4,-6,-6,-12,-6,-6,-3,-6,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-9,-4,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-10,-10,-21,-10,-10,-6,-10,-5,-6,-5,-10,-5,-5,-4,-6,-3,-5,-4,-8,-4,-4,-2,-4,-2,-2,-2,-4,-2,-2,-1,-3,-2,-3,-3,-7,-3,-3,-2,-3,-1,-2,-2,-3,-1,-1,-1,-1,0,-1,-1,-3,-1,-1,0,-1,0,0,0,-1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,-1,-2,-1,-1,-1,-2,-1,-2,-3,-6,-3,-3,-2,-3,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-6,-2,-2,-1,-3,-1,-2,-1,-2,-1,-1,-1,-3,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-5,-3,-4,-3,-6,-3,-4,-3,-5,-3,-5,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-2,-4,-2,-4,-4,-10,-5,-5,-3,-6,-3,-4,-4,-9,-5,-6,-5,-9,-6,-9,-9,-19,-9,-10,-6,-10,-5,-6,-5,-11,-5,-6,-4,-7,-4,-7,-7,-14,-7,-7,-5,-9,-5,-7,-6,-13,-7,-8,-7,-13,-8,-13,-13,-26,-13,-13,-9,-14,-8,-10,-9,-17,-9,-10,-7,-13,-8,-12,-11,-22,-11,-12,-9,-15,-9,-12,-11,-23,-12,-15,-12,-23,-15,-22,-22,-47,-23,-22,-15,-23,-12,-15,-12,-23,-11,-12,-9,-16,-10,-14,-13,-25,-12,-13,-8,-14,-8,-10,-9,-18,-9,-11,-8,-14,-9,-13,-13,-27,-13,-13,-9,-14,-7,-9,-8,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-10,-7,-11,-6,-9,-8,-15,-8,-9,-7,-13,-8,-13,-13,-28,-13,-13,-8,-13,-7,-8,-7,-13,-6,-7,-4,-8,-5,-7,-6,-13,-6,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-7,-7,-14,-7,-7,-4,-7,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-6,-12,-6,-6,-5,-9,-5,-7,-7,-14,-8,-9,-8,-15,-9,-14,-14,-28,-14,-14,-9,-14,-7,-9,-7,-14,-6,-6,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-4,-8,-4,-4,-3,-7,-4,-6,-6,-13,-6,-6,-4,-7,-3,-4,-3,-7,-3,-3,-2,-3,-2,-3,-2,-6,-2,-2,-1,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,1,1,0,1,0,1,1,1,2,1,1,1,3,2,2,2,2,2,2,2,3,2,2,2,3,3,4,5,9,5,5,4,5,3,4,4,6,4,4,3,4,3,4,4,7,4,4,3,5,3,4,4,6,4,4,3,5,4,6,6,9,5,5,4,4,3,3,3,4,3,3,2,3,2,2,2,4,2,3,2,4,3,3,3,4,3,3,2,4,3,4,4,6,4,4,3,4,3,4,3,5,3,3,2,3,2,3,2,4,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,-3,-1,-1,-1,-1,-1,-2,-2,-5,-2,-2,-1,-2,-1,-1,-1,-3,-1,-2,-1,-2,-1,-2,-2,-5,-2,-2,-1,-2,-1,-2,-2,-4,-2,-2,-1,-3,-1,-2,-2,-5,-2,-2,-1,-3,-1,-2,-2,-3,-1,-2,-1,-3,-1,-2,-2,-4,-2,-2,-1,-1,0,0,0,-1,0,0,0,-1,0,-1,-1,-2,0,0,0,-1,0,0,0,-1,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,-1,-1,-3,-1,-1,0,-1,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,5,3,3,3,4,3,4,5,8,5,5,4,5,3,4,4,6,4,4,3,5,4,6,6,10,6,6,5,8,5,7,6,12,7,8,7,13,9,13,13,26 +50,25,25,17,24,13,15,12,21,11,11,8,12,8,10,9,17,9,9,7,10,6,6,5,9,5,5,4,7,5,8,8,14,8,8,6,8,5,6,5,7,4,4,3,4,3,4,4,6,3,3,2,3,2,2,2,4,3,3,3,5,4,5,5,9,5,4,3,3,2,2,1,1,1,1,0,-1,0,-1,-1,-3,-1,-2,-1,-3,-2,-3,-3,-7,-3,-4,-3,-6,-4,-6,-6,-14,-7,-7,-5,-8,-4,-5,-4,-8,-4,-4,-3,-6,-3,-5,-5,-11,-5,-5,-4,-7,-4,-5,-5,-11,-6,-8,-7,-13,-9,-14,-15,-31,-15,-15,-10,-15,-8,-11,-9,-17,-9,-10,-7,-12,-7,-10,-10,-21,-10,-10,-7,-12,-6,-8,-7,-13,-6,-7,-6,-11,-7,-11,-11,-23,-11,-11,-7,-11,-6,-8,-6,-12,-6,-6,-4,-6,-3,-5,-5,-10,-5,-5,-4,-8,-5,-7,-6,-12,-6,-8,-6,-12,-7,-11,-11,-22,-11,-11,-7,-12,-6,-8,-7,-13,-6,-6,-4,-8,-5,-8,-8,-16,-8,-8,-6,-11,-6,-8,-7,-14,-7,-9,-7,-14,-8,-12,-12,-25,-12,-12,-8,-12,-7,-9,-7,-14,-7,-8,-6,-11,-7,-10,-10,-20,-10,-11,-8,-13,-7,-10,-9,-19,-10,-13,-11,-20,-13,-20,-20,-42,-20,-20,-13,-21,-11,-13,-11,-21,-10,-11,-8,-13,-7,-10,-9,-18,-9,-9,-5,-8,-4,-6,-5,-10,-5,-6,-4,-8,-5,-8,-7,-15,-7,-8,-5,-8,-4,-5,-4,-8,-3,-3,-2,-4,-2,-3,-3,-6,-3,-3,-1,-2,-1,-1,-1,-4,-1,-1,0,0,1,1,1,0,1,1,1,1,1,0,0,-1,0,0,0,0,1,1,1,0,0,0,0,-1,-1,-2,-2,-6,-3,-3,-2,-5,-3,-6,-6,-14,-7,-7,-4,-7,-4,-5,-4,-9,-4,-5,-4,-7,-4,-6,-6,-12,-6,-6,-4,-7,-3,-4,-3,-6,-3,-3,-3,-6,-4,-6,-5,-11,-5,-5,-3,-6,-3,-4,-3,-7,-3,-4,-3,-6,-4,-7,-7,-16,-8,-9,-6,-11,-6,-8,-7,-14,-7,-9,-7,-12,-8,-12,-11,-23,-11,-11,-8,-13,-7,-8,-7,-14,-7,-8,-6,-10,-6,-10,-10,-21,-10,-11,-8,-13,-7,-10,-10,-20,-11,-13,-10,-19,-12,-19,-19,-39,-19,-20,-13,-21,-11,-14,-12,-22,-11,-13,-9,-16,-10,-15,-15,-30,-15,-15,-11,-18,-11,-15,-13,-26,-14,-17,-14,-27,-18,-27,-26,-53,-27,-28,-19,-30,-17,-21,-18,-34,-18,-20,-15,-27,-17,-24,-23,-45,-23,-24,-18,-30,-18,-26,-24,-48,-26,-32,-26,-47,-31,-46,-46,-94,-46,-46,-31,-47,-25,-30,-25,-46,-23,-25,-19,-32,-20,-28,-26,-51,-25,-26,-18,-28,-16,-21,-19,-36,-19,-22,-17,-29,-19,-28,-27,-54,-27,-27,-18,-28,-15,-19,-16,-30,-15,-17,-13,-23,-14,-21,-20,-40,-20,-21,-14,-23,-13,-18,-16,-32,-17,-19,-15,-28,-18,-28,-28,-57,-28,-27,-18,-27,-15,-18,-15,-27,-14,-15,-10,-17,-10,-14,-13,-27,-13,-14,-9,-14,-8,-10,-9,-18,-9,-10,-8,-15,-10,-15,-15,-30,-15,-15,-10,-15,-8,-10,-8,-16,-8,-10,-8,-14,-9,-13,-12,-25,-13,-14,-11,-19,-11,-16,-15,-29,-16,-19,-16,-30,-19,-29,-29,-58,-28,-28,-19,-29,-15,-18,-15,-28,-14,-14,-10,-16,-9,-13,-12,-25,-12,-13,-9,-14,-7,-9,-8,-16,-8,-10,-8,-15,-9,-14,-14,-28,-14,-14,-9,-15,-8,-9,-8,-15,-7,-8,-5,-8,-5,-7,-6,-12,-5,-5,-3,-4,-1,-1,0,-1,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,3,2,2,2,4,3,3,3,4,3,3,3,5,3,4,4,6,5,7,8,16,8,8,6,8,5,6,6,11,6,7,5,7,5,7,7,13,7,8,6,9,6,7,6,11,6,7,6,10,7,10,10,18,9,9,6,8,5,5,4,7,4,4,3,5,3,4,4,7,4,5,4,6,4,5,5,8,5,5,4,6,5,7,7,12,7,7,5,8,5,6,5,9,5,6,4,6,4,5,4,6,3,3,2,3,2,2,2,4,2,2,1,1,1,1,1,0,1,1,1,1,1,0,0,-2,0,0,0,0,0,0,0,-1,0,-1,-1,-2,-1,-2,-2,-6,-3,-3,-2,-4,-2,-4,-4,-10,-4,-4,-2,-4,-2,-3,-3,-7,-3,-4,-3,-5,-3,-5,-5,-12,-6,-6,-4,-6,-3,-4,-4,-8,-4,-4,-3,-6,-4,-6,-5,-11,-5,-5,-4,-7,-3,-4,-4,-8,-4,-5,-4,-7,-4,-5,-5,-10,-4,-4,-2,-3,-1,-2,-2,-4,-2,-2,-2,-4,-2,-3,-3,-6,-2,-2,-1,-3,-1,-1,-1,-3,-1,-2,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,-1,-1,-1,-2,0,0,0,-1,-1,-2,-2,-6,-2,-2,-1,-3,-1,-1,-1,-2,-1,-1,0,0,0,0,1,1,1,2,2,3,3,4,4,8,5,5,5,8,6,8,8,16,9,9,7,10,6,8,7,11,7,8,6,10,7,11,11,20,11,12,9,15,9,12,12,22,13,16,14,25,17,25,25,50 diff --git a/worlds/diamond_world2.csv b/worlds/diamond_world2.csv new file mode 100644 index 0000000..d51e78a --- /dev/null +++ b/worlds/diamond_world2.csv @@ -0,0 +1,257 @@ +54,102,116,132,158,159,140,207,229,196,157,171,261,284,275,322,482,460,363,438,641,901,1431,1938,2724,2943,3854,4444,3889,4374,5896,6636,5925,6653,9764,12769,12864,9305,7398,9721,9630,7535,5882,4872,4098,7778,9385,10017,13287,10766,6878,7037,8674,10026,10329,12788,14776,11178,7584,6270,5816,4793,3297,2901,2281,1952,1514,1512,2230,1570,1413,891,514,920,1062,2164,2972,3805,3680,4377,3728,3423,2090,2491,2623,2053,1559,714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,198,394,561,1230,1520,1995,2107,1602,1349,1696,1557,1097,692,480,144,183,258,312,336,567,652,938,1053,718,682,560,295,264,185,176,240,202,114,78,32,25,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,413,827,1035,1444,1569,1188,1324,2036,2913,3602,4379,3896,3696,3039,4308,5187,5234,5454,5259,3759,3158,3156,2434,2461,3302,3722,3143,3070,2444,1845,2378,2234,2386,1996,1579,1173,787,534,236,0,26,43,96,118,111,109,143,198,435,729,1418,2085,3296,4312,5042,7529,8380,8128,6343,5903,4959,4039,6504,6962,6717,4329,3425,2243,3978,4792,4876,4724,3767,2925,2772,3398,2407,2155,1020,0,12,24,31,48,39,39,44,56 +41,70,132,151,160,164,190,228,156,162,182,259,294,312,349,366,406,354,339,446,788,989,1440,2132,2859,3879,4451,3884,5894,5785,6928,5117,9479,8944,8882,9244,8506,7222,6220,6822,8140,7512,4746,5536,5603,8872,13548,12820,10124,10644,6286,7120,7084,8630,10278,10881,9791,10136,8670,6297,6179,4585,3641,3050,3005,2500,1744,1516,1807,1498,1023,778,355,952,1020,2133,4002,4108,4928,4747,3051,2948,1666,1927,2881,2138,1741,985,183,174,136,119,80,66,32,18,0,1,2,2,2,5,5,7,4,174,374,578,881,1278,1903,2477,3279,2030,2260,1918,1770,1380,1036,640,408,422,607,707,752,766,909,888,1530,1088,792,660,350,308,199,350,398,433,393,437,289,249,216,247,263,270,258,201,108,216,330,397,350,289,227,231,91,101,121,138,0,26,54,59,138,195,182,218,50,368,629,1068,1788,1732,1582,1630,2299,2576,2308,2999,3179,3566,4023,4280,4935,5181,4782,4696,3109,3260,3532,3146,1546,2124,2902,2541,2657,2672,2132,2148,2007,1598,1446,1250,1014,681,613,274,130,158,149,234,336,338,275,302,306,556,1054,1588,2440,2953,2880,4318,5856,5977,5619,5900,5060,4874,3930,5878,7622,5992,4926,4130,2930,3908,4600,5122,4191,3036,2320,2624,3235,2977,3248,2414,537,454,448,368,334,262,216,128,43 +33,66,110,183,227,187,181,268,130,126,147,243,233,366,407,407,283,341,439,455,842,1077,1650,1816,3787,3523,4724,4828,6627,6756,7043,5634,10664,8572,9575,8976,7290,5319,4652,6281,7554,6226,5942,5906,8240,10155,13952,15263,8829,8094,7972,7892,5903,9171,10106,11464,8832,8317,8050,6156,5091,3988,3592,3860,2901,1981,1532,1258,1132,1109,1076,858,297,925,1441,2588,3878,5115,5634,6016,2050,1684,1904,2434,3270,2692,1650,1007,371,299,280,326,190,118,76,46,0,2,4,5,4,7,8,11,6,294,537,725,1450,1728,1751,2593,3560,2610,2506,1884,1949,1463,1162,824,566,726,950,1114,927,1064,1070,1045,1648,1562,1275,632,310,316,286,344,485,579,764,792,639,496,505,626,602,561,456,409,254,424,556,708,719,622,518,385,192,208,262,327,0,58,110,140,285,364,360,409,116,364,564,910,2015,1843,1538,1355,1876,1908,2144,3081,2456,3870,4770,4738,3385,3412,4216,4850,3759,3730,3518,3548,1284,1311,1564,2237,3517,3165,2741,2152,1768,1535,1030,951,821,742,534,354,304,333,289,419,698,495,500,366,357,655,1196,1452,2215,2595,2638,4427,3651,3673,4441,5546,3881,5098,4840,6112,7255,5345,4954,4006,3974,4142,4283,4018,2774,2230,2200,3251,2909,4092,4108,3240,1067,872,736,824,569,515,422,261,36 +36,61,99,172,251,224,208,318,124,159,212,261,272,332,354,412,176,495,722,628,954,1132,1229,1844,4269,4028,5194,5382,7081,5824,5730,5373,9529,9947,8936,8470,7134,5555,5378,4561,6648,6787,5624,7102,7951,8523,11987,13608,9303,7582,5878,7194,6839,10309,9502,9698,9737,9020,6341,5617,4089,3664,4053,3892,2398,1708,1482,1010,876,1044,997,858,277,808,1357,2278,3520,4738,5474,7014,2045,2036,1884,2844,2775,2042,1488,928,549,432,461,412,327,199,106,58,0,4,6,7,7,11,10,17,10,478,1008,1254,2218,1706,1678,2930,2641,2772,3122,2266,1817,1602,1287,968,985,1047,1458,1534,1205,1382,1146,1184,1650,1370,1197,661,268,372,365,446,682,793,861,962,1003,826,576,883,928,764,444,466,512,730,853,1073,1286,989,605,548,328,291,443,500,0,81,172,245,326,508,714,712,208,598,956,1110,1623,1700,2373,2399,1453,1866,1430,2154,3237,3480,4554,4977,4278,3952,3941,3594,2928,3839,3498,4120,1578,1666,1312,1690,2687,3002,2430,2328,1010,1110,853,1124,1372,901,504,383,436,507,594,658,873,636,577,461,438,936,1559,2006,2557,2563,2079,3056,2541,2627,3879,4406,3763,4554,3412,4730,4908,4753,5214,5174,4391,5022,4454,4256,2160,2534,2143,3686,3924,5439,5707,5660,1449,1274,789,1078,1222,1016,728,396,25 +31,65,120,166,200,218,320,336,170,217,292,299,357,517,514,525,100,214,410,791,1072,1309,1279,2138,3386,4128,3610,4500,5626,5241,3576,3564,9429,7379,5484,5116,6090,6102,6224,4794,5022,8233,9129,10492,8628,10028,13826,14730,8683,8122,5196,6046,7248,9273,9994,11641,9015,6314,3811,3191,2767,3288,4158,4456,2234,2538,2003,1587,744,761,774,759,376,1088,1874,2233,2637,4046,4527,6164,2458,2391,1854,1696,2283,1624,1613,1395,658,573,624,487,428,374,228,99,0,4,6,7,7,10,13,23,13,818,1706,2126,2513,2722,3187,3955,3033,2419,1594,1635,1658,1398,1461,988,1122,1210,1539,1806,1922,1247,949,893,1855,1540,1282,831,306,320,420,670,715,884,985,842,1050,1221,1239,1385,961,766,614,692,731,702,966,1315,1537,1432,1093,614,433,650,690,744,0,69,151,262,435,710,965,1222,308,496,678,1128,1772,2294,2768,3467,1392,2128,2274,2442,3056,4089,6722,7916,3851,3976,4006,2799,2856,3260,4140,4106,1379,1976,2458,2821,2934,2628,3156,2762,512,806,1258,1223,1549,1139,1022,653,661,746,989,1065,929,1036,826,595,524,941,1403,1882,3098,2822,2406,1707,2387,2176,2810,3121,4372,5180,5238,3752,5000,4376,3699,4442,4357,4334,2913,3319,2029,2793,3084,4817,6005,4315,4342,6805,2035,1844,1519,1433,1670,1347,823,478,12 +52,84,94,124,165,256,241,320,188,256,229,234,279,354,386,343,78,404,637,1060,1530,1766,1286,2191,2850,3546,3680,4388,6196,4938,5058,3482,10454,7318,5137,3890,5945,6336,5014,4191,5255,6476,6725,8554,9045,8378,9202,12976,5074,5696,5131,5144,5797,7589,9541,9943,7806,5833,4037,3304,2491,3509,4158,4782,3000,3338,2799,2224,2314,1646,988,1008,482,1496,2625,2889,2620,3394,5073,5460,3190,3010,2522,2267,2139,2021,1524,1192,677,610,756,584,475,390,226,116,0,5,7,10,8,14,22,27,21,648,1747,2301,2635,2846,4031,3768,3686,2692,2082,1721,1804,1351,1611,1098,1423,1564,1578,1866,2757,2232,1546,1478,2424,1880,1770,1084,482,725,1008,1355,1444,1378,1022,1070,1203,1410,1798,1812,2327,1867,1397,999,884,1203,1731,1972,1992,2212,2401,1596,952,1136,1221,926,0,74,124,234,442,728,1030,1070,854,898,920,1207,1266,2051,2274,2533,1570,1617,1784,2354,2396,4320,5250,5439,4116,3415,4316,3553,2556,3083,3487,3592,1326,2332,2314,2666,2694,2267,2090,2278,766,1184,1538,1780,1698,1442,1383,966,1016,1058,1279,1066,1122,1090,752,578,495,1102,1517,2322,2278,2004,2057,1923,2260,2690,3010,4668,4081,4358,4327,3914,4891,4744,3735,4706,4262,4930,4416,4426,2833,3548,3809,4340,4840,5014,5148,7168,3848,3768,2595,2524,2055,1398,1050,473,12 +83,95,86,75,171,254,268,236,276,271,246,237,250,264,210,194,46,452,957,1081,1825,1518,1878,1789,2717,2852,4240,3786,4750,4955,5158,4376,10835,6927,5854,4958,6478,6282,5166,4925,6066,5636,6989,5506,6501,6788,9158,13448,3983,3584,4232,4250,4810,5843,6297,7684,8722,5364,4102,3099,2260,3880,5346,6268,4256,3950,3090,2301,3111,2578,1670,1128,505,2037,2928,3428,2578,2679,4055,4098,3125,2962,2409,2696,2405,2067,1266,1062,629,836,812,656,683,466,237,134,0,5,7,8,8,18,22,28,29,556,1226,2225,2214,3268,3880,3453,3531,2699,2076,1928,1407,1466,1472,1017,1427,1599,1724,2543,3110,2264,2150,1468,2395,1695,1778,1060,537,1351,1854,2096,1840,1529,1232,1175,1352,1418,1867,2262,4348,3184,1753,1459,1010,1741,2152,2312,3300,2738,2979,2662,1393,1138,1448,1441,0,70,150,208,399,686,995,1090,1448,962,946,788,1225,1900,2338,2162,1534,1664,1700,2004,2179,2436,3464,4239,4686,4376,4110,4102,1644,2795,3428,3410,1404,1680,2302,2637,1600,1536,1861,2720,1225,1338,1736,2382,1754,1726,1689,1133,1380,1077,1158,878,1014,825,764,706,567,1540,2030,3265,2316,2215,2052,2216,2088,2018,2766,3107,3600,3439,3793,3332,4352,4337,4510,5014,5160,5988,4957,3734,2840,3750,4094,5148,4271,4808,5708,9182,6564,4691,4368,4416,1777,1676,1447,684,8 +132,128,96,80,100,154,242,200,222,218,162,182,189,186,142,124,20,486,820,1247,2190,2106,2357,2294,2575,3356,3566,4736,4451,4580,5516,5121,8905,6719,5854,4044,5408,4625,5962,4546,5389,5466,6665,4668,4380,5374,8267,9236,1710,1952,2474,3070,4274,4269,5009,6744,5170,4208,4277,3388,2006,3502,4448,6597,6392,5783,4880,3214,3088,2922,1985,1258,539,1916,2564,2938,3285,3578,2788,3712,2513,2304,2204,1764,1823,1564,1080,974,703,669,586,666,633,440,322,164,0,5,7,10,12,20,25,30,34,532,832,1604,1676,2726,3937,3530,2746,2349,2620,2006,1283,1196,1223,1006,1438,1586,1620,2706,2527,2547,2359,2055,1810,1732,2004,1341,718,1436,2490,2148,2138,2294,2102,1581,1186,1460,1801,2285,4268,3311,2445,1794,1091,2149,2154,2692,3287,3242,3387,3428,2538,2192,1707,1524,0,102,221,285,484,598,921,1147,1368,1206,1013,916,1138,2008,1886,2784,1279,1794,1689,2437,2920,3466,4364,3636,3737,3981,2927,3116,1667,2694,2890,3483,950,1326,1632,2148,1394,1400,1388,1726,1315,2166,2238,2352,2448,2112,1831,1281,1572,1438,1532,1356,1236,1008,755,778,554,1353,1975,3350,2828,2952,2606,3534,1406,2098,3238,3246,2906,3598,3395,3488,4525,4723,3294,4682,4647,4815,5474,5135,4703,4870,5150,3736,4136,5366,5806,8656,6950,7070,6052,4623,3121,2540,1912,1102,5 +172,178,198,178,196,158,185,222,229,239,209,173,93,71,54,26,0,426,841,1386,1536,2154,2288,2380,2536,2932,2974,3231,4097,3932,3269,4141,7287,5723,5666,3237,1402,2021,2406,3193,4852,4887,4580,5015,7267,7539,8661,6374,0,176,356,564,720,1286,2301,2886,3558,4194,3876,4881,4996,6557,6726,6386,9020,9632,10300,8260,7326,5288,3874,2546,422,1048,1357,2081,2195,3632,4262,4221,2267,1453,1011,908,503,870,976,850,1024,1059,828,746,688,644,398,231,0,5,8,12,11,22,29,34,31,738,1473,1745,2414,3842,4366,3968,2483,2129,1506,923,466,822,978,1253,1134,824,740,887,1067,1556,2458,2421,1720,1752,2415,2347,3403,2813,2899,2603,3414,2751,2677,3596,4769,3968,3454,3363,5292,5556,4165,5327,6326,6191,4907,4756,3409,3864,4552,4264,3702,2868,2281,1956,0,96,217,368,404,964,1435,1637,1778,1845,1304,1245,1129,2066,2634,2920,999,1062,962,1458,1748,1893,1870,3245,3603,4076,5502,5015,4786,4516,3909,3708,812,622,662,639,436,1198,1565,1545,1886,1441,1185,1468,1511,1378,1106,1176,1426,1177,1087,1415,1644,1409,1189,937,519,832,1471,2260,3964,4371,5043,4298,942,1633,2571,3145,2800,2868,2856,3650,3841,4090,3104,2920,3340,3773,5128,5395,5782,7408,6762,5564,6739,6663,8074,9540,9852,7768,6503,4701,3705,2784,1755,1014,0 +148,173,206,202,216,180,224,236,222,197,206,155,128,92,62,27,2,294,646,1200,1237,1788,1764,1872,1877,2354,2661,2776,3298,3116,2572,3191,7137,5147,3767,3145,1535,1840,2193,3382,3651,4270,4074,4763,5149,6369,8185,5060,0,245,352,765,748,1702,2650,3393,3654,3811,2937,3128,4237,5467,6078,7542,10336,10171,7855,7321,5520,4604,5240,3012,1948,2065,1922,2816,4134,4043,4573,4595,1522,1180,985,888,900,964,943,951,1028,869,857,732,576,504,346,172,0,6,12,16,22,26,32,35,34,637,974,1410,1805,2768,3571,4654,3426,2320,1418,1096,832,924,943,1169,2358,2060,1402,1657,1344,1748,2180,2690,1470,1569,2128,2398,2673,2462,2613,3180,4051,3116,3006,4136,3812,3595,3711,3196,5464,6236,5207,4087,5811,4956,4395,3302,2538,3366,4668,4183,3084,2554,2044,1610,0,96,199,310,445,842,1031,1570,1650,1719,1066,1002,1042,1373,2234,2610,1361,1660,1345,1551,1831,2112,2640,3680,3210,3880,3956,3502,3356,3922,4733,4736,666,662,522,621,353,972,1555,1286,1932,1678,1364,1606,1229,1278,1377,1214,1766,1711,1872,1441,1550,1158,970,808,521,792,1231,2292,3448,4311,3789,5092,782,1416,1912,2242,2154,2570,3783,3756,3204,3801,3481,2588,3913,4498,5592,6875,4886,5719,8496,8200,6928,7901,10068,15414,15263,13083,11664,7708,4797,4888,3201,2330,1540 +144,174,172,202,203,236,200,255,207,177,145,149,128,77,60,32,3,224,463,876,1511,1414,1852,2169,1606,2272,2559,2383,2248,2345,2870,2428,5915,5223,3536,2646,1496,1641,1872,2415,2776,3549,3886,4758,3805,3963,5027,3933,0,278,500,646,677,1664,2504,3339,2698,2164,2546,3003,4596,6412,6328,6031,9536,6829,7132,4744,6433,5123,4996,4204,4432,3644,2327,2859,5248,4493,4730,6642,1057,1154,898,699,1071,1063,871,896,881,710,640,415,591,422,246,138,0,7,13,23,29,28,32,34,30,459,881,1082,1459,2156,2326,3815,3252,2097,1800,1726,1000,1087,1351,1446,2843,2670,2134,2068,1974,2665,2608,1936,1160,1498,1775,2515,1830,1905,2852,3580,4548,4238,3167,3868,3381,3931,3328,2636,7645,6171,5003,4374,5546,3616,2580,1847,2661,3317,3972,4036,3608,2450,2278,1606,0,122,210,230,345,784,1116,1535,1025,1172,1240,1265,666,1185,1562,1754,1734,1764,1730,1790,2401,3060,3336,3931,2287,2862,2748,2836,3520,3954,4239,3880,742,784,614,558,313,694,1162,1104,1750,1798,1405,1802,1416,1789,1636,1521,2684,2380,2076,1578,1032,1098,1112,882,503,834,1407,2140,3151,3682,4066,4663,568,923,1324,1093,2576,3015,3673,4361,3343,4005,3744,3162,4793,4957,5518,6200,4843,5460,7734,7590,8456,13855,16102,20632,20141,18254,15122,9441,6753,6906,4893,3816,2924 +202,232,142,150,178,145,148,259,171,162,151,137,142,82,69,38,5,214,472,682,1430,1726,1885,1604,1840,1966,2121,2156,1762,1984,2338,1939,5574,5207,2845,2932,2289,2492,1845,2860,2720,2958,3012,3138,2528,2782,3196,2897,0,340,667,772,801,1362,2079,2194,2469,1946,1956,2970,4771,5731,6912,8068,8016,7246,8004,5656,6266,5684,4411,4908,5902,4262,3570,3477,5476,4434,4306,6268,1260,1284,1026,970,973,1063,604,628,904,595,481,350,314,275,208,92,0,12,24,27,44,34,35,38,29,379,980,1001,1496,1920,2085,2783,3750,2628,1992,1804,1534,1582,1432,1476,3532,2554,1776,1940,2557,2312,2208,2070,669,960,1208,1718,1481,2341,2995,3986,7077,5625,4156,4972,3955,3588,3298,3688,7592,7152,4195,3614,4891,4194,2613,2384,2913,3010,2806,2697,3034,2528,1814,1316,0,114,217,270,444,704,1054,1166,962,998,852,956,743,908,945,1207,2151,2272,2435,2434,2589,2860,3506,3536,1254,2226,2594,2610,2895,3278,4594,4326,502,510,588,478,401,745,856,988,1753,1406,1374,1400,1776,1564,1327,1466,2287,2592,2615,1739,1289,1293,1343,800,411,894,1194,1690,2434,3114,3260,4266,372,620,1195,1224,1730,2521,3231,3880,2326,3290,4488,4085,5227,6030,6398,7754,4756,6365,7248,7210,7564,15862,23973,25307,23159,17669,15273,10115,6410,6096,5297,5156,4043 +260,268,190,174,127,201,215,246,161,128,122,116,118,72,48,22,4,149,329,738,954,1388,1846,1821,2090,2204,1749,1646,1372,936,773,738,5415,5776,5160,4042,2797,2466,2717,2573,1781,1884,1600,2088,2150,1846,1273,914,0,244,495,672,915,1070,889,1205,1470,2578,3436,4205,4411,5973,9081,10774,6859,6360,4905,6255,6104,6430,5552,4638,6307,6047,5011,4927,5678,7986,8698,7228,1148,990,952,957,1060,1093,1048,836,739,568,384,255,168,155,114,50,0,10,15,28,45,44,54,65,17,384,800,914,1244,1764,2237,2394,4023,3697,2709,2634,1815,1506,1580,1526,3371,2560,2655,2524,2624,2810,2171,2190,328,539,894,909,1158,1527,1789,2840,7925,8184,9050,6790,6306,5850,7735,5566,8410,8722,7751,6416,2985,3139,2377,1977,2727,2265,1801,1936,1898,1931,2084,1788,0,90,180,306,394,588,669,857,872,1008,909,986,772,679,830,821,1968,2059,2919,2529,2810,3306,3194,2818,547,937,1775,2330,3228,3306,2735,2631,279,433,454,489,414,405,555,1034,1603,1410,1860,1555,1548,1549,1574,1269,2528,2638,2195,1979,1636,1132,1148,794,505,1057,1277,1708,2473,3357,3216,3626,198,467,654,1029,1334,2448,2952,2904,1414,2220,3876,3930,4598,6139,6500,8761,3403,3898,4452,5189,5570,10044,16185,19920,24950,21127,21348,13906,8331,8732,8943,7224,4934 +264,201,173,146,141,179,158,218,188,112,114,98,118,80,58,30,6,114,306,588,578,1132,1354,1314,1447,1384,1237,1024,1330,846,667,585,3832,4541,3480,2689,2032,1936,1980,1897,1090,1384,1230,1684,1492,1160,1077,714,0,175,393,506,693,698,602,1176,1046,1605,2420,3232,2933,5196,7614,10361,7532,6540,7056,7329,7794,7938,6683,6187,6462,5635,5974,5974,5916,6543,6230,7360,2033,2896,2169,2422,1918,1838,1410,942,502,412,338,174,176,135,111,52,0,10,22,34,49,50,65,62,32,332,542,852,1274,1570,2255,2230,2894,2904,2112,1934,1349,1538,1444,1719,3143,2866,3087,3166,2448,2310,2708,2463,398,699,849,1212,974,1658,1985,3062,7653,8897,8478,7915,5233,5132,5479,5448,8682,7408,5781,4852,2466,2340,2051,1543,2145,1982,1245,1642,1179,1580,1680,1596,0,76,122,194,295,454,488,645,792,718,724,834,1000,1064,978,758,1630,1722,2310,2543,3014,2889,2289,2444,572,1032,1292,1930,2634,2858,2541,2700,246,338,304,334,318,395,385,732,1219,1390,1299,1363,1421,1468,1552,1520,2325,2084,1848,1466,1587,1098,874,569,436,683,745,1206,1501,2201,2251,2888,116,326,538,754,1012,1508,1855,2256,948,1806,3169,3278,4324,5222,6220,9012,4712,6422,10277,11928,8814,12812,20807,31296,25722,28928,18144,18143,12857,11855,13726,12316,12089 +194,129,108,154,161,135,171,220,159,113,99,98,126,110,58,33,6,107,181,279,331,589,718,890,1108,1163,860,797,902,861,565,447,2021,2008,2114,2159,1379,1031,1053,938,816,1059,1066,1218,915,931,758,566,0,101,238,391,293,520,608,754,691,926,1554,2406,1941,4000,6374,8886,5860,6333,6992,7000,8546,10140,9697,5861,4959,6211,6903,7826,6287,5550,5138,5089,3783,3474,4076,3316,2737,2070,2178,1358,284,286,230,163,126,86,74,38,0,10,21,26,48,64,58,61,53,255,394,703,1040,1405,1552,1349,2382,2473,2126,1319,794,1034,1641,1857,2716,2270,2818,2744,2202,1968,2433,2027,648,707,1004,1640,1261,1956,2882,3018,6733,5853,7214,8106,3947,4522,4003,4552,8631,6025,5136,3306,2589,1726,1232,988,1806,1646,1208,1687,969,1456,1555,1254,0,36,84,122,248,374,432,539,452,512,527,547,945,940,1076,720,1867,1707,1446,1712,2289,2356,2394,2294,810,944,1091,1772,2488,2599,2274,2427,144,152,220,229,236,221,276,379,1144,1433,1298,1414,1310,1358,1616,1500,2163,1671,1329,1020,1296,1103,806,414,236,406,450,706,1065,1212,1532,2048,61,198,422,787,636,764,1220,1178,532,1464,1952,2884,3063,5397,6625,10116,5887,11172,18890,18074,12026,18582,30224,40808,36294,26032,18902,17653,19977,15624,14598,17871,16324 +184,126,120,161,193,156,178,181,169,118,121,91,113,83,52,33,6,43,108,145,191,288,360,492,597,526,480,364,437,387,290,232,876,969,1058,1009,726,552,631,504,354,474,582,620,528,526,333,251,0,53,105,186,141,223,305,432,379,571,1072,1555,1420,3426,5525,8938,4423,6876,7086,8149,8951,8958,11993,9060,7849,7558,6750,5642,4462,3961,4579,4967,4628,3956,3948,3828,2860,2530,2024,1206,232,214,171,147,108,91,55,30,0,12,29,36,50,59,63,64,67,272,402,635,980,1535,1844,1899,2524,2091,1794,1134,755,1154,1421,2190,2560,2448,2424,2506,2240,2518,2863,2018,1026,878,1174,1390,1283,2238,3317,3771,5190,5480,7418,5700,5128,5972,5238,4735,7714,6208,4458,3329,1706,1207,970,554,724,920,927,1126,895,1134,1651,1424,0,21,48,64,109,174,201,259,229,352,489,626,974,1016,1355,1234,1669,1421,1444,1562,1774,1606,1244,1641,994,1064,1122,1320,1891,1827,1832,1892,62,102,130,126,119,126,176,236,617,875,796,1210,1393,1378,1475,1692,1713,1418,1466,1168,880,673,549,304,194,223,299,354,457,568,910,967,26,104,213,345,360,444,700,704,237,828,1381,2074,2019,3332,4245,6924,6136,14894,26236,27980,23007,33378,33312,30328,35774,28618,18830,17451,24184,19180,17111,16296,19720 +126,109,112,96,113,127,120,102,61,63,71,64,54,44,23,13,4,6,6,6,4,5,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2535,4902,5449,7849,7269,9893,9724,4772,4716,3925,3182,1591,1305,642,365,0,117,211,387,617,1556,2386,3232,4454,3078,2790,2873,2737,2927,2194,1440,996,592,363,299,146,105,56,34,0,16,34,45,53,79,135,154,190,358,576,718,970,1224,1913,1906,2248,1506,1178,1130,879,1198,1391,1393,1298,1339,1509,1003,944,1056,1573,1451,1158,1716,2686,3005,3821,3944,4383,4356,6436,9074,8901,8959,8948,7981,6839,6395,4808,4001,3645,2611,767,610,530,277,82,140,159,198,175,712,1086,1131,0,20,44,80,93,121,169,154,151,379,537,690,913,957,1235,1302,1482,2010,2052,1761,2190,3252,3931,3638,3635,3321,2907,1814,1250,1418,1353,1444,0,0,0,0,0,0,0,0,0,134,320,529,769,1343,1663,1921,1949,1506,1547,1893,1735,1498,1035,622,0,0,0,0,0,0,0,0,0,1332,2790,3521,5052,5829,8526,8165,10216,10163,8593,7708,5606,6039,4782,5827,8467,9957,10786,9430,9853,15394,15863,21493,21924,18056,15136,16732,25184,22627,23025,17582,18619 +126,114,119,102,93,91,81,84,51,50,66,50,50,42,23,16,6,40,58,90,74,130,217,230,1089,1275,1176,1274,652,1144,1514,1892,410,617,574,638,650,524,339,200,362,506,734,692,724,710,988,870,157,202,187,237,152,112,104,64,8,1961,4109,4150,5852,6768,8151,7902,5598,4866,3593,2570,1284,983,776,470,304,512,693,886,782,1866,2783,2928,5560,3423,2751,3114,2968,2923,2220,1766,793,467,288,232,240,192,116,57,0,17,36,46,63,83,119,136,163,502,780,807,1320,1463,2451,2196,1882,1781,1716,1280,901,1141,1071,1017,1354,1166,1100,944,1072,1372,1366,1504,1003,1400,2500,2768,3756,4590,4516,6254,5999,8376,6044,6074,9270,9007,7930,5760,3640,3434,3490,3353,2204,1739,1420,912,423,450,473,474,476,1286,1642,1740,249,251,340,273,176,181,191,222,204,427,715,744,893,1200,1631,1976,1541,1683,2133,1982,1872,2305,2544,2746,3472,3307,2211,1850,1359,1318,1659,1566,51,71,87,96,122,155,217,216,124,240,309,610,763,1139,1273,1728,1764,1790,1679,1644,1237,1298,1024,777,165,158,177,191,92,96,91,44,90,1292,2312,3256,3650,4872,6232,9203,8698,9713,8430,7670,6242,5276,4877,5091,8891,9306,9501,9528,8710,12082,17202,16902,17260,19840,14977,14050,18965,18548,16558,14314,14214 +149,106,96,131,99,77,68,97,48,45,45,38,32,30,24,19,6,60,117,196,141,274,359,372,2386,2240,2224,1802,1620,3056,3544,4359,845,874,1274,1306,1363,867,608,378,714,1098,1286,1362,1536,1355,1776,2048,353,435,449,430,281,210,179,157,16,1360,2730,3150,4675,6363,8858,7107,4623,4250,3463,2592,1385,1253,902,627,564,772,1096,1792,962,2001,2856,3070,6949,6460,3868,2886,3123,2850,1960,1610,573,356,222,190,254,181,168,91,0,20,36,63,98,107,94,132,132,521,839,1343,1660,2032,2320,2344,1889,2173,1882,1554,1149,1117,980,800,997,816,728,727,972,1440,1544,1240,750,1377,1988,3016,4120,5140,5837,7471,7736,5408,5374,4309,9858,8968,8002,8144,3471,3632,3150,2706,3208,3026,2195,1370,880,789,848,726,622,1702,2228,2510,448,570,551,413,206,266,280,222,293,492,692,835,895,1071,1514,1866,1265,1654,1695,1456,1295,1757,2173,1815,2181,2287,1861,1600,1532,1614,1438,1303,109,134,188,178,241,298,373,363,243,358,447,908,1118,1219,1084,1280,1665,1968,1825,1946,937,1396,1419,918,298,334,338,328,224,206,162,103,199,1185,1969,2614,2547,4949,6640,7356,9900,8280,8690,6545,5800,5210,3470,2774,6764,7078,8842,11095,11822,12885,18176,17712,20951,22455,18202,12137,12574,15892,14380,10430,11241 +137,122,102,118,106,92,66,82,50,55,60,37,32,32,24,18,7,64,117,234,290,386,549,613,4052,3418,3165,2438,2535,3140,3470,5700,1100,1404,2090,1988,1836,1662,926,596,816,1755,2348,2156,2001,3108,3969,3618,626,613,687,592,388,350,302,184,28,1206,2311,3796,4358,5977,9148,8088,4572,4002,2557,2362,1418,1101,1076,738,592,969,1055,1719,1898,2730,2764,3667,7688,4891,4881,2898,2474,2305,2169,1502,430,341,195,190,282,236,192,98,0,28,44,73,131,133,136,157,181,534,858,1460,1868,1866,2533,2614,1576,1930,1677,1374,1075,1044,1199,1196,898,825,869,854,1081,1295,1483,1466,618,1215,2110,2545,3451,4632,4738,6583,5623,5966,6132,5126,8770,6953,6426,6054,2252,2910,4502,3726,5030,3563,2626,2375,1322,1052,1146,1194,1130,2103,2105,3255,865,912,677,588,355,352,386,324,398,613,707,843,1016,1224,1471,2137,806,944,1252,978,1129,1243,1311,1240,1865,1325,1245,1122,1162,1114,1218,1090,140,277,253,253,339,458,488,672,302,354,461,776,1045,1017,1059,1066,2471,1776,1704,1537,1196,1453,1308,1140,568,524,404,326,297,263,282,158,300,965,1505,2090,2880,3868,4595,7361,9202,9294,7355,6620,5037,4436,2582,2603,4365,5109,5487,8296,11162,13536,12892,15124,15304,13139,12276,11746,8754,11565,11142,11852,11322 +89,63,64,93,105,115,126,97,72,69,56,40,34,34,22,15,5,115,188,265,394,472,547,716,4579,5183,5332,4450,3872,4584,6147,7278,1736,1893,1955,2612,2462,2001,2065,1201,1166,2290,2754,2699,3333,3158,3666,3498,1004,1044,775,589,658,483,454,310,49,906,1557,3134,5046,5618,5955,6864,4232,3213,3481,3241,1972,1933,1476,1222,851,1336,1988,1856,2502,3159,3190,3693,6836,6688,5780,4191,2598,2712,2242,1547,387,446,468,361,380,320,240,126,0,34,55,96,135,176,169,170,177,677,1196,1288,1623,2057,2459,1922,1727,1834,1817,1478,1078,932,1026,1392,927,1194,1253,1054,1190,1451,1488,1240,431,1444,2053,2588,3052,3540,4663,5972,5857,7456,7198,7528,5723,5150,5267,7336,1935,3103,3457,3828,5427,4620,2514,2628,1324,1402,1691,1811,1858,2139,2473,2305,1041,845,757,561,576,552,348,353,371,498,789,1009,1184,1271,1269,1706,434,346,412,610,647,704,807,804,970,945,858,938,942,716,655,737,235,279,434,389,397,405,515,838,503,638,567,785,1040,1178,1165,894,3066,2135,1882,1884,1342,908,863,1040,881,776,415,499,474,408,276,154,356,616,1010,1716,2330,4297,5397,7539,10415,7304,5739,4500,3122,2055,1986,1599,3387,5248,6168,7271,7519,5825,7003,8371,10092,8474,5224,6792,7262,9136,10153,9311,12996 +120,108,102,128,100,114,101,116,63,62,63,44,43,28,22,16,6,358,706,910,784,1327,1748,2201,6661,6400,7620,4800,4529,5704,6588,9919,4180,3632,2999,2766,3068,2034,2080,1674,1312,2140,2280,4447,4479,4336,5032,7739,3229,2168,1675,1858,1610,1379,1210,702,80,636,1134,2090,3440,4009,3394,3935,3594,2824,3330,2698,2043,2164,1764,1680,1348,2068,1952,1914,3175,3453,3136,4475,6976,5820,5466,3096,2182,1862,1642,1326,624,669,643,370,550,462,294,124,0,42,88,140,170,210,214,266,259,763,1176,1360,1242,1599,2232,1856,957,1288,1093,1212,723,766,896,1101,757,1092,1003,912,999,1042,1217,986,754,1612,1640,2518,3894,4688,5274,7768,6126,6792,6769,6626,6548,5660,4780,8511,4069,4786,3172,4812,8077,8002,5240,3514,1647,2046,1787,1746,1596,2175,2125,1940,1027,832,937,728,484,440,474,382,470,670,917,1086,1388,1304,1459,2074,430,339,474,556,539,504,632,542,738,672,904,758,1133,990,561,766,222,266,440,428,420,462,633,778,630,757,843,1104,766,1007,1031,891,2834,2498,1654,1411,1468,1170,968,1182,1134,1006,682,620,606,552,411,212,543,784,972,1522,2008,4031,4405,6476,8992,7051,5327,3737,2803,1996,1616,1284,2280,3718,4880,5331,6189,5136,5063,7646,6936,5129,5296,5188,5772,5845,7690,6890,9891 +151,140,150,153,92,103,106,118,59,55,53,38,38,28,22,13,5,507,1128,1302,1542,1911,2916,3356,8389,7295,8304,4645,4797,5848,7377,10382,5665,4901,3717,3313,2923,1906,1696,1769,1218,1640,2405,4241,5434,5506,7460,9686,5343,3404,3057,3298,3332,2420,2265,1064,125,511,1046,1937,1815,1934,1922,1654,1925,2183,2602,1996,1597,1800,2660,2832,2483,2133,2715,2532,3680,3732,3546,3982,6790,5715,3939,2302,2202,2080,1352,1288,917,656,664,515,821,516,324,160,0,58,121,160,185,256,314,433,314,585,1134,1125,876,1331,1356,1248,644,702,736,830,640,578,530,803,844,900,1020,988,1022,1098,814,784,1230,1573,1832,2605,3574,4728,4556,9495,7466,7864,7831,6942,6798,5559,4969,7074,6507,5073,3862,5883,9942,7943,6890,4882,2187,2376,2018,1934,1738,1659,1520,1678,890,926,970,939,398,392,562,416,472,840,962,1163,1395,1391,1503,1966,286,392,388,386,271,302,290,252,331,449,727,726,1145,854,738,797,211,258,392,363,487,648,633,832,671,863,880,1217,843,621,664,463,2291,1842,1832,1801,1573,1777,1520,1048,1256,1007,942,659,943,798,412,195,737,843,1074,1442,2104,3193,3694,5376,8740,6910,3990,2344,1900,1248,764,795,2188,3606,4142,4471,4130,4614,4009,5240,3612,3973,3620,4933,2713,3594,3888,3306,3951 +155,146,155,146,83,88,101,104,78,72,54,36,41,27,20,14,6,598,1552,2654,3290,5094,5386,5354,8020,7366,9991,5714,4165,6857,8475,11971,5886,5682,5841,4076,3217,2486,1653,1698,2116,2740,2608,5224,6725,9528,10284,17216,5626,5647,4692,5113,4032,3354,2874,1432,189,428,621,946,768,1065,802,765,1220,1681,2024,1532,1466,2187,2696,2881,3498,3014,3291,2702,3878,3852,3903,4943,5932,4253,3435,2135,1912,1840,1476,1134,761,710,800,692,904,522,299,126,0,70,165,186,265,330,347,445,364,556,870,961,1024,1328,1159,1358,270,385,392,414,394,412,382,538,825,858,888,780,790,754,431,395,2012,1765,2003,2752,3512,4502,5196,9982,6928,6354,6284,6142,6924,5336,6147,7897,6714,7315,5590,7224,10742,8506,6187,3968,2494,2200,1826,1940,1469,1382,1403,1813,1234,1024,778,632,437,558,700,614,595,759,896,904,1254,1138,1284,1704,404,413,444,352,182,184,185,150,195,400,500,702,973,694,832,975,266,286,443,420,467,601,986,1094,1098,976,612,868,969,622,482,376,1982,1829,2288,2006,2029,2372,2350,1704,1684,1528,1426,1202,1126,774,568,336,898,1037,1253,1290,1532,2450,2172,3356,5129,3956,3140,1782,1101,776,514,398,975,1462,1791,1972,1890,2302,1891,2168,1951,2264,1954,1848,1621,1845,1953,1434,1593 +187,233,241,204,163,151,128,115,104,85,38,28,17,16,13,11,5,1747,3828,5816,7349,6215,5829,6994,8706,9705,8641,12651,18377,13699,10491,14075,7659,7202,5680,3655,2168,1711,1865,2157,2822,6478,9255,13613,14013,12303,15536,21901,6938,5926,3328,2682,2396,2086,1485,955,206,202,238,182,147,126,70,30,272,819,1506,1968,2828,2725,2414,2376,3492,3721,3899,4049,5470,4748,6396,7026,3964,4179,4307,4284,3059,1844,1386,1120,950,765,608,357,119,95,54,24,0,41,78,102,166,168,214,306,523,657,824,870,906,950,793,913,0,49,92,152,207,294,336,598,814,729,544,482,297,260,137,62,2289,2953,4119,3624,3696,4464,5090,7204,8375,6355,6383,5238,6442,8455,10960,8285,8823,9426,7720,6740,4950,3154,2527,3122,2954,2501,1838,1749,1874,2292,2431,2494,1310,1823,1741,1510,1325,1324,1181,846,820,850,674,969,1234,1136,960,1110,393,384,317,186,83,67,59,34,0,208,441,570,722,698,983,900,390,591,812,841,990,1073,1319,1283,1194,1177,894,551,399,273,234,104,1532,1521,1221,891,650,993,1052,1413,1790,1446,1467,1023,560,412,344,161,859,1072,1506,1740,1888,1828,1916,1796,2118,1698,2007,2136,1818,1202,783,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +146,148,194,214,138,140,130,139,126,100,51,46,26,20,19,12,5,1600,2865,4802,4835,4811,6572,5852,6016,7476,8462,11404,16429,14294,10761,13772,11965,9464,7356,5464,4612,4179,4632,2964,2828,6233,9136,11312,18148,23407,21589,34114,6571,8413,8046,8654,7403,6911,5887,4208,1068,1208,1152,1490,1657,1292,1318,731,235,1020,1399,1938,2564,2210,2138,2788,2905,2824,3316,3642,4419,4483,5324,5459,3154,3952,3125,2838,3580,2316,1346,1208,944,686,446,302,153,131,73,46,0,49,120,136,225,262,314,411,438,708,838,868,1011,1071,966,984,406,398,470,572,614,926,1631,1530,1656,1516,1195,960,747,658,434,433,3166,2893,3805,3494,3718,4260,5444,5690,5201,6188,6252,5451,5509,7529,9120,8767,9529,9092,6607,5382,5168,3858,1964,2686,1888,2429,2075,1768,2273,2698,2966,2994,1708,1430,1792,1857,1583,1403,1316,909,1144,1017,874,1044,1342,1162,1036,1206,310,327,341,209,106,92,92,61,51,224,421,454,678,732,773,750,353,694,901,1100,1080,1358,1314,1554,2001,1724,1428,970,878,582,534,304,1496,1740,1471,996,654,768,1202,1363,1697,1424,1442,1110,836,602,501,288,906,1147,1297,1350,1574,1636,1304,1918,1737,1652,2042,1729,1920,1293,494,279,0,199,456,592,640,568,650,570,440,542,662,795,1044,1228,1465,1630,2132 +93,125,119,119,162,130,122,145,122,82,75,54,27,24,18,11,4,1294,2460,3240,4542,4036,5297,5814,5524,6591,8724,11260,13614,16581,16058,15398,16723,13605,8055,6831,5967,5496,6076,5522,3183,7219,11650,14267,17651,22535,37376,42319,9190,11653,15017,13220,9956,11527,9562,7807,1713,1791,2199,2488,3484,3569,2545,1769,266,771,1081,1601,1751,1930,1492,1978,2240,2505,2038,2908,2652,2726,3527,3476,2462,3264,3224,3003,3017,1834,1500,902,1075,756,486,313,210,182,124,72,0,59,132,164,272,317,370,488,360,540,960,1198,1122,1304,1204,1234,690,809,842,1348,1072,1720,2592,3213,3242,3201,2129,2099,1192,1108,888,624,4074,3893,2468,2384,2708,3777,4180,5121,3373,4915,5198,4360,4391,6450,8804,10035,9226,6084,5118,4091,5073,3557,2298,2092,1576,2168,2060,2711,3048,2805,2764,2859,1685,1718,1476,1559,1566,1522,1100,1076,1346,1413,1092,1460,1211,1322,994,1334,266,271,296,264,101,122,105,74,93,210,392,350,443,375,424,444,243,556,1136,1269,1124,1735,1865,1749,2854,2570,2050,1379,1276,848,800,659,1747,1560,1367,1034,689,718,971,1078,2368,1662,1427,1152,930,917,728,377,1120,1247,1102,838,1362,1063,1160,1484,1793,1415,1429,1238,1483,1028,422,195,0,392,814,1104,1095,1408,1350,1279,736,1046,1124,1454,1945,2297,2628,2973,4699 +66,92,113,121,145,126,104,115,137,85,60,53,36,34,23,16,5,1008,2229,2758,3870,4050,3444,3853,3162,4904,6195,10134,14001,12607,17643,18002,14670,13584,8418,9736,9374,8488,6386,6676,5620,8963,14896,16184,19614,22642,32066,45810,13388,15773,16982,19110,17600,18557,17131,11179,2502,2746,3766,4455,6499,5845,4689,3635,255,648,929,1170,1386,1719,1291,1664,2001,1810,1513,2029,2083,2746,3761,3352,2447,2586,2513,1978,2232,1608,1662,1067,766,664,467,382,287,194,177,72,0,86,152,207,315,364,381,454,490,652,842,1006,1308,1199,1398,1525,1161,964,1000,1284,1381,2360,2439,3808,3200,3244,2472,2442,1418,1306,1331,1050,4030,3366,2414,2501,2741,3117,3202,4928,2492,3988,5254,4836,3859,6357,7198,10121,7708,8545,7373,6508,5982,4326,2383,2217,1870,2685,2515,3416,3439,2594,2260,2794,2264,1771,1491,1700,2011,1662,1304,1088,1636,1634,1209,1546,1380,1490,1464,1412,147,150,254,196,148,148,190,157,124,250,311,354,477,418,389,424,161,535,1060,1632,1468,1738,1766,1831,3569,3528,3185,2504,1576,1298,898,656,1229,1356,1326,1101,970,863,828,948,2233,1729,1249,1290,1662,1188,833,480,1072,985,967,694,940,800,628,724,1964,1984,1470,1316,894,658,270,158,0,552,1439,1581,2201,1944,2049,1458,986,1704,2261,2216,2684,3062,3142,4673,6439 +43,51,66,85,96,124,129,104,107,100,87,72,48,43,34,21,4,852,1457,2807,3412,2573,2501,2634,1721,6425,10047,13223,13784,13056,11617,21239,17471,19445,20871,14004,12494,9003,6284,6024,7234,11109,12474,16058,21432,30849,32756,48554,15649,17964,25386,28671,29025,26906,19939,12385,3212,3371,4296,5304,7834,7306,7025,6033,167,256,447,703,855,731,938,1360,1189,1896,2317,2631,2296,4078,4610,4260,1730,2054,2625,2873,2206,1958,1690,1444,665,464,370,409,321,294,184,86,0,49,118,203,320,279,369,505,470,748,955,1220,1195,1608,1679,1734,1312,1859,2260,2562,2161,2708,3903,4388,4377,3966,4100,3479,1922,1743,1727,1349,3572,2875,2677,2154,2084,3690,4213,6060,2822,2429,2851,4781,5160,5284,7499,9323,9208,6230,5317,5520,5327,4047,3424,2572,2254,3164,3336,3278,2940,2537,2258,2661,2500,2656,2945,2298,2356,1935,1855,1650,1434,1226,1249,1728,1748,1642,1511,1240,41,72,94,161,179,193,172,176,142,236,275,360,488,369,243,263,88,401,641,1355,1670,1646,2186,2186,3698,3143,4084,3713,2294,2474,1850,1116,1086,1257,1472,1087,1175,1063,732,647,1923,1977,1635,1625,1927,1516,1173,616,1050,1062,985,862,492,431,280,342,2344,2035,1687,1129,600,335,222,123,0,808,2005,1963,2863,2972,2641,2609,1407,1806,1973,2567,3336,4214,4764,6388,8390 +60,66,61,90,76,102,112,100,85,84,58,56,47,38,33,18,5,580,1193,1961,2424,2205,1624,1953,1268,5366,6268,8476,13278,13395,13806,22746,16453,17798,15995,13481,14240,11354,10460,8778,12771,13382,17470,18092,27214,27132,26790,35166,21758,21050,25070,32839,37866,33838,30032,21968,6362,6562,7514,8012,8264,10642,10158,6525,119,244,343,506,745,698,901,1440,817,1134,1744,1726,2019,2607,3582,2798,1164,1595,1570,1652,1594,1358,1258,853,393,297,341,284,213,198,104,62,0,71,121,226,291,338,425,457,527,674,930,977,1074,1223,1295,1392,1774,1913,2726,2644,3088,3314,4536,4396,4490,4297,4472,3476,2716,2425,1419,1512,3432,2325,2721,2154,1669,2808,3910,5296,4351,3190,3226,3597,4756,5980,5607,7736,8534,6765,4927,5228,5136,4596,4300,3326,2364,2892,2731,3066,2489,2134,2193,2244,1760,2228,2054,2108,2340,2319,1636,1852,1302,1166,1243,1500,1577,1252,1012,939,36,62,82,137,142,172,194,156,208,243,202,340,339,252,235,216,170,434,781,1245,2187,2341,2345,2092,3694,3935,4167,3182,2302,1814,1573,1384,1455,1679,1394,1408,1487,1192,1557,1346,2938,2488,2726,2528,2820,1986,1724,936,780,862,832,699,549,496,435,398,2293,1721,1339,884,433,356,175,115,0,950,2161,2486,3086,3294,2937,3236,3330,4378,5202,5984,7027,5439,5556,6581,8354 +72,75,66,79,70,72,90,84,45,44,52,54,40,38,24,15,3,325,795,1139,1848,1922,1549,1845,742,3092,4412,5715,10920,12887,15582,18943,10738,11819,14460,15045,13960,15275,13042,15439,14439,14000,20501,26242,25698,27998,33648,33805,36034,35617,23894,39879,54431,38474,35865,19332,7642,8546,10044,8174,11705,12590,10300,9556,62,175,326,438,513,654,664,928,604,871,904,889,1157,1920,2324,2361,767,864,1076,1377,1148,1040,686,532,223,240,222,194,108,77,70,38,0,86,144,272,189,309,379,316,541,715,808,1222,785,884,1314,1398,1928,2163,2344,2312,3303,4012,4252,4469,6089,5749,3724,3016,2938,1742,1381,1544,2443,1881,1930,1876,2024,3087,3884,5558,4765,4763,3684,3848,3421,5501,6028,7260,5993,5199,4456,4960,3612,4381,3817,3797,3625,3645,3446,2983,1673,1932,1650,1971,1326,1568,1835,2471,2294,1875,2204,1591,1472,1440,1262,1324,1343,1149,759,783,22,40,72,154,142,152,154,173,237,242,204,326,254,224,250,226,306,461,741,1190,2317,2517,2005,1880,4396,3870,3034,2461,2382,1832,2042,1823,1732,1428,1762,2068,1914,1896,2150,2617,3177,2607,2950,3341,3194,2932,2290,1680,840,888,740,715,499,540,518,382,1798,1869,1320,833,368,231,170,88,0,1200,2146,3197,3058,3292,4406,4552,6579,8243,7632,8868,11471,7807,6016,7640,7385 +82,68,60,72,56,62,72,64,38,46,44,41,36,26,20,12,2,192,400,578,861,926,645,856,357,2026,3638,5497,7006,8018,14228,19450,11287,14782,16138,15640,13577,13504,12964,14385,17274,20602,23814,27126,20476,29628,37949,41728,35020,32875,32029,40682,61726,46436,41962,26824,14561,11890,8380,11862,11868,11331,8044,6861,27,88,180,236,289,290,306,396,320,332,386,412,502,866,1150,1152,461,474,618,684,615,446,280,262,98,128,119,96,57,46,38,23,0,82,166,213,215,280,296,336,498,632,711,974,864,892,1199,1275,1728,2430,2773,2718,3282,3252,3931,4214,4197,4579,4307,3170,2680,1710,1633,1652,2486,2152,1634,2126,2682,3099,3171,4387,4788,4430,4078,3434,2223,3020,3751,4998,5284,4654,5660,5486,3527,3438,4122,3832,3802,3963,3901,2547,1597,1552,1419,1676,1726,1500,1341,1803,2000,2282,2284,1940,1630,1518,1592,1086,978,828,510,462,11,41,96,142,198,191,191,204,189,189,242,230,216,218,261,216,337,508,806,1170,2151,2107,2697,2502,3834,3146,2805,2482,2250,1804,2249,1558,1514,2081,2454,2198,2172,1888,1858,2333,2948,3320,3412,3197,3577,2718,1887,1638,863,758,616,698,565,662,616,446,1178,1203,723,487,356,263,178,84,0,1347,2859,4158,4975,5664,4760,6654,7957,9852,9294,9638,15084,12824,8001,8792,8468 +64,2122,4177,5746,6026,6539,9546,10042,8374,11374,15283,14883,18564,15097,17178,18928,15405,12864,14754,12678,8076,5086,3263,1726,0,2545,5672,9741,11801,15814,17196,19674,15750,11460,5709,4930,2767,2118,1318,739,0,3455,8092,10282,15128,15677,15704,30115,36363,40917,33575,21326,15700,14476,8500,4772,0,574,1343,2504,3022,2804,3933,5977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,137,148,204,239,304,410,522,535,450,415,439,381,368,392,487,450,288,173,85,69,57,24,0,417,802,936,1199,1046,1046,1299,2692,2444,2053,1474,1132,1347,1599,1699,1990,1774,1973,1438,1427,1192,658,379,0,118,280,371,452,516,458,475,540,688,677,583,715,829,923,1241,1629,1159,1060,943,792,845,717,566,326,403,647,774,917,983,1305,1400,1125,1140,1159,1004,811,790,645,433,406,338,171,163,151,169,200,217,406,577,612,464,502,508,459,404,275,293,273,258,181,348,442,618,799,1120,1101,1153,1411,1276,1252,1204,868,1100,1106,1088,1439,1719,1474,1316,822,1330,1913,3203,4694,3560,3180,3872,5517,5380,5022,8037,10889,17820,18835,17311,17114,16494,11589,13362,12851,11574,14544,12831,9098,10344,8921,7380,4179,6946,10286,12024,12155 +64,1810,3392,4875,5031,5951,7883,8948,8529,12400,15981,12696,12954,11986,16481,12903,14035,12805,11621,8706,5318,4770,3577,1976,235,2242,6157,7142,10551,12606,15695,14321,17470,12638,5142,4940,2746,2631,2678,2737,1959,5862,10708,13844,18966,20629,25139,28784,44892,34770,23458,18882,14269,11911,7703,3888,412,1070,1828,2243,3484,3212,3963,4891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,199,323,377,472,711,870,600,638,692,650,440,612,504,604,460,462,455,352,209,261,354,279,346,1135,1929,1972,2086,2252,2198,3040,3186,2752,2491,2112,1687,1688,2042,1931,1700,2232,1626,1909,1308,1008,529,324,0,98,230,277,372,458,489,478,469,528,514,568,852,910,882,980,1404,1110,1002,813,615,742,596,462,294,512,700,941,921,1137,1194,1228,1084,1192,1121,906,643,512,456,406,509,406,254,232,157,150,172,170,327,668,687,748,1054,1484,1667,2380,2686,1792,1184,1079,1094,988,870,1188,2338,3250,3802,5681,6868,7087,5912,6746,4492,5099,3865,4418,4680,4594,4002,3294,1102,1718,2553,4394,4565,4040,3721,4343,4565,4497,4682,7884,10848,14768,12706,15922,23733,19858,19355,13278,10920,11054,8655,9633,8850,9620,9237,9058,5925,10266,12020,11440,11766 +56,800,1864,2582,4223,3982,5176,5060,6654,10766,11606,11158,12811,12120,11794,14475,13148,9842,10708,7970,5104,4404,3090,1803,452,2903,4695,5242,7608,9486,10846,11209,14729,9024,6094,5852,3269,3801,4642,5266,3418,8196,12938,19001,18356,21720,29334,40980,38520,25448,24490,18993,19502,16168,9558,4933,970,1238,1791,3220,2884,3029,4114,6020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,271,507,469,709,1023,1367,677,919,916,1050,646,701,816,1040,654,559,524,575,368,592,648,530,677,1925,2930,2696,3116,3006,3128,4003,3327,2792,3094,2278,1990,2120,2496,2262,1971,1838,2008,1700,1514,1048,611,357,0,64,120,205,318,391,430,418,373,372,528,804,719,1027,994,948,1727,1203,1024,1143,686,581,483,446,170,480,647,759,1112,1183,1001,980,1005,812,929,736,600,418,380,355,472,449,366,335,197,160,124,108,407,764,876,1066,1741,2757,2890,3309,4429,3451,2204,2187,1799,1507,1434,2027,3626,5140,7519,10159,12513,13065,12598,13002,8456,8588,7421,7847,6384,8010,7161,5654,1295,2339,2754,3927,4395,4556,3842,4777,3734,3998,4122,6132,10536,11200,11985,14089,28398,26046,21118,14310,13419,8410,6984,5086,9465,10736,9790,7702,8792,9272,13754,11366,11305 +39,570,1298,1606,3298,2990,2554,3020,6821,8020,7818,9562,10534,9834,7522,9947,14030,11128,11103,9144,6296,6675,5470,2872,584,2540,4047,6114,5990,7692,7625,7535,9152,6553,4119,5376,4628,7266,9283,12134,5639,12829,15246,24704,24541,25153,30253,40327,43382,40833,30003,21678,16554,14686,7338,3806,1315,1316,1666,2510,3274,3608,4016,7682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144,273,583,504,1009,1294,1584,480,696,779,1076,1260,1114,1308,1765,907,724,768,748,672,750,820,842,797,1914,2930,3194,3956,3647,3262,4934,4160,3905,3835,2965,2342,3146,3330,2985,1258,1502,2127,1978,1681,1176,684,384,0,55,78,124,218,304,367,340,403,529,714,822,762,914,812,1030,1770,1514,1350,1122,780,624,498,404,131,337,522,708,831,810,700,866,946,875,826,538,416,424,413,260,451,408,326,246,202,146,147,112,291,807,1046,1649,1818,3288,3731,4710,5767,4133,3658,2878,2180,2164,2455,3602,5999,7269,8816,12374,15680,17380,19617,18526,18002,13128,12205,10190,10366,11988,12038,9407,1035,2256,2746,4340,5202,5324,6262,5820,2853,3702,4783,5751,7104,8743,8544,11996,28947,28290,20009,16376,12215,8628,6251,5067,6547,7374,8761,7276,9165,15010,15250,18838,20150 +36,317,736,874,1398,1793,1794,1278,7597,5332,5206,7421,8712,8451,6700,6606,21187,17039,13466,11055,8532,6642,5468,3618,651,2253,4217,5336,5506,5219,3567,3126,6972,6260,8074,7437,5288,8178,9269,10994,9254,20566,25252,27424,35173,53516,57308,57967,57543,44551,41989,29646,14874,13005,7239,3708,1468,1751,1984,2586,3072,4011,6130,10286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,244,608,786,1431,1667,1707,500,761,798,1032,1488,1682,1529,2146,1104,1454,1350,1389,1088,946,1132,942,1030,2551,3748,3835,4530,4523,5282,5970,4710,3386,2909,2623,2880,3088,2446,2136,1153,1260,1124,1027,1394,977,864,388,0,22,45,82,96,99,136,281,456,581,655,793,707,1000,994,1176,2516,2361,2113,1475,1020,904,546,356,123,246,432,593,690,486,415,400,810,786,670,451,403,402,353,272,400,343,247,243,184,146,112,125,191,807,1162,1587,2456,3058,4128,7288,6120,5471,3973,3391,2736,4836,6150,5241,10262,9266,12004,16483,18367,19797,17951,19353,21921,23364,23178,19523,11770,12054,13096,12759,1174,1918,3381,5414,5882,6226,6843,7508,1737,3222,3953,3951,4538,5719,8580,11456,37820,38257,31328,18337,10954,11412,8583,5815,4784,5136,4791,5993,8940,12999,18832,19322,22809 +26,402,896,1312,1067,1352,1532,1522,4803,4680,3399,5278,8318,7058,5539,5990,19118,18138,17502,12224,12320,7336,5054,3530,1432,2876,4429,4554,4340,4787,3809,4973,5967,6196,6491,8364,10149,10546,10877,16180,9228,14246,18254,26426,37077,44815,38335,41908,51628,42332,36629,25024,14230,12108,10126,5404,1560,1562,1526,2218,2667,4660,5851,11288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,355,828,974,1340,1908,1890,753,1172,1277,1499,1356,1886,1785,2803,948,1342,1648,1528,998,1078,1510,1399,1395,3118,3854,3956,5331,5126,5304,5652,4567,3170,2413,2893,2436,2458,2581,1759,966,1144,1154,1260,1410,954,787,510,0,20,32,72,78,96,119,185,351,438,478,592,536,504,751,711,1710,1698,1920,1494,969,648,397,238,122,223,352,440,728,945,775,822,514,517,477,401,340,355,232,169,390,272,254,223,160,148,105,112,178,626,851,1426,2447,4092,4778,8362,8534,9474,8416,6496,7355,9672,9067,11152,10949,13652,13020,17194,26033,24068,22706,20386,21659,24021,25803,17271,10455,10774,12688,11328,2137,3235,3348,4865,4078,4532,6295,5286,1734,2753,3627,3464,4261,5173,7966,9124,55060,43104,33557,32636,19850,20523,15472,11424,7608,7466,10484,10620,11336,14827,15538,17403,19377 +23,486,980,1665,1094,1060,1506,1861,4256,3406,3267,3267,6334,6570,5847,5571,22172,18111,16530,15771,13868,11396,6996,4182,2803,4081,4145,4001,5324,5886,5686,7479,4375,6304,6324,8078,11803,13737,15884,18276,13616,16980,19064,27970,32145,31680,28794,31236,56852,37762,32238,20303,17016,16695,11055,6092,1282,1520,1452,2759,2899,6353,8352,10094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229,488,734,1210,1395,1752,2068,991,1542,1954,1576,1373,1832,2482,3213,1256,1319,1426,1452,856,1153,1472,1527,1361,3434,4678,5056,5902,6260,5482,6122,4642,3552,2602,2524,3085,2148,1932,1810,1144,1446,1436,1204,1012,1082,834,668,0,16,30,46,49,66,76,122,152,258,291,260,218,313,324,445,1658,1686,1548,1135,831,675,296,165,87,206,318,501,744,946,1193,1209,373,380,452,391,227,187,162,140,316,312,223,141,113,124,130,143,124,508,880,1093,2637,5054,6782,6577,8275,10036,12422,9994,10593,11959,13898,18370,12756,14961,16416,18145,35884,30315,24888,19172,27372,23362,22329,19256,13599,15195,13139,12855,3797,4032,3798,4915,4122,3852,3668,4484,1226,1512,2360,3252,4351,4755,6976,8237,55950,54194,43920,44106,34660,25213,19467,17953,13140,11592,13304,10246,18846,18801,15092,12743,13920 +12,461,1049,1636,1552,1449,1468,1647,3427,2828,2180,2356,3273,3827,3956,4838,26952,25816,25586,21216,14278,11702,9629,5511,2695,2998,3651,3391,3261,4198,4624,6176,3121,5490,6760,9798,10438,14736,18776,20006,15762,17574,19457,24026,45345,37302,25546,36322,54154,36607,23605,23263,15271,13544,9571,6265,1736,1521,1717,2696,2808,5845,7410,10753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,254,469,758,1138,1763,2275,1963,1353,1840,2307,1726,2143,2418,2977,3500,1426,1530,1458,1389,1288,1568,1896,2232,2112,3738,5137,5851,7947,7440,5591,6124,3166,2570,1978,2195,2022,1901,1747,1420,908,1016,1318,1194,900,1066,676,636,0,9,17,22,29,34,36,54,94,116,144,150,125,152,135,198,1826,1494,1162,1165,863,640,353,195,51,191,247,347,511,793,1111,1622,255,232,242,217,202,176,123,118,196,203,182,141,135,128,104,112,177,594,964,1546,2234,3668,4997,7720,11562,13416,12304,14278,13164,18544,19204,19319,16747,23735,24505,27624,31879,33743,32852,24237,24362,19192,18613,16184,13749,10588,11322,11435,4876,4589,3049,3316,3021,2980,3064,2962,1526,1710,2473,2689,3874,3988,3824,4351,40714,59503,64262,57186,41356,38374,30441,21167,15883,15314,16130,15258,18065,18754,22562,18780,17009 +0,61,149,217,323,847,1519,1651,2152,3187,4715,6017,5432,5664,6529,6119,28265,25154,31076,24890,17569,16738,12501,8883,3866,4114,4620,4527,3048,4350,6273,6260,2652,4703,6006,9528,12794,16956,16796,20480,25025,35652,47832,49170,51062,49419,48260,45092,44163,45256,49298,48770,39238,24573,12631,8681,1838,2086,2752,4428,5433,6154,5073,6977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,407,622,996,1485,2036,2166,1938,3592,4085,5131,5186,6098,5893,4247,2170,1373,1128,927,843,896,1367,2413,3160,3748,4876,4713,5966,7959,7532,6971,2944,3491,3408,2572,2396,1585,1171,847,520,576,530,488,493,598,547,568,0,2,3,5,4,5,4,5,4,6,6,6,4,5,3,2,1576,1400,1138,1276,1136,898,709,375,0,135,328,632,792,1237,1586,1632,75,100,165,167,188,159,141,148,169,158,101,93,121,113,150,110,183,1080,2056,3393,6331,7706,9113,12819,12705,15149,12684,15109,14628,14974,20148,17477,20786,15352,10929,9051,9144,16105,18829,17325,23898,29645,38444,33172,31470,24776,23064,17760,7082,9344,8678,7986,5725,4054,2941,2665,2191,2044,1668,1565,1690,1194,1247,1294,42891,40277,52577,42393,48325,37762,33690,21181,15662,14220,17488,16676,14286,21018,21533,16581,16998 +0,202,378,531,534,1129,1417,2010,3028,3882,4318,5720,5615,5920,5278,5373,31591,23290,29055,22547,16219,15696,9492,8176,2958,3086,4146,3226,2575,4003,5292,6191,2086,3612,4489,8360,11128,11330,11749,15599,18905,28156,30678,38304,40543,38414,41471,35369,43382,45582,47578,44864,28833,19985,13072,8269,2434,3039,3618,5496,5995,5798,5544,9270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,464,752,715,1323,1996,1670,2526,3449,4154,5010,4966,5521,4818,4188,2818,2757,2637,1704,1929,1954,2126,2902,2966,4000,6030,6644,7744,9396,8967,7074,2000,2670,2494,2024,1664,1794,1004,1035,391,504,622,516,656,556,453,504,144,149,148,139,161,104,50,40,8,44,61,85,110,144,279,296,975,852,768,871,758,630,453,280,0,154,263,550,628,1072,1132,1244,244,232,232,243,218,196,183,188,162,142,111,108,119,130,142,120,182,1684,3809,6123,7621,8286,9709,15062,11398,13413,13903,18466,19384,23536,23198,21412,19896,16650,9457,10290,7976,13550,18937,20601,37866,33836,36651,29346,41094,34996,27645,19066,7729,8630,8359,6776,6177,5270,3208,2952,1700,1916,2254,2594,4006,2997,2917,4402,56444,49884,45324,40874,43050,34959,32966,20486,11248,12927,16958,14206,14238,15069,15699,14485,15149 +0,342,590,915,873,1083,1814,2478,2965,4477,4528,6074,5050,6332,5794,5880,25983,21790,20532,14492,12989,12275,10120,7681,1960,1994,2816,2558,3241,4006,3473,4358,1662,3272,4072,5074,6042,7466,9992,10670,13593,19614,24048,33180,26556,28196,22838,21502,42756,45127,35826,23577,20804,17415,10949,6795,2278,3396,4372,7902,8639,8124,8002,8520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230,436,635,751,932,1430,1258,2416,3134,4830,4581,6073,5924,4442,3281,4575,4440,4244,2654,3286,3841,3123,3718,3290,4046,6785,5359,11395,9268,8100,6089,1326,2008,2051,1662,1745,1301,1153,930,307,582,770,806,990,681,501,380,243,240,334,279,308,170,96,46,11,73,136,172,261,376,475,609,702,696,592,692,669,555,362,211,0,108,214,563,743,1004,954,1225,346,247,245,266,272,271,181,198,105,120,101,121,77,125,136,119,220,2419,4802,6277,8060,9181,14109,17060,6540,11964,15604,16119,22462,23910,23382,19742,17288,13014,11438,11311,9381,9674,12773,16959,45008,40926,34047,38300,47846,35556,23064,16570,8040,8088,5960,4464,8662,7516,4335,2509,1425,1700,2376,3562,5810,4344,4484,6859,56168,60824,55168,51818,45538,29594,27386,24867,8892,12118,14878,13386,9875,10709,12278,15355,14589 +0,367,708,1240,1309,1566,2583,2996,4725,5490,4597,6426,6532,7318,6710,6829,15638,15868,14983,14903,13160,11689,9103,7916,1184,1686,2129,2396,2476,3255,3388,3758,1238,2148,2722,3729,3475,5680,6407,6132,11063,15465,14912,20586,21084,21380,20159,25248,38798,32167,26895,19976,20620,15654,8512,6158,1839,3258,3536,5988,9742,8732,6224,8785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,266,428,484,751,897,1072,2505,3188,4897,4782,5819,5553,4111,4242,4500,4470,6027,4422,3816,4475,4293,5190,4204,6384,6979,6554,10067,9607,9884,8286,1113,1317,1556,1196,1147,916,837,903,352,592,925,942,1277,789,547,466,466,548,569,453,402,272,139,72,12,106,214,308,334,538,674,974,714,565,599,564,478,490,381,182,0,111,206,507,500,570,640,1004,451,381,260,322,272,233,158,169,89,106,92,105,67,96,123,114,382,2964,5030,7746,9942,10471,11670,13415,5390,10520,14721,17054,22725,21138,22460,22112,13322,10860,9044,8875,7183,12584,13659,16196,47806,52578,39739,38540,39581,34374,22720,14492,7485,7460,7405,6324,6571,6500,5022,2728,1071,1992,2532,5224,8208,8750,8008,10676,57376,54661,40837,40405,36386,29150,23577,19384,5912,9458,9261,10254,8718,8370,7748,10582,11776 +0,516,986,1828,2394,2186,2566,3577,5586,7429,7365,7186,7556,8607,8875,9046,9780,9356,8899,9058,8956,10363,9316,8601,866,1361,1526,1886,2214,2476,2163,2547,519,758,1031,1102,1386,1690,1830,1945,8780,9000,13119,11592,11984,18374,23395,29335,31998,22589,22844,22942,15916,9482,6964,5009,2270,4204,5294,6051,7777,8291,6041,8068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,180,203,268,397,685,778,2651,3349,4142,5137,4776,3985,3397,3114,4368,4100,2851,4076,4408,3710,4476,5727,4567,4576,4630,8449,10312,11427,11276,8242,1416,939,631,531,387,620,928,1081,398,537,680,1217,1368,941,970,736,782,748,721,646,435,321,318,201,14,102,226,456,559,809,1073,1028,644,668,613,486,406,314,130,70,0,54,121,210,383,520,571,553,545,411,284,255,303,234,157,124,113,87,58,50,56,83,122,108,544,3732,5736,7716,9010,10172,9540,12669,2816,4837,8282,14851,20865,15684,17416,22241,6647,8874,9379,7618,7831,11013,13380,17439,50075,53587,41138,40512,40436,34412,30384,15510,10178,9807,6450,7708,6956,5712,3378,2002,1173,3161,4385,8287,10204,8990,8715,11139,43315,49084,40099,36606,23762,27700,23997,15307,3358,5955,6750,6854,9050,7245,6263,4994,6207 +0,844,1917,2714,3397,4901,3915,4664,6727,8664,8684,9489,9326,7966,9090,8376,8663,9472,11106,9912,8815,7569,7308,6402,1095,1470,1442,1745,1634,1920,2436,2560,491,690,950,1064,1367,1393,1592,1974,6157,6330,11878,11784,10831,16199,13890,20755,17902,20996,21490,16742,11918,7351,5674,4004,2312,2694,3429,5046,8647,7722,5668,7054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,332,414,476,596,921,994,2257,3036,2970,3967,3757,3754,2840,3087,3064,3170,3455,3378,4821,5264,4437,5894,3612,4736,5732,7964,10182,10497,10778,7232,1216,911,671,464,574,660,778,871,336,628,737,1240,1285,1098,972,822,1169,796,934,673,666,422,316,235,34,168,310,426,722,966,978,1190,498,492,452,390,231,180,94,58,0,62,110,240,327,453,521,715,756,622,434,374,371,286,150,106,109,73,54,45,44,69,86,90,542,2839,4848,7796,8905,13224,11247,14502,6294,7211,7609,11340,22600,25248,16334,19678,7728,9662,11357,9788,9795,14639,13932,21360,56636,48900,42656,37004,36711,32229,29082,15488,12766,10371,5154,6729,7841,5054,3334,1998,1055,2930,4213,5894,8817,10200,11587,16728,42656,37926,32311,28581,18378,20814,17478,12766,2310,5122,6854,7998,13375,10014,12038,8979,8037 +0,1240,2456,3583,5179,5087,6452,8648,8341,10525,10371,9180,8619,9539,10650,7958,8672,10376,10798,9348,5795,5275,5198,4252,1662,1936,1668,1684,1323,1498,1943,2040,590,673,728,758,927,1122,1214,1477,4438,6741,7360,8235,8923,10187,10785,13644,11628,10984,13732,11206,7509,6097,4062,2748,1690,2082,3234,4948,6925,5985,5504,4555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,270,550,639,591,861,1057,1337,1598,2463,3264,3671,4477,4102,3166,2768,3077,3774,3258,3183,4690,5985,5962,7048,4112,6391,6566,7839,10228,10433,8034,5928,829,770,487,588,649,630,655,774,386,734,1031,1818,1499,1571,1194,1059,1287,1134,933,620,681,603,406,205,50,194,315,410,831,1195,1337,1310,239,267,290,249,142,116,73,39,0,80,140,276,255,485,616,730,979,610,542,476,365,339,202,122,74,58,56,38,27,42,72,71,455,2639,5734,7574,9901,10248,15402,13314,9841,10345,8787,9938,30115,28426,21360,15450,9096,10504,15728,13077,16127,15092,17696,36387,45295,39101,45058,48145,25631,28305,24640,20552,11663,7427,6270,6376,7991,4642,3112,1723,798,3012,5126,7434,11465,14548,13058,15459,29901,29619,29030,22886,17024,11926,12482,7412,1099,3680,6631,10634,15148,15071,13943,14818,11231 +0,1538,2914,4981,6126,5855,5507,6242,10327,9622,10420,9227,11530,9356,10076,9336,8834,10431,10429,8786,5086,4836,5497,4564,2246,2091,1616,1332,1135,1198,1210,1395,545,526,512,566,572,602,799,702,2185,3537,3628,4259,6262,6534,5526,7088,7410,6582,8277,7522,4000,3704,2102,1578,1449,1747,1999,3106,3783,3935,3877,3682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,398,654,938,1012,1228,1635,1566,1889,2392,3318,3616,4646,3636,3442,2547,3331,3694,4513,4210,5071,5572,4248,5508,4000,6040,7500,7360,9751,8172,7315,4967,463,447,371,499,687,781,885,734,623,1034,1214,1636,2015,1742,1242,1348,1537,1162,978,770,579,556,481,252,97,313,438,600,1062,1338,1706,1524,132,150,136,127,69,50,43,21,0,84,154,272,279,460,585,908,939,792,594,454,398,318,240,133,34,40,42,30,23,37,51,56,486,2980,7315,9201,8589,11728,14182,14859,14062,13501,16973,16138,22532,24738,17976,15341,13945,14532,20550,18697,20622,21954,27641,35965,44310,38424,33619,35872,27620,23826,16722,17278,15176,10106,9466,6930,6904,5036,3892,2247,341,3048,4892,8814,13590,11874,11650,15774,29386,21262,15599,14008,10628,7426,8236,4285,620,3236,5764,11044,12740,13232,12854,16296,14335 +0,468,999,1868,2578,2143,2293,2915,4660,7928,8741,11344,13663,15867,12806,10018,10531,10892,8566,10096,9769,8116,10470,9173,10777,11720,8806,8543,5996,4591,3452,2034,501,475,588,439,360,324,210,88,0,288,716,801,1106,997,956,1613,1822,1166,1034,966,906,860,598,279,0,226,461,650,842,1780,2673,3695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,48,58,89,148,235,304,366,384,338,384,526,1369,1976,2646,3314,2734,2040,1655,872,631,341,296,204,732,1080,2192,2895,2842,3666,3823,0,140,257,374,483,758,892,1088,969,1637,2122,2213,2331,2234,2052,1762,1642,1562,1503,942,596,520,619,612,520,914,1675,1735,2003,1770,1540,1943,0,25,48,74,129,127,182,279,330,260,305,398,400,516,476,609,912,878,723,601,364,308,360,367,388,406,331,288,334,278,131,88,439,1546,2604,3490,5250,9808,12174,11716,12576,16431,16593,19541,19474,19368,26251,24939,18542,19063,20530,20572,25825,15898,13754,15384,16089,14221,19004,27148,27550,24308,21249,20266,15418,15511,15760,11520,8116,6113,5273,3200,2146,3227,4292,5335,8135,8328,10245,16597,22922,21114,19434,19244,15365,22723,22793,24134,27271,28242,27864,27153,32829,36453,33839,22524,17356 +0,433,970,1652,1833,2580,3002,4720,3598,5248,5997,11928,10118,12168,8002,7777,9475,8346,10792,10632,13154,11502,10463,11089,9728,9912,7773,7313,4900,3776,3695,2260,506,441,496,403,285,293,256,154,90,314,826,838,990,852,1180,1511,1669,1447,1111,894,716,728,520,206,0,220,372,586,809,1612,2320,2834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,58,77,67,142,251,323,311,387,511,500,764,1480,1783,3002,4557,3604,2700,2133,1324,796,380,278,168,720,1272,2274,2732,2380,2813,3841,0,108,225,266,468,674,630,804,723,1234,2038,1713,2150,1904,1569,1721,1698,1392,1411,970,687,498,511,616,433,806,1334,1652,1618,1530,1524,1793,0,26,52,84,144,114,163,230,264,239,295,448,595,667,694,686,676,742,646,555,322,350,334,358,215,276,268,276,270,212,135,85,433,1654,2368,4219,6954,11344,10137,12030,8984,13254,17558,17396,15242,13368,17463,18894,15471,20308,25646,26528,20004,18282,12790,14377,14093,15202,20722,25202,25276,20802,20762,17444,20034,16822,16212,12150,9911,8750,6295,4188,3436,4270,5344,6212,7590,6480,8469,14208,29642,27650,23834,17631,12190,19384,24826,23089,25321,24898,28094,27378,38760,37080,29903,22636,12704 +0,568,1001,1413,1711,3132,4352,5830,1960,3431,4352,8545,11532,9431,7015,6064,6511,7732,10294,10283,12337,11727,10012,7743,11867,10904,8412,5786,3649,3386,2855,2308,558,436,386,496,282,247,230,185,210,518,740,703,708,700,1018,1200,1880,1930,1544,1238,728,582,446,186,0,202,436,645,789,1558,1868,1773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,53,70,62,186,334,428,352,446,544,534,1110,1808,2053,2505,5013,3896,3324,2599,1404,1111,483,251,150,990,1564,1778,2704,2380,2162,3300,0,87,172,171,393,400,528,556,593,786,1282,1416,1709,2044,1756,1396,1283,1079,945,718,552,474,433,370,258,609,1060,1391,1518,1353,1604,1221,0,31,51,77,117,138,149,235,144,251,324,499,592,529,700,981,743,640,622,477,397,373,396,425,145,187,188,273,303,208,118,85,343,1660,2980,4667,7610,11473,12378,12862,6807,10853,13162,16921,8972,11539,10836,9082,19849,24763,24160,29262,22140,16333,15822,10940,9379,14896,15966,14746,21454,17444,13612,12982,23958,22148,19886,14204,13326,10668,5654,3942,4129,4631,4664,5990,4884,5570,5997,9271,28234,29004,26480,20418,13854,18790,18622,21774,17361,19609,22650,21281,36112,24935,23430,15590,11565 +0,510,1003,1763,2306,2882,3125,4571,1493,3066,3848,6589,7820,6027,6248,5644,5764,10094,12376,12327,11335,11658,9527,8916,13059,9338,5929,4592,3731,3723,3822,2410,562,580,387,478,362,359,298,216,292,402,594,551,491,690,1139,1566,2291,1760,1566,1160,994,760,654,342,0,183,376,634,789,1357,2029,1848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,41,72,97,205,346,390,414,736,873,902,1331,1684,1889,2469,4838,4404,2875,2480,1891,1120,575,331,92,691,950,1220,1979,1625,1810,2374,0,45,118,142,257,282,374,397,621,748,1156,1215,1524,1555,1254,1164,744,710,555,604,388,474,474,431,230,696,1012,1346,1582,1465,2093,1676,0,26,39,55,86,117,98,154,96,222,375,554,561,657,532,809,547,446,376,456,469,440,391,422,85,130,137,178,178,142,114,89,360,2098,3069,5042,6178,9097,8669,12328,5408,6990,9287,13165,7349,8948,12165,11082,22268,21604,21607,19338,23742,17318,14342,10623,7750,10898,10062,12464,13711,13529,10934,10880,22496,19413,17667,16354,14394,10608,7952,6562,3708,4959,4039,5082,4485,4750,5902,9714,25425,24948,29040,19638,15390,21012,24188,27792,24876,25853,23847,20606,30045,23342,17343,14118,11098 +0,629,1069,2097,2824,3352,2793,3276,1288,2298,3186,4642,5184,6172,5953,4766,6914,10073,9879,12500,11716,9155,10996,10937,12561,11412,9020,7836,4500,3717,2407,2367,759,757,848,702,533,563,476,350,307,265,282,273,320,506,884,1403,2558,2510,1766,1846,1408,1032,916,458,0,165,358,463,580,1064,1241,1694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,63,79,105,128,191,295,493,488,677,884,1163,1207,1768,2296,4944,3798,4020,2343,1829,1503,963,555,64,332,592,1362,1724,2168,2575,2810,0,31,62,90,139,163,139,180,735,710,642,1029,1366,973,823,709,242,283,316,346,344,367,468,342,267,658,907,1328,1318,1251,1735,1631,0,12,24,39,68,66,87,128,62,388,604,820,806,963,1106,1053,205,232,354,510,501,455,331,401,62,101,111,111,136,123,115,77,358,1970,3836,5700,6289,8441,10182,13222,5154,6904,8870,8465,8319,7988,8082,7087,23974,23058,25931,21483,21876,20221,11946,10383,7716,10094,10541,10580,8619,9082,9740,8882,21042,14876,15972,17930,16311,10877,7862,5374,4591,3286,3483,3375,4785,6056,6011,5345,34439,27062,18287,21673,21686,22417,18901,22676,24174,25020,21696,18346,19180,21196,16716,12782,10861 +0,464,905,1564,2272,2689,2697,3926,1658,2202,3306,4496,3234,4520,5806,4276,6570,7058,8967,9078,9042,7783,8748,8869,7604,8246,6872,5806,5484,4228,2326,1910,592,849,687,544,405,472,449,449,458,399,467,476,719,1074,1429,1827,2244,1870,1445,1566,1314,909,759,331,0,138,302,348,653,1033,1124,1213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,109,182,271,286,234,320,480,476,575,899,837,1207,1647,2412,4678,3888,3177,2384,1862,1378,1008,612,106,371,672,1102,1186,1667,1844,1902,0,20,55,70,92,126,131,116,478,651,636,966,857,714,610,542,140,214,283,328,283,390,364,350,356,566,887,913,998,1126,1282,1464,0,12,28,45,50,54,94,106,56,343,622,620,584,782,976,1088,317,384,509,506,577,571,440,446,63,92,130,96,150,101,88,60,261,2244,3194,5125,7440,9392,10129,14052,6444,6474,8603,7580,6477,6860,8174,6365,30194,26770,26920,23322,24071,17172,14671,8957,5792,8060,9054,8508,7522,6512,6876,6494,21108,18668,19605,14510,14455,9810,10836,7926,3890,4043,4994,4589,3558,4096,4216,4538,28112,24593,15704,19732,16355,17497,20506,17386,19790,17522,14646,12986,17186,14689,12731,13874,14965 +0,445,793,1302,2216,2926,3480,4414,2158,3259,3570,5513,2590,3675,5512,5922,5985,5716,6229,5615,5629,6165,7660,8734,6409,5811,5380,4794,4894,3896,3110,2081,698,561,640,733,405,394,452,479,710,562,666,598,1058,1535,1809,1836,2156,2267,1632,1230,838,554,462,237,0,101,227,363,638,922,956,805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,168,302,357,353,372,390,691,579,436,654,889,1325,1360,1815,2902,2798,2948,2166,1461,1008,1018,730,152,354,547,837,1141,933,1048,1118,0,14,30,49,78,71,89,118,439,516,542,688,446,406,238,242,97,127,196,176,348,266,256,277,336,516,584,736,778,981,1220,1410,0,13,22,46,42,66,77,94,63,238,442,774,491,746,788,778,408,432,517,485,531,520,515,430,80,114,110,96,114,77,64,50,129,1731,3064,4172,6990,7376,10166,11774,7120,7408,5577,5102,4908,5880,5968,5490,28245,20158,19735,23470,18732,13102,12762,8160,3579,4888,5944,5286,4677,4238,5060,7036,14208,17773,17120,14078,14827,14629,11382,7729,4428,4524,4851,4650,3425,3699,4446,2854,27995,20479,15863,14468,13025,12427,17262,11978,9836,8524,11080,12691,13775,16713,14976,12332,15547 +0,396,551,1130,1663,2328,2566,2998,2805,3397,3569,4551,2630,4292,7512,6530,5857,4334,5376,4046,5686,6260,6471,6186,5690,4046,4882,5040,4856,4172,2448,1878,571,606,497,533,483,484,480,448,860,760,842,832,1068,1870,1681,2300,2257,1644,1464,1163,472,361,342,174,0,115,216,400,583,748,744,818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,175,260,433,365,419,368,602,489,297,462,444,768,732,1362,3160,3027,2267,1871,1508,1140,1071,652,305,397,416,455,630,602,600,716,0,9,14,28,47,40,51,60,256,273,255,370,246,201,141,140,50,104,186,178,292,262,226,279,388,460,483,491,637,993,1301,1300,0,12,25,45,53,51,58,68,57,238,480,535,705,790,812,904,727,582,495,530,487,552,544,327,103,135,114,78,71,54,42,28,63,2025,3797,4922,5642,8519,8066,8325,6270,6692,7116,4944,4119,4764,5089,2971,26799,21259,18255,18378,14725,10292,9285,6168,2748,4138,3435,3254,3916,4792,5067,7420,18962,18239,17302,14381,11485,10478,8415,6370,6498,5287,4057,4538,3412,3615,4163,2534,21350,20477,19273,17451,12088,13076,13348,9112,4990,5472,8703,11166,12341,13248,15648,11656,14703 +0,636,1259,1520,1876,1973,1702,2238,2764,3493,4505,8195,11193,11824,12921,11096,3888,3609,4074,6792,8366,10020,9214,7505,5755,5154,5124,4362,2279,1549,1192,929,470,371,281,291,246,310,320,613,747,1049,1022,865,1066,1027,1101,1649,1693,1243,714,480,261,233,166,88,0,89,153,251,416,593,586,780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,106,143,192,249,357,386,524,476,279,244,138,179,244,406,3284,2313,1994,1511,788,578,611,557,356,355,371,316,268,230,188,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,75,114,115,211,333,402,467,535,664,835,1214,1106,1086,1084,0,13,22,31,49,70,77,66,68,224,428,533,720,787,847,808,1034,974,911,957,782,606,518,349,171,176,126,146,137,127,85,38,0,485,1013,1271,1836,2962,4165,6042,7320,7504,6554,6910,6080,5551,3608,1815,23803,19518,8817,6899,5561,4111,4110,2560,1546,2206,2810,3607,3802,5350,7401,8062,21926,20820,18684,21177,20883,16951,17795,10994,7402,8811,7307,5200,5296,3255,2653,1495,18091,18581,14842,11388,11862,9756,9893,6819,2374,1824,1766,2388,2395,4370,6771,10596,12435 +0,538,1129,1260,1150,1444,1462,1836,3317,3828,3254,5583,10011,9536,10218,8609,2836,3392,4500,5938,7245,7365,6182,5968,4101,4279,3811,3194,2092,1446,935,904,566,322,285,277,246,291,349,482,548,742,838,832,772,1106,1145,1804,1140,981,627,434,405,304,158,84,0,96,139,296,396,566,432,513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,89,214,202,342,429,488,402,454,289,238,144,224,277,340,2932,2430,1848,1416,804,589,671,428,288,280,308,281,268,196,176,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,64,115,125,186,334,435,419,437,626,777,1314,1230,1155,1178,0,13,24,30,52,68,84,68,64,238,316,442,729,822,768,542,693,746,765,739,568,542,519,286,151,176,165,144,145,102,78,40,0,475,904,1337,2280,3058,3943,5674,6451,6170,6463,6621,6470,5115,2740,1674,17609,11560,9240,7142,4464,4090,3519,2790,2141,2948,2882,3837,4817,5743,9289,7124,18953,21226,18078,19633,23584,21412,16290,12268,7828,8489,6654,5041,4280,2907,2516,1199,12171,15148,10360,9477,7216,6562,7837,5462,2305,2394,1976,2766,3388,4594,6563,7776,9843 +0,332,623,793,948,1224,1412,1394,2867,3841,3535,5210,7656,6114,6179,5596,2556,2515,3542,4481,4016,4984,5450,5302,3856,4104,3138,2176,1542,1433,1050,638,530,321,261,259,259,376,498,606,568,446,528,581,538,910,1346,1906,1143,878,777,488,431,265,220,116,0,80,156,199,303,300,414,541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,92,159,274,404,441,420,433,412,343,223,116,220,288,375,3393,2762,1870,1374,697,500,538,322,340,306,314,228,248,226,128,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,55,117,152,209,297,401,246,451,516,562,1100,1197,1222,1650,0,11,22,23,45,67,67,76,38,144,272,392,552,694,667,483,613,717,620,598,555,496,429,264,111,147,156,160,110,80,65,30,0,542,1066,1528,2174,2217,3288,4216,6202,6296,5488,4606,6206,4583,2662,1555,9725,8325,6708,6151,4593,4425,3538,3218,2905,3800,3920,4737,4945,6235,8906,7775,17346,16636,18393,16088,19340,16970,15765,9605,7337,5829,6550,5312,2947,2106,1772,1029,8982,8644,10318,7994,4661,5902,5454,4307,1954,2235,2993,3251,4585,4601,4302,6126,7177 +0,228,447,598,937,1024,967,1204,2398,2982,2166,3279,5023,4520,5548,3914,3062,3076,2302,3266,3571,3995,4757,3864,3030,3444,2941,1888,1396,1132,838,682,423,349,265,316,245,406,602,640,318,338,392,548,604,857,1201,1632,1077,1048,786,537,374,286,177,118,0,52,93,148,158,210,276,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,76,164,206,364,390,420,238,254,221,180,137,267,269,362,2628,2332,1464,1213,575,468,373,270,226,202,246,204,160,160,90,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,42,94,140,161,238,314,177,368,447,487,844,1010,911,1070,0,11,22,27,33,50,45,60,43,158,277,348,542,552,543,378,650,622,671,534,537,362,394,186,98,102,113,123,90,70,48,28,0,540,1119,1437,2304,2176,3057,4325,5352,5940,5915,4573,4204,3128,2551,1268,4928,4700,3847,4024,4681,3545,2864,2853,3360,3784,5753,6447,5530,7273,7744,8146,17985,12780,18198,16624,20399,21166,17222,11293,7085,5534,4918,4772,3758,2684,2294,1152,8214,7266,6625,4923,2810,3464,3587,4260,1333,2542,3983,4078,5697,4508,3725,4507,5828 +0,140,241,396,684,882,879,818,1534,2344,3106,3473,3206,3011,2445,2392,3385,4300,4398,3000,2942,2971,2069,1254,2614,2214,2347,1797,1142,787,765,463,359,365,474,446,350,327,368,409,93,157,295,441,563,1091,1545,1344,1489,1415,1063,646,414,339,244,126,0,22,40,60,80,103,122,210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,135,184,222,327,325,346,152,154,192,140,122,216,315,337,1806,1167,785,686,470,505,388,215,196,224,178,134,98,63,51,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,76,85,113,142,173,199,87,163,226,487,646,619,603,881,0,9,18,26,26,27,26,32,33,112,242,294,354,377,424,363,681,632,473,508,383,278,162,128,119,96,67,68,76,45,31,15,0,654,1220,1437,2052,2518,3614,4088,4392,3648,2804,2378,2960,2004,1254,616,2552,2410,3424,3873,3354,4050,4026,3691,3478,6579,8144,8566,8736,8236,8124,5686,12782,10981,11530,12017,16478,12127,11670,11934,4901,3931,3686,3831,4287,3821,2604,1406,5857,5808,4624,3334,2262,2782,4439,4246,1095,2156,2521,3294,5563,5422,3877,3334,3200 +0,108,222,329,544,648,565,646,1190,1832,2875,2918,2539,1903,1625,1741,2986,2710,2772,2330,2892,2236,1775,1175,2043,1756,1398,1351,1010,716,518,314,308,288,372,346,218,256,302,359,78,157,194,338,506,724,1286,1176,1070,818,882,523,252,234,141,86,0,17,33,48,66,86,94,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,114,121,156,228,266,270,120,126,150,122,97,172,245,272,1474,1063,640,544,276,327,296,186,131,130,111,99,69,58,34,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,51,64,74,88,152,196,71,128,199,338,416,520,608,692,0,8,14,17,24,26,18,24,20,116,220,244,270,281,263,228,594,496,491,400,340,240,116,93,66,60,53,50,53,38,27,16,0,432,931,1178,1311,1982,2487,2476,3746,3409,1896,2094,2588,1644,1104,535,1924,2112,2295,2758,3774,3569,3425,3724,4473,7152,7848,8712,7358,7478,7551,8857,17492,11912,11215,10656,15579,11788,10414,10918,4591,3918,2909,3526,3739,3516,2531,1242,4090,4316,4732,3170,2244,2670,3363,5073,1619,2324,3054,3844,4088,4598,3620,3335,3528 +0,90,176,289,433,478,410,419,1010,1116,1736,1890,1512,1284,1047,1054,1695,1917,1952,1948,2037,1296,1184,898,1528,1398,1092,903,599,396,265,182,216,217,266,213,145,184,172,271,62,103,165,216,383,596,774,870,516,516,427,351,152,144,104,54,0,17,28,36,40,60,84,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,64,66,99,121,139,172,52,58,78,78,85,142,152,163,954,812,532,325,173,198,171,121,77,70,80,75,51,44,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,31,38,46,65,92,156,62,88,122,169,310,386,447,500,0,5,8,13,18,15,14,15,12,64,124,102,122,126,174,128,402,449,356,353,237,140,88,53,42,51,46,45,37,23,16,8,0,253,592,785,780,1155,1258,1659,2348,2336,1731,1115,1524,1444,912,475,1152,1236,1844,2060,3006,4153,4301,4398,6075,8112,7862,7258,6638,10056,10488,14310,16717,13677,11012,10266,9504,6852,7050,6867,3106,3635,3046,3185,4840,2968,1624,824,1767,2821,3762,3640,1797,2989,3772,5131,2517,2430,3364,4290,3940,4321,4029,3998,3074 +0,49,82,134,199,192,234,198,554,694,868,1040,761,631,431,526,990,879,925,856,1178,802,622,482,715,590,495,356,338,196,158,110,100,130,134,89,62,89,85,137,37,52,80,92,202,250,338,360,282,272,233,152,75,72,46,25,0,10,17,24,22,34,42,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,32,40,50,58,82,94,29,34,43,41,44,67,63,86,528,370,233,160,79,82,75,60,38,42,34,36,31,24,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,17,22,20,36,45,75,33,46,73,106,152,213,269,246,0,2,5,7,9,9,8,8,7,32,58,52,51,65,98,70,207,230,192,177,134,82,39,27,25,26,22,24,22,14,10,6,0,158,307,393,406,522,685,741,1369,1270,973,664,670,656,503,214,527,1090,1458,2140,2895,3156,3676,4390,5091,8069,8445,9248,7133,11283,15212,14274,14141,14907,15626,11694,11627,9784,9414,7021,3412,3434,2777,3741,3771,2528,1424,794,887,1768,2622,3170,2694,2759,2591,4089,4280,3842,3552,5382,6024,5639,4924,4029,2976 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,491,887,959,1484,1793,2298,2767,3564,2519,2494,2163,2408,3020,3528,4996,5352,6086,5768,6962,9577,8466,11249,10943,8698,7479,6391,7664,7684,5233,4808,5000,4962,5204,4299,3885,2488,2221,2641,4078,4676,4643,4412,4280,4958,4206,3281,3081,4086 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10883,11507,11764,8240,4892,4517,4528,2788,7762,7454,4224,2926,1968,1327,1104,592,0,12,26,42,66,67,85,123,110,118,112,90,77,58,30,15,374,518,786,928,1106,957,880,550,2396,1816,1282,1081,854,544,312,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1137,1042,696,674,227,220,130,69,0,0,0,0,0,0,0,0,98,186,205,256,370,518,464,708,1822,1606,1427,1654,834,714,329,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,485,797,1046,1479,1872,1769,2842,3142,2158,1854,2353,2388,2690,3103,4474,5675,5514,5408,8855,9370,10592,11037,10686,9167,7022,5568,4879,5630,4358,3443,4508,4570,4858,3781,3182,2964,2636,2437,3718,5426,3997,4053,3986,5160,4918,3540,4346,5944 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24308,23593,19744,17760,10836,9321,8486,6812,18816,16600,9474,7156,3343,2536,2183,1146,0,26,56,83,114,140,172,288,214,216,243,177,138,99,54,30,796,886,1341,1883,2284,1835,1914,1163,5935,4219,2596,2350,1937,1469,614,346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2448,1863,1670,1299,548,446,246,130,0,0,0,0,0,0,0,0,217,312,458,476,705,750,1134,1367,3299,2654,3222,3450,1800,1227,809,727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338,620,964,1074,1489,1653,1724,3426,2491,1852,2004,1775,2176,2890,2998,6916,8260,7028,10590,11118,11905,13840,10491,10354,6906,6792,5807,4691,3522,3224,3738,4361,3010,2933,2244,2969,3172,3211,3660,4860,4030,4096,3201,4003,5186,5416,6808,6009 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33179,32663,34328,24516,15480,16438,16656,8963,22938,18754,9813,7906,5228,4194,3035,1678,0,36,75,145,164,239,309,366,456,362,330,314,254,190,112,49,1446,1741,1504,2072,2350,2650,2671,1993,8746,6945,4452,3424,2382,1490,1056,408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3210,2752,2286,1543,749,536,389,188,0,0,0,0,0,0,0,0,371,476,654,811,1018,1472,1679,2377,7520,6020,5264,4587,2840,2286,1874,1303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,507,687,650,1034,1492,1649,2877,2054,1332,1560,1614,2062,2631,2876,8248,9616,8946,10850,12815,13160,16131,14576,13556,9081,5194,5258,3321,3552,3774,4184,3608,2468,1908,2212,2114,2522,2424,2836,4475,4404,3626,3138,3908,5030,5471,5872,5860 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43440,32260,36696,34782,27094,17045,14774,10410,28388,21379,24061,15460,8642,6301,5587,2935,0,56,120,219,272,372,369,406,687,800,670,539,332,276,198,95,2141,2546,2154,3086,3386,3406,2773,2320,9670,7862,5374,3794,2942,2722,2035,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3707,3225,2464,2018,960,666,406,244,0,0,0,0,0,0,0,0,476,616,1048,1088,1155,1722,3004,3816,10322,10772,7853,7385,5200,4484,2335,1474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,217,404,523,669,924,1607,2345,1751,1408,1180,1402,1250,1378,2038,8100,6965,7167,9041,11524,13442,13672,17160,14181,14662,10938,8281,3420,3079,2032,2458,2595,2478,2241,2027,1770,2058,2524,2264,5172,3780,3991,4270,4172,3612,4634,4561,5837 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52558,54068,53587,53064,39568,29778,28248,21702,30294,29097,28000,17120,10290,7108,4514,1946,0,60,110,206,345,408,556,566,708,707,675,490,404,295,250,117,2246,2234,2981,4147,3976,4380,3336,4059,11394,10042,6104,5232,3326,3136,2029,1030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4343,4302,3634,2514,928,892,567,252,0,0,0,0,0,0,0,0,899,1814,3367,3899,4462,4390,6612,6710,11719,10504,7195,7206,4297,3708,2194,1924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,340,446,746,839,1326,1442,3072,2522,1362,1591,1585,1658,1429,1519,7088,7653,9990,11854,10742,14014,14740,17997,12725,12595,7909,6002,3785,2732,2324,1946,3431,3162,3008,2901,1656,3045,3682,3994,8488,6826,5599,4196,4814,5743,6318,7840,10467 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65417,70158,68066,54485,41042,46242,38942,28511,40295,36898,23640,19122,9074,6467,4199,1750,0,64,126,189,506,539,572,583,597,612,459,410,424,320,276,120,1955,2430,3408,4511,3578,3852,4662,5503,14336,12349,7146,6302,3694,2900,1623,886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5221,4941,4272,2659,1281,997,592,333,0,0,0,0,0,0,0,0,1112,2594,5114,5540,7030,8485,8042,7316,10485,7510,8180,5762,4613,4122,2962,2658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191,433,624,747,1025,1626,1952,2950,2521,1912,1544,1600,1434,1284,1402,8206,9316,11339,15271,12441,13560,15574,15792,11481,7148,6104,4345,3558,3113,2054,1976,4383,4069,3599,3398,2271,4496,5773,7882,10458,8090,6198,5842,5223,5306,7536,9675,13071 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52776,62464,62093,51128,47335,42998,35440,35263,31332,33790,21941,18662,9413,6810,4712,2350,0,70,171,248,460,487,473,701,881,864,620,518,406,354,321,156,2127,2662,3722,4732,5544,5398,6298,7702,13695,11666,5581,5758,3690,2254,1275,668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8866,8155,6842,3742,1550,1267,637,355,0,0,0,0,0,0,0,0,1485,3924,7062,7024,6867,9496,12818,13406,11246,7727,6761,6366,4511,3643,3063,2504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,393,716,712,1128,2104,2116,2924,1806,1315,1764,1586,1182,1055,834,12732,11186,11724,13642,13265,12760,13690,12417,9532,7712,6900,4526,3266,3184,1996,1308,5215,4572,3468,4118,2707,5448,5932,9386,9962,8370,9980,6704,6761,6085,7539,10160,11807 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55104,62194,62170,56876,57627,53254,54708,42310,33042,26160,19813,19188,23602,16558,15579,7696,0,132,319,690,897,698,826,814,1150,1051,1021,792,505,384,309,181,2394,4308,5231,5889,5801,9233,12531,10497,12316,8797,8386,7535,6052,4116,2082,885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12949,9174,9137,9474,9033,6506,3622,1955,0,0,0,0,0,0,0,0,1377,4428,6678,11591,13754,11224,8760,9632,14160,13635,13862,11870,12693,7632,5046,4074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,432,950,1172,1477,1775,1644,1984,1797,1704,1590,1510,1023,823,396,15913,16620,13971,12664,14243,14243,11624,11152,11516,10151,8136,8502,6278,5069,2591,1441,5928,8434,10976,12544,11458,10375,11373,12898,10187,9531,9065,8568,9869,8548,8070,10326,13040 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84297,75106,60232,50648,63758,66673,43638,43766,24794,22163,16592,18869,19171,18328,13519,7032,0,172,381,788,1057,774,762,1166,1187,1258,1051,949,996,728,752,765,11225,12098,11849,13866,15608,18375,17538,13734,11568,11242,7900,7469,5512,4139,2265,1310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15628,13337,10326,12240,9719,6199,3215,1843,0,282,548,962,1274,1102,1153,1514,6032,8521,12891,14124,19200,13027,12456,13315,27530,24024,20340,20731,19446,11640,6522,4406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,204,483,868,1042,1312,1181,1316,2258,1838,1389,1239,1631,1309,1006,688,14092,17245,17836,17820,11626,15179,12711,12955,11472,9733,8407,6620,5074,3654,3104,1560,4379,5346,7883,8266,10962,10851,9157,12040,10462,8446,9232,8287,11182,10318,7924,9588,9605 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99824,72706,53926,40920,64430,62159,44572,30462,17578,17908,18032,15004,21150,15660,12010,5758,0,192,463,744,1321,978,920,1200,1672,1583,1306,1238,1496,1257,1306,1036,17853,16568,20987,20572,24340,19452,19705,16161,16368,15227,11300,7722,5485,4144,3480,1754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15366,13896,14388,12888,8235,5382,4209,2201,0,454,919,1741,2761,2394,1982,2620,10833,14619,19660,19133,22066,17229,12565,17964,32985,34709,28468,28147,21530,17960,10800,5366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196,440,789,1134,904,867,1221,2170,1942,1204,1027,1621,1220,1338,1059,14667,15442,18212,18002,12498,15091,15864,15146,11090,10190,8271,4706,6001,5135,3308,1958,4214,5472,5472,6211,10067,10678,8319,13682,11847,9132,8592,6232,13291,12075,11220,10031,10531 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93825,84452,73387,64769,65203,58114,32628,29480,12168,14638,15353,14758,14728,10600,8393,4391,0,364,700,1040,1651,1211,946,1300,2109,1584,1243,1314,1436,1806,1659,1477,27457,23200,21563,27932,34003,29224,21205,18373,17966,16776,14910,9630,6385,4376,4001,1757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19207,17132,22062,16082,12706,7261,4782,2007,0,896,2123,2363,4322,3888,3364,4966,15526,17490,27287,25500,25262,23889,22056,21404,38481,43428,33453,34034,30632,21471,14080,7862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,343,585,880,1058,972,1548,2163,2138,1235,1118,1491,1270,1361,1343,13941,13786,18995,18784,17868,16771,17680,17114,9040,8810,7755,4596,4650,3234,2110,1370,5362,4699,4706,4908,8543,10826,11626,13778,12033,12138,9509,9707,14068,11452,13185,12288,13520 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128109,122646,92774,73669,76259,66737,57629,33382,11586,12157,11605,7926,6650,5846,4153,1743,0,294,666,1272,1508,1407,1319,1347,1979,2100,1877,1866,1743,2048,2282,2310,31209,40809,48904,49447,40698,27190,16407,10419,17311,11916,12109,11085,8813,6907,4160,2216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22083,25658,22092,16804,14245,9686,9509,4179,0,1300,2401,3654,5335,5963,4894,6883,21828,31524,32669,31202,33114,36920,32006,22033,49803,52616,49447,46529,34200,29431,18291,10918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148,297,414,662,982,1395,1192,2328,2550,2029,1354,1167,1322,1212,1326,15584,14480,15360,13617,17408,22464,23215,17439,5324,4592,4470,3354,2604,2105,1389,938,6266,6274,5824,5422,4260,5869,6992,9050,9931,9394,11815,13952,11826,13688,14798,15434,14883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100736,118528,81538,76434,63512,61726,43166,29766,11229,9118,10004,7432,6162,4179,3970,1699,0,453,860,1562,1493,1522,1339,1360,1948,2140,2586,2602,2124,2262,2542,2592,37336,38720,43738,44361,43466,34858,24992,19826,22249,16134,12742,12530,7234,6580,3788,2212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17918,17442,20682,17456,13697,11040,6593,4098,0,1944,3819,5102,5702,7016,9096,13574,32651,36058,29239,24876,32032,29080,25841,25171,63292,56820,54895,50850,40287,24639,18019,10606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,304,406,700,1066,1184,1182,1807,2044,1692,2177,1519,1496,1406,1426,14149,12630,14687,17096,13684,16369,15141,13701,4647,4464,4021,3134,2403,2250,1411,962,4608,4866,4626,4972,6995,6294,7116,9542,6831,9844,10550,10956,10097,9804,14663,13176,11862 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83181,78517,73147,72913,75686,56355,41416,19718,7516,7216,7350,6484,4465,3853,2764,1646,0,656,1150,1490,1084,1266,1490,1676,2227,2079,2662,2336,1862,2358,3588,3250,42467,41366,49572,56782,41262,36119,25910,24223,20861,18647,18847,14798,6988,5937,4421,2634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13212,12066,13812,9241,10884,7450,5942,3391,0,2204,4577,6729,7759,12034,13166,19388,39050,31217,33982,23718,33405,29818,31821,30386,58956,56789,52411,45233,34482,29097,14136,8000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,222,457,561,788,1239,1486,1254,1730,1970,2680,1962,1655,1367,1359,14304,10910,10642,11775,14132,10866,11894,15555,5023,4175,5188,3940,1425,1590,1658,1077,2315,3314,4950,5270,8652,7188,5582,7146,6991,8678,10086,8849,6065,7234,10769,14436,14471 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99531,84944,67346,59402,56276,49642,32485,19125,4056,3171,3964,2964,2242,2148,1304,724,0,594,1306,1700,1491,1588,1869,1949,2558,2084,2242,2216,1504,2961,3547,4278,41314,45088,42776,47768,45640,35158,40426,27000,22686,18349,16052,14302,9141,5826,4235,2164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16597,17796,15559,15093,11066,7608,5658,2816,0,2028,5228,7947,9940,13320,20288,27666,38239,38812,35135,29824,26670,34752,34231,38399,60126,43022,43756,41398,31071,24940,15505,9232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142,320,410,547,722,968,1028,1000,1466,1967,2944,3705,3152,2360,2291,9881,9112,7113,9367,13055,9475,9351,12023,5360,4664,6072,3906,1728,1916,1555,1605,1692,3560,5290,7598,7006,7360,6035,7416,9602,10208,10897,8293,5668,6992,7901,10350,10630 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100087,86369,51504,42580,36239,23242,18204,7874,0,0,0,0,0,0,0,0,0,892,1534,2141,3488,3965,3824,3877,4863,3866,4634,5626,8410,9816,9480,7150,56114,64833,64337,76937,73711,59946,66339,44365,31092,28081,29635,24806,12431,8404,4608,1879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16177,20640,22357,32540,51019,47956,63787,55622,50617,51418,53680,45400,49654,49003,46648,46798,35098,23956,15972,17916,16871,16420,13355,20931,24212,18766,21229,21108,17925,15685,10182,6074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,346,804,1251,2234,2406,3082,4240,7765,6683,5502,3820,2354,1894,1260,508,0,47,89,110,155,546,961,1179,1430,2054,2567,3032,3308,5596,6806,6892,6911,7730,8232,9668,11828,10934,8752,6856,6973 +0,1,2,2,2,3,4,5,2,4,4,5,4,5,5,5,2,195,470,774,1206,2468,3976,4222,9633,7874,6135,6608,4984,7302,6228,5558,91714,77124,68496,55960,50660,33508,29997,21924,13270,12722,11118,6752,3067,2822,1877,1258,0,946,1347,2909,2672,3278,3784,3571,5564,4759,3789,5802,7330,6923,6257,6092,56732,55489,75263,68166,60318,62546,46083,38364,33994,29819,30799,24252,20707,15030,6874,4415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17043,17718,26934,28376,42034,41986,54992,41632,69117,52332,57669,56315,47593,48659,45871,41754,31844,26522,21002,18900,25796,20376,15939,19600,18960,21894,22510,16782,12313,12216,8737,6586,912,1254,1712,2076,2144,2371,1998,1272,1025,1006,986,732,693,522,261,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,462,859,1336,1865,2315,2948,4000,6232,5398,5579,3760,2998,2456,1128,676,4,60,111,154,162,553,956,1412,1222,2364,2407,3334,2509,4446,5922,6964,5279,5895,5248,7030,12019,10143,8993,6692,5465 +0,2,3,4,3,5,6,8,4,6,6,7,6,7,7,7,3,470,854,1317,2939,5083,7623,9853,17751,15142,15328,11470,12279,10795,14439,10950,69663,69958,75432,88786,58057,52948,42483,46757,32510,26152,25006,14323,6678,6472,4422,1847,0,725,1738,2023,2267,2645,3015,3363,4422,3480,3624,6044,5440,5895,5558,5306,69790,80751,65092,70797,48490,43848,42914,40433,44089,38744,31432,21338,24940,15898,10606,6162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14725,22846,27039,29017,42561,33984,38474,37502,77950,72579,72452,67922,41013,47740,40061,42920,37088,36170,23482,23011,28204,27417,18503,17387,16751,19340,18134,13529,10684,10002,7090,5816,1690,2262,3056,3341,4937,5189,4090,2631,1982,1783,1796,1587,1568,1058,638,315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,477,848,1041,1518,2934,3378,4332,5399,3792,3860,3017,2751,2044,1419,853,6,52,120,188,121,394,795,1136,1527,2533,3205,2798,2359,3822,4878,4530,3782,4670,4528,5508,9454,8270,6840,4626,4036 +0,2,4,5,5,8,10,12,6,8,12,12,10,10,10,12,5,623,1904,2638,4439,7392,12488,13165,21393,15094,13477,16152,12712,13834,16209,15934,111888,94386,86319,64766,66688,69156,73634,63116,34818,35764,32606,22190,11298,8603,7099,3818,0,706,1688,1777,1730,2288,2428,2776,3635,4002,3296,4434,4433,4094,4657,3734,72299,67394,45226,54400,49631,42932,45916,41193,48573,41012,33624,26521,24332,13062,10309,5210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22001,23728,30045,25117,36084,31103,26768,22892,85417,73506,63682,64747,52894,47587,38590,31120,23322,23603,18068,19860,20990,25568,17376,20014,12724,16782,18106,14770,10347,9326,7748,7932,2978,3293,3905,5329,7299,6844,4796,3422,3860,3178,2470,1864,1995,1302,784,344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,404,667,1366,2039,2854,4315,4966,4460,3733,3600,2400,2290,1779,857,542,9,44,106,158,153,510,720,925,1251,2061,2522,3046,2038,2660,3478,3546,2792,3366,3303,4068,6146,4612,4169,3618,2303 +0,2,3,5,5,10,11,12,6,8,8,10,13,19,20,18,4,1201,2474,3952,5690,7565,11363,11702,25422,26197,20447,22699,18655,14366,15215,17398,121823,121510,89214,74213,74138,69025,66604,54726,50360,52264,37656,25489,20766,12276,7848,3459,0,302,659,1349,2050,2099,2248,2760,3590,3772,3890,3201,3358,2317,1730,1648,69157,56722,67143,45521,45188,59740,62407,70334,57693,65862,52770,42434,24016,20666,13399,5716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27806,25056,33555,32883,29296,26594,24548,19574,67712,58860,57174,48577,51988,45765,31340,29719,19762,20999,21391,25523,24216,22344,22045,21195,10605,7502,7596,7424,9554,10614,8425,8269,4471,7165,7860,8626,8530,6529,3723,2857,5213,4472,4590,3859,2401,1489,888,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,608,1456,1714,2200,2268,1981,3456,3400,3666,3119,2215,1890,1246,675,318,12,41,79,125,150,294,555,745,785,1384,1852,1865,2155,1632,1301,1944,1748,1594,1502,2557,2851,2305,1867,1569,1226 +0,2,5,7,7,11,13,14,8,12,14,16,14,18,18,22,6,1416,3032,5316,8432,9742,15264,16682,18129,20309,21982,19530,20737,19411,18844,21018,144953,133725,121284,88310,77770,66999,68818,50762,58314,49528,31987,24766,22540,14572,11238,4950,0,280,487,1172,1760,1860,1718,2096,3117,2826,3015,2889,2414,1964,1604,1501,74608,59784,53809,41911,40936,47468,59048,66800,63617,49034,39998,38125,22181,15153,11870,4962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22301,26870,30446,31006,35978,28686,27642,20304,41742,48652,55823,50156,38437,35086,32306,23050,17504,19958,23188,16818,21772,23890,21759,18063,7723,7518,8153,6315,9268,9546,7691,7710,8123,9522,11830,9946,10576,8783,5417,5806,6665,4900,6148,4474,3275,2934,1323,868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,526,924,1264,1296,1856,2144,2841,3100,2853,2666,1920,1729,1010,508,232,19,46,63,84,106,280,557,754,564,1063,1763,1492,1879,1667,1750,2214,1723,1900,1567,2258,2612,2290,2485,2348,1605 +0,2,4,6,8,14,18,20,10,14,16,18,13,19,20,26,6,2463,4472,6363,8386,14824,17453,26758,19340,16695,18567,23260,19452,20220,20888,21430,137185,148297,117962,109078,63487,51490,61496,54922,53565,43145,36882,22087,23251,14747,11682,5939,0,200,390,638,1011,1515,1518,1538,2441,2343,2152,1792,1506,1150,1295,1319,79067,65149,41964,34836,41731,56736,53452,76967,52879,44154,40486,26742,26682,16716,8738,4853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23156,27478,26148,33326,39045,33134,25676,24966,30364,34355,46244,38025,28814,24092,25210,21658,22424,23851,18434,20543,20109,15355,17624,15185,6237,6079,6171,4595,7410,5702,6484,7801,13117,10350,11900,8254,11640,11326,8005,8674,8359,6299,6110,4748,4657,3117,2214,1312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,469,808,1056,921,1312,1700,2098,2220,1756,1560,1416,1112,671,341,218,20,36,54,72,107,294,438,763,395,753,1316,1166,2112,2226,2325,2559,2125,2251,2086,2220,3005,2299,2524,2439,2747 +0,2,5,7,8,16,19,20,17,17,20,20,16,18,22,28,5,2812,6458,8542,10318,11883,18288,22842,22025,19754,23777,19211,13809,17786,23204,25592,151536,115979,120571,91982,72095,79625,87507,84376,53846,46893,50231,30148,19790,14552,9906,4735,0,98,204,346,409,586,841,732,1170,1298,1524,1279,1165,1006,1474,1282,73399,61936,51290,36370,37914,42624,56967,73608,52812,48388,43991,29338,23511,16339,8470,4287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25464,30160,24239,25227,38112,26781,22228,26588,28031,31041,42978,32813,26679,28160,22864,19473,31927,28546,25292,21358,18609,13183,14858,8979,4000,3331,3697,3445,4736,5240,5260,8228,14207,14048,16182,14302,12226,13515,11498,11027,7227,5708,5765,5328,5878,4364,3699,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,308,446,664,868,972,1456,1723,1014,864,809,648,602,342,183,112,30,47,57,68,117,198,292,445,232,488,773,964,1411,1952,2250,2377,2491,2342,1966,2316,2219,1970,2612,3322,3908 +0,4,6,12,14,17,19,18,21,23,21,18,16,23,22,24,3,5796,11214,13734,17926,22974,32675,30565,31878,30644,30556,39437,36315,33468,36745,30829,144220,152177,174202,163330,186448,138473,145905,96426,76836,59091,65975,49524,32760,27363,13358,7245,0,0,0,0,0,0,0,0,0,145,333,581,776,892,724,1089,93560,79086,60715,69237,55356,43779,38166,52410,56457,36867,29874,31883,24134,20444,15210,8078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22420,18667,13093,11213,9485,12330,11980,15797,25988,27022,19953,12498,4690,11688,15569,19897,36845,30705,25523,24862,26780,20064,15175,7443,2437,2976,2829,4299,5999,6858,8902,10327,15352,19366,19624,16924,18880,14726,17576,15567,9452,8514,6134,6104,7621,4848,2934,1306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,349,653,846,1044,1357,1354,1434,0,8,16,19,26,34,40,42,35,50,59,80,81,62,60,82,0,389,748,1158,1193,1268,1552,2200,2527,3840,4098,3399,4280,4534,4225,4752,4230 +0,6,10,13,17,21,20,22,24,22,20,20,16,23,23,28,5,6473,11402,16722,23879,33432,38405,44058,50627,43462,37613,34310,43662,34902,37182,31101,162398,151772,131312,149052,154457,157864,134511,89450,69957,61882,50113,44633,24738,21028,17754,8496,0,126,352,446,839,710,732,1008,1281,1554,1920,2011,1691,2379,2335,2220,86680,73720,59909,57086,57269,55850,45503,50346,53311,38508,30345,31287,24924,18350,13832,6512,0,0,0,0,0,0,0,0,0,304,518,809,802,740,580,630,22170,20426,15052,12865,9450,8234,12455,11934,16761,15977,15124,12598,9089,11650,19701,20030,39625,30945,29621,30824,23497,19132,14540,6793,2328,2850,3538,4433,5308,6708,8808,8895,12343,15450,18766,18709,15484,13235,13230,11705,7048,7978,7815,8072,9034,5610,2848,1273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,462,702,711,844,1193,876,0,9,14,20,20,26,33,35,34,38,53,62,70,70,74,70,0,249,618,893,886,1070,1465,1680,1562,2660,2828,2856,4171,4346,3668,4101,4917 +0,7,11,17,18,23,24,20,22,21,20,20,19,26,31,31,6,8234,14880,23708,23122,40146,45933,48582,59234,53780,42766,36061,37075,36396,39280,31843,133054,118335,111854,92765,177920,149405,97413,79950,88373,62509,46398,35541,26859,20092,18061,9158,0,324,616,946,1589,1766,1494,1905,2352,2956,2942,4046,2516,3276,4788,4711,105516,99936,68034,42566,41213,53913,51716,55579,59516,48326,39259,36017,26096,18423,13406,7092,0,0,0,0,0,0,0,0,0,636,1095,1937,1524,1284,1201,1423,28737,27372,21513,14426,9336,10685,9182,11153,10290,12045,10762,9824,11437,13762,18604,19690,39808,33583,29504,26851,16789,17144,13968,8753,2097,3099,3770,3619,6155,5271,6314,4361,7856,11003,14522,13076,18024,14086,11500,9670,5325,5165,7384,8238,7624,5580,2782,1285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,372,523,648,727,719,620,0,6,10,22,15,23,27,28,22,34,48,43,53,64,66,56,0,176,416,510,704,802,900,1284,1232,1740,2305,2355,2932,3421,3021,3668,4402 +0,6,12,18,21,22,22,24,17,20,20,18,18,30,36,32,10,9925,18161,24110,28643,35673,42030,55803,66136,68969,48786,50640,29020,36138,41802,37187,137734,135034,99290,104762,145882,125247,92585,85442,59970,59241,35382,32686,25296,21614,19338,9920,0,408,1096,1352,1875,2155,1468,1896,3134,4192,3229,4415,4161,5344,8453,7381,74744,82511,53359,45368,28457,41504,50347,53712,54166,36842,40540,32298,18398,15772,13518,7006,0,0,0,0,0,0,0,0,0,929,1710,2534,2900,2627,2798,2828,24236,22404,20822,13874,7685,8084,6681,8040,7871,10794,9488,12242,13258,12609,15238,17373,47586,42630,32353,28852,19231,17248,15429,9019,1726,2892,3426,3908,4753,5152,5884,4682,7347,8974,8772,11584,14884,11008,8356,6958,6091,6117,7910,6852,5410,3498,1929,1043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,248,360,393,515,425,412,0,6,12,19,17,20,27,30,21,30,43,46,54,61,66,63,0,170,411,546,747,698,613,869,1031,1222,2077,2382,2919,2530,2734,3346,2792 +0,5,8,13,20,20,24,23,10,14,16,17,22,30,32,28,9,8460,18068,24405,28400,47607,56532,49824,81150,57676,56475,39862,26168,31014,32175,31623,171581,168735,147332,123919,68660,79830,86336,61224,53107,49952,35027,33942,25957,19998,11613,5203,0,725,1211,1805,2702,4146,4302,3542,5451,5142,5092,6027,6635,5254,5908,7668,72928,82252,71295,49647,29534,24444,29560,30284,56103,40096,41583,35756,18607,14738,6478,2977,0,0,0,0,0,0,0,0,0,695,1558,2616,4312,4406,5129,4850,23323,19032,15322,11477,7346,7238,8337,6226,5119,5320,7780,12063,14268,15915,16890,18902,49006,36760,35994,31826,25803,24241,15539,9377,1858,1831,2011,3447,4657,3473,2695,3124,5362,5998,6364,9102,12171,11040,8765,6872,5963,4929,5779,4603,3993,2888,2610,1290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87,153,178,270,205,172,226,0,5,7,12,16,13,12,18,16,23,35,38,42,44,34,40,0,157,312,438,668,531,564,618,859,1158,1296,1936,2620,2361,1607,1664,2203 +0,6,9,16,23,26,22,26,17,21,24,33,34,34,30,29,12,9803,17954,20492,32029,43874,60430,61501,93178,86744,52604,49182,26590,25260,38199,38236,159434,134634,125404,88402,61042,63241,61608,56772,57586,43896,38542,30921,25153,17172,12771,5314,0,882,1940,2882,6554,7067,7966,6662,6193,7928,6266,7884,10689,8749,10262,11531,57706,64186,54840,46799,24703,24106,37728,36818,37349,35811,36191,22212,13442,12063,6650,2929,0,0,0,0,0,0,0,0,0,1474,2076,4493,6636,8789,8511,9968,20982,18068,12375,9149,6493,6090,7462,6439,4406,5388,7214,10798,15658,14382,16424,23018,50815,43866,37068,34266,33185,26122,17124,8702,1558,1648,1695,2670,3466,2762,2342,2708,5913,7327,6722,9040,11995,8892,7009,5307,3951,3304,4819,3994,3608,2446,1755,1026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,125,172,191,158,118,178,0,6,8,11,12,12,9,14,14,20,23,34,34,32,28,32,0,107,224,372,474,380,469,390,592,774,980,1428,2575,1734,1299,1642,2026 +0,6,10,18,22,27,26,24,17,24,28,29,37,34,29,34,12,9857,16796,18648,34438,39130,59502,59624,94426,77308,74268,73309,33358,33530,34238,38179,117279,95450,98304,100867,40524,43337,51374,69860,53538,46780,40119,35868,26876,16650,10020,5566,0,1179,2908,4094,9264,11482,10019,9852,9941,8088,8623,7998,15757,15407,12196,17255,63827,58309,53831,35647,22468,34494,38046,41296,30408,27001,27884,21618,9188,8268,5776,3388,0,0,0,0,0,0,0,0,0,1616,3523,5532,9404,10127,13484,14779,24643,16404,13036,7575,5041,6660,6069,3951,2345,5143,8726,9281,12131,13984,18509,30066,37685,36891,36822,36461,35619,30236,21804,11018,805,896,1160,1805,1842,1770,2504,2857,5989,6856,9790,7324,8051,7760,5986,5063,3315,2961,2303,2796,2228,1722,998,437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,60,124,157,103,94,98,0,5,7,11,7,7,6,8,7,12,14,18,21,26,22,25,0,71,162,236,298,342,367,291,360,690,879,989,1798,1409,1244,1174,1411 +0,6,10,16,16,24,22,21,19,24,34,34,31,36,35,36,16,7586,15910,18978,35372,35605,49939,58985,70660,69074,84733,63937,60928,45066,46152,51680,67209,78137,76196,83466,45422,54258,60268,69870,51441,39562,34164,29374,24682,16295,9969,4904,0,1676,3347,6228,9459,11880,14088,16472,18451,15780,13810,13607,17952,13983,14875,15450,52005,41023,43452,42368,35407,39826,32080,27132,29368,22417,17208,13404,6807,6043,4008,2312,0,0,0,0,0,0,0,0,0,2712,5280,7732,11402,10220,11624,17495,23004,16381,12254,6194,4385,4160,4584,2796,1005,6164,11507,11772,15422,18772,26234,31562,39992,41733,40326,35834,36072,26979,19992,10718,450,526,695,1174,982,1386,1846,2545,8642,8164,8496,7421,8566,6120,4519,3477,1962,1480,968,1452,1103,859,547,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,32,56,68,60,56,53,0,2,5,7,5,5,4,5,5,7,8,10,12,13,11,12,0,40,85,108,123,172,201,150,198,304,500,512,917,714,500,718,791 +0,0,0,0,0,0,0,0,0,3008,6079,11734,14065,16028,17029,30491,34833,36528,53568,54657,52020,51484,36003,28117,30444,45598,52202,51271,66690,52236,53547,49166,48234,37766,40332,43831,38817,42967,32912,38830,33012,24885,14890,13298,16427,9960,5430,2648,0,0,0,0,0,0,0,0,0,3055,5872,10156,12409,15430,15975,15961,26835,23290,30726,30870,21854,13743,11678,5797,0,0,0,0,0,0,0,0,0,796,1634,1731,2568,4390,7596,9190,15364,17195,16045,13148,16560,18947,21302,19296,20534,12946,11263,9814,10631,8924,9625,9872,7392,8582,7853,5568,4651,3270,2606,1500,0,122,294,333,468,598,969,1957,2322,2774,2712,3552,3927,4480,3839,2787,11968,11398,11589,8512,7016,9650,14178,15486,15912,15956,12634,7556,3669,2974,3056,2168,1619,2032,2478,2690,2367,2400,2114,1701,1914,1572,782,547,305,222,201,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +0,472,1154,1804,3252,4206,5201,7196,13348,22858,23268,30164,38753,43752,61507,60198,23486,37468,37373,48132,60795,51796,40830,43578,45776,56536,57300,69872,88086,97756,108289,91950,39517,41181,42296,47442,25482,31750,34541,30964,28089,24344,12815,13196,11204,9108,6669,3336,0,1,2,5,2,4,4,5,5,2760,6461,8264,10254,10333,14938,17062,41027,34896,35716,36076,25603,23227,18103,11609,6427,5058,4624,5195,3459,6049,8447,12346,8655,10310,12206,14798,13025,13402,20649,28605,26078,22947,21298,18556,16022,16024,14614,17343,16352,12539,7024,8892,10932,8386,8491,8060,5525,6371,7651,4602,4764,3350,2686,1422,0,168,280,404,581,710,793,1230,2900,3112,3188,2911,4100,4406,3334,3464,11278,12298,14935,14520,12043,19946,17524,19546,26122,18085,15013,10429,6862,6267,5047,4766,2860,2675,1925,2144,3050,3297,2891,2076,2466,1980,1832,1190,745,738,884,978,0,44,89,160,118,183,259,200,265,256,271,218,120,68,55,54,87,81,90,83,70,73,68,54,30,39,53,54,44,35,23,13,0,13,19,32,30,34,45,38,22,26,29,24,19,16,10,6,126,126,91,96,43,47,74,74,17,34,46,40,32,30,16,12,0,0,0,0,0,0,1,0,0,1,2,2,2,2,2,1,2,5,5,6,5,6,5,6,10,8,5,5,2,2,2,1,0 +0,974,2180,3884,7477,9704,9853,10578,25699,36428,50718,60452,75303,94978,86002,95982,23553,25727,36634,41474,61169,45957,51902,70250,64131,78783,74558,69805,129555,129066,155402,126355,47798,51616,46288,37728,21628,25561,29060,26355,23001,18197,16541,11020,11190,9011,5938,3537,0,2,4,7,5,7,6,7,7,2733,5120,9261,7071,8968,12735,9942,56157,41573,45975,45036,35824,25341,18834,16305,11768,10569,7870,12364,8093,9688,16022,22172,14648,21009,21740,26156,27474,25306,30196,39714,28120,28450,25894,19013,20703,19444,13042,12059,9260,7468,6076,7700,11995,9218,8148,7742,6181,6752,6760,4955,4959,3035,2269,1355,0,204,376,512,503,698,920,1199,3272,3380,3344,2229,3734,4049,4258,3602,10395,15048,15240,17121,21272,20063,28266,29834,29542,24342,16904,12340,8988,9894,8056,8165,3598,3471,2280,2503,5079,4278,3764,2836,2729,2512,2335,1509,1513,1654,1642,2060,0,93,192,285,224,360,432,388,632,484,538,467,217,194,118,103,212,211,150,140,164,166,116,104,57,88,108,92,104,68,42,19,0,21,42,65,60,83,82,78,43,52,52,49,33,27,15,10,221,177,208,146,87,105,140,149,32,53,77,83,74,48,36,22,0,0,0,0,1,2,2,2,1,2,3,4,3,4,3,2,5,7,8,10,7,8,8,8,15,12,8,7,3,4,3,2,0 +0,1682,3016,5845,8792,12282,11698,16773,27186,54222,91182,76362,98684,91528,100592,105936,21464,24268,35199,34488,49808,45692,69859,67542,83168,96300,102819,105479,109105,133293,149679,137065,36690,35052,33470,34926,26057,24496,35034,27738,27009,17103,12427,9216,10022,7432,5732,2862,0,2,5,9,8,10,10,13,10,2170,3519,6989,8348,10563,12133,13962,63361,48449,59425,44521,28812,23598,17057,18302,13096,11766,9491,15180,17255,23364,25372,31836,20935,21960,22944,31252,29690,31230,43001,50758,34182,35650,37342,26224,22116,17466,19258,15438,7142,6036,7218,6237,9499,8386,5790,5454,5112,5794,4745,3935,3834,2309,1733,925,0,172,322,608,752,822,1189,1342,4689,3754,4154,2682,2984,3052,3470,3242,13482,19438,16822,21253,26430,26048,39796,41040,34953,24238,24264,20838,12254,11022,12083,10577,5221,4126,2948,3845,5474,4663,3449,2820,3082,3094,2456,2478,1730,2700,2880,2620,0,148,233,440,327,509,724,740,793,603,649,472,397,298,204,166,251,220,144,229,221,172,173,174,117,152,139,145,144,101,73,34,0,34,50,70,90,108,120,114,70,78,69,52,41,38,16,10,342,324,330,222,131,134,166,175,67,78,92,95,103,62,37,25,0,0,0,1,2,2,2,2,2,3,4,5,4,5,4,3,8,11,11,12,12,14,14,16,21,19,13,10,5,5,4,2,0 +0,3571,7153,10146,11737,17112,21047,24158,39275,39416,49171,82791,113460,112605,85582,111768,15597,23058,41182,42419,47856,57706,70810,63528,81273,91204,106648,135971,124134,129874,119270,112077,21605,20105,27042,23484,30314,23266,25885,23817,26072,15973,10940,9958,8160,5546,3420,1438,0,2,5,10,10,14,20,17,10,1770,3133,6172,7726,6614,7653,12215,59915,46076,41908,37998,30386,23328,27339,24473,17068,17534,21997,21933,23096,26818,32224,36895,26400,32744,36110,32504,42231,42005,54576,56871,31135,30306,37868,33034,24657,23869,20896,11290,7177,8440,9503,7448,6787,7490,6376,4706,4553,5836,5622,4585,3606,3252,2150,966,0,277,492,622,774,671,877,896,5639,4427,4968,3264,1867,2141,2191,2093,22442,17834,17084,28739,32898,24633,28433,33528,36156,24466,20268,17968,17058,13797,17211,14309,7053,5992,6930,6572,4995,4321,2774,1751,3271,3350,2630,2978,2770,2623,3452,3443,0,188,370,391,568,659,734,875,1080,986,763,737,550,392,256,162,340,289,242,316,294,302,223,232,150,131,123,145,166,116,98,57,0,22,46,86,120,152,145,139,123,96,78,60,58,42,27,17,476,503,391,225,162,239,250,315,79,75,70,105,108,91,61,39,0,0,1,2,2,2,3,2,2,2,3,4,3,4,3,2,10,13,18,20,16,17,12,17,23,16,12,10,4,5,3,2,0 +0,3404,7703,12022,13018,16793,23748,27286,46469,53452,82300,110766,121556,124219,99769,119091,11607,24744,32115,34430,40062,59561,57519,69058,97878,107156,104411,135817,102554,105620,108834,113249,14120,16154,21871,18540,25754,17979,22424,17574,18387,14060,8816,6983,6368,4368,3431,1544,0,3,6,10,10,15,17,20,12,1356,2853,4058,7386,6653,7560,8962,48053,43561,38680,28839,31228,27475,24443,21866,17446,26328,30280,32780,36336,39019,46453,50012,27863,41584,55671,58520,44869,49780,53612,64715,43659,38988,54486,41729,27062,27912,19878,12218,6141,6392,6700,5987,4458,5970,5216,3949,3494,4003,3993,3384,2786,2632,1688,708,0,291,444,684,766,1302,2502,2778,7186,5539,6258,5341,3804,3598,3527,4568,18654,17644,22936,30550,24895,22318,23877,23876,47808,33434,25194,20145,16044,18252,17664,16170,11728,8630,10351,7679,6760,6416,4565,2560,3446,3561,2488,2922,2514,3242,4319,3385,0,192,341,352,640,810,1035,904,1274,980,957,911,650,563,349,324,369,392,288,340,508,387,288,257,126,128,140,178,177,134,108,52,0,30,60,109,192,168,130,134,159,137,126,104,78,66,33,19,936,854,523,550,586,406,434,406,205,180,141,153,192,134,114,76,0,0,2,2,2,5,5,5,2,5,5,5,4,5,5,5,22,26,22,20,19,16,13,18,28,22,19,16,6,7,5,2,0 +0,4246,7305,9959,12047,20064,29658,27611,51763,93742,106774,152193,150204,137124,104690,114838,12050,17634,18936,23594,41927,56255,60621,58888,102130,105180,125190,120067,48841,85912,118833,131236,6545,9090,12210,15828,13451,15503,14000,14618,12879,9580,8525,5656,5883,4944,3153,1835,0,2,5,9,11,13,18,22,10,695,1638,2547,4751,5764,6866,6291,41878,28860,29802,22963,27070,23055,22499,20210,22768,35780,37822,54002,67367,71216,58727,60683,31051,41937,65918,81627,39651,54258,65204,71338,44516,41235,52973,42959,33100,25887,24088,16038,7221,7467,5371,5373,4138,4333,4944,4938,3027,2542,2676,2636,1929,1434,1475,748,0,219,492,794,903,2061,3746,3654,6440,7851,6692,6296,5127,4739,5960,5667,19884,22624,26111,32688,16169,19523,26678,26824,45983,37161,27335,22503,20738,18794,22603,26265,14348,12645,10879,10352,10740,7780,5804,4333,2688,2493,3244,3575,2404,3164,3786,4138,0,161,318,424,816,1110,1188,1146,1443,1019,1064,908,587,617,482,384,407,436,458,402,561,352,316,293,156,189,182,203,145,127,88,51,0,34,70,91,199,167,154,155,186,196,168,135,98,82,42,25,1338,1092,876,740,837,816,553,455,270,191,202,204,233,175,139,83,0,1,2,2,3,5,4,5,3,5,4,5,3,5,4,5,31,34,28,20,16,17,16,18,23,22,20,17,6,7,5,2,0 +0,3892,7923,14791,20026,27733,31474,35220,49093,82692,105542,124866,147890,136105,119000,127862,9808,11058,16906,20826,29816,43468,58449,74944,115228,87190,109243,85569,42179,88013,114910,127221,3448,4702,7415,8086,7880,8482,8224,7146,7391,7567,6289,3948,3068,2638,2066,887,0,2,5,9,10,15,22,22,13,542,1540,2240,3559,4296,3544,4500,48580,39166,24557,18752,21862,23789,18622,18982,22184,29366,40941,59956,63314,64098,73003,76998,32308,54727,68078,86127,73804,66494,80558,58218,56846,54098,47595,45957,40240,39236,26810,24776,11208,9846,6886,5372,3140,2619,3678,3052,2613,2536,1936,2044,1537,1497,1214,560,0,265,514,784,1280,2166,4658,5297,7283,6918,7286,7566,8480,6816,7827,8944,20654,26234,29102,23120,19061,20424,23827,24397,33467,28966,21877,24128,25489,23831,23007,24758,16566,14646,10584,10236,9784,8902,7336,5563,2366,3170,3118,2704,2454,3256,4183,4194,0,184,383,630,752,910,1151,1532,1750,1410,1276,969,809,716,408,368,529,472,545,520,616,454,323,332,243,211,216,189,158,128,82,49,0,52,115,162,260,290,238,246,245,208,180,146,125,104,44,26,1474,1564,1306,1109,1058,890,569,455,440,346,270,284,218,215,170,118,0,0,2,2,2,5,5,5,2,5,5,5,2,5,5,5,61,44,40,28,19,20,18,22,22,26,21,17,7,8,7,4,0 +0,6599,12847,24273,28405,24992,29450,44150,48709,69116,99005,127390,150921,139983,123906,145958,5696,25710,47148,57550,77516,91537,98795,92134,95566,90744,107018,192682,235288,187040,180253,236093,0,111,228,378,551,1077,1440,2908,3790,3836,2811,1738,1155,864,465,222,0,5,8,12,12,14,18,22,19,81,134,265,375,1063,1476,1558,40378,32720,31558,32536,42368,33355,37400,37557,29558,40231,39353,46315,66499,58877,40333,61868,45535,58575,57223,69962,59862,39532,37952,55114,66224,51616,55786,41961,38965,37080,27199,29247,14158,11816,8738,9101,6434,4342,3829,3401,2202,1967,1380,1482,1350,926,605,316,0,1416,2445,3610,5065,5263,6404,5333,6288,6256,5268,6688,10838,11092,15036,13242,22970,23310,23445,29993,34226,30752,42120,40985,29668,36764,37888,33464,28946,36496,33299,25661,14407,10801,9025,6459,2188,2898,3311,3493,2676,2902,2249,2506,2147,2477,3011,3453,0,172,314,586,786,1103,1467,1518,1537,1759,1410,960,884,804,780,536,655,515,556,404,159,183,249,266,296,278,188,128,116,79,77,38,0,53,113,120,163,175,166,215,286,338,334,308,241,170,154,86,1963,1670,1801,1476,1135,1199,1117,731,490,404,400,413,409,342,206,143,0,0,1,2,2,2,3,2,2,2,3,2,2,2,3,2,80,55,42,36,33,30,22,29,27,24,16,22,21,13,8,5,0 +0,5751,11778,17358,19118,23861,26298,30418,38357,68540,74143,110148,112474,107927,93757,114269,8534,22302,31636,45643,68695,82063,97782,87802,73623,95428,115002,173614,147146,161812,197912,228001,11281,10290,13054,11433,13400,11442,9471,12074,14464,10930,7861,5722,3189,2734,1296,734,0,5,8,10,11,14,18,18,15,61,114,224,312,903,1162,1266,39920,39810,37104,30444,55196,38018,27132,25618,22110,30063,36182,53043,51327,51384,52481,76674,41771,47670,37286,45259,66059,47336,35998,44063,99578,82742,68330,61308,51504,40689,32289,29155,11277,11422,10265,6704,6136,4036,3938,2756,1891,2040,2222,1927,1697,2131,2082,1838,1115,2036,4124,4414,6883,8098,9808,10652,5848,6855,5534,8268,10734,12693,12434,13428,20678,24227,23828,34810,25918,31714,35088,35208,30729,34614,26524,25597,28908,29456,40646,31094,15250,13164,7463,6398,3732,4461,4783,3846,3451,2980,2856,2740,2217,3424,3963,3980,438,638,515,987,980,1226,1770,1826,1941,1534,1142,973,721,747,681,542,801,659,540,354,194,244,316,274,312,255,250,193,139,105,106,56,0,51,91,100,144,200,164,242,677,712,639,532,444,426,482,454,1237,1294,1680,1146,1185,1180,734,540,365,476,504,518,467,348,454,392,0,18,33,42,81,92,79,123,18,28,36,44,50,62,76,94,109,116,150,164,228,258,230,180,124,121,134,120,101,63,40,20,0 +0,3494,7796,11783,16296,24198,25945,33065,44829,60029,83244,106670,90798,82670,94682,74796,14624,22403,31568,28899,70611,69213,74301,71938,37667,72258,96632,148653,110408,140744,151873,221562,23653,26171,24096,18924,24013,21534,16551,19894,24406,18001,15576,11194,6494,4165,2418,1303,0,4,6,8,10,11,12,14,12,51,101,152,268,693,1090,1590,50016,53927,40402,32668,51698,44337,27924,19713,11763,23781,41504,45316,51432,49481,60716,57773,48158,41201,33053,41261,66430,66228,48414,38152,106433,90747,71829,76482,52670,44322,35010,39211,12284,10319,8574,5797,4730,5074,3894,2640,1590,1672,2394,3414,2037,3237,4012,3717,1928,3130,4895,4938,9447,10971,10795,14792,5207,7317,7402,7558,9979,12174,14398,14671,27306,31006,30258,22996,20658,23740,27025,25325,37305,29297,24627,22974,33691,29049,35380,33943,13983,12375,9446,7660,6242,6914,5662,4686,3335,2887,3092,2607,3262,3072,4218,4602,756,940,908,1150,1274,1807,1758,2033,1811,1378,1414,1354,484,422,562,476,992,749,660,388,320,276,294,289,384,352,232,234,135,138,100,50,0,47,78,103,102,166,217,344,1032,848,824,674,713,825,729,743,989,958,1065,1250,1256,1094,578,385,398,380,523,542,584,615,604,498,0,38,66,70,140,128,164,216,37,40,57,75,119,130,158,183,147,156,217,314,466,400,364,317,218,218,218,174,152,91,66,38,0 +0,3340,6541,10651,18371,19948,22907,26416,36888,58988,64794,84258,79494,70262,76908,56204,16484,22836,22508,27382,51907,52393,61981,78126,26114,45850,54112,109128,87995,112682,139888,195722,30790,34716,38055,29316,37031,31270,29243,33856,37547,29712,28933,16786,11746,6686,3440,2016,0,2,5,6,7,9,8,11,12,62,115,150,173,496,778,1310,34943,32991,36831,36756,45502,33354,22974,15106,8762,21502,30808,36584,41049,56877,75839,67636,42565,43423,44023,48150,63670,53922,36452,33336,115354,89944,81354,69342,53907,46306,39428,33033,9544,8636,7075,4862,3051,3682,2838,2336,2011,2032,2156,3454,2878,4186,5065,4606,4058,5154,7978,6556,8206,9626,9549,14822,5916,7451,8572,9368,10438,14316,16139,14166,21517,28089,31193,25086,24115,23667,19666,20562,28945,34470,36156,26204,28342,38128,39725,37336,8362,9360,7090,7653,8875,7625,8268,7486,5216,5268,3328,2974,3534,4220,6322,5897,1167,1533,1351,1819,1641,2561,2332,2446,1833,1842,1476,1198,463,572,816,822,1121,812,755,534,372,322,262,292,554,512,319,252,204,183,122,62,0,32,70,121,125,188,259,340,1348,1200,825,836,739,750,903,845,1267,1008,970,1046,879,936,504,314,346,571,551,682,713,694,743,706,0,52,79,118,140,188,212,360,48,72,84,122,175,230,262,290,153,180,208,424,604,625,584,436,289,300,242,197,163,137,80,42,0 +0,4269,8347,12746,14876,18028,16028,13636,39047,54113,53042,61651,58706,60754,55135,52297,19731,17320,17770,18472,24700,53126,73835,88819,21089,44006,56368,63381,65860,89008,102836,204068,42843,46346,37374,37094,38345,38610,43829,46983,41096,33966,25758,18202,14236,10302,5139,2614,0,0,1,2,2,4,4,5,12,58,87,129,145,552,900,1101,34322,33914,25948,35747,35585,26980,25731,15537,7452,12429,18166,25909,40981,43609,67472,57388,51293,55594,44468,42868,42726,42106,30468,27926,91592,68981,50836,54150,64328,56048,38635,25088,5990,5321,5442,4050,2418,2173,2273,1816,1858,3044,4066,3694,4873,4790,6913,5950,5471,4571,5578,6972,9438,9991,9324,10938,6928,7231,10804,10871,14398,14460,12385,8613,22161,14554,13965,17876,20414,14058,9740,11826,32548,35417,29360,29500,32484,28067,37498,30460,6896,7582,6149,8338,8606,7296,9378,7124,5441,4565,3870,4007,3179,4887,5153,5589,1533,1522,1786,2296,2468,2550,3133,2648,2121,2031,1428,954,568,787,863,992,1677,1172,1064,633,314,317,237,316,610,508,511,426,228,212,158,69,0,32,77,141,170,152,207,336,1234,1141,1399,1232,856,1015,1175,1011,1260,1479,1378,1069,813,811,596,337,323,383,464,709,1045,981,946,997,0,31,72,143,206,270,384,455,68,93,154,221,253,270,330,403,135,392,541,627,708,706,669,482,394,320,362,263,220,176,84,46,0 +0,3448,6193,6897,8546,10295,11175,12384,30067,40260,42405,51634,64646,54600,69966,67298,25470,29670,38527,31056,29540,41355,57070,64178,13073,25853,41480,52616,57781,75812,93713,167113,37712,43668,35616,39724,60845,61970,53734,59355,66471,38202,25798,23802,34318,20490,7324,4228,0,0,0,1,2,4,5,6,10,40,61,78,121,487,607,989,50060,45869,32520,37580,35490,30646,22010,14362,4905,10848,14826,23024,46980,53988,76360,69598,69882,57596,39978,54374,54724,54738,41390,49358,82783,64768,58586,64600,76813,69535,34896,26508,4571,3983,4286,3240,1725,1574,1907,1708,1346,4304,6391,7333,6794,7271,11106,8832,13072,11362,8138,9495,19203,16573,13579,15463,8930,10776,16446,16630,12685,13801,12819,12628,19882,18335,22144,21222,17664,14846,13529,13098,30583,28193,30620,28882,22599,28446,27936,26910,7999,8922,10440,8336,6074,9398,11514,9438,7250,6361,6185,4771,5072,4980,5048,7416,1756,2249,2444,3003,2110,2485,3120,2622,1743,1934,2332,1453,1927,1706,1434,1458,1866,1608,967,692,425,388,389,378,501,456,443,381,181,153,124,61,0,61,119,203,347,339,404,460,1593,1284,1242,1414,778,1013,1280,1456,1261,1417,1443,1118,655,512,524,273,264,588,750,1317,1006,1278,1610,1896,0,40,84,148,261,299,369,419,225,296,392,409,438,420,387,399,409,468,582,722,1316,1089,860,828,552,600,569,478,494,361,228,123,0 +0,1978,4181,4950,4859,6113,6054,7228,20662,25135,33886,59024,69269,75327,66042,71234,38786,39975,46852,48493,28183,35963,36715,42416,11580,17303,24489,29632,34291,73497,99536,165181,51217,53988,49847,47281,85528,66105,74314,84174,73637,61616,33302,27802,46110,26699,12598,6413,0,0,0,0,1,2,3,4,8,22,42,56,97,371,612,807,60334,52597,53937,46645,34652,34056,24628,11892,3166,9930,16880,24632,47918,64091,68471,48402,83526,62663,53792,48252,62110,61624,58849,71360,114316,99962,68554,60305,85990,52219,31928,19999,3679,3165,2092,1310,1071,1020,914,1046,1103,3980,8196,11036,9327,9751,13726,14241,17203,13499,14308,14678,26380,21162,13545,14988,13455,13053,18577,22486,14000,10830,11266,8451,24896,24711,26732,23910,18700,14765,14613,15481,35124,33804,25157,20898,22383,29339,26566,22198,12896,9982,11421,9122,5795,9493,10156,12119,11723,8314,8042,6864,5700,6433,6692,6719,2723,2102,2394,2859,2028,2358,2708,2508,1997,2708,2528,2176,3285,2824,2120,1585,2182,1896,1344,806,478,502,436,417,482,508,377,295,154,109,68,41,0,85,192,375,522,646,608,760,1804,1710,1360,1710,1054,1113,1375,1297,1407,1744,1594,1288,598,405,294,147,131,668,1086,1542,1391,1950,2209,2200,0,48,84,140,326,432,394,376,325,468,536,482,483,665,628,568,754,835,795,846,1528,1352,1077,1002,889,794,806,684,759,510,480,274,0 +0,814,1910,2234,2182,2402,2582,4132,8531,18014,32754,54500,63800,67944,66110,76140,51511,60388,66925,58910,39541,29882,25327,26961,6852,9876,19588,21558,26128,58759,75038,136707,60621,58445,50802,71223,101946,75746,80826,89110,88214,52044,35232,36384,42828,30828,15218,8164,0,0,0,0,0,1,2,2,5,16,21,27,40,194,367,342,76411,66463,41481,38525,38630,28715,21833,11374,1414,12314,22589,23628,51230,57242,53655,65682,85920,71111,62948,48476,47483,66145,65647,70374,99934,88807,59810,70747,81935,53198,40227,19556,2158,1418,925,671,485,563,444,435,512,4364,8123,10445,13667,16264,21322,21434,22714,19209,17765,18155,28153,26738,15773,20131,16310,19083,15680,20712,15602,14020,9422,9182,25970,22394,28974,19395,18653,16570,19577,21603,26404,23204,21888,19719,14586,16992,16372,18378,15357,14928,17023,11725,7662,7833,9379,12424,13142,11996,7271,6379,6273,6960,6648,7337,3217,2417,2624,3424,2566,2781,2673,2945,3388,3381,4195,3338,3642,3196,2084,1764,2547,2181,1558,1054,692,504,416,381,476,396,395,270,190,126,87,44,0,114,250,377,522,904,908,1412,1908,1814,2564,2164,1755,1734,1951,1686,2011,1866,1751,1274,567,474,256,126,67,876,1490,1933,2151,2482,2457,3040,0,59,122,186,308,377,436,373,389,476,665,606,459,525,722,820,835,1104,1155,1082,1332,1164,1208,1053,852,922,1336,1007,814,596,478,242,0 +0,5828,13870,34751,44772,58832,57087,55899,55225,75062,70678,70161,99794,74786,60669,77740,69956,76640,62461,78054,70259,73569,55653,66669,66458,91408,90903,82552,106518,87444,83821,93084,98252,76313,55119,46504,31965,30914,30818,26352,22942,19892,19392,16017,17126,10464,5728,2337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68617,59662,48013,31367,20265,43210,58695,71229,110212,102111,139315,131318,144765,115429,100482,71412,73755,80172,83586,106493,123316,136908,116210,81855,81403,74879,45815,42976,36162,24414,22539,12898,0,2453,4573,8668,11730,17539,18983,17716,17060,14868,12434,10197,5093,11769,17005,17960,21711,22316,26464,27048,36882,35446,31457,29919,28014,33652,29690,27585,28072,29282,22065,16227,27379,30862,47076,50840,64294,60838,64926,45802,49357,49690,41247,42125,36265,31564,26971,19335,18357,11511,9270,7596,4750,4753,4979,7394,11420,9190,5666,4966,3754,4073,4059,5663,3369,5172,5311,5258,6348,5370,3932,5414,5091,3875,4282,3404,3937,2518,2160,1990,2636,2284,2261,3437,3541,3624,3645,3009,2857,2304,1467,1216,1088,788,432,197,0,390,741,1086,1343,1047,1266,1790,2331,2348,2389,3278,3571,2819,2042,2554,2922,3090,4698,5172,5826,5479,7747,5634,5678,5548,4961,3648,2238,2492,1917,3388,0,154,325,335,502,508,759,600,682,677,500,433,552,688,1044,1165,1034,1144,1111,1083,801,628,533,453,354,366,272,219,117,82,63,28,0 +0,7272,19472,28156,36495,42168,55043,50803,50637,52822,57832,65300,100068,88425,62820,85479,76799,69096,54657,77619,71898,63413,60817,83910,79289,80705,77383,81872,110385,102007,89331,81200,110842,90270,59342,39976,35334,35258,42235,40760,30503,29236,26114,22826,11682,9394,4855,2221,0,136,283,536,655,664,556,760,948,750,712,484,308,239,135,95,68482,52414,32000,26344,22353,37301,60523,95266,174346,157763,135598,142770,127115,112043,66004,57248,51172,72968,89054,112917,103311,115202,114400,86486,52783,54120,51165,42344,31661,31240,26460,12850,0,3016,5830,12026,16963,17041,23970,23860,16081,15354,16044,11256,7616,13466,16931,17846,22948,26732,25696,29696,29376,32756,24856,23633,30812,30000,22551,22997,34370,26365,17035,11074,30908,32420,46338,45922,57920,46263,53082,53806,51316,56028,49565,41150,23817,22962,23656,15158,18967,15398,10762,13054,9630,11304,11677,11974,14038,11682,9028,6138,3368,4778,6230,8648,3954,5494,5638,6036,5417,4263,4409,5663,4518,4116,3011,3288,3450,2746,2307,1751,2923,2806,2064,2884,3389,3164,4015,3356,2369,2150,1241,961,909,748,312,181,0,307,807,953,1117,1012,1102,1488,1750,2320,2187,2448,3379,2756,1713,2210,3945,4042,4770,5588,5432,6201,5270,5242,4170,4196,4296,3461,1907,1879,2008,3180,79,216,485,584,526,564,717,632,494,616,740,737,890,1065,1201,1394,910,1122,1068,1030,725,646,702,780,656,576,449,360,305,279,309,191,52 +0,11085,21133,29679,25841,36400,41444,39533,41137,47792,45277,41392,82170,88684,90466,82777,71902,65774,69712,78802,59684,71901,62938,86468,85635,72762,46144,62952,115944,89726,93246,109896,115364,107546,68180,38042,36211,43686,41149,41126,31445,39943,36308,27394,11480,8808,5150,2358,0,335,568,854,1367,1130,1376,1719,1800,1604,1326,909,545,442,292,238,59528,39156,29091,28433,31606,42523,50687,102522,195225,221990,179200,178230,116417,95803,63674,72349,38639,47183,71650,83018,74966,68548,76271,56944,49028,53558,45318,57699,30960,30092,21566,10338,0,4515,7628,15486,19783,16810,21020,28494,18111,13386,15345,12933,10291,10405,14762,14512,23772,27260,26692,27642,32513,23579,19629,18736,28547,23787,24782,19367,29424,24878,13982,7426,33002,35768,42548,34863,39572,38320,46588,41322,58223,59635,43744,39296,19726,17575,15952,11962,14490,12672,15506,21771,18036,16862,18529,19681,16944,12353,13134,9465,4547,6389,7866,9278,3447,4218,5094,5135,4340,4320,3510,5049,2664,2437,2045,2348,4409,3442,2788,2219,2855,3038,2604,2593,3648,3112,3742,2800,2170,1808,1320,1050,840,576,325,176,0,275,608,893,985,1095,1164,1322,1505,2519,3053,2458,2378,2267,1670,1976,5636,4127,3552,3428,3838,5269,5354,4278,3356,3533,2575,2459,989,1541,1598,2442,152,321,486,734,598,716,732,745,455,770,870,735,1422,1480,1518,1744,790,823,932,834,950,923,902,868,1161,799,786,552,521,536,455,338,125 +0,9752,20137,30422,29408,26960,38122,34768,41092,41702,31950,40577,58697,64718,65316,79238,68088,79836,105286,82213,64234,63477,69916,69744,59149,59077,37570,58260,88729,97503,86739,91552,123752,109458,64631,62944,47475,43168,51247,45786,37371,39578,34620,23814,10814,9848,5946,2678,0,520,1008,1244,2344,2420,3134,2847,2470,1836,2088,1332,916,734,491,378,62893,41972,26512,25207,28063,51790,69267,96821,161003,199660,213265,149763,87900,81414,47741,60726,25513,36423,67488,79799,62887,71635,78590,82610,52190,47238,49645,53924,33314,30668,16782,8012,0,6028,12306,17332,18665,19894,22073,35105,19582,20020,15610,14494,11746,10016,12475,13890,25749,21308,18756,22808,22452,18988,13104,12590,23577,18471,18652,19098,22679,15928,11263,6601,29950,35698,43302,33740,31437,31811,53220,37872,57729,43709,45530,29948,21550,18458,19766,15230,20142,17530,24868,22350,28956,32762,29293,26993,23885,19002,19445,12992,5567,8100,9629,10444,2872,4370,4639,4964,5630,4620,3667,5541,2681,2178,2205,2322,3662,3956,3264,2463,2706,3180,3247,3422,3509,3433,3676,2990,1444,1382,926,712,640,528,351,208,0,297,460,650,803,840,1080,1097,1924,2330,2408,2252,1836,1613,1607,1693,6008,5352,3821,3610,2980,3841,4706,3991,2970,3078,1969,1682,1017,1204,1211,1950,314,674,986,1176,1152,943,1168,1215,594,996,1036,1350,1748,1853,2295,2076,680,798,892,884,843,1044,1287,1240,1438,1278,972,820,762,655,793,555,173 +0,6448,12601,17056,25723,30583,28404,25249,48339,45728,60827,44064,38557,42441,55232,69633,93497,83842,62786,75777,91592,116368,106542,95837,59812,61410,84622,75538,62828,46293,35759,30398,124495,116048,112380,85562,51777,58231,52911,48198,47322,39142,40081,30894,14280,8476,4854,2724,0,616,1159,2199,2630,2652,3927,3348,3379,2703,2813,2109,1258,1117,869,531,49094,44903,53119,41190,32436,38572,49624,81284,171004,134920,88599,96240,100718,92385,60130,62787,14449,36440,55576,68002,74883,95289,88128,89786,57586,66452,54375,46274,39319,30847,14248,8247,0,8214,14615,18300,23295,20998,28429,30309,15344,15858,14560,14578,14904,10179,9148,12132,21596,19228,12198,14094,11303,10333,9648,7351,16484,12266,11742,12424,16748,14627,10579,6220,39232,43860,38844,39414,31500,35054,31166,37063,41599,44892,45005,39143,23564,26203,21767,14454,24424,25293,22278,23945,31744,28414,29260,33686,27634,19572,10811,7705,7222,5997,7650,12948,2536,2368,3181,3950,5279,7786,7835,5852,2018,2573,2969,2456,3165,3383,2553,1939,2108,2062,2449,2828,3290,2551,2297,1982,871,721,878,727,620,459,218,103,0,186,356,596,887,796,816,839,2272,2344,2823,2778,1998,1490,1618,2435,6984,5364,3841,2789,2161,1734,2025,2354,3689,2364,1906,1340,800,1447,2078,2004,468,491,610,1045,1459,1751,1973,1922,582,746,981,1526,2054,2360,2292,1830,745,680,598,658,908,1144,1389,1502,1776,1758,1403,1142,1060,1001,691,507,282 +0,5406,10582,13662,20852,23985,26469,23822,39367,41948,52262,47227,36594,29914,42880,42174,88794,90128,50835,74907,75504,83028,80902,85866,59252,54604,56876,59291,48407,31718,33206,29860,119466,119600,120542,91660,50115,63396,57149,58284,51992,38279,39789,31442,18804,11535,7640,3964,0,596,1311,1879,2799,3553,4167,3596,3967,2992,3412,2054,1318,1002,820,525,44494,59163,61450,52960,35694,44927,57176,77258,138280,120558,77891,88708,73308,71334,57061,44239,18168,31390,40896,56815,74218,83627,71895,62070,66130,51324,48668,41767,31001,23382,12831,6399,0,6765,11284,16558,25581,28657,33294,37205,24989,24006,26588,21404,30137,26696,17982,23206,15988,14598,11573,10474,8112,8058,9298,8791,19598,13274,12324,12345,13709,10923,9178,5130,49123,44486,40942,35075,30652,24801,26681,25968,43788,38524,34280,30644,17469,20604,17953,14273,23499,27825,29330,26077,34157,27150,26829,26194,21384,18871,11066,8888,10159,8561,9914,13790,1715,2155,2994,3619,4769,4820,6706,6464,1944,2560,2042,2228,3241,2938,2427,1676,1920,2020,1989,2409,2412,2328,1805,1385,823,705,897,726,457,436,218,98,0,192,426,567,748,912,1284,1414,2780,3373,4378,3356,3367,2924,2520,3392,4699,4524,4234,3965,2864,3096,3521,3265,4308,3362,2684,2260,1320,1498,2222,1779,615,832,1044,1512,2161,2167,2356,2384,1522,1518,1184,1707,2377,2022,1808,1842,553,662,701,768,927,1181,1479,1320,2136,1896,1656,1390,1362,1070,687,558,342 +0,4135,7438,10925,18527,22289,26185,19601,41830,43154,40390,41156,32660,29591,24618,30210,85658,69688,60482,77122,39954,76496,89812,87673,70643,66125,45379,39268,35934,31336,21521,19791,121381,96817,105050,97371,51331,72437,73662,76952,40463,38619,31668,31441,21910,13139,9812,5369,0,676,1159,1844,3618,2966,3661,3906,4372,4219,3166,2095,1272,927,757,581,40450,48594,66591,53662,39843,48229,61130,50537,159010,114309,68808,49792,54227,54086,35988,35502,15974,28161,42379,59176,58914,61209,50499,38544,54797,45903,40031,31116,27413,23363,12865,5426,0,4452,9584,12456,24263,33833,36106,35868,27574,28321,32297,27662,40758,33056,29317,25711,16244,13486,9860,9343,4694,5658,8722,11385,18881,16978,11934,9200,11139,7828,7924,5329,50696,47741,47286,35809,20943,17936,17192,19272,31520,21933,22418,13866,15129,16714,12746,16992,18018,19612,29496,21944,33148,27588,18618,17130,21880,15608,16466,13655,10786,9642,9780,15675,1251,1643,2458,2843,5454,4671,6068,6942,2372,2201,1926,1613,2686,2346,1594,1052,2507,2678,1958,1503,2689,1640,1314,1066,562,577,730,655,498,376,178,85,0,232,401,650,637,1018,1378,2369,4209,4022,4834,5046,3944,3648,4002,5687,4594,4976,4123,4947,3440,4535,4407,3729,4645,3524,3471,2931,1601,1481,1732,1428,983,1146,1454,1833,2873,2898,2652,2942,2038,1605,1734,2273,2457,1994,1744,1640,447,631,791,1183,785,1415,1644,1944,2363,1688,1752,1627,1495,1075,1016,828,481 +0,4257,7816,11326,12360,19380,19030,17826,32036,28630,30720,31664,23514,16964,14738,17086,61095,64060,48788,47223,34944,40954,55881,65800,51697,54041,39781,28661,27245,21378,13860,12728,110800,119432,92885,110376,94604,83586,89274,82038,51034,43752,31094,30810,23119,16747,12231,6094,0,821,1412,1980,3093,3782,3743,3850,4382,3558,3398,2172,1137,864,578,526,26668,40146,64733,66578,61247,59514,76750,63360,144821,89411,52478,39747,29844,32353,22744,19410,13045,23350,34090,35518,55324,48392,39668,35200,48939,42571,42110,27900,26934,19765,11122,5691,0,4430,10174,14450,19839,29802,36146,31046,29422,34626,29698,42286,68592,44547,44310,42443,9171,7778,6541,6470,5082,8056,8395,14531,17261,15998,13506,10127,11198,8025,5434,3712,50755,35576,45656,35574,17260,17630,16382,16326,15146,14310,17337,12502,13736,13053,14199,16080,22434,26776,43185,42406,35657,33294,21064,24876,27292,22979,20328,13902,10960,10628,8246,12392,1106,1826,2214,2670,3390,3742,3828,4336,2472,2156,1800,1884,1917,1653,1213,786,2530,2446,1460,1360,2034,1324,972,963,733,606,758,572,357,249,144,68,0,192,378,762,840,1236,1456,2562,3738,4401,4607,3674,4722,3813,4014,5584,6260,6120,4662,5554,6807,6366,5712,4813,4071,3405,2673,2490,2617,1984,1672,1080,1401,1360,1552,1818,2931,3051,3415,2920,2484,2272,1724,2178,2163,2226,1504,1516,245,507,877,1064,1170,1481,2140,1744,2146,1894,1851,1862,1439,1184,1132,666,532 +0,5765,10527,15853,24815,29213,37027,31634,29727,26777,23125,18650,8970,8725,10161,8214,53771,58158,68074,68653,89298,58592,52559,55610,46006,39105,25982,28293,34105,18472,11575,4664,113095,104342,80080,45940,19237,29156,39738,37298,46296,37348,21307,16332,7894,5825,3848,2011,0,322,723,853,1215,1149,1616,2868,4134,4527,4334,3365,2678,2182,1012,602,15566,45006,62758,70202,81005,99951,106742,83608,83268,80648,63033,48795,44129,27772,21516,11608,15177,12241,11216,10353,7071,13117,22381,26715,42572,38355,25435,24119,31223,22793,11875,7044,0,5096,10214,12178,17460,30097,40229,47844,40736,46933,47792,48286,63964,74938,60957,58056,2824,6036,11991,15032,21799,24612,30195,30214,22126,13120,9824,7370,5373,3762,3170,2174,37596,37447,50796,47065,37571,33004,28384,19914,4890,3894,3307,3450,4933,9545,11260,16981,28948,33634,38732,37688,48343,49031,45515,30210,28659,19221,16748,15515,16690,13341,16058,14833,1409,1571,1563,1495,1906,2610,2714,2781,3014,3072,2772,2532,1725,1115,1023,478,1907,1572,1488,1358,1666,1746,1337,1358,929,916,870,836,585,391,303,176,0,626,1499,2072,2965,3161,3757,4217,3890,4081,3642,2937,1450,3557,5222,5683,7376,7840,6459,5054,5246,4693,3982,4594,3848,3060,3495,3519,3417,2982,1879,930,1475,1368,1066,1624,1831,2167,2640,2489,2978,2462,1605,1836,1905,2108,1671,1393,0,121,238,424,486,912,1384,1668,1701,1853,1701,1434,802,754,717,646,542 +0,4398,8375,14386,17532,26866,33559,27900,22818,21762,17354,11503,8613,10218,9702,7384,41084,51268,60540,75322,91061,83242,49778,55356,35210,33704,26098,26256,21527,15595,11956,5494,112198,90652,76122,53685,26860,31205,36907,51445,31144,29272,18934,14658,9914,7020,4471,2328,0,698,1403,1710,2412,2542,2400,3366,4250,5044,4940,4048,3441,3288,4026,3254,11864,37656,52549,57709,92620,89139,87455,96584,88222,87237,64058,69129,64184,60661,61882,38986,40475,33903,28965,23148,39278,45522,44156,44066,28437,31330,31346,29230,27880,18988,10032,8549,12520,15470,20663,20787,18036,33002,40610,40866,43135,57092,45862,59372,45394,55814,67908,71454,4975,7703,12344,12534,21973,25058,23848,23075,22926,13328,12057,8686,5320,5230,4469,3334,23940,31744,40004,38468,37390,34891,28160,17248,4797,3942,4027,4046,5512,6582,9833,11126,28910,33122,37344,39118,47906,40140,43301,32519,30195,25206,17082,16658,13320,13587,11421,10277,1894,1503,1907,1812,2227,2072,2185,2512,3828,3188,2968,2234,2005,1838,1334,1049,2823,2443,2449,2414,1837,1620,1121,980,753,742,541,609,458,334,306,156,0,590,1383,1716,1918,3020,3033,3338,2754,3349,3781,2634,1903,4449,6348,6038,8132,8005,6552,5726,4846,4591,4162,3483,4208,3719,3035,3766,2576,2390,1684,1210,1354,1162,1332,1566,1718,1934,1974,2626,3244,2306,1596,1555,1968,2017,1934,1676,98,162,248,372,495,731,1342,1410,2120,2136,1433,1135,1074,946,1055,894,515 +0,2676,6526,9648,14124,19208,21620,24526,19714,15109,15698,11545,10988,8160,8095,5342,42794,43254,52262,69501,69344,54538,57802,43974,25079,23830,19038,18871,16726,11709,9622,6142,84130,87298,72910,50323,33728,41761,50820,54722,26180,24910,18814,15945,11300,9444,5481,2748,0,966,1790,3051,3468,3165,3643,3614,5792,4732,5342,5686,4240,5795,6258,5916,12680,35352,53190,60037,91956,84252,68510,105235,72077,65542,86764,88223,88272,78594,81668,60901,59796,46547,40526,42045,66279,69810,83938,75645,22859,31644,31482,34879,23573,19761,12305,10761,20976,27474,27348,22964,25406,23962,29594,36413,64817,71508,57987,69420,37201,38450,57064,54006,8874,9850,9486,11659,21934,22636,17526,16699,19877,19942,15463,14816,6891,6271,5737,3483,21518,27026,30519,24724,28188,31169,23960,14246,4988,4276,5151,4679,6181,8770,8882,6919,19829,20862,31487,41280,34643,41510,35332,31280,21993,24790,19812,12907,10450,11708,9220,9338,1830,2136,2110,2228,2105,1984,1414,1905,3876,3320,2394,1848,2553,1618,1233,1507,4255,3843,3214,2947,2246,1639,1045,1036,598,452,468,456,320,272,237,110,0,504,1074,1409,1675,2431,2832,2824,2590,2470,2986,2702,1737,3771,6481,7028,6408,5834,5426,5109,6159,5007,3739,2971,4188,3472,3758,4544,2500,2096,1844,1388,1664,1273,1154,1106,1433,1352,1704,2280,2459,1560,1398,1107,1509,1257,1553,1673,196,298,305,382,392,537,876,939,2105,1553,1688,1180,1253,1050,1131,757,400 +0,2130,4338,8873,9691,12221,16742,16928,15182,12510,11488,9217,10799,8967,6635,5418,31957,40392,35828,53327,51715,46552,51983,35658,16752,17290,17907,15210,12232,12744,11720,6573,59807,63872,41913,36996,28843,42086,43105,46829,24859,26720,23732,17370,10737,9091,5294,3315,0,980,1841,2808,4147,6018,6113,5862,4768,5729,6302,6420,6402,8791,8534,10160,14193,28900,42099,41802,65645,78102,72202,98186,70896,63402,109222,101718,80036,80364,81140,80119,56042,54308,63036,55036,83948,87538,84980,84636,21642,21574,25628,29320,23464,23545,15267,20804,31344,32240,36380,37046,31460,34172,36994,39647,67600,59290,57361,66862,45430,60128,51007,51489,8816,9742,7082,9844,13270,15960,14893,12806,24994,18804,20733,15074,10888,8333,6504,3646,22074,26834,26933,20891,19440,20090,18472,10565,4695,4780,5003,6039,5776,5824,7884,6366,13670,17582,22161,28186,32480,33504,27189,25020,27623,25522,24688,18768,8916,8970,10392,8590,1497,1698,1648,1769,1440,1509,1335,1464,3673,3202,2336,2246,2414,1708,1478,1514,5138,4608,4418,3500,3055,2246,1305,926,606,414,375,432,292,266,159,98,0,455,750,1098,1786,2263,2708,3116,1553,1868,2211,2504,2086,4632,5523,6500,6645,5268,4988,5352,5240,4516,3569,2440,3285,3276,3216,3556,2807,2650,2586,1894,1696,1276,1200,1395,1562,1700,1858,2306,1787,1357,1066,1183,1573,1496,1786,1582,342,438,412,384,470,622,835,799,2257,1902,1655,1046,1269,1214,1168,740,523 +0,1499,2973,4847,8845,9502,7459,5980,7225,7764,9716,7480,7204,8450,7162,5866,18695,28036,39944,48521,47054,29514,22130,23916,11237,14645,16725,14173,13708,10798,9918,6292,26797,29693,34610,31970,31514,43157,51564,55577,32872,19292,14707,15946,13472,12713,8220,4114,0,1316,2945,3204,4945,7350,9285,9908,5838,4402,4608,5697,7861,10343,10357,10712,16748,21421,34759,49330,55575,56810,52829,68725,65382,75301,82811,78429,106962,88359,89609,83427,71403,64055,78588,100345,97764,93718,92516,85726,15851,15862,15755,20513,29873,37800,40832,39103,34639,36920,39326,47310,40874,36826,45165,45425,56822,70700,61523,53588,51000,49454,56343,61409,12350,12535,11899,12599,10872,9582,6404,6455,26718,18232,17037,14447,11732,7357,6536,4549,17652,16794,16922,19122,17702,13939,6980,5285,3983,3700,3652,4322,6284,5538,4371,3940,7614,9389,9788,15658,20792,15598,16148,17585,25359,22311,17713,13819,6976,7164,8194,9026,1872,1602,1602,1259,1476,1418,1360,1189,3986,4092,3549,2908,2871,3037,3176,2394,5570,5747,4378,4548,3342,2732,1597,1098,582,551,586,550,344,277,185,86,0,466,836,1040,1460,2154,2130,2300,641,953,1166,2000,2408,2714,4008,5469,6225,5173,5968,5053,4424,3375,3504,2214,3144,3427,3585,2866,2812,2456,1528,1618,1196,1071,1036,1397,1612,1594,1464,1642,1139,1059,1089,1397,1238,1576,1438,1297,607,456,483,618,623,805,825,796,2577,2247,2014,1395,1135,1135,996,892,778 +0,1084,2146,3507,6202,7042,5676,5380,4839,5336,6578,6368,5044,6157,5781,4706,10816,16306,31036,32832,31790,24124,16402,16856,7947,9952,10500,12746,11939,11113,9764,7610,27361,26692,29064,34038,31251,37684,35030,41870,29550,23538,15120,10872,11085,7732,6994,3252,0,1298,2516,3650,4857,7019,7046,7622,6124,6460,6149,6728,9981,11588,9765,10768,16032,23036,27782,42486,41025,47960,55710,78802,68070,73311,73566,84660,117667,94893,123500,103283,84575,76496,102641,104924,86592,93522,106912,108474,36912,29826,26667,26908,41434,42729,48959,51438,36362,29442,37552,37200,26511,31154,45939,41370,67318,64822,72151,59919,39199,53584,52041,44108,21370,16746,14664,12744,9076,8494,6600,7036,28151,19200,14479,10951,12163,8596,6522,4216,16525,16998,10978,15332,13439,10774,7022,5636,4508,4682,4982,6338,7136,6648,5783,4771,10930,8213,11251,13774,20062,19548,14764,19775,17273,15368,14326,11549,9526,7208,6151,6183,3948,3274,2667,1626,1779,1757,1846,1762,4154,4772,3441,2980,3133,3558,3431,2702,5478,4762,4134,3777,4631,2998,2159,1442,410,496,492,428,257,202,141,68,0,336,655,868,856,1232,1406,1878,501,795,1323,2228,2859,3778,4461,7126,6088,5860,6918,4418,4269,3622,2791,2098,2678,2456,3426,3034,3171,3206,2539,2218,2086,1664,1593,1806,1648,1448,1535,1894,1436,1308,1234,1008,1176,1106,1001,1202,886,858,967,1040,917,1049,996,1056,2631,2218,1802,1798,1566,1134,1080,850,738 +0,863,1502,2174,5139,4546,4161,3560,2483,3320,4143,4555,2955,2520,2650,2644,7901,12068,13319,16608,19780,19498,14250,13128,6305,5988,7761,9292,10879,8287,8828,8956,19914,26382,24530,27048,22368,26450,31231,25740,29274,19551,15828,9369,6120,4352,4054,1792,0,1400,2479,5142,4487,4946,6456,8293,4727,6849,7800,8122,16261,15042,13276,13712,19471,25843,29800,35071,46633,54713,66545,95509,56154,69883,67664,88519,149236,166047,136012,104214,77599,89201,97859,136121,118032,93768,103408,106448,50108,42350,33216,35827,45227,38161,44120,39148,28662,37336,34374,37296,22278,32144,42566,58439,60317,60184,58948,52106,38313,42120,37466,33381,24536,17601,18811,14123,7771,7924,7873,8292,23074,17165,16035,11376,12661,10174,7074,4714,14340,10252,10455,10610,15566,9982,8855,5714,4436,4980,7724,7632,6382,7313,6296,7524,11320,9474,9079,10985,14408,14036,19037,19531,15509,15183,14784,11457,9710,8055,6688,6726,4829,3196,3136,1744,1636,1676,2010,1659,3134,3134,3480,2767,3076,3777,3926,4733,4450,4251,3302,4024,4691,3610,2010,1114,404,389,254,194,108,104,68,41,0,236,426,446,590,864,1156,1252,390,737,1192,2222,3260,4530,5600,7590,4001,4568,5682,4459,2829,2115,1769,1657,2280,2535,2492,2756,2570,2970,3094,2322,2420,2043,1911,1851,1794,1583,1888,1675,1386,1129,1106,845,756,820,894,1185,883,919,1186,1413,1004,1227,1418,1736,3114,2838,2446,1950,1555,1102,988,675,521 +0,458,741,1050,2990,2882,2410,1848,1142,1630,2188,2446,1714,1650,1526,1350,3332,4664,7214,8071,9976,9650,6642,6836,2870,3730,4650,5370,7831,9167,9633,11212,16754,22152,21447,20297,24307,25625,26614,22112,25162,20196,12966,9540,5609,4776,3606,1978,0,1404,2079,4087,5941,6804,6434,7416,6068,8506,8844,9842,16074,15862,18244,13257,18601,25606,31917,38129,53504,57290,77616,93712,71480,69458,67328,104254,151868,160661,122411,105716,99764,115788,128727,110364,108608,97802,102881,104376,72876,78048,54450,45040,42990,40717,33578,39115,43874,38198,29358,34943,25824,31545,43252,52772,71081,63874,57353,49566,46579,38374,34783,30179,27675,21313,24422,18024,9088,11193,11107,8213,16582,14584,11934,11934,11668,9388,6106,4796,9726,8068,7884,7980,9076,5819,5564,4540,4408,6322,8476,7545,8119,9736,10357,9668,12536,8907,6865,8587,10756,12560,14129,20213,14452,15674,13450,10795,11018,8562,7367,7182,5302,4322,3312,2002,1531,1941,2453,2004,3158,3636,4018,2624,2798,3338,5036,4886,5488,5000,4802,4504,4493,3521,2028,1285,232,228,126,114,64,52,34,23,0,134,234,257,350,444,678,590,210,881,1403,1888,3293,3566,4142,4940,3735,4572,5874,4972,2960,2250,1432,1360,1743,2066,2167,2891,2278,3122,3498,2792,2148,2626,2366,2286,1891,1670,2096,1639,1456,1282,1040,850,1002,986,792,1020,895,1000,969,1421,1604,1480,1533,2159,2328,2538,2384,2114,2070,1748,1607,989,668 +0,757,1407,1784,2163,5502,10396,17121,19926,21214,17539,22191,29510,30643,33818,32444,20699,14903,7348,5517,2180,1586,1094,574,0,2526,5074,9491,15039,18454,22045,24888,23131,25330,37205,32558,30119,27725,20272,24294,24282,15585,12096,8214,3558,2611,1413,787,0,62,114,162,166,412,633,900,1177,1435,1461,1724,1858,3670,6761,9164,8578,9890,8728,7639,8801,9067,7701,5238,5375,3817,3734,3286,3896,2626,2299,1142,0,2150,4094,5809,8154,10489,11077,12569,13036,13082,14307,14507,13080,16163,14598,12870,10088,7501,5464,6784,6720,8783,8378,9888,9508,9843,10550,9399,9519,16215,20629,24735,21099,33733,40848,44352,40667,38951,32555,26698,27128,27054,20416,9757,3453,3976,3668,3151,3281,2642,1954,2462,2200,1558,1355,1558,1882,1505,847,709,660,555,318,167,0,16953,32838,35793,53209,60467,66699,59177,60754,81825,90284,106582,107215,105888,71866,74591,96912,69096,43014,30071,14357,8329,4331,1831,0,0,0,0,0,0,0,0,0,5659,9687,12188,17277,23002,22766,26924,36250,36591,41622,40238,27398,34066,34417,35451,28272,36962,37985,38316,28298,25563,23673,17572,5706,4978,3053,1975,1609,1074,756,354,0,3462,6419,7244,9678,9032,6872,8873,11975,16535,16012,18913,21196,25104,23764,24123,23284,27068,23140,20211,23348,20273,18364,12912,12811,10118,7705,7016,9585,5678,3239,1918,0,0,0,0,0,0,0,0,0,254,426,638,760,877,782,732,899 +0,588,1258,1694,1696,4169,7790,11195,12274,15664,18052,19282,27458,23558,34031,29196,47434,32530,17122,14568,7607,5830,5414,2240,242,2192,4928,8370,14346,15845,17697,17913,27319,34477,39950,39167,26971,30103,29774,22236,23635,18545,13664,9990,4817,3501,1600,974,1662,1746,2069,2280,2870,2286,1325,1091,1053,1459,1736,2016,2476,5142,7977,8205,7296,6534,7084,5940,6762,6515,8508,6258,4333,4406,4164,3535,3318,2215,2246,1035,0,1674,2963,4999,6928,8137,7156,8111,11842,12976,11966,12580,11191,13478,14108,10972,9456,7856,6036,6789,6953,7208,5727,6293,9960,9477,7862,8530,10868,11672,17056,16831,17689,30473,44120,46890,41234,42998,33046,29756,31728,22209,16462,10866,6354,4270,5365,3580,3696,2690,2849,3088,2117,2326,2404,2486,1984,2028,2384,1806,1487,992,566,350,10194,22887,27073,39734,48872,58874,57949,62300,64642,71568,81978,91474,98744,89670,74021,66756,131976,116514,85265,41112,16603,11484,10308,4406,0,0,0,0,0,0,0,0,0,4675,10660,13578,18679,19921,23534,22968,27353,30730,37349,37304,33899,32360,39370,33735,39986,41910,38637,29992,30840,34277,29714,18476,7595,5236,3969,2793,1504,1212,1250,658,0,2607,5218,6882,7716,7656,8505,11158,15352,16574,18433,19235,18000,20024,22467,23496,19389,17478,21968,21155,17906,15081,12584,11796,9553,6990,6258,7764,8657,5649,2611,1472,599,521,426,447,450,360,184,162,1383,1006,890,944,832,902,1030,1185,1295 +0,416,994,1671,1312,3704,5684,8355,10744,13827,15964,17952,21231,23439,25980,16220,60171,40168,34373,23980,12742,8801,8300,3854,521,2287,4792,6007,14958,11903,12744,12870,23798,23261,33900,36547,23912,22480,30554,24380,26607,16712,11910,6706,5373,3784,2310,1566,4039,4083,3688,4784,5198,4436,2658,1589,1234,1800,1880,2886,3825,5175,7106,6374,6106,4667,4002,5208,4523,5153,6609,5145,3287,3670,3529,3068,3128,2003,1720,924,0,943,1928,3182,6107,4798,5778,6632,11427,11408,10928,13191,10318,8368,9646,10597,7176,5939,6756,5847,5838,5517,4804,4196,8322,6861,7120,5259,8846,10570,8988,10764,14910,28850,37056,48371,39137,42008,36826,26011,26518,18248,17698,13376,9410,8724,6484,4452,4082,2898,2913,2646,2129,2648,3966,3922,2441,2958,3576,3371,2029,1840,1086,568,24225,25649,25784,28866,55308,70882,70032,72625,53330,70332,74036,86659,59506,59027,63342,74736,191202,172652,100953,63420,23275,17183,12892,6799,0,0,0,0,0,0,0,0,0,3758,8294,13170,15994,19044,18270,21283,17488,30437,38670,29988,36713,40780,34113,30401,41731,38046,29144,28626,43183,29075,28906,19426,9386,8121,5225,4035,1996,1514,1530,836,0,2804,4800,6785,4018,7458,8896,11063,17006,18475,17096,17167,20581,25388,23914,18282,17934,17742,13686,12413,8817,8371,11810,8643,4987,4476,5056,6708,8664,5994,2792,1524,1122,979,970,894,1037,688,444,338,2742,2402,1295,1796,1283,1149,1008,1274,1392 +0,620,1333,1566,1550,3132,3777,5932,11657,18515,24021,25523,24467,25300,22465,11546,69505,48651,36020,23614,17819,16726,18030,8952,809,2014,3288,5109,9719,9365,15006,15923,27036,25149,38109,33908,24934,23546,23394,20184,22780,18356,9910,7294,4238,3068,2548,2118,6500,6624,5588,7260,7360,5428,5317,2940,1144,1956,2279,3382,3700,4246,5981,6740,3921,4251,5074,4837,4842,5938,5630,5036,3983,3120,2984,3292,2749,1924,1938,950,0,876,1453,2870,3978,3911,3938,3417,8240,8082,7242,8637,7316,8524,7872,8228,8628,7590,8033,6298,5751,4884,4674,5601,6684,7124,6087,5920,6630,6539,6275,8411,20095,27820,28586,36934,40590,33520,38322,34314,34193,32920,24871,18052,15982,10456,9277,4733,3639,3314,3632,2812,2194,3708,4318,4342,3954,4380,4742,4500,2943,2219,1325,672,26754,24986,27001,31576,47353,54294,56814,79188,52692,62560,64482,76024,64593,70367,85939,87967,161049,166382,98218,72502,25380,25074,16676,7676,0,0,0,0,0,0,0,0,0,4409,11254,12520,13448,18606,17736,17314,17021,24712,38087,34633,34669,39833,39070,52310,40144,28860,34872,26322,34148,27222,22354,16706,10419,9036,7465,4989,3274,2319,1760,992,0,1638,2802,5088,3156,6402,9798,10570,21928,14740,13361,17046,15560,19832,19694,16191,16490,16645,12456,9954,6332,6490,8075,6000,3506,4125,5073,5760,6549,4664,2641,2311,1816,1846,1438,1253,1361,1172,777,588,3970,2560,1487,2038,1525,1578,1424,2054,2105 +0,514,1036,1382,1929,3132,5294,5343,15805,18622,21141,20280,21360,18090,10881,7242,67191,58048,54414,40042,30400,26124,14777,7163,850,2213,4122,6279,7249,7800,11534,10068,25183,22535,30239,34417,28393,22032,23691,19172,24288,18787,18834,10076,4986,4956,3333,2873,6857,8888,11338,10970,10202,7373,5546,2742,776,1752,2598,3344,4398,5221,7140,6229,3223,3531,4886,5175,6236,4284,4424,3602,5381,6042,5336,3690,2510,2064,1567,713,0,460,974,1210,1749,1674,1971,1844,4948,7432,7593,7266,6348,7543,9585,9024,9059,7500,6622,6410,4414,5620,7301,7844,4513,3790,4186,4300,4668,5018,6117,5665,28072,33621,39080,28013,30308,25390,23517,20689,37480,31455,19998,16908,18766,13781,8056,4995,3165,2713,3043,3785,3310,3412,3386,4016,6023,5250,5312,4946,4418,2995,2033,1149,34855,31610,39646,37763,32325,43750,56116,83597,51105,62643,70637,61345,62752,89849,100101,93170,187000,180676,134064,93338,33206,20558,12960,5340,0,0,0,0,0,0,0,0,0,4582,8043,14760,17362,13077,10210,14176,14779,22914,34100,41308,34920,36047,50232,66537,47643,42366,55558,49716,34518,30547,16740,14111,13405,9888,5731,4999,4180,3364,2830,1184,0,809,1782,2600,2881,3832,5074,7598,21339,17848,17458,14917,16294,14760,9287,11870,17222,14595,9189,6019,3282,3118,3083,3746,2454,3455,3333,3290,4864,4630,4026,3387,2681,2115,2247,1810,2256,1865,1832,1054,4214,4414,3289,3174,2130,2697,2499,2658,2820 +0,367,738,896,1757,2766,3679,4422,9396,14786,15807,15906,16446,14238,7653,6344,75651,54616,51543,41908,40762,33187,19755,12748,3204,4790,7325,8758,7372,11406,11831,15830,22064,24687,32613,30669,32971,23836,24900,20666,24324,15796,14594,12886,7799,6176,4501,3229,9159,10948,18314,15776,16233,10456,6623,4030,584,1578,2025,3535,3781,6200,6379,7836,4719,3522,3944,5466,7112,5828,4220,4371,6210,4520,4196,3512,2992,2174,1503,780,0,398,650,962,962,1080,1082,1202,4170,5283,4684,5730,3574,5264,6066,6784,6951,6064,5935,5000,3063,4564,5752,5451,3109,3366,3536,3306,2740,3890,3665,3980,27018,32121,35743,27054,44736,36705,33951,29448,32600,23898,21356,20624,21502,16108,10300,6825,3051,3588,2803,3692,3423,4528,7132,9346,8984,7306,8153,5465,4608,3494,2112,1164,28646,40977,39435,48288,36257,55250,59768,81174,58079,59228,55351,65166,53469,82648,90839,71420,394162,242357,180076,112724,49117,40637,24862,13132,0,0,0,0,0,0,0,0,0,3290,6250,9871,11244,11920,15352,16056,17158,24024,35845,29316,49039,52988,65952,74206,52566,45320,49495,42431,37107,26326,16119,16362,15109,10890,9249,6147,6235,4140,2897,1467,0,992,2281,2380,2900,5464,5568,8162,14912,19762,15802,16139,17704,13653,9585,11474,15442,13117,9513,5421,3326,3790,5047,5711,5144,5316,4602,5157,9390,8593,5690,6238,4888,4257,3980,3686,3345,3348,2963,2516,5146,3946,2760,2654,1824,2528,2633,2666,3032 +0,400,674,872,1318,2388,2918,3716,6149,10368,12006,15982,9884,6982,6366,4398,59477,48855,51655,34896,56979,38579,27614,17306,5116,8433,10446,10948,8930,9652,12854,17259,20661,25706,24874,18774,26918,22560,24952,23983,18011,16766,13645,13774,10445,7034,4985,3393,15874,14927,20697,16605,18656,11917,9982,4426,243,1301,2370,4021,4990,6984,7313,7676,5948,4046,3813,6660,5778,5144,3901,4146,5064,3585,3268,3611,2551,2094,1586,926,0,278,546,842,546,638,610,779,2732,3628,3648,4395,2372,4042,4894,5687,5388,4765,4310,3618,2864,3402,3593,4293,2978,3145,2914,2271,1522,2146,2612,2822,32862,39456,33838,22118,45056,34794,36645,27770,26646,23691,16223,22220,20624,20309,14429,10306,3233,3723,3625,3358,3328,6352,8508,10968,15232,11037,8786,7279,6016,4974,2368,1223,29070,40503,45572,41827,47813,74430,90750,105281,63447,70572,63094,55506,41637,47054,66726,55822,472640,404950,241540,162770,77422,57400,46403,25722,0,0,0,0,0,0,0,0,0,3105,7178,10081,10503,13925,15784,16516,26461,24702,31742,28096,57048,79878,77648,81402,42721,52722,45273,35525,30600,22853,16302,16271,15486,11284,10038,6826,7233,6567,3918,1983,0,878,2106,2310,2174,5150,8396,11839,13805,15832,18916,15952,14343,13423,11084,12660,15841,11824,7733,5312,3141,4786,5524,6378,7212,6150,6652,6437,12835,8546,8255,9454,6662,6564,4648,4469,5993,5778,3846,4032,4826,3863,3301,3221,1200,1518,2574,3854,4290 +0,154,356,413,785,1331,1705,1749,3411,4972,5448,6787,4726,3707,2568,2252,70782,57712,47793,44904,64338,39243,27466,17997,5884,7307,11151,13442,15113,15913,13988,18567,20942,23633,27429,23324,24331,20144,19289,16329,14879,14248,13031,9934,12488,7945,6006,5474,18988,24686,31598,22622,16918,15666,11224,5246,106,1038,2180,3092,3757,5540,6279,7978,5300,5002,5623,6396,7079,4874,4009,4110,4369,3992,2951,3104,3040,2001,1831,908,0,128,306,444,290,317,344,415,1543,1635,1637,1584,985,1720,2252,2916,2317,2676,2294,1792,1234,1774,1559,2068,1521,1636,1568,1192,675,1136,1193,1146,31613,31868,28010,24621,40258,33674,31949,27300,30910,32788,20705,27206,23391,23887,20478,14476,2653,3306,4656,3926,5138,7202,9884,16766,19616,15131,11694,8486,6593,4890,3558,1710,34786,49316,43580,51820,55292,81212,66910,94066,72443,66794,43860,39950,40463,40639,39754,32917,413263,361170,224652,170042,146742,86500,54960,23854,0,0,0,0,0,0,0,0,0,2754,6611,7920,12332,13930,18589,21936,28686,29910,34642,40696,47984,69908,71809,65412,31396,41247,37718,37624,26289,23895,16330,12970,10427,9596,8614,6921,6914,5432,3856,1879,0,1083,1882,2171,2253,5298,9737,9506,14984,16936,14380,16302,11596,13660,11670,11403,12338,10126,6404,4910,3596,4278,8145,8296,8988,11870,11304,11018,12136,13026,15925,12772,7265,7366,5038,5616,5544,4244,4944,4664,4204,3596,2898,2404,1360,1846,2543,3123,3883 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62127,59684,71612,65214,60962,49630,39684,25867,7218,8868,13779,15786,19820,21973,23231,21388,20442,23625,30556,24799,23932,24890,18632,12403,10177,8295,7856,9863,9322,6141,4616,5083,27172,24488,28582,24913,20889,16098,9208,4963,0,2238,5576,8108,9081,12456,12589,13743,7011,5278,4373,3347,3579,3555,3589,3995,3918,4398,4881,4322,3124,1994,1571,753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25176,22101,24452,21500,11445,14230,15240,23452,29354,35464,37803,38784,29011,21446,20334,16209,2345,10934,15990,20606,21015,25702,29281,24849,21008,18324,19752,21834,18253,11712,6052,3033,51974,44276,25965,20290,24691,38380,44188,51485,62460,48893,28538,19496,6552,5345,4430,2002,553573,476572,510933,508509,382949,272691,250182,108901,0,0,0,0,0,0,0,0,0,1396,2964,3476,5306,9866,11373,22082,29404,21300,21766,29371,31482,48761,53589,55824,29360,32700,35640,37296,30379,22968,12525,10211,9346,8256,5448,5133,5705,5044,2831,1275,0,2839,6427,9308,10430,10331,7308,8590,12438,13481,14495,9648,9239,7122,7206,7958,10315,11211,10336,9275,6877,6445,8612,10950,9774,8415,6798,9200,12432,14220,14048,15648,7867,7298,4529,5840,5336,5482,4544,4275,5218,4297,3769,2966,3306,3142,2928,3461,3601 +0,586,1128,1662,3534,3353,3092,3048,5376,9220,12518,17467,14583,16010,19538,17790,57998,63122,75816,57522,46494,47634,54624,48544,15318,19629,21772,21126,34232,28040,28520,28645,17142,21850,25204,23787,18250,18582,13715,14640,11123,9806,11642,10645,11556,9692,7305,5814,28095,22606,23333,23828,18880,18810,14807,9592,971,3511,5224,7014,7564,9697,12068,11118,5010,4306,3729,3148,3197,3446,3182,2977,4150,4520,4018,3404,3451,2180,1235,704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,811,941,1121,1072,945,883,727,508,510,500,410,192,629,1077,801,24567,22480,23418,18862,10484,15162,12278,17822,21052,27957,31127,28584,32354,23244,18576,12379,3267,9146,11296,17250,22976,28868,29952,25830,18963,25043,26564,22244,23081,19646,14656,11281,45752,44446,32501,38340,27217,33538,41734,49554,49137,42308,28372,21259,7882,7237,5927,5228,497662,572082,476519,450248,395294,316563,197239,111378,0,0,0,0,0,0,0,0,0,2222,4172,5214,6346,10174,11609,20092,31124,30654,25602,38007,33487,39464,46153,68072,24791,29812,39014,39359,33984,24581,13533,10043,7213,6526,4730,4150,5228,4012,2658,1074,0,2384,4586,7653,10030,8390,7727,7802,8170,10462,9996,7577,8086,6236,6499,7213,8587,8222,9470,7724,6886,8143,7234,7968,8592,8098,7181,9647,11678,12298,13017,13738,7263,7732,7362,7061,6862,6350,5639,5070,5200,5586,5293,4924,4795,3817,4978,4111,3337 +0,844,1964,3176,6657,7933,7674,5697,9400,16442,21377,31066,35929,29402,36381,29915,53628,56922,56232,43898,47912,56463,68420,60148,28266,27128,23471,23776,39960,43126,37163,27609,20393,24543,21274,20098,12587,9977,10600,12662,13935,13132,13004,12269,13775,12860,8782,7396,20679,20613,22930,27271,25406,17746,18214,13914,2258,4144,5918,7964,6795,8588,8530,6454,3029,3123,2198,2312,2630,2015,2381,1727,3197,3467,2676,2502,3148,2266,1438,715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1867,1616,1793,1838,2174,1804,1762,1255,1066,1128,864,775,403,1286,1822,1971,21311,17214,20208,16686,13071,12985,14660,15660,12605,13638,21170,20707,26308,24476,20146,12878,3946,7350,12034,13668,27850,27746,30234,28202,23290,28835,28838,25829,30615,26494,20242,17744,37267,43580,35688,44835,38117,43790,44926,54576,44331,37427,35718,25450,12385,10784,9718,7676,634404,597821,545778,506411,315741,271407,189370,80948,0,0,0,0,0,0,0,0,0,2110,5160,8372,7620,9517,14118,24083,38059,34964,39678,49353,38971,47137,59198,65220,23947,29073,35160,32988,33045,21151,15706,9187,7745,4923,4048,3195,4572,3247,1846,990,0,2138,4054,6056,8474,6707,7574,8094,7005,8739,8962,6100,7105,5734,5032,4754,9132,8471,5559,5049,5733,5820,8443,8681,8031,7913,9260,9919,11204,11206,12520,13460,9586,9041,8576,7141,7783,7280,6178,5864,7167,7900,6358,5862,6381,5628,5402,4520,3592 +0,3071,4777,6570,8190,8522,12240,13135,15565,27825,36550,43508,44515,55309,53871,57942,67947,74777,62737,49175,53135,75826,78666,91456,38165,33830,24490,34154,42963,47542,51327,44324,14845,17236,19086,21020,16666,13718,13940,12774,19321,15884,15276,14885,15126,11066,9194,8054,22390,21234,28070,25700,20719,19138,14510,16351,3792,4456,7095,8226,7722,7197,8453,5974,2086,2050,1708,1766,1493,1444,1824,1290,2649,2654,1899,2017,2356,1564,1165,498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2576,2594,3213,3054,2789,2297,2360,1539,1583,1774,1418,1140,738,1698,2626,3212,28248,20614,23012,16544,9332,13056,14326,13738,10155,10684,14984,14268,19336,16779,12435,9792,4563,8732,10703,14466,19756,24102,33740,31393,31592,29136,21336,26725,26262,32474,36685,30039,27061,30223,37558,47100,55544,52916,48444,57345,48615,35290,23075,19006,16799,11910,11266,11280,674056,660707,613183,470296,342889,197719,122938,74626,0,0,0,0,0,0,0,0,0,2818,4737,8152,7529,13010,17154,20316,45936,38276,43994,56718,47873,55685,58868,66278,18323,24934,27613,24118,29514,16604,11936,8024,5440,4970,3314,2606,2960,1998,1566,740,0,1593,2872,3878,5622,5510,4596,8183,4388,7402,8359,6367,5203,4656,4694,3745,8399,8370,4700,4528,4734,6380,8888,7425,7620,8653,11490,10362,14128,14266,14722,18509,13764,12461,10290,10735,8423,8492,6225,4988,9296,7594,5950,7000,6949,7652,8692,6804,4948 +0,2395,4051,8061,11858,14074,13322,17361,22853,30470,40823,48510,59223,49152,53357,57283,116134,98918,63307,52510,45530,57195,57588,80124,43661,43915,34012,34428,46911,63030,60732,63737,13700,10428,9843,11032,15598,13659,16664,16794,24498,22192,19143,18792,14540,10906,8256,6726,19505,16007,16217,21363,22012,23564,19029,22068,5992,8000,8733,10352,9524,8868,7686,6935,1225,1244,1199,795,592,926,1051,1008,1412,1371,1910,1571,1448,1009,474,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3456,3964,3161,3005,4068,4240,3617,2196,2021,1600,1759,1420,882,2313,3620,4815,27939,21784,21446,17042,7990,8082,7775,10212,8862,12764,13354,13685,11058,10236,8242,6088,4086,7200,12034,18434,19586,29186,36728,43848,49613,37534,29863,28347,26924,39095,41484,33045,14601,21208,35300,40198,62726,48269,57666,54796,46357,31726,27182,22164,16324,14775,11354,11816,821635,779777,744653,541762,269288,202342,113318,51889,0,0,0,0,0,0,0,0,0,2436,5886,8802,9868,11075,10559,15349,43651,53721,51862,54133,50716,47300,64667,62285,17744,14247,13947,17621,18151,14411,12662,7324,2489,1917,1533,1322,1608,995,660,324,0,627,1331,2322,2903,4726,5842,5560,3912,5582,6465,5049,5844,4895,3189,2792,10236,9123,8791,6982,3086,3560,3789,4952,6510,7980,11349,13283,16660,20365,18587,23608,16860,16018,15474,13806,12946,10838,5644,5774,12167,9908,9173,7846,8557,6817,5445,4903,6128 +0,5750,12531,15339,13381,18929,26734,33032,30525,35040,56903,58956,69947,58902,61318,82234,160925,114665,78851,82580,160781,127926,124909,151113,88302,96768,91370,79715,54366,63093,68799,65140,12496,10840,10481,12735,15753,18439,20087,20662,17279,19406,20822,18856,18912,13903,9108,8349,19459,17866,14137,18699,20136,18055,16835,21482,8413,8535,8615,10514,13156,9514,7336,5764,1162,1083,1051,704,497,700,868,786,856,1032,1064,1111,967,755,336,168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4846,4356,4974,4998,6706,4976,4006,3236,1600,1652,1848,1310,1186,2216,4000,5042,16982,19240,16700,14090,5690,6151,8801,9298,7703,11149,9777,9130,9827,8737,7454,5724,4340,7130,8564,11321,20953,27274,38650,47424,53771,51424,30627,33420,36697,40034,35586,28444,28283,41516,48399,43876,66174,67413,53236,64902,56856,39318,32129,28359,18969,18076,14037,14252,573968,543586,621958,388410,206306,177648,119191,54682,0,0,0,0,0,0,0,0,0,3416,5880,9728,15490,17628,19435,16223,44549,43034,44544,41391,41710,41157,58526,51260,14027,14445,14166,15022,12796,10561,10781,5750,1843,1650,1261,1183,1362,918,511,238,0,534,1015,1583,2426,3367,3254,3676,3309,3410,5501,4755,5212,3922,2671,2433,6930,7664,5657,4702,3630,4054,3292,4801,4270,5536,9447,13012,12630,16266,13693,17916,14351,18116,17696,17630,12744,9494,7479,7162,11935,8150,10166,8320,7807,7186,5676,5982,6427 +0,9711,19767,32158,19944,28512,39692,47953,50635,56008,79679,87956,91026,84948,81958,87746,156359,125586,98200,107402,242303,176744,174934,166805,152860,148354,140923,108477,82709,79310,71266,76301,8690,8998,10789,13934,13595,15587,19634,20834,15693,16462,17863,16356,18644,13383,13784,14334,24126,24183,18536,18568,16184,13567,14518,20262,9359,7097,7739,10256,13631,8455,5131,3780,795,767,614,505,246,384,414,377,584,645,714,699,514,346,249,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6338,5426,5558,6314,7707,6490,3609,3133,1642,1683,1447,871,1137,2781,3634,4328,12740,12907,11758,9070,6210,7842,8036,7221,7985,6936,7954,5920,6364,5982,4777,4861,5975,6140,8126,10754,21745,32815,33207,47820,40919,35814,43164,45474,40508,48400,43236,46853,38326,42497,66187,64779,92764,92358,62633,58082,62024,50935,31525,28194,17248,16634,19948,16790,454624,403110,301131,280720,160187,115204,95429,45917,0,0,0,0,0,0,0,0,0,3253,6238,10113,22593,26679,23719,23556,39336,32235,26432,28812,32728,34544,33092,45084,12165,12445,10803,9994,10844,9156,5786,2982,1424,1258,1036,737,1066,805,382,201,0,397,662,1226,1213,1632,1968,2196,2306,3023,3466,3716,4071,2502,2064,1956,6023,6344,5162,3970,3278,3851,3571,3337,3436,5382,7580,9342,12555,10486,12064,10225,14569,13364,17632,20342,10570,10895,8588,10283,10041,8905,9741,10806,8336,5966,5958,6566,7279 +0,10210,25977,36716,31934,39364,43570,50702,57752,84260,83398,97256,127998,105314,112959,130258,126812,130660,146034,182578,312369,277087,261908,278780,264301,201631,249438,204024,128763,111917,80969,102178,3488,5324,5748,8948,13680,13848,16908,21745,20975,17635,25017,26242,26032,26850,21880,25094,27685,22306,22550,18686,15771,17589,15934,21644,16784,14938,10211,13178,13997,8032,3828,2775,406,422,352,242,122,178,222,203,330,326,322,352,288,195,135,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7809,7160,6051,6569,7602,5432,4798,4046,2576,2342,1930,1231,1227,2740,4422,5768,8877,8168,7971,5830,4266,5920,7254,5991,6441,5374,5422,5732,4626,4948,4604,4128,4673,5102,6355,9856,15102,24765,30802,46063,33636,32022,39953,44101,45174,51578,45132,45688,40679,55286,68939,79083,73360,76650,43416,62122,54574,45296,27860,26252,22272,25930,26981,27927,399114,268866,221794,227980,118475,104275,58239,33403,0,0,0,0,0,0,0,0,0,3582,6997,11075,25332,24234,30572,29701,38224,29306,26518,29429,29546,32539,28194,31320,7142,6332,4938,4268,5160,3947,2894,1628,790,632,590,484,554,392,171,96,0,156,303,606,635,806,953,1004,1348,1656,1550,1726,2061,1286,1036,787,6762,5924,5634,3418,2384,2471,2530,2074,1647,2830,3898,4556,8427,8075,7855,9122,12288,12582,14364,16050,13597,9632,7588,9670,7817,8493,9518,9164,9091,7622,6786,6953,7766 +0,886,1681,3501,5010,16397,26928,27839,35561,55824,76718,77309,75060,124237,140267,117072,142456,165780,163990,135850,98950,123140,118650,176406,185769,225468,276276,302020,245783,168651,165885,131000,0,3764,7316,11136,16120,17592,26819,31654,31224,30193,25044,37890,38676,38276,45839,43914,32321,24035,17888,14952,9947,7206,7009,9108,12870,9368,7229,8514,8485,5538,3315,1840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11155,11246,13484,11489,9544,10582,15086,17488,20470,22178,19870,15811,11918,10015,5611,5758,6432,7152,5509,3844,2392,2932,3252,3510,3688,2542,1876,1706,1298,1408,1676,2473,5116,17106,23708,28650,34415,38704,35102,40890,40818,42434,53863,57893,43265,45696,52029,48096,46792,39612,37248,28915,32679,32363,23854,17418,6822,14791,26070,31900,42370,47365,44243,44275,381273,395941,365818,427042,414236,486181,479397,373732,287868,205188,116951,120326,87169,51819,37582,18959,0,1890,4635,8877,11178,12284,10347,11290,16059,14321,16432,11878,7902,16617,22531,31032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8160,8488,11255,8694,9624,9918,10726,14798,20475,26040,23980,17989,14693,14805,14636,14507,12756,8740,7024,5403,5064,6629,7825,7615,10806,9507,6543,4792,1738,3102,5558,6638,6516 +0,1192,2838,5075,9070,19128,28071,36545,33664,58272,72290,63378,101477,106749,115600,107455,156801,135568,161598,134875,121122,164946,186521,219494,153623,192120,243178,241238,188729,172024,127894,108167,2647,7768,12121,12916,17574,21712,25026,30436,35823,34164,29330,32910,46180,40226,51808,42548,29340,26201,26779,17332,11959,7935,8309,8622,13029,9042,8066,8036,8036,5974,5172,3275,7435,7548,10020,8666,11344,14848,11892,10892,5864,7291,8566,6330,7060,7032,5728,5003,9435,7424,4581,5552,5232,5310,5607,5462,2296,1951,2498,2632,3118,2649,1914,758,10880,10696,10336,8820,9000,11014,12948,17901,15106,15132,17641,15013,10236,8072,6368,5058,5987,5538,6126,5434,2826,3278,3854,3899,5056,4155,4129,3438,3478,3707,3329,3722,3823,11774,22199,28686,40703,45310,30806,36750,53495,50510,56540,63190,59493,80921,104199,83084,39868,35718,26564,28042,22140,21972,19149,15866,8116,18016,32885,39038,43717,49946,45164,37684,403410,357838,309987,321650,287445,326325,310639,259800,219146,201987,111990,91167,76257,47173,36629,16502,0,2335,4816,6893,8746,7940,8286,10690,17578,15592,13923,12141,12024,17695,28808,30576,6004,9300,9326,9768,17115,12772,8378,7360,8720,7070,6219,4870,4072,3696,3483,3940,4972,3816,2817,2437,3360,3662,3134,3147,4226,3282,3434,3517,2592,2094,1352,756,17667,14550,9866,9666,8181,10559,12686,13623,19218,19682,22665,16360,15118,14508,11229,13126,10397,8944,7899,5328,4537,6086,5579,6320,11680,10260,9824,6705,4658,6299,5320,6495,6790 +0,2272,4514,6283,11595,25916,41420,46489,47883,48980,50218,46060,96982,84090,104377,104463,128555,197035,200353,145831,166020,229473,221812,236164,112260,150122,162530,222861,167488,146366,120012,104624,6047,7933,13166,12437,17184,24942,30546,37441,32243,33646,30996,24154,44734,38030,45140,43296,32875,30427,30663,27601,13064,10382,7279,7002,10958,10167,8435,6019,8354,7150,5990,5815,14393,18613,16795,16189,20337,24832,24880,21020,13164,13587,14864,14812,17380,15460,13354,10256,17052,14598,10812,13365,9125,11135,12587,14046,4037,4075,5336,5407,7646,6587,3363,1730,9191,9014,6850,6078,8335,11932,11764,14312,13666,12453,10042,12895,8178,5756,5686,4878,5876,7076,6161,5779,3418,3902,4512,3502,6016,5535,5946,5888,5747,5061,5226,7481,2706,8242,16560,35566,33732,42850,39658,50807,79271,77502,71934,107317,97282,95406,131338,166114,27858,22084,24346,21147,17521,13146,12324,9824,10655,17596,32001,32435,54219,51834,33082,29149,321652,302688,293731,292438,181011,160822,201734,176744,204673,143700,82412,55337,61758,48284,34387,16675,0,2179,4768,7007,7972,8104,7734,8752,17640,17306,12440,13514,15543,18463,25990,29985,13094,16418,20346,21934,30429,25734,17976,14831,15050,12629,12652,9137,8003,6724,8432,8727,8606,7793,6312,5703,6610,7348,7276,6644,9306,8966,6794,7252,5099,4758,3356,1962,24008,17027,11259,11037,8885,13471,14124,14848,23426,15786,15678,14692,13002,9652,9935,7787,7591,6042,6228,3997,2984,3151,4283,6153,11438,12634,13062,12169,9079,6359,6268,9362,10207 +0,3568,5578,7333,9746,28716,52488,58903,44438,48418,59126,63812,83313,83676,92978,105328,143082,179233,207624,221304,194544,199258,190653,208169,89177,116268,129118,155750,119020,122995,87265,60981,9607,10364,9886,11329,16219,22098,24699,38494,35730,30646,26144,31758,36716,39049,43167,40162,35143,31152,28051,29274,18443,13422,12857,9192,10270,10865,9786,7324,9102,8000,5909,6772,29413,33114,32222,26934,27238,29042,30009,38539,22198,18743,26231,21792,22223,24768,18206,15525,23392,21632,17407,19264,12915,15556,21344,22128,7913,7925,7517,7360,9637,8106,5052,2528,9849,6876,7950,5462,6489,8759,10056,11396,14101,11068,9516,10540,7093,4826,3972,3594,8152,8718,8840,6902,5211,6382,4917,3999,6087,6051,6838,8236,7236,6192,5890,8241,2736,11304,18980,32948,32304,41582,31395,40146,68922,71614,84571,109161,100368,127241,154508,184895,15020,17238,18243,18928,16107,14406,11965,9984,17117,24820,27728,34440,52560,37131,22774,28804,268601,256158,188448,196708,169954,143582,194947,147418,129343,101190,61202,48038,49320,33515,27836,11734,0,2071,2774,4986,4770,5768,6910,9452,13139,16954,17979,19098,18732,22476,29000,21456,20900,25906,31477,34216,41257,37888,24694,21620,20672,16062,17870,14743,9054,10508,10827,14100,11639,11742,11141,9301,9128,9537,11992,11950,12999,13735,10587,10817,10166,8302,5944,2828,23892,24154,18230,14471,10222,10741,13195,13231,20388,18602,13584,11826,13499,10122,10087,8154,10416,8058,5653,3896,2501,4196,4741,6474,11910,13928,11409,14906,13130,11209,8315,7535,7774 +0,3844,7956,11802,12440,20669,25372,52636,45954,46799,57898,77072,73926,95321,89841,89309,187599,236720,249545,288535,262544,250253,312488,260590,75592,78318,92063,85711,107146,74184,43779,37470,12855,11197,7996,9358,12714,18192,30102,30630,32474,33262,31409,33901,44223,36211,26546,33522,31676,30980,22187,17184,18447,17554,13629,10623,10439,11251,11513,9887,7876,6678,5260,6281,35405,31062,19672,20056,30022,43088,51184,45289,31179,30212,39764,42375,31749,21495,17299,13632,32529,28557,38040,31457,22562,25908,33542,35423,11616,14901,15112,14686,12272,10025,5600,2366,10342,10345,7370,5425,4372,7832,9569,13336,11123,10488,8283,9169,8235,6217,3616,2676,12374,11510,13216,12337,7755,8319,7654,6471,6412,8964,10089,9370,8332,8274,10304,11260,3855,10101,14894,24067,30573,33276,31684,44732,90624,117755,129078,109340,131503,171959,174090,147345,6279,12750,15757,17192,19246,13961,10862,7636,18576,27550,35740,39806,38825,32752,20118,17245,134195,190788,188099,191463,153268,128390,158072,124153,50469,33566,23714,24244,22932,15975,9656,5582,0,628,1419,2508,3622,5771,9716,10620,13209,13043,12729,17682,20801,24860,24744,27035,35721,35038,40694,37789,44498,49338,46421,46190,21794,21284,20151,16344,11603,12286,9491,13217,13312,11651,8126,10032,11980,11886,10870,12914,18166,13064,10777,14346,14844,8380,4495,2038,26492,20294,20874,14547,10774,10273,12719,12332,16478,12853,11171,10434,11206,8557,4886,5172,11606,10280,8018,4464,2328,5161,6474,8646,17385,16530,15330,14188,16524,13645,11183,8910,8674 +0,3325,5859,8876,9768,19127,24158,40520,40282,56020,80100,85352,75473,82884,76380,90764,215204,213625,246576,254319,302756,296662,314417,214042,56579,68898,96790,109385,88773,73458,59940,45525,18388,13818,12649,10519,11615,20510,25859,27960,37318,38810,31878,32358,32477,29056,34170,48704,35876,32068,27988,25778,17660,14729,10657,8369,7510,8058,8515,7566,6734,5926,6807,6878,35913,36651,41476,31835,42800,52630,59388,51273,35945,37233,46394,44652,52727,39449,26558,24204,46514,41333,54190,39166,21979,27320,38718,37679,20342,19844,21258,19750,13247,10516,5938,3130,9269,8048,7274,5401,5459,7200,8508,13216,11689,10266,7458,8683,7780,6423,3934,2929,14661,12418,13533,10724,6730,6096,6135,5818,5035,8019,10835,10228,6730,8544,8826,10123,4946,11190,13876,27702,40438,54642,56315,76946,92296,108749,107742,104648,133070,144210,201402,165454,4983,11127,15460,15330,13805,13770,10333,9118,12928,21231,29989,34957,38434,32162,20791,20812,121620,142006,108647,107527,149214,122974,116689,109295,31901,24450,18863,18402,20750,12140,8568,4522,0,522,1134,2182,2070,5318,7126,10477,13300,11492,14387,15599,18248,19264,17992,22822,27401,30326,37692,37894,39762,47970,50003,40600,35265,32120,29460,22902,24514,22496,23830,21653,11800,13734,10638,12484,14505,15478,16133,19485,29858,24838,19336,16160,16690,11276,5516,2454,21746,23862,21542,18588,13349,12223,10380,8230,11360,9994,8186,7624,8185,6306,3946,3509,15649,11122,7140,5922,2427,6520,10135,11845,17458,18216,15574,11430,15220,12335,13947,11998,9336 +0,2541,5513,7172,10905,19962,25574,34366,45916,56653,76096,79203,61662,55472,68214,86176,190638,200667,176794,202588,328219,278948,215500,148158,46290,88457,112182,105572,80825,85421,69766,53749,26306,16537,14456,14597,7988,15321,26300,33408,44282,37269,34147,28606,23195,45359,53474,70818,44278,47507,44410,29789,23498,19476,9722,6042,5207,6904,6514,6895,7338,7624,6552,5890,48423,56959,53509,60658,58801,58202,68955,78624,46910,54534,47535,52568,58282,56459,45486,35103,55561,44728,52574,39641,31260,38696,42861,34228,26921,31250,27069,20592,18757,13698,6784,3332,7931,5634,5755,5813,6855,8251,9376,10798,11350,10229,8852,8813,9391,7613,5281,4952,12104,12154,10702,10007,4000,5613,5888,5614,5006,7932,9044,8264,5014,7728,9942,10239,5928,12052,19129,34736,53421,61018,70554,87388,73190,110505,119252,114389,149298,182003,187693,172439,2814,7172,11103,11246,8452,8281,10736,10828,12041,21934,27709,32412,28252,27961,20555,21620,79639,74115,73614,51964,102066,101287,98096,87858,28240,22667,14748,13611,13802,9367,7560,3622,0,505,898,1794,1444,3355,6774,8202,10052,9704,12109,15588,10229,13877,14259,14729,30328,28517,30080,35960,32688,33970,46871,55369,37235,32207,33432,38843,48652,50694,43674,34958,12954,15863,14944,15251,15552,15896,17822,29665,31690,26772,23604,19372,16672,9995,5579,2314,22504,25900,22212,23489,17035,14931,9447,5388,6525,6795,6973,7836,3392,2348,2254,2233,16126,14090,9039,5852,2785,7492,11118,16470,16810,13834,13407,11666,17661,16049,16946,14412,10440 +0,2864,4386,6727,11952,19880,21175,30734,48870,50860,72298,58548,50072,46784,48923,48196,219597,242497,222984,224010,251536,248516,185413,110152,52258,86216,127305,96114,82366,79468,63779,66293,26106,19718,13661,13277,8861,18760,26357,26557,42722,37110,35184,27640,22613,52112,55145,65328,50860,50668,44672,30898,21621,18382,7656,6657,6282,5786,7435,7560,6886,7652,10458,7647,66149,56790,64474,66944,71736,67400,61252,84356,47432,54778,54830,56002,81264,67865,71941,51337,58227,50222,47772,44104,41122,40284,46991,39082,31096,30424,37454,26403,20283,17668,10136,4589,4877,4526,5254,5940,6390,6572,7613,10572,10057,10918,8559,10667,8663,7913,5706,6131,12909,12412,10340,9791,3888,4542,4179,5875,6486,7799,11399,8891,5924,7328,9607,9098,4334,15822,21055,29955,46282,50488,75229,93827,104537,123112,129616,122179,120229,125415,167669,160488,1258,4163,7587,8579,6849,9406,13615,13028,13578,18160,25091,31331,29706,29820,23200,26748,32992,31381,29690,31886,49068,46836,46450,41633,13760,10444,8641,8158,7847,5261,3390,1736,0,374,714,1179,1108,1882,3172,4635,6571,7096,8813,11512,7498,11731,11642,14240,36708,32882,32877,41622,40821,43514,44992,52444,32877,38170,48338,60717,62603,60657,39923,38792,16687,14572,16596,19802,27414,25576,21047,34199,29644,23708,28603,22340,22857,15786,8439,3322,26132,27305,19498,25862,20592,16010,12006,7354,2652,2769,3659,3444,1519,1228,1202,1014,16915,13950,9148,6638,3141,6708,9936,14110,19043,15280,11105,14302,15601,18313,20796,16127,9466 +0,6084,11557,24773,31396,36914,48567,55355,44580,42875,52273,34340,30697,34338,33484,26707,217715,209056,175110,120672,61814,69130,58005,56510,61929,71112,70795,95125,91953,91981,118729,112671,31351,35070,33065,28331,28324,27154,23097,21773,31092,35645,53726,51548,74920,59613,61349,62307,66083,66637,49439,30299,16214,15181,11074,7573,5878,6696,9167,8752,11387,13090,14629,12536,68110,72516,71275,76382,59866,63406,61217,72351,64930,64501,59722,47705,27976,32406,26500,39031,57568,43474,38418,24976,23105,26460,34001,38486,36120,38212,39736,33786,23748,16753,15700,8316,3301,4339,3952,3356,3278,4336,4843,7672,10818,9493,8764,13428,15970,13870,15769,12022,11927,13070,14474,13090,10592,8619,7470,6335,8248,6637,6504,9830,10440,10542,12000,11838,4736,20915,31182,42423,54830,63356,85534,99192,106283,96928,88287,98567,105320,90856,88150,140140,0,1340,2545,5194,6196,11218,13127,18903,20602,34614,38004,35839,38058,44084,49782,45674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,147,289,426,725,1094,1905,2098,2210,5683,11581,13828,14465,11528,10434,14586,44008,48507,45501,51965,53310,61966,66250,54054,41496,51269,54446,62580,78550,55567,48448,44378,15177,15053,13375,10754,10108,22926,32758,30901,37940,44000,44574,42686,28560,21844,14084,6750,27276,19667,17862,11897,3070,2282,993,589,0,0,0,0,0,0,0,0,16487,17749,13711,14644,17563,16410,22611,19699,15981,19221,20447,19850,16874,12978,14366,14444,11139 +0,5778,11135,19137,28741,33262,47064,47310,33128,37346,38969,32064,30994,30038,35004,26073,204634,186582,131782,93779,57438,63641,75538,82236,54638,80494,98935,109878,78396,98427,79854,89448,25321,27056,31616,30486,30404,26138,29073,33908,54777,72560,97965,115014,128204,93198,80175,99464,62427,53907,42848,25695,14998,12291,7564,6430,6281,6846,8752,8844,8703,11843,19944,16334,54831,67612,83024,73634,79402,75314,72172,80544,53000,44188,42862,44088,36543,43051,38270,57073,75830,64946,53114,41442,39611,44608,39395,38950,42247,33586,34820,26370,24213,20395,12269,7218,2431,3270,4140,3094,4082,4998,4446,8096,10790,10599,10137,11014,13383,14532,18525,12432,8395,11409,13729,13658,7537,7505,7992,6999,9523,7398,8384,9799,8932,9846,9625,8076,5376,16707,35949,47781,53296,68298,53376,83138,79985,88602,81772,75922,88218,90134,97350,112262,11311,9342,12236,14470,13061,12354,18928,20584,18400,25524,40204,46908,56791,50746,53692,47090,17748,15007,7472,6772,5394,5120,3635,3662,5716,5920,5197,3824,2455,1824,1016,555,0,178,349,383,520,1016,1522,1622,2007,5188,10247,11770,12106,10824,8381,12233,35158,39054,47154,71284,54122,56356,46512,44906,48046,59854,63864,80182,69258,66214,57389,56496,27556,27360,19684,16822,15972,19320,27766,28168,32198,33968,41868,44118,52567,38695,20995,12228,26916,26846,27180,20327,9952,10142,8202,5628,354,440,556,504,604,480,286,136,14279,14660,12162,10834,11880,13632,13671,13848,16622,15318,21943,17303,12776,10259,10717,10876,11765 +0,5199,10791,14967,26533,25272,34813,37350,36330,36020,34409,22278,23782,23797,26036,32678,155930,122516,128514,80757,59056,80580,87798,94420,68251,77650,95312,83938,77348,68273,75281,102404,17698,20711,20815,23012,26180,30174,27154,33220,74626,86235,127602,125330,154001,123222,97778,98006,56785,46735,27682,20309,12730,9040,7430,6820,6091,6594,6312,8726,7706,11661,19396,17581,50148,73387,77824,67191,117869,102703,90798,103555,38544,35924,44781,45592,55251,57196,52379,83917,91617,81020,56947,65440,58953,53148,57437,45644,39722,41444,29708,20281,27421,16732,10758,5675,2448,2324,3229,3103,5108,5501,4061,8856,13168,12243,10604,11678,12328,16198,15638,16087,8945,8323,10533,12294,7720,6296,6580,7254,7704,8998,9130,10283,10226,7636,8389,5728,4607,16492,29476,45824,34790,41767,46243,48667,69679,60273,78892,83327,115217,116119,107416,102028,25849,26180,18050,23944,21976,18213,20272,22889,10674,26395,34117,54777,78994,59614,57312,53231,31146,23662,18660,12737,13395,12268,9009,6708,9725,8841,10353,6582,5002,3549,1936,896,0,159,349,490,499,990,1216,1224,1563,3766,5592,6866,10630,9119,7008,8666,40815,52953,50018,73875,48406,36405,41845,36484,61019,58178,74400,82189,68973,61512,59450,59754,32993,27557,29880,23396,19598,19418,20857,17486,40439,49925,48552,56110,61011,40876,31304,23436,34448,35117,36143,30834,18149,16202,12910,9400,643,738,1197,978,1094,729,524,252,10286,8708,9110,8895,11414,11379,7858,11708,11860,13469,16522,12826,7947,9511,9982,10553,13169 +0,4431,8660,13434,15497,19264,25175,32506,37011,46309,44121,33100,25040,22618,18306,21620,108027,84857,81050,60822,48740,74600,91617,105578,66170,69656,71257,88078,77308,88125,103684,86168,10918,18846,26700,30968,29945,33776,37006,48628,83109,105150,115182,145312,177323,149102,104965,99214,33106,35004,17742,13596,13232,11114,5997,4951,4086,5423,5367,7014,6620,13480,19518,18092,40320,65097,76477,88060,101355,81986,74905,95735,35941,38922,50378,62108,58978,59525,48468,70394,84211,76440,71012,80950,74454,68832,55920,43632,41678,40170,31842,25501,19512,14228,11577,5676,1226,1800,2252,3360,5678,5809,4811,7829,13216,14262,14941,16630,17759,20014,15905,12120,8544,10213,12149,11347,6620,6005,5408,6580,7984,7880,7265,9415,9330,7897,6028,5030,5140,12638,22514,34944,32154,42065,55657,54405,80824,76044,91372,85942,95158,99512,96841,75012,33089,35086,26754,25862,24625,19782,26158,21519,9036,23296,43184,44989,84578,65153,56658,69959,40329,32414,19907,18536,16155,12956,11705,9320,17050,18890,16885,11376,7843,4980,3236,1720,0,146,307,500,498,930,878,1052,2036,3282,5697,6536,8952,8568,8110,8008,27162,46872,67576,86736,69915,62464,51423,68075,80205,82112,90645,69917,70260,65986,72517,82607,63316,54758,46895,41434,31861,31146,36744,26806,51792,59694,64939,63997,58112,41794,31495,29171,62270,53566,34109,35436,24596,21574,17366,12360,1085,1594,2254,1899,2320,1362,1013,502,7217,6830,7655,7926,7001,6866,5788,6259,10950,12023,12065,11145,6954,10083,8997,10208,12402 +0,3103,5892,7534,11634,18332,27409,32467,51192,51564,38894,36189,28254,32754,28027,22221,57438,38827,37294,53229,55514,76276,80746,96217,73535,66402,71628,87926,109596,96220,110301,91970,6963,16216,28151,30953,35342,40462,43658,49092,113861,120746,161820,168648,183950,144988,128876,101566,21140,16658,15086,12208,10353,8923,9369,6850,3352,3621,3196,3386,4814,10922,14360,17612,41477,63458,99538,126027,114704,108903,138068,105035,24963,40608,51534,75919,75388,87444,110597,129423,92274,89595,83888,69626,72472,61481,42639,37671,37792,35031,33746,31658,21154,13425,10354,5396,452,1597,2380,3270,4576,3664,4149,5920,12562,12181,16440,20782,19939,14252,11216,11557,11618,9176,10392,8117,8136,7200,7429,5571,6893,5582,6502,5634,6739,5650,4211,3775,4789,9592,11454,17677,31224,35397,55765,53868,74220,89746,112099,100968,101878,81627,76751,63300,56402,53506,57044,42640,37332,25228,23823,18825,7752,21778,39542,51575,75796,74728,59400,83182,57352,58749,41620,31046,20697,20122,14858,14405,30456,22441,17913,15728,10006,6218,3288,1401,0,148,363,581,605,722,1052,1136,1953,3131,3620,6342,9486,8125,7983,7771,15962,37758,72253,80080,105262,131783,130246,100632,115979,85366,71638,62064,56532,62296,83031,113150,86746,58943,42907,45321,36764,38793,31029,27563,62237,51396,39064,56191,59543,52140,36042,29092,74171,61170,48253,33430,29432,23187,22570,14367,1995,1630,1962,2507,2871,2860,2004,1058,4121,3530,3342,4300,4338,5046,4302,3939,6446,6226,8184,6799,8228,10037,9345,7572,8936 +0,3574,7128,12496,14652,22962,22648,32775,48053,44805,30629,29580,24248,31166,28297,28770,52268,45609,51345,61584,50105,68255,67916,75073,67354,69720,86643,80714,76854,87375,102640,68028,13759,21106,28422,37132,35233,37231,43265,48898,90899,96008,148822,144176,139049,155221,148237,107161,26114,29107,26999,24078,26060,19210,11622,5993,2462,2709,2966,3709,6259,9437,12302,22804,35885,64899,85407,105060,80684,110545,158778,144224,60931,73796,62479,85271,97797,108795,121514,124137,91840,107322,114988,94452,106058,70526,51444,51177,38996,34016,37386,33786,34886,23971,16640,6980,342,1308,2275,2778,4118,4024,4703,6874,12134,11396,14127,17141,22384,17061,11721,14190,10101,8162,8262,8348,8311,6442,6851,5902,4771,4397,5858,4720,4406,5341,4790,4356,3231,8577,9581,22855,28028,31730,49579,45792,49271,61668,107858,95166,110489,91692,87096,66616,60594,67724,70322,55764,70548,55319,34648,26854,11062,29708,55902,68243,89484,91570,84788,84641,66590,57671,50774,37000,40064,38676,25948,20128,35644,26299,20670,16504,11657,8132,4480,2364,0,122,251,351,412,556,876,902,1313,2872,3284,5355,5833,5098,6750,5032,33630,64999,94450,85722,102358,123716,149938,126034,121493,97224,86598,123228,106968,107666,127838,109803,83062,63868,48900,45540,40824,38438,37251,43418,66987,59626,51457,69130,65317,64834,69820,57528,72152,70739,65499,40182,27977,24973,26406,14700,5405,4447,5396,4533,3621,3560,2401,1186,3308,3007,2362,2514,3620,3342,2808,2612,4003,5146,5707,4668,7085,7375,8530,5902,7194 +0,4501,8671,15503,13552,18236,29108,32538,40606,39970,30399,28334,21706,27060,41744,42882,63362,49250,54578,67148,51728,57171,83330,77134,59905,68402,88601,74888,76950,69758,75520,67605,22786,23556,25648,39418,36687,46982,50073,43354,85527,75723,97481,119014,131477,158595,140012,116756,36620,33163,42252,48662,33606,19380,14188,7194,1164,1901,3144,3850,6408,8657,14064,25399,46831,46618,69374,81150,79242,102764,143835,123962,89084,105569,103228,95724,160883,127850,136983,102910,123667,141665,127851,83892,108203,77656,81436,73101,28908,38276,35828,38028,40660,26938,18776,10100,272,1264,2002,3013,3689,4637,5233,9484,8353,8996,11748,16422,18342,14693,15611,18626,8275,7486,9308,6670,6386,4773,4343,3710,3856,3509,3475,4344,2786,3867,5266,4986,2898,7096,12308,23808,21579,24430,35946,36269,31949,59962,73655,92899,111675,88387,70714,98200,92561,92892,75302,56614,82784,52918,46336,28335,11368,39030,54378,70110,101354,95234,102926,86445,73088,49482,44466,32448,55048,36674,31216,27208,34738,27034,22962,19239,11043,10075,6526,2768,0,62,144,290,229,300,467,636,1076,1935,2956,2964,2972,3013,3320,3837,47648,85079,94884,76669,83052,98875,152070,106375,112329,95005,112178,142476,162894,129816,131806,130740,91010,84034,64274,56137,59041,63180,46409,48380,72916,78134,65169,90278,77715,90332,104041,77528,65953,72347,74616,42044,36999,27422,21700,17495,7432,8934,7672,5329,4378,2830,2443,1100,1916,1378,1334,1952,2399,2125,1514,1432,2576,3240,4214,4841,3734,4456,5296,5226,7261 +0,3954,8279,15175,15180,15726,18520,27608,36015,25956,27372,22874,17983,29809,56660,51487,75372,57832,63374,70560,54622,69722,89377,78125,68197,93458,103016,82008,72125,71686,83761,64240,23244,30198,37558,48984,58160,67828,63312,77976,118113,107950,106385,136141,140107,148098,156397,97500,55264,48504,39968,50019,43026,29992,14774,7900,564,1644,2417,4736,9386,14889,21970,24384,59017,67912,59022,77835,94686,117176,152966,151968,137958,137664,112468,118650,186125,137750,162280,132428,98382,125541,112247,103985,96904,80865,73882,56782,36064,48058,58513,45340,44074,28194,17537,10266,157,970,1372,2482,3478,4986,5048,9641,9024,9686,12980,15546,15739,15313,13272,16366,10761,8471,7764,6292,4081,3147,2743,2278,1994,1826,2549,3231,2488,3393,5688,5386,1450,6030,9716,16054,19459,19806,23856,25494,21729,41812,49646,64509,77599,76889,87515,112638,97640,93850,64269,61412,82548,64860,41948,28017,15917,40435,79918,96072,106148,112218,115435,92547,108698,79459,60204,56696,51317,42606,32318,36415,35834,33652,24208,20927,20655,17092,9146,4716,0,37,76,140,119,165,217,281,602,962,1224,1473,1629,1920,1512,1711,63430,70326,97522,112090,123818,152719,224271,167337,166540,134524,152234,179976,190192,182758,116466,123197,126142,85862,100653,85676,70798,86866,73829,61844,65450,64675,64353,85672,88851,97746,125855,112400,104575,96090,96557,57572,32215,27182,23275,17175,9556,8106,9500,7454,5898,4158,1979,1066,796,720,732,1074,1234,912,638,662,1430,1852,2192,3024,2418,3410,3779,3946,4806 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5437,10578,13274,15639,11976,11318,14528,19547,25192,26003,27621,22948,24224,36069,37920,35157,43679,65131,74353,59058,54981,48874,33312,33981,32256,21549,15450,8461,16222,27302,26738,36373,30416,33422,23244,22595,14192,11389,5465,0,2434,5264,10110,12571,13036,16049,28339,64821,64949,78211,98533,115621,90906,82198,73152,70352,57336,53513,38995,40365,35427,23307,15453,5880,5754,6740,6557,5209,5980,5221,4811,5186,4806,4973,4846,3377,1914,1397,606,0,340,566,888,1273,1553,2265,2512,2769,3093,3024,3545,5783,6442,5394,6851,8198,10570,9778,13793,15231,11100,10488,7836,8729,6487,5469,3821,1533,2538,4703,4991,698,885,813,732,544,522,586,459,345,278,285,188,72,63,46,20,0,3538,7601,8048,11378,11738,17808,18726,15975,24487,36478,52564,91898,116438,104322,130764,122502,78449,63980,60605,62758,43293,19491,11387,0,50799,86558,142826,163339,211528,228124,202968,186312,210818,199609,251726,331732,280922,274645,243864,217252,196348,148523,136502,119303,98594,81203,33928,71552,65076,56672,70125,69075,61859,50978,55700,74338,54904,46848,48780,38951,55930,73744,95733,155189,167426,141067,194380,191109,214209,168024,117499,60943,67270,66153,50677,54280,54830,59034,85099,110414,102235,135318,131912,97412,79428,100167,66103,56384,58736,62115,44459,37034,31796,23010,11144,0,0,0,0,0,0,0,0,0,196,456,723,1266,2405,2826,3615,3282 +0,37,81,114,224,188,212,264,408,406,329,209,117,144,262,302,1338,6039,8050,11070,12320,13510,10550,10966,24912,23708,21707,20134,21580,22284,34582,32940,36198,48264,72710,70293,56920,52590,53373,39292,34264,33096,35582,23942,11933,23146,31681,38129,38106,27173,34433,24133,23570,18622,13858,9482,3772,7182,8874,13487,16732,22073,25883,29090,76250,74297,83059,107409,79295,76852,68578,72285,69775,58278,50495,42062,48756,38802,22952,19838,5636,5278,4524,4270,4627,5044,4390,4667,5472,5151,5240,3960,2990,2273,1290,629,0,314,600,672,828,1290,1875,1836,2230,3404,3296,4070,5731,5506,5757,5954,8654,8758,10353,11468,13268,10903,7818,8346,6726,6612,4482,3426,1714,3202,5547,4802,792,882,858,746,368,394,523,400,468,399,322,281,139,96,73,38,0,5636,12107,12877,21591,23034,30567,32922,15842,24600,42312,66754,85407,101966,100701,129914,109752,69611,54728,48757,41402,33988,22206,10314,6608,38364,75218,99666,131636,169222,187251,172659,247259,245562,209674,223278,309587,307998,279193,280387,164256,156954,129258,154056,153452,97094,69240,37111,65298,62914,59595,58456,52762,59727,67457,64874,68074,54016,61410,49160,31266,63192,87427,134912,195750,180156,167949,240512,229278,219580,132896,81053,86818,90594,93622,69391,55129,50155,52398,69834,74636,99128,105228,115888,116847,102350,83505,57744,55285,47880,40614,31248,36067,24604,18916,10252,0,28,57,94,66,110,146,142,161,314,632,924,1371,2330,2832,3357,2996 +0,89,162,246,390,444,444,604,1004,790,672,486,278,418,461,694,2481,5433,8246,8725,12931,11589,13567,11668,24477,18932,18604,17544,15151,20598,21966,28421,54124,54701,67848,47756,61822,44614,41628,31290,31093,40004,38130,34478,17751,28938,39530,39161,32483,30259,24790,16913,31035,24467,19394,18829,7740,11198,15320,19773,23186,24606,32684,34107,73602,74806,76082,89630,73270,75748,61396,66329,66181,60200,46240,31474,47914,44756,32396,20632,3960,3288,2896,2311,2769,4695,5099,4936,6768,4891,4861,3240,2713,2154,1486,886,0,252,514,734,646,1094,1244,1238,2110,3529,4402,5640,5288,4290,4957,5056,6745,7223,8544,11714,8326,8111,8562,8139,7965,5890,5550,3287,2147,3654,5229,6230,978,801,724,730,373,413,345,360,492,531,460,341,160,109,82,39,0,6381,13452,18814,29633,32435,42374,50366,12081,26015,47826,90799,103133,109775,99269,89064,77759,66697,49634,36456,32519,23717,19594,10358,12501,30915,51488,63110,89035,117720,116708,100110,235066,205659,169867,132583,275917,222718,265813,261618,126373,116092,120532,148298,144397,102591,58816,32880,56608,49772,62117,83248,58188,69231,63710,52020,82467,61360,56218,41284,28344,91833,140214,170251,213470,246076,267046,317846,217081,206961,163737,108889,143447,139917,105542,97390,50187,45951,39682,43931,67523,73104,76436,99470,108600,94567,58442,43338,41267,34849,29880,20328,23928,14927,10664,4898,0,59,98,187,157,192,279,259,273,515,634,841,1103,1636,2538,2560,3643 +0,129,333,402,528,626,686,776,1310,1145,1100,787,388,534,640,899,3336,5126,7755,6878,9878,9723,10523,10269,19666,20966,18082,16332,18992,22328,23602,22091,60520,79124,78677,62319,68176,45514,40917,34831,42053,46946,42513,40107,28855,27862,39573,32865,29352,29974,23090,20362,23080,21472,21768,22746,10269,18575,20616,21388,32278,31428,27796,26506,79156,63171,77286,83550,114053,82918,86516,72148,48768,44715,42519,37406,34991,36138,32319,30478,2675,2108,1675,2159,2856,3740,3989,4418,6388,4646,4112,2558,1853,1472,926,450,0,164,354,430,406,723,1028,1279,1719,3210,4301,4719,4327,4328,4928,5628,4428,5451,6002,9418,8818,7957,8048,7518,8210,8396,6417,4176,2231,3318,4499,6048,1176,921,773,711,418,358,325,307,662,610,519,426,270,192,113,60,0,9796,21602,27922,33655,45566,49742,58556,13890,32830,62196,80817,85928,93214,80817,64896,51565,47787,38075,30187,27010,23228,14416,8731,15686,31380,46345,52310,63381,83932,91626,75230,221144,184838,140920,111566,213570,200803,168957,194519,165102,120204,132157,133780,115341,81934,70695,32350,61453,61400,85024,89512,71339,71070,94644,73685,122636,109664,75956,59104,33270,83051,120256,146307,316378,339384,298496,314372,271706,194840,137472,103978,144972,163733,144601,115426,64962,59853,36037,37284,106581,83392,74761,94455,102302,79699,59077,44288,31177,27595,23163,19396,18408,13726,9585,4952,0,78,114,248,358,398,308,342,501,754,895,829,1154,1326,1639,2366,2912 +0,207,428,684,913,1262,1248,1346,1611,1662,1415,1090,526,770,1129,1135,4865,5777,5624,5992,5866,5104,6814,10350,16628,17338,22013,19654,19130,19783,15163,16263,87415,73770,46340,43328,58074,51419,49968,45752,52636,43781,36555,44850,39221,44847,40501,34446,16542,17378,13252,20009,23650,24191,35799,33574,16252,23768,27587,28452,31218,26742,32405,27554,62338,78680,116638,103716,117488,98848,95168,84047,25223,27792,32307,36747,32455,29835,37132,27628,1312,992,1132,1583,2275,2706,2880,2752,4667,4313,2726,1898,700,505,392,167,0,46,96,160,200,320,354,738,1477,2910,3484,3780,4390,4008,5595,5591,1938,3092,4405,7913,9297,9828,14393,10416,10241,9196,7233,5184,2724,4542,5551,5264,1222,851,729,462,361,388,298,372,867,823,804,703,414,360,216,130,0,17836,31523,38592,47918,51119,60415,59295,21323,30025,34849,63980,81547,67327,78064,51107,39214,35576,29342,19191,15640,15267,10067,11059,23736,21772,24780,34464,58396,40803,34592,41511,282249,207985,210322,191376,111944,117969,145654,155693,150852,136671,113537,120187,117852,79922,55808,32715,75701,75698,78123,82418,102274,111658,96430,77226,137832,107428,89754,65791,39177,50046,80178,118916,376920,412501,323042,334284,254514,221969,154164,132042,167572,131340,136103,91109,76450,82873,84992,66834,113884,120190,144306,118817,93576,88645,82357,49598,12466,14860,16771,17530,13552,13436,9831,5159,0,68,157,288,457,418,524,568,615,773,914,823,858,1113,1873,1639,2220 +0,222,550,870,1070,1305,1577,1568,2786,2100,2228,2212,2294,1695,1961,1818,5542,4856,6530,6201,7816,7662,7735,12624,17175,18108,21297,19375,11838,11964,9944,10224,61914,55730,49386,41691,45032,50165,38718,42906,41041,43000,33240,33501,25360,33086,24467,25140,13807,14518,18485,23037,25945,32456,34153,56364,36150,33964,34968,42722,48553,43719,44633,47804,59159,73614,77200,87102,102895,82035,93125,63066,33511,34919,29956,29637,31848,27851,35059,26000,793,763,772,1000,1488,2116,2511,2191,3141,3136,2452,1315,453,412,329,134,0,36,90,134,141,202,308,470,1117,2216,2578,3096,2779,3464,4380,3316,1761,3233,4372,7372,10082,8972,9861,9568,7860,9932,8761,4822,1885,3806,5018,4558,1504,1072,626,530,460,405,446,360,730,722,660,556,485,393,191,112,0,15750,25936,33432,42557,48860,62000,56448,31497,34799,53228,54544,59579,63561,101521,90793,23540,29124,26587,16740,15994,18534,12845,15064,21316,28092,38430,47761,55527,42768,37025,45983,234726,178295,211246,148096,105352,119637,131334,151942,114170,100200,77358,93832,108687,86528,49479,22652,64652,81370,86542,72486,116314,98719,75796,65172,116885,89506,78458,62402,50295,73282,98842,98651,298723,362664,360551,239719,301850,225838,169280,148117,218807,143572,164496,122202,59763,69270,67812,67381,140029,133879,122831,113288,79616,63740,58276,36090,9482,13116,15800,15315,8740,9144,8112,4718,0,96,181,282,488,574,756,994,693,884,1014,1015,910,1308,1938,1510,2130 +0,293,552,998,1070,1694,1985,1747,3373,3004,2866,2618,3320,3229,2433,2683,4939,4765,5953,6671,11078,9666,10438,12129,13441,13468,15680,13107,8564,8598,8702,7123,58519,49177,46103,41852,36936,36660,37308,33040,34695,31886,33188,30781,16678,13545,16850,11488,10185,17226,18936,22325,24898,34668,44672,63094,49891,35028,35943,66954,55775,48098,61842,57687,66069,62298,56332,60924,81924,75033,64284,76990,40119,33157,30650,35559,21862,22511,26440,25541,626,692,548,784,1281,1193,1507,1601,2766,2326,1390,888,418,357,210,108,0,26,54,69,98,129,210,306,695,1142,1760,2024,2141,1928,2644,2293,1211,3092,4292,6517,7877,8012,5880,8952,8384,8165,7518,6544,1844,2126,3106,2837,1381,947,652,520,524,556,492,480,633,650,630,576,488,372,242,105,0,16679,28332,29358,46674,54204,71642,56983,46905,48246,60794,72027,58855,93746,100464,129196,12700,16609,18667,13117,15534,19281,17564,16934,25930,27610,41596,40479,40133,41580,41566,46005,208510,180825,144022,132662,106213,118002,131026,90533,95369,77116,58688,76890,116481,70753,37770,15532,85618,108364,104136,107922,99710,88020,73746,48588,72757,66230,66020,69801,77735,85375,100267,119952,336758,374346,341246,290471,321027,284851,245566,199415,241306,227392,145158,95845,44272,47750,67768,78749,159784,126794,122716,102272,67338,58892,40982,24014,7894,7854,9923,8293,7627,5484,4254,3338,0,84,176,453,667,1054,1196,1321,1032,888,945,1069,678,1157,1450,1704,1434 +0,369,852,1176,1432,1759,2102,2518,3056,3290,2833,3874,4841,4000,4092,4895,7661,7718,7714,7654,9553,8733,11684,13784,16205,15138,12668,10205,7947,7834,6266,6238,61515,54948,36990,29824,21610,24086,25450,32114,31122,27126,19820,18364,11982,9334,11140,7318,4901,11880,19640,26246,33660,43444,61270,70786,62690,69102,53466,89656,74054,77690,73417,65854,75867,56738,44062,57282,67114,58480,40814,50858,43719,34649,23067,26500,16670,20330,30390,26000,258,288,305,416,522,584,771,762,1496,1123,682,426,219,159,106,58,0,15,30,33,49,74,124,130,410,672,958,1014,1238,927,1350,1114,1044,2170,2736,4935,6198,5550,4804,6516,6170,6216,6214,5026,2000,2508,2410,2043,1284,980,642,632,539,656,564,658,663,653,662,494,511,349,243,121,0,18614,41669,46754,58926,73025,67398,81840,94927,58756,66290,55564,54628,76108,104204,166272,7460,11678,18425,15668,15460,16122,19144,21031,30940,40252,44297,41000,45298,51208,47346,48344,158523,152586,147138,131728,150246,162004,168812,109260,79814,77938,68832,75772,72292,51533,34233,17280,78304,87309,97326,107836,126473,105570,98509,62984,85392,75226,71468,65890,74050,78914,78838,86424,352232,324876,258075,309698,357156,289414,250207,238397,282083,187119,120540,90668,47337,55161,73026,74226,198754,149389,180530,128992,94795,73167,44424,22730,3736,4445,4914,4897,3709,3204,3194,2229,0,81,191,428,665,924,1383,1534,1284,984,738,854,670,1256,1547,2012,1842 +0,207,369,560,665,1358,1845,2714,3471,4069,6282,7166,7422,9930,9717,7689,9170,10877,11437,13132,12960,13940,16026,16670,14808,15616,14252,14540,11332,9929,6556,5196,73889,58940,65470,47389,44423,51789,53905,49730,34860,29327,14688,11096,10346,8578,4014,2222,188,17295,42461,63569,78157,98858,99279,95414,97425,105196,119469,80276,78750,78876,68326,85174,72699,75442,78426,58599,67727,57812,67398,49463,37234,28188,20882,20921,15840,19944,19421,25962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1226,2932,4115,5489,5236,4201,5013,5053,5379,6344,7116,5536,5168,4265,3600,2156,1242,1331,1625,1542,1375,1501,1307,1038,689,642,575,567,547,449,360,158,0,17696,34083,47891,83285,86118,128271,144464,112893,131712,127788,168400,229936,245879,244077,186832,0,1017,2473,4144,4522,9366,12243,24380,32056,33297,41962,45984,43252,45230,57752,66120,137402,137541,98420,121523,156151,147588,130089,121388,94632,86760,106542,66431,58849,47646,36806,18998,81398,110299,129829,118367,145558,133784,137306,89677,82223,56292,50923,54417,44219,51264,54411,80226,264046,249733,193422,216863,173960,158002,170863,209974,251676,213860,178294,155922,122523,116515,71706,100347,178070,134661,154548,173999,150561,115351,59670,26162,0,354,696,1096,1199,1533,1730,1530,0,231,471,594,923,1282,1571,1564,1492,1449,1079,1164,925,1256,1650,2361,2301 +19,224,360,580,686,1084,1426,2196,2534,4013,5131,5431,5557,6572,7232,7299,9716,15042,17633,25346,29786,31631,25556,30190,17104,20614,16450,16272,15150,12764,9520,12515,100434,70743,92529,83610,54504,57034,83627,59067,49427,44646,34870,27221,19953,16453,16238,12950,5433,23820,41836,50350,60294,79156,107358,108026,79282,89134,101081,68582,56577,66758,54588,78576,68002,75695,59372,59774,42041,43157,58911,39094,48550,33832,21073,20114,15565,18887,19658,24028,2099,1617,1124,826,342,1752,2732,2644,3191,2050,1469,866,320,256,113,56,0,0,0,0,0,0,0,0,0,5,8,15,24,24,29,33,1062,2548,3746,4358,3709,4222,4756,4364,4965,4974,4704,4179,4517,3766,3510,2162,820,872,1340,1312,876,1254,998,964,1138,838,643,590,438,462,346,172,0,15162,35087,50702,77137,79548,90128,100687,81293,92196,108183,156468,223801,252616,196850,228140,5021,5676,6232,7768,6770,10639,16968,23308,29476,31437,36075,37793,45454,52150,47611,63060,83988,113204,97525,116768,150138,140808,126398,91450,98209,92790,98054,70927,70857,48305,33132,16942,61646,72676,99600,112558,135510,136338,114967,72644,86268,71615,54819,41845,40765,51972,49828,67634,232972,181148,164282,187910,187787,159396,189569,197836,160915,172970,143913,120226,125979,120686,83660,122012,172099,141188,125965,163444,172674,103276,57678,30542,2387,2885,2988,2508,1628,1764,2358,1740,324,496,731,900,1096,1056,1248,1348,1294,1274,1626,1244,913,1404,1548,1914,2512 +42,230,452,634,695,954,1611,1976,2148,2818,3866,4077,4006,4394,3379,4175,8067,18028,24714,42429,44361,42958,40064,37463,21458,23312,21932,22517,14938,15557,16770,20695,95990,94507,112628,119942,89793,92782,92542,75840,69818,68512,52698,35004,26896,29578,28225,28650,9190,18974,35385,40371,63580,63488,87421,106504,80279,94858,81304,73774,53979,53894,67264,67428,69681,63798,56009,44726,37080,39964,44070,39230,44747,30860,19490,14776,16911,24485,27916,29964,3853,2880,2106,1666,770,3482,5485,5550,6732,5710,3598,2084,743,475,248,107,0,0,0,0,0,0,0,0,0,8,14,20,39,52,51,46,940,2013,3148,2700,3995,3245,3492,2944,3963,3411,3819,4017,3105,3292,2574,1782,658,626,625,730,725,798,1078,1263,1351,1153,816,542,478,436,256,130,0,13212,30064,41174,87082,65068,57439,69451,69359,87648,95760,131906,229826,246050,238480,241186,9773,10636,11483,14194,8043,14664,16614,20682,17940,25830,29120,33734,36223,47465,48126,44869,60252,64506,83518,92253,107952,102643,92675,87802,83415,83119,65598,64924,64164,42291,33874,17824,41645,50774,66630,98322,126005,87202,85012,71912,77583,72605,57424,47110,51452,50357,59855,64700,154494,170043,140984,141661,163007,172066,191148,221931,143946,130958,141313,111582,141379,141683,102119,98116,136437,147282,147123,169583,165419,119918,51224,38066,4927,4324,4910,3325,2021,1774,2200,2219,750,872,811,1146,1013,1160,993,1152,1368,1526,1657,1193,1067,1478,1493,1411,1914 +75,294,448,676,858,1124,1803,1844,1488,2020,2569,2908,3264,3060,2846,3525,7016,16548,29444,40212,46444,43162,55142,49308,26212,24858,18422,22344,22838,28386,40798,49565,96583,109414,131725,128087,127349,119724,156701,112552,110806,98376,79361,48194,33400,37308,39832,40896,11160,28914,44964,63814,85502,74372,72058,101443,58989,66698,58694,70676,63368,67534,55766,75400,48287,62169,57557,38926,34075,29204,39465,40512,35921,25637,14721,12928,12788,23530,36598,33556,7872,5299,3726,3062,1425,3692,8662,10442,14579,12666,7249,3354,1457,924,502,230,0,0,0,0,0,0,0,0,0,16,29,36,50,60,66,72,1157,1784,2897,2432,3521,3308,2901,2508,2345,2512,2095,1946,2132,1902,1672,1283,430,506,432,514,610,722,1076,1132,1566,1486,1300,702,338,292,254,122,0,15371,23198,37466,81557,61332,41338,64516,51694,72204,112892,156829,184508,212048,205882,229522,21453,17099,21190,16745,12818,14740,19606,22452,25792,23258,19108,20482,26531,31300,33346,32702,47970,58770,63472,76124,85687,87378,80002,70386,82377,56914,43192,50566,56266,36500,22830,12490,25645,37570,56459,67716,95903,84788,58905,45452,68414,65998,65566,50236,51169,69768,66089,70560,133741,120912,91432,105399,101428,121232,108646,138682,168349,149783,169090,132317,113636,109086,97177,97528,102193,100928,117196,128294,139752,84408,47446,40015,6929,6278,6073,3698,1960,1951,2561,2390,1061,1034,1059,1072,1110,979,979,706,1204,1764,1413,1240,996,1448,1525,1557,1620 +89,408,652,665,1000,1208,1559,1874,937,1520,2260,2142,2404,2626,3591,3133,9434,18930,23246,44928,55778,63540,67448,77026,26203,29340,28611,30286,25659,37104,44347,48924,111437,90902,112389,112915,138740,160615,131552,156899,142548,106601,54044,42400,35660,37651,37368,46631,16051,42363,55037,103026,122304,158729,155749,127151,45152,50536,55322,66299,57720,55785,49589,74408,46331,31263,24296,22447,21682,37774,44608,42024,32581,28201,23411,19106,13464,15831,20504,32157,10050,8008,7631,4126,2432,5798,8272,11901,20899,15066,15162,10116,2135,1614,1081,442,0,0,0,0,0,0,0,0,0,17,27,44,57,75,110,137,987,1539,2442,2124,2674,2708,3289,2573,1006,1062,850,688,754,684,680,848,246,324,318,430,641,768,779,926,1635,1471,1043,578,347,203,140,76,0,16428,32383,51944,55676,61238,62900,51996,23665,68811,117937,133901,149310,177568,245464,195949,28245,23354,21154,18851,14694,13450,16246,19773,26296,29685,26146,18524,11904,10970,9142,12687,34532,48560,63668,78343,75320,57596,65086,38026,62732,57084,48953,47242,48372,35032,28678,16101,14346,37586,54238,61236,70747,66281,43391,24692,45734,48608,38242,64123,75820,68104,60517,87251,90635,84617,110274,110899,79137,53812,51880,52906,139972,118850,94608,101567,119821,88150,99835,84022,52612,91510,110272,114810,109982,73874,56308,34882,8755,6181,4218,3556,2038,1910,2702,2612,1219,1371,1470,1609,1312,876,538,504,1462,1274,912,1078,1098,1498,1485,1276,1572 +120,358,532,624,822,1194,1480,1681,514,988,1601,1841,2952,3152,4048,4372,8006,14922,28659,40362,59448,51965,67963,71211,37580,39005,34684,36186,36333,47105,51821,50843,94136,93748,123196,118021,146574,167908,161223,186044,137884,125830,89958,62240,36800,30390,40220,51090,48280,49461,75453,97344,139989,116286,115674,119407,90714,87276,66416,70680,78784,65482,44109,58264,76436,45360,36328,28411,25210,37980,42104,41712,29655,27323,23456,22939,15790,21622,20604,26445,12355,10168,7076,5877,5035,9010,13279,17274,21392,14798,13890,9070,1954,1762,1224,695,0,0,0,0,0,0,0,0,0,16,33,61,72,110,126,156,702,1099,2007,1817,2561,2482,2151,1971,957,777,826,622,550,458,589,588,410,591,562,714,644,675,779,926,1653,1476,873,631,515,328,206,112,0,15630,31015,34700,47961,50394,48208,47163,38324,70250,110974,121950,136790,159896,173339,175622,43590,34822,33366,25462,20992,16789,18550,19610,17376,19232,17503,13249,13585,13364,13039,16012,30970,35436,50024,56732,65971,44867,44018,28542,44050,40878,41000,37328,38843,31956,20997,11618,11564,26009,30027,30369,63187,51516,33089,17935,32499,33332,33404,54830,58816,57596,58245,90987,69476,85202,74618,62818,73919,47460,47928,41403,97904,84208,64791,83648,117201,99050,92314,72164,43706,91052,128922,106688,113870,77887,44864,35688,21825,13510,8240,5344,3468,2844,3221,3040,1139,1573,1730,2054,1896,1482,816,657,1747,1692,1446,1172,1319,1528,1427,1138,1122 +136,336,429,468,536,685,962,1198,287,584,718,1005,2572,3986,5849,6224,6796,19404,25867,37823,66158,58728,67163,81982,44643,44140,47552,34316,41968,57384,65722,70615,123493,133264,109872,141872,209294,225213,212019,171964,169772,144343,123535,87002,38579,33714,38518,41730,64528,70895,82450,116424,114344,106315,80514,97107,142314,127128,98142,95566,87274,77692,45023,56546,84666,61034,44644,33902,32164,26980,34056,24921,31131,31682,23469,23663,20996,21823,27755,26292,12181,9067,9188,6130,6530,10400,17355,24324,20555,14222,12722,6757,2451,1896,1155,498,0,0,0,0,0,0,0,0,0,23,42,82,73,149,180,177,373,769,1216,1120,1748,1683,1683,1612,676,531,535,536,232,320,418,444,610,598,665,684,596,668,634,993,1298,965,1084,839,585,400,256,114,0,10097,20568,28042,47531,45210,35054,38852,52741,81958,105380,118793,115184,129941,119038,138333,73020,50112,39780,27074,26336,22162,15878,14144,16065,12587,11246,12398,12147,14191,14765,26356,33078,34516,26658,32638,42192,34538,27794,18915,28063,22361,22684,18636,22940,20158,12110,7026,6744,13038,17830,19319,43300,35071,26118,12434,29998,37982,40218,52840,47656,62605,64055,89122,81131,79122,69590,62346,45101,29430,28176,18535,86953,84653,55339,60120,80310,78706,59770,48978,55033,89956,105964,92799,112763,75120,47333,31744,27707,18753,10866,7732,4076,4092,3100,2615,1588,1802,2386,2436,2351,2130,1365,894,1909,2051,1613,1377,1391,1213,902,840,614 +144,200,241,314,365,352,421,488,163,414,590,986,2028,4090,6316,6237,7355,24378,33908,44526,64125,64753,69820,84368,75272,54120,49403,51893,54528,77606,81273,60672,102875,98340,141656,167169,202889,234554,222190,180222,187001,170093,114004,79367,34684,45253,45680,59780,66588,90180,98734,123619,125068,108921,97422,113020,178587,122364,98060,79462,89905,74548,57910,56818,96822,69908,46942,42365,35844,33584,34470,30839,18697,21210,24867,25391,20491,21804,25556,28898,18250,14532,10811,8012,7625,10797,15219,21768,21922,16434,10933,7674,4103,2596,1630,728,0,0,0,0,0,0,0,0,0,23,53,86,72,140,216,203,328,538,656,682,965,830,720,710,372,288,218,246,123,138,181,198,727,756,856,834,680,697,816,927,1304,1143,1022,812,729,446,301,140,0,11894,20794,26186,35748,40088,42394,40798,52351,78027,109448,108573,98886,104854,137253,129324,87900,59413,38314,39490,34094,22344,14536,10799,8468,8104,6620,7122,8765,11032,14964,25263,32524,26314,28272,30053,28463,24720,21778,11328,13760,12221,11987,11354,11701,10194,5309,2934,2860,6005,9930,9042,25912,21672,13273,6767,12003,18734,22743,32867,36061,53201,54802,93152,100715,69722,64232,56250,40500,24016,18318,13964,41365,46310,28504,31624,46090,39248,31492,21236,75007,98321,105821,92651,78080,58707,64556,43542,35936,26324,14429,8806,5027,3963,2894,1949,1478,1924,2031,2013,1982,1912,1929,1392,1744,1748,1654,1201,1423,1061,738,450,346 +150,689,1561,1703,2166,2131,2432,2606,2425,1861,1924,1757,1307,2368,4110,5650,7666,20376,32618,54985,86753,88016,62263,63632,90182,87521,84107,82623,121082,124822,120035,110420,65105,50480,46716,35411,37126,33890,24574,11886,0,11621,21807,47561,58124,47119,52885,75254,82918,56064,37425,26800,12885,10751,13706,15996,13555,15596,21502,20807,18286,32694,50938,64281,81335,76355,60772,67444,83584,83829,73744,78103,90187,66140,69792,60278,43127,36811,27686,27458,22020,20443,17512,14256,10427,9177,12382,12613,11366,8943,7885,4537,1697,970,703,290,0,2,3,4,3,5,6,8,8,12,17,23,36,108,183,241,228,199,194,133,133,92,53,32,24,28,31,25,20,19,12,7,1102,842,492,571,466,660,740,1062,1275,1646,1471,1291,1080,911,612,351,0,3055,6012,9404,10788,10522,8447,8509,12755,19440,28320,25848,30676,55268,64307,78339,85026,54936,44489,34604,18797,14440,12148,9165,10703,9752,10732,13611,19086,27450,31079,28340,31216,23630,19207,24736,23049,16686,16211,13230,13155,10240,5985,4464,4050,2274,1309,771,0,1833,4411,8503,10518,26266,38745,48770,57959,57913,79552,82408,122492,153846,143422,115992,88402,57413,43489,27933,20320,18600,13996,6144,0,0,0,0,0,0,0,0,120705,98291,76422,68858,85848,56675,43720,20246,0,154,336,701,973,1105,1600,1393,1393,1282,937,728,457,674,806,1020,1254,939,808,632,755,659,367,193,0 +174,734,1234,1207,1678,2267,2352,2354,2017,2150,1710,1614,1156,2044,3030,4107,7525,25492,48234,52752,74492,68488,65943,76971,74228,74876,85371,78510,117667,117648,144904,94412,70445,60519,46096,29902,36236,25976,20009,10187,436,10738,24460,32640,53985,51568,46553,58520,110575,73088,44793,36802,26408,19570,16547,17836,14304,17259,19064,19483,20602,35628,44592,63015,65200,67525,49836,65124,64369,69552,56573,61634,74184,70005,49466,48628,37840,39768,24754,20095,17989,19019,14432,15440,10796,9952,12148,10978,12357,9660,6613,4982,2594,2290,1052,532,0,5,7,9,7,12,14,18,12,19,18,26,40,107,147,201,181,386,630,1023,1656,1847,1702,2185,737,1099,1292,1338,1843,2325,2876,3752,869,780,697,544,531,630,538,750,943,1226,1109,959,703,668,365,242,0,2742,5676,9106,9976,10834,11910,11702,17634,20094,29687,29568,38662,50744,68850,77600,83262,62956,33735,29064,15863,13889,12266,10680,9744,13300,16310,18840,20212,21418,28666,28508,26859,23764,27121,22324,22439,16883,20388,17480,13949,9870,5004,4457,5449,3651,2176,1020,0,1480,2699,6263,10494,18361,25695,35888,50712,70538,61498,101258,72161,82589,127221,119368,76167,52286,47609,32152,26044,18122,13162,5906,0,0,0,0,0,0,0,0,112645,97407,82165,73684,73012,60406,43639,21062,1850,1423,876,1219,1480,1744,2325,1824,1471,1168,1019,726,543,786,811,958,727,706,780,652,531,467,395,197,0 +186,729,1122,1200,1779,1824,2222,2342,1884,2134,2170,1612,1298,2037,2364,3668,10582,32610,49968,66513,81841,65625,51568,44061,46315,73900,77202,64172,163746,135226,123659,116406,68253,54894,39050,24897,29890,21705,12919,7104,821,13721,22510,23019,40407,47577,45282,39100,107515,81240,53324,35774,35636,23185,17482,18076,19564,15858,19962,16184,20964,22901,34465,40144,63102,72260,61552,59200,64958,54531,54124,43325,76139,68006,48202,46580,49143,32691,30770,29482,19331,19464,16412,12090,8870,10080,9304,9814,14247,10424,8197,6041,4739,2983,1552,639,0,5,8,12,9,13,20,20,13,22,23,34,30,87,128,168,174,530,910,2202,3562,3353,3946,5748,1763,2202,2652,3020,3742,4113,6447,7328,985,952,680,637,582,560,564,871,794,1042,1036,1054,527,453,260,116,0,1838,4084,6356,10397,10347,12472,17858,18380,27993,28622,27799,41148,49694,50708,57687,61044,40637,25238,22454,16492,14879,10436,10081,10278,15145,20874,26170,15415,25119,28347,31978,22935,29988,29531,27164,30729,29000,21346,21306,10196,6848,4590,4569,5682,3410,2352,959,0,994,2180,4286,6981,14010,18882,23164,33960,43601,70368,91013,55606,80096,93891,93484,83189,66765,45224,41458,26110,15884,11344,6236,0,0,0,0,0,0,0,0,92666,67121,67276,85803,93972,71026,36912,16855,3246,2316,1648,1696,2702,2353,2407,1688,1256,1035,856,682,625,909,986,985,558,564,596,600,512,410,305,156,0 +263,432,776,1231,1508,2004,2118,1712,1874,1662,1644,1269,895,1400,2044,2476,10789,27048,43332,51332,72222,67870,46995,44084,42858,61396,74700,74682,127974,117487,125723,111250,73076,50383,37000,27074,24130,15903,13150,6532,1256,10975,14441,22670,34492,43776,38775,44604,88544,73509,38899,32980,30905,27318,23476,21240,15815,16640,12054,13610,18738,19464,22854,22200,62917,60634,48264,49074,50226,48027,57247,48256,62603,50736,29377,32628,44891,34218,25674,24622,16601,16138,15590,14944,12332,10399,10140,10268,14292,8270,7808,6322,3964,2762,1960,706,0,8,14,14,17,20,23,28,12,17,24,34,41,66,92,122,130,758,1114,3300,5028,6218,8466,9210,2569,3383,4960,4723,6002,8646,10571,11083,1322,962,604,684,460,592,621,878,846,984,944,836,449,404,202,94,0,2000,3832,5740,9329,11739,16571,19400,16380,24447,33134,28666,33647,41372,43274,52032,33140,21794,17489,14369,12062,10858,11744,9646,9894,15524,16152,22020,17571,20960,23741,28074,19444,28261,29619,28318,24827,27108,19957,21062,10717,7162,6088,5224,5567,3763,3009,1394,0,1314,2750,5405,5420,10379,15762,17027,44905,43974,52278,60728,43523,67975,78808,110856,69314,66311,33661,34315,29160,18746,10336,5624,0,0,0,0,0,0,0,0,59361,63127,64882,65586,79806,54928,34807,19608,5379,4058,2825,2820,3150,3140,2958,2439,864,825,863,600,514,622,974,724,606,514,584,468,301,276,188,84,0 +323,626,800,829,1138,1714,1752,1582,2206,1397,867,859,564,954,1137,1254,9647,17131,33126,51047,58785,57564,75421,72985,28301,42882,69862,105104,116158,125576,102477,118168,58437,42360,23009,19278,16326,12671,10825,5877,1282,10812,23002,36248,38692,50387,55399,64593,72785,74960,53010,39882,39736,33938,22281,22792,18614,14045,9594,9058,12706,10882,7209,10095,57211,57792,51934,43496,32422,29241,28007,32060,47689,57138,55785,52099,33308,27122,26009,18992,13438,14968,15039,11938,14546,10619,9787,12888,10716,7585,7077,5575,5121,3494,1820,788,0,7,11,19,22,21,20,29,10,19,28,30,37,52,59,52,65,2210,3718,5732,5908,8482,12929,11906,4519,6157,7788,8402,8028,11694,12918,15193,1520,1518,1139,798,562,819,867,1129,1045,649,564,500,455,347,287,141,0,3687,6313,9833,11576,17136,24607,29168,20974,24408,23547,37712,40870,34194,38030,44550,10302,8302,8252,7446,6704,9440,9801,11046,9708,12906,12348,18568,20592,18332,11534,14405,21502,22846,17139,21287,27673,24370,26804,22274,10812,9125,6640,6663,5489,5182,3808,2211,0,1007,2287,4811,6484,6296,7679,7824,46188,50049,59419,52846,44542,59856,55378,84262,56915,47768,36084,39808,33513,29801,20436,11560,0,0,0,0,0,0,0,0,53841,74775,71957,72418,60923,39959,38699,24745,6666,5204,4731,3988,4139,2985,2794,2940,519,462,380,448,440,320,336,500,538,444,328,318,236,132,85,48,0 +214,513,507,674,861,1028,1237,1206,1691,1290,864,762,459,734,734,766,8519,16587,29092,48440,53999,55176,62556,60418,23912,45921,48527,88388,82943,115172,97104,94751,34552,33443,17528,14384,11733,11136,6661,3832,1080,7991,16933,21510,34456,34626,36637,35830,88421,69330,49136,38012,44846,43024,26916,26292,20699,17208,17191,13852,12223,13408,9708,11920,68082,61708,53297,48970,32945,26021,25667,28899,32389,37708,38667,35134,25304,27427,23252,18387,19011,15812,14773,16733,11324,10095,11268,11778,10456,8874,9693,6670,3440,2828,2040,1117,0,6,9,17,20,28,37,40,20,28,30,30,31,60,56,74,107,1994,5257,5816,7348,10066,12059,14340,8559,9018,8870,9251,8127,11576,16124,15592,1198,1280,930,620,466,618,615,762,1010,629,543,471,443,308,220,104,0,3558,7891,10743,13112,17948,22804,27542,16172,23114,23415,31801,32871,34328,52192,47358,8314,7052,8045,6989,5792,7505,6426,6900,8363,10436,10318,16351,19472,20415,16895,19180,17485,24336,25108,26790,25758,23675,26165,21632,15275,9978,7783,6188,5067,4044,3564,1647,0,1753,2910,7066,6728,11255,11473,11760,35716,39692,54302,40149,41252,48214,52566,90057,46386,34836,34478,31293,22700,20732,14255,6510,0,0,0,0,0,0,0,0,44804,64680,80629,67695,44160,36590,32908,21108,9762,7579,8121,5944,6152,4235,4088,3407,312,344,318,290,311,258,313,454,413,352,298,257,175,124,79,42,0 +172,280,382,593,774,699,719,1052,1005,820,794,572,329,433,642,801,7460,18302,23097,41018,43883,42817,41525,36237,20723,38282,47756,73523,81051,93712,112686,109550,19966,14748,13674,11527,7606,7399,5047,3444,852,7474,11947,18042,19167,24150,28074,30427,82583,64724,55396,54372,38860,32411,35378,27190,19539,23286,21904,20871,14216,13702,12574,14716,57219,58273,60394,39579,39447,33871,28842,27153,28718,31374,33146,35072,22436,23793,17632,16450,20120,15606,17714,18526,11204,10963,12794,13907,9154,10546,9090,6568,2816,2426,1839,1034,0,5,7,12,13,30,42,49,24,32,37,30,30,45,78,90,157,2515,5354,6564,7129,7519,11609,12268,16348,13284,11882,12996,8223,9696,15327,15658,1041,798,818,456,364,417,564,582,771,593,458,314,333,310,187,87,0,4861,8258,11005,13520,18000,21439,25856,13946,18145,24145,28177,31123,36138,51074,42679,7783,5474,5781,5359,4062,4866,4938,5190,8594,8057,10718,9966,12634,21225,23795,23994,17420,20095,26127,28534,30928,27149,26744,22150,15496,14823,10732,7626,3109,2608,2226,982,0,2666,4836,9427,10231,10770,14503,12238,27649,34374,40796,43520,38875,37503,44336,68833,28289,30200,27631,29203,14057,11234,9866,4140,0,0,0,0,0,0,0,0,44129,64222,66336,62014,36662,33666,19802,13815,12053,13653,12556,8229,6121,5489,4170,2543,222,221,170,186,308,242,273,296,354,327,237,212,146,84,48,29,0 +222,214,288,413,566,514,508,819,820,654,466,478,252,313,365,388,6236,10336,18027,30935,29814,31912,29101,32931,21579,33286,47546,67401,59789,85220,89705,97088,13485,9321,10594,7482,5494,4640,3337,2748,1102,4974,7880,10474,10151,13621,13885,15542,90361,62296,75872,69026,48980,47326,46504,35380,20609,19108,19150,25566,24298,21704,23144,20754,57366,59752,46195,38024,33183,24014,22801,18056,16953,18128,19384,20232,15717,15498,13872,17138,19620,16746,18592,19336,14316,13180,14051,11934,7864,7562,7894,5842,3404,2992,1822,1169,0,5,7,12,13,32,47,58,46,58,42,40,34,56,80,92,180,1928,4908,5718,5637,8963,12170,13482,15832,16879,12583,12155,10807,15254,15418,18940,927,734,742,568,346,382,512,408,630,520,423,270,214,166,114,62,0,3533,7781,8987,12237,13052,13804,23856,20153,24976,25962,26302,39674,52817,50703,51848,4870,4548,4304,5014,4269,4000,3872,4020,7308,6650,10056,9434,12105,19224,20728,28854,19596,25622,27521,32395,36631,31334,29456,17606,16252,12914,10580,8109,2514,2356,1834,896,0,2594,4389,9303,12544,13011,19647,16711,22375,23624,23705,35196,32857,47520,51729,66136,30424,26280,16164,19069,11023,7720,6096,2928,0,0,0,0,0,0,0,0,53745,61078,53016,44565,38104,32003,22453,18130,13748,12733,12741,8904,6960,5166,3828,2700,127,122,83,108,162,145,136,140,192,170,134,94,67,48,31,15,0 +224,187,238,171,130,304,406,468,499,375,428,298,152,89,60,34,3184,4127,6848,8494,8329,7238,9248,13547,22304,26900,29331,26273,29500,35704,41850,83329,6502,5220,4083,2956,1500,1517,1253,1265,1458,999,1030,805,548,376,296,172,73450,54346,51305,46539,54768,59994,50149,35868,23308,24274,21282,18915,11651,11348,14586,20472,56871,37291,33737,27184,13773,9449,9336,5514,880,7080,11356,14906,21867,19741,15865,21103,24656,19425,21002,13107,8405,9709,11483,8184,8352,7817,6566,6080,6337,5172,2419,1312,0,5,9,15,24,38,40,40,56,68,58,56,58,81,94,101,180,2994,7164,8726,13479,14857,15772,17998,21168,24110,25047,29972,38229,46305,39060,25666,697,591,396,490,449,367,304,378,472,418,445,373,403,303,219,94,0,2534,4437,9603,12575,18196,18764,20768,22186,30837,41221,47669,42970,55335,54958,47662,2134,3264,4650,4779,5659,5635,3792,4889,4400,5437,7328,9810,11826,13150,19570,27672,22019,20218,18816,17861,18955,18719,19347,13464,12889,8404,6925,4230,3595,1964,1301,666,0,972,2074,2193,3394,10039,13819,17436,18122,28694,50459,51280,65280,63986,57905,75993,24787,21406,14703,12158,10571,9688,6652,2929,0,0,0,0,0,0,0,0,59163,51367,48155,43810,45979,38342,33261,20894,16524,10191,7385,7560,6258,4378,2772,1916,0,2,3,5,5,8,11,13,11,13,11,8,5,5,3,2,0 +298,270,250,196,162,344,388,486,419,456,399,381,436,348,330,372,2791,4194,6509,6508,6303,8265,6897,10734,19569,23428,24408,23964,27458,32578,34714,76284,6409,5078,4877,3670,1726,3336,4356,6364,3704,3537,3417,3314,2827,2856,2401,2496,69305,57560,47840,48260,50421,53233,40322,27784,30600,30248,23076,17754,11042,12409,16082,16279,54440,43594,30880,22243,18806,12529,9108,5808,2229,6741,12112,15269,20189,18612,17696,25696,25537,17054,17272,14586,6911,7903,10626,7430,7155,5304,4857,4688,7131,5268,1798,1150,0,6,12,16,19,30,37,44,49,60,70,58,56,71,86,82,144,3434,5729,9146,10996,14305,20304,22468,22486,22194,20313,25938,27097,31330,37953,24508,600,488,397,404,459,424,374,414,502,439,334,277,406,267,192,92,0,1852,5097,8414,10745,12553,11083,13718,17092,29126,30250,36296,33421,33182,45306,43746,1867,2572,3306,4540,6456,4780,3048,3708,4019,5075,6736,6808,7783,10546,11497,18502,18407,21718,21818,18884,15914,16328,16049,13863,13090,10678,7549,5502,3394,2430,1916,934,0,966,2631,3004,3690,9727,17303,16318,13638,23770,46034,43368,57527,52379,52600,63508,23508,19454,13504,11532,9912,7360,4962,2654,0,0,0,0,0,0,0,0,62792,44524,34102,40178,42450,37724,26763,20816,10220,7484,6313,5554,5687,3708,2482,1881,0,2,4,6,5,9,10,10,12,10,8,8,5,6,5,2,0 +296,313,286,186,194,278,429,484,369,430,530,598,593,570,601,604,3405,3678,4910,4523,4999,5852,7880,9409,16743,18779,24015,30571,19263,33573,39086,66546,7610,5958,4775,3022,2560,5426,8050,13321,6927,5442,5159,6813,5239,6335,5512,5478,42418,47179,47774,59522,52045,34931,35206,21876,33755,30050,24442,14267,7215,9675,12758,11994,52109,41473,27258,16697,19917,14909,7701,5028,3033,6045,9799,16705,15125,20348,21654,30402,23776,21360,13388,10585,7946,7951,8422,7354,4717,5394,4303,5103,6171,3953,2062,957,0,6,10,14,18,24,32,49,51,47,58,60,63,67,66,62,177,2360,4808,8160,12238,17568,19692,23610,17366,12900,13704,22409,19124,21525,28009,19138,462,509,406,418,364,316,360,460,392,447,380,247,320,198,120,72,0,2050,4836,6133,9212,8752,8485,7472,19940,17425,23398,24002,22778,27550,38422,53174,1244,1838,2293,3421,5737,4893,3714,2976,2391,3767,4138,5208,4466,6104,7597,9912,23223,24831,22764,20423,16668,13399,15480,15842,11265,8877,7508,6050,3688,2447,1979,952,0,1182,2524,2492,3016,7278,15030,15462,8472,24614,33798,47580,32382,36991,39305,50384,15739,14240,13342,7982,7364,5343,3904,1738,0,0,0,0,0,0,0,0,49347,40018,26199,26415,30605,32585,24317,16696,6932,6790,5333,4726,3255,2828,1488,1242,0,2,3,5,4,7,8,8,8,8,6,7,4,5,4,2,0 +241,258,244,204,161,254,324,373,231,382,635,625,818,722,646,856,3032,3666,4673,5351,6629,6318,8668,7943,18156,16488,21873,21232,16908,35741,41228,51306,9742,8099,7194,5038,2974,7446,14577,17638,7912,6052,4848,7310,6941,7283,7790,7610,26750,39346,37336,44031,42449,35616,42499,30313,38266,36738,31630,15482,9243,8668,8722,10290,49596,37010,30423,18346,18590,12158,6365,4123,3041,5289,7345,13575,16379,20928,19411,23792,13749,13388,12413,9705,6251,7502,8373,7970,5504,4152,4468,4720,5993,3685,2491,1194,0,6,8,12,15,22,32,39,37,38,44,43,65,50,46,46,150,2272,3631,7214,10246,17341,19124,24788,18452,15436,16185,18482,13193,16562,21412,16402,323,301,343,352,347,362,328,366,410,336,286,208,226,171,112,56,0,2098,3905,5736,9014,8346,7568,8150,14004,16486,25218,24020,19845,23164,26634,37380,1492,1601,2026,3526,4483,4382,3456,3430,1601,2810,2938,4445,4235,5915,5564,7565,18888,17121,16926,15700,12304,14696,11259,13584,10099,9084,6040,4420,2876,2080,1857,829,0,1387,2573,3806,4696,9177,15594,14158,8870,17430,28227,35594,24955,34966,34353,45722,12517,11370,7445,6189,6102,4296,3008,1246,0,0,0,0,0,0,0,0,35933,36331,34008,33098,33466,29118,19084,12857,4651,3957,2642,2622,2538,2248,1038,1048,0,1,2,4,4,6,7,7,7,8,7,7,5,6,5,2,0 +256,192,144,141,184,156,162,241,144,238,382,616,964,910,1116,945,2259,3743,5888,6868,7228,6460,8291,6850,18711,13530,14146,17948,18598,32475,37990,33525,12224,10940,8277,7426,4820,8841,11527,20744,9979,11412,12780,9766,10694,12517,11435,11760,15763,13994,16998,32298,40428,41441,50460,38980,47269,39439,34033,17602,8353,7265,8355,6700,48352,41480,39011,28664,14964,11994,7375,4932,4076,7952,9354,13686,14423,14973,15879,18425,10232,9042,6624,6841,7527,7980,5894,6120,4923,4941,6055,4268,4601,3430,2736,1396,0,2,5,10,10,17,23,30,22,32,38,37,44,43,58,45,82,2906,5092,7982,11732,16708,22628,27956,21544,18748,23576,15894,13703,10991,10726,9305,210,191,242,260,318,328,327,346,349,267,198,159,150,143,99,50,0,1513,2693,5099,5878,6434,8786,7744,10083,13412,12280,13783,21711,38168,44293,53446,1613,2876,3490,3244,3756,3117,2076,2206,578,843,1510,2201,2843,2630,3417,5435,12418,15555,15114,10670,11031,11773,13867,12040,7353,5665,6215,3553,2172,1523,1046,588,0,1455,2987,4480,5418,6503,6853,12290,8192,14881,16806,19738,17320,23656,23699,29821,6303,5839,4539,5118,4020,2994,2204,980,0,0,0,0,0,0,0,0,38622,32510,24212,27964,29745,18973,12582,8398,1856,1438,1087,1100,999,1074,1282,1171,0,0,1,2,2,2,3,4,3,5,4,5,4,5,3,2,0 +188,145,126,156,148,117,129,178,133,338,566,929,1216,1046,1147,1456,2776,3813,6158,5768,7550,5874,5749,5548,15013,13528,14034,14631,13481,26124,31138,28574,12772,12684,8865,7988,3949,8646,13712,20914,15582,17778,18540,14638,13971,14340,17067,18445,17574,18310,18127,31832,33853,36532,45956,36807,44128,32816,28634,18186,12714,12234,12814,8698,39354,30278,24606,22324,17062,13140,8383,7269,6896,9928,10122,12025,11521,10995,15086,16286,9232,6918,4783,5239,4939,4936,5451,5433,4300,4082,4020,3684,3402,2306,1755,1014,0,2,5,10,10,14,22,24,15,23,30,30,41,40,44,34,66,2584,5308,9485,12050,17454,19757,21432,17648,19851,24006,20297,15472,12232,10325,8801,150,164,235,258,249,244,252,214,217,170,150,118,130,108,74,41,0,1070,1640,3131,5088,6062,7229,6688,7064,10208,8797,13508,17375,25414,28120,29380,1191,1880,2867,2900,3071,2293,1764,1652,353,786,1010,1641,2194,2166,2364,3680,9863,9602,13574,9388,6812,8998,10185,9042,5964,5188,5127,2826,1845,1360,872,426,0,1083,1900,3145,4031,5882,4367,8098,6214,10814,11581,13118,16155,18932,17882,23374,4894,5049,2753,3355,2388,2323,1610,702,0,0,0,0,0,0,0,0,27649,25871,15367,18566,27083,16562,12630,7439,1195,1032,911,920,939,817,995,998,0,0,0,1,2,3,4,5,4,6,5,6,5,5,4,2,0 +194,186,160,144,102,91,86,99,85,357,802,1102,1235,1337,1392,1674,3861,3669,4886,4574,6362,5496,5682,4067,12756,10829,12237,13353,8370,11550,20254,24383,13040,14033,10372,6845,4538,10326,16392,21478,22180,23236,19156,15353,20344,18814,17697,22774,22513,22346,25590,32316,28465,34540,35955,37785,46228,27954,21788,24061,14007,14763,17204,15023,32002,19276,15432,13893,13859,14474,12078,9262,8063,10386,11482,11540,11708,14292,12702,12142,5708,5652,4368,4072,3700,3434,3374,4139,3357,3086,2986,2462,1536,1369,1292,663,0,2,4,7,5,9,13,14,11,17,22,18,29,32,26,21,41,4040,7994,11394,14332,11050,13223,14140,18973,14950,17830,16774,12856,12969,12936,10778,133,144,150,149,215,138,108,118,160,139,98,94,73,61,45,22,0,481,991,1520,3325,3361,4147,3770,4007,7095,8222,10618,7620,10239,15567,15173,554,1101,1468,1712,1377,1160,958,1267,193,536,747,1002,1961,2228,1884,2262,7629,9363,8322,7974,5864,6428,5980,5509,5046,3646,3618,1842,1300,770,417,190,0,687,1253,1807,2451,3298,3175,4772,3768,5257,8481,9234,11972,13897,17486,16742,4247,2566,1894,1815,1804,1150,822,437,0,0,0,0,0,0,0,0,16967,15719,12501,13378,18083,14486,8877,5511,753,661,660,703,650,650,571,619,0,0,0,0,1,2,3,4,3,5,4,5,3,4,3,2,0 +157,132,100,94,70,66,65,64,42,357,736,1594,1418,1754,2128,2288,3374,4301,3393,2919,4906,4504,3373,3158,8785,7414,8438,10688,9742,11229,13929,14317,11968,8848,8900,6442,4500,9622,13224,21372,23361,24642,23512,23206,19048,20926,22349,22556,26998,24660,25597,26626,34208,34600,34447,42532,43484,29273,20002,25838,24270,25189,21674,17111,21383,14760,9112,8883,11312,11530,11025,10864,8630,9526,10612,9052,9943,8964,8060,8290,2691,2284,2613,2088,1828,1549,1392,1944,1706,1549,1318,1062,734,738,567,318,0,1,2,5,2,5,7,8,7,10,11,10,15,19,16,12,18,3586,6048,9064,15324,12788,9180,15107,15882,16243,13438,15809,16486,15234,16638,13904,59,70,78,80,106,70,49,44,86,68,41,40,41,28,20,12,0,211,481,765,1586,1680,2481,1774,2255,3572,4187,6244,4322,5444,7609,9938,268,448,785,894,712,512,489,600,107,252,419,412,1174,1204,934,1308,3663,4436,4717,4139,2634,2768,2622,2860,2738,2338,1609,910,744,434,200,92,0,298,507,910,1257,1478,1332,2446,1651,3082,4932,4910,5717,6432,7652,9673,2111,1286,884,772,852,595,371,188,0,0,0,0,0,0,0,0,9911,8165,5550,6004,9042,7383,4340,2706,445,364,378,365,342,330,297,330,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,1,0 +78,80,61,47,17,28,42,51,51,47,56,65,76,75,66,74,64,60,70,64,56,37,33,17,0,0,0,0,0,0,0,0,0,3284,5670,6496,8689,10630,9647,13180,13187,14136,10654,11168,11660,12244,10445,17076,18555,18417,12152,8756,5492,20578,28848,25982,35967,39841,35015,27422,27515,19521,15367,12924,11727,8936,6453,5114,3748,5568,7591,8332,8294,5537,3968,3042,2333,2796,4110,4430,3574,3300,2761,3416,3764,4474,3957,3622,2806,4651,7286,11573,12826,12641,16436,16214,22994,20908,23287,26812,23056,17604,13920,15144,11950,12912,10885,8752,8815,7087,4953,2439,0,0,0,0,0,0,0,0,0,4030,8434,13132,16269,18498,17576,15471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +72,78,61,43,30,34,47,46,40,51,62,72,61,59,55,68,52,45,60,54,48,36,32,16,0,0,0,0,0,0,0,0,1196,3349,5734,7379,12237,11761,10528,12226,15869,12560,14903,14952,13955,15322,21072,21192,12056,13633,11062,9954,11342,21566,25465,36128,27141,33362,32215,32546,20866,19534,14067,12260,29128,18620,15188,10830,5709,8789,13705,19408,22245,20049,12526,10261,6760,6382,5454,5190,4362,5676,4289,6260,5663,6244,6936,5869,3672,6672,12674,13558,18836,22174,25246,27756,19265,16546,15988,17982,16021,13444,19137,16068,15374,14509,11291,11554,9742,8629,7318,7432,0,60,100,118,286,449,459,642,1160,4880,7762,11762,12068,16175,22673,22187,0,1,2,2,2,2,2,4,4,4,2,2,2,2,2,2,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0,1,2,2,2,4,4,6,4,5,4,4,2,2,2,3,2,5,5,6,5,7,6,7,17,15,10,9,8,9,6,5,0,1,2,2,2,2,2,2,0,1,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,5,6,4,6,8,10,8,10,7,7,7,8,7,7,8,10,11,12,8,12,11,11,13,11,8,6,2,2,2,1,0 +46,59,66,50,47,49,46,39,34,56,60,58,46,57,62,65,40,46,36,37,48,36,26,12,0,0,0,0,0,0,0,0,2714,3227,5284,8000,14389,13324,12030,9798,21046,21656,16428,22872,20389,25568,25210,32110,10784,13774,13592,9910,13469,22457,34460,31764,30631,26737,29538,31719,24591,17227,14101,13038,37387,38644,27472,21265,8041,13846,19296,25960,30508,31940,24091,20292,13333,13029,8454,6766,6609,5762,7428,7923,5883,7324,8002,9386,4140,8255,15428,19068,20697,28410,30868,27586,16268,16639,13790,14050,15677,16047,18491,16534,16611,13606,13224,15251,11281,12597,11890,14510,0,116,226,303,541,728,1022,1109,2599,6126,8362,7840,11230,13844,20735,26648,0,2,3,4,3,5,5,7,6,6,4,5,4,5,5,5,0,2,3,4,3,5,4,5,3,5,4,5,3,5,5,5,1,2,4,5,4,6,6,10,6,7,6,6,4,5,5,6,4,7,8,8,9,12,10,12,29,21,20,19,17,13,10,7,0,2,3,4,3,5,4,5,1,2,3,4,3,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,8,8,10,6,12,15,17,14,12,12,13,12,12,13,10,14,16,22,26,16,18,18,21,22,18,14,10,4,5,4,2,0 +47,56,64,49,54,48,51,46,24,46,39,48,49,48,52,60,40,41,40,43,42,35,26,12,0,0,0,0,0,0,0,0,3820,5312,6150,9720,14264,10766,9790,9744,22936,16362,15757,19952,24353,31698,31355,32416,10775,13184,17646,14527,12118,20228,24058,28467,28010,28750,23856,24596,29052,18105,15008,11573,53391,50688,39594,27462,13590,20879,30112,37453,43109,45033,30074,32154,21708,20202,15962,9118,7214,8422,10055,10456,8162,10700,12113,11620,7849,12102,16324,21911,31871,29440,36312,37280,11227,12486,13732,11614,11386,14664,18392,19608,17677,15770,10855,12964,15486,14184,17826,19886,0,180,295,458,612,1190,1953,1672,4605,6608,7848,8926,14273,17821,18558,27310,0,2,4,5,5,7,7,8,7,7,6,7,6,7,7,7,0,2,4,5,4,6,5,6,4,6,6,7,5,7,7,8,2,5,6,8,7,10,10,14,8,9,8,8,7,10,9,10,6,9,11,15,17,14,16,18,39,38,31,28,22,19,12,10,0,2,4,5,4,6,6,7,2,4,5,6,5,6,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,12,14,12,18,18,24,24,27,20,22,19,20,22,16,25,26,30,32,23,22,18,26,26,19,13,13,7,8,6,4,0 +41,51,66,60,58,62,52,46,21,28,29,30,36,42,60,70,36,44,48,34,33,34,22,13,0,0,0,0,0,0,0,0,4346,6766,10440,11342,12646,9880,8810,7690,22553,19618,20067,19679,25504,29969,30603,27572,12405,12639,17337,18145,16051,16682,17569,31377,33903,25414,26118,26536,24368,23395,22105,20495,73031,55922,60923,39376,17894,20202,25221,33019,62245,52828,47652,43484,31763,23332,19674,11684,6248,7032,7373,11285,11974,14139,18798,20628,9747,10782,16523,26503,35410,37383,29328,38827,9914,11062,15351,16287,12122,15352,15312,23364,14367,12047,12095,15611,20863,19767,19669,18597,0,245,509,635,838,1538,1982,2788,5910,9884,12930,12839,14662,19198,27382,30784,0,2,3,5,4,6,6,7,7,10,8,8,6,8,8,8,0,2,3,4,3,5,4,5,3,5,6,6,4,7,8,8,2,6,8,8,9,12,10,13,9,9,9,8,8,10,11,12,6,10,14,16,22,17,16,20,43,47,46,34,24,20,20,12,0,2,3,4,3,5,6,6,2,4,4,5,4,5,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,19,18,19,14,13,14,24,31,27,31,26,26,26,17,17,34,31,24,26,32,24,23,24,32,36,28,20,9,7,4,2,0 +116,113,95,90,76,62,64,62,23,30,28,33,34,31,51,46,23,32,37,33,34,29,18,10,0,0,0,0,0,0,0,0,7669,11638,15176,16708,11728,14030,12505,12766,23312,23768,24952,22746,25526,30100,34946,34055,16582,19994,18108,20390,11793,15358,15434,27946,30709,26942,24766,25382,24798,21626,17927,12447,82775,78830,70788,42582,20894,28312,24620,43549,51318,55793,39630,34016,36297,27920,20225,9398,7095,6262,6144,10760,9539,14373,15572,25353,13657,16444,24770,35666,43326,34008,30421,38390,10678,13362,13060,14595,12159,13416,14916,19928,15721,15718,16115,23194,26450,27664,24482,30250,0,248,492,896,1162,2253,2571,3956,7031,10902,14131,11962,9938,15006,20060,22850,0,2,5,7,5,7,8,9,11,10,10,10,8,10,11,12,0,2,5,6,5,7,6,7,5,7,8,8,7,10,9,9,2,8,12,13,11,18,22,24,19,21,17,17,22,20,18,20,10,14,16,21,26,28,34,30,45,44,44,38,27,24,22,14,0,2,5,6,5,7,7,7,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,22,18,18,14,16,20,29,38,36,36,38,30,30,20,19,35,36,34,40,42,44,32,32,36,40,30,22,10,8,6,4,0 +185,175,142,105,81,81,68,51,21,26,25,31,20,23,28,30,17,20,20,25,22,18,12,7,0,0,0,0,0,0,0,0,11002,17712,20244,29453,15937,16430,21748,23347,25071,19882,22732,25808,29473,33982,28333,25834,22421,19956,22524,18377,9082,12401,19310,19733,31870,26299,31098,28584,21167,20242,13383,10763,86971,85913,80482,54924,33352,32671,32536,34961,50925,47915,41113,34450,55999,37529,19408,10379,5980,5385,6811,8035,9299,11891,16732,27084,15206,26288,38717,52718,41170,37878,31570,28511,9950,10776,16984,21903,18050,18207,12952,16196,15584,21185,22023,29491,30796,29232,30434,30956,0,256,555,1052,1383,2217,4106,5402,7918,10868,11692,14796,7093,13338,15168,20796,0,2,4,6,4,7,8,8,11,9,7,8,8,9,10,12,0,2,4,6,4,6,6,7,6,8,8,8,8,11,10,10,3,10,12,13,13,18,26,32,23,29,29,20,28,32,26,24,9,14,16,21,39,44,40,36,46,32,30,32,24,20,19,14,0,2,4,5,4,6,6,6,4,6,6,7,6,7,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,15,10,22,26,35,32,34,44,36,31,32,29,20,35,31,37,50,45,42,40,42,44,38,32,22,7,7,6,4,0 +212,174,184,142,111,90,73,57,20,24,26,24,15,23,26,34,8,11,12,14,13,10,7,5,0,0,0,0,0,0,0,0,10860,12462,20088,25948,27755,24414,33268,24478,32684,29182,25881,28115,23690,27310,33687,26074,32057,32544,24332,21340,9887,14088,19787,21098,29640,23981,23948,28264,15969,15478,9984,9054,97275,83714,71941,50812,46903,47354,50031,51778,54798,62736,45407,43120,57593,44417,15779,8592,6224,5146,5311,6264,6447,11950,18031,27092,28348,30507,46818,46593,34864,32254,35330,35685,8512,8288,13806,17762,19427,14856,13358,14606,18156,20524,25464,30086,29319,36940,43009,30210,0,356,893,1378,1836,3008,4479,7404,8730,9920,12364,10424,8564,13852,16665,23390,0,2,5,7,5,8,8,9,10,9,7,9,7,12,14,14,0,2,5,7,5,7,8,9,7,10,10,8,10,11,12,12,2,8,14,16,18,23,32,28,23,28,31,30,34,30,29,36,13,19,19,32,38,40,49,47,52,38,34,31,23,22,22,14,0,2,5,6,5,7,6,7,5,7,7,8,7,8,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,29,24,17,11,20,30,43,42,46,54,57,47,41,28,25,56,52,54,62,67,64,53,58,38,33,26,19,8,10,7,5,0 +275,190,159,110,55,46,24,18,16,20,29,42,61,65,61,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11941,11570,13595,13478,14344,16736,25390,26454,31884,35578,49632,45193,39996,29398,33190,21818,48972,59619,56899,52978,34726,38027,38466,31805,24546,21164,24358,22822,22548,23587,17323,9272,93787,88962,69679,54590,21817,40735,55981,66620,71120,54784,60741,42838,24744,15587,11763,5778,6681,12657,15906,22012,26420,25617,25962,27253,34460,31016,34705,39697,57837,60288,42799,42260,4447,6376,9276,12442,15741,11925,10947,15047,19582,24916,27954,27280,39369,38636,29254,38081,0,1622,3604,6478,7226,8611,10565,9790,9636,11499,10091,9967,12800,12711,14332,20336,0,2,3,4,3,7,8,10,8,8,9,12,15,15,18,18,0,2,3,5,5,7,6,7,6,8,8,8,7,8,7,8,2,6,8,12,11,15,21,23,26,30,39,53,70,83,72,67,19,24,25,34,31,46,50,50,50,53,41,42,35,26,26,16,0,2,3,5,4,6,6,6,4,6,6,8,9,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,32,30,31,32,46,44,51,48,44,42,30,12,13,10,12,61,69,86,76,68,65,59,48,36,42,34,31,24,24,15,8,0 +196,188,133,100,69,56,44,32,44,46,46,54,51,68,62,62,9,11,8,6,7,8,8,8,4,5,5,5,4,4,2,1,11695,14032,12886,9856,18977,23316,25238,26412,26211,29062,41536,39756,24499,23092,22154,18038,33194,35386,37198,34610,35017,32887,32752,30720,18423,19023,23550,23828,22775,19486,15546,8872,72297,82366,80849,52122,22314,36393,43444,68620,74176,63718,47922,41780,22988,15075,12036,8438,5913,10170,13560,19031,29882,27562,35075,36885,37817,38062,46242,60298,67490,59712,36453,27948,17836,13128,17411,13436,12520,11880,15202,15410,17742,21719,27017,37084,45306,43376,40797,39280,4160,5422,6228,7367,6044,7942,8755,7982,8103,8573,10583,11120,12476,12256,16216,15371,0,2,5,6,5,10,8,10,14,14,14,17,15,18,16,18,4,6,7,8,5,8,8,8,10,10,9,9,9,12,10,11,2,6,8,10,12,16,16,22,30,38,51,60,54,64,87,68,43,44,40,46,38,55,60,84,55,61,60,60,41,38,36,19,0,2,5,6,5,7,6,7,6,7,7,10,10,10,11,9,2,2,2,2,2,2,2,2,0,1,2,2,2,2,2,2,48,42,48,42,52,47,46,51,47,65,70,48,27,29,28,29,63,81,101,94,96,88,66,50,41,42,30,29,28,21,15,9,0 +141,142,139,115,77,69,50,48,65,61,68,58,61,74,63,53,18,17,14,10,13,13,14,14,6,8,8,8,6,7,5,2,11252,13588,13368,12042,17784,19257,25894,23098,25648,22502,20207,28354,15672,15991,17686,22678,28704,27238,30166,28243,29321,31541,28077,21310,19282,17226,19878,20779,17834,12039,11938,5993,62686,67900,71114,47056,16804,26363,40214,69035,83656,75800,46300,33858,14371,17193,15097,11273,7690,11379,12758,16761,26314,33058,39507,37892,43458,48719,55600,57546,62020,48348,34494,26652,27787,29240,21492,15972,12633,14074,14443,14582,12821,16197,23828,26872,39961,40454,48064,44141,10144,8394,8742,7619,4419,7313,9008,8413,6391,7465,8402,9101,10557,12396,12782,10192,0,2,4,5,6,8,8,10,16,18,14,17,16,20,18,17,6,8,8,8,4,7,8,8,10,10,10,10,11,12,12,10,3,5,6,8,8,12,16,18,24,39,48,59,34,50,76,94,72,59,50,47,43,56,74,77,57,72,82,88,54,49,33,22,0,2,4,5,4,5,4,5,6,7,6,8,8,8,9,10,3,5,4,5,3,5,4,5,1,2,4,5,4,5,4,5,51,52,50,51,65,60,55,64,61,60,75,65,39,38,36,39,91,127,122,119,92,84,82,64,55,40,30,25,22,20,12,7,0 +160,150,157,110,90,82,70,48,73,72,87,71,76,78,90,76,29,28,26,24,15,20,20,24,12,13,14,14,9,9,7,5,10358,12314,11135,13002,15021,18950,21843,23620,25956,22320,18161,19572,12136,12928,12149,17769,24553,21784,26306,30316,24632,30218,27611,24979,19766,20084,19470,20602,14882,11483,8826,6349,83318,75828,74994,52746,25644,33494,33357,64242,68581,60106,50767,38992,20378,16098,13186,9354,7330,10120,17101,18734,27910,33723,32002,34918,51016,50694,43253,48368,59263,38094,25826,20241,38705,29810,23294,17696,9808,9978,10151,13870,11176,15416,27313,28405,32954,38600,51604,39442,12712,13816,11320,7422,5391,6740,8753,6645,3535,4521,5285,5664,6262,9226,11354,12582,0,2,5,6,6,8,8,9,16,18,15,16,17,22,21,18,9,10,12,8,5,9,8,12,9,12,10,11,10,11,12,12,4,7,8,9,8,12,16,23,18,30,43,48,33,63,94,92,90,57,55,56,53,68,92,86,81,79,84,88,75,55,29,18,0,2,5,6,5,6,5,6,5,7,6,7,7,8,10,8,5,6,5,6,5,6,5,6,2,5,6,7,6,7,5,6,56,44,52,56,78,80,71,80,94,84,97,91,58,53,38,46,73,86,111,114,89,88,60,60,52,46,34,28,20,18,14,8,0 +149,120,131,106,88,70,46,36,82,72,57,67,74,72,52,55,33,31,34,25,18,18,21,24,13,11,9,10,12,11,6,4,9252,12448,13262,13408,14928,19780,22456,19266,22868,19053,18220,14522,11705,8578,8195,11788,14987,20875,25365,28436,30358,30548,29298,27867,23595,15912,14770,15872,16546,11073,7003,4133,79664,64507,37314,32209,31397,41091,46181,58733,67953,47436,35564,31052,23106,20806,16124,12777,6191,7418,12186,21272,25540,44141,53531,43144,62059,84791,80739,65274,54251,45521,38396,18466,39415,35207,32534,20569,9404,8760,7393,8716,6880,18770,25020,30040,40034,39012,45122,55442,20126,17086,13617,8868,5189,4956,4616,4232,2082,2372,2043,2486,3342,6846,10114,13796,0,2,3,5,4,5,4,5,18,15,14,16,16,20,18,18,12,10,9,7,4,7,9,12,8,10,9,10,8,8,6,7,3,5,6,8,9,12,12,17,13,26,30,37,38,54,83,108,88,67,60,54,44,68,97,109,115,114,104,103,78,65,33,18,0,2,3,5,4,6,6,5,3,5,6,6,4,5,4,5,5,7,6,6,4,6,6,6,2,4,4,6,6,6,4,5,64,56,61,61,72,67,55,68,109,98,128,130,98,102,77,72,77,83,65,104,120,107,73,66,42,36,23,20,22,20,13,7,0 +159,178,194,156,125,114,90,68,82,82,57,81,80,80,48,64,40,37,42,32,16,22,29,31,24,20,13,15,16,14,10,6,14884,16469,15024,17954,22228,18742,25848,18174,24266,19466,20920,18856,11159,9376,10026,10444,12484,17042,17047,16728,23596,22908,20945,21764,22446,15494,11558,10734,15910,9442,7149,4810,79569,64122,64934,62268,31273,42359,46052,52438,62098,42190,30139,27426,22442,20267,13840,10356,7994,13140,19054,25258,38272,49392,42476,48970,54440,70278,78986,45612,51986,37758,35266,21378,50971,41112,31623,29462,11264,11297,10321,14696,8590,18556,24895,25226,43016,43851,33950,47663,23952,16606,14198,9364,6020,7211,4761,4497,1567,1593,1932,1726,2816,4454,8418,10866,0,2,5,6,6,8,8,8,22,18,12,18,14,17,17,18,17,12,10,10,6,8,8,12,8,10,12,12,10,12,11,11,6,8,8,10,12,13,11,16,14,26,35,40,49,74,97,99,88,77,72,65,56,92,84,104,109,115,78,96,68,66,38,26,0,2,4,6,5,7,7,6,4,6,7,7,5,7,7,8,7,10,8,9,7,8,10,8,5,7,7,8,7,8,10,8,49,59,54,82,93,72,66,62,118,99,122,120,149,114,90,76,99,104,94,106,142,117,83,86,73,58,40,41,28,24,22,12,0 +178,214,192,146,123,128,111,74,98,64,56,64,100,87,53,61,47,39,45,36,16,26,28,27,27,27,20,21,14,12,10,6,17978,17250,20198,19987,25788,27352,22327,18596,20893,21884,22023,19940,12124,13554,11311,11679,14007,15197,12442,17978,12363,14618,14820,10614,14809,11090,7426,5844,12084,11402,7026,3337,66848,81425,73260,75047,40534,43563,35544,47611,41781,43823,35808,32254,16578,12254,11616,11524,12232,15662,23188,27990,47314,49654,52166,52957,38486,53464,54704,43206,38434,32415,29678,24392,50303,42017,44124,33531,11300,17290,17796,22419,10056,18437,22932,25561,39032,34836,32928,42468,23954,18270,12963,9608,7787,6735,6106,3579,1411,1288,1194,1261,2339,2938,4225,4174,0,2,4,5,6,10,11,10,19,19,12,15,9,15,20,18,16,13,12,11,6,8,8,12,7,10,12,12,9,10,12,14,7,8,8,9,12,11,10,13,10,29,42,50,70,80,95,98,68,73,64,74,59,77,108,100,136,98,80,86,83,68,52,36,0,2,3,5,4,6,6,5,3,5,6,7,4,7,7,8,8,10,8,10,8,10,9,8,6,8,8,10,7,11,11,10,47,49,62,92,86,90,64,66,86,106,93,103,151,154,113,117,90,98,120,142,126,130,94,81,80,77,67,60,32,30,23,12,0 +168,214,203,140,114,134,144,96,110,86,64,104,122,96,66,80,68,61,58,36,16,24,21,27,28,26,20,22,15,12,12,7,20402,21043,19031,19834,27908,24781,20934,16948,21377,18384,13464,12722,13489,11878,11366,13234,16896,18165,12324,15678,7105,9710,10728,8928,10395,7774,6082,4902,6880,6850,3444,2191,68244,98474,81352,77064,51470,51197,44769,44252,32134,29411,33892,36256,24586,18280,13778,13152,14839,22578,27891,34694,42586,46480,39135,51486,46256,48783,45675,33685,25701,24942,22833,18902,41000,40851,34592,29110,13267,17825,23496,20418,14458,23320,27477,40630,40039,41386,33370,39505,27624,20700,16568,14256,12081,9923,7494,3650,593,608,714,664,994,1586,2030,2015,0,2,5,6,7,10,11,13,15,15,12,15,9,16,22,17,22,18,19,15,10,12,11,14,8,12,11,14,12,12,10,13,8,10,10,12,11,10,10,13,11,34,66,58,78,94,118,118,105,107,72,85,91,88,122,102,97,102,90,84,90,66,56,32,0,1,2,4,4,5,5,5,2,5,6,7,5,8,10,10,8,9,8,10,8,11,10,8,7,9,10,11,8,12,14,13,63,62,71,90,84,72,66,72,93,103,86,104,163,126,99,112,116,122,145,126,105,132,110,98,108,109,73,65,42,36,22,12,0 +158,144,87,97,106,89,96,136,200,184,181,218,185,140,85,80,90,79,63,87,108,86,53,37,29,24,15,13,7,7,6,4,26422,29805,38686,31176,37517,54568,53984,52716,47930,38716,45935,30583,21353,21194,27910,28471,23358,22224,15043,17916,20780,12900,10360,5866,0,0,0,0,0,0,0,0,83008,72149,73683,51231,26549,28530,21748,21489,21819,29796,33431,36982,29043,29080,26198,20377,18770,15177,11743,10295,7006,11815,22042,33524,40034,31382,18691,15914,19988,16670,14746,14234,43361,60216,91282,90081,119990,106760,88836,93359,93496,95482,79380,79692,66990,56712,51729,35269,28740,30623,22353,24467,19458,16842,21042,18806,21602,18861,18146,15913,15812,13203,9320,5088,0,2,3,5,5,12,20,22,26,28,28,25,21,20,24,20,20,26,23,24,22,18,13,13,16,17,11,10,8,8,7,8,7,9,11,12,10,28,47,64,72,70,82,116,154,140,143,119,124,108,55,48,31,21,18,13,9,10,12,18,18,16,18,13,0,2,3,4,3,5,6,8,8,9,10,12,13,12,10,8,6,10,15,19,17,18,23,26,21,20,25,24,15,16,11,10,66,97,145,173,197,187,145,154,181,192,156,124,65,82,89,118,110,120,96,63,57,62,86,109,143,127,110,90,90,60,49,21,0 +170,142,106,90,130,122,121,148,146,180,182,196,142,146,118,108,98,115,171,270,267,397,576,1030,1162,1238,1312,1134,1576,1420,1570,1508,36998,40827,47017,42726,33227,43244,62803,52684,42363,43466,42907,33056,18048,23009,24283,23043,24150,25040,18844,21816,21208,14953,9889,7330,3980,4709,4286,3173,4390,3748,2626,2176,58776,63046,47416,43948,30980,27832,21690,23976,15466,29136,32602,30609,27253,20146,22091,16887,20221,18011,12356,13759,8608,13504,20665,31348,33795,33894,21065,22430,29244,20646,14076,11778,29036,43371,71662,83773,77408,95318,72703,71386,124326,94450,97969,84008,53275,52572,41257,39703,42543,28683,31681,32422,25210,19787,16410,15470,19000,17923,20299,17102,16827,12399,8127,5376,0,2,5,7,7,13,18,17,26,25,26,23,20,23,21,20,21,28,25,24,25,23,22,18,24,20,12,12,10,11,11,12,8,10,10,14,12,30,43,60,75,84,84,103,148,156,121,134,111,113,66,49,31,36,47,39,28,28,21,26,24,21,22,19,0,2,5,6,5,7,7,8,8,11,14,15,12,12,9,10,10,14,15,16,19,18,22,29,15,21,24,21,13,14,14,16,106,128,166,176,211,181,140,142,174,150,149,94,52,80,78,114,78,75,75,66,55,56,74,84,130,133,96,85,99,66,41,24,2 +176,148,123,99,115,124,142,140,105,114,134,137,152,135,139,121,95,160,290,419,424,840,982,2296,2615,2840,2564,2773,3828,3851,3504,3182,46961,52249,62272,48737,28736,33236,53378,55657,56918,45686,41217,33358,17232,18538,17343,23522,26785,31474,29574,31692,17365,16675,13353,10902,7180,9152,8164,8599,8239,7760,5377,4178,57547,53323,43822,42362,30121,31437,26371,28483,15327,19686,24768,24318,18068,16853,17420,15934,21921,21968,16002,19765,13258,15634,19736,25330,29239,27868,30851,32620,33437,23578,17524,11996,22875,30871,39453,46217,67547,66388,57357,51485,119634,109011,102168,73980,48899,46538,43618,26550,44712,37301,36016,29724,24357,21493,16134,11460,20839,21725,18032,16794,12540,9993,9262,7267,0,2,5,7,6,12,14,18,19,29,28,32,24,25,23,20,22,28,28,26,20,25,22,24,27,18,14,19,12,14,11,10,7,8,10,16,16,28,44,52,81,83,92,76,140,167,149,182,147,126,68,56,42,55,60,53,48,38,36,27,22,20,23,24,0,2,4,6,4,7,7,10,8,12,15,15,13,12,8,8,9,12,16,18,16,17,22,26,12,16,14,18,12,12,12,14,133,125,134,114,172,146,154,111,122,125,91,81,55,74,88,91,66,73,56,58,34,53,58,56,114,78,70,63,78,50,38,25,4 +135,123,153,126,129,124,104,106,86,115,147,152,135,136,155,158,86,238,568,601,742,1021,1486,2578,3401,3788,4408,4554,5714,4626,4025,4100,56068,56504,66900,55428,40385,46918,52577,65291,53280,47576,44986,33744,20030,25632,26957,27514,20784,27865,28105,32202,16847,19030,16878,13359,12376,14955,17596,13352,10648,9094,6528,5384,56857,57776,54694,38832,21306,28002,27293,32473,16808,16610,15254,18155,16142,13218,13852,12552,19536,20011,17566,19818,17428,20615,23971,21096,38227,31497,32914,33804,29195,29706,17360,11506,20636,22626,34965,30712,32718,41848,42261,36973,86096,96201,79432,68778,62610,49369,52365,36121,37689,37832,36212,35142,27146,25270,26023,19231,16156,18751,14337,16389,16166,12492,11268,8908,0,4,7,8,8,14,19,20,25,28,29,29,20,24,20,20,25,30,24,24,20,22,24,25,23,24,18,19,19,17,12,11,8,12,12,19,20,40,56,67,77,81,61,64,92,129,155,152,139,97,91,68,48,64,64,60,65,49,37,31,27,22,21,24,0,2,5,7,5,8,8,11,10,13,17,14,12,12,10,9,12,16,15,18,20,21,19,28,12,16,15,20,15,15,14,18,136,121,103,104,187,160,165,118,90,76,74,77,77,84,125,124,60,67,60,55,47,48,61,58,73,66,63,64,67,41,32,21,7 +151,137,136,123,137,110,129,87,65,98,98,134,156,144,121,154,48,289,544,902,1012,2550,3772,3596,4974,3963,4008,4544,5747,7806,7263,5467,67922,75399,61470,54891,50397,66220,61840,67338,66097,59853,44861,30777,29927,21926,23819,27839,22060,17942,18419,17490,21617,26559,24972,21182,18366,20746,17811,21201,17576,14724,10440,9414,72362,63270,54298,41717,20949,17978,19736,22494,15339,16272,18725,18433,12806,14648,11910,9908,24954,28798,25750,26498,22585,21187,22367,20570,34550,41235,39581,45904,38374,33842,24450,16611,27041,23516,16705,13964,10014,11932,19045,22750,91170,88766,69433,72207,56375,38942,35664,29777,48859,43302,46125,46213,39904,30524,28362,17209,10196,14416,17604,17672,16817,12441,10772,8022,0,4,6,8,8,13,21,24,30,28,35,28,20,19,18,17,29,27,20,16,17,18,23,20,26,29,26,20,20,17,12,14,10,17,18,16,18,41,54,79,92,99,79,60,46,102,137,179,101,95,77,72,42,46,48,67,60,52,37,33,36,36,34,34,0,2,3,5,5,8,9,10,12,10,9,12,12,10,7,7,10,16,16,18,24,31,28,36,8,10,13,17,16,17,15,16,131,111,98,106,156,182,160,133,48,68,73,84,77,100,107,136,37,50,46,38,44,61,58,62,58,73,74,66,50,38,31,21,7 +98,100,97,112,120,125,123,87,68,80,88,102,155,112,99,116,56,442,730,1370,2944,4018,4534,5133,7100,5740,4963,5664,6032,7482,7258,7735,67110,64528,69526,45657,32588,42414,62326,52177,57298,49019,45030,55500,49133,41366,44280,55006,19800,16203,18012,20930,28330,24942,24356,25290,19238,17435,21071,18604,21895,17274,10367,10262,70328,53998,51765,46385,21192,25348,27698,27751,12834,13481,14946,13793,10179,11675,8716,7806,25070,25590,30162,22872,15950,16036,24146,20168,46056,38390,36756,33085,29191,31278,16080,11946,25159,21685,16016,13712,10366,14484,14381,16112,78356,69862,51544,42781,40473,33578,24025,23022,34303,42920,36862,43051,36322,26459,23853,21116,11984,12713,16944,17232,16220,15139,13534,12086,0,5,7,8,10,16,20,26,28,32,39,28,28,20,18,18,25,22,18,22,21,20,20,21,22,26,24,22,24,20,14,14,12,16,21,19,22,41,68,73,81,75,73,51,54,82,118,153,172,138,96,84,77,57,53,82,77,80,78,60,47,40,44,44,0,2,5,6,5,10,9,13,16,15,12,14,11,12,8,7,12,15,16,19,24,30,30,32,15,18,18,19,24,26,18,22,134,100,99,122,147,142,141,114,46,82,72,97,128,148,116,146,33,44,41,38,37,48,42,44,45,50,65,48,44,36,36,22,8 +88,78,91,115,147,145,122,85,70,77,72,92,106,114,90,94,82,771,1216,1678,4405,6034,5758,7887,7911,6542,6150,5282,8363,11104,10743,9804,57108,62879,54625,45054,21113,26563,42476,34841,59363,41272,42016,49574,57662,55723,59240,50236,17464,16460,16351,19732,27740,25447,25802,23309,21538,21082,22101,20184,24152,14712,11968,10272,56004,62266,51500,50940,23306,24244,28364,30830,12275,12303,15138,12018,10626,7416,7220,5809,17106,25972,27215,24923,16192,15388,20792,18377,42320,39302,29003,31306,34419,28422,14420,9269,18848,13545,11940,10952,13067,11609,12224,10284,65534,55230,43606,27956,28476,21560,15118,18348,32934,30874,37780,47826,22392,22006,26569,21249,13188,14568,17502,13935,18363,18327,17208,16216,0,4,6,10,9,17,20,24,30,40,36,34,26,21,16,17,20,16,16,22,21,20,20,22,24,24,20,16,20,16,14,10,14,18,20,20,18,48,62,63,59,57,43,46,44,73,98,106,199,174,104,100,89,89,59,78,91,90,93,95,46,39,42,40,0,2,4,5,4,7,9,14,14,15,14,13,10,10,7,6,9,17,18,18,22,22,28,40,24,28,22,26,24,22,22,29,143,125,84,107,136,110,118,98,53,72,102,89,220,162,176,200,25,34,32,37,23,36,38,32,40,45,38,38,50,46,30,20,7 +84,78,64,87,93,106,123,86,72,62,65,76,84,92,107,116,83,1124,1924,2904,4206,6014,6536,7954,8490,6510,6951,6826,9049,10596,11924,11492,66138,56765,34389,27042,22139,27822,32017,34644,39819,39926,48154,58388,65892,57722,50518,59175,12088,11492,13123,21890,27502,23503,27185,21784,22950,27189,19876,24770,22764,20674,18548,14642,55798,55609,33552,42133,36662,31002,34954,33972,15190,14998,13820,11202,11263,7102,5980,4430,19758,28708,34257,27316,18269,19130,23578,28834,44410,33780,32585,29230,29495,22828,13075,8532,14785,13228,12408,13066,15809,12784,11584,11801,30369,32364,26472,20587,19799,14632,10328,11964,24009,26340,28620,37046,25167,31129,33801,31212,18460,20024,24841,17282,16948,16870,13740,16598,0,4,6,8,8,16,17,18,22,28,26,32,27,25,20,20,31,25,20,21,29,29,23,20,21,24,22,21,18,18,13,10,12,16,18,21,16,41,48,49,63,57,36,37,28,58,73,101,219,169,125,114,101,92,78,82,95,96,91,88,55,58,57,62,0,2,5,6,5,7,10,10,12,14,12,13,8,9,7,6,13,16,16,16,13,19,23,40,27,28,24,29,26,28,30,34,143,138,104,100,121,108,98,95,88,99,120,170,293,216,143,178,14,22,20,26,20,23,30,24,30,28,25,28,41,40,23,20,10 +75,78,84,64,46,70,74,76,86,117,152,153,155,138,99,96,71,814,1559,2882,4224,5814,7682,8488,7868,9751,10685,9294,7576,11065,14337,15598,56477,39510,35197,24800,16498,15278,21059,21931,31699,51379,76450,83248,79153,73962,76406,73878,6740,8513,11928,14068,20268,15823,13620,15200,24045,22656,14739,13584,10091,11081,10478,12582,48277,49203,49934,49524,40631,30929,22687,23939,23251,20601,17176,16780,19543,15794,11653,7600,31033,31098,27786,26081,28526,32844,33931,33148,32050,25092,17514,12035,9984,9514,6496,3604,16570,16781,11838,16332,20319,14588,14025,10167,8884,7070,4532,6117,5897,7252,6602,8392,25908,22547,19599,28753,31870,27464,21434,22248,26856,18194,13781,17730,16820,18177,18633,20146,0,5,8,12,12,12,12,17,16,14,9,8,6,14,20,24,32,31,41,45,46,42,30,30,25,26,31,22,19,19,14,8,11,14,13,18,26,32,33,50,50,71,72,67,56,64,78,91,243,240,162,130,138,107,124,110,96,107,112,102,83,70,74,84,0,2,3,4,3,6,7,8,7,7,5,5,3,4,3,2,13,14,12,10,7,18,23,34,38,32,27,40,39,30,24,27,106,76,55,56,39,56,62,76,102,90,115,130,182,198,217,248,0,2,3,5,4,7,8,12,16,18,23,22,20,18,10,12,9 +60,64,69,52,32,56,60,70,65,112,143,154,133,139,92,90,58,850,1270,2275,3560,4673,5850,5984,7424,7801,6996,8501,7188,12326,14191,13878,43820,33134,31557,23410,13943,22457,25360,36539,32642,47492,65976,77352,53735,55603,81350,79392,5839,8080,13545,18290,19644,20555,17515,21761,28356,20871,18573,15188,15372,12605,10822,12996,37360,39970,45840,41002,38149,29499,20681,24528,23817,21918,19157,19192,21518,15920,11224,10000,35446,40065,32815,31636,33872,39960,39435,42026,36664,28525,22950,16932,16079,10860,8105,4468,15543,13720,9196,11458,14848,13376,10872,8986,7047,6376,4192,4942,7399,7144,6812,9654,27261,24218,18567,29070,22300,19253,21305,17267,24592,21244,15990,17411,22244,24001,18514,16699,0,6,12,16,15,15,19,23,27,22,15,14,10,17,21,25,32,34,37,39,38,38,31,26,27,30,38,28,20,20,14,12,17,19,17,22,34,36,39,46,55,66,80,75,60,66,89,72,197,176,189,148,174,162,142,100,102,122,165,105,116,86,79,82,0,2,5,7,5,8,8,10,8,10,12,12,8,8,7,5,15,16,14,14,13,18,22,28,28,24,23,36,38,38,37,42,112,100,53,64,58,62,68,83,96,102,142,148,163,182,180,208,48,42,38,31,29,32,26,39,37,49,56,50,59,44,42,32,20 +44,41,48,41,24,32,41,50,63,88,136,152,143,139,106,98,52,674,1402,2618,2030,2174,3255,4015,6806,6350,6734,6144,8681,11942,15316,17654,40244,36844,25612,19158,14460,33455,41558,48988,41938,51507,48744,61670,42578,54644,64868,55094,5782,8923,13360,22646,27002,20188,23393,28029,24672,22359,18390,21655,16410,13015,13218,12281,30064,36270,36806,41945,30162,30025,20406,26356,16981,18681,16912,16047,20843,17392,15841,14442,48608,33910,31172,29025,41820,45568,50237,46746,29214,21498,21250,15763,16945,13503,10462,6467,14432,11871,9317,10402,15917,15549,10576,11116,5747,5151,4262,5007,6496,8956,9038,9793,29343,24782,19994,31002,18451,18044,14604,21297,28703,26496,18460,19754,25724,19720,20550,18703,0,7,11,14,20,24,20,19,31,27,22,17,11,15,18,23,31,28,28,41,37,30,28,23,27,26,34,31,26,20,11,10,18,17,20,24,34,31,38,52,41,48,64,76,68,79,70,72,155,178,186,142,196,151,122,84,150,167,177,130,123,117,104,84,0,2,5,7,5,8,9,10,10,14,14,13,11,12,8,7,15,17,14,12,15,20,21,24,18,26,25,30,27,38,38,47,137,117,72,60,62,82,81,76,121,129,146,129,91,98,143,133,80,94,76,57,58,60,48,53,53,80,83,66,91,85,60,54,36 +44,48,52,38,26,32,35,47,46,62,112,100,88,112,97,94,55,460,994,1612,1562,1518,2060,2786,6954,5474,5690,5956,7802,11816,18700,16331,25574,23930,24974,20354,16522,34708,48819,49386,50122,45820,60617,55816,48128,54235,55867,66225,7063,11661,18572,25933,34151,32246,32980,29868,28344,24677,20315,24662,18103,22370,22848,19936,22684,32134,29274,34766,31714,25046,25313,20064,15232,14191,12989,18734,18910,21045,18055,16029,63300,41090,32050,34014,34551,49908,47204,46615,34730,32776,24367,18568,18202,12115,12803,6855,8885,7954,8819,8780,13327,10440,7808,8763,6455,6083,4377,5264,5597,7731,8903,8952,28303,20952,15007,19312,19788,14986,15172,17038,23624,21284,13982,22570,27362,22444,19485,16982,0,8,12,16,21,26,21,30,28,30,21,17,10,19,26,26,25,24,23,32,36,30,34,24,32,27,35,32,22,20,12,11,20,19,18,24,26,35,39,41,26,42,65,74,54,70,78,74,156,176,183,162,223,148,137,105,148,174,191,157,140,136,128,138,0,2,5,8,7,8,8,10,14,17,23,23,19,15,11,10,22,16,17,16,19,18,19,24,13,22,24,31,31,42,46,57,98,100,68,74,56,60,75,70,110,112,108,101,90,105,83,94,117,121,110,82,88,82,70,74,99,114,108,108,105,110,82,66,44 +52,47,46,29,21,24,29,38,17,31,51,55,67,84,79,64,57,226,344,490,750,901,1412,1149,6931,5472,6610,6446,8429,9680,9461,14975,9890,11070,11234,17986,23321,21545,22701,31592,61992,49052,38804,51141,52708,49969,58303,74676,7011,11378,20635,30756,31326,32552,32749,32703,22767,24815,20525,20426,27218,22134,12959,16630,17057,22938,33146,33591,33803,29536,20896,19218,12665,14832,16910,22957,22462,17634,21443,16478,58418,54666,36258,33462,36148,40818,40052,51951,45656,51085,41756,25449,18271,15772,8490,4551,4657,6769,6856,8799,9436,6409,5616,7719,7991,6082,6388,5822,5302,6932,8698,6956,23535,24209,22214,25874,22166,20460,21589,13009,26460,22905,21178,19913,23691,22506,16145,13234,0,7,11,17,22,29,27,28,28,24,17,15,10,13,17,27,11,18,28,30,29,24,14,16,32,29,26,20,20,19,12,10,18,18,17,20,26,27,23,33,14,18,25,44,56,66,58,71,202,171,211,207,196,179,196,159,135,123,163,162,162,126,104,136,0,2,4,7,7,10,12,12,14,17,24,26,20,16,10,10,22,18,13,13,16,17,16,17,11,12,13,20,26,29,32,42,97,94,66,71,72,84,72,69,80,90,96,79,73,72,57,52,128,132,111,119,96,90,81,95,140,136,95,97,138,103,74,60,43 +49,42,35,28,19,25,25,26,12,24,46,46,61,62,74,56,38,148,327,390,482,589,1037,854,4420,4808,5552,5760,6521,9388,10793,13416,11204,12892,10061,14924,13668,18718,30896,39500,56934,45868,32520,32804,63442,67303,67476,69632,15426,16736,22812,26032,24048,26293,30950,30560,30620,30188,31670,22521,45909,34114,23887,25677,25493,26166,24731,28618,27499,24902,14354,15536,9938,17218,22004,31178,27007,27047,23230,25027,46120,40158,36827,34540,33954,35982,36714,52751,45981,47754,33347,25011,14475,12332,6828,3952,3558,4774,5960,7334,5423,4689,4292,4868,5355,5363,5718,5288,4602,5736,6978,6306,16949,17463,19303,25644,22559,21294,21298,15264,27124,26050,23488,22366,23858,21470,19048,17479,0,8,15,19,25,30,31,28,28,26,22,22,22,24,18,24,12,22,30,31,27,26,19,18,25,28,26,20,17,18,17,14,15,20,24,21,28,26,21,28,14,23,32,48,57,71,64,66,150,140,226,224,210,172,178,156,163,164,160,156,156,158,138,124,0,2,5,8,11,13,12,14,12,20,24,24,20,14,10,12,16,18,17,18,20,20,23,24,13,18,18,26,34,38,34,42,74,70,62,56,74,72,75,61,63,66,80,65,77,64,77,94,147,118,109,108,102,91,97,110,117,122,132,138,168,136,86,62,47 +36,34,25,18,12,17,19,23,7,17,25,26,44,45,44,53,19,99,209,217,291,500,606,510,2654,3532,5370,4570,4818,7995,11470,14387,9924,9295,12728,11524,10502,19072,30282,49765,41671,45696,41312,36398,57267,64504,68434,57043,30926,32159,25041,21958,27540,28692,21976,23642,32392,37713,35436,35336,54631,42740,36488,35250,28916,28823,26716,25542,22895,17040,14780,16057,9925,16142,29070,37041,33776,37514,31320,35504,33445,32404,30420,27534,26611,27528,36388,45607,42456,40481,32666,22451,15398,12349,5910,2846,2929,3672,3688,4798,3512,3143,3360,4064,4160,4805,4122,3673,3762,4244,4268,4648,14363,20531,19944,27699,17636,14535,16872,20303,21184,22628,18562,25639,17530,17652,21460,19114,0,8,16,22,25,23,26,34,28,25,20,26,30,23,23,24,14,23,28,26,24,19,18,16,20,19,18,20,11,14,15,17,10,17,22,26,20,28,26,23,10,20,29,45,82,96,82,81,155,151,183,196,161,165,168,177,236,255,212,193,175,158,181,143,0,2,5,8,11,11,11,13,12,18,22,20,17,17,11,12,12,16,18,22,28,34,32,29,18,20,26,30,29,33,29,42,46,42,37,47,69,72,56,41,48,60,58,69,60,74,74,111,179,130,97,105,80,99,108,114,88,93,140,180,172,160,112,78,65 +22,21,12,10,7,10,12,14,5,11,14,14,22,26,22,29,12,59,105,113,145,208,268,264,1508,3307,5128,5479,6081,7508,11476,13749,12162,12742,12326,9504,11011,22809,32863,45573,43638,42012,43065,39209,59317,63557,75436,67204,40460,34752,30491,27120,30634,26400,19980,21675,30922,32524,42878,33588,43918,46946,34100,36487,25167,26766,39266,36419,28031,26176,24759,16442,13366,19799,26768,34465,39818,42762,43348,45309,45134,42836,30944,26448,22577,22602,23882,32452,47848,36051,27116,14770,13330,9086,4658,2174,1733,1694,1999,1979,1847,1716,2173,2260,2177,2759,2544,2880,2820,2777,2712,3396,7768,15210,16201,18501,19286,17970,14918,17974,17133,20731,19222,19498,19331,24554,24501,27142,0,8,14,24,25,24,25,30,25,27,24,28,39,38,34,34,18,24,22,25,21,17,15,18,20,19,19,16,10,12,16,16,10,16,23,24,19,26,24,20,14,27,37,66,86,112,126,132,161,136,113,136,146,146,150,199,218,285,202,222,233,228,191,175,0,2,5,10,12,12,12,14,12,19,18,22,20,20,14,14,14,18,24,25,30,34,37,34,26,24,34,42,38,42,37,39,49,56,53,58,55,52,42,26,23,36,36,54,44,77,120,126,164,145,120,89,47,91,108,114,109,114,102,124,162,136,118,74,55 +0,4430,7954,12047,18674,18520,23746,22199,28745,36470,32272,31829,36166,42030,39609,28079,29518,23802,26665,22180,15992,10696,6308,3487,0,2301,5488,9770,15848,13525,16425,14155,18842,15932,12541,6966,4160,2642,1494,794,0,0,0,0,0,0,0,0,0,4968,10139,12260,15504,14100,17372,17462,21262,20246,14158,9404,8217,16680,33373,35758,29756,43014,57181,59020,67454,82882,95587,84888,99668,120119,103194,70857,62578,73028,78248,55223,52710,44564,53889,47594,40694,30537,17915,15318,16691,17756,19955,13244,12165,8112,6639,3050,0,2066,4166,6528,9539,16104,23578,36792,48932,40252,37793,40386,47686,61870,56228,46408,40588,42320,31512,28443,35179,35788,36015,35926,41179,44256,36817,33136,33084,33492,31032,27319,0,2,4,7,7,10,10,11,12,14,18,24,22,18,18,17,11,11,11,10,6,8,8,10,8,8,6,6,4,6,6,10,10,30,40,42,50,129,181,231,228,303,281,230,274,253,317,305,210,252,305,230,265,311,288,349,381,335,231,305,316,288,185,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,11,17,22,22,21,32,42,41,49,41,33,34,23,18,11,10,10,7,3,4,3,2,0,4,6,11,12,17,16,16,19,18,15,19,18,20,28,44,62 +4,4258,9126,11742,12968,16014,22104,24154,27146,30304,31482,35628,23040,32130,36657,28575,19367,17636,25607,21101,15274,11534,7050,4262,494,3450,7272,9708,18367,16691,15372,19014,11963,12348,10930,8368,7183,6437,5236,6128,3599,4213,4999,4902,4523,4174,3959,3416,3366,6186,9474,9599,16924,17100,20690,18524,20953,21110,19224,22422,14081,26978,28391,38626,23640,39354,38771,54901,56940,61610,68426,73776,72518,94362,76112,77193,80671,72394,80751,68121,53128,53944,55770,47518,51156,31462,20374,14264,19509,17022,22179,16802,13356,9606,7660,3193,0,4082,8526,10941,12214,23190,29314,38766,55150,52600,43285,42735,47752,54424,62919,55681,39069,34468,31092,35498,51089,41007,39412,40644,31615,40046,29462,32997,28827,31974,28886,27951,0,5,7,10,10,11,13,13,19,20,18,22,20,18,19,16,13,13,12,13,10,10,12,12,8,9,7,7,6,8,8,10,22,38,43,59,75,146,194,205,222,218,286,270,203,231,270,214,280,288,317,246,299,354,260,334,396,308,206,286,332,314,212,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,12,12,10,8,8,7,6,11,24,24,32,54,52,59,54,41,40,56,34,46,44,34,26,15,18,17,13,16,14,12,12,14,20,26,23,24,24,27,24,18,20,21,24,24,30,46,43,59 +6,3905,8036,11959,11689,18835,21198,25616,16579,20476,22144,31558,21424,29030,27122,25702,15074,20670,20807,17409,9572,9319,6696,7170,1226,6265,9276,11042,16281,21528,20394,20128,9647,8026,10134,7664,9912,9172,8269,10858,8212,9742,9078,10573,7713,7082,8408,7329,8020,9460,10400,8396,15599,13812,18364,15086,26849,24418,30192,31628,22612,27726,33858,41778,13987,27485,34206,59936,31266,29585,40076,52287,42632,55257,65460,64704,84170,62286,60924,62639,52185,53084,69094,68515,47151,38966,19846,14094,19262,18648,22792,18806,12845,9912,7401,3606,0,5833,10609,18834,20987,30256,35438,41170,65393,58921,47898,37788,42293,48269,65400,58255,38210,33859,43703,39056,50568,46114,33902,33983,36139,39184,29282,35687,27698,26504,23678,21425,0,5,7,9,9,10,12,12,21,26,23,22,18,15,14,10,11,12,12,14,9,10,11,14,7,7,6,7,6,8,8,10,36,48,58,82,99,164,180,242,182,206,223,227,178,154,148,123,290,323,288,260,382,386,337,339,355,338,239,225,344,252,180,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,20,20,22,14,13,13,12,18,29,44,46,88,72,88,72,40,48,46,44,64,64,42,42,16,20,21,22,23,22,22,24,26,36,38,36,29,32,36,35,21,24,23,34,26,35,47,52,70 +7,3324,8274,12576,12308,16004,21156,19838,11497,12154,14100,23462,28602,31166,23957,17797,15740,16084,14386,12406,8158,9152,10111,8270,2012,5340,9093,8846,14774,16374,16113,17041,7941,7680,6799,7646,9194,10016,10451,17102,11570,14614,12536,12832,11667,14174,13627,14070,11133,10792,11753,11436,14629,12914,12572,12500,35404,27170,39325,37696,34642,36854,39102,36586,10710,17897,23988,44230,35063,39102,38023,43063,30128,36942,44643,46182,63843,57770,81736,70392,71185,73692,73022,59516,53753,35264,17516,15702,30140,20593,21956,17426,14058,10290,6422,3328,0,6770,12482,25718,28410,30401,42214,59302,81441,53366,37380,48487,38586,57861,69482,54298,47672,43272,37562,40741,50609,42909,37032,35284,22192,23344,25243,30901,32103,30874,21242,18827,0,5,7,10,12,12,14,14,24,22,22,21,16,16,12,11,8,11,14,13,12,12,12,15,10,10,8,9,8,8,8,10,52,50,75,112,131,184,186,242,244,232,229,228,168,183,146,97,287,278,340,340,380,381,306,353,307,284,210,258,304,192,132,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,35,30,28,23,22,22,18,25,43,60,81,122,113,116,93,44,48,47,51,64,70,56,49,17,20,29,33,28,34,37,38,38,46,53,44,36,40,33,32,18,22,22,25,28,35,56,66,65 +7,3044,7053,11268,12948,17110,15715,17619,6433,10772,14270,23168,29926,24395,23143,17250,13251,14294,13424,10344,6562,6560,8764,7097,3599,5498,8600,8544,9674,10877,9573,12712,5722,6594,9862,11883,10049,14483,15180,17124,12407,12219,10101,13934,18316,20776,17794,15046,14412,16482,18845,16355,13533,12756,15553,13990,47808,42717,47405,39852,41694,43216,43541,43282,7994,15810,29826,36193,35852,40632,51774,38627,17085,25867,28748,43435,61583,46168,48733,53124,86847,75076,89074,67928,48802,41340,21563,14044,31895,29422,17490,13301,14678,8712,6661,3432,0,9942,18685,25934,30258,28088,35882,58485,71945,71550,66289,51978,48872,40221,42180,33524,44266,36911,42646,47315,41981,36478,30199,37881,13937,19162,21744,21972,27230,21212,18874,17176,0,2,5,8,10,13,12,13,18,13,11,12,12,10,7,7,6,10,11,10,10,13,12,15,8,10,7,8,8,10,7,8,50,47,61,93,132,119,117,161,241,243,186,200,238,219,130,114,217,286,353,410,368,474,496,536,383,391,284,264,210,139,103,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,47,41,36,34,31,28,28,40,68,75,95,117,123,101,74,37,29,31,49,60,64,63,71,17,23,30,32,34,46,47,45,54,48,41,39,51,44,45,32,16,19,22,27,30,44,45,50,52 +9,3540,5959,9335,10971,14552,14443,14735,13150,13531,16618,22468,33416,29882,27735,22911,13512,13545,14526,11745,10166,10474,9041,7177,5797,6655,9594,8530,8104,9610,7958,8899,7805,10106,10844,9165,8526,12912,12275,20254,21946,21682,20969,26908,26701,30930,25506,17968,18685,17103,18783,20944,17811,18007,15706,16512,55931,45064,39250,36460,30308,33986,41493,29014,6304,12642,23267,28220,31122,33360,32734,31179,16808,23807,32797,49263,44440,50747,50360,54288,81232,67675,70664,56260,49216,49101,25646,21227,24714,26206,20517,15227,16396,12888,5945,2912,0,9974,17284,23536,29459,31306,43072,53608,74515,61889,45973,45566,36773,32089,30245,34931,29884,31499,33910,32458,28742,26888,27639,33170,26442,20640,21227,25517,24961,21150,18209,20869,0,4,7,9,10,13,11,14,18,13,10,12,10,12,9,8,7,11,12,13,8,13,13,17,10,11,10,10,8,9,8,10,60,81,77,100,120,126,136,184,208,184,158,172,238,176,147,125,250,294,292,420,373,442,475,458,310,308,222,198,158,129,115,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,54,46,54,58,36,32,44,74,106,132,134,148,124,141,35,38,31,50,68,66,65,64,23,38,44,47,37,60,55,52,60,54,36,57,54,53,59,37,29,32,30,28,30,35,40,46,43 +11,2484,5979,9646,12464,9969,11034,10523,18246,17412,20109,32371,35110,28309,29488,26884,10324,9990,13256,17108,15542,14242,10208,8975,6408,7433,7739,6327,4302,5778,7597,8179,10686,9663,12702,11074,10890,11142,14687,17205,31309,28404,28372,39241,46396,38179,35846,23631,22020,26682,23766,22218,20976,19388,21468,22867,54590,43996,45815,43583,28629,34748,31431,29509,2940,7589,14332,17468,18308,25638,24542,19498,18290,25320,31244,38889,40281,34705,38087,56308,93289,91348,61996,46873,72004,61483,39534,26234,17622,19384,22302,16531,16207,13076,7668,3467,0,12920,22056,27837,40394,44624,44632,44134,58446,57434,41440,54802,40321,36263,27968,36552,30117,27526,26118,18816,18444,20640,26999,39012,30208,24457,21784,26646,25342,19790,18958,22704,0,4,6,8,6,10,10,10,12,12,9,12,9,10,11,12,7,8,10,12,7,13,15,17,11,14,12,10,6,7,7,8,55,81,97,121,103,87,109,185,129,115,118,130,188,144,132,118,266,268,368,472,374,452,382,372,272,207,177,137,147,107,104,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,70,83,67,91,77,57,49,57,118,148,150,148,159,154,165,32,35,40,52,86,84,90,79,36,47,46,58,48,46,62,56,49,43,40,55,74,81,64,39,33,35,34,27,30,35,38,30,26 +12,2146,4316,8697,8978,12108,15899,18434,19547,22300,21396,28470,34927,25016,28652,30314,16213,15979,16778,16332,16888,17018,15044,12069,8124,7544,6816,6374,4348,4636,4581,4824,13686,16928,14415,12292,8889,14097,21990,26141,26462,31843,31387,42063,56229,42100,24494,23156,31176,23942,20767,23389,30549,26232,26053,28938,53621,43806,30439,27766,24460,24460,22511,21991,1684,6166,11567,14479,14889,17282,23586,22132,24917,29726,34646,37836,45608,42591,36452,50888,89984,74712,73975,67847,68011,62754,41412,35035,20521,20318,19650,14218,16627,13670,9034,4482,0,10330,21824,25986,37790,37370,31699,28674,48919,34493,36088,44818,45024,40371,28543,31184,27248,23140,20867,16304,16694,17100,19286,28936,31055,24366,21321,20578,20196,19868,16344,24455,0,3,5,7,5,8,9,10,12,14,14,13,12,14,12,13,7,9,10,10,7,13,16,16,10,14,12,10,7,8,7,8,77,108,104,115,122,118,88,126,101,93,97,114,110,116,93,86,267,232,320,435,319,378,281,284,287,204,179,114,92,97,76,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,127,82,76,102,86,70,69,64,124,137,162,173,193,241,251,26,34,40,54,67,77,72,69,47,66,77,60,64,62,80,72,69,54,51,64,70,84,73,53,34,34,32,32,27,24,31,22,16 +9,1670,3051,6449,8361,11475,17481,21015,21621,19494,15113,21193,20654,17592,21046,23612,18868,18084,18653,13562,11008,14784,14857,10348,10668,8992,7046,6965,8092,6231,4850,3764,23297,24622,36102,38323,35496,37298,27965,24411,32928,33089,23799,23222,21167,19062,19399,23947,31795,41471,43936,49322,40865,47731,44427,48850,47138,40195,28600,27092,21436,20285,29216,29290,0,5955,12388,16590,17852,18768,19543,23136,29703,22956,18533,24218,25032,27658,30664,42954,68836,65740,67768,82674,70831,52135,42278,30036,26096,23750,23850,14703,12752,10258,5942,3555,0,991,1833,2393,3238,13051,20174,22398,31236,29161,27602,36586,37892,29073,21890,17239,15357,12940,14260,19212,20357,24102,25760,32928,29770,31134,35044,29140,29379,41398,41325,31130,0,4,6,7,7,9,11,10,9,12,12,12,12,13,15,17,4,5,4,5,5,7,7,8,10,11,8,8,9,10,8,7,87,116,132,147,141,106,103,82,82,78,81,82,73,88,90,72,203,190,156,149,97,141,171,152,206,168,199,181,132,109,120,94,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,176,154,203,193,179,140,135,113,57,83,116,163,176,227,217,268,29,34,27,33,46,47,32,53,55,61,52,48,33,36,44,49,82,72,82,70,52,48,52,48,42,37,27,34,36,24,19,12,0 +17,1698,3322,5474,9322,12668,15723,20796,20714,17722,15980,17350,15550,17234,21180,25849,16898,16264,16796,13770,9024,10980,13625,10433,6200,6216,6297,7240,7014,6572,7401,6000,29460,29346,35754,35928,36580,37028,25795,29087,27233,23604,18874,21562,22200,23263,18992,25957,33551,43537,42000,40383,51835,51176,46338,42090,47408,46410,37658,35985,33669,30849,31626,28396,4228,10062,12812,12662,15550,17154,22942,27240,29596,25764,21124,23311,23554,27214,38776,53348,58654,58916,73059,64556,48308,52614,40768,35936,26355,22892,18133,14190,11296,9382,6718,3692,0,731,1648,2312,2227,7949,16322,16563,29908,24682,27420,32602,46011,41868,20474,17498,12282,10620,8480,14577,15976,19226,21878,26266,21706,22450,24875,26054,33130,39694,31445,30967,0,4,7,9,10,10,12,12,8,10,13,13,12,16,17,18,6,8,8,10,8,11,10,15,12,14,10,12,12,11,11,9,90,104,92,108,128,101,78,80,81,72,64,70,46,68,80,74,180,176,149,120,86,122,162,196,177,162,188,162,154,154,104,96,2,2,2,1,0,0,0,0,0,6,10,15,20,28,36,39,148,152,179,136,130,116,122,91,42,87,105,136,142,203,240,286,30,38,37,51,43,51,52,72,39,56,68,58,32,45,68,67,72,82,96,84,50,58,72,52,42,44,44,42,36,30,21,14,0 +19,1802,4046,5807,7439,10047,12028,14598,16983,14588,14082,15565,8530,13073,22508,28018,13346,12196,16993,15174,9482,9680,11712,11473,4552,5028,4643,6519,6583,6081,8139,7530,34119,31818,24858,35910,41808,35502,36046,35943,18265,15172,17940,21923,29608,29964,22896,28003,42677,39839,47290,37490,54742,45262,50258,53738,43006,44464,43370,40478,38735,29652,27360,22938,7210,8539,13972,14038,15245,17810,21280,24734,23238,22958,20452,18272,23043,35183,45459,50325,44258,51653,56914,45788,37030,37131,41917,37238,32256,26790,18508,17764,10985,9643,6662,3587,0,611,1222,2533,1875,4830,7440,8821,20860,22452,22584,31980,41699,37717,27053,24202,8248,6311,6210,8516,8644,13297,17334,16412,23925,25075,22464,22379,25906,23030,30764,24717,0,2,5,7,8,8,8,12,7,10,10,12,9,17,18,20,6,8,10,14,11,12,12,14,14,15,13,12,10,12,10,10,88,84,89,104,78,68,81,62,65,55,53,65,32,53,66,54,112,115,146,113,77,115,172,210,146,109,116,100,138,127,114,117,3,4,3,2,1,0,0,0,0,8,16,26,44,54,76,98,138,146,108,102,75,90,102,68,38,54,92,142,130,185,302,337,32,37,55,75,41,54,62,98,33,46,62,56,37,65,76,80,88,85,81,92,58,54,68,55,55,58,50,47,45,31,28,15,0 +32,1759,3038,6577,7793,9489,9096,14220,12516,12059,10053,11958,7601,12370,13489,21980,11086,11652,14758,13833,13327,12428,8818,8701,4108,4715,4809,8260,7478,6590,7630,6862,25210,25635,31597,31011,37786,34110,40992,31320,19520,16150,19832,22276,25313,26485,22791,24520,36056,39574,49719,45890,43216,44981,46808,54265,53938,51303,62568,43683,42316,46390,35943,34448,10660,11556,11362,12000,10685,13188,13794,15024,20402,20514,24836,21834,24357,38014,49988,65973,39503,41954,40263,34866,23304,28131,26941,29020,29140,21408,13601,15490,10940,8931,5486,2454,0,614,1048,2096,2254,4050,6280,6674,23192,27590,28245,27868,31255,23142,17590,17734,5191,4823,4809,6340,5394,8713,11620,12270,18329,17974,17034,18758,20945,21697,20380,22582,0,2,5,7,7,9,10,12,8,10,10,12,10,16,16,21,8,12,11,16,17,16,16,16,16,16,13,13,10,12,10,10,99,106,110,78,82,72,76,58,66,56,54,41,20,40,48,46,67,82,99,102,79,106,153,168,99,93,90,84,100,80,90,85,5,6,5,4,2,1,0,0,0,15,20,38,61,75,107,106,103,85,76,80,75,78,86,60,42,72,119,144,136,193,245,262,28,48,58,54,53,72,84,102,32,47,50,46,45,64,92,71,76,92,78,105,83,84,101,77,40,48,50,46,46,30,29,12,0 +36,1912,4527,5634,9329,10623,14123,15695,14296,14807,12322,9838,6418,11930,15027,21538,9073,9745,12360,14856,15126,13482,8608,8938,3333,5049,7114,6971,8038,9878,11092,10586,28258,21798,19532,20371,26996,28934,31364,35473,16974,17101,22153,26128,25041,19700,16300,23867,42868,43555,39681,35463,47608,52926,51402,56336,67208,64551,69184,54344,38420,33258,30505,35156,13633,10664,10937,9928,9044,7159,6125,7830,11548,12512,18247,22668,21730,38881,43639,56866,28335,24316,18289,16331,18560,16169,18908,18886,23518,23393,17511,13010,8485,5825,5073,2733,0,710,1256,2055,2186,3342,4384,4004,22924,22816,22351,21318,23792,23922,18194,15401,3384,2826,2372,2805,2556,3187,4716,5538,15193,21086,20371,22594,18952,16945,22736,28441,0,2,3,5,4,6,6,7,7,8,7,9,11,13,11,14,9,14,16,17,17,15,16,19,16,15,12,11,10,11,8,7,144,128,77,64,58,57,70,72,56,36,23,16,14,24,30,46,50,72,71,78,85,108,136,124,65,86,92,74,68,59,50,45,4,5,4,4,2,2,1,0,0,23,52,58,74,99,104,130,55,46,46,61,56,60,58,39,63,107,128,151,124,243,314,364,23,28,31,56,72,94,122,106,42,50,42,55,71,74,75,60,89,80,71,82,109,129,122,98,42,42,39,44,40,33,18,9,0 +27,1833,3322,4772,6776,7748,8286,10431,12859,12583,11082,8312,7012,10121,12501,18116,6846,10004,11609,13722,12452,12658,11812,10849,7402,6704,7409,6302,9600,10293,10954,9655,22450,23430,24193,26230,19049,20276,24993,29380,15012,14140,15895,21671,24045,23216,18860,26341,31324,34507,37816,43768,42676,45253,47887,58338,67736,67368,85381,78855,69250,46608,37301,33322,22239,15251,17819,14701,17753,14542,14539,12084,12700,14854,17966,23274,25354,37224,45257,40800,34466,30374,24548,22118,17420,18127,19504,18674,22868,16078,14034,12970,7509,4660,3538,2073,0,584,1097,1669,1993,2833,3656,3244,14208,16364,16456,17669,17523,20014,14140,9819,2791,2278,1585,2065,1782,2762,3069,4304,14050,15032,14970,15234,12155,13264,18326,17942,0,2,4,5,5,7,7,8,7,10,10,12,12,13,13,16,8,16,19,16,20,19,18,20,13,13,10,11,8,10,8,7,169,119,92,77,54,60,53,54,53,35,20,20,12,21,27,40,35,49,54,50,75,78,81,92,50,53,58,62,45,42,48,40,6,7,6,6,4,4,2,1,0,32,66,92,97,106,126,142,98,78,90,108,80,66,54,45,53,88,118,135,142,206,262,283,17,24,34,54,78,82,110,104,60,63,58,74,86,86,70,76,64,63,62,82,92,104,110,90,37,50,48,48,40,33,18,8,0 +26,1596,2953,3941,5085,5300,6572,7469,9292,7426,8863,8117,6426,8932,12024,13080,6497,8496,12068,13845,13037,11930,11246,9959,10406,9682,8734,6533,8923,8370,7378,6659,25316,22372,23610,24028,19573,20785,21938,14818,18232,16362,16178,23671,21032,19675,18870,21508,29817,32160,39199,47423,51355,43708,56830,57990,68255,83983,109258,114456,95316,54497,33486,28860,28014,25220,20670,22373,28767,23248,23147,16976,13442,17400,17803,20728,21000,32762,35754,42402,40108,40347,28530,27819,15330,13426,14649,16554,15927,15816,15432,12157,4173,4016,2972,1477,0,412,857,991,1242,1506,2461,1932,8480,11455,12288,14905,16706,11979,9345,6751,3354,2786,1546,1947,1081,1845,2932,2515,10224,11565,12404,9114,6916,6518,8654,9129,0,2,3,4,3,5,5,7,4,7,8,8,9,12,11,16,8,12,17,22,17,15,14,13,13,12,8,8,6,7,6,5,147,104,79,58,59,60,42,34,31,25,20,22,9,19,22,20,19,24,26,23,47,50,56,62,21,28,34,29,34,32,30,23,6,7,6,6,4,5,3,2,0,28,63,86,98,130,141,174,126,144,120,143,90,75,58,62,50,86,111,106,119,147,212,222,9,18,32,55,69,86,108,88,78,72,58,75,95,90,80,75,55,53,54,51,71,66,74,80,45,55,46,45,35,29,16,10,0 +31,1370,2568,4938,4710,6326,7274,7714,7596,7876,6567,5808,5702,6572,9393,9739,7960,8692,10601,11472,11734,12078,15795,16626,9858,10636,8881,9216,7348,9112,10071,9900,17583,20364,22571,20098,14173,17520,20412,18670,15440,17445,13681,18976,19265,21274,21795,27942,33878,33898,34941,46778,56494,49965,62765,61508,87556,102636,107804,110368,91672,76214,35134,33892,33981,26218,20606,32204,35888,31858,26356,20512,14068,13908,16367,17726,21050,24803,24526,32120,37978,28704,25960,26245,17056,17383,16345,15114,11804,11849,10690,7204,3882,3147,2571,1233,0,190,446,591,681,997,1214,1240,4541,4920,7472,8180,9029,6876,6139,4420,2208,1690,1218,1148,662,1021,1728,1272,4526,5596,7818,5416,4430,5178,5397,5598,0,1,2,2,2,2,2,4,2,5,7,8,8,12,11,14,9,14,19,20,22,22,20,18,11,11,8,7,5,6,5,5,104,78,77,60,59,44,37,36,31,29,20,22,10,16,17,15,12,14,16,14,27,28,30,30,10,16,16,15,20,19,16,14,5,7,7,7,5,6,4,2,0,34,69,100,101,134,122,149,155,156,140,152,108,95,63,64,52,68,96,86,72,106,188,164,5,15,25,47,61,80,112,88,69,61,63,80,85,96,103,87,60,60,50,59,64,64,65,60,52,50,38,36,23,22,17,9,0 +36,814,1541,2850,3939,6095,6628,7094,8655,8181,9443,8638,6060,6508,6795,7876,8902,10038,12063,11830,8901,10351,10586,8133,6512,9171,13026,15190,12517,13485,11201,11096,14482,27683,47369,56430,59161,48273,52450,62612,54411,43558,36133,51357,51319,41031,32268,29016,33622,41536,40703,27796,26414,18821,13318,7855,0,1924,3956,9010,11888,15606,19858,26734,38534,38396,42325,40399,27362,31165,24746,22055,16287,16580,17576,15931,12306,19543,22845,28004,29356,31189,27991,18254,12108,18260,19442,16026,17203,17566,21100,17583,13408,11269,8280,3400,0,130,305,423,457,498,687,984,1193,1384,1903,1873,1624,1496,1202,1478,1482,1534,1238,849,464,297,183,78,0,526,976,1231,1433,1414,1861,2019,0,0,1,2,2,4,4,5,5,7,8,11,14,12,11,10,10,12,15,17,12,12,13,12,11,12,14,12,9,7,4,2,72,86,83,86,83,66,47,58,54,56,49,48,41,41,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,23,34,33,106,143,172,171,177,160,176,260,243,208,168,152,173,259,244,218,195,220,191,188,256,269,210,234,224,147,176,0,14,25,40,50,71,82,92,82,75,71,76,95,100,102,85,66,88,110,139,122,120,135,101,76,53,51,39,20,14,10,6,0 +50,864,1879,2652,3663,4920,6048,6860,9489,9136,8744,7746,4377,6046,5837,7767,6966,9379,11405,8353,6638,8902,7318,6612,5711,6824,8628,10975,11264,10560,8841,7990,17607,27683,47876,46531,44946,45765,46663,49396,49486,44772,44736,46731,36296,36166,43494,46608,34215,34634,33958,30504,23583,17315,11513,6505,112,1606,2949,7283,11572,13604,18657,23350,39540,40240,40314,31447,25390,20121,25463,19363,16207,13088,17821,13496,10902,13405,16470,20692,25536,23182,22221,15931,12020,14110,12782,15966,12966,18580,19810,14649,10105,8760,7002,3274,37,144,261,350,501,590,644,916,1164,1406,1828,2183,1680,1880,1319,1812,1604,1503,1909,1340,869,538,256,107,7,476,712,1033,1233,1544,1814,2004,0,1,2,3,2,5,5,7,7,9,8,11,16,16,10,12,9,13,17,16,10,14,12,12,14,14,14,12,8,8,6,6,48,56,65,74,74,63,52,53,36,45,56,52,61,43,40,27,14,10,10,8,7,8,7,8,14,14,8,8,8,9,7,5,7,16,26,30,26,76,91,134,153,222,223,272,306,292,249,211,121,150,214,244,207,187,138,141,140,172,249,200,262,230,180,234,17,34,51,55,40,50,76,83,78,62,67,76,86,98,96,97,52,70,105,117,136,134,155,130,108,80,70,54,23,20,14,8,0 +59,855,1670,2350,2468,4068,5098,4914,9467,8975,7540,7492,3708,5552,7076,7496,5595,6720,8590,7772,5236,5978,4968,5477,5659,7032,6718,6618,8460,8840,9861,10887,19871,33249,36716,35316,36456,38764,38938,39892,64394,58267,48084,46456,35936,41099,42046,48516,51176,54267,42277,27290,18978,13995,6255,3758,199,1300,2915,5624,9178,13289,17529,19342,37981,35385,31790,34792,17675,16253,21487,15670,12382,13130,12682,14044,8871,9591,9418,12845,33965,22694,18840,11932,16842,14920,11644,12466,13427,15255,14661,9278,8884,7854,5301,2280,89,212,266,348,401,587,648,834,851,1117,1578,1520,1670,1702,2056,1732,2348,2443,2054,1282,988,732,398,224,13,317,738,739,1439,1520,1880,1868,0,2,3,4,3,5,4,6,7,7,6,8,12,13,10,10,8,10,13,12,7,8,10,9,13,12,11,9,7,7,6,7,34,44,46,50,72,59,56,61,31,38,52,45,66,62,48,55,23,21,15,12,12,14,13,12,23,24,17,15,16,17,11,10,8,13,20,28,28,40,66,99,207,248,318,305,263,265,244,223,96,131,166,170,131,125,120,114,157,168,160,173,230,203,212,196,32,46,62,79,44,57,74,86,58,54,62,73,81,110,114,166,55,58,79,71,138,158,156,142,103,95,66,46,32,26,13,7,0 +69,867,1801,2204,2908,3202,3165,3969,6208,8488,6448,5524,3352,4522,5077,6168,4440,4462,5897,5912,5262,4745,5812,4822,6090,6660,7049,6834,7774,8722,9648,8042,15860,25840,40710,39956,36513,33642,36972,31705,61606,62748,51150,48520,46369,41404,35300,42074,44326,34336,37030,20987,16036,10507,7278,3694,300,1904,2512,5370,9973,11112,14293,14376,41796,37114,28358,29050,16826,16652,21370,15941,11039,9321,10135,11219,7889,8185,9210,9632,31598,23636,13550,12314,17742,14859,12556,10486,19190,16457,18382,12420,10698,8388,5847,2730,145,234,258,394,477,744,1073,1302,751,791,1300,1476,1748,1742,1528,1658,1954,2218,2422,1508,1098,754,565,264,18,286,703,749,1156,1631,1283,1418,0,2,4,5,4,6,5,6,7,8,7,9,9,11,9,10,10,12,14,12,7,9,10,12,10,12,10,10,7,8,7,10,35,44,40,46,59,66,46,48,39,47,61,58,76,68,52,63,37,36,26,28,15,18,20,17,34,32,32,28,21,21,15,14,8,14,20,26,31,46,75,84,208,278,308,342,346,296,236,168,107,132,124,156,142,125,111,110,127,112,144,136,179,158,171,182,63,59,82,79,63,64,74,70,84,74,72,88,67,82,128,172,57,73,77,92,133,133,112,161,98,84,70,52,39,32,22,10,0 +69,691,1120,1687,2382,2662,3452,3061,5269,5302,3687,4370,4328,4086,5377,5888,3022,3322,3239,3918,3860,3973,5258,6130,5771,4826,5245,6562,6494,5966,6043,6256,14243,25828,36796,33073,43526,30511,16187,10491,54743,58505,67549,62595,43533,43286,37902,25414,39884,31980,19331,16952,14152,10513,10119,6166,524,3306,5439,6828,7471,8570,7554,9810,32902,40431,35065,24795,19048,16095,7904,8378,6786,7433,10925,9609,10197,9534,7378,7516,23429,20288,18936,18328,14818,13275,9135,7138,20913,15676,10870,8288,9253,7309,4815,2594,218,270,365,535,566,672,709,981,402,766,892,1045,1710,2357,2317,1722,2432,2212,1622,1603,1296,786,627,281,24,404,702,774,984,1095,1024,738,0,2,3,4,3,5,4,5,5,7,6,7,6,8,8,8,11,13,11,10,6,8,9,9,7,7,6,7,6,10,11,11,34,45,53,60,50,47,32,42,42,39,49,60,68,69,60,71,45,49,43,29,19,22,20,19,38,48,43,29,26,29,23,19,8,19,23,24,34,53,59,81,172,248,251,307,318,297,220,258,136,143,152,140,144,135,83,106,74,70,72,88,98,201,271,288,81,90,102,96,78,68,46,45,105,110,120,101,68,93,105,183,58,71,104,106,150,151,217,193,87,60,56,57,46,36,18,11,0 +87,690,1356,1932,2818,3364,3225,2620,4415,4466,4282,4554,4629,4662,4755,4977,2280,2550,2526,3399,2828,3244,4385,4403,4139,3992,4532,4737,4386,4401,5094,6210,11071,17776,31326,35566,31050,28571,21142,16772,48199,51654,45992,41421,33762,33332,37902,25544,36156,25261,15412,14687,11438,8763,9721,5374,773,2442,4724,5168,4985,6836,6550,9192,46983,42396,34016,26090,28947,19610,15061,10506,7712,10167,12882,10458,12019,10211,8126,7566,23059,23632,14746,16758,13567,11861,9845,10068,17436,12112,13043,9046,7628,6283,3840,1991,276,306,356,412,393,525,614,784,468,574,840,1278,1472,1710,2056,1476,1780,1806,1706,1494,1169,973,635,320,73,413,702,908,992,1007,974,793,0,2,4,5,4,6,5,6,5,8,7,9,7,10,8,10,8,12,10,9,6,8,8,8,7,9,8,12,8,12,12,14,49,58,70,91,75,62,44,64,78,78,72,84,66,73,68,77,60,72,64,40,30,30,34,32,38,46,48,45,44,38,28,20,8,19,21,26,46,52,53,75,155,218,201,267,251,286,203,185,137,136,158,135,151,129,118,103,84,68,87,94,133,206,275,294,109,109,114,93,130,98,74,72,111,136,150,110,127,116,167,178,74,112,122,134,123,169,239,229,108,93,74,54,46,34,16,10,0 +84,634,1306,2275,3459,2928,2936,3325,4682,4879,4156,3884,6203,5520,5754,5038,1723,1449,1726,2038,2045,2771,2813,3696,2856,2577,2952,2807,4102,4050,4514,4569,10690,14710,22340,29596,33414,30579,31417,28868,47739,31567,30570,33226,28301,25224,25503,25498,22610,19628,11615,11296,10264,9648,6190,3507,789,1890,2597,3235,3801,4603,5872,5857,51811,51014,38532,39194,31220,29222,17985,14171,10350,12625,12178,14213,11996,10859,8216,7247,22853,16856,15868,13146,16460,12553,12067,11348,16981,11844,10978,9094,7981,5305,2610,1440,325,342,318,300,206,372,450,820,403,643,688,1156,851,1032,1243,1251,1564,1575,1508,1532,1492,1083,721,462,108,290,612,706,833,766,611,690,0,2,3,4,3,5,5,5,4,7,7,10,6,7,7,10,6,8,8,7,4,6,6,7,6,8,8,12,9,12,12,12,55,77,93,112,99,80,64,82,119,116,101,90,69,73,64,82,92,89,76,58,40,50,43,49,52,58,53,49,51,38,33,22,9,18,26,26,43,41,50,64,181,202,220,214,269,194,212,184,173,169,138,126,147,146,116,80,87,82,97,92,171,195,238,251,126,145,132,144,137,134,108,106,164,148,146,131,150,151,183,155,106,144,159,164,138,197,190,155,130,92,67,51,38,34,18,9,0 +76,774,1762,2620,2816,2806,3198,3198,4772,5080,4746,6018,8082,6212,4973,4210,996,884,907,1347,1469,2039,1911,2165,2007,2342,3188,3080,3361,3872,4526,3800,7072,12803,19044,25192,25688,28560,28617,25468,43306,37610,28953,27950,28067,28256,29100,27498,17672,17788,10638,7220,6075,6517,5170,2790,821,1114,1726,1906,1761,2761,2722,3468,49185,46877,43723,41580,33221,23708,21408,17045,11052,14334,16762,18576,17671,13608,10972,8811,17055,18110,16527,14168,17609,14868,17028,14876,11714,11555,7860,5332,4268,3208,1906,838,346,242,281,250,179,298,294,536,411,591,752,896,892,747,1073,1160,1620,1489,1539,1630,1651,1022,840,446,132,338,464,619,595,713,671,768,0,1,2,3,2,5,5,6,5,7,8,10,7,8,7,9,5,7,7,6,4,5,5,5,4,6,7,11,9,12,11,13,78,111,104,130,132,111,93,105,160,142,141,130,98,100,103,124,120,132,112,71,67,44,47,48,65,72,72,69,64,52,37,28,12,24,25,28,40,44,42,62,141,184,158,206,230,174,158,136,150,156,129,146,108,126,106,84,56,91,122,152,204,257,259,284,109,120,127,116,158,148,152,150,185,142,149,162,218,224,183,170,192,182,219,162,115,164,140,142,176,110,77,57,31,30,22,12,0 +50,419,883,1422,2333,2439,3240,3943,3758,5620,6807,7341,6864,5188,3695,4268,0,90,199,339,450,707,838,1172,1202,1186,1721,3346,3860,3529,4958,4714,6509,11333,14262,20582,20539,21294,21044,27672,33342,41632,48194,53366,41467,38277,23355,24244,15535,13144,11624,11534,14197,9305,7231,3591,798,757,694,496,436,370,185,98,41521,33975,35587,34831,22682,19724,21297,16501,10595,9026,8805,6288,2869,5832,11094,12669,14414,10792,8036,5755,5192,5901,8375,11419,11623,9283,5879,4871,2299,1538,921,526,300,401,567,617,615,520,455,424,548,678,733,673,876,908,800,828,1782,1732,2003,1954,1362,1070,721,354,156,253,275,470,660,595,407,531,0,2,3,5,4,6,6,5,3,5,4,5,5,7,7,7,3,4,3,2,2,2,1,0,0,2,4,7,9,10,10,13,129,133,93,95,95,154,179,166,182,182,132,158,249,177,120,123,129,96,71,66,48,45,43,56,56,43,33,37,34,27,19,24,16,38,65,62,80,69,58,64,86,130,150,216,226,204,274,215,128,123,99,142,136,99,96,62,50,89,102,202,239,196,220,248,106,153,163,175,169,181,179,179,148,114,98,120,123,135,150,151,291,252,199,216,224,235,183,160,173,135,116,124,121,92,64,28,0 +53,480,1000,1318,1844,2339,3687,4108,2900,4020,4674,4911,6303,5186,4291,4876,0,100,178,284,368,682,704,1059,968,1388,1718,2422,2948,2564,3578,3298,6289,9408,12016,12747,20181,20054,19928,19612,32790,38550,30088,35169,31332,28172,16756,19576,13498,13790,10312,10732,9500,7980,5180,2814,669,570,498,396,338,246,151,86,41639,34244,38190,31064,25599,20182,18088,13426,7124,7908,7716,4716,3068,4652,9626,12255,11742,11214,7131,6714,7204,8435,8348,8452,11071,7677,5442,3535,2366,1245,894,417,278,414,424,569,564,495,443,456,532,780,827,760,650,629,667,620,1406,1486,1470,1452,1028,836,762,432,197,203,253,396,390,464,465,472,0,2,5,6,6,7,7,7,5,6,5,7,7,9,8,8,5,6,5,6,6,7,5,6,5,7,7,8,13,15,16,14,95,114,82,94,101,108,136,129,219,178,179,188,230,164,120,138,141,106,66,62,55,60,72,60,77,66,39,46,46,44,30,28,15,32,46,74,68,74,57,67,84,115,176,212,233,268,220,180,115,102,80,114,113,75,64,44,40,88,92,150,199,198,193,230,102,144,115,155,166,143,171,144,176,134,118,106,118,163,198,178,282,236,173,170,247,226,146,139,157,140,149,138,135,98,54,28,4 +58,644,1017,1498,1822,2734,2953,3508,1559,2158,3756,3604,5464,5572,3952,4466,0,113,198,370,385,658,879,998,702,1172,1738,1940,1890,2683,2639,2288,4299,6217,6403,7870,13912,12637,12176,19427,32918,31748,25445,27144,24608,17119,17930,18668,13068,12760,11717,9763,9022,7616,5608,2808,631,529,327,359,205,147,128,109,44831,36320,32953,28373,23176,14138,11788,8933,5960,6020,6675,4436,3412,5662,8089,11109,14029,11904,9196,7438,6822,8053,6611,7255,7146,6954,4611,3108,2122,1291,736,345,300,433,428,522,460,500,443,308,606,548,669,567,543,669,628,512,1578,1857,1653,1454,714,779,599,388,176,189,157,240,303,375,406,477,0,2,4,5,6,7,7,7,4,5,4,6,6,7,7,7,6,7,6,8,8,8,8,10,8,8,9,10,13,17,16,15,62,70,72,88,76,86,84,73,220,200,180,214,168,146,126,122,109,78,70,67,70,67,77,87,92,89,60,77,61,55,46,30,17,27,30,44,61,50,60,92,90,102,153,166,203,168,196,163,70,100,96,142,93,82,47,43,47,76,118,119,109,164,168,188,111,124,104,88,117,135,110,108,146,145,102,105,156,171,186,182,199,181,130,128,227,149,140,162,145,134,135,129,126,111,61,41,6 +60,582,1028,1482,1352,2019,1963,3142,1076,1852,2666,2194,3951,4045,3036,3892,0,129,258,374,509,710,1057,1063,512,864,1086,1418,1531,1545,1868,1576,2726,4572,5050,5570,11028,10500,9404,13522,24504,23349,16749,17640,23816,17768,16815,12606,9510,9632,10311,8196,6206,5115,3862,2442,318,320,218,220,151,134,106,105,46220,38396,29985,28362,17037,11270,9980,7408,5127,5707,5224,4012,4740,4962,7605,10192,7915,8218,8186,6754,7547,7632,8450,9248,6282,5272,4998,2918,2036,1264,1014,498,360,516,624,514,650,575,441,346,508,522,496,501,762,786,790,544,1830,2041,1462,1370,754,692,644,414,158,172,124,210,283,292,333,353,0,2,5,6,5,7,7,7,5,6,5,7,6,7,7,7,6,7,7,10,9,12,12,14,12,10,12,14,17,16,15,17,44,64,61,85,58,84,84,84,189,188,135,150,125,128,100,118,106,76,59,76,98,80,68,83,104,103,76,88,61,70,58,38,14,22,22,36,51,42,48,66,106,120,123,147,139,123,124,130,64,94,107,112,84,70,62,47,43,64,78,101,97,132,156,247,149,128,111,94,101,78,71,94,104,98,82,121,172,148,177,205,261,274,229,182,246,180,170,150,139,124,104,106,120,88,47,29,7 +81,449,691,1114,1494,1519,1817,2536,520,902,1121,1126,1484,1688,2433,2787,0,206,354,422,586,644,840,1142,418,424,577,717,852,540,403,396,1961,3343,5192,6268,8167,8982,11958,14298,14579,13482,12916,11943,15212,15215,15019,13713,9526,8228,5640,4573,2842,2321,1227,1055,125,104,80,99,107,84,68,99,34774,33342,25382,18353,14566,12402,7139,7426,5372,6740,5922,5502,4562,6364,8215,8802,5689,6176,5136,5630,8220,9763,8347,9265,6230,5179,4259,3027,1472,1311,990,542,461,380,360,538,646,610,511,281,611,770,786,927,901,601,452,533,1852,1468,931,1000,832,726,649,379,104,109,128,167,210,271,422,484,0,2,3,4,3,5,4,5,4,6,6,6,4,6,6,6,4,6,6,10,10,12,11,12,12,11,10,12,14,17,17,13,42,62,64,65,58,66,85,74,158,107,100,126,123,119,130,98,66,86,90,104,100,89,92,96,103,102,122,86,88,89,60,36,9,17,24,32,30,36,31,39,94,120,107,96,110,100,124,133,85,101,126,122,108,110,92,60,35,49,72,92,104,181,268,335,156,168,127,86,54,69,78,74,71,114,128,144,168,271,339,349,293,212,213,240,192,193,177,126,123,138,140,131,78,58,39,22,7 +74,320,550,866,1201,1158,1468,1430,477,772,788,984,1174,1366,1636,2608,0,156,248,317,488,552,666,874,262,354,442,484,654,402,288,391,1401,3312,4773,6044,6070,8194,9602,9268,9341,9312,8354,8836,11144,12592,10554,8989,7076,4946,4274,3538,2062,1527,1111,883,180,148,96,117,128,138,128,135,27114,20765,22037,18278,11742,7497,6483,5940,3985,4851,5832,4649,3690,6063,7730,6968,4852,4769,4278,5256,6084,8079,6528,6776,4987,3875,3644,2468,1030,1050,862,568,422,486,395,452,445,576,493,327,576,670,664,816,824,498,347,458,1503,1204,622,742,642,592,416,312,101,91,116,171,188,230,332,363,0,2,4,5,4,6,5,6,5,7,6,7,5,7,6,7,5,7,8,12,10,14,12,14,16,16,14,16,12,16,16,20,37,59,67,56,71,74,69,92,171,136,98,134,143,124,112,96,74,84,108,122,82,111,98,100,122,119,82,88,86,60,56,36,17,22,32,36,29,38,37,52,79,78,72,80,78,86,82,111,86,74,101,87,92,86,66,55,33,54,67,86,98,146,199,244,113,96,116,74,36,46,61,67,50,78,94,124,160,264,346,328,239,233,216,232,200,178,187,138,102,106,98,99,85,74,45,30,16 +73,231,334,401,864,876,942,812,362,575,696,648,972,1080,1262,1470,0,64,126,195,271,392,614,666,221,233,317,405,453,422,292,346,1528,2265,3180,3693,5053,6527,7116,6207,5629,5081,5758,8339,7932,8737,7896,6727,3798,3274,2786,1970,1523,1292,822,582,214,152,156,202,193,199,158,142,14505,14146,11480,10120,5549,4701,4009,3910,3555,3879,3854,3378,3294,5054,5210,4148,2927,3694,3279,3420,5281,4062,3896,3547,2181,1872,1862,1360,878,918,707,396,359,440,422,567,412,326,358,291,624,682,740,647,640,486,370,425,946,684,529,486,545,436,385,317,94,115,98,106,147,225,282,286,0,2,3,4,3,5,4,5,3,5,4,5,3,5,4,5,3,7,8,10,9,12,12,12,18,17,14,16,12,14,18,20,36,44,47,53,60,55,62,87,164,140,106,128,184,150,120,87,77,88,120,124,101,132,133,130,112,101,75,83,72,57,46,32,22,31,36,38,32,42,42,57,48,46,56,45,74,76,72,60,59,65,63,73,52,54,48,33,34,46,70,77,97,113,154,159,116,87,76,63,27,40,50,44,24,44,62,94,162,173,236,350,194,175,208,198,213,174,150,92,92,105,86,74,74,64,63,43,28 +66,126,213,262,512,480,560,488,217,286,326,352,504,570,514,877,0,32,70,109,150,204,323,402,172,220,341,374,414,374,286,276,1011,1550,1813,2160,2130,2618,4111,3870,2476,2474,2772,4582,4733,4306,4143,3396,2181,1682,1178,1066,938,702,397,356,224,196,191,252,272,249,233,188,7907,6752,6402,5690,2836,2720,2329,2082,2090,1998,1791,1708,1605,2648,2994,2272,1734,1845,1874,1532,2607,2060,1708,1978,1138,1012,1131,698,538,550,416,284,337,340,373,428,453,317,345,356,541,614,517,662,736,530,408,386,778,502,316,375,382,324,286,242,88,94,85,105,105,144,128,114,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,8,10,10,15,16,16,18,20,22,22,17,20,21,24,37,34,34,42,52,70,80,90,161,120,99,132,190,156,102,102,101,114,136,116,101,127,108,104,159,105,68,67,49,49,53,41,29,34,30,34,25,38,40,48,38,41,51,46,39,46,40,32,28,38,33,39,27,29,30,26,25,40,50,76,99,104,103,112,87,76,47,46,21,25,28,24,12,26,53,74,124,156,201,258,249,186,198,189,176,140,126,74,63,70,65,56,59,56,50,47,40 +44,36,37,30,13,14,12,10,7,8,8,7,5,5,3,2,0,8,15,24,30,95,138,200,198,233,275,322,264,217,189,241,300,353,298,225,231,203,177,88,26,27,23,24,17,15,11,7,0,44,79,147,183,147,150,202,249,230,226,270,297,312,280,245,222,287,286,216,217,218,243,231,225,201,244,263,204,159,107,78,53,60,57,50,37,33,21,12,0,16,30,46,47,130,187,178,249,222,205,310,361,294,284,379,578,506,402,565,650,452,340,338,357,255,176,162,150,133,132,138,123,85,69,59,40,35,28,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,11,12,14,18,16,16,17,22,22,17,20,24,28,32,33,30,40,36,72,84,93,103,114,102,125,171,160,126,116,110,114,120,110,97,106,86,109,156,110,61,42,39,42,41,41,31,28,34,27,17,30,33,35,38,29,31,23,18,15,11,7,0,2,4,6,6,12,15,17,18,25,34,48,71,75,77,98,93,57,35,26,11,8,6,4,0,15,29,57,84,98,117,220,258,250,187,186,132,99,66,40,17,26,26,36,34,44,56,43,46 diff --git a/worlds/diamond_world2_iso.jpg b/worlds/diamond_world2_iso.jpg new file mode 100644 index 0000000..15ad13a --- /dev/null +++ b/worlds/diamond_world2_iso.jpg Binary files differ diff --git a/worlds/diamond_world2_topo.jpg b/worlds/diamond_world2_topo.jpg new file mode 100644 index 0000000..67fbe5b --- /dev/null +++ b/worlds/diamond_world2_topo.jpg Binary files differ diff --git a/worlds/diamond_world3.csv b/worlds/diamond_world3.csv new file mode 100644 index 0000000..f728357 --- /dev/null +++ b/worlds/diamond_world3.csv @@ -0,0 +1,129 @@ +54,45,48,33,25,19,13,7,0,30,56,85,111,186,266,326,308,342,398,404,478,526,482,386,235,547,794,981,938,973,930,1031,848,1321,1885,1868,2595,2808,3491,3086,2423,2261,2150,1866,2490,2400,2296,1731,1056,1121,977,968,908,719,350,156,0,40,66,106,139,230,302,350,552,1001,1941,2481,2391,2874,3772,3797,3441,3024,2415,1553,1437,1385,1355,2190,2405,1644,1345,1364,1672,1222,1304,660,235,164,166,130,117,364,544,616,737,1044,1266,1885,1976,1907,1535,2132,2040,1908,2521,2150,2796,1799,1566,1266,1324,1154,1471,1270,1186,926,828,373,0,5,9,15,22,36,42,46,44 +59,44,39,31,25,18,13,9,4,33,48,70,98,137,220,226,330,362,321,362,326,373,393,324,200,470,674,734,644,705,825,755,642,1283,1674,2145,1902,2134,2795,2202,1814,2135,2068,1703,2219,2266,2238,1334,1221,1068,927,1072,922,826,520,238,29,58,79,126,148,220,249,304,498,1108,2106,2191,1606,2254,2683,3624,4869,4892,3513,3584,2507,3754,4592,6927,3696,3422,2276,2096,1758,1512,1199,902,1302,1092,855,564,750,896,737,720,636,916,1187,1680,1584,1596,1815,1757,1464,1712,2266,1651,2106,1732,1531,1469,1474,1482,1226,1248,1090,1173,922,530,275,312,253,200,166,123,89,62,33 +54,47,34,30,22,22,14,8,6,32,54,81,92,128,138,136,248,203,180,245,277,281,356,232,222,350,552,831,507,585,522,415,611,1048,1510,2132,1548,2264,2502,1822,1482,1799,2396,1959,1643,1558,1660,1372,1216,1021,952,1089,909,702,556,356,53,82,103,137,215,269,247,312,352,816,1669,1790,1369,1806,2306,2589,6746,6526,4918,6895,4070,7047,8161,8731,6129,4300,3734,2387,1904,1773,1663,1561,2186,2043,1466,999,1240,1169,1287,930,524,644,882,1065,1368,1580,1572,1514,1526,1420,1400,1356,1528,1748,1726,1492,1660,1634,1350,1137,997,1076,968,779,613,501,529,419,292,202,145,83,28 +50,39,24,26,19,22,17,12,8,32,48,62,101,136,161,178,189,193,179,236,264,284,359,294,312,426,470,638,464,534,561,467,509,1028,1894,1884,1593,2331,2178,2190,1576,1810,2214,2059,1876,1574,1795,1704,1187,904,1034,784,782,658,426,278,122,98,112,154,248,240,230,232,415,858,1470,1360,1026,2134,2898,3745,6536,7304,6121,7452,5650,8898,9037,10044,11024,8813,6880,3442,1932,1739,1590,1334,3544,2875,2363,1857,1462,1524,1536,895,265,508,647,882,1203,1330,1448,1184,892,1088,1017,1062,1413,1237,1484,1186,1628,1463,1188,1214,1274,1010,1094,930,1114,688,687,575,340,274,212,110,26 +45,40,34,26,16,12,8,7,9,26,50,71,77,124,178,203,160,209,208,219,199,190,144,224,358,482,603,510,612,634,523,568,557,847,1012,1766,2144,2135,1505,1816,1768,1828,1535,1661,1634,1152,920,1070,953,1032,946,959,796,564,610,374,162,187,206,256,244,183,129,124,519,771,919,814,966,1558,2378,3365,6658,7550,9782,8815,9230,10485,13423,15564,13711,8821,7996,5990,2260,1993,1938,1443,4578,4356,4056,2526,1850,1319,1068,955,104,247,454,712,1070,1065,763,646,628,722,626,676,1004,783,863,634,2095,1269,1074,1101,1238,1164,1018,1021,1417,1124,1200,938,484,367,354,166,27 +36,29,23,22,15,15,13,13,12,26,39,48,48,90,106,144,234,201,176,204,156,140,142,196,393,486,443,513,643,582,463,432,483,702,708,994,1463,1476,1438,1644,1585,1233,1504,1358,1760,1488,1067,1174,861,1062,930,998,1339,1136,598,439,270,302,271,340,494,346,246,222,476,818,989,1014,1204,2096,2424,3972,6113,7783,11573,10580,9109,13048,17592,14989,14571,13236,11292,7032,3388,3810,2754,3110,5995,4750,4442,3367,2224,1842,1202,1036,76,196,383,588,744,594,476,500,459,556,768,684,1514,1108,1030,910,2403,1926,1576,1282,1083,1166,1125,1055,1637,1860,1548,1492,700,600,487,235,19 +25,23,17,17,17,15,14,14,10,25,37,37,39,47,72,100,236,205,226,204,87,94,92,120,353,421,409,371,477,382,299,256,371,504,564,697,727,800,930,1034,1261,1082,1040,1034,1366,1006,1068,1046,718,1155,1354,1587,1555,1125,816,636,321,307,372,415,581,378,354,225,355,759,1033,1302,1930,3154,3366,3742,3804,6151,10185,11202,9443,11786,18736,18116,18431,13811,12021,9441,5235,5634,4548,4414,6949,4792,3987,3418,2295,2380,1808,1360,35,115,193,356,371,349,327,309,354,515,708,692,1582,1535,1420,1145,3583,2384,1832,1624,1110,1110,1214,1251,2081,2180,2274,1625,1106,952,568,298,11 +12,14,12,13,12,14,14,16,11,20,28,29,20,30,38,55,291,249,182,147,62,70,90,164,248,345,338,300,228,204,198,130,215,268,322,386,480,530,761,784,802,846,744,710,863,918,891,1050,949,1096,1273,1353,1238,1308,1097,742,388,512,662,558,713,494,441,308,278,684,1204,1978,2782,2963,2318,2853,4506,6572,10167,11387,11813,15246,19093,19558,15894,13022,12641,9506,6516,4920,5160,5288,6719,5358,5891,4277,3833,3552,3348,2052,18,62,99,172,155,152,195,150,170,500,683,950,1563,1893,1887,1717,3615,2508,1875,1477,1107,1070,1074,1221,2383,2326,1914,1782,1237,1144,626,318,8 +0,2,4,7,7,10,8,12,12,10,9,8,5,5,3,2,292,241,199,201,270,271,268,233,184,150,180,150,104,96,57,30,0,84,163,282,318,302,396,503,542,580,462,664,652,828,783,888,1235,1163,934,1220,1506,1206,1168,923,600,616,730,788,591,623,537,417,139,266,467,902,1357,2620,3758,3489,4095,5723,6818,11223,16184,19013,16734,17158,14824,14493,15844,13046,11070,11676,9831,8869,7840,9358,8310,8808,6789,5621,3699,2794,0,0,0,0,0,0,0,0,0,122,239,534,685,1228,1574,2065,3970,2909,3052,2114,2124,2739,2548,2034,2048,1310,1138,956,699,606,395,197,3 +6,11,13,16,15,16,14,14,17,14,10,10,7,7,5,2,232,278,268,316,356,406,421,493,376,302,278,220,122,223,183,158,0,98,202,265,241,285,452,560,579,504,370,498,582,666,892,1054,1035,876,836,988,1271,1075,1287,884,598,636,696,599,797,754,615,390,246,482,813,1249,903,1768,2916,3236,3494,4704,6145,8302,10831,14066,14296,12928,11657,11734,14097,10754,12122,9655,12061,8773,8971,8542,8337,8280,8869,5428,4264,3023,81,64,56,53,60,65,72,68,28,172,279,423,666,1107,1931,2537,4330,3361,2080,1892,1919,1940,2344,1876,1516,1052,1160,958,549,496,304,180,4 +10,17,18,26,20,16,15,14,15,13,12,12,8,7,5,2,192,332,362,460,469,685,680,856,586,518,340,236,197,333,390,289,0,91,172,217,189,280,427,402,426,446,444,592,423,684,936,1016,923,1037,850,834,1101,962,994,763,844,856,730,557,800,610,696,513,398,789,1164,1337,871,1825,2718,3665,3608,5866,6235,7542,6885,8813,14482,14902,6848,7180,9049,11016,10371,11395,10356,10896,11872,12890,9652,6686,8689,7522,4166,2747,153,131,99,87,145,148,140,111,54,200,330,392,634,1273,1664,1999,3350,2919,1728,2013,1365,1522,1392,1219,1122,888,798,717,454,404,262,154,3 +16,24,30,31,26,28,29,21,20,21,20,18,13,9,7,4,131,218,362,443,555,778,840,806,973,822,469,374,327,411,470,487,0,66,154,185,239,320,360,424,419,370,421,462,293,490,662,965,651,663,502,727,797,942,1131,725,709,697,736,686,969,765,667,388,485,906,1441,1195,1243,1918,2188,2804,3564,4584,4960,5902,6440,11890,12513,12905,7528,6714,7297,7182,8176,7253,9608,9238,14455,12884,9046,8580,5909,6088,4683,3324,251,214,218,206,189,190,195,166,68,232,295,373,477,1295,1822,2448,3430,2465,1768,1573,1422,1210,1101,978,760,845,723,654,465,353,226,112,2 +26,31,36,42,40,38,30,19,24,22,13,15,14,11,8,5,55,120,201,298,480,587,722,973,1045,970,714,593,434,348,363,516,0,76,143,157,224,336,370,390,286,269,225,264,230,325,457,677,288,423,441,747,810,572,534,654,869,1114,1068,808,902,839,560,396,534,1021,1393,1736,1521,1726,1893,1722,4251,5122,5725,6832,6732,7670,11725,15972,6447,5632,4673,4032,4428,5252,6178,7915,14539,11468,9140,8413,5969,4751,3224,3233,435,383,252,304,264,189,194,216,86,188,333,456,524,981,1504,2432,2389,2184,1472,1500,1112,1094,728,1038,693,593,716,604,454,401,237,136,2 +32,34,31,36,54,50,31,23,26,24,15,15,14,13,8,6,40,139,178,259,304,544,610,994,1040,981,660,674,691,1052,889,1701,0,59,137,166,191,219,256,313,344,307,178,196,215,268,419,665,277,356,462,708,880,656,493,518,779,985,1016,854,628,747,629,511,610,1130,1266,1221,1519,2116,2066,2681,4139,5902,6058,6776,7355,9477,12114,17525,6594,7392,6277,7321,7834,8482,6356,8530,14393,13772,8548,7760,4520,4349,3177,2269,545,512,571,472,406,408,289,292,213,368,504,606,499,1062,1528,2207,2184,1936,1295,1246,1075,957,924,1111,718,634,544,492,463,369,268,136,2 +34,39,35,37,50,45,41,26,36,34,20,16,12,12,8,5,39,110,156,226,274,453,654,1045,1331,1095,836,854,744,1448,1715,2650,0,44,85,146,143,195,210,257,335,275,138,164,128,325,430,689,350,378,420,470,726,774,648,656,820,770,896,952,641,671,627,607,752,882,1292,1126,1691,2161,2442,2756,5836,5932,7378,6833,6356,12483,14456,17364,9019,7004,8156,9492,9271,9742,7668,8347,16230,14451,11121,7987,3951,2947,2558,2055,553,743,820,845,576,476,438,298,303,476,692,862,645,1180,1339,1229,1847,1639,1281,1099,846,705,847,957,653,489,494,423,413,310,213,124,1 +40,32,41,38,48,46,43,33,28,30,22,19,13,14,10,6,22,80,96,166,225,448,614,806,1064,848,654,859,708,1368,1767,2534,0,50,110,168,200,221,202,262,301,250,107,117,116,176,269,512,368,380,395,615,794,732,886,908,769,789,1046,965,832,788,894,730,670,734,1134,977,1128,2185,2604,3946,6092,6103,5849,5740,5313,9128,11342,13634,8527,7910,9878,11010,10941,8296,7856,7088,10646,12072,10010,5844,3438,3796,2770,2351,810,1055,1519,1404,988,948,569,463,378,687,766,786,867,1378,1520,1882,1876,1582,1230,1087,1083,1090,865,936,739,593,422,397,381,226,157,78,0 +41,39,48,42,48,43,30,28,20,22,17,15,16,12,7,5,0,278,605,1071,1182,1453,1326,1720,2097,2615,2536,2731,2112,2298,2282,2800,0,7,11,22,24,42,53,103,138,162,206,357,402,278,268,362,366,333,382,445,487,397,322,354,342,305,326,355,386,479,412,516,758,851,911,612,604,497,329,275,160,1252,1981,3248,5523,6379,5166,6304,9109,10836,12885,12417,9646,9241,7285,6066,6991,4897,3622,3996,3235,2721,1636,1751,1308,1792,2391,2595,3637,3594,2869,3284,3761,2573,1877,1491,1276,1962,2284,2384,2156,1466,929,855,729,1243,1399,1141,1353,1213,1129,906,417,309,141,66,0 +33,35,53,40,41,42,28,28,24,19,14,15,15,12,10,6,0,301,752,1051,1287,1913,1844,2566,1912,2544,2356,2645,2610,2740,2866,2838,158,324,438,420,303,424,414,536,573,634,682,886,749,654,616,618,454,496,503,620,792,633,524,644,474,402,485,517,603,638,591,559,1702,1414,1465,902,819,916,920,798,307,1421,2209,3542,4523,4982,3722,5007,7733,7864,9625,11268,8274,7102,6623,6031,5818,5564,4890,4498,3167,2347,1787,1503,1764,1528,2416,2582,3142,2572,2539,3158,3704,2692,1900,1665,1526,2180,2326,2380,1713,1594,1152,1023,701,884,1352,1109,1755,1296,1177,820,394,294,137,68,5 +28,31,41,48,44,34,36,28,19,17,13,14,15,14,8,5,0,373,698,1062,1525,2070,2490,2958,2364,2818,3170,2662,3888,3248,3268,3655,334,525,794,910,565,611,788,867,1269,1268,1155,1214,1167,998,1132,1042,493,799,840,756,938,762,762,947,493,532,562,786,862,933,806,727,2618,2419,1980,1159,1403,1125,1330,1483,529,1880,3410,4720,3246,3336,3399,3606,5004,6625,6264,8113,9493,6314,5244,6114,5970,6759,6818,5169,2903,2282,1412,1201,1671,1852,2086,2806,2393,2973,2820,4110,2994,2900,2022,1571,1667,2042,2616,2039,2086,2092,1654,1440,683,804,920,1003,1594,1486,909,767,324,204,137,64,9 +22,28,36,34,41,30,23,22,15,15,12,13,10,9,7,5,0,399,660,1270,2048,2624,4211,3708,3251,4160,4932,4128,3404,3240,3528,3682,400,706,1204,1248,1090,1217,1453,1562,1897,2208,1643,1672,1328,1890,1705,1978,770,851,863,1084,1222,1106,1238,1130,521,614,624,1030,900,984,727,594,2991,2848,2200,1829,1884,1922,1454,1662,883,2066,2988,4042,3315,2774,2742,2370,4814,6504,5816,7380,6910,6239,3930,4724,9805,8193,7666,5540,2945,2226,1597,1280,1170,1478,2223,2056,2269,2924,2931,3330,2058,1918,2099,1473,1715,1617,2900,2281,2291,1905,1502,1170,1076,1190,1244,1081,1089,1065,832,663,367,240,140,72,17 +12,22,23,23,24,21,18,17,10,10,11,10,6,6,4,2,0,594,1050,1522,2054,2863,4668,3868,5409,5532,4846,4735,3862,4505,4469,4123,601,1035,1468,1454,1618,2086,2519,2542,2044,2021,2548,2610,1856,2113,2651,3189,897,911,1191,1372,1219,1312,1031,1186,374,839,1024,1295,1314,1492,1216,1019,4494,3442,3562,2468,1894,2006,2629,2220,1363,2190,2702,3109,3145,3092,3156,2136,4877,5188,5058,6420,6372,5747,5599,3793,11523,10765,7906,5528,3029,2694,1648,799,1194,1842,2212,2013,2180,1838,2126,2814,940,839,1032,1597,1680,1260,1326,1341,2963,2664,2601,1816,1113,1188,953,1282,988,1111,1000,856,444,310,300,192,23 +9,14,20,24,24,18,17,16,8,10,9,8,6,7,5,2,0,596,1071,1452,2697,3182,4567,3824,4139,3958,4447,3474,2683,4140,4780,4352,503,954,1867,1946,2117,2571,2350,2849,2693,3016,3481,3091,3031,3281,3922,4379,1339,1678,1388,1432,1980,1745,1484,1490,689,1354,1339,1933,1110,1238,1065,860,3502,3133,4165,3290,2303,3808,4550,3844,3145,2848,4219,4108,5442,4168,3236,2703,3050,3731,4384,5666,5729,5622,4680,3952,10054,10092,9062,6744,4223,3539,2150,1614,746,1092,1910,1904,1695,1642,1791,2101,652,969,1301,1613,1140,927,1304,1100,2808,2461,3327,2428,1376,1391,1546,1498,1002,1005,744,696,432,322,269,145,30 +6,10,13,18,17,15,11,8,5,7,7,7,4,5,3,2,0,697,1168,1826,3208,3459,3020,3381,3399,3102,3116,3098,2646,3512,4211,3882,648,1355,1790,2082,2075,2135,3236,3505,3769,3258,3834,3442,4333,5467,6054,5722,2236,1846,1774,1699,2686,1950,2130,1748,1168,1535,2304,2638,1425,1356,1112,1046,3636,3160,3869,3356,3744,4985,6594,6552,4739,4962,4626,3747,6336,4852,3138,2490,2499,2838,3122,4971,4799,4368,4304,4617,5997,6986,7648,6645,6982,4708,3338,1999,546,908,1224,1250,1211,1442,1206,1533,575,766,1160,1500,696,836,854,660,1938,2416,3086,2608,2048,2004,1748,1591,1372,990,794,834,496,395,272,132,32 +4,6,7,10,8,9,7,5,2,5,5,5,2,2,2,1,0,623,852,2181,2534,3250,4396,3531,4080,3178,2299,2405,2137,3214,3431,4648,1102,1366,1481,2251,1759,2838,3372,3299,4849,4370,3879,3930,4862,5352,4671,6312,2960,2626,2659,2389,3020,2235,2959,3000,2230,2841,2454,2542,2451,2172,1911,1118,5578,4168,5079,4402,3169,5296,6027,6594,6609,6644,7122,6337,7014,4262,2779,1589,1040,1965,3372,3975,3730,4797,4676,4992,8560,9282,11225,6873,8810,4776,2988,1870,380,700,1044,1012,1062,1178,1094,1228,849,816,1194,1117,624,680,474,433,2460,2914,3690,3500,3134,2714,3066,2364,1456,1407,1231,906,583,348,270,133,35 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299,707,934,1136,1384,2044,3728,4995,3934,4426,4102,4439,5422,6795,5362,1548,1988,2547,2784,3407,4210,5592,5653,4980,7057,10152,10058,10568,8668,9227,8728,4383,4847,3789,5211,5562,5214,5688,3842,3057,3194,2938,2488,2096,2120,1825,1204,5747,6870,6643,6222,4058,5836,6007,5984,8932,6996,5525,4163,4003,3431,2709,1109,0,790,1679,1862,2876,4560,6721,8854,8300,9835,9908,9716,8012,5217,3050,1950,394,460,402,610,757,654,709,869,858,775,635,352,180,114,74,34,2577,2426,3123,3717,3119,2754,2215,1674,1771,1382,1015,691,194,148,127,78,30 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,670,823,847,1445,2456,3607,5649,3612,3999,4070,3448,4884,6915,5512,1688,2012,2954,3296,3559,4055,3825,4496,3819,5462,11080,9304,9499,6587,6452,6906,6071,6139,4931,5836,4271,4620,4611,3282,2188,2650,2887,2436,1878,1480,1256,917,5772,5666,5428,4247,4010,5010,5529,7480,11793,10042,7539,6586,4226,3462,2842,1906,780,1590,2120,2802,4117,5384,7517,9616,12257,10588,8846,9824,8876,6271,4078,2259,370,374,392,542,462,526,531,684,602,614,649,378,232,180,106,56,2805,2547,2814,2687,3282,2740,2354,1926,1663,1214,866,624,230,186,124,88,38 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,275,558,676,856,1775,2516,4172,4974,3438,3462,3552,3807,4396,6052,6042,2442,3036,2899,2971,3160,3254,3210,3345,3653,6036,8392,5561,6014,5190,5336,5228,6046,5424,5340,5899,4560,4404,3843,2498,2087,1853,1980,1997,1894,1315,1058,792,4067,4724,4254,4174,4068,4441,4780,7946,11596,9583,9302,7872,3362,3911,4076,3177,1481,2263,3006,3242,4912,7615,8161,11915,14709,12727,11398,9968,10052,8298,5234,2832,323,377,388,492,363,422,560,504,636,702,603,411,304,276,166,115,2792,1928,1758,1875,2467,2763,2511,2218,1191,889,711,447,260,211,147,97,46 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282,492,596,789,1182,1694,3042,3296,2640,3088,4190,4474,4743,4331,4526,2404,2778,2098,2860,2536,2252,2849,3272,3726,4871,7048,6906,6408,6526,6201,7534,5184,4566,3912,4416,4646,3552,3252,2150,1146,1266,1266,1537,1596,1192,840,580,3394,3421,3419,2749,3993,4702,6904,7876,11654,9536,9676,8772,5967,5138,5408,4182,2975,2822,2626,3992,5724,6734,6810,10507,13145,13416,11072,8962,8625,6360,5315,2832,196,264,320,377,289,440,466,558,628,580,460,354,284,204,168,95,2837,1732,1341,1718,2306,2285,2047,1960,816,636,500,336,256,178,104,80,51 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,509,568,735,860,1291,1785,2976,3858,4918,5236,5096,6520,5883,4373,2018,1655,1430,2174,2674,2896,2492,3390,3423,4893,5059,5090,7280,9558,8680,7958,4698,4520,3025,3957,4124,2964,2493,1587,358,506,678,814,976,880,498,316,1729,2406,2974,2864,3910,4665,5843,9834,15647,12326,10347,7602,6610,6505,5708,5420,3977,4273,5690,6861,6332,5485,6759,11743,13963,11303,12048,11376,7496,4690,3839,2634,121,180,304,355,325,371,437,510,488,503,414,358,271,213,122,84,2236,1816,1814,1657,1538,1905,1694,1370,245,182,171,205,220,193,147,95,42 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195,455,498,908,1020,1560,1896,2316,3244,4024,5220,5362,4914,4708,3804,2066,2058,1390,1510,1715,1885,1794,2622,2522,3524,4500,4906,5520,7598,6605,6624,3680,3888,2690,2579,2985,2151,2338,1484,224,359,437,602,703,606,389,238,1886,2550,3360,3748,3464,5630,6111,11817,15528,12960,9365,7984,5878,5384,5778,5396,5757,6403,7439,6547,5782,6286,8165,10130,12970,12621,12238,9508,5357,4120,2826,2194,69,156,218,232,294,338,360,396,440,396,263,267,287,194,141,111,1317,1218,1141,1178,1274,1367,1508,996,298,188,194,222,171,156,129,89,64 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,152,360,418,811,1098,1450,2161,1990,2527,3492,3138,3849,3245,3442,2961,1558,1619,1624,1592,1064,1519,1634,2399,1611,2894,3384,4774,4756,6393,6573,5632,4103,3155,2729,2482,2284,2176,1732,998,143,228,293,448,557,450,264,186,2956,2662,3421,4034,3751,5206,9209,13900,12988,9329,9865,7186,3547,4300,5576,5251,8151,9019,8477,6791,4473,6080,7110,9642,13721,15022,11896,8303,5533,4253,2936,1527,48,96,152,154,215,276,308,373,318,295,214,192,218,188,156,122,837,940,764,789,692,728,862,663,250,191,188,200,131,112,124,95,68 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159,272,430,739,797,990,1718,1836,2055,2323,2801,2842,2373,2872,2662,2445,2147,2003,1384,626,1054,1212,1699,1388,2125,2793,3392,5041,5129,4183,5261,4891,3756,2358,2343,2371,1870,1714,982,84,121,167,224,278,189,120,86,3434,3850,4238,3784,3010,4294,6622,11959,15693,12780,10788,6894,3544,4476,6064,6318,7774,8368,9412,8385,4047,5364,6613,7462,11867,11162,7765,6148,3630,2502,2121,1231,25,66,105,113,140,192,245,246,305,220,207,153,200,184,175,132,416,548,406,532,476,552,627,558,318,233,134,140,107,98,110,86,88 +0,116,261,317,450,682,895,998,875,1590,1899,2097,2948,3085,4420,4526,3685,3019,3606,2942,1988,1601,1320,788,0,638,1184,1410,2133,2067,2198,2263,2814,2702,1996,2609,2417,1790,1683,954,0,174,381,629,1157,1898,2180,3517,5869,4059,3380,3235,4578,4013,4291,4918,6032,3985,2957,1920,1043,748,727,329,4625,3083,2643,3428,3453,3827,5719,5676,8245,9591,14768,16092,13422,13757,10716,9717,7752,8614,11411,8998,9503,7742,8101,9508,9234,7012,7232,4601,1299,1109,888,515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,48,68,73,69,80,106,126 +0,291,604,1195,1731,2548,2697,3309,2194,2538,2286,2866,3407,3900,5184,4964,3769,3510,2357,2459,1614,1176,1014,499,0,370,976,1106,1632,2361,1795,1894,3338,3134,2446,3336,2742,2810,2360,2013,980,992,1243,1476,1895,2178,2123,3166,4687,4394,5320,4803,4822,5117,4564,4372,4625,3735,2978,2138,1378,1098,814,400,5426,4224,3006,3950,3538,4758,5702,7204,7184,8782,13100,11630,10079,9230,8748,8044,9347,10594,12315,8796,11294,7967,8380,8876,10052,9298,7619,5606,1327,1040,867,498,0,7,13,18,20,26,26,32,7,62,106,153,209,208,186,118,511,450,407,332,288,237,218,121,33,55,54,83,58,76,62,73,106 +0,476,984,2211,3759,3823,4472,6302,3610,3512,3316,3140,4399,4920,5580,5763,3028,2333,2143,1569,1137,929,654,272,0,239,511,726,1843,1646,1860,1777,3721,3011,3230,4410,3219,3021,3852,3264,1645,2107,2086,2021,2090,2138,2547,4322,5033,6257,5634,5941,5527,5750,4410,3962,3781,3546,2660,2266,1461,1381,1147,515,6181,4736,4740,4981,4297,5516,4962,6494,7315,10978,13782,9591,6385,6860,8080,7406,12581,9282,9398,9321,10842,9752,7414,8037,11312,7357,6840,5403,1410,1590,1254,582,0,13,22,29,36,43,56,64,13,108,201,340,452,413,310,231,1213,876,748,671,710,450,386,277,73,90,82,82,67,58,50,68,90 +0,1074,2166,3530,4957,5726,7322,7554,5761,5456,3470,4102,3886,5232,6703,6458,2370,1640,2104,1743,1208,853,538,248,0,198,421,761,1403,1180,1491,1198,4664,4085,3992,5024,5277,5163,4249,4724,1905,2401,2527,2888,3630,3228,2143,3265,5341,6834,7645,7042,7987,7578,6156,6227,3064,2510,2429,2558,1673,1368,1176,646,5486,5836,6118,6610,4182,5138,4700,5628,8470,10718,12160,9638,5967,6642,6979,6996,10326,9272,11636,8682,9845,7033,7231,6968,8476,7952,5147,3934,2232,1802,1550,615,0,16,35,52,62,50,68,94,18,146,299,544,684,654,628,446,1480,930,969,896,975,810,505,326,126,122,105,94,89,75,68,62,67 +0,1286,2836,5394,7114,7048,6471,7346,9677,10258,8786,6289,4142,8004,9457,11575,1722,1847,1385,1481,1102,779,669,351,0,182,365,540,590,739,832,703,4416,3546,4294,5777,6113,6015,4869,4924,2423,3032,4262,5803,5510,3699,3288,2266,7714,8795,7818,7726,9646,7631,8276,8410,2203,1834,1631,2221,2527,1587,1122,493,7125,5888,7278,7550,5642,5985,6826,6539,6850,9764,9550,9081,7542,9473,9080,8781,12858,10539,13350,12578,9329,7239,3803,3691,9867,10387,7531,4928,2315,1922,1409,741,0,18,34,60,80,84,116,161,24,292,557,619,834,779,657,658,1937,1374,1113,976,1221,1069,677,370,183,196,182,142,124,104,90,77,43 +0,1806,3622,5903,10167,10500,6411,8952,7944,10178,7962,8665,7292,8407,11341,10960,1266,1330,1004,852,860,626,572,263,0,120,267,352,392,524,691,601,5168,5257,5658,7179,9671,7582,5668,4580,4146,4840,5327,6844,5610,4224,4208,5368,7251,8984,9740,11170,6906,8732,7783,5710,2976,2202,1965,2776,3310,1740,1188,651,5772,5940,7291,5786,5238,4532,5526,5999,5470,7692,7049,6736,6352,8283,9342,9356,13630,11344,13735,10938,7698,7314,6327,5880,9506,8542,7091,4696,1499,1462,945,542,0,29,46,103,101,162,187,174,61,334,492,750,1280,1258,1353,1026,2168,2191,1650,1333,1630,1124,631,453,362,332,302,192,182,157,120,94,68 +0,1516,3760,6014,10074,9941,9338,10699,8388,7166,9368,11918,8461,10152,9576,8185,999,976,720,480,693,528,391,233,0,73,148,214,291,352,406,451,6294,6570,6483,8990,11838,10236,7676,5418,5318,6702,7536,8022,5924,4784,5855,6393,9524,8862,11957,9648,7154,6964,8812,6085,2901,2690,3036,2707,3176,2094,1434,850,5214,5279,6214,4522,4763,4391,5439,6630,5210,5457,6239,3739,4374,5346,8380,10955,10986,11673,11992,11797,9107,9061,7144,7324,8239,8356,6138,3101,1332,930,802,343,0,33,72,106,158,214,226,200,108,264,442,755,1440,1388,1676,1746,3284,2845,2508,1920,2260,1407,852,717,580,497,392,323,213,184,204,151,114 +0,1640,3751,6105,9238,8798,8224,8734,11050,7820,11994,13434,12825,15172,15401,12548,478,456,386,230,331,250,161,100,0,40,65,105,163,200,164,207,8098,8338,9082,11791,15636,10902,8923,8370,7895,9890,12559,10056,9612,8825,9906,8224,8332,10552,10933,13266,8561,8424,8578,7122,4576,3878,3591,3870,3630,2682,1279,771,4718,5612,4834,4178,4402,4928,5058,5307,3933,4517,3877,3234,3316,4918,7565,8618,8696,9860,8810,10822,10480,7896,6423,6104,7054,6007,5920,3634,1588,1000,1022,489,0,54,83,150,187,201,256,235,192,437,514,958,1309,1490,1504,1722,4035,2942,2332,1901,1976,1844,1580,1111,670,615,532,416,260,289,257,196,149 +0,3256,6260,6599,9768,11021,12085,11466,11156,12083,18326,17080,23050,24425,19852,15576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10965,9155,10008,6641,4684,5036,4393,6660,9451,14505,17460,19095,18058,18133,14410,14301,9966,9531,5925,7204,8056,8206,6763,5508,6214,5270,4832,3567,1719,976,702,383,4547,4660,3919,6408,7118,5368,5005,5128,4518,4017,4071,3433,3680,6897,7938,9215,9968,7684,8111,6966,4868,6155,6783,5110,5337,3756,2380,2250,2436,1922,779,376,0,36,64,142,200,210,175,178,222,358,552,670,769,897,1453,1684,3489,3187,2020,2391,2038,2012,1539,1306,746,446,354,380,421,417,366,316,168 +0,2980,6315,6998,9333,10246,9369,7998,12656,12938,12847,15420,23418,19779,18350,15362,486,580,552,759,649,484,277,148,0,70,109,140,294,452,761,1162,9932,10312,9819,9657,7235,7337,11512,12516,9384,12921,15687,17920,19456,17202,14404,11940,7493,6966,5922,6952,7778,5398,6743,5464,6625,6066,5001,3324,1444,1207,985,742,3513,3496,3626,6107,5484,4204,3724,3993,2634,2798,2981,3006,2638,5271,6501,8218,10457,8451,6642,6796,5448,4864,6328,5448,3706,2776,1660,1834,1947,1198,689,270,327,360,389,529,498,372,242,223,516,491,627,758,1340,1112,1584,1632,3076,2657,2872,2815,3290,2886,2340,1370,582,584,452,542,373,408,449,362,209 +0,2961,5592,6580,9159,7674,6882,7908,15945,15972,10821,13732,17225,17969,19528,16569,1185,1265,1126,1268,1347,926,673,279,0,113,229,328,500,879,1562,2207,11694,12148,11721,14487,10614,15672,15912,15921,11066,12232,14869,20020,15632,16534,11984,9548,6581,5788,6756,5987,5474,4541,4868,6088,6624,4746,4916,2734,1685,1298,1210,968,2191,3048,3164,4557,3125,3126,2692,4023,1823,2208,3080,4025,2557,3727,6030,5933,8825,9952,8485,5687,4497,4928,5102,3699,2577,2115,1296,1371,895,579,474,284,669,637,818,772,801,692,380,318,699,788,817,908,1517,2016,1847,2012,2521,2960,3304,3257,3867,3623,2442,1601,619,565,663,561,450,579,522,404,321 +0,2260,4149,4772,7789,5676,5162,6372,16590,12238,12320,12356,11073,13326,13158,16564,1803,1502,1659,1598,1856,1198,918,466,0,206,485,562,778,1084,2138,2342,13384,12553,11887,16237,12170,15930,24225,21502,10758,11445,13383,16906,13464,12844,8448,6296,8574,6774,7272,8803,7318,6497,4898,5251,5721,5050,5278,3914,2439,2186,1319,1209,2396,3012,2914,3758,3750,2923,3085,2843,1677,1880,2524,3346,2247,3496,4446,7554,5553,6877,5604,5216,4270,5072,4818,3275,1836,1450,872,877,591,442,340,149,1405,1571,1603,1306,1146,820,423,334,990,1050,1069,1166,1809,1955,1662,2361,3154,3044,3496,3554,4815,3386,2573,1584,792,914,743,849,612,558,644,472,421 +0,866,1725,3156,4130,5317,7237,6160,12960,15431,13558,12978,10446,13550,18969,19057,2917,2148,2386,2454,2257,1733,941,520,0,218,484,782,986,1328,1933,2849,13966,17104,21791,22164,18629,28355,29378,24853,9748,9966,12257,12099,12954,9208,6909,4594,9464,11671,12298,11166,9883,7509,7035,6426,4738,5897,5209,3747,3124,2762,3019,2171,2023,2202,2976,3350,3158,2388,2805,2626,1246,1638,2391,2004,2510,3083,3383,5309,4087,5560,5256,4505,3642,2992,3254,2756,1040,1026,746,558,274,190,132,75,1884,1768,1612,1353,1196,804,725,518,1475,1878,1800,1882,1594,1677,1808,2652,4195,4462,3306,3720,4224,4004,2870,1305,736,768,760,947,911,810,686,532,488 +0,902,2290,3036,3584,4754,6292,5960,11695,13339,10225,11130,8832,13907,16922,15335,4338,3912,3316,3000,3290,2499,2057,933,0,634,1183,1666,1536,2178,2689,3916,14975,15613,13342,16126,14255,18536,19790,24112,15016,14108,8513,9428,7886,6833,6238,4052,8744,11433,9567,9970,9146,7553,6629,5751,4122,3862,3316,3138,3304,3042,3310,2876,1490,2078,2620,2798,1798,1641,2240,2132,911,1376,1937,2278,2079,2608,3228,4787,3782,4078,3758,3128,2535,2726,2067,1904,853,696,488,310,214,148,81,40,1910,1846,2080,1725,914,914,800,742,1901,1620,1418,1741,1406,1684,2036,2516,2842,3726,3674,4310,3252,3014,2392,1458,708,894,1161,914,1043,742,646,676,562 +0,1231,2358,3724,3176,4183,4802,4701,7278,8275,9609,10943,4389,9030,14441,15912,6478,6021,4324,4104,5348,3974,2792,1167,0,845,1648,2062,2328,2888,4455,3779,12607,12678,11079,8369,15340,15676,19166,17386,18171,11333,8736,8662,5670,5488,4034,4037,9113,8291,11040,9474,7513,5110,4933,4423,2199,2201,2432,2820,3716,3790,3218,2434,1253,1375,1840,2040,1183,1078,1240,1102,442,1015,1336,1679,1181,1356,2060,3381,2816,2432,1954,1862,2071,1602,1648,1827,452,402,284,233,186,144,57,24,1572,1610,1931,1863,905,866,1018,1037,1976,1380,1083,1366,1440,2085,2209,2745,2686,3998,4048,5139,3720,2770,1646,1558,880,955,1371,1106,856,790,584,540,556 +0,1037,1930,2996,2600,3436,4523,4440,5826,7030,7543,8123,2930,7059,10448,11078,8995,6360,6138,5025,6106,3489,2787,1408,0,1057,2081,2576,2835,5287,6630,6198,11028,10424,7012,7236,11094,11853,14148,19089,18138,14964,11085,8099,4824,5390,4898,7292,12051,10021,8167,6641,6496,5205,3786,3285,1736,1819,2226,2828,2758,3620,3913,2694,681,837,772,841,632,534,582,570,207,482,774,1000,648,737,1036,1640,1642,1264,970,973,1143,770,967,887,261,176,166,112,78,72,32,16,1959,1674,2111,1484,1294,1100,1092,1070,1628,1169,1234,1232,1606,1540,2288,2222,2942,3300,3625,4036,3174,3334,1886,1738,1280,1642,1244,978,1163,852,932,675,605 +0,512,963,1020,1542,1761,2660,5156,6537,5926,5827,7863,9725,8499,7827,8978,9690,5739,4123,3792,3340,3774,4400,3821,3267,2574,1794,1627,2199,3390,5357,6418,6516,9205,12142,18789,19231,16438,20768,15706,15838,18722,15901,20408,18604,14541,13965,11326,12938,10773,7851,7594,5244,3688,3961,3934,2978,3119,3564,4574,4813,4070,4610,4246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2756,2119,1502,2186,2217,2111,1994,2759,3434,3816,3970,3270,3065,2386,2809,3273,2838,2856,1982,1337,970,727,321,176,0,16,35,47,77,160,297,460,473 +0,524,794,1226,1249,2368,3706,5250,5076,4196,4870,6760,7166,7454,7115,7272,9492,5832,3498,3424,2457,3256,4409,3423,2912,2226,1527,1577,2328,3060,3744,4235,7068,6958,9970,12752,20963,20048,15946,19362,16740,15262,12845,13224,15553,16320,13476,13148,12246,11626,8372,7254,6811,5622,5118,3830,5043,4238,5199,5342,4269,4462,6226,5466,466,398,382,521,720,519,444,636,1107,924,707,789,820,703,1031,766,267,302,380,375,612,526,391,269,44,120,139,187,422,254,163,105,2828,2290,2056,1896,2380,2290,2592,3220,2904,3335,3176,3148,2746,2508,2943,2850,2373,2338,2313,1510,1262,1018,435,265,10,32,37,70,84,166,246,454,470 +0,419,902,1472,1186,3100,4490,5265,3064,3430,4492,5894,7418,5408,4242,4475,6845,5296,3674,3733,2272,2962,3062,2508,2174,1495,1453,1396,1766,2218,2500,3552,5443,7156,7162,9344,21858,23356,18557,17948,13372,12884,11911,15311,16054,14664,18376,20880,14206,13493,10626,8509,6569,7442,6845,6374,7111,7332,5554,5404,5675,5174,6684,5557,816,790,750,1155,1201,1066,904,1526,2031,1625,1702,1496,1716,1453,1812,1182,551,682,695,972,1056,1044,749,544,94,222,342,318,725,458,329,202,2225,2048,2018,1600,2823,2703,2666,2744,2063,2256,1780,2494,3015,3356,2660,2085,2650,2256,2490,2350,1470,1223,617,286,15,35,54,78,122,211,229,297,424 +0,339,857,1286,1386,2964,3465,4674,2205,2691,4820,5778,6035,5806,4151,4807,4393,3486,2295,2639,1530,2272,2865,2182,1852,1336,1380,1146,1348,1343,1323,2105,2746,5252,6718,9282,14474,18745,15886,13487,9411,9234,9728,11303,11658,12902,19729,18292,18077,15318,11379,7587,5982,6842,6726,5946,9573,8033,9156,7506,5340,5726,4808,5670,1187,1142,880,1596,1646,1794,2100,2331,2976,2782,2084,1846,2773,2308,2227,1521,921,903,1107,1268,1520,1337,832,583,141,282,520,644,747,635,482,326,2227,1962,1908,2070,2412,2751,2332,3537,1268,1160,1424,1813,1793,2126,2488,1760,3967,3650,3385,2159,1684,1130,746,371,26,50,70,98,141,202,202,260,421 +0,333,747,1344,1597,2083,2290,3782,904,1732,2430,5060,6264,7379,6183,6902,2806,3053,2626,2446,1508,1412,1168,1355,1141,909,606,594,868,813,640,729,1382,4305,6147,9514,12708,12980,11367,8688,4676,5536,5779,8552,11742,14784,15052,15153,21841,18004,18298,12442,4992,5270,6083,7175,11618,10092,9643,8109,7524,5300,4717,5098,1311,1659,2236,1834,2318,2060,2061,3238,3535,4111,3676,3743,3011,2678,1495,1316,1022,1287,1346,1774,1819,1262,1082,632,228,452,706,774,1104,734,670,487,1867,1589,1811,1861,1878,2755,2714,2856,711,996,1389,1398,1292,1334,1331,1794,4822,3138,1981,1478,1436,1230,881,426,35,59,73,114,130,230,285,353,347 +0,544,812,1580,1750,2152,2116,4778,989,2134,2396,4040,4508,5560,6216,5496,2026,2190,2516,3002,1356,1568,1190,1564,1564,1492,1108,815,763,709,432,512,1080,3308,4846,7068,11376,12447,8282,8628,7108,8035,7518,8874,10466,12264,15040,13260,22648,16333,19434,14186,7047,6586,7093,8110,11313,11011,11445,8525,7012,6539,5548,5508,1454,1814,1651,2126,2546,2927,2396,3362,3194,4521,3895,4841,4462,3516,2168,2192,1406,1260,1720,1988,2587,2498,1537,1483,887,1025,1361,1232,2215,1644,1348,1258,1752,1224,1479,1668,2143,2579,2109,2512,597,954,1132,1088,1235,970,991,1326,3730,2588,1618,1469,1261,1052,677,380,45,60,82,123,98,160,184,244,281 +0,596,1039,1541,1629,2327,2700,4560,1343,1598,2496,2404,4617,4132,5347,4688,2119,2098,2840,3347,1615,1872,1506,1485,1953,1903,1455,1195,765,480,374,402,497,2527,5052,6382,9432,9012,9008,9703,7309,8440,9646,9741,8621,8409,12228,9871,22275,15791,15616,12736,9095,9732,8309,8188,12754,11498,12170,9132,4332,5110,5538,4563,1152,1536,1632,1869,2139,2368,3075,3500,4028,4800,5142,5816,5963,4821,3506,3004,2194,2125,1888,1658,3614,2974,2466,2393,1484,1788,1902,1895,3144,2269,2069,1654,1773,1540,1187,1446,1949,1781,2304,2950,602,752,1014,1071,897,1083,1141,875,3992,2582,1514,1235,1057,997,612,351,52,62,64,109,87,118,149,151,220 +0,435,789,1253,1861,1890,1669,3014,2192,2112,2376,2280,3204,3410,4777,4246,2420,2750,2981,2630,2498,2026,1541,1552,1708,1494,1586,933,632,426,322,245,256,1708,4026,5157,7777,8959,8058,8877,10197,10486,9268,11212,9202,10173,8846,8670,15296,13267,12699,11152,11485,10810,10355,10960,10974,11659,12937,9974,5807,5652,4781,5257,1502,1670,1694,2236,2449,3348,3974,4195,3829,4963,5378,5794,4837,4848,4877,3733,2915,2895,3963,3226,3285,3432,2612,2006,2171,2534,2952,2683,2981,2442,1748,1886,1407,1124,1352,1526,1960,1678,1729,1664,690,832,948,840,706,690,649,540,3327,2919,2126,1478,1001,784,512,300,62,58,48,74,79,68,78,80,102 +0,507,1169,1865,1938,1968,2807,2193,2440,2343,3058,3017,3973,3606,2542,2614,3471,3200,3265,2984,3199,2898,2518,2094,2162,2089,1536,978,304,218,113,61,0,1226,2299,3747,5810,6007,8917,10266,9940,8616,8059,13685,15810,10955,11081,7902,14209,12292,15595,14018,10829,11277,15009,16268,13081,10678,10264,5546,3551,4581,5207,4119,1568,1961,1790,2378,3446,3720,4564,4815,4154,5168,5389,5284,4311,5040,4812,4073,4044,4054,5782,4795,4665,3187,2584,2763,2244,1921,994,798,527,1189,1611,1394,1035,1180,981,1338,1323,1010,742,600,738,952,862,630,708,821,744,667,4099,5123,5168,5070,3309,2760,2010,866,71,64,69,46,27,20,10,6,0 +0,404,1044,1146,1402,1822,2310,2048,2162,2160,3168,2731,3448,2988,2125,2484,3298,3030,3342,3200,2348,2988,2396,2017,2694,2320,1914,1185,503,394,424,374,56,1048,1814,2549,5650,5541,7260,8708,8776,7428,7242,12641,12336,11642,8954,6073,14570,10680,10064,9972,10679,13128,11398,13478,12354,9314,8261,6314,3215,4380,3721,3887,1073,1733,1830,2514,2952,2918,4015,3642,3758,4595,5249,5546,3885,4618,3993,3284,4127,4140,4627,4258,5964,4708,2994,2440,2798,2414,1568,1232,1581,1912,2516,2248,865,1023,918,996,1310,961,654,801,962,771,999,787,806,828,538,564,3933,4645,4668,4146,2869,2302,1741,818,65,64,63,38,32,28,24,16,10 +0,320,626,956,1252,1393,1276,1119,1975,1717,2247,2414,2070,1702,2069,2494,4030,3041,2699,2384,2527,1986,2048,1908,3617,3015,1914,1344,718,558,666,677,123,652,1127,2053,4976,6156,5304,5701,5920,6606,8566,9433,9689,9407,9743,6376,10227,9462,8899,6806,9843,11813,10530,8014,8860,8052,8304,6498,2318,2484,3202,3466,954,1240,1826,2505,2351,2003,2418,2388,3383,4758,4762,4472,2822,3565,4646,4373,2987,3303,4506,4196,5716,5611,3796,2731,3995,2730,1940,2044,2351,2284,3230,3886,956,1086,894,799,972,899,841,913,1067,892,810,616,737,577,450,511,4508,4340,2882,2746,3043,2078,1242,659,58,42,42,43,27,30,30,22,16 +0,191,324,540,801,940,874,726,1138,1352,1856,2302,1834,2208,2449,2218,2978,2154,2429,2001,1820,1637,1561,1384,3346,2868,1981,1882,1087,973,926,764,245,784,1051,1648,4182,4180,4283,4900,6645,6928,7720,7872,9544,7909,7433,5560,11291,9334,7370,6375,6768,6992,8024,6948,8289,7122,8486,5770,2492,2546,2172,2873,1248,1624,1954,2346,2819,2008,1577,1920,2835,4530,4090,4752,3483,3976,4615,3893,2935,4107,3757,3730,5163,4019,3674,2782,4597,3364,2513,2458,3504,3028,3310,3418,949,878,579,682,806,807,804,869,981,993,916,723,766,562,352,354,3758,3770,2815,2948,2431,1815,856,533,47,42,36,40,38,38,46,30,20 +0,79,171,240,255,292,389,345,850,1138,1114,1414,1936,2000,2554,2445,2436,2580,2754,2241,1937,2010,1567,1432,3783,3397,2448,2425,1884,2184,1817,1157,295,970,1384,2405,3124,3048,3170,4645,7868,7322,10098,9214,7192,6359,3846,2465,9735,6970,5984,4640,3256,3384,3163,4553,6998,7471,5750,4170,3056,3448,3719,3529,1151,1554,2453,2928,2711,2371,1511,1198,3070,3054,3714,4050,4370,3543,3548,4603,2720,2729,3149,3161,3562,2868,1835,2152,5038,4482,2896,3838,3528,2488,2392,3412,766,934,835,756,1004,1054,1259,1328,1040,831,872,856,768,482,427,344,3175,2838,2471,2716,2128,1572,933,510,20,24,25,36,38,41,34,27,28 +0,68,131,198,187,262,326,264,592,738,711,968,1258,1508,1431,1848,1971,1984,2488,2754,1952,1942,1601,1452,4326,3648,2732,2781,1828,1854,1397,1760,830,1316,1599,2119,2682,2275,2770,3768,7943,6152,6646,6424,6799,5507,3581,2486,6209,4990,5406,3410,2305,2433,3224,3618,5266,5693,4015,3483,3040,3074,3722,2794,1229,1798,2446,2293,2374,2370,1682,1178,2608,3478,4791,4382,4150,2930,3542,3700,2098,2936,3481,5108,4349,3185,2763,2556,3754,3658,3139,3538,4330,3544,2876,2844,1229,1082,896,1105,1488,1428,1605,1602,970,794,816,858,973,848,724,718,2776,2376,2180,2163,2034,1167,800,524,45,42,38,42,35,35,35,34,30 +0,47,78,118,178,220,288,298,525,582,534,627,1099,806,744,780,1706,2379,2282,2239,1409,1994,2006,1961,3693,3590,3428,2640,2212,1855,1556,1641,1255,1423,2134,2033,1793,2711,2996,5036,6479,7418,5998,4239,6079,4615,2852,1943,3992,3446,3332,2619,2322,2401,2407,3157,5465,3949,3228,3591,2938,3166,3285,3474,1141,1379,2092,2159,3204,2226,1690,1295,2540,3482,4284,5305,4110,3710,3309,3946,2164,3373,4278,5984,4151,3075,3276,3538,3478,3366,2917,2266,4022,4190,3242,3173,1512,1105,1186,1603,1670,1836,1614,1232,1096,970,924,642,901,792,869,899,2568,2068,1932,1738,1855,1158,706,366,78,70,52,56,40,47,38,40,42 +0,24,41,60,110,148,129,147,292,274,243,354,485,462,488,490,772,1336,1717,2370,1820,2035,2640,2438,3592,3674,3170,3462,2566,2520,2099,2161,1834,2115,2038,2075,1831,2486,2806,4394,5806,5894,4012,3297,5184,3413,2376,1206,2484,2120,1899,1618,1452,1797,1841,2751,3189,3464,2985,3370,2961,2935,2358,2138,1391,1631,1657,2004,2742,2050,1757,1648,2040,3159,4512,4696,3971,4106,2700,3274,2428,3340,4367,4279,4794,4334,3569,4248,4647,3394,2962,3526,5122,3845,2922,2560,1839,1476,1379,1840,1928,1635,2114,1650,855,862,1018,734,1107,970,1145,1112,1906,1482,1337,1226,1508,978,814,396,101,86,82,68,47,74,76,86,72 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190,423,696,757,628,777,890,908,662,488,469,323,394,614,780,726,692,584,459,543,351,209,97,0,530,1106,1735,2412,2314,2807,3674,4523,5596,6067,5465,6175,6127,5072,4405,3146,2375,2546,1597,901,1383,1650,1694,1646,2044,2244,2249,1605,1317,1524,869,604,474,273,312,246,172,90,38,0,118,244,512,613,723,1099,1245,1190,1880,2050,1834,1904,2018,1911,1916,1412,1358,1411,1220,1225,744,371,163,0,6,10,20,27,33,46,63,86,98,133,128,131,112,134,109,108,153,150,140,131,121,156,138,103 +4,5,4,5,5,7,6,6,4,5,4,3,2,2,2,1,0,180,332,582,802,700,768,707,778,719,522,443,336,482,832,804,496,495,526,513,446,384,247,198,47,454,944,1186,1770,2097,2560,3896,4165,5373,5550,4736,5320,5614,4575,4094,2386,2550,2228,1380,976,1077,1082,1308,1612,1917,1798,1747,1585,1466,1307,774,800,592,381,294,213,153,81,40,0,187,436,623,772,889,1439,1458,919,1373,1640,1569,1579,1736,1996,1827,1511,1638,1664,1433,1517,972,568,274,10,28,41,52,61,108,124,138,86,110,130,118,120,96,120,98,136,161,156,170,120,137,141,114,86 +6,7,6,7,9,10,10,10,6,7,6,5,3,4,3,2,0,181,307,394,707,598,593,549,426,550,497,513,462,713,810,904,453,376,452,468,420,293,302,288,113,442,830,1122,1884,2031,2394,3083,3268,3570,3638,3802,3860,3604,4640,3776,2437,2282,1920,1077,758,835,944,1135,1113,1426,1572,991,1222,1116,884,606,921,780,559,343,182,134,62,31,0,316,620,985,726,1005,1332,2257,932,959,1356,1784,1454,1478,1650,1868,1801,1953,1510,1279,1486,1040,624,344,15,43,78,104,81,152,213,182,90,88,104,107,93,96,66,70,169,140,166,214,128,120,116,109,71 +8,8,10,11,14,12,13,12,10,12,8,7,5,5,4,2,0,146,269,340,454,458,496,475,444,651,688,812,711,814,759,848,489,476,370,470,516,443,325,308,156,416,734,1036,1130,1823,2036,2692,3353,4262,5370,4913,5088,4192,4068,3182,1730,1564,1368,803,484,528,645,856,778,1179,999,879,974,898,631,600,867,650,444,311,162,112,47,27,0,383,786,1008,987,1399,2037,2447,713,994,1249,1393,1296,1244,1666,1972,1972,1730,1342,1224,973,880,573,294,30,76,100,124,153,206,253,270,84,81,87,101,101,87,60,65,166,152,160,172,123,124,110,78,58 +8,12,11,17,16,13,13,10,9,10,10,10,5,5,3,2,0,104,230,369,408,328,402,310,478,495,530,748,810,917,1061,1102,629,707,803,733,526,621,602,513,162,360,563,736,900,1430,1490,2336,3885,5742,6301,6118,5339,3169,2449,1859,669,560,311,268,206,382,478,604,752,580,622,624,702,756,718,484,772,666,374,284,141,111,92,39,0,230,534,904,1386,1810,2239,2060,830,710,744,1017,1063,2101,2445,2985,2504,2191,1564,1453,943,607,348,245,45,72,109,142,190,193,238,304,73,97,100,104,74,69,59,53,174,165,194,172,160,123,89,62,55 +14,17,24,26,21,22,22,16,14,13,12,12,7,7,5,3,0,95,220,304,278,268,365,290,522,406,384,553,572,854,1146,978,861,756,812,622,523,501,409,380,353,492,700,716,1081,1288,1342,2082,3683,4201,4364,4333,4608,3270,1739,1302,510,430,358,406,232,364,578,626,739,850,888,954,983,894,891,560,569,427,323,256,111,91,84,42,0,251,592,840,1352,1618,2067,2332,1367,1207,902,1016,1084,1825,2474,2694,2302,2004,1685,1274,852,680,461,296,52,68,108,193,229,309,283,430,79,110,107,120,128,112,91,80,186,170,222,202,210,150,143,100,56 +17,24,28,31,26,28,24,17,14,14,10,12,7,7,6,4,0,83,151,226,187,212,256,216,442,421,396,414,465,590,905,1278,922,890,677,573,352,387,396,451,520,524,674,800,962,915,1230,1430,3237,3745,3415,4214,2807,2225,1584,919,346,460,454,411,350,488,505,494,957,1042,977,1041,1151,932,874,631,380,288,234,185,70,56,49,21,0,224,500,608,920,1263,1748,2387,1939,1704,1342,1141,1491,2104,2965,3273,3031,3004,1994,1418,1047,896,470,305,59,81,132,237,292,305,420,462,109,119,138,134,236,194,154,136,191,190,209,219,224,169,178,141,70 +29,29,23,33,34,25,23,20,16,17,15,14,9,10,8,5,0,55,104,134,122,213,245,270,452,388,385,382,298,584,716,1038,883,817,549,513,363,366,341,524,731,693,672,692,735,758,812,747,5831,4658,3550,3576,2451,1858,1009,651,156,357,433,596,542,535,547,678,1325,1450,1485,1245,1090,1084,989,696,354,282,191,152,64,61,58,24,0,237,475,614,1116,1400,2072,2272,1709,2012,2152,1671,1780,2228,2538,3410,2463,2758,2306,1804,1425,854,564,298,63,114,162,248,324,273,312,404,205,226,195,226,264,232,182,160,186,225,226,237,190,177,210,169,86 +35,28,19,15,9,10,12,14,12,10,7,6,3,4,3,2,0,23,51,72,103,162,272,344,368,472,571,772,849,909,1084,926,780,760,536,782,800,874,779,806,798,615,664,653,488,367,340,156,6510,6577,4899,4410,5365,5004,3515,1646,0,200,344,491,588,725,970,1116,1391,1198,1009,673,419,578,602,529,440,343,238,222,228,185,104,56,0,158,341,581,757,1176,1937,1770,2268,3110,4975,4221,5087,4398,5530,4239,2111,1528,1146,1168,1028,778,546,255,72,95,121,199,246,253,261,270,242,164,122,131,109,122,125,163,148,131,121,137,148,129,170,156,131 +53,42,34,28,20,16,20,20,13,13,12,11,8,10,7,5,0,26,48,74,100,188,269,322,299,447,484,510,880,753,1052,990,732,634,610,677,693,678,703,778,663,1016,1358,1194,1553,1416,1298,1174,4308,4644,3643,4780,5487,3584,3155,1523,380,396,360,418,560,642,816,771,1771,1397,1236,866,447,494,555,432,429,313,211,211,192,142,75,44,0,109,280,461,505,904,1310,1580,1766,3262,3918,4502,4221,4516,5358,4686,1760,1288,1438,1325,1146,864,628,332,152,160,112,170,328,344,350,462,289,233,208,177,206,170,186,154,117,104,136,130,91,128,139,123,91 +67,57,45,39,26,23,22,20,15,15,16,12,11,10,8,5,0,27,52,65,123,161,199,252,234,310,372,449,731,605,722,592,539,541,628,728,827,636,594,787,589,1100,1752,2253,2425,2022,2120,1920,3815,4025,3574,5548,4544,3982,2196,1118,636,558,441,462,606,556,735,753,1861,1361,1397,1125,608,495,530,313,349,237,204,159,117,86,63,30,0,124,224,381,356,615,1017,1356,1935,2374,3884,3822,5305,4266,4429,4187,1684,1283,1438,1094,1232,885,600,302,183,190,154,198,375,461,478,596,316,271,262,187,270,262,194,140,74,110,116,142,74,91,128,124,82 +78,72,44,47,39,34,31,23,25,29,24,22,15,14,12,7,0,24,48,69,118,177,176,211,218,245,284,308,524,454,436,466,427,390,509,553,734,586,498,682,762,1146,1684,2877,2961,2652,2728,2268,3524,4056,3379,5402,5390,3620,2490,1272,1134,1047,846,782,591,630,783,699,2221,1635,1320,1017,821,724,600,471,246,194,150,120,91,66,54,24,0,87,148,296,354,538,755,954,2673,2370,2918,3578,4276,3758,4897,3844,1432,1462,1257,1127,863,734,575,306,206,191,212,228,320,459,428,608,612,459,455,308,226,236,188,116,52,80,73,99,70,80,90,94,92 +63,57,35,40,42,31,26,18,32,33,26,27,22,18,15,8,0,27,62,61,87,95,145,176,151,133,167,198,234,266,326,398,190,271,278,325,470,652,786,933,925,1465,2622,3336,3482,3646,4263,3382,2240,2305,3447,4786,5276,4304,2921,1920,1740,1624,1263,1128,783,792,840,591,2067,1480,1132,932,1154,1035,893,670,90,108,110,88,70,57,43,20,0,83,147,198,243,367,405,632,2927,2553,1915,2547,2996,3149,2696,3609,1742,1652,1062,853,846,529,327,227,213,198,243,323,349,606,676,961,778,466,341,354,284,207,107,82,21,32,38,58,86,85,61,81,97 +80,66,60,64,66,48,48,31,38,28,21,23,26,21,17,9,0,22,39,48,58,64,108,100,118,134,180,245,253,285,446,440,153,234,221,348,457,720,655,1014,1907,2570,2779,3693,3254,3248,3515,3987,3344,3654,4607,5060,6642,5926,4224,2616,1963,1652,1367,1011,868,726,716,541,2173,1790,1340,1318,872,954,912,458,79,83,94,88,49,50,35,18,0,141,234,628,674,789,813,947,1996,2592,1970,3008,2779,3458,4010,4775,1869,1542,1039,946,757,606,320,187,239,193,253,232,356,607,518,717,562,437,336,313,359,248,171,94,20,27,28,48,54,65,43,64,61 +76,72,69,88,68,69,60,47,38,34,22,25,23,16,12,7,0,12,20,31,30,48,54,56,66,110,159,225,314,493,508,522,119,193,253,350,403,546,836,924,2484,3224,3780,4239,4579,5369,4389,4340,6074,4941,4955,6102,6025,7073,5813,3943,1887,1741,1035,1078,718,757,775,495,2085,2144,1854,1974,969,681,644,399,63,64,54,43,43,43,28,17,0,202,394,802,1158,1124,1086,1306,1998,2232,2766,3176,3432,4139,5101,4858,1376,1102,887,791,425,386,354,178,298,259,184,157,256,384,590,804,528,482,316,254,388,234,191,105,14,19,18,24,38,41,30,42,45 +89,95,88,96,76,74,67,59,47,46,34,32,26,23,12,8,0,7,10,17,16,26,24,30,32,98,142,234,373,482,600,473,58,154,239,410,584,670,882,1521,2768,4249,4857,6537,7579,7624,5072,6216,5885,5894,5558,7161,7586,6888,6060,4248,3117,1944,1406,1234,811,808,732,468,2187,1727,1449,1354,897,688,441,270,30,34,28,20,20,20,17,10,0,284,617,1038,1153,1558,1528,1398,1744,1995,2970,2910,3336,4361,4184,4898,870,732,555,572,486,454,300,242,210,192,182,184,221,333,451,666,652,593,557,439,499,316,181,86,8,9,9,14,21,21,16,23,22 +77,78,82,72,55,34,22,20,13,13,14,10,7,7,4,2,0,18,36,61,71,136,168,164,188,194,257,304,402,337,356,631,0,0,0,0,0,0,0,0,0,2181,3867,4230,6403,4861,5368,7448,8388,7221,7840,6484,3061,3944,3742,3945,5360,4307,4671,4720,4724,4654,3121,1868,1597,1425,1181,731,466,502,608,487,423,380,296,236,98,81,53,23,0,23,42,55,60,62,65,71,84,1380,2326,2578,3449,3705,3823,4197,350,389,319,380,367,294,328,427,519,544,636,873,1073,1195,1138,899,675,542,451,421,360,487,632,640,569,470,448,482,431,303,302,135,0 +54,60,64,62,47,32,22,17,14,15,17,17,8,8,6,4,0,15,37,56,82,100,118,146,186,191,260,326,334,346,430,707,0,29,71,94,186,158,101,83,296,1762,2541,3261,4490,5012,5522,7528,6888,7178,7350,5396,2055,3006,2760,3598,5568,3963,3819,4283,3643,3568,2417,1612,1642,1334,1131,828,503,658,832,731,590,564,365,322,200,143,91,43,0,19,35,50,65,76,99,114,162,954,1949,2179,3266,3424,3860,3559,340,381,450,466,394,424,305,328,396,480,723,744,782,814,884,672,555,552,454,465,352,466,537,526,500,558,612,522,498,400,326,171,0 +37,50,57,44,34,27,28,16,12,17,15,17,8,8,6,4,0,15,32,50,69,73,82,122,169,175,260,376,361,368,458,830,0,57,128,153,404,293,189,163,541,1264,2122,3476,3301,3313,4832,8886,8293,6663,7615,4844,1990,2526,2814,3013,4794,5292,4202,5633,4143,2717,2270,1420,1764,1215,1047,651,505,823,882,815,721,633,512,408,297,182,140,80,0,22,40,64,92,98,113,142,256,721,1342,1648,2788,2670,3282,3361,444,450,435,553,478,437,300,272,437,466,622,732,590,575,761,670,572,562,489,394,417,523,530,498,501,475,597,630,443,454,318,143,0 +36,40,49,41,36,26,22,16,12,14,15,14,12,10,8,5,0,15,34,40,65,68,49,60,124,220,282,348,367,324,474,668,0,130,281,314,456,348,274,223,694,1330,2006,2378,2780,3562,4129,7334,8351,7396,5984,4470,2198,2210,2205,2244,4074,3554,4074,4422,3444,2781,2496,1396,1795,1274,952,638,457,876,979,720,676,598,470,426,452,252,194,109,0,17,38,54,96,92,126,141,294,716,1042,1663,2010,2476,2304,1958,768,746,551,594,546,582,442,384,428,400,426,450,331,408,466,434,528,483,591,457,478,698,718,724,459,406,448,537,464,340,302,140,0 +28,27,34,28,32,30,29,22,8,12,12,14,12,12,8,5,0,10,21,36,44,36,32,39,96,245,315,288,368,495,501,633,0,111,238,412,646,636,540,468,825,1142,1240,2340,2975,4360,6139,7371,7496,4831,2875,2864,1926,2115,1622,1358,2751,2986,2450,2624,3440,3179,2748,1904,1283,1329,1144,841,404,588,736,726,653,496,371,500,464,343,287,165,0,23,48,60,72,113,139,155,388,759,1430,1392,1691,1426,1603,1027,957,825,496,575,552,423,456,388,397,296,277,248,188,172,131,158,334,401,513,596,662,771,907,801,326,274,284,385,414,341,278,159,0 +25,26,25,26,33,27,26,23,13,16,15,17,15,15,12,7,0,14,27,44,37,38,46,44,115,214,258,270,329,406,439,568,0,166,338,561,715,770,618,654,1094,1354,1165,1926,2480,3140,5023,4878,5506,3716,2709,2067,2126,1768,1420,1492,2761,2437,2048,3073,3000,2714,2125,1338,1227,1296,1296,766,582,852,697,687,769,496,552,508,424,278,270,124,0,36,60,88,145,186,202,256,390,748,1372,1170,1731,1468,1428,1188,1390,1069,739,949,853,772,632,548,450,334,240,202,214,202,180,158,496,586,724,750,1008,891,821,952,614,580,340,458,526,338,300,158,0 +14,19,18,30,30,24,26,24,19,22,17,17,20,15,12,7,0,14,26,43,38,45,54,75,112,171,210,260,260,285,292,341,0,194,419,676,1116,1096,839,988,1438,1288,1642,1974,2335,2165,2614,2608,4110,2424,1914,1417,1791,1569,1578,2316,2801,2776,2309,2805,2714,2157,1754,1009,1390,1256,1256,1189,770,856,866,777,700,597,573,456,417,250,167,79,0,39,88,115,221,263,326,386,337,704,880,836,1656,1599,1772,1250,1427,1166,1093,1221,1259,1186,838,710,468,356,266,172,168,171,210,216,552,582,728,883,1277,1186,1064,885,790,656,510,583,482,416,232,123,0 +8,11,15,22,23,25,22,23,25,27,23,18,20,16,14,8,0,17,36,47,54,48,52,72,113,132,136,152,163,197,239,244,0,268,517,756,1140,981,940,1101,1184,1016,1532,1474,1270,1198,1337,1428,2792,1821,1148,1334,1343,1572,2108,2610,3659,3258,1896,2526,2456,1855,1905,1344,1158,1509,1347,1000,836,922,871,848,773,652,596,506,362,254,188,94,0,62,135,140,294,302,427,442,361,620,842,944,1203,1207,1445,1296,1483,1323,1131,1300,1596,1292,936,700,380,320,177,152,187,192,244,238,640,690,754,1034,1125,1194,943,995,714,620,618,518,373,344,150,91,0 +0,4,6,10,13,23,25,24,30,24,24,22,21,15,10,6,0,14,23,44,56,45,46,55,76,86,70,48,35,46,60,73,0,147,291,378,463,959,1146,1497,1426,1454,1020,671,647,458,208,115,2030,2097,2188,2957,3044,2172,2080,2499,3467,3251,3322,3914,3812,3126,1767,1216,1191,1054,712,591,316,419,617,510,588,491,365,256,135,73,43,26,0,104,225,268,376,357,466,409,496,584,790,728,1005,969,1017,1126,1480,1284,1060,889,1089,878,474,424,312,324,438,441,474,410,512,440,747,710,452,360,352,431,557,578,853,734,567,573,471,356,252,147,0 +36,27,16,17,22,26,32,32,43,38,40,29,21,20,12,8,0,12,20,36,58,48,42,57,76,75,63,46,48,52,70,74,0,169,291,300,475,858,1190,1358,2374,2308,2304,1796,886,710,797,526,1538,1794,1710,1984,3076,2652,1697,2290,3972,3668,3720,3985,3958,2696,1744,1669,1064,878,542,542,364,484,528,564,508,388,420,272,140,95,42,24,0,83,223,252,255,360,458,409,418,490,874,808,900,1066,1283,1150,2123,1626,1298,1113,862,928,712,600,309,336,537,527,672,582,639,552,732,730,386,394,305,388,590,676,818,798,607,622,401,364,284,170,20 +64,52,30,23,31,26,29,34,62,47,46,43,26,25,16,8,0,9,18,37,59,57,53,50,65,70,52,39,44,50,70,78,0,157,262,315,330,811,1038,1279,3273,2842,2863,1929,1488,1441,1120,1097,1334,1470,1349,1493,2426,1836,2028,1649,4167,3298,4048,4092,4198,3410,2272,2060,1170,943,542,484,387,546,559,522,446,392,375,255,145,94,56,28,0,82,146,189,182,241,349,315,383,534,736,938,1150,1366,1270,1115,2548,2270,1446,1462,817,855,870,894,301,396,474,454,709,708,556,437,663,584,452,394,221,416,484,666,1028,737,805,970,480,369,289,163,44 +94,64,60,52,53,46,42,41,64,47,38,36,24,20,15,10,0,12,21,34,60,52,65,58,72,66,50,47,37,59,66,71,0,126,240,302,294,570,649,808,4103,3713,3663,2967,2258,2032,1819,1410,1544,1604,1290,1440,2084,1815,1843,1760,4286,4057,4607,4240,3016,2757,2305,2800,1121,789,623,493,514,514,553,429,343,345,334,258,168,112,83,43,0,44,74,150,129,245,348,290,342,565,784,1144,1488,1120,1256,1434,2102,1926,1859,1488,1234,1276,862,1091,246,330,371,564,820,770,584,558,473,452,316,268,262,320,415,570,824,829,1020,748,626,417,259,166,75 +91,86,54,61,57,59,50,31,77,53,50,46,30,23,19,12,0,14,24,28,40,44,44,42,54,38,31,46,44,52,52,70,0,53,107,144,250,284,344,536,3899,4150,3982,3366,2502,1990,1488,1421,1303,1353,1026,1164,1468,1517,2104,2277,3029,3616,3687,2955,3061,2477,2781,2800,1017,665,532,430,494,493,608,482,341,244,262,177,160,157,108,59,0,20,35,56,90,149,238,301,207,457,722,1158,1374,1249,1524,1704,2269,1424,1221,1200,1593,1140,1011,976,165,422,621,729,830,927,823,668,248,260,296,274,283,367,419,419,816,665,695,838,701,484,400,249,87 +110,88,72,62,60,61,48,44,100,70,41,36,44,30,22,14,0,11,22,27,36,34,36,30,44,36,21,36,35,36,32,49,0,104,220,324,398,770,1018,1750,3248,3802,5005,3764,2878,3288,3704,3357,2192,1918,1014,1208,1194,1650,1770,1750,2308,2556,3144,2834,2866,3032,3141,2498,792,651,393,468,448,393,512,436,337,251,233,151,146,120,67,42,0,18,31,52,70,143,178,278,131,390,555,856,1152,1426,1933,1944,1558,1304,1658,1550,1465,1248,1228,1026,306,492,688,718,795,748,926,754,337,301,243,264,286,383,421,348,827,752,541,683,489,514,552,394,204 +134,94,72,51,44,47,54,36,98,82,48,41,47,43,26,16,0,8,16,18,20,22,19,24,22,20,17,26,23,18,18,27,0,174,330,707,530,1289,2099,2836,3636,4813,4946,5738,3415,4493,4792,4380,2772,2013,1217,1039,1038,1168,1252,1124,1468,1775,2070,1821,3454,2868,2992,2624,687,396,299,264,286,323,282,210,228,148,126,96,104,90,50,30,0,19,33,54,56,118,158,188,115,319,416,932,1162,1370,1698,1603,1405,1585,1584,1648,1575,1185,1152,931,495,478,680,849,772,854,834,668,361,307,297,301,277,251,332,231,691,762,633,556,348,399,523,371,350 +108,88,81,70,40,44,53,56,92,66,56,47,56,40,29,20,0,5,10,12,10,12,10,14,13,12,10,12,12,12,11,12,0,190,371,715,906,1935,2466,3326,5192,5546,5771,5927,3761,4660,6226,6189,4066,3174,2101,1570,1216,1099,1113,789,669,1119,1386,1624,2406,2934,2506,3634,389,232,146,136,132,141,131,103,105,86,54,42,50,42,26,17,0,18,32,40,48,92,89,137,72,266,406,642,742,1174,1384,1464,1242,1410,1699,1700,1433,1439,1323,1132,924,821,870,1020,1042,1266,1070,726,475,360,291,264,202,212,255,234,477,488,485,522,322,440,578,532,446 +110,120,95,75,34,54,87,105,111,74,43,28,13,12,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,13,20,23,23,30,30,29,285,600,807,1311,1212,1090,1505,1861,2092,1656,1576,1028,1488,2651,3654,0,329,547,1029,1604,1248,1106,1661,1956,2238,2600,2216,2637,2524,3017,2430,1953,1695,1218,1303,1974,1618,1683,1347,769,756,994,1020,1410,1844,1930,2032,1509,3004,3945,5539,5728,4998,3955,5612,6135,5175,4287,4110,5323,4255,4750,4158,3536,3181,3732,3002,2563,2494,1993,1297,955,1242,1150,1254,1156,1076,801,663,486 +87,132,91,86,51,89,92,111,130,78,54,30,19,16,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,29,52,45,60,53,46,172,172,205,221,242,372,491,664,302,604,1040,1268,2090,1713,2035,2164,2645,3316,3018,2210,2704,2482,2681,3501,0,261,414,878,1541,1122,757,1438,1697,2124,2567,2067,2358,2170,2190,2206,1690,1390,1180,1170,1559,1674,1896,1014,613,880,1018,1096,1132,1260,1219,1378,1622,2548,3315,4514,3426,4384,3600,4844,5850,5344,5396,4449,5186,4583,5426,4123,3002,2440,2944,3266,2850,2347,1382,1228,960,1085,1104,1165,755,685,754,692,570 +103,98,127,122,74,101,114,117,126,101,63,42,18,17,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,52,92,91,84,108,119,290,368,465,550,574,643,857,1284,614,849,1164,1488,2695,2326,2601,3105,4721,3962,4038,3668,3817,4099,3531,3046,0,256,436,903,1105,1055,703,940,2282,2074,2102,1875,1688,1416,1518,1835,1244,880,946,865,1733,1418,1537,957,698,842,1103,1238,866,987,902,684,2151,2154,2886,3493,2671,2425,3160,4377,4148,6188,6372,5842,6476,4596,4990,3782,2300,2407,3167,2610,2562,1783,1386,1130,1291,1070,1014,1208,562,554,563,560,471 +145,128,146,135,84,106,82,110,86,74,63,42,17,15,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,67,112,149,168,198,166,361,461,700,878,733,1024,1288,1674,669,1094,1560,1879,2862,2703,2624,2578,6280,6223,3693,3598,3968,4050,3009,2882,0,137,263,524,744,847,824,898,2401,2220,1441,1495,1494,1172,1356,1105,669,706,1008,964,1153,1066,1268,816,803,662,786,958,764,665,850,814,2968,2524,1776,2171,1592,2729,2728,4372,6642,6955,7472,6076,6078,5542,4769,4254,1934,2273,2172,2012,1830,1625,1770,1324,1136,1051,673,763,449,452,574,465,407 +146,100,79,107,112,94,83,98,70,40,27,25,15,13,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,105,182,236,242,258,203,539,547,593,812,1084,1732,1941,2416,899,1213,1343,1749,2606,3236,3088,2740,7496,7607,7417,6872,4548,3791,2324,2366,0,98,176,243,392,400,558,875,1916,2197,1812,1565,1336,1279,1197,962,247,500,743,906,996,1198,1045,644,650,459,428,617,730,1002,1010,918,2908,2114,1997,1744,1268,3122,4815,4677,7336,9160,8269,6003,5169,3949,3982,4478,1010,1046,1253,1422,1708,1596,1116,1407,1235,878,770,534,396,275,256,243,277 +148,108,77,98,102,84,86,92,69,54,32,27,12,13,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,154,242,220,258,316,342,589,583,516,756,1025,1572,1748,2120,1878,1726,1322,2302,2491,3050,3680,4392,8579,8268,8440,10282,8577,8527,8519,6141,0,82,148,276,468,517,468,760,1768,1644,1295,1382,1584,1158,936,1050,140,345,580,549,600,790,733,524,830,656,749,951,850,869,812,728,3350,2519,1488,1234,1070,2651,3384,4672,4747,6428,5627,6376,5986,5212,4711,4832,926,983,1113,1251,1886,1686,1398,1118,1604,1080,751,561,493,363,285,240,166 +114,116,103,76,58,81,80,76,61,47,28,28,10,9,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,220,382,264,298,376,560,492,463,466,629,964,1411,2014,1726,2476,2111,1876,1981,2266,3529,3722,4246,7593,9956,10367,12556,14354,11065,11908,9494,0,89,168,213,442,400,361,582,1494,1648,1370,1413,1378,963,1000,850,92,219,277,437,347,353,424,416,807,1043,1064,958,875,696,730,723,2737,2004,1464,1098,826,1830,3200,3125,3902,5351,5229,5266,6037,6968,6129,4824,1164,1136,1195,1333,2395,1869,1474,1420,1550,1015,938,678,477,448,333,266,133 +121,110,94,58,44,50,60,60,49,43,26,22,12,11,10,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,271,397,468,588,654,642,870,757,456,618,894,1126,2226,2159,2126,2224,1748,1738,1504,3050,2952,4590,7433,9483,14023,16535,14573,13906,13172,11828,0,70,142,196,382,318,320,395,837,934,931,888,1124,1105,1008,864,41,116,182,266,228,348,376,352,788,1048,827,852,814,768,1100,959,3394,2118,1508,1112,867,1540,2274,3170,4026,4510,5513,5834,6025,5753,6665,4464,1017,1168,1498,1277,2175,1598,1242,1534,1439,1002,970,756,702,564,432,216,73 +95,100,86,91,76,84,63,53,26,28,24,22,13,10,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,140,243,411,647,716,920,1028,1299,1819,3006,3656,3351,2276,2597,2701,2611,2910,4277,5838,6428,5276,8274,8654,6366,6526,10329,13025,13194,10459,11532,0,22,45,82,136,165,242,270,304,508,815,834,880,807,822,694,0,30,70,96,151,228,326,484,528,531,390,399,398,466,519,594,3129,3108,2065,2604,3201,3951,4341,3986,3144,3242,3137,2406,2340,3129,3658,4819,1264,1531,1685,1622,1154,924,1032,1104,1138,967,854,992,922,604,361,180,0 +84,90,84,78,83,80,62,42,29,22,20,19,15,14,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,158,286,486,840,1034,1058,1212,899,1469,1438,2434,3619,3084,2481,2542,2328,3632,4053,5824,7561,7168,6066,8243,10032,8686,9560,10300,9564,9760,8535,7280,0,24,36,80,98,166,163,178,287,578,856,912,716,748,648,586,2,27,71,96,113,210,269,318,529,444,344,473,349,466,476,476,2127,2325,2205,2686,2920,3260,3284,2542,3590,3516,2562,2306,2247,2699,2698,3364,1148,1506,1692,1214,819,1062,1161,1260,875,802,806,938,895,735,464,296,78 +89,97,78,82,75,58,61,36,32,29,15,12,14,11,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,460,691,1049,862,1090,1684,534,1199,1557,2052,3466,3447,2286,3415,1776,3932,5478,7800,9950,8266,6414,7363,8171,8940,11368,10380,9289,9148,7550,7081,0,20,34,76,94,128,136,147,338,504,722,734,780,586,504,540,4,35,58,74,96,237,316,343,380,315,329,348,320,295,327,506,1743,1701,2006,1992,2695,2628,2180,1895,3377,3026,2480,2390,1571,2346,2979,2525,1333,1419,1140,945,864,962,1160,1136,500,716,776,663,887,722,689,416,155 +88,102,78,87,60,58,39,27,28,25,15,14,13,11,8,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,498,928,1004,1341,1882,2281,474,947,1260,1668,2579,2622,1991,2748,1750,5109,7185,8583,11678,11698,7894,8902,7134,9104,9728,11552,11280,10160,7426,6360,0,19,30,67,80,122,140,150,289,427,609,653,800,604,490,513,7,48,83,100,108,219,268,314,217,298,299,322,372,362,363,380,1809,1614,1868,1303,2135,1674,1327,1126,3339,2860,1880,1992,1762,2465,3322,2652,1185,1096,646,560,779,738,989,918,504,576,869,776,820,690,793,532,299 +70,94,86,73,62,49,40,20,23,26,20,13,8,7,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,355,622,820,1354,1790,2026,2698,640,1184,1621,1626,1723,1402,1611,2473,1747,3302,4088,6866,9793,10070,9308,10237,9130,11020,13364,13598,11537,10949,7474,5660,0,24,40,47,72,99,135,144,204,232,341,488,594,584,536,525,8,50,98,118,138,202,198,290,132,243,310,396,396,286,304,353,1966,1455,1523,1110,896,809,713,537,2792,3012,3073,3108,2384,2498,2316,2949,714,548,572,562,554,771,918,959,415,480,471,746,788,694,789,572,357 +48,66,58,55,42,41,27,19,23,21,15,13,8,7,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276,521,719,1226,1506,1851,2812,1278,1863,1965,2494,3006,2256,2022,2852,2149,3198,3356,5947,8960,9390,8381,9379,10736,11946,11620,9660,9779,8684,9314,6876,0,18,36,40,47,75,79,132,156,223,312,451,424,434,331,374,12,44,84,106,114,165,241,306,143,214,325,304,380,318,255,279,2355,1738,1709,1194,855,843,684,488,2366,2243,2130,2322,1564,1410,1764,1916,565,504,480,501,623,731,937,826,478,494,503,672,756,785,741,614,363 +31,43,40,40,37,32,22,12,15,17,12,9,6,6,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,385,578,729,1245,1982,3536,1765,2203,2606,2402,3313,2774,1908,2692,2441,3559,3588,7488,8086,8564,6520,10605,10689,8532,8975,8216,10221,9097,9951,6620,0,12,25,28,40,53,58,70,71,117,182,229,225,281,286,210,12,48,68,89,63,147,209,269,120,143,232,225,279,241,249,223,2436,2414,1628,1177,776,604,668,432,1154,1248,1131,1181,992,888,854,807,439,496,464,430,514,694,800,952,502,570,481,750,831,802,644,454,456 +19,22,18,22,16,16,13,8,10,9,7,6,4,4,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,302,459,617,1032,1448,2037,1760,2340,3122,2907,3666,2414,1927,2490,2445,3587,4173,7500,7408,8270,6076,9249,11084,8802,8040,7138,8332,9146,7650,6960,0,8,14,15,22,30,35,46,43,78,76,122,137,140,156,104,15,44,48,65,42,96,162,210,108,170,191,181,249,282,351,294,2904,2336,1832,1156,586,632,522,314,616,786,719,634,672,608,722,688,358,404,438,424,523,681,745,872,662,545,638,758,679,672,635,614,573 +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,716,1362,1589,1470,1427,2364,2708,2363,1794,1540,1283,1156,773,373,0,570,1110,1642,2014,4646,5769,5193,0,0,1,2,2,2,3,2,2,7,11,14,14,16,20,22,20,25,31,43,42,38,42,48,44,89,108,190,269,320,285,270,2927,3170,2829,2520,3151,2933,4021,4080,3079,2770,2285,1914,996,796,510,410,376,374,478,532,465,531,563,464,378,360,306,286,253,398,443,586,571 +4,5,5,6,7,8,8,7,7,8,7,7,7,6,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,294,808,1031,1280,1344,1283,1792,2922,2079,1530,1398,1113,1050,569,400,55,690,1196,1776,3098,3566,4572,5220,0,0,2,2,2,5,5,5,4,8,10,14,14,18,18,23,20,24,28,37,47,47,46,51,64,108,109,232,325,316,310,284,2539,2184,2496,2725,3410,2858,3065,3169,2174,2272,2241,1652,1092,976,742,512,322,356,464,365,406,411,438,327,432,428,476,432,302,429,562,664,566 +6,10,9,11,13,15,14,11,11,12,12,11,12,10,5,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,343,669,783,930,962,871,1434,2187,1944,1832,1685,1419,825,514,311,112,717,1406,2208,3172,3050,3454,3504,0,1,2,2,3,5,4,5,4,8,10,14,11,17,16,16,17,24,23,23,40,51,53,54,80,116,161,210,283,270,260,216,2095,1950,2048,2406,2969,3598,3350,2673,1935,1894,1748,1419,1224,982,760,380,381,431,428,330,305,281,282,225,441,460,498,460,291,512,592,718,768 +11,14,16,14,17,19,18,18,15,16,19,16,17,14,7,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,244,419,672,634,694,790,798,2334,1916,1742,1750,1198,840,666,554,136,1182,2056,2761,2831,3345,4020,3672,0,0,2,2,2,5,5,5,5,8,12,15,12,14,14,14,17,23,23,27,34,44,53,47,89,127,143,222,247,245,197,221,1402,1408,1441,1948,2003,2449,2440,2175,2321,2531,1747,1439,920,802,691,364,359,415,305,232,268,196,261,244,525,484,618,496,383,497,573,774,800 +12,14,11,15,18,20,28,23,17,19,25,26,20,15,12,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,133,286,430,432,494,458,2457,1792,1182,998,1102,1058,952,576,192,1219,2296,3137,3375,3283,2817,3873,0,0,1,2,2,2,3,2,4,6,6,8,10,12,9,10,16,22,25,30,39,31,32,36,102,98,137,212,228,227,150,194,1210,1486,1944,1630,1899,2001,1654,1740,2758,2428,1886,1698,1030,949,558,328,248,265,199,207,150,174,146,199,466,455,405,382,371,558,626,616,898 +26,27,18,20,22,25,34,30,20,24,29,26,28,23,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,102,212,334,419,442,367,1655,1246,1144,880,905,936,822,577,216,1266,1827,3294,3589,4102,4154,3252,0,0,0,1,2,3,4,4,5,7,7,9,10,12,10,10,17,24,27,35,39,39,35,62,109,123,154,269,210,221,209,226,1409,1712,1980,2021,2349,2086,1723,2268,2344,1600,1951,1575,872,832,590,361,325,266,201,209,202,164,199,240,409,356,378,369,454,528,485,528,598 +33,34,24,23,21,32,33,33,27,30,28,30,39,27,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,68,147,213,294,330,260,1416,944,863,836,1100,805,638,604,264,1312,2086,3205,4296,3816,4778,4337,0,0,0,0,1,2,3,4,3,5,5,7,10,11,8,8,11,19,22,33,33,36,50,91,165,161,168,254,175,215,232,218,1882,1991,2540,2204,2292,2464,1818,1800,1383,1212,1612,1419,1033,766,562,444,319,263,230,242,206,215,186,233,445,486,470,360,384,422,536,531,497 +35,32,21,30,27,38,36,36,42,34,37,34,41,27,19,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,39,79,117,143,192,137,987,722,621,630,734,664,542,548,306,1301,2072,2680,3433,4435,4324,3920,0,0,0,0,0,1,2,2,2,5,5,7,8,8,7,7,7,12,15,24,26,42,50,106,134,167,204,274,284,257,194,269,2298,2688,2862,2351,2616,2520,2101,1855,1351,1084,1510,1203,716,537,590,465,366,256,270,262,240,226,236,224,366,412,334,370,450,402,646,664,682 +38,29,31,29,37,50,53,42,48,46,42,34,23,18,11,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,482,617,676,766,818,786,638,578,442,1471,2960,2906,3904,4378,5080,5302,0,0,0,0,0,0,0,0,1,2,3,2,2,2,3,2,0,20,39,80,118,116,102,102,141,131,101,94,64,83,109,195,2238,2058,2476,2256,1694,1921,1654,1758,1505,1346,814,608,496,553,455,348,347,434,498,464,545,446,419,345,299,516,611,845,856,644,540,698,684 +26,28,30,34,33,46,60,48,36,35,43,36,31,26,13,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,542,556,607,785,613,548,536,398,340,1123,2940,2891,3477,4231,4646,4046,0,0,0,0,0,0,0,0,0,2,4,4,2,5,5,5,0,22,31,63,109,110,111,121,120,109,101,64,52,85,102,149,2199,1732,1770,1639,1353,1534,1350,1423,1660,1180,791,624,490,434,371,310,261,358,387,427,443,369,324,306,253,504,708,834,639,508,410,531,426 +16,25,32,39,35,48,48,58,31,39,36,34,39,26,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,514,630,596,523,614,526,356,341,294,984,2046,2440,4218,4122,3281,2482,0,0,0,0,0,0,0,0,0,2,3,4,3,5,4,5,0,19,32,73,84,106,120,112,74,62,66,52,51,80,88,116,1644,1690,1379,1633,1508,1535,1570,1057,1396,1072,788,630,323,290,276,229,211,264,264,324,264,344,326,341,292,548,629,901,456,357,356,397,376 +17,23,25,36,39,46,43,42,31,42,46,40,33,28,22,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,410,419,432,416,393,381,226,223,231,1034,1557,2741,3900,3391,3780,3170,0,0,0,0,0,0,0,0,0,1,2,3,2,5,5,5,0,14,32,58,60,95,97,102,61,56,53,39,34,54,56,80,1033,1017,788,1039,1102,1175,1006,812,1250,1078,809,620,287,352,220,232,115,183,245,282,288,262,223,231,275,432,596,675,461,374,418,376,288 +11,19,20,31,38,42,43,38,42,42,28,36,32,22,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,326,294,298,258,208,146,115,110,184,767,1534,2342,2582,2451,3516,3020,0,0,0,0,0,0,0,0,0,0,1,2,2,2,3,2,0,16,30,40,51,47,47,79,48,42,35,21,14,20,32,58,674,527,504,689,758,768,676,504,1304,1134,811,634,359,324,235,205,51,116,179,190,246,276,258,160,181,199,270,438,593,522,511,400,283 +23,30,35,38,36,43,44,48,53,44,30,34,37,29,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242,190,171,188,140,120,82,74,139,646,940,1528,2295,2246,3020,2758,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,2,0,12,21,34,48,39,48,54,37,34,29,19,12,18,35,49,583,452,412,565,512,512,420,318,991,910,658,530,253,201,154,145,42,96,173,170,244,192,172,135,164,166,247,407,465,432,396,288,214 +41,49,51,42,32,42,51,56,51,39,42,35,46,43,27,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,111,120,78,136,124,70,47,89,342,646,758,1509,1617,2020,1556,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,0,8,17,25,28,28,37,43,34,23,18,12,6,17,26,32,394,352,342,396,399,338,304,202,683,695,508,313,248,180,126,101,28,67,114,143,177,128,106,95,140,175,192,296,219,207,232,210,122 +47,56,60,54,36,42,49,62,44,46,55,47,40,40,23,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,47,72,49,72,58,38,28,39,180,276,352,755,836,1064,745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,8,14,15,16,16,23,16,12,9,8,4,9,12,18,226,199,195,179,188,159,126,110,372,382,303,172,115,100,56,51,17,40,63,77,98,65,65,64,76,116,108,160,114,128,144,118,74 +52,58,54,50,42,47,47,58,48,41,50,37,39,38,26,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,7,9,17,22,31,30,43,52,46,44,51,54,55,48 diff --git a/worlds/diamond_world3_iso.jpg b/worlds/diamond_world3_iso.jpg new file mode 100644 index 0000000..b642cba --- /dev/null +++ b/worlds/diamond_world3_iso.jpg Binary files differ diff --git a/worlds/diamond_world3_topo.jpg b/worlds/diamond_world3_topo.jpg new file mode 100644 index 0000000..d816984 --- /dev/null +++ b/worlds/diamond_world3_topo.jpg Binary files differ diff --git a/worlds/diamond_world_topo.jpg b/worlds/diamond_world_topo.jpg new file mode 100644 index 0000000..afc80fa --- /dev/null +++ b/worlds/diamond_world_topo.jpg Binary files differ